diff --git a/.github/workflows/ci-build-unstable.yml b/.github/workflows/ci-build-unstable.yml index 8f0b2eed66..808931f3d7 100644 --- a/.github/workflows/ci-build-unstable.yml +++ b/.github/workflows/ci-build-unstable.yml @@ -13,11 +13,11 @@ jobs: steps: - uses: actions/checkout@v4 - - name: Set up JDK 17 + - name: Set up JDK 11 uses: actions/setup-java@v4 with: - java-version: '17.0.10+7' - distribution: 'temurin' + java-version: '11' + distribution: 'adopt' cache: 'gradle' - name: Build with Gradle run: ./gradlew clean assemble --info --stacktrace --no-daemon diff --git a/CHANGELOG.md b/CHANGELOG.md index 1bd8938507..49522646a4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,29 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/). +## [0.8.1] - 2024-06-10 + +### Added + - Identified URLs are now added in the TEI output #1099 + - Added DL models for patent processing #1082 + - Copyright and licence identification models #1078 + - Add research infrastructure recognition for funding processing #1085 + +### Changed + - Improved the recognition of URLs using (when available) PDF annotations, such as clickable links + - Updated TEI schema #1084 + - Review patent process #1082 + - Add Kotlin language to support development and testing #1096 + +### Fixed + - Sentence segmentation avoids to split sentences with an URL in the middle #1097 + - Sentence segmentation is now applied to funding and acknowledgement #1106 + - Docker image was optimized to reduce the needed space #1088 + - Fixed OOBE when processing large quantities of notes #1075 + - Corrected `` coordinate attribute name #1070 + - Fix missing coordinates in paragraph continuation #1076 + - Fixed JSON log output + ## [0.8.0] - 2023-11-19 ### Added diff --git a/Readme.md b/Readme.md index 0547371813..66b4dd6791 100644 --- a/Readme.md +++ b/Readme.md @@ -105,11 +105,10 @@ Detailed end-to-end [benchmarking](https://grobid.readthedocs.io/en/latest/Bench A series of additional modules have been developed for performing __structure aware__ text mining directly on scholar PDF, reusing GROBID's PDF processing and sequence labelling weaponry: - [software-mention](https://github.com/ourresearch/software-mentions): recognition of software mentions and associated attributes in scientific literature -- [datastet](https://github.com/kermitt2/datastet): identification of named and implicit research datasets and associated attributes in scientific articles +- [datastet](https://github.com/kermitt2/datastet): identification of sections and sentences introducing datasets in a scientific article, identification of dataset names and attributes (implict and named datasets) and classification of the type of datasets - [grobid-quantities](https://github.com/kermitt2/grobid-quantities): recognition and normalization of physical quantities/measurements - [grobid-superconductors](https://github.com/lfoppiano/grobid-superconductors): recognition of superconductor material and properties in scientific literature - [entity-fishing](https://github.com/kermitt2/entity-fishing), a tool for extracting Wikidata entities from text and document, which can also use Grobid to pre-process scientific articles in PDF, leading to more precise and relevant entity extraction and the capacity to annotate the PDF with interactive layout -- [datastet](https://github.com/kermitt2/datastet): identification of sections and sentences introducing datasets in a scientific article, identification of dataset names (implict and named datasets) and classification of the type of these datasets - [grobid-ner](https://github.com/kermitt2/grobid-ner): named entity recognition - [grobid-astro](https://github.com/kermitt2/grobid-astro): recognition of astronomical entities in scientific papers - [grobid-bio](https://github.com/kermitt2/grobid-bio): a toy bio-entity tagger using BioNLP/NLPBA 2004 dataset diff --git a/build.gradle b/build.gradle index 89546fb8ac..db0c478a9b 100644 --- a/build.gradle +++ b/build.gradle @@ -64,12 +64,12 @@ subprojects { // targetCompatibility = 1.11 kotlin { - jvmToolchain(17) + jvmToolchain(11) } java { toolchain { - languageVersion.set(JavaLanguageVersion.of(17)) + languageVersion.set(JavaLanguageVersion.of(11)) } } @@ -490,20 +490,29 @@ project(":grobid-trainer") { "train_name_header" : "org.grobid.trainer.NameHeaderTrainer", "train_name_citation" : "org.grobid.trainer.NameCitationTrainer", "train_affiliation_address" : "org.grobid.trainer.AffiliationAddressTrainer", - "train_header" : "org.grobid.trainer.HeaderTrainer", +// "train_header" : "org.grobid.trainer.HeaderTrainer", "train_fulltext" : "org.grobid.trainer.FulltextTrainer", "train_shorttext" : "org.grobid.trainer.ShorttextTrainer", "train_figure" : "org.grobid.trainer.FigureTrainer", "train_table" : "org.grobid.trainer.TableTrainer", "train_citation" : "org.grobid.trainer.CitationTrainer", "train_date" : "org.grobid.trainer.DateTrainer", - "train_segmentation" : "org.grobid.trainer.SegmentationTrainer", +// "train_segmentation" : "org.grobid.trainer.SegmentationTrainer", "train_reference_segmentation": "org.grobid.trainer.ReferenceSegmenterTrainer", "train_ebook_model" : "org.grobid.trainer.EbookTrainer", "train_patent_citation" : "org.grobid.trainer.PatentParserTrainer", "train_funding_acknowledgement" : "org.grobid.trainer.FundingAcknowledgementTrainer" ] + def complexTrainerTasks = [ + "train_header" : ["org.grobid.trainer.HeaderTrainer", ""], + "train_header_light" : ["org.grobid.trainer.HeaderTrainer", "light"], + "train_header_ietf" : ["org.grobid.trainer.HeaderTrainer", "ietf"], + "train_segmentation" : ["org.grobid.trainer.SegmentationTrainer", ""], + "train_segmentation_light" : ["org.grobid.trainer.SegmentationTrainer", "light"], + "train_segmentation_ietf" : ["org.grobid.trainer.SegmentationTrainer", "ietf"] + ] + def libraries = "" if (Os.isFamily(Os.FAMILY_MAC)) { if (Os.OS_ARCH.equals("aarch64")) { @@ -528,6 +537,18 @@ project(":grobid-trainer") { } } + complexTrainerTasks.each { taskName, mainClassNameAndArgs -> + tasks.create(name: taskName, type: JavaExec, group: 'modeltraining') { + main = mainClassNameAndArgs[0] + classpath = sourceSets.main.runtimeClasspath + if (JavaVersion.current().compareTo(JavaVersion.VERSION_1_8) > 0) + jvmArgs '-Xmx3072m', "--add-opens", "java.base/java.lang=ALL-UNNAMED" + if (JavaVersion.current().compareTo(JavaVersion.VERSION_1_8) > 0) + jvmArgs '-Xmx3072m', "--add-opens", "java.base/java.lang=ALL-UNNAMED" + args mainClassNameAndArgs[1] + } + } + // evaluation tasks ext.getArg = { propName, defaultVal -> return project.hasProperty(propName) ? project.getProperty(propName) : defaultVal; diff --git a/doc/Configuration.md b/doc/Configuration.md index 8ea092594b..342b7778b2 100644 --- a/doc/Configuration.md +++ b/doc/Configuration.md @@ -85,7 +85,7 @@ CORS for the GROBID web API service can be configurated by the following yaml pa GROBID uses external implementation for recognizing the language used in a publication and for performing sentence disambiguation. -There is currently only one possible language recognition implementation possible (Cybozu Language Detector) and two possible sentence segmenters (OpenNLP, default and the Pragmatic Segmenter). +There is currently only one possible language recognition implementation possible (Cybozu Language Detector) and two possible sentence segmenters (OpenNLP (default) and the Pragmatic Segmenter). ```yml # the actual implementation for language recognition to be used @@ -95,6 +95,7 @@ There is currently only one possible language recognition implementation possibl #sentenceDetectorFactory: "org.grobid.core.lang.impl.PragmaticSentenceDetectorFactory" sentenceDetectorFactory: "org.grobid.core.lang.impl.OpenNLPSentenceDetectorFactory" ``` +**NOTE**: While OpenNLP is 60 time faster than the Pragmatic Segmenter, it performs "slightly" worst. The pragmatic segmenter runs with the JRuby Interpreter. ### Service configuration @@ -121,7 +122,7 @@ When executing the service, models can be loaded in a lazy manner (if you plan t modelPreload: true ``` -Finally the following part specifies the port to be used by the GROBID web service: +Finally, the following part specifies the port to be used by the GROBID web service: ```yml server: diff --git a/doc/Deep-Learning-models.md b/doc/Deep-Learning-models.md index 335e3d3d4f..c3db143110 100644 --- a/doc/Deep-Learning-models.md +++ b/doc/Deep-Learning-models.md @@ -20,7 +20,7 @@ Current neural models can be up to 50 times slower than CRF, depending on the ar By default, only CRF models are used by Grobid. You need to select the Deep Learning models you would like to use in the GROBID configuration yaml file (`grobid/grobid-home/config/grobid.yaml`). See [here](https://grobid.readthedocs.io/en/latest/Configuration/#configuring-the-models) for more details on how to select these models. The most convenient way to use the Deep Learning models is to use the full GROBID Docker image and pass a configuration file at launch of the container describing the selected models to be used instead of the default CRF ones. Note that the full GROBID Docker image is already configured to use Deep Learning models for bibliographical reference and affiliation-address parsing. -For current GROBID version 0.8.0, we recommend considering the usage of the following Deep Learning models: +For current GROBID version 0.8.1, we recommend considering the usage of the following Deep Learning models: - `citation` model: for bibliographical parsing, the `BidLSTM_CRF_FEATURES` architecture provides currently the best accuracy, significantly better than CRF (+3 to +5 points in F1-Score). With a GPU, there is normally no runtime impact by selecting this model. SciBERT fine-tuned model performs currently at lower accuracy. @@ -57,7 +57,7 @@ DeLFT version `0.3.2` has been tested successfully with Python 3.7 and 3.8. For ```shell cd deflt/ -python3 grobidTagger.py delft/applications/citation tag --architecture BidLSTM_CRF +python -m delft.applications.grobidTagger citation tag --architecture BidLSTM_CRF ``` If it works (you see some annotations in JSON format), you are sure to have a working DeLFT environment for **all** GROBID models. The next steps address the native bridge between DeLFT and the JVM running GROBID. @@ -98,7 +98,7 @@ If you are using a Python environment for the DeLFT installation, you can set th ```yaml delft: - python_virtualEnv: /where/my/damned/python/virtualenv/is/ + python_virtualEnv: /where/my/damned/python/virtualenv/is/ ``` Normally by setting the Python environment path in the config file (e.g. `pythonVirtualEnv: "../delft/env"`), you will not need to launch GROBID in the same activated environment. diff --git a/doc/Frequently-asked-questions.md b/doc/Frequently-asked-questions.md index 809d98dff0..6fdc5850d9 100644 --- a/doc/Frequently-asked-questions.md +++ b/doc/Frequently-asked-questions.md @@ -56,7 +56,7 @@ In addition, consider more RAM memory when running Deep Learning model on CPU, e You will get the embedded images converted into `.png` by using the normal batch command. For instance: ```console -java -Xmx4G -Djava.library.path=grobid-home/lib/lin-64:grobid-home/lib/lin-64/jep -jar grobid-core/build/libs/grobid-core-0.8.0-onejar.jar -gH grobid-home -dIn ~/test/in/ -dOut ~/test/out -exe processFullText +java -Xmx4G -Djava.library.path=grobid-home/lib/lin-64:grobid-home/lib/lin-64/jep -jar grobid-core/build/libs/grobid-core-0.8.1-onejar.jar -gH grobid-home -dIn ~/test/in/ -dOut ~/test/out -exe processFullText ``` There is a web service doing the same, returning everything in a big zip file, `processFulltextAssetDocument`, still usable but deprecated. diff --git a/doc/Grobid-batch.md b/doc/Grobid-batch.md index bd936935ea..d856126eab 100644 --- a/doc/Grobid-batch.md +++ b/doc/Grobid-batch.md @@ -20,7 +20,7 @@ The following command display some help for the batch commands: Be sure to replace `<current version>` with the current version of GROBID that you have installed and built. For example: ```bash -> java -Djava.library.path=grobid-home/lib/lin-64:grobid-home/lib/lin-64/jep -jar grobid-core/build/libs/grobid-core-0.8.0-onejar.jar -h +> java -Djava.library.path=grobid-home/lib/lin-64:grobid-home/lib/lin-64/jep -jar grobid-core/build/libs/grobid-core-0.8.1-onejar.jar -h ``` The available batch commands are listed bellow. For those commands, at least `-Xmx1G` is used to set the JVM memory to avoid *OutOfMemoryException* given the current size of the Grobid models and the crazyness of some PDF. For complete fulltext processing, which involve all the GROBID models, `-Xmx4G` is recommended (although allocating less memory is usually fine). @@ -42,7 +42,7 @@ The needed parameters for that command are: Example: ```bash -> java -Xmx1G -Djava.library.path=grobid-home/lib/lin-64:grobid-home/lib/lin-64/jep -jar grobid-core/build/libs/grobid-core-0.8.0-onejar.jar -gH grobid-home -dIn /path/to/input/directory -dOut /path/to/output/directory -r -exe processHeader +> java -Xmx1G -Djava.library.path=grobid-home/lib/lin-64:grobid-home/lib/lin-64/jep -jar grobid-core/build/libs/grobid-core-0.8.1-onejar.jar -gH grobid-home -dIn /path/to/input/directory -dOut /path/to/output/directory -r -exe processHeader ``` WARNING: the expected extension of the PDF files to be processed is .pdf @@ -68,7 +68,7 @@ WARNING: the expected extension of the PDF files to be processed is .pdf Example: ```bash -> java -Xmx4G -Djava.library.path=grobid-home/lib/lin-64:grobid-home/lib/lin-64/jep -jar grobid-core/build/libs/grobid-core-0.8.0-onejar.jar -gH grobid-home -dIn /path/to/input/directory -dOut /path/to/output/directory -exe processFullText +> java -Xmx4G -Djava.library.path=grobid-home/lib/lin-64:grobid-home/lib/lin-64/jep -jar grobid-core/build/libs/grobid-core-0.8.1-onejar.jar -gH grobid-home -dIn /path/to/input/directory -dOut /path/to/output/directory -exe processFullText ``` WARNING: the expected extension of the PDF files to be processed is .pdf @@ -82,7 +82,7 @@ WARNING: the expected extension of the PDF files to be processed is .pdf Example: ```bash -> java -Xmx1G -Djava.library.path=grobid-home/lib/lin-64:grobid-home/lib/lin-64/jep -jar grobid-core/build/libs/grobid-core-0.8.0-onejar.jar -gH grobid-home -exe processDate -s "some date to extract and format" +> java -Xmx1G -Djava.library.path=grobid-home/lib/lin-64:grobid-home/lib/lin-64/jep -jar grobid-core/build/libs/grobid-core-0.8.1-onejar.jar -gH grobid-home -exe processDate -s "some date to extract and format" ``` ### processAuthorsHeader @@ -94,7 +94,7 @@ Example: Example: ```bash -> java -Xmx1G -Djava.library.path=grobid-home/lib/lin-64:grobid-home/lib/lin-64/jep -jar grobid-core/build/libs/grobid-core-0.8.0-onejar.jar -gH grobid-home -exe processAuthorsHeader -s "some authors" +> java -Xmx1G -Djava.library.path=grobid-home/lib/lin-64:grobid-home/lib/lin-64/jep -jar grobid-core/build/libs/grobid-core-0.8.1-onejar.jar -gH grobid-home -exe processAuthorsHeader -s "some authors" ``` ### processAuthorsCitation @@ -106,7 +106,7 @@ Example: Example: ```bash -> java -Xmx1G -Djava.library.path=grobid-home/lib/lin-64:grobid-home/lib/lin-64/jep -jar grobid-core/build/libs/grobid-core-0.8.0-onejar.jar -gH grobid-home -exe processAuthorsCitation -s "some authors" +> java -Xmx1G -Djava.library.path=grobid-home/lib/lin-64:grobid-home/lib/lin-64/jep -jar grobid-core/build/libs/grobid-core-0.8.1-onejar.jar -gH grobid-home -exe processAuthorsCitation -s "some authors" ``` ### processAffiliation @@ -118,7 +118,7 @@ Example: Example: ```bash -> java -Xmx1G -Djava.library.path=grobid-home/lib/lin-64:grobid-home/lib/lin-64/jep -jar grobid-core/build/libs/grobid-core-0.8.0-onejar.jar -gH grobid-home -exe processAffiliation -s "some affiliation" +> java -Xmx1G -Djava.library.path=grobid-home/lib/lin-64:grobid-home/lib/lin-64/jep -jar grobid-core/build/libs/grobid-core-0.8.1-onejar.jar -gH grobid-home -exe processAffiliation -s "some affiliation" ``` ### processRawReference @@ -130,7 +130,7 @@ Example: Example: ```bash -> java -Xmx1G -Djava.library.path=grobid-home/lib/lin-64:grobid-home/lib/lin-64/jep -jar grobid-core/build/libs/grobid-core-0.8.0-onejar.jar -gH grobid-home -exe processRawReference -s "a reference string" +> java -Xmx1G -Djava.library.path=grobid-home/lib/lin-64:grobid-home/lib/lin-64/jep -jar grobid-core/build/libs/grobid-core-0.8.1-onejar.jar -gH grobid-home -exe processRawReference -s "a reference string" ``` ### processReferences @@ -146,7 +146,7 @@ Example: Example: ```bash -> java -Xmx2G -Djava.library.path=grobid-home/lib/lin-64:grobid-home/lib/lin-64/jep -jar grobid-core/build/libs/grobid-core-0.8.0-onejar.jar -gH grobid-home -dIn /path/to/input/directory -dOut /path/to/output/directory -exe processReferences +> java -Xmx2G -Djava.library.path=grobid-home/lib/lin-64:grobid-home/lib/lin-64/jep -jar grobid-core/build/libs/grobid-core-0.8.1-onejar.jar -gH grobid-home -dIn /path/to/input/directory -dOut /path/to/output/directory -exe processReferences ``` WARNING: the expected extension of the PDF files to be processed is `.pdf` @@ -162,7 +162,7 @@ WARNING: the expected extension of the PDF files to be processed is `.pdf` Example: ```bash -> java -Xmx1G -Djava.library.path=grobid-home/lib/lin-64:grobid-home/lib/lin-64/jep -jar grobid-core/build/libs/grobid-core-0.8.0-onejar.jar -gH grobid-home -dIn /path/to/input/directory -dOut /path/to/output/directory -exe processCitationPatentST36 +> java -Xmx1G -Djava.library.path=grobid-home/lib/lin-64:grobid-home/lib/lin-64/jep -jar grobid-core/build/libs/grobid-core-0.8.1-onejar.jar -gH grobid-home -dIn /path/to/input/directory -dOut /path/to/output/directory -exe processCitationPatentST36 ``` WARNING: extension of the ST.36 files to be processed must be `.xml` @@ -178,7 +178,7 @@ WARNING: extension of the ST.36 files to be processed must be `.xml` Example: ``` -> java -Xmx1G -Djava.library.path=grobid-home/lib/lin-64:grobid-home/lib/lin-64/jep -jar grobid-core/build/libs/grobid-core-0.8.0-onejar.jar -gH grobid-home -dIn /path/to/input/directory -dOut /path/to/output/directory -exe processCitationPatentTXT +> java -Xmx1G -Djava.library.path=grobid-home/lib/lin-64:grobid-home/lib/lin-64/jep -jar grobid-core/build/libs/grobid-core-0.8.1-onejar.jar -gH grobid-home -dIn /path/to/input/directory -dOut /path/to/output/directory -exe processCitationPatentTXT ``` WARNING: extension of the text files to be processed must be `.txt`, and expected encoding is `UTF-8` @@ -194,7 +194,7 @@ WARNING: extension of the text files to be processed must be `.txt`, and expecte Example: ``` -> java -Xmx1G -Djava.library.path=grobid-home/lib/lin-64:grobid-home/lib/lin-64/jep -jar grobid-core/build/libs/grobid-core-0.8.0-onejar.jar -gH grobid-home -dIn /path/to/input/directory -dOut /path/to/output/directory -exe processCitationPatentPDF +> java -Xmx1G -Djava.library.path=grobid-home/lib/lin-64:grobid-home/lib/lin-64/jep -jar grobid-core/build/libs/grobid-core-0.8.1-onejar.jar -gH grobid-home -dIn /path/to/input/directory -dOut /path/to/output/directory -exe processCitationPatentPDF ``` WARNING: extension of the text files to be processed must be `.pdf` @@ -210,7 +210,7 @@ WARNING: extension of the text files to be processed must be `.pdf` Example: ```bash -> java -Xmx4G -Djava.library.path=grobid-home/lib/lin-64:grobid-home/lib/lin-64/jep -jar grobid-core/build/libs/grobid-core-0.8.0-onejar.jar -gH grobid-home -dIn /path/to/input/directory -dOut /path/to/output/directory -exe createTraining +> java -Xmx4G -Djava.library.path=grobid-home/lib/lin-64:grobid-home/lib/lin-64/jep -jar grobid-core/build/libs/grobid-core-0.8.1-onejar.jar -gH grobid-home -dIn /path/to/input/directory -dOut /path/to/output/directory -exe createTraining ``` WARNING: the expected extension of the PDF files to be processed is `.pdf` @@ -226,7 +226,7 @@ WARNING: the expected extension of the PDF files to be processed is `.pdf` Example: ```bash -> java -Xmx4G -Djava.library.path=grobid-home/lib/lin-64:grobid-home/lib/lin-64/jep -jar grobid-core/build/libs/grobid-core-0.8.0-onejar.jar -gH grobid-home -dIn /path/to/input/directory -dOut /path/to/output/directory -exe createTrainingBlank +> java -Xmx4G -Djava.library.path=grobid-home/lib/lin-64:grobid-home/lib/lin-64/jep -jar grobid-core/build/libs/grobid-core-0.8.1-onejar.jar -gH grobid-home -dIn /path/to/input/directory -dOut /path/to/output/directory -exe createTrainingBlank ``` WARNING: the expected extension of the PDF files to be processed is `.pdf` @@ -244,7 +244,7 @@ The needed parameters for that command are: Example: ```bash -> java -Xmx2G -Djava.library.path=grobid-home/lib/lin-64:grobid-home/lib/lin-64/jep -jar grobid-core/build/libs/grobid-core-0.8.0-onejar.jar -gH grobid-home -dIn /path/to/input/directory -dOut /path/to/output/directory -r -exe processPDFAnnotation +> java -Xmx2G -Djava.library.path=grobid-home/lib/lin-64:grobid-home/lib/lin-64/jep -jar grobid-core/build/libs/grobid-core-0.8.1-onejar.jar -gH grobid-home -dIn /path/to/input/directory -dOut /path/to/output/directory -r -exe processPDFAnnotation ``` WARNING: extension of the text files to be processed must be `.pdf` diff --git a/doc/Grobid-docker.md b/doc/Grobid-docker.md index fd839dc6fb..7b447a0cec 100644 --- a/doc/Grobid-docker.md +++ b/doc/Grobid-docker.md @@ -26,13 +26,13 @@ The process for retrieving and running the image is as follow: Current latest version: ```bash -> docker pull grobid/grobid:0.8.0 +> docker pull grobid/grobid:0.8.1 ``` - Run the container: ```bash -> docker run --rm --gpus all --init --ulimit core=0 -p 8070:8070 grobid/grobid:0.8.0 +> docker run --rm --gpus all --init --ulimit core=0 -p 8070:8070 grobid/grobid:0.8.1 ``` The image will automatically uses the GPU and CUDA version available on your host machine, but only on Linux. GPU usage via a container on Windows and MacOS machine is currently not supported by Docker. If no GPU are available, CPU will be used. @@ -88,7 +88,7 @@ The process for retrieving and running the image is as follow: Latest version: ```bash -> docker pull lfoppiano/grobid:0.8.0 +> docker pull lfoppiano/grobid:0.8.1 ``` - Run the container: @@ -100,7 +100,7 @@ Latest version: Latest version: ```bash -> docker run --rm --init --ulimit core=0 -p 8070:8070 lfoppiano/grobid:0.8.0 +> docker run --rm --init --ulimit core=0 -p 8070:8070 lfoppiano/grobid:0.8.1 ``` Note the default version is running on port `8070`, however it can be mapped on the more traditional port `8080` of your host with the following command: @@ -121,7 +121,7 @@ Grobid web services are then available as described in the [service documentatio The simplest way to pass a modified configuration to the docker image is to mount the yaml GROBID config file `grobid.yaml` when running the image. Modify the config file `grobid/grobid-home/config/grobid.yaml` according to your requirements on the host machine and mount it when running the image as follow: ```bash -docker run --rm --gpus all --init --ulimit core=0 -p 8080:8070 -p 8081:8071 -v /home/lopez/grobid/grobid-home/config/grobid.yaml:/opt/grobid/grobid-home/config/grobid.yaml:ro grobid/grobid:0.8.0 +docker run --rm --gpus all --init --ulimit core=0 -p 8080:8070 -p 8081:8071 -v /home/lopez/grobid/grobid-home/config/grobid.yaml:/opt/grobid/grobid-home/config/grobid.yaml:ro grobid/grobid:0.8.1 ``` You need to use an absolute path to specify your modified `grobid.yaml` file. @@ -222,25 +222,25 @@ Without this requirement, the image might default to CPU, even if GPU are availa For being able to use both CRF and Deep Learningmodels, use the dockerfile `./Dockerfile.delft`. The only important information then is the version which will be checked out from the tags. ```bash -> docker build -t grobid/grobid:0.8.0 --build-arg GROBID_VERSION=0.8.0 --file Dockerfile.delft . +> docker build -t grobid/grobid:0.8.1 --build-arg GROBID_VERSION=0.8.1 --file Dockerfile.delft . ``` Similarly, if you want to create a docker image from the current master, development version: ```bash -docker build -t grobid/grobid:0.8.1-SNAPSHOT --build-arg GROBID_VERSION=0.8.1-SNAPSHOT --file Dockerfile.delft . +docker build -t grobid/grobid:0.8.2-SNAPSHOT --build-arg GROBID_VERSION=0.8.2-SNAPSHOT --file Dockerfile.delft . ``` -In order to run the container of the newly created image, for example for the development version `0.8.1-SNAPSHOT`, using all GPU available: +In order to run the container of the newly created image, for example for the development version `0.8.2-SNAPSHOT`, using all GPU available: ```bash -> docker run --rm --gpus all --init --ulimit core=0 -p 8080:8070 -p 8081:8071 grobid/grobid:0.8.1-SNAPSHOT +> docker run --rm --gpus all --init --ulimit core=0 -p 8080:8070 -p 8081:8071 grobid/grobid:0.8.2-SNAPSHOT ``` In practice, you need to indicate which models should use a Deep Learning model implementation and which ones can remain with a faster CRF model implementation, which is done currently in the `grobid.yaml` file. Modify the config file `grobid/grobid-home/config/grobid.yaml` accordingly on the host machine and mount it when running the image as follow: ```bash -docker run --rm --gpus all --init --ulimit core=0 -p 8080:8070 -p 8081:8071 -v /home/lopez/grobid/grobid-home/config/grobid.yaml:/opt/grobid/grobid-home/config/grobid.yaml:ro grobid/grobid:0.8.1-SNAPSHOT +docker run --rm --gpus all --init --ulimit core=0 -p 8080:8070 -p 8081:8071 -v /home/lopez/grobid/grobid-home/config/grobid.yaml:/opt/grobid/grobid-home/config/grobid.yaml:ro grobid/grobid:0.8.2-SNAPSHOT ``` You need to use an absolute path to specify your modified `grobid.yaml` file. @@ -262,19 +262,19 @@ The container name is given by the command: For building a CRF-only image, the dockerfile to be used is `./Dockerfile.crf`. The only important information then is the version which will be checked out from the tags. ```bash -> docker build -t grobid/grobid:0.8.0 --build-arg GROBID_VERSION=0.8.0 --file Dockerfile.crf . +> docker build -t grobid/grobid:0.8.1 --build-arg GROBID_VERSION=0.8.1 --file Dockerfile.crf . ``` Similarly, if you want to create a docker image from the current master, development version: ```bash -> docker build -t grobid/grobid:0.8.1-SNAPSHOT --build-arg GROBID_VERSION=0.8.1-SNAPSHOT --file Dockerfile.crf . +> docker build -t grobid/grobid:0.8.2-SNAPSHOT --build-arg GROBID_VERSION=0.8.2-SNAPSHOT --file Dockerfile.crf . ``` -In order to run the container of the newly created image, for example for version `0.8.1`: +In order to run the container of the newly created image, for example for version `0.8.2-SNAPSHOT`: ```bash -> docker run --rm --init --ulimit core=0 -p 8080:8070 -p 8081:8071 grobid/grobid:0.8.1 +> docker run --rm --init --ulimit core=0 -p 8080:8070 -p 8081:8071 grobid/grobid:0.8.2-SNAPSHOT ``` For testing or debugging purposes, you can connect to the container with a bash shell (logs are under `/opt/grobid/logs/`): diff --git a/doc/Grobid-java-library.md b/doc/Grobid-java-library.md index 7c2e99f535..1e3ea74c52 100644 --- a/doc/Grobid-java-library.md +++ b/doc/Grobid-java-library.md @@ -9,7 +9,7 @@ The second option is of course to build yourself Grobid and to use the generated ## Using maven -The Java artefacts of the latest GROBID release (0.8.0) are uploaded on a DIY repository. +The Java artefacts of the latest GROBID release (0.8.1) are uploaded on a DIY repository. You need to add the following snippet in your `pom.xml` in order to configure it: @@ -29,19 +29,19 @@ Here an example of `grobid-core` dependency: <dependency> <groupId>org.grobid</groupId> <artifactId>grobid-core</artifactId> - <version>0.8.0</version> + <version>0.8.1</version> </dependency> ``` -If you want to work on a SNAPSHOT development version, you need to download and build the current master yourself, and include in your pom file the path to the local snapshot Grobid jar file, for instance as follow (if necessary replace `0.8.1-SNAPSHOT` by the valid `<current version>`): +If you want to work on a SNAPSHOT development version, you need to download and build the current master yourself, and include in your pom file the path to the local snapshot Grobid jar file, for instance as follow (if necessary replace `0.8.2-SNAPSHOT` by the valid `<current version>`): ```xml <dependency> <groupId>org.grobid</groupId> <artifactId>grobid-core</artifactId> - <version>0.8.1-SNAPSHOT</version> + <version>0.8.2-SNAPSHOT</version> <scope>system</scope> - <systemPath>${project.basedir}/lib/grobid-core-0.8.1-SNAPSHOT.jar</systemPath> + <systemPath>${project.basedir}/lib/grobid-core-0.8.2-SNAPSHOT.jar</systemPath> </dependency> ``` @@ -59,8 +59,8 @@ Add the following snippet in your gradle.build file: and add the Grobid dependency as well: ``` - implement 'org.grobid:grobid-core:0.8.0' - implement 'org.grobid:grobid-trainer:0.8.0' + implement 'org.grobid:grobid-core:0.8.1' + implement 'org.grobid:grobid-trainer:0.8.1' ``` ## API call diff --git a/doc/Grobid-service.md b/doc/Grobid-service.md index 10913e7534..4b3f4129cc 100644 --- a/doc/Grobid-service.md +++ b/doc/Grobid-service.md @@ -27,9 +27,9 @@ From a development installation, you can also build and install the service as a cd .. mkdir grobid-installation cd grobid-installation -unzip ../grobid/grobid-service/build/distributions/grobid-service-0.8.0.zip -mv grobid-service-0.8.0 grobid-service -unzip ../grobid/grobid-home/build/distributions/grobid-home-0.8.0.zip +unzip ../grobid/grobid-service/build/distributions/grobid-service-0.8.1.zip +mv grobid-service-0.8.1 grobid-service +unzip ../grobid/grobid-home/build/distributions/grobid-home-0.8.1.zip ./grobid-service/bin/grobid-service ``` @@ -125,13 +125,15 @@ The consolidation parameters (`consolidateHeader`, `consolidateCitations`, `cons * `1`, means consolidation against CrossRef/biblio-glutton and update of metadata: when we have a DOI match, the publisher metadata are combined with the metadata extracted from the PDF, possibly correcting them * `2`, means consolidation against CrossRef/biblio-glutton and, if matching, addition of the DOI only +The consolidation for header can use a fourth value (`3`), restricting the consolidation to the usage of DOI only, if a DOI has been extracted in the header section. + ### PDF to TEI conversion services #### /api/processHeaderDocument Extract the header of the input PDF document, normalize it and convert it into a TEI XML or [BibTeX] format. -`consolidateHeader` is a string of value `0` (no consolidation), `1` (consolidate and inject all extra metadata, default value), or `2` (consolidate the header metadata and inject DOI only). +`consolidateHeader` is a string of value `0` (no consolidation), `1` (consolidate and inject all extra metadata, default value), `2` (consolidate the header metadata and inject DOI only) or `3` (consolidate using only extracted DOI, if extracted, and do not try to consolidate using any other metadata). | method | request type | response type | parameters | requirement | description | |------------|-----------------------|---------------------|--------------------------|----------------|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/doc/Install-Grobid.md b/doc/Install-Grobid.md index 01d2da98ef..1f85aff34e 100644 --- a/doc/Install-Grobid.md +++ b/doc/Install-Grobid.md @@ -8,17 +8,17 @@ Note: Java/JDK 8 is not supported anymore from Grobid version `0.8.0` and the mi ### Latest stable release -The [latest stable release](https://github.com/kermitt2/grobid#latest-version) of GROBID is version ```0.8.0``` which can be downloaded as follow: +The [latest stable release](https://github.com/kermitt2/grobid#latest-version) of GROBID is version ```0.8.1``` which can be downloaded as follow: ```bash -> wget https://github.com/kermitt2/grobid/archive/0.8.0.zip -> unzip 0.8.0.zip +> wget https://github.com/kermitt2/grobid/archive/0.8.1.zip +> unzip 0.8.1.zip ``` or using the [docker](Grobid-docker.md) container. ### Current development version -The current development version is ```0.8.1-SNAPSHOT```, which can be downloaded from GitHub and built as follow: +The current development version is ```0.8.2-SNAPSHOT```, which can be downloaded from GitHub and built as follow: Clone source code from github: ```bash diff --git a/doc/Notes-grobid-developers.md b/doc/Notes-grobid-developers.md index 151d17ffd5..c5b642c1cb 100644 --- a/doc/Notes-grobid-developers.md +++ b/doc/Notes-grobid-developers.md @@ -9,16 +9,16 @@ The idea anyway is that people will use Grobid with the Docker image, the servic In order to make a new release: -+ tag the project branch to be releases, for instance a version `0.8.0`: ++ tag the project branch to be releases, for instance a version `0.8.1`: ``` -> git tag 0.8.0 -> git push origin 0.8.0 +> git tag 0.8.1 +> git push origin 0.8.1 ``` + create a github release: the easiest is to use the GitHub web interface -+ do something to publish the Java artefacts... currrently just uploading them on AWS S3 ++ do something to publish the Java artefacts... currently just uploading them on AWS S3 + you're not done, you need to update the documentation, `Readme.md`, `CHANGELOG.md` and end-to-end benchmarking (PMC and bioRxiv sets). @@ -35,7 +35,7 @@ In order to make a new release: ``` dependencies { - implementation 'org.grobid:grobid-core:0.7.3' + implementation 'org.grobid:grobid-core:0.8.1' } ``` @@ -55,7 +55,7 @@ for maven projects: <dependency> <groupId>org.grobid</groupId> <artifactId>grobid-core</artifactId> - <version>0.8.0</version> + <version>0.8.1</version> </dependency> ``` diff --git a/doc/References.md b/doc/References.md index 26887cd3f2..dfee440ee1 100644 --- a/doc/References.md +++ b/doc/References.md @@ -3,7 +3,7 @@ If you want to cite this work, please simply refer to the github project: ``` -GROBID (2008-2022) <https://github.com/kermitt2/grobid> +GROBID (2008-2024) <https://github.com/kermitt2/grobid> ``` Please do not include a particular person name to emphasize the project and the tool ! @@ -17,7 +17,7 @@ Here's a BibTeX entry using the [Software Heritage](https://www.softwareheritage title = {GROBID}, howpublished = {\url{https://github.com/kermitt2/grobid}}, publisher = {GitHub}, - year = {2008--2023}, + year = {2008--2024}, archivePrefix = {swh}, eprint = {1:dir:dab86b296e3c3216e2241968f0d63b68e8209d3c} } diff --git a/doc/Run-Grobid.md b/doc/Run-Grobid.md index 673a2c20c5..2f095fedcb 100644 --- a/doc/Run-Grobid.md +++ b/doc/Run-Grobid.md @@ -9,13 +9,13 @@ For convenience, we provide two docker images: - the **full** image provides the best accuracy, because it includes all the required python and TensorFlow libraries, GPU support and all Deep Learning model resources. However it requires more resources, ideally a GPU (it will be automatically detected on Linux). If you have a limited amount of PDF, a good machine, and prioritize accuracy, use this Grobid flavor. To run this version of Grobid, the command is: ```console -docker run --rm --gpus all --init --ulimit core=0 -p 8070:8070 grobid/grobid:0.8.0 +docker run --rm --gpus all --init --ulimit core=0 -p 8070:8070 grobid/grobid:0.8.1 ``` - the **lightweight** image offers best runtime performance, memory usage and Docker image size. However, it does not use some of the best performing models in term of accuracy. If you have a lot of PDF to process, a low resource system, and accuracy is not so important, use this flavor: ```console -docker run --rm --init --ulimit core=0 -p 8070:8070 lfoppiano/grobid:0.8.0 +docker run --rm --init --ulimit core=0 -p 8070:8070 lfoppiano/grobid:0.8.1 ``` More documentation on the Docker images can be found [here](Grobid-docker.md). diff --git a/gradle.properties b/gradle.properties index 35b314eaff..7b3c318651 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,4 +1,4 @@ -version=0.8.1-SNAPSHOT +version=0.8.1 # Set workers to 1 that even for parallel builds it works. (I guess the shadow plugin makes some trouble) org.gradle.workers.max=1 org.gradle.caching = true diff --git a/grobid-core/doc/Annotations/ActivityDiagram.png b/grobid-core/doc/Annotations/ActivityDiagram.png deleted file mode 100644 index 346b80e565..0000000000 Binary files a/grobid-core/doc/Annotations/ActivityDiagram.png and /dev/null differ diff --git a/grobid-core/doc/Annotations/ArgoUMLFiles/ActivityDiagram.zargo b/grobid-core/doc/Annotations/ArgoUMLFiles/ActivityDiagram.zargo deleted file mode 100644 index 5a9f0edb40..0000000000 Binary files a/grobid-core/doc/Annotations/ArgoUMLFiles/ActivityDiagram.zargo and /dev/null differ diff --git a/grobid-core/doc/Annotations/ArgoUMLFiles/ClassDiagram.zargo b/grobid-core/doc/Annotations/ArgoUMLFiles/ClassDiagram.zargo deleted file mode 100644 index 60c5e2b6aa..0000000000 Binary files a/grobid-core/doc/Annotations/ArgoUMLFiles/ClassDiagram.zargo and /dev/null differ diff --git a/grobid-core/doc/Annotations/ClassDiagram.png b/grobid-core/doc/Annotations/ClassDiagram.png deleted file mode 100644 index f863ce24af..0000000000 Binary files a/grobid-core/doc/Annotations/ClassDiagram.png and /dev/null differ diff --git a/grobid-core/doc/licenseAgreemet.txt b/grobid-core/doc/licenseAgreemet.txt deleted file mode 100755 index f23f82aab2..0000000000 --- a/grobid-core/doc/licenseAgreemet.txt +++ /dev/null @@ -1,41 +0,0 @@ -This document has been created to keep track about the exchange between grobid team and pdf2xml team about license agreement. - ------------------------------------------------- -Request sent to pdf2xml team on 22nd of August : -Hello, - - I am part of a project named grobid (hosted on source forge) under Apache license. Pdf2xml is under gpl license. For license compatibility, the tool pdf2xml is not distributed with grobid and has to be installed manually by the user/developer. - We thought that a good idea would be to deploy pdf2xml on a public maven repository, so that is will be disponible to use it. To respect the license with pdf2xml, it is possible to add a specific profile for the maven build of grobid (if you specify that specific profile it will download it else not). So if you add that profile in your build it means you accept the license agreement. - For information the archive would be a simple zip of that structure : -pdf2xml - |_win-32 - |_pdftoxml.exe - |_zlib1.dll - |_mac-64 - |_pdf2xml (build on and for mac-64 platfom) - |_lin-32 - |_pdf2xml (build on and for lin-32 platfom) - |_lin-64 - |_pdf2xml (build on and for mac-32 platfom) - -We would like to know your opinion on the subject. - -Thank you in advance for the answer to your request. - -Regards, - - -Damien ridereau ------------------------------------------------- - - ------------------------------------ -Answer recieved on 29th of August : -Hello, - -It shouldn't be a problem. Pdf2xml is under gpl since it's -based on xpdf, but I don't care much about the licence. - -Hervé ------------------------------------ - diff --git a/grobid-core/src/main/java/org/grobid/core/GrobidModels.java b/grobid-core/src/main/java/org/grobid/core/GrobidModels.java index 374552e55a..7fe5cbcb76 100755 --- a/grobid-core/src/main/java/org/grobid/core/GrobidModels.java +++ b/grobid-core/src/main/java/org/grobid/core/GrobidModels.java @@ -20,6 +20,9 @@ public enum GrobidModels implements GrobidModel { AFFILIATION_ADDRESS("affiliation-address"), SEGMENTATION("segmentation"), + SEGMENTATION_LIGHT("segmentation/light"), + SEGMENTATION_SDO_IETF("segmentation/sdo/ietf"), + SEGMENTATION_SDO_3GPP("segmentation/sdo/3gpp"), CITATION("citation"), REFERENCE_SEGMENTER("reference-segmenter"), DATE("date"), @@ -33,6 +36,9 @@ public enum GrobidModels implements GrobidModel { FIGURE("figure"), TABLE("table"), HEADER("header"), + HEADER_LIGHT("header/light"), + HEADER_SDO_3GPP("header/sdo/3gpp"), + HEADER_SDO_IETF("header/sdo/ietf"), NAMES_CITATION("name/citation"), NAMES_HEADER("name/header"), PATENT_PATENT("patent/patent"), @@ -62,20 +68,32 @@ public enum GrobidModels implements GrobidModel { // This is used in particular for scientific or technical documents like standards (SDO) // which have a particular overall zoning and/or header, while the rest of the content // is similar to other general technical and scientific document - public enum Collection { + public enum Flavor { + LIGHT("light"), + _3GPP("sdo/3gpp"), IETF("sdo/ietf"); public final String label; - private Collection(String label) { + private Flavor(String label) { this.label = label; } public String getLabel() { return label; } + + public static Flavor fromLabel(String text) { + for (Flavor f : Flavor.values()) { + if (f.label.equalsIgnoreCase(text)) { + return f; + } + } + return null; + } }; + /** * Absolute path to the model. */ @@ -124,6 +142,13 @@ public String toString() { return folderName; } + public static GrobidModel getModelFlavor(GrobidModel model, Flavor flavor) { + if (flavor == null) { + return model; + } else + return modelFor(model.toString() + "/" + flavor.getLabel().toLowerCase()); + } + public static GrobidModel modelFor(final String name) { if (models.isEmpty()) { for (GrobidModel model : values()) diff --git a/grobid-core/src/main/java/org/grobid/core/engines/Engine.java b/grobid-core/src/main/java/org/grobid/core/engines/Engine.java index 296b685114..974ff50ed1 100755 --- a/grobid-core/src/main/java/org/grobid/core/engines/Engine.java +++ b/grobid-core/src/main/java/org/grobid/core/engines/Engine.java @@ -557,7 +557,13 @@ public void createTraining(File inputFile, String pathRaw, String pathTEI, int i */ public String fullTextToTEI(File inputFile, GrobidAnalysisConfig config) throws Exception { - return fullTextToTEIDoc(inputFile, null, config).getTei(); + return fullTextToTEIDoc(inputFile, null,null, config).getTei(); + } + + public String fullTextToTEI(File inputFile, + String flavor, + GrobidAnalysisConfig config) throws Exception { + return fullTextToTEIDoc(inputFile, flavor, null, config).getTei(); } /** @@ -573,19 +579,21 @@ public String fullTextToTEI(File inputFile, * @return the resulting structured document as a TEI string. */ public String fullTextToTEI(File inputFile, + String flavor, String md5Str, GrobidAnalysisConfig config) throws Exception { - return fullTextToTEIDoc(inputFile, md5Str, config).getTei(); + return fullTextToTEIDoc(inputFile, flavor, md5Str, config).getTei(); } public Document fullTextToTEIDoc(File inputFile, - String md5Str, - GrobidAnalysisConfig config) throws Exception { + String flavor, + String md5Str, + GrobidAnalysisConfig config) throws Exception { FullTextParser fullTextParser = parsers.getFullTextParser(); Document resultDoc; LOGGER.debug("Starting processing fullTextToTEI on " + inputFile); long time = System.currentTimeMillis(); - resultDoc = fullTextParser.processing(inputFile, md5Str, config); + resultDoc = fullTextParser.processing(inputFile, flavor, md5Str, config); LOGGER.debug("Ending processing fullTextToTEI on " + inputFile + ". Time to process: " + (System.currentTimeMillis() - time) + "ms"); return resultDoc; @@ -593,16 +601,17 @@ public Document fullTextToTEIDoc(File inputFile, public Document fullTextToTEIDoc(File inputFile, GrobidAnalysisConfig config) throws Exception { - return fullTextToTEIDoc(inputFile, null, config); + return fullTextToTEIDoc(inputFile, null, null, config); } public Document fullTextToTEIDoc(DocumentSource documentSource, - GrobidAnalysisConfig config) throws Exception { + String flavor, + GrobidAnalysisConfig config) throws Exception { FullTextParser fullTextParser = parsers.getFullTextParser(); Document resultDoc; LOGGER.debug("Starting processing fullTextToTEI on " + documentSource); long time = System.currentTimeMillis(); - resultDoc = fullTextParser.processing(documentSource, config); + resultDoc = fullTextParser.processing(documentSource, flavor, config); LOGGER.debug("Ending processing fullTextToTEI on " + documentSource + ". Time to process: " + (System.currentTimeMillis() - time) + "ms"); return resultDoc; diff --git a/grobid-core/src/main/java/org/grobid/core/engines/EngineParsers.java b/grobid-core/src/main/java/org/grobid/core/engines/EngineParsers.java index 0ff94aaef6..2a07073e89 100644 --- a/grobid-core/src/main/java/org/grobid/core/engines/EngineParsers.java +++ b/grobid-core/src/main/java/org/grobid/core/engines/EngineParsers.java @@ -2,11 +2,15 @@ import org.grobid.core.engines.entities.ChemicalParser; import org.grobid.core.engines.patent.ReferenceExtractor; +import org.grobid.core.GrobidModels.Flavor; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import java.io.Closeable; import java.io.IOException; +import java.util.Map; +import java.util.HashMap; +import java.util.EnumMap; public class EngineParsers implements Closeable { public static final Logger LOGGER = LoggerFactory.getLogger(EngineParsers.class); @@ -14,12 +18,14 @@ public class EngineParsers implements Closeable { private AuthorParser authorParser = null; private AffiliationAddressParser affiliationAddressParser = null; private HeaderParser headerParser = null; + private Map<Flavor,HeaderParser> headerParsers = null; private DateParser dateParser = null; private CitationParser citationParser = null; private FullTextParser fullTextParser = null; private ReferenceExtractor referenceExtractor = null; private ChemicalParser chemicalParser = null; private Segmentation segmentationParser = null; + private Map<Flavor,Segmentation> segmentationParsers = null; private ReferenceSegmenterParser referenceSegmenterParser = null; private FigureParser figureParser = null; private TableParser tableParser = null; @@ -49,14 +55,30 @@ public AuthorParser getAuthorParser() { } public HeaderParser getHeaderParser() { - if (headerParser == null) { + return getHeaderParser(null); + } + + public HeaderParser getHeaderParser(Flavor flavor) { + if (flavor == null) { + if (headerParser == null) { + synchronized (this) { + if (headerParser == null) { + headerParser = new HeaderParser(this); + } + } + } + return headerParser; + } else { synchronized (this) { - if (headerParser == null) { - headerParser = new HeaderParser(this); + if (headerParsers == null || headerParsers.get(flavor) == null) { + HeaderParser localHeaderParser = new HeaderParser(this, flavor); + if (headerParsers == null) + headerParsers = new EnumMap<>(Flavor.class); + headerParsers.put(flavor, localHeaderParser); } } + return headerParsers.get(flavor); } - return headerParser; } public DateParser getDateParser() { @@ -95,14 +117,30 @@ public FullTextParser getFullTextParser() { } public Segmentation getSegmentationParser() { - if (segmentationParser == null) { + return getSegmentationParser(null); + } + + public Segmentation getSegmentationParser(Flavor flavor) { + if (flavor == null) { + if (segmentationParser == null) { + synchronized (this) { + if (segmentationParser == null) { + segmentationParser = new Segmentation(); + } + } + } + return segmentationParser; + } { synchronized (this) { - if (segmentationParser == null) { - segmentationParser = new Segmentation(); + if (segmentationParsers == null || segmentationParsers.get(flavor) == null) { + Segmentation localSegmentationParser = new Segmentation(flavor); + if (segmentationParsers == null) + segmentationParsers = new EnumMap<>(Flavor.class); + segmentationParsers.put(flavor, localSegmentationParser); } } + return segmentationParsers.get(flavor); } - return segmentationParser; } public ReferenceExtractor getReferenceExtractor() { diff --git a/grobid-core/src/main/java/org/grobid/core/engines/FullTextParser.java b/grobid-core/src/main/java/org/grobid/core/engines/FullTextParser.java index 953d92f8b1..588371659d 100755 --- a/grobid-core/src/main/java/org/grobid/core/engines/FullTextParser.java +++ b/grobid-core/src/main/java/org/grobid/core/engines/FullTextParser.java @@ -47,6 +47,7 @@ import org.grobid.core.utilities.matching.EntityMatcherException; import org.grobid.core.engines.citations.CalloutAnalyzer; import org.grobid.core.engines.citations.CalloutAnalyzer.MarkerType; +import org.grobid.core.GrobidModels.Flavor; import org.slf4j.Logger; import org.slf4j.LoggerFactory; @@ -98,11 +99,17 @@ public FullTextParser(EngineParsers parsers) { public Document processing(File inputPdf, GrobidAnalysisConfig config) throws Exception { + return processing(inputPdf, null, config); + } + + /*public Document processing(File inputPdf, + String flavor, + GrobidAnalysisConfig config) throws Exception { DocumentSource documentSource = DocumentSource.fromPdf(inputPdf, config.getStartPage(), config.getEndPage(), config.getPdfAssetPath() != null, true, false); - return processing(documentSource, config); - } + return processing(documentSource, flavor, config); + }*/ public Document processingHeaderFunding(File inputPdf, GrobidAnalysisConfig config) throws Exception { @@ -112,14 +119,21 @@ public Document processingHeaderFunding(File inputPdf, return processingHeaderFunding(documentSource, config); } + public Document processing(File inputPdf, + String md5Str, + GrobidAnalysisConfig config) throws Exception { + return processing(inputPdf, null, md5Str, config); + } + public Document processing(File inputPdf, + String flavor, String md5Str, GrobidAnalysisConfig config) throws Exception { DocumentSource documentSource = DocumentSource.fromPdf(inputPdf, config.getStartPage(), config.getEndPage(), config.getPdfAssetPath() != null, true, false); documentSource.setMD5(md5Str); - return processing(documentSource, config); + return processing(documentSource, flavor, config); } public Document processingHeaderFunding(File inputPdf, @@ -141,6 +155,20 @@ public Document processingHeaderFunding(File inputPdf, */ public Document processing(DocumentSource documentSource, GrobidAnalysisConfig config) { + return processing(documentSource, null, config); + } + + /** + * Machine-learning recognition of the complete full text structures. + * + * @param documentSource input + * @param flavor optional model flavor + * @param config config + * @return the document object with built TEI + */ + public Document processing(DocumentSource documentSource, + String flavor, + GrobidAnalysisConfig config) { if (tmpPath == null) { throw new GrobidResourceException("Cannot process pdf file, because temp path is null."); } @@ -148,9 +176,13 @@ public Document processing(DocumentSource documentSource, throw new GrobidResourceException("Cannot process pdf file, because temp path '" + tmpPath.getAbsolutePath() + "' does not exists."); } + + Flavor flavorObject = null; + if (flavor != null && flavor.length()>0) + flavorObject = Flavor.fromLabel(flavor); try { // general segmentation - Document doc = parsers.getSegmentationParser().processing(documentSource, config); + Document doc = parsers.getSegmentationParser(flavorObject).processing(documentSource, config); SortedSet<DocumentPiece> documentBodyParts = doc.getDocumentPart(SegmentationLabels.BODY); // header processing @@ -158,7 +190,7 @@ public Document processing(DocumentSource documentSource, Pair<String, LayoutTokenization> featSeg = null; // using the segmentation model to identify the header zones - parsers.getHeaderParser().processingHeaderSection(config, doc, resHeader, false); + parsers.getHeaderParser(flavorObject).processingHeaderSection(config, doc, resHeader, false); // The commented part below makes use of the PDF embedded metadata (the so-called XMP) if available // as fall back to set author and title if they have not been found. diff --git a/grobid-core/src/main/java/org/grobid/core/engines/FundingAcknowledgementParser.java b/grobid-core/src/main/java/org/grobid/core/engines/FundingAcknowledgementParser.java index cfeef3637f..fca9efacb9 100644 --- a/grobid-core/src/main/java/org/grobid/core/engines/FundingAcknowledgementParser.java +++ b/grobid-core/src/main/java/org/grobid/core/engines/FundingAcknowledgementParser.java @@ -190,7 +190,10 @@ public MutablePair<Element, MutableTriple<List<Funding>,List<Person>,List<Affili List<AnnotatedXMLElement> annotations = localResult.left; FundingAcknowledgmentParse localEntities = localResult.right; - List<OffsetPosition> annotationsPositionTokens = annotations.stream().map(AnnotatedXMLElement::getOffsetPosition).toList(); + List<OffsetPosition> annotationsPositionTokens = annotations.stream() + .map(AnnotatedXMLElement::getOffsetPosition) + .collect(Collectors.toList()); + List<OffsetPosition> annotationsPositionText = TextUtilities.matchTokenAndString(tokenizationFunding, paragraphText, annotationsPositionTokens); List<AnnotatedXMLElement> annotationsWithPosRefToText = new ArrayList<>(); for (int i = 0; i < annotationsPositionText.size(); i++) { @@ -250,20 +253,21 @@ private static Nodes mergeSentencesFallingOnAnnotations(Nodes sentences, List<An // We obtain the corrected coordinates that don't fall over the annotations List<OffsetPosition> correctedOffsetPositions = SentenceUtilities.correctSentencePositions(sentencePositions, annotations .stream() - .map(AnnotatedXMLElement::getOffsetPosition).toList()); + .map(AnnotatedXMLElement::getOffsetPosition) + .collect(Collectors.toList())); List<Integer> toRemove = new ArrayList<>(); for (OffsetPosition correctedOffsetPosition : correctedOffsetPositions) { List<OffsetPosition> originalSentences = sentencePositions.stream() .filter(a -> a.start >= correctedOffsetPosition.start && a.end <= correctedOffsetPosition.end) - .toList(); + .collect(Collectors.toList()); // if for each "corrected sentences offset" there are more than one original sentence that // falls into it, it means we need to merge if (originalSentences.size() > 1) { List<Integer> toMerge = originalSentences.stream() .map(sentencePositions::indexOf) - .toList(); + .collect(Collectors.toList()); Element destination = (Element) sentences.get(toMerge.get(0)); boolean needToMergeCoordinates = config.isGenerateTeiCoordinates("s"); @@ -291,7 +295,7 @@ private static Nodes mergeSentencesFallingOnAnnotations(Nodes sentences, List<An boundingBoxes.addAll(Arrays.stream(coordinates.split(";")) .filter(StringUtils::isNotBlank) .map(BoundingBox::fromString) - .toList()); + .collect(Collectors.toList())); // Group by page, then merge List<BoundingBox> postMergeBoxes = new ArrayList<>(); @@ -301,7 +305,7 @@ private static Nodes mergeSentencesFallingOnAnnotations(Nodes sentences, List<An postMergeBoxes.addAll(mergedBoundingBoxes); } - String coordsAsString = String.join(";", postMergeBoxes.stream().map(BoundingBox::toString).toList()); + String coordsAsString = String.join(";", postMergeBoxes.stream().map(BoundingBox::toString).collect(Collectors.toList())); Attribute newCoords = new Attribute("coords", coordsAsString); destination.addAttribute(newCoords); } @@ -369,7 +373,7 @@ private static void updateParagraphNodeWithAnnotations(Node paragraph, List<Anno int finalPos = pos; List<AnnotatedXMLElement> annotationsInThisChunk = annotations.stream() .filter(a -> a.getOffsetPosition().start >= finalPos && a.getOffsetPosition().end <= finalPos + text.length()) - .toList(); + .collect(Collectors.toList()); if (CollectionUtils.isNotEmpty(annotationsInThisChunk)) { List<Node> nodes = getNodesAnnotationsInTextNode(currentNode, annotationsInThisChunk, pos); @@ -407,7 +411,7 @@ private static void updateSentencesNodesWithAnnotations(Nodes sentences, List<An int finalPos = pos; List<AnnotatedXMLElement> annotationsInThisChunk = annotations.stream() .filter(a -> a.getOffsetPosition().start >= finalPos && a.getOffsetPosition().end <= finalPos + text.length()) - .toList(); + .collect(Collectors.toList()); if (CollectionUtils.isNotEmpty(annotationsInThisChunk)) { List<Node> nodes = getNodesAnnotationsInTextNode(currentNode, annotationsInThisChunk, pos); diff --git a/grobid-core/src/main/java/org/grobid/core/engines/HeaderParser.java b/grobid-core/src/main/java/org/grobid/core/engines/HeaderParser.java index 185f3714d5..7362594096 100755 --- a/grobid-core/src/main/java/org/grobid/core/engines/HeaderParser.java +++ b/grobid-core/src/main/java/org/grobid/core/engines/HeaderParser.java @@ -24,6 +24,7 @@ import org.grobid.core.tokenization.LabeledTokensContainer; import org.grobid.core.tokenization.TaggingTokenCluster; import org.grobid.core.tokenization.TaggingTokenClusteror; +import org.grobid.core.GrobidModels.Flavor; import org.grobid.core.utilities.*; import org.grobid.core.utilities.counters.CntManager; import org.slf4j.Logger; @@ -71,6 +72,18 @@ public HeaderParser(EngineParsers parsers) { GrobidProperties.getInstance(); } + public HeaderParser(EngineParsers parsers, CntManager cntManager, Flavor flavor) { + super(GrobidModels.getModelFlavor(GrobidModels.HEADER, flavor), cntManager); + this.parsers = parsers; + GrobidProperties.getInstance(); + } + + public HeaderParser(EngineParsers parsers, Flavor flavor) { + super(GrobidModels.getModelFlavor(GrobidModels.HEADER, flavor)); + this.parsers = parsers; + GrobidProperties.getInstance(); + } + /** * Processing with application of the segmentation model */ diff --git a/grobid-core/src/main/java/org/grobid/core/engines/ProcessEngine.java b/grobid-core/src/main/java/org/grobid/core/engines/ProcessEngine.java index 435948ee44..2bb6cea15d 100644 --- a/grobid-core/src/main/java/org/grobid/core/engines/ProcessEngine.java +++ b/grobid-core/src/main/java/org/grobid/core/engines/ProcessEngine.java @@ -581,7 +581,7 @@ public void processPDFAnnotation(final GrobidMainArgs pGbdArgs) throws Exception .generateTeiCoordinates(elementWithCoords) .build(); - Document teiDoc = getEngine().fullTextToTEIDoc(currPDF, null, config); + Document teiDoc = getEngine().fullTextToTEIDoc(currPDF, null, null, config); document = PDDocument.load(currPDF); //If no pages, skip the document if (document.getNumberOfPages() > 0) { diff --git a/grobid-core/src/main/java/org/grobid/core/engines/Segmentation.java b/grobid-core/src/main/java/org/grobid/core/engines/Segmentation.java index 9f66865576..6fbffed03d 100644 --- a/grobid-core/src/main/java/org/grobid/core/engines/Segmentation.java +++ b/grobid-core/src/main/java/org/grobid/core/engines/Segmentation.java @@ -15,6 +15,7 @@ import org.grobid.core.utilities.GrobidProperties; import org.grobid.core.utilities.LanguageUtilities; import org.grobid.core.utilities.TextUtilities; +import org.grobid.core.GrobidModels.Flavor; import org.slf4j.Logger; import org.slf4j.LoggerFactory; @@ -79,6 +80,10 @@ public class Segmentation extends AbstractParser { public Segmentation() { super(GrobidModels.SEGMENTATION); } + + public Segmentation(Flavor flavor) { + super(GrobidModels.getModelFlavor(GrobidModels.SEGMENTATION, flavor)); + } /** * Segment a PDF document into high level zones: cover page, document header, diff --git a/grobid-core/src/main/java/org/grobid/core/jni/PythonEnvironmentConfig.java b/grobid-core/src/main/java/org/grobid/core/jni/PythonEnvironmentConfig.java index c1a3781366..7254d81d98 100644 --- a/grobid-core/src/main/java/org/grobid/core/jni/PythonEnvironmentConfig.java +++ b/grobid-core/src/main/java/org/grobid/core/jni/PythonEnvironmentConfig.java @@ -100,14 +100,14 @@ public static PythonEnvironmentConfig getInstanceForVirtualEnv(String virtualEnv .stream() .map(path -> FilenameUtils.getName(path.getFileName().toString()) .replace("libpython", "").replace("python", "")) - .filter(version -> version.contains("3.7") || version.contains("3.8") || version.contains("3.9")) + .filter(version -> version.contains("3.7") || version.contains("3.8") || version.contains("3.9") || version.contains("3.10") || version.contains("3.11") || version.contains("3.12")) .distinct() .sorted() .collect(Collectors.toList()); if (CollectionUtils.isEmpty(pythonVersions)) { throw new GrobidException( - "Cannot find a suitable version (3.7, 3.8 or 3.9) of python in your virtual environment: " + + "Cannot find a suitable version (3.7 to 3.12) of python in your virtual environment: " + virtualEnv ); } diff --git a/grobid-core/src/main/java/org/grobid/core/utilities/GrobidProperties.java b/grobid-core/src/main/java/org/grobid/core/utilities/GrobidProperties.java index c32739a43f..46ca43691b 100644 --- a/grobid-core/src/main/java/org/grobid/core/utilities/GrobidProperties.java +++ b/grobid-core/src/main/java/org/grobid/core/utilities/GrobidProperties.java @@ -588,13 +588,28 @@ public static File getPdfaltoPath() { return pathToPdfalto; } + public static ModelParameters getGrobidModelParameters(final String modelName) { + ModelParameters param = modelMap.get(modelName); + // if we have a flvor of the model, we can fall back to the configuration + // of the parent model + String fallBackModelName = modelName; + while(param == null) { + LOGGER.debug("No configuration parameter defined for model " + modelName); + int ind = fallBackModelName.lastIndexOf("-"); + if (ind != -1) { + fallBackModelName = modelName.substring(0,ind); + } else { + return null; + } + param = modelMap.get(fallBackModelName); + } + return param; + } public static String getGrobidEngineName(final String modelName) { - ModelParameters param = modelMap.get(modelName); - if (param == null) { - LOGGER.debug("No configuration parameter defined for model " + modelName); + ModelParameters param = getGrobidModelParameters(modelName); + if (param == null) return null; - } return param.engine; } @@ -612,8 +627,14 @@ public static GrobidCRFEngine getGrobidEngine(final GrobidModel model) { public static File getModelPath(final GrobidModel model) { if (modelMap.get(model.getModelName()) == null) { - // model is not specified in the config, ignoring - return null; + // model is either: + // - a flavor without config, but that should fallback to the parent model config + // if no specific config exists. If it is the case, the model path is infered + // from the flavor model name + // - a normal model not specified in the config, so returning null + + if (getGrobidModelParameters(model.getModelName()) == null) + return null; } String extension = getGrobidEngine(model).getExt(); return new File(getGrobidHome(), FOLDER_NAME_MODELS + File.separator @@ -626,10 +647,10 @@ public static File getModelPath() { } public static File getTemplatePath(final File resourcesDir, final GrobidModel model) { - if (modelMap.get(model.getModelName()) == null) { - // model is not specified in the config, ignoring + ModelParameters param = getGrobidModelParameters(model.getModelName()); + if (param == null) return null; - } + File theFile = new File(resourcesDir, "dataset/" + model.getFolderName() + "/crfpp-templates/" + model.getTemplateName()); if (!theFile.exists()) { @@ -727,7 +748,7 @@ public static void setPythonVirtualEnv(String pythonVirtualEnv) { } public static int getWindow(final GrobidModel model) { - ModelParameters parameters = modelMap.get(model.getModelName()); + ModelParameters parameters = getGrobidModelParameters(model.getModelName()); if (parameters != null && parameters.wapiti != null) return parameters.wapiti.window; else @@ -735,7 +756,7 @@ public static int getWindow(final GrobidModel model) { } public static double getEpsilon(final GrobidModel model) { - ModelParameters parameters = modelMap.get(model.getModelName()); + ModelParameters parameters = getGrobidModelParameters(model.getModelName()); if (parameters != null && parameters.wapiti != null) return parameters.wapiti.epsilon; else @@ -743,7 +764,7 @@ public static double getEpsilon(final GrobidModel model) { } public static int getNbMaxIterations(final GrobidModel model) { - ModelParameters parameters = modelMap.get(model.getModelName()); + ModelParameters parameters = getGrobidModelParameters(model.getModelName()); if (parameters != null && parameters.wapiti != null) return parameters.wapiti.nbMaxIterations; else @@ -751,7 +772,7 @@ public static int getNbMaxIterations(final GrobidModel model) { } public static boolean useELMo(final String modelName) { - ModelParameters param = modelMap.get(modelName); + ModelParameters param = getGrobidModelParameters(modelName); if (param == null) { LOGGER.debug("No configuration parameter defined for model " + modelName); return false; @@ -765,7 +786,7 @@ public static boolean useELMo(final String modelName) { } public static String getDelftArchitecture(final String modelName) { - ModelParameters param = modelMap.get(modelName); + ModelParameters param = getGrobidModelParameters(modelName); if (param == null) { LOGGER.debug("No configuration parameter defined for model " + modelName); return null; @@ -779,7 +800,7 @@ public static String getDelftArchitecture(final String modelName) { } public static String getDelftEmbeddingsName(final String modelName) { - ModelParameters param = modelMap.get(modelName); + ModelParameters param = getGrobidModelParameters(modelName); if (param == null) { LOGGER.debug("No configuration parameter defined for model " + modelName); return null; @@ -793,7 +814,7 @@ public static String getDelftEmbeddingsName(final String modelName) { } public static String getDelftTranformer(final String modelName) { - ModelParameters param = modelMap.get(modelName); + ModelParameters param = getGrobidModelParameters(modelName); if (param == null) { LOGGER.debug("No configuration parameter defined for model " + modelName); return null; @@ -810,7 +831,7 @@ public static String getDelftTranformer(final String modelName) { * Return -1 if not set in the configuration and the default DeLFT value will be used in this case. */ public static int getDelftTrainingMaxSequenceLength(final String modelName) { - ModelParameters param = modelMap.get(modelName); + ModelParameters param = getGrobidModelParameters(modelName); if (param == null) { LOGGER.debug("No configuration parameter defined for model " + modelName); return -1; @@ -833,7 +854,7 @@ public static int getDelftTrainingMaxSequenceLength(final String modelName) { * Return -1 if not set in the configuration and the default DeLFT value will be used in this case. */ public static int getDelftRuntimeMaxSequenceLength(final String modelName) { - ModelParameters param = modelMap.get(modelName); + ModelParameters param = getGrobidModelParameters(modelName); if (param == null) { LOGGER.debug("No configuration parameter defined for model " + modelName); return -1; @@ -856,7 +877,7 @@ public static int getDelftRuntimeMaxSequenceLength(final String modelName) { * Return -1 if not set in the configuration and the default DeLFT value will be used in this case. */ public static int getDelftTrainingBatchSize(final String modelName) { - ModelParameters param = modelMap.get(modelName); + ModelParameters param = getGrobidModelParameters(modelName); if (param == null) { LOGGER.debug("No configuration parameter defined for model " + modelName); return -1; @@ -879,7 +900,7 @@ public static int getDelftTrainingBatchSize(final String modelName) { * Return -1 if not set in the configuration and the default DeLFT value will be used in this case. */ public static int getDelftRuntimeBatchSize(final String modelName) { - ModelParameters param = modelMap.get(modelName); + ModelParameters param = getGrobidModelParameters(modelName); if (param == null) { LOGGER.debug("No configuration parameter defined for model " + modelName); return -1; diff --git a/grobid-core/src/main/java/org/grobid/core/visualization/FigureTableVisualizer.java b/grobid-core/src/main/java/org/grobid/core/visualization/FigureTableVisualizer.java index 4e773cc1be..86dcefc91f 100644 --- a/grobid-core/src/main/java/org/grobid/core/visualization/FigureTableVisualizer.java +++ b/grobid-core/src/main/java/org/grobid/core/visualization/FigureTableVisualizer.java @@ -99,7 +99,7 @@ private static void processPdfFile(File input, File outputFolder) throws Excepti blacklistedPages = getVectorGraphicPages(pdfaltoDirectory); - Document teiDoc = engine.fullTextToTEIDoc(documentSource, config); + Document teiDoc = engine.fullTextToTEIDoc(documentSource, null, config); PDDocument out = annotateFigureAndTables( document, copiedFile, teiDoc, diff --git a/grobid-home/models/header/sdo/ietf/model.wapiti b/grobid-home/models/header/sdo/ietf/model.wapiti new file mode 100644 index 0000000000..ef30d79f23 --- /dev/null +++ b/grobid-home/models/header/sdo/ietf/model.wapiti @@ -0,0 +1,34104 @@ +#mdl#2#880 +#rdr#86/29/0 +12:u00:%x[-4,0], +12:u01:%x[-3,0], +12:u02:%x[-2,0], +12:u03:%x[-1,0], +11:u04:%x[0,0], +11:u05:%x[1,0], +11:u06:%x[2,0], +11:u07:%x[3,0], +11:u08:%x[4,0], +20:u09:%x[-1,0]/%x[0,0], +19:u0A:%x[0,0]/%x[1,0], +19:u0B:%x[1,0]/%x[2,0], +21:u0C:%x[-2,0]/%x[-1,0], +21:u0D:%x[0,0]/%x[-1,28], +12:u10:%x[-2,1], +12:u11:%x[-1,1], +11:u12:%x[0,1], +11:u13:%x[1,1], +11:u14:%x[2,1], +11:u20:%x[0,2], +11:u21:%x[0,3], +11:u22:%x[0,4], +11:u23:%x[0,5], +11:u30:%x[0,6], +11:u31:%x[0,7], +11:u32:%x[0,8], +11:u33:%x[0,9], +13:u40:%x[-1,10], +12:u41:%x[0,10], +12:u42:%x[1,10], +13:u50:%x[-1,11], +12:u51:%x[0,11], +12:u52:%x[1,11], +13:u60:%x[-1,12], +12:u61:%x[0,12], +12:u62:%x[1,12], +13:u60:%x[-1,13], +12:u61:%x[0,13], +12:u62:%x[1,13], +13:u70:%x[-1,14], +12:u71:%x[0,14], +12:u72:%x[1,14], +13:u80:%x[-1,15], +12:u81:%x[0,15], +12:u82:%x[1,15], +13:u90:%x[-1,16], +12:u91:%x[0,16], +12:u92:%x[1,16], +12:uA0:%x[0,17], +12:uA1:%x[1,17], +13:uA2:%x[-1,17], +21:uA3:%x[0,17]/%x[1,17], +22:uA4:%x[-1,17]/%x[0,17], +12:uB0:%x[0,18], +13:uB1:%x[-1,18], +12:uB2:%x[1,18], +12:uC0:%x[0,19], +13:uC1:%x[-1,19], +12:uC2:%x[1,19], +12:uD0:%x[0,19], +12:uD1:%x[0,20], +12:uD2:%x[0,21], +12:uD3:%x[0,22], +12:uD4:%x[0,23], +12:uD5:%x[0,24], +12:uD6:%x[0,25], +12:uD7:%x[0,26], +12:uD8:%x[0,27], +12:uDI:%x[1,19], +12:uDJ:%x[1,20], +12:uDK:%x[1,21], +12:uDL:%x[1,22], +12:uDM:%x[1,23], +12:uDN:%x[1,24], +12:uDO:%x[1,25], +12:uDP:%x[1,26], +12:uDQ:%x[1,27], +12:uE0:%x[0,28], +13:uE1:%x[-1,28], +13:uE2:%x[-2,28], +12:uE3:%x[1,28], +12:uE4:%x[2,28], +13:uF0:%x[-1,29], +12:uF1:%x[0,29], +12:uF2:%x[1,29], +1:b, +#qrk#24 +8:I-<date>, +6:<date>, +9:I-<other>, +7:<other>, +11:I-<doctype>, +9:<doctype>, +10:I-<pubnum>, +8:<pubnum>, +9:I-<title>, +7:<title>, +12:I-<abstract>, +10:<abstract>, +13:I-<copyright>, +11:<copyright>, +13:<affiliation>, +9:<address>, +7:<email>, +9:I-<email>, +9:I-<group>, +7:<group>, +10:I-<author>, +8:<author>, +15:I-<affiliation>, +11:I-<address>, +#qrk#33110 +8:u00:_x-4, +8:u01:_x-3, +8:u02:_x-2, +8:u03:_x-1, +10:u04:server, +8:u05:date, +12:u06:20190710, +5:u07:;, +14:u08:downloaded, +15:u09:_x-1/server, +15:u0A:server/date, +17:u0B:date/20190710, +13:u0C:_x-2/_x-1, +15:u0D:server/_x-1, +8:u10:_x-2, +8:u11:_x-1, +10:u12:server, +8:u13:date, +12:u14:20190710, +5:u20:s, +6:u21:se, +7:u22:ser, +8:u23:serv, +5:u30:r, +6:u31:er, +7:u32:ver, +8:u33:rver, +8:u40:_x-1, +14:u41:BLOCKSTART, +11:u42:BLOCKIN, +8:u50:_x-1, +13:u51:LINESTART, +10:u52:LINEIN, +8:u60:_x-1, +11:u61:NEWFONT, +12:u62:SAMEFONT, +14:u61:HIGHERFONT, +16:u62:SAMEFONTSIZE, +8:u70:_x-1, +5:u71:1, +5:u72:1, +8:u80:_x-1, +5:u81:0, +5:u82:0, +8:u90:_x-1, +5:u91:0, +5:u92:0, +10:uA0:NOCAPS, +10:uA1:NOCAPS, +8:uA2:_x-1, +17:uA3:NOCAPS/NOCAPS, +15:uA4:_x-1/NOCAPS, +11:uB0:NODIGIT, +8:uB1:_x-1, +11:uB2:NODIGIT, +5:uC0:0, +8:uC1:_x-1, +5:uC2:0, +5:uD0:0, +5:uD1:0, +5:uD2:0, +5:uD3:0, +5:uD4:0, +5:uD5:0, +5:uD6:0, +5:uD7:0, +5:uD8:0, +5:uDI:0, +5:uDJ:0, +5:uDK:1, +5:uDL:0, +5:uDM:0, +5:uDN:0, +5:uDO:0, +5:uDP:0, +5:uDQ:0, +5:uE0:0, +8:uE1:_x-1, +8:uE2:_x-2, +5:uE3:0, +5:uE4:0, +8:uF0:_x-1, +11:uF1:NOPUNCT, +11:uF2:NOPUNCT, +1:b, +8:u00:_x-3, +8:u01:_x-2, +8:u02:_x-1, +10:u03:server, +8:u04:date, +12:u05:20190710, +5:u06:;, +14:u07:downloaded, +6:u08:by, +15:u09:server/date, +17:u0A:date/20190710, +14:u0B:20190710/;, +15:u0C:_x-1/server, +10:u0D:date/0, +8:u10:_x-1, +10:u11:server, +8:u12:date, +12:u13:20190710, +5:u14:;, +5:u20:d, +6:u21:da, +7:u22:dat, +8:u23:date, +5:u30:e, +6:u31:te, +7:u32:ate, +8:u33:date, +14:u40:BLOCKSTART, +11:u41:BLOCKIN, +13:u50:LINESTART, +10:u51:LINEIN, +11:u60:NEWFONT, +12:u61:SAMEFONT, +14:u60:HIGHERFONT, +16:u61:SAMEFONTSIZE, +5:u70:1, +5:u80:0, +5:u90:0, +10:uA2:NOCAPS, +17:uA4:NOCAPS/NOCAPS, +11:uB1:NODIGIT, +12:uB2:ALLDIGIT, +5:uC1:0, +5:uD2:1, +5:uDK:0, +5:uDN:1, +5:uE1:0, +8:uE2:_x-1, +11:uF0:NOPUNCT, +8:u00:_x-2, +8:u01:_x-1, +10:u02:server, +8:u03:date, +12:u04:20190710, +5:u05:;, +14:u06:downloaded, +6:u07:by, +7:u08:EPO, +17:u09:date/20190710, +14:u0A:20190710/;, +16:u0B:;/downloaded, +15:u0C:server/date, +14:u0D:20190710/0, +10:u10:server, +8:u11:date, +12:u12:20190710, +5:u13:;, +14:u14:downloaded, +5:u20:2, +6:u21:20, +7:u22:201, +8:u23:2019, +5:u30:0, +6:u31:10, +7:u32:710, +8:u33:0710, +11:u40:BLOCKIN, +10:u50:LINEIN, +12:u60:SAMEFONT, +16:u60:SAMEFONTSIZE, +10:uA1:ALLCAP, +17:uA3:NOCAPS/ALLCAP, +12:uB0:ALLDIGIT, +5:uC2:1, +5:uD5:1, +5:uDI:1, +5:uE2:0, +9:uF2:PUNCT, +8:u00:_x-1, +10:u01:server, +8:u02:date, +12:u03:20190710, +5:u04:;, +14:u05:downloaded, +6:u06:by, +7:u07:EPO, +6:u08:on, +14:u09:20190710/;, +16:u0A:;/downloaded, +17:u0B:downloaded/by, +17:u0C:date/20190710, +7:u0D:;/0, +8:u10:date, +12:u11:20190710, +5:u12:;, +14:u13:downloaded, +6:u14:by, +5:u20:;, +5:u21:;, +5:u22:;, +5:u23:;, +5:u30:;, +5:u31:;, +5:u32:;, +5:u33:;, +10:uA0:ALLCAP, +17:uA3:ALLCAP/NOCAPS, +17:uA4:NOCAPS/ALLCAP, +12:uB1:ALLDIGIT, +5:uC0:1, +5:uD0:1, +9:uF1:PUNCT, +10:u00:server, +8:u01:date, +12:u02:20190710, +5:u03:;, +14:u04:downloaded, +6:u05:by, +7:u06:EPO, +6:u07:on, +12:u08:20190711, +16:u09:;/downloaded, +17:u0A:downloaded/by, +10:u0B:by/EPO, +14:u0C:20190710/;, +16:u0D:downloaded/0, +12:u10:20190710, +5:u11:;, +14:u12:downloaded, +6:u13:by, +7:u14:epo, +6:u21:do, +7:u22:dow, +8:u23:down, +5:u30:d, +6:u31:ed, +7:u32:ded, +8:u33:aded, +10:uA2:ALLCAP, +17:uA4:ALLCAP/NOCAPS, +5:uC1:1, +9:uF0:PUNCT, +8:u00:date, +12:u01:20190710, +5:u02:;, +14:u03:downloaded, +6:u04:by, +7:u05:EPO, +6:u06:on, +12:u07:20190711, +12:u08:Internet, +17:u09:downloaded/by, +10:u0A:by/EPO, +10:u0B:EPO/on, +16:u0C:;/downloaded, +8:u0D:by/0, +5:u10:;, +14:u11:downloaded, +6:u12:by, +7:u13:epo, +6:u14:on, +5:u20:b, +6:u21:by, +6:u22:by, +6:u23:by, +5:u30:y, +6:u31:by, +6:u32:by, +6:u33:by, +12:u00:20190710, +5:u01:;, +14:u02:downloaded, +6:u03:by, +7:u04:EPO, +6:u05:on, +12:u06:20190711, +12:u07:Internet, +12:u08:Research, +10:u09:by/EPO, +10:u0A:EPO/on, +15:u0B:on/20190711, +17:u0C:downloaded/by, +9:u0D:EPO/0, +14:u10:downloaded, +6:u11:by, +7:u12:epo, +6:u13:on, +12:u14:20190711, +5:u20:E, +6:u21:EP, +7:u22:EPO, +7:u23:EPO, +5:u30:O, +6:u31:PO, +7:u32:EPO, +7:u33:EPO, +5:u00:;, +14:u01:downloaded, +6:u02:by, +7:u03:EPO, +6:u04:on, +12:u05:20190711, +12:u06:Internet, +12:u07:Research, +8:u08:Task, +10:u09:EPO/on, +15:u0A:on/20190711, +21:u0B:20190711/Internet, +10:u0C:by/EPO, +8:u0D:on/0, +6:u10:by, +7:u11:epo, +6:u12:on, +12:u13:20190711, +12:u14:internet, +5:u20:o, +6:u21:on, +6:u22:on, +6:u23:on, +5:u30:n, +6:u31:on, +6:u32:on, +6:u33:on, +11:u52:LINEEND, +14:u00:downloaded, +6:u01:by, +7:u02:EPO, +6:u03:on, +12:u04:20190711, +12:u05:Internet, +12:u06:Research, +8:u07:Task, +9:u08:Force, +15:u09:on/20190711, +21:u0A:20190711/Internet, +21:u0B:Internet/Research, +10:u0C:EPO/on, +14:u0D:20190711/0, +7:u10:epo, +6:u11:on, +12:u12:20190711, +12:u13:internet, +12:u14:research, +5:u30:1, +6:u31:11, +7:u32:711, +8:u33:0711, +14:u42:BLOCKSTART, +11:u51:LINEEND, +13:u52:LINESTART, +11:u62:NEWFONT, +14:u62:HIGHERFONT, +11:uA1:INITCAP, +18:uA3:NOCAPS/INITCAP, +6:u00:by, +7:u01:EPO, +6:u02:on, +12:u03:20190711, +12:u04:Internet, +12:u05:Research, +8:u06:Task, +9:u07:Force, +5:u08:(, +21:u09:20190711/Internet, +21:u0A:Internet/Research, +17:u0B:Research/Task, +15:u0C:on/20190711, +14:u0D:Internet/0, +6:u10:on, +12:u11:20190711, +12:u12:internet, +12:u13:research, +8:u14:task, +5:u20:I, +6:u21:In, +7:u22:Int, +8:u23:Inte, +5:u30:t, +6:u31:et, +7:u32:net, +8:u33:rnet, +11:u50:LINEEND, +11:uA0:INITCAP, +19:uA3:INITCAP/INITCAP, +18:uA4:NOCAPS/INITCAP, +5:uDJ:1, +7:u00:EPO, +6:u01:on, +12:u02:20190711, +12:u03:Internet, +12:u04:Research, +8:u05:Task, +9:u06:Force, +5:u07:(, +8:u08:IRTF, +21:u09:Internet/Research, +17:u0A:Research/Task, +14:u0B:Task/Force, +21:u0C:20190711/Internet, +14:u0D:Research/0, +12:u10:20190711, +12:u11:internet, +12:u12:research, +8:u13:task, +9:u14:force, +5:u20:R, +6:u21:Re, +7:u22:Res, +8:u23:Rese, +5:u30:h, +6:u31:ch, +7:u32:rch, +8:u33:arch, +11:uA2:INITCAP, +19:uA4:INITCAP/INITCAP, +5:uD1:1, +6:u00:on, +12:u01:20190711, +12:u02:Internet, +12:u03:Research, +8:u04:Task, +9:u05:Force, +5:u06:(, +8:u07:IRTF, +5:u08:), +17:u09:Research/Task, +14:u0A:Task/Force, +11:u0B:Force/(, +21:u0C:Internet/Research, +10:u0D:Task/0, +12:u10:internet, +12:u11:research, +8:u12:task, +9:u13:force, +5:u14:(, +5:u20:T, +6:u21:Ta, +7:u22:Tas, +8:u23:Task, +5:u30:k, +6:u31:sk, +7:u32:ask, +8:u33:Task, +12:u00:20190711, +12:u01:Internet, +12:u02:Research, +8:u03:Task, +9:u04:Force, +5:u05:(, +8:u06:IRTF, +5:u07:), +5:u08:M, +14:u09:Task/Force, +11:u0A:Force/(, +10:u0B:(/IRTF, +17:u0C:Research/Task, +11:u0D:Force/0, +12:u10:research, +8:u11:task, +9:u12:force, +5:u13:(, +8:u14:irtf, +5:u20:F, +6:u21:Fo, +7:u22:For, +8:u23:Forc, +6:u31:ce, +7:u32:rce, +8:u33:orce, +18:uA3:INITCAP/ALLCAP, +15:uF2:OPENBRACKET, +12:u00:Internet, +12:u01:Research, +8:u02:Task, +9:u03:Force, +5:u04:(, +8:u05:IRTF, +5:u06:), +5:u07:M, +5:u08:., +11:u09:Force/(, +10:u0A:(/IRTF, +10:u0B:IRTF/), +14:u0C:Task/Force, +7:u0D:(/0, +8:u10:task, +9:u11:force, +5:u12:(, +8:u13:irtf, +5:u14:), +5:u20:(, +5:u21:(, +5:u22:(, +5:u23:(, +5:u30:(, +5:u31:(, +5:u32:(, +5:u33:(, +17:uA3:ALLCAP/ALLCAP, +18:uA4:INITCAP/ALLCAP, +15:uF1:OPENBRACKET, +12:u00:Research, +8:u01:Task, +9:u02:Force, +5:u03:(, +8:u04:IRTF, +5:u05:), +5:u06:M, +5:u07:., +9:u08:Mosko, +10:u09:(/IRTF, +10:u0A:IRTF/), +7:u0B:)/M, +11:u0C:Force/(, +10:u0D:IRTF/0, +9:u10:force, +5:u11:(, +8:u12:irtf, +5:u13:), +5:u14:m, +6:u21:IR, +7:u22:IRT, +8:u23:IRTF, +5:u30:F, +6:u31:TF, +7:u32:RTF, +8:u33:IRTF, +17:uA4:ALLCAP/ALLCAP, +15:uF0:OPENBRACKET, +14:uF2:ENDBRACKET, +8:u00:Task, +9:u01:Force, +5:u02:(, +8:u03:IRTF, +5:u04:), +5:u05:M, +5:u06:., +9:u07:Mosko, +11:u08:Request, +10:u09:IRTF/), +7:u0A:)/M, +7:u0B:M/., +10:u0C:(/IRTF, +7:u0D:)/0, +5:u10:(, +8:u11:irtf, +5:u12:), +5:u13:m, +5:u14:., +5:u20:), +5:u21:), +5:u22:), +5:u23:), +5:u30:), +5:u31:), +5:u32:), +5:u33:), +14:uF1:ENDBRACKET, +9:u00:Force, +5:u01:(, +8:u02:IRTF, +5:u03:), +5:u04:M, +5:u05:., +9:u06:Mosko, +11:u07:Request, +7:u08:for, +7:u09:)/M, +7:u0A:M/., +11:u0B:./Mosko, +10:u0C:IRTF/), +7:u0D:M/0, +8:u10:irtf, +5:u11:), +5:u12:m, +5:u13:., +9:u14:mosko, +5:u20:M, +5:u21:M, +5:u22:M, +5:u23:M, +5:u30:M, +5:u31:M, +5:u32:M, +5:u33:M, +14:uF0:ENDBRACKET, +7:uF2:DOT, +5:u00:(, +8:u01:IRTF, +5:u02:), +5:u03:M, +5:u04:., +9:u05:Mosko, +11:u06:Request, +7:u07:for, +12:u08:Comments, +7:u09:M/., +11:u0A:./Mosko, +17:u0B:Mosko/Request, +7:u0C:)/M, +7:u0D:./0, +5:u10:), +5:u11:m, +5:u12:., +9:u13:mosko, +11:u14:request, +5:u20:., +5:u21:., +5:u22:., +5:u23:., +5:u30:., +5:u31:., +5:u32:., +5:u33:., +18:uA3:ALLCAP/INITCAP, +7:uF1:DOT, +8:u00:IRTF, +5:u01:), +5:u02:M, +5:u03:., +9:u04:Mosko, +11:u05:Request, +7:u06:for, +12:u07:Comments, +5:u08::, +11:u09:./Mosko, +17:u0A:Mosko/Request, +15:u0B:Request/for, +7:u0C:M/., +11:u0D:Mosko/0, +5:u10:m, +5:u11:., +9:u12:mosko, +11:u13:request, +7:u14:for, +6:u21:Mo, +7:u22:Mos, +8:u23:Mosk, +5:u30:o, +6:u31:ko, +7:u32:sko, +8:u33:osko, +18:uA4:ALLCAP/INITCAP, +7:uF0:DOT, +5:u00:), +5:u01:M, +5:u02:., +9:u03:Mosko, +11:u04:Request, +7:u05:for, +12:u06:Comments, +5:u07::, +8:u08:8609, +17:u09:Mosko/Request, +15:u0A:Request/for, +16:u0B:for/Comments, +11:u0C:./Mosko, +13:u0D:Request/0, +5:u10:., +9:u11:mosko, +11:u12:request, +7:u13:for, +12:u14:comments, +7:u22:Req, +8:u23:Requ, +6:u31:st, +7:u32:est, +8:u33:uest, +18:uA3:INITCAP/NOCAPS, +5:u00:M, +5:u01:., +9:u02:Mosko, +11:u03:Request, +7:u04:for, +12:u05:Comments, +5:u06::, +8:u07:8609, +8:u08:PARC, +15:u09:Request/for, +16:u0A:for/Comments, +14:u0B:Comments/:, +17:u0C:Mosko/Request, +9:u0D:for/0, +9:u10:mosko, +11:u11:request, +7:u12:for, +12:u13:comments, +5:u14::, +5:u20:f, +6:u21:fo, +7:u22:for, +7:u23:for, +6:u31:or, +7:u32:for, +7:u33:for, +18:uA4:INITCAP/NOCAPS, +5:u00:., +9:u01:Mosko, +11:u02:Request, +7:u03:for, +12:u04:Comments, +5:u05::, +8:u06:8609, +8:u07:PARC, +5:u08:,, +16:u09:for/Comments, +14:u0A:Comments/:, +10:u0B::/8609, +15:u0C:Request/for, +14:u0D:Comments/0, +11:u10:request, +7:u11:for, +12:u12:comments, +5:u13::, +8:u14:8609, +5:u20:C, +6:u21:Co, +7:u22:Com, +8:u23:Comm, +5:u30:s, +6:u31:ts, +7:u32:nts, +8:u33:ents, +9:u00:Mosko, +11:u01:Request, +7:u02:for, +12:u03:Comments, +5:u04::, +8:u05:8609, +8:u06:PARC, +5:u07:,, +7:u08:Inc, +14:u09:Comments/:, +10:u0A::/8609, +13:u0B:8609/PARC, +16:u0C:for/Comments, +7:u0D::/0, +7:u10:for, +12:u11:comments, +5:u12::, +8:u13:8609, +8:u14:parc, +5:u20::, +5:u21::, +5:u22::, +5:u23::, +5:u30::, +5:u31::, +5:u32::, +5:u33::, +11:u00:Request, +7:u01:for, +12:u02:Comments, +5:u03::, +8:u04:8609, +8:u05:PARC, +5:u06:,, +7:u07:Inc, +10:u09::/8609, +13:u0A:8609/PARC, +10:u0B:PARC/,, +14:u0C:Comments/:, +10:u0D:8609/0, +12:u10:comments, +5:u11::, +8:u12:8609, +8:u13:parc, +5:u14:,, +5:u20:8, +6:u21:86, +7:u22:860, +8:u23:8609, +5:u30:9, +6:u31:09, +7:u32:609, +8:u33:8609, +7:u00:for, +12:u01:Comments, +5:u02::, +8:u03:8609, +8:u04:PARC, +5:u05:,, +7:u06:Inc, +12:u08:Category, +13:u09:8609/PARC, +10:u0A:PARC/,, +9:u0B:,/Inc, +10:u0C::/8609, +10:u0D:PARC/0, +5:u10::, +8:u11:8609, +8:u12:parc, +5:u13:,, +7:u14:inc, +5:u20:P, +6:u21:PA, +7:u22:PAR, +8:u23:PARC, +5:u30:C, +6:u31:RC, +7:u32:ARC, +8:u33:PARC, +9:uF2:COMMA, +12:u00:Comments, +5:u01::, +8:u02:8609, +8:u03:PARC, +5:u04:,, +7:u05:Inc, +12:u07:Category, +10:u09:PARC/,, +9:u0A:,/Inc, +9:u0B:Inc/., +13:u0C:8609/PARC, +7:u0D:,/0, +8:u10:8609, +8:u11:parc, +5:u12:,, +7:u13:inc, +5:u20:,, +5:u21:,, +5:u22:,, +5:u23:,, +5:u30:,, +5:u31:,, +5:u32:,, +5:u33:,, +9:uF1:COMMA, +5:u00::, +8:u01:8609, +8:u02:PARC, +5:u03:,, +7:u04:Inc, +12:u06:Category, +16:u08:Experimental, +9:u09:,/Inc, +9:u0A:Inc/., +14:u0B:./Category, +10:u0C:PARC/,, +9:u0D:Inc/0, +8:u10:parc, +5:u11:,, +7:u12:inc, +12:u14:category, +7:u22:Inc, +7:u23:Inc, +5:u30:c, +6:u31:nc, +7:u32:Inc, +7:u33:Inc, +9:uF0:COMMA, +8:u00:8609, +8:u01:PARC, +5:u02:,, +7:u03:Inc, +12:u05:Category, +16:u07:Experimental, +5:u08:I, +9:u09:Inc/., +14:u0A:./Category, +14:u0B:Category/:, +9:u0C:,/Inc, +5:u10:,, +7:u11:inc, +12:u13:category, +8:u00:PARC, +5:u01:,, +7:u02:Inc, +12:u04:Category, +16:u06:Experimental, +5:u07:I, +14:u09:./Category, +14:u0A:Category/:, +18:u0B::/Experimental, +9:u0C:Inc/., +14:u0D:Category/0, +7:u10:inc, +12:u12:category, +16:u14:experimental, +6:u21:Ca, +7:u22:Cat, +8:u23:Cate, +6:u31:ry, +7:u32:ory, +8:u33:gory, +5:u00:,, +7:u01:Inc, +12:u03:Category, +16:u05:Experimental, +5:u06:I, +9:u08:Solis, +14:u09:Category/:, +18:u0A::/Experimental, +18:u0B:Experimental/I, +14:u0C:./Category, +12:u11:category, +16:u13:experimental, +5:u14:i, +7:u00:Inc, +12:u02:Category, +16:u04:Experimental, +5:u05:I, +9:u07:Solis, +8:u08:ISSN, +18:u09::/Experimental, +18:u0A:Experimental/I, +7:u0B:I/., +14:u0C:Category/:, +18:u0D:Experimental/0, +12:u10:category, +16:u12:experimental, +5:u13:i, +6:u21:Ex, +7:u22:Exp, +8:u23:Expe, +5:u30:l, +6:u31:al, +7:u32:tal, +8:u33:ntal, +12:u01:Category, +16:u03:Experimental, +5:u04:I, +9:u06:Solis, +8:u07:ISSN, +18:u09:Experimental/I, +7:u0A:I/., +11:u0B:./Solis, +18:u0C::/Experimental, +7:u0D:I/0, +16:u11:experimental, +5:u12:i, +9:u14:solis, +5:u21:I, +5:u22:I, +5:u23:I, +5:u30:I, +5:u31:I, +5:u32:I, +5:u33:I, +12:u00:Category, +16:u02:Experimental, +5:u03:I, +9:u05:Solis, +8:u06:ISSN, +8:u08:2070, +7:u09:I/., +11:u0A:./Solis, +14:u0B:Solis/ISSN, +18:u0C:Experimental/I, +16:u10:experimental, +5:u11:i, +9:u13:solis, +8:u14:issn, +16:u01:Experimental, +5:u02:I, +9:u04:Solis, +8:u05:ISSN, +8:u07:2070, +5:u08:-, +11:u09:./Solis, +14:u0A:Solis/ISSN, +10:u0B:ISSN/:, +7:u0C:I/., +11:u0D:Solis/0, +5:u10:i, +9:u12:solis, +8:u13:issn, +5:u20:S, +6:u21:So, +7:u22:Sol, +8:u23:Soli, +6:u31:is, +7:u32:lis, +8:u33:olis, +16:u00:Experimental, +5:u01:I, +9:u03:Solis, +8:u04:ISSN, +8:u06:2070, +5:u07:-, +8:u08:1721, +14:u09:Solis/ISSN, +10:u0A:ISSN/:, +10:u0B::/2070, +11:u0C:./Solis, +10:u0D:ISSN/0, +9:u11:solis, +8:u12:issn, +8:u14:2070, +6:u21:IS, +7:u22:ISS, +8:u23:ISSN, +5:u30:N, +6:u31:SN, +7:u32:SSN, +8:u33:ISSN, +5:u00:I, +9:u02:Solis, +8:u03:ISSN, +8:u05:2070, +5:u06:-, +8:u07:1721, +12:u08:LinkedIn, +10:u09:ISSN/:, +10:u0A::/2070, +10:u0B:2070/-, +14:u0C:Solis/ISSN, +9:u10:solis, +8:u11:issn, +8:u13:2070, +5:u14:-, +5:uE4:1, +9:u01:Solis, +8:u02:ISSN, +8:u04:2070, +5:u05:-, +8:u06:1721, +12:u07:LinkedIn, +5:u08:C, +10:u09::/2070, +10:u0A:2070/-, +10:u0B:-/1721, +10:u0C:ISSN/:, +10:u0D:2070/0, +8:u10:issn, +8:u12:2070, +5:u13:-, +8:u14:1721, +7:u22:207, +8:u23:2070, +6:u31:70, +7:u32:070, +8:u33:2070, +5:uE3:1, +10:uF2:HYPHEN, +9:u00:Solis, +8:u01:ISSN, +8:u03:2070, +5:u04:-, +8:u05:1721, +12:u06:LinkedIn, +5:u07:C, +10:u09:2070/-, +10:u0A:-/1721, +17:u0B:1721/LinkedIn, +10:u0C::/2070, +7:u0D:-/0, +8:u11:2070, +5:u12:-, +8:u13:1721, +12:u14:linkedin, +5:u20:-, +5:u21:-, +5:u22:-, +5:u23:-, +5:u30:-, +5:u31:-, +5:u32:-, +5:u33:-, +5:uE0:1, +10:uF1:HYPHEN, +8:u00:ISSN, +8:u02:2070, +5:u03:-, +8:u04:1721, +12:u05:LinkedIn, +5:u06:C, +8:u08:Wood, +10:u09:-/1721, +17:u0A:1721/LinkedIn, +14:u0B:LinkedIn/C, +10:u0C:2070/-, +10:u0D:1721/1, +8:u10:2070, +5:u11:-, +8:u12:1721, +12:u13:linkedin, +5:u14:c, +5:u20:1, +6:u21:17, +7:u22:172, +8:u23:1721, +6:u31:21, +7:u32:721, +8:u33:1721, +5:uE1:1, +10:uF0:HYPHEN, +8:u01:2070, +5:u02:-, +8:u03:1721, +12:u04:LinkedIn, +5:u05:C, +8:u07:Wood, +14:u08:University, +17:u09:1721/LinkedIn, +14:u0A:LinkedIn/C, +7:u0B:C/., +10:u0C:-/1721, +14:u0D:LinkedIn/0, +5:u10:-, +8:u11:1721, +12:u12:linkedin, +5:u13:c, +5:u20:L, +6:u21:Li, +7:u22:Lin, +8:u23:Link, +6:u31:In, +7:u32:dIn, +8:u33:edIn, +5:uE2:1, +8:u00:2070, +5:u01:-, +8:u02:1721, +12:u03:LinkedIn, +5:u04:C, +8:u06:Wood, +14:u07:University, +6:u08:of, +14:u09:LinkedIn/C, +7:u0A:C/., +10:u0B:./Wood, +17:u0C:1721/LinkedIn, +7:u0D:C/0, +8:u10:1721, +12:u11:linkedin, +5:u12:c, +8:u14:wood, +5:u21:C, +5:u22:C, +5:u23:C, +5:u31:C, +5:u32:C, +5:u33:C, +5:u00:-, +8:u01:1721, +12:u02:LinkedIn, +5:u03:C, +8:u05:Wood, +14:u06:University, +6:u07:of, +14:u08:California, +7:u09:C/., +10:u0A:./Wood, +19:u0B:Wood/University, +14:u0C:LinkedIn/C, +12:u10:linkedin, +5:u11:c, +8:u13:wood, +14:u14:university, +8:u00:1721, +12:u01:LinkedIn, +5:u02:C, +8:u04:Wood, +14:u05:University, +6:u06:of, +14:u07:California, +10:u08:Irvine, +10:u09:./Wood, +19:u0A:Wood/University, +17:u0B:University/of, +7:u0C:C/., +10:u0D:Wood/0, +5:u10:c, +8:u12:wood, +14:u13:university, +6:u14:of, +5:u20:W, +6:u21:Wo, +7:u22:Woo, +8:u23:Wood, +6:u31:od, +7:u32:ood, +8:u33:Wood, +12:u00:LinkedIn, +5:u01:C, +8:u03:Wood, +14:u04:University, +6:u05:of, +14:u06:California, +10:u07:Irvine, +8:u08:July, +19:u09:Wood/University, +17:u0A:University/of, +17:u0B:of/California, +10:u0C:./Wood, +16:u0D:University/0, +8:u11:wood, +14:u12:university, +6:u13:of, +14:u14:california, +5:u20:U, +6:u21:Un, +7:u22:Uni, +8:u23:Univ, +6:u31:ty, +7:u32:ity, +8:u33:sity, +5:u00:C, +8:u02:Wood, +14:u03:University, +6:u04:of, +14:u05:California, +10:u06:Irvine, +8:u07:July, +8:u08:2019, +17:u09:University/of, +17:u0A:of/California, +21:u0B:California/Irvine, +19:u0C:Wood/University, +8:u0D:of/0, +8:u10:wood, +14:u11:university, +6:u12:of, +14:u13:california, +10:u14:irvine, +6:u21:of, +6:u22:of, +6:u23:of, +5:u30:f, +6:u31:of, +6:u32:of, +6:u33:of, +8:u01:Wood, +14:u02:University, +6:u03:of, +14:u04:California, +10:u05:Irvine, +8:u06:July, +8:u07:2019, +11:u08:Content, +17:u09:of/California, +21:u0A:California/Irvine, +15:u0B:Irvine/July, +17:u0C:University/of, +16:u0D:California/0, +14:u10:university, +6:u11:of, +14:u12:california, +10:u13:irvine, +8:u14:july, +7:u22:Cal, +8:u23:Cali, +5:u30:a, +6:u31:ia, +7:u32:nia, +8:u33:rnia, +8:u00:Wood, +14:u01:University, +6:u02:of, +14:u03:California, +10:u04:Irvine, +8:u05:July, +8:u06:2019, +11:u07:Content, +21:u09:California/Irvine, +15:u0A:Irvine/July, +13:u0B:July/2019, +17:u0C:of/California, +12:u0D:Irvine/0, +6:u10:of, +14:u11:california, +10:u12:irvine, +8:u13:july, +8:u14:2019, +6:u21:Ir, +7:u22:Irv, +8:u23:Irvi, +6:u31:ne, +7:u32:ine, +8:u33:vine, +5:uDO:1, +14:u00:University, +6:u01:of, +14:u02:California, +10:u03:Irvine, +8:u04:July, +8:u05:2019, +11:u06:Content, +11:u08:Centric, +15:u09:Irvine/July, +13:u0A:July/2019, +16:u0B:2019/Content, +21:u0C:California/Irvine, +10:u0D:July/0, +14:u10:california, +10:u11:irvine, +8:u12:july, +8:u13:2019, +11:u14:content, +5:u20:J, +6:u21:Ju, +7:u22:Jul, +8:u23:July, +6:u31:ly, +7:u32:uly, +8:u33:July, +5:uD6:1, +6:u00:of, +14:u01:California, +10:u02:Irvine, +8:u03:July, +8:u04:2019, +11:u05:Content, +11:u07:Centric, +14:u08:Networking, +13:u09:July/2019, +16:u0A:2019/Content, +13:u0B:Content/-, +15:u0C:Irvine/July, +10:u0D:2019/0, +10:u10:irvine, +8:u11:july, +8:u12:2019, +11:u13:content, +6:u31:19, +7:u32:019, +8:u33:2019, +14:u00:California, +10:u01:Irvine, +8:u02:July, +8:u03:2019, +11:u04:Content, +11:u06:Centric, +14:u07:Networking, +16:u09:2019/Content, +13:u0A:Content/-, +13:u0B:-/Centric, +13:u0C:July/2019, +13:u0D:Content/0, +8:u10:july, +8:u11:2019, +11:u12:content, +11:u14:centric, +7:u22:Con, +8:u23:Cont, +6:u31:nt, +7:u32:ent, +8:u33:tent, +10:u00:Irvine, +8:u01:July, +8:u02:2019, +11:u03:Content, +11:u05:Centric, +14:u06:Networking, +8:u08:CCNx, +13:u09:Content/-, +13:u0A:-/Centric, +22:u0B:Centric/Networking, +16:u0C:2019/Content, +8:u10:2019, +11:u11:content, +11:u13:centric, +14:u14:networking, +8:u00:July, +8:u01:2019, +11:u02:Content, +11:u04:Centric, +14:u05:Networking, +8:u07:CCNx, +13:u09:-/Centric, +22:u0A:Centric/Networking, +16:u0B:Networking/(, +13:u0C:Content/-, +13:u0D:Centric/1, +11:u10:content, +11:u12:centric, +14:u13:networking, +6:u21:Ce, +7:u22:Cen, +8:u23:Cent, +6:u31:ic, +7:u32:ric, +8:u33:tric, +8:u00:2019, +11:u01:Content, +11:u03:Centric, +14:u04:Networking, +8:u06:CCNx, +12:u08:Messages, +22:u09:Centric/Networking, +16:u0A:Networking/(, +10:u0B:(/CCNx, +13:u0C:-/Centric, +16:u0D:Networking/0, +11:u11:centric, +14:u12:networking, +8:u14:ccnx, +5:u20:N, +6:u21:Ne, +7:u22:Net, +8:u23:Netw, +5:u30:g, +6:u31:ng, +7:u32:ing, +8:u33:king, +11:u00:Content, +11:u02:Centric, +14:u03:Networking, +8:u05:CCNx, +12:u07:Messages, +6:u08:in, +16:u09:Networking/(, +10:u0A:(/CCNx, +10:u0B:CCNx/), +22:u0C:Centric/Networking, +11:u10:centric, +14:u11:networking, +8:u13:ccnx, +11:u01:Centric, +14:u02:Networking, +8:u04:CCNx, +12:u06:Messages, +6:u07:in, +7:u08:TLV, +10:u09:(/CCNx, +10:u0A:CCNx/), +14:u0B:)/Messages, +16:u0C:Networking/(, +10:u0D:CCNx/0, +14:u10:networking, +8:u12:ccnx, +12:u14:messages, +6:u21:CC, +7:u22:CCN, +8:u23:CCNx, +5:u30:x, +6:u31:Nx, +7:u32:CNx, +8:u33:CCNx, +11:u00:Centric, +14:u01:Networking, +8:u03:CCNx, +12:u05:Messages, +6:u06:in, +7:u07:TLV, +10:u08:Format, +10:u09:CCNx/), +14:u0A:)/Messages, +15:u0B:Messages/in, +10:u0C:(/CCNx, +8:u11:ccnx, +12:u13:messages, +6:u14:in, +14:u00:Networking, +8:u02:CCNx, +12:u04:Messages, +6:u05:in, +7:u06:TLV, +10:u07:Format, +12:u08:Abstract, +14:u09:)/Messages, +15:u0A:Messages/in, +10:u0B:in/TLV, +10:u0C:CCNx/), +14:u0D:Messages/0, +8:u10:ccnx, +12:u12:messages, +6:u13:in, +7:u14:tlv, +6:u21:Me, +7:u22:Mes, +8:u23:Mess, +6:u31:es, +7:u32:ges, +8:u33:ages, +8:u01:CCNx, +12:u03:Messages, +6:u04:in, +7:u05:TLV, +10:u06:Format, +12:u07:Abstract, +15:u09:Messages/in, +10:u0A:in/TLV, +14:u0B:TLV/Format, +14:u0C:)/Messages, +8:u0D:in/0, +12:u11:messages, +6:u12:in, +7:u13:tlv, +10:u14:format, +5:u20:i, +6:u21:in, +6:u22:in, +6:u23:in, +6:u31:in, +6:u32:in, +6:u33:in, +8:u00:CCNx, +12:u02:Messages, +6:u03:in, +7:u04:TLV, +10:u05:Format, +12:u06:Abstract, +10:u09:in/TLV, +14:u0A:TLV/Format, +19:u0B:Format/Abstract, +15:u0C:Messages/in, +9:u0D:TLV/0, +12:u10:messages, +6:u11:in, +7:u12:tlv, +10:u13:format, +12:u14:abstract, +6:u21:TL, +7:u22:TLV, +7:u23:TLV, +5:u30:V, +6:u31:LV, +7:u32:TLV, +7:u33:TLV, +12:u01:Messages, +6:u02:in, +7:u03:TLV, +10:u04:Format, +12:u05:Abstract, +14:u09:TLV/Format, +19:u0A:Format/Abstract, +20:u0B:Abstract/Content, +10:u0C:in/TLV, +12:u0D:Format/0, +6:u10:in, +7:u11:tlv, +10:u12:format, +12:u13:abstract, +8:u23:Form, +6:u31:at, +7:u32:mat, +8:u33:rmat, +12:u00:Messages, +6:u01:in, +7:u02:TLV, +10:u03:Format, +12:u04:Abstract, +19:u09:Format/Abstract, +20:u0A:Abstract/Content, +14:u0C:TLV/Format, +14:u0D:Abstract/0, +7:u10:tlv, +10:u11:format, +12:u12:abstract, +5:u20:A, +6:u21:Ab, +7:u22:Abs, +8:u23:Abst, +6:u31:ct, +7:u32:act, +8:u33:ract, +6:u00:in, +7:u01:TLV, +10:u02:Format, +12:u03:Abstract, +20:u09:Abstract/Content, +19:u0C:Format/Abstract, +10:u10:format, +12:u11:abstract, +7:u00:TLV, +10:u01:Format, +12:u02:Abstract, +20:u0C:Abstract/Content, +12:u10:abstract, +10:u00:Format, +12:u01:Abstract, +12:u00:Abstract, +6:u08:is, +6:u07:is, +5:u08:a, +6:u06:is, +5:u07:a, +11:u08:network, +8:u0B:)/is, +6:u14:is, +6:u05:is, +5:u06:a, +11:u07:network, +12:u08:protocol, +8:u0A:)/is, +8:u0B:is/a, +6:u13:is, +5:u14:a, +6:u04:is, +5:u05:a, +11:u06:network, +12:u07:protocol, +8:u08:that, +8:u09:)/is, +8:u0A:is/a, +13:u0B:a/network, +8:u0D:is/0, +6:u12:is, +5:u13:a, +11:u14:network, +6:u21:is, +6:u22:is, +6:u23:is, +6:u32:is, +6:u33:is, +6:u03:is, +5:u04:a, +11:u05:network, +12:u06:protocol, +8:u07:that, +8:u08:uses, +8:u09:is/a, +13:u0A:a/network, +20:u0B:network/protocol, +8:u0C:)/is, +7:u0D:a/0, +6:u11:is, +5:u12:a, +11:u13:network, +12:u14:protocol, +5:u20:a, +5:u21:a, +5:u22:a, +5:u23:a, +5:u31:a, +5:u32:a, +5:u33:a, +6:u02:is, +5:u03:a, +11:u04:network, +12:u05:protocol, +8:u06:that, +8:u07:uses, +13:u09:a/network, +20:u0A:network/protocol, +17:u0B:protocol/that, +8:u0C:is/a, +13:u0D:network/0, +6:u10:is, +5:u11:a, +11:u12:network, +12:u13:protocol, +8:u14:that, +5:u20:n, +6:u21:ne, +7:u22:net, +8:u23:netw, +6:u31:rk, +7:u32:ork, +8:u33:work, +6:u01:is, +5:u02:a, +11:u03:network, +12:u04:protocol, +8:u05:that, +8:u06:uses, +16:u08:hierarchical, +20:u09:network/protocol, +17:u0A:protocol/that, +13:u0B:that/uses, +13:u0C:a/network, +14:u0D:protocol/0, +5:u10:a, +11:u11:network, +12:u12:protocol, +8:u13:that, +8:u14:uses, +5:u20:p, +6:u21:pr, +7:u22:pro, +8:u23:prot, +6:u31:ol, +7:u32:col, +8:u33:ocol, +6:u00:is, +5:u01:a, +11:u02:network, +12:u03:protocol, +8:u04:that, +8:u05:uses, +16:u07:hierarchical, +8:u08:name, +17:u09:protocol/that, +13:u0A:that/uses, +10:u0B:uses/a, +20:u0C:network/protocol, +10:u0D:that/0, +11:u10:network, +12:u11:protocol, +8:u12:that, +8:u13:uses, +5:u20:t, +6:u21:th, +7:u22:tha, +8:u23:that, +7:u32:hat, +8:u33:that, +5:u00:a, +11:u01:network, +12:u02:protocol, +8:u03:that, +8:u04:uses, +16:u06:hierarchical, +8:u07:name, +6:u08:to, +13:u09:that/uses, +10:u0A:uses/a, +18:u0B:a/hierarchical, +17:u0C:protocol/that, +10:u0D:uses/0, +12:u10:protocol, +8:u11:that, +8:u12:uses, +16:u14:hierarchical, +5:u20:u, +6:u21:us, +7:u22:use, +8:u23:uses, +7:u32:ses, +8:u33:uses, +11:u00:network, +12:u01:protocol, +8:u02:that, +8:u03:uses, +16:u05:hierarchical, +8:u06:name, +6:u07:to, +11:u08:forward, +10:u09:uses/a, +18:u0A:a/hierarchical, +21:u0B:hierarchical/name, +13:u0C:that/uses, +8:u10:that, +8:u11:uses, +16:u13:hierarchical, +8:u14:name, +12:u00:protocol, +8:u01:that, +8:u02:uses, +16:u04:hierarchical, +8:u05:name, +6:u06:to, +11:u07:forward, +12:u08:requests, +18:u09:a/hierarchical, +21:u0A:hierarchical/name, +11:u0B:name/to, +10:u0C:uses/a, +18:u0D:hierarchical/0, +8:u10:uses, +16:u12:hierarchical, +8:u13:name, +6:u14:to, +5:u20:h, +6:u21:hi, +7:u22:hie, +8:u23:hier, +7:u32:cal, +8:u33:ical, +8:u00:that, +8:u01:uses, +16:u03:hierarchical, +8:u04:name, +6:u05:to, +11:u06:forward, +12:u07:requests, +7:u08:and, +21:u09:hierarchical/name, +11:u0A:name/to, +14:u0B:to/forward, +18:u0C:a/hierarchical, +10:u0D:name/0, +16:u11:hierarchical, +8:u12:name, +6:u13:to, +11:u14:forward, +6:u21:na, +7:u22:nam, +8:u23:name, +6:u31:me, +7:u32:ame, +8:u33:name, +8:u00:uses, +16:u02:hierarchical, +8:u03:name, +6:u04:to, +11:u05:forward, +12:u06:requests, +7:u07:and, +11:u09:name/to, +14:u0A:to/forward, +20:u0B:forward/requests, +21:u0C:hierarchical/name, +8:u0D:to/0, +16:u10:hierarchical, +8:u11:name, +6:u12:to, +11:u13:forward, +12:u14:requests, +6:u21:to, +6:u22:to, +6:u23:to, +6:u31:to, +6:u32:to, +6:u33:to, +16:u01:hierarchical, +8:u02:name, +6:u03:to, +11:u04:forward, +12:u05:requests, +7:u06:and, +9:u08:match, +14:u09:to/forward, +20:u0A:forward/requests, +16:u0B:requests/and, +11:u0C:name/to, +13:u0D:forward/0, +8:u10:name, +6:u11:to, +11:u12:forward, +12:u13:requests, +7:u14:and, +8:u23:forw, +6:u31:rd, +7:u32:ard, +8:u33:ward, +16:u00:hierarchical, +8:u01:name, +6:u02:to, +11:u03:forward, +12:u04:requests, +7:u05:and, +9:u07:match, +13:u08:responses, +20:u09:forward/requests, +16:u0A:requests/and, +10:u0B:and/to, +14:u0C:to/forward, +14:u0D:requests/0, +6:u10:to, +11:u11:forward, +12:u12:requests, +7:u13:and, +5:u20:r, +6:u21:re, +7:u22:req, +8:u23:requ, +7:u32:sts, +8:u33:ests, +8:u00:name, +6:u01:to, +11:u02:forward, +12:u03:requests, +7:u04:and, +9:u06:match, +13:u07:responses, +16:u09:requests/and, +10:u0A:and/to, +12:u0B:to/match, +20:u0C:forward/requests, +9:u0D:and/0, +11:u10:forward, +12:u11:requests, +7:u12:and, +9:u14:match, +6:u21:an, +7:u22:and, +7:u23:and, +6:u31:nd, +7:u32:and, +7:u33:and, +6:u00:to, +11:u01:forward, +12:u02:requests, +7:u03:and, +9:u05:match, +13:u06:responses, +10:u09:and/to, +12:u0A:to/match, +19:u0B:match/responses, +16:u0C:requests/and, +12:u10:requests, +7:u11:and, +9:u13:match, +13:u14:responses, +11:u00:forward, +12:u01:requests, +7:u02:and, +9:u04:match, +13:u05:responses, +12:u09:to/match, +19:u0A:match/responses, +16:u0B:responses/to, +10:u0C:and/to, +11:u0D:match/0, +7:u10:and, +9:u12:match, +13:u13:responses, +5:u20:m, +6:u21:ma, +7:u22:mat, +8:u23:matc, +7:u32:tch, +8:u33:atch, +12:u00:requests, +7:u01:and, +9:u03:match, +13:u04:responses, +8:u08:This, +19:u09:match/responses, +16:u0A:responses/to, +15:u0B:to/requests, +12:u0C:to/match, +15:u0D:responses/0, +9:u11:match, +13:u12:responses, +7:u22:res, +8:u23:resp, +8:u33:nses, +7:u00:and, +9:u02:match, +13:u03:responses, +8:u07:This, +12:u08:document, +16:u09:responses/to, +15:u0A:to/requests, +14:u0B:requests/., +19:u0C:match/responses, +9:u10:match, +13:u11:responses, +9:u01:match, +13:u02:responses, +8:u06:This, +12:u07:document, +13:u08:specifies, +15:u09:to/requests, +14:u0A:requests/., +10:u0B:./This, +16:u0C:responses/to, +13:u10:responses, +8:u14:this, +9:u00:match, +13:u01:responses, +8:u05:This, +12:u06:document, +13:u07:specifies, +7:u08:the, +14:u09:requests/., +10:u0A:./This, +17:u0B:This/document, +15:u0C:to/requests, +8:u13:this, +12:u14:document, +13:u00:responses, +8:u04:This, +12:u05:document, +13:u06:specifies, +7:u07:the, +12:u08:encoding, +10:u09:./This, +17:u0A:This/document, +22:u0B:document/specifies, +14:u0C:requests/., +10:u0D:This/0, +8:u12:this, +12:u13:document, +13:u14:specifies, +6:u21:Th, +7:u22:Thi, +8:u23:This, +7:u32:his, +8:u33:This, +8:u03:This, +12:u04:document, +13:u05:specifies, +7:u06:the, +12:u07:encoding, +17:u09:This/document, +22:u0A:document/specifies, +17:u0B:specifies/the, +10:u0C:./This, +14:u0D:document/0, +8:u11:this, +12:u12:document, +13:u13:specifies, +7:u14:the, +7:u22:doc, +8:u23:docu, +8:u33:ment, +8:u02:This, +12:u03:document, +13:u04:specifies, +7:u05:the, +12:u06:encoding, +22:u09:document/specifies, +17:u0A:specifies/the, +16:u0B:the/encoding, +17:u0C:This/document, +15:u0D:specifies/0, +8:u10:this, +12:u11:document, +13:u12:specifies, +7:u13:the, +12:u14:encoding, +6:u21:sp, +7:u22:spe, +8:u23:spec, +7:u32:ies, +8:u33:fies, +8:u01:This, +12:u02:document, +13:u03:specifies, +7:u04:the, +12:u05:encoding, +12:u08:messages, +17:u09:specifies/the, +16:u0A:the/encoding, +15:u0B:encoding/of, +22:u0C:document/specifies, +9:u0D:the/0, +12:u10:document, +13:u11:specifies, +7:u12:the, +12:u13:encoding, +7:u22:the, +7:u23:the, +6:u31:he, +7:u32:the, +7:u33:the, +8:u00:This, +12:u01:document, +13:u02:specifies, +7:u03:the, +12:u04:encoding, +12:u07:messages, +16:u09:the/encoding, +15:u0A:encoding/of, +11:u0B:of/CCNx, +17:u0C:specifies/the, +14:u0D:encoding/0, +13:u10:specifies, +7:u11:the, +12:u12:encoding, +5:u20:e, +6:u21:en, +7:u22:enc, +8:u23:enco, +8:u33:ding, +12:u00:document, +13:u01:specifies, +7:u02:the, +12:u03:encoding, +12:u06:messages, +15:u09:encoding/of, +11:u0A:of/CCNx, +17:u0B:CCNx/messages, +16:u0C:the/encoding, +7:u10:the, +12:u11:encoding, +13:u00:specifies, +7:u01:the, +12:u02:encoding, +12:u05:messages, +11:u09:of/CCNx, +17:u0A:CCNx/messages, +15:u0B:messages/in, +15:u0C:encoding/of, +12:u10:encoding, +7:u00:the, +12:u01:encoding, +12:u04:messages, +10:u08:packet, +17:u09:CCNx/messages, +15:u0A:messages/in, +8:u0B:in/a, +11:u0C:of/CCNx, +14:u0D:messages/0, +6:u21:me, +7:u22:mes, +8:u23:mess, +12:u00:encoding, +12:u03:messages, +10:u07:packet, +10:u08:format, +15:u09:messages/in, +8:u0A:in/a, +9:u0B:a/TLV, +17:u0C:CCNx/messages, +12:u02:messages, +10:u06:packet, +10:u07:format, +8:u09:in/a, +9:u0A:a/TLV, +14:u0B:TLV/packet, +15:u0C:messages/in, +10:u14:packet, +12:u01:messages, +10:u05:packet, +10:u06:format, +13:u08:including, +9:u09:a/TLV, +14:u0A:TLV/packet, +17:u0B:packet/format, +8:u0C:in/a, +10:u13:packet, +12:u00:messages, +10:u04:packet, +10:u05:format, +13:u07:including, +14:u09:TLV/packet, +17:u0A:packet/format, +12:u0B:format/,, +9:u0C:a/TLV, +12:u0D:packet/0, +10:u12:packet, +6:u21:pa, +7:u22:pac, +8:u23:pack, +7:u32:ket, +8:u33:cket, +10:u03:packet, +10:u04:format, +13:u06:including, +17:u09:packet/format, +12:u0A:format/,, +15:u0B:,/including, +14:u0C:TLV/packet, +12:u0D:format/0, +10:u11:packet, +13:u14:including, +8:u23:form, +10:u02:packet, +10:u03:format, +13:u05:including, +9:u08:types, +12:u09:format/,, +15:u0A:,/including, +17:u0B:including/the, +17:u0C:packet/format, +10:u10:packet, +13:u13:including, +10:u01:packet, +10:u02:format, +13:u04:including, +9:u07:types, +8:u08:used, +15:u09:,/including, +17:u0A:including/the, +11:u0B:the/TLV, +12:u0C:format/,, +15:u0D:including/0, +13:u12:including, +7:u22:inc, +8:u23:incl, +10:u00:packet, +10:u01:format, +13:u03:including, +9:u06:types, +8:u07:used, +17:u09:including/the, +11:u0A:the/TLV, +13:u0B:TLV/types, +15:u0C:,/including, +13:u11:including, +9:u14:types, +10:u00:format, +13:u02:including, +9:u05:types, +8:u06:used, +8:u08:each, +11:u09:the/TLV, +13:u0A:TLV/types, +14:u0B:types/used, +17:u0C:including/the, +13:u10:including, +9:u13:types, +8:u14:used, +13:u01:including, +9:u04:types, +8:u05:used, +8:u07:each, +11:u08:message, +13:u09:TLV/types, +14:u0A:types/used, +11:u0B:used/by, +11:u0C:the/TLV, +11:u0D:types/0, +9:u12:types, +8:u13:used, +6:u21:ty, +7:u22:typ, +8:u23:type, +7:u32:pes, +8:u33:ypes, +13:u00:including, +9:u03:types, +8:u04:used, +8:u06:each, +11:u07:message, +11:u08:element, +14:u09:types/used, +11:u0A:used/by, +11:u0B:by/each, +13:u0C:TLV/types, +10:u0D:used/0, +9:u11:types, +8:u12:used, +8:u14:each, +8:u23:used, +7:u32:sed, +8:u33:used, +9:u02:types, +8:u03:used, +8:u05:each, +11:u06:message, +11:u07:element, +11:u09:used/by, +11:u0A:by/each, +16:u0B:each/message, +14:u0C:types/used, +9:u10:types, +8:u11:used, +8:u13:each, +11:u14:message, +9:u01:types, +8:u02:used, +8:u04:each, +11:u05:message, +11:u06:element, +11:u09:by/each, +16:u0A:each/message, +19:u0B:message/element, +11:u0C:used/by, +10:u0D:each/0, +8:u10:used, +8:u12:each, +11:u13:message, +11:u14:element, +6:u21:ea, +7:u22:eac, +8:u23:each, +7:u32:ach, +8:u33:each, +9:u00:types, +8:u01:used, +8:u03:each, +11:u04:message, +11:u05:element, +16:u09:each/message, +19:u0A:message/element, +15:u0B:element/and, +11:u0C:by/each, +13:u0D:message/0, +8:u11:each, +11:u12:message, +11:u13:element, +6:u31:ge, +7:u32:age, +8:u33:sage, +8:u00:used, +8:u02:each, +11:u03:message, +11:u04:element, +19:u09:message/element, +15:u0A:element/and, +11:u0B:and/the, +16:u0C:each/message, +13:u0D:element/0, +8:u10:each, +11:u11:message, +11:u12:element, +6:u21:el, +7:u22:ele, +8:u23:elem, +8:u01:each, +11:u02:message, +11:u03:element, +15:u09:element/and, +11:u0A:and/the, +19:u0C:message/element, +11:u10:message, +11:u11:element, +8:u00:each, +11:u01:message, +11:u02:element, +9:u08:value, +11:u09:and/the, +15:u0C:element/and, +11:u10:element, +11:u00:message, +11:u01:element, +9:u07:value, +11:u0B:of/each, +11:u0C:and/the, +11:u00:element, +9:u06:value, +7:u08:The, +11:u0A:of/each, +14:u0B:each/value, +9:u14:value, +9:u05:value, +7:u07:The, +13:u08:semantics, +11:u09:of/each, +14:u0A:each/value, +11:u0B:value/., +9:u13:value, +9:u04:value, +7:u06:The, +13:u07:semantics, +14:u09:each/value, +11:u0A:value/., +9:u0B:./The, +11:u0C:of/each, +11:u0D:value/0, +9:u12:value, +5:u20:v, +6:u21:va, +7:u22:val, +8:u23:valu, +6:u31:ue, +7:u32:lue, +8:u33:alue, +9:u03:value, +7:u05:The, +13:u06:semantics, +11:u09:value/., +9:u0A:./The, +17:u0B:The/semantics, +14:u0C:each/value, +9:u11:value, +13:u14:semantics, +9:u02:value, +7:u04:The, +13:u05:semantics, +9:u09:./The, +17:u0A:The/semantics, +16:u0B:semantics/of, +11:u0C:value/., +9:u0D:The/0, +9:u10:value, +13:u13:semantics, +7:u22:The, +7:u23:The, +7:u32:The, +7:u33:The, +9:u01:value, +7:u03:The, +13:u04:semantics, +10:u08:follow, +17:u09:The/semantics, +16:u0A:semantics/of, +9:u0C:./The, +15:u0D:semantics/0, +13:u12:semantics, +7:u22:sem, +8:u23:sema, +6:u31:cs, +7:u32:ics, +8:u33:tics, +9:u00:value, +7:u02:The, +13:u03:semantics, +10:u07:follow, +16:u09:semantics/of, +17:u0C:The/semantics, +13:u11:semantics, +7:u01:The, +13:u02:semantics, +10:u06:follow, +19:u0B:messages/follow, +16:u0C:semantics/of, +13:u10:semantics, +10:u14:follow, +7:u00:The, +13:u01:semantics, +10:u05:follow, +19:u0A:messages/follow, +14:u0B:follow/the, +10:u13:follow, +13:u00:semantics, +10:u04:follow, +15:u08:independent, +19:u09:messages/follow, +14:u0A:follow/the, +12:u0D:follow/0, +10:u12:follow, +7:u22:fol, +8:u23:foll, +5:u30:w, +6:u31:ow, +7:u32:low, +8:u33:llow, +10:u03:follow, +15:u07:independent, +14:u09:follow/the, +14:u0B:encoding/-, +19:u0C:messages/follow, +10:u11:follow, +10:u02:follow, +15:u06:independent, +13:u08:Semantics, +14:u0A:encoding/-, +17:u0B:-/independent, +14:u0C:follow/the, +10:u10:follow, +15:u14:independent, +10:u01:follow, +15:u05:independent, +13:u07:Semantics, +17:u08:specification, +14:u09:encoding/-, +17:u0A:-/independent, +20:u0B:independent/CCNx, +15:u13:independent, +10:u00:follow, +15:u04:independent, +13:u06:Semantics, +17:u07:specification, +17:u09:-/independent, +20:u0A:independent/CCNx, +18:u0B:CCNx/Semantics, +14:u0C:encoding/-, +17:u0D:independent/1, +15:u12:independent, +7:u22:ind, +8:u23:inde, +8:u33:dent, +15:u03:independent, +13:u05:Semantics, +17:u06:specification, +20:u09:independent/CCNx, +18:u0A:CCNx/Semantics, +27:u0B:Semantics/specification, +17:u0C:-/independent, +15:u11:independent, +17:u14:specification, +15:u02:independent, +13:u04:Semantics, +17:u05:specification, +18:u09:CCNx/Semantics, +27:u0A:Semantics/specification, +19:u0B:specification/., +20:u0C:independent/CCNx, +15:u0D:Semantics/0, +15:u10:independent, +17:u13:specification, +6:u21:Se, +7:u22:Sem, +8:u23:Sema, +15:u01:independent, +13:u03:Semantics, +17:u04:specification, +27:u09:Semantics/specification, +19:u0A:specification/., +18:u0C:CCNx/Semantics, +19:u0D:specification/0, +17:u12:specification, +7:u32:ion, +8:u33:tion, +15:u00:independent, +13:u02:Semantics, +17:u03:specification, +19:u09:specification/., +27:u0C:Semantics/specification, +17:u11:specification, +13:u01:Semantics, +17:u02:specification, +11:u08:product, +15:u0B:document/is, +19:u0C:specification/., +17:u10:specification, +13:u00:Semantics, +17:u01:specification, +11:u07:product, +15:u0A:document/is, +17:u00:specification, +11:u06:product, +15:u09:document/is, +13:u0B:a/product, +11:u14:product, +11:u05:product, +15:u08:Information, +13:u0A:a/product, +14:u0B:product/of, +15:u0C:document/is, +11:u13:product, +11:u04:product, +15:u07:Information, +13:u09:a/product, +14:u0A:product/of, +10:u0B:of/the, +13:u0D:product/0, +11:u12:product, +8:u23:prod, +7:u32:uct, +8:u33:duct, +11:u03:product, +15:u06:Information, +14:u09:product/of, +10:u0A:of/the, +19:u0B:the/Information, +13:u0C:a/product, +11:u11:product, +15:u14:information, +11:u02:product, +15:u05:Information, +12:u08:research, +10:u09:of/the, +19:u0A:the/Information, +23:u0B:Information/Centric, +14:u0C:product/of, +11:u10:product, +15:u13:information, +11:u01:product, +15:u04:Information, +12:u07:research, +9:u08:group, +19:u09:the/Information, +23:u0A:Information/Centric, +10:u0C:of/the, +17:u0D:Information/0, +15:u12:information, +7:u22:Inf, +8:u23:Info, +11:u00:product, +15:u03:Information, +12:u06:research, +9:u07:group, +23:u09:Information/Centric, +23:u0B:Networking/research, +19:u0C:the/Information, +13:u0D:Centric/0, +15:u11:information, +15:u02:Information, +12:u05:research, +9:u06:group, +9:u08:ICNRG, +23:u0A:Networking/research, +18:u0B:research/group, +23:u0C:Information/Centric, +15:u10:information, +9:u14:group, +15:u01:Information, +12:u04:research, +9:u05:group, +9:u07:ICNRG, +23:u09:Networking/research, +18:u0A:research/group, +11:u0B:group/(, +14:u0D:research/0, +9:u13:group, +8:u23:rese, +15:u00:Information, +12:u03:research, +9:u04:group, +9:u06:ICNRG, +18:u09:research/group, +11:u0A:group/(, +11:u0B:(/ICNRG, +23:u0C:Networking/research, +11:u0D:group/0, +9:u12:group, +9:u14:icnrg, +5:u20:g, +6:u21:gr, +7:u22:gro, +8:u23:grou, +5:u30:p, +6:u31:up, +7:u32:oup, +8:u33:roup, +12:u02:research, +9:u03:group, +9:u05:ICNRG, +11:u09:group/(, +11:u0A:(/ICNRG, +11:u0B:ICNRG/), +18:u0C:research/group, +9:u11:group, +9:u13:icnrg, +12:u01:research, +9:u02:group, +9:u04:ICNRG, +11:u09:(/ICNRG, +11:u0A:ICNRG/), +7:u0B:)/., +11:u0C:group/(, +11:u0D:ICNRG/0, +9:u10:group, +9:u12:icnrg, +6:u21:IC, +7:u22:ICN, +8:u23:ICNR, +5:u30:G, +6:u31:RG, +7:u32:NRG, +8:u33:CNRG, +12:u00:research, +9:u01:group, +9:u03:ICNRG, +12:u08:received, +11:u09:ICNRG/), +7:u0A:)/., +11:u0C:(/ICNRG, +9:u11:icnrg, +9:u00:group, +9:u02:ICNRG, +12:u07:received, +8:u08:wide, +7:u09:)/., +16:u0B:The/document, +11:u0C:ICNRG/), +9:u10:icnrg, +9:u01:ICNRG, +12:u06:received, +8:u07:wide, +10:u08:review, +16:u0A:The/document, +21:u0B:document/received, +7:u0C:)/., +12:u14:received, +9:u00:ICNRG, +12:u05:received, +8:u06:wide, +10:u07:review, +9:u08:among, +16:u09:The/document, +21:u0A:document/received, +17:u0B:received/wide, +12:u13:received, +8:u14:wide, +12:u04:received, +8:u05:wide, +10:u06:review, +9:u07:among, +21:u09:document/received, +17:u0A:received/wide, +15:u0B:wide/review, +16:u0C:The/document, +14:u0D:received/0, +12:u12:received, +8:u13:wide, +10:u14:review, +7:u22:rec, +8:u23:rece, +7:u32:ved, +8:u33:ived, +12:u03:received, +8:u04:wide, +10:u05:review, +9:u06:among, +16:u08:participants, +17:u09:received/wide, +15:u0A:wide/review, +16:u0B:review/among, +21:u0C:document/received, +10:u0D:wide/0, +12:u11:received, +8:u12:wide, +10:u13:review, +9:u14:among, +5:u20:w, +6:u21:wi, +7:u22:wid, +8:u23:wide, +6:u31:de, +7:u32:ide, +8:u33:wide, +12:u02:received, +8:u03:wide, +10:u04:review, +9:u05:among, +16:u07:participants, +15:u09:wide/review, +16:u0A:review/among, +15:u0B:among/ICNRG, +17:u0C:received/wide, +12:u0D:review/0, +12:u10:received, +8:u11:wide, +10:u12:review, +9:u13:among, +7:u22:rev, +8:u23:revi, +6:u31:ew, +7:u32:iew, +8:u33:view, +12:u01:received, +8:u02:wide, +10:u03:review, +9:u04:among, +16:u06:participants, +7:u08:has, +16:u09:review/among, +15:u0A:among/ICNRG, +22:u0B:ICNRG/participants, +15:u0C:wide/review, +11:u0D:among/0, +8:u10:wide, +10:u11:review, +9:u12:among, +16:u14:participants, +6:u21:am, +7:u22:amo, +8:u23:amon, +7:u32:ong, +8:u33:mong, +12:u00:received, +8:u01:wide, +10:u02:review, +9:u03:among, +16:u05:participants, +7:u07:has, +7:u08:two, +15:u09:among/ICNRG, +22:u0A:ICNRG/participants, +20:u0B:participants/and, +16:u0C:review/among, +10:u10:review, +9:u11:among, +16:u13:participants, +8:u00:wide, +10:u01:review, +9:u02:among, +16:u04:participants, +7:u06:has, +7:u07:two, +8:u08:full, +22:u09:ICNRG/participants, +20:u0A:participants/and, +11:u0B:and/has, +15:u0C:among/ICNRG, +18:u0D:participants/0, +9:u10:among, +16:u12:participants, +7:u14:has, +7:u22:par, +8:u23:part, +8:u33:ants, +10:u00:review, +9:u01:among, +16:u03:participants, +7:u05:has, +7:u06:two, +8:u07:full, +19:u08:implementations, +20:u09:participants/and, +11:u0A:and/has, +11:u0B:has/two, +22:u0C:ICNRG/participants, +16:u11:participants, +7:u13:has, +7:u14:two, +9:u00:among, +16:u02:participants, +7:u04:has, +7:u05:two, +8:u06:full, +19:u07:implementations, +13:u08:currently, +11:u09:and/has, +11:u0A:has/two, +12:u0B:two/full, +20:u0C:participants/and, +9:u0D:has/0, +16:u10:participants, +7:u12:has, +7:u13:two, +8:u14:full, +6:u21:ha, +7:u22:has, +7:u23:has, +6:u31:as, +7:u32:has, +7:u33:has, +16:u01:participants, +7:u03:has, +7:u04:two, +8:u05:full, +19:u06:implementations, +13:u07:currently, +11:u09:has/two, +12:u0A:two/full, +24:u0B:full/implementations, +11:u0C:and/has, +9:u0D:two/0, +7:u11:has, +7:u12:two, +8:u13:full, +19:u14:implementations, +6:u21:tw, +7:u22:two, +7:u23:two, +6:u31:wo, +7:u32:two, +7:u33:two, +16:u00:participants, +7:u02:has, +7:u03:two, +8:u04:full, +19:u05:implementations, +13:u06:currently, +10:u08:active, +12:u09:two/full, +24:u0A:full/implementations, +29:u0B:implementations/currently, +11:u0C:has/two, +10:u0D:full/0, +7:u10:has, +7:u11:two, +8:u12:full, +19:u13:implementations, +13:u14:currently, +6:u21:fu, +7:u22:ful, +8:u23:full, +6:u31:ll, +7:u32:ull, +8:u33:full, +7:u01:has, +7:u02:two, +8:u03:full, +19:u04:implementations, +13:u05:currently, +10:u07:active, +7:u08:use, +24:u09:full/implementations, +29:u0A:implementations/currently, +16:u0B:currently/in, +12:u0C:two/full, +21:u0D:implementations/0, +7:u10:two, +8:u11:full, +19:u12:implementations, +13:u13:currently, +6:u21:im, +7:u22:imp, +8:u23:impl, +6:u31:ns, +7:u32:ons, +8:u33:ions, +7:u00:has, +7:u01:two, +8:u02:full, +19:u03:implementations, +13:u04:currently, +10:u06:active, +7:u07:use, +29:u09:implementations/currently, +16:u0A:currently/in, +13:u0B:in/active, +24:u0C:full/implementations, +15:u0D:currently/0, +8:u10:full, +19:u11:implementations, +13:u12:currently, +10:u14:active, +5:u20:c, +6:u21:cu, +7:u22:cur, +8:u23:curr, +7:u32:tly, +8:u33:ntly, +7:u00:two, +8:u01:full, +19:u02:implementations, +13:u03:currently, +10:u05:active, +7:u06:use, +9:u08:which, +16:u09:currently/in, +13:u0A:in/active, +14:u0B:active/use, +29:u0C:implementations/currently, +19:u10:implementations, +13:u11:currently, +10:u13:active, +7:u14:use, +8:u00:full, +19:u01:implementations, +13:u02:currently, +10:u04:active, +7:u05:use, +9:u07:which, +8:u08:have, +13:u09:in/active, +14:u0A:active/use, +9:u0B:use/,, +16:u0C:currently/in, +12:u0D:active/0, +13:u10:currently, +10:u12:active, +7:u13:use, +6:u21:ac, +7:u22:act, +8:u23:acti, +6:u31:ve, +7:u32:ive, +8:u33:tive, +19:u00:implementations, +13:u01:currently, +10:u03:active, +7:u04:use, +9:u06:which, +8:u07:have, +12:u08:informed, +14:u09:active/use, +9:u0A:use/,, +11:u0B:,/which, +13:u0C:in/active, +9:u0D:use/0, +10:u11:active, +7:u12:use, +9:u14:which, +7:u23:use, +6:u31:se, +7:u32:use, +7:u33:use, +13:u00:currently, +10:u02:active, +7:u03:use, +9:u05:which, +8:u06:have, +12:u07:informed, +9:u09:use/,, +11:u0A:,/which, +14:u0B:which/have, +14:u0C:active/use, +10:u10:active, +7:u11:use, +9:u13:which, +8:u14:have, +10:u01:active, +7:u02:use, +9:u04:which, +8:u05:have, +12:u06:informed, +13:u08:technical, +11:u09:,/which, +14:u0A:which/have, +17:u0B:have/informed, +9:u0C:use/,, +11:u0D:which/0, +7:u10:use, +9:u12:which, +8:u13:have, +12:u14:informed, +6:u21:wh, +7:u22:whi, +8:u23:whic, +7:u32:ich, +8:u33:hich, +10:u00:active, +7:u01:use, +9:u03:which, +8:u04:have, +12:u05:informed, +13:u07:technical, +12:u08:maturity, +14:u09:which/have, +17:u0A:have/informed, +16:u0B:informed/the, +11:u0C:,/which, +10:u0D:have/0, +9:u11:which, +8:u12:have, +12:u13:informed, +7:u22:hav, +8:u23:have, +7:u32:ave, +8:u33:have, +7:u00:use, +9:u02:which, +8:u03:have, +12:u04:informed, +13:u06:technical, +12:u07:maturity, +17:u09:have/informed, +16:u0A:informed/the, +17:u0B:the/technical, +14:u0C:which/have, +14:u0D:informed/0, +9:u10:which, +8:u11:have, +12:u12:informed, +13:u14:technical, +7:u22:inf, +8:u23:info, +7:u32:med, +8:u33:rmed, +9:u01:which, +8:u02:have, +12:u03:informed, +13:u05:technical, +12:u06:maturity, +16:u09:informed/the, +17:u0A:the/technical, +22:u0B:technical/maturity, +17:u0C:have/informed, +8:u10:have, +12:u11:informed, +13:u13:technical, +12:u14:maturity, +9:u00:which, +8:u01:have, +12:u02:informed, +13:u04:technical, +12:u05:maturity, +17:u09:the/technical, +22:u0A:technical/maturity, +15:u0B:maturity/of, +16:u0C:informed/the, +15:u0D:technical/0, +12:u10:informed, +13:u12:technical, +12:u13:maturity, +6:u21:te, +7:u22:tec, +8:u23:tech, +8:u00:have, +12:u01:informed, +13:u03:technical, +12:u04:maturity, +22:u09:technical/maturity, +15:u0A:maturity/of, +17:u0C:the/technical, +14:u0D:maturity/0, +13:u11:technical, +12:u12:maturity, +8:u23:matu, +8:u33:rity, +12:u00:informed, +13:u02:technical, +12:u03:maturity, +15:u09:maturity/of, +16:u0B:the/protocol, +22:u0C:technical/maturity, +13:u10:technical, +12:u11:maturity, +13:u01:technical, +12:u02:maturity, +10:u08:Status, +16:u0A:the/protocol, +26:u0B:protocol/specification, +15:u0C:maturity/of, +12:u10:maturity, +13:u00:technical, +12:u01:maturity, +10:u07:Status, +16:u09:the/protocol, +26:u0A:protocol/specification, +12:u00:maturity, +10:u06:Status, +26:u09:protocol/specification, +12:u0B:./Status, +16:u0C:the/protocol, +10:u14:status, +10:u05:Status, +8:u08:Memo, +12:u0A:./Status, +13:u0B:Status/of, +26:u0C:protocol/specification, +10:u13:status, +10:u04:Status, +8:u07:Memo, +12:u09:./Status, +13:u0A:Status/of, +11:u0B:of/This, +12:u0D:Status/0, +10:u12:status, +6:u21:St, +7:u22:Sta, +8:u23:Stat, +6:u31:us, +7:u32:tus, +8:u33:atus, +10:u03:Status, +8:u06:Memo, +13:u09:Status/of, +11:u0A:of/This, +13:u0B:This/Memo, +12:u0C:./Status, +10:u11:status, +8:u14:memo, +10:u02:Status, +8:u05:Memo, +11:u09:of/This, +13:u0A:This/Memo, +13:u0B:Memo/This, +13:u0C:Status/of, +10:u10:status, +8:u13:memo, +10:u01:Status, +8:u04:Memo, +7:u08:not, +13:u09:This/Memo, +13:u0A:Memo/This, +11:u0C:of/This, +10:u0D:Memo/0, +8:u12:memo, +7:u22:Mem, +8:u23:Memo, +6:u31:mo, +7:u32:emo, +8:u33:Memo, +10:u00:Status, +8:u03:Memo, +7:u07:not, +6:u08:an, +13:u09:Memo/This, +13:u0C:This/Memo, +8:u11:memo, +8:u02:Memo, +7:u06:not, +6:u07:an, +10:u0B:is/not, +13:u0C:Memo/This, +8:u10:memo, +7:u14:not, +8:u01:Memo, +7:u05:not, +6:u06:an, +13:u08:Standards, +10:u0A:is/not, +10:u0B:not/an, +7:u13:not, +6:u14:an, +8:u00:Memo, +7:u04:not, +6:u05:an, +13:u07:Standards, +9:u08:Track, +10:u09:is/not, +10:u0A:not/an, +15:u0B:an/Internet, +9:u0D:not/0, +7:u12:not, +6:u13:an, +6:u21:no, +7:u22:not, +7:u23:not, +6:u31:ot, +7:u32:not, +7:u33:not, +7:u03:not, +6:u04:an, +13:u06:Standards, +9:u07:Track, +10:u09:not/an, +15:u0A:an/Internet, +22:u0B:Internet/Standards, +10:u0C:is/not, +8:u0D:an/0, +7:u11:not, +6:u12:an, +13:u14:standards, +6:u22:an, +6:u23:an, +6:u31:an, +6:u32:an, +6:u33:an, +7:u02:not, +6:u03:an, +13:u05:Standards, +9:u06:Track, +5:u08:;, +15:u09:an/Internet, +22:u0A:Internet/Standards, +19:u0B:Standards/Track, +10:u0C:not/an, +7:u10:not, +6:u11:an, +13:u13:standards, +9:u14:track, +7:u01:not, +6:u02:an, +13:u04:Standards, +9:u05:Track, +6:u08:it, +22:u09:Internet/Standards, +19:u0A:Standards/Track, +23:u0B:Track/specification, +15:u0C:an/Internet, +15:u0D:Standards/0, +6:u10:an, +13:u12:standards, +9:u13:track, +8:u23:Stan, +6:u31:ds, +7:u32:rds, +8:u33:ards, +7:u00:not, +6:u01:an, +13:u03:Standards, +9:u04:Track, +6:u07:it, +19:u09:Standards/Track, +23:u0A:Track/specification, +19:u0B:specification/;, +22:u0C:Internet/Standards, +11:u0D:Track/0, +13:u11:standards, +9:u12:track, +6:u21:Tr, +7:u22:Tra, +8:u23:Trac, +6:u31:ck, +7:u32:ack, +8:u33:rack, +6:u00:an, +13:u02:Standards, +9:u03:Track, +6:u06:it, +13:u08:published, +23:u09:Track/specification, +19:u0A:specification/;, +8:u0B:;/it, +19:u0C:Standards/Track, +13:u10:standards, +9:u11:track, +6:u14:it, +13:u01:Standards, +9:u02:Track, +6:u05:it, +13:u07:published, +19:u09:specification/;, +8:u0A:;/it, +9:u0B:it/is, +23:u0C:Track/specification, +9:u10:track, +6:u13:it, +13:u00:Standards, +9:u01:Track, +6:u04:it, +13:u06:published, +15:u08:examination, +8:u09:;/it, +9:u0A:it/is, +16:u0B:is/published, +19:u0C:specification/;, +8:u0D:it/0, +6:u12:it, +13:u14:published, +6:u21:it, +6:u22:it, +6:u23:it, +6:u31:it, +6:u32:it, +6:u33:it, +9:u00:Track, +6:u03:it, +13:u05:published, +15:u07:examination, +9:u09:it/is, +16:u0A:is/published, +17:u0B:published/for, +8:u0C:;/it, +6:u11:it, +13:u13:published, +6:u02:it, +13:u04:published, +15:u06:examination, +16:u08:experimental, +16:u09:is/published, +17:u0A:published/for, +19:u0B:for/examination, +9:u0C:it/is, +15:u0D:published/0, +6:u10:it, +13:u12:published, +15:u14:examination, +6:u21:pu, +7:u22:pub, +8:u23:publ, +7:u32:hed, +8:u33:shed, +6:u01:it, +13:u03:published, +15:u05:examination, +16:u07:experimental, +18:u08:implementation, +17:u09:published/for, +19:u0A:for/examination, +17:u0B:examination/,, +16:u0C:is/published, +13:u11:published, +15:u13:examination, +6:u00:it, +13:u02:published, +15:u04:examination, +16:u06:experimental, +18:u07:implementation, +19:u09:for/examination, +17:u0A:examination/,, +18:u0B:,/experimental, +17:u0C:published/for, +17:u0D:examination/0, +13:u10:published, +15:u12:examination, +6:u21:ex, +7:u22:exa, +8:u23:exam, +13:u01:published, +15:u03:examination, +16:u05:experimental, +18:u06:implementation, +17:u09:examination/,, +18:u0A:,/experimental, +31:u0B:experimental/implementation, +19:u0C:for/examination, +15:u11:examination, +18:u14:implementation, +13:u00:published, +15:u02:examination, +16:u04:experimental, +18:u05:implementation, +14:u08:evaluation, +18:u09:,/experimental, +31:u0A:experimental/implementation, +20:u0B:implementation/,, +17:u0C:examination/,, +18:u0D:experimental/0, +15:u10:examination, +18:u13:implementation, +7:u22:exp, +8:u23:expe, +15:u01:examination, +16:u03:experimental, +18:u04:implementation, +14:u07:evaluation, +31:u09:experimental/implementation, +20:u0A:implementation/,, +9:u0B:,/and, +18:u0C:,/experimental, +20:u0D:implementation/0, +18:u12:implementation, +15:u00:examination, +16:u02:experimental, +18:u03:implementation, +14:u06:evaluation, +20:u09:implementation/,, +9:u0A:,/and, +18:u0B:and/evaluation, +31:u0C:experimental/implementation, +18:u11:implementation, +14:u14:evaluation, +16:u01:experimental, +18:u02:implementation, +14:u05:evaluation, +9:u09:,/and, +18:u0A:and/evaluation, +16:u0B:evaluation/., +20:u0C:implementation/,, +18:u10:implementation, +14:u13:evaluation, +16:u00:experimental, +18:u01:implementation, +14:u04:evaluation, +11:u08:defines, +18:u09:and/evaluation, +16:u0A:evaluation/., +9:u0C:,/and, +16:u0D:evaluation/0, +14:u12:evaluation, +6:u21:ev, +7:u22:eva, +8:u23:eval, +18:u00:implementation, +14:u03:evaluation, +11:u07:defines, +16:u09:evaluation/., +18:u0C:and/evaluation, +14:u11:evaluation, +14:u02:evaluation, +11:u06:defines, +20:u0B:document/defines, +16:u0C:evaluation/., +14:u10:evaluation, +11:u14:defines, +14:u01:evaluation, +11:u05:defines, +12:u08:Protocol, +20:u0A:document/defines, +14:u0B:defines/an, +11:u13:defines, +14:u00:evaluation, +11:u04:defines, +12:u07:Protocol, +20:u09:document/defines, +14:u0A:defines/an, +19:u0B:an/Experimental, +13:u0D:defines/0, +11:u12:defines, +6:u21:de, +7:u22:def, +8:u23:defi, +7:u32:nes, +8:u33:ines, +11:u03:defines, +12:u06:Protocol, +14:u09:defines/an, +19:u0A:an/Experimental, +25:u0B:Experimental/Protocol, +20:u0C:document/defines, +11:u11:defines, +11:u02:defines, +12:u05:Protocol, +19:u09:an/Experimental, +25:u0A:Experimental/Protocol, +16:u0B:Protocol/for, +14:u0C:defines/an, +11:u10:defines, +11:u01:defines, +12:u04:Protocol, +13:u08:community, +25:u09:Experimental/Protocol, +16:u0A:Protocol/for, +11:u0B:for/the, +19:u0C:an/Experimental, +14:u0D:Protocol/0, +6:u21:Pr, +7:u22:Pro, +8:u23:Prot, +11:u00:defines, +12:u03:Protocol, +13:u07:community, +16:u09:Protocol/for, +11:u0A:for/the, +16:u0B:the/Internet, +25:u0C:Experimental/Protocol, +12:u02:Protocol, +13:u06:community, +11:u09:for/the, +16:u0A:the/Internet, +22:u0B:Internet/community, +16:u0C:Protocol/for, +13:u14:community, +12:u01:Protocol, +13:u05:community, +16:u09:the/Internet, +22:u0A:Internet/community, +15:u0B:community/., +11:u0C:for/the, +13:u13:community, +12:u00:Protocol, +13:u04:community, +22:u09:Internet/community, +15:u0A:community/., +16:u0C:the/Internet, +15:u0D:community/0, +13:u12:community, +6:u21:co, +7:u22:com, +8:u23:comm, +8:u33:nity, +13:u03:community, +15:u09:community/., +22:u0C:Internet/community, +13:u11:community, +13:u02:community, +15:u0C:community/., +13:u10:community, +13:u01:community, +13:u00:community, +13:u08:publishes, +13:u07:publishes, +12:u0B:The/IRTF, +13:u06:publishes, +11:u08:results, +12:u0A:The/IRTF, +18:u0B:IRTF/publishes, +13:u14:publishes, +13:u05:publishes, +11:u07:results, +12:u09:The/IRTF, +18:u0A:IRTF/publishes, +17:u0B:publishes/the, +13:u13:publishes, +13:u04:publishes, +11:u06:results, +18:u09:IRTF/publishes, +17:u0A:publishes/the, +15:u0B:the/results, +12:u0C:The/IRTF, +15:u0D:publishes/0, +13:u12:publishes, +11:u14:results, +7:u32:hes, +8:u33:shes, +13:u03:publishes, +11:u05:results, +17:u09:publishes/the, +15:u0A:the/results, +14:u0B:results/of, +18:u0C:IRTF/publishes, +13:u11:publishes, +11:u13:results, +13:u02:publishes, +11:u04:results, +11:u08:related, +15:u09:the/results, +14:u0A:results/of, +15:u0B:of/Internet, +17:u0C:publishes/the, +13:u0D:results/0, +13:u10:publishes, +11:u12:results, +8:u23:resu, +7:u32:lts, +8:u33:ults, +13:u01:publishes, +11:u03:results, +11:u07:related, +14:u09:results/of, +15:u0A:of/Internet, +14:u0B:Internet/-, +15:u0C:the/results, +11:u11:results, +13:u00:publishes, +11:u02:results, +11:u06:related, +15:u09:of/Internet, +14:u0A:Internet/-, +13:u0B:-/related, +14:u0C:results/of, +11:u10:results, +11:u14:related, +11:u01:results, +11:u05:related, +15:u08:development, +14:u09:Internet/-, +13:u0A:-/related, +20:u0B:related/research, +15:u0C:of/Internet, +11:u13:related, +11:u00:results, +11:u04:related, +15:u07:development, +14:u08:activities, +13:u09:-/related, +20:u0A:related/research, +16:u0B:research/and, +14:u0C:Internet/-, +13:u0D:related/1, +11:u12:related, +7:u22:rel, +8:u23:rela, +7:u32:ted, +8:u33:ated, +11:u03:related, +15:u06:development, +14:u07:activities, +20:u09:related/research, +16:u0A:research/and, +19:u0B:and/development, +13:u0C:-/related, +11:u11:related, +15:u14:development, +11:u02:related, +15:u05:development, +14:u06:activities, +9:u08:These, +16:u09:research/and, +19:u0A:and/development, +26:u0B:development/activities, +20:u0C:related/research, +11:u10:related, +15:u13:development, +14:u14:activities, +11:u01:related, +15:u04:development, +14:u05:activities, +9:u07:These, +19:u09:and/development, +26:u0A:development/activities, +16:u0B:activities/., +16:u0C:research/and, +17:u0D:development/0, +15:u12:development, +14:u13:activities, +7:u22:dev, +8:u23:deve, +11:u00:related, +15:u03:development, +14:u04:activities, +9:u06:These, +9:u08:might, +26:u09:development/activities, +16:u0A:activities/., +11:u0B:./These, +19:u0C:and/development, +16:u0D:activities/0, +15:u11:development, +14:u12:activities, +9:u14:these, +8:u33:ties, +15:u02:development, +14:u03:activities, +9:u05:These, +9:u07:might, +16:u09:activities/., +11:u0A:./These, +17:u0B:These/results, +26:u0C:development/activities, +15:u10:development, +14:u11:activities, +9:u13:these, +15:u01:development, +14:u02:activities, +9:u04:These, +9:u06:might, +6:u08:be, +11:u09:./These, +17:u0A:These/results, +17:u0B:results/might, +16:u0C:activities/., +11:u0D:These/0, +14:u10:activities, +9:u12:these, +9:u14:might, +8:u23:Thes, +7:u32:ese, +8:u33:hese, +15:u00:development, +14:u01:activities, +9:u03:These, +9:u05:might, +6:u07:be, +12:u08:suitable, +17:u09:These/results, +17:u0A:results/might, +13:u0B:might/not, +11:u0C:./These, +9:u11:these, +9:u13:might, +14:u00:activities, +9:u02:These, +9:u04:might, +6:u06:be, +12:u07:suitable, +17:u09:results/might, +13:u0A:might/not, +10:u0B:not/be, +17:u0C:These/results, +11:u0D:might/0, +9:u10:these, +9:u12:might, +6:u14:be, +6:u21:mi, +7:u22:mig, +8:u23:migh, +6:u31:ht, +7:u32:ght, +8:u33:ight, +9:u01:These, +9:u03:might, +6:u05:be, +12:u06:suitable, +14:u08:deployment, +13:u09:might/not, +10:u0A:not/be, +15:u0B:be/suitable, +17:u0C:results/might, +9:u11:might, +6:u13:be, +12:u14:suitable, +9:u00:These, +9:u02:might, +6:u04:be, +12:u05:suitable, +14:u07:deployment, +10:u09:not/be, +15:u0A:be/suitable, +16:u0B:suitable/for, +13:u0C:might/not, +8:u0D:be/0, +9:u10:might, +6:u12:be, +12:u13:suitable, +6:u21:be, +6:u22:be, +6:u23:be, +6:u31:be, +6:u32:be, +6:u33:be, +9:u01:might, +6:u03:be, +12:u04:suitable, +14:u06:deployment, +15:u09:be/suitable, +16:u0A:suitable/for, +18:u0B:for/deployment, +10:u0C:not/be, +14:u0D:suitable/0, +6:u11:be, +12:u12:suitable, +14:u14:deployment, +6:u21:su, +7:u22:sui, +8:u23:suit, +6:u31:le, +7:u32:ble, +8:u33:able, +9:u00:might, +6:u02:be, +12:u03:suitable, +14:u05:deployment, +7:u08:RFC, +16:u09:suitable/for, +18:u0A:for/deployment, +16:u0B:deployment/., +15:u0C:be/suitable, +6:u10:be, +12:u11:suitable, +14:u13:deployment, +6:u01:be, +12:u02:suitable, +14:u04:deployment, +7:u07:RFC, +14:u08:represents, +18:u09:for/deployment, +16:u0A:deployment/., +16:u0C:suitable/for, +16:u0D:deployment/0, +12:u10:suitable, +14:u12:deployment, +7:u22:dep, +8:u23:depl, +6:u00:be, +12:u01:suitable, +14:u03:deployment, +7:u06:RFC, +14:u07:represents, +16:u09:deployment/., +12:u0B:This/RFC, +18:u0C:for/deployment, +14:u11:deployment, +7:u14:rfc, +12:u00:suitable, +14:u02:deployment, +7:u05:RFC, +14:u06:represents, +13:u08:consensus, +12:u0A:This/RFC, +18:u0B:RFC/represents, +16:u0C:deployment/., +14:u10:deployment, +7:u13:rfc, +14:u14:represents, +14:u01:deployment, +7:u04:RFC, +14:u05:represents, +13:u07:consensus, +12:u09:This/RFC, +18:u0A:RFC/represents, +18:u0B:represents/the, +9:u0D:RFC/0, +7:u12:rfc, +14:u13:represents, +6:u21:RF, +7:u22:RFC, +7:u23:RFC, +6:u31:FC, +7:u32:RFC, +7:u33:RFC, +14:u00:deployment, +7:u03:RFC, +14:u04:represents, +13:u06:consensus, +18:u09:RFC/represents, +18:u0A:represents/the, +17:u0B:the/consensus, +12:u0C:This/RFC, +16:u0D:represents/0, +7:u11:rfc, +14:u12:represents, +13:u14:consensus, +7:u22:rep, +8:u23:repr, +7:u02:RFC, +14:u03:represents, +13:u05:consensus, +18:u09:represents/the, +17:u0A:the/consensus, +16:u0B:consensus/of, +18:u0C:RFC/represents, +7:u10:rfc, +14:u11:represents, +13:u13:consensus, +7:u01:RFC, +14:u02:represents, +13:u04:consensus, +17:u09:the/consensus, +16:u0A:consensus/of, +18:u0C:represents/the, +15:u0D:consensus/0, +14:u10:represents, +13:u12:consensus, +7:u22:con, +8:u23:cons, +7:u32:sus, +8:u33:nsus, +7:u00:RFC, +14:u01:represents, +13:u03:consensus, +16:u09:consensus/of, +17:u0C:the/consensus, +13:u11:consensus, +14:u00:represents, +13:u02:consensus, +17:u0B:Information/-, +16:u0C:consensus/of, +13:u10:consensus, +13:u01:consensus, +17:u0A:Information/-, +13:u00:consensus, +9:u08:Group, +17:u09:Information/-, +9:u07:Group, +23:u0B:Networking/Research, +17:u0C:Information/-, +9:u06:Group, +23:u0A:Networking/Research, +18:u0B:Research/Group, +9:u05:Group, +23:u09:Networking/Research, +18:u0A:Research/Group, +12:u0B:Group/of, +9:u04:Group, +18:u09:Research/Group, +12:u0A:Group/of, +23:u0C:Networking/Research, +11:u0D:Group/0, +5:u20:G, +6:u21:Gr, +7:u22:Gro, +8:u23:Grou, +9:u03:Group, +12:u09:Group/of, +18:u0C:Research/Group, +9:u02:Group, +12:u0C:Group/of, +9:u01:Group, +9:u00:Group, +13:u08:Documents, +13:u07:Documents, +12:u08:approved, +13:u06:Documents, +12:u07:approved, +15:u0B:./Documents, +13:u14:documents, +13:u05:Documents, +12:u06:approved, +15:u08:publication, +15:u0A:./Documents, +22:u0B:Documents/approved, +13:u13:documents, +12:u14:approved, +13:u04:Documents, +12:u05:approved, +15:u07:publication, +15:u09:./Documents, +22:u0A:Documents/approved, +16:u0B:approved/for, +15:u0D:Documents/0, +13:u12:documents, +12:u13:approved, +5:u20:D, +6:u21:Do, +7:u22:Doc, +8:u23:Docu, +13:u03:Documents, +12:u04:approved, +15:u06:publication, +22:u09:Documents/approved, +16:u0A:approved/for, +19:u0B:for/publication, +15:u0C:./Documents, +14:u0D:approved/0, +13:u11:documents, +12:u12:approved, +15:u14:publication, +6:u21:ap, +7:u22:app, +8:u23:appr, +8:u33:oved, +13:u02:Documents, +12:u03:approved, +15:u05:publication, +8:u08:IRSG, +16:u09:approved/for, +19:u0A:for/publication, +18:u0B:publication/by, +22:u0C:Documents/approved, +13:u10:documents, +12:u11:approved, +15:u13:publication, +13:u01:Documents, +12:u02:approved, +15:u04:publication, +8:u07:IRSG, +7:u08:are, +19:u09:for/publication, +18:u0A:publication/by, +10:u0B:by/the, +16:u0C:approved/for, +17:u0D:publication/0, +12:u10:approved, +15:u12:publication, +13:u00:Documents, +12:u01:approved, +15:u03:publication, +8:u06:IRSG, +7:u07:are, +18:u09:publication/by, +10:u0A:by/the, +12:u0B:the/IRSG, +19:u0C:for/publication, +15:u11:publication, +8:u14:irsg, +12:u00:approved, +15:u02:publication, +8:u05:IRSG, +7:u06:are, +14:u08:candidates, +10:u09:by/the, +12:u0A:the/IRSG, +12:u0B:IRSG/are, +18:u0C:publication/by, +15:u10:publication, +8:u13:irsg, +7:u14:are, +15:u01:publication, +8:u04:IRSG, +7:u05:are, +14:u07:candidates, +12:u09:the/IRSG, +12:u0A:IRSG/are, +11:u0B:are/not, +10:u0C:by/the, +10:u0D:IRSG/0, +8:u12:irsg, +7:u13:are, +7:u22:IRS, +8:u23:IRSG, +6:u31:SG, +7:u32:RSG, +8:u33:IRSG, +15:u00:publication, +8:u03:IRSG, +7:u04:are, +14:u06:candidates, +7:u08:any, +12:u09:IRSG/are, +11:u0A:are/not, +18:u0B:not/candidates, +12:u0C:the/IRSG, +9:u0D:are/0, +8:u11:irsg, +7:u12:are, +14:u14:candidates, +6:u21:ar, +7:u22:are, +7:u23:are, +6:u31:re, +7:u32:are, +7:u33:are, +8:u02:IRSG, +7:u03:are, +14:u05:candidates, +7:u07:any, +9:u08:level, +11:u09:are/not, +18:u0A:not/candidates, +18:u0B:candidates/for, +12:u0C:IRSG/are, +8:u10:irsg, +7:u11:are, +14:u13:candidates, +8:u01:IRSG, +7:u02:are, +14:u04:candidates, +7:u06:any, +9:u07:level, +18:u09:not/candidates, +18:u0A:candidates/for, +11:u0B:for/any, +11:u0C:are/not, +16:u0D:candidates/0, +7:u10:are, +14:u12:candidates, +7:u14:any, +6:u21:ca, +7:u22:can, +8:u23:cand, +7:u32:tes, +8:u33:ates, +8:u00:IRSG, +7:u01:are, +14:u03:candidates, +7:u05:any, +9:u06:level, +18:u09:candidates/for, +11:u0A:for/any, +13:u0B:any/level, +18:u0C:not/candidates, +14:u11:candidates, +7:u13:any, +9:u14:level, +7:u00:are, +14:u02:candidates, +7:u04:any, +9:u05:level, +12:u08:Standard, +11:u09:for/any, +13:u0A:any/level, +12:u0B:level/of, +18:u0C:candidates/for, +9:u0D:any/0, +14:u10:candidates, +7:u12:any, +9:u13:level, +7:u22:any, +7:u23:any, +6:u31:ny, +7:u32:any, +7:u33:any, +14:u01:candidates, +7:u03:any, +9:u04:level, +12:u07:Standard, +13:u09:any/level, +12:u0A:level/of, +11:u0C:for/any, +11:u0D:level/0, +7:u11:any, +9:u12:level, +5:u20:l, +6:u21:le, +7:u22:lev, +8:u23:leve, +6:u31:el, +7:u32:vel, +8:u33:evel, +14:u00:candidates, +7:u02:any, +9:u03:level, +12:u06:Standard, +7:u08:see, +12:u09:level/of, +21:u0B:Internet/Standard, +13:u0C:any/level, +7:u10:any, +9:u11:level, +12:u14:standard, +7:u01:any, +9:u02:level, +12:u05:Standard, +7:u07:see, +11:u08:Section, +21:u0A:Internet/Standard, +14:u0B:Standard/;, +12:u0C:level/of, +9:u10:level, +12:u13:standard, +7:u00:any, +9:u01:level, +12:u04:Standard, +7:u06:see, +11:u07:Section, +5:u08:2, +21:u09:Internet/Standard, +14:u0A:Standard/;, +9:u0B:;/see, +14:u0D:Standard/0, +12:u12:standard, +7:u14:see, +8:u33:dard, +9:u00:level, +12:u03:Standard, +7:u05:see, +11:u06:Section, +5:u07:2, +14:u09:Standard/;, +9:u0A:;/see, +15:u0B:see/Section, +21:u0C:Internet/Standard, +12:u11:standard, +7:u13:see, +11:u14:section, +12:u02:Standard, +7:u04:see, +11:u05:Section, +5:u06:2, +9:u09:;/see, +15:u0A:see/Section, +13:u0B:Section/2, +14:u0C:Standard/;, +9:u0D:see/0, +12:u10:standard, +7:u12:see, +11:u13:section, +5:u14:2, +7:u22:see, +7:u23:see, +6:u31:ee, +7:u32:see, +7:u33:see, +12:u01:Standard, +7:u03:see, +11:u04:Section, +5:u05:2, +8:u08:7841, +15:u09:see/Section, +13:u0A:Section/2, +8:u0B:2/of, +9:u0C:;/see, +13:u0D:Section/0, +7:u11:see, +11:u12:section, +5:u13:2, +7:u22:Sec, +8:u23:Sect, +12:u00:Standard, +7:u02:see, +11:u03:Section, +5:u04:2, +8:u07:7841, +13:u09:Section/2, +8:u0A:2/of, +10:u0B:of/RFC, +15:u0C:see/Section, +7:u0D:2/0, +7:u10:see, +11:u11:section, +5:u12:2, +5:u21:2, +5:u22:2, +5:u23:2, +5:u30:2, +5:u31:2, +5:u32:2, +5:u33:2, +7:u01:see, +11:u02:Section, +5:u03:2, +8:u06:7841, +8:u09:2/of, +10:u0A:of/RFC, +12:u0B:RFC/7841, +13:u0C:Section/2, +11:u10:section, +5:u11:2, +8:u14:7841, +7:u00:see, +11:u01:Section, +5:u02:2, +8:u05:7841, +9:u08:about, +10:u09:of/RFC, +12:u0A:RFC/7841, +10:u0B:7841/., +8:u0C:2/of, +5:u10:2, +8:u13:7841, +11:u00:Section, +5:u01:2, +8:u04:7841, +9:u07:about, +12:u09:RFC/7841, +10:u0A:7841/., +17:u0B:./Information, +10:u0C:of/RFC, +10:u0D:7841/0, +8:u12:7841, +5:u20:7, +6:u21:78, +7:u22:784, +8:u23:7841, +6:u31:41, +7:u32:841, +8:u33:7841, +5:u00:2, +8:u03:7841, +9:u06:about, +11:u08:current, +10:u09:7841/., +17:u0A:./Information, +21:u0B:Information/about, +12:u0C:RFC/7841, +8:u11:7841, +9:u14:about, +8:u02:7841, +9:u05:about, +11:u07:current, +10:u08:status, +17:u09:./Information, +21:u0A:Information/about, +13:u0B:about/the, +10:u0C:7841/., +8:u10:7841, +9:u13:about, +8:u01:7841, +9:u04:about, +11:u06:current, +10:u07:status, +21:u09:Information/about, +13:u0A:about/the, +15:u0B:the/current, +17:u0C:./Information, +11:u0D:about/0, +9:u12:about, +11:u14:current, +6:u21:ab, +7:u22:abo, +8:u23:abou, +6:u31:ut, +7:u32:out, +8:u33:bout, +8:u00:7841, +9:u03:about, +11:u05:current, +10:u06:status, +8:u08:this, +13:u09:about/the, +15:u0A:the/current, +18:u0B:current/status, +21:u0C:Information/about, +9:u11:about, +11:u13:current, +9:u02:about, +11:u04:current, +10:u05:status, +8:u07:this, +15:u09:the/current, +18:u0A:current/status, +13:u0B:status/of, +13:u0C:about/the, +13:u0D:current/0, +9:u10:about, +11:u12:current, +8:u33:rent, +9:u01:about, +11:u03:current, +10:u04:status, +8:u06:this, +18:u09:current/status, +13:u0A:status/of, +11:u0B:of/this, +15:u0C:the/current, +12:u0D:status/0, +11:u11:current, +6:u21:st, +7:u22:sta, +8:u23:stat, +9:u00:about, +11:u02:current, +10:u03:status, +8:u05:this, +13:u09:status/of, +11:u0A:of/this, +17:u0B:this/document, +18:u0C:current/status, +11:u10:current, +11:u01:current, +10:u02:status, +8:u04:this, +10:u08:errata, +11:u09:of/this, +17:u0A:this/document, +14:u0B:document/,, +13:u0C:status/of, +10:u0D:this/0, +7:u22:thi, +8:u23:this, +8:u33:this, +11:u00:current, +10:u01:status, +8:u03:this, +10:u07:errata, +17:u09:this/document, +14:u0A:document/,, +9:u0B:,/any, +11:u0C:of/this, +10:u00:status, +8:u02:this, +10:u06:errata, +14:u09:document/,, +9:u0A:,/any, +14:u0B:any/errata, +17:u0C:this/document, +10:u14:errata, +8:u01:this, +10:u05:errata, +7:u08:how, +9:u09:,/any, +14:u0A:any/errata, +12:u0B:errata/,, +14:u0C:document/,, +10:u13:errata, +8:u00:this, +10:u04:errata, +7:u07:how, +14:u09:any/errata, +12:u0A:errata/,, +9:u0C:,/any, +12:u0D:errata/0, +10:u12:errata, +6:u21:er, +7:u22:err, +8:u23:erra, +6:u31:ta, +7:u32:ata, +8:u33:rata, +10:u03:errata, +7:u06:how, +11:u08:provide, +12:u09:errata/,, +11:u0B:and/how, +14:u0C:any/errata, +10:u11:errata, +7:u14:how, +10:u02:errata, +7:u05:how, +11:u07:provide, +12:u08:feedback, +11:u0A:and/how, +10:u0B:how/to, +12:u0C:errata/,, +10:u10:errata, +7:u13:how, +10:u01:errata, +7:u04:how, +11:u06:provide, +12:u07:feedback, +11:u09:and/how, +10:u0A:how/to, +14:u0B:to/provide, +9:u0D:how/0, +7:u12:how, +11:u14:provide, +6:u21:ho, +7:u22:how, +7:u23:how, +7:u32:how, +7:u33:how, +10:u00:errata, +7:u03:how, +11:u05:provide, +12:u06:feedback, +10:u09:how/to, +14:u0A:to/provide, +20:u0B:provide/feedback, +11:u0C:and/how, +7:u11:how, +11:u13:provide, +12:u14:feedback, +7:u02:how, +11:u04:provide, +12:u05:feedback, +7:u08:may, +14:u09:to/provide, +20:u0A:provide/feedback, +15:u0B:feedback/on, +10:u0C:how/to, +13:u0D:provide/0, +7:u10:how, +11:u12:provide, +12:u13:feedback, +8:u23:prov, +8:u33:vide, +7:u01:how, +11:u03:provide, +12:u04:feedback, +7:u07:may, +20:u09:provide/feedback, +15:u0A:feedback/on, +9:u0B:on/it, +14:u0C:to/provide, +14:u0D:feedback/0, +11:u11:provide, +12:u12:feedback, +6:u21:fe, +7:u22:fee, +8:u23:feed, +8:u33:back, +7:u00:how, +11:u02:provide, +12:u03:feedback, +7:u06:may, +12:u08:obtained, +15:u09:feedback/on, +9:u0A:on/it, +10:u0B:it/may, +20:u0C:provide/feedback, +11:u10:provide, +12:u11:feedback, +7:u14:may, +11:u01:provide, +12:u02:feedback, +7:u05:may, +12:u07:obtained, +6:u08:at, +9:u09:on/it, +10:u0A:it/may, +10:u0B:may/be, +15:u0C:feedback/on, +12:u10:feedback, +7:u13:may, +11:u00:provide, +12:u01:feedback, +7:u04:may, +12:u06:obtained, +6:u07:at, +9:u08:https, +10:u09:it/may, +10:u0A:may/be, +15:u0B:be/obtained, +9:u0C:on/it, +9:u0D:may/0, +7:u12:may, +12:u14:obtained, +7:u22:may, +7:u23:may, +6:u31:ay, +7:u32:may, +7:u33:may, +12:u00:feedback, +7:u03:may, +12:u05:obtained, +6:u06:at, +9:u07:https, +10:u09:may/be, +15:u0A:be/obtained, +15:u0B:obtained/at, +10:u0C:it/may, +7:u11:may, +12:u13:obtained, +6:u14:at, +7:u02:may, +12:u04:obtained, +6:u05:at, +9:u06:https, +5:u08:/, +15:u09:be/obtained, +15:u0A:obtained/at, +12:u0B:at/https, +10:u0C:may/be, +14:u0D:obtained/0, +7:u10:may, +12:u12:obtained, +6:u13:at, +9:u14:https, +6:u21:ob, +7:u22:obt, +8:u23:obta, +7:u32:ned, +8:u33:ined, +7:u01:may, +12:u03:obtained, +6:u04:at, +9:u05:https, +5:u07:/, +15:u09:obtained/at, +12:u0A:at/https, +11:u0B:https/:, +15:u0C:be/obtained, +8:u0D:at/0, +12:u11:obtained, +6:u12:at, +9:u13:https, +6:u21:at, +6:u22:at, +6:u23:at, +6:u32:at, +6:u33:at, +5:uDQ:1, +7:u00:may, +12:u02:obtained, +6:u03:at, +9:u04:https, +5:u06:/, +7:u08:www, +12:u09:at/https, +11:u0A:https/:, +7:u0B:://, +15:u0C:obtained/at, +11:u0D:https/0, +12:u10:obtained, +6:u11:at, +9:u12:https, +5:u14:/, +6:u21:ht, +7:u22:htt, +8:u23:http, +6:u31:ps, +7:u32:tps, +8:u33:ttps, +5:uD8:1, +12:u01:obtained, +6:u02:at, +9:u03:https, +5:u05:/, +7:u07:www, +11:u09:https/:, +7:u0A:://, +7:u0B:///, +12:u0C:at/https, +6:u10:at, +9:u11:https, +5:u13:/, +12:u00:obtained, +6:u01:at, +9:u02:https, +5:u04:/, +7:u06:www, +7:u08:rfc, +7:u09:://, +7:u0A:///, +9:u0B://www, +11:u0C:https/:, +7:u0D://0, +9:u10:https, +5:u12:/, +7:u14:www, +5:u20:/, +5:u21:/, +5:u22:/, +5:u23:/, +5:u30:/, +5:u31:/, +5:u32:/, +5:u33:/, +6:u00:at, +9:u01:https, +5:u03:/, +7:u05:www, +7:u07:rfc, +7:u09:///, +9:u0A://www, +9:u0B:www/., +7:u0C:://, +5:u11:/, +7:u13:www, +9:u00:https, +5:u02:/, +7:u04:www, +7:u06:rfc, +10:u08:editor, +9:u09://www, +9:u0A:www/., +9:u0B:./rfc, +7:u0C:///, +9:u0D:www/0, +5:u10:/, +7:u12:www, +6:u21:ww, +7:u22:www, +7:u23:www, +6:u31:ww, +7:u32:www, +7:u33:www, +5:u01:/, +7:u03:www, +7:u05:rfc, +10:u07:editor, +9:u09:www/., +9:u0A:./rfc, +9:u0B:rfc/-, +9:u0C://www, +7:u11:www, +5:u00:/, +7:u02:www, +7:u04:rfc, +10:u06:editor, +7:u08:org, +9:u09:./rfc, +9:u0A:rfc/-, +12:u0B:-/editor, +9:u0C:www/., +9:u0D:rfc/0, +7:u10:www, +10:u14:editor, +6:u21:rf, +7:u22:rfc, +7:u23:rfc, +6:u31:fc, +7:u32:rfc, +7:u33:rfc, +7:u01:www, +7:u03:rfc, +10:u05:editor, +7:u07:org, +9:u09:rfc/-, +12:u0A:-/editor, +12:u0B:editor/., +9:u0C:./rfc, +10:u13:editor, +7:u00:www, +7:u02:rfc, +10:u04:editor, +7:u06:org, +8:u08:info, +12:u09:-/editor, +12:u0A:editor/., +9:u0B:./org, +9:u0C:rfc/-, +12:u0D:editor/1, +10:u12:editor, +7:u14:org, +6:u21:ed, +7:u22:edi, +8:u23:edit, +7:u32:tor, +8:u33:itor, +7:u01:rfc, +10:u03:editor, +7:u05:org, +8:u07:info, +12:u09:editor/., +9:u0A:./org, +9:u0B:org//, +12:u0C:-/editor, +10:u11:editor, +7:u13:org, +7:u00:rfc, +10:u02:editor, +7:u04:org, +8:u06:info, +11:u08:rfc8609, +9:u09:./org, +9:u0A:org//, +10:u0B://info, +12:u0C:editor/., +9:u0D:org/0, +10:u10:editor, +7:u12:org, +8:u14:info, +6:u21:or, +7:u22:org, +7:u23:org, +6:u31:rg, +7:u32:org, +7:u33:org, +10:u01:editor, +7:u03:org, +8:u05:info, +11:u07:rfc8609, +9:u09:org//, +10:u0A://info, +10:u0B:info//, +9:u0C:./org, +7:u11:org, +8:u13:info, +10:u00:editor, +7:u02:org, +8:u04:info, +11:u06:rfc8609, +10:u09://info, +10:u0A:info//, +13:u0B://rfc8609, +9:u0C:org//, +10:u0D:info/0, +7:u10:org, +8:u12:info, +11:u14:rfc8609, +6:u31:fo, +7:u32:nfo, +8:u33:info, +7:u01:org, +8:u03:info, +11:u05:rfc8609, +10:u09:info//, +13:u0A://rfc8609, +13:u0B:rfc8609/., +10:u0C://info, +8:u11:info, +11:u13:rfc8609, +18:uB2:CONTAINSDIGITS, +7:u00:org, +8:u02:info, +11:u04:rfc8609, +6:u08:et, +13:u09://rfc8609, +13:u0A:rfc8609/., +10:u0C:info//, +13:u0D:rfc8609/0, +8:u10:info, +11:u12:rfc8609, +8:u23:rfc8, +18:uB0:CONTAINSDIGITS, +8:u01:info, +11:u03:rfc8609, +6:u07:et, +6:u08:al, +13:u09:rfc8609/., +11:u0B:Mosko/,, +13:u0C://rfc8609, +11:u11:rfc8609, +18:uB1:CONTAINSDIGITS, +8:u00:info, +11:u02:rfc8609, +6:u06:et, +6:u07:al, +11:u0A:Mosko/,, +8:u0B:,/et, +13:u0C:rfc8609/., +11:u10:rfc8609, +6:u14:et, +11:u01:rfc8609, +6:u05:et, +6:u06:al, +11:u09:Mosko/,, +8:u0A:,/et, +9:u0B:et/al, +6:u13:et, +6:u14:al, +11:u00:rfc8609, +6:u04:et, +6:u05:al, +5:u08:[, +8:u09:,/et, +9:u0A:et/al, +8:u0B:al/., +11:u0C:Mosko/,, +8:u0D:et/0, +6:u12:et, +6:u13:al, +6:u21:et, +6:u22:et, +6:u23:et, +6:u32:et, +6:u33:et, +6:u03:et, +6:u04:al, +5:u07:[, +8:u08:Page, +9:u09:et/al, +8:u0A:al/., +18:u0B:./Experimental, +8:u0C:,/et, +8:u0D:al/0, +6:u11:et, +6:u12:al, +6:u21:al, +6:u22:al, +6:u23:al, +6:u32:al, +6:u33:al, +6:u02:et, +6:u03:al, +5:u06:[, +8:u07:Page, +5:u08:1, +8:u09:al/., +18:u0A:./Experimental, +18:u0B:Experimental/[, +9:u0C:et/al, +6:u10:et, +6:u11:al, +5:u14:[, +6:u01:et, +6:u02:al, +5:u05:[, +8:u06:Page, +5:u07:1, +5:u08:], +18:u09:./Experimental, +18:u0A:Experimental/[, +10:u0B:[/Page, +8:u0C:al/., +6:u10:al, +5:u13:[, +8:u14:page, +6:u00:et, +6:u01:al, +5:u04:[, +8:u05:Page, +5:u06:1, +5:u07:], +18:u09:Experimental/[, +10:u0A:[/Page, +10:u0B:Page/1, +18:u0C:./Experimental, +7:u0D:[/0, +5:u12:[, +8:u13:page, +5:u14:1, +5:u20:[, +5:u21:[, +5:u22:[, +5:u23:[, +5:u30:[, +5:u31:[, +5:u32:[, +5:u33:[, +6:u00:al, +5:u03:[, +8:u04:Page, +5:u05:1, +5:u06:], +10:u09:[/Page, +10:u0A:Page/1, +7:u0B:1/], +18:u0C:Experimental/[, +10:u0D:Page/0, +5:u11:[, +8:u12:page, +5:u13:1, +5:u14:], +6:u21:Pa, +7:u22:Pag, +8:u23:Page, +8:u33:Page, +5:u02:[, +8:u03:Page, +5:u04:1, +5:u05:], +10:u09:Page/1, +7:u0A:1/], +9:u0B:]/RFC, +10:u0C:[/Page, +7:u0D:1/0, +5:u10:[, +8:u11:page, +5:u12:1, +5:u13:], +5:u21:1, +5:u22:1, +5:u23:1, +5:u31:1, +5:u32:1, +5:u33:1, +5:u01:[, +8:u02:Page, +5:u03:1, +5:u04:], +7:u09:1/], +9:u0A:]/RFC, +12:u0B:RFC/8609, +10:u0C:Page/1, +7:u0D:]/0, +8:u10:page, +5:u11:1, +5:u12:], +5:u20:], +5:u21:], +5:u22:], +5:u23:], +5:u30:], +5:u31:], +5:u32:], +5:u33:], +5:u00:[, +8:u01:Page, +5:u02:1, +5:u03:], +9:u09:]/RFC, +12:u0A:RFC/8609, +13:u0B:8609/CCNx, +7:u0C:1/], +5:u10:1, +5:u11:], +8:u00:Page, +5:u01:1, +5:u02:], +12:u09:RFC/8609, +13:u0A:8609/CCNx, +12:u0B:CCNx/TLV, +9:u0C:]/RFC, +5:u10:], +5:u00:1, +5:u01:], +13:u08:Copyright, +13:u09:8609/CCNx, +12:u0A:CCNx/TLV, +12:u0B:TLV/July, +12:u0C:RFC/8609, +5:u00:], +13:u07:Copyright, +10:u08:Notice, +12:u09:CCNx/TLV, +12:u0A:TLV/July, +13:u0C:8609/CCNx, +13:u06:Copyright, +10:u07:Notice, +12:u09:TLV/July, +18:u0B:2019/Copyright, +12:u0C:CCNx/TLV, +13:u14:copyright, +13:u05:Copyright, +10:u06:Notice, +18:u0A:2019/Copyright, +20:u0B:Copyright/Notice, +12:u0C:TLV/July, +13:u13:copyright, +10:u14:notice, +13:u04:Copyright, +10:u05:Notice, +5:u08:c, +18:u09:2019/Copyright, +20:u0A:Copyright/Notice, +20:u0B:Notice/Copyright, +15:u0D:Copyright/0, +13:u12:copyright, +10:u13:notice, +7:u22:Cop, +8:u23:Copy, +13:u03:Copyright, +10:u04:Notice, +5:u07:c, +20:u09:Copyright/Notice, +20:u0A:Notice/Copyright, +15:u0B:Copyright/(, +18:u0C:2019/Copyright, +12:u0D:Notice/0, +13:u11:copyright, +10:u12:notice, +6:u21:No, +7:u22:Not, +8:u23:Noti, +7:u32:ice, +8:u33:tice, +13:u02:Copyright, +10:u03:Notice, +5:u06:c, +20:u09:Notice/Copyright, +15:u0A:Copyright/(, +7:u0B:(/c, +20:u0C:Copyright/Notice, +13:u10:copyright, +10:u11:notice, +13:u01:Copyright, +10:u02:Notice, +5:u05:c, +8:u08:IETF, +15:u09:Copyright/(, +7:u0A:(/c, +7:u0B:c/), +20:u0C:Notice/Copyright, +10:u10:notice, +13:u00:Copyright, +10:u01:Notice, +5:u04:c, +8:u07:IETF, +9:u08:Trust, +7:u09:(/c, +7:u0A:c/), +10:u0B:)/2019, +15:u0C:Copyright/(, +7:u0D:c/0, +5:u21:c, +5:u22:c, +5:u23:c, +5:u31:c, +5:u32:c, +5:u33:c, +10:u00:Notice, +5:u03:c, +8:u06:IETF, +9:u07:Trust, +7:u09:c/), +10:u0A:)/2019, +13:u0B:2019/IETF, +7:u0C:(/c, +8:u14:ietf, +5:u02:c, +8:u05:IETF, +9:u06:Trust, +10:u09:)/2019, +13:u0A:2019/IETF, +14:u0B:IETF/Trust, +7:u0C:c/), +8:u13:ietf, +9:u14:trust, +5:u01:c, +8:u04:IETF, +9:u05:Trust, +11:u08:persons, +13:u09:2019/IETF, +14:u0A:IETF/Trust, +13:u0B:Trust/and, +10:u0C:)/2019, +10:u0D:IETF/0, +8:u12:ietf, +9:u13:trust, +6:u21:IE, +7:u22:IET, +8:u23:IETF, +7:u32:ETF, +8:u33:IETF, +5:u00:c, +8:u03:IETF, +9:u04:Trust, +11:u07:persons, +14:u08:identified, +14:u09:IETF/Trust, +13:u0A:Trust/and, +13:u0C:2019/IETF, +11:u0D:Trust/0, +8:u11:ietf, +9:u12:trust, +7:u22:Tru, +8:u23:Trus, +7:u32:ust, +8:u33:rust, +8:u02:IETF, +9:u03:Trust, +11:u06:persons, +14:u07:identified, +6:u08:as, +13:u09:Trust/and, +15:u0B:the/persons, +14:u0C:IETF/Trust, +8:u10:ietf, +9:u11:trust, +11:u14:persons, +8:u01:IETF, +9:u02:Trust, +11:u05:persons, +14:u06:identified, +6:u07:as, +15:u0A:the/persons, +22:u0B:persons/identified, +13:u0C:Trust/and, +9:u10:trust, +11:u13:persons, +14:u14:identified, +8:u00:IETF, +9:u01:Trust, +11:u04:persons, +14:u05:identified, +6:u06:as, +15:u09:the/persons, +22:u0A:persons/identified, +17:u0B:identified/as, +13:u0D:persons/0, +11:u12:persons, +14:u13:identified, +6:u14:as, +6:u21:pe, +7:u22:per, +8:u23:pers, +8:u33:sons, +9:u00:Trust, +11:u03:persons, +14:u04:identified, +6:u05:as, +11:u08:authors, +22:u09:persons/identified, +17:u0A:identified/as, +10:u0B:as/the, +15:u0C:the/persons, +16:u0D:identified/0, +11:u11:persons, +14:u12:identified, +6:u13:as, +6:u21:id, +7:u22:ide, +8:u23:iden, +7:u32:ied, +8:u33:fied, +11:u02:persons, +14:u03:identified, +6:u04:as, +11:u07:authors, +17:u09:identified/as, +10:u0A:as/the, +16:u0B:the/document, +22:u0C:persons/identified, +8:u0D:as/0, +11:u10:persons, +14:u11:identified, +6:u12:as, +6:u21:as, +6:u22:as, +6:u23:as, +6:u32:as, +6:u33:as, +11:u01:persons, +14:u02:identified, +6:u03:as, +11:u06:authors, +7:u08:All, +10:u09:as/the, +16:u0A:the/document, +20:u0B:document/authors, +17:u0C:identified/as, +14:u10:identified, +6:u11:as, +11:u14:authors, +11:u00:persons, +14:u01:identified, +6:u02:as, +11:u05:authors, +7:u07:All, +10:u08:rights, +16:u09:the/document, +20:u0A:document/authors, +13:u0B:authors/., +10:u0C:as/the, +6:u10:as, +11:u13:authors, +14:u00:identified, +6:u01:as, +11:u04:authors, +7:u06:All, +10:u07:rights, +12:u08:reserved, +20:u09:document/authors, +13:u0A:authors/., +9:u0B:./All, +16:u0C:the/document, +13:u0D:authors/0, +11:u12:authors, +7:u14:all, +6:u21:au, +7:u22:aut, +8:u23:auth, +6:u31:rs, +7:u32:ors, +8:u33:hors, +6:u00:as, +11:u03:authors, +7:u05:All, +10:u06:rights, +12:u07:reserved, +13:u09:authors/., +9:u0A:./All, +14:u0B:All/rights, +20:u0C:document/authors, +11:u11:authors, +7:u13:all, +10:u14:rights, +11:u02:authors, +7:u04:All, +10:u05:rights, +12:u06:reserved, +9:u09:./All, +14:u0A:All/rights, +19:u0B:rights/reserved, +13:u0C:authors/., +9:u0D:All/0, +11:u10:authors, +7:u12:all, +10:u13:rights, +12:u14:reserved, +6:u21:Al, +7:u22:All, +7:u23:All, +7:u32:All, +7:u33:All, +11:u01:authors, +7:u03:All, +10:u04:rights, +12:u05:reserved, +14:u09:All/rights, +19:u0A:rights/reserved, +14:u0B:reserved/., +9:u0C:./All, +12:u0D:rights/0, +7:u11:all, +10:u12:rights, +12:u13:reserved, +6:u21:ri, +7:u22:rig, +8:u23:righ, +7:u32:hts, +8:u33:ghts, +11:u00:authors, +7:u02:All, +10:u03:rights, +12:u04:reserved, +19:u09:rights/reserved, +14:u0A:reserved/., +14:u0C:All/rights, +14:u0D:reserved/0, +7:u10:all, +10:u11:rights, +12:u12:reserved, +8:u33:rved, +7:u01:All, +10:u02:rights, +12:u03:reserved, +11:u08:subject, +14:u09:reserved/., +19:u0C:rights/reserved, +10:u10:rights, +12:u11:reserved, +7:u00:All, +10:u01:rights, +12:u02:reserved, +11:u07:subject, +14:u0C:reserved/., +12:u10:reserved, +10:u00:rights, +12:u01:reserved, +11:u06:subject, +7:u08:BCP, +14:u0B:is/subject, +11:u14:subject, +12:u00:reserved, +11:u05:subject, +7:u07:BCP, +6:u08:78, +14:u0A:is/subject, +14:u0B:subject/to, +11:u13:subject, +11:u04:subject, +7:u06:BCP, +6:u07:78, +14:u09:is/subject, +14:u0A:subject/to, +10:u0B:to/BCP, +13:u0D:subject/0, +11:u12:subject, +7:u14:bcp, +7:u22:sub, +8:u23:subj, +7:u32:ect, +8:u33:ject, +11:u03:subject, +7:u05:BCP, +6:u06:78, +14:u09:subject/to, +10:u0A:to/BCP, +10:u0B:BCP/78, +14:u0C:is/subject, +11:u11:subject, +7:u13:bcp, +6:u14:78, +11:u02:subject, +7:u04:BCP, +6:u05:78, +10:u09:to/BCP, +10:u0A:BCP/78, +10:u0B:78/and, +14:u0C:subject/to, +9:u0D:BCP/0, +11:u10:subject, +7:u12:bcp, +6:u13:78, +5:u20:B, +6:u21:BC, +7:u22:BCP, +7:u23:BCP, +5:u30:P, +6:u31:CP, +7:u32:BCP, +7:u33:BCP, +11:u01:subject, +7:u03:BCP, +6:u04:78, +10:u09:BCP/78, +10:u0A:78/and, +10:u0C:to/BCP, +8:u0D:78/0, +7:u11:bcp, +6:u12:78, +6:u22:78, +6:u23:78, +5:u30:8, +6:u31:78, +6:u32:78, +6:u33:78, +11:u00:subject, +7:u02:BCP, +6:u03:78, +5:u08:', +10:u09:78/and, +12:u0B:the/IETF, +10:u0C:BCP/78, +7:u10:bcp, +6:u11:78, +7:u01:BCP, +6:u02:78, +5:u07:', +5:u08:s, +12:u0A:the/IETF, +10:u0C:78/and, +6:u10:78, +7:u00:BCP, +6:u01:78, +5:u06:', +5:u07:s, +9:u08:Legal, +12:u09:the/IETF, +11:u0B:Trust/', +5:u14:', +6:u00:78, +5:u05:', +5:u06:s, +9:u07:Legal, +14:u08:Provisions, +11:u0A:Trust/', +7:u0B:'/s, +12:u0C:the/IETF, +5:u13:', +5:u14:s, +9:uF2:QUOTE, +5:u04:', +5:u05:s, +9:u06:Legal, +14:u07:Provisions, +12:u08:Relating, +11:u09:Trust/', +7:u0A:'/s, +11:u0B:s/Legal, +7:u0D:'/0, +5:u12:', +5:u13:s, +9:u14:legal, +5:u20:', +5:u21:', +5:u22:', +5:u23:', +5:u30:', +5:u31:', +5:u32:', +5:u33:', +9:uF1:QUOTE, +5:u03:', +5:u04:s, +9:u05:Legal, +14:u06:Provisions, +12:u07:Relating, +7:u09:'/s, +11:u0A:s/Legal, +20:u0B:Legal/Provisions, +11:u0C:Trust/', +7:u0D:s/0, +5:u11:', +5:u12:s, +9:u13:legal, +14:u14:provisions, +5:u21:s, +5:u22:s, +5:u23:s, +5:u31:s, +5:u32:s, +5:u33:s, +9:uF0:QUOTE, +5:u02:', +5:u03:s, +9:u04:Legal, +14:u05:Provisions, +12:u06:Relating, +11:u09:s/Legal, +20:u0A:Legal/Provisions, +23:u0B:Provisions/Relating, +7:u0C:'/s, +11:u0D:Legal/0, +5:u10:', +5:u11:s, +9:u12:legal, +14:u13:provisions, +12:u14:relating, +6:u21:Le, +7:u22:Leg, +8:u23:Lega, +7:u32:gal, +8:u33:egal, +5:u01:', +5:u02:s, +9:u03:Legal, +14:u04:Provisions, +12:u05:Relating, +20:u09:Legal/Provisions, +23:u0A:Provisions/Relating, +15:u0B:Relating/to, +11:u0C:s/Legal, +16:u0D:Provisions/0, +5:u10:s, +9:u11:legal, +14:u12:provisions, +12:u13:relating, +8:u23:Prov, +5:u00:', +5:u01:s, +9:u02:Legal, +14:u03:Provisions, +12:u04:Relating, +23:u09:Provisions/Relating, +15:u0A:Relating/to, +11:u0B:to/IETF, +20:u0C:Legal/Provisions, +14:u0D:Relating/0, +9:u10:legal, +14:u11:provisions, +12:u12:relating, +7:u22:Rel, +8:u23:Rela, +8:u33:ting, +5:u00:s, +9:u01:Legal, +14:u02:Provisions, +12:u03:Relating, +15:u09:Relating/to, +11:u0A:to/IETF, +18:u0B:IETF/Documents, +23:u0C:Provisions/Relating, +14:u10:provisions, +12:u11:relating, +9:u00:Legal, +14:u01:Provisions, +12:u02:Relating, +11:u09:to/IETF, +18:u0A:IETF/Documents, +15:u0B:Documents/(, +15:u0C:Relating/to, +12:u10:relating, +14:u00:Provisions, +12:u01:Relating, +18:u09:IETF/Documents, +15:u0A:Documents/(, +11:u0B:(/https, +11:u0C:to/IETF, +12:u00:Relating, +15:u09:Documents/(, +11:u0A:(/https, +18:u0C:IETF/Documents, +11:u08:trustee, +11:u09:(/https, +15:u0C:Documents/(, +11:u07:trustee, +11:u0C:(/https, +11:u06:trustee, +8:u08:ietf, +13:u0B://trustee, +11:u14:trustee, +11:u05:trustee, +8:u07:ietf, +13:u0A://trustee, +13:u0B:trustee/., +11:u13:trustee, +11:u04:trustee, +8:u06:ietf, +13:u09://trustee, +13:u0A:trustee/., +10:u0B:./ietf, +13:u0D:trustee/0, +11:u12:trustee, +6:u21:tr, +7:u22:tru, +8:u23:trus, +7:u32:tee, +8:u33:stee, +11:u03:trustee, +8:u05:ietf, +13:u09:trustee/., +10:u0A:./ietf, +10:u0B:ietf/., +13:u0C://trustee, +11:u11:trustee, +11:u02:trustee, +8:u04:ietf, +11:u08:license, +10:u09:./ietf, +10:u0A:ietf/., +13:u0C:trustee/., +10:u0D:ietf/0, +11:u10:trustee, +6:u21:ie, +7:u22:iet, +8:u23:ietf, +6:u31:tf, +7:u32:etf, +8:u33:ietf, +11:u01:trustee, +8:u03:ietf, +11:u07:license, +10:u09:ietf/., +10:u0C:./ietf, +11:u00:trustee, +8:u02:ietf, +11:u06:license, +13:u0B://license, +10:u0C:ietf/., +11:u14:license, +8:u01:ietf, +11:u05:license, +13:u0A://license, +13:u0B:license/-, +11:u13:license, +8:u00:ietf, +11:u04:license, +13:u09://license, +13:u0A:license/-, +10:u0B:-/info, +13:u0D:license/0, +11:u12:license, +6:u21:li, +7:u22:lic, +8:u23:lice, +7:u32:nse, +8:u33:ense, +11:u03:license, +10:u08:effect, +13:u09:license/-, +10:u0A:-/info, +10:u0B:info/), +13:u0C://license, +11:u11:license, +11:u02:license, +10:u07:effect, +10:u09:-/info, +10:u0A:info/), +8:u0B:)/in, +13:u0C:license/-, +10:u0D:info/1, +11:u10:license, +11:u01:license, +10:u06:effect, +10:u09:info/), +8:u0A:)/in, +13:u0B:in/effect, +10:u0C:-/info, +10:u14:effect, +11:u00:license, +10:u05:effect, +8:u08:date, +8:u09:)/in, +13:u0A:in/effect, +13:u0B:effect/on, +10:u0C:info/), +10:u13:effect, +10:u04:effect, +8:u07:date, +13:u09:in/effect, +13:u0A:effect/on, +10:u0B:on/the, +8:u0C:)/in, +12:u0D:effect/0, +10:u12:effect, +6:u21:ef, +7:u22:eff, +8:u23:effe, +8:u33:fect, +10:u03:effect, +8:u06:date, +13:u09:effect/on, +10:u0A:on/the, +12:u0B:the/date, +13:u0C:in/effect, +10:u11:effect, +8:u14:date, +10:u02:effect, +10:u09:on/the, +12:u0A:the/date, +11:u0B:date/of, +13:u0C:effect/on, +10:u10:effect, +10:u01:effect, +12:u09:the/date, +11:u0A:date/of, +18:u0B:of/publication, +10:u0C:on/the, +10:u00:effect, +11:u09:date/of, +18:u0A:of/publication, +18:u0B:publication/of, +12:u0C:the/date, +18:u09:of/publication, +18:u0A:publication/of, +11:u0C:date/of, +10:u08:Please, +18:u09:publication/of, +18:u0C:of/publication, +10:u07:Please, +14:u0B:document/., +18:u0C:publication/of, +10:u06:Please, +9:u08:these, +14:u0A:document/., +12:u0B:./Please, +10:u14:please, +10:u05:Please, +9:u07:these, +13:u08:documents, +14:u09:document/., +12:u0A:./Please, +17:u0B:Please/review, +10:u13:please, +10:u04:Please, +9:u06:these, +13:u07:documents, +13:u08:carefully, +12:u09:./Please, +17:u0A:Please/review, +16:u0B:review/these, +14:u0C:document/., +12:u0D:Please/0, +10:u12:please, +6:u21:Pl, +7:u22:Ple, +8:u23:Plea, +7:u32:ase, +8:u33:ease, +10:u03:Please, +9:u05:these, +13:u06:documents, +13:u07:carefully, +17:u09:Please/review, +16:u0A:review/these, +19:u0B:these/documents, +12:u0C:./Please, +10:u11:please, +10:u02:Please, +9:u04:these, +13:u05:documents, +13:u06:carefully, +16:u09:review/these, +19:u0A:these/documents, +23:u0B:documents/carefully, +17:u0C:Please/review, +11:u0D:these/0, +10:u10:please, +13:u14:carefully, +8:u23:thes, +10:u01:Please, +9:u03:these, +13:u04:documents, +13:u05:carefully, +8:u08:they, +19:u09:these/documents, +23:u0A:documents/carefully, +15:u0B:carefully/,, +16:u0C:review/these, +15:u0D:documents/0, +13:u13:carefully, +10:u00:Please, +9:u02:these, +13:u03:documents, +13:u04:carefully, +8:u07:they, +12:u08:describe, +23:u09:documents/carefully, +15:u0A:carefully/,, +8:u0B:,/as, +19:u0C:these/documents, +15:u0D:carefully/0, +13:u12:carefully, +7:u22:car, +8:u23:care, +7:u32:lly, +8:u33:ully, +9:u01:these, +13:u02:documents, +13:u03:carefully, +8:u06:they, +12:u07:describe, +8:u08:your, +15:u09:carefully/,, +8:u0A:,/as, +11:u0B:as/they, +23:u0C:documents/carefully, +13:u11:carefully, +8:u14:they, +9:u00:these, +13:u01:documents, +13:u02:carefully, +8:u05:they, +12:u06:describe, +8:u07:your, +8:u09:,/as, +11:u0A:as/they, +17:u0B:they/describe, +15:u0C:carefully/,, +13:u10:carefully, +8:u13:they, +12:u14:describe, +13:u00:documents, +13:u01:carefully, +8:u04:they, +12:u05:describe, +8:u06:your, +11:u09:as/they, +17:u0A:they/describe, +17:u0B:describe/your, +8:u0C:,/as, +10:u0D:they/0, +8:u12:they, +12:u13:describe, +8:u14:your, +8:u23:they, +6:u31:ey, +7:u32:hey, +8:u33:they, +13:u00:carefully, +8:u03:they, +12:u04:describe, +8:u05:your, +16:u08:restrictions, +17:u09:they/describe, +17:u0A:describe/your, +15:u0B:your/rights, +11:u0C:as/they, +14:u0D:describe/0, +8:u11:they, +12:u12:describe, +8:u13:your, +7:u22:des, +8:u23:desc, +7:u32:ibe, +8:u33:ribe, +8:u02:they, +12:u03:describe, +8:u04:your, +16:u07:restrictions, +8:u08:with, +17:u09:describe/your, +15:u0A:your/rights, +14:u0B:rights/and, +17:u0C:they/describe, +10:u0D:your/0, +8:u10:they, +12:u11:describe, +8:u12:your, +5:u20:y, +6:u21:yo, +7:u22:you, +8:u23:your, +6:u31:ur, +7:u32:our, +8:u33:your, +8:u01:they, +12:u02:describe, +8:u03:your, +16:u06:restrictions, +8:u07:with, +11:u08:respect, +15:u09:your/rights, +14:u0A:rights/and, +20:u0B:and/restrictions, +17:u0C:describe/your, +12:u10:describe, +8:u11:your, +16:u14:restrictions, +8:u00:they, +12:u01:describe, +8:u02:your, +16:u05:restrictions, +8:u06:with, +11:u07:respect, +14:u09:rights/and, +20:u0A:and/restrictions, +21:u0B:restrictions/with, +15:u0C:your/rights, +8:u10:your, +16:u13:restrictions, +8:u14:with, +12:u00:describe, +8:u01:your, +16:u04:restrictions, +8:u05:with, +11:u06:respect, +20:u09:and/restrictions, +21:u0A:restrictions/with, +16:u0B:with/respect, +14:u0C:rights/and, +18:u0D:restrictions/0, +16:u12:restrictions, +8:u13:with, +11:u14:respect, +8:u23:rest, +8:u00:your, +16:u03:restrictions, +8:u04:with, +11:u05:respect, +21:u09:restrictions/with, +16:u0A:with/respect, +14:u0B:respect/to, +20:u0C:and/restrictions, +10:u0D:with/0, +16:u11:restrictions, +8:u12:with, +11:u13:respect, +7:u22:wit, +8:u23:with, +6:u31:th, +7:u32:ith, +8:u33:with, +16:u02:restrictions, +8:u03:with, +11:u04:respect, +16:u09:with/respect, +14:u0A:respect/to, +11:u0B:to/this, +21:u0C:restrictions/with, +13:u0D:respect/0, +16:u10:restrictions, +8:u11:with, +11:u12:respect, +8:u33:pect, +16:u01:restrictions, +8:u02:with, +11:u03:respect, +14:u09:respect/to, +11:u0A:to/this, +16:u0C:with/respect, +8:u10:with, +11:u11:respect, +16:u00:restrictions, +8:u01:with, +11:u02:respect, +11:u09:to/this, +14:u0C:respect/to, +11:u10:respect, +8:u00:with, +11:u01:respect, +7:u0B:./., +11:u0C:to/this, +11:u00:respect, +7:u0A:./., +7:u0B:./,, +7:u09:./., +7:u0A:./,, +8:u0B:,/of, +7:u09:./,, +8:u0A:,/of, +8:u0B:of/-, +7:u0C:./., +8:u09:,/of, +8:u0A:of/-, +7:u0B:-/-, +7:u0C:./,, +8:u09:of/-, +7:u0A:-/-, +7:u0B:-/., +8:u0C:,/of, +7:u09:-/-, +7:u0A:-/., +8:u0C:of/-, +7:u0D:-/1, +7:u09:-/., +7:u0C:-/-, +7:u0D:./1, +8:u0B:of/., +7:u0C:-/., +8:u0A:of/., +8:u0B:./of, +8:u09:of/., +8:u0A:./of, +8:u0B:of/,, +11:u08:America, +8:u09:./of, +8:u0A:of/,, +7:u0B:,/,, +8:u0C:of/., +11:u07:America, +9:u08:Phone, +8:u09:of/,, +7:u0A:,/,, +8:u0C:./of, +11:u06:America, +9:u07:Phone, +7:u09:,/,, +14:u0B:of/America, +8:u0C:of/,, +11:u14:america, +11:u05:America, +9:u06:Phone, +7:u08:+01, +14:u0A:of/America, +17:u0B:America/Phone, +7:u0C:,/,, +11:u13:america, +9:u14:phone, +11:u04:America, +9:u05:Phone, +7:u07:+01, +7:u08:650, +14:u09:of/America, +17:u0A:America/Phone, +11:u0B:Phone/:, +13:u0D:America/0, +11:u12:america, +9:u13:phone, +6:u21:Am, +7:u22:Ame, +8:u23:Amer, +6:u31:ca, +7:u32:ica, +8:u33:rica, +11:u03:America, +9:u04:Phone, +7:u06:+01, +7:u07:650, +17:u09:America/Phone, +11:u0A:Phone/:, +9:u0B::/+01, +14:u0C:of/America, +11:u0D:Phone/0, +11:u11:america, +9:u12:phone, +7:u14:+01, +6:u21:Ph, +7:u22:Pho, +8:u23:Phon, +7:u32:one, +8:u33:hone, +11:u02:America, +9:u03:Phone, +7:u05:+01, +7:u06:650, +7:u08:812, +11:u09:Phone/:, +9:u0A::/+01, +11:u0B:+01/650, +17:u0C:America/Phone, +11:u10:america, +9:u11:phone, +7:u13:+01, +7:u14:650, +11:u01:America, +9:u02:Phone, +7:u04:+01, +7:u05:650, +7:u07:812, +9:u09::/+01, +11:u0A:+01/650, +9:u0B:650/-, +11:u0C:Phone/:, +9:u0D:+01/0, +9:u10:phone, +7:u12:+01, +7:u13:650, +5:u20:+, +6:u21:+0, +7:u22:+01, +7:u23:+01, +6:u31:01, +7:u32:+01, +7:u33:+01, +11:u00:America, +9:u01:Phone, +7:u03:+01, +7:u04:650, +7:u06:812, +9:u08:Email, +11:u09:+01/650, +9:u0A:650/-, +9:u0B:-/812, +9:u0C::/+01, +9:u0D:650/0, +7:u11:+01, +7:u12:650, +7:u14:812, +5:u20:6, +6:u21:65, +7:u22:650, +7:u23:650, +6:u31:50, +7:u32:650, +7:u33:650, +9:u00:Phone, +7:u02:+01, +7:u03:650, +7:u05:812, +9:u07:Email, +9:u09:650/-, +9:u0A:-/812, +9:u0B:812/-, +11:u0C:+01/650, +7:u10:+01, +7:u11:650, +7:u13:812, +7:u01:+01, +7:u02:650, +7:u04:812, +9:u06:Email, +15:u08:mmosko@parc, +9:u09:-/812, +9:u0A:812/-, +11:u0B:-/Email, +9:u0C:650/-, +9:u0D:812/1, +7:u10:650, +7:u12:812, +9:u14:email, +6:u21:81, +7:u22:812, +7:u23:812, +6:u31:12, +7:u32:812, +7:u33:812, +7:u00:+01, +7:u01:650, +7:u03:812, +9:u05:Email, +15:u07:mmosko@parc, +9:u09:812/-, +11:u0A:-/Email, +11:u0B:Email/:, +9:u0C:-/812, +7:u11:812, +9:u13:email, +7:u00:650, +7:u02:812, +9:u04:Email, +15:u06:mmosko@parc, +7:u08:edu, +11:u09:-/Email, +11:u0A:Email/:, +17:u0B::/mmosko@parc, +9:u0C:812/-, +11:u0D:Email/1, +7:u10:812, +9:u12:email, +15:u14:mmosko@parc, +6:u21:Em, +7:u22:Ema, +8:u23:Emai, +6:u31:il, +7:u32:ail, +8:u33:mail, +7:u01:812, +9:u03:Email, +15:u05:mmosko@parc, +7:u07:edu, +8:u08:_x+1, +11:u09:Email/:, +17:u0A::/mmosko@parc, +17:u0B:mmosko@parc/., +11:u0C:-/Email, +9:u11:email, +15:u13:mmosko@parc, +7:u00:812, +9:u02:Email, +15:u04:mmosko@parc, +7:u06:edu, +8:u07:_x+1, +8:u08:_x+2, +17:u09::/mmosko@parc, +17:u0A:mmosko@parc/., +9:u0B:./edu, +11:u0C:Email/:, +17:u0D:mmosko@parc/0, +9:u10:email, +15:u12:mmosko@parc, +7:u14:edu, +6:u21:mm, +7:u22:mmo, +8:u23:mmos, +6:u31:rc, +7:u32:arc, +8:u33:parc, +9:u01:Email, +15:u03:mmosko@parc, +7:u05:edu, +8:u06:_x+1, +8:u07:_x+2, +8:u08:_x+3, +17:u09:mmosko@parc/., +9:u0A:./edu, +12:u0B:edu/_x+1, +17:u0C::/mmosko@parc, +15:u11:mmosko@parc, +7:u13:edu, +8:u14:_x+1, +8:uE4:_x+1, +9:u00:Email, +15:u02:mmosko@parc, +7:u04:edu, +8:u05:_x+1, +8:u06:_x+2, +8:u07:_x+3, +8:u08:_x+4, +9:u09:./edu, +12:u0A:edu/_x+1, +13:u0B:_x+1/_x+2, +17:u0C:mmosko@parc/., +9:u0D:edu/0, +15:u10:mmosko@parc, +7:u12:edu, +8:u13:_x+1, +8:u14:_x+2, +7:u22:edu, +7:u23:edu, +5:u30:u, +6:u31:du, +7:u32:edu, +7:u33:edu, +8:u42:_x+1, +8:u52:_x+1, +8:u62:_x+1, +8:u72:_x+1, +8:u82:_x+1, +8:u92:_x+1, +8:uA1:_x+1, +15:uA3:NOCAPS/_x+1, +8:uB2:_x+1, +8:uC2:_x+1, +8:uDI:_x+1, +8:uDJ:_x+1, +8:uDK:_x+1, +8:uDL:_x+1, +8:uDM:_x+1, +8:uDN:_x+1, +8:uDO:_x+1, +8:uDP:_x+1, +8:uDQ:_x+1, +8:uE3:_x+1, +8:uE4:_x+2, +8:uF2:_x+1, +8:u08:8569, +8:u07:8569, +8:u06:8569, +10:u0B::/8569, +8:u14:8569, +8:u05:8569, +10:u0A::/8569, +13:u0B:8569/PARC, +8:u13:8569, +8:u04:8569, +10:u09::/8569, +13:u0A:8569/PARC, +10:u0D:8569/0, +8:u12:8569, +6:u21:85, +7:u22:856, +8:u23:8569, +6:u31:69, +7:u32:569, +8:u33:8569, +8:u03:8569, +13:u09:8569/PARC, +10:u0C::/8569, +8:u11:8569, +8:u02:8569, +13:u0C:8569/PARC, +8:u10:8569, +8:u01:8569, +8:u00:8569, +15:u0B:)/Semantics, +15:u0A:)/Semantics, +22:u0B:Semantics/Abstract, +13:u08:describes, +15:u09:)/Semantics, +22:u0A:Semantics/Abstract, +17:u0B:Abstract/This, +13:u07:describes, +22:u09:Semantics/Abstract, +17:u0A:Abstract/This, +15:u0C:)/Semantics, +13:u06:describes, +8:u08:core, +17:u09:Abstract/This, +22:u0B:document/describes, +22:u0C:Semantics/Abstract, +13:u14:describes, +13:u05:describes, +8:u07:core, +12:u08:concepts, +22:u0A:document/describes, +17:u0B:describes/the, +17:u0C:Abstract/This, +13:u13:describes, +13:u04:describes, +8:u06:core, +12:u07:concepts, +22:u09:document/describes, +17:u0A:describes/the, +12:u0B:the/core, +15:u0D:describes/0, +13:u12:describes, +8:u14:core, +7:u32:bes, +8:u33:ibes, +13:u03:describes, +8:u05:core, +12:u06:concepts, +17:u09:describes/the, +12:u0A:the/core, +17:u0B:core/concepts, +22:u0C:document/describes, +13:u11:describes, +8:u13:core, +12:u14:concepts, +13:u02:describes, +8:u04:core, +12:u05:concepts, +12:u09:the/core, +17:u0A:core/concepts, +15:u0B:concepts/of, +17:u0C:describes/the, +10:u0D:core/0, +13:u10:describes, +8:u12:core, +12:u13:concepts, +7:u22:cor, +8:u23:core, +7:u32:ore, +8:u33:core, +13:u01:describes, +8:u03:core, +12:u04:concepts, +17:u09:core/concepts, +15:u0A:concepts/of, +12:u0C:the/core, +14:u0D:concepts/0, +8:u11:core, +12:u12:concepts, +8:u23:conc, +7:u32:pts, +8:u33:epts, +13:u00:describes, +8:u02:core, +12:u03:concepts, +15:u09:concepts/of, +15:u0B:the/Content, +17:u0C:core/concepts, +8:u10:core, +12:u11:concepts, +8:u01:core, +12:u02:concepts, +15:u0A:the/Content, +15:u0C:concepts/of, +12:u10:concepts, +8:u00:core, +12:u01:concepts, +15:u09:the/Content, +12:u00:concepts, +15:u0C:the/Content, +16:u08:architecture, +16:u07:architecture, +16:u06:architecture, +12:u08:presents, +18:u0B:)/architecture, +16:u14:architecture, +16:u05:architecture, +12:u07:presents, +18:u0A:)/architecture, +20:u0B:architecture/and, +16:u13:architecture, +16:u04:architecture, +12:u06:presents, +18:u09:)/architecture, +20:u0A:architecture/and, +16:u0B:and/presents, +18:u0D:architecture/0, +16:u12:architecture, +12:u14:presents, +7:u22:arc, +8:u23:arch, +7:u32:ure, +8:u33:ture, +16:u03:architecture, +12:u05:presents, +20:u09:architecture/and, +16:u0A:and/presents, +14:u0B:presents/a, +18:u0C:)/architecture, +16:u11:architecture, +12:u13:presents, +16:u02:architecture, +12:u04:presents, +9:u08:based, +16:u09:and/presents, +14:u0A:presents/a, +20:u0C:architecture/and, +14:u0D:presents/0, +16:u10:architecture, +12:u12:presents, +7:u22:pre, +8:u23:pres, +16:u01:architecture, +12:u03:presents, +9:u07:based, +14:u09:presents/a, +16:u0C:and/presents, +12:u11:presents, +16:u00:architecture, +12:u02:presents, +9:u06:based, +18:u0B:protocol/based, +14:u0C:presents/a, +12:u10:presents, +9:u14:based, +12:u01:presents, +9:u05:based, +18:u0A:protocol/based, +12:u0B:based/on, +9:u13:based, +12:u00:presents, +9:u04:based, +18:u09:protocol/based, +12:u0A:based/on, +10:u0B:on/two, +11:u0D:based/0, +9:u12:based, +6:u21:ba, +7:u22:bas, +8:u23:base, +8:u33:ased, +9:u03:based, +13:u08:Interests, +12:u09:based/on, +10:u0A:on/two, +16:u0B:two/messages, +18:u0C:protocol/based, +9:u11:based, +9:u02:based, +13:u07:Interests, +10:u09:on/two, +16:u0A:two/messages, +14:u0B:messages/:, +12:u0C:based/on, +9:u10:based, +9:u01:based, +13:u06:Interests, +16:u09:two/messages, +14:u0A:messages/:, +15:u0B::/Interests, +10:u0C:on/two, +13:u14:interests, +9:u00:based, +13:u05:Interests, +11:u08:Objects, +14:u09:messages/:, +15:u0A::/Interests, +17:u0B:Interests/and, +16:u0C:two/messages, +13:u13:interests, +13:u04:Interests, +11:u07:Objects, +15:u09::/Interests, +17:u0A:Interests/and, +15:u0B:and/Content, +14:u0C:messages/:, +15:u0D:Interests/0, +13:u12:interests, +13:u03:Interests, +11:u06:Objects, +6:u08:It, +17:u09:Interests/and, +15:u0A:and/Content, +19:u0B:Content/Objects, +15:u0C::/Interests, +13:u11:interests, +11:u14:objects, +13:u02:Interests, +11:u05:Objects, +6:u07:It, +15:u09:and/Content, +19:u0A:Content/Objects, +13:u0B:Objects/., +17:u0C:Interests/and, +13:u10:interests, +11:u13:objects, +13:u01:Interests, +11:u04:Objects, +6:u06:It, +19:u09:Content/Objects, +13:u0A:Objects/., +8:u0B:./It, +15:u0C:and/Content, +13:u0D:Objects/0, +11:u12:objects, +5:u20:O, +6:u21:Ob, +7:u22:Obj, +8:u23:Obje, +7:u32:cts, +8:u33:ects, +13:u00:Interests, +11:u03:Objects, +6:u05:It, +7:u08:set, +13:u09:Objects/., +8:u0A:./It, +16:u0B:It/specifies, +19:u0C:Content/Objects, +11:u11:objects, +11:u02:Objects, +6:u04:It, +7:u07:set, +8:u09:./It, +16:u0A:It/specifies, +13:u0C:Objects/., +8:u0D:It/0, +11:u10:objects, +6:u21:It, +6:u22:It, +6:u23:It, +6:u31:It, +6:u32:It, +6:u33:It, +11:u01:Objects, +6:u03:It, +7:u06:set, +13:u08:mandatory, +16:u09:It/specifies, +11:u0B:the/set, +8:u0C:./It, +7:u14:set, +11:u00:Objects, +6:u02:It, +7:u05:set, +13:u07:mandatory, +11:u0A:the/set, +10:u0B:set/of, +16:u0C:It/specifies, +7:u13:set, +6:u01:It, +7:u04:set, +13:u06:mandatory, +12:u08:optional, +11:u09:the/set, +10:u0A:set/of, +16:u0B:of/mandatory, +9:u0D:set/0, +7:u12:set, +13:u14:mandatory, +7:u22:set, +7:u23:set, +7:u32:set, +7:u33:set, +6:u00:It, +7:u03:set, +13:u05:mandatory, +12:u07:optional, +10:u08:fields, +10:u09:set/of, +16:u0A:of/mandatory, +17:u0B:mandatory/and, +11:u0C:the/set, +7:u11:set, +13:u13:mandatory, +7:u02:set, +13:u04:mandatory, +12:u06:optional, +10:u07:fields, +10:u08:within, +16:u09:of/mandatory, +17:u0A:mandatory/and, +16:u0B:and/optional, +10:u0C:set/of, +15:u0D:mandatory/0, +7:u10:set, +13:u12:mandatory, +12:u14:optional, +7:u22:man, +8:u23:mand, +8:u33:tory, +7:u01:set, +13:u03:mandatory, +12:u05:optional, +10:u06:fields, +10:u07:within, +9:u08:those, +17:u09:mandatory/and, +16:u0A:and/optional, +19:u0B:optional/fields, +16:u0C:of/mandatory, +13:u11:mandatory, +12:u13:optional, +10:u14:fields, +7:u00:set, +13:u02:mandatory, +12:u04:optional, +10:u05:fields, +10:u06:within, +9:u07:those, +16:u09:and/optional, +19:u0A:optional/fields, +17:u0B:fields/within, +17:u0C:mandatory/and, +14:u0D:optional/0, +13:u10:mandatory, +12:u12:optional, +10:u13:fields, +10:u14:within, +6:u21:op, +7:u22:opt, +8:u23:opti, +7:u32:nal, +8:u33:onal, +13:u01:mandatory, +12:u03:optional, +10:u04:fields, +10:u05:within, +9:u06:those, +19:u09:optional/fields, +17:u0A:fields/within, +16:u0B:within/those, +16:u0C:and/optional, +12:u0D:fields/0, +12:u11:optional, +10:u12:fields, +10:u13:within, +9:u14:those, +6:u21:fi, +7:u22:fie, +8:u23:fiel, +7:u32:lds, +8:u33:elds, +13:u00:mandatory, +12:u02:optional, +10:u03:fields, +10:u04:within, +9:u05:those, +17:u09:fields/within, +16:u0A:within/those, +18:u0B:those/messages, +19:u0C:optional/fields, +12:u0D:within/0, +12:u10:optional, +10:u11:fields, +10:u12:within, +9:u13:those, +7:u32:hin, +8:u33:thin, +12:u01:optional, +10:u02:fields, +10:u03:within, +9:u04:those, +9:u08:their, +16:u09:within/those, +18:u0A:those/messages, +16:u0B:messages/and, +17:u0C:fields/within, +11:u0D:those/0, +10:u10:fields, +10:u11:within, +9:u12:those, +7:u22:tho, +8:u23:thos, +7:u32:ose, +8:u33:hose, +12:u00:optional, +10:u01:fields, +10:u02:within, +9:u03:those, +9:u07:their, +12:u08:behavior, +18:u09:those/messages, +16:u0A:messages/and, +17:u0B:and/describes, +16:u0C:within/those, +10:u10:within, +9:u11:those, +10:u00:fields, +10:u01:within, +9:u02:those, +9:u06:their, +12:u07:behavior, +16:u09:messages/and, +17:u0A:and/describes, +19:u0B:describes/their, +18:u0C:those/messages, +9:u10:those, +9:u14:their, +10:u00:within, +9:u01:those, +9:u05:their, +12:u06:behavior, +18:u08:interpretation, +17:u09:and/describes, +19:u0A:describes/their, +18:u0B:their/behavior, +16:u0C:messages/and, +9:u13:their, +12:u14:behavior, +9:u00:those, +9:u04:their, +12:u05:behavior, +18:u07:interpretation, +19:u09:describes/their, +18:u0A:their/behavior, +16:u0B:behavior/and, +17:u0C:and/describes, +11:u0D:their/0, +9:u12:their, +12:u13:behavior, +8:u23:thei, +6:u31:ir, +7:u32:eir, +8:u33:heir, +9:u03:their, +12:u04:behavior, +18:u06:interpretation, +18:u09:their/behavior, +16:u0A:behavior/and, +22:u0B:and/interpretation, +19:u0C:describes/their, +14:u0D:behavior/0, +9:u11:their, +12:u12:behavior, +18:u14:interpretation, +7:u22:beh, +8:u23:beha, +7:u32:ior, +8:u33:vior, +9:u02:their, +12:u03:behavior, +18:u05:interpretation, +16:u09:behavior/and, +22:u0A:and/interpretation, +20:u0B:interpretation/., +18:u0C:their/behavior, +9:u10:their, +12:u11:behavior, +18:u13:interpretation, +9:u01:their, +12:u02:behavior, +18:u04:interpretation, +22:u09:and/interpretation, +20:u0A:interpretation/., +16:u0C:behavior/and, +20:u0D:interpretation/0, +12:u10:behavior, +18:u12:interpretation, +7:u22:int, +8:u23:inte, +9:u00:their, +12:u01:behavior, +18:u03:interpretation, +20:u09:interpretation/., +21:u0B:This/architecture, +22:u0C:and/interpretation, +18:u11:interpretation, +12:u00:behavior, +18:u02:interpretation, +21:u0A:This/architecture, +20:u0C:interpretation/., +18:u10:interpretation, +18:u01:interpretation, +21:u09:This/architecture, +16:u0B:and/protocol, +18:u00:interpretation, +16:u0A:and/protocol, +21:u0C:This/architecture, +16:u09:and/protocol, +20:u0B:specification/is, +20:u0A:specification/is, +18:u0B:is/independent, +16:u0C:and/protocol, +12:u08:specific, +20:u09:specification/is, +18:u0A:is/independent, +18:u0B:independent/of, +12:u07:specific, +8:u08:wire, +18:u09:is/independent, +18:u0A:independent/of, +8:u0B:of/a, +20:u0C:specification/is, +17:u0D:independent/0, +12:u06:specific, +8:u07:wire, +18:u09:independent/of, +8:u0A:of/a, +14:u0B:a/specific, +18:u0C:is/independent, +12:u14:specific, +12:u05:specific, +8:u06:wire, +8:u09:of/a, +14:u0A:a/specific, +17:u0B:specific/wire, +18:u0C:independent/of, +12:u13:specific, +8:u14:wire, +12:u04:specific, +8:u05:wire, +14:u09:a/specific, +17:u0A:specific/wire, +17:u0B:wire/encoding, +8:u0C:of/a, +14:u0D:specific/0, +12:u12:specific, +8:u13:wire, +7:u32:fic, +8:u33:ific, +12:u03:specific, +8:u04:wire, +17:u09:specific/wire, +17:u0A:wire/encoding, +14:u0B:encoding/., +14:u0C:a/specific, +10:u0D:wire/0, +12:u11:specific, +8:u12:wire, +7:u22:wir, +8:u23:wire, +7:u32:ire, +8:u33:wire, +12:u02:specific, +8:u03:wire, +8:u08:also, +17:u09:wire/encoding, +14:u0A:encoding/., +17:u0C:specific/wire, +12:u10:specific, +8:u11:wire, +12:u01:specific, +8:u02:wire, +8:u07:also, +14:u09:encoding/., +16:u0B:The/protocol, +17:u0C:wire/encoding, +8:u10:wire, +12:u00:specific, +8:u01:wire, +8:u06:also, +16:u0A:The/protocol, +17:u0B:protocol/also, +14:u0C:encoding/., +8:u14:also, +8:u00:wire, +8:u05:also, +11:u08:control, +16:u09:The/protocol, +17:u0A:protocol/also, +13:u0B:also/uses, +8:u13:also, +8:u04:also, +11:u07:control, +17:u09:protocol/also, +13:u0A:also/uses, +16:u0C:The/protocol, +10:u0D:also/0, +8:u12:also, +7:u22:als, +8:u23:also, +6:u31:so, +7:u32:lso, +8:u33:also, +8:u03:also, +11:u06:control, +10:u08:called, +13:u09:also/uses, +13:u0B:a/control, +17:u0C:protocol/also, +8:u11:also, +11:u14:control, +8:u02:also, +11:u05:control, +10:u07:called, +13:u0A:a/control, +19:u0B:control/message, +13:u0C:also/uses, +8:u10:also, +11:u13:control, +8:u01:also, +11:u04:control, +10:u06:called, +12:u08:Interest, +13:u09:a/control, +19:u0A:control/message, +18:u0B:message/called, +13:u0D:control/0, +11:u12:control, +10:u14:called, +8:u23:cont, +7:u32:rol, +8:u33:trol, +8:u00:also, +11:u03:control, +10:u05:called, +12:u07:Interest, +10:u08:Return, +19:u09:control/message, +18:u0A:message/called, +13:u0B:called/an, +13:u0C:a/control, +11:u11:control, +10:u13:called, +11:u02:control, +10:u04:called, +12:u06:Interest, +10:u07:Return, +18:u09:message/called, +13:u0A:called/an, +15:u0B:an/Interest, +19:u0C:control/message, +12:u0D:called/0, +11:u10:control, +10:u12:called, +12:u14:interest, +7:u22:cal, +8:u23:call, +7:u32:led, +8:u33:lled, +11:u01:control, +10:u03:called, +12:u05:Interest, +10:u06:Return, +11:u08:whereby, +13:u09:called/an, +15:u0A:an/Interest, +19:u0B:Interest/Return, +18:u0C:message/called, +10:u11:called, +12:u13:interest, +10:u14:return, +11:u00:control, +10:u02:called, +12:u04:Interest, +10:u05:Return, +11:u07:whereby, +7:u08:one, +15:u09:an/Interest, +19:u0A:Interest/Return, +12:u0B:Return/,, +13:u0C:called/an, +14:u0D:Interest/0, +10:u10:called, +12:u12:interest, +10:u13:return, +8:u33:rest, +10:u01:called, +12:u03:Interest, +10:u04:Return, +11:u06:whereby, +7:u07:one, +10:u08:system, +19:u09:Interest/Return, +12:u0A:Return/,, +13:u0B:,/whereby, +15:u0C:an/Interest, +12:u0D:Return/0, +12:u11:interest, +10:u12:return, +11:u14:whereby, +7:u22:Ret, +8:u23:Retu, +6:u31:rn, +7:u32:urn, +8:u33:turn, +10:u00:called, +12:u02:Interest, +10:u03:Return, +11:u05:whereby, +7:u06:one, +10:u07:system, +7:u08:can, +12:u09:Return/,, +13:u0A:,/whereby, +15:u0B:whereby/one, +19:u0C:Interest/Return, +12:u10:interest, +10:u11:return, +11:u13:whereby, +7:u14:one, +12:u01:Interest, +10:u02:Return, +11:u04:whereby, +7:u05:one, +10:u06:system, +7:u07:can, +10:u08:return, +13:u09:,/whereby, +15:u0A:whereby/one, +14:u0B:one/system, +12:u0C:Return/,, +13:u0D:whereby/0, +10:u10:return, +11:u12:whereby, +7:u13:one, +10:u14:system, +7:u22:whe, +8:u23:wher, +7:u32:eby, +8:u33:reby, +12:u00:Interest, +10:u01:Return, +11:u03:whereby, +7:u04:one, +10:u05:system, +7:u06:can, +10:u07:return, +15:u09:whereby/one, +14:u0A:one/system, +14:u0B:system/can, +13:u0C:,/whereby, +9:u0D:one/0, +11:u11:whereby, +7:u12:one, +10:u13:system, +7:u14:can, +7:u22:one, +7:u23:one, +7:u33:one, +10:u00:Return, +11:u02:whereby, +7:u03:one, +10:u04:system, +7:u05:can, +10:u06:return, +14:u09:one/system, +14:u0A:system/can, +14:u0B:can/return, +15:u0C:whereby/one, +12:u0D:system/0, +11:u10:whereby, +7:u11:one, +10:u12:system, +7:u13:can, +6:u21:sy, +7:u22:sys, +8:u23:syst, +5:u30:m, +6:u31:em, +7:u32:tem, +8:u33:stem, +11:u01:whereby, +7:u02:one, +10:u03:system, +7:u04:can, +10:u05:return, +14:u09:system/can, +14:u0A:can/return, +13:u0B:return/an, +14:u0C:one/system, +9:u0D:can/0, +7:u10:one, +10:u11:system, +7:u12:can, +7:u23:can, +7:u32:can, +7:u33:can, +11:u00:whereby, +7:u01:one, +10:u02:system, +7:u03:can, +10:u04:return, +14:u09:can/return, +13:u0A:return/an, +14:u0C:system/can, +12:u0D:return/0, +10:u10:system, +7:u11:can, +7:u22:ret, +8:u23:retu, +7:u00:one, +10:u01:system, +7:u02:can, +10:u03:return, +13:u09:return/an, +20:u0B:Interest/message, +14:u0C:can/return, +7:u10:can, +10:u00:system, +7:u01:can, +10:u02:return, +12:u08:previous, +20:u0A:Interest/message, +14:u0B:message/to, +13:u0C:return/an, +7:u00:can, +10:u01:return, +12:u07:previous, +7:u08:hop, +20:u09:Interest/message, +14:u0A:message/to, +10:u0B:to/the, +10:u00:return, +12:u06:previous, +7:u07:hop, +7:u08:due, +14:u09:message/to, +10:u0A:to/the, +16:u0B:the/previous, +20:u0C:Interest/message, +12:u14:previous, +12:u05:previous, +7:u06:hop, +7:u07:due, +10:u09:to/the, +16:u0A:the/previous, +16:u0B:previous/hop, +14:u0C:message/to, +12:u13:previous, +7:u14:hop, +12:u04:previous, +7:u05:hop, +7:u06:due, +16:u09:the/previous, +16:u0A:previous/hop, +11:u0B:hop/due, +10:u0C:to/the, +14:u0D:previous/0, +12:u12:previous, +7:u13:hop, +7:u14:due, +8:u23:prev, +7:u32:ous, +8:u33:ious, +12:u03:previous, +7:u04:hop, +7:u05:due, +9:u08:error, +16:u09:previous/hop, +11:u0A:hop/due, +10:u0B:due/to, +16:u0C:the/previous, +9:u0D:hop/0, +12:u11:previous, +7:u12:hop, +7:u13:due, +7:u22:hop, +7:u23:hop, +6:u31:op, +7:u32:hop, +7:u33:hop, +12:u02:previous, +7:u03:hop, +7:u04:due, +9:u07:error, +13:u08:condition, +11:u09:hop/due, +10:u0A:due/to, +9:u0B:to/an, +16:u0C:previous/hop, +9:u0D:due/0, +12:u10:previous, +7:u11:hop, +7:u12:due, +6:u21:du, +7:u22:due, +7:u23:due, +7:u32:due, +7:u33:due, +12:u01:previous, +7:u02:hop, +7:u03:due, +9:u06:error, +13:u07:condition, +10:u09:due/to, +9:u0A:to/an, +12:u0B:an/error, +11:u0C:hop/due, +7:u10:hop, +7:u11:due, +9:u14:error, +12:u00:previous, +7:u01:hop, +7:u02:due, +9:u05:error, +13:u06:condition, +9:u09:to/an, +12:u0A:an/error, +19:u0B:error/condition, +10:u0C:due/to, +7:u10:due, +9:u13:error, +13:u14:condition, +7:u00:hop, +7:u01:due, +9:u04:error, +13:u05:condition, +13:u08:indicates, +12:u09:an/error, +19:u0A:error/condition, +15:u0B:condition/., +9:u0C:to/an, +11:u0D:error/0, +9:u12:error, +13:u13:condition, +8:u23:erro, +7:u32:ror, +8:u33:rror, +7:u00:due, +9:u03:error, +13:u04:condition, +13:u07:indicates, +19:u09:error/condition, +15:u0A:condition/., +12:u0C:an/error, +15:u0D:condition/0, +9:u11:error, +13:u12:condition, +8:u23:cond, +9:u02:error, +13:u03:condition, +13:u06:indicates, +15:u09:condition/., +18:u0B:This/indicates, +19:u0C:error/condition, +9:u10:error, +13:u11:condition, +13:u14:indicates, +9:u01:error, +13:u02:condition, +13:u05:indicates, +18:u0A:This/indicates, +16:u0B:indicates/to, +15:u0C:condition/., +13:u10:condition, +13:u13:indicates, +9:u00:error, +13:u01:condition, +13:u04:indicates, +18:u09:This/indicates, +16:u0A:indicates/to, +15:u0D:indicates/0, +13:u12:indicates, +8:u23:indi, +13:u00:condition, +13:u03:indicates, +16:u09:indicates/to, +18:u0C:This/indicates, +13:u11:indicates, +13:u02:indicates, +16:u0C:indicates/to, +13:u10:indicates, +13:u01:indicates, +12:u0B:hop/that, +13:u00:indicates, +12:u0A:hop/that, +12:u0B:that/the, +8:u08:will, +12:u09:hop/that, +12:u0A:that/the, +8:u07:will, +12:u09:that/the, +18:u0B:current/system, +12:u0C:hop/that, +8:u06:will, +11:u08:respond, +18:u0A:current/system, +15:u0B:system/will, +12:u0C:that/the, +8:u14:will, +8:u05:will, +11:u07:respond, +18:u09:current/system, +15:u0A:system/will, +12:u0B:will/not, +8:u13:will, +8:u04:will, +11:u06:respond, +15:u09:system/will, +12:u0A:will/not, +15:u0B:not/respond, +18:u0C:current/system, +10:u0D:will/0, +8:u12:will, +11:u14:respond, +7:u22:wil, +8:u23:will, +7:u32:ill, +8:u33:will, +8:u03:will, +11:u05:respond, +12:u09:will/not, +15:u0A:not/respond, +14:u0B:respond/to, +15:u0C:system/will, +8:u11:will, +11:u13:respond, +8:u02:will, +11:u04:respond, +15:u09:not/respond, +14:u0A:respond/to, +12:u0C:will/not, +13:u0D:respond/0, +8:u10:will, +11:u12:respond, +7:u32:ond, +8:u33:pond, +8:u01:will, +11:u03:respond, +14:u09:respond/to, +16:u0B:the/Interest, +15:u0C:not/respond, +11:u11:respond, +8:u00:will, +11:u02:respond, +16:u0A:the/Interest, +14:u0B:Interest/., +14:u0C:respond/to, +11:u10:respond, +11:u01:respond, +16:u09:the/Interest, +14:u0A:Interest/., +11:u00:respond, +14:u09:Interest/., +16:u0C:the/Interest, +14:u0C:Interest/., +11:u0B:Group/(, +11:u0A:Group/(, +11:u09:Group/(, +11:u0C:Group/(, +7:u08:Two, +7:u07:Two, +18:u0B:participants/., +7:u06:Two, +18:u0A:participants/., +9:u0B:./Two, +7:u05:Two, +18:u09:participants/., +9:u0A:./Two, +12:u0B:Two/full, +7:u04:Two, +9:u09:./Two, +12:u0A:Two/full, +18:u0C:participants/., +9:u0D:Two/0, +6:u21:Tw, +7:u22:Two, +7:u23:Two, +7:u32:Two, +7:u33:Two, +7:u03:Two, +12:u09:Two/full, +23:u0B:implementations/are, +9:u0C:./Two, +7:u02:Two, +23:u0A:implementations/are, +10:u0B:are/in, +12:u0C:Two/full, +7:u01:Two, +23:u09:implementations/are, +10:u0A:are/in, +7:u00:Two, +10:u09:are/in, +23:u0C:implementations/are, +11:u0B:use/and, +10:u0C:are/in, +11:u0A:use/and, +12:u0B:and/have, +11:u09:use/and, +12:u0A:and/have, +12:u09:and/have, +11:u0C:use/and, +12:u0C:and/have, +12:u0B:RFC/8569, +12:u0A:RFC/8569, +13:u0B:8569/CCNx, +12:u09:RFC/8569, +13:u0A:8569/CCNx, +13:u09:8569/CCNx, +18:u0B:Semantics/July, +12:u0C:RFC/8569, +18:u0A:Semantics/July, +13:u0C:8569/CCNx, +18:u09:Semantics/July, +15:u0B:2019/Status, +15:u0A:2019/Status, +18:u0C:Semantics/July, +15:u09:2019/Status, +15:u0C:2019/Status, +11:u08:rfc8569, +11:u07:rfc8569, +11:u06:rfc8569, +13:u0B://rfc8569, +11:u14:rfc8569, +11:u05:rfc8569, +13:u0A://rfc8569, +13:u0B:rfc8569/., +11:u13:rfc8569, +11:u04:rfc8569, +13:u09://rfc8569, +13:u0A:rfc8569/., +15:u0B:./Copyright, +13:u0D:rfc8569/0, +11:u12:rfc8569, +11:u03:rfc8569, +13:u09:rfc8569/., +15:u0A:./Copyright, +13:u0C://rfc8569, +11:u11:rfc8569, +11:u02:rfc8569, +15:u09:./Copyright, +13:u0C:rfc8569/., +11:u10:rfc8569, +11:u01:rfc8569, +15:u0C:./Copyright, +11:u00:rfc8569, +10:u0B:Page/2, +10:u0A:Page/2, +7:u0B:2/], +10:u09:Page/2, +7:u0A:2/], +7:u09:2/], +10:u0C:Page/2, +7:u0C:2/], +8:u08:Marc, +8:u07:Marc, +8:u06:Marc, +13:u0B:2019/Marc, +8:u14:marc, +8:u05:Marc, +13:u0A:2019/Marc, +14:u0B:Marc/Mosko, +8:u13:marc, +8:u04:Marc, +13:u09:2019/Marc, +14:u0A:Marc/Mosko, +14:u0B:Mosko/PARC, +10:u0D:Marc/0, +8:u12:marc, +6:u21:Ma, +7:u22:Mar, +8:u23:Marc, +8:u33:Marc, +8:u03:Marc, +14:u09:Marc/Mosko, +14:u0A:Mosko/PARC, +13:u0C:2019/Marc, +8:u11:marc, +8:u02:Marc, +8:u08:Palo, +14:u09:Mosko/PARC, +14:u0C:Marc/Mosko, +8:u10:marc, +8:u01:Marc, +8:u07:Palo, +8:u08:Alto, +14:u0C:Mosko/PARC, +8:u00:Marc, +8:u06:Palo, +8:u07:Alto, +10:u0B:./Palo, +8:u14:palo, +8:u05:Palo, +8:u06:Alto, +10:u0A:./Palo, +13:u0B:Palo/Alto, +8:u13:palo, +8:u14:alto, +8:u04:Palo, +8:u05:Alto, +9:u08:94304, +10:u09:./Palo, +13:u0A:Palo/Alto, +10:u0B:Alto/,, +10:u0D:Palo/0, +8:u12:palo, +8:u13:alto, +7:u22:Pal, +8:u23:Palo, +6:u31:lo, +7:u32:alo, +8:u33:Palo, +8:u03:Palo, +8:u04:Alto, +9:u07:94304, +10:u08:United, +13:u09:Palo/Alto, +10:u0A:Alto/,, +16:u0B:,/California, +10:u0C:./Palo, +10:u0D:Alto/0, +8:u11:palo, +8:u12:alto, +7:u22:Alt, +8:u23:Alto, +7:u32:lto, +8:u33:Alto, +8:u02:Palo, +8:u03:Alto, +9:u06:94304, +10:u07:United, +10:u08:States, +10:u09:Alto/,, +16:u0A:,/California, +20:u0B:California/94304, +13:u0C:Palo/Alto, +8:u10:palo, +8:u11:alto, +9:u14:94304, +8:u01:Palo, +8:u02:Alto, +9:u05:94304, +10:u06:United, +10:u07:States, +16:u09:,/California, +20:u0A:California/94304, +16:u0B:94304/United, +10:u0C:Alto/,, +8:u10:alto, +9:u13:94304, +10:u14:united, +8:u00:Palo, +8:u01:Alto, +9:u04:94304, +10:u05:United, +10:u06:States, +20:u09:California/94304, +16:u0A:94304/United, +17:u0B:United/States, +16:u0C:,/California, +11:u0D:94304/0, +9:u12:94304, +10:u13:united, +10:u14:states, +5:u20:9, +6:u21:94, +7:u22:943, +8:u23:9430, +5:u30:4, +6:u31:04, +7:u32:304, +8:u33:4304, +8:u00:Alto, +9:u03:94304, +10:u04:United, +10:u05:States, +16:u09:94304/United, +17:u0A:United/States, +13:u0B:States/of, +20:u0C:California/94304, +12:u0D:United/0, +9:u11:94304, +10:u12:united, +10:u13:states, +8:u23:Unit, +8:u33:ited, +9:u02:94304, +10:u03:United, +10:u04:States, +17:u09:United/States, +13:u0A:States/of, +16:u0C:94304/United, +12:u0D:States/0, +9:u10:94304, +10:u11:united, +10:u12:states, +9:u01:94304, +10:u02:United, +10:u03:States, +13:u09:States/of, +17:u0C:United/States, +10:u10:united, +10:u11:states, +9:u00:94304, +10:u01:United, +10:u02:States, +13:u0C:States/of, +10:u10:states, +10:u00:United, +10:u01:States, +10:u00:States, +8:u08:4405, +8:u07:4405, +8:u06:4405, +10:u0B:-/4405, +8:u14:4405, +8:u05:4405, +8:u08:marc, +10:u0A:-/4405, +14:u0B:4405/Email, +8:u13:4405, +8:u04:4405, +8:u07:marc, +10:u09:-/4405, +14:u0A:4405/Email, +10:u0D:4405/1, +8:u12:4405, +5:u20:4, +6:u21:44, +7:u22:440, +8:u23:4405, +5:u30:5, +6:u31:05, +7:u32:405, +8:u33:4405, +8:u03:4405, +8:u06:marc, +14:u08:mosko@parc, +14:u09:4405/Email, +10:u0B::/marc, +10:u0C:-/4405, +11:u0D:Email/0, +8:u11:4405, +8:u02:4405, +8:u05:marc, +14:u07:mosko@parc, +10:u0A::/marc, +10:u0B:marc/., +14:u0C:4405/Email, +8:u10:4405, +8:u01:4405, +8:u04:marc, +14:u06:mosko@parc, +7:u08:com, +10:u09::/marc, +10:u0A:marc/., +16:u0B:./mosko@parc, +10:u0D:marc/0, +14:u14:mosko@parc, +7:u22:mar, +8:u23:marc, +8:u33:marc, +8:u00:4405, +8:u03:marc, +14:u05:mosko@parc, +7:u07:com, +11:u08:Ignacio, +10:u09:marc/., +16:u0A:./mosko@parc, +16:u0B:mosko@parc/., +10:u0C::/marc, +14:u13:mosko@parc, +8:u02:marc, +14:u04:mosko@parc, +7:u06:com, +11:u07:Ignacio, +16:u09:./mosko@parc, +16:u0A:mosko@parc/., +9:u0B:./com, +10:u0C:marc/., +16:u0D:mosko@parc/0, +14:u12:mosko@parc, +7:u14:com, +6:u21:mo, +7:u22:mos, +8:u23:mosk, +8:u01:marc, +14:u03:mosko@parc, +7:u05:com, +11:u06:Ignacio, +16:u09:mosko@parc/., +9:u0A:./com, +15:u0B:com/Ignacio, +16:u0C:./mosko@parc, +14:u11:mosko@parc, +7:u13:com, +11:u14:ignacio, +8:u00:marc, +14:u02:mosko@parc, +7:u04:com, +11:u05:Ignacio, +12:u08:Mountain, +9:u09:./com, +15:u0A:com/Ignacio, +17:u0B:Ignacio/Solis, +16:u0C:mosko@parc/., +9:u0D:com/0, +14:u10:mosko@parc, +7:u12:com, +11:u13:ignacio, +7:u23:com, +6:u31:om, +7:u32:com, +7:u33:com, +14:u01:mosko@parc, +7:u03:com, +11:u04:Ignacio, +12:u07:Mountain, +8:u08:View, +15:u09:com/Ignacio, +17:u0A:Ignacio/Solis, +18:u0B:Solis/LinkedIn, +9:u0C:./com, +13:u0D:Ignacio/0, +7:u11:com, +11:u12:ignacio, +6:u21:Ig, +7:u22:Ign, +8:u23:Igna, +6:u31:io, +7:u32:cio, +8:u33:acio, +14:u00:mosko@parc, +7:u02:com, +11:u03:Ignacio, +12:u06:Mountain, +8:u07:View, +17:u09:Ignacio/Solis, +18:u0A:Solis/LinkedIn, +21:u0B:LinkedIn/Mountain, +15:u0C:com/Ignacio, +7:u10:com, +11:u11:ignacio, +12:u14:mountain, +7:u01:com, +11:u02:Ignacio, +12:u05:Mountain, +8:u06:View, +18:u09:Solis/LinkedIn, +21:u0A:LinkedIn/Mountain, +17:u0B:Mountain/View, +17:u0C:Ignacio/Solis, +11:u10:ignacio, +12:u13:mountain, +8:u14:view, +7:u00:com, +11:u01:Ignacio, +12:u04:Mountain, +8:u05:View, +9:u08:94043, +21:u09:LinkedIn/Mountain, +17:u0A:Mountain/View, +10:u0B:View/,, +18:u0C:Solis/LinkedIn, +14:u0D:Mountain/0, +12:u12:mountain, +8:u13:view, +7:u22:Mou, +8:u23:Moun, +7:u32:ain, +8:u33:tain, +11:u00:Ignacio, +12:u03:Mountain, +8:u04:View, +9:u07:94043, +17:u09:Mountain/View, +10:u0A:View/,, +21:u0C:LinkedIn/Mountain, +10:u0D:View/0, +12:u11:mountain, +8:u12:view, +5:u20:V, +6:u21:Vi, +7:u22:Vie, +8:u23:View, +8:u33:View, +12:u02:Mountain, +8:u03:View, +9:u06:94043, +10:u09:View/,, +20:u0B:California/94043, +17:u0C:Mountain/View, +12:u10:mountain, +8:u11:view, +9:u14:94043, +12:u01:Mountain, +8:u02:View, +9:u05:94043, +20:u0A:California/94043, +16:u0B:94043/United, +10:u0C:View/,, +8:u10:view, +9:u13:94043, +12:u00:Mountain, +8:u01:View, +9:u04:94043, +20:u09:California/94043, +16:u0A:94043/United, +11:u0D:94043/0, +9:u12:94043, +7:u22:940, +8:u23:9404, +5:u30:3, +6:u31:43, +7:u32:043, +8:u33:4043, +8:u00:View, +9:u03:94043, +16:u09:94043/United, +20:u0C:California/94043, +9:u11:94043, +9:u02:94043, +16:u0C:94043/United, +9:u10:94043, +9:u01:94043, +19:u08:nsolis@linkedin, +17:u0B:America/Email, +9:u00:94043, +19:u07:nsolis@linkedin, +17:u0A:America/Email, +19:u06:nsolis@linkedin, +17:u09:America/Email, +21:u0B::/nsolis@linkedin, +19:u14:nsolis@linkedin, +19:u05:nsolis@linkedin, +15:u08:Christopher, +21:u0A::/nsolis@linkedin, +21:u0B:nsolis@linkedin/., +17:u0C:America/Email, +19:u13:nsolis@linkedin, +19:u04:nsolis@linkedin, +15:u07:Christopher, +5:u08:A, +21:u09::/nsolis@linkedin, +21:u0A:nsolis@linkedin/., +21:u0D:nsolis@linkedin/0, +19:u12:nsolis@linkedin, +6:u21:ns, +7:u22:nso, +8:u23:nsol, +7:u32:din, +8:u33:edin, +19:u03:nsolis@linkedin, +15:u06:Christopher, +5:u07:A, +21:u09:nsolis@linkedin/., +19:u0B:com/Christopher, +21:u0C::/nsolis@linkedin, +19:u11:nsolis@linkedin, +15:u14:christopher, +19:u02:nsolis@linkedin, +15:u05:Christopher, +5:u06:A, +19:u0A:com/Christopher, +17:u0B:Christopher/A, +21:u0C:nsolis@linkedin/., +19:u10:nsolis@linkedin, +15:u13:christopher, +19:u01:nsolis@linkedin, +15:u04:Christopher, +5:u05:A, +19:u09:com/Christopher, +17:u0A:Christopher/A, +7:u0B:A/., +17:u0D:Christopher/0, +15:u12:christopher, +6:u21:Ch, +7:u22:Chr, +8:u23:Chri, +7:u32:her, +8:u33:pher, +19:u00:nsolis@linkedin, +15:u03:Christopher, +5:u04:A, +17:u09:Christopher/A, +7:u0A:A/., +19:u0C:com/Christopher, +7:u0D:A/0, +15:u11:christopher, +5:u21:A, +5:u22:A, +5:u23:A, +5:u30:A, +5:u31:A, +5:u32:A, +5:u33:A, +15:u02:Christopher, +5:u03:A, +7:u09:A/., +17:u0C:Christopher/A, +15:u10:christopher, +15:u01:Christopher, +5:u02:A, +7:u0C:A/., +15:u00:Christopher, +5:u01:A, +5:u00:A, +17:u0B:Irvine/Irvine, +9:u08:92697, +17:u0A:Irvine/Irvine, +12:u0B:Irvine/,, +9:u07:92697, +17:u09:Irvine/Irvine, +12:u0A:Irvine/,, +9:u06:92697, +12:u09:Irvine/,, +20:u0B:California/92697, +17:u0C:Irvine/Irvine, +9:u14:92697, +9:u05:92697, +20:u0A:California/92697, +16:u0B:92697/United, +12:u0C:Irvine/,, +9:u13:92697, +9:u04:92697, +20:u09:California/92697, +16:u0A:92697/United, +11:u0D:92697/0, +9:u12:92697, +6:u21:92, +7:u22:926, +8:u23:9269, +5:u30:7, +6:u31:97, +7:u32:697, +8:u33:2697, +9:u03:92697, +16:u09:92697/United, +20:u0C:California/92697, +9:u11:92697, +9:u02:92697, +16:u0C:92697/United, +9:u10:92697, +9:u01:92697, +9:u00:92697, +7:u08:315, +7:u07:315, +7:u06:315, +7:u08:806, +11:u0B:+01/315, +7:u14:315, +7:u05:315, +7:u07:806, +11:u0A:+01/315, +9:u0B:315/-, +7:u13:315, +7:u04:315, +7:u06:806, +8:u08:5939, +11:u09:+01/315, +9:u0A:315/-, +9:u0B:-/806, +9:u0D:315/0, +7:u12:315, +7:u14:806, +5:u20:3, +6:u21:31, +7:u22:315, +7:u23:315, +6:u31:15, +7:u32:315, +7:u33:315, +7:u03:315, +7:u05:806, +8:u07:5939, +9:u09:315/-, +9:u0A:-/806, +9:u0B:806/-, +11:u0C:+01/315, +7:u11:315, +7:u13:806, +7:u02:315, +7:u04:806, +8:u06:5939, +9:u09:-/806, +9:u0A:806/-, +10:u0B:-/5939, +9:u0C:315/-, +9:u0D:806/1, +7:u10:315, +7:u12:806, +8:u14:5939, +6:u21:80, +7:u22:806, +7:u23:806, +5:u30:6, +6:u31:06, +7:u32:806, +7:u33:806, +7:u01:315, +7:u03:806, +8:u05:5939, +14:u08:woodc1@uci, +9:u09:806/-, +10:u0A:-/5939, +14:u0B:5939/Email, +9:u0C:-/806, +7:u11:806, +8:u13:5939, +7:u00:315, +7:u02:806, +8:u04:5939, +14:u07:woodc1@uci, +10:u09:-/5939, +14:u0A:5939/Email, +9:u0C:806/-, +10:u0D:5939/1, +7:u10:806, +8:u12:5939, +5:u20:5, +6:u21:59, +7:u22:593, +8:u23:5939, +6:u31:39, +7:u32:939, +8:u33:5939, +7:u01:806, +8:u03:5939, +14:u06:woodc1@uci, +14:u09:5939/Email, +16:u0B::/woodc1@uci, +10:u0C:-/5939, +8:u11:5939, +14:u14:woodc1@uci, +7:u00:806, +8:u02:5939, +14:u05:woodc1@uci, +16:u0A::/woodc1@uci, +16:u0B:woodc1@uci/., +14:u0C:5939/Email, +8:u10:5939, +14:u13:woodc1@uci, +8:u01:5939, +14:u04:woodc1@uci, +16:u09::/woodc1@uci, +16:u0A:woodc1@uci/., +16:u0D:woodc1@uci/0, +14:u12:woodc1@uci, +6:u21:wo, +7:u22:woo, +8:u23:wood, +5:u30:i, +6:u31:ci, +7:u32:uci, +8:u33:@uci, +8:u00:5939, +14:u03:woodc1@uci, +16:u09:woodc1@uci/., +16:u0C::/woodc1@uci, +14:u11:woodc1@uci, +14:u02:woodc1@uci, +16:u0C:woodc1@uci/., +14:u10:woodc1@uci, +12:u06:20190810, +17:u0B:date/20190810, +12:u14:20190810, +12:u05:20190810, +17:u0A:date/20190810, +14:u0B:20190810/;, +12:u13:20190810, +12:u04:20190810, +17:u09:date/20190810, +14:u0A:20190810/;, +14:u0D:20190810/0, +12:u12:20190810, +7:u32:810, +8:u33:0810, +12:u03:20190810, +14:u09:20190810/;, +17:u0C:date/20190810, +12:u11:20190810, +12:u02:20190810, +12:u08:20190811, +14:u0C:20190810/;, +12:u10:20190810, +12:u01:20190810, +12:u07:20190811, +12:u00:20190810, +12:u06:20190811, +5:u08:D, +15:u0B:on/20190811, +12:u14:20190811, +12:u05:20190811, +5:u07:D, +15:u0A:on/20190811, +18:u0B:20190811/ICNRG, +12:u13:20190811, +12:u04:20190811, +5:u06:D, +8:u08:Oran, +15:u09:on/20190811, +18:u0A:20190811/ICNRG, +11:u0B:ICNRG/D, +14:u0D:20190811/0, +12:u12:20190811, +5:u14:d, +7:u32:811, +8:u33:0811, +12:u03:20190811, +5:u05:D, +8:u07:Oran, +18:u09:20190811/ICNRG, +11:u0A:ICNRG/D, +7:u0B:D/., +15:u0C:on/20190811, +12:u11:20190811, +5:u13:d, +12:u02:20190811, +5:u04:D, +8:u06:Oran, +11:u09:ICNRG/D, +7:u0A:D/., +10:u0B:./Oran, +18:u0C:20190811/ICNRG, +7:u0D:D/0, +12:u10:20190811, +5:u12:d, +8:u14:oran, +5:u21:D, +5:u22:D, +5:u23:D, +5:u30:D, +5:u31:D, +5:u32:D, +5:u33:D, +12:u01:20190811, +5:u03:D, +8:u05:Oran, +9:u08:Draft, +7:u09:D/., +10:u0A:./Oran, +17:u0B:Oran/Internet, +11:u0C:ICNRG/D, +5:u11:d, +8:u13:oran, +12:u00:20190811, +5:u02:D, +8:u04:Oran, +9:u07:Draft, +11:u08:Network, +10:u09:./Oran, +17:u0A:Oran/Internet, +7:u0C:D/., +10:u0D:Oran/0, +5:u10:d, +8:u12:oran, +6:u21:Or, +7:u22:Ora, +8:u23:Oran, +7:u32:ran, +8:u33:Oran, +5:u01:D, +8:u03:Oran, +9:u06:Draft, +11:u07:Network, +11:u08:Systems, +17:u09:Oran/Internet, +11:u0B:-/Draft, +10:u0C:./Oran, +8:u11:oran, +9:u14:draft, +5:u00:D, +8:u02:Oran, +9:u05:Draft, +11:u06:Network, +11:u07:Systems, +11:u0A:-/Draft, +17:u0B:Draft/Network, +17:u0C:Oran/Internet, +8:u10:oran, +9:u13:draft, +8:u01:Oran, +9:u04:Draft, +11:u05:Network, +11:u06:Systems, +11:u09:-/Draft, +17:u0A:Draft/Network, +19:u0B:Network/Systems, +11:u0D:Draft/1, +9:u12:draft, +11:u14:systems, +6:u21:Dr, +7:u22:Dra, +8:u23:Draf, +6:u31:ft, +7:u32:aft, +8:u33:raft, +8:u00:Oran, +9:u03:Draft, +11:u04:Network, +11:u05:Systems, +10:u08:Design, +17:u09:Draft/Network, +19:u0A:Network/Systems, +20:u0B:Systems/Research, +11:u0C:-/Draft, +13:u0D:Network/0, +9:u11:draft, +11:u13:systems, +9:u02:Draft, +11:u03:Network, +11:u04:Systems, +10:u07:Design, +12:u08:Intended, +19:u09:Network/Systems, +20:u0A:Systems/Research, +16:u0B:Research/and, +17:u0C:Draft/Network, +13:u0D:Systems/0, +9:u10:draft, +11:u12:systems, +6:u21:Sy, +7:u22:Sys, +8:u23:Syst, +6:u31:ms, +7:u32:ems, +8:u33:tems, +9:u01:Draft, +11:u02:Network, +11:u03:Systems, +10:u06:Design, +12:u07:Intended, +20:u09:Systems/Research, +16:u0A:Research/and, +14:u0B:and/Design, +19:u0C:Network/Systems, +11:u11:systems, +10:u14:design, +9:u00:Draft, +11:u01:Network, +11:u02:Systems, +10:u05:Design, +12:u06:Intended, +16:u09:Research/and, +14:u0A:and/Design, +19:u0B:Design/Intended, +20:u0C:Systems/Research, +11:u10:systems, +10:u13:design, +12:u14:intended, +11:u00:Network, +11:u01:Systems, +10:u04:Design, +12:u05:Intended, +14:u09:and/Design, +19:u0A:Design/Intended, +19:u0B:Intended/status, +16:u0C:Research/and, +12:u0D:Design/0, +10:u12:design, +12:u13:intended, +6:u21:De, +7:u22:Des, +8:u23:Desi, +6:u31:gn, +7:u32:ign, +8:u33:sign, +11:u00:Systems, +10:u03:Design, +12:u04:Intended, +10:u08:August, +19:u09:Design/Intended, +19:u0A:Intended/status, +12:u0B:status/:, +14:u0C:and/Design, +14:u0D:Intended/0, +10:u11:design, +12:u12:intended, +8:u33:nded, +10:u02:Design, +12:u03:Intended, +10:u07:August, +6:u08:10, +19:u09:Intended/status, +12:u0A:status/:, +19:u0C:Design/Intended, +10:u10:design, +12:u11:intended, +10:u01:Design, +12:u02:Intended, +10:u06:August, +6:u07:10, +12:u09:status/:, +23:u0B:Experimental/August, +19:u0C:Intended/status, +12:u10:intended, +10:u14:august, +10:u00:Design, +12:u01:Intended, +10:u05:August, +6:u06:10, +23:u0A:Experimental/August, +13:u0B:August/10, +12:u0C:status/:, +10:u13:august, +6:u14:10, +12:u00:Intended, +10:u04:August, +6:u05:10, +11:u08:Expires, +23:u09:Experimental/August, +13:u0A:August/10, +8:u0B:10/,, +12:u0D:August/0, +10:u12:august, +6:u13:10, +6:u21:Au, +7:u22:Aug, +8:u23:Augu, +8:u33:gust, +10:u03:August, +6:u04:10, +11:u07:Expires, +13:u09:August/10, +8:u0A:10/,, +10:u0B:,/2019, +23:u0C:Experimental/August, +8:u0D:10/0, +10:u11:august, +6:u12:10, +6:u21:10, +6:u22:10, +6:u23:10, +6:u32:10, +6:u33:10, +10:u02:August, +6:u03:10, +11:u06:Expires, +12:u08:February, +8:u09:10/,, +10:u0A:,/2019, +16:u0B:2019/Expires, +13:u0C:August/10, +10:u10:august, +6:u11:10, +11:u14:expires, +10:u01:August, +6:u02:10, +11:u05:Expires, +12:u07:February, +6:u08:11, +10:u09:,/2019, +16:u0A:2019/Expires, +13:u0B:Expires/:, +8:u0C:10/,, +6:u10:10, +11:u13:expires, +10:u00:August, +6:u01:10, +11:u04:Expires, +12:u06:February, +6:u07:11, +16:u09:2019/Expires, +13:u0A:Expires/:, +14:u0B::/February, +10:u0C:,/2019, +13:u0D:Expires/0, +11:u12:expires, +12:u14:february, +8:u23:Expi, +7:u32:res, +8:u33:ires, +6:u00:10, +11:u03:Expires, +12:u05:February, +6:u06:11, +8:u08:2020, +13:u09:Expires/:, +14:u0A::/February, +15:u0B:February/11, +16:u0C:2019/Expires, +11:u11:expires, +12:u13:february, +6:u14:11, +11:u02:Expires, +12:u04:February, +6:u05:11, +8:u07:2020, +15:u08:Maintaining, +14:u09::/February, +15:u0A:February/11, +8:u0B:11/,, +13:u0C:Expires/:, +14:u0D:February/0, +11:u10:expires, +12:u12:february, +6:u13:11, +6:u21:Fe, +7:u22:Feb, +8:u23:Febr, +7:u32:ary, +8:u33:uary, +11:u01:Expires, +12:u03:February, +6:u04:11, +8:u06:2020, +15:u07:Maintaining, +15:u09:February/11, +8:u0A:11/,, +10:u0B:,/2020, +14:u0C::/February, +8:u0D:11/0, +12:u11:february, +6:u12:11, +8:u14:2020, +6:u21:11, +6:u22:11, +6:u23:11, +6:u32:11, +6:u33:11, +11:u00:Expires, +12:u02:February, +6:u03:11, +8:u05:2020, +15:u06:Maintaining, +6:u08:or, +8:u09:11/,, +10:u0A:,/2020, +20:u0B:2020/Maintaining, +15:u0C:February/11, +12:u10:february, +6:u11:11, +8:u13:2020, +15:u14:maintaining, +12:u01:February, +6:u02:11, +8:u04:2020, +15:u05:Maintaining, +6:u07:or, +7:u08:NDN, +10:u09:,/2020, +20:u0A:2020/Maintaining, +20:u0B:Maintaining/CCNx, +8:u0C:11/,, +10:u0D:2020/0, +6:u10:11, +8:u12:2020, +15:u13:maintaining, +7:u22:202, +8:u23:2020, +6:u31:20, +7:u32:020, +8:u33:2020, +12:u00:February, +6:u01:11, +8:u03:2020, +15:u04:Maintaining, +6:u06:or, +7:u07:NDN, +8:u08:flow, +20:u09:2020/Maintaining, +20:u0A:Maintaining/CCNx, +11:u0B:CCNx/or, +10:u0C:,/2020, +17:u0D:Maintaining/0, +8:u11:2020, +15:u12:maintaining, +6:u14:or, +7:u22:Mai, +8:u23:Main, +8:u33:ning, +6:u00:11, +8:u02:2020, +15:u03:Maintaining, +6:u05:or, +7:u06:NDN, +8:u07:flow, +11:u08:balance, +20:u09:Maintaining/CCNx, +11:u0A:CCNx/or, +10:u0B:or/NDN, +20:u0C:2020/Maintaining, +8:u10:2020, +15:u11:maintaining, +6:u13:or, +7:u14:ndn, +8:u01:2020, +15:u02:Maintaining, +6:u04:or, +7:u05:NDN, +8:u06:flow, +11:u07:balance, +11:u09:CCNx/or, +10:u0A:or/NDN, +12:u0B:NDN/flow, +20:u0C:Maintaining/CCNx, +8:u0D:or/0, +15:u10:maintaining, +6:u12:or, +7:u13:ndn, +8:u14:flow, +6:u22:or, +6:u23:or, +6:u32:or, +6:u33:or, +8:u00:2020, +15:u01:Maintaining, +6:u03:or, +7:u04:NDN, +8:u05:flow, +11:u06:balance, +10:u08:highly, +10:u09:or/NDN, +12:u0A:NDN/flow, +16:u0B:flow/balance, +11:u0C:CCNx/or, +9:u0D:NDN/0, +6:u11:or, +7:u12:ndn, +8:u13:flow, +11:u14:balance, +6:u21:ND, +7:u22:NDN, +7:u23:NDN, +6:u31:DN, +7:u32:NDN, +7:u33:NDN, +15:u00:Maintaining, +6:u02:or, +7:u03:NDN, +8:u04:flow, +11:u05:balance, +10:u07:highly, +12:u08:variable, +12:u09:NDN/flow, +16:u0A:flow/balance, +16:u0B:balance/with, +10:u0C:or/NDN, +10:u0D:flow/0, +6:u10:or, +7:u11:ndn, +8:u12:flow, +11:u13:balance, +6:u21:fl, +7:u22:flo, +8:u23:flow, +8:u33:flow, +6:u01:or, +7:u02:NDN, +8:u03:flow, +11:u04:balance, +10:u06:highly, +12:u07:variable, +8:u08:data, +16:u09:flow/balance, +16:u0A:balance/with, +15:u0B:with/highly, +12:u0C:NDN/flow, +13:u0D:balance/0, +7:u10:ndn, +8:u11:flow, +11:u12:balance, +10:u14:highly, +7:u22:bal, +8:u23:bala, +7:u32:nce, +8:u33:ance, +6:u00:or, +7:u01:NDN, +8:u02:flow, +11:u03:balance, +10:u05:highly, +12:u06:variable, +8:u07:data, +10:u08:object, +16:u09:balance/with, +15:u0A:with/highly, +19:u0B:highly/variable, +16:u0C:flow/balance, +8:u10:flow, +11:u11:balance, +10:u13:highly, +12:u14:variable, +7:u00:NDN, +8:u01:flow, +11:u02:balance, +10:u04:highly, +12:u05:variable, +8:u06:data, +10:u07:object, +9:u08:sizes, +15:u09:with/highly, +19:u0A:highly/variable, +17:u0B:variable/data, +16:u0C:balance/with, +12:u0D:highly/0, +11:u10:balance, +10:u12:highly, +12:u13:variable, +8:u14:data, +7:u22:hig, +8:u23:high, +7:u32:hly, +8:u33:ghly, +8:u00:flow, +11:u01:balance, +10:u03:highly, +12:u04:variable, +8:u05:data, +10:u06:object, +9:u07:sizes, +9:u08:draft, +19:u09:highly/variable, +17:u0A:variable/data, +15:u0B:data/object, +15:u0C:with/highly, +14:u0D:variable/0, +10:u11:highly, +12:u12:variable, +8:u13:data, +10:u14:object, +7:u22:var, +8:u23:vari, +11:u00:balance, +10:u02:highly, +12:u03:variable, +8:u04:data, +10:u05:object, +9:u06:sizes, +9:u07:draft, +17:u09:variable/data, +15:u0A:data/object, +16:u0B:object/sizes, +19:u0C:highly/variable, +10:u0D:data/0, +10:u10:highly, +12:u11:variable, +8:u12:data, +10:u13:object, +9:u14:sizes, +8:u23:data, +8:u33:data, +10:u01:highly, +12:u02:variable, +8:u03:data, +10:u04:object, +9:u05:sizes, +9:u06:draft, +8:u08:oran, +15:u09:data/object, +16:u0A:object/sizes, +15:u0B:sizes/draft, +17:u0C:variable/data, +12:u0D:object/0, +12:u10:variable, +8:u11:data, +10:u12:object, +9:u13:sizes, +7:u22:obj, +8:u23:obje, +10:u00:highly, +12:u01:variable, +8:u02:data, +10:u03:object, +9:u04:sizes, +9:u05:draft, +8:u07:oran, +16:u09:object/sizes, +15:u0A:sizes/draft, +11:u0B:draft/-, +15:u0C:data/object, +11:u0D:sizes/0, +8:u10:data, +10:u11:object, +9:u12:sizes, +6:u21:si, +7:u22:siz, +8:u23:size, +7:u32:zes, +8:u33:izes, +12:u00:variable, +8:u01:data, +10:u02:object, +9:u03:sizes, +9:u04:draft, +8:u06:oran, +9:u08:icnrg, +15:u09:sizes/draft, +11:u0A:draft/-, +10:u0B:-/oran, +16:u0C:object/sizes, +11:u0D:draft/0, +10:u10:object, +9:u11:sizes, +6:u21:dr, +7:u22:dra, +8:u23:draf, +8:u00:data, +10:u01:object, +9:u02:sizes, +9:u03:draft, +8:u05:oran, +9:u07:icnrg, +11:u09:draft/-, +10:u0A:-/oran, +10:u0B:oran/-, +15:u0C:sizes/draft, +9:u10:sizes, +10:u00:object, +9:u01:sizes, +9:u02:draft, +8:u04:oran, +9:u06:icnrg, +15:u08:flowbalance, +10:u09:-/oran, +10:u0A:oran/-, +11:u0B:-/icnrg, +11:u0C:draft/-, +10:u0D:oran/1, +7:u22:ora, +8:u23:oran, +8:u33:oran, +9:u00:sizes, +9:u01:draft, +8:u03:oran, +9:u05:icnrg, +15:u07:flowbalance, +10:u09:oran/-, +11:u0A:-/icnrg, +11:u0B:icnrg/-, +10:u0C:-/oran, +9:u00:draft, +8:u02:oran, +9:u04:icnrg, +15:u06:flowbalance, +6:u08:01, +11:u09:-/icnrg, +11:u0A:icnrg/-, +17:u0B:-/flowbalance, +10:u0C:oran/-, +11:u0D:icnrg/1, +15:u14:flowbalance, +6:u21:ic, +7:u22:icn, +8:u23:icnr, +7:u32:nrg, +8:u33:cnrg, +8:u01:oran, +9:u03:icnrg, +15:u05:flowbalance, +6:u07:01, +11:u09:icnrg/-, +17:u0A:-/flowbalance, +17:u0B:flowbalance/-, +11:u0C:-/icnrg, +15:u13:flowbalance, +8:u00:oran, +9:u02:icnrg, +15:u04:flowbalance, +6:u06:01, +10:u08:Deeply, +17:u09:-/flowbalance, +17:u0A:flowbalance/-, +8:u0B:-/01, +11:u0C:icnrg/-, +17:u0D:flowbalance/1, +15:u12:flowbalance, +6:u14:01, +9:u01:icnrg, +15:u03:flowbalance, +6:u05:01, +10:u07:Deeply, +12:u08:embedded, +17:u09:flowbalance/-, +8:u0A:-/01, +15:u0B:01/Abstract, +17:u0C:-/flowbalance, +15:u11:flowbalance, +6:u13:01, +9:u00:icnrg, +15:u02:flowbalance, +6:u04:01, +10:u06:Deeply, +12:u07:embedded, +8:u09:-/01, +15:u0A:01/Abstract, +19:u0B:Abstract/Deeply, +17:u0C:flowbalance/-, +8:u0D:01/1, +15:u10:flowbalance, +6:u12:01, +10:u14:deeply, +5:u20:0, +6:u21:01, +6:u22:01, +6:u23:01, +6:u32:01, +6:u33:01, +15:u01:flowbalance, +6:u03:01, +10:u05:Deeply, +12:u06:embedded, +8:u08:some, +15:u09:01/Abstract, +19:u0A:Abstract/Deeply, +19:u0B:Deeply/embedded, +8:u0C:-/01, +6:u11:01, +10:u13:deeply, +12:u14:embedded, +15:u00:flowbalance, +6:u02:01, +10:u04:Deeply, +12:u05:embedded, +8:u07:some, +7:u08:ICN, +19:u09:Abstract/Deeply, +19:u0A:Deeply/embedded, +15:u0B:embedded/in, +15:u0C:01/Abstract, +12:u0D:Deeply/0, +6:u10:01, +10:u12:deeply, +12:u13:embedded, +7:u22:Dee, +8:u23:Deep, +7:u32:ply, +8:u33:eply, +6:u01:01, +10:u03:Deeply, +12:u04:embedded, +8:u06:some, +7:u07:ICN, +17:u08:architectures, +19:u09:Deeply/embedded, +15:u0A:embedded/in, +11:u0B:in/some, +19:u0C:Abstract/Deeply, +14:u0D:embedded/0, +10:u11:deeply, +12:u12:embedded, +8:u14:some, +6:u21:em, +7:u22:emb, +8:u23:embe, +8:u33:dded, +6:u00:01, +10:u02:Deeply, +12:u03:embedded, +8:u05:some, +7:u06:ICN, +17:u07:architectures, +15:u09:embedded/in, +11:u0A:in/some, +12:u0B:some/ICN, +19:u0C:Deeply/embedded, +10:u10:deeply, +12:u11:embedded, +8:u13:some, +7:u14:icn, +10:u01:Deeply, +12:u02:embedded, +8:u04:some, +7:u05:ICN, +17:u06:architectures, +14:u08:especially, +11:u09:in/some, +12:u0A:some/ICN, +21:u0B:ICN/architectures, +15:u0C:embedded/in, +10:u0D:some/0, +12:u10:embedded, +8:u12:some, +7:u13:icn, +17:u14:architectures, +6:u21:so, +7:u22:som, +8:u23:some, +7:u32:ome, +8:u33:some, +10:u00:Deeply, +12:u01:embedded, +8:u03:some, +7:u04:ICN, +17:u05:architectures, +14:u07:especially, +9:u08:Named, +12:u09:some/ICN, +21:u0A:ICN/architectures, +19:u0B:architectures/,, +11:u0C:in/some, +9:u0D:ICN/0, +8:u11:some, +7:u12:icn, +17:u13:architectures, +7:u23:ICN, +6:u31:CN, +7:u32:ICN, +7:u33:ICN, +12:u00:embedded, +8:u02:some, +7:u03:ICN, +17:u04:architectures, +14:u06:especially, +9:u07:Named, +8:u08:Data, +21:u09:ICN/architectures, +19:u0A:architectures/,, +16:u0B:,/especially, +12:u0C:some/ICN, +19:u0D:architectures/0, +8:u10:some, +7:u11:icn, +17:u12:architectures, +14:u14:especially, +8:u33:ures, +8:u01:some, +7:u02:ICN, +17:u03:architectures, +14:u05:especially, +9:u06:Named, +8:u07:Data, +19:u09:architectures/,, +16:u0A:,/especially, +20:u0B:especially/Named, +21:u0C:ICN/architectures, +7:u10:icn, +17:u11:architectures, +14:u13:especially, +9:u14:named, +8:u00:some, +7:u01:ICN, +17:u02:architectures, +14:u04:especially, +9:u05:Named, +8:u06:Data, +16:u09:,/especially, +20:u0A:especially/Named, +14:u0B:Named/Data, +19:u0C:architectures/,, +16:u0D:especially/0, +17:u10:architectures, +14:u12:especially, +9:u13:named, +6:u21:es, +7:u22:esp, +8:u23:espe, +8:u33:ally, +7:u00:ICN, +17:u01:architectures, +14:u03:especially, +9:u04:Named, +8:u05:Data, +20:u09:especially/Named, +14:u0A:Named/Data, +19:u0B:Data/Networking, +16:u0C:,/especially, +11:u0D:Named/0, +14:u11:especially, +9:u12:named, +6:u21:Na, +7:u22:Nam, +8:u23:Name, +8:u33:amed, +17:u00:architectures, +14:u02:especially, +9:u03:Named, +8:u04:Data, +14:u09:Named/Data, +19:u0A:Data/Networking, +20:u0C:especially/Named, +10:u0D:Data/0, +14:u10:especially, +9:u11:named, +6:u21:Da, +7:u22:Dat, +8:u23:Data, +8:u33:Data, +14:u01:especially, +9:u02:Named, +8:u03:Data, +19:u09:Data/Networking, +9:u0B:(/NDN, +14:u0C:Named/Data, +9:u10:named, +14:u00:especially, +9:u01:Named, +8:u02:Data, +9:u0A:(/NDN, +9:u0B:NDN/), +19:u0C:Data/Networking, +9:u00:Named, +8:u01:Data, +9:u09:(/NDN, +9:u0A:NDN/), +9:u0B:)/and, +8:u00:Data, +9:u09:NDN/), +9:u0A:)/and, +9:u0C:(/NDN, +9:u09:)/and, +9:u0C:NDN/), +9:u0C:)/and, +10:u08:notion, +10:u07:notion, +10:u0B:is/the, +10:u06:notion, +10:u0A:is/the, +14:u0B:the/notion, +10:u14:notion, +10:u05:notion, +10:u09:is/the, +14:u0A:the/notion, +13:u0B:notion/of, +10:u13:notion, +10:u04:notion, +14:u09:the/notion, +13:u0A:notion/of, +11:u0B:of/flow, +10:u0C:is/the, +12:u0D:notion/0, +10:u12:notion, +8:u23:noti, +10:u03:notion, +13:u09:notion/of, +11:u0A:of/flow, +14:u0C:the/notion, +10:u11:notion, +10:u02:notion, +12:u08:captures, +11:u09:of/flow, +13:u0B:balance/., +13:u0C:notion/of, +10:u10:notion, +10:u01:notion, +12:u07:captures, +13:u0A:balance/., +11:u0C:of/flow, +10:u00:notion, +12:u06:captures, +8:u08:idea, +13:u09:balance/., +17:u0B:This/captures, +12:u14:captures, +12:u05:captures, +8:u07:idea, +17:u0A:This/captures, +16:u0B:captures/the, +13:u0C:balance/., +12:u13:captures, +12:u04:captures, +8:u06:idea, +9:u08:there, +17:u09:This/captures, +16:u0A:captures/the, +12:u0B:the/idea, +14:u0D:captures/0, +12:u12:captures, +8:u14:idea, +7:u22:cap, +8:u23:capt, +12:u03:captures, +8:u05:idea, +9:u07:there, +16:u09:captures/the, +12:u0A:the/idea, +13:u0B:idea/that, +17:u0C:This/captures, +12:u11:captures, +8:u13:idea, +12:u02:captures, +8:u04:idea, +9:u06:there, +12:u09:the/idea, +13:u0A:idea/that, +14:u0B:that/there, +16:u0C:captures/the, +10:u0D:idea/0, +12:u10:captures, +8:u12:idea, +9:u14:there, +8:u23:idea, +6:u31:ea, +7:u32:dea, +8:u33:idea, +12:u01:captures, +8:u03:idea, +9:u05:there, +13:u09:idea/that, +14:u0A:that/there, +12:u0B:there/is, +12:u0C:the/idea, +8:u11:idea, +9:u13:there, +12:u00:captures, +8:u02:idea, +9:u04:there, +14:u09:that/there, +12:u0A:there/is, +13:u0C:idea/that, +11:u0D:there/0, +8:u10:idea, +9:u12:there, +8:u23:ther, +7:u32:ere, +8:u33:here, +8:u01:idea, +9:u03:there, +12:u09:there/is, +9:u0B:a/one, +14:u0C:that/there, +9:u11:there, +8:u00:idea, +9:u02:there, +9:u0A:a/one, +9:u0B:one/-, +12:u0C:there/is, +9:u10:there, +9:u01:there, +9:u09:a/one, +9:u0A:one/-, +8:u0B:-/to, +9:u00:there, +18:u08:correspondence, +9:u09:one/-, +8:u0A:-/to, +8:u0B:to/-, +9:u0C:a/one, +18:u07:correspondence, +11:u08:between, +8:u09:-/to, +8:u0A:to/-, +9:u0B:-/one, +9:u0C:one/-, +8:u0D:to/1, +18:u06:correspondence, +11:u07:between, +8:u09:to/-, +9:u0A:-/one, +22:u0B:one/correspondence, +8:u0C:-/to, +18:u14:correspondence, +18:u05:correspondence, +11:u06:between, +9:u09:-/one, +22:u0A:one/correspondence, +26:u0B:correspondence/between, +8:u0C:to/-, +9:u0D:one/1, +18:u13:correspondence, +11:u14:between, +18:u04:correspondence, +11:u05:between, +22:u09:one/correspondence, +26:u0A:correspondence/between, +20:u0B:between/requests, +9:u0C:-/one, +20:u0D:correspondence/0, +18:u12:correspondence, +11:u13:between, +8:u23:corr, +8:u33:ence, +18:u03:correspondence, +11:u04:between, +26:u09:correspondence/between, +20:u0A:between/requests, +16:u0B:requests/for, +22:u0C:one/correspondence, +13:u0D:between/0, +18:u11:correspondence, +11:u12:between, +7:u22:bet, +8:u23:betw, +6:u31:en, +7:u32:een, +8:u33:ween, +18:u02:correspondence, +11:u03:between, +11:u08:carried, +20:u09:between/requests, +16:u0A:requests/for, +12:u0B:for/data, +26:u0C:correspondence/between, +18:u10:correspondence, +11:u11:between, +18:u01:correspondence, +11:u02:between, +11:u07:carried, +16:u09:requests/for, +12:u0A:for/data, +10:u0B:data/,, +20:u0C:between/requests, +11:u10:between, +18:u00:correspondence, +11:u01:between, +11:u06:carried, +12:u09:for/data, +10:u0A:data/,, +13:u0B:,/carried, +16:u0C:requests/for, +11:u14:carried, +11:u00:between, +11:u05:carried, +10:u09:data/,, +13:u0A:,/carried, +14:u0B:carried/in, +12:u0C:for/data, +11:u13:carried, +11:u04:carried, +13:u09:,/carried, +14:u0A:carried/in, +15:u0B:in/Interest, +10:u0C:data/,, +13:u0D:carried/0, +11:u12:carried, +8:u23:carr, +8:u33:ried, +11:u03:carried, +14:u09:carried/in, +15:u0A:in/Interest, +21:u0B:Interest/messages, +13:u0C:,/carried, +11:u11:carried, +11:u02:carried, +15:u09:in/Interest, +21:u0A:Interest/messages, +14:u0B:messages/,, +14:u0C:carried/in, +11:u10:carried, +11:u01:carried, +21:u09:Interest/messages, +14:u0A:messages/,, +15:u0C:in/Interest, +11:u00:carried, +14:u09:messages/,, +21:u0C:Interest/messages, +17:u0B:the/responses, +14:u0C:messages/,, +13:u08:requested, +17:u0A:the/responses, +18:u0B:responses/with, +13:u07:requested, +17:u09:the/responses, +18:u0A:responses/with, +12:u0B:with/the, +13:u06:requested, +18:u09:responses/with, +12:u0A:with/the, +17:u0B:the/requested, +17:u0C:the/responses, +13:u14:requested, +13:u05:requested, +12:u09:with/the, +17:u0A:the/requested, +18:u0B:requested/data, +18:u0C:responses/with, +13:u13:requested, +13:u04:requested, +17:u09:the/requested, +18:u0A:requested/data, +12:u0C:with/the, +15:u0D:requested/0, +13:u12:requested, +8:u33:sted, +13:u03:requested, +18:u09:requested/data, +12:u0B:object/,, +17:u0C:the/requested, +13:u11:requested, +13:u02:requested, +12:u0A:object/,, +18:u0C:requested/data, +13:u10:requested, +13:u01:requested, +12:u09:object/,, +13:u00:requested, +11:u0B:in/Data, +12:u0C:object/,, +11:u0A:in/Data, +17:u0B:Data/messages, +11:u09:in/Data, +17:u0A:Data/messages, +14:u0B:messages/., +17:u09:Data/messages, +14:u0A:messages/., +11:u0C:in/Data, +10:u08:number, +14:u09:messages/., +12:u0B:This/has, +17:u0C:Data/messages, +10:u07:number, +12:u0A:This/has, +9:u0B:has/a, +14:u0C:messages/., +10:u06:number, +12:u09:This/has, +9:u0A:has/a, +12:u0B:a/number, +10:u14:number, +10:u05:number, +14:u08:beneficial, +9:u09:has/a, +12:u0A:a/number, +13:u0B:number/of, +12:u0C:This/has, +10:u13:number, +10:u04:number, +14:u07:beneficial, +14:u08:properties, +12:u09:a/number, +13:u0A:number/of, +13:u0B:of/highly, +9:u0C:has/a, +12:u0D:number/0, +10:u12:number, +6:u21:nu, +7:u22:num, +8:u23:numb, +7:u32:ber, +8:u33:mber, +10:u03:number, +14:u06:beneficial, +14:u07:properties, +13:u09:number/of, +13:u0A:of/highly, +21:u0B:highly/beneficial, +12:u0C:a/number, +10:u11:number, +14:u14:beneficial, +10:u02:number, +14:u05:beneficial, +14:u06:properties, +13:u09:of/highly, +21:u0A:highly/beneficial, +25:u0B:beneficial/properties, +13:u0C:number/of, +10:u10:number, +14:u13:beneficial, +14:u14:properties, +10:u01:number, +14:u04:beneficial, +14:u05:properties, +21:u09:highly/beneficial, +25:u0A:beneficial/properties, +18:u0B:properties/for, +13:u0C:of/highly, +16:u0D:beneficial/0, +14:u12:beneficial, +14:u13:properties, +7:u22:ben, +8:u23:bene, +7:u32:ial, +8:u33:cial, +10:u00:number, +14:u03:beneficial, +14:u04:properties, +14:u08:congestion, +25:u09:beneficial/properties, +18:u0A:properties/for, +12:u0B:for/flow, +21:u0C:highly/beneficial, +16:u0D:properties/0, +14:u11:beneficial, +14:u12:properties, +8:u23:prop, +14:u02:beneficial, +14:u03:properties, +14:u07:congestion, +18:u09:properties/for, +12:u0A:for/flow, +12:u0B:flow/and, +25:u0C:beneficial/properties, +14:u10:beneficial, +14:u11:properties, +14:u01:beneficial, +14:u02:properties, +14:u06:congestion, +12:u09:for/flow, +12:u0A:flow/and, +18:u0B:and/congestion, +18:u0C:properties/for, +14:u10:properties, +14:u14:congestion, +14:u00:beneficial, +14:u01:properties, +14:u05:congestion, +12:u08:networks, +12:u09:flow/and, +18:u0A:and/congestion, +22:u0B:congestion/control, +12:u0C:for/flow, +14:u13:congestion, +14:u00:properties, +14:u04:congestion, +12:u07:networks, +18:u09:and/congestion, +22:u0A:congestion/control, +14:u0B:control/in, +12:u0C:flow/and, +16:u0D:congestion/0, +14:u12:congestion, +8:u23:cong, +14:u03:congestion, +12:u06:networks, +22:u09:congestion/control, +14:u0A:control/in, +15:u0B:in/networks, +18:u0C:and/congestion, +14:u11:congestion, +12:u14:networks, +14:u02:congestion, +12:u05:networks, +8:u08:well, +14:u09:control/in, +15:u0A:in/networks, +14:u0B:networks/,, +22:u0C:congestion/control, +14:u10:congestion, +12:u13:networks, +14:u01:congestion, +12:u04:networks, +8:u07:well, +15:u09:in/networks, +14:u0A:networks/,, +14:u0C:control/in, +14:u0D:networks/0, +12:u12:networks, +6:u31:ks, +7:u32:rks, +8:u33:orks, +14:u00:congestion, +12:u03:networks, +8:u06:well, +14:u09:networks/,, +11:u0B:as/well, +15:u0C:in/networks, +12:u11:networks, +8:u14:well, +12:u02:networks, +8:u05:well, +13:u08:desirable, +11:u0A:as/well, +11:u0B:well/as, +14:u0C:networks/,, +12:u10:networks, +8:u13:well, +12:u01:networks, +8:u04:well, +13:u07:desirable, +12:u08:security, +11:u09:as/well, +11:u0A:well/as, +11:u0B:as/some, +10:u0D:well/0, +8:u12:well, +6:u21:we, +7:u22:wel, +8:u23:well, +7:u32:ell, +8:u33:well, +12:u00:networks, +8:u03:well, +13:u06:desirable, +12:u07:security, +11:u09:well/as, +11:u0A:as/some, +18:u0B:some/desirable, +11:u0C:as/well, +8:u11:well, +13:u14:desirable, +8:u02:well, +13:u05:desirable, +12:u06:security, +11:u09:as/some, +18:u0A:some/desirable, +22:u0B:desirable/security, +11:u0C:well/as, +8:u10:well, +13:u13:desirable, +12:u14:security, +8:u01:well, +13:u04:desirable, +12:u05:security, +7:u08:For, +18:u09:some/desirable, +22:u0A:desirable/security, +23:u0B:security/properties, +11:u0C:as/some, +15:u0D:desirable/0, +13:u12:desirable, +12:u13:security, +8:u23:desi, +8:u00:well, +13:u03:desirable, +12:u04:security, +7:u07:For, +11:u08:example, +22:u09:desirable/security, +23:u0A:security/properties, +16:u0B:properties/., +18:u0C:some/desirable, +14:u0D:security/0, +13:u11:desirable, +12:u12:security, +7:u22:sec, +8:u23:secu, +13:u02:desirable, +12:u03:security, +7:u06:For, +11:u07:example, +23:u09:security/properties, +16:u0A:properties/., +9:u0B:./For, +22:u0C:desirable/security, +13:u10:desirable, +12:u11:security, +13:u01:desirable, +12:u02:security, +7:u05:For, +11:u06:example, +11:u08:neither, +16:u09:properties/., +9:u0A:./For, +15:u0B:For/example, +23:u0C:security/properties, +12:u10:security, +11:u14:example, +13:u00:desirable, +12:u01:security, +7:u04:For, +11:u05:example, +11:u07:neither, +14:u08:legitimate, +9:u09:./For, +15:u0A:For/example, +13:u0B:example/,, +16:u0C:properties/., +9:u0D:For/0, +11:u13:example, +7:u23:For, +7:u32:For, +7:u33:For, +12:u00:security, +7:u03:For, +11:u04:example, +11:u06:neither, +14:u07:legitimate, +9:u08:users, +15:u09:For/example, +13:u0A:example/,, +13:u0B:,/neither, +9:u0C:./For, +13:u0D:example/0, +11:u12:example, +11:u14:neither, +7:u32:ple, +8:u33:mple, +7:u02:For, +11:u03:example, +11:u05:neither, +14:u06:legitimate, +9:u07:users, +7:u08:nor, +13:u09:example/,, +13:u0A:,/neither, +22:u0B:neither/legitimate, +15:u0C:For/example, +11:u11:example, +11:u13:neither, +14:u14:legitimate, +7:u01:For, +11:u02:example, +11:u04:neither, +14:u05:legitimate, +9:u06:users, +7:u07:nor, +13:u08:attackers, +13:u09:,/neither, +22:u0A:neither/legitimate, +20:u0B:legitimate/users, +13:u0C:example/,, +13:u0D:neither/0, +11:u10:example, +11:u12:neither, +14:u13:legitimate, +9:u14:users, +7:u22:nei, +8:u23:neit, +8:u33:ther, +7:u00:For, +11:u01:example, +11:u03:neither, +14:u04:legitimate, +9:u05:users, +7:u06:nor, +13:u07:attackers, +22:u09:neither/legitimate, +20:u0A:legitimate/users, +13:u0B:users/nor, +13:u0C:,/neither, +16:u0D:legitimate/0, +11:u11:neither, +14:u12:legitimate, +9:u13:users, +7:u14:nor, +7:u22:leg, +8:u23:legi, +8:u33:mate, +11:u00:example, +11:u02:neither, +14:u03:legitimate, +9:u04:users, +7:u05:nor, +13:u06:attackers, +8:u08:able, +20:u09:legitimate/users, +13:u0A:users/nor, +17:u0B:nor/attackers, +22:u0C:neither/legitimate, +11:u0D:users/0, +11:u10:neither, +14:u11:legitimate, +9:u12:users, +7:u13:nor, +13:u14:attackers, +8:u23:user, +7:u32:ers, +8:u33:sers, +11:u01:neither, +14:u02:legitimate, +9:u03:users, +7:u04:nor, +13:u05:attackers, +8:u07:able, +13:u09:users/nor, +17:u0A:nor/attackers, +17:u0B:attackers/are, +20:u0C:legitimate/users, +9:u0D:nor/0, +14:u10:legitimate, +9:u11:users, +7:u12:nor, +13:u13:attackers, +7:u22:nor, +7:u23:nor, +7:u32:nor, +7:u33:nor, +11:u00:neither, +14:u01:legitimate, +9:u02:users, +7:u03:nor, +13:u04:attackers, +8:u06:able, +10:u08:inject, +17:u09:nor/attackers, +17:u0A:attackers/are, +12:u0B:are/able, +13:u0C:users/nor, +15:u0D:attackers/0, +9:u10:users, +7:u11:nor, +13:u12:attackers, +8:u14:able, +7:u22:att, +8:u23:atta, +8:u33:kers, +14:u00:legitimate, +9:u01:users, +7:u02:nor, +13:u03:attackers, +8:u05:able, +10:u07:inject, +9:u08:large, +17:u09:attackers/are, +12:u0A:are/able, +11:u0B:able/to, +17:u0C:nor/attackers, +7:u10:nor, +13:u11:attackers, +8:u13:able, +9:u00:users, +7:u01:nor, +13:u02:attackers, +8:u04:able, +10:u06:inject, +9:u07:large, +11:u08:amounts, +12:u09:are/able, +11:u0A:able/to, +13:u0B:to/inject, +17:u0C:attackers/are, +10:u0D:able/0, +13:u10:attackers, +8:u12:able, +10:u14:inject, +7:u22:abl, +8:u23:able, +7:u00:nor, +13:u01:attackers, +8:u03:able, +10:u05:inject, +9:u06:large, +11:u07:amounts, +11:u09:able/to, +13:u0A:to/inject, +16:u0B:inject/large, +12:u0C:are/able, +8:u11:able, +10:u13:inject, +9:u14:large, +13:u00:attackers, +8:u02:able, +10:u04:inject, +9:u05:large, +11:u06:amounts, +6:u08:un, +13:u09:to/inject, +16:u0A:inject/large, +17:u0B:large/amounts, +11:u0C:able/to, +12:u0D:inject/0, +8:u10:able, +10:u12:inject, +9:u13:large, +11:u14:amounts, +7:u22:inj, +8:u23:inje, +8:u01:able, +10:u03:inject, +9:u04:large, +11:u05:amounts, +6:u07:un, +16:u09:inject/large, +17:u0A:large/amounts, +14:u0B:amounts/of, +13:u0C:to/inject, +11:u0D:large/0, +10:u11:inject, +9:u12:large, +11:u13:amounts, +6:u21:la, +7:u22:lar, +8:u23:larg, +7:u32:rge, +8:u33:arge, +8:u00:able, +10:u02:inject, +9:u03:large, +11:u04:amounts, +6:u06:un, +17:u09:large/amounts, +14:u0A:amounts/of, +9:u0B:of/un, +16:u0C:inject/large, +13:u0D:amounts/0, +10:u10:inject, +9:u11:large, +11:u12:amounts, +6:u14:un, +8:u23:amou, +8:u33:unts, +10:u01:inject, +9:u02:large, +11:u03:amounts, +6:u05:un, +14:u09:amounts/of, +9:u0A:of/un, +8:u0B:un/-, +17:u0C:large/amounts, +9:u10:large, +11:u11:amounts, +6:u13:un, +10:u00:inject, +9:u01:large, +11:u02:amounts, +6:u04:un, +8:u08:into, +9:u09:of/un, +8:u0A:un/-, +15:u0B:-/requested, +14:u0C:amounts/of, +8:u0D:un/0, +11:u10:amounts, +6:u12:un, +6:u21:un, +6:u22:un, +6:u23:un, +6:u31:un, +6:u32:un, +6:u33:un, +9:u00:large, +11:u01:amounts, +6:u03:un, +8:u07:into, +8:u09:un/-, +15:u0A:-/requested, +9:u0C:of/un, +6:u11:un, +11:u00:amounts, +6:u02:un, +8:u06:into, +15:u09:-/requested, +13:u0B:data/into, +8:u0C:un/-, +15:u0D:requested/1, +6:u10:un, +8:u14:into, +6:u01:un, +8:u05:into, +13:u0A:data/into, +12:u0B:into/the, +15:u0C:-/requested, +8:u13:into, +6:u00:un, +8:u04:into, +12:u08:Existing, +13:u09:data/into, +12:u0A:into/the, +15:u0B:the/network, +10:u0D:into/0, +8:u12:into, +8:u23:into, +7:u32:nto, +8:u33:into, +8:u03:into, +12:u07:Existing, +12:u09:into/the, +15:u0A:the/network, +13:u0B:network/., +13:u0C:data/into, +8:u11:into, +8:u02:into, +12:u06:Existing, +15:u09:the/network, +13:u0A:network/., +14:u0B:./Existing, +12:u0C:into/the, +8:u10:into, +12:u14:existing, +8:u01:into, +12:u05:Existing, +14:u08:approaches, +13:u09:network/., +14:u0A:./Existing, +23:u0B:Existing/congestion, +15:u0C:the/network, +12:u13:existing, +8:u00:into, +12:u04:Existing, +14:u07:approaches, +11:u08:however, +14:u09:./Existing, +23:u0A:Existing/congestion, +13:u0C:network/., +14:u0D:Existing/0, +12:u12:existing, +7:u22:Exi, +8:u23:Exis, +12:u03:Existing, +14:u06:approaches, +11:u07:however, +10:u08:cannot, +23:u09:Existing/congestion, +22:u0B:control/approaches, +14:u0C:./Existing, +12:u11:existing, +14:u14:approaches, +12:u02:Existing, +14:u05:approaches, +11:u06:however, +10:u07:cannot, +8:u08:deal, +22:u0A:control/approaches, +22:u0B:approaches/however, +23:u0C:Existing/congestion, +12:u10:existing, +14:u13:approaches, +11:u14:however, +12:u01:Existing, +14:u04:approaches, +11:u05:however, +10:u06:cannot, +8:u07:deal, +15:u08:effectively, +22:u09:control/approaches, +22:u0A:approaches/however, +18:u0B:however/cannot, +16:u0D:approaches/0, +14:u12:approaches, +11:u13:however, +10:u14:cannot, +8:u33:ches, +12:u00:Existing, +14:u03:approaches, +11:u04:however, +10:u05:cannot, +8:u06:deal, +15:u07:effectively, +22:u09:approaches/however, +18:u0A:however/cannot, +15:u0B:cannot/deal, +22:u0C:control/approaches, +13:u0D:however/0, +14:u11:approaches, +11:u12:however, +10:u13:cannot, +8:u14:deal, +8:u23:howe, +8:u33:ever, +14:u02:approaches, +11:u03:however, +10:u04:cannot, +8:u05:deal, +15:u06:effectively, +18:u09:however/cannot, +15:u0A:cannot/deal, +20:u0B:deal/effectively, +22:u0C:approaches/however, +12:u0D:cannot/0, +14:u10:approaches, +11:u11:however, +10:u12:cannot, +8:u13:deal, +15:u14:effectively, +8:u23:cann, +8:u33:nnot, +14:u01:approaches, +11:u02:however, +10:u03:cannot, +8:u04:deal, +15:u05:effectively, +10:u08:widely, +15:u09:cannot/deal, +20:u0A:deal/effectively, +20:u0B:effectively/with, +18:u0C:however/cannot, +10:u0D:deal/0, +11:u10:however, +10:u11:cannot, +8:u12:deal, +15:u13:effectively, +7:u22:dea, +8:u23:deal, +7:u32:eal, +8:u33:deal, +14:u00:approaches, +11:u01:however, +10:u02:cannot, +8:u03:deal, +15:u04:effectively, +10:u07:widely, +11:u08:varying, +20:u09:deal/effectively, +20:u0A:effectively/with, +10:u0B:with/a, +15:u0C:cannot/deal, +17:u0D:effectively/0, +10:u10:cannot, +8:u11:deal, +15:u12:effectively, +7:u32:ely, +8:u33:vely, +11:u00:however, +10:u01:cannot, +8:u02:deal, +15:u03:effectively, +10:u06:widely, +11:u07:varying, +7:u08:MTU, +20:u09:effectively/with, +10:u0A:with/a, +12:u0B:a/widely, +20:u0C:deal/effectively, +8:u10:deal, +15:u11:effectively, +10:u14:widely, +10:u00:cannot, +8:u01:deal, +15:u02:effectively, +10:u05:widely, +11:u06:varying, +7:u07:MTU, +10:u09:with/a, +12:u0A:a/widely, +18:u0B:widely/varying, +20:u0C:effectively/with, +15:u10:effectively, +10:u13:widely, +11:u14:varying, +8:u00:deal, +15:u01:effectively, +10:u04:widely, +11:u05:varying, +7:u06:MTU, +12:u09:a/widely, +18:u0A:widely/varying, +15:u0B:varying/MTU, +10:u0C:with/a, +12:u0D:widely/0, +10:u12:widely, +11:u13:varying, +7:u14:mtu, +8:u33:dely, +15:u00:effectively, +10:u03:widely, +11:u04:varying, +7:u05:MTU, +18:u09:widely/varying, +15:u0A:varying/MTU, +10:u0B:MTU/of, +12:u0C:a/widely, +13:u0D:varying/0, +10:u11:widely, +11:u12:varying, +7:u13:mtu, +8:u23:vary, +8:u33:ying, +10:u02:widely, +11:u03:varying, +7:u04:MTU, +15:u09:varying/MTU, +10:u0A:MTU/of, +10:u0B:of/ICN, +18:u0C:widely/varying, +9:u0D:MTU/0, +10:u10:widely, +11:u11:varying, +7:u12:mtu, +6:u21:MT, +7:u22:MTU, +7:u23:MTU, +5:u30:U, +6:u31:TU, +7:u32:MTU, +7:u33:MTU, +10:u01:widely, +11:u02:varying, +7:u03:MTU, +10:u09:MTU/of, +10:u0A:of/ICN, +12:u0B:ICN/data, +15:u0C:varying/MTU, +11:u10:varying, +7:u11:mtu, +10:u00:widely, +11:u01:varying, +7:u02:MTU, +9:u08:since, +10:u09:of/ICN, +12:u0A:ICN/data, +17:u0B:data/messages, +10:u0C:MTU/of, +7:u10:mtu, +11:u00:varying, +7:u01:MTU, +9:u07:since, +12:u09:ICN/data, +17:u0A:data/messages, +10:u0C:of/ICN, +7:u00:MTU, +9:u06:since, +13:u08:protocols, +17:u09:data/messages, +11:u0B:,/since, +12:u0C:ICN/data, +9:u14:since, +9:u05:since, +13:u07:protocols, +9:u08:allow, +11:u0A:,/since, +13:u0B:since/the, +17:u0C:data/messages, +9:u13:since, +9:u04:since, +13:u06:protocols, +9:u07:allow, +11:u09:,/since, +13:u0A:since/the, +17:u0B:the/protocols, +11:u0D:since/0, +9:u12:since, +13:u14:protocols, +7:u22:sin, +8:u23:sinc, +8:u33:ince, +9:u03:since, +13:u05:protocols, +9:u06:allow, +11:u08:dynamic, +13:u09:since/the, +17:u0A:the/protocols, +19:u0B:protocols/allow, +11:u0C:,/since, +9:u11:since, +13:u13:protocols, +9:u14:allow, +9:u02:since, +13:u04:protocols, +9:u05:allow, +11:u07:dynamic, +9:u08:range, +17:u09:the/protocols, +19:u0A:protocols/allow, +11:u0B:allow/a, +13:u0C:since/the, +15:u0D:protocols/0, +9:u10:since, +13:u12:protocols, +9:u13:allow, +6:u31:ls, +7:u32:ols, +8:u33:cols, +9:u01:since, +13:u03:protocols, +9:u04:allow, +11:u06:dynamic, +9:u07:range, +19:u09:protocols/allow, +11:u0A:allow/a, +13:u0B:a/dynamic, +17:u0C:the/protocols, +11:u0D:allow/0, +13:u11:protocols, +9:u12:allow, +11:u14:dynamic, +7:u22:all, +8:u23:allo, +9:u00:since, +13:u02:protocols, +9:u03:allow, +11:u05:dynamic, +9:u06:range, +11:u09:allow/a, +13:u0A:a/dynamic, +17:u0B:dynamic/range, +19:u0C:protocols/allow, +13:u10:protocols, +9:u11:allow, +11:u13:dynamic, +9:u14:range, +13:u01:protocols, +9:u02:allow, +11:u04:dynamic, +9:u05:range, +13:u09:a/dynamic, +17:u0A:dynamic/range, +12:u0B:range/of, +11:u0C:allow/a, +13:u0D:dynamic/0, +9:u10:allow, +11:u12:dynamic, +9:u13:range, +6:u21:dy, +7:u22:dyn, +8:u23:dyna, +7:u32:mic, +8:u33:amic, +13:u00:protocols, +9:u01:allow, +11:u03:dynamic, +9:u04:range, +7:u08:64K, +17:u09:dynamic/range, +12:u0A:range/of, +8:u0B:of/1, +13:u0C:a/dynamic, +11:u0D:range/0, +11:u11:dynamic, +9:u12:range, +6:u21:ra, +7:u22:ran, +8:u23:rang, +7:u32:nge, +8:u33:ange, +9:u00:allow, +11:u02:dynamic, +9:u03:range, +7:u07:64K, +9:u08:bytes, +12:u09:range/of, +8:u0A:of/1, +7:u0B:1/-, +17:u0C:dynamic/range, +11:u10:dynamic, +9:u11:range, +11:u01:dynamic, +9:u02:range, +7:u06:64K, +9:u07:bytes, +8:u09:of/1, +7:u0A:1/-, +9:u0B:-/64K, +12:u0C:range/of, +9:u10:range, +7:u14:64k, +11:u00:dynamic, +9:u01:range, +7:u05:64K, +9:u06:bytes, +9:u08:Since, +7:u09:1/-, +9:u0A:-/64K, +13:u0B:64K/bytes, +8:u0C:of/1, +7:u13:64k, +9:u14:bytes, +9:u00:range, +7:u04:64K, +9:u05:bytes, +9:u07:Since, +9:u09:-/64K, +13:u0A:64K/bytes, +11:u0B:bytes/., +7:u0C:1/-, +9:u0D:64K/1, +7:u12:64k, +9:u13:bytes, +6:u21:64, +7:u22:64K, +7:u23:64K, +5:u30:K, +6:u31:4K, +7:u32:64K, +7:u33:64K, +7:u03:64K, +9:u04:bytes, +9:u06:Since, +13:u09:64K/bytes, +11:u0A:bytes/., +11:u0B:./Since, +9:u0C:-/64K, +11:u0D:bytes/0, +7:u11:64k, +9:u12:bytes, +7:u22:byt, +8:u23:byte, +8:u33:ytes, +7:u02:64K, +9:u03:bytes, +9:u05:Since, +11:u09:bytes/., +11:u0A:./Since, +18:u0B:Since/Interest, +13:u0C:64K/bytes, +7:u10:64k, +9:u11:bytes, +7:u01:64K, +9:u02:bytes, +9:u04:Since, +11:u09:./Since, +18:u0A:Since/Interest, +11:u0C:bytes/., +11:u0D:Since/0, +9:u10:bytes, +6:u21:Si, +7:u22:Sin, +8:u23:Sinc, +7:u00:64K, +9:u01:bytes, +9:u03:Since, +18:u09:Since/Interest, +16:u0B:messages/are, +11:u0C:./Since, +9:u00:bytes, +9:u02:Since, +12:u08:allocate, +16:u0A:messages/are, +12:u0B:are/used, +18:u0C:Since/Interest, +9:u01:Since, +12:u07:allocate, +16:u09:messages/are, +12:u0A:are/used, +11:u0B:used/to, +9:u00:Since, +12:u06:allocate, +11:u08:reverse, +12:u09:are/used, +11:u0A:used/to, +15:u0B:to/allocate, +16:u0C:messages/are, +12:u14:allocate, +12:u05:allocate, +11:u07:reverse, +8:u08:link, +11:u09:used/to, +15:u0A:to/allocate, +16:u0B:allocate/the, +12:u0C:are/used, +12:u13:allocate, +12:u04:allocate, +11:u06:reverse, +8:u07:link, +13:u08:bandwidth, +15:u09:to/allocate, +16:u0A:allocate/the, +15:u0B:the/reverse, +11:u0C:used/to, +14:u0D:allocate/0, +12:u12:allocate, +11:u14:reverse, +8:u33:cate, +12:u03:allocate, +11:u05:reverse, +8:u06:link, +13:u07:bandwidth, +16:u09:allocate/the, +15:u0A:the/reverse, +16:u0B:reverse/link, +15:u0C:to/allocate, +12:u11:allocate, +11:u13:reverse, +8:u14:link, +12:u02:allocate, +11:u04:reverse, +8:u05:link, +13:u06:bandwidth, +13:u08:returning, +15:u09:the/reverse, +16:u0A:reverse/link, +18:u0B:link/bandwidth, +16:u0C:allocate/the, +13:u0D:reverse/0, +12:u10:allocate, +11:u12:reverse, +8:u13:link, +13:u14:bandwidth, +8:u23:reve, +7:u32:rse, +8:u33:erse, +12:u01:allocate, +11:u03:reverse, +8:u04:link, +13:u05:bandwidth, +13:u07:returning, +16:u09:reverse/link, +18:u0A:link/bandwidth, +17:u0B:bandwidth/for, +15:u0C:the/reverse, +10:u0D:link/0, +11:u11:reverse, +8:u12:link, +13:u13:bandwidth, +7:u22:lin, +8:u23:link, +6:u31:nk, +7:u32:ink, +8:u33:link, +12:u00:allocate, +11:u02:reverse, +8:u03:link, +13:u04:bandwidth, +13:u06:returning, +18:u09:link/bandwidth, +17:u0A:bandwidth/for, +17:u0B:for/returning, +16:u0C:reverse/link, +15:u0D:bandwidth/0, +11:u10:reverse, +8:u11:link, +13:u12:bandwidth, +13:u14:returning, +7:u22:ban, +8:u23:band, +7:u32:dth, +8:u33:idth, +11:u01:reverse, +8:u02:link, +13:u03:bandwidth, +13:u05:returning, +17:u09:bandwidth/for, +17:u0A:for/returning, +18:u0B:returning/Data, +18:u0C:link/bandwidth, +8:u10:link, +13:u11:bandwidth, +13:u13:returning, +11:u00:reverse, +8:u01:link, +13:u02:bandwidth, +13:u04:returning, +17:u09:for/returning, +18:u0A:returning/Data, +10:u0B:Data/,, +17:u0C:bandwidth/for, +15:u0D:returning/0, +13:u10:bandwidth, +13:u12:returning, +8:u00:link, +13:u01:bandwidth, +13:u03:returning, +18:u09:returning/Data, +10:u0A:Data/,, +11:u0B:,/there, +17:u0C:for/returning, +13:u11:returning, +13:u00:bandwidth, +13:u02:returning, +15:u08:uncertainty, +10:u09:Data/,, +11:u0A:,/there, +18:u0C:returning/Data, +13:u10:returning, +13:u01:returning, +15:u07:uncertainty, +11:u09:,/there, +12:u0B:is/large, +10:u0C:Data/,, +13:u00:returning, +15:u06:uncertainty, +12:u0A:is/large, +21:u0B:large/uncertainty, +11:u0C:,/there, +15:u14:uncertainty, +15:u05:uncertainty, +12:u09:is/large, +21:u0A:large/uncertainty, +18:u0B:uncertainty/in, +15:u13:uncertainty, +15:u04:uncertainty, +21:u09:large/uncertainty, +18:u0A:uncertainty/in, +10:u0B:in/how, +12:u0C:is/large, +17:u0D:uncertainty/0, +15:u12:uncertainty, +7:u22:unc, +8:u23:unce, +7:u32:nty, +8:u33:inty, +15:u03:uncertainty, +18:u09:uncertainty/in, +10:u0A:in/how, +21:u0C:large/uncertainty, +15:u11:uncertainty, +15:u02:uncertainty, +10:u09:in/how, +18:u0C:uncertainty/in, +15:u10:uncertainty, +15:u01:uncertainty, +17:u0B:allocate/that, +10:u0C:in/how, +15:u00:uncertainty, +17:u08:Unfortunately, +17:u0A:allocate/that, +18:u0B:that/bandwidth, +17:u07:Unfortunately, +17:u09:allocate/that, +18:u0A:that/bandwidth, +15:u0B:bandwidth/., +17:u06:Unfortunately, +18:u09:that/bandwidth, +15:u0A:bandwidth/., +19:u0B:./Unfortunately, +17:u0C:allocate/that, +17:u14:unfortunately, +17:u05:Unfortunately, +15:u09:bandwidth/., +19:u0A:./Unfortunately, +19:u0B:Unfortunately/,, +18:u0C:that/bandwidth, +17:u13:unfortunately, +17:u04:Unfortunately, +19:u09:./Unfortunately, +19:u0A:Unfortunately/,, +13:u0B:,/current, +15:u0C:bandwidth/., +19:u0D:Unfortunately/0, +17:u12:unfortunately, +7:u22:Unf, +8:u23:Unfo, +8:u33:tely, +17:u03:Unfortunately, +11:u08:schemes, +19:u09:Unfortunately/,, +13:u0A:,/current, +22:u0B:current/congestion, +19:u0C:./Unfortunately, +17:u11:unfortunately, +17:u02:Unfortunately, +11:u07:schemes, +13:u09:,/current, +22:u0A:current/congestion, +19:u0C:Unfortunately/,, +17:u10:unfortunately, +17:u01:Unfortunately, +11:u06:schemes, +22:u09:current/congestion, +19:u0B:control/schemes, +13:u0C:,/current, +11:u14:schemes, +17:u00:Unfortunately, +11:u05:schemes, +19:u0A:control/schemes, +14:u0B:schemes/in, +22:u0C:current/congestion, +11:u13:schemes, +11:u04:schemes, +19:u09:control/schemes, +14:u0A:schemes/in, +11:u0B:in/CCNx, +13:u0D:schemes/0, +11:u12:schemes, +6:u21:sc, +7:u22:sch, +8:u23:sche, +7:u32:mes, +8:u33:emes, +11:u03:schemes, +8:u08:only, +14:u09:schemes/in, +11:u0A:in/CCNx, +12:u0B:CCNx/and, +19:u0C:control/schemes, +11:u11:schemes, +11:u02:schemes, +8:u07:only, +9:u08:count, +11:u09:in/CCNx, +12:u0A:CCNx/and, +11:u0B:and/NDN, +14:u0C:schemes/in, +11:u10:schemes, +11:u01:schemes, +8:u06:only, +9:u07:count, +12:u09:CCNx/and, +11:u0A:and/NDN, +12:u0B:NDN/only, +11:u0C:in/CCNx, +8:u14:only, +11:u00:schemes, +8:u05:only, +9:u06:count, +11:u09:and/NDN, +12:u0A:NDN/only, +14:u0B:only/count, +12:u0C:CCNx/and, +8:u13:only, +9:u14:count, +8:u04:only, +9:u05:count, +12:u09:NDN/only, +14:u0A:only/count, +18:u0B:count/Interest, +11:u0C:and/NDN, +10:u0D:only/0, +8:u12:only, +9:u13:count, +7:u22:onl, +8:u23:only, +7:u32:nly, +8:u33:only, +8:u03:only, +9:u04:count, +14:u09:only/count, +18:u0A:count/Interest, +12:u0C:NDN/only, +11:u0D:count/0, +8:u11:only, +9:u12:count, +7:u22:cou, +8:u23:coun, +7:u32:unt, +8:u33:ount, +8:u02:only, +9:u03:count, +6:u08:no, +18:u09:count/Interest, +14:u0C:only/count, +8:u10:only, +9:u11:count, +8:u01:only, +9:u02:count, +6:u07:no, +18:u0C:count/Interest, +9:u10:count, +8:u00:only, +9:u01:count, +6:u06:no, +11:u0B:have/no, +6:u14:no, +9:u00:count, +6:u05:no, +8:u08:much, +11:u0A:have/no, +11:u0B:no/idea, +6:u13:no, +6:u04:no, +8:u07:much, +11:u09:have/no, +11:u0A:no/idea, +12:u0B:idea/how, +8:u0D:no/0, +6:u12:no, +6:u22:no, +6:u23:no, +6:u31:no, +6:u32:no, +6:u33:no, +6:u03:no, +8:u06:much, +11:u09:no/idea, +12:u0A:idea/how, +12:u0B:how/much, +11:u0C:have/no, +6:u11:no, +8:u14:much, +6:u02:no, +8:u05:much, +12:u08:involved, +12:u09:idea/how, +12:u0A:how/much, +13:u0B:much/data, +11:u0C:no/idea, +6:u10:no, +8:u13:much, +6:u01:no, +8:u04:much, +12:u07:involved, +12:u09:how/much, +13:u0A:much/data, +11:u0B:data/is, +12:u0C:idea/how, +10:u0D:much/0, +8:u12:much, +6:u21:mu, +7:u22:muc, +8:u23:much, +7:u32:uch, +8:u33:much, +6:u00:no, +8:u03:much, +12:u06:involved, +9:u08:could, +13:u09:much/data, +11:u0A:data/is, +15:u0B:is/involved, +12:u0C:how/much, +8:u11:much, +12:u14:involved, +8:u02:much, +12:u05:involved, +9:u07:could, +11:u08:congest, +11:u09:data/is, +15:u0A:is/involved, +17:u0B:involved/that, +13:u0C:much/data, +8:u10:much, +12:u13:involved, +8:u01:much, +12:u04:involved, +9:u06:could, +11:u07:congest, +15:u09:is/involved, +17:u0A:involved/that, +14:u0B:that/could, +11:u0C:data/is, +14:u0D:involved/0, +12:u12:involved, +9:u14:could, +7:u22:inv, +8:u23:invo, +8:u33:lved, +8:u00:much, +12:u03:involved, +9:u05:could, +11:u06:congest, +11:u08:inverse, +17:u09:involved/that, +14:u0A:that/could, +17:u0B:could/congest, +15:u0C:is/involved, +12:u11:involved, +9:u13:could, +11:u14:congest, +12:u02:involved, +9:u04:could, +11:u05:congest, +11:u07:inverse, +14:u09:that/could, +17:u0A:could/congest, +15:u0B:congest/the, +17:u0C:involved/that, +11:u0D:could/0, +12:u10:involved, +9:u12:could, +11:u13:congest, +8:u23:coul, +6:u31:ld, +7:u32:uld, +8:u33:ould, +12:u01:involved, +9:u03:could, +11:u04:congest, +11:u06:inverse, +17:u09:could/congest, +15:u0A:congest/the, +15:u0B:the/inverse, +14:u0C:that/could, +13:u0D:congest/0, +9:u11:could, +11:u12:congest, +11:u14:inverse, +8:u33:gest, +12:u00:involved, +9:u02:could, +11:u03:congest, +11:u05:inverse, +15:u09:congest/the, +15:u0A:the/inverse, +16:u0B:inverse/link, +17:u0C:could/congest, +9:u10:could, +11:u11:congest, +11:u13:inverse, +9:u01:could, +11:u02:congest, +11:u04:inverse, +15:u09:the/inverse, +16:u0A:inverse/link, +10:u0B:link/., +15:u0C:congest/the, +13:u0D:inverse/0, +11:u10:congest, +11:u12:inverse, +8:u23:inve, +9:u00:could, +11:u01:congest, +11:u03:inverse, +12:u08:proposes, +16:u09:inverse/link, +10:u0A:link/., +15:u0C:the/inverse, +11:u11:inverse, +11:u00:congest, +11:u02:inverse, +12:u07:proposes, +10:u09:link/., +16:u0C:inverse/link, +11:u10:inverse, +11:u01:inverse, +12:u06:proposes, +10:u08:method, +21:u0B:document/proposes, +10:u0C:link/., +12:u14:proposes, +11:u00:inverse, +12:u05:proposes, +10:u07:method, +21:u0A:document/proposes, +14:u0B:proposes/a, +12:u13:proposes, +12:u04:proposes, +10:u06:method, +12:u08:maintain, +21:u09:document/proposes, +14:u0A:proposes/a, +12:u0B:a/method, +14:u0D:proposes/0, +12:u12:proposes, +10:u14:method, +8:u33:oses, +12:u03:proposes, +10:u05:method, +12:u07:maintain, +14:u09:proposes/a, +12:u0A:a/method, +13:u0B:method/to, +21:u0C:document/proposes, +12:u11:proposes, +10:u13:method, +12:u02:proposes, +10:u04:method, +12:u06:maintain, +12:u09:a/method, +13:u0A:method/to, +15:u0B:to/maintain, +14:u0C:proposes/a, +12:u0D:method/0, +12:u10:proposes, +10:u12:method, +12:u14:maintain, +7:u22:met, +8:u23:meth, +7:u32:hod, +8:u33:thod, +12:u01:proposes, +10:u03:method, +12:u05:maintain, +13:u09:method/to, +15:u0A:to/maintain, +17:u0B:maintain/flow, +12:u0C:a/method, +10:u11:method, +12:u13:maintain, +12:u00:proposes, +10:u02:method, +12:u04:maintain, +17:u08:accommodating, +15:u09:to/maintain, +17:u0A:maintain/flow, +13:u0C:method/to, +14:u0D:maintain/0, +10:u10:method, +12:u12:maintain, +7:u22:mai, +8:u23:main, +10:u01:method, +12:u03:maintain, +17:u07:accommodating, +17:u09:maintain/flow, +14:u0B:balance/by, +15:u0C:to/maintain, +12:u11:maintain, +10:u00:method, +12:u02:maintain, +17:u06:accommodating, +14:u0A:balance/by, +20:u0B:by/accommodating, +17:u0C:maintain/flow, +12:u10:maintain, +17:u14:accommodating, +12:u01:maintain, +17:u05:accommodating, +14:u09:balance/by, +20:u0A:by/accommodating, +21:u0B:accommodating/the, +17:u13:accommodating, +12:u00:maintain, +17:u04:accommodating, +20:u09:by/accommodating, +21:u0A:accommodating/the, +12:u0B:the/wide, +14:u0C:balance/by, +19:u0D:accommodating/0, +17:u12:accommodating, +7:u22:acc, +8:u23:acco, +17:u03:accommodating, +21:u09:accommodating/the, +12:u0A:the/wide, +16:u0B:wide/dynamic, +20:u0C:by/accommodating, +17:u11:accommodating, +17:u02:accommodating, +12:u09:the/wide, +16:u0A:wide/dynamic, +21:u0C:accommodating/the, +17:u10:accommodating, +17:u01:accommodating, +16:u09:wide/dynamic, +12:u0B:range/in, +12:u0C:the/wide, +17:u00:accommodating, +12:u0A:range/in, +16:u0C:wide/dynamic, +12:u09:range/in, +16:u0B:Data/message, +16:u0A:Data/message, +15:u0B:message/MTU, +12:u0C:range/in, +16:u09:Data/message, +15:u0A:message/MTU, +9:u0B:MTU/., +15:u09:message/MTU, +9:u0A:MTU/., +16:u0C:Data/message, +9:u09:MTU/., +15:u0C:message/MTU, +9:u0C:MTU/., +17:u0B:This/Internet, +17:u0A:This/Internet, +13:u08:submitted, +17:u09:This/Internet, +13:u07:submitted, +12:u0B:Draft/is, +17:u0C:This/Internet, +13:u06:submitted, +12:u0A:Draft/is, +16:u0B:is/submitted, +13:u14:submitted, +13:u05:submitted, +15:u08:conformance, +12:u09:Draft/is, +16:u0A:is/submitted, +16:u0B:submitted/in, +13:u13:submitted, +13:u04:submitted, +15:u07:conformance, +16:u09:is/submitted, +16:u0A:submitted/in, +11:u0B:in/full, +12:u0C:Draft/is, +15:u0D:submitted/0, +13:u12:submitted, +8:u23:subm, +8:u33:tted, +13:u03:submitted, +15:u06:conformance, +16:u09:submitted/in, +11:u0A:in/full, +20:u0B:full/conformance, +16:u0C:is/submitted, +13:u11:submitted, +15:u14:conformance, +13:u02:submitted, +15:u05:conformance, +14:u08:provisions, +11:u09:in/full, +20:u0A:full/conformance, +20:u0B:conformance/with, +16:u0C:submitted/in, +13:u10:submitted, +15:u13:conformance, +13:u01:submitted, +15:u04:conformance, +14:u07:provisions, +20:u09:full/conformance, +20:u0A:conformance/with, +11:u0C:in/full, +17:u0D:conformance/0, +15:u12:conformance, +8:u23:conf, +13:u00:submitted, +15:u03:conformance, +14:u06:provisions, +20:u09:conformance/with, +18:u0B:the/provisions, +20:u0C:full/conformance, +15:u11:conformance, +15:u02:conformance, +14:u05:provisions, +18:u0A:the/provisions, +17:u0B:provisions/of, +20:u0C:conformance/with, +15:u10:conformance, +15:u01:conformance, +14:u04:provisions, +18:u09:the/provisions, +17:u0A:provisions/of, +10:u0B:of/BCP, +16:u0D:provisions/0, +15:u00:conformance, +14:u03:provisions, +17:u09:provisions/of, +10:u0A:of/BCP, +18:u0C:the/provisions, +14:u02:provisions, +6:u08:79, +10:u09:of/BCP, +17:u0C:provisions/of, +14:u01:provisions, +6:u07:79, +11:u0B:and/BCP, +10:u0C:of/BCP, +14:u00:provisions, +6:u06:79, +11:u0A:and/BCP, +10:u0B:BCP/79, +6:u14:79, +6:u05:79, +11:u09:and/BCP, +10:u0A:BCP/79, +8:u0B:79/., +6:u13:79, +6:u04:79, +10:u08:Drafts, +10:u09:BCP/79, +8:u0A:79/., +14:u0B:./Internet, +11:u0C:and/BCP, +8:u0D:79/0, +6:u12:79, +6:u21:79, +6:u22:79, +6:u23:79, +6:u31:79, +6:u32:79, +6:u33:79, +6:u03:79, +10:u07:Drafts, +8:u09:79/., +14:u0A:./Internet, +10:u0C:BCP/79, +6:u11:79, +6:u02:79, +10:u06:Drafts, +11:u08:working, +14:u09:./Internet, +12:u0B:-/Drafts, +8:u0C:79/., +6:u10:79, +10:u14:drafts, +6:u01:79, +10:u05:Drafts, +11:u07:working, +12:u0A:-/Drafts, +14:u0B:Drafts/are, +14:u0C:./Internet, +10:u13:drafts, +6:u00:79, +10:u04:Drafts, +11:u06:working, +12:u09:-/Drafts, +14:u0A:Drafts/are, +15:u0B:are/working, +12:u0D:Drafts/1, +10:u12:drafts, +11:u14:working, +7:u32:fts, +8:u33:afts, +10:u03:Drafts, +11:u05:working, +14:u09:Drafts/are, +15:u0A:are/working, +21:u0B:working/documents, +12:u0C:-/Drafts, +10:u11:drafts, +11:u13:working, +10:u02:Drafts, +11:u04:working, +15:u09:are/working, +21:u0A:working/documents, +16:u0B:documents/of, +14:u0C:Drafts/are, +13:u0D:working/0, +10:u10:drafts, +11:u12:working, +7:u22:wor, +8:u23:work, +10:u01:Drafts, +11:u03:working, +15:u08:Engineering, +21:u09:working/documents, +16:u0A:documents/of, +15:u0C:are/working, +11:u11:working, +10:u00:Drafts, +11:u02:working, +15:u07:Engineering, +16:u09:documents/of, +21:u0C:working/documents, +11:u10:working, +11:u01:working, +15:u06:Engineering, +24:u0B:Internet/Engineering, +16:u0C:documents/of, +15:u14:engineering, +11:u00:working, +15:u05:Engineering, +24:u0A:Internet/Engineering, +20:u0B:Engineering/Task, +15:u13:engineering, +15:u04:Engineering, +24:u09:Internet/Engineering, +20:u0A:Engineering/Task, +17:u0D:Engineering/0, +15:u12:engineering, +6:u21:En, +7:u22:Eng, +8:u23:Engi, +8:u33:ring, +15:u03:Engineering, +20:u09:Engineering/Task, +24:u0C:Internet/Engineering, +15:u11:engineering, +15:u02:Engineering, +10:u0B:(/IETF, +20:u0C:Engineering/Task, +15:u10:engineering, +15:u01:Engineering, +8:u08:Note, +10:u0A:(/IETF, +10:u0B:IETF/), +15:u00:Engineering, +8:u07:Note, +10:u09:(/IETF, +10:u0A:IETF/), +8:u06:Note, +9:u08:other, +10:u09:IETF/), +10:u0B:./Note, +10:u0C:(/IETF, +8:u14:note, +8:u05:Note, +9:u07:other, +10:u08:groups, +10:u0A:./Note, +13:u0B:Note/that, +10:u0C:IETF/), +8:u13:note, +8:u04:Note, +9:u06:other, +10:u07:groups, +10:u09:./Note, +13:u0A:Note/that, +14:u0B:that/other, +10:u0D:Note/0, +8:u12:note, +9:u14:other, +8:u23:Note, +7:u32:ote, +8:u33:Note, +8:u03:Note, +9:u05:other, +10:u06:groups, +13:u09:Note/that, +14:u0A:that/other, +16:u0B:other/groups, +10:u0C:./Note, +8:u11:note, +9:u13:other, +10:u14:groups, +8:u02:Note, +9:u04:other, +10:u05:groups, +14:u08:distribute, +14:u09:that/other, +16:u0A:other/groups, +14:u0B:groups/may, +13:u0C:Note/that, +11:u0D:other/0, +8:u10:note, +9:u12:other, +10:u13:groups, +6:u21:ot, +7:u22:oth, +8:u23:othe, +8:u01:Note, +9:u03:other, +10:u04:groups, +14:u07:distribute, +16:u09:other/groups, +14:u0A:groups/may, +12:u0B:may/also, +14:u0C:that/other, +12:u0D:groups/0, +9:u11:other, +10:u12:groups, +7:u32:ups, +8:u33:oups, +8:u00:Note, +9:u02:other, +10:u03:groups, +14:u06:distribute, +14:u09:groups/may, +12:u0A:may/also, +19:u0B:also/distribute, +16:u0C:other/groups, +9:u10:other, +10:u11:groups, +14:u14:distribute, +9:u01:other, +10:u02:groups, +14:u05:distribute, +12:u09:may/also, +19:u0A:also/distribute, +22:u0B:distribute/working, +14:u0C:groups/may, +10:u10:groups, +14:u13:distribute, +9:u00:other, +10:u01:groups, +14:u04:distribute, +19:u09:also/distribute, +22:u0A:distribute/working, +12:u0C:may/also, +16:u0D:distribute/0, +14:u12:distribute, +6:u21:di, +7:u22:dis, +8:u23:dist, +7:u32:ute, +8:u33:bute, +10:u00:groups, +14:u03:distribute, +22:u09:distribute/working, +16:u0B:documents/as, +19:u0C:also/distribute, +14:u11:distribute, +14:u02:distribute, +16:u0A:documents/as, +15:u0B:as/Internet, +22:u0C:distribute/working, +14:u10:distribute, +14:u01:distribute, +16:u09:documents/as, +15:u0A:as/Internet, +14:u00:distribute, +15:u09:as/Internet, +16:u0C:documents/as, +8:u08:list, +12:u0B:Drafts/., +15:u0C:as/Internet, +8:u07:list, +12:u0A:Drafts/., +8:u06:list, +12:u09:Drafts/., +12:u0B:The/list, +8:u14:list, +8:u05:list, +12:u0A:The/list, +11:u0B:list/of, +12:u0C:Drafts/., +8:u13:list, +8:u04:list, +12:u09:The/list, +11:u0A:list/of, +14:u0B:of/current, +10:u0D:list/0, +8:u12:list, +7:u22:lis, +8:u23:list, +7:u32:ist, +8:u33:list, +8:u03:list, +11:u09:list/of, +14:u0A:of/current, +20:u0B:current/Internet, +12:u0C:The/list, +8:u11:list, +8:u02:list, +14:u09:of/current, +20:u0A:current/Internet, +11:u0C:list/of, +8:u10:list, +8:u01:list, +20:u09:current/Internet, +14:u0C:of/current, +8:u00:list, +13:u0B:Drafts/is, +20:u0C:current/Internet, +13:u0A:Drafts/is, +9:u0B:is/at, +13:u09:Drafts/is, +9:u0A:is/at, +9:u09:is/at, +13:u0C:Drafts/is, +15:u08:datatracker, +9:u0C:is/at, +15:u07:datatracker, +15:u06:datatracker, +17:u0B://datatracker, +15:u14:datatracker, +15:u05:datatracker, +17:u0A://datatracker, +17:u0B:datatracker/., +15:u13:datatracker, +15:u04:datatracker, +17:u09://datatracker, +17:u0A:datatracker/., +17:u0D:datatracker/0, +15:u12:datatracker, +7:u32:ker, +8:u33:cker, +15:u03:datatracker, +17:u09:datatracker/., +17:u0C://datatracker, +15:u11:datatracker, +15:u02:datatracker, +10:u08:drafts, +17:u0C:datatracker/., +15:u10:datatracker, +15:u01:datatracker, +10:u07:drafts, +15:u00:datatracker, +10:u06:drafts, +12:u0B://drafts, +10:u05:drafts, +12:u0A://drafts, +12:u0B:drafts//, +10:u04:drafts, +12:u09://drafts, +12:u0A:drafts//, +13:u0B://current, +12:u0D:drafts/0, +10:u03:drafts, +12:u09:drafts//, +13:u0A://current, +13:u0B:current//, +12:u0C://drafts, +10:u02:drafts, +13:u09://current, +13:u0A:current//, +7:u0B://., +12:u0C:drafts//, +10:u01:drafts, +13:u09:current//, +7:u0A://., +13:u0C://current, +10:u00:drafts, +7:u09://., +13:u0C:current//, +7:u0C://., +9:u08:valid, +13:u0B:are/draft, +9:u07:valid, +13:u0A:are/draft, +19:u0B:draft/documents, +9:u06:valid, +13:u09:are/draft, +19:u0A:draft/documents, +19:u0B:documents/valid, +9:u14:valid, +9:u05:valid, +11:u08:maximum, +19:u09:draft/documents, +19:u0A:documents/valid, +13:u0B:valid/for, +13:u0C:are/draft, +9:u13:valid, +9:u04:valid, +11:u07:maximum, +19:u09:documents/valid, +13:u0A:valid/for, +9:u0B:for/a, +19:u0C:draft/documents, +11:u0D:valid/0, +9:u12:valid, +8:u23:vali, +6:u31:id, +7:u32:lid, +8:u33:alid, +9:u03:valid, +11:u06:maximum, +7:u08:six, +13:u09:valid/for, +9:u0A:for/a, +13:u0B:a/maximum, +19:u0C:documents/valid, +9:u11:valid, +11:u14:maximum, +9:u02:valid, +11:u05:maximum, +7:u07:six, +10:u08:months, +9:u09:for/a, +13:u0A:a/maximum, +14:u0B:maximum/of, +13:u0C:valid/for, +9:u10:valid, +11:u13:maximum, +9:u01:valid, +11:u04:maximum, +7:u06:six, +10:u07:months, +13:u09:a/maximum, +14:u0A:maximum/of, +10:u0B:of/six, +9:u0C:for/a, +13:u0D:maximum/0, +11:u12:maximum, +7:u14:six, +7:u22:max, +8:u23:maxi, +6:u31:um, +7:u32:mum, +8:u33:imum, +9:u00:valid, +11:u03:maximum, +7:u05:six, +10:u06:months, +14:u09:maximum/of, +10:u0A:of/six, +14:u0B:six/months, +13:u0C:a/maximum, +11:u11:maximum, +7:u13:six, +10:u14:months, +11:u02:maximum, +7:u04:six, +10:u05:months, +10:u09:of/six, +14:u0A:six/months, +14:u0B:months/and, +14:u0C:maximum/of, +9:u0D:six/0, +11:u10:maximum, +7:u12:six, +10:u13:months, +7:u22:six, +7:u23:six, +6:u31:ix, +7:u32:six, +7:u33:six, +11:u01:maximum, +7:u03:six, +10:u04:months, +11:u08:updated, +14:u09:six/months, +14:u0A:months/and, +11:u0B:and/may, +10:u0C:of/six, +12:u0D:months/0, +7:u11:six, +10:u12:months, +7:u22:mon, +8:u23:mont, +6:u31:hs, +7:u32:ths, +8:u33:nths, +11:u00:maximum, +7:u02:six, +10:u03:months, +11:u07:updated, +14:u09:months/and, +11:u0A:and/may, +14:u0C:six/months, +7:u10:six, +10:u11:months, +7:u01:six, +10:u02:months, +11:u06:updated, +12:u08:replaced, +11:u09:and/may, +14:u0B:be/updated, +14:u0C:months/and, +10:u10:months, +11:u14:updated, +7:u00:six, +10:u01:months, +11:u05:updated, +12:u07:replaced, +14:u0A:be/updated, +13:u0B:updated/,, +11:u0C:and/may, +11:u13:updated, +10:u00:months, +11:u04:updated, +12:u06:replaced, +14:u09:be/updated, +13:u0A:updated/,, +14:u0B:,/replaced, +13:u0D:updated/0, +11:u12:updated, +12:u14:replaced, +6:u21:up, +7:u22:upd, +8:u23:upda, +11:u03:updated, +12:u05:replaced, +13:u08:obsoleted, +13:u09:updated/,, +14:u0A:,/replaced, +14:u0B:replaced/,, +14:u0C:be/updated, +11:u11:updated, +12:u13:replaced, +11:u02:updated, +12:u04:replaced, +13:u07:obsoleted, +14:u09:,/replaced, +14:u0A:replaced/,, +8:u0B:,/or, +13:u0C:updated/,, +14:u0D:replaced/0, +11:u10:updated, +12:u12:replaced, +8:u23:repl, +7:u32:ced, +8:u33:aced, +11:u01:updated, +12:u03:replaced, +13:u06:obsoleted, +14:u09:replaced/,, +8:u0A:,/or, +16:u0B:or/obsoleted, +14:u0C:,/replaced, +12:u11:replaced, +13:u14:obsoleted, +11:u00:updated, +12:u02:replaced, +13:u05:obsoleted, +8:u09:,/or, +16:u0A:or/obsoleted, +16:u0B:obsoleted/by, +14:u0C:replaced/,, +12:u10:replaced, +13:u13:obsoleted, +12:u01:replaced, +13:u04:obsoleted, +16:u09:or/obsoleted, +16:u0A:obsoleted/by, +12:u0B:by/other, +8:u0C:,/or, +15:u0D:obsoleted/0, +13:u12:obsoleted, +7:u22:obs, +8:u23:obso, +8:u33:eted, +12:u00:replaced, +13:u03:obsoleted, +16:u09:obsoleted/by, +12:u0A:by/other, +19:u0B:other/documents, +16:u0C:or/obsoleted, +13:u11:obsoleted, +13:u02:obsoleted, +8:u08:time, +12:u09:by/other, +19:u0A:other/documents, +16:u0B:documents/at, +16:u0C:obsoleted/by, +13:u10:obsoleted, +13:u01:obsoleted, +8:u07:time, +19:u09:other/documents, +16:u0A:documents/at, +10:u0B:at/any, +12:u0C:by/other, +13:u00:obsoleted, +8:u06:time, +16:u09:documents/at, +10:u0A:at/any, +12:u0B:any/time, +19:u0C:other/documents, +8:u14:time, +8:u05:time, +10:u09:at/any, +12:u0A:any/time, +10:u0B:time/., +16:u0C:documents/at, +8:u13:time, +8:u04:time, +17:u08:inappropriate, +12:u09:any/time, +10:u0A:time/., +10:u0C:at/any, +10:u0D:time/0, +8:u12:time, +6:u21:ti, +7:u22:tim, +8:u23:time, +7:u32:ime, +8:u33:time, +8:u03:time, +17:u07:inappropriate, +10:u09:time/., +9:u0B:It/is, +12:u0C:any/time, +8:u11:time, +8:u02:time, +17:u06:inappropriate, +9:u0A:It/is, +20:u0B:is/inappropriate, +10:u0C:time/., +8:u10:time, +17:u14:inappropriate, +8:u01:time, +17:u05:inappropriate, +9:u09:It/is, +20:u0A:is/inappropriate, +20:u0B:inappropriate/to, +17:u13:inappropriate, +8:u00:time, +17:u04:inappropriate, +20:u09:is/inappropriate, +20:u0A:inappropriate/to, +10:u0B:to/use, +9:u0C:It/is, +19:u0D:inappropriate/0, +17:u12:inappropriate, +7:u22:ina, +8:u23:inap, +8:u33:iate, +17:u03:inappropriate, +20:u09:inappropriate/to, +10:u0A:to/use, +16:u0B:use/Internet, +20:u0C:is/inappropriate, +17:u11:inappropriate, +17:u02:inappropriate, +10:u09:to/use, +16:u0A:use/Internet, +20:u0C:inappropriate/to, +17:u10:inappropriate, +17:u01:inappropriate, +13:u08:reference, +16:u09:use/Internet, +10:u0C:to/use, +17:u00:inappropriate, +13:u07:reference, +12:u08:material, +13:u0B:Drafts/as, +16:u0C:use/Internet, +13:u06:reference, +12:u07:material, +13:u0A:Drafts/as, +16:u0B:as/reference, +13:u14:reference, +13:u05:reference, +12:u06:material, +13:u09:Drafts/as, +16:u0A:as/reference, +22:u0B:reference/material, +13:u13:reference, +12:u14:material, +13:u04:reference, +12:u05:material, +8:u08:cite, +16:u09:as/reference, +22:u0A:reference/material, +15:u0B:material/or, +13:u0C:Drafts/as, +15:u0D:reference/0, +13:u12:reference, +12:u13:material, +7:u22:ref, +8:u23:refe, +13:u03:reference, +12:u04:material, +8:u07:cite, +8:u08:them, +22:u09:reference/material, +15:u0A:material/or, +9:u0B:or/to, +16:u0C:as/reference, +14:u0D:material/0, +13:u11:reference, +12:u12:material, +8:u23:mate, +8:u33:rial, +13:u02:reference, +12:u03:material, +8:u06:cite, +8:u07:them, +15:u09:material/or, +9:u0A:or/to, +11:u0B:to/cite, +22:u0C:reference/material, +13:u10:reference, +12:u11:material, +8:u14:cite, +13:u01:reference, +12:u02:material, +8:u05:cite, +8:u06:them, +8:u08:than, +9:u09:or/to, +11:u0A:to/cite, +13:u0B:cite/them, +15:u0C:material/or, +12:u10:material, +8:u13:cite, +8:u14:them, +13:u00:reference, +12:u01:material, +8:u04:cite, +8:u05:them, +8:u07:than, +11:u09:to/cite, +13:u0A:cite/them, +14:u0B:them/other, +9:u0C:or/to, +10:u0D:cite/0, +8:u12:cite, +8:u13:them, +6:u21:ci, +7:u22:cit, +8:u23:cite, +7:u32:ite, +8:u33:cite, +12:u00:material, +8:u03:cite, +8:u04:them, +8:u06:than, +5:u08:", +13:u09:cite/them, +14:u0A:them/other, +14:u0B:other/than, +11:u0C:to/cite, +10:u0D:them/0, +8:u11:cite, +8:u12:them, +8:u14:than, +8:u23:them, +7:u32:hem, +8:u33:them, +8:u02:cite, +8:u03:them, +8:u05:than, +5:u07:", +8:u08:work, +14:u09:them/other, +14:u0A:other/than, +11:u0B:than/as, +13:u0C:cite/them, +8:u10:cite, +8:u11:them, +8:u13:than, +8:u01:cite, +8:u02:them, +8:u04:than, +5:u06:", +8:u07:work, +14:u09:other/than, +11:u0A:than/as, +8:u0B:as/", +14:u0C:them/other, +10:u0D:than/0, +8:u10:them, +8:u12:than, +5:u14:", +8:u23:than, +7:u32:han, +8:u33:than, +8:u00:cite, +8:u01:them, +8:u03:than, +5:u05:", +8:u06:work, +12:u08:progress, +11:u09:than/as, +8:u0A:as/", +10:u0B:"/work, +14:u0C:other/than, +8:u11:than, +5:u13:", +8:u14:work, +8:u00:them, +8:u02:than, +5:u04:", +8:u05:work, +12:u07:progress, +8:u09:as/", +10:u0A:"/work, +11:u0B:work/in, +11:u0C:than/as, +7:u0D:"/0, +8:u10:than, +5:u12:", +8:u13:work, +5:u20:", +5:u21:", +5:u22:", +5:u23:", +5:u30:", +5:u31:", +5:u32:", +5:u33:", +8:u01:than, +5:u03:", +8:u04:work, +12:u06:progress, +10:u09:"/work, +11:u0A:work/in, +15:u0B:in/progress, +8:u0C:as/", +10:u0D:work/0, +5:u11:", +8:u12:work, +12:u14:progress, +8:u00:than, +5:u02:", +8:u03:work, +12:u05:progress, +11:u09:work/in, +15:u0A:in/progress, +14:u0B:progress/., +10:u0C:"/work, +5:u10:", +8:u11:work, +12:u13:progress, +5:u01:", +8:u02:work, +12:u04:progress, +15:u09:in/progress, +14:u0A:progress/., +7:u0B:./", +11:u0C:work/in, +14:u0D:progress/0, +8:u10:work, +12:u12:progress, +8:u23:prog, +6:u31:ss, +7:u32:ess, +8:u33:ress, +5:u00:", +8:u01:work, +12:u03:progress, +14:u09:progress/., +7:u0A:./", +7:u0B:"/D, +15:u0C:in/progress, +12:u11:progress, +8:u00:work, +12:u02:progress, +7:u09:./", +7:u0A:"/D, +14:u0C:progress/., +12:u10:progress, +12:u01:progress, +7:u09:"/D, +7:u0C:./", +12:u00:progress, +16:u0B:Oran/Expires, +7:u0C:"/D, +16:u0A:Oran/Expires, +20:u0B:Expires/February, +16:u09:Oran/Expires, +20:u0A:Expires/February, +20:u09:Expires/February, +16:u0C:Oran/Expires, +20:u0C:Expires/February, +10:u0B:2020/[, +10:u0A:2020/[, +10:u09:2020/[, +10:u0C:2020/[, +14:u0B:]/Internet, +14:u0A:]/Internet, +8:u08:Flow, +14:u09:]/Internet, +8:u07:Flow, +11:u08:Balance, +21:u0B:Draft/Maintaining, +14:u0C:]/Internet, +8:u06:Flow, +11:u07:Balance, +21:u0A:Draft/Maintaining, +20:u0B:Maintaining/Flow, +8:u05:Flow, +11:u06:Balance, +21:u09:Draft/Maintaining, +20:u0A:Maintaining/Flow, +16:u0B:Flow/Balance, +8:u04:Flow, +11:u05:Balance, +20:u09:Maintaining/Flow, +16:u0A:Flow/Balance, +18:u0B:Balance/August, +21:u0C:Draft/Maintaining, +10:u0D:Flow/0, +6:u21:Fl, +7:u22:Flo, +8:u23:Flow, +8:u33:Flow, +8:u03:Flow, +11:u04:Balance, +16:u09:Flow/Balance, +18:u0A:Balance/August, +15:u0B:August/2019, +20:u0C:Maintaining/Flow, +13:u0D:Balance/0, +6:u21:Ba, +7:u22:Bal, +8:u23:Bala, +8:u02:Flow, +11:u03:Balance, +18:u09:Balance/August, +15:u0A:August/2019, +13:u0B:2019/This, +16:u0C:Flow/Balance, +8:u01:Flow, +11:u02:Balance, +15:u09:August/2019, +13:u0A:2019/This, +18:u0C:Balance/August, +8:u00:Flow, +11:u01:Balance, +13:u09:2019/This, +15:u0C:August/2019, +11:u00:Balance, +10:u08:expire, +13:u0C:2019/This, +10:u07:expire, +14:u0B:Draft/will, +10:u06:expire, +14:u0A:Draft/will, +15:u0B:will/expire, +10:u14:expire, +10:u05:expire, +14:u09:Draft/will, +15:u0A:will/expire, +13:u0B:expire/on, +10:u13:expire, +10:u04:expire, +15:u09:will/expire, +13:u0A:expire/on, +15:u0B:on/February, +14:u0C:Draft/will, +12:u0D:expire/0, +10:u12:expire, +8:u23:expi, +8:u33:pire, +10:u03:expire, +13:u09:expire/on, +15:u0A:on/February, +15:u0C:will/expire, +10:u11:expire, +10:u02:expire, +15:u09:on/February, +13:u0C:expire/on, +10:u10:expire, +10:u01:expire, +15:u0C:on/February, +10:u00:expire, +10:u0B:2020/., +10:u0A:2020/., +10:u09:2020/., +10:u0C:2020/., +8:u08:Code, +8:u07:Code, +14:u08:Components, +8:u06:Code, +14:u07:Components, +13:u08:extracted, +10:u0B:./Code, +8:u14:code, +8:u05:Code, +14:u06:Components, +13:u07:extracted, +8:u08:from, +10:u0A:./Code, +19:u0B:Code/Components, +8:u13:code, +14:u14:components, +8:u04:Code, +14:u05:Components, +13:u06:extracted, +8:u07:from, +10:u09:./Code, +19:u0A:Code/Components, +24:u0B:Components/extracted, +10:u0D:Code/0, +8:u12:code, +14:u13:components, +13:u14:extracted, +7:u22:Cod, +8:u23:Code, +7:u32:ode, +8:u33:Code, +8:u03:Code, +14:u04:Components, +13:u05:extracted, +8:u06:from, +19:u09:Code/Components, +24:u0A:Components/extracted, +18:u0B:extracted/from, +10:u0C:./Code, +16:u0D:Components/0, +8:u11:code, +14:u12:components, +13:u13:extracted, +8:u14:from, +8:u23:Comp, +8:u02:Code, +14:u03:Components, +13:u04:extracted, +8:u05:from, +8:u08:must, +24:u09:Components/extracted, +18:u0A:extracted/from, +13:u0B:from/this, +19:u0C:Code/Components, +15:u0D:extracted/0, +8:u10:code, +14:u11:components, +13:u12:extracted, +8:u13:from, +7:u22:ext, +8:u23:extr, +8:u33:cted, +8:u01:Code, +14:u02:Components, +13:u03:extracted, +8:u04:from, +8:u07:must, +11:u08:include, +18:u09:extracted/from, +13:u0A:from/this, +24:u0C:Components/extracted, +10:u0D:from/0, +14:u10:components, +13:u11:extracted, +8:u12:from, +6:u21:fr, +7:u22:fro, +8:u23:from, +7:u32:rom, +8:u33:from, +8:u00:Code, +14:u01:Components, +13:u02:extracted, +8:u03:from, +8:u06:must, +11:u07:include, +14:u08:Simplified, +13:u09:from/this, +17:u0B:document/must, +18:u0C:extracted/from, +13:u10:extracted, +8:u11:from, +8:u14:must, +14:u00:Components, +13:u01:extracted, +8:u02:from, +8:u05:must, +11:u06:include, +14:u07:Simplified, +7:u08:BSD, +17:u0A:document/must, +16:u0B:must/include, +13:u0C:from/this, +8:u10:from, +8:u13:must, +11:u14:include, +13:u00:extracted, +8:u01:from, +8:u04:must, +11:u05:include, +14:u06:Simplified, +7:u07:BSD, +11:u08:License, +17:u09:document/must, +16:u0A:must/include, +22:u0B:include/Simplified, +10:u0D:must/0, +8:u12:must, +11:u13:include, +14:u14:simplified, +7:u22:mus, +8:u23:must, +8:u33:must, +8:u00:from, +8:u03:must, +11:u04:include, +14:u05:Simplified, +7:u06:BSD, +11:u07:License, +8:u08:text, +16:u09:must/include, +22:u0A:include/Simplified, +18:u0B:Simplified/BSD, +17:u0C:document/must, +13:u0D:include/0, +8:u11:must, +11:u12:include, +14:u13:simplified, +7:u14:bsd, +7:u32:ude, +8:u33:lude, +8:u02:must, +11:u03:include, +14:u04:Simplified, +7:u05:BSD, +11:u06:License, +8:u07:text, +22:u09:include/Simplified, +18:u0A:Simplified/BSD, +15:u0B:BSD/License, +16:u0C:must/include, +16:u0D:Simplified/0, +8:u10:must, +11:u11:include, +14:u12:simplified, +7:u13:bsd, +7:u22:Sim, +8:u23:Simp, +8:u01:must, +11:u02:include, +14:u03:Simplified, +7:u04:BSD, +11:u05:License, +8:u06:text, +13:u08:described, +18:u09:Simplified/BSD, +15:u0A:BSD/License, +16:u0B:License/text, +22:u0C:include/Simplified, +9:u0D:BSD/0, +11:u10:include, +14:u11:simplified, +7:u12:bsd, +8:u14:text, +6:u21:BS, +7:u22:BSD, +7:u23:BSD, +6:u31:SD, +7:u32:BSD, +7:u33:BSD, +8:u00:must, +11:u01:include, +14:u02:Simplified, +7:u03:BSD, +11:u04:License, +8:u05:text, +13:u07:described, +15:u09:BSD/License, +16:u0A:License/text, +11:u0B:text/as, +18:u0C:Simplified/BSD, +13:u0D:License/0, +14:u10:simplified, +7:u11:bsd, +8:u13:text, +7:u22:Lic, +8:u23:Lice, +11:u00:include, +14:u01:Simplified, +7:u02:BSD, +11:u03:License, +8:u04:text, +13:u06:described, +16:u09:License/text, +11:u0A:text/as, +16:u0B:as/described, +15:u0C:BSD/License, +10:u0D:text/0, +7:u10:bsd, +8:u12:text, +13:u14:described, +7:u22:tex, +8:u23:text, +6:u31:xt, +7:u32:ext, +8:u33:text, +14:u00:Simplified, +7:u01:BSD, +11:u02:License, +8:u03:text, +13:u05:described, +5:u08:4, +11:u09:text/as, +16:u0A:as/described, +16:u0B:described/in, +16:u0C:License/text, +8:u11:text, +13:u13:described, +7:u00:BSD, +11:u01:License, +8:u02:text, +13:u04:described, +5:u07:4, +16:u09:as/described, +16:u0A:described/in, +14:u0B:in/Section, +11:u0C:text/as, +15:u0D:described/0, +8:u10:text, +13:u12:described, +7:u32:bed, +8:u33:ibed, +11:u00:License, +8:u01:text, +13:u03:described, +5:u06:4, +5:u08:e, +16:u09:described/in, +14:u0A:in/Section, +13:u0B:Section/4, +16:u0C:as/described, +13:u11:described, +5:u14:4, +8:u00:text, +13:u02:described, +5:u05:4, +5:u07:e, +14:u09:in/Section, +13:u0A:Section/4, +7:u0B:4/., +16:u0C:described/in, +13:u10:described, +5:u13:4, +13:u01:described, +5:u04:4, +5:u06:e, +13:u09:Section/4, +7:u0A:4/., +7:u0B:./e, +14:u0C:in/Section, +7:u0D:4/0, +5:u12:4, +5:u14:e, +5:u21:4, +5:u22:4, +5:u23:4, +5:u31:4, +5:u32:4, +5:u33:4, +13:u00:described, +5:u03:4, +5:u05:e, +7:u09:4/., +7:u0A:./e, +8:u0B:e/of, +13:u0C:Section/4, +5:u11:4, +5:u13:e, +5:u02:4, +5:u04:e, +7:u09:./e, +8:u0A:e/of, +7:u0C:4/., +7:u0D:e/0, +5:u10:4, +5:u12:e, +5:u21:e, +5:u22:e, +5:u23:e, +5:u31:e, +5:u32:e, +5:u33:e, +5:u01:4, +5:u03:e, +8:u09:e/of, +13:u0B:the/Trust, +7:u0C:./e, +5:u11:e, +5:u00:4, +5:u02:e, +13:u0A:the/Trust, +15:u0B:Trust/Legal, +8:u0C:e/of, +5:u10:e, +5:u01:e, +13:u09:the/Trust, +15:u0A:Trust/Legal, +5:u00:e, +12:u08:provided, +15:u09:Trust/Legal, +18:u0B:Provisions/and, +13:u0C:the/Trust, +12:u07:provided, +11:u08:without, +18:u0A:Provisions/and, +11:u0B:and/are, +15:u0C:Trust/Legal, +12:u06:provided, +11:u07:without, +12:u08:warranty, +18:u09:Provisions/and, +11:u0A:and/are, +16:u0B:are/provided, +12:u14:provided, +12:u05:provided, +11:u06:without, +12:u07:warranty, +11:u09:and/are, +16:u0A:are/provided, +20:u0B:provided/without, +18:u0C:Provisions/and, +12:u13:provided, +11:u14:without, +12:u04:provided, +11:u05:without, +12:u06:warranty, +16:u09:are/provided, +20:u0A:provided/without, +20:u0B:without/warranty, +11:u0C:and/are, +14:u0D:provided/0, +12:u12:provided, +11:u13:without, +12:u14:warranty, +8:u33:ided, +12:u03:provided, +11:u04:without, +12:u05:warranty, +20:u09:provided/without, +20:u0A:without/warranty, +15:u0B:warranty/as, +16:u0C:are/provided, +13:u0D:without/0, +12:u11:provided, +11:u12:without, +12:u13:warranty, +8:u33:hout, +12:u02:provided, +11:u03:without, +12:u04:warranty, +20:u09:without/warranty, +15:u0A:warranty/as, +20:u0C:provided/without, +14:u0D:warranty/0, +12:u10:provided, +11:u11:without, +12:u12:warranty, +6:u21:wa, +7:u22:war, +8:u23:warr, +8:u33:anty, +12:u01:provided, +11:u02:without, +12:u03:warranty, +15:u09:warranty/as, +20:u0C:without/warranty, +11:u10:without, +12:u11:warranty, +12:u00:provided, +11:u01:without, +12:u02:warranty, +10:u0B:in/the, +15:u0C:warranty/as, +12:u10:warranty, +11:u00:without, +12:u01:warranty, +10:u0A:in/the, +18:u0B:the/Simplified, +12:u00:warranty, +10:u09:in/the, +18:u0A:the/Simplified, +8:u08:Dave, +18:u09:the/Simplified, +10:u0C:in/the, +8:u07:Dave, +13:u0B:License/., +18:u0C:the/Simplified, +8:u06:Dave, +13:u0A:License/., +10:u0B:./Dave, +8:u14:dave, +8:u05:Dave, +13:u09:License/., +10:u0A:./Dave, +13:u0B:Dave/Oran, +8:u13:dave, +8:u04:Dave, +10:u09:./Dave, +13:u0A:Dave/Oran, +16:u0B:Oran/Network, +13:u0C:License/., +10:u0D:Dave/0, +8:u12:dave, +7:u22:Dav, +8:u23:Dave, +8:u33:Dave, +8:u03:Dave, +13:u09:Dave/Oran, +16:u0A:Oran/Network, +10:u0C:./Dave, +8:u11:dave, +8:u02:Dave, +16:u09:Oran/Network, +13:u0C:Dave/Oran, +8:u10:dave, +8:u01:Dave, +16:u0C:Oran/Network, +8:u00:Dave, +9:u08:Shady, +9:u07:Shady, +8:u08:Hill, +12:u0B:Design/4, +9:u06:Shady, +8:u07:Hill, +10:u08:Square, +12:u0A:Design/4, +11:u0B:4/Shady, +9:u14:shady, +9:u05:Shady, +8:u06:Hill, +10:u07:Square, +13:u08:Cambridge, +12:u09:Design/4, +11:u0A:4/Shady, +14:u0B:Shady/Hill, +9:u13:shady, +8:u14:hill, +9:u04:Shady, +8:u05:Hill, +10:u06:Square, +13:u07:Cambridge, +11:u09:4/Shady, +14:u0A:Shady/Hill, +15:u0B:Hill/Square, +12:u0C:Design/4, +11:u0D:Shady/0, +9:u12:shady, +8:u13:hill, +10:u14:square, +6:u21:Sh, +7:u22:Sha, +8:u23:Shad, +6:u31:dy, +7:u32:ady, +8:u33:hady, +9:u03:Shady, +8:u04:Hill, +10:u05:Square, +13:u06:Cambridge, +6:u08:MA, +14:u09:Shady/Hill, +15:u0A:Hill/Square, +20:u0B:Square/Cambridge, +11:u0C:4/Shady, +10:u0D:Hill/0, +9:u11:shady, +8:u12:hill, +10:u13:square, +13:u14:cambridge, +5:u20:H, +6:u21:Hi, +7:u22:Hil, +8:u23:Hill, +8:u33:Hill, +9:u02:Shady, +8:u03:Hill, +10:u04:Square, +13:u05:Cambridge, +6:u07:MA, +9:u08:02138, +15:u09:Hill/Square, +20:u0A:Square/Cambridge, +15:u0B:Cambridge/,, +14:u0C:Shady/Hill, +12:u0D:Square/0, +9:u10:shady, +8:u11:hill, +10:u12:square, +13:u13:cambridge, +6:u21:Sq, +7:u22:Squ, +8:u23:Squa, +8:u33:uare, +9:u01:Shady, +8:u02:Hill, +10:u03:Square, +13:u04:Cambridge, +6:u06:MA, +9:u07:02138, +7:u08:USA, +20:u09:Square/Cambridge, +15:u0A:Cambridge/,, +8:u0B:,/MA, +15:u0C:Hill/Square, +15:u0D:Cambridge/0, +8:u10:hill, +10:u11:square, +13:u12:cambridge, +6:u14:ma, +7:u22:Cam, +8:u23:Camb, +7:u32:dge, +8:u33:idge, +9:u00:Shady, +8:u01:Hill, +10:u02:Square, +13:u03:Cambridge, +6:u05:MA, +9:u06:02138, +7:u07:USA, +15:u09:Cambridge/,, +8:u0A:,/MA, +12:u0B:MA/02138, +20:u0C:Square/Cambridge, +10:u10:square, +13:u11:cambridge, +6:u13:ma, +9:u14:02138, +8:u00:Hill, +10:u01:Square, +13:u02:Cambridge, +6:u04:MA, +9:u05:02138, +7:u06:USA, +8:u09:,/MA, +12:u0A:MA/02138, +13:u0B:02138/USA, +15:u0C:Cambridge/,, +8:u0D:MA/0, +13:u10:cambridge, +6:u12:ma, +9:u13:02138, +7:u14:usa, +6:u21:MA, +6:u22:MA, +6:u23:MA, +6:u31:MA, +6:u32:MA, +6:u33:MA, +10:u00:Square, +13:u01:Cambridge, +6:u03:MA, +9:u04:02138, +7:u05:USA, +20:u08:daveoran@orandom, +12:u09:MA/02138, +13:u0A:02138/USA, +13:u0B:USA/Email, +8:u0C:,/MA, +11:u0D:02138/0, +6:u11:ma, +9:u12:02138, +7:u13:usa, +6:u21:02, +7:u22:021, +8:u23:0213, +6:u31:38, +7:u32:138, +8:u33:2138, +13:u00:Cambridge, +6:u02:MA, +9:u03:02138, +7:u04:USA, +20:u07:daveoran@orandom, +13:u09:02138/USA, +13:u0A:USA/Email, +12:u0C:MA/02138, +9:u0D:USA/0, +6:u10:ma, +9:u11:02138, +7:u12:usa, +6:u21:US, +7:u22:USA, +7:u23:USA, +6:u31:SA, +7:u32:USA, +7:u33:USA, +6:u01:MA, +9:u02:02138, +7:u03:USA, +20:u06:daveoran@orandom, +7:u08:net, +13:u09:USA/Email, +22:u0B::/daveoran@orandom, +13:u0C:02138/USA, +9:u10:02138, +7:u11:usa, +20:u14:daveoran@orandom, +6:u00:MA, +9:u01:02138, +7:u02:USA, +20:u05:daveoran@orandom, +7:u07:net, +22:u0A::/daveoran@orandom, +22:u0B:daveoran@orandom/., +13:u0C:USA/Email, +7:u10:usa, +20:u13:daveoran@orandom, +9:u00:02138, +7:u01:USA, +20:u04:daveoran@orandom, +7:u06:net, +22:u09::/daveoran@orandom, +22:u0A:daveoran@orandom/., +9:u0B:./net, +22:u0D:daveoran@orandom/0, +20:u12:daveoran@orandom, +7:u14:net, +7:u22:dav, +8:u23:dave, +7:u32:dom, +8:u33:ndom, +7:u00:USA, +20:u03:daveoran@orandom, +7:u05:net, +22:u09:daveoran@orandom/., +9:u0A:./net, +12:u0B:net/_x+1, +22:u0C::/daveoran@orandom, +20:u11:daveoran@orandom, +7:u13:net, +20:u02:daveoran@orandom, +7:u04:net, +9:u09:./net, +12:u0A:net/_x+1, +22:u0C:daveoran@orandom/., +9:u0D:net/0, +20:u10:daveoran@orandom, +7:u12:net, +7:u23:net, +7:u33:net, +12:u06:20190708, +17:u0B:date/20190708, +12:u14:20190708, +12:u05:20190708, +17:u0A:date/20190708, +14:u0B:20190708/;, +12:u13:20190708, +12:u04:20190708, +17:u09:date/20190708, +14:u0A:20190708/;, +14:u0D:20190708/0, +12:u12:20190708, +6:u31:08, +7:u32:708, +8:u33:0708, +12:u03:20190708, +14:u09:20190708/;, +17:u0C:date/20190708, +12:u11:20190708, +12:u02:20190708, +12:u08:20190710, +14:u0C:20190708/;, +12:u10:20190708, +12:u01:20190708, +12:u07:20190710, +12:u00:20190708, +11:u08:Working, +15:u0B:on/20190710, +11:u07:Working, +15:u0A:on/20190710, +20:u0B:20190710/Network, +11:u06:Working, +15:u09:on/20190710, +20:u0A:20190710/Network, +19:u0B:Network/Working, +11:u05:Working, +20:u09:20190710/Network, +19:u0A:Network/Working, +17:u0B:Working/Group, +15:u0C:on/20190710, +11:u04:Working, +13:u08:Learmonth, +19:u09:Network/Working, +17:u0A:Working/Group, +11:u0B:Group/I, +20:u0C:20190710/Network, +13:u0D:Working/0, +7:u22:Wor, +8:u23:Work, +11:u03:Working, +13:u07:Learmonth, +17:u09:Working/Group, +11:u0A:Group/I, +19:u0C:Network/Working, +11:u02:Working, +13:u06:Learmonth, +11:u09:Group/I, +15:u0B:./Learmonth, +17:u0C:Working/Group, +13:u14:learmonth, +11:u01:Working, +13:u05:Learmonth, +15:u0A:./Learmonth, +22:u0B:Learmonth/Internet, +11:u0C:Group/I, +13:u13:learmonth, +11:u00:Working, +13:u04:Learmonth, +7:u08:Tor, +15:u09:./Learmonth, +22:u0A:Learmonth/Internet, +15:u0D:Learmonth/0, +13:u12:learmonth, +7:u22:Lea, +8:u23:Lear, +7:u32:nth, +8:u33:onth, +13:u03:Learmonth, +7:u07:Tor, +11:u08:Project, +22:u09:Learmonth/Internet, +15:u0C:./Learmonth, +13:u11:learmonth, +13:u02:Learmonth, +7:u06:Tor, +11:u07:Project, +13:u0B:Draft/Tor, +22:u0C:Learmonth/Internet, +13:u10:learmonth, +7:u14:tor, +13:u01:Learmonth, +7:u05:Tor, +11:u06:Project, +13:u0A:Draft/Tor, +15:u0B:Tor/Project, +7:u13:tor, +11:u14:project, +13:u00:Learmonth, +7:u04:Tor, +11:u05:Project, +13:u09:Draft/Tor, +15:u0A:Tor/Project, +20:u0B:Project/Intended, +9:u0D:Tor/0, +7:u12:tor, +11:u13:project, +6:u21:To, +7:u22:Tor, +7:u23:Tor, +7:u32:Tor, +7:u33:Tor, +7:u03:Tor, +11:u04:Project, +17:u08:Informational, +15:u09:Tor/Project, +20:u0A:Project/Intended, +13:u0C:Draft/Tor, +13:u0D:Project/0, +7:u11:tor, +11:u12:project, +8:u23:Proj, +7:u02:Tor, +11:u03:Project, +17:u07:Informational, +20:u09:Project/Intended, +15:u0C:Tor/Project, +7:u10:tor, +11:u11:project, +7:u01:Tor, +11:u02:Project, +17:u06:Informational, +5:u08:8, +19:u0B::/Informational, +20:u0C:Project/Intended, +11:u10:project, +17:u14:informational, +7:u00:Tor, +11:u01:Project, +17:u05:Informational, +5:u07:8, +19:u0A::/Informational, +22:u0B:Informational/July, +17:u13:informational, +11:u00:Project, +17:u04:Informational, +5:u06:8, +19:u09::/Informational, +22:u0A:Informational/July, +10:u0B:July/8, +19:u0D:Informational/0, +17:u12:informational, +5:u14:8, +17:u03:Informational, +5:u05:8, +22:u09:Informational/July, +10:u0A:July/8, +7:u0B:8/,, +19:u0C::/Informational, +17:u11:informational, +5:u13:8, +17:u02:Informational, +5:u04:8, +10:u09:July/8, +7:u0A:8/,, +22:u0C:Informational/July, +7:u0D:8/0, +17:u10:informational, +5:u12:8, +5:u21:8, +5:u22:8, +5:u23:8, +5:u31:8, +5:u32:8, +5:u33:8, +17:u01:Informational, +5:u03:8, +11:u08:January, +7:u09:8/,, +10:u0C:July/8, +5:u11:8, +17:u00:Informational, +5:u02:8, +11:u07:January, +5:u08:9, +7:u0C:8/,, +5:u10:8, +5:u01:8, +11:u06:January, +5:u07:9, +13:u0B::/January, +11:u14:january, +5:u00:8, +11:u05:January, +5:u06:9, +13:u0A::/January, +13:u0B:January/9, +11:u13:january, +5:u14:9, +11:u04:January, +5:u05:9, +14:u08:Guidelines, +13:u09::/January, +13:u0A:January/9, +7:u0B:9/,, +13:u0D:January/0, +11:u12:january, +5:u13:9, +6:u21:Ja, +7:u22:Jan, +8:u23:Janu, +11:u03:January, +5:u04:9, +14:u07:Guidelines, +13:u09:January/9, +7:u0A:9/,, +13:u0C::/January, +7:u0D:9/0, +11:u11:january, +5:u12:9, +5:u21:9, +5:u22:9, +5:u23:9, +5:u31:9, +5:u32:9, +5:u33:9, +11:u02:January, +5:u03:9, +14:u06:Guidelines, +14:u08:Performing, +7:u09:9/,, +19:u0B:2020/Guidelines, +13:u0C:January/9, +11:u10:january, +5:u11:9, +14:u14:guidelines, +11:u01:January, +5:u02:9, +14:u05:Guidelines, +14:u07:Performing, +8:u08:Safe, +19:u0A:2020/Guidelines, +18:u0B:Guidelines/for, +7:u0C:9/,, +5:u10:9, +14:u13:guidelines, +11:u00:January, +5:u01:9, +14:u04:Guidelines, +14:u06:Performing, +8:u07:Safe, +15:u08:Measurement, +19:u09:2020/Guidelines, +18:u0A:Guidelines/for, +18:u0B:for/Performing, +16:u0D:Guidelines/0, +14:u12:guidelines, +14:u14:performing, +6:u21:Gu, +7:u22:Gui, +8:u23:Guid, +5:u00:9, +14:u03:Guidelines, +14:u05:Performing, +8:u06:Safe, +15:u07:Measurement, +18:u09:Guidelines/for, +18:u0A:for/Performing, +19:u0B:Performing/Safe, +19:u0C:2020/Guidelines, +14:u11:guidelines, +14:u13:performing, +8:u14:safe, +14:u02:Guidelines, +14:u04:Performing, +8:u05:Safe, +15:u06:Measurement, +18:u09:for/Performing, +19:u0A:Performing/Safe, +20:u0B:Safe/Measurement, +18:u0C:Guidelines/for, +16:u0D:Performing/0, +14:u10:guidelines, +14:u12:performing, +8:u13:safe, +15:u14:measurement, +6:u21:Pe, +7:u22:Per, +8:u23:Perf, +8:u33:ming, +14:u01:Guidelines, +14:u03:Performing, +8:u04:Safe, +15:u05:Measurement, +19:u09:Performing/Safe, +20:u0A:Safe/Measurement, +18:u0B:Measurement/on, +18:u0C:for/Performing, +10:u0D:Safe/0, +14:u11:performing, +8:u12:safe, +15:u13:measurement, +6:u21:Sa, +7:u22:Saf, +8:u23:Safe, +6:u31:fe, +7:u32:afe, +8:u33:Safe, +14:u00:Guidelines, +14:u02:Performing, +8:u03:Safe, +15:u04:Measurement, +20:u09:Safe/Measurement, +18:u0A:Measurement/on, +19:u0C:Performing/Safe, +17:u0D:Measurement/0, +14:u10:performing, +8:u11:safe, +15:u12:measurement, +7:u22:Mea, +8:u23:Meas, +14:u01:Performing, +8:u02:Safe, +15:u03:Measurement, +18:u09:Measurement/on, +20:u0C:Safe/Measurement, +8:u10:safe, +15:u11:measurement, +14:u00:Performing, +8:u01:Safe, +15:u02:Measurement, +8:u08:irtf, +18:u0B:Internet/draft, +18:u0C:Measurement/on, +15:u10:measurement, +8:u00:Safe, +15:u01:Measurement, +8:u07:irtf, +18:u0A:Internet/draft, +15:u00:Measurement, +8:u06:irtf, +9:u08:pearg, +18:u09:Internet/draft, +10:u0B:-/irtf, +8:u05:irtf, +9:u07:pearg, +10:u0A:-/irtf, +10:u0B:irtf/-, +18:u0C:Internet/draft, +8:u04:irtf, +9:u06:pearg, +8:u08:safe, +10:u09:-/irtf, +10:u0A:irtf/-, +11:u0B:-/pearg, +10:u0D:irtf/1, +9:u14:pearg, +6:u21:ir, +7:u22:irt, +8:u23:irtf, +7:u32:rtf, +8:u33:irtf, +8:u03:irtf, +9:u05:pearg, +8:u07:safe, +10:u09:irtf/-, +11:u0A:-/pearg, +11:u0B:pearg/-, +10:u0C:-/irtf, +9:u13:pearg, +8:u02:irtf, +9:u04:pearg, +8:u06:safe, +12:u08:internet, +11:u09:-/pearg, +11:u0A:pearg/-, +10:u0B:-/safe, +10:u0C:irtf/-, +11:u0D:pearg/1, +9:u12:pearg, +7:u22:pea, +8:u23:pear, +7:u32:arg, +8:u33:earg, +8:u01:irtf, +9:u03:pearg, +8:u05:safe, +12:u07:internet, +11:u09:pearg/-, +10:u0A:-/safe, +10:u0B:safe/-, +11:u0C:-/pearg, +9:u11:pearg, +8:u00:irtf, +9:u02:pearg, +8:u04:safe, +12:u06:internet, +15:u08:measurement, +10:u09:-/safe, +10:u0A:safe/-, +14:u0B:-/internet, +11:u0C:pearg/-, +10:u0D:safe/1, +9:u10:pearg, +6:u21:sa, +7:u22:saf, +8:u23:safe, +8:u33:safe, +9:u01:pearg, +8:u03:safe, +12:u05:internet, +15:u07:measurement, +10:u09:safe/-, +14:u0A:-/internet, +14:u0B:internet/-, +10:u0C:-/safe, +9:u00:pearg, +8:u02:safe, +12:u04:internet, +15:u06:measurement, +14:u09:-/internet, +14:u0A:internet/-, +17:u0B:-/measurement, +10:u0C:safe/-, +14:u0D:internet/1, +8:u01:safe, +12:u03:internet, +15:u05:measurement, +14:u09:internet/-, +17:u0A:-/measurement, +17:u0B:measurement/-, +14:u0C:-/internet, +8:u00:safe, +12:u02:internet, +15:u04:measurement, +15:u08:Researchers, +17:u09:-/measurement, +17:u0A:measurement/-, +14:u0C:internet/-, +17:u0D:measurement/1, +7:u22:mea, +8:u23:meas, +12:u01:internet, +15:u03:measurement, +15:u07:Researchers, +17:u09:measurement/-, +17:u0C:-/measurement, +12:u00:internet, +15:u02:measurement, +15:u06:Researchers, +12:u08:industry, +24:u0B:Abstract/Researchers, +17:u0C:measurement/-, +15:u14:researchers, +15:u01:measurement, +15:u05:Researchers, +12:u07:industry, +24:u0A:Abstract/Researchers, +20:u0B:Researchers/from, +15:u13:researchers, +15:u00:measurement, +15:u04:Researchers, +12:u06:industry, +12:u08:academia, +24:u09:Abstract/Researchers, +20:u0A:Researchers/from, +17:u0B:from/industry, +17:u0D:Researchers/0, +15:u12:researchers, +12:u14:industry, +8:u33:hers, +15:u03:Researchers, +12:u05:industry, +12:u07:academia, +9:u08:often, +20:u09:Researchers/from, +17:u0A:from/industry, +16:u0B:industry/and, +24:u0C:Abstract/Researchers, +15:u11:researchers, +12:u13:industry, +15:u02:Researchers, +12:u04:industry, +12:u06:academia, +9:u07:often, +17:u09:from/industry, +16:u0A:industry/and, +16:u0B:and/academia, +20:u0C:Researchers/from, +14:u0D:industry/0, +15:u10:researchers, +12:u12:industry, +12:u14:academia, +8:u23:indu, +7:u32:try, +8:u33:stry, +15:u01:Researchers, +12:u03:industry, +12:u05:academia, +9:u06:often, +16:u09:industry/and, +16:u0A:and/academia, +18:u0B:academia/often, +17:u0C:from/industry, +12:u11:industry, +12:u13:academia, +9:u14:often, +15:u00:Researchers, +12:u02:industry, +12:u04:academia, +9:u05:often, +16:u08:measurements, +16:u09:and/academia, +18:u0A:academia/often, +13:u0B:often/use, +16:u0C:industry/and, +14:u0D:academia/0, +12:u10:industry, +12:u12:academia, +9:u13:often, +7:u22:aca, +8:u23:acad, +7:u32:mia, +8:u33:emia, +12:u01:industry, +12:u03:academia, +9:u04:often, +16:u07:measurements, +18:u09:academia/often, +13:u0A:often/use, +16:u0C:and/academia, +11:u0D:often/0, +12:u11:academia, +9:u12:often, +7:u22:oft, +8:u23:ofte, +7:u32:ten, +8:u33:ften, +12:u00:industry, +12:u02:academia, +9:u03:often, +16:u06:measurements, +8:u08:part, +13:u09:often/use, +25:u0B:Internet/measurements, +18:u0C:academia/often, +12:u10:academia, +9:u11:often, +16:u14:measurements, +12:u01:academia, +9:u02:often, +16:u05:measurements, +8:u07:part, +25:u0A:Internet/measurements, +19:u0B:measurements/as, +13:u0C:often/use, +9:u10:often, +16:u13:measurements, +12:u00:academia, +9:u01:often, +16:u04:measurements, +8:u06:part, +25:u09:Internet/measurements, +19:u0A:measurements/as, +11:u0B:as/part, +18:u0D:measurements/0, +16:u12:measurements, +8:u14:part, +9:u00:often, +16:u03:measurements, +8:u05:part, +19:u09:measurements/as, +11:u0A:as/part, +11:u0B:part/of, +25:u0C:Internet/measurements, +16:u11:measurements, +8:u13:part, +16:u02:measurements, +8:u04:part, +11:u09:as/part, +11:u0A:part/of, +12:u0B:of/their, +19:u0C:measurements/as, +10:u0D:part/0, +16:u10:measurements, +8:u12:part, +6:u31:rt, +7:u32:art, +8:u33:part, +16:u01:measurements, +8:u03:part, +9:u08:While, +11:u09:part/of, +12:u0A:of/their, +14:u0B:their/work, +11:u0C:as/part, +8:u11:part, +16:u00:measurements, +8:u02:part, +9:u07:While, +12:u09:of/their, +14:u0A:their/work, +10:u0B:work/., +11:u0C:part/of, +8:u10:part, +8:u01:part, +9:u06:While, +14:u09:their/work, +10:u0A:work/., +11:u0B:./While, +12:u0C:of/their, +9:u14:while, +8:u00:part, +9:u05:While, +10:u09:work/., +11:u0A:./While, +15:u0B:While/these, +14:u0C:their/work, +9:u13:while, +9:u04:While, +8:u08:give, +11:u09:./While, +15:u0A:While/these, +22:u0B:these/measurements, +10:u0C:work/., +11:u0D:While/0, +9:u12:while, +6:u21:Wh, +7:u22:Whi, +8:u23:Whil, +7:u32:ile, +8:u33:hile, +9:u03:While, +8:u07:give, +11:u08:insight, +15:u09:While/these, +22:u0A:these/measurements, +20:u0B:measurements/can, +11:u0C:./While, +9:u11:while, +9:u02:While, +8:u06:give, +11:u07:insight, +22:u09:these/measurements, +20:u0A:measurements/can, +12:u0B:can/give, +15:u0C:While/these, +9:u10:while, +8:u14:give, +9:u01:While, +8:u05:give, +11:u06:insight, +20:u09:measurements/can, +12:u0A:can/give, +16:u0B:give/insight, +22:u0C:these/measurements, +8:u13:give, +11:u14:insight, +9:u00:While, +8:u04:give, +11:u05:insight, +15:u08:functioning, +12:u09:can/give, +16:u0A:give/insight, +16:u0B:insight/into, +20:u0C:measurements/can, +10:u0D:give/0, +8:u12:give, +11:u13:insight, +6:u21:gi, +7:u22:giv, +8:u23:give, +8:u33:give, +8:u03:give, +11:u04:insight, +15:u07:functioning, +16:u09:give/insight, +16:u0A:insight/into, +12:u0C:can/give, +13:u0D:insight/0, +8:u11:give, +11:u12:insight, +7:u22:ins, +8:u23:insi, +8:u02:give, +11:u03:insight, +15:u06:functioning, +9:u08:usage, +16:u09:insight/into, +19:u0B:the/functioning, +16:u0C:give/insight, +8:u10:give, +11:u11:insight, +15:u14:functioning, +8:u01:give, +11:u02:insight, +15:u05:functioning, +9:u07:usage, +19:u0A:the/functioning, +19:u0B:functioning/and, +16:u0C:insight/into, +11:u10:insight, +15:u13:functioning, +8:u00:give, +11:u01:insight, +15:u04:functioning, +9:u06:usage, +19:u09:the/functioning, +19:u0A:functioning/and, +13:u0B:and/usage, +17:u0D:functioning/0, +15:u12:functioning, +9:u14:usage, +7:u22:fun, +8:u23:func, +11:u00:insight, +15:u03:functioning, +9:u05:usage, +19:u09:functioning/and, +13:u0A:and/usage, +12:u0B:usage/of, +19:u0C:the/functioning, +15:u11:functioning, +9:u13:usage, +15:u02:functioning, +9:u04:usage, +13:u09:and/usage, +12:u0A:usage/of, +19:u0C:functioning/and, +11:u0D:usage/0, +15:u10:functioning, +9:u12:usage, +7:u22:usa, +8:u23:usag, +15:u01:functioning, +9:u03:usage, +12:u09:usage/of, +13:u0C:and/usage, +9:u11:usage, +15:u00:functioning, +9:u02:usage, +14:u0B:Internet/,, +12:u0C:usage/of, +9:u10:usage, +9:u01:usage, +8:u08:come, +14:u0A:Internet/,, +10:u0B:,/they, +9:u00:usage, +8:u07:come, +14:u09:Internet/,, +10:u0A:,/they, +12:u0B:they/can, +8:u06:come, +10:u09:,/they, +12:u0A:they/can, +12:u0B:can/come, +14:u0C:Internet/,, +8:u14:come, +8:u05:come, +8:u08:cost, +12:u09:they/can, +12:u0A:can/come, +11:u0B:come/at, +10:u0C:,/they, +8:u13:come, +8:u04:come, +8:u07:cost, +12:u09:can/come, +11:u0A:come/at, +10:u0B:at/the, +12:u0C:they/can, +10:u0D:come/0, +8:u12:come, +8:u23:come, +8:u33:come, +8:u03:come, +8:u06:cost, +8:u08:user, +11:u09:come/at, +10:u0A:at/the, +12:u0B:the/cost, +12:u0C:can/come, +8:u11:come, +8:u14:cost, +8:u02:come, +8:u05:cost, +8:u07:user, +11:u08:privacy, +10:u09:at/the, +12:u0A:the/cost, +11:u0B:cost/of, +11:u0C:come/at, +8:u10:come, +8:u13:cost, +8:u01:come, +8:u04:cost, +8:u06:user, +11:u07:privacy, +12:u09:the/cost, +11:u0A:cost/of, +11:u0B:of/user, +10:u0C:at/the, +10:u0D:cost/0, +8:u12:cost, +8:u14:user, +7:u22:cos, +8:u23:cost, +7:u32:ost, +8:u33:cost, +8:u00:come, +8:u03:cost, +8:u05:user, +11:u06:privacy, +11:u09:cost/of, +11:u0A:of/user, +16:u0B:user/privacy, +12:u0C:the/cost, +8:u11:cost, +8:u13:user, +11:u14:privacy, +8:u02:cost, +8:u04:user, +11:u05:privacy, +11:u09:of/user, +16:u0A:user/privacy, +13:u0B:privacy/., +11:u0C:cost/of, +10:u0D:user/0, +8:u10:cost, +8:u12:user, +11:u13:privacy, +7:u32:ser, +8:u33:user, +8:u01:cost, +8:u03:user, +11:u04:privacy, +16:u09:user/privacy, +13:u0A:privacy/., +11:u0C:of/user, +13:u0D:privacy/0, +8:u11:user, +11:u12:privacy, +7:u22:pri, +8:u23:priv, +6:u31:cy, +7:u32:acy, +8:u33:vacy, +8:u00:cost, +8:u02:user, +11:u03:privacy, +14:u08:guidelines, +13:u09:privacy/., +16:u0C:user/privacy, +8:u10:user, +11:u11:privacy, +8:u01:user, +11:u02:privacy, +14:u07:guidelines, +13:u0C:privacy/., +11:u10:privacy, +8:u00:user, +11:u01:privacy, +14:u06:guidelines, +12:u08:ensuring, +24:u0B:describes/guidelines, +11:u00:privacy, +14:u05:guidelines, +12:u07:ensuring, +24:u0A:describes/guidelines, +18:u0B:guidelines/for, +14:u04:guidelines, +12:u06:ensuring, +8:u08:such, +24:u09:describes/guidelines, +18:u0A:guidelines/for, +16:u0B:for/ensuring, +16:u0D:guidelines/0, +12:u14:ensuring, +6:u21:gu, +7:u22:gui, +8:u23:guid, +14:u03:guidelines, +12:u05:ensuring, +8:u07:such, +18:u09:guidelines/for, +16:u0A:for/ensuring, +17:u0B:ensuring/that, +24:u0C:describes/guidelines, +12:u13:ensuring, +14:u02:guidelines, +12:u04:ensuring, +8:u06:such, +16:u09:for/ensuring, +17:u0A:ensuring/that, +13:u0B:that/such, +18:u0C:guidelines/for, +14:u0D:ensuring/0, +12:u12:ensuring, +8:u14:such, +7:u22:ens, +8:u23:ensu, +14:u01:guidelines, +12:u03:ensuring, +8:u05:such, +17:u09:ensuring/that, +13:u0A:that/such, +21:u0B:such/measurements, +16:u0C:for/ensuring, +12:u11:ensuring, +8:u13:such, +14:u00:guidelines, +12:u02:ensuring, +8:u04:such, +13:u09:that/such, +21:u0A:such/measurements, +17:u0C:ensuring/that, +10:u0D:such/0, +12:u10:ensuring, +8:u12:such, +7:u22:suc, +8:u23:such, +8:u33:such, +12:u01:ensuring, +8:u03:such, +7:u08:out, +21:u09:such/measurements, +10:u0B:can/be, +13:u0C:that/such, +8:u11:such, +12:u00:ensuring, +8:u02:such, +7:u07:out, +10:u08:safely, +10:u0A:can/be, +14:u0B:be/carried, +21:u0C:such/measurements, +8:u10:such, +8:u01:such, +7:u06:out, +10:u07:safely, +10:u09:can/be, +14:u0A:be/carried, +15:u0B:carried/out, +7:u14:out, +8:u00:such, +7:u05:out, +10:u06:safely, +14:u09:be/carried, +15:u0A:carried/out, +14:u0B:out/safely, +10:u0C:can/be, +7:u13:out, +10:u14:safely, +7:u04:out, +10:u05:safely, +15:u09:carried/out, +14:u0A:out/safely, +12:u0B:safely/., +14:u0C:be/carried, +9:u0D:out/0, +7:u12:out, +10:u13:safely, +6:u21:ou, +7:u22:out, +7:u23:out, +7:u33:out, +7:u03:out, +10:u04:safely, +14:u09:out/safely, +12:u0A:safely/., +15:u0C:carried/out, +12:u0D:safely/0, +7:u11:out, +10:u12:safely, +8:u33:fely, +7:u02:out, +10:u03:safely, +13:u08:solicited, +12:u09:safely/., +17:u0B:Note/Comments, +14:u0C:out/safely, +7:u10:out, +10:u11:safely, +7:u01:out, +10:u02:safely, +13:u07:solicited, +17:u0A:Note/Comments, +16:u0B:Comments/are, +12:u0C:safely/., +10:u10:safely, +7:u00:out, +10:u01:safely, +13:u06:solicited, +10:u08:should, +17:u09:Note/Comments, +16:u0A:Comments/are, +17:u0B:are/solicited, +13:u14:solicited, +10:u00:safely, +13:u05:solicited, +10:u07:should, +16:u09:Comments/are, +17:u0A:are/solicited, +17:u0B:solicited/and, +17:u0C:Note/Comments, +13:u13:solicited, +13:u04:solicited, +10:u06:should, +13:u08:addressed, +17:u09:are/solicited, +17:u0A:solicited/and, +14:u0B:and/should, +16:u0C:Comments/are, +15:u0D:solicited/0, +13:u12:solicited, +10:u14:should, +7:u22:sol, +8:u23:soli, +13:u03:solicited, +10:u05:should, +13:u07:addressed, +17:u09:solicited/and, +14:u0A:and/should, +13:u0B:should/be, +17:u0C:are/solicited, +13:u11:solicited, +10:u13:should, +13:u02:solicited, +10:u04:should, +13:u06:addressed, +14:u09:and/should, +13:u0A:should/be, +16:u0B:be/addressed, +17:u0C:solicited/and, +12:u0D:should/0, +13:u10:solicited, +10:u12:should, +13:u14:addressed, +6:u21:sh, +7:u22:sho, +8:u23:shou, +13:u01:solicited, +10:u03:should, +13:u05:addressed, +13:u09:should/be, +16:u0A:be/addressed, +16:u0B:addressed/to, +14:u0C:and/should, +10:u11:should, +13:u13:addressed, +13:u00:solicited, +10:u02:should, +13:u04:addressed, +16:u09:be/addressed, +16:u0A:addressed/to, +13:u0C:should/be, +15:u0D:addressed/0, +10:u10:should, +13:u12:addressed, +6:u21:ad, +7:u22:add, +8:u23:addr, +8:u33:ssed, +10:u01:should, +13:u03:addressed, +16:u09:addressed/to, +16:u0B:the/research, +16:u0C:be/addressed, +13:u11:addressed, +10:u00:should, +13:u02:addressed, +16:u0A:the/research, +16:u0C:addressed/to, +13:u10:addressed, +13:u01:addressed, +11:u08:mailing, +16:u09:the/research, +11:u0B:group/', +13:u00:addressed, +11:u07:mailing, +11:u0A:group/', +16:u0C:the/research, +11:u06:mailing, +11:u09:group/', +13:u0B:s/mailing, +11:u14:mailing, +11:u05:mailing, +14:u08:pearg@irtf, +13:u0A:s/mailing, +16:u0B:mailing/list, +11:u0C:group/', +11:u13:mailing, +11:u04:mailing, +14:u07:pearg@irtf, +13:u09:s/mailing, +16:u0A:mailing/list, +11:u0B:list/at, +13:u0D:mailing/0, +11:u12:mailing, +8:u23:mail, +8:u33:ling, +11:u03:mailing, +14:u06:pearg@irtf, +16:u09:mailing/list, +11:u0A:list/at, +17:u0B:at/pearg@irtf, +13:u0C:s/mailing, +11:u11:mailing, +14:u14:pearg@irtf, +11:u02:mailing, +14:u05:pearg@irtf, +11:u09:list/at, +17:u0A:at/pearg@irtf, +16:u0B:pearg@irtf/., +16:u0C:mailing/list, +11:u10:mailing, +14:u13:pearg@irtf, +11:u01:mailing, +14:u04:pearg@irtf, +17:u09:at/pearg@irtf, +16:u0A:pearg@irtf/., +11:u0C:list/at, +16:u0D:pearg@irtf/0, +14:u12:pearg@irtf, +11:u00:mailing, +14:u03:pearg@irtf, +16:u09:pearg@irtf/., +11:u0B:org/and, +17:u0C:at/pearg@irtf, +14:u11:pearg@irtf, +14:u02:pearg@irtf, +11:u0A:org/and, +9:u0B:and//, +16:u0C:pearg@irtf/., +14:u10:pearg@irtf, +14:u01:pearg@irtf, +10:u08:author, +11:u09:org/and, +9:u0A:and//, +8:u0B://or, +14:u00:pearg@irtf, +10:u07:author, +9:u09:and//, +8:u0A://or, +10:u0B:or/the, +11:u0C:org/and, +10:u06:author, +8:u09://or, +10:u0A:or/the, +14:u0B:the/author, +9:u0C:and//, +10:u14:author, +10:u05:author, +10:u09:or/the, +14:u0A:the/author, +12:u0B:author/(, +8:u0C://or, +10:u13:author, +10:u04:author, +14:u09:the/author, +12:u0A:author/(, +7:u0B:(/s, +10:u0C:or/the, +12:u0D:author/0, +10:u12:author, +7:u32:hor, +8:u33:thor, +10:u03:author, +12:u09:author/(, +7:u0A:(/s, +7:u0B:s/), +14:u0C:the/author, +10:u11:author, +10:u02:author, +11:u08:sources, +7:u09:(/s, +7:u0A:s/), +12:u0C:author/(, +10:u10:author, +10:u01:author, +11:u07:sources, +7:u09:s/), +7:u0C:(/s, +10:u00:author, +11:u06:sources, +15:u0B:The/sources, +7:u0C:s/), +11:u14:sources, +11:u05:sources, +15:u0A:The/sources, +15:u0B:sources/for, +11:u13:sources, +11:u04:sources, +15:u09:The/sources, +15:u0A:sources/for, +12:u0B:for/this, +13:u0D:sources/0, +11:u12:sources, +7:u22:sou, +8:u23:sour, +7:u32:ces, +8:u33:rces, +11:u03:sources, +15:u09:sources/for, +12:u0A:for/this, +14:u0B:this/draft, +15:u0C:The/sources, +11:u11:sources, +11:u02:sources, +12:u09:for/this, +14:u0A:this/draft, +13:u0B:draft/are, +15:u0C:sources/for, +11:u10:sources, +11:u01:sources, +14:u09:this/draft, +13:u0A:draft/are, +10:u0B:are/at, +12:u0C:for/this, +11:u00:sources, +13:u09:draft/are, +10:u0A:are/at, +8:u0B:at/:, +14:u0C:this/draft, +10:u09:are/at, +8:u0A:at/:, +11:u0B::/https, +13:u0C:draft/are, +8:u09:at/:, +11:u0A::/https, +10:u0C:are/at, +10:u08:github, +11:u09::/https, +8:u0C:at/:, +10:u07:github, +11:u0C::/https, +10:u06:github, +12:u0B://github, +10:u14:github, +10:u05:github, +12:u0A://github, +12:u0B:github/., +10:u13:github, +10:u04:github, +7:u08:irl, +12:u09://github, +12:u0A:github/., +12:u0D:github/0, +10:u12:github, +7:u22:git, +8:u23:gith, +5:u30:b, +6:u31:ub, +7:u32:hub, +8:u33:thub, +10:u03:github, +7:u07:irl, +12:u09:github/., +9:u0B:com//, +12:u0C://github, +10:u11:github, +10:u02:github, +7:u06:irl, +9:u0A:com//, +9:u0B://irl, +12:u0C:github/., +10:u10:github, +7:u14:irl, +10:u01:github, +7:u05:irl, +9:u09:com//, +9:u0A://irl, +9:u0B:irl//, +7:u13:irl, +10:u00:github, +7:u04:irl, +9:u09://irl, +9:u0A:irl//, +11:u0B://draft, +9:u0C:com//, +9:u0D:irl/0, +7:u12:irl, +7:u22:irl, +7:u23:irl, +6:u31:rl, +7:u32:irl, +7:u33:irl, +7:u03:irl, +9:u09:irl//, +11:u0A://draft, +9:u0C://irl, +7:u11:irl, +7:u02:irl, +11:u09://draft, +9:u0C:irl//, +7:u10:irl, +7:u01:irl, +11:u0C://draft, +7:u00:irl, +22:u0B:measurement/Status, +22:u0A:measurement/Status, +22:u09:measurement/Status, +22:u0C:measurement/Status, +10:u0B:"/This, +10:u0A:"/This, +10:u09:"/This, +10:u0C:"/This, +14:u0B:on/January, +14:u0A:on/January, +14:u09:on/January, +14:u0C:on/January, +21:u0B:Learmonth/Expires, +21:u0A:Learmonth/Expires, +19:u0B:Expires/January, +21:u09:Learmonth/Expires, +19:u0A:Expires/January, +19:u09:Expires/January, +21:u0C:Learmonth/Expires, +19:u0C:Expires/January, +14:u0B:Draft/Safe, +14:u0A:Draft/Safe, +17:u0B:Safe/Internet, +14:u09:Draft/Safe, +17:u0A:Safe/Internet, +24:u0B:Internet/Measurement, +17:u09:Safe/Internet, +24:u0A:Internet/Measurement, +20:u0B:Measurement/July, +14:u0C:Draft/Safe, +24:u09:Internet/Measurement, +20:u0A:Measurement/July, +17:u0C:Safe/Internet, +20:u09:Measurement/July, +24:u0C:Internet/Measurement, +20:u0C:Measurement/July, +8:u08:Iain, +8:u07:Iain, +5:u08:R, +8:u06:Iain, +5:u07:R, +10:u0B:./Iain, +8:u14:iain, +8:u05:Iain, +5:u06:R, +10:u0A:./Iain, +10:u0B:Iain/R, +8:u13:iain, +5:u14:r, +8:u04:Iain, +5:u05:R, +10:u09:./Iain, +10:u0A:Iain/R, +7:u0B:R/., +10:u0D:Iain/0, +8:u12:iain, +5:u13:r, +6:u21:Ia, +7:u22:Iai, +8:u23:Iain, +8:u33:Iain, +8:u03:Iain, +5:u04:R, +10:u09:Iain/R, +7:u0A:R/., +10:u0C:./Iain, +7:u0D:R/0, +8:u11:iain, +5:u12:r, +5:u21:R, +5:u22:R, +5:u23:R, +5:u30:R, +5:u31:R, +5:u32:R, +5:u33:R, +8:u02:Iain, +5:u03:R, +7:u09:R/., +17:u0B:Learmonth/Tor, +10:u0C:Iain/R, +8:u10:iain, +5:u11:r, +8:u01:Iain, +5:u02:R, +17:u0A:Learmonth/Tor, +7:u0C:R/., +5:u10:r, +8:u00:Iain, +5:u01:R, +18:u08:irl@torproject, +17:u09:Learmonth/Tor, +17:u0B:Project/Email, +5:u00:R, +18:u07:irl@torproject, +17:u0A:Project/Email, +17:u0C:Learmonth/Tor, +18:u06:irl@torproject, +17:u09:Project/Email, +20:u0B::/irl@torproject, +18:u14:irl@torproject, +18:u05:irl@torproject, +20:u0A::/irl@torproject, +20:u0B:irl@torproject/., +17:u0C:Project/Email, +18:u13:irl@torproject, +18:u04:irl@torproject, +20:u09::/irl@torproject, +20:u0A:irl@torproject/., +20:u0D:irl@torproject/0, +18:u12:irl@torproject, +8:u23:irl@, +18:u03:irl@torproject, +20:u09:irl@torproject/., +12:u0B:org/_x+1, +20:u0C::/irl@torproject, +18:u11:irl@torproject, +18:u02:irl@torproject, +12:u0A:org/_x+1, +20:u0C:irl@torproject/., +18:u10:irl@torproject, +12:u06:20190902, +17:u0B:date/20190902, +12:u14:20190902, +12:u05:20190902, +17:u0A:date/20190902, +14:u0B:20190902/;, +12:u13:20190902, +12:u04:20190902, +17:u09:date/20190902, +14:u0A:20190902/;, +14:u0D:20190902/0, +12:u12:20190902, +6:u31:02, +7:u32:902, +8:u33:0902, +12:u03:20190902, +14:u09:20190902/;, +17:u0C:date/20190902, +12:u11:20190902, +12:u02:20190902, +12:u08:20190903, +14:u0C:20190902/;, +12:u10:20190902, +12:u01:20190902, +12:u07:20190903, +12:u00:20190902, +12:u06:20190903, +15:u0B:on/20190903, +12:u14:20190903, +12:u05:20190903, +15:u0A:on/20190903, +21:u0B:20190903/Internet, +12:u13:20190903, +12:u04:20190903, +15:u09:on/20190903, +21:u0A:20190903/Internet, +14:u0D:20190903/0, +12:u12:20190903, +6:u31:03, +7:u32:903, +8:u33:0903, +12:u03:20190903, +5:u08:L, +21:u09:20190903/Internet, +15:u0C:on/20190903, +12:u11:20190903, +12:u02:20190903, +5:u07:L, +21:u0C:20190903/Internet, +12:u10:20190903, +12:u01:20190903, +5:u06:L, +14:u08:Velvindron, +11:u0B:Force/L, +5:u14:l, +12:u00:20190903, +5:u05:L, +14:u07:Velvindron, +11:u0A:Force/L, +7:u0B:L/., +5:u13:l, +5:u04:L, +14:u06:Velvindron, +11:u09:Force/L, +7:u0A:L/., +16:u0B:./Velvindron, +7:u0D:L/0, +5:u12:l, +14:u14:velvindron, +5:u21:L, +5:u22:L, +5:u23:L, +5:u30:L, +5:u31:L, +5:u32:L, +5:u33:L, +5:u03:L, +14:u05:Velvindron, +7:u09:L/., +16:u0A:./Velvindron, +23:u0B:Velvindron/Internet, +11:u0C:Force/L, +5:u11:l, +14:u13:velvindron, +5:u02:L, +14:u04:Velvindron, +14:u08:cyberstorm, +16:u09:./Velvindron, +23:u0A:Velvindron/Internet, +7:u0C:L/., +16:u0D:Velvindron/0, +5:u10:l, +14:u12:velvindron, +6:u21:Ve, +7:u22:Vel, +8:u23:Velv, +7:u32:ron, +8:u33:dron, +5:u01:L, +14:u03:Velvindron, +14:u07:cyberstorm, +23:u09:Velvindron/Internet, +16:u0C:./Velvindron, +14:u11:velvindron, +5:u00:L, +14:u02:Velvindron, +14:u06:cyberstorm, +6:u08:mu, +20:u0B:Draft/cyberstorm, +23:u0C:Velvindron/Internet, +14:u10:velvindron, +14:u14:cyberstorm, +14:u01:Velvindron, +14:u05:cyberstorm, +6:u07:mu, +11:u08:Updates, +20:u0A:Draft/cyberstorm, +16:u0B:cyberstorm/., +14:u13:cyberstorm, +14:u00:Velvindron, +14:u04:cyberstorm, +6:u06:mu, +11:u07:Updates, +20:u09:Draft/cyberstorm, +16:u0A:cyberstorm/., +8:u0B:./mu, +16:u0D:cyberstorm/0, +14:u12:cyberstorm, +6:u14:mu, +6:u21:cy, +7:u22:cyb, +8:u23:cybe, +6:u31:rm, +7:u32:orm, +8:u33:torm, +14:u03:cyberstorm, +6:u05:mu, +11:u06:Updates, +8:u08:5246, +16:u09:cyberstorm/., +8:u0A:./mu, +14:u0B:mu/Updates, +20:u0C:Draft/cyberstorm, +14:u11:cyberstorm, +6:u13:mu, +11:u14:updates, +14:u02:cyberstorm, +6:u04:mu, +11:u05:Updates, +8:u07:5246, +8:u08:7525, +8:u09:./mu, +14:u0A:mu/Updates, +13:u0B:Updates/:, +16:u0C:cyberstorm/., +8:u0D:mu/0, +14:u10:cyberstorm, +6:u12:mu, +11:u13:updates, +6:u22:mu, +6:u23:mu, +6:u31:mu, +6:u32:mu, +6:u33:mu, +14:u01:cyberstorm, +6:u03:mu, +11:u04:Updates, +8:u06:5246, +8:u07:7525, +14:u09:mu/Updates, +13:u0A:Updates/:, +10:u0B::/5246, +8:u0C:./mu, +13:u0D:Updates/0, +6:u11:mu, +11:u12:updates, +8:u14:5246, +6:u21:Up, +7:u22:Upd, +8:u23:Upda, +14:u00:cyberstorm, +6:u02:mu, +11:u03:Updates, +8:u05:5246, +8:u06:7525, +6:u08:if, +13:u09:Updates/:, +10:u0A::/5246, +13:u0B:5246/7525, +14:u0C:mu/Updates, +6:u10:mu, +11:u11:updates, +8:u13:5246, +8:u14:7525, +6:u01:mu, +11:u02:Updates, +8:u04:5246, +8:u05:7525, +6:u07:if, +10:u09::/5246, +13:u0A:5246/7525, +10:u0B:7525/(, +13:u0C:Updates/:, +10:u0D:5246/0, +11:u10:updates, +8:u12:5246, +8:u13:7525, +6:u21:52, +7:u22:524, +8:u23:5246, +6:u31:46, +7:u32:246, +8:u33:5246, +6:u00:mu, +11:u01:Updates, +8:u03:5246, +8:u04:7525, +6:u06:if, +13:u09:5246/7525, +10:u0A:7525/(, +8:u0B:(/if, +10:u0C::/5246, +10:u0D:7525/0, +8:u11:5246, +8:u12:7525, +6:u14:if, +6:u21:75, +7:u22:752, +8:u23:7525, +6:u31:25, +7:u32:525, +8:u33:7525, +11:u00:Updates, +8:u02:5246, +8:u03:7525, +6:u05:if, +5:u08:K, +10:u09:7525/(, +8:u0A:(/if, +15:u0B:if/approved, +13:u0C:5246/7525, +8:u10:5246, +8:u11:7525, +6:u13:if, +8:u01:5246, +8:u02:7525, +6:u04:if, +5:u07:K, +8:u09:(/if, +15:u0A:if/approved, +14:u0B:approved/), +10:u0C:7525/(, +8:u0D:if/0, +8:u10:7525, +6:u12:if, +6:u21:if, +6:u22:if, +6:u23:if, +6:u31:if, +6:u32:if, +6:u33:if, +8:u00:5246, +8:u01:7525, +6:u03:if, +5:u06:K, +12:u08:Moriarty, +15:u09:if/approved, +14:u0A:approved/), +7:u0B:)/K, +8:u0C:(/if, +6:u11:if, +5:u14:k, +8:u00:7525, +6:u02:if, +5:u05:K, +12:u07:Moriarty, +14:u09:approved/), +7:u0A:)/K, +7:u0B:K/., +15:u0C:if/approved, +6:u10:if, +5:u13:k, +6:u01:if, +5:u04:K, +12:u06:Moriarty, +7:u09:)/K, +7:u0A:K/., +14:u0B:./Moriarty, +14:u0C:approved/), +7:u0D:K/0, +5:u12:k, +12:u14:moriarty, +5:u20:K, +5:u21:K, +5:u22:K, +5:u23:K, +5:u31:K, +5:u32:K, +5:u33:K, +6:u00:if, +5:u03:K, +12:u05:Moriarty, +7:u09:K/., +14:u0A:./Moriarty, +21:u0B:Moriarty/Intended, +7:u0C:)/K, +5:u11:k, +12:u13:moriarty, +5:u02:K, +12:u04:Moriarty, +14:u09:./Moriarty, +21:u0A:Moriarty/Intended, +7:u0C:K/., +14:u0D:Moriarty/0, +5:u10:k, +12:u12:moriarty, +7:u22:Mor, +8:u23:Mori, +7:u32:rty, +8:u33:arty, +5:u01:K, +12:u03:Moriarty, +21:u09:Moriarty/Intended, +14:u0C:./Moriarty, +12:u11:moriarty, +5:u00:K, +12:u02:Moriarty, +8:u08:Dell, +15:u0B::/Standards, +21:u0C:Moriarty/Intended, +12:u10:moriarty, +12:u01:Moriarty, +8:u07:Dell, +7:u08:EMC, +15:u0A::/Standards, +12:u00:Moriarty, +8:u06:Dell, +7:u07:EMC, +15:u09::/Standards, +14:u0B:Track/Dell, +8:u14:dell, +8:u05:Dell, +7:u06:EMC, +14:u0A:Track/Dell, +12:u0B:Dell/EMC, +15:u0C::/Standards, +8:u13:dell, +7:u14:emc, +8:u04:Dell, +7:u05:EMC, +9:u08:March, +14:u09:Track/Dell, +12:u0A:Dell/EMC, +15:u0B:EMC/Expires, +10:u0D:Dell/0, +8:u12:dell, +7:u13:emc, +7:u22:Del, +8:u23:Dell, +8:u33:Dell, +8:u03:Dell, +7:u04:EMC, +9:u07:March, +5:u08:5, +12:u09:Dell/EMC, +15:u0A:EMC/Expires, +14:u0C:Track/Dell, +9:u0D:EMC/0, +8:u11:dell, +7:u12:emc, +6:u21:EM, +7:u22:EMC, +7:u23:EMC, +6:u31:MC, +7:u32:EMC, +7:u33:EMC, +8:u02:Dell, +7:u03:EMC, +9:u06:March, +5:u07:5, +15:u09:EMC/Expires, +11:u0B::/March, +12:u0C:Dell/EMC, +8:u10:dell, +7:u11:emc, +9:u14:march, +8:u01:Dell, +7:u02:EMC, +9:u05:March, +5:u06:5, +11:u0A::/March, +11:u0B:March/5, +15:u0C:EMC/Expires, +7:u10:emc, +9:u13:march, +5:u14:5, +8:u00:Dell, +7:u01:EMC, +9:u04:March, +5:u05:5, +11:u09::/March, +11:u0A:March/5, +7:u0B:5/,, +11:u0D:March/0, +9:u12:march, +5:u13:5, +7:u00:EMC, +9:u03:March, +5:u04:5, +11:u09:March/5, +7:u0A:5/,, +11:u0C::/March, +7:u0D:5/0, +9:u11:march, +5:u12:5, +5:u21:5, +5:u22:5, +5:u23:5, +5:u31:5, +5:u32:5, +5:u33:5, +9:u02:March, +5:u03:5, +11:u08:Ghedini, +7:u09:5/,, +10:u0B:2020/A, +11:u0C:March/5, +9:u10:march, +5:u11:5, +9:u01:March, +5:u02:5, +11:u07:Ghedini, +14:u08:Cloudflare, +10:u0A:2020/A, +7:u0C:5/,, +5:u10:5, +9:u00:March, +5:u01:5, +11:u06:Ghedini, +14:u07:Cloudflare, +10:u09:2020/A, +13:u0B:./Ghedini, +11:u14:ghedini, +5:u00:5, +11:u05:Ghedini, +14:u06:Cloudflare, +13:u0A:./Ghedini, +22:u0B:Ghedini/Cloudflare, +10:u0C:2020/A, +11:u13:ghedini, +14:u14:cloudflare, +11:u04:Ghedini, +14:u05:Cloudflare, +13:u08:September, +13:u09:./Ghedini, +22:u0A:Ghedini/Cloudflare, +18:u0B:Cloudflare/Inc, +13:u0D:Ghedini/0, +11:u12:ghedini, +14:u13:cloudflare, +6:u21:Gh, +7:u22:Ghe, +8:u23:Ghed, +6:u31:ni, +7:u32:ini, +8:u33:dini, +11:u03:Ghedini, +14:u04:Cloudflare, +13:u07:September, +22:u09:Ghedini/Cloudflare, +18:u0A:Cloudflare/Inc, +13:u0C:./Ghedini, +16:u0D:Cloudflare/0, +11:u11:ghedini, +14:u12:cloudflare, +6:u21:Cl, +7:u22:Clo, +8:u23:Clou, +8:u33:lare, +11:u02:Ghedini, +14:u03:Cloudflare, +13:u06:September, +18:u09:Cloudflare/Inc, +15:u0B:./September, +22:u0C:Ghedini/Cloudflare, +11:u10:ghedini, +14:u11:cloudflare, +13:u14:september, +11:u01:Ghedini, +14:u02:Cloudflare, +13:u05:September, +15:u0A:./September, +15:u0B:September/2, +18:u0C:Cloudflare/Inc, +14:u10:cloudflare, +13:u13:september, +11:u00:Ghedini, +14:u01:Cloudflare, +13:u04:September, +15:u08:Deprecating, +15:u09:./September, +15:u0A:September/2, +7:u0B:2/,, +15:u0D:September/0, +13:u12:september, +7:u22:Sep, +8:u23:Sept, +14:u00:Cloudflare, +13:u03:September, +15:u07:Deprecating, +7:u08:MD5, +15:u09:September/2, +7:u0A:2/,, +15:u0C:./September, +13:u11:september, +13:u02:September, +15:u06:Deprecating, +7:u07:MD5, +7:u09:2/,, +20:u0B:2019/Deprecating, +15:u0C:September/2, +13:u10:september, +15:u14:deprecating, +13:u01:September, +15:u05:Deprecating, +7:u06:MD5, +7:u08:SHA, +20:u0A:2019/Deprecating, +19:u0B:Deprecating/MD5, +7:u0C:2/,, +15:u13:deprecating, +7:u14:md5, +13:u00:September, +15:u04:Deprecating, +7:u05:MD5, +7:u07:SHA, +20:u09:2019/Deprecating, +19:u0A:Deprecating/MD5, +11:u0B:MD5/and, +17:u0D:Deprecating/0, +15:u12:deprecating, +7:u13:md5, +7:u22:Dep, +8:u23:Depr, +15:u03:Deprecating, +7:u04:MD5, +7:u06:SHA, +19:u09:Deprecating/MD5, +11:u0A:MD5/and, +11:u0B:and/SHA, +20:u0C:2019/Deprecating, +9:u0D:MD5/0, +15:u11:deprecating, +7:u12:md5, +7:u14:sha, +6:u21:MD, +7:u22:MD5, +7:u23:MD5, +6:u31:D5, +7:u32:MD5, +7:u33:MD5, +15:u02:Deprecating, +7:u03:MD5, +7:u05:SHA, +13:u08:signature, +11:u09:MD5/and, +11:u0A:and/SHA, +9:u0B:SHA/-, +19:u0C:Deprecating/MD5, +15:u10:deprecating, +7:u11:md5, +7:u13:sha, +15:u01:Deprecating, +7:u02:MD5, +7:u04:SHA, +13:u07:signature, +10:u08:hashes, +11:u09:and/SHA, +9:u0A:SHA/-, +7:u0B:-/1, +11:u0C:MD5/and, +9:u0D:SHA/0, +7:u10:md5, +7:u12:sha, +6:u21:SH, +7:u22:SHA, +7:u23:SHA, +6:u31:HA, +7:u32:SHA, +7:u33:SHA, +15:u00:Deprecating, +7:u01:MD5, +7:u03:SHA, +13:u06:signature, +10:u07:hashes, +9:u09:SHA/-, +7:u0A:-/1, +15:u0B:1/signature, +11:u0C:and/SHA, +7:u11:sha, +13:u14:signature, +7:u00:MD5, +7:u02:SHA, +13:u05:signature, +10:u06:hashes, +7:u08:TLS, +7:u09:-/1, +15:u0A:1/signature, +20:u0B:signature/hashes, +9:u0C:SHA/-, +7:u0D:1/1, +7:u10:sha, +13:u13:signature, +10:u14:hashes, +7:u01:SHA, +13:u04:signature, +10:u05:hashes, +7:u07:TLS, +15:u09:1/signature, +20:u0A:signature/hashes, +13:u0B:hashes/in, +7:u0C:-/1, +15:u0D:signature/0, +13:u12:signature, +10:u13:hashes, +7:u22:sig, +8:u23:sign, +7:u00:SHA, +13:u03:signature, +10:u04:hashes, +7:u06:TLS, +20:u09:signature/hashes, +13:u0A:hashes/in, +10:u0B:in/TLS, +15:u0C:1/signature, +12:u0D:hashes/0, +13:u11:signature, +10:u12:hashes, +7:u14:tls, +8:u23:hash, +13:u02:signature, +10:u03:hashes, +7:u05:TLS, +13:u09:hashes/in, +10:u0A:in/TLS, +9:u0B:TLS/1, +20:u0C:signature/hashes, +13:u10:signature, +10:u11:hashes, +7:u13:tls, +13:u01:signature, +10:u02:hashes, +7:u04:TLS, +10:u09:in/TLS, +9:u0A:TLS/1, +7:u0B:1/., +13:u0C:hashes/in, +9:u0D:TLS/0, +10:u10:hashes, +7:u12:tls, +7:u22:TLS, +7:u23:TLS, +5:u30:S, +6:u31:LS, +7:u32:TLS, +7:u33:TLS, +13:u00:signature, +10:u01:hashes, +7:u03:TLS, +9:u09:TLS/1, +7:u0A:1/., +7:u0B:./2, +10:u0C:in/TLS, +7:u11:tls, +10:u00:hashes, +7:u02:TLS, +7:u09:1/., +7:u0A:./2, +11:u0B:2/draft, +9:u0C:TLS/1, +7:u10:tls, +7:u01:TLS, +7:u09:./2, +11:u0A:2/draft, +7:u0C:1/., +7:u00:TLS, +7:u08:tls, +11:u09:2/draft, +10:u0B:-/ietf, +7:u0C:./2, +7:u07:tls, +10:u0A:-/ietf, +10:u0B:ietf/-, +11:u0C:2/draft, +7:u06:tls, +7:u08:md5, +10:u09:-/ietf, +10:u0A:ietf/-, +9:u0B:-/tls, +10:u0D:ietf/1, +7:u05:tls, +7:u07:md5, +10:u09:ietf/-, +9:u0A:-/tls, +9:u0B:tls/-, +10:u0C:-/ietf, +7:u04:tls, +7:u06:md5, +8:u08:sha1, +9:u09:-/tls, +9:u0A:tls/-, +9:u0B:-/md5, +10:u0C:ietf/-, +9:u0D:tls/1, +6:u21:tl, +7:u22:tls, +7:u23:tls, +7:u32:tls, +7:u33:tls, +7:u03:tls, +7:u05:md5, +8:u07:sha1, +9:u09:tls/-, +9:u0A:-/md5, +9:u0B:md5/-, +9:u0C:-/tls, +7:u02:tls, +7:u04:md5, +8:u06:sha1, +13:u08:deprecate, +9:u09:-/md5, +9:u0A:md5/-, +10:u0B:-/sha1, +9:u0C:tls/-, +9:u0D:md5/1, +8:u14:sha1, +6:u21:md, +7:u22:md5, +7:u23:md5, +6:u31:d5, +7:u32:md5, +7:u33:md5, +7:u01:tls, +7:u03:md5, +8:u05:sha1, +13:u07:deprecate, +9:u09:md5/-, +10:u0A:-/sha1, +10:u0B:sha1/-, +9:u0C:-/md5, +8:u13:sha1, +7:u00:tls, +7:u02:md5, +8:u04:sha1, +13:u06:deprecate, +6:u08:00, +10:u09:-/sha1, +10:u0A:sha1/-, +15:u0B:-/deprecate, +9:u0C:md5/-, +10:u0D:sha1/1, +8:u12:sha1, +13:u14:deprecate, +7:u22:sha, +8:u23:sha1, +6:u31:a1, +7:u32:ha1, +8:u33:sha1, +7:u01:md5, +8:u03:sha1, +13:u05:deprecate, +6:u07:00, +10:u09:sha1/-, +15:u0A:-/deprecate, +15:u0B:deprecate/-, +10:u0C:-/sha1, +8:u11:sha1, +13:u13:deprecate, +7:u00:md5, +8:u02:sha1, +13:u04:deprecate, +6:u06:00, +15:u09:-/deprecate, +15:u0A:deprecate/-, +8:u0B:-/00, +10:u0C:sha1/-, +15:u0D:deprecate/1, +8:u10:sha1, +13:u12:deprecate, +6:u14:00, +8:u23:depr, +8:u01:sha1, +13:u03:deprecate, +6:u05:00, +15:u09:deprecate/-, +8:u0A:-/00, +15:u0B:00/Abstract, +15:u0C:-/deprecate, +13:u11:deprecate, +6:u13:00, +8:u00:sha1, +13:u02:deprecate, +6:u04:00, +8:u09:-/00, +15:u0A:00/Abstract, +16:u0B:Abstract/The, +15:u0C:deprecate/-, +8:u0D:00/1, +13:u10:deprecate, +6:u12:00, +6:u21:00, +6:u22:00, +6:u23:00, +6:u31:00, +6:u32:00, +6:u33:00, +13:u01:deprecate, +6:u03:00, +15:u09:00/Abstract, +16:u0A:Abstract/The, +11:u0B:The/MD5, +8:u0C:-/00, +6:u11:00, +13:u00:deprecate, +6:u02:00, +16:u09:Abstract/The, +11:u0A:The/MD5, +15:u0C:00/Abstract, +6:u10:00, +6:u01:00, +11:u09:The/MD5, +16:u0C:Abstract/The, +6:u00:00, +11:u08:hashing, +11:u0C:The/MD5, +11:u07:hashing, +14:u08:algorithms, +11:u06:hashing, +14:u07:algorithms, +13:u0B:1/hashing, +11:u14:hashing, +11:u05:hashing, +14:u06:algorithms, +12:u08:steadily, +13:u0A:1/hashing, +22:u0B:hashing/algorithms, +11:u13:hashing, +14:u14:algorithms, +11:u04:hashing, +14:u05:algorithms, +12:u07:steadily, +13:u08:weakening, +13:u09:1/hashing, +22:u0A:hashing/algorithms, +18:u0B:algorithms/are, +13:u0D:hashing/0, +11:u12:hashing, +14:u13:algorithms, +8:u33:hing, +11:u03:hashing, +14:u04:algorithms, +12:u06:steadily, +13:u07:weakening, +22:u09:hashing/algorithms, +18:u0A:algorithms/are, +16:u0B:are/steadily, +13:u0C:1/hashing, +16:u0D:algorithms/0, +11:u11:hashing, +14:u12:algorithms, +12:u14:steadily, +7:u22:alg, +8:u23:algo, +7:u32:hms, +8:u33:thms, +11:u02:hashing, +14:u03:algorithms, +12:u05:steadily, +13:u06:weakening, +12:u08:strength, +18:u09:algorithms/are, +16:u0A:are/steadily, +22:u0B:steadily/weakening, +22:u0C:hashing/algorithms, +11:u10:hashing, +14:u11:algorithms, +12:u13:steadily, +13:u14:weakening, +11:u01:hashing, +14:u02:algorithms, +12:u04:steadily, +13:u05:weakening, +12:u07:strength, +16:u09:are/steadily, +22:u0A:steadily/weakening, +16:u0B:weakening/in, +18:u0C:algorithms/are, +14:u0D:steadily/0, +14:u10:algorithms, +12:u12:steadily, +13:u13:weakening, +7:u22:ste, +8:u23:stea, +7:u32:ily, +8:u33:dily, +11:u00:hashing, +14:u01:algorithms, +12:u03:steadily, +13:u04:weakening, +12:u06:strength, +22:u09:steadily/weakening, +16:u0A:weakening/in, +15:u0B:in/strength, +16:u0C:are/steadily, +15:u0D:weakening/0, +12:u11:steadily, +13:u12:weakening, +12:u14:strength, +7:u22:wea, +8:u23:weak, +14:u00:algorithms, +12:u02:steadily, +13:u03:weakening, +12:u05:strength, +15:u08:deprecation, +16:u09:weakening/in, +15:u0A:in/strength, +16:u0B:strength/and, +22:u0C:steadily/weakening, +12:u10:steadily, +13:u11:weakening, +12:u13:strength, +12:u01:steadily, +13:u02:weakening, +12:u04:strength, +15:u07:deprecation, +11:u08:process, +15:u09:in/strength, +16:u0A:strength/and, +13:u0B:and/their, +16:u0C:weakening/in, +14:u0D:strength/0, +13:u10:weakening, +12:u12:strength, +7:u22:str, +8:u23:stre, +7:u32:gth, +8:u33:ngth, +12:u00:steadily, +13:u01:weakening, +12:u03:strength, +15:u06:deprecation, +11:u07:process, +16:u09:strength/and, +13:u0A:and/their, +21:u0B:their/deprecation, +15:u0C:in/strength, +12:u11:strength, +15:u14:deprecation, +13:u00:weakening, +12:u02:strength, +15:u05:deprecation, +11:u06:process, +9:u08:begin, +13:u09:and/their, +21:u0A:their/deprecation, +23:u0B:deprecation/process, +16:u0C:strength/and, +12:u10:strength, +15:u13:deprecation, +11:u14:process, +12:u01:strength, +15:u04:deprecation, +11:u05:process, +9:u07:begin, +21:u09:their/deprecation, +23:u0A:deprecation/process, +18:u0B:process/should, +13:u0C:and/their, +17:u0D:deprecation/0, +15:u12:deprecation, +11:u13:process, +12:u00:strength, +15:u03:deprecation, +11:u04:process, +9:u06:begin, +23:u09:deprecation/process, +18:u0A:process/should, +16:u0B:should/begin, +21:u0C:their/deprecation, +13:u0D:process/0, +15:u11:deprecation, +11:u12:process, +9:u14:begin, +8:u23:proc, +8:u33:cess, +15:u02:deprecation, +11:u03:process, +9:u05:begin, +18:u09:process/should, +16:u0A:should/begin, +13:u0B:begin/for, +23:u0C:deprecation/process, +15:u10:deprecation, +11:u11:process, +9:u13:begin, +15:u01:deprecation, +11:u02:process, +9:u04:begin, +16:u09:should/begin, +13:u0A:begin/for, +13:u0B:for/their, +18:u0C:process/should, +11:u0D:begin/0, +11:u10:process, +9:u12:begin, +7:u22:beg, +8:u23:begi, +7:u32:gin, +8:u33:egin, +15:u00:deprecation, +11:u01:process, +9:u03:begin, +13:u09:begin/for, +13:u0A:for/their, +13:u0B:their/use, +16:u0C:should/begin, +9:u11:begin, +11:u00:process, +9:u02:begin, +13:u09:for/their, +13:u0A:their/use, +10:u0B:use/in, +13:u0C:begin/for, +9:u10:begin, +9:u01:begin, +13:u09:their/use, +10:u0A:use/in, +13:u0C:for/their, +9:u00:begin, +10:u09:use/in, +13:u0C:their/use, +11:u08:digital, +10:u0C:use/in, +11:u07:digital, +14:u08:signatures, +11:u06:digital, +14:u07:signatures, +13:u0B:2/digital, +11:u14:digital, +11:u05:digital, +14:u06:signatures, +11:u08:However, +13:u0A:2/digital, +22:u0B:digital/signatures, +11:u13:digital, +14:u14:signatures, +11:u04:digital, +14:u05:signatures, +11:u07:However, +13:u09:2/digital, +22:u0A:digital/signatures, +16:u0B:signatures/., +13:u0D:digital/0, +11:u12:digital, +14:u13:signatures, +7:u22:dig, +8:u23:digi, +8:u33:ital, +11:u03:digital, +14:u04:signatures, +11:u06:However, +22:u09:digital/signatures, +16:u0A:signatures/., +13:u0B:./However, +13:u0C:2/digital, +16:u0D:signatures/0, +11:u11:digital, +14:u12:signatures, +11:u02:digital, +14:u03:signatures, +11:u05:However, +16:u09:signatures/., +13:u0A:./However, +13:u0B:However/,, +22:u0C:digital/signatures, +11:u10:digital, +14:u11:signatures, +11:u01:digital, +14:u02:signatures, +11:u04:However, +8:u08:does, +13:u09:./However, +13:u0A:However/,, +10:u0B:,/this, +16:u0C:signatures/., +13:u0D:However/0, +14:u10:signatures, +6:u21:Ho, +7:u22:How, +8:u23:Howe, +11:u00:digital, +14:u01:signatures, +11:u03:However, +8:u07:does, +13:u09:However/,, +10:u0A:,/this, +13:u0C:./However, +14:u00:signatures, +11:u02:However, +8:u06:does, +10:u09:,/this, +17:u0B:document/does, +13:u0C:However/,, +8:u14:does, +11:u01:However, +8:u05:does, +17:u0A:document/does, +12:u0B:does/not, +10:u0C:,/this, +8:u13:does, +11:u00:However, +8:u04:does, +17:u09:document/does, +12:u0A:does/not, +17:u0B:not/deprecate, +10:u0D:does/0, +8:u12:does, +7:u22:doe, +8:u23:does, +7:u32:oes, +8:u33:does, +8:u03:does, +12:u09:does/not, +17:u0A:not/deprecate, +17:u0B:deprecate/SHA, +17:u0C:document/does, +8:u11:does, +8:u02:does, +17:u09:not/deprecate, +17:u0A:deprecate/SHA, +12:u0C:does/not, +15:u0D:deprecate/0, +8:u10:does, +8:u01:does, +8:u08:HMAC, +17:u09:deprecate/SHA, +17:u0C:not/deprecate, +8:u00:does, +8:u07:HMAC, +8:u0B:1/in, +17:u0C:deprecate/SHA, +8:u06:HMAC, +10:u08:record, +8:u0A:1/in, +11:u0B:in/HMAC, +8:u14:hmac, +8:u05:HMAC, +10:u07:record, +14:u08:protection, +8:u09:1/in, +11:u0A:in/HMAC, +12:u0B:HMAC/for, +8:u13:hmac, +8:u04:HMAC, +10:u06:record, +14:u07:protection, +11:u09:in/HMAC, +12:u0A:HMAC/for, +14:u0B:for/record, +8:u0C:1/in, +10:u0D:HMAC/0, +8:u12:hmac, +10:u14:record, +6:u21:HM, +7:u22:HMA, +8:u23:HMAC, +6:u31:AC, +7:u32:MAC, +8:u33:HMAC, +8:u03:HMAC, +10:u05:record, +14:u06:protection, +12:u09:HMAC/for, +14:u0A:for/record, +21:u0B:record/protection, +11:u0C:in/HMAC, +8:u11:hmac, +10:u13:record, +14:u14:protection, +8:u02:HMAC, +10:u04:record, +14:u05:protection, +14:u09:for/record, +21:u0A:record/protection, +16:u0B:protection/., +12:u0C:HMAC/for, +12:u0D:record/0, +8:u10:hmac, +10:u12:record, +14:u13:protection, +8:u23:reco, +7:u32:ord, +8:u33:cord, +8:u01:HMAC, +10:u03:record, +14:u04:protection, +21:u09:record/protection, +16:u0A:protection/., +14:u0C:for/record, +16:u0D:protection/0, +10:u11:record, +14:u12:protection, +8:u00:HMAC, +10:u02:record, +14:u03:protection, +16:u09:protection/., +21:u0C:record/protection, +10:u10:record, +14:u11:protection, +10:u01:record, +14:u02:protection, +16:u0C:protection/., +14:u10:protection, +10:u00:record, +14:u01:protection, +14:u00:protection, +12:u0B:on/March, +12:u0A:on/March, +12:u09:on/March, +12:u0C:on/March, +13:u08:Loganaden, +13:u07:Loganaden, +13:u06:Loganaden, +16:u0B:of/Loganaden, +13:u14:loganaden, +13:u05:Loganaden, +16:u0A:of/Loganaden, +24:u0B:Loganaden/Velvindron, +13:u13:loganaden, +13:u04:Loganaden, +16:u09:of/Loganaden, +24:u0A:Loganaden/Velvindron, +25:u0B:Velvindron/cyberstorm, +15:u0D:Loganaden/0, +13:u12:loganaden, +6:u21:Lo, +7:u22:Log, +8:u23:Loga, +7:u32:den, +8:u33:aden, +13:u03:Loganaden, +8:u08:Rose, +24:u09:Loganaden/Velvindron, +25:u0A:Velvindron/cyberstorm, +16:u0C:of/Loganaden, +13:u11:loganaden, +13:u02:Loganaden, +8:u07:Rose, +25:u09:Velvindron/cyberstorm, +24:u0C:Loganaden/Velvindron, +13:u10:loganaden, +13:u01:Loganaden, +8:u06:Rose, +6:u08:MU, +11:u0B:mu/Rose, +25:u0C:Velvindron/cyberstorm, +8:u14:rose, +13:u00:Loganaden, +8:u05:Rose, +6:u07:MU, +11:u0A:mu/Rose, +13:u0B:Rose/Hill, +8:u13:rose, +8:u04:Rose, +6:u06:MU, +11:u09:mu/Rose, +13:u0A:Rose/Hill, +11:u0B:Hill/MU, +10:u0D:Rose/0, +8:u12:rose, +6:u21:Ro, +7:u22:Ros, +8:u23:Rose, +8:u33:Rose, +8:u03:Rose, +6:u05:MU, +8:u08:+230, +13:u09:Rose/Hill, +11:u0A:Hill/MU, +12:u0B:MU/Phone, +11:u0C:mu/Rose, +8:u11:rose, +8:u02:Rose, +6:u04:MU, +8:u07:+230, +12:u08:59762817, +11:u09:Hill/MU, +12:u0A:MU/Phone, +13:u0C:Rose/Hill, +8:u0D:MU/0, +8:u10:rose, +6:u21:MU, +6:u22:MU, +6:u23:MU, +6:u31:MU, +6:u32:MU, +6:u33:MU, +8:u01:Rose, +6:u03:MU, +8:u06:+230, +12:u07:59762817, +12:u09:MU/Phone, +10:u0B::/+230, +11:u0C:Hill/MU, +8:u14:+230, +8:u00:Rose, +6:u02:MU, +8:u05:+230, +12:u06:59762817, +10:u0A::/+230, +17:u0B:+230/59762817, +12:u0C:MU/Phone, +8:u13:+230, +12:u14:59762817, +6:u01:MU, +8:u04:+230, +12:u05:59762817, +20:u08:logan@cyberstorm, +10:u09::/+230, +17:u0A:+230/59762817, +18:u0B:59762817/Email, +10:u0D:+230/0, +8:u12:+230, +12:u13:59762817, +6:u21:+2, +7:u22:+23, +8:u23:+230, +6:u31:30, +7:u32:230, +8:u33:+230, +6:u00:MU, +8:u03:+230, +12:u04:59762817, +20:u07:logan@cyberstorm, +17:u09:+230/59762817, +18:u0A:59762817/Email, +10:u0C::/+230, +14:u0D:59762817/0, +8:u11:+230, +12:u12:59762817, +7:u22:597, +8:u23:5976, +6:u31:17, +7:u32:817, +8:u33:2817, +8:u02:+230, +12:u03:59762817, +20:u06:logan@cyberstorm, +18:u09:59762817/Email, +22:u0B::/logan@cyberstorm, +17:u0C:+230/59762817, +8:u10:+230, +12:u11:59762817, +20:u14:logan@cyberstorm, +8:u01:+230, +12:u02:59762817, +20:u05:logan@cyberstorm, +12:u08:Kathleen, +22:u0A::/logan@cyberstorm, +22:u0B:logan@cyberstorm/., +18:u0C:59762817/Email, +12:u10:59762817, +20:u13:logan@cyberstorm, +8:u00:+230, +12:u01:59762817, +20:u04:logan@cyberstorm, +12:u07:Kathleen, +22:u09::/logan@cyberstorm, +22:u0A:logan@cyberstorm/., +22:u0D:logan@cyberstorm/0, +20:u12:logan@cyberstorm, +6:u21:lo, +7:u22:log, +8:u23:loga, +12:u00:59762817, +20:u03:logan@cyberstorm, +12:u06:Kathleen, +22:u09:logan@cyberstorm/., +15:u0B:mu/Kathleen, +22:u0C::/logan@cyberstorm, +20:u11:logan@cyberstorm, +12:u14:kathleen, +20:u02:logan@cyberstorm, +12:u05:Kathleen, +15:u0A:mu/Kathleen, +21:u0B:Kathleen/Moriarty, +22:u0C:logan@cyberstorm/., +20:u10:logan@cyberstorm, +12:u13:kathleen, +20:u01:logan@cyberstorm, +12:u04:Kathleen, +14:u08:Alessandro, +15:u09:mu/Kathleen, +21:u0A:Kathleen/Moriarty, +17:u0B:Moriarty/Dell, +14:u0D:Kathleen/0, +12:u12:kathleen, +6:u21:Ka, +7:u22:Kat, +8:u23:Kath, +8:u33:leen, +20:u00:logan@cyberstorm, +12:u03:Kathleen, +14:u07:Alessandro, +21:u09:Kathleen/Moriarty, +17:u0A:Moriarty/Dell, +15:u0C:mu/Kathleen, +12:u11:kathleen, +12:u02:Kathleen, +14:u06:Alessandro, +17:u09:Moriarty/Dell, +18:u0B:EMC/Alessandro, +21:u0C:Kathleen/Moriarty, +12:u10:kathleen, +14:u14:alessandro, +12:u01:Kathleen, +14:u05:Alessandro, +18:u0A:EMC/Alessandro, +22:u0B:Alessandro/Ghedini, +17:u0C:Moriarty/Dell, +14:u13:alessandro, +12:u00:Kathleen, +14:u04:Alessandro, +18:u09:EMC/Alessandro, +22:u0A:Alessandro/Ghedini, +16:u0D:Alessandro/0, +14:u12:alessandro, +7:u22:Ale, +8:u23:Ales, +6:u31:ro, +7:u32:dro, +8:u33:ndro, +14:u03:Alessandro, +22:u09:Alessandro/Ghedini, +18:u0C:EMC/Alessandro, +14:u11:alessandro, +14:u02:Alessandro, +22:u0C:Alessandro/Ghedini, +14:u10:alessandro, +14:u01:Alessandro, +10:u0B:./_x+1, +14:u00:Alessandro, +10:u0A:./_x+1, +15:uA3:ALLCAP/_x+1, +12:u06:20190808, +17:u0B:date/20190808, +12:u14:20190808, +12:u05:20190808, +17:u0A:date/20190808, +14:u0B:20190808/;, +12:u13:20190808, +12:u04:20190808, +17:u09:date/20190808, +14:u0A:20190808/;, +14:u0D:20190808/0, +12:u12:20190808, +7:u32:808, +8:u33:0808, +12:u03:20190808, +14:u09:20190808/;, +17:u0C:date/20190808, +12:u11:20190808, +12:u02:20190808, +12:u08:20190809, +14:u0C:20190808/;, +12:u10:20190808, +12:u01:20190808, +12:u07:20190809, +12:u00:20190808, +12:u06:20190809, +8:u08:Work, +15:u0B:on/20190809, +12:u14:20190809, +12:u05:20190809, +8:u07:Work, +15:u0A:on/20190809, +20:u0B:20190809/Network, +12:u13:20190809, +12:u04:20190809, +8:u06:Work, +5:u08:N, +15:u09:on/20190809, +20:u0A:20190809/Network, +16:u0B:Network/Work, +14:u0D:20190809/0, +12:u12:20190809, +7:u32:809, +8:u33:0809, +12:u03:20190809, +8:u05:Work, +5:u07:N, +20:u09:20190809/Network, +16:u0A:Network/Work, +14:u0B:Work/group, +15:u0C:on/20190809, +12:u11:20190809, +12:u02:20190809, +8:u04:Work, +5:u06:N, +10:u08:Nainar, +16:u09:Network/Work, +14:u0A:Work/group, +11:u0B:group/N, +20:u0C:20190809/Network, +10:u0D:Work/0, +12:u10:20190809, +5:u14:n, +8:u33:Work, +12:u01:20190809, +8:u03:Work, +5:u05:N, +10:u07:Nainar, +14:u09:Work/group, +11:u0A:group/N, +7:u0B:N/., +16:u0C:Network/Work, +5:u13:n, +12:u00:20190809, +8:u02:Work, +5:u04:N, +10:u06:Nainar, +11:u09:group/N, +7:u0A:N/., +12:u0B:./Nainar, +14:u0C:Work/group, +7:u0D:N/0, +5:u12:n, +10:u14:nainar, +5:u21:N, +5:u22:N, +5:u23:N, +5:u31:N, +5:u32:N, +5:u33:N, +8:u01:Work, +5:u03:N, +10:u05:Nainar, +7:u09:N/., +12:u0A:./Nainar, +19:u0B:Nainar/Internet, +11:u0C:group/N, +5:u11:n, +10:u13:nainar, +8:u00:Work, +5:u02:N, +10:u04:Nainar, +12:u09:./Nainar, +19:u0A:Nainar/Internet, +7:u0C:N/., +12:u0D:Nainar/0, +5:u10:n, +10:u12:nainar, +7:u22:Nai, +8:u23:Nain, +6:u31:ar, +7:u32:nar, +8:u33:inar, +5:u01:N, +10:u03:Nainar, +19:u09:Nainar/Internet, +12:u0C:./Nainar, +10:u11:nainar, +5:u00:N, +10:u02:Nainar, +13:u08:Pignataro, +11:u0B:Draft/C, +19:u0C:Nainar/Internet, +10:u10:nainar, +10:u01:Nainar, +13:u07:Pignataro, +11:u0A:Draft/C, +10:u00:Nainar, +13:u06:Pignataro, +11:u09:Draft/C, +15:u0B:./Pignataro, +13:u14:pignataro, +13:u05:Pignataro, +8:u08:8287, +15:u0A:./Pignataro, +21:u0B:Pignataro/Updates, +11:u0C:Draft/C, +13:u13:pignataro, +13:u04:Pignataro, +8:u07:8287, +15:u09:./Pignataro, +21:u0A:Pignataro/Updates, +15:u0D:Pignataro/0, +13:u12:pignataro, +6:u21:Pi, +7:u22:Pig, +8:u23:Pign, +7:u32:aro, +8:u33:taro, +13:u03:Pignataro, +8:u06:8287, +21:u09:Pignataro/Updates, +10:u0B::/8287, +15:u0C:./Pignataro, +13:u11:pignataro, +8:u14:8287, +13:u02:Pignataro, +8:u05:8287, +10:u0A::/8287, +10:u0B:8287/(, +21:u0C:Pignataro/Updates, +13:u10:pignataro, +8:u13:8287, +13:u01:Pignataro, +8:u04:8287, +10:u09::/8287, +10:u0A:8287/(, +10:u0D:8287/0, +8:u12:8287, +6:u21:82, +7:u22:828, +8:u23:8287, +6:u31:87, +7:u32:287, +8:u33:8287, +13:u00:Pignataro, +8:u03:8287, +9:u08:Cisco, +10:u09:8287/(, +10:u0C::/8287, +8:u11:8287, +8:u02:8287, +9:u07:Cisco, +10:u0C:8287/(, +8:u10:8287, +8:u01:8287, +9:u06:Cisco, +11:u0B:)/Cisco, +9:u14:cisco, +8:u00:8287, +9:u05:Cisco, +11:u0A:)/Cisco, +17:u0B:Cisco/Systems, +9:u13:cisco, +9:u04:Cisco, +11:u09:)/Cisco, +17:u0A:Cisco/Systems, +13:u0B:Systems/,, +11:u0D:Cisco/0, +9:u12:cisco, +6:u21:Ci, +7:u22:Cis, +8:u23:Cisc, +6:u31:co, +7:u32:sco, +8:u33:isco, +9:u03:Cisco, +17:u09:Cisco/Systems, +13:u0A:Systems/,, +11:u0C:)/Cisco, +9:u11:cisco, +9:u02:Cisco, +13:u09:Systems/,, +17:u0C:Cisco/Systems, +9:u10:cisco, +9:u01:Cisco, +14:u0B:./Intended, +13:u0C:Systems/,, +9:u00:Cisco, +14:u0A:./Intended, +14:u09:./Intended, +5:u08:F, +14:u0C:./Intended, +5:u07:F, +5:u06:F, +9:u08:Iqbal, +11:u0B:Track/F, +5:u14:f, +5:u05:F, +9:u07:Iqbal, +11:u0A:Track/F, +7:u0B:F/., +5:u13:f, +5:u04:F, +9:u06:Iqbal, +11:u09:Track/F, +7:u0A:F/., +11:u0B:./Iqbal, +7:u0D:F/0, +5:u12:f, +9:u14:iqbal, +5:u21:F, +5:u22:F, +5:u23:F, +5:u31:F, +5:u32:F, +5:u33:F, +5:u03:F, +9:u05:Iqbal, +7:u09:F/., +11:u0A:./Iqbal, +17:u0B:Iqbal/Expires, +11:u0C:Track/F, +5:u11:f, +9:u13:iqbal, +5:u02:F, +9:u04:Iqbal, +11:u09:./Iqbal, +17:u0A:Iqbal/Expires, +7:u0C:F/., +11:u0D:Iqbal/0, +5:u10:f, +9:u12:iqbal, +6:u21:Iq, +7:u22:Iqb, +8:u23:Iqba, +7:u32:bal, +8:u33:qbal, +5:u01:F, +9:u03:Iqbal, +17:u09:Iqbal/Expires, +11:u0C:./Iqbal, +9:u11:iqbal, +5:u00:F, +9:u02:Iqbal, +14:u0B:February/9, +17:u0C:Iqbal/Expires, +9:u10:iqbal, +9:u01:Iqbal, +14:u08:Individual, +14:u0A:February/9, +9:u00:Iqbal, +14:u07:Individual, +14:u09:February/9, +14:u06:Individual, +19:u0B:2020/Individual, +14:u0C:February/9, +14:u14:individual, +14:u05:Individual, +14:u08:Vainshtein, +19:u0A:2020/Individual, +16:u0B:Individual/A, +14:u13:individual, +14:u04:Individual, +14:u07:Vainshtein, +7:u08:ECI, +19:u09:2020/Individual, +16:u0A:Individual/A, +16:u0D:Individual/0, +14:u12:individual, +7:u22:Ind, +8:u23:Indi, +7:u32:ual, +8:u33:dual, +14:u03:Individual, +14:u06:Vainshtein, +7:u07:ECI, +11:u08:Telecom, +16:u09:Individual/A, +16:u0B:./Vainshtein, +19:u0C:2020/Individual, +14:u11:individual, +14:u14:vainshtein, +14:u02:Individual, +14:u05:Vainshtein, +7:u06:ECI, +11:u07:Telecom, +16:u0A:./Vainshtein, +18:u0B:Vainshtein/ECI, +16:u0C:Individual/A, +14:u10:individual, +14:u13:vainshtein, +7:u14:eci, +14:u01:Individual, +14:u04:Vainshtein, +7:u05:ECI, +11:u06:Telecom, +16:u09:./Vainshtein, +18:u0A:Vainshtein/ECI, +15:u0B:ECI/Telecom, +16:u0D:Vainshtein/0, +14:u12:vainshtein, +7:u13:eci, +11:u14:telecom, +6:u21:Va, +7:u22:Vai, +8:u23:Vain, +7:u32:ein, +8:u33:tein, +14:u00:Individual, +14:u03:Vainshtein, +7:u04:ECI, +11:u05:Telecom, +18:u09:Vainshtein/ECI, +15:u0A:ECI/Telecom, +18:u0B:Telecom/August, +16:u0C:./Vainshtein, +9:u0D:ECI/0, +14:u11:vainshtein, +7:u12:eci, +11:u13:telecom, +6:u21:EC, +7:u22:ECI, +7:u23:ECI, +6:u31:CI, +7:u32:ECI, +7:u33:ECI, +14:u02:Vainshtein, +7:u03:ECI, +11:u04:Telecom, +15:u09:ECI/Telecom, +18:u0A:Telecom/August, +12:u0B:August/8, +18:u0C:Vainshtein/ECI, +13:u0D:Telecom/0, +14:u10:vainshtein, +7:u11:eci, +11:u12:telecom, +6:u21:Te, +7:u22:Tel, +8:u23:Tele, +8:u33:ecom, +14:u01:Vainshtein, +7:u02:ECI, +11:u03:Telecom, +11:u08:RFC8287, +18:u09:Telecom/August, +12:u0A:August/8, +15:u0C:ECI/Telecom, +7:u10:eci, +11:u11:telecom, +14:u00:Vainshtein, +7:u01:ECI, +11:u02:Telecom, +11:u07:RFC8287, +7:u08:Sub, +12:u09:August/8, +18:u0C:Telecom/August, +11:u10:telecom, +7:u00:ECI, +11:u01:Telecom, +11:u06:RFC8287, +7:u07:Sub, +16:u0B:2019/RFC8287, +12:u0C:August/8, +11:u14:rfc8287, +11:u00:Telecom, +11:u05:RFC8287, +7:u06:Sub, +16:u0A:2019/RFC8287, +15:u0B:RFC8287/Sub, +11:u13:rfc8287, +7:u14:sub, +11:u04:RFC8287, +7:u05:Sub, +10:u08:Length, +16:u09:2019/RFC8287, +15:u0A:RFC8287/Sub, +9:u0B:Sub/-, +13:u0D:RFC8287/0, +11:u12:rfc8287, +7:u13:sub, +8:u23:RFC8, +11:u03:RFC8287, +7:u04:Sub, +10:u07:Length, +17:u08:Clarification, +15:u09:RFC8287/Sub, +9:u0A:Sub/-, +9:u0B:-/TLV, +16:u0C:2019/RFC8287, +9:u0D:Sub/0, +11:u11:rfc8287, +7:u12:sub, +6:u21:Su, +7:u22:Sub, +7:u23:Sub, +7:u32:Sub, +7:u33:Sub, +11:u02:RFC8287, +7:u03:Sub, +10:u06:Length, +17:u07:Clarification, +9:u09:Sub/-, +9:u0A:-/TLV, +14:u0B:TLV/Length, +15:u0C:RFC8287/Sub, +11:u10:rfc8287, +7:u11:sub, +10:u14:length, +11:u01:RFC8287, +7:u02:Sub, +10:u05:Length, +17:u06:Clarification, +9:u09:-/TLV, +14:u0A:TLV/Length, +24:u0B:Length/Clarification, +9:u0C:Sub/-, +9:u0D:TLV/1, +7:u10:sub, +10:u13:length, +17:u14:clarification, +11:u00:RFC8287, +7:u01:Sub, +10:u04:Length, +17:u05:Clarification, +14:u09:TLV/Length, +24:u0A:Length/Clarification, +23:u0B:Clarification/draft, +9:u0C:-/TLV, +12:u0D:Length/0, +10:u12:length, +17:u13:clarification, +7:u22:Len, +8:u23:Leng, +7:u00:Sub, +10:u03:Length, +17:u04:Clarification, +24:u09:Length/Clarification, +23:u0A:Clarification/draft, +14:u0C:TLV/Length, +19:u0D:Clarification/0, +10:u11:length, +17:u12:clarification, +7:u22:Cla, +8:u23:Clar, +10:u02:Length, +17:u03:Clarification, +8:u08:mpls, +23:u09:Clarification/draft, +24:u0C:Length/Clarification, +10:u10:length, +17:u11:clarification, +10:u01:Length, +17:u02:Clarification, +8:u07:mpls, +23:u0C:Clarification/draft, +17:u10:clarification, +10:u00:Length, +17:u01:Clarification, +8:u06:mpls, +11:u08:rfc8287, +10:u0B:-/mpls, +8:u14:mpls, +17:u00:Clarification, +8:u05:mpls, +11:u07:rfc8287, +10:u0A:-/mpls, +10:u0B:mpls/-, +8:u13:mpls, +8:u04:mpls, +11:u06:rfc8287, +7:u08:len, +10:u09:-/mpls, +10:u0A:mpls/-, +13:u0B:-/rfc8287, +10:u0D:mpls/1, +8:u12:mpls, +6:u21:mp, +7:u22:mpl, +8:u23:mpls, +7:u32:pls, +8:u33:mpls, +8:u03:mpls, +11:u05:rfc8287, +7:u07:len, +10:u09:mpls/-, +13:u0A:-/rfc8287, +13:u0B:rfc8287/-, +10:u0C:-/mpls, +8:u11:mpls, +8:u02:mpls, +11:u04:rfc8287, +7:u06:len, +17:u08:clarification, +13:u09:-/rfc8287, +13:u0A:rfc8287/-, +9:u0B:-/len, +10:u0C:mpls/-, +13:u0D:rfc8287/1, +8:u10:mpls, +7:u14:len, +8:u01:mpls, +11:u03:rfc8287, +7:u05:len, +17:u07:clarification, +13:u09:rfc8287/-, +9:u0A:-/len, +9:u0B:len/-, +13:u0C:-/rfc8287, +7:u13:len, +8:u00:mpls, +11:u02:rfc8287, +7:u04:len, +17:u06:clarification, +6:u08:03, +9:u09:-/len, +9:u0A:len/-, +19:u0B:-/clarification, +13:u0C:rfc8287/-, +9:u0D:len/1, +7:u12:len, +7:u22:len, +7:u23:len, +7:u32:len, +7:u33:len, +11:u01:rfc8287, +7:u03:len, +17:u05:clarification, +6:u07:03, +9:u09:len/-, +19:u0A:-/clarification, +19:u0B:clarification/-, +9:u0C:-/len, +7:u11:len, +11:u00:rfc8287, +7:u02:len, +17:u04:clarification, +6:u06:03, +19:u09:-/clarification, +19:u0A:clarification/-, +8:u0B:-/03, +9:u0C:len/-, +19:u0D:clarification/1, +7:u10:len, +6:u14:03, +6:u21:cl, +7:u22:cla, +8:u23:clar, +7:u01:len, +17:u03:clarification, +6:u05:03, +19:u09:clarification/-, +8:u0A:-/03, +15:u0B:03/Abstract, +19:u0C:-/clarification, +6:u13:03, +7:u00:len, +17:u02:clarification, +6:u04:03, +8:u09:-/03, +15:u0A:03/Abstract, +20:u0B:Abstract/RFC8287, +19:u0C:clarification/-, +8:u0D:03/1, +6:u12:03, +6:u21:03, +6:u22:03, +6:u23:03, +6:u32:03, +6:u33:03, +17:u01:clarification, +6:u03:03, +14:u08:extensions, +15:u09:03/Abstract, +20:u0A:Abstract/RFC8287, +19:u0B:RFC8287/defines, +8:u0C:-/03, +6:u11:03, +17:u00:clarification, +6:u02:03, +14:u07:extensions, +20:u09:Abstract/RFC8287, +19:u0A:RFC8287/defines, +15:u0B:defines/the, +15:u0C:03/Abstract, +6:u10:03, +6:u01:03, +14:u06:extensions, +8:u08:MPLS, +19:u09:RFC8287/defines, +15:u0A:defines/the, +18:u0B:the/extensions, +20:u0C:Abstract/RFC8287, +14:u14:extensions, +6:u00:03, +14:u05:extensions, +8:u07:MPLS, +7:u08:LSP, +15:u09:defines/the, +18:u0A:the/extensions, +17:u0B:extensions/to, +19:u0C:RFC8287/defines, +14:u13:extensions, +14:u04:extensions, +8:u06:MPLS, +7:u07:LSP, +8:u08:Ping, +18:u09:the/extensions, +17:u0A:extensions/to, +11:u0B:to/MPLS, +15:u0C:defines/the, +16:u0D:extensions/0, +14:u12:extensions, +8:u23:exte, +14:u03:extensions, +8:u05:MPLS, +7:u06:LSP, +8:u07:Ping, +17:u09:extensions/to, +11:u0A:to/MPLS, +12:u0B:MPLS/LSP, +18:u0C:the/extensions, +14:u11:extensions, +7:u14:lsp, +14:u02:extensions, +8:u04:MPLS, +7:u05:LSP, +8:u06:Ping, +14:u08:Traceroute, +11:u09:to/MPLS, +12:u0A:MPLS/LSP, +12:u0B:LSP/Ping, +17:u0C:extensions/to, +10:u0D:MPLS/0, +14:u10:extensions, +7:u13:lsp, +8:u14:ping, +6:u21:MP, +7:u22:MPL, +8:u23:MPLS, +7:u32:PLS, +8:u33:MPLS, +14:u01:extensions, +8:u03:MPLS, +7:u04:LSP, +8:u05:Ping, +14:u07:Traceroute, +12:u09:MPLS/LSP, +12:u0A:LSP/Ping, +12:u0B:Ping/and, +11:u0C:to/MPLS, +9:u0D:LSP/0, +7:u12:lsp, +8:u13:ping, +6:u21:LS, +7:u22:LSP, +7:u23:LSP, +6:u31:SP, +7:u32:LSP, +7:u33:LSP, +14:u00:extensions, +8:u02:MPLS, +7:u03:LSP, +8:u04:Ping, +14:u06:Traceroute, +11:u08:Segment, +12:u09:LSP/Ping, +12:u0A:Ping/and, +18:u0B:and/Traceroute, +12:u0C:MPLS/LSP, +10:u0D:Ping/0, +7:u11:lsp, +8:u12:ping, +14:u14:traceroute, +7:u22:Pin, +8:u23:Ping, +8:u33:Ping, +8:u01:MPLS, +7:u02:LSP, +8:u03:Ping, +14:u05:Traceroute, +11:u07:Segment, +11:u08:Routing, +12:u09:Ping/and, +18:u0A:and/Traceroute, +18:u0B:Traceroute/for, +12:u0C:LSP/Ping, +7:u10:lsp, +8:u11:ping, +14:u13:traceroute, +8:u00:MPLS, +7:u01:LSP, +8:u02:Ping, +14:u04:Traceroute, +11:u06:Segment, +11:u07:Routing, +7:u08:IGP, +18:u09:and/Traceroute, +18:u0A:Traceroute/for, +15:u0B:for/Segment, +12:u0C:Ping/and, +16:u0D:Traceroute/0, +8:u10:ping, +14:u12:traceroute, +11:u14:segment, +8:u33:oute, +7:u00:LSP, +8:u01:Ping, +14:u03:Traceroute, +11:u05:Segment, +11:u06:Routing, +7:u07:IGP, +18:u09:Traceroute/for, +15:u0A:for/Segment, +19:u0B:Segment/Routing, +18:u0C:and/Traceroute, +14:u11:traceroute, +11:u13:segment, +11:u14:routing, +8:u00:Ping, +14:u02:Traceroute, +11:u04:Segment, +11:u05:Routing, +7:u06:IGP, +10:u08:Prefix, +15:u09:for/Segment, +19:u0A:Segment/Routing, +15:u0B:Routing/IGP, +18:u0C:Traceroute/for, +13:u0D:Segment/0, +14:u10:traceroute, +11:u12:segment, +11:u13:routing, +7:u14:igp, +7:u22:Seg, +8:u23:Segm, +14:u01:Traceroute, +11:u03:Segment, +11:u04:Routing, +7:u05:IGP, +10:u07:Prefix, +19:u09:Segment/Routing, +15:u0A:Routing/IGP, +9:u0B:IGP/-, +15:u0C:for/Segment, +13:u0D:Routing/0, +11:u11:segment, +11:u12:routing, +7:u13:igp, +7:u22:Rou, +8:u23:Rout, +14:u00:Traceroute, +11:u02:Segment, +11:u03:Routing, +7:u04:IGP, +10:u06:Prefix, +15:u09:Routing/IGP, +9:u0A:IGP/-, +12:u0B:-/Prefix, +19:u0C:Segment/Routing, +9:u0D:IGP/0, +11:u10:segment, +11:u11:routing, +7:u12:igp, +10:u14:prefix, +6:u21:IG, +7:u22:IGP, +7:u23:IGP, +6:u31:GP, +7:u32:IGP, +7:u33:IGP, +11:u01:Segment, +11:u02:Routing, +7:u03:IGP, +10:u05:Prefix, +9:u09:IGP/-, +12:u0A:-/Prefix, +14:u0B:Prefix/and, +15:u0C:Routing/IGP, +11:u10:routing, +7:u11:igp, +10:u13:prefix, +11:u00:Segment, +11:u01:Routing, +7:u02:IGP, +10:u04:Prefix, +13:u08:Adjacency, +12:u09:-/Prefix, +14:u0A:Prefix/and, +11:u0B:and/IGP, +9:u0C:IGP/-, +12:u0D:Prefix/1, +7:u10:igp, +10:u12:prefix, +7:u22:Pre, +8:u23:Pref, +7:u32:fix, +8:u33:efix, +11:u00:Routing, +7:u01:IGP, +10:u03:Prefix, +13:u07:Adjacency, +14:u09:Prefix/and, +11:u0A:and/IGP, +12:u0C:-/Prefix, +10:u11:prefix, +7:u00:IGP, +10:u02:Prefix, +13:u06:Adjacency, +14:u08:Identifier, +11:u09:and/IGP, +15:u0B:-/Adjacency, +14:u0C:Prefix/and, +10:u10:prefix, +13:u14:adjacency, +10:u01:Prefix, +13:u05:Adjacency, +14:u07:Identifier, +15:u0A:-/Adjacency, +21:u0B:Adjacency/Segment, +11:u0C:and/IGP, +13:u13:adjacency, +10:u00:Prefix, +13:u04:Adjacency, +14:u06:Identifier, +8:u08:SIDs, +15:u09:-/Adjacency, +21:u0A:Adjacency/Segment, +22:u0B:Segment/Identifier, +15:u0D:Adjacency/1, +13:u12:adjacency, +14:u14:identifier, +6:u21:Ad, +7:u22:Adj, +8:u23:Adja, +7:u32:ncy, +8:u33:ency, +13:u03:Adjacency, +14:u05:Identifier, +8:u07:SIDs, +21:u09:Adjacency/Segment, +22:u0A:Segment/Identifier, +16:u0B:Identifier/(, +15:u0C:-/Adjacency, +13:u11:adjacency, +14:u13:identifier, +13:u02:Adjacency, +14:u04:Identifier, +8:u06:SIDs, +22:u09:Segment/Identifier, +16:u0A:Identifier/(, +10:u0B:(/SIDs, +21:u0C:Adjacency/Segment, +16:u0D:Identifier/0, +13:u10:adjacency, +14:u12:identifier, +8:u14:sids, +6:u21:Id, +7:u22:Ide, +8:u23:Iden, +7:u32:ier, +8:u33:fier, +13:u01:Adjacency, +14:u03:Identifier, +8:u05:SIDs, +16:u09:Identifier/(, +10:u0A:(/SIDs, +10:u0B:SIDs/), +22:u0C:Segment/Identifier, +14:u11:identifier, +8:u13:sids, +13:u00:Adjacency, +14:u02:Identifier, +8:u04:SIDs, +10:u09:(/SIDs, +10:u0A:SIDs/), +10:u0B:)/with, +16:u0C:Identifier/(, +10:u0D:SIDs/0, +14:u10:identifier, +8:u12:sids, +6:u21:SI, +7:u22:SID, +8:u23:SIDs, +6:u31:Ds, +7:u32:IDs, +8:u33:SIDs, +14:u01:Identifier, +8:u03:SIDs, +10:u09:SIDs/), +10:u0A:)/with, +11:u0B:with/an, +10:u0C:(/SIDs, +8:u11:sids, +14:u00:Identifier, +8:u02:SIDs, +9:u08:plane, +10:u09:)/with, +11:u0A:with/an, +11:u0B:an/MPLS, +10:u0C:SIDs/), +8:u10:sids, +8:u01:SIDs, +9:u07:plane, +11:u09:with/an, +11:u0A:an/MPLS, +13:u0B:MPLS/data, +10:u0C:)/with, +8:u00:SIDs, +9:u06:plane, +11:u09:an/MPLS, +13:u0A:MPLS/data, +14:u0B:data/plane, +11:u0C:with/an, +9:u14:plane, +9:u05:plane, +13:u09:MPLS/data, +14:u0A:data/plane, +11:u0B:plane/., +11:u0C:an/MPLS, +9:u13:plane, +9:u04:plane, +5:u08:3, +14:u09:data/plane, +11:u0A:plane/., +13:u0B:./RFC8287, +13:u0C:MPLS/data, +11:u0D:plane/0, +9:u12:plane, +6:u21:pl, +7:u22:pla, +8:u23:plan, +7:u32:ane, +8:u33:lane, +9:u03:plane, +5:u07:3, +10:u08:Target, +11:u09:plane/., +13:u0A:./RFC8287, +20:u0B:RFC8287/proposes, +14:u0C:data/plane, +9:u11:plane, +9:u02:plane, +5:u06:3, +10:u07:Target, +7:u08:FEC, +13:u09:./RFC8287, +20:u0A:RFC8287/proposes, +14:u0B:proposes/3, +11:u0C:plane/., +9:u10:plane, +5:u14:3, +9:u01:plane, +5:u05:3, +10:u06:Target, +7:u07:FEC, +9:u08:Stack, +20:u09:RFC8287/proposes, +14:u0A:proposes/3, +12:u0B:3/Target, +13:u0C:./RFC8287, +5:u13:3, +10:u14:target, +9:u00:plane, +5:u04:3, +10:u05:Target, +7:u06:FEC, +9:u07:Stack, +14:u09:proposes/3, +12:u0A:3/Target, +14:u0B:Target/FEC, +20:u0C:RFC8287/proposes, +7:u0D:3/0, +5:u12:3, +10:u13:target, +7:u14:fec, +5:u21:3, +5:u22:3, +5:u23:3, +5:u31:3, +5:u32:3, +5:u33:3, +5:u03:3, +10:u04:Target, +7:u05:FEC, +9:u06:Stack, +12:u09:3/Target, +14:u0A:Target/FEC, +13:u0B:FEC/Stack, +14:u0C:proposes/3, +12:u0D:Target/0, +5:u11:3, +10:u12:target, +7:u13:fec, +9:u14:stack, +7:u22:Tar, +8:u23:Targ, +7:u32:get, +8:u33:rget, +5:u02:3, +10:u03:Target, +7:u04:FEC, +9:u05:Stack, +8:u08:TLVs, +14:u09:Target/FEC, +13:u0A:FEC/Stack, +13:u0B:Stack/Sub, +12:u0C:3/Target, +9:u0D:FEC/0, +5:u10:3, +10:u11:target, +7:u12:fec, +9:u13:stack, +6:u21:FE, +7:u22:FEC, +7:u23:FEC, +6:u31:EC, +7:u32:FEC, +7:u33:FEC, +5:u01:3, +10:u02:Target, +7:u03:FEC, +9:u04:Stack, +8:u07:TLVs, +13:u09:FEC/Stack, +13:u0A:Stack/Sub, +14:u0C:Target/FEC, +11:u0D:Stack/0, +10:u10:target, +7:u11:fec, +9:u12:stack, +8:u23:Stac, +8:u33:tack, +5:u00:3, +10:u01:Target, +7:u02:FEC, +9:u03:Stack, +8:u06:TLVs, +13:u09:Stack/Sub, +10:u0B:-/TLVs, +13:u0C:FEC/Stack, +7:u10:fec, +9:u11:stack, +8:u14:tlvs, +10:u00:Target, +7:u01:FEC, +9:u02:Stack, +8:u05:TLVs, +10:u0A:-/TLVs, +10:u0B:TLVs/., +13:u0C:Stack/Sub, +9:u10:stack, +8:u13:tlvs, +7:u00:FEC, +9:u01:Stack, +8:u04:TLVs, +12:u08:standard, +10:u09:-/TLVs, +10:u0A:TLVs/., +10:u0D:TLVs/1, +8:u12:tlvs, +8:u23:TLVs, +6:u31:Vs, +7:u32:LVs, +8:u33:TLVs, +9:u00:Stack, +8:u03:TLVs, +12:u07:standard, +10:u09:TLVs/., +13:u0B:While/the, +10:u0C:-/TLVs, +8:u11:tlvs, +8:u02:TLVs, +12:u06:standard, +13:u0A:While/the, +16:u0B:the/standard, +10:u0C:TLVs/., +8:u10:tlvs, +8:u01:TLVs, +12:u05:standard, +13:u09:While/the, +16:u0A:the/standard, +20:u0B:standard/defines, +8:u00:TLVs, +12:u04:standard, +16:u09:the/standard, +20:u0A:standard/defines, +13:u0C:While/the, +14:u0D:standard/0, +8:u23:stan, +12:u03:standard, +13:u08:procedure, +20:u09:standard/defines, +14:u0B:the/format, +16:u0C:the/standard, +12:u02:standard, +13:u07:procedure, +14:u0A:the/format, +14:u0B:format/and, +20:u0C:standard/defines, +12:u01:standard, +13:u06:procedure, +10:u08:handle, +14:u09:the/format, +14:u0A:format/and, +17:u0B:and/procedure, +13:u14:procedure, +12:u00:standard, +13:u05:procedure, +10:u07:handle, +14:u09:format/and, +17:u0A:and/procedure, +16:u0B:procedure/to, +14:u0C:the/format, +13:u13:procedure, +13:u04:procedure, +10:u06:handle, +17:u09:and/procedure, +16:u0A:procedure/to, +13:u0B:to/handle, +14:u0C:format/and, +15:u0D:procedure/0, +13:u12:procedure, +10:u14:handle, +8:u33:dure, +13:u03:procedure, +10:u05:handle, +16:u09:procedure/to, +13:u0A:to/handle, +16:u0B:handle/those, +17:u0C:and/procedure, +13:u11:procedure, +10:u13:handle, +13:u02:procedure, +10:u04:handle, +13:u09:to/handle, +16:u0A:handle/those, +13:u0B:those/Sub, +16:u0C:procedure/to, +12:u0D:handle/0, +13:u10:procedure, +10:u12:handle, +7:u22:han, +8:u23:hand, +7:u32:dle, +8:u33:ndle, +13:u01:procedure, +10:u03:handle, +16:u09:handle/those, +13:u0A:those/Sub, +13:u0C:to/handle, +10:u11:handle, +13:u00:procedure, +10:u02:handle, +13:u09:those/Sub, +16:u0C:handle/those, +10:u10:handle, +10:u01:handle, +10:u0B:TLVs/,, +13:u0C:those/Sub, +10:u00:handle, +10:u0A:TLVs/,, +8:u0B:,/it, +16:u08:sufficiently, +10:u09:TLVs/,, +8:u0A:,/it, +11:u0B:it/does, +16:u07:sufficiently, +11:u08:clarify, +8:u09:,/it, +11:u0A:it/does, +10:u0C:TLVs/,, +16:u06:sufficiently, +11:u07:clarify, +11:u09:it/does, +20:u0B:not/sufficiently, +8:u0C:,/it, +16:u14:sufficiently, +16:u05:sufficiently, +11:u06:clarify, +20:u0A:not/sufficiently, +24:u0B:sufficiently/clarify, +11:u0C:it/does, +16:u13:sufficiently, +11:u14:clarify, +16:u04:sufficiently, +11:u05:clarify, +10:u08:length, +20:u09:not/sufficiently, +24:u0A:sufficiently/clarify, +15:u0B:clarify/how, +18:u0D:sufficiently/0, +16:u12:sufficiently, +11:u13:clarify, +7:u22:suf, +8:u23:suff, +16:u03:sufficiently, +11:u04:clarify, +10:u07:length, +24:u09:sufficiently/clarify, +15:u0A:clarify/how, +11:u0B:how/the, +20:u0C:not/sufficiently, +13:u0D:clarify/0, +16:u11:sufficiently, +11:u12:clarify, +6:u31:fy, +7:u32:ify, +8:u33:rify, +16:u02:sufficiently, +11:u03:clarify, +10:u06:length, +15:u09:clarify/how, +11:u0A:how/the, +14:u0B:the/length, +24:u0C:sufficiently/clarify, +16:u10:sufficiently, +11:u11:clarify, +16:u01:sufficiently, +11:u02:clarify, +10:u05:length, +11:u09:how/the, +14:u0A:the/length, +13:u0B:length/of, +15:u0C:clarify/how, +11:u10:clarify, +16:u00:sufficiently, +11:u01:clarify, +10:u04:length, +6:u08:ID, +14:u09:the/length, +13:u0A:length/of, +11:u0C:how/the, +12:u0D:length/0, +8:u23:leng, +11:u00:clarify, +10:u03:length, +6:u07:ID, +13:u09:length/of, +15:u0B:the/Segment, +14:u0C:the/length, +10:u02:length, +6:u06:ID, +15:u0A:the/Segment, +14:u0B:Segment/ID, +13:u0C:length/of, +6:u14:id, +10:u01:length, +6:u05:ID, +15:u09:the/Segment, +14:u0A:Segment/ID, +10:u0B:ID/Sub, +6:u13:id, +10:u00:length, +6:u04:ID, +14:u09:Segment/ID, +10:u0A:ID/Sub, +15:u0C:the/Segment, +8:u0D:ID/0, +6:u12:id, +6:u21:ID, +6:u22:ID, +6:u23:ID, +6:u31:ID, +6:u32:ID, +6:u33:ID, +6:u03:ID, +10:u09:ID/Sub, +14:u0C:Segment/ID, +6:u11:id, +6:u02:ID, +12:u08:computed, +15:u0B:TLVs/should, +10:u0C:ID/Sub, +6:u10:id, +6:u01:ID, +12:u07:computed, +15:u0A:TLVs/should, +6:u00:ID, +12:u06:computed, +15:u09:TLVs/should, +15:u0B:be/computed, +12:u14:computed, +12:u05:computed, +15:u0A:be/computed, +15:u0B:computed/to, +15:u0C:TLVs/should, +12:u13:computed, +12:u04:computed, +15:u09:be/computed, +15:u0A:computed/to, +14:u0B:to/include, +14:u0D:computed/0, +12:u12:computed, +8:u23:comp, +8:u33:uted, +12:u03:computed, +15:u09:computed/to, +14:u0A:to/include, +14:u0B:include/in, +15:u0C:be/computed, +12:u11:computed, +12:u02:computed, +9:u08:field, +14:u09:to/include, +14:u0A:include/in, +15:u0C:computed/to, +12:u10:computed, +12:u01:computed, +9:u07:field, +14:u09:include/in, +14:u0B:the/Length, +14:u0C:to/include, +12:u00:computed, +9:u06:field, +14:u0A:the/Length, +16:u0B:Length/field, +14:u0C:include/in, +9:u14:field, +9:u05:field, +14:u09:the/Length, +16:u0A:Length/field, +12:u0B:field/of, +9:u13:field, +9:u04:field, +16:u09:Length/field, +12:u0A:field/of, +14:u0C:the/Length, +11:u0D:field/0, +9:u12:field, +7:u32:eld, +8:u33:ield, +9:u03:field, +12:u09:field/of, +11:u0B:the/Sub, +16:u0C:Length/field, +9:u11:field, +9:u02:field, +11:u0A:the/Sub, +12:u0C:field/of, +9:u10:field, +9:u01:field, +11:u09:the/Sub, +9:u00:field, +10:u08:result, +14:u0B:TLVs/which, +11:u0C:the/Sub, +10:u07:result, +14:u0A:TLVs/which, +13:u0B:which/may, +10:u06:result, +20:u08:interoperability, +14:u09:TLVs/which, +13:u0A:which/may, +14:u0B:may/result, +10:u14:result, +10:u05:result, +20:u07:interoperability, +10:u08:issues, +13:u09:which/may, +14:u0A:may/result, +13:u0B:result/in, +14:u0C:TLVs/which, +10:u13:result, +10:u04:result, +20:u06:interoperability, +10:u07:issues, +14:u09:may/result, +13:u0A:result/in, +23:u0B:in/interoperability, +13:u0C:which/may, +12:u0D:result/0, +10:u12:result, +20:u14:interoperability, +6:u31:lt, +7:u32:ult, +8:u33:sult, +10:u03:result, +20:u05:interoperability, +10:u06:issues, +13:u09:result/in, +23:u0A:in/interoperability, +27:u0B:interoperability/issues, +14:u0C:may/result, +10:u11:result, +20:u13:interoperability, +10:u14:issues, +10:u02:result, +20:u04:interoperability, +10:u05:issues, +23:u09:in/interoperability, +27:u0A:interoperability/issues, +12:u0B:issues/., +13:u0C:result/in, +22:u0D:interoperability/0, +10:u10:result, +20:u12:interoperability, +10:u13:issues, +8:u33:lity, +10:u01:result, +20:u03:interoperability, +10:u04:issues, +11:u08:updates, +27:u09:interoperability/issues, +12:u0A:issues/., +23:u0C:in/interoperability, +12:u0D:issues/0, +20:u11:interoperability, +10:u12:issues, +7:u22:iss, +8:u23:issu, +7:u32:ues, +8:u33:sues, +10:u00:result, +20:u02:interoperability, +10:u03:issues, +11:u07:updates, +12:u09:issues/., +27:u0C:interoperability/issues, +20:u10:interoperability, +10:u11:issues, +20:u01:interoperability, +10:u02:issues, +11:u06:updates, +20:u0B:document/updates, +12:u0C:issues/., +10:u10:issues, +20:u00:interoperability, +10:u01:issues, +11:u05:updates, +14:u08:clarifying, +20:u0A:document/updates, +19:u0B:updates/RFC8287, +10:u00:issues, +11:u04:updates, +14:u07:clarifying, +20:u09:document/updates, +19:u0A:updates/RFC8287, +14:u0B:RFC8287/by, +13:u0D:updates/0, +11:u03:updates, +14:u06:clarifying, +19:u09:updates/RFC8287, +14:u0A:RFC8287/by, +17:u0B:by/clarifying, +20:u0C:document/updates, +14:u14:clarifying, +11:u02:updates, +14:u05:clarifying, +14:u09:RFC8287/by, +17:u0A:by/clarifying, +18:u0B:clarifying/the, +19:u0C:updates/RFC8287, +14:u13:clarifying, +11:u01:updates, +14:u04:clarifying, +17:u09:by/clarifying, +18:u0A:clarifying/the, +14:u0C:RFC8287/by, +16:u0D:clarifying/0, +14:u12:clarifying, +11:u00:updates, +14:u03:clarifying, +18:u09:clarifying/the, +17:u0C:by/clarifying, +14:u11:clarifying, +14:u02:clarifying, +18:u0C:clarifying/the, +14:u10:clarifying, +14:u01:clarifying, +16:u0B:each/Segment, +14:u00:clarifying, +16:u0A:each/Segment, +16:u09:each/Segment, +11:u08:defined, +16:u0C:each/Segment, +11:u07:defined, +11:u06:defined, +16:u0B:TLVs/defined, +11:u14:defined, +11:u05:defined, +16:u0A:TLVs/defined, +14:u0B:defined/in, +11:u13:defined, +11:u04:defined, +16:u09:TLVs/defined, +14:u0A:defined/in, +14:u0B:in/RFC8287, +13:u0D:defined/0, +11:u12:defined, +11:u03:defined, +14:u09:defined/in, +14:u0A:in/RFC8287, +13:u0B:RFC8287/., +16:u0C:TLVs/defined, +11:u11:defined, +11:u02:defined, +14:u09:in/RFC8287, +13:u0A:RFC8287/., +14:u0C:defined/in, +11:u10:defined, +11:u01:defined, +13:u09:RFC8287/., +14:u0C:in/RFC8287, +11:u00:defined, +13:u0C:RFC8287/., +7:u0B:./-, +7:u0A:./-, +10:u0B:-/_x+1, +7:u09:./-, +10:u0A:-/_x+1, +11:u04:BFCPbis, +5:u07:G, +16:u09:_x-1/BFCPbis, +19:u0A:BFCPbis/Working, +16:u0D:BFCPbis/_x-1, +11:u12:bfcpbis, +6:u21:BF, +7:u22:BFC, +8:u23:BFCP, +7:u32:bis, +8:u33:Pbis, +5:u71:0, +5:u72:0, +16:uA4:_x-1/INITCAP, +11:u03:BFCPbis, +5:u06:G, +13:u08:Camarillo, +19:u09:BFCPbis/Working, +11:u0B:Group/G, +16:u0C:_x-1/BFCPbis, +11:u11:bfcpbis, +5:u14:g, +5:u70:0, +11:u02:BFCPbis, +5:u05:G, +13:u07:Camarillo, +11:u0A:Group/G, +7:u0B:G/., +19:u0C:BFCPbis/Working, +11:u10:bfcpbis, +5:u13:g, +11:u01:BFCPbis, +5:u04:G, +13:u06:Camarillo, +11:u09:Group/G, +7:u0A:G/., +15:u0B:./Camarillo, +7:u0D:G/0, +5:u12:g, +13:u14:camarillo, +5:u21:G, +5:u22:G, +5:u23:G, +5:u31:G, +5:u32:G, +5:u33:G, +11:u00:BFCPbis, +5:u03:G, +13:u05:Camarillo, +7:u09:G/., +15:u0A:./Camarillo, +22:u0B:Camarillo/Internet, +11:u0C:Group/G, +5:u11:g, +13:u13:camarillo, +5:u02:G, +13:u04:Camarillo, +12:u08:Ericsson, +15:u09:./Camarillo, +22:u0A:Camarillo/Internet, +7:u0C:G/., +15:u0D:Camarillo/0, +5:u10:g, +13:u12:camarillo, +8:u23:Cama, +7:u32:llo, +8:u33:illo, +5:u01:G, +13:u03:Camarillo, +12:u07:Ericsson, +13:u08:Obsoletes, +22:u09:Camarillo/Internet, +15:u0C:./Camarillo, +13:u11:camarillo, +5:u00:G, +13:u02:Camarillo, +12:u06:Ericsson, +13:u07:Obsoletes, +18:u0B:Draft/Ericsson, +22:u0C:Camarillo/Internet, +13:u10:camarillo, +12:u14:ericsson, +13:u01:Camarillo, +12:u05:Ericsson, +13:u06:Obsoletes, +8:u08:4583, +18:u0A:Draft/Ericsson, +22:u0B:Ericsson/Obsoletes, +12:u13:ericsson, +13:u14:obsoletes, +13:u00:Camarillo, +12:u04:Ericsson, +13:u05:Obsoletes, +8:u07:4583, +18:u09:Draft/Ericsson, +22:u0A:Ericsson/Obsoletes, +15:u0B:Obsoletes/:, +14:u0D:Ericsson/0, +12:u12:ericsson, +13:u13:obsoletes, +6:u21:Er, +7:u22:Eri, +8:u23:Eric, +7:u32:son, +8:u33:sson, +12:u03:Ericsson, +13:u04:Obsoletes, +8:u06:4583, +22:u09:Ericsson/Obsoletes, +15:u0A:Obsoletes/:, +10:u0B::/4583, +18:u0C:Draft/Ericsson, +15:u0D:Obsoletes/0, +12:u11:ericsson, +13:u12:obsoletes, +8:u14:4583, +7:u22:Obs, +8:u23:Obso, +8:u33:etes, +12:u02:Ericsson, +13:u03:Obsoletes, +8:u05:4583, +15:u09:Obsoletes/:, +10:u0A::/4583, +10:u0B:4583/(, +22:u0C:Ericsson/Obsoletes, +12:u10:ericsson, +13:u11:obsoletes, +8:u13:4583, +12:u01:Ericsson, +13:u02:Obsoletes, +8:u04:4583, +10:u09::/4583, +10:u0A:4583/(, +15:u0C:Obsoletes/:, +10:u0D:4583/0, +13:u10:obsoletes, +8:u12:4583, +6:u21:45, +7:u22:458, +8:u23:4583, +6:u31:83, +7:u32:583, +8:u33:4583, +12:u00:Ericsson, +13:u01:Obsoletes, +8:u03:4583, +5:u08:T, +10:u09:4583/(, +10:u0C::/4583, +8:u11:4583, +13:u00:Obsoletes, +8:u02:4583, +5:u07:T, +10:u0C:4583/(, +8:u10:4583, +8:u01:4583, +5:u06:T, +14:u08:Kristensen, +7:u0B:)/T, +5:u14:t, +8:u00:4583, +5:u05:T, +14:u07:Kristensen, +7:u0A:)/T, +7:u0B:T/., +5:u13:t, +5:u04:T, +14:u06:Kristensen, +7:u09:)/T, +7:u0A:T/., +16:u0B:./Kristensen, +7:u0D:T/0, +5:u12:t, +14:u14:kristensen, +5:u21:T, +5:u22:T, +5:u23:T, +5:u30:T, +5:u31:T, +5:u32:T, +5:u33:T, +5:u03:T, +14:u05:Kristensen, +7:u09:T/., +16:u0A:./Kristensen, +23:u0B:Kristensen/Intended, +7:u0C:)/T, +5:u11:t, +14:u13:kristensen, +5:u02:T, +14:u04:Kristensen, +16:u09:./Kristensen, +23:u0A:Kristensen/Intended, +7:u0C:T/., +16:u0D:Kristensen/0, +5:u10:t, +14:u12:kristensen, +6:u21:Kr, +7:u22:Kri, +8:u23:Kris, +7:u32:sen, +8:u33:nsen, +5:u01:T, +14:u03:Kristensen, +23:u09:Kristensen/Intended, +16:u0C:./Kristensen, +14:u11:kristensen, +5:u00:T, +14:u02:Kristensen, +23:u0C:Kristensen/Intended, +14:u10:kristensen, +14:u01:Kristensen, +14:u00:Kristensen, +15:u0B:Track/Cisco, +8:u08:June, +15:u0A:Track/Cisco, +17:u0B:Cisco/Expires, +8:u07:June, +15:u09:Track/Cisco, +17:u0A:Cisco/Expires, +8:u06:June, +17:u09:Cisco/Expires, +10:u0B::/June, +15:u0C:Track/Cisco, +8:u14:june, +8:u05:June, +10:u0A::/June, +11:u0B:June/11, +17:u0C:Cisco/Expires, +8:u13:june, +8:u04:June, +10:u09::/June, +11:u0A:June/11, +10:u0D:June/0, +8:u12:june, +7:u22:Jun, +8:u23:June, +7:u32:une, +8:u33:June, +8:u03:June, +11:u09:June/11, +10:u0C::/June, +8:u11:june, +8:u02:June, +12:u08:Holmberg, +10:u0B:2019/C, +11:u0C:June/11, +8:u10:june, +8:u01:June, +12:u07:Holmberg, +10:u0A:2019/C, +8:u00:June, +12:u06:Holmberg, +12:u08:December, +10:u09:2019/C, +14:u0B:./Holmberg, +12:u14:holmberg, +12:u05:Holmberg, +12:u07:December, +14:u0A:./Holmberg, +21:u0B:Holmberg/Ericsson, +10:u0C:2019/C, +12:u13:holmberg, +12:u04:Holmberg, +12:u06:December, +14:u09:./Holmberg, +21:u0A:Holmberg/Ericsson, +21:u0B:Ericsson/December, +14:u0D:Holmberg/0, +12:u12:holmberg, +12:u14:december, +7:u22:Hol, +8:u23:Holm, +7:u32:erg, +8:u33:berg, +12:u03:Holmberg, +12:u05:December, +8:u08:2018, +21:u09:Holmberg/Ericsson, +21:u0A:Ericsson/December, +14:u0B:December/8, +14:u0C:./Holmberg, +12:u11:holmberg, +12:u13:december, +12:u02:Holmberg, +12:u04:December, +8:u07:2018, +11:u08:Session, +21:u09:Ericsson/December, +14:u0A:December/8, +21:u0C:Holmberg/Ericsson, +14:u0D:December/0, +12:u10:holmberg, +12:u12:december, +7:u22:Dec, +8:u23:Dece, +12:u01:Holmberg, +12:u03:December, +8:u06:2018, +11:u07:Session, +15:u08:Description, +14:u09:December/8, +10:u0B:,/2018, +21:u0C:Ericsson/December, +12:u11:december, +8:u14:2018, +12:u00:Holmberg, +12:u02:December, +8:u05:2018, +11:u06:Session, +15:u07:Description, +10:u0A:,/2018, +16:u0B:2018/Session, +14:u0C:December/8, +12:u10:december, +8:u13:2018, +11:u14:session, +12:u01:December, +8:u04:2018, +11:u05:Session, +15:u06:Description, +10:u09:,/2018, +16:u0A:2018/Session, +23:u0B:Session/Description, +10:u0D:2018/0, +8:u12:2018, +11:u13:session, +15:u14:description, +8:u23:2018, +6:u31:18, +7:u32:018, +8:u33:2018, +12:u00:December, +8:u03:2018, +11:u04:Session, +15:u05:Description, +7:u08:SDP, +16:u09:2018/Session, +23:u0A:Session/Description, +24:u0B:Description/Protocol, +10:u0C:,/2018, +13:u0D:Session/0, +8:u11:2018, +11:u12:session, +15:u13:description, +7:u22:Ses, +8:u23:Sess, +8:u33:sion, +8:u02:2018, +11:u03:Session, +15:u04:Description, +7:u07:SDP, +23:u09:Session/Description, +24:u0A:Description/Protocol, +14:u0B:Protocol/(, +16:u0C:2018/Session, +17:u0D:Description/0, +8:u10:2018, +11:u11:session, +15:u12:description, +8:u23:Desc, +8:u01:2018, +11:u02:Session, +15:u03:Description, +7:u06:SDP, +24:u09:Description/Protocol, +14:u0A:Protocol/(, +9:u0B:(/SDP, +23:u0C:Session/Description, +11:u10:session, +15:u11:description, +7:u14:sdp, +8:u00:2018, +11:u01:Session, +15:u02:Description, +7:u05:SDP, +14:u09:Protocol/(, +9:u0A:(/SDP, +9:u0B:SDP/), +24:u0C:Description/Protocol, +15:u10:description, +7:u13:sdp, +11:u00:Session, +15:u01:Description, +7:u04:SDP, +10:u08:Binary, +9:u09:(/SDP, +9:u0A:SDP/), +12:u0B:)/Format, +14:u0C:Protocol/(, +9:u0D:SDP/0, +7:u12:sdp, +6:u21:SD, +7:u22:SDP, +7:u23:SDP, +6:u31:DP, +7:u32:SDP, +7:u33:SDP, +15:u00:Description, +7:u03:SDP, +10:u07:Binary, +9:u08:Floor, +9:u09:SDP/), +12:u0A:)/Format, +14:u0B:Format/for, +9:u0C:(/SDP, +7:u11:sdp, +7:u02:SDP, +10:u06:Binary, +9:u07:Floor, +11:u08:Control, +12:u09:)/Format, +14:u0A:Format/for, +14:u0B:for/Binary, +9:u0C:SDP/), +7:u10:sdp, +10:u14:binary, +7:u01:SDP, +10:u05:Binary, +9:u06:Floor, +11:u07:Control, +14:u09:Format/for, +14:u0A:for/Binary, +16:u0B:Binary/Floor, +12:u0C:)/Format, +10:u13:binary, +9:u14:floor, +7:u00:SDP, +10:u04:Binary, +9:u05:Floor, +11:u06:Control, +14:u09:for/Binary, +16:u0A:Binary/Floor, +17:u0B:Floor/Control, +14:u0C:Format/for, +12:u0D:Binary/0, +10:u12:binary, +9:u13:floor, +6:u21:Bi, +7:u22:Bin, +8:u23:Bina, +8:u33:nary, +10:u03:Binary, +9:u04:Floor, +11:u05:Control, +8:u08:BFCP, +16:u09:Binary/Floor, +17:u0A:Floor/Control, +20:u0B:Control/Protocol, +14:u0C:for/Binary, +11:u0D:Floor/0, +10:u11:binary, +9:u12:floor, +8:u23:Floo, +7:u32:oor, +8:u33:loor, +10:u02:Binary, +9:u03:Floor, +11:u04:Control, +8:u07:BFCP, +17:u09:Floor/Control, +20:u0A:Control/Protocol, +16:u0C:Binary/Floor, +13:u0D:Control/0, +10:u10:binary, +9:u11:floor, +10:u01:Binary, +9:u02:Floor, +11:u03:Control, +8:u06:BFCP, +11:u08:Streams, +20:u09:Control/Protocol, +10:u0B:(/BFCP, +17:u0C:Floor/Control, +9:u10:floor, +8:u14:bfcp, +10:u00:Binary, +9:u01:Floor, +11:u02:Control, +8:u05:BFCP, +11:u07:Streams, +10:u0A:(/BFCP, +10:u0B:BFCP/), +20:u0C:Control/Protocol, +8:u13:bfcp, +9:u00:Floor, +11:u01:Control, +8:u04:BFCP, +11:u06:Streams, +10:u09:(/BFCP, +10:u0A:BFCP/), +13:u0B:)/Streams, +10:u0D:BFCP/0, +8:u12:bfcp, +11:u14:streams, +7:u32:FCP, +8:u33:BFCP, +11:u00:Control, +8:u03:BFCP, +11:u05:Streams, +10:u09:BFCP/), +13:u0A:)/Streams, +17:u0B:Streams/draft, +10:u0C:(/BFCP, +8:u11:bfcp, +11:u13:streams, +8:u02:BFCP, +11:u04:Streams, +13:u09:)/Streams, +17:u0A:Streams/draft, +10:u0C:BFCP/), +13:u0D:Streams/0, +8:u10:bfcp, +11:u12:streams, +7:u22:Str, +8:u23:Stre, +7:u32:ams, +8:u33:eams, +8:u01:BFCP, +11:u03:Streams, +11:u08:bfcpbis, +17:u09:Streams/draft, +13:u0C:)/Streams, +11:u11:streams, +8:u00:BFCP, +11:u02:Streams, +11:u07:bfcpbis, +17:u0C:Streams/draft, +11:u10:streams, +11:u01:Streams, +11:u06:bfcpbis, +14:u08:rfc4583bis, +13:u0B:-/bfcpbis, +11:u14:bfcpbis, +11:u00:Streams, +11:u05:bfcpbis, +14:u07:rfc4583bis, +13:u0A:-/bfcpbis, +13:u0B:bfcpbis/-, +11:u13:bfcpbis, +11:u04:bfcpbis, +14:u06:rfc4583bis, +6:u08:27, +13:u09:-/bfcpbis, +13:u0A:bfcpbis/-, +16:u0B:-/rfc4583bis, +13:u0D:bfcpbis/1, +14:u14:rfc4583bis, +6:u21:bf, +7:u22:bfc, +8:u23:bfcp, +8:u33:pbis, +11:u03:bfcpbis, +14:u05:rfc4583bis, +6:u07:27, +13:u09:bfcpbis/-, +16:u0A:-/rfc4583bis, +16:u0B:rfc4583bis/-, +13:u0C:-/bfcpbis, +14:u13:rfc4583bis, +11:u02:bfcpbis, +14:u04:rfc4583bis, +6:u06:27, +16:u09:-/rfc4583bis, +16:u0A:rfc4583bis/-, +8:u0B:-/27, +13:u0C:bfcpbis/-, +16:u0D:rfc4583bis/1, +14:u12:rfc4583bis, +6:u14:27, +8:u23:rfc4, +8:u33:3bis, +11:u01:bfcpbis, +14:u03:rfc4583bis, +6:u05:27, +16:u09:rfc4583bis/-, +8:u0A:-/27, +15:u0B:27/Abstract, +16:u0C:-/rfc4583bis, +14:u11:rfc4583bis, +6:u13:27, +11:u00:bfcpbis, +14:u02:rfc4583bis, +6:u04:27, +8:u09:-/27, +15:u0A:27/Abstract, +16:u0C:rfc4583bis/-, +8:u0D:27/1, +14:u10:rfc4583bis, +6:u12:27, +6:u21:27, +6:u22:27, +6:u23:27, +6:u31:27, +6:u32:27, +6:u33:27, +14:u01:rfc4583bis, +6:u03:27, +15:u09:27/Abstract, +8:u0C:-/27, +6:u11:27, +14:u00:rfc4583bis, +6:u02:27, +15:u0C:27/Abstract, +6:u10:27, +6:u01:27, +6:u00:27, +15:u0B:the/Session, +15:u0A:the/Session, +15:u09:the/Session, +15:u0C:the/Session, +9:u08:offer, +9:u07:offer, +9:u06:offer, +10:u08:answer, +11:u0B:)/offer, +9:u14:offer, +9:u05:offer, +10:u07:answer, +14:u08:procedures, +11:u0A:)/offer, +11:u0B:offer//, +9:u13:offer, +9:u04:offer, +10:u06:answer, +14:u07:procedures, +11:u09:)/offer, +11:u0A:offer//, +12:u0B://answer, +11:u0D:offer/0, +9:u12:offer, +10:u14:answer, +7:u22:off, +8:u23:offe, +7:u32:fer, +8:u33:ffer, +9:u03:offer, +10:u05:answer, +14:u06:procedures, +15:u08:negotiating, +11:u09:offer//, +12:u0A://answer, +21:u0B:answer/procedures, +11:u0C:)/offer, +9:u11:offer, +10:u13:answer, +14:u14:procedures, +9:u02:offer, +10:u04:answer, +14:u05:procedures, +15:u07:negotiating, +12:u09://answer, +21:u0A:answer/procedures, +18:u0B:procedures/for, +11:u0C:offer//, +12:u0D:answer/0, +9:u10:offer, +10:u12:answer, +14:u13:procedures, +7:u22:ans, +8:u23:answ, +7:u32:wer, +8:u33:swer, +9:u01:offer, +10:u03:answer, +14:u04:procedures, +15:u06:negotiating, +16:u08:establishing, +21:u09:answer/procedures, +18:u0A:procedures/for, +19:u0B:for/negotiating, +12:u0C://answer, +16:u0D:procedures/0, +10:u11:answer, +14:u12:procedures, +15:u14:negotiating, +9:u00:offer, +10:u02:answer, +14:u03:procedures, +15:u05:negotiating, +16:u07:establishing, +18:u09:procedures/for, +19:u0A:for/negotiating, +19:u0B:negotiating/and, +21:u0C:answer/procedures, +10:u10:answer, +14:u11:procedures, +15:u13:negotiating, +10:u01:answer, +14:u02:procedures, +15:u04:negotiating, +16:u06:establishing, +19:u09:for/negotiating, +19:u0A:negotiating/and, +20:u0B:and/establishing, +18:u0C:procedures/for, +17:u0D:negotiating/0, +14:u10:procedures, +15:u12:negotiating, +16:u14:establishing, +7:u22:neg, +8:u23:nego, +10:u00:answer, +14:u01:procedures, +15:u03:negotiating, +16:u05:establishing, +19:u09:negotiating/and, +20:u0A:and/establishing, +23:u0B:establishing/Binary, +19:u0C:for/negotiating, +15:u11:negotiating, +16:u13:establishing, +14:u00:procedures, +15:u02:negotiating, +16:u04:establishing, +20:u09:and/establishing, +23:u0A:establishing/Binary, +19:u0C:negotiating/and, +18:u0D:establishing/0, +15:u10:negotiating, +16:u12:establishing, +7:u22:est, +8:u23:esta, +15:u01:negotiating, +16:u03:establishing, +23:u09:establishing/Binary, +20:u0C:and/establishing, +16:u11:establishing, +15:u00:negotiating, +16:u02:establishing, +23:u0C:establishing/Binary, +16:u10:establishing, +16:u01:establishing, +16:u00:establishing, +11:u08:streams, +11:u07:streams, +11:u06:streams, +13:u0B:)/streams, +11:u05:streams, +13:u0A:)/streams, +13:u0B:streams/., +11:u04:streams, +13:u08:obsoletes, +13:u09:)/streams, +13:u0A:streams/., +13:u0D:streams/0, +11:u03:streams, +13:u07:obsoletes, +13:u09:streams/., +13:u0C:)/streams, +11:u02:streams, +13:u06:obsoletes, +22:u0B:document/obsoletes, +13:u0C:streams/., +11:u01:streams, +13:u05:obsoletes, +22:u0A:document/obsoletes, +17:u0B:obsoletes/RFC, +11:u00:streams, +13:u04:obsoletes, +11:u08:Changes, +22:u09:document/obsoletes, +17:u0A:obsoletes/RFC, +12:u0B:RFC/4583, +15:u0D:obsoletes/0, +13:u03:obsoletes, +11:u07:Changes, +17:u09:obsoletes/RFC, +12:u0A:RFC/4583, +10:u0B:4583/., +22:u0C:document/obsoletes, +13:u02:obsoletes, +11:u06:Changes, +12:u09:RFC/4583, +10:u0A:4583/., +13:u0B:./Changes, +17:u0C:obsoletes/RFC, +11:u14:changes, +13:u01:obsoletes, +11:u05:Changes, +10:u09:4583/., +13:u0A:./Changes, +16:u0B:Changes/from, +12:u0C:RFC/4583, +11:u13:changes, +13:u00:obsoletes, +11:u04:Changes, +13:u09:./Changes, +16:u0A:Changes/from, +12:u0B:from/RFC, +10:u0C:4583/., +13:u0D:Changes/0, +11:u12:changes, +7:u22:Cha, +8:u23:Chan, +8:u33:nges, +11:u03:Changes, +14:u08:summarized, +16:u09:Changes/from, +12:u0A:from/RFC, +13:u0C:./Changes, +11:u11:changes, +11:u02:Changes, +14:u07:summarized, +12:u09:from/RFC, +12:u0B:4583/are, +16:u0C:Changes/from, +11:u10:changes, +11:u01:Changes, +14:u06:summarized, +12:u0A:4583/are, +18:u0B:are/summarized, +12:u0C:from/RFC, +14:u14:summarized, +11:u00:Changes, +14:u05:summarized, +6:u08:14, +12:u09:4583/are, +18:u0A:are/summarized, +17:u0B:summarized/in, +14:u13:summarized, +14:u04:summarized, +6:u07:14, +18:u09:are/summarized, +17:u0A:summarized/in, +12:u0C:4583/are, +16:u0D:summarized/0, +14:u12:summarized, +7:u22:sum, +8:u23:summ, +7:u32:zed, +8:u33:ized, +14:u03:summarized, +6:u06:14, +17:u09:summarized/in, +14:u0B:Section/14, +18:u0C:are/summarized, +14:u11:summarized, +6:u14:14, +14:u02:summarized, +6:u05:14, +14:u0A:Section/14, +8:u0B:14/., +17:u0C:summarized/in, +14:u10:summarized, +6:u13:14, +14:u01:summarized, +6:u04:14, +14:u09:Section/14, +8:u0A:14/., +8:u0D:14/0, +6:u12:14, +6:u21:14, +6:u22:14, +6:u23:14, +6:u31:14, +6:u32:14, +6:u33:14, +14:u00:summarized, +6:u03:14, +8:u09:14/., +14:u0C:Section/14, +6:u11:14, +6:u02:14, +8:u0C:14/., +6:u10:14, +6:u01:14, +6:u00:14, +8:u08:http, +8:u07:http, +8:u06:http, +11:u0B:at/http, +8:u14:http, +8:u05:http, +11:u0A:at/http, +10:u0B:http/:, +8:u13:http, +8:u04:http, +11:u09:at/http, +10:u0A:http/:, +10:u0D:http/0, +8:u12:http, +6:u31:tp, +7:u32:ttp, +8:u33:http, +8:u03:http, +10:u09:http/:, +11:u0C:at/http, +8:u11:http, +8:u02:http, +10:u0C:http/:, +8:u10:http, +8:u01:http, +8:u00:http, +11:u0B:on/June, +11:u0A:on/June, +11:u09:on/June, +11:u0C:on/June, +10:u0B:2019/., +10:u0A:2019/., +10:u09:2019/., +10:u0C:2019/., +10:u0B:)/2018, +10:u0A:)/2018, +13:u0B:2018/IETF, +10:u09:)/2018, +13:u0A:2018/IETF, +13:u09:2018/IETF, +10:u0C:)/2018, +13:u0C:2018/IETF, +10:u0B:(/http, +10:u0A:(/http, +10:u09:(/http, +10:u0C:(/http, +23:u0B:documents/Camarillo, +23:u0A:documents/Camarillo, +15:u0B:Camarillo/,, +23:u09:documents/Camarillo, +15:u0A:Camarillo/,, +15:u09:Camarillo/,, +23:u0C:documents/Camarillo, +15:u0C:Camarillo/,, +13:u0B:./Expires, +13:u0A:./Expires, +16:u0B:Expires/June, +13:u09:./Expires, +16:u0A:Expires/June, +16:u09:Expires/June, +13:u0C:./Expires, +16:u0C:Expires/June, +10:u0B:2019/[, +10:u0A:2019/[, +10:u09:2019/[, +10:u0C:2019/[, +14:u0B:Draft/BFCP, +14:u0A:Draft/BFCP, +17:u0B:BFCP/December, +14:u09:Draft/BFCP, +17:u0A:BFCP/December, +17:u0B:December/2018, +17:u09:BFCP/December, +17:u0A:December/2018, +18:u0B:2018/carefully, +14:u0C:Draft/BFCP, +17:u09:December/2018, +18:u0A:2018/carefully, +17:u0C:BFCP/December, +18:u09:2018/carefully, +17:u0C:December/2018, +18:u0C:2018/carefully, +11:u08:Gonzalo, +11:u07:Gonzalo, +11:u06:Gonzalo, +13:u0B:./Gonzalo, +11:u14:gonzalo, +11:u05:Gonzalo, +15:u08:Hirsalantie, +13:u0A:./Gonzalo, +21:u0B:Gonzalo/Camarillo, +11:u13:gonzalo, +11:u04:Gonzalo, +15:u07:Hirsalantie, +13:u09:./Gonzalo, +21:u0A:Gonzalo/Camarillo, +22:u0B:Camarillo/Ericsson, +13:u0D:Gonzalo/0, +11:u12:gonzalo, +6:u21:Go, +7:u22:Gon, +8:u23:Gonz, +8:u33:zalo, +11:u03:Gonzalo, +15:u06:Hirsalantie, +6:u08:FI, +21:u09:Gonzalo/Camarillo, +22:u0A:Camarillo/Ericsson, +24:u0B:Ericsson/Hirsalantie, +13:u0C:./Gonzalo, +11:u11:gonzalo, +15:u14:hirsalantie, +11:u02:Gonzalo, +15:u05:Hirsalantie, +6:u07:FI, +22:u09:Camarillo/Ericsson, +24:u0A:Ericsson/Hirsalantie, +18:u0B:Hirsalantie/11, +21:u0C:Gonzalo/Camarillo, +11:u10:gonzalo, +15:u13:hirsalantie, +11:u01:Gonzalo, +15:u04:Hirsalantie, +6:u06:FI, +9:u08:02420, +24:u09:Ericsson/Hirsalantie, +18:u0A:Hirsalantie/11, +9:u0B:11/FI, +22:u0C:Camarillo/Ericsson, +17:u0D:Hirsalantie/0, +15:u12:hirsalantie, +6:u14:fi, +7:u22:Hir, +8:u23:Hirs, +6:u31:ie, +7:u32:tie, +8:u33:ntie, +11:u00:Gonzalo, +15:u03:Hirsalantie, +6:u05:FI, +9:u07:02420, +10:u08:Jorvas, +18:u09:Hirsalantie/11, +9:u0A:11/FI, +8:u0B:FI/-, +24:u0C:Ericsson/Hirsalantie, +15:u11:hirsalantie, +6:u13:fi, +15:u02:Hirsalantie, +6:u04:FI, +9:u06:02420, +10:u07:Jorvas, +11:u08:Finland, +9:u09:11/FI, +8:u0A:FI/-, +11:u0B:-/02420, +18:u0C:Hirsalantie/11, +8:u0D:FI/0, +15:u10:hirsalantie, +6:u12:fi, +9:u14:02420, +6:u21:FI, +6:u22:FI, +6:u23:FI, +6:u31:FI, +6:u32:FI, +6:u33:FI, +15:u01:Hirsalantie, +6:u03:FI, +9:u05:02420, +10:u06:Jorvas, +11:u07:Finland, +8:u09:FI/-, +11:u0A:-/02420, +16:u0B:02420/Jorvas, +9:u0C:11/FI, +6:u11:fi, +9:u13:02420, +10:u14:jorvas, +15:u00:Hirsalantie, +6:u02:FI, +9:u04:02420, +10:u05:Jorvas, +11:u06:Finland, +11:u09:-/02420, +16:u0A:02420/Jorvas, +18:u0B:Jorvas/Finland, +8:u0C:FI/-, +11:u0D:02420/1, +6:u10:fi, +9:u12:02420, +10:u13:jorvas, +11:u14:finland, +7:u22:024, +8:u23:0242, +7:u32:420, +8:u33:2420, +6:u01:FI, +9:u03:02420, +10:u04:Jorvas, +11:u05:Finland, +16:u09:02420/Jorvas, +18:u0A:Jorvas/Finland, +17:u0B:Finland/Email, +11:u0C:-/02420, +12:u0D:Jorvas/0, +9:u11:02420, +10:u12:jorvas, +11:u13:finland, +6:u21:Jo, +7:u22:Jor, +8:u23:Jorv, +7:u32:vas, +8:u33:rvas, +6:u00:FI, +9:u02:02420, +10:u03:Jorvas, +11:u04:Finland, +18:u09:Jorvas/Finland, +17:u0A:Finland/Email, +16:u0C:02420/Jorvas, +13:u0D:Finland/0, +9:u10:02420, +10:u11:jorvas, +11:u12:finland, +6:u21:Fi, +7:u22:Fin, +8:u23:Finl, +8:u33:land, +9:u01:02420, +10:u02:Jorvas, +11:u03:Finland, +22:u08:Camarillo@ericsson, +17:u09:Finland/Email, +13:u0B::/Gonzalo, +18:u0C:Jorvas/Finland, +10:u10:jorvas, +11:u11:finland, +9:u00:02420, +10:u01:Jorvas, +11:u02:Finland, +22:u07:Camarillo@ericsson, +13:u0A::/Gonzalo, +13:u0B:Gonzalo/., +17:u0C:Finland/Email, +11:u10:finland, +10:u00:Jorvas, +11:u01:Finland, +22:u06:Camarillo@ericsson, +13:u09::/Gonzalo, +13:u0A:Gonzalo/., +24:u0B:./Camarillo@ericsson, +22:u14:camarillo@ericsson, +11:u00:Finland, +22:u05:Camarillo@ericsson, +7:u08:Tom, +13:u09:Gonzalo/., +24:u0A:./Camarillo@ericsson, +24:u0B:Camarillo@ericsson/., +13:u0C::/Gonzalo, +22:u13:camarillo@ericsson, +22:u04:Camarillo@ericsson, +7:u07:Tom, +24:u09:./Camarillo@ericsson, +24:u0A:Camarillo@ericsson/., +13:u0C:Gonzalo/., +24:u0D:Camarillo@ericsson/0, +22:u12:camarillo@ericsson, +22:u03:Camarillo@ericsson, +7:u06:Tom, +24:u09:Camarillo@ericsson/., +11:u0B:com/Tom, +24:u0C:./Camarillo@ericsson, +22:u11:camarillo@ericsson, +7:u14:tom, +22:u02:Camarillo@ericsson, +7:u05:Tom, +10:u08:Philip, +11:u0A:com/Tom, +18:u0B:Tom/Kristensen, +24:u0C:Camarillo@ericsson/., +22:u10:camarillo@ericsson, +7:u13:tom, +22:u01:Camarillo@ericsson, +7:u04:Tom, +10:u07:Philip, +13:u08:Pedersens, +11:u09:com/Tom, +18:u0A:Tom/Kristensen, +20:u0B:Kristensen/Cisco, +9:u0D:Tom/0, +7:u12:tom, +7:u22:Tom, +7:u23:Tom, +7:u32:Tom, +7:u33:Tom, +22:u00:Camarillo@ericsson, +7:u03:Tom, +10:u06:Philip, +13:u07:Pedersens, +7:u08:vei, +18:u09:Tom/Kristensen, +20:u0A:Kristensen/Cisco, +16:u0B:Cisco/Philip, +11:u0C:com/Tom, +7:u11:tom, +10:u14:philip, +7:u02:Tom, +10:u05:Philip, +13:u06:Pedersens, +7:u07:vei, +20:u09:Kristensen/Cisco, +16:u0A:Cisco/Philip, +20:u0B:Philip/Pedersens, +18:u0C:Tom/Kristensen, +7:u10:tom, +10:u13:philip, +13:u14:pedersens, +7:u01:Tom, +10:u04:Philip, +13:u05:Pedersens, +7:u06:vei, +6:u08:NO, +16:u09:Cisco/Philip, +20:u0A:Philip/Pedersens, +17:u0B:Pedersens/vei, +20:u0C:Kristensen/Cisco, +12:u0D:Philip/0, +10:u12:philip, +13:u13:pedersens, +7:u14:vei, +7:u22:Phi, +8:u23:Phil, +6:u31:ip, +7:u32:lip, +8:u33:ilip, +7:u00:Tom, +10:u03:Philip, +13:u04:Pedersens, +7:u05:vei, +6:u07:NO, +20:u09:Philip/Pedersens, +17:u0A:Pedersens/vei, +9:u0B:vei/1, +16:u0C:Cisco/Philip, +15:u0D:Pedersens/0, +10:u11:philip, +13:u12:pedersens, +7:u13:vei, +7:u22:Ped, +8:u23:Pede, +7:u32:ens, +8:u33:sens, +10:u02:Philip, +13:u03:Pedersens, +7:u04:vei, +6:u06:NO, +8:u08:1366, +17:u09:Pedersens/vei, +9:u0A:vei/1, +8:u0B:1/NO, +20:u0C:Philip/Pedersens, +9:u0D:vei/0, +10:u10:philip, +13:u11:pedersens, +7:u12:vei, +6:u21:ve, +7:u22:vei, +7:u23:vei, +6:u31:ei, +7:u32:vei, +7:u33:vei, +10:u01:Philip, +13:u02:Pedersens, +7:u03:vei, +6:u05:NO, +8:u07:1366, +11:u08:Lysaker, +9:u09:vei/1, +8:u0A:1/NO, +8:u0B:NO/-, +17:u0C:Pedersens/vei, +13:u10:pedersens, +7:u11:vei, +10:u00:Philip, +13:u01:Pedersens, +7:u02:vei, +6:u04:NO, +8:u06:1366, +11:u07:Lysaker, +10:u08:Norway, +8:u09:1/NO, +8:u0A:NO/-, +10:u0B:-/1366, +9:u0C:vei/1, +8:u0D:NO/0, +7:u10:vei, +8:u14:1366, +6:u21:NO, +6:u22:NO, +6:u23:NO, +6:u31:NO, +6:u32:NO, +6:u33:NO, +13:u00:Pedersens, +7:u01:vei, +6:u03:NO, +8:u05:1366, +11:u06:Lysaker, +10:u07:Norway, +8:u09:NO/-, +10:u0A:-/1366, +16:u0B:1366/Lysaker, +8:u0C:1/NO, +8:u13:1366, +11:u14:lysaker, +7:u00:vei, +6:u02:NO, +8:u04:1366, +11:u05:Lysaker, +10:u06:Norway, +10:u09:-/1366, +16:u0A:1366/Lysaker, +18:u0B:Lysaker/Norway, +8:u0C:NO/-, +10:u0D:1366/1, +8:u12:1366, +11:u13:lysaker, +10:u14:norway, +6:u21:13, +7:u22:136, +8:u23:1366, +6:u31:66, +7:u32:366, +8:u33:1366, +6:u01:NO, +8:u03:1366, +11:u04:Lysaker, +10:u05:Norway, +18:u08:tomkrist@cisco, +16:u09:1366/Lysaker, +18:u0A:Lysaker/Norway, +16:u0B:Norway/Email, +10:u0C:-/1366, +13:u0D:Lysaker/0, +8:u11:1366, +11:u12:lysaker, +10:u13:norway, +6:u21:Ly, +7:u22:Lys, +8:u23:Lysa, +8:u33:aker, +6:u00:NO, +8:u02:1366, +11:u03:Lysaker, +10:u04:Norway, +18:u07:tomkrist@cisco, +18:u09:Lysaker/Norway, +16:u0A:Norway/Email, +16:u0C:1366/Lysaker, +12:u0D:Norway/0, +8:u10:1366, +11:u11:lysaker, +10:u12:norway, +7:u22:Nor, +8:u23:Norw, +7:u32:way, +8:u33:rway, +8:u01:1366, +11:u02:Lysaker, +10:u03:Norway, +18:u06:tomkrist@cisco, +16:u09:Norway/Email, +20:u0B::/tomkrist@cisco, +18:u0C:Lysaker/Norway, +11:u10:lysaker, +10:u11:norway, +18:u14:tomkrist@cisco, +8:u00:1366, +11:u01:Lysaker, +10:u02:Norway, +18:u05:tomkrist@cisco, +20:u0A::/tomkrist@cisco, +20:u0B:tomkrist@cisco/., +16:u0C:Norway/Email, +10:u10:norway, +18:u13:tomkrist@cisco, +11:u00:Lysaker, +10:u01:Norway, +18:u04:tomkrist@cisco, +14:u08:tomkri@ifi, +20:u09::/tomkrist@cisco, +20:u0A:tomkrist@cisco/., +20:u0D:tomkrist@cisco/0, +18:u12:tomkrist@cisco, +7:u22:tom, +8:u23:tomk, +10:u00:Norway, +18:u03:tomkrist@cisco, +14:u07:tomkri@ifi, +20:u09:tomkrist@cisco/., +9:u0B:com/,, +20:u0C::/tomkrist@cisco, +18:u11:tomkrist@cisco, +18:u02:tomkrist@cisco, +14:u06:tomkri@ifi, +7:u08:uio, +9:u0A:com/,, +16:u0B:,/tomkri@ifi, +20:u0C:tomkrist@cisco/., +18:u10:tomkrist@cisco, +14:u14:tomkri@ifi, +18:u01:tomkrist@cisco, +14:u05:tomkri@ifi, +7:u07:uio, +9:u09:com/,, +16:u0A:,/tomkri@ifi, +16:u0B:tomkri@ifi/., +14:u13:tomkri@ifi, +18:u00:tomkrist@cisco, +14:u04:tomkri@ifi, +7:u06:uio, +16:u09:,/tomkri@ifi, +16:u0A:tomkri@ifi/., +9:u0B:./uio, +9:u0C:com/,, +16:u0D:tomkri@ifi/0, +14:u12:tomkri@ifi, +7:u14:uio, +6:u31:fi, +7:u32:ifi, +8:u33:@ifi, +14:u03:tomkri@ifi, +7:u05:uio, +12:u08:Christer, +16:u09:tomkri@ifi/., +9:u0A:./uio, +9:u0B:uio/., +16:u0C:,/tomkri@ifi, +14:u11:tomkri@ifi, +7:u13:uio, +14:u02:tomkri@ifi, +7:u04:uio, +12:u07:Christer, +9:u09:./uio, +9:u0A:uio/., +8:u0B:./no, +16:u0C:tomkri@ifi/., +9:u0D:uio/0, +14:u10:tomkri@ifi, +7:u12:uio, +6:u21:ui, +7:u22:uio, +7:u23:uio, +7:u32:uio, +7:u33:uio, +14:u01:tomkri@ifi, +7:u03:uio, +12:u06:Christer, +9:u09:uio/., +8:u0A:./no, +15:u0B:no/Christer, +9:u0C:./uio, +7:u11:uio, +12:u14:christer, +14:u00:tomkri@ifi, +7:u02:uio, +12:u05:Christer, +8:u09:./no, +15:u0A:no/Christer, +21:u0B:Christer/Holmberg, +9:u0C:uio/., +7:u10:uio, +12:u13:christer, +7:u01:uio, +12:u04:Christer, +15:u09:no/Christer, +21:u0A:Christer/Holmberg, +8:u0C:./no, +14:u0D:Christer/0, +12:u12:christer, +7:u32:ter, +8:u33:ster, +7:u00:uio, +12:u03:Christer, +21:u09:Christer/Holmberg, +15:u0C:no/Christer, +12:u11:christer, +12:u02:Christer, +21:u0C:Christer/Holmberg, +12:u10:christer, +12:u01:Christer, +13:u0B:11/Jorvas, +12:u00:Christer, +13:u0A:11/Jorvas, +16:u0B:Jorvas/02420, +13:u09:11/Jorvas, +16:u0A:Jorvas/02420, +17:u0B:02420/Finland, +12:u08:christer, +16:u09:Jorvas/02420, +17:u0A:02420/Finland, +13:u0C:11/Jorvas, +11:u0D:02420/0, +12:u07:christer, +17:u09:02420/Finland, +16:u0C:Jorvas/02420, +12:u06:christer, +21:u08:holmberg@ericsson, +14:u0B::/christer, +17:u0C:02420/Finland, +12:u05:christer, +21:u07:holmberg@ericsson, +14:u0A::/christer, +14:u0B:christer/., +12:u04:christer, +21:u06:holmberg@ericsson, +14:u09::/christer, +14:u0A:christer/., +23:u0B:./holmberg@ericsson, +14:u0D:christer/0, +21:u14:holmberg@ericsson, +6:u21:ch, +7:u22:chr, +8:u23:chri, +12:u03:christer, +21:u05:holmberg@ericsson, +14:u09:christer/., +23:u0A:./holmberg@ericsson, +23:u0B:holmberg@ericsson/., +14:u0C::/christer, +21:u13:holmberg@ericsson, +12:u02:christer, +21:u04:holmberg@ericsson, +23:u09:./holmberg@ericsson, +23:u0A:holmberg@ericsson/., +14:u0C:christer/., +23:u0D:holmberg@ericsson/0, +21:u12:holmberg@ericsson, +7:u22:hol, +8:u23:holm, +12:u01:christer, +21:u03:holmberg@ericsson, +23:u09:holmberg@ericsson/., +12:u0B:com/_x+1, +23:u0C:./holmberg@ericsson, +21:u11:holmberg@ericsson, +12:u00:christer, +21:u02:holmberg@ericsson, +12:u0A:com/_x+1, +23:u0C:holmberg@ericsson/., +21:u10:holmberg@ericsson, +12:u06:20190822, +17:u0B:date/20190822, +12:u14:20190822, +12:u05:20190822, +17:u0A:date/20190822, +14:u0B:20190822/;, +12:u13:20190822, +12:u04:20190822, +17:u09:date/20190822, +14:u0A:20190822/;, +14:u0D:20190822/0, +12:u12:20190822, +6:u31:22, +7:u32:822, +8:u33:0822, +12:u03:20190822, +14:u09:20190822/;, +17:u0C:date/20190822, +12:u11:20190822, +12:u02:20190822, +12:u08:20190824, +14:u0C:20190822/;, +12:u10:20190822, +12:u01:20190822, +12:u07:20190824, +8:u08:DOTS, +12:u00:20190822, +12:u06:20190824, +8:u07:DOTS, +15:u0B:on/20190824, +12:u14:20190824, +12:u05:20190824, +8:u06:DOTS, +15:u0A:on/20190824, +17:u0B:20190824/DOTS, +12:u13:20190824, +8:u14:dots, +12:u04:20190824, +8:u05:DOTS, +8:u08:Chen, +15:u09:on/20190824, +17:u0A:20190824/DOTS, +10:u0B:DOTS/M, +14:u0D:20190824/0, +12:u12:20190824, +8:u13:dots, +6:u31:24, +7:u32:824, +8:u33:0824, +12:u03:20190824, +8:u04:DOTS, +8:u07:Chen, +17:u09:20190824/DOTS, +10:u0A:DOTS/M, +15:u0C:on/20190824, +10:u0D:DOTS/0, +12:u11:20190824, +8:u12:dots, +6:u21:DO, +7:u22:DOT, +8:u23:DOTS, +6:u31:TS, +7:u32:OTS, +8:u33:DOTS, +12:u02:20190824, +8:u03:DOTS, +8:u06:Chen, +10:u09:DOTS/M, +10:u0B:./Chen, +17:u0C:20190824/DOTS, +12:u10:20190824, +8:u11:dots, +8:u14:chen, +12:u01:20190824, +8:u02:DOTS, +8:u05:Chen, +10:u0A:./Chen, +17:u0B:Chen/Internet, +10:u0C:DOTS/M, +8:u10:dots, +8:u13:chen, +12:u00:20190824, +8:u01:DOTS, +8:u04:Chen, +6:u08:Li, +10:u09:./Chen, +17:u0A:Chen/Internet, +10:u0D:Chen/0, +8:u12:chen, +7:u22:Che, +8:u23:Chen, +7:u32:hen, +8:u33:Chen, +8:u00:DOTS, +8:u03:Chen, +6:u07:Li, +17:u09:Chen/Internet, +10:u0C:./Chen, +8:u11:chen, +8:u02:Chen, +6:u06:Li, +6:u08:Su, +12:u0B:Draft/Li, +17:u0C:Chen/Internet, +8:u10:chen, +6:u14:li, +8:u01:Chen, +6:u05:Li, +6:u07:Su, +12:u0A:Draft/Li, +8:u0B:Li/., +6:u13:li, +8:u00:Chen, +6:u04:Li, +6:u06:Su, +12:u09:Draft/Li, +8:u0A:Li/., +8:u0B:./Su, +8:u0D:Li/0, +6:u12:li, +6:u14:su, +6:u22:Li, +6:u23:Li, +6:u31:Li, +6:u32:Li, +6:u33:Li, +6:u03:Li, +6:u05:Su, +8:u09:Li/., +8:u0A:./Su, +15:u0B:Su/Intended, +12:u0C:Draft/Li, +6:u11:li, +6:u13:su, +6:u02:Li, +6:u04:Su, +8:u09:./Su, +15:u0A:Su/Intended, +8:u0C:Li/., +8:u0D:Su/0, +6:u10:li, +6:u12:su, +6:u22:Su, +6:u23:Su, +6:u31:Su, +6:u32:Su, +6:u33:Su, +6:u01:Li, +6:u03:Su, +15:u09:Su/Intended, +8:u0C:./Su, +6:u11:su, +6:u00:Li, +6:u02:Su, +7:u08:Jin, +15:u0C:Su/Intended, +6:u10:su, +6:u01:Su, +7:u07:Jin, +6:u00:Su, +7:u06:Jin, +8:u08:Peng, +13:u0B:Track/Jin, +7:u14:jin, +7:u05:Jin, +8:u07:Peng, +13:u0A:Track/Jin, +9:u0B:Jin/., +7:u13:jin, +7:u04:Jin, +8:u06:Peng, +13:u09:Track/Jin, +9:u0A:Jin/., +10:u0B:./Peng, +9:u0D:Jin/0, +7:u12:jin, +8:u14:peng, +6:u21:Ji, +7:u22:Jin, +7:u23:Jin, +7:u32:Jin, +7:u33:Jin, +7:u03:Jin, +8:u05:Peng, +9:u09:Jin/., +10:u0A:./Peng, +16:u0B:Peng/Expires, +13:u0C:Track/Jin, +7:u11:jin, +8:u13:peng, +7:u02:Jin, +8:u04:Peng, +6:u08:23, +10:u09:./Peng, +16:u0A:Peng/Expires, +9:u0C:Jin/., +10:u0D:Peng/0, +7:u10:jin, +8:u12:peng, +7:u22:Pen, +8:u23:Peng, +7:u32:eng, +8:u33:Peng, +7:u01:Jin, +8:u03:Peng, +6:u07:23, +16:u09:Peng/Expires, +10:u0C:./Peng, +8:u11:peng, +7:u00:Jin, +8:u02:Peng, +6:u06:23, +15:u0B:February/23, +16:u0C:Peng/Expires, +8:u10:peng, +6:u14:23, +8:u01:Peng, +6:u05:23, +8:u08:CMCC, +15:u0A:February/23, +8:u0B:23/,, +6:u13:23, +8:u00:Peng, +6:u04:23, +8:u07:CMCC, +15:u09:February/23, +8:u0A:23/,, +8:u0D:23/0, +6:u12:23, +6:u21:23, +6:u22:23, +6:u23:23, +6:u31:23, +6:u32:23, +6:u33:23, +6:u03:23, +8:u06:CMCC, +6:u08:22, +8:u09:23/,, +13:u0B:2020/CMCC, +15:u0C:February/23, +6:u11:23, +8:u14:cmcc, +6:u02:23, +8:u05:CMCC, +6:u07:22, +13:u0A:2020/CMCC, +15:u0B:CMCC/August, +8:u0C:23/,, +6:u10:23, +8:u13:cmcc, +6:u01:23, +8:u04:CMCC, +6:u06:22, +13:u09:2020/CMCC, +15:u0A:CMCC/August, +13:u0B:August/22, +10:u0D:CMCC/0, +8:u12:cmcc, +6:u14:22, +6:u21:CM, +7:u22:CMC, +8:u23:CMCC, +6:u31:CC, +7:u32:MCC, +8:u33:CMCC, +6:u00:23, +8:u03:CMCC, +6:u05:22, +15:u09:CMCC/August, +13:u0A:August/22, +8:u0B:22/,, +13:u0C:2020/CMCC, +8:u11:cmcc, +6:u13:22, +8:u02:CMCC, +6:u04:22, +10:u08:client, +13:u09:August/22, +8:u0A:22/,, +15:u0C:CMCC/August, +8:u0D:22/0, +8:u10:cmcc, +6:u12:22, +6:u21:22, +6:u22:22, +6:u23:22, +6:u32:22, +6:u33:22, +8:u01:CMCC, +6:u03:22, +10:u07:client, +9:u08:carry, +8:u09:22/,, +13:u0B:2019/DOTS, +13:u0C:August/22, +6:u11:22, +8:u00:CMCC, +6:u02:22, +10:u06:client, +9:u07:carry, +8:u08:ddos, +13:u0A:2019/DOTS, +15:u0B:DOTS/client, +8:u0C:22/,, +6:u10:22, +10:u14:client, +6:u01:22, +10:u05:client, +9:u06:carry, +8:u07:ddos, +10:u08:attack, +13:u09:2019/DOTS, +15:u0A:DOTS/client, +16:u0B:client/carry, +10:u13:client, +9:u14:carry, +6:u00:22, +10:u04:client, +9:u05:carry, +8:u06:ddos, +10:u07:attack, +16:u08:informations, +15:u09:DOTS/client, +16:u0A:client/carry, +14:u0B:carry/ddos, +13:u0C:2019/DOTS, +12:u0D:client/0, +10:u12:client, +9:u13:carry, +8:u14:ddos, +7:u22:cli, +8:u23:clie, +8:u33:ient, +10:u03:client, +9:u04:carry, +8:u05:ddos, +10:u06:attack, +16:u07:informations, +16:u09:client/carry, +14:u0A:carry/ddos, +15:u0B:ddos/attack, +15:u0C:DOTS/client, +11:u0D:carry/0, +10:u11:client, +9:u12:carry, +8:u13:ddos, +10:u14:attack, +7:u32:rry, +8:u33:arry, +10:u02:client, +9:u03:carry, +8:u04:ddos, +10:u05:attack, +16:u06:informations, +10:u08:signal, +14:u09:carry/ddos, +15:u0A:ddos/attack, +23:u0B:attack/informations, +16:u0C:client/carry, +10:u0D:ddos/0, +10:u10:client, +9:u11:carry, +8:u12:ddos, +10:u13:attack, +16:u14:informations, +6:u21:dd, +7:u22:ddo, +8:u23:ddos, +6:u31:os, +7:u32:dos, +8:u33:ddos, +10:u01:client, +9:u02:carry, +8:u03:ddos, +10:u04:attack, +16:u05:informations, +10:u07:signal, +11:u08:channel, +15:u09:ddos/attack, +23:u0A:attack/informations, +19:u0B:informations/in, +14:u0C:carry/ddos, +12:u0D:attack/0, +9:u10:carry, +8:u11:ddos, +10:u12:attack, +16:u13:informations, +10:u00:client, +9:u01:carry, +8:u02:ddos, +10:u03:attack, +16:u04:informations, +10:u06:signal, +11:u07:channel, +23:u09:attack/informations, +19:u0A:informations/in, +13:u0B:in/signal, +15:u0C:ddos/attack, +18:u0D:informations/0, +8:u10:ddos, +10:u11:attack, +16:u12:informations, +10:u14:signal, +9:u00:carry, +8:u01:ddos, +10:u02:attack, +16:u03:informations, +10:u05:signal, +11:u06:channel, +19:u09:informations/in, +13:u0A:in/signal, +18:u0B:signal/channel, +23:u0C:attack/informations, +10:u10:attack, +16:u11:informations, +10:u13:signal, +11:u14:channel, +8:u00:ddos, +10:u01:attack, +16:u02:informations, +10:u04:signal, +11:u05:channel, +8:u08:chen, +13:u09:in/signal, +18:u0A:signal/channel, +17:u0B:channel/draft, +19:u0C:informations/in, +12:u0D:signal/0, +16:u10:informations, +10:u12:signal, +11:u13:channel, +8:u33:gnal, +10:u00:attack, +16:u01:informations, +10:u03:signal, +11:u04:channel, +8:u07:chen, +18:u09:signal/channel, +17:u0A:channel/draft, +13:u0C:in/signal, +13:u0D:channel/0, +10:u11:signal, +11:u12:channel, +7:u22:cha, +8:u23:chan, +7:u32:nel, +8:u33:nnel, +16:u00:informations, +10:u02:signal, +11:u03:channel, +8:u06:chen, +8:u08:dots, +17:u09:channel/draft, +10:u0B:-/chen, +18:u0C:signal/channel, +10:u10:signal, +11:u11:channel, +10:u01:signal, +11:u02:channel, +8:u05:chen, +8:u07:dots, +10:u0A:-/chen, +10:u0B:chen/-, +17:u0C:channel/draft, +11:u10:channel, +10:u00:signal, +11:u01:channel, +8:u04:chen, +8:u06:dots, +10:u09:-/chen, +10:u0A:chen/-, +10:u0B:-/dots, +10:u0D:chen/1, +7:u22:che, +8:u23:chen, +8:u33:chen, +11:u00:channel, +8:u03:chen, +8:u05:dots, +10:u09:chen/-, +10:u0A:-/dots, +10:u0B:dots/-, +10:u0C:-/chen, +8:u02:chen, +8:u04:dots, +10:u09:-/dots, +10:u0A:dots/-, +12:u0B:-/attack, +10:u0C:chen/-, +10:u0D:dots/1, +7:u22:dot, +8:u23:dots, +7:u32:ots, +8:u33:dots, +8:u01:chen, +8:u03:dots, +10:u09:dots/-, +12:u0A:-/attack, +12:u0B:attack/-, +10:u0C:-/dots, +8:u00:chen, +8:u02:dots, +12:u09:-/attack, +12:u0A:attack/-, +18:u0B:-/informations, +10:u0C:dots/-, +12:u0D:attack/1, +8:u01:dots, +12:u09:attack/-, +18:u0A:-/informations, +18:u0B:informations/-, +12:u0C:-/attack, +8:u00:dots, +18:u09:-/informations, +18:u0A:informations/-, +12:u0C:attack/-, +18:u0D:informations/1, +18:u09:informations/-, +18:u0C:-/informations, +18:u0C:informations/-, +8:u08:DDoS, +8:u07:DDoS, +8:u06:DDoS, +15:u08:information, +18:u0B:describes/DDoS, +8:u05:DDoS, +15:u07:information, +18:u0A:describes/DDoS, +15:u0B:DDoS/attack, +8:u04:DDoS, +15:u06:information, +18:u09:describes/DDoS, +15:u0A:DDoS/attack, +22:u0B:attack/information, +10:u0D:DDoS/0, +6:u21:DD, +7:u22:DDo, +8:u23:DDoS, +6:u31:oS, +7:u32:DoS, +8:u33:DDoS, +8:u03:DDoS, +15:u05:information, +15:u09:DDoS/attack, +22:u0A:attack/information, +21:u0B:information/which, +18:u0C:describes/DDoS, +8:u02:DDoS, +15:u04:information, +22:u09:attack/information, +21:u0A:information/which, +13:u0B:which/can, +15:u0C:DDoS/attack, +17:u0D:information/0, +8:u01:DDoS, +15:u03:information, +21:u09:information/which, +13:u0A:which/can, +22:u0C:attack/information, +8:u00:DDoS, +15:u02:information, +13:u09:which/can, +21:u0C:information/which, +15:u01:information, +15:u0B:obtained/by, +13:u0C:which/can, +15:u00:information, +8:u08:when, +15:u0A:obtained/by, +11:u0B:by/DOTS, +8:u07:when, +15:u09:obtained/by, +11:u0A:by/DOTS, +8:u06:when, +14:u08:enterprise, +11:u09:by/DOTS, +15:u0B:client/when, +15:u0C:obtained/by, +8:u14:when, +8:u05:when, +14:u07:enterprise, +12:u08:suspects, +15:u0A:client/when, +12:u0B:when/the, +11:u0C:by/DOTS, +8:u13:when, +8:u04:when, +14:u06:enterprise, +12:u07:suspects, +15:u09:client/when, +12:u0A:when/the, +18:u0B:the/enterprise, +10:u0D:when/0, +8:u12:when, +14:u14:enterprise, +8:u23:when, +8:u33:when, +8:u03:when, +14:u05:enterprise, +12:u06:suspects, +12:u09:when/the, +18:u0A:the/enterprise, +23:u0B:enterprise/suspects, +15:u0C:client/when, +8:u11:when, +14:u13:enterprise, +12:u14:suspects, +8:u02:when, +14:u04:enterprise, +12:u05:suspects, +9:u08:under, +18:u09:the/enterprise, +23:u0A:enterprise/suspects, +15:u0B:suspects/it, +12:u0C:when/the, +16:u0D:enterprise/0, +8:u10:when, +14:u12:enterprise, +12:u13:suspects, +7:u22:ent, +8:u23:ente, +7:u32:ise, +8:u33:rise, +8:u01:when, +14:u03:enterprise, +12:u04:suspects, +9:u07:under, +23:u09:enterprise/suspects, +15:u0A:suspects/it, +18:u0C:the/enterprise, +14:u0D:suspects/0, +14:u11:enterprise, +12:u12:suspects, +7:u22:sus, +8:u23:susp, +8:u00:when, +14:u02:enterprise, +12:u03:suspects, +9:u06:under, +15:u09:suspects/it, +12:u0B:is/under, +23:u0C:enterprise/suspects, +14:u10:enterprise, +12:u11:suspects, +9:u14:under, +14:u01:enterprise, +12:u02:suspects, +9:u05:under, +12:u0A:is/under, +14:u0B:under/DDoS, +15:u0C:suspects/it, +12:u10:suspects, +9:u13:under, +14:u00:enterprise, +12:u01:suspects, +9:u04:under, +12:u09:is/under, +14:u0A:under/DDoS, +11:u0D:under/0, +9:u12:under, +7:u22:und, +8:u23:unde, +7:u32:der, +8:u33:nder, +12:u00:suspects, +9:u03:under, +14:u09:under/DDoS, +12:u0B:attack/,, +12:u0C:is/under, +9:u11:under, +9:u02:under, +12:u0A:attack/,, +11:u0B:,/these, +14:u0C:under/DDoS, +9:u10:under, +9:u01:under, +12:u09:attack/,, +11:u0A:,/these, +22:u0B:these/informations, +9:u00:under, +8:u08:send, +11:u09:,/these, +22:u0A:these/informations, +21:u0B:informations/will, +12:u0C:attack/,, +8:u07:send, +22:u09:these/informations, +21:u0A:informations/will, +11:u0B:will/be, +11:u0C:,/these, +8:u06:send, +21:u09:informations/will, +11:u0A:will/be, +11:u0B:be/send, +22:u0C:these/informations, +8:u14:send, +8:u05:send, +11:u09:will/be, +11:u0A:be/send, +13:u0B:send/from, +21:u0C:informations/will, +8:u13:send, +8:u04:send, +11:u09:be/send, +13:u0A:send/from, +13:u0B:from/DOTS, +11:u0C:will/be, +10:u0D:send/0, +8:u12:send, +7:u22:sen, +8:u23:send, +7:u32:end, +8:u33:send, +8:u03:send, +13:u09:send/from, +13:u0A:from/DOTS, +11:u0C:be/send, +8:u11:send, +8:u02:send, +10:u08:server, +13:u09:from/DOTS, +13:u0B:client/to, +13:u0C:send/from, +8:u10:send, +8:u01:send, +10:u07:server, +13:u0A:client/to, +11:u0B:to/DOTS, +13:u0C:from/DOTS, +8:u00:send, +10:u06:server, +14:u08:mitigation, +13:u09:client/to, +11:u0A:to/DOTS, +15:u0B:DOTS/server, +10:u14:server, +10:u05:server, +14:u07:mitigation, +11:u08:request, +11:u09:to/DOTS, +15:u0A:DOTS/server, +13:u0B:server/in, +13:u0C:client/to, +10:u13:server, +14:u06:mitigation, +11:u07:request, +9:u08:using, +15:u09:DOTS/server, +13:u0A:server/in, +17:u0B:in/mitigation, +11:u0C:to/DOTS, +12:u0D:server/0, +14:u14:mitigation, +14:u05:mitigation, +11:u06:request, +9:u07:using, +10:u08:Signal, +13:u09:server/in, +17:u0A:in/mitigation, +22:u0B:mitigation/request, +15:u0C:DOTS/server, +14:u13:mitigation, +14:u04:mitigation, +11:u05:request, +9:u06:using, +10:u07:Signal, +17:u09:in/mitigation, +22:u0A:mitigation/request, +17:u0B:request/using, +13:u0C:server/in, +16:u0D:mitigation/0, +14:u12:mitigation, +9:u14:using, +7:u22:mit, +8:u23:miti, +14:u03:mitigation, +11:u04:request, +9:u05:using, +10:u06:Signal, +22:u09:mitigation/request, +17:u0A:request/using, +16:u0B:using/Signal, +17:u0C:in/mitigation, +13:u0D:request/0, +14:u11:mitigation, +9:u13:using, +14:u02:mitigation, +11:u03:request, +9:u04:using, +10:u05:Signal, +17:u09:request/using, +16:u0A:using/Signal, +18:u0B:Signal/channel, +22:u0C:mitigation/request, +11:u0D:using/0, +14:u10:mitigation, +9:u12:using, +7:u22:usi, +8:u23:usin, +8:u33:sing, +14:u01:mitigation, +11:u02:request, +9:u03:using, +10:u04:Signal, +16:u09:using/Signal, +18:u0A:Signal/channel, +14:u0B:channel/or, +17:u0C:request/using, +12:u0D:Signal/0, +9:u11:using, +7:u22:Sig, +8:u23:Sign, +14:u00:mitigation, +11:u01:request, +9:u02:using, +10:u03:Signal, +18:u09:Signal/channel, +14:u0A:channel/or, +11:u0B:or/Data, +16:u0C:using/Signal, +9:u10:using, +11:u00:request, +9:u01:using, +10:u02:Signal, +14:u09:channel/or, +11:u0A:or/Data, +16:u0B:Data/channel, +18:u0C:Signal/channel, +9:u00:using, +10:u01:Signal, +11:u09:or/Data, +16:u0A:Data/channel, +13:u0B:channel/., +14:u0C:channel/or, +10:u00:Signal, +16:u09:Data/channel, +13:u0A:channel/., +11:u0C:or/Data, +13:u09:channel/., +16:u0C:Data/channel, +13:u0C:channel/., +11:u08:Meiling, +11:u07:Meiling, +11:u06:Meiling, +13:u0B:./Meiling, +11:u14:meiling, +11:u05:Meiling, +6:u08:32, +13:u0A:./Meiling, +16:u0B:Meiling/Chen, +11:u13:meiling, +11:u04:Meiling, +6:u07:32, +13:u09:./Meiling, +16:u0A:Meiling/Chen, +13:u0B:Chen/CMCC, +13:u0D:Meiling/0, +11:u12:meiling, +7:u22:Mei, +8:u23:Meil, +11:u03:Meiling, +6:u06:32, +13:u08:Xuanwumen, +16:u09:Meiling/Chen, +13:u0A:Chen/CMCC, +11:u0B:CMCC/32, +13:u0C:./Meiling, +11:u11:meiling, +6:u14:32, +11:u02:Meiling, +6:u05:32, +13:u07:Xuanwumen, +8:u08:West, +13:u09:Chen/CMCC, +11:u0A:CMCC/32, +8:u0B:32/,, +16:u0C:Meiling/Chen, +11:u10:meiling, +6:u13:32, +11:u01:Meiling, +6:u04:32, +13:u06:Xuanwumen, +8:u07:West, +11:u08:BeiJing, +11:u09:CMCC/32, +8:u0A:32/,, +15:u0B:,/Xuanwumen, +13:u0C:Chen/CMCC, +8:u0D:32/0, +6:u12:32, +13:u14:xuanwumen, +6:u21:32, +6:u22:32, +6:u23:32, +6:u31:32, +6:u32:32, +6:u33:32, +11:u00:Meiling, +6:u03:32, +13:u05:Xuanwumen, +8:u06:West, +11:u07:BeiJing, +8:u09:32/,, +15:u0A:,/Xuanwumen, +18:u0B:Xuanwumen/West, +11:u0C:CMCC/32, +6:u11:32, +13:u13:xuanwumen, +8:u14:west, +6:u02:32, +13:u04:Xuanwumen, +8:u05:West, +11:u06:BeiJing, +15:u09:,/Xuanwumen, +18:u0A:Xuanwumen/West, +16:u0B:West/BeiJing, +8:u0C:32/,, +15:u0D:Xuanwumen/0, +6:u10:32, +13:u12:xuanwumen, +8:u13:west, +11:u14:beijing, +5:u20:X, +6:u21:Xu, +7:u22:Xua, +8:u23:Xuan, +7:u32:men, +8:u33:umen, +6:u01:32, +13:u03:Xuanwumen, +8:u04:West, +11:u05:BeiJing, +10:u08:100053, +18:u09:Xuanwumen/West, +16:u0A:West/BeiJing, +13:u0B:BeiJing/,, +15:u0C:,/Xuanwumen, +10:u0D:West/0, +13:u11:xuanwumen, +8:u12:west, +11:u13:beijing, +6:u21:We, +7:u22:Wes, +8:u23:West, +8:u33:West, +6:u00:32, +13:u02:Xuanwumen, +8:u03:West, +11:u04:BeiJing, +10:u07:100053, +9:u08:China, +16:u09:West/BeiJing, +13:u0A:BeiJing/,, +13:u0B:,/BeiJing, +18:u0C:Xuanwumen/West, +13:u0D:BeiJing/0, +13:u10:xuanwumen, +8:u11:west, +11:u12:beijing, +6:u21:Be, +7:u22:Bei, +8:u23:BeiJ, +8:u33:Jing, +13:u01:Xuanwumen, +8:u02:West, +11:u03:BeiJing, +10:u06:100053, +9:u07:China, +13:u09:BeiJing/,, +13:u0A:,/BeiJing, +18:u0B:BeiJing/100053, +16:u0C:West/BeiJing, +8:u10:west, +11:u11:beijing, +10:u14:100053, +13:u00:Xuanwumen, +8:u01:West, +11:u02:BeiJing, +10:u05:100053, +9:u06:China, +13:u09:,/BeiJing, +18:u0A:BeiJing/100053, +16:u0B:100053/China, +13:u0C:BeiJing/,, +11:u10:beijing, +10:u13:100053, +9:u14:china, +8:u00:West, +11:u01:BeiJing, +10:u04:100053, +9:u05:China, +27:u08:chenmeiling@chinamobile, +18:u09:BeiJing/100053, +16:u0A:100053/China, +15:u0B:China/Email, +13:u0C:,/BeiJing, +12:u0D:100053/0, +10:u12:100053, +9:u13:china, +7:u22:100, +8:u23:1000, +6:u31:53, +7:u32:053, +8:u33:0053, +11:u00:BeiJing, +10:u03:100053, +9:u04:China, +27:u07:chenmeiling@chinamobile, +16:u09:100053/China, +15:u0A:China/Email, +18:u0C:BeiJing/100053, +11:u0D:China/0, +10:u11:100053, +9:u12:china, +7:u22:Chi, +8:u23:Chin, +6:u31:na, +7:u32:ina, +8:u33:hina, +10:u02:100053, +9:u03:China, +27:u06:chenmeiling@chinamobile, +15:u09:China/Email, +29:u0B::/chenmeiling@chinamobile, +16:u0C:100053/China, +10:u10:100053, +9:u11:china, +27:u14:chenmeiling@chinamobile, +10:u01:100053, +9:u02:China, +27:u05:chenmeiling@chinamobile, +29:u0A::/chenmeiling@chinamobile, +29:u0B:chenmeiling@chinamobile/., +15:u0C:China/Email, +9:u10:china, +27:u13:chenmeiling@chinamobile, +10:u00:100053, +9:u01:China, +27:u04:chenmeiling@chinamobile, +29:u09::/chenmeiling@chinamobile, +29:u0A:chenmeiling@chinamobile/., +29:u0D:chenmeiling@chinamobile/0, +27:u12:chenmeiling@chinamobile, +8:u33:bile, +9:u00:China, +27:u03:chenmeiling@chinamobile, +29:u09:chenmeiling@chinamobile/., +10:u0B:com/Li, +29:u0C::/chenmeiling@chinamobile, +27:u11:chenmeiling@chinamobile, +27:u02:chenmeiling@chinamobile, +10:u0A:com/Li, +9:u0B:Li/Su, +29:u0C:chenmeiling@chinamobile/., +27:u10:chenmeiling@chinamobile, +27:u01:chenmeiling@chinamobile, +10:u09:com/Li, +9:u0A:Li/Su, +11:u0B:Su/CMCC, +27:u00:chenmeiling@chinamobile, +9:u09:Li/Su, +11:u0A:Su/CMCC, +10:u0C:com/Li, +11:u09:Su/CMCC, +9:u0C:Li/Su, +11:u0C:Su/CMCC, +20:u08:suli@chinamobile, +20:u07:suli@chinamobile, +20:u06:suli@chinamobile, +22:u0B::/suli@chinamobile, +20:u14:suli@chinamobile, +20:u05:suli@chinamobile, +22:u0A::/suli@chinamobile, +22:u0B:suli@chinamobile/., +20:u13:suli@chinamobile, +20:u04:suli@chinamobile, +22:u09::/suli@chinamobile, +22:u0A:suli@chinamobile/., +22:u0D:suli@chinamobile/0, +20:u12:suli@chinamobile, +7:u22:sul, +8:u23:suli, +20:u03:suli@chinamobile, +22:u09:suli@chinamobile/., +11:u0B:com/Jin, +22:u0C::/suli@chinamobile, +20:u11:suli@chinamobile, +20:u02:suli@chinamobile, +11:u0A:com/Jin, +12:u0B:Jin/Peng, +22:u0C:suli@chinamobile/., +20:u10:suli@chinamobile, +20:u01:suli@chinamobile, +11:u09:com/Jin, +12:u0A:Jin/Peng, +13:u0B:Peng/CMCC, +20:u00:suli@chinamobile, +12:u09:Jin/Peng, +13:u0A:Peng/CMCC, +11:u0C:com/Jin, +13:u09:Peng/CMCC, +12:u0C:Jin/Peng, +13:u0C:Peng/CMCC, +23:u08:pengjin@chinamobile, +23:u07:pengjin@chinamobile, +23:u06:pengjin@chinamobile, +25:u0B::/pengjin@chinamobile, +23:u14:pengjin@chinamobile, +23:u05:pengjin@chinamobile, +25:u0A::/pengjin@chinamobile, +25:u0B:pengjin@chinamobile/., +23:u13:pengjin@chinamobile, +23:u04:pengjin@chinamobile, +25:u09::/pengjin@chinamobile, +25:u0A:pengjin@chinamobile/., +25:u0D:pengjin@chinamobile/0, +23:u12:pengjin@chinamobile, +7:u22:pen, +8:u23:peng, +23:u03:pengjin@chinamobile, +25:u09:pengjin@chinamobile/., +25:u0C::/pengjin@chinamobile, +23:u11:pengjin@chinamobile, +23:u02:pengjin@chinamobile, +25:u0C:pengjin@chinamobile/., +23:u10:pengjin@chinamobile, +12:u06:20190907, +17:u0B:date/20190907, +12:u14:20190907, +12:u05:20190907, +17:u0A:date/20190907, +14:u0B:20190907/;, +12:u13:20190907, +12:u04:20190907, +17:u09:date/20190907, +14:u0A:20190907/;, +14:u0D:20190907/0, +12:u12:20190907, +6:u31:07, +7:u32:907, +8:u33:0907, +12:u03:20190907, +14:u09:20190907/;, +17:u0C:date/20190907, +12:u11:20190907, +12:u02:20190907, +12:u08:20190908, +14:u0C:20190907/;, +12:u10:20190907, +12:u01:20190907, +12:u07:20190908, +7:u08:SFC, +12:u00:20190907, +12:u06:20190908, +7:u07:SFC, +6:u08:WG, +15:u0B:on/20190908, +12:u14:20190908, +12:u05:20190908, +7:u06:SFC, +6:u07:WG, +6:u08:CJ, +15:u0A:on/20190908, +16:u0B:20190908/SFC, +12:u13:20190908, +7:u14:sfc, +12:u04:20190908, +7:u05:SFC, +6:u06:WG, +6:u07:CJ, +15:u09:on/20190908, +16:u0A:20190908/SFC, +10:u0B:SFC/WG, +14:u0D:20190908/0, +12:u12:20190908, +7:u13:sfc, +6:u14:wg, +7:u32:908, +8:u33:0908, +12:u03:20190908, +7:u04:SFC, +6:u05:WG, +6:u06:CJ, +13:u08:Bernardos, +16:u09:20190908/SFC, +10:u0A:SFC/WG, +9:u0B:WG/CJ, +15:u0C:on/20190908, +9:u0D:SFC/0, +12:u11:20190908, +7:u12:sfc, +6:u13:wg, +6:u14:cj, +6:u21:SF, +7:u22:SFC, +7:u23:SFC, +7:u32:SFC, +7:u33:SFC, +12:u02:20190908, +7:u03:SFC, +6:u04:WG, +6:u05:CJ, +13:u07:Bernardos, +10:u09:SFC/WG, +9:u0A:WG/CJ, +8:u0B:CJ/., +16:u0C:20190908/SFC, +8:u0D:WG/0, +12:u10:20190908, +7:u11:sfc, +6:u12:wg, +6:u13:cj, +6:u21:WG, +6:u22:WG, +6:u23:WG, +6:u31:WG, +6:u32:WG, +6:u33:WG, +12:u01:20190908, +7:u02:SFC, +6:u03:WG, +6:u04:CJ, +13:u06:Bernardos, +9:u09:WG/CJ, +8:u0A:CJ/., +15:u0B:./Bernardos, +10:u0C:SFC/WG, +8:u0D:CJ/0, +7:u10:sfc, +6:u11:wg, +6:u12:cj, +13:u14:bernardos, +6:u21:CJ, +6:u22:CJ, +6:u23:CJ, +5:u30:J, +6:u31:CJ, +6:u32:CJ, +6:u33:CJ, +12:u00:20190908, +7:u01:SFC, +6:u02:WG, +6:u03:CJ, +13:u05:Bernardos, +8:u09:CJ/., +15:u0A:./Bernardos, +22:u0B:Bernardos/Internet, +9:u0C:WG/CJ, +6:u10:wg, +6:u11:cj, +13:u13:bernardos, +7:u00:SFC, +6:u01:WG, +6:u02:CJ, +13:u04:Bernardos, +8:u08:UC3M, +15:u09:./Bernardos, +22:u0A:Bernardos/Internet, +8:u0C:CJ/., +15:u0D:Bernardos/0, +6:u10:cj, +13:u12:bernardos, +7:u22:Ber, +8:u23:Bern, +8:u33:rdos, +6:u00:WG, +6:u01:CJ, +13:u03:Bernardos, +8:u07:UC3M, +22:u09:Bernardos/Internet, +15:u0C:./Bernardos, +13:u11:bernardos, +6:u00:CJ, +13:u02:Bernardos, +8:u06:UC3M, +14:u0B:Draft/UC3M, +22:u0C:Bernardos/Internet, +13:u10:bernardos, +8:u14:uc3m, +13:u01:Bernardos, +8:u05:UC3M, +14:u0A:Draft/UC3M, +17:u0B:UC3M/Intended, +8:u13:uc3m, +13:u00:Bernardos, +8:u04:UC3M, +14:u09:Draft/UC3M, +17:u0A:UC3M/Intended, +10:u0D:UC3M/0, +8:u12:uc3m, +6:u21:UC, +7:u22:UC3, +8:u23:UC3M, +6:u31:3M, +7:u32:C3M, +8:u33:UC3M, +8:u03:UC3M, +17:u09:UC3M/Intended, +14:u0C:Draft/UC3M, +8:u11:uc3m, +8:u02:UC3M, +17:u0C:UC3M/Intended, +8:u10:uc3m, +8:u01:UC3M, +10:u08:Rahman, +19:u0B:Informational/A, +8:u00:UC3M, +10:u07:Rahman, +19:u0A:Informational/A, +10:u06:Rahman, +19:u09:Informational/A, +12:u0B:./Rahman, +10:u14:rahman, +10:u05:Rahman, +12:u0A:./Rahman, +18:u0B:Rahman/Expires, +19:u0C:Informational/A, +10:u13:rahman, +10:u04:Rahman, +12:u09:./Rahman, +18:u0A:Rahman/Expires, +12:u0D:Rahman/0, +10:u12:rahman, +6:u21:Ra, +7:u22:Rah, +8:u23:Rahm, +7:u32:man, +8:u33:hman, +10:u03:Rahman, +18:u09:Rahman/Expires, +12:u0C:./Rahman, +10:u11:rahman, +10:u02:Rahman, +12:u0B:March/10, +18:u0C:Rahman/Expires, +10:u10:rahman, +10:u01:Rahman, +12:u0A:March/10, +10:u00:Rahman, +12:u09:March/10, +10:u08:Mourad, +12:u0C:March/10, +10:u07:Mourad, +16:u08:InterDigital, +10:u06:Mourad, +16:u07:InterDigital, +12:u0B:./Mourad, +10:u14:mourad, +10:u05:Mourad, +16:u06:InterDigital, +5:u08:7, +12:u0A:./Mourad, +23:u0B:Mourad/InterDigital, +10:u13:mourad, +16:u14:interdigital, +10:u04:Mourad, +16:u05:InterDigital, +5:u07:7, +12:u09:./Mourad, +23:u0A:Mourad/InterDigital, +26:u0B:InterDigital/September, +12:u0D:Mourad/0, +10:u12:mourad, +16:u13:interdigital, +8:u23:Mour, +6:u31:ad, +7:u32:rad, +8:u33:urad, +10:u03:Mourad, +16:u04:InterDigital, +5:u06:7, +23:u09:Mourad/InterDigital, +26:u0A:InterDigital/September, +15:u0B:September/7, +12:u0C:./Mourad, +18:u0D:InterDigital/0, +10:u11:mourad, +16:u12:interdigital, +5:u14:7, +10:u02:Mourad, +16:u03:InterDigital, +5:u05:7, +11:u08:Service, +26:u09:InterDigital/September, +15:u0A:September/7, +7:u0B:7/,, +23:u0C:Mourad/InterDigital, +10:u10:mourad, +16:u11:interdigital, +5:u13:7, +10:u01:Mourad, +16:u02:InterDigital, +5:u04:7, +11:u07:Service, +12:u08:Function, +15:u09:September/7, +7:u0A:7/,, +26:u0C:InterDigital/September, +7:u0D:7/0, +16:u10:interdigital, +5:u12:7, +5:u21:7, +5:u22:7, +5:u23:7, +5:u31:7, +5:u32:7, +5:u33:7, +10:u00:Mourad, +16:u01:InterDigital, +5:u03:7, +11:u06:Service, +12:u07:Function, +12:u08:Chaining, +7:u09:7/,, +16:u0B:2019/Service, +15:u0C:September/7, +5:u11:7, +11:u14:service, +16:u00:InterDigital, +5:u02:7, +11:u05:Service, +12:u06:Function, +12:u07:Chaining, +7:u08:Use, +16:u0A:2019/Service, +20:u0B:Service/Function, +7:u0C:7/,, +5:u10:7, +11:u13:service, +12:u14:function, +5:u01:7, +11:u04:Service, +12:u05:Function, +12:u06:Chaining, +7:u07:Use, +9:u08:Cases, +16:u09:2019/Service, +20:u0A:Service/Function, +21:u0B:Function/Chaining, +13:u0D:Service/0, +11:u12:service, +12:u13:function, +12:u14:chaining, +7:u22:Ser, +8:u23:Serv, +8:u33:vice, +5:u00:7, +11:u03:Service, +12:u04:Function, +12:u05:Chaining, +7:u06:Use, +9:u07:Cases, +20:u09:Service/Function, +21:u0A:Function/Chaining, +16:u0B:Chaining/Use, +16:u0C:2019/Service, +14:u0D:Function/0, +11:u11:service, +12:u12:function, +12:u13:chaining, +6:u21:Fu, +7:u22:Fun, +8:u23:Func, +11:u02:Service, +12:u03:Function, +12:u04:Chaining, +7:u05:Use, +9:u06:Cases, +7:u08:Fog, +21:u09:Function/Chaining, +16:u0A:Chaining/Use, +13:u0B:Use/Cases, +20:u0C:Service/Function, +14:u0D:Chaining/0, +11:u10:service, +12:u11:function, +12:u12:chaining, +9:u14:cases, +8:u23:Chai, +11:u01:Service, +12:u02:Function, +12:u03:Chaining, +7:u04:Use, +9:u05:Cases, +7:u07:Fog, +7:u08:RAN, +16:u09:Chaining/Use, +13:u0A:Use/Cases, +12:u0B:Cases/in, +21:u0C:Function/Chaining, +9:u0D:Use/0, +12:u10:function, +12:u11:chaining, +9:u13:cases, +6:u21:Us, +7:u22:Use, +7:u23:Use, +7:u32:Use, +7:u33:Use, +11:u00:Service, +12:u01:Function, +12:u02:Chaining, +7:u03:Use, +9:u04:Cases, +7:u06:Fog, +7:u07:RAN, +13:u09:Use/Cases, +12:u0A:Cases/in, +10:u0B:in/Fog, +16:u0C:Chaining/Use, +11:u0D:Cases/0, +12:u10:chaining, +9:u12:cases, +7:u14:fog, +7:u22:Cas, +8:u23:Case, +8:u33:ases, +12:u00:Function, +12:u01:Chaining, +7:u02:Use, +9:u03:Cases, +7:u05:Fog, +7:u06:RAN, +12:u09:Cases/in, +10:u0A:in/Fog, +11:u0B:Fog/RAN, +13:u0C:Use/Cases, +9:u11:cases, +7:u13:fog, +7:u14:ran, +12:u00:Chaining, +7:u01:Use, +9:u02:Cases, +7:u04:Fog, +7:u05:RAN, +13:u08:bernardos, +10:u09:in/Fog, +11:u0A:Fog/RAN, +13:u0B:RAN/draft, +12:u0C:Cases/in, +9:u0D:Fog/0, +9:u10:cases, +7:u12:fog, +7:u13:ran, +7:u22:Fog, +7:u23:Fog, +6:u31:og, +7:u32:Fog, +7:u33:Fog, +7:u00:Use, +9:u01:Cases, +7:u03:Fog, +7:u04:RAN, +13:u07:bernardos, +11:u09:Fog/RAN, +13:u0A:RAN/draft, +10:u0C:in/Fog, +9:u0D:RAN/0, +7:u11:fog, +7:u12:ran, +6:u21:RA, +7:u22:RAN, +7:u23:RAN, +6:u31:AN, +7:u32:RAN, +7:u33:RAN, +9:u00:Cases, +7:u02:Fog, +7:u03:RAN, +13:u06:bernardos, +7:u08:sfc, +13:u09:RAN/draft, +15:u0B:-/bernardos, +11:u0C:Fog/RAN, +7:u10:fog, +7:u11:ran, +7:u01:Fog, +7:u02:RAN, +13:u05:bernardos, +7:u07:sfc, +15:u0A:-/bernardos, +15:u0B:bernardos/-, +13:u0C:RAN/draft, +7:u10:ran, +7:u00:Fog, +7:u01:RAN, +13:u04:bernardos, +7:u06:sfc, +7:u08:fog, +15:u09:-/bernardos, +15:u0A:bernardos/-, +9:u0B:-/sfc, +15:u0D:bernardos/1, +7:u22:ber, +8:u23:bern, +7:u00:RAN, +13:u03:bernardos, +7:u05:sfc, +7:u07:fog, +15:u09:bernardos/-, +9:u0A:-/sfc, +9:u0B:sfc/-, +15:u0C:-/bernardos, +13:u02:bernardos, +7:u04:sfc, +7:u06:fog, +7:u08:ran, +9:u09:-/sfc, +9:u0A:sfc/-, +9:u0B:-/fog, +15:u0C:bernardos/-, +9:u0D:sfc/1, +6:u21:sf, +7:u22:sfc, +7:u23:sfc, +7:u32:sfc, +7:u33:sfc, +13:u01:bernardos, +7:u03:sfc, +7:u05:fog, +7:u07:ran, +9:u09:sfc/-, +9:u0A:-/fog, +9:u0B:fog/-, +9:u0C:-/sfc, +13:u00:bernardos, +7:u02:sfc, +7:u04:fog, +7:u06:ran, +6:u08:06, +9:u09:-/fog, +9:u0A:fog/-, +9:u0B:-/ran, +9:u0C:sfc/-, +9:u0D:fog/1, +7:u22:fog, +7:u23:fog, +7:u32:fog, +7:u33:fog, +7:u01:sfc, +7:u03:fog, +7:u05:ran, +6:u07:06, +9:u09:fog/-, +9:u0A:-/ran, +9:u0B:ran/-, +9:u0C:-/fog, +7:u00:sfc, +7:u02:fog, +7:u04:ran, +6:u06:06, +9:u09:-/ran, +9:u0A:ran/-, +8:u0B:-/06, +9:u0C:fog/-, +9:u0D:ran/1, +6:u14:06, +7:u23:ran, +7:u33:ran, +7:u01:fog, +7:u03:ran, +6:u05:06, +9:u08:Radio, +9:u09:ran/-, +8:u0A:-/06, +15:u0B:06/Abstract, +9:u0C:-/ran, +6:u13:06, +7:u00:fog, +7:u02:ran, +6:u04:06, +9:u07:Radio, +10:u08:Access, +8:u09:-/06, +15:u0A:06/Abstract, +16:u0B:Abstract/Fog, +9:u0C:ran/-, +8:u0D:06/1, +6:u12:06, +6:u21:06, +6:u22:06, +6:u23:06, +6:u32:06, +6:u33:06, +7:u01:ran, +6:u03:06, +9:u06:Radio, +10:u07:Access, +12:u08:Networks, +15:u09:06/Abstract, +16:u0A:Abstract/Fog, +13:u0B:Fog/Radio, +8:u0C:-/06, +6:u11:06, +9:u14:radio, +7:u00:ran, +6:u02:06, +9:u05:Radio, +10:u06:Access, +12:u07:Networks, +16:u09:Abstract/Fog, +13:u0A:Fog/Radio, +16:u0B:Radio/Access, +15:u0C:06/Abstract, +6:u10:06, +9:u13:radio, +10:u14:access, +6:u01:06, +9:u04:Radio, +10:u05:Access, +12:u06:Networks, +13:u09:Fog/Radio, +16:u0A:Radio/Access, +19:u0B:Access/Networks, +16:u0C:Abstract/Fog, +11:u0D:Radio/0, +9:u12:radio, +10:u13:access, +7:u22:Rad, +8:u23:Radi, +7:u32:dio, +8:u33:adio, +6:u00:06, +9:u03:Radio, +10:u04:Access, +12:u05:Networks, +16:u09:Radio/Access, +19:u0A:Access/Networks, +14:u0B:Networks/(, +13:u0C:Fog/Radio, +12:u0D:Access/0, +9:u11:radio, +10:u12:access, +6:u21:Ac, +7:u22:Acc, +8:u23:Acce, +9:u02:Radio, +10:u03:Access, +12:u04:Networks, +10:u08:refers, +19:u09:Access/Networks, +14:u0A:Networks/(, +9:u0B:(/RAN, +16:u0C:Radio/Access, +14:u0D:Networks/0, +9:u10:radio, +10:u11:access, +9:u01:Radio, +10:u02:Access, +12:u03:Networks, +10:u07:refers, +14:u09:Networks/(, +9:u0A:(/RAN, +9:u0B:RAN/), +19:u0C:Access/Networks, +10:u10:access, +9:u00:Radio, +10:u01:Access, +12:u02:Networks, +10:u06:refers, +9:u09:(/RAN, +9:u0A:RAN/), +12:u0B:)/refers, +14:u0C:Networks/(, +10:u14:refers, +10:u00:Access, +12:u01:Networks, +10:u05:refers, +9:u09:RAN/), +12:u0A:)/refers, +13:u0B:refers/to, +9:u0C:(/RAN, +10:u13:refers, +12:u00:Networks, +10:u04:refers, +12:u09:)/refers, +13:u0A:refers/to, +9:u0C:RAN/), +12:u0D:refers/0, +10:u12:refers, +8:u33:fers, +10:u03:refers, +13:u09:refers/to, +12:u0B:the/part, +12:u0C:)/refers, +10:u11:refers, +10:u02:refers, +12:u0A:the/part, +13:u0C:refers/to, +10:u10:refers, +10:u01:refers, +12:u09:the/part, +10:u00:refers, +11:u0B:the/RAN, +12:u0C:the/part, +15:u08:virtualized, +11:u0A:the/RAN, +12:u0B:RAN/that, +15:u07:virtualized, +11:u09:the/RAN, +12:u0A:RAN/that, +11:u0B:that/is, +15:u06:virtualized, +12:u09:RAN/that, +11:u0A:that/is, +18:u0B:is/virtualized, +11:u0C:the/RAN, +15:u14:virtualized, +15:u05:virtualized, +8:u08:very, +11:u09:that/is, +18:u0A:is/virtualized, +18:u0B:virtualized/at, +12:u0C:RAN/that, +15:u13:virtualized, +15:u04:virtualized, +8:u07:very, +8:u08:edge, +18:u09:is/virtualized, +18:u0A:virtualized/at, +11:u0C:that/is, +17:u0D:virtualized/0, +15:u12:virtualized, +6:u21:vi, +7:u22:vir, +8:u23:virt, +15:u03:virtualized, +8:u06:very, +8:u07:edge, +18:u09:virtualized/at, +12:u0B:the/very, +18:u0C:is/virtualized, +15:u11:virtualized, +8:u14:very, +15:u02:virtualized, +8:u05:very, +8:u06:edge, +12:u0A:the/very, +13:u0B:very/edge, +18:u0C:virtualized/at, +15:u10:virtualized, +8:u13:very, +8:u14:edge, +15:u01:virtualized, +8:u04:very, +8:u05:edge, +12:u09:the/very, +13:u0A:very/edge, +11:u0B:edge/of, +10:u0D:very/0, +8:u12:very, +8:u13:edge, +7:u22:ver, +8:u23:very, +7:u32:ery, +8:u33:very, +15:u00:virtualized, +8:u03:very, +8:u04:edge, +13:u09:very/edge, +11:u0A:edge/of, +12:u0C:the/very, +10:u0D:edge/0, +8:u11:very, +8:u12:edge, +7:u22:edg, +8:u23:edge, +8:u33:edge, +8:u02:very, +8:u03:edge, +8:u08:even, +11:u09:edge/of, +13:u0C:very/edge, +8:u10:very, +8:u11:edge, +8:u01:very, +8:u02:edge, +8:u07:even, +13:u0B:network/,, +11:u0C:edge/of, +8:u10:edge, +8:u00:very, +8:u01:edge, +8:u06:even, +13:u0A:network/,, +10:u0B:,/even, +8:u14:even, +8:u00:edge, +8:u05:even, +7:u08:end, +13:u09:network/,, +10:u0A:,/even, +11:u0B:even/at, +8:u13:even, +8:u04:even, +7:u07:end, +10:u09:,/even, +11:u0A:even/at, +13:u0C:network/,, +10:u0D:even/0, +8:u12:even, +7:u22:eve, +8:u23:even, +7:u32:ven, +8:u33:even, +8:u03:even, +7:u06:end, +11:u09:even/at, +11:u0B:the/end, +10:u0C:,/even, +8:u11:even, +7:u14:end, +8:u02:even, +7:u05:end, +10:u08:device, +11:u0A:the/end, +9:u0B:end/-, +11:u0C:even/at, +8:u10:even, +7:u13:end, +8:u01:even, +7:u04:end, +10:u07:device, +11:u09:the/end, +9:u0A:end/-, +10:u0B:-/user, +9:u0D:end/0, +7:u12:end, +7:u22:end, +7:u23:end, +7:u33:end, +8:u00:even, +7:u03:end, +10:u06:device, +9:u09:end/-, +10:u0A:-/user, +15:u0B:user/device, +11:u0C:the/end, +7:u11:end, +10:u14:device, +7:u02:end, +10:u05:device, +10:u09:-/user, +15:u0A:user/device, +12:u0B:device/., +9:u0C:end/-, +10:u0D:user/1, +7:u10:end, +10:u13:device, +7:u01:end, +10:u04:device, +11:u08:support, +15:u09:user/device, +12:u0A:device/., +9:u0B:./Fog, +10:u0C:-/user, +12:u0D:device/0, +10:u12:device, +8:u23:devi, +7:u00:end, +10:u03:device, +11:u07:support, +12:u09:device/., +9:u0A:./Fog, +15:u0C:user/device, +10:u11:device, +10:u02:device, +11:u06:support, +14:u08:considered, +9:u09:./Fog, +15:u0B:RAN/support, +12:u0C:device/., +10:u10:device, +11:u14:support, +10:u01:device, +11:u05:support, +14:u07:considered, +12:u08:critical, +15:u0A:RAN/support, +14:u0B:support/is, +9:u0C:./Fog, +11:u13:support, +10:u00:device, +11:u04:support, +14:u06:considered, +12:u07:critical, +15:u09:RAN/support, +14:u0A:support/is, +17:u0B:is/considered, +13:u0D:support/0, +11:u12:support, +14:u14:considered, +7:u22:sup, +8:u23:supp, +7:u32:ort, +8:u33:port, +11:u03:support, +14:u05:considered, +12:u06:critical, +14:u09:support/is, +17:u0A:is/considered, +23:u0B:considered/critical, +15:u0C:RAN/support, +11:u11:support, +14:u13:considered, +12:u14:critical, +11:u02:support, +14:u04:considered, +12:u05:critical, +6:u08:5G, +17:u09:is/considered, +23:u0A:considered/critical, +16:u0B:critical/for, +14:u0C:support/is, +16:u0D:considered/0, +11:u10:support, +14:u12:considered, +12:u13:critical, +7:u32:red, +8:u33:ered, +11:u01:support, +14:u03:considered, +12:u04:critical, +6:u07:5G, +10:u08:mobile, +23:u09:considered/critical, +16:u0A:critical/for, +17:u0C:is/considered, +14:u0D:critical/0, +14:u11:considered, +12:u12:critical, +6:u21:cr, +7:u22:cri, +8:u23:crit, +11:u00:support, +14:u02:considered, +12:u03:critical, +6:u06:5G, +10:u07:mobile, +16:u09:critical/for, +10:u0B:the/5G, +23:u0C:considered/critical, +14:u10:considered, +12:u11:critical, +6:u14:5g, +14:u01:considered, +12:u02:critical, +6:u05:5G, +10:u06:mobile, +10:u0A:the/5G, +13:u0B:5G/mobile, +16:u0C:critical/for, +12:u10:critical, +6:u13:5g, +10:u14:mobile, +14:u00:considered, +12:u01:critical, +6:u04:5G, +10:u05:mobile, +10:u09:the/5G, +13:u0A:5G/mobile, +18:u0B:mobile/network, +8:u0D:5G/0, +6:u12:5g, +10:u13:mobile, +6:u21:5G, +6:u22:5G, +6:u23:5G, +6:u31:5G, +6:u32:5G, +6:u33:5G, +12:u00:critical, +6:u03:5G, +10:u04:mobile, +9:u08:being, +13:u09:5G/mobile, +18:u0A:mobile/network, +25:u0B:network/architectures, +10:u0C:the/5G, +12:u0D:mobile/0, +6:u11:5g, +10:u12:mobile, +7:u22:mob, +8:u23:mobi, +6:u02:5G, +10:u03:mobile, +9:u07:being, +13:u08:developed, +18:u09:mobile/network, +25:u0A:network/architectures, +27:u0B:architectures/currently, +13:u0C:5G/mobile, +6:u10:5g, +10:u11:mobile, +6:u01:5G, +10:u02:mobile, +9:u06:being, +13:u07:developed, +25:u09:network/architectures, +27:u0A:architectures/currently, +19:u0B:currently/being, +18:u0C:mobile/network, +10:u10:mobile, +9:u14:being, +6:u00:5G, +10:u01:mobile, +9:u05:being, +13:u06:developed, +11:u08:various, +27:u09:architectures/currently, +19:u0A:currently/being, +19:u0B:being/developed, +25:u0C:network/architectures, +9:u13:being, +13:u14:developed, +10:u00:mobile, +9:u04:being, +13:u05:developed, +11:u07:various, +19:u09:currently/being, +19:u0A:being/developed, +16:u0B:developed/in, +27:u0C:architectures/currently, +11:u0D:being/0, +9:u12:being, +13:u13:developed, +7:u22:bei, +8:u23:bein, +8:u33:eing, +9:u03:being, +13:u04:developed, +11:u06:various, +19:u09:being/developed, +16:u0A:developed/in, +14:u0B:in/various, +19:u0C:currently/being, +15:u0D:developed/0, +9:u11:being, +13:u12:developed, +11:u14:various, +7:u32:ped, +8:u33:oped, +9:u02:being, +13:u03:developed, +11:u05:various, +19:u08:standardization, +16:u09:developed/in, +14:u0A:in/various, +20:u0B:various/research, +19:u0C:being/developed, +9:u10:being, +13:u11:developed, +11:u13:various, +9:u01:being, +13:u02:developed, +11:u04:various, +19:u07:standardization, +14:u09:in/various, +20:u0A:various/research, +14:u0B:research/,, +16:u0C:developed/in, +13:u0D:various/0, +13:u10:developed, +11:u12:various, +9:u00:being, +13:u01:developed, +11:u03:various, +19:u06:standardization, +20:u09:various/research, +14:u0A:research/,, +21:u0B:,/standardization, +14:u0C:in/various, +11:u11:various, +19:u14:standardization, +13:u00:developed, +11:u02:various, +19:u05:standardization, +10:u08:forums, +14:u09:research/,, +21:u0A:,/standardization, +23:u0B:standardization/and, +20:u0C:various/research, +11:u10:various, +19:u13:standardization, +11:u01:various, +19:u04:standardization, +10:u07:forums, +21:u09:,/standardization, +23:u0A:standardization/and, +16:u0B:and/industry, +14:u0C:research/,, +21:u0D:standardization/0, +19:u12:standardization, +11:u00:various, +19:u03:standardization, +10:u06:forums, +23:u09:standardization/and, +16:u0A:and/industry, +19:u0B:industry/forums, +21:u0C:,/standardization, +19:u11:standardization, +10:u14:forums, +19:u02:standardization, +10:u05:forums, +16:u09:and/industry, +19:u0A:industry/forums, +12:u0B:forums/., +23:u0C:standardization/and, +19:u10:standardization, +10:u13:forums, +19:u01:standardization, +10:u04:forums, +19:u09:industry/forums, +12:u0A:forums/., +16:u0C:and/industry, +12:u0D:forums/0, +10:u12:forums, +8:u23:foru, +7:u32:ums, +8:u33:rums, +19:u00:standardization, +10:u03:forums, +10:u08:builds, +12:u09:forums/., +13:u0B:Since/fog, +19:u0C:industry/forums, +10:u11:forums, +10:u02:forums, +10:u07:builds, +13:u0A:Since/fog, +11:u0B:fog/RAN, +12:u0C:forums/., +10:u10:forums, +10:u01:forums, +10:u06:builds, +7:u08:top, +13:u09:Since/fog, +11:u0A:fog/RAN, +14:u0B:RAN/builds, +9:u0D:fog/0, +10:u14:builds, +10:u00:forums, +10:u05:builds, +7:u07:top, +11:u09:fog/RAN, +14:u0A:RAN/builds, +13:u0B:builds/on, +13:u0C:Since/fog, +10:u13:builds, +10:u04:builds, +7:u06:top, +18:u08:virtualization, +14:u09:RAN/builds, +13:u0A:builds/on, +10:u0B:on/top, +11:u0C:fog/RAN, +12:u0D:builds/0, +10:u12:builds, +7:u14:top, +6:u21:bu, +7:u22:bui, +8:u23:buil, +8:u33:ilds, +10:u03:builds, +7:u05:top, +18:u07:virtualization, +13:u09:builds/on, +10:u0A:on/top, +10:u0B:top/of, +14:u0C:RAN/builds, +10:u11:builds, +7:u13:top, +10:u02:builds, +7:u04:top, +18:u06:virtualization, +10:u09:on/top, +10:u0A:top/of, +21:u0B:of/virtualization, +13:u0C:builds/on, +9:u0D:top/0, +10:u10:builds, +7:u12:top, +18:u14:virtualization, +7:u22:top, +7:u23:top, +7:u32:top, +7:u33:top, +10:u01:builds, +7:u03:top, +18:u05:virtualization, +11:u08:involve, +10:u09:top/of, +21:u0A:of/virtualization, +22:u0B:virtualization/and, +10:u0C:on/top, +7:u11:top, +18:u13:virtualization, +10:u00:builds, +7:u02:top, +18:u04:virtualization, +11:u07:involve, +11:u08:several, +21:u09:of/virtualization, +22:u0A:virtualization/and, +11:u0B:and/can, +10:u0C:top/of, +20:u0D:virtualization/0, +7:u10:top, +18:u12:virtualization, +7:u01:top, +18:u03:virtualization, +11:u06:involve, +11:u07:several, +11:u08:virtual, +22:u09:virtualization/and, +11:u0A:and/can, +15:u0B:can/involve, +21:u0C:of/virtualization, +18:u11:virtualization, +11:u14:involve, +7:u00:top, +18:u02:virtualization, +11:u05:involve, +11:u06:several, +11:u07:virtual, +13:u08:functions, +11:u09:and/can, +15:u0A:can/involve, +19:u0B:involve/several, +22:u0C:virtualization/and, +18:u10:virtualization, +11:u13:involve, +11:u14:several, +18:u01:virtualization, +11:u04:involve, +11:u05:several, +11:u06:virtual, +13:u07:functions, +11:u08:running, +15:u09:can/involve, +19:u0A:involve/several, +19:u0B:several/virtual, +11:u0C:and/can, +13:u0D:involve/0, +11:u12:involve, +11:u13:several, +11:u14:virtual, +7:u32:lve, +8:u33:olve, +18:u00:virtualization, +11:u03:involve, +11:u04:several, +11:u05:virtual, +13:u06:functions, +11:u07:running, +19:u09:involve/several, +19:u0A:several/virtual, +21:u0B:virtual/functions, +15:u0C:can/involve, +13:u0D:several/0, +11:u11:involve, +11:u12:several, +11:u13:virtual, +13:u14:functions, +7:u22:sev, +8:u23:seve, +7:u32:ral, +8:u33:eral, +11:u02:involve, +11:u03:several, +11:u04:virtual, +13:u05:functions, +11:u06:running, +13:u08:different, +19:u09:several/virtual, +21:u0A:virtual/functions, +21:u0B:functions/running, +19:u0C:involve/several, +13:u0D:virtual/0, +11:u10:involve, +11:u11:several, +11:u12:virtual, +13:u13:functions, +11:u14:running, +8:u33:tual, +11:u01:involve, +11:u02:several, +11:u03:virtual, +13:u04:functions, +11:u05:running, +13:u07:different, +21:u09:virtual/functions, +21:u0A:functions/running, +14:u0B:running/on, +19:u0C:several/virtual, +15:u0D:functions/0, +11:u10:several, +11:u11:virtual, +13:u12:functions, +11:u13:running, +11:u00:involve, +11:u01:several, +11:u02:virtual, +13:u03:functions, +11:u04:running, +13:u06:different, +13:u08:resources, +21:u09:functions/running, +14:u0A:running/on, +16:u0B:on/different, +21:u0C:virtual/functions, +13:u0D:running/0, +11:u10:virtual, +13:u11:functions, +11:u12:running, +13:u14:different, +6:u21:ru, +7:u22:run, +8:u23:runn, +11:u00:several, +11:u01:virtual, +13:u02:functions, +11:u03:running, +13:u05:different, +13:u07:resources, +14:u09:running/on, +16:u0A:on/different, +25:u0B:different/virtualized, +21:u0C:functions/running, +13:u10:functions, +11:u11:running, +13:u13:different, +11:u00:virtual, +13:u01:functions, +11:u02:running, +13:u04:different, +13:u06:resources, +16:u09:on/different, +25:u0A:different/virtualized, +25:u0B:virtualized/resources, +14:u0C:running/on, +15:u0D:different/0, +11:u10:running, +13:u12:different, +13:u14:resources, +7:u22:dif, +8:u23:diff, +13:u00:functions, +11:u01:running, +13:u03:different, +13:u05:resources, +12:u08:function, +25:u09:different/virtualized, +25:u0A:virtualized/resources, +15:u0B:resources/,, +16:u0C:on/different, +13:u11:different, +13:u13:resources, +11:u00:running, +13:u02:different, +13:u04:resources, +12:u07:function, +12:u08:chaining, +25:u09:virtualized/resources, +15:u0A:resources/,, +13:u0B:,/Service, +25:u0C:different/virtualized, +15:u0D:resources/0, +13:u10:different, +13:u12:resources, +8:u23:reso, +13:u01:different, +13:u03:resources, +12:u06:function, +12:u07:chaining, +15:u09:resources/,, +13:u0A:,/Service, +20:u0B:Service/function, +25:u0C:virtualized/resources, +13:u11:resources, +13:u00:different, +13:u02:resources, +12:u05:function, +12:u06:chaining, +13:u09:,/Service, +20:u0A:Service/function, +21:u0B:function/chaining, +15:u0C:resources/,, +13:u10:resources, +13:u01:resources, +12:u04:function, +12:u05:chaining, +20:u09:Service/function, +21:u0A:function/chaining, +14:u0B:chaining/(, +13:u0C:,/Service, +14:u0D:function/0, +13:u00:resources, +12:u03:function, +12:u04:chaining, +21:u09:function/chaining, +14:u0A:chaining/(, +9:u0B:(/SFC, +20:u0C:Service/function, +14:u0D:chaining/0, +8:u23:chai, +12:u02:function, +12:u03:chaining, +14:u09:chaining/(, +9:u0A:(/SFC, +9:u0B:SFC/), +21:u0C:function/chaining, +12:u01:function, +12:u02:chaining, +9:u09:(/SFC, +9:u0A:SFC/), +13:u0B:)/support, +14:u0C:chaining/(, +12:u00:function, +12:u01:chaining, +9:u09:SFC/), +13:u0A:)/support, +15:u0B:support/for, +9:u0C:(/SFC, +12:u00:chaining, +13:u09:)/support, +15:u0A:support/for, +9:u0C:SFC/), +15:u09:support/for, +11:u0B:the/fog, +13:u0C:)/support, +11:u0A:the/fog, +15:u0C:support/for, +11:u09:the/fog, +12:u0B:RAN/will, +12:u0A:RAN/will, +11:u0C:the/fog, +12:u09:RAN/will, +15:u0B:be/critical, +15:u0A:be/critical, +14:u0B:critical/., +12:u0C:RAN/will, +15:u09:be/critical, +14:u0A:critical/., +14:u09:critical/., +15:u0C:be/critical, +11:u08:overall, +14:u0C:critical/., +11:u07:overall, +11:u06:overall, +15:u0B:the/overall, +11:u14:overall, +11:u05:overall, +12:u08:approach, +15:u0A:the/overall, +15:u0B:overall/fog, +11:u13:overall, +11:u04:overall, +12:u07:approach, +15:u09:the/overall, +15:u0A:overall/fog, +13:u0D:overall/0, +11:u12:overall, +6:u21:ov, +7:u22:ove, +8:u23:over, +7:u32:all, +8:u33:rall, +11:u03:overall, +12:u06:approach, +15:u09:overall/fog, +16:u0B:RAN/approach, +15:u0C:the/overall, +11:u11:overall, +12:u14:approach, +11:u02:overall, +12:u05:approach, +9:u08:gives, +16:u0A:RAN/approach, +16:u0B:approach/and, +15:u0C:overall/fog, +11:u10:overall, +12:u13:approach, +11:u01:overall, +12:u04:approach, +9:u07:gives, +16:u09:RAN/approach, +16:u0A:approach/and, +12:u0B:and/also, +14:u0D:approach/0, +12:u12:approach, +8:u33:oach, +11:u00:overall, +12:u03:approach, +9:u06:gives, +16:u09:approach/and, +12:u0A:and/also, +14:u0B:also/gives, +16:u0C:RAN/approach, +12:u11:approach, +9:u14:gives, +12:u02:approach, +9:u05:gives, +9:u08:cases, +12:u09:and/also, +14:u0A:also/gives, +14:u0B:gives/some, +16:u0C:approach/and, +12:u10:approach, +9:u13:gives, +12:u01:approach, +9:u04:gives, +9:u07:cases, +14:u09:also/gives, +14:u0A:gives/some, +12:u0B:some/use, +12:u0C:and/also, +11:u0D:gives/0, +9:u12:gives, +7:u32:ves, +8:u33:ives, +12:u00:approach, +9:u03:gives, +9:u06:cases, +11:u08:Finally, +14:u09:gives/some, +12:u0A:some/use, +13:u0B:use/cases, +14:u0C:also/gives, +9:u11:gives, +9:u02:gives, +9:u05:cases, +11:u07:Finally, +12:u09:some/use, +13:u0A:use/cases, +11:u0B:cases/., +14:u0C:gives/some, +9:u10:gives, +9:u01:gives, +9:u04:cases, +11:u06:Finally, +13:u09:use/cases, +11:u0A:cases/., +13:u0B:./Finally, +12:u0C:some/use, +11:u0D:cases/0, +11:u14:finally, +7:u22:cas, +8:u23:case, +9:u00:gives, +9:u03:cases, +11:u05:Finally, +11:u09:cases/., +13:u0A:./Finally, +14:u0B:Finally/it, +13:u0C:use/cases, +11:u13:finally, +9:u02:cases, +11:u04:Finally, +16:u08:requirements, +13:u09:./Finally, +14:u0A:Finally/it, +15:u0B:it/proposes, +11:u0C:cases/., +13:u0D:Finally/0, +11:u12:finally, +8:u23:Fina, +9:u01:cases, +11:u03:Finally, +16:u07:requirements, +14:u09:Finally/it, +15:u0A:it/proposes, +17:u0B:proposes/some, +13:u0C:./Finally, +11:u11:finally, +9:u00:cases, +11:u02:Finally, +16:u06:requirements, +15:u09:it/proposes, +17:u0A:proposes/some, +21:u0B:some/requirements, +14:u0C:Finally/it, +11:u10:finally, +16:u14:requirements, +11:u01:Finally, +16:u05:requirements, +17:u09:proposes/some, +21:u0A:some/requirements, +19:u0B:requirements/to, +15:u0C:it/proposes, +16:u13:requirements, +11:u00:Finally, +16:u04:requirements, +21:u09:some/requirements, +19:u0A:requirements/to, +9:u0B:to/be, +17:u0C:proposes/some, +18:u0D:requirements/0, +16:u12:requirements, +16:u03:requirements, +19:u09:requirements/to, +9:u0A:to/be, +17:u0B:be/considered, +21:u0C:some/requirements, +16:u11:requirements, +16:u02:requirements, +9:u09:to/be, +17:u0A:be/considered, +17:u0B:considered/in, +19:u0C:requirements/to, +16:u10:requirements, +16:u01:requirements, +17:u09:be/considered, +17:u0A:considered/in, +9:u0C:to/be, +16:u00:requirements, +17:u09:considered/in, +19:u0B:the/development, +17:u0C:be/considered, +19:u0A:the/development, +18:u0B:development/of, +17:u0C:considered/in, +19:u09:the/development, +18:u0A:development/of, +18:u09:development/of, +11:u0B:the/SFC, +19:u0C:the/development, +11:u0A:the/SFC, +20:u0B:SFC/architecture, +18:u0C:development/of, +11:u09:the/SFC, +20:u0A:SFC/architecture, +20:u09:SFC/architecture, +15:u0B:and/related, +11:u0C:the/SFC, +15:u0A:and/related, +21:u0B:related/protocols, +20:u0C:SFC/architecture, +15:u09:and/related, +21:u0A:related/protocols, +15:u0B:protocols/., +13:u0D:related/0, +21:u09:related/protocols, +15:u0A:protocols/., +15:u0C:and/related, +15:u09:protocols/., +21:u0C:related/protocols, +15:u0C:protocols/., +15:u0B:Bernardos/,, +15:u0A:Bernardos/,, +15:u09:Bernardos/,, +15:u0C:Bernardos/,, +17:u0B:Expires/March, +17:u0A:Expires/March, +17:u09:Expires/March, +17:u0C:Expires/March, +13:u0B:Draft/Fog, +13:u0A:Draft/Fog, +13:u09:Draft/Fog, +11:u0B:RAN/SFC, +11:u0A:RAN/SFC, +17:u0B:SFC/September, +13:u0C:Draft/Fog, +11:u09:RAN/SFC, +17:u0A:SFC/September, +18:u0B:September/2019, +17:u09:SFC/September, +18:u0A:September/2019, +11:u0C:RAN/SFC, +18:u09:September/2019, +17:u0C:SFC/September, +18:u0C:September/2019, +10:u08:Carlos, +10:u07:Carlos, +5:u08:J, +10:u06:Carlos, +5:u07:J, +12:u0B:./Carlos, +10:u14:carlos, +10:u05:Carlos, +5:u06:J, +12:u0A:./Carlos, +12:u0B:Carlos/J, +10:u13:carlos, +5:u14:j, +10:u04:Carlos, +5:u05:J, +15:u08:Universidad, +12:u09:./Carlos, +12:u0A:Carlos/J, +7:u0B:J/., +12:u0D:Carlos/0, +10:u12:carlos, +5:u13:j, +7:u22:Car, +8:u23:Carl, +7:u32:los, +8:u33:rlos, +10:u03:Carlos, +5:u04:J, +15:u07:Universidad, +12:u09:Carlos/J, +7:u0A:J/., +12:u0C:./Carlos, +7:u0D:J/0, +10:u11:carlos, +5:u12:j, +5:u21:J, +5:u22:J, +5:u23:J, +5:u31:J, +5:u32:J, +5:u33:J, +10:u02:Carlos, +5:u03:J, +15:u06:Universidad, +7:u08:III, +7:u09:J/., +25:u0B:Bernardos/Universidad, +12:u0C:Carlos/J, +10:u10:carlos, +5:u11:j, +15:u14:universidad, +10:u01:Carlos, +5:u02:J, +15:u05:Universidad, +7:u07:III, +6:u08:de, +25:u0A:Bernardos/Universidad, +22:u0B:Universidad/Carlos, +7:u0C:J/., +5:u10:j, +15:u13:universidad, +10:u00:Carlos, +5:u01:J, +15:u04:Universidad, +7:u06:III, +6:u07:de, +10:u08:Madrid, +25:u09:Bernardos/Universidad, +22:u0A:Universidad/Carlos, +14:u0B:Carlos/III, +17:u0D:Universidad/0, +15:u12:universidad, +7:u14:iii, +7:u32:dad, +8:u33:idad, +5:u00:J, +15:u03:Universidad, +7:u05:III, +6:u06:de, +10:u07:Madrid, +6:u08:Av, +22:u09:Universidad/Carlos, +14:u0A:Carlos/III, +10:u0B:III/de, +25:u0C:Bernardos/Universidad, +15:u11:universidad, +7:u13:iii, +6:u14:de, +15:u02:Universidad, +7:u04:III, +6:u05:de, +10:u06:Madrid, +6:u07:Av, +14:u09:Carlos/III, +10:u0A:III/de, +13:u0B:de/Madrid, +22:u0C:Universidad/Carlos, +9:u0D:III/0, +15:u10:universidad, +7:u12:iii, +6:u13:de, +10:u14:madrid, +6:u21:II, +7:u22:III, +7:u23:III, +6:u31:II, +7:u32:III, +7:u33:III, +15:u01:Universidad, +7:u03:III, +6:u04:de, +10:u05:Madrid, +6:u06:Av, +10:u09:III/de, +13:u0A:de/Madrid, +13:u0B:Madrid/Av, +14:u0C:Carlos/III, +8:u0D:de/0, +7:u11:iii, +6:u12:de, +10:u13:madrid, +6:u14:av, +6:u22:de, +6:u23:de, +6:u32:de, +6:u33:de, +15:u00:Universidad, +7:u02:III, +6:u03:de, +10:u04:Madrid, +6:u05:Av, +13:u09:de/Madrid, +13:u0A:Madrid/Av, +8:u0B:Av/., +10:u0C:III/de, +12:u0D:Madrid/0, +7:u10:iii, +6:u11:de, +10:u12:madrid, +6:u13:av, +7:u22:Mad, +8:u23:Madr, +7:u32:rid, +8:u33:drid, +7:u01:III, +6:u02:de, +10:u03:Madrid, +6:u04:Av, +6:u08:30, +13:u09:Madrid/Av, +8:u0A:Av/., +17:u0B:./Universidad, +13:u0C:de/Madrid, +8:u0D:Av/0, +6:u10:de, +10:u11:madrid, +6:u12:av, +6:u21:Av, +6:u22:Av, +6:u23:Av, +5:u30:v, +6:u31:Av, +6:u32:Av, +6:u33:Av, +7:u00:III, +6:u01:de, +10:u02:Madrid, +6:u03:Av, +6:u07:30, +11:u08:Leganes, +8:u09:Av/., +17:u0A:./Universidad, +17:u0B:Universidad/,, +13:u0C:Madrid/Av, +10:u10:madrid, +6:u11:av, +6:u00:de, +10:u01:Madrid, +6:u02:Av, +6:u06:30, +11:u07:Leganes, +17:u09:./Universidad, +17:u0A:Universidad/,, +8:u0B:,/30, +8:u0C:Av/., +6:u10:av, +6:u14:30, +10:u00:Madrid, +6:u01:Av, +6:u05:30, +11:u06:Leganes, +17:u09:Universidad/,, +8:u0A:,/30, +14:u0B:30/Leganes, +17:u0C:./Universidad, +6:u13:30, +11:u14:leganes, +6:u00:Av, +6:u04:30, +11:u05:Leganes, +9:u08:28911, +8:u09:,/30, +14:u0A:30/Leganes, +13:u0B:Leganes/,, +17:u0C:Universidad/,, +8:u0D:30/0, +6:u12:30, +11:u13:leganes, +6:u21:30, +6:u22:30, +6:u23:30, +6:u32:30, +6:u33:30, +6:u03:30, +11:u04:Leganes, +9:u07:28911, +9:u08:Spain, +14:u09:30/Leganes, +13:u0A:Leganes/,, +12:u0B:,/Madrid, +8:u0C:,/30, +13:u0D:Leganes/0, +6:u11:30, +11:u12:leganes, +8:u33:anes, +6:u02:30, +11:u03:Leganes, +9:u06:28911, +9:u07:Spain, +13:u09:Leganes/,, +12:u0A:,/Madrid, +16:u0B:Madrid/28911, +14:u0C:30/Leganes, +6:u10:30, +11:u11:leganes, +9:u14:28911, +6:u01:30, +11:u02:Leganes, +9:u05:28911, +9:u06:Spain, +12:u09:,/Madrid, +16:u0A:Madrid/28911, +15:u0B:28911/Spain, +13:u0C:Leganes/,, +11:u10:leganes, +9:u13:28911, +9:u14:spain, +6:u00:30, +11:u01:Leganes, +9:u04:28911, +9:u05:Spain, +7:u08:+34, +16:u09:Madrid/28911, +15:u0A:28911/Spain, +15:u0B:Spain/Phone, +12:u0C:,/Madrid, +11:u0D:28911/0, +9:u12:28911, +9:u13:spain, +6:u21:28, +7:u22:289, +8:u23:2891, +7:u32:911, +8:u33:8911, +11:u00:Leganes, +9:u03:28911, +9:u04:Spain, +7:u07:+34, +9:u08:91624, +15:u09:28911/Spain, +15:u0A:Spain/Phone, +16:u0C:Madrid/28911, +11:u0D:Spain/0, +9:u11:28911, +9:u12:spain, +6:u21:Sp, +7:u22:Spa, +8:u23:Spai, +8:u33:pain, +9:u02:28911, +9:u03:Spain, +7:u06:+34, +9:u07:91624, +8:u08:6236, +15:u09:Spain/Phone, +9:u0B::/+34, +15:u0C:28911/Spain, +9:u10:28911, +9:u11:spain, +7:u14:+34, +9:u01:28911, +9:u02:Spain, +7:u05:+34, +9:u06:91624, +8:u07:6236, +9:u0A::/+34, +13:u0B:+34/91624, +15:u0C:Spain/Phone, +9:u10:spain, +7:u13:+34, +9:u14:91624, +9:u00:28911, +9:u01:Spain, +7:u04:+34, +9:u05:91624, +8:u06:6236, +9:u09::/+34, +13:u0A:+34/91624, +14:u0B:91624/6236, +9:u0D:+34/0, +7:u12:+34, +9:u13:91624, +8:u14:6236, +6:u21:+3, +7:u22:+34, +7:u23:+34, +6:u31:34, +7:u32:+34, +7:u33:+34, +9:u00:Spain, +7:u03:+34, +9:u04:91624, +8:u05:6236, +11:u08:cjbc@it, +13:u09:+34/91624, +14:u0A:91624/6236, +14:u0B:6236/Email, +9:u0C::/+34, +11:u0D:91624/0, +7:u11:+34, +9:u12:91624, +8:u13:6236, +6:u21:91, +7:u22:916, +8:u23:9162, +7:u32:624, +8:u33:1624, +7:u02:+34, +9:u03:91624, +8:u04:6236, +11:u07:cjbc@it, +14:u09:91624/6236, +14:u0A:6236/Email, +13:u0C:+34/91624, +10:u0D:6236/0, +7:u10:+34, +9:u11:91624, +8:u12:6236, +6:u21:62, +7:u22:623, +8:u23:6236, +6:u31:36, +7:u32:236, +8:u33:6236, +7:u01:+34, +9:u02:91624, +8:u03:6236, +11:u06:cjbc@it, +8:u08:uc3m, +14:u09:6236/Email, +13:u0B::/cjbc@it, +14:u0C:91624/6236, +9:u10:91624, +8:u11:6236, +11:u14:cjbc@it, +7:u00:+34, +9:u01:91624, +8:u02:6236, +11:u05:cjbc@it, +8:u07:uc3m, +13:u0A::/cjbc@it, +13:u0B:cjbc@it/., +14:u0C:6236/Email, +8:u10:6236, +11:u13:cjbc@it, +9:u00:91624, +8:u01:6236, +11:u04:cjbc@it, +8:u06:uc3m, +6:u08:es, +13:u09::/cjbc@it, +13:u0A:cjbc@it/., +10:u0B:./uc3m, +13:u0D:cjbc@it/0, +11:u12:cjbc@it, +6:u21:cj, +7:u22:cjb, +8:u23:cjbc, +7:u32:@it, +8:u33:c@it, +8:u00:6236, +11:u03:cjbc@it, +8:u05:uc3m, +6:u07:es, +7:u08:URI, +13:u09:cjbc@it/., +10:u0A:./uc3m, +10:u0B:uc3m/., +13:u0C::/cjbc@it, +11:u11:cjbc@it, +11:u02:cjbc@it, +8:u04:uc3m, +6:u06:es, +7:u07:URI, +10:u09:./uc3m, +10:u0A:uc3m/., +8:u0B:./es, +13:u0C:cjbc@it/., +10:u0D:uc3m/0, +11:u10:cjbc@it, +6:u14:es, +6:u21:uc, +7:u22:uc3, +8:u23:uc3m, +6:u31:3m, +7:u32:c3m, +8:u33:uc3m, +11:u01:cjbc@it, +8:u03:uc3m, +6:u05:es, +7:u06:URI, +10:u09:uc3m/., +8:u0A:./es, +10:u0B:es/URI, +10:u0C:./uc3m, +6:u13:es, +7:u14:uri, +11:u00:cjbc@it, +8:u02:uc3m, +6:u04:es, +7:u05:URI, +8:u09:./es, +10:u0A:es/URI, +9:u0B:URI/:, +10:u0C:uc3m/., +8:u0D:es/0, +6:u12:es, +7:u13:uri, +6:u22:es, +6:u23:es, +6:u32:es, +6:u33:es, +8:u01:uc3m, +6:u03:es, +7:u04:URI, +10:u09:es/URI, +9:u0A:URI/:, +10:u0B::/http, +8:u0C:./es, +9:u0D:URI/0, +6:u11:es, +7:u12:uri, +6:u21:UR, +7:u22:URI, +7:u23:URI, +6:u31:RI, +7:u32:URI, +7:u33:URI, +8:u00:uc3m, +6:u02:es, +7:u03:URI, +9:u09:URI/:, +10:u0A::/http, +10:u0C:es/URI, +6:u10:es, +7:u11:uri, +6:u01:es, +7:u02:URI, +10:u09::/http, +9:u0C:URI/:, +7:u10:uri, +6:u00:es, +7:u01:URI, +10:u0C::/http, +7:u00:URI, +8:u0B:./it, +8:u0A:./it, +8:u0B:it/., +8:u09:./it, +8:u0A:it/., +8:u09:it/., +8:u0C:./it, +8:u08:cjbc, +8:u0C:it/., +8:u07:cjbc, +8:u0B:es//, +8:u06:cjbc, +9:u08:Akbar, +8:u0A:es//, +10:u0B://cjbc, +8:u14:cjbc, +8:u05:cjbc, +9:u07:Akbar, +8:u09:es//, +10:u0A://cjbc, +10:u0B:cjbc//, +8:u13:cjbc, +8:u04:cjbc, +9:u06:Akbar, +10:u09://cjbc, +10:u0A:cjbc//, +11:u0B://Akbar, +8:u0C:es//, +10:u0D:cjbc/0, +8:u12:cjbc, +9:u14:akbar, +6:u31:bc, +7:u32:jbc, +8:u33:cjbc, +8:u03:cjbc, +9:u05:Akbar, +18:u08:Communications, +10:u09:cjbc//, +11:u0A://Akbar, +16:u0B:Akbar/Rahman, +10:u0C://cjbc, +8:u11:cjbc, +9:u13:akbar, +8:u02:cjbc, +9:u04:Akbar, +18:u07:Communications, +11:u09://Akbar, +16:u0A:Akbar/Rahman, +23:u0B:Rahman/InterDigital, +10:u0C:cjbc//, +11:u0D:Akbar/0, +8:u10:cjbc, +9:u12:akbar, +6:u21:Ak, +7:u22:Akb, +8:u23:Akba, +7:u32:bar, +8:u33:kbar, +8:u01:cjbc, +9:u03:Akbar, +18:u06:Communications, +7:u08:LLC, +16:u09:Akbar/Rahman, +23:u0A:Rahman/InterDigital, +31:u0B:InterDigital/Communications, +11:u0C://Akbar, +9:u11:akbar, +18:u14:communications, +8:u00:cjbc, +9:u02:Akbar, +18:u05:Communications, +7:u07:LLC, +8:u08:1000, +23:u09:Rahman/InterDigital, +31:u0A:InterDigital/Communications, +20:u0B:Communications/,, +16:u0C:Akbar/Rahman, +9:u10:akbar, +18:u13:communications, +9:u01:Akbar, +18:u04:Communications, +7:u06:LLC, +8:u07:1000, +14:u08:Sherbrooke, +31:u09:InterDigital/Communications, +20:u0A:Communications/,, +9:u0B:,/LLC, +23:u0C:Rahman/InterDigital, +20:u0D:Communications/0, +18:u12:communications, +7:u14:llc, +9:u00:Akbar, +18:u03:Communications, +7:u05:LLC, +8:u06:1000, +14:u07:Sherbrooke, +10:u08:Street, +20:u09:Communications/,, +9:u0A:,/LLC, +12:u0B:LLC/1000, +31:u0C:InterDigital/Communications, +18:u11:communications, +7:u13:llc, +8:u14:1000, +18:u02:Communications, +7:u04:LLC, +8:u05:1000, +14:u06:Sherbrooke, +10:u07:Street, +9:u09:,/LLC, +12:u0A:LLC/1000, +19:u0B:1000/Sherbrooke, +20:u0C:Communications/,, +9:u0D:LLC/0, +18:u10:communications, +7:u12:llc, +8:u13:1000, +14:u14:sherbrooke, +6:u21:LL, +7:u22:LLC, +7:u23:LLC, +6:u31:LC, +7:u32:LLC, +7:u33:LLC, +18:u01:Communications, +7:u03:LLC, +8:u04:1000, +14:u05:Sherbrooke, +10:u06:Street, +12:u09:LLC/1000, +19:u0A:1000/Sherbrooke, +21:u0B:Sherbrooke/Street, +9:u0C:,/LLC, +10:u0D:1000/0, +7:u11:llc, +8:u12:1000, +14:u13:sherbrooke, +10:u14:street, +7:u32:000, +8:u33:1000, +18:u00:Communications, +7:u02:LLC, +8:u03:1000, +14:u04:Sherbrooke, +10:u05:Street, +8:u08:10th, +19:u09:1000/Sherbrooke, +21:u0A:Sherbrooke/Street, +15:u0B:Street/West, +12:u0C:LLC/1000, +16:u0D:Sherbrooke/0, +7:u10:llc, +8:u11:1000, +14:u12:sherbrooke, +10:u13:street, +7:u22:She, +8:u23:Sher, +6:u31:ke, +7:u32:oke, +8:u33:ooke, +7:u01:LLC, +8:u02:1000, +14:u03:Sherbrooke, +10:u04:Street, +8:u07:10th, +9:u08:floor, +21:u09:Sherbrooke/Street, +15:u0A:Street/West, +10:u0B:West/,, +19:u0C:1000/Sherbrooke, +12:u0D:Street/0, +8:u10:1000, +14:u11:sherbrooke, +10:u12:street, +7:u32:eet, +8:u33:reet, +7:u00:LLC, +8:u01:1000, +14:u02:Sherbrooke, +10:u03:Street, +8:u06:10th, +9:u07:floor, +12:u08:Montreal, +15:u09:Street/West, +10:u0A:West/,, +10:u0B:,/10th, +21:u0C:Sherbrooke/Street, +14:u10:sherbrooke, +10:u11:street, +8:u14:10th, +8:u00:1000, +14:u01:Sherbrooke, +10:u02:Street, +8:u05:10th, +9:u06:floor, +12:u07:Montreal, +10:u09:West/,, +10:u0A:,/10th, +14:u0B:10th/floor, +15:u0C:Street/West, +10:u10:street, +8:u13:10th, +14:u00:Sherbrooke, +10:u01:Street, +8:u04:10th, +9:u05:floor, +12:u06:Montreal, +10:u08:Quebec, +10:u09:,/10th, +14:u0A:10th/floor, +18:u0B:floor/Montreal, +10:u0C:West/,, +10:u0D:10th/0, +8:u12:10th, +12:u14:montreal, +7:u22:10t, +8:u23:10th, +7:u32:0th, +8:u33:10th, +10:u00:Street, +8:u03:10th, +9:u04:floor, +12:u05:Montreal, +10:u07:Quebec, +7:u08:H3A, +14:u09:10th/floor, +18:u0A:floor/Montreal, +14:u0B:Montreal/,, +10:u0C:,/10th, +11:u0D:floor/0, +8:u11:10th, +12:u13:montreal, +8:u23:floo, +8:u02:10th, +9:u03:floor, +12:u04:Montreal, +10:u06:Quebec, +7:u07:H3A, +7:u08:3G4, +18:u09:floor/Montreal, +14:u0A:Montreal/,, +12:u0B:,/Quebec, +14:u0C:10th/floor, +14:u0D:Montreal/0, +8:u10:10th, +12:u12:montreal, +10:u14:quebec, +7:u22:Mon, +8:u23:Mont, +8:u33:real, +8:u01:10th, +9:u02:floor, +12:u03:Montreal, +10:u05:Quebec, +7:u06:H3A, +7:u07:3G4, +10:u08:Canada, +14:u09:Montreal/,, +12:u0A:,/Quebec, +14:u0B:Quebec/H3A, +18:u0C:floor/Montreal, +12:u11:montreal, +10:u13:quebec, +7:u14:h3a, +8:u00:10th, +9:u01:floor, +12:u02:Montreal, +10:u04:Quebec, +7:u05:H3A, +7:u06:3G4, +10:u07:Canada, +12:u09:,/Quebec, +14:u0A:Quebec/H3A, +11:u0B:H3A/3G4, +14:u0C:Montreal/,, +12:u0D:Quebec/0, +12:u10:montreal, +10:u12:quebec, +7:u13:h3a, +7:u14:3g4, +5:u20:Q, +6:u21:Qu, +7:u22:Que, +8:u23:Queb, +6:u31:ec, +7:u32:bec, +8:u33:ebec, +9:u00:floor, +12:u01:Montreal, +10:u03:Quebec, +7:u04:H3A, +7:u05:3G4, +10:u06:Canada, +14:u09:Quebec/H3A, +11:u0A:H3A/3G4, +14:u0B:3G4/Canada, +12:u0C:,/Quebec, +9:u0D:H3A/0, +10:u11:quebec, +7:u12:h3a, +7:u13:3g4, +10:u14:canada, +6:u21:H3, +7:u22:H3A, +7:u23:H3A, +6:u31:3A, +7:u32:H3A, +7:u33:H3A, +12:u00:Montreal, +10:u02:Quebec, +7:u03:H3A, +7:u04:3G4, +10:u05:Canada, +11:u09:H3A/3G4, +14:u0A:3G4/Canada, +16:u0B:Canada/Email, +14:u0C:Quebec/H3A, +9:u0D:3G4/0, +10:u10:quebec, +7:u11:h3a, +7:u12:3g4, +10:u13:canada, +6:u21:3G, +7:u22:3G4, +7:u23:3G4, +6:u31:G4, +7:u32:3G4, +7:u33:3G4, +10:u01:Quebec, +7:u02:H3A, +7:u03:3G4, +10:u04:Canada, +14:u09:3G4/Canada, +16:u0A:Canada/Email, +11:u0C:H3A/3G4, +12:u0D:Canada/0, +7:u10:h3a, +7:u11:3g4, +10:u12:canada, +7:u22:Can, +8:u23:Cana, +6:u31:da, +7:u32:ada, +8:u33:nada, +10:u00:Quebec, +7:u01:H3A, +7:u02:3G4, +10:u03:Canada, +23:u08:Rahman@InterDigital, +16:u09:Canada/Email, +11:u0B::/Akbar, +14:u0C:3G4/Canada, +7:u10:3g4, +10:u11:canada, +7:u00:H3A, +7:u01:3G4, +10:u02:Canada, +23:u07:Rahman@InterDigital, +11:u0A::/Akbar, +11:u0B:Akbar/., +16:u0C:Canada/Email, +10:u10:canada, +7:u00:3G4, +10:u01:Canada, +23:u06:Rahman@InterDigital, +11:u09::/Akbar, +11:u0A:Akbar/., +25:u0B:./Rahman@InterDigital, +23:u14:rahman@interdigital, +10:u00:Canada, +23:u05:Rahman@InterDigital, +11:u09:Akbar/., +25:u0A:./Rahman@InterDigital, +25:u0B:Rahman@InterDigital/., +11:u0C::/Akbar, +23:u13:rahman@interdigital, +23:u04:Rahman@InterDigital, +25:u09:./Rahman@InterDigital, +25:u0A:Rahman@InterDigital/., +11:u0C:Akbar/., +25:u0D:Rahman@InterDigital/0, +23:u12:rahman@interdigital, +23:u03:Rahman@InterDigital, +25:u09:Rahman@InterDigital/., +11:u0B:com/URI, +25:u0C:./Rahman@InterDigital, +23:u11:rahman@interdigital, +23:u02:Rahman@InterDigital, +11:u0A:com/URI, +25:u0C:Rahman@InterDigital/., +23:u10:rahman@interdigital, +23:u01:Rahman@InterDigital, +11:u09:com/URI, +23:u00:Rahman@InterDigital, +11:u0C:com/URI, +18:u0B:./InterDigital, +18:u0A:./InterDigital, +18:u0B:InterDigital/., +9:u08:Alain, +18:u09:./InterDigital, +18:u0A:InterDigital/., +9:u07:Alain, +18:u09:InterDigital/., +18:u0C:./InterDigital, +9:u06:Alain, +11:u0B://Alain, +18:u0C:InterDigital/., +9:u14:alain, +9:u05:Alain, +10:u08:Europe, +11:u0A://Alain, +16:u0B:Alain/Mourad, +9:u13:alain, +9:u04:Alain, +10:u07:Europe, +11:u09://Alain, +16:u0A:Alain/Mourad, +11:u0D:Alain/0, +9:u12:alain, +7:u22:Ala, +8:u23:Alai, +8:u33:lain, +9:u03:Alain, +10:u06:Europe, +16:u09:Alain/Mourad, +23:u0B:InterDigital/Europe, +11:u0C://Alain, +9:u11:alain, +10:u14:europe, +9:u02:Alain, +10:u05:Europe, +23:u0A:InterDigital/Europe, +16:u0B:Europe/Email, +16:u0C:Alain/Mourad, +9:u10:alain, +10:u13:europe, +9:u01:Alain, +10:u04:Europe, +23:u09:InterDigital/Europe, +16:u0A:Europe/Email, +12:u0D:Europe/0, +10:u12:europe, +6:u21:Eu, +7:u22:Eur, +8:u23:Euro, +6:u31:pe, +7:u32:ope, +8:u33:rope, +9:u00:Alain, +10:u03:Europe, +23:u08:Mourad@InterDigital, +16:u09:Europe/Email, +11:u0B::/Alain, +23:u0C:InterDigital/Europe, +10:u11:europe, +10:u02:Europe, +23:u07:Mourad@InterDigital, +11:u0A::/Alain, +11:u0B:Alain/., +16:u0C:Europe/Email, +10:u10:europe, +10:u01:Europe, +23:u06:Mourad@InterDigital, +11:u09::/Alain, +11:u0A:Alain/., +25:u0B:./Mourad@InterDigital, +23:u14:mourad@interdigital, +10:u00:Europe, +23:u05:Mourad@InterDigital, +11:u09:Alain/., +25:u0A:./Mourad@InterDigital, +25:u0B:Mourad@InterDigital/., +11:u0C::/Alain, +23:u13:mourad@interdigital, +23:u04:Mourad@InterDigital, +25:u09:./Mourad@InterDigital, +25:u0A:Mourad@InterDigital/., +11:u0C:Alain/., +25:u0D:Mourad@InterDigital/0, +23:u12:mourad@interdigital, +23:u03:Mourad@InterDigital, +25:u09:Mourad@InterDigital/., +25:u0C:./Mourad@InterDigital, +23:u11:mourad@interdigital, +23:u02:Mourad@InterDigital, +25:u0C:Mourad@InterDigital/., +23:u10:mourad@interdigital, +23:u01:Mourad@InterDigital, +23:u00:Mourad@InterDigital, +10:u0B://_x+1, +10:u0A://_x+1, +9:u08:Arkko, +7:u0B:)/J, +9:u07:Arkko, +7:u0A:)/J, +9:u06:Arkko, +7:u09:)/J, +11:u0B:./Arkko, +9:u14:arkko, +9:u05:Arkko, +11:u0A:./Arkko, +17:u0B:Arkko/Request, +7:u0C:)/J, +9:u13:arkko, +9:u04:Arkko, +11:u09:./Arkko, +17:u0A:Arkko/Request, +11:u0D:Arkko/0, +9:u12:arkko, +6:u21:Ar, +7:u22:Ark, +8:u23:Arkk, +7:u32:kko, +8:u33:rkko, +9:u03:Arkko, +8:u08:8602, +17:u09:Arkko/Request, +11:u0C:./Arkko, +9:u11:arkko, +9:u02:Arkko, +8:u07:8602, +17:u0C:Arkko/Request, +9:u10:arkko, +9:u01:Arkko, +8:u06:8602, +10:u0B::/8602, +8:u14:8602, +9:u00:Arkko, +8:u05:8602, +10:u0A::/8602, +17:u0B:8602/Ericsson, +8:u13:8602, +8:u04:8602, +8:u08:3219, +10:u09::/8602, +17:u0A:8602/Ericsson, +20:u0B:Ericsson/Updates, +10:u0D:8602/0, +8:u12:8602, +8:u23:8602, +7:u32:602, +8:u33:8602, +8:u03:8602, +8:u07:3219, +17:u09:8602/Ericsson, +20:u0A:Ericsson/Updates, +10:u0C::/8602, +8:u11:8602, +8:u02:8602, +8:u06:3219, +20:u09:Ericsson/Updates, +10:u0B::/3219, +17:u0C:8602/Ericsson, +8:u10:8602, +8:u14:3219, +8:u01:8602, +8:u05:3219, +10:u08:Hardie, +10:u0A::/3219, +10:u0B:3219/T, +20:u0C:Ericsson/Updates, +8:u13:3219, +8:u00:8602, +8:u04:3219, +10:u07:Hardie, +10:u09::/3219, +10:u0A:3219/T, +10:u0D:3219/0, +8:u12:3219, +7:u22:321, +8:u23:3219, +7:u32:219, +8:u33:3219, +8:u03:3219, +10:u06:Hardie, +10:u09:3219/T, +12:u0B:./Hardie, +10:u0C::/3219, +8:u11:3219, +10:u14:hardie, +8:u02:3219, +10:u05:Hardie, +12:u0A:./Hardie, +19:u0B:Hardie/Category, +10:u0C:3219/T, +8:u10:3219, +10:u13:hardie, +8:u01:3219, +10:u04:Hardie, +12:u09:./Hardie, +19:u0A:Hardie/Category, +12:u0D:Hardie/0, +10:u12:hardie, +6:u21:Ha, +7:u22:Har, +8:u23:Hard, +7:u32:die, +8:u33:rdie, +8:u00:3219, +10:u03:Hardie, +19:u09:Hardie/Category, +12:u0C:./Hardie, +10:u11:hardie, +10:u02:Hardie, +19:u0C:Hardie/Category, +10:u10:hardie, +10:u01:Hardie, +14:u0B:Track/July, +10:u00:Hardie, +14:u0A:Track/July, +14:u09:Track/July, +13:u0B:2019/ISSN, +13:u0A:2019/ISSN, +14:u0C:Track/July, +13:u09:2019/ISSN, +10:u08:Update, +13:u0C:2019/ISSN, +10:u07:Update, +10:u06:Update, +15:u0B:1721/Update, +10:u14:update, +10:u05:Update, +13:u08:Telephony, +15:u0A:1721/Update, +13:u0B:Update/to, +10:u13:update, +10:u04:Update, +13:u07:Telephony, +15:u09:1721/Update, +13:u0A:Update/to, +12:u0D:Update/0, +10:u12:update, +10:u03:Update, +13:u06:Telephony, +8:u08:over, +13:u09:Update/to, +17:u0B:the/Telephony, +15:u0C:1721/Update, +10:u11:update, +13:u14:telephony, +10:u02:Update, +13:u05:Telephony, +8:u07:over, +6:u08:IP, +17:u0A:the/Telephony, +21:u0B:Telephony/Routing, +13:u0C:Update/to, +10:u10:update, +13:u13:telephony, +10:u01:Update, +13:u04:Telephony, +8:u06:over, +6:u07:IP, +17:u09:the/Telephony, +21:u0A:Telephony/Routing, +16:u0B:Routing/over, +15:u0D:Telephony/0, +13:u12:telephony, +8:u14:over, +7:u32:ony, +8:u33:hony, +10:u00:Update, +13:u03:Telephony, +8:u05:over, +6:u06:IP, +8:u08:TRIP, +21:u09:Telephony/Routing, +16:u0A:Routing/over, +11:u0B:over/IP, +17:u0C:the/Telephony, +13:u11:telephony, +8:u13:over, +6:u14:ip, +13:u02:Telephony, +8:u04:over, +6:u05:IP, +8:u07:TRIP, +16:u09:Routing/over, +11:u0A:over/IP, +8:u0B:IP/(, +21:u0C:Telephony/Routing, +10:u0D:over/0, +13:u10:telephony, +8:u12:over, +6:u13:ip, +8:u33:over, +13:u01:Telephony, +8:u03:over, +6:u04:IP, +8:u06:TRIP, +8:u08:IANA, +11:u09:over/IP, +8:u0A:IP/(, +10:u0B:(/TRIP, +16:u0C:Routing/over, +8:u0D:IP/0, +8:u11:over, +6:u12:ip, +8:u14:trip, +6:u21:IP, +6:u22:IP, +6:u23:IP, +6:u31:IP, +6:u32:IP, +6:u33:IP, +13:u00:Telephony, +8:u02:over, +6:u03:IP, +8:u05:TRIP, +8:u07:IANA, +12:u08:Registry, +8:u09:IP/(, +10:u0A:(/TRIP, +10:u0B:TRIP/), +11:u0C:over/IP, +8:u10:over, +6:u11:ip, +8:u13:trip, +8:u01:over, +6:u02:IP, +8:u04:TRIP, +8:u06:IANA, +12:u07:Registry, +9:u08:Rules, +10:u09:(/TRIP, +10:u0A:TRIP/), +10:u0B:)/IANA, +8:u0C:IP/(, +10:u0D:TRIP/0, +6:u10:ip, +8:u12:trip, +8:u14:iana, +6:u21:TR, +7:u22:TRI, +8:u23:TRIP, +7:u32:RIP, +8:u33:TRIP, +8:u00:over, +6:u01:IP, +8:u03:TRIP, +8:u05:IANA, +12:u06:Registry, +9:u07:Rules, +13:u08:regarding, +10:u09:TRIP/), +10:u0A:)/IANA, +17:u0B:IANA/Registry, +10:u0C:(/TRIP, +8:u11:trip, +8:u13:iana, +12:u14:registry, +6:u00:IP, +8:u02:TRIP, +8:u04:IANA, +12:u05:Registry, +9:u06:Rules, +13:u07:regarding, +10:u08:Postal, +10:u09:)/IANA, +17:u0A:IANA/Registry, +18:u0B:Registry/Rules, +10:u0C:TRIP/), +10:u0D:IANA/0, +8:u10:trip, +8:u12:iana, +12:u13:registry, +9:u14:rules, +6:u21:IA, +7:u22:IAN, +8:u23:IANA, +6:u31:NA, +7:u32:ANA, +8:u33:IANA, +8:u01:TRIP, +8:u03:IANA, +12:u04:Registry, +9:u05:Rules, +13:u06:regarding, +10:u07:Postal, +13:u08:Addresses, +17:u09:IANA/Registry, +18:u0A:Registry/Rules, +19:u0B:Rules/regarding, +10:u0C:)/IANA, +14:u0D:Registry/0, +8:u11:iana, +12:u12:registry, +9:u13:rules, +13:u14:regarding, +7:u22:Reg, +8:u23:Regi, +8:u00:TRIP, +8:u02:IANA, +12:u03:Registry, +9:u04:Rules, +13:u05:regarding, +10:u06:Postal, +13:u07:Addresses, +18:u09:Registry/Rules, +19:u0A:Rules/regarding, +20:u0B:regarding/Postal, +17:u0C:IANA/Registry, +11:u0D:Rules/0, +8:u10:iana, +12:u11:registry, +9:u12:rules, +13:u13:regarding, +10:u14:postal, +6:u21:Ru, +7:u22:Rul, +8:u23:Rule, +7:u32:les, +8:u33:ules, +8:u01:IANA, +12:u02:Registry, +9:u03:Rules, +13:u04:regarding, +10:u05:Postal, +13:u06:Addresses, +19:u09:Rules/regarding, +20:u0A:regarding/Postal, +20:u0B:Postal/Addresses, +18:u0C:Registry/Rules, +15:u0D:regarding/0, +12:u10:registry, +9:u11:rules, +13:u12:regarding, +10:u13:postal, +13:u14:addresses, +7:u22:reg, +8:u23:rega, +8:u00:IANA, +12:u01:Registry, +9:u02:Rules, +13:u03:regarding, +10:u04:Postal, +13:u05:Addresses, +8:u08:memo, +20:u09:regarding/Postal, +20:u0A:Postal/Addresses, +22:u0B:Addresses/Abstract, +19:u0C:Rules/regarding, +12:u0D:Postal/0, +9:u10:rules, +13:u11:regarding, +10:u12:postal, +13:u13:addresses, +6:u21:Po, +7:u22:Pos, +8:u23:Post, +8:u33:stal, +12:u00:Registry, +9:u01:Rules, +13:u02:regarding, +10:u03:Postal, +13:u04:Addresses, +8:u07:memo, +20:u09:Postal/Addresses, +22:u0A:Addresses/Abstract, +20:u0C:regarding/Postal, +15:u0D:Addresses/0, +13:u10:regarding, +10:u11:postal, +13:u12:addresses, +7:u22:Add, +8:u23:Addr, +8:u33:sses, +9:u00:Rules, +13:u01:regarding, +10:u02:Postal, +13:u03:Addresses, +8:u06:memo, +22:u09:Addresses/Abstract, +13:u0B:This/memo, +20:u0C:Postal/Addresses, +10:u10:postal, +13:u11:addresses, +13:u00:regarding, +10:u01:Postal, +13:u02:Addresses, +8:u05:memo, +13:u0A:This/memo, +16:u0B:memo/updates, +22:u0C:Addresses/Abstract, +13:u10:addresses, +10:u00:Postal, +13:u01:Addresses, +8:u04:memo, +12:u08:registry, +13:u09:This/memo, +16:u0A:memo/updates, +15:u0B:updates/the, +10:u0D:memo/0, +7:u22:mem, +8:u23:memo, +8:u33:memo, +13:u00:Addresses, +8:u03:memo, +12:u07:registry, +9:u08:rules, +16:u09:memo/updates, +15:u0A:updates/the, +12:u0B:the/IANA, +13:u0C:This/memo, +8:u02:memo, +12:u06:registry, +9:u07:rules, +15:u09:updates/the, +12:u0A:the/IANA, +17:u0B:IANA/registry, +16:u0C:memo/updates, +8:u01:memo, +12:u05:registry, +9:u06:rules, +12:u09:the/IANA, +17:u0A:IANA/registry, +18:u0B:registry/rules, +15:u0C:updates/the, +8:u00:memo, +12:u04:registry, +9:u05:rules, +17:u09:IANA/registry, +18:u0A:registry/rules, +13:u0B:rules/for, +12:u0C:the/IANA, +14:u0D:registry/0, +8:u23:regi, +12:u03:registry, +9:u04:rules, +18:u09:registry/rules, +13:u0A:rules/for, +17:u0C:IANA/registry, +11:u0D:rules/0, +7:u22:rul, +8:u23:rule, +12:u02:registry, +9:u03:rules, +13:u09:rules/for, +18:u0C:registry/rules, +12:u01:registry, +9:u02:rules, +13:u0C:rules/for, +12:u00:registry, +9:u01:rules, +9:u00:rules, +14:u0B:)/protocol, +14:u0A:)/protocol, +14:u0B:protocol/,, +10:u08:longer, +14:u09:)/protocol, +14:u0A:protocol/,, +8:u0B:,/by, +10:u07:longer, +13:u08:requiring, +14:u09:protocol/,, +8:u0A:,/by, +9:u0B:by/no, +14:u0C:)/protocol, +10:u06:longer, +13:u07:requiring, +8:u09:,/by, +9:u0A:by/no, +13:u0B:no/longer, +14:u0C:protocol/,, +10:u14:longer, +10:u05:longer, +13:u06:requiring, +10:u08:postal, +9:u09:by/no, +13:u0A:no/longer, +20:u0B:longer/requiring, +8:u0C:,/by, +10:u13:longer, +13:u14:requiring, +10:u04:longer, +13:u05:requiring, +10:u07:postal, +13:u08:addresses, +13:u09:no/longer, +20:u0A:longer/requiring, +18:u0B:requiring/that, +9:u0C:by/no, +12:u0D:longer/0, +10:u12:longer, +13:u13:requiring, +7:u22:lon, +8:u23:long, +7:u32:ger, +8:u33:nger, +10:u03:longer, +13:u04:requiring, +10:u06:postal, +13:u07:addresses, +20:u09:longer/requiring, +18:u0A:requiring/that, +15:u0B:that/postal, +13:u0C:no/longer, +15:u0D:requiring/0, +10:u11:longer, +13:u12:requiring, +10:u02:longer, +13:u03:requiring, +10:u05:postal, +13:u06:addresses, +12:u08:included, +18:u09:requiring/that, +15:u0A:that/postal, +20:u0B:postal/addresses, +20:u0C:longer/requiring, +10:u10:longer, +13:u11:requiring, +10:u01:longer, +13:u02:requiring, +10:u04:postal, +13:u05:addresses, +12:u07:included, +15:u09:that/postal, +20:u0A:postal/addresses, +16:u0B:addresses/be, +18:u0C:requiring/that, +12:u0D:postal/0, +13:u10:requiring, +6:u21:po, +7:u22:pos, +8:u23:post, +10:u00:longer, +13:u01:requiring, +10:u03:postal, +13:u04:addresses, +12:u06:included, +11:u08:contact, +20:u09:postal/addresses, +16:u0A:addresses/be, +15:u0B:be/included, +15:u0C:that/postal, +15:u0D:addresses/0, +12:u14:included, +13:u00:requiring, +10:u02:postal, +13:u03:addresses, +12:u05:included, +11:u07:contact, +16:u09:addresses/be, +15:u0A:be/included, +15:u0B:included/in, +20:u0C:postal/addresses, +12:u13:included, +10:u01:postal, +13:u02:addresses, +12:u04:included, +11:u06:contact, +15:u09:be/included, +15:u0A:included/in, +14:u0B:in/contact, +16:u0C:addresses/be, +14:u0D:included/0, +12:u12:included, +11:u14:contact, +8:u33:uded, +10:u00:postal, +13:u01:addresses, +12:u03:included, +11:u05:contact, +15:u09:included/in, +14:u0A:in/contact, +23:u0B:contact/information, +15:u0C:be/included, +12:u11:included, +11:u13:contact, +13:u00:addresses, +12:u02:included, +11:u04:contact, +14:u09:in/contact, +23:u0A:contact/information, +17:u0B:information/., +15:u0C:included/in, +13:u0D:contact/0, +12:u10:included, +11:u12:contact, +8:u33:tact, +12:u01:included, +11:u03:contact, +23:u09:contact/information, +17:u0A:information/., +14:u0C:in/contact, +11:u11:contact, +12:u00:included, +11:u02:contact, +17:u09:information/., +23:u0C:contact/information, +11:u10:contact, +11:u01:contact, +17:u0C:information/., +11:u00:contact, +15:u0B:updates/RFC, +15:u0A:updates/RFC, +12:u0B:RFC/3219, +15:u09:updates/RFC, +12:u0A:RFC/3219, +10:u0B:3219/., +12:u09:RFC/3219, +10:u0A:3219/., +15:u0C:updates/RFC, +10:u09:3219/., +12:u0C:RFC/3219, +10:u0C:3219/., +11:u0B:This/is, +11:u0A:This/is, +9:u0B:is/an, +11:u09:This/is, +9:u0A:is/an, +9:u09:is/an, +11:u0C:This/is, +9:u0C:is/an, +18:u0B:Track/document, +18:u0A:Track/document, +18:u09:Track/document, +18:u0C:Track/document, +17:u0B:It/represents, +17:u0A:It/represents, +17:u09:It/represents, +17:u0C:It/represents, +18:u0B:IETF/community, +18:u0A:IETF/community, +18:u09:IETF/community, +10:u08:public, +10:u0B:It/has, +18:u0C:IETF/community, +10:u07:public, +10:u0A:It/has, +16:u0B:has/received, +10:u06:public, +10:u09:It/has, +16:u0A:has/received, +19:u0B:received/public, +10:u14:public, +10:u05:public, +16:u09:has/received, +19:u0A:received/public, +17:u0B:public/review, +10:u0C:It/has, +10:u13:public, +10:u04:public, +8:u08:been, +19:u09:received/public, +17:u0A:public/review, +14:u0B:review/and, +16:u0C:has/received, +12:u0D:public/0, +10:u12:public, +7:u32:lic, +8:u33:blic, +10:u03:public, +8:u07:been, +17:u09:public/review, +14:u0A:review/and, +19:u0C:received/public, +10:u11:public, +10:u02:public, +8:u06:been, +14:u09:review/and, +12:u0B:has/been, +17:u0C:public/review, +10:u10:public, +8:u14:been, +10:u01:public, +8:u05:been, +12:u0A:has/been, +17:u0B:been/approved, +14:u0C:review/and, +8:u13:been, +10:u00:public, +8:u04:been, +12:u09:has/been, +17:u0A:been/approved, +10:u0D:been/0, +8:u12:been, +7:u22:bee, +8:u23:been, +8:u33:been, +8:u03:been, +17:u09:been/approved, +12:u0C:has/been, +8:u11:been, +8:u02:been, +17:u0C:been/approved, +8:u10:been, +8:u01:been, +8:u00:been, +12:u08:Steering, +12:u07:Steering, +12:u06:Steering, +24:u0B:Engineering/Steering, +12:u14:steering, +12:u05:Steering, +8:u08:IESG, +24:u0A:Engineering/Steering, +18:u0B:Steering/Group, +12:u13:steering, +12:u04:Steering, +8:u07:IESG, +24:u09:Engineering/Steering, +18:u0A:Steering/Group, +14:u0D:Steering/0, +12:u12:steering, +7:u22:Ste, +8:u23:Stee, +12:u03:Steering, +8:u06:IESG, +18:u09:Steering/Group, +10:u0B:(/IESG, +24:u0C:Engineering/Steering, +12:u11:steering, +8:u14:iesg, +12:u02:Steering, +8:u05:IESG, +11:u08:Further, +10:u0A:(/IESG, +10:u0B:IESG/), +18:u0C:Steering/Group, +12:u10:steering, +8:u13:iesg, +12:u01:Steering, +8:u04:IESG, +11:u07:Further, +10:u09:(/IESG, +10:u0A:IESG/), +10:u0D:IESG/0, +8:u12:iesg, +7:u22:IES, +8:u23:IESG, +7:u32:ESG, +8:u33:IESG, +12:u00:Steering, +8:u03:IESG, +11:u06:Further, +10:u09:IESG/), +13:u0B:./Further, +10:u0C:(/IESG, +8:u11:iesg, +11:u14:further, +8:u02:IESG, +11:u05:Further, +13:u0A:./Further, +23:u0B:Further/information, +10:u0C:IESG/), +8:u10:iesg, +11:u13:further, +8:u01:IESG, +11:u04:Further, +13:u09:./Further, +23:u0A:Further/information, +18:u0B:information/on, +13:u0D:Further/0, +11:u12:further, +7:u22:Fur, +8:u23:Furt, +8:u00:IESG, +11:u03:Further, +23:u09:Further/information, +18:u0A:information/on, +15:u0B:on/Internet, +13:u0C:./Further, +11:u11:further, +11:u02:Further, +13:u08:available, +18:u09:information/on, +15:u0A:on/Internet, +23:u0C:Further/information, +11:u10:further, +11:u01:Further, +13:u07:available, +15:u09:on/Internet, +16:u0B:Standards/is, +18:u0C:information/on, +11:u00:Further, +13:u06:available, +16:u0A:Standards/is, +16:u0B:is/available, +15:u0C:on/Internet, +13:u14:available, +13:u05:available, +16:u09:Standards/is, +16:u0A:is/available, +16:u0B:available/in, +13:u13:available, +13:u04:available, +16:u09:is/available, +16:u0A:available/in, +16:u0C:Standards/is, +15:u0D:available/0, +13:u12:available, +6:u21:av, +7:u22:ava, +8:u23:avai, +13:u03:available, +16:u09:available/in, +16:u0C:is/available, +13:u11:available, +13:u02:available, +16:u0C:available/in, +13:u10:available, +13:u01:available, +13:u00:available, +11:u08:rfc8602, +11:u07:rfc8602, +11:u06:rfc8602, +13:u0B://rfc8602, +11:u14:rfc8602, +11:u05:rfc8602, +13:u0A://rfc8602, +13:u0B:rfc8602/., +11:u13:rfc8602, +11:u04:rfc8602, +13:u09://rfc8602, +13:u0A:rfc8602/., +13:u0D:rfc8602/0, +11:u12:rfc8602, +11:u03:rfc8602, +13:u09:rfc8602/., +13:u0C://rfc8602, +11:u11:rfc8602, +11:u02:rfc8602, +13:u0C:rfc8602/., +11:u10:rfc8602, +11:u01:rfc8602, +11:u00:rfc8602, +8:u08:Jari, +8:u07:Jari, +8:u06:Jari, +10:u0B:./Jari, +8:u14:jari, +8:u05:Jari, +14:u08:Kauniainen, +10:u0A:./Jari, +14:u0B:Jari/Arkko, +8:u13:jari, +8:u04:Jari, +14:u07:Kauniainen, +9:u08:02700, +10:u09:./Jari, +14:u0A:Jari/Arkko, +18:u0B:Arkko/Ericsson, +10:u0D:Jari/0, +8:u12:jari, +7:u22:Jar, +8:u23:Jari, +6:u31:ri, +7:u32:ari, +8:u33:Jari, +8:u03:Jari, +14:u06:Kauniainen, +9:u07:02700, +14:u09:Jari/Arkko, +18:u0A:Arkko/Ericsson, +23:u0B:Ericsson/Kauniainen, +10:u0C:./Jari, +8:u11:jari, +14:u14:kauniainen, +8:u02:Jari, +14:u05:Kauniainen, +9:u06:02700, +18:u09:Arkko/Ericsson, +23:u0A:Ericsson/Kauniainen, +20:u0B:Kauniainen/02700, +14:u0C:Jari/Arkko, +8:u10:jari, +14:u13:kauniainen, +9:u14:02700, +8:u01:Jari, +14:u04:Kauniainen, +9:u05:02700, +23:u09:Ericsson/Kauniainen, +20:u0A:Kauniainen/02700, +17:u0B:02700/Finland, +18:u0C:Arkko/Ericsson, +16:u0D:Kauniainen/0, +14:u12:kauniainen, +9:u13:02700, +7:u22:Kau, +8:u23:Kaun, +7:u32:nen, +8:u33:inen, +8:u00:Jari, +14:u03:Kauniainen, +9:u04:02700, +8:u08:jari, +20:u09:Kauniainen/02700, +17:u0A:02700/Finland, +23:u0C:Ericsson/Kauniainen, +11:u0D:02700/0, +14:u11:kauniainen, +9:u12:02700, +7:u22:027, +8:u23:0270, +7:u32:700, +8:u33:2700, +14:u02:Kauniainen, +9:u03:02700, +8:u07:jari, +17:u09:02700/Finland, +20:u0C:Kauniainen/02700, +14:u10:kauniainen, +9:u11:02700, +14:u01:Kauniainen, +9:u02:02700, +8:u06:jari, +15:u08:arkko@piuha, +10:u0B::/jari, +17:u0C:02700/Finland, +9:u10:02700, +14:u00:Kauniainen, +9:u01:02700, +8:u05:jari, +15:u07:arkko@piuha, +10:u0A::/jari, +10:u0B:jari/., +9:u00:02700, +8:u04:jari, +15:u06:arkko@piuha, +10:u09::/jari, +10:u0A:jari/., +17:u0B:./arkko@piuha, +10:u0D:jari/0, +15:u14:arkko@piuha, +5:u20:j, +6:u21:ja, +7:u22:jar, +8:u23:jari, +8:u33:jari, +8:u03:jari, +15:u05:arkko@piuha, +7:u08:Ted, +10:u09:jari/., +17:u0A:./arkko@piuha, +17:u0B:arkko@piuha/., +10:u0C::/jari, +15:u13:arkko@piuha, +8:u02:jari, +15:u04:arkko@piuha, +7:u07:Ted, +17:u09:./arkko@piuha, +17:u0A:arkko@piuha/., +10:u0C:jari/., +17:u0D:arkko@piuha/0, +15:u12:arkko@piuha, +7:u22:ark, +8:u23:arkk, +6:u31:ha, +7:u32:uha, +8:u33:iuha, +8:u01:jari, +15:u03:arkko@piuha, +7:u06:Ted, +17:u09:arkko@piuha/., +11:u0B:net/Ted, +17:u0C:./arkko@piuha, +15:u11:arkko@piuha, +7:u14:ted, +8:u00:jari, +15:u02:arkko@piuha, +7:u05:Ted, +11:u0A:net/Ted, +14:u0B:Ted/Hardie, +17:u0C:arkko@piuha/., +15:u10:arkko@piuha, +7:u13:ted, +15:u01:arkko@piuha, +7:u03:net, +7:u04:Ted, +7:u08:ted, +11:u09:net/Ted, +14:u0A:Ted/Hardie, +16:u0B:Hardie/Email, +9:u0C:./net, +9:u0D:Ted/0, +7:u11:net, +7:u12:ted, +7:u22:Ted, +7:u23:Ted, +7:u32:Ted, +7:u33:Ted, +15:u00:arkko@piuha, +7:u02:net, +7:u03:Ted, +7:u07:ted, +14:u09:Ted/Hardie, +16:u0A:Hardie/Email, +11:u0C:net/Ted, +7:u10:net, +7:u11:ted, +7:u01:net, +7:u02:Ted, +7:u06:ted, +14:u08:ietf@gmail, +16:u09:Hardie/Email, +9:u0B::/ted, +14:u0C:Ted/Hardie, +7:u10:ted, +7:u00:net, +7:u01:Ted, +7:u05:ted, +14:u07:ietf@gmail, +9:u0A::/ted, +9:u0B:ted/., +16:u0C:Hardie/Email, +7:u00:Ted, +7:u04:ted, +14:u06:ietf@gmail, +9:u09::/ted, +9:u0A:ted/., +16:u0B:./ietf@gmail, +9:u0D:ted/0, +14:u14:ietf@gmail, +7:u22:ted, +7:u23:ted, +7:u33:ted, +7:u03:ted, +14:u05:ietf@gmail, +9:u09:ted/., +16:u0A:./ietf@gmail, +16:u0B:ietf@gmail/., +9:u0C::/ted, +14:u13:ietf@gmail, +7:u02:ted, +14:u04:ietf@gmail, +16:u09:./ietf@gmail, +16:u0A:ietf@gmail/., +9:u0C:ted/., +16:u0D:ietf@gmail/0, +14:u12:ietf@gmail, +7:u01:ted, +14:u03:ietf@gmail, +16:u09:ietf@gmail/., +16:u0C:./ietf@gmail, +14:u11:ietf@gmail, +7:u00:ted, +14:u02:ietf@gmail, +16:u0C:ietf@gmail/., +14:u10:ietf@gmail, +17:u09:_x-1/Internet, +17:u0D:Internet/_x-1, +17:u0C:_x-1/Internet, +5:u08:S, +5:u07:S, +5:u06:S, +9:u08:Banks, +7:u0B:)/S, +5:u05:S, +9:u07:Banks, +7:u0A:)/S, +7:u0B:S/., +5:u04:S, +9:u06:Banks, +7:u09:)/S, +7:u0A:S/., +11:u0B:./Banks, +7:u0D:S/0, +9:u14:banks, +5:u21:S, +5:u22:S, +5:u23:S, +5:u31:S, +5:u32:S, +5:u33:S, +5:u03:S, +9:u05:Banks, +7:u09:S/., +11:u0A:./Banks, +17:u0B:Banks/Request, +7:u0C:)/S, +9:u13:banks, +5:u02:S, +9:u04:Banks, +11:u09:./Banks, +17:u0A:Banks/Request, +7:u0C:S/., +11:u0D:Banks/0, +9:u12:banks, +7:u22:Ban, +8:u23:Bank, +7:u32:nks, +8:u33:anks, +5:u01:S, +9:u03:Banks, +8:u08:7654, +17:u09:Banks/Request, +11:u0C:./Banks, +9:u11:banks, +5:u00:S, +9:u02:Banks, +8:u07:7654, +7:u08:VSS, +17:u0C:Banks/Request, +9:u10:banks, +9:u01:Banks, +8:u06:7654, +7:u07:VSS, +14:u08:Monitoring, +10:u0B::/7654, +8:u14:7654, +9:u00:Banks, +8:u05:7654, +7:u06:VSS, +14:u07:Monitoring, +10:u0A::/7654, +12:u0B:7654/VSS, +8:u13:7654, +7:u14:vss, +8:u04:7654, +7:u05:VSS, +14:u06:Monitoring, +10:u09::/7654, +12:u0A:7654/VSS, +18:u0B:VSS/Monitoring, +10:u0D:7654/0, +8:u12:7654, +7:u13:vss, +14:u14:monitoring, +6:u21:76, +7:u22:765, +8:u23:7654, +6:u31:54, +7:u32:654, +8:u33:7654, +8:u03:7654, +7:u04:VSS, +14:u05:Monitoring, +12:u09:7654/VSS, +18:u0A:VSS/Monitoring, +23:u0B:Monitoring/Category, +10:u0C::/7654, +9:u0D:VSS/0, +8:u11:7654, +7:u12:vss, +14:u13:monitoring, +6:u21:VS, +7:u22:VSS, +7:u23:VSS, +6:u31:SS, +7:u32:VSS, +7:u33:VSS, +8:u02:7654, +7:u03:VSS, +14:u04:Monitoring, +18:u09:VSS/Monitoring, +23:u0A:Monitoring/Category, +12:u0C:7654/VSS, +16:u0D:Monitoring/0, +8:u10:7654, +7:u11:vss, +14:u12:monitoring, +8:u23:Moni, +8:u01:7654, +7:u02:VSS, +14:u03:Monitoring, +23:u09:Monitoring/Category, +18:u0C:VSS/Monitoring, +7:u10:vss, +14:u11:monitoring, +8:u00:7654, +7:u01:VSS, +14:u02:Monitoring, +12:u08:Calabria, +19:u0B:Informational/F, +23:u0C:Monitoring/Category, +14:u10:monitoring, +7:u00:VSS, +14:u01:Monitoring, +12:u07:Calabria, +19:u0A:Informational/F, +14:u00:Monitoring, +12:u06:Calabria, +19:u09:Informational/F, +14:u0B:./Calabria, +12:u14:calabria, +12:u05:Calabria, +14:u0A:./Calabria, +17:u0B:Calabria/ISSN, +19:u0C:Informational/F, +12:u13:calabria, +12:u04:Calabria, +14:u09:./Calabria, +17:u0A:Calabria/ISSN, +14:u0D:Calabria/0, +12:u12:calabria, +8:u23:Cala, +7:u32:ria, +8:u33:bria, +12:u03:Calabria, +17:u09:Calabria/ISSN, +14:u0C:./Calabria, +12:u11:calabria, +12:u02:Calabria, +17:u0C:Calabria/ISSN, +12:u10:calabria, +12:u01:Calabria, +12:u00:Calabria, +5:u08:G, +14:u0B:1721/Cisco, +14:u0A:1721/Cisco, +11:u08:Czirjak, +14:u09:1721/Cisco, +13:u0B:Systems/G, +11:u07:Czirjak, +13:u0A:Systems/G, +14:u0C:1721/Cisco, +11:u06:Czirjak, +13:u09:Systems/G, +13:u0B:./Czirjak, +11:u14:czirjak, +11:u05:Czirjak, +10:u08:Machat, +13:u0A:./Czirjak, +13:u0B:Czirjak/R, +13:u0C:Systems/G, +11:u13:czirjak, +11:u04:Czirjak, +10:u07:Machat, +11:u08:Juniper, +13:u09:./Czirjak, +13:u0A:Czirjak/R, +13:u0D:Czirjak/0, +11:u12:czirjak, +6:u21:Cz, +7:u22:Czi, +8:u23:Czir, +6:u31:ak, +7:u32:jak, +8:u33:rjak, +11:u03:Czirjak, +10:u06:Machat, +11:u07:Juniper, +13:u09:Czirjak/R, +12:u0B:./Machat, +13:u0C:./Czirjak, +11:u11:czirjak, +10:u14:machat, +11:u02:Czirjak, +10:u05:Machat, +11:u06:Juniper, +11:u08:October, +12:u0A:./Machat, +18:u0B:Machat/Juniper, +13:u0C:Czirjak/R, +11:u10:czirjak, +10:u13:machat, +11:u14:juniper, +11:u01:Czirjak, +10:u04:Machat, +11:u05:Juniper, +11:u07:October, +8:u08:2015, +12:u09:./Machat, +18:u0A:Machat/Juniper, +20:u0B:Juniper/Networks, +12:u0D:Machat/0, +10:u12:machat, +11:u13:juniper, +7:u22:Mac, +8:u23:Mach, +8:u33:chat, +11:u00:Czirjak, +10:u03:Machat, +11:u04:Juniper, +11:u06:October, +8:u07:2015, +16:u08:Benchmarking, +18:u09:Machat/Juniper, +20:u0A:Juniper/Networks, +20:u0B:Networks/October, +12:u0C:./Machat, +13:u0D:Juniper/0, +10:u11:machat, +11:u12:juniper, +11:u14:october, +8:u23:Juni, +7:u32:per, +8:u33:iper, +10:u02:Machat, +11:u03:Juniper, +11:u05:October, +8:u06:2015, +16:u07:Benchmarking, +15:u08:Methodology, +20:u09:Juniper/Networks, +20:u0A:Networks/October, +16:u0B:October/2015, +18:u0C:Machat/Juniper, +10:u10:machat, +11:u11:juniper, +11:u13:october, +8:u14:2015, +10:u01:Machat, +11:u02:Juniper, +11:u04:October, +8:u05:2015, +16:u06:Benchmarking, +15:u07:Methodology, +20:u09:Networks/October, +16:u0A:October/2015, +21:u0B:2015/Benchmarking, +20:u0C:Juniper/Networks, +13:u0D:October/0, +11:u10:juniper, +11:u12:october, +8:u13:2015, +16:u14:benchmarking, +6:u21:Oc, +7:u22:Oct, +8:u23:Octo, +8:u33:ober, +10:u00:Machat, +11:u01:Juniper, +11:u03:October, +8:u04:2015, +16:u05:Benchmarking, +15:u06:Methodology, +6:u08:In, +16:u09:October/2015, +21:u0A:2015/Benchmarking, +28:u0B:Benchmarking/Methodology, +20:u0C:Networks/October, +10:u0D:2015/0, +11:u11:october, +8:u12:2015, +16:u13:benchmarking, +15:u14:methodology, +8:u23:2015, +7:u32:015, +8:u33:2015, +11:u00:Juniper, +11:u02:October, +8:u03:2015, +16:u04:Benchmarking, +15:u05:Methodology, +6:u07:In, +21:u09:2015/Benchmarking, +28:u0A:Benchmarking/Methodology, +19:u0B:Methodology/for, +16:u0C:October/2015, +18:u0D:Benchmarking/0, +11:u10:october, +8:u11:2015, +16:u12:benchmarking, +15:u13:methodology, +7:u22:Ben, +8:u23:Benc, +11:u01:October, +8:u02:2015, +16:u03:Benchmarking, +15:u04:Methodology, +6:u06:In, +28:u09:Benchmarking/Methodology, +19:u0A:Methodology/for, +10:u0B:for/In, +21:u0C:2015/Benchmarking, +17:u0D:Methodology/0, +8:u10:2015, +16:u11:benchmarking, +15:u12:methodology, +7:u22:Met, +8:u23:Meth, +6:u31:gy, +7:u32:ogy, +8:u33:logy, +11:u00:October, +8:u01:2015, +16:u02:Benchmarking, +15:u03:Methodology, +6:u05:In, +12:u08:Software, +19:u09:Methodology/for, +10:u0A:for/In, +8:u0B:In/-, +28:u0C:Benchmarking/Methodology, +16:u10:benchmarking, +15:u11:methodology, +8:u00:2015, +16:u01:Benchmarking, +15:u02:Methodology, +6:u04:In, +12:u07:Software, +11:u08:Upgrade, +10:u09:for/In, +8:u0A:In/-, +13:u0B:-/Service, +19:u0C:Methodology/for, +8:u0D:In/0, +15:u10:methodology, +6:u22:In, +6:u23:In, +6:u32:In, +6:u33:In, +16:u00:Benchmarking, +15:u01:Methodology, +6:u03:In, +12:u06:Software, +11:u07:Upgrade, +8:u09:In/-, +13:u0A:-/Service, +20:u0B:Service/Software, +10:u0C:for/In, +12:u14:software, +15:u00:Methodology, +6:u02:In, +12:u05:Software, +11:u06:Upgrade, +8:u08:ISSU, +13:u09:-/Service, +20:u0A:Service/Software, +20:u0B:Software/Upgrade, +8:u0C:In/-, +13:u0D:Service/1, +12:u13:software, +11:u14:upgrade, +6:u01:In, +12:u04:Software, +11:u05:Upgrade, +8:u07:ISSU, +20:u09:Service/Software, +20:u0A:Software/Upgrade, +13:u0B:Upgrade/(, +13:u0C:-/Service, +14:u0D:Software/0, +12:u12:software, +11:u13:upgrade, +7:u22:Sof, +8:u23:Soft, +8:u33:ware, +6:u00:In, +12:u03:Software, +11:u04:Upgrade, +8:u06:ISSU, +20:u09:Software/Upgrade, +13:u0A:Upgrade/(, +10:u0B:(/ISSU, +20:u0C:Service/Software, +13:u0D:Upgrade/0, +12:u11:software, +11:u12:upgrade, +8:u14:issu, +7:u22:Upg, +8:u23:Upgr, +7:u32:ade, +8:u33:rade, +12:u02:Software, +11:u03:Upgrade, +8:u05:ISSU, +10:u08:Modern, +13:u09:Upgrade/(, +10:u0A:(/ISSU, +10:u0B:ISSU/), +20:u0C:Software/Upgrade, +12:u10:software, +11:u11:upgrade, +8:u13:issu, +12:u01:Software, +11:u02:Upgrade, +8:u04:ISSU, +10:u07:Modern, +14:u08:forwarding, +10:u09:(/ISSU, +10:u0A:ISSU/), +14:u0B:)/Abstract, +13:u0C:Upgrade/(, +10:u0D:ISSU/0, +11:u10:upgrade, +8:u12:issu, +8:u23:ISSU, +6:u31:SU, +7:u32:SSU, +8:u33:ISSU, +12:u00:Software, +11:u01:Upgrade, +8:u03:ISSU, +10:u06:Modern, +14:u07:forwarding, +11:u08:devices, +10:u09:ISSU/), +14:u0A:)/Abstract, +19:u0B:Abstract/Modern, +10:u0C:(/ISSU, +8:u11:issu, +10:u14:modern, +11:u00:Upgrade, +8:u02:ISSU, +10:u05:Modern, +14:u06:forwarding, +11:u07:devices, +11:u08:attempt, +14:u09:)/Abstract, +19:u0A:Abstract/Modern, +21:u0B:Modern/forwarding, +10:u0C:ISSU/), +8:u10:issu, +10:u13:modern, +14:u14:forwarding, +8:u01:ISSU, +10:u04:Modern, +14:u05:forwarding, +11:u06:devices, +11:u07:attempt, +19:u09:Abstract/Modern, +21:u0A:Modern/forwarding, +22:u0B:forwarding/devices, +14:u0C:)/Abstract, +12:u0D:Modern/0, +10:u12:modern, +14:u13:forwarding, +11:u14:devices, +7:u22:Mod, +8:u23:Mode, +7:u32:ern, +8:u33:dern, +8:u00:ISSU, +10:u03:Modern, +14:u04:forwarding, +11:u05:devices, +11:u06:attempt, +12:u08:minimize, +21:u09:Modern/forwarding, +22:u0A:forwarding/devices, +19:u0B:devices/attempt, +19:u0C:Abstract/Modern, +16:u0D:forwarding/0, +10:u11:modern, +14:u12:forwarding, +11:u13:devices, +11:u14:attempt, +10:u02:Modern, +14:u03:forwarding, +11:u04:devices, +11:u05:attempt, +12:u07:minimize, +22:u09:forwarding/devices, +19:u0A:devices/attempt, +14:u0B:attempt/to, +21:u0C:Modern/forwarding, +13:u0D:devices/0, +10:u10:modern, +14:u11:forwarding, +11:u12:devices, +11:u13:attempt, +8:u33:ices, +10:u01:Modern, +14:u02:forwarding, +11:u03:devices, +11:u04:attempt, +12:u06:minimize, +19:u09:devices/attempt, +14:u0A:attempt/to, +15:u0B:to/minimize, +22:u0C:forwarding/devices, +13:u0D:attempt/0, +14:u10:forwarding, +11:u11:devices, +11:u12:attempt, +12:u14:minimize, +8:u23:atte, +6:u31:pt, +7:u32:mpt, +8:u33:empt, +10:u00:Modern, +14:u01:forwarding, +11:u02:devices, +11:u03:attempt, +12:u05:minimize, +14:u09:attempt/to, +15:u0A:to/minimize, +16:u0B:minimize/any, +19:u0C:devices/attempt, +11:u10:devices, +11:u11:attempt, +12:u13:minimize, +14:u00:forwarding, +11:u01:devices, +11:u02:attempt, +12:u04:minimize, +15:u09:to/minimize, +16:u0A:minimize/any, +15:u0B:any/control, +14:u0C:attempt/to, +14:u0D:minimize/0, +11:u10:attempt, +12:u12:minimize, +7:u22:min, +8:u23:mini, +6:u31:ze, +7:u32:ize, +8:u33:mize, +11:u00:devices, +11:u01:attempt, +12:u03:minimize, +16:u09:minimize/any, +15:u0A:any/control, +13:u0B:control/-, +15:u0C:to/minimize, +12:u11:minimize, +11:u00:attempt, +12:u02:minimize, +15:u09:any/control, +13:u0A:control/-, +9:u0B:-/and, +16:u0C:minimize/any, +12:u10:minimize, +12:u01:minimize, +13:u09:control/-, +9:u0A:-/and, +12:u0B:and/data, +15:u0C:any/control, +12:u00:minimize, +15:u08:disruptions, +9:u09:-/and, +12:u0A:and/data, +10:u0B:data/-, +13:u0C:control/-, +9:u0D:and/1, +15:u07:disruptions, +9:u08:while, +12:u09:and/data, +10:u0A:data/-, +11:u0B:-/plane, +9:u0C:-/and, +15:u06:disruptions, +9:u07:while, +14:u08:performing, +10:u09:data/-, +11:u0A:-/plane, +21:u0B:plane/disruptions, +12:u0C:and/data, +15:u14:disruptions, +15:u05:disruptions, +9:u06:while, +14:u07:performing, +11:u08:planned, +11:u09:-/plane, +21:u0A:plane/disruptions, +21:u0B:disruptions/while, +10:u0C:data/-, +11:u0D:plane/1, +15:u13:disruptions, +15:u04:disruptions, +9:u05:while, +14:u06:performing, +11:u07:planned, +12:u08:software, +21:u09:plane/disruptions, +21:u0A:disruptions/while, +20:u0B:while/performing, +11:u0C:-/plane, +17:u0D:disruptions/0, +15:u12:disruptions, +8:u23:disr, +15:u03:disruptions, +9:u04:while, +14:u05:performing, +11:u06:planned, +12:u07:software, +11:u08:changes, +21:u09:disruptions/while, +20:u0A:while/performing, +22:u0B:performing/planned, +21:u0C:plane/disruptions, +11:u0D:while/0, +15:u11:disruptions, +11:u14:planned, +8:u23:whil, +15:u02:disruptions, +9:u03:while, +14:u04:performing, +11:u05:planned, +12:u06:software, +11:u07:changes, +20:u09:while/performing, +22:u0A:performing/planned, +20:u0B:planned/software, +21:u0C:disruptions/while, +16:u0D:performing/0, +15:u10:disruptions, +11:u13:planned, +8:u23:perf, +15:u01:disruptions, +9:u02:while, +14:u03:performing, +11:u04:planned, +12:u05:software, +11:u06:changes, +16:u08:implementing, +22:u09:performing/planned, +20:u0A:planned/software, +20:u0B:software/changes, +20:u0C:while/performing, +13:u0D:planned/0, +11:u12:planned, +8:u33:nned, +15:u00:disruptions, +9:u01:while, +14:u02:performing, +11:u03:planned, +12:u04:software, +11:u05:changes, +16:u07:implementing, +20:u09:planned/software, +20:u0A:software/changes, +14:u0B:changes/by, +22:u0C:performing/planned, +14:u0D:software/0, +11:u11:planned, +7:u22:sof, +8:u23:soft, +9:u00:while, +14:u01:performing, +11:u02:planned, +12:u03:software, +11:u04:changes, +16:u06:implementing, +13:u08:technique, +20:u09:software/changes, +14:u0A:changes/by, +19:u0B:by/implementing, +20:u0C:planned/software, +13:u0D:changes/0, +11:u10:planned, +16:u14:implementing, +14:u00:performing, +11:u01:planned, +12:u02:software, +11:u03:changes, +16:u05:implementing, +13:u07:technique, +12:u08:commonly, +14:u09:changes/by, +19:u0A:by/implementing, +18:u0B:implementing/a, +20:u0C:software/changes, +16:u13:implementing, +11:u00:planned, +12:u01:software, +11:u02:changes, +16:u04:implementing, +13:u06:technique, +12:u07:commonly, +9:u08:known, +19:u09:by/implementing, +18:u0A:implementing/a, +15:u0B:a/technique, +14:u0C:changes/by, +18:u0D:implementing/0, +16:u12:implementing, +13:u14:technique, +12:u00:software, +11:u01:changes, +16:u03:implementing, +13:u05:technique, +12:u06:commonly, +9:u07:known, +18:u09:implementing/a, +15:u0A:a/technique, +22:u0B:technique/commonly, +19:u0C:by/implementing, +16:u11:implementing, +13:u13:technique, +12:u14:commonly, +11:u00:changes, +16:u02:implementing, +13:u04:technique, +12:u05:commonly, +9:u06:known, +15:u09:a/technique, +22:u0A:technique/commonly, +18:u0B:commonly/known, +18:u0C:implementing/a, +15:u0D:technique/0, +16:u10:implementing, +13:u12:technique, +12:u13:commonly, +9:u14:known, +7:u32:que, +8:u33:ique, +16:u01:implementing, +13:u03:technique, +12:u04:commonly, +9:u05:known, +22:u09:technique/commonly, +18:u0A:commonly/known, +12:u0B:known/as, +15:u0C:a/technique, +14:u0D:commonly/0, +13:u11:technique, +12:u12:commonly, +9:u13:known, +16:u00:implementing, +13:u02:technique, +12:u03:commonly, +9:u04:known, +18:u09:commonly/known, +12:u0A:known/as, +9:u0B:as/In, +22:u0C:technique/commonly, +11:u0D:known/0, +13:u10:technique, +12:u11:commonly, +9:u12:known, +5:u20:k, +6:u21:kn, +7:u22:kno, +8:u23:know, +6:u31:wn, +7:u32:own, +8:u33:nown, +13:u01:technique, +12:u02:commonly, +9:u03:known, +12:u09:known/as, +9:u0A:as/In, +18:u0C:commonly/known, +12:u10:commonly, +9:u11:known, +13:u00:technique, +12:u01:commonly, +9:u02:known, +9:u09:as/In, +12:u0C:known/as, +9:u10:known, +12:u00:commonly, +9:u01:known, +9:u0C:as/In, +9:u00:known, +15:u0B:specifies/a, +10:u08:common, +15:u0A:specifies/a, +9:u0B:a/set, +10:u07:common, +17:u08:methodologies, +15:u09:specifies/a, +9:u0A:a/set, +10:u06:common, +17:u07:methodologies, +9:u09:a/set, +13:u0B:of/common, +15:u0C:specifies/a, +10:u14:common, +10:u05:common, +17:u06:methodologies, +13:u0A:of/common, +24:u0B:common/methodologies, +9:u0C:a/set, +10:u13:common, +17:u14:methodologies, +10:u04:common, +17:u05:methodologies, +12:u08:designed, +13:u09:of/common, +24:u0A:common/methodologies, +21:u0B:methodologies/and, +12:u0D:common/0, +10:u12:common, +17:u13:methodologies, +7:u32:mon, +8:u33:mmon, +10:u03:common, +17:u04:methodologies, +12:u07:designed, +24:u09:common/methodologies, +21:u0A:methodologies/and, +18:u0B:and/procedures, +13:u0C:of/common, +19:u0D:methodologies/0, +10:u11:common, +17:u12:methodologies, +8:u33:gies, +10:u02:common, +17:u03:methodologies, +12:u06:designed, +16:u08:characterize, +21:u09:methodologies/and, +18:u0A:and/procedures, +23:u0B:procedures/designed, +24:u0C:common/methodologies, +10:u10:common, +17:u11:methodologies, +12:u14:designed, +10:u01:common, +17:u02:methodologies, +12:u05:designed, +16:u07:characterize, +18:u09:and/procedures, +23:u0A:procedures/designed, +15:u0B:designed/to, +21:u0C:methodologies/and, +17:u10:methodologies, +12:u13:designed, +10:u00:common, +17:u01:methodologies, +12:u04:designed, +16:u06:characterize, +23:u09:procedures/designed, +15:u0A:designed/to, +19:u0B:to/characterize, +18:u0C:and/procedures, +14:u0D:designed/0, +12:u12:designed, +16:u14:characterize, +8:u33:gned, +17:u00:methodologies, +12:u03:designed, +16:u05:characterize, +15:u09:designed/to, +19:u0A:to/characterize, +20:u0B:characterize/the, +23:u0C:procedures/designed, +12:u11:designed, +16:u13:characterize, +12:u02:designed, +16:u04:characterize, +19:u09:to/characterize, +20:u0A:characterize/the, +15:u0C:designed/to, +18:u0D:characterize/0, +12:u10:designed, +16:u12:characterize, +8:u23:char, +8:u33:rize, +12:u01:designed, +16:u03:characterize, +20:u09:characterize/the, +20:u0B:overall/behavior, +19:u0C:to/characterize, +16:u11:characterize, +12:u00:designed, +16:u02:characterize, +10:u08:Device, +20:u0A:overall/behavior, +15:u0B:behavior/of, +20:u0C:characterize/the, +16:u10:characterize, +16:u01:characterize, +10:u07:Device, +9:u08:Under, +20:u09:overall/behavior, +15:u0A:behavior/of, +16:u00:characterize, +10:u06:Device, +9:u07:Under, +8:u08:Test, +15:u09:behavior/of, +12:u0B:a/Device, +20:u0C:overall/behavior, +10:u05:Device, +9:u06:Under, +8:u07:Test, +12:u0A:a/Device, +16:u0B:Device/Under, +15:u0C:behavior/of, +10:u04:Device, +9:u05:Under, +8:u06:Test, +7:u08:DUT, +12:u09:a/Device, +16:u0A:Device/Under, +14:u0B:Under/Test, +12:u0D:Device/0, +8:u14:test, +7:u22:Dev, +8:u23:Devi, +10:u03:Device, +9:u04:Under, +8:u05:Test, +7:u07:DUT, +16:u09:Device/Under, +14:u0A:Under/Test, +10:u0B:Test/(, +12:u0C:a/Device, +11:u0D:Under/0, +8:u13:test, +7:u22:Und, +8:u23:Unde, +10:u02:Device, +9:u03:Under, +8:u04:Test, +7:u06:DUT, +14:u09:Under/Test, +10:u0A:Test/(, +9:u0B:(/DUT, +16:u0C:Device/Under, +10:u0D:Test/0, +8:u12:test, +7:u14:dut, +7:u22:Tes, +8:u23:Test, +8:u33:Test, +10:u01:Device, +9:u02:Under, +8:u03:Test, +7:u05:DUT, +10:u09:Test/(, +9:u0A:(/DUT, +9:u0B:DUT/), +14:u0C:Under/Test, +8:u11:test, +7:u13:dut, +10:u00:Device, +9:u01:Under, +8:u02:Test, +7:u04:DUT, +9:u09:(/DUT, +9:u0A:DUT/), +7:u0B:)/,, +10:u0C:Test/(, +9:u0D:DUT/0, +8:u10:test, +7:u12:dut, +6:u21:DU, +7:u22:DUT, +7:u23:DUT, +6:u31:UT, +7:u32:DUT, +7:u33:DUT, +9:u00:Under, +8:u01:Test, +7:u03:DUT, +9:u09:DUT/), +7:u0A:)/,, +13:u0B:,/subject, +9:u0C:(/DUT, +7:u11:dut, +8:u00:Test, +7:u02:DUT, +7:u09:)/,, +13:u0A:,/subject, +9:u0C:DUT/), +7:u10:dut, +7:u01:DUT, +9:u08:event, +13:u09:,/subject, +7:u0C:)/,, +7:u00:DUT, +9:u07:event, +11:u0B:an/ISSU, +13:u0C:,/subject, +9:u06:event, +11:u0A:an/ISSU, +14:u0B:ISSU/event, +9:u14:event, +9:u05:event, +11:u09:an/ISSU, +14:u0A:ISSU/event, +11:u0B:event/., +9:u13:event, +9:u04:event, +14:u09:ISSU/event, +11:u0A:event/., +11:u0C:an/ISSU, +11:u0D:event/0, +9:u12:event, +8:u33:vent, +9:u03:event, +11:u09:event/., +14:u0C:ISSU/event, +9:u11:event, +9:u02:event, +11:u0C:event/., +9:u10:event, +9:u01:event, +9:u00:event, +17:u08:informational, +17:u07:informational, +12:u08:purposes, +17:u06:informational, +12:u07:purposes, +21:u0B:for/informational, +17:u05:informational, +12:u06:purposes, +21:u0A:for/informational, +26:u0B:informational/purposes, +12:u14:purposes, +17:u04:informational, +12:u05:purposes, +21:u09:for/informational, +26:u0A:informational/purposes, +14:u0B:purposes/., +19:u0D:informational/0, +12:u13:purposes, +17:u03:informational, +12:u04:purposes, +26:u09:informational/purposes, +14:u0A:purposes/., +21:u0C:for/informational, +14:u0D:purposes/0, +12:u12:purposes, +7:u22:pur, +8:u23:purp, +17:u02:informational, +12:u03:purposes, +14:u09:purposes/., +26:u0C:informational/purposes, +12:u11:purposes, +17:u01:informational, +12:u02:purposes, +14:u0C:purposes/., +12:u10:purposes, +17:u00:informational, +12:u01:purposes, +12:u00:purposes, +7:u08:Not, +7:u07:Not, +7:u08:all, +7:u06:Not, +7:u07:all, +9:u0B:./Not, +7:u05:Not, +7:u06:all, +9:u0A:./Not, +11:u0B:Not/all, +7:u04:Not, +7:u05:all, +9:u09:./Not, +11:u0A:Not/all, +17:u0B:all/documents, +9:u0D:Not/0, +7:u23:Not, +7:u32:Not, +7:u33:Not, +7:u03:Not, +7:u04:all, +11:u09:Not/all, +17:u0A:all/documents, +22:u0B:documents/approved, +9:u0C:./Not, +9:u0D:all/0, +7:u23:all, +7:u33:all, +7:u02:Not, +7:u03:all, +17:u09:all/documents, +22:u0A:documents/approved, +15:u0B:approved/by, +11:u0C:Not/all, +7:u01:Not, +7:u02:all, +22:u09:documents/approved, +15:u0A:approved/by, +17:u0C:all/documents, +7:u00:Not, +7:u01:all, +15:u09:approved/by, +12:u0B:the/IESG, +22:u0C:documents/approved, +7:u00:all, +13:u08:candidate, +12:u0A:the/IESG, +12:u0B:IESG/are, +15:u0C:approved/by, +13:u07:candidate, +12:u09:the/IESG, +12:u0A:IESG/are, +9:u0B:are/a, +13:u06:candidate, +12:u09:IESG/are, +9:u0A:are/a, +15:u0B:a/candidate, +12:u0C:the/IESG, +13:u14:candidate, +13:u05:candidate, +9:u09:are/a, +15:u0A:a/candidate, +17:u0B:candidate/for, +12:u0C:IESG/are, +13:u13:candidate, +13:u04:candidate, +15:u09:a/candidate, +17:u0A:candidate/for, +9:u0C:are/a, +15:u0D:candidate/0, +13:u12:candidate, +13:u03:candidate, +17:u09:candidate/for, +15:u0C:a/candidate, +13:u11:candidate, +13:u02:candidate, +17:u0C:candidate/for, +13:u10:candidate, +13:u01:candidate, +13:u00:candidate, +8:u08:5741, +8:u07:5741, +8:u06:5741, +12:u0B:RFC/5741, +8:u14:5741, +8:u05:5741, +12:u0A:RFC/5741, +10:u0B:5741/., +8:u13:5741, +8:u04:5741, +12:u09:RFC/5741, +10:u0A:5741/., +10:u0D:5741/0, +8:u12:5741, +6:u21:57, +7:u22:574, +8:u23:5741, +7:u32:741, +8:u33:5741, +8:u03:5741, +10:u09:5741/., +12:u0C:RFC/5741, +8:u11:5741, +8:u02:5741, +10:u0C:5741/., +8:u10:5741, +8:u01:5741, +8:u00:5741, +11:u08:rfc7654, +11:u07:rfc7654, +11:u06:rfc7654, +13:u0B://rfc7654, +11:u14:rfc7654, +11:u05:rfc7654, +13:u0A://rfc7654, +13:u0B:rfc7654/., +11:u13:rfc7654, +11:u04:rfc7654, +13:u09://rfc7654, +13:u0A:rfc7654/., +13:u0D:rfc7654/0, +11:u12:rfc7654, +8:u23:rfc7, +11:u03:rfc7654, +13:u09:rfc7654/., +11:u0B:Banks/,, +13:u0C://rfc7654, +11:u11:rfc7654, +11:u02:rfc7654, +11:u0A:Banks/,, +13:u0C:rfc7654/., +11:u10:rfc7654, +11:u01:rfc7654, +11:u09:Banks/,, +11:u00:rfc7654, +11:u0C:Banks/,, +19:u0B:./Informational, +19:u0A:./Informational, +19:u0B:Informational/[, +19:u09:./Informational, +19:u0A:Informational/[, +19:u09:Informational/[, +19:u0C:./Informational, +19:u0C:Informational/[, +12:u0B:RFC/7654, +12:u0A:RFC/7654, +21:u0B:7654/Benchmarking, +12:u09:RFC/7654, +21:u0A:7654/Benchmarking, +25:u0B:Benchmarking/Software, +21:u09:7654/Benchmarking, +25:u0A:Benchmarking/Software, +12:u0C:RFC/7654, +25:u09:Benchmarking/Software, +19:u0B:Upgrade/October, +21:u0C:7654/Benchmarking, +19:u0A:Upgrade/October, +25:u0C:Benchmarking/Software, +19:u09:Upgrade/October, +18:u0B:2015/Copyright, +18:u0A:2015/Copyright, +19:u0C:Upgrade/October, +18:u09:2015/Copyright, +18:u0C:2015/Copyright, +10:u0B:)/2015, +10:u0A:)/2015, +13:u0B:2015/IETF, +10:u09:)/2015, +13:u0A:2015/IETF, +13:u09:2015/IETF, +10:u0C:)/2015, +13:u0C:2015/IETF, +9:u08:Sarah, +9:u07:Sarah, +9:u06:Sarah, +11:u0B:./Sarah, +9:u14:sarah, +9:u05:Sarah, +11:u0A:./Sarah, +15:u0B:Sarah/Banks, +9:u13:sarah, +9:u04:Sarah, +11:u09:./Sarah, +15:u0A:Sarah/Banks, +13:u0B:Banks/VSS, +11:u0D:Sarah/0, +9:u12:sarah, +7:u22:Sar, +8:u23:Sara, +6:u31:ah, +7:u32:rah, +8:u33:arah, +9:u03:Sarah, +15:u09:Sarah/Banks, +13:u0A:Banks/VSS, +11:u0C:./Sarah, +9:u11:sarah, +9:u02:Sarah, +20:u08:sbanks@encrypted, +13:u09:Banks/VSS, +20:u0B:Monitoring/Email, +15:u0C:Sarah/Banks, +9:u10:sarah, +9:u01:Sarah, +20:u07:sbanks@encrypted, +20:u0A:Monitoring/Email, +13:u0C:Banks/VSS, +9:u00:Sarah, +20:u06:sbanks@encrypted, +20:u09:Monitoring/Email, +22:u0B::/sbanks@encrypted, +20:u14:sbanks@encrypted, +20:u05:sbanks@encrypted, +12:u08:Fernando, +22:u0A::/sbanks@encrypted, +22:u0B:sbanks@encrypted/., +20:u0C:Monitoring/Email, +20:u13:sbanks@encrypted, +20:u04:sbanks@encrypted, +12:u07:Fernando, +22:u09::/sbanks@encrypted, +22:u0A:sbanks@encrypted/., +22:u0D:sbanks@encrypted/0, +20:u12:sbanks@encrypted, +6:u21:sb, +7:u22:sba, +8:u23:sban, +8:u33:pted, +20:u03:sbanks@encrypted, +12:u06:Fernando, +22:u09:sbanks@encrypted/., +16:u0B:net/Fernando, +22:u0C::/sbanks@encrypted, +20:u11:sbanks@encrypted, +12:u14:fernando, +20:u02:sbanks@encrypted, +12:u05:Fernando, +16:u0A:net/Fernando, +21:u0B:Fernando/Calabria, +22:u0C:sbanks@encrypted/., +20:u10:sbanks@encrypted, +12:u13:fernando, +20:u01:sbanks@encrypted, +12:u04:Fernando, +16:u09:net/Fernando, +21:u0A:Fernando/Calabria, +18:u0B:Calabria/Cisco, +14:u0D:Fernando/0, +12:u12:fernando, +7:u22:Fer, +8:u23:Fern, +6:u31:do, +7:u32:ndo, +8:u33:ando, +20:u00:sbanks@encrypted, +12:u03:Fernando, +21:u09:Fernando/Calabria, +18:u0A:Calabria/Cisco, +16:u0C:net/Fernando, +12:u11:fernando, +12:u02:Fernando, +18:u08:fcalabri@cisco, +18:u09:Calabria/Cisco, +17:u0B:Systems/Email, +21:u0C:Fernando/Calabria, +12:u10:fernando, +12:u01:Fernando, +18:u07:fcalabri@cisco, +17:u0A:Systems/Email, +18:u0C:Calabria/Cisco, +12:u00:Fernando, +18:u06:fcalabri@cisco, +17:u09:Systems/Email, +20:u0B::/fcalabri@cisco, +18:u14:fcalabri@cisco, +18:u05:fcalabri@cisco, +8:u08:Gery, +20:u0A::/fcalabri@cisco, +20:u0B:fcalabri@cisco/., +17:u0C:Systems/Email, +18:u13:fcalabri@cisco, +18:u04:fcalabri@cisco, +8:u07:Gery, +20:u09::/fcalabri@cisco, +20:u0A:fcalabri@cisco/., +20:u0D:fcalabri@cisco/0, +18:u12:fcalabri@cisco, +6:u21:fc, +7:u22:fca, +8:u23:fcal, +18:u03:fcalabri@cisco, +8:u06:Gery, +20:u09:fcalabri@cisco/., +12:u0B:com/Gery, +20:u0C::/fcalabri@cisco, +18:u11:fcalabri@cisco, +8:u14:gery, +18:u02:fcalabri@cisco, +8:u05:Gery, +12:u0A:com/Gery, +16:u0B:Gery/Czirjak, +20:u0C:fcalabri@cisco/., +18:u10:fcalabri@cisco, +8:u13:gery, +18:u01:fcalabri@cisco, +8:u04:Gery, +12:u09:com/Gery, +16:u0A:Gery/Czirjak, +19:u0B:Czirjak/Juniper, +10:u0D:Gery/0, +8:u12:gery, +6:u21:Ge, +7:u22:Ger, +8:u23:Gery, +8:u33:Gery, +18:u00:fcalabri@cisco, +8:u03:Gery, +16:u09:Gery/Czirjak, +19:u0A:Czirjak/Juniper, +12:u0C:com/Gery, +8:u11:gery, +8:u02:Gery, +20:u08:gczirjak@juniper, +19:u09:Czirjak/Juniper, +18:u0B:Networks/Email, +16:u0C:Gery/Czirjak, +8:u10:gery, +8:u01:Gery, +20:u07:gczirjak@juniper, +18:u0A:Networks/Email, +19:u0C:Czirjak/Juniper, +8:u00:Gery, +20:u06:gczirjak@juniper, +18:u09:Networks/Email, +22:u0B::/gczirjak@juniper, +20:u14:gczirjak@juniper, +20:u05:gczirjak@juniper, +10:u08:Ramdas, +22:u0A::/gczirjak@juniper, +22:u0B:gczirjak@juniper/., +18:u0C:Networks/Email, +20:u13:gczirjak@juniper, +20:u04:gczirjak@juniper, +10:u07:Ramdas, +22:u09::/gczirjak@juniper, +22:u0A:gczirjak@juniper/., +22:u0D:gczirjak@juniper/0, +20:u12:gczirjak@juniper, +6:u21:gc, +7:u22:gcz, +8:u23:gczi, +20:u03:gczirjak@juniper, +10:u06:Ramdas, +22:u09:gczirjak@juniper/., +14:u0B:net/Ramdas, +22:u0C::/gczirjak@juniper, +20:u11:gczirjak@juniper, +10:u14:ramdas, +20:u02:gczirjak@juniper, +10:u05:Ramdas, +14:u0A:net/Ramdas, +17:u0B:Ramdas/Machat, +22:u0C:gczirjak@juniper/., +20:u10:gczirjak@juniper, +10:u13:ramdas, +20:u01:gczirjak@juniper, +10:u04:Ramdas, +14:u09:net/Ramdas, +17:u0A:Ramdas/Machat, +12:u0D:Ramdas/0, +10:u12:ramdas, +7:u22:Ram, +8:u23:Ramd, +7:u32:das, +8:u33:mdas, +20:u00:gczirjak@juniper, +10:u03:Ramdas, +17:u09:Ramdas/Machat, +14:u0C:net/Ramdas, +10:u11:ramdas, +10:u02:Ramdas, +19:u08:rmachat@juniper, +17:u0C:Ramdas/Machat, +10:u10:ramdas, +10:u01:Ramdas, +19:u07:rmachat@juniper, +10:u00:Ramdas, +19:u06:rmachat@juniper, +21:u0B::/rmachat@juniper, +19:u14:rmachat@juniper, +19:u05:rmachat@juniper, +21:u0A::/rmachat@juniper, +21:u0B:rmachat@juniper/., +19:u13:rmachat@juniper, +19:u04:rmachat@juniper, +21:u09::/rmachat@juniper, +21:u0A:rmachat@juniper/., +21:u0D:rmachat@juniper/0, +19:u12:rmachat@juniper, +6:u21:rm, +7:u22:rma, +8:u23:rmac, +19:u03:rmachat@juniper, +21:u09:rmachat@juniper/., +21:u0C::/rmachat@juniper, +19:u11:rmachat@juniper, +19:u02:rmachat@juniper, +21:u0C:rmachat@juniper/., +19:u10:rmachat@juniper, +12:u08:Kompella, +13:u09:_x-1/MPLS, +11:u0A:MPLS/WG, +8:u0B:WG/K, +13:u0D:MPLS/_x-1, +15:uA4:_x-1/ALLCAP, +12:u07:Kompella, +11:u09:MPLS/WG, +8:u0A:WG/K, +13:u0C:_x-1/MPLS, +12:u06:Kompella, +8:u09:WG/K, +14:u0B:./Kompella, +11:u0C:MPLS/WG, +12:u14:kompella, +12:u05:Kompella, +14:u0A:./Kompella, +21:u0B:Kompella/Internet, +8:u0C:WG/K, +12:u13:kompella, +12:u04:Kompella, +14:u09:./Kompella, +21:u0A:Kompella/Internet, +14:u0D:Kompella/0, +12:u12:kompella, +6:u21:Ko, +7:u22:Kom, +8:u23:Komp, +6:u31:la, +7:u32:lla, +8:u33:ella, +12:u03:Kompella, +21:u09:Kompella/Internet, +14:u0C:./Kompella, +12:u11:kompella, +12:u02:Kompella, +17:u0B:Draft/Juniper, +21:u0C:Kompella/Internet, +12:u10:kompella, +12:u01:Kompella, +17:u0A:Draft/Juniper, +12:u00:Kompella, +17:u09:Draft/Juniper, +14:u0B:Networks/,, +14:u0A:Networks/,, +17:u0C:Draft/Juniper, +14:u09:Networks/,, +14:u0C:Networks/,, +13:u08:Contreras, +11:u0B:Track/L, +13:u07:Contreras, +11:u0A:Track/L, +13:u06:Contreras, +11:u09:Track/L, +15:u0B:./Contreras, +13:u14:contreras, +13:u05:Contreras, +9:u08:April, +15:u0A:./Contreras, +21:u0B:Contreras/Expires, +11:u0C:Track/L, +13:u13:contreras, +13:u04:Contreras, +9:u07:April, +6:u08:25, +15:u09:./Contreras, +21:u0A:Contreras/Expires, +15:u0D:Contreras/0, +13:u12:contreras, +7:u32:ras, +8:u33:eras, +13:u03:Contreras, +9:u06:April, +6:u07:25, +21:u09:Contreras/Expires, +11:u0B::/April, +15:u0C:./Contreras, +13:u11:contreras, +9:u14:april, +13:u02:Contreras, +9:u05:April, +6:u06:25, +11:u0A::/April, +12:u0B:April/25, +21:u0C:Contreras/Expires, +13:u10:contreras, +9:u13:april, +6:u14:25, +13:u01:Contreras, +9:u04:April, +6:u05:25, +14:u08:Telefonica, +11:u09::/April, +12:u0A:April/25, +8:u0B:25/,, +11:u0D:April/0, +9:u12:april, +6:u13:25, +6:u21:Ap, +7:u22:Apr, +8:u23:Apri, +7:u32:ril, +8:u33:pril, +13:u00:Contreras, +9:u03:April, +6:u04:25, +14:u07:Telefonica, +12:u09:April/25, +8:u0A:25/,, +11:u0C::/April, +8:u0D:25/0, +9:u11:april, +6:u12:25, +6:u21:25, +6:u22:25, +6:u23:25, +6:u32:25, +6:u33:25, +9:u02:April, +6:u03:25, +14:u06:Telefonica, +8:u09:25/,, +19:u0B:2020/Telefonica, +12:u0C:April/25, +9:u10:april, +6:u11:25, +14:u14:telefonica, +9:u01:April, +6:u02:25, +14:u05:Telefonica, +19:u0A:2020/Telefonica, +22:u0B:Telefonica/October, +8:u0C:25/,, +6:u10:25, +14:u13:telefonica, +9:u00:April, +6:u01:25, +14:u04:Telefonica, +19:u09:2020/Telefonica, +22:u0A:Telefonica/October, +14:u0B:October/23, +16:u0D:Telefonica/0, +14:u12:telefonica, +8:u33:nica, +6:u00:25, +14:u03:Telefonica, +13:u08:Resilient, +22:u09:Telefonica/October, +14:u0A:October/23, +19:u0C:2020/Telefonica, +14:u11:telefonica, +14:u02:Telefonica, +13:u07:Resilient, +14:u09:October/23, +22:u0C:Telefonica/October, +14:u10:telefonica, +14:u01:Telefonica, +13:u06:Resilient, +9:u08:Rings, +18:u0B:2019/Resilient, +14:u0C:October/23, +13:u14:resilient, +14:u00:Telefonica, +13:u05:Resilient, +9:u07:Rings, +18:u0A:2019/Resilient, +18:u0B:Resilient/MPLS, +13:u13:resilient, +13:u04:Resilient, +9:u06:Rings, +18:u09:2019/Resilient, +18:u0A:Resilient/MPLS, +14:u0B:MPLS/Rings, +15:u0D:Resilient/0, +13:u12:resilient, +9:u14:rings, +8:u23:Resi, +13:u03:Resilient, +9:u05:Rings, +18:u09:Resilient/MPLS, +14:u0A:MPLS/Rings, +15:u0B:Rings/draft, +18:u0C:2019/Resilient, +13:u11:resilient, +9:u13:rings, +13:u02:Resilient, +9:u04:Rings, +14:u09:MPLS/Rings, +15:u0A:Rings/draft, +18:u0C:Resilient/MPLS, +11:u0D:Rings/0, +13:u10:resilient, +9:u12:rings, +6:u21:Ri, +7:u22:Rin, +8:u23:Ring, +6:u31:gs, +7:u32:ngs, +8:u33:ings, +13:u01:Resilient, +9:u03:Rings, +15:u09:Rings/draft, +14:u0C:MPLS/Rings, +9:u11:rings, +13:u00:Resilient, +9:u02:Rings, +15:u0C:Rings/draft, +9:u10:rings, +9:u01:Rings, +7:u08:rmr, +9:u00:Rings, +7:u07:rmr, +7:u06:rmr, +6:u08:12, +9:u0B:-/rmr, +7:u14:rmr, +7:u05:rmr, +6:u07:12, +9:u0A:-/rmr, +9:u0B:rmr/-, +7:u13:rmr, +7:u04:rmr, +6:u06:12, +9:u09:-/rmr, +9:u0A:rmr/-, +8:u0B:-/12, +9:u0D:rmr/1, +7:u12:rmr, +6:u14:12, +7:u22:rmr, +7:u23:rmr, +6:u31:mr, +7:u32:rmr, +7:u33:rmr, +7:u03:rmr, +6:u05:12, +9:u09:rmr/-, +8:u0A:-/12, +15:u0B:12/Abstract, +9:u0C:-/rmr, +7:u11:rmr, +6:u13:12, +7:u02:rmr, +6:u04:12, +8:u09:-/12, +15:u0A:12/Abstract, +9:u0C:rmr/-, +8:u0D:12/1, +7:u10:rmr, +6:u12:12, +6:u21:12, +6:u22:12, +6:u23:12, +6:u32:12, +6:u33:12, +7:u01:rmr, +6:u03:12, +15:u09:12/Abstract, +8:u0C:-/12, +6:u11:12, +7:u00:rmr, +6:u02:12, +15:u0C:12/Abstract, +6:u10:12, +6:u01:12, +6:u00:12, +11:u0B:the/use, +11:u0A:the/use, +10:u0B:use/of, +11:u09:the/use, +10:u0A:use/of, +10:u09:use/of, +12:u0B:the/MPLS, +11:u0C:the/use, +12:u0A:the/MPLS, +16:u0B:MPLS/control, +10:u0C:use/of, +10:u08:planes, +12:u09:the/MPLS, +16:u0A:MPLS/control, +15:u0B:control/and, +10:u07:planes, +16:u09:MPLS/control, +15:u0A:control/and, +12:u0C:the/MPLS, +10:u06:planes, +8:u08:ring, +15:u09:control/and, +15:u0B:data/planes, +16:u0C:MPLS/control, +10:u14:planes, +10:u05:planes, +8:u07:ring, +14:u08:topologies, +15:u0A:data/planes, +13:u0B:planes/on, +15:u0C:control/and, +10:u13:planes, +10:u04:planes, +8:u06:ring, +14:u07:topologies, +15:u09:data/planes, +13:u0A:planes/on, +11:u0B:on/ring, +12:u0D:planes/0, +10:u12:planes, +8:u14:ring, +10:u03:planes, +8:u05:ring, +14:u06:topologies, +13:u09:planes/on, +11:u0A:on/ring, +19:u0B:ring/topologies, +15:u0C:data/planes, +10:u11:planes, +8:u13:ring, +14:u14:topologies, +10:u02:planes, +8:u04:ring, +14:u05:topologies, +11:u09:on/ring, +19:u0A:ring/topologies, +16:u0B:topologies/., +13:u0C:planes/on, +10:u0D:ring/0, +10:u10:planes, +8:u12:ring, +14:u13:topologies, +7:u22:rin, +8:u23:ring, +10:u01:planes, +8:u03:ring, +14:u04:topologies, +19:u09:ring/topologies, +16:u0A:topologies/., +11:u0C:on/ring, +16:u0D:topologies/0, +8:u11:ring, +14:u12:topologies, +8:u23:topo, +10:u00:planes, +8:u02:ring, +14:u03:topologies, +11:u08:special, +16:u09:topologies/., +16:u0B:It/describes, +19:u0C:ring/topologies, +8:u10:ring, +14:u11:topologies, +8:u01:ring, +14:u02:topologies, +11:u07:special, +10:u08:nature, +16:u0A:It/describes, +16:u0C:topologies/., +14:u10:topologies, +8:u00:ring, +14:u01:topologies, +11:u06:special, +10:u07:nature, +16:u09:It/describes, +15:u0B:the/special, +11:u14:special, +14:u00:topologies, +11:u05:special, +10:u06:nature, +9:u08:rings, +15:u0A:the/special, +18:u0B:special/nature, +16:u0C:It/describes, +11:u13:special, +10:u14:nature, +11:u04:special, +10:u05:nature, +9:u07:rings, +15:u09:the/special, +18:u0A:special/nature, +13:u0B:nature/of, +13:u0D:special/0, +11:u12:special, +10:u13:nature, +11:u03:special, +10:u04:nature, +9:u06:rings, +18:u09:special/nature, +13:u0A:nature/of, +12:u0B:of/rings, +15:u0C:the/special, +12:u0D:nature/0, +11:u11:special, +10:u12:nature, +7:u22:nat, +8:u23:natu, +11:u02:special, +10:u03:nature, +9:u05:rings, +12:u08:proceeds, +13:u09:nature/of, +12:u0A:of/rings, +11:u0B:rings/,, +18:u0C:special/nature, +11:u10:special, +10:u11:nature, +11:u01:special, +10:u02:nature, +9:u04:rings, +12:u07:proceeds, +12:u09:of/rings, +11:u0A:rings/,, +13:u0C:nature/of, +11:u0D:rings/0, +10:u10:nature, +11:u00:special, +10:u01:nature, +9:u03:rings, +12:u06:proceeds, +8:u08:show, +11:u09:rings/,, +16:u0B:and/proceeds, +12:u0C:of/rings, +12:u14:proceeds, +10:u00:nature, +9:u02:rings, +12:u05:proceeds, +8:u07:show, +16:u0A:and/proceeds, +15:u0B:proceeds/to, +11:u0C:rings/,, +12:u13:proceeds, +9:u01:rings, +12:u04:proceeds, +8:u06:show, +16:u09:and/proceeds, +15:u0A:proceeds/to, +11:u0B:to/show, +14:u0D:proceeds/0, +12:u12:proceeds, +8:u14:show, +7:u32:eds, +8:u33:eeds, +9:u00:rings, +12:u03:proceeds, +8:u05:show, +15:u09:proceeds/to, +11:u0A:to/show, +12:u0B:show/how, +16:u0C:and/proceeds, +12:u11:proceeds, +8:u13:show, +12:u02:proceeds, +8:u04:show, +11:u09:to/show, +12:u0A:show/how, +12:u0B:how/MPLS, +15:u0C:proceeds/to, +10:u0D:show/0, +12:u10:proceeds, +8:u12:show, +8:u23:show, +8:u33:show, +12:u01:proceeds, +8:u03:show, +12:u09:show/how, +12:u0A:how/MPLS, +12:u0B:MPLS/can, +11:u0C:to/show, +8:u11:show, +12:u00:proceeds, +8:u02:show, +12:u09:how/MPLS, +12:u0A:MPLS/can, +12:u0C:show/how, +8:u10:show, +8:u01:show, +12:u09:MPLS/can, +18:u0B:be/effectively, +12:u0C:how/MPLS, +8:u00:show, +18:u0A:be/effectively, +20:u0B:effectively/used, +12:u0C:MPLS/can, +18:u09:be/effectively, +20:u0A:effectively/used, +11:u0B:used/in, +20:u09:effectively/used, +11:u0A:used/in, +11:u0B:in/such, +18:u0C:be/effectively, +11:u09:used/in, +11:u0A:in/such, +19:u0B:such/topologies, +20:u0C:effectively/used, +11:u09:in/such, +19:u0A:such/topologies, +11:u0C:used/in, +19:u09:such/topologies, +11:u0C:in/such, +19:u0C:such/topologies, +17:u0B:describes/how, +17:u0A:describes/how, +14:u08:configured, +17:u09:describes/how, +14:u0B:MPLS/rings, +14:u07:configured, +14:u0A:MPLS/rings, +13:u0B:rings/are, +17:u0C:describes/how, +14:u06:configured, +8:u08:auto, +14:u09:MPLS/rings, +13:u0A:rings/are, +18:u0B:are/configured, +14:u14:configured, +14:u05:configured, +8:u07:auto, +13:u09:rings/are, +18:u0A:are/configured, +16:u0B:configured/,, +14:u0C:MPLS/rings, +14:u13:configured, +14:u04:configured, +8:u06:auto, +14:u08:discovered, +18:u09:are/configured, +16:u0A:configured/,, +10:u0B:,/auto, +13:u0C:rings/are, +16:u0D:configured/0, +14:u12:configured, +8:u14:auto, +8:u33:ured, +14:u03:configured, +8:u05:auto, +14:u07:discovered, +16:u09:configured/,, +10:u0A:,/auto, +10:u0B:auto/-, +18:u0C:are/configured, +14:u11:configured, +8:u13:auto, +14:u02:configured, +8:u04:auto, +14:u06:discovered, +12:u08:signaled, +10:u09:,/auto, +10:u0A:auto/-, +16:u0B:-/discovered, +16:u0C:configured/,, +10:u0D:auto/0, +14:u10:configured, +8:u12:auto, +14:u14:discovered, +8:u23:auto, +7:u32:uto, +8:u33:auto, +14:u01:configured, +8:u03:auto, +14:u05:discovered, +12:u07:signaled, +10:u09:auto/-, +16:u0A:-/discovered, +18:u0B:discovered/and, +10:u0C:,/auto, +8:u11:auto, +14:u13:discovered, +14:u00:configured, +8:u02:auto, +14:u04:discovered, +12:u06:signaled, +16:u09:-/discovered, +18:u0A:discovered/and, +16:u0B:and/signaled, +10:u0C:auto/-, +16:u0D:discovered/1, +8:u10:auto, +14:u12:discovered, +12:u14:signaled, +8:u23:disc, +8:u01:auto, +14:u03:discovered, +12:u05:signaled, +18:u09:discovered/and, +16:u0A:and/signaled, +14:u0B:signaled/,, +16:u0C:-/discovered, +14:u11:discovered, +12:u13:signaled, +8:u00:auto, +14:u02:discovered, +12:u04:signaled, +16:u09:and/signaled, +14:u0A:signaled/,, +18:u0C:discovered/and, +14:u0D:signaled/0, +14:u10:discovered, +12:u12:signaled, +8:u33:aled, +14:u01:discovered, +12:u03:signaled, +14:u09:signaled/,, +16:u0C:and/signaled, +12:u11:signaled, +14:u00:discovered, +12:u02:signaled, +14:u0C:signaled/,, +12:u10:signaled, +12:u01:signaled, +10:u0B:as/how, +12:u00:signaled, +10:u0A:as/how, +9:u08:works, +10:u09:as/how, +12:u0B:the/data, +9:u07:works, +12:u0A:the/data, +10:u0C:as/how, +9:u06:works, +13:u08:Companion, +12:u09:the/data, +15:u0B:plane/works, +9:u14:works, +9:u05:works, +13:u07:Companion, +15:u0A:plane/works, +11:u0B:works/., +12:u0C:the/data, +9:u13:works, +9:u04:works, +13:u06:Companion, +15:u09:plane/works, +11:u0A:works/., +15:u0B:./Companion, +11:u0D:works/0, +9:u12:works, +13:u14:companion, +9:u03:works, +13:u05:Companion, +11:u09:works/., +15:u0A:./Companion, +23:u0B:Companion/documents, +15:u0C:plane/works, +9:u11:works, +13:u13:companion, +9:u02:works, +13:u04:Companion, +11:u08:details, +15:u09:./Companion, +23:u0A:Companion/documents, +22:u0B:documents/describe, +11:u0C:works/., +15:u0D:Companion/0, +9:u10:works, +13:u12:companion, +8:u33:nion, +9:u01:works, +13:u03:Companion, +11:u07:details, +23:u09:Companion/documents, +22:u0A:documents/describe, +16:u0B:describe/the, +15:u0C:./Companion, +13:u11:companion, +9:u00:works, +13:u02:Companion, +11:u06:details, +13:u08:discovery, +22:u09:documents/describe, +16:u0A:describe/the, +15:u0B:the/details, +23:u0C:Companion/documents, +13:u10:companion, +11:u14:details, +13:u01:Companion, +11:u05:details, +13:u07:discovery, +16:u09:describe/the, +15:u0A:the/details, +14:u0B:details/of, +22:u0C:documents/describe, +11:u13:details, +13:u00:Companion, +11:u04:details, +13:u06:discovery, +13:u08:signaling, +15:u09:the/details, +14:u0A:details/of, +16:u0B:of/discovery, +16:u0C:describe/the, +13:u0D:details/0, +11:u12:details, +13:u14:discovery, +7:u22:det, +8:u23:deta, +7:u32:ils, +8:u33:ails, +11:u03:details, +13:u05:discovery, +13:u07:signaling, +14:u09:details/of, +16:u0A:of/discovery, +17:u0B:discovery/and, +15:u0C:the/details, +11:u11:details, +13:u13:discovery, +11:u02:details, +13:u04:discovery, +13:u06:signaling, +16:u09:of/discovery, +17:u0A:discovery/and, +17:u0B:and/signaling, +14:u0C:details/of, +15:u0D:discovery/0, +11:u10:details, +13:u12:discovery, +13:u14:signaling, +11:u01:details, +13:u03:discovery, +13:u05:signaling, +17:u09:discovery/and, +17:u0A:and/signaling, +17:u0B:signaling/for, +16:u0C:of/discovery, +13:u11:discovery, +13:u13:signaling, +11:u00:details, +13:u02:discovery, +13:u04:signaling, +17:u09:and/signaling, +17:u0A:signaling/for, +16:u0B:for/specific, +17:u0C:discovery/and, +15:u0D:signaling/0, +13:u10:discovery, +13:u12:signaling, +13:u01:discovery, +13:u03:signaling, +16:u08:Requirements, +17:u09:signaling/for, +16:u0A:for/specific, +22:u0B:specific/protocols, +17:u0C:and/signaling, +13:u11:signaling, +13:u00:discovery, +13:u02:signaling, +16:u07:Requirements, +12:u08:Language, +16:u09:for/specific, +22:u0A:specific/protocols, +17:u0C:signaling/for, +13:u10:signaling, +13:u01:signaling, +16:u06:Requirements, +12:u07:Language, +22:u09:specific/protocols, +18:u0B:./Requirements, +16:u0C:for/specific, +13:u00:signaling, +16:u05:Requirements, +12:u06:Language, +7:u08:key, +18:u0A:./Requirements, +25:u0B:Requirements/Language, +22:u0C:specific/protocols, +12:u14:language, +16:u04:Requirements, +12:u05:Language, +7:u07:key, +9:u08:words, +18:u09:./Requirements, +25:u0A:Requirements/Language, +16:u0B:Language/The, +18:u0D:Requirements/0, +12:u13:language, +16:u03:Requirements, +12:u04:Language, +7:u06:key, +9:u07:words, +25:u09:Requirements/Language, +16:u0A:Language/The, +11:u0B:The/key, +18:u0C:./Requirements, +14:u0D:Language/0, +12:u12:language, +7:u14:key, +6:u21:La, +7:u22:Lan, +8:u23:Lang, +8:u33:uage, +16:u02:Requirements, +12:u03:Language, +7:u05:key, +9:u06:words, +8:u08:MUST, +16:u09:Language/The, +11:u0A:The/key, +13:u0B:key/words, +25:u0C:Requirements/Language, +12:u11:language, +7:u13:key, +9:u14:words, +16:u01:Requirements, +12:u02:Language, +7:u04:key, +9:u05:words, +8:u07:MUST, +11:u09:The/key, +13:u0A:key/words, +11:u0B:words/", +16:u0C:Language/The, +9:u0D:key/0, +12:u10:language, +7:u12:key, +9:u13:words, +6:u21:ke, +7:u22:key, +7:u23:key, +7:u32:key, +7:u33:key, +16:u00:Requirements, +12:u01:Language, +7:u03:key, +9:u04:words, +8:u06:MUST, +13:u09:key/words, +11:u0A:words/", +10:u0B:"/MUST, +11:u0C:The/key, +11:u0D:words/0, +7:u11:key, +9:u12:words, +8:u23:word, +8:u33:ords, +12:u00:Language, +7:u02:key, +9:u03:words, +8:u05:MUST, +11:u09:words/", +10:u0A:"/MUST, +10:u0B:MUST/", +13:u0C:key/words, +7:u10:key, +9:u11:words, +7:u01:key, +9:u02:words, +8:u04:MUST, +10:u09:"/MUST, +10:u0A:MUST/", +7:u0B:"/,, +11:u0C:words/", +10:u0D:MUST/0, +9:u10:words, +7:u22:MUS, +8:u23:MUST, +6:u31:ST, +7:u32:UST, +8:u33:MUST, +7:u00:key, +9:u01:words, +8:u03:MUST, +7:u08:NOT, +10:u09:MUST/", +7:u0A:"/,, +7:u0B:,/", +10:u0C:"/MUST, +9:u00:words, +8:u02:MUST, +7:u07:NOT, +7:u09:"/,, +7:u0A:,/", +10:u0C:MUST/", +8:u01:MUST, +7:u06:NOT, +7:u09:,/", +12:u0B:MUST/NOT, +7:u0C:"/,, +8:u00:MUST, +7:u05:NOT, +12:u0A:MUST/NOT, +9:u0B:NOT/", +7:u0C:,/", +7:u04:NOT, +12:u08:REQUIRED, +12:u09:MUST/NOT, +9:u0A:NOT/", +9:u0D:NOT/0, +7:u22:NOT, +7:u23:NOT, +6:u31:OT, +7:u32:NOT, +7:u33:NOT, +7:u03:NOT, +12:u07:REQUIRED, +9:u09:NOT/", +12:u0C:MUST/NOT, +7:u02:NOT, +12:u06:REQUIRED, +14:u0B:"/REQUIRED, +9:u0C:NOT/", +12:u14:required, +7:u01:NOT, +12:u05:REQUIRED, +14:u0A:"/REQUIRED, +14:u0B:REQUIRED/", +12:u13:required, +7:u00:NOT, +12:u04:REQUIRED, +9:u08:SHALL, +14:u09:"/REQUIRED, +14:u0A:REQUIRED/", +14:u0D:REQUIRED/0, +12:u12:required, +6:u21:RE, +7:u22:REQ, +8:u23:REQU, +6:u31:ED, +7:u32:RED, +8:u33:IRED, +12:u03:REQUIRED, +9:u07:SHALL, +14:u09:REQUIRED/", +14:u0C:"/REQUIRED, +12:u11:required, +12:u02:REQUIRED, +9:u06:SHALL, +11:u0B:"/SHALL, +14:u0C:REQUIRED/", +12:u10:required, +9:u14:shall, +12:u01:REQUIRED, +9:u05:SHALL, +11:u0A:"/SHALL, +11:u0B:SHALL/", +9:u13:shall, +12:u00:REQUIRED, +9:u04:SHALL, +11:u09:"/SHALL, +11:u0A:SHALL/", +11:u0D:SHALL/0, +9:u12:shall, +8:u23:SHAL, +6:u31:LL, +7:u32:ALL, +8:u33:HALL, +9:u03:SHALL, +11:u09:SHALL/", +11:u0C:"/SHALL, +9:u11:shall, +9:u02:SHALL, +11:u0C:SHALL/", +9:u10:shall, +9:u01:SHALL, +13:u0B:SHALL/NOT, +9:u00:SHALL, +13:u0A:SHALL/NOT, +10:u08:SHOULD, +13:u09:SHALL/NOT, +10:u07:SHOULD, +13:u0C:SHALL/NOT, +10:u06:SHOULD, +12:u0B:"/SHOULD, +10:u05:SHOULD, +12:u0A:"/SHOULD, +12:u0B:SHOULD/", +10:u04:SHOULD, +12:u09:"/SHOULD, +12:u0A:SHOULD/", +12:u0D:SHOULD/0, +7:u22:SHO, +8:u23:SHOU, +6:u31:LD, +7:u32:ULD, +8:u33:OULD, +10:u03:SHOULD, +12:u09:SHOULD/", +12:u0C:"/SHOULD, +10:u02:SHOULD, +12:u0C:SHOULD/", +10:u01:SHOULD, +14:u0B:SHOULD/NOT, +10:u00:SHOULD, +14:u0A:SHOULD/NOT, +15:u08:RECOMMENDED, +14:u09:SHOULD/NOT, +15:u07:RECOMMENDED, +14:u0C:SHOULD/NOT, +15:u06:RECOMMENDED, +17:u0B:"/RECOMMENDED, +15:u14:recommended, +15:u05:RECOMMENDED, +17:u0A:"/RECOMMENDED, +17:u0B:RECOMMENDED/", +15:u13:recommended, +15:u04:RECOMMENDED, +7:u08:MAY, +17:u09:"/RECOMMENDED, +17:u0A:RECOMMENDED/", +17:u0D:RECOMMENDED/0, +15:u12:recommended, +7:u22:REC, +8:u23:RECO, +7:u32:DED, +8:u33:NDED, +15:u03:RECOMMENDED, +7:u07:MAY, +17:u09:RECOMMENDED/", +17:u0C:"/RECOMMENDED, +15:u11:recommended, +15:u02:RECOMMENDED, +7:u06:MAY, +9:u0B:"/MAY, +17:u0C:RECOMMENDED/", +15:u10:recommended, +15:u01:RECOMMENDED, +7:u05:MAY, +9:u0A:"/MAY, +9:u0B:MAY/", +15:u00:RECOMMENDED, +7:u04:MAY, +9:u09:"/MAY, +9:u0A:MAY/", +9:u0D:MAY/0, +7:u22:MAY, +7:u23:MAY, +5:u30:Y, +6:u31:AY, +7:u32:MAY, +7:u33:MAY, +7:u03:MAY, +12:u08:OPTIONAL, +9:u09:MAY/", +9:u0C:"/MAY, +7:u02:MAY, +12:u07:OPTIONAL, +9:u0B:and/", +9:u0C:MAY/", +7:u01:MAY, +12:u06:OPTIONAL, +9:u0A:and/", +14:u0B:"/OPTIONAL, +7:u00:MAY, +12:u05:OPTIONAL, +9:u09:and/", +14:u0A:"/OPTIONAL, +14:u0B:OPTIONAL/", +12:u04:OPTIONAL, +14:u09:"/OPTIONAL, +14:u0A:OPTIONAL/", +8:u0B:"/in, +9:u0C:and/", +14:u0D:OPTIONAL/0, +6:u21:OP, +7:u22:OPT, +8:u23:OPTI, +6:u31:AL, +7:u32:NAL, +8:u33:ONAL, +12:u03:OPTIONAL, +14:u09:OPTIONAL/", +8:u0A:"/in, +11:u0B:in/this, +14:u0C:"/OPTIONAL, +12:u02:OPTIONAL, +8:u09:"/in, +11:u0A:in/this, +14:u0C:OPTIONAL/", +12:u01:OPTIONAL, +11:u09:in/this, +16:u0B:document/are, +8:u0C:"/in, +12:u00:OPTIONAL, +15:u08:interpreted, +16:u0A:document/are, +10:u0B:are/to, +11:u0C:in/this, +15:u07:interpreted, +16:u09:document/are, +10:u0A:are/to, +15:u06:interpreted, +10:u09:are/to, +18:u0B:be/interpreted, +16:u0C:document/are, +15:u14:interpreted, +15:u05:interpreted, +18:u0A:be/interpreted, +18:u0B:interpreted/as, +10:u0C:are/to, +15:u13:interpreted, +15:u04:interpreted, +18:u09:be/interpreted, +18:u0A:interpreted/as, +17:u0D:interpreted/0, +15:u12:interpreted, +15:u03:interpreted, +11:u08:RFC2119, +18:u09:interpreted/as, +18:u0C:be/interpreted, +15:u11:interpreted, +15:u02:interpreted, +11:u07:RFC2119, +8:u0B:in/[, +18:u0C:interpreted/as, +15:u10:interpreted, +15:u01:interpreted, +11:u06:RFC2119, +8:u0A:in/[, +13:u0B:[/RFC2119, +11:u14:rfc2119, +15:u00:interpreted, +11:u05:RFC2119, +8:u09:in/[, +13:u0A:[/RFC2119, +13:u0B:RFC2119/], +11:u13:rfc2119, +11:u04:RFC2119, +13:u09:[/RFC2119, +13:u0A:RFC2119/], +7:u0B:]/., +8:u0C:in/[, +13:u0D:RFC2119/0, +11:u12:rfc2119, +8:u23:RFC2, +7:u32:119, +8:u33:2119, +11:u03:RFC2119, +13:u09:RFC2119/], +7:u0A:]/., +13:u0C:[/RFC2119, +11:u11:rfc2119, +11:u02:RFC2119, +7:u09:]/., +13:u0C:RFC2119/], +11:u10:rfc2119, +11:u01:RFC2119, +7:u0C:]/., +11:u00:RFC2119, +12:u0B:on/April, +12:u0A:on/April, +12:u09:on/April, +12:u0C:on/April, +5:u08:&, +5:u07:&, +5:u06:&, +14:u0B:Kompella/&, +5:u14:&, +5:u05:&, +14:u0A:Kompella/&, +15:u0B:&/Contreras, +5:u13:&, +5:u04:&, +14:u09:Kompella/&, +15:u0A:&/Contreras, +7:u0D:&/0, +5:u12:&, +5:u20:&, +5:u21:&, +5:u22:&, +5:u23:&, +5:u30:&, +5:u31:&, +5:u32:&, +5:u33:&, +5:u03:&, +15:u09:&/Contreras, +17:u0B:Expires/April, +14:u0C:Kompella/&, +5:u11:&, +5:u02:&, +17:u0A:Expires/April, +15:u0C:&/Contreras, +5:u10:&, +5:u01:&, +17:u09:Expires/April, +5:u00:&, +17:u0C:Expires/April, +19:u0B:Draft/Resilient, +19:u0A:Draft/Resilient, +19:u09:Draft/Resilient, +17:u0B:Rings/October, +19:u0C:Draft/Resilient, +17:u0A:Rings/October, +16:u0B:October/2019, +17:u09:Rings/October, +16:u0A:October/2019, +16:u09:October/2019, +17:u0C:Rings/October, +16:u0C:October/2019, +11:u08:Kireeti, +11:u07:Kireeti, +11:u06:Kireeti, +13:u0B:./Kireeti, +11:u14:kireeti, +11:u05:Kireeti, +13:u0A:./Kireeti, +20:u0B:Kireeti/Kompella, +11:u13:kireeti, +11:u04:Kireeti, +13:u09:./Kireeti, +20:u0A:Kireeti/Kompella, +20:u0B:Kompella/Juniper, +13:u0D:Kireeti/0, +11:u12:kireeti, +6:u21:Ki, +7:u22:Kir, +8:u23:Kire, +6:u31:ti, +7:u32:eti, +8:u33:eeti, +11:u03:Kireeti, +20:u09:Kireeti/Kompella, +20:u0A:Kompella/Juniper, +13:u0C:./Kireeti, +11:u11:kireeti, +11:u02:Kireeti, +20:u09:Kompella/Juniper, +20:u0C:Kireeti/Kompella, +11:u10:kireeti, +11:u01:Kireeti, +8:u08:1133, +20:u0C:Kompella/Juniper, +11:u00:Kireeti, +8:u07:1133, +14:u08:Innovation, +8:u06:1133, +14:u07:Innovation, +7:u08:Way, +10:u0B:./1133, +8:u14:1133, +8:u05:1133, +14:u06:Innovation, +7:u07:Way, +13:u08:Sunnyvale, +10:u0A:./1133, +19:u0B:1133/Innovation, +8:u13:1133, +14:u14:innovation, +8:u04:1133, +14:u05:Innovation, +7:u06:Way, +13:u07:Sunnyvale, +10:u09:./1133, +19:u0A:1133/Innovation, +18:u0B:Innovation/Way, +10:u0D:1133/0, +8:u12:1133, +14:u13:innovation, +7:u14:way, +7:u22:113, +8:u23:1133, +6:u31:33, +7:u32:133, +8:u33:1133, +8:u03:1133, +14:u04:Innovation, +7:u05:Way, +13:u06:Sunnyvale, +6:u08:CA, +19:u09:1133/Innovation, +18:u0A:Innovation/Way, +17:u0B:Way/Sunnyvale, +10:u0C:./1133, +16:u0D:Innovation/0, +8:u11:1133, +14:u12:innovation, +7:u13:way, +13:u14:sunnyvale, +7:u22:Inn, +8:u23:Inno, +8:u02:1133, +14:u03:Innovation, +7:u04:Way, +13:u05:Sunnyvale, +6:u07:CA, +9:u08:94089, +18:u09:Innovation/Way, +17:u0A:Way/Sunnyvale, +15:u0B:Sunnyvale/,, +19:u0C:1133/Innovation, +9:u0D:Way/0, +8:u10:1133, +14:u11:innovation, +7:u12:way, +13:u13:sunnyvale, +6:u21:Wa, +7:u22:Way, +7:u23:Way, +7:u32:Way, +7:u33:Way, +8:u01:1133, +14:u02:Innovation, +7:u03:Way, +13:u04:Sunnyvale, +6:u06:CA, +9:u07:94089, +17:u09:Way/Sunnyvale, +15:u0A:Sunnyvale/,, +8:u0B:,/CA, +18:u0C:Innovation/Way, +15:u0D:Sunnyvale/0, +14:u10:innovation, +7:u11:way, +13:u12:sunnyvale, +6:u14:ca, +7:u22:Sun, +8:u23:Sunn, +7:u32:ale, +8:u33:vale, +8:u00:1133, +14:u01:Innovation, +7:u02:Way, +13:u03:Sunnyvale, +6:u05:CA, +9:u06:94089, +15:u09:Sunnyvale/,, +8:u0A:,/CA, +12:u0B:CA/94089, +17:u0C:Way/Sunnyvale, +7:u10:way, +13:u11:sunnyvale, +6:u13:ca, +9:u14:94089, +14:u00:Innovation, +7:u01:Way, +13:u02:Sunnyvale, +6:u04:CA, +9:u05:94089, +8:u09:,/CA, +12:u0A:CA/94089, +13:u0B:94089/USA, +15:u0C:Sunnyvale/,, +8:u0D:CA/0, +13:u10:sunnyvale, +6:u12:ca, +9:u13:94089, +6:u21:CA, +6:u22:CA, +6:u23:CA, +6:u31:CA, +6:u32:CA, +6:u33:CA, +7:u00:Way, +13:u01:Sunnyvale, +6:u03:CA, +9:u04:94089, +11:u08:kireeti, +12:u09:CA/94089, +13:u0A:94089/USA, +8:u0C:,/CA, +11:u0D:94089/0, +6:u11:ca, +9:u12:94089, +8:u23:9408, +6:u31:89, +7:u32:089, +8:u33:4089, +13:u00:Sunnyvale, +6:u02:CA, +9:u03:94089, +11:u07:kireeti, +13:u09:94089/USA, +12:u0C:CA/94089, +6:u10:ca, +9:u11:94089, +6:u01:CA, +9:u02:94089, +11:u06:kireeti, +18:u08:kompella@gmail, +13:u0B::/kireeti, +13:u0C:94089/USA, +9:u10:94089, +6:u00:CA, +9:u01:94089, +11:u05:kireeti, +18:u07:kompella@gmail, +13:u0A::/kireeti, +13:u0B:kireeti/., +9:u00:94089, +11:u04:kireeti, +18:u06:kompella@gmail, +13:u09::/kireeti, +13:u0A:kireeti/., +20:u0B:./kompella@gmail, +13:u0D:kireeti/0, +18:u14:kompella@gmail, +6:u21:ki, +7:u22:kir, +8:u23:kire, +11:u03:kireeti, +18:u05:kompella@gmail, +8:u08:Luis, +13:u09:kireeti/., +20:u0A:./kompella@gmail, +20:u0B:kompella@gmail/., +13:u0C::/kireeti, +18:u13:kompella@gmail, +11:u02:kireeti, +18:u04:kompella@gmail, +8:u07:Luis, +20:u09:./kompella@gmail, +20:u0A:kompella@gmail/., +13:u0C:kireeti/., +20:u0D:kompella@gmail/0, +18:u12:kompella@gmail, +6:u21:ko, +7:u22:kom, +8:u23:komp, +11:u01:kireeti, +18:u03:kompella@gmail, +8:u06:Luis, +20:u09:kompella@gmail/., +12:u0B:com/Luis, +20:u0C:./kompella@gmail, +18:u11:kompella@gmail, +8:u14:luis, +11:u00:kireeti, +18:u02:kompella@gmail, +8:u05:Luis, +12:u0A:com/Luis, +10:u0B:Luis/M, +20:u0C:kompella@gmail/., +18:u10:kompella@gmail, +8:u13:luis, +18:u01:kompella@gmail, +8:u04:Luis, +12:u09:com/Luis, +10:u0A:Luis/M, +10:u0D:Luis/0, +8:u12:luis, +6:u21:Lu, +7:u22:Lui, +8:u23:Luis, +7:u32:uis, +8:u33:Luis, +18:u00:kompella@gmail, +8:u03:Luis, +9:u08:Ronda, +10:u09:Luis/M, +12:u0C:com/Luis, +8:u11:luis, +8:u02:Luis, +9:u07:Ronda, +24:u0B:Contreras/Telefonica, +10:u0C:Luis/M, +8:u10:luis, +8:u01:Luis, +9:u06:Ronda, +6:u08:la, +24:u0A:Contreras/Telefonica, +20:u0B:Telefonica/Ronda, +9:u14:ronda, +8:u00:Luis, +9:u05:Ronda, +6:u07:la, +16:u08:Comunicacion, +24:u09:Contreras/Telefonica, +20:u0A:Telefonica/Ronda, +12:u0B:Ronda/de, +9:u13:ronda, +9:u04:Ronda, +6:u06:la, +16:u07:Comunicacion, +7:u08:Sur, +20:u09:Telefonica/Ronda, +12:u0A:Ronda/de, +9:u0B:de/la, +24:u0C:Contreras/Telefonica, +11:u0D:Ronda/0, +9:u12:ronda, +6:u14:la, +7:u22:Ron, +8:u23:Rond, +7:u32:nda, +8:u33:onda, +9:u03:Ronda, +6:u05:la, +16:u06:Comunicacion, +7:u07:Sur, +12:u09:Ronda/de, +9:u0A:de/la, +19:u0B:la/Comunicacion, +20:u0C:Telefonica/Ronda, +9:u11:ronda, +6:u13:la, +16:u14:comunicacion, +9:u02:Ronda, +6:u04:la, +16:u05:Comunicacion, +7:u06:Sur, +9:u09:de/la, +19:u0A:la/Comunicacion, +20:u0B:Comunicacion/Sur, +12:u0C:Ronda/de, +8:u0D:la/0, +9:u10:ronda, +6:u12:la, +16:u13:comunicacion, +7:u14:sur, +6:u22:la, +6:u23:la, +6:u32:la, +6:u33:la, +9:u01:Ronda, +6:u03:la, +16:u04:Comunicacion, +7:u05:Sur, +12:u08:building, +19:u09:la/Comunicacion, +20:u0A:Comunicacion/Sur, +9:u0B:Sur/-, +9:u0C:de/la, +18:u0D:Comunicacion/0, +6:u11:la, +16:u12:comunicacion, +7:u13:sur, +8:u23:Comu, +8:u33:cion, +9:u00:Ronda, +6:u02:la, +16:u03:Comunicacion, +7:u04:Sur, +12:u07:building, +20:u09:Comunicacion/Sur, +9:u0A:Sur/-, +7:u0B:-/3, +19:u0C:la/Comunicacion, +9:u0D:Sur/0, +6:u10:la, +16:u11:comunicacion, +7:u12:sur, +7:u22:Sur, +7:u23:Sur, +7:u32:Sur, +7:u33:Sur, +6:u01:la, +16:u02:Comunicacion, +7:u03:Sur, +12:u06:building, +7:u08:3rd, +9:u09:Sur/-, +7:u0A:-/3, +14:u0B:3/building, +20:u0C:Comunicacion/Sur, +16:u10:comunicacion, +7:u11:sur, +12:u14:building, +6:u00:la, +16:u01:Comunicacion, +7:u02:Sur, +12:u05:building, +7:u07:3rd, +7:u09:-/3, +14:u0A:3/building, +14:u0B:building/,, +9:u0C:Sur/-, +7:u0D:3/1, +7:u10:sur, +12:u13:building, +16:u00:Comunicacion, +7:u01:Sur, +12:u04:building, +7:u06:3rd, +14:u09:3/building, +14:u0A:building/,, +9:u0B:,/3rd, +7:u0C:-/3, +14:u0D:building/0, +12:u12:building, +7:u14:3rd, +7:u00:Sur, +12:u03:building, +7:u05:3rd, +9:u08:28050, +14:u09:building/,, +9:u0A:,/3rd, +13:u0B:3rd/floor, +14:u0C:3/building, +12:u11:building, +7:u13:3rd, +12:u02:building, +7:u04:3rd, +9:u07:28050, +9:u09:,/3rd, +13:u0A:3rd/floor, +16:u0B:floor/Madrid, +14:u0C:building/,, +9:u0D:3rd/0, +12:u10:building, +7:u12:3rd, +6:u21:3r, +7:u22:3rd, +7:u23:3rd, +7:u32:3rd, +7:u33:3rd, +12:u01:building, +7:u03:3rd, +9:u06:28050, +13:u09:3rd/floor, +16:u0A:floor/Madrid, +16:u0B:Madrid/28050, +9:u0C:,/3rd, +7:u11:3rd, +9:u14:28050, +12:u00:building, +7:u02:3rd, +9:u05:28050, +16:u09:floor/Madrid, +16:u0A:Madrid/28050, +15:u0B:28050/Spain, +13:u0C:3rd/floor, +7:u10:3rd, +9:u13:28050, +7:u01:3rd, +9:u04:28050, +14:u08:luismiguel, +16:u09:Madrid/28050, +15:u0A:28050/Spain, +15:u0B:Spain/Email, +16:u0C:floor/Madrid, +11:u0D:28050/0, +9:u12:28050, +7:u22:280, +8:u23:2805, +7:u32:050, +8:u33:8050, +7:u00:3rd, +9:u03:28050, +14:u07:luismiguel, +15:u09:28050/Spain, +15:u0A:Spain/Email, +16:u0C:Madrid/28050, +9:u11:28050, +9:u02:28050, +14:u06:luismiguel, +31:u08:contrerasmurillo@telefonica, +15:u09:Spain/Email, +16:u0B::/luismiguel, +15:u0C:28050/Spain, +9:u10:28050, +14:u14:luismiguel, +9:u01:28050, +14:u05:luismiguel, +31:u07:contrerasmurillo@telefonica, +16:u0A::/luismiguel, +16:u0B:luismiguel/., +15:u0C:Spain/Email, +14:u13:luismiguel, +9:u00:28050, +14:u04:luismiguel, +31:u06:contrerasmurillo@telefonica, +16:u09::/luismiguel, +16:u0A:luismiguel/., +33:u0B:./contrerasmurillo@telefonica, +16:u0D:luismiguel/0, +14:u12:luismiguel, +31:u14:contrerasmurillo@telefonica, +6:u21:lu, +7:u22:lui, +8:u23:luis, +7:u32:uel, +8:u33:guel, +14:u03:luismiguel, +31:u05:contrerasmurillo@telefonica, +16:u09:luismiguel/., +33:u0A:./contrerasmurillo@telefonica, +33:u0B:contrerasmurillo@telefonica/., +16:u0C::/luismiguel, +14:u11:luismiguel, +31:u13:contrerasmurillo@telefonica, +14:u02:luismiguel, +31:u04:contrerasmurillo@telefonica, +33:u09:./contrerasmurillo@telefonica, +33:u0A:contrerasmurillo@telefonica/., +16:u0C:luismiguel/., +33:u0D:contrerasmurillo@telefonica/0, +14:u10:luismiguel, +31:u12:contrerasmurillo@telefonica, +14:u01:luismiguel, +31:u03:contrerasmurillo@telefonica, +33:u09:contrerasmurillo@telefonica/., +33:u0C:./contrerasmurillo@telefonica, +31:u11:contrerasmurillo@telefonica, +14:u00:luismiguel, +31:u02:contrerasmurillo@telefonica, +33:u0C:contrerasmurillo@telefonica/., +31:u10:contrerasmurillo@telefonica, +31:u01:contrerasmurillo@telefonica, +31:u00:contrerasmurillo@telefonica, +10:u08:people, +10:u07:people, +10:u06:people, +7:u08:tid, +12:u0B://people, +10:u14:people, +10:u05:people, +7:u07:tid, +12:u0A://people, +12:u0B:people/., +10:u13:people, +10:u04:people, +7:u06:tid, +12:u09://people, +12:u0A:people/., +9:u0B:./tid, +12:u0D:people/0, +10:u12:people, +7:u14:tid, +7:u22:peo, +8:u23:peop, +8:u33:ople, +10:u03:people, +7:u05:tid, +12:u09:people/., +9:u0A:./tid, +9:u0B:tid/., +12:u0C://people, +10:u11:people, +7:u13:tid, +10:u02:people, +7:u04:tid, +9:u08:LuisM, +9:u09:./tid, +9:u0A:tid/., +12:u0C:people/., +9:u0D:tid/0, +10:u10:people, +7:u12:tid, +7:u22:tid, +7:u23:tid, +7:u32:tid, +7:u33:tid, +10:u01:people, +7:u03:tid, +9:u07:LuisM, +9:u09:tid/., +9:u0C:./tid, +7:u11:tid, +10:u00:people, +7:u02:tid, +9:u06:LuisM, +11:u0B://LuisM, +9:u0C:tid/., +7:u10:tid, +9:u14:luism, +7:u01:tid, +9:u05:LuisM, +11:u0A://LuisM, +11:u0B:LuisM/., +9:u13:luism, +7:u00:tid, +9:u04:LuisM, +11:u09://LuisM, +11:u0A:LuisM/., +11:u0D:LuisM/0, +9:u12:luism, +6:u31:sM, +7:u32:isM, +8:u33:uisM, +9:u03:LuisM, +11:u09:LuisM/., +15:u0B:Contreras//, +11:u0C://LuisM, +9:u11:luism, +9:u02:LuisM, +15:u0A:Contreras//, +11:u0C:LuisM/., +9:u10:luism, +9:u01:LuisM, +15:u09:Contreras//, +12:u06:20190812, +17:u0B:date/20190812, +12:u14:20190812, +12:u05:20190812, +17:u0A:date/20190812, +14:u0B:20190812/;, +12:u13:20190812, +12:u04:20190812, +17:u09:date/20190812, +14:u0A:20190812/;, +14:u0D:20190812/0, +12:u12:20190812, +8:u33:0812, +12:u03:20190812, +14:u09:20190812/;, +17:u0C:date/20190812, +12:u11:20190812, +12:u02:20190812, +12:u08:20190813, +14:u0C:20190812/;, +12:u10:20190812, +12:u01:20190812, +12:u07:20190813, +12:u00:20190812, +12:u06:20190813, +5:u08:Y, +15:u0B:on/20190813, +12:u14:20190813, +12:u05:20190813, +5:u07:Y, +15:u0A:on/20190813, +16:u0B:20190813/TLS, +12:u13:20190813, +12:u04:20190813, +5:u06:Y, +7:u08:Nir, +15:u09:on/20190813, +16:u0A:20190813/TLS, +9:u0B:TLS/Y, +14:u0D:20190813/0, +12:u12:20190813, +5:u14:y, +6:u31:13, +7:u32:813, +8:u33:0813, +12:u03:20190813, +5:u05:Y, +7:u07:Nir, +16:u09:20190813/TLS, +9:u0A:TLS/Y, +7:u0B:Y/., +15:u0C:on/20190813, +12:u11:20190813, +5:u13:y, +12:u02:20190813, +5:u04:Y, +7:u06:Nir, +9:u09:TLS/Y, +7:u0A:Y/., +9:u0B:./Nir, +16:u0C:20190813/TLS, +7:u0D:Y/0, +12:u10:20190813, +5:u12:y, +7:u14:nir, +5:u20:Y, +5:u21:Y, +5:u22:Y, +5:u23:Y, +5:u31:Y, +5:u32:Y, +5:u33:Y, +12:u01:20190813, +5:u03:Y, +7:u05:Nir, +7:u09:Y/., +9:u0A:./Nir, +16:u0B:Nir/Internet, +9:u0C:TLS/Y, +5:u11:y, +7:u13:nir, +12:u00:20190813, +5:u02:Y, +7:u04:Nir, +11:u08:DellEMC, +9:u09:./Nir, +16:u0A:Nir/Internet, +7:u0C:Y/., +9:u0D:Nir/0, +5:u10:y, +7:u12:nir, +6:u21:Ni, +7:u22:Nir, +7:u23:Nir, +7:u32:Nir, +7:u33:Nir, +5:u01:Y, +7:u03:Nir, +11:u07:DellEMC, +16:u09:Nir/Internet, +9:u0C:./Nir, +7:u11:nir, +5:u00:Y, +7:u02:Nir, +11:u06:DellEMC, +17:u0B:Draft/DellEMC, +16:u0C:Nir/Internet, +7:u10:nir, +11:u14:dellemc, +7:u01:Nir, +11:u05:DellEMC, +17:u0A:Draft/DellEMC, +20:u0B:DellEMC/Intended, +11:u13:dellemc, +7:u00:Nir, +11:u04:DellEMC, +17:u09:Draft/DellEMC, +20:u0A:DellEMC/Intended, +13:u0D:DellEMC/0, +11:u12:dellemc, +8:u33:lEMC, +11:u03:DellEMC, +20:u09:DellEMC/Intended, +17:u0C:Draft/DellEMC, +11:u11:dellemc, +11:u02:DellEMC, +20:u0C:DellEMC/Intended, +11:u10:dellemc, +11:u01:DellEMC, +11:u00:DellEMC, +16:u0B:Track/August, +16:u0A:Track/August, +13:u0B:August/12, +16:u09:Track/August, +13:u0A:August/12, +8:u0B:12/,, +13:u09:August/12, +8:u0A:12/,, +16:u0C:Track/August, +8:u0D:12/0, +8:u09:12/,, +13:u0C:August/12, +6:u08:13, +8:u0C:12/,, +6:u07:13, +6:u06:13, +15:u0B:February/13, +6:u14:13, +6:u05:13, +15:u0A:February/13, +8:u0B:13/,, +6:u13:13, +6:u04:13, +9:u08:Flags, +15:u09:February/13, +8:u0A:13/,, +8:u0D:13/0, +6:u12:13, +6:u22:13, +6:u23:13, +6:u32:13, +6:u33:13, +6:u03:13, +9:u07:Flags, +13:u08:Extension, +8:u09:13/,, +15:u0C:February/13, +6:u11:13, +6:u02:13, +9:u06:Flags, +13:u07:Extension, +11:u0B:A/Flags, +8:u0C:13/,, +6:u10:13, +9:u14:flags, +6:u01:13, +9:u05:Flags, +13:u06:Extension, +11:u0A:A/Flags, +19:u0B:Flags/Extension, +9:u13:flags, +13:u14:extension, +6:u00:13, +9:u04:Flags, +13:u05:Extension, +11:u09:A/Flags, +19:u0A:Flags/Extension, +17:u0B:Extension/for, +11:u0D:Flags/0, +9:u12:flags, +13:u13:extension, +7:u22:Fla, +8:u23:Flag, +7:u32:ags, +8:u33:lags, +9:u03:Flags, +13:u04:Extension, +19:u09:Flags/Extension, +17:u0A:Extension/for, +11:u0B:for/TLS, +11:u0C:A/Flags, +15:u0D:Extension/0, +9:u11:flags, +13:u12:extension, +7:u22:Ext, +8:u23:Exte, +9:u02:Flags, +13:u03:Extension, +17:u09:Extension/for, +11:u0A:for/TLS, +19:u0C:Flags/Extension, +9:u10:flags, +13:u11:extension, +9:u01:Flags, +13:u02:Extension, +11:u09:for/TLS, +17:u0C:Extension/for, +13:u10:extension, +9:u00:Flags, +13:u01:Extension, +7:u0B:./3, +11:u0C:for/TLS, +13:u00:Extension, +7:u0A:./3, +11:u0B:3/draft, +7:u09:./3, +11:u0A:3/draft, +11:u09:3/draft, +7:u0C:./3, +11:u0C:3/draft, +12:u08:tlsflags, +12:u07:tlsflags, +12:u06:tlsflags, +14:u0B:-/tlsflags, +12:u14:tlsflags, +12:u05:tlsflags, +14:u0A:-/tlsflags, +14:u0B:tlsflags/-, +12:u13:tlsflags, +12:u04:tlsflags, +14:u09:-/tlsflags, +14:u0A:tlsflags/-, +14:u0D:tlsflags/1, +12:u12:tlsflags, +8:u23:tlsf, +12:u03:tlsflags, +14:u09:tlsflags/-, +14:u0C:-/tlsflags, +12:u11:tlsflags, +12:u02:tlsflags, +14:u0B:Abstract/A, +14:u0C:tlsflags/-, +12:u10:tlsflags, +12:u01:tlsflags, +14:u0A:Abstract/A, +12:u0B:A/number, +12:u00:tlsflags, +14:u09:Abstract/A, +12:u0A:A/number, +12:u08:proposed, +12:u09:A/number, +17:u0B:of/extensions, +14:u0C:Abstract/A, +12:u07:proposed, +17:u0A:of/extensions, +18:u0B:extensions/are, +12:u0C:A/number, +12:u06:proposed, +17:u09:of/extensions, +18:u0A:extensions/are, +16:u0B:are/proposed, +12:u14:proposed, +12:u05:proposed, +18:u09:extensions/are, +16:u0A:are/proposed, +15:u0B:proposed/in, +17:u0C:of/extensions, +12:u13:proposed, +12:u04:proposed, +16:u09:are/proposed, +15:u0A:proposed/in, +18:u0C:extensions/are, +14:u0D:proposed/0, +12:u12:proposed, +8:u33:osed, +12:u03:proposed, +15:u09:proposed/in, +11:u0B:the/TLS, +16:u0C:are/proposed, +12:u11:proposed, +12:u02:proposed, +11:u0A:the/TLS, +15:u0B:TLS/working, +15:u0C:proposed/in, +12:u10:proposed, +12:u01:proposed, +11:u09:the/TLS, +15:u0A:TLS/working, +17:u0B:working/group, +12:u00:proposed, +15:u09:TLS/working, +17:u0A:working/group, +14:u0B:group/that, +11:u0C:the/TLS, +15:u08:interesting, +17:u09:working/group, +14:u0A:group/that, +14:u0B:that/carry, +15:u0C:TLS/working, +15:u07:interesting, +14:u09:group/that, +14:u0A:that/carry, +12:u0B:carry/no, +17:u0C:working/group, +15:u06:interesting, +10:u08:except, +14:u09:that/carry, +12:u0A:carry/no, +18:u0B:no/interesting, +14:u0C:group/that, +15:u14:interesting, +15:u05:interesting, +10:u07:except, +12:u09:carry/no, +18:u0A:no/interesting, +27:u0B:interesting/information, +14:u0C:that/carry, +15:u13:interesting, +15:u04:interesting, +10:u06:except, +18:u09:no/interesting, +27:u0A:interesting/information, +22:u0B:information/except, +12:u0C:carry/no, +17:u0D:interesting/0, +15:u12:interesting, +10:u14:except, +15:u03:interesting, +10:u05:except, +27:u09:interesting/information, +22:u0A:information/except, +14:u0B:except/the, +18:u0C:no/interesting, +15:u11:interesting, +10:u13:except, +15:u02:interesting, +10:u04:except, +7:u08:bit, +22:u09:information/except, +14:u0A:except/the, +9:u0B:the/1, +27:u0C:interesting/information, +12:u0D:except/0, +15:u10:interesting, +10:u12:except, +7:u22:exc, +8:u23:exce, +7:u32:ept, +8:u33:cept, +15:u01:interesting, +10:u03:except, +7:u07:bit, +14:u08:indication, +14:u09:except/the, +9:u0A:the/1, +22:u0C:information/except, +10:u11:except, +15:u00:interesting, +10:u02:except, +7:u06:bit, +14:u07:indication, +9:u09:the/1, +9:u0B:-/bit, +14:u0C:except/the, +10:u10:except, +7:u14:bit, +10:u01:except, +7:u05:bit, +14:u06:indication, +9:u0A:-/bit, +18:u0B:bit/indication, +9:u0C:the/1, +7:u13:bit, +14:u14:indication, +10:u00:except, +7:u04:bit, +14:u05:indication, +11:u08:certain, +9:u09:-/bit, +18:u0A:bit/indication, +19:u0B:indication/that, +9:u0D:bit/1, +7:u12:bit, +14:u13:indication, +6:u21:bi, +7:u22:bit, +7:u23:bit, +7:u32:bit, +7:u33:bit, +7:u03:bit, +14:u04:indication, +11:u07:certain, +18:u09:bit/indication, +19:u0A:indication/that, +10:u0B:that/a, +9:u0C:-/bit, +16:u0D:indication/0, +7:u11:bit, +14:u12:indication, +7:u02:bit, +14:u03:indication, +11:u06:certain, +11:u08:feature, +19:u09:indication/that, +10:u0A:that/a, +13:u0B:a/certain, +18:u0C:bit/indication, +7:u10:bit, +14:u11:indication, +11:u14:certain, +7:u01:bit, +14:u02:indication, +11:u05:certain, +11:u07:feature, +10:u09:that/a, +13:u0A:a/certain, +20:u0B:certain/optional, +19:u0C:indication/that, +14:u10:indication, +11:u13:certain, +7:u00:bit, +14:u01:indication, +11:u04:certain, +11:u06:feature, +13:u08:supported, +13:u09:a/certain, +20:u0A:certain/optional, +20:u0B:optional/feature, +10:u0C:that/a, +13:u0D:certain/0, +11:u12:certain, +11:u14:feature, +6:u21:ce, +7:u22:cer, +8:u23:cert, +14:u00:indication, +11:u03:certain, +11:u05:feature, +13:u07:supported, +20:u09:certain/optional, +20:u0A:optional/feature, +14:u0B:feature/is, +13:u0C:a/certain, +11:u11:certain, +11:u13:feature, +11:u02:certain, +11:u04:feature, +13:u06:supported, +8:u08:Such, +20:u09:optional/feature, +14:u0A:feature/is, +16:u0B:is/supported, +20:u0C:certain/optional, +13:u0D:feature/0, +11:u10:certain, +11:u12:feature, +13:u14:supported, +7:u22:fea, +8:u23:feat, +11:u01:certain, +11:u03:feature, +13:u05:supported, +8:u07:Such, +14:u09:feature/is, +16:u0A:is/supported, +15:u0B:supported/., +20:u0C:optional/feature, +11:u11:feature, +13:u13:supported, +11:u00:certain, +11:u02:feature, +13:u04:supported, +8:u06:Such, +8:u08:take, +16:u09:is/supported, +15:u0A:supported/., +10:u0B:./Such, +14:u0C:feature/is, +15:u0D:supported/0, +11:u10:feature, +13:u12:supported, +8:u33:rted, +11:u01:feature, +13:u03:supported, +8:u05:Such, +8:u07:take, +15:u09:supported/., +10:u0A:./Such, +19:u0B:Such/extensions, +16:u0C:is/supported, +13:u11:supported, +11:u00:feature, +13:u02:supported, +8:u04:Such, +8:u06:take, +10:u08:octets, +10:u09:./Such, +19:u0A:Such/extensions, +19:u0B:extensions/take, +15:u0C:supported/., +10:u0D:Such/0, +13:u10:supported, +8:u14:take, +7:u22:Suc, +8:u23:Such, +8:u33:Such, +13:u01:supported, +8:u03:Such, +8:u05:take, +10:u07:octets, +19:u09:Such/extensions, +19:u0A:extensions/take, +10:u0B:take/4, +10:u0C:./Such, +8:u13:take, +13:u00:supported, +8:u02:Such, +8:u04:take, +10:u06:octets, +19:u09:extensions/take, +10:u0A:take/4, +12:u0B:4/octets, +19:u0C:Such/extensions, +10:u0D:take/0, +8:u12:take, +10:u14:octets, +6:u21:ta, +7:u22:tak, +8:u23:take, +7:u32:ake, +8:u33:take, +8:u01:Such, +8:u03:take, +10:u05:octets, +10:u09:take/4, +12:u0A:4/octets, +15:u0B:octets/each, +19:u0C:extensions/take, +8:u11:take, +10:u13:octets, +8:u00:Such, +8:u02:take, +10:u04:octets, +12:u09:4/octets, +15:u0A:octets/each, +10:u0B:each/., +10:u0C:take/4, +12:u0D:octets/0, +8:u10:take, +10:u12:octets, +6:u21:oc, +7:u22:oct, +8:u23:octe, +7:u32:ets, +8:u33:tets, +8:u01:take, +10:u03:octets, +15:u09:octets/each, +10:u0A:each/., +12:u0C:4/octets, +10:u11:octets, +8:u00:take, +10:u02:octets, +10:u09:each/., +15:u0C:octets/each, +10:u10:octets, +10:u01:octets, +9:u08:flags, +10:u0C:each/., +10:u00:octets, +9:u07:flags, +13:u08:extension, +13:u0B:defines/a, +9:u06:flags, +13:u07:extension, +13:u0A:defines/a, +11:u0B:a/flags, +9:u05:flags, +13:u06:extension, +13:u09:defines/a, +11:u0A:a/flags, +19:u0B:flags/extension, +9:u04:flags, +13:u05:extension, +11:u09:a/flags, +19:u0A:flags/extension, +18:u0B:extension/that, +13:u0C:defines/a, +11:u0D:flags/0, +7:u22:fla, +8:u23:flag, +9:u03:flags, +13:u04:extension, +19:u09:flags/extension, +18:u0A:extension/that, +12:u0B:that/can, +11:u0C:a/flags, +15:u0D:extension/0, +9:u02:flags, +13:u03:extension, +15:u08:indications, +18:u09:extension/that, +12:u0A:that/can, +15:u0B:can/provide, +19:u0C:flags/extension, +9:u01:flags, +13:u02:extension, +15:u07:indications, +12:u09:that/can, +15:u0A:can/provide, +16:u0B:provide/such, +18:u0C:extension/that, +9:u00:flags, +13:u01:extension, +15:u06:indications, +15:u09:can/provide, +16:u0A:provide/such, +20:u0B:such/indications, +12:u0C:that/can, +15:u14:indications, +13:u00:extension, +15:u05:indications, +11:u08:average, +16:u09:provide/such, +20:u0A:such/indications, +18:u0B:indications/at, +15:u0C:can/provide, +15:u13:indications, +15:u04:indications, +11:u07:average, +12:u08:marginal, +20:u09:such/indications, +18:u0A:indications/at, +9:u0B:at/an, +16:u0C:provide/such, +17:u0D:indications/0, +15:u12:indications, +15:u03:indications, +11:u06:average, +12:u07:marginal, +18:u09:indications/at, +9:u0A:at/an, +14:u0B:an/average, +20:u0C:such/indications, +15:u11:indications, +11:u14:average, +15:u02:indications, +11:u05:average, +12:u06:marginal, +9:u09:at/an, +14:u0A:an/average, +20:u0B:average/marginal, +18:u0C:indications/at, +15:u10:indications, +11:u13:average, +12:u14:marginal, +15:u01:indications, +11:u04:average, +12:u05:marginal, +14:u09:an/average, +20:u0A:average/marginal, +17:u0B:marginal/cost, +9:u0C:at/an, +13:u0D:average/0, +11:u12:average, +12:u13:marginal, +7:u22:ave, +8:u23:aver, +8:u33:rage, +15:u00:indications, +11:u03:average, +12:u04:marginal, +20:u09:average/marginal, +17:u0A:marginal/cost, +14:u0C:an/average, +14:u0D:marginal/0, +11:u11:average, +12:u12:marginal, +8:u23:marg, +8:u33:inal, +11:u02:average, +12:u03:marginal, +17:u09:marginal/cost, +20:u0C:average/marginal, +11:u10:average, +12:u11:marginal, +11:u01:average, +12:u02:marginal, +9:u0B:1/bit, +17:u0C:marginal/cost, +12:u10:marginal, +11:u00:average, +12:u01:marginal, +8:u08:More, +9:u0A:1/bit, +12:u0B:bit/each, +12:u00:marginal, +8:u07:More, +13:u08:precisely, +9:u09:1/bit, +12:u0A:bit/each, +9:u0D:bit/0, +8:u06:More, +13:u07:precisely, +12:u09:bit/each, +10:u0B:./More, +9:u0C:1/bit, +8:u14:more, +8:u05:More, +13:u06:precisely, +10:u0A:./More, +18:u0B:More/precisely, +12:u0C:bit/each, +8:u13:more, +13:u14:precisely, +8:u04:More, +13:u05:precisely, +12:u08:provides, +10:u09:./More, +18:u0A:More/precisely, +15:u0B:precisely/,, +10:u0D:More/0, +8:u12:more, +13:u13:precisely, +8:u23:More, +8:u33:More, +8:u03:More, +13:u04:precisely, +12:u07:provides, +18:u09:More/precisely, +15:u0A:precisely/,, +10:u0C:./More, +15:u0D:precisely/0, +8:u11:more, +13:u12:precisely, +8:u23:prec, +8:u33:sely, +8:u02:More, +13:u03:precisely, +12:u06:provides, +8:u08:many, +15:u09:precisely/,, +15:u0B:it/provides, +18:u0C:More/precisely, +8:u10:more, +13:u11:precisely, +12:u14:provides, +8:u01:More, +13:u02:precisely, +12:u05:provides, +8:u07:many, +8:u08:flag, +15:u0A:it/provides, +15:u0B:provides/as, +15:u0C:precisely/,, +13:u10:precisely, +12:u13:provides, +8:u00:More, +13:u01:precisely, +12:u04:provides, +8:u06:many, +8:u07:flag, +15:u09:it/provides, +15:u0A:provides/as, +11:u0B:as/many, +14:u0D:provides/0, +12:u12:provides, +8:u14:many, +7:u32:des, +8:u33:ides, +13:u00:precisely, +12:u03:provides, +8:u05:many, +8:u06:flag, +15:u09:provides/as, +11:u0A:as/many, +13:u0B:many/flag, +15:u0C:it/provides, +12:u11:provides, +8:u13:many, +8:u14:flag, +12:u02:provides, +8:u04:many, +8:u05:flag, +10:u08:needed, +11:u09:as/many, +13:u0A:many/flag, +19:u0B:flag/extensions, +15:u0C:provides/as, +10:u0D:many/0, +12:u10:provides, +8:u12:many, +8:u13:flag, +8:u23:many, +8:u33:many, +12:u01:provides, +8:u03:many, +8:u04:flag, +10:u07:needed, +13:u09:many/flag, +19:u0A:flag/extensions, +17:u0B:extensions/as, +11:u0C:as/many, +10:u0D:flag/0, +8:u11:many, +8:u12:flag, +6:u31:ag, +7:u32:lag, +8:u33:flag, +12:u00:provides, +8:u02:many, +8:u03:flag, +10:u06:needed, +19:u09:flag/extensions, +17:u0A:extensions/as, +13:u0B:as/needed, +13:u0C:many/flag, +8:u10:many, +8:u11:flag, +10:u14:needed, +8:u01:many, +8:u02:flag, +10:u05:needed, +5:u08:+, +17:u09:extensions/as, +13:u0A:as/needed, +13:u0B:needed/at, +19:u0C:flag/extensions, +8:u10:flag, +10:u13:needed, +8:u00:many, +8:u01:flag, +10:u04:needed, +5:u07:+, +13:u09:as/needed, +13:u0A:needed/at, +8:u0B:at/4, +17:u0C:extensions/as, +12:u0D:needed/0, +10:u12:needed, +7:u22:nee, +8:u23:need, +8:u33:eded, +8:u00:flag, +10:u03:needed, +5:u06:+, +9:u08:order, +13:u09:needed/at, +8:u0A:at/4, +7:u0B:4/+, +13:u0C:as/needed, +10:u11:needed, +5:u14:+, +10:u02:needed, +5:u05:+, +9:u07:order, +8:u09:at/4, +7:u0A:4/+, +9:u0B:+/the, +13:u0C:needed/at, +10:u10:needed, +5:u13:+, +10:u01:needed, +5:u04:+, +9:u06:order, +7:u09:4/+, +9:u0A:+/the, +13:u0B:the/order, +8:u0C:at/4, +7:u0D:+/0, +5:u12:+, +9:u14:order, +5:u21:+, +5:u22:+, +5:u23:+, +5:u30:+, +5:u31:+, +5:u32:+, +5:u33:+, +10:u00:needed, +5:u03:+, +9:u05:order, +8:u08:last, +9:u09:+/the, +13:u0A:the/order, +12:u0B:order/of, +7:u0C:4/+, +5:u11:+, +9:u13:order, +5:u02:+, +9:u04:order, +8:u07:last, +13:u09:the/order, +12:u0A:order/of, +9:u0C:+/the, +11:u0D:order/0, +5:u10:+, +9:u12:order, +7:u22:ord, +8:u23:orde, +8:u33:rder, +5:u01:+, +9:u03:order, +8:u06:last, +12:u09:order/of, +12:u0B:the/last, +13:u0C:the/order, +9:u11:order, +8:u14:last, +5:u00:+, +9:u02:order, +8:u05:last, +11:u08:divided, +12:u0A:the/last, +12:u0B:last/set, +12:u0C:order/of, +9:u10:order, +8:u13:last, +9:u01:order, +8:u04:last, +11:u07:divided, +12:u09:the/last, +12:u0A:last/set, +11:u0B:set/bit, +10:u0D:last/0, +8:u12:last, +7:u22:las, +8:u23:last, +7:u32:ast, +8:u33:last, +9:u00:order, +8:u03:last, +11:u06:divided, +12:u09:last/set, +11:u0A:set/bit, +15:u0B:bit/divided, +12:u0C:the/last, +8:u11:last, +11:u14:divided, +8:u02:last, +11:u05:divided, +11:u09:set/bit, +15:u0A:bit/divided, +14:u0B:divided/by, +12:u0C:last/set, +8:u10:last, +11:u13:divided, +8:u01:last, +11:u04:divided, +15:u09:bit/divided, +14:u0A:divided/by, +8:u0B:by/8, +11:u0C:set/bit, +13:u0D:divided/0, +11:u12:divided, +7:u22:div, +8:u23:divi, +8:u00:last, +11:u03:divided, +14:u09:divided/by, +8:u0A:by/8, +7:u0B:8/., +15:u0C:bit/divided, +11:u11:divided, +11:u02:divided, +8:u09:by/8, +7:u0A:8/., +14:u0C:divided/by, +11:u10:divided, +11:u01:divided, +7:u09:8/., +8:u0C:by/8, +11:u00:divided, +7:u0C:8/., +8:u08:Yoav, +8:u07:Yoav, +8:u06:Yoav, +11:u0B:of/Yoav, +8:u14:yoav, +8:u05:Yoav, +11:u0A:of/Yoav, +12:u0B:Yoav/Nir, +8:u13:yoav, +8:u04:Yoav, +10:u08:Andrei, +11:u09:of/Yoav, +12:u0A:Yoav/Nir, +15:u0B:Nir/DellEMC, +10:u0D:Yoav/0, +8:u12:yoav, +6:u21:Yo, +7:u22:Yoa, +8:u23:Yoav, +6:u31:av, +7:u32:oav, +8:u33:Yoav, +8:u03:Yoav, +10:u07:Andrei, +12:u08:Sakharov, +12:u09:Yoav/Nir, +15:u0A:Nir/DellEMC, +13:u0B:DellEMC/9, +11:u0C:of/Yoav, +8:u11:yoav, +8:u02:Yoav, +10:u06:Andrei, +12:u07:Sakharov, +6:u08:St, +15:u09:Nir/DellEMC, +13:u0A:DellEMC/9, +12:u0B:9/Andrei, +12:u0C:Yoav/Nir, +8:u10:yoav, +10:u14:andrei, +8:u01:Yoav, +10:u05:Andrei, +12:u06:Sakharov, +6:u07:St, +9:u08:Haifa, +13:u09:DellEMC/9, +12:u0A:9/Andrei, +19:u0B:Andrei/Sakharov, +15:u0C:Nir/DellEMC, +10:u13:andrei, +12:u14:sakharov, +8:u00:Yoav, +10:u04:Andrei, +12:u05:Sakharov, +6:u06:St, +9:u07:Haifa, +11:u08:3190500, +12:u09:9/Andrei, +19:u0A:Andrei/Sakharov, +15:u0B:Sakharov/St, +13:u0C:DellEMC/9, +12:u0D:Andrei/0, +10:u12:andrei, +12:u13:sakharov, +6:u14:st, +6:u21:An, +7:u22:And, +8:u23:Andr, +7:u32:rei, +8:u33:drei, +10:u03:Andrei, +12:u04:Sakharov, +6:u05:St, +9:u06:Haifa, +11:u07:3190500, +10:u08:Israel, +19:u09:Andrei/Sakharov, +15:u0A:Sakharov/St, +12:u0B:St/Haifa, +12:u0C:9/Andrei, +14:u0D:Sakharov/0, +10:u11:andrei, +12:u12:sakharov, +6:u13:st, +9:u14:haifa, +7:u22:Sak, +8:u23:Sakh, +6:u31:ov, +7:u32:rov, +8:u33:arov, +10:u02:Andrei, +12:u03:Sakharov, +6:u04:St, +9:u05:Haifa, +11:u06:3190500, +10:u07:Israel, +15:u09:Sakharov/St, +12:u0A:St/Haifa, +17:u0B:Haifa/3190500, +19:u0C:Andrei/Sakharov, +8:u0D:St/0, +10:u10:andrei, +12:u11:sakharov, +6:u12:st, +9:u13:haifa, +11:u14:3190500, +6:u22:St, +6:u23:St, +6:u31:St, +6:u32:St, +6:u33:St, +10:u01:Andrei, +12:u02:Sakharov, +6:u03:St, +9:u04:Haifa, +11:u05:3190500, +10:u06:Israel, +12:u09:St/Haifa, +17:u0A:Haifa/3190500, +18:u0B:3190500/Israel, +15:u0C:Sakharov/St, +11:u0D:Haifa/0, +12:u10:sakharov, +6:u11:st, +9:u12:haifa, +11:u13:3190500, +10:u14:israel, +7:u22:Hai, +8:u23:Haif, +6:u31:fa, +7:u32:ifa, +8:u33:aifa, +10:u00:Andrei, +12:u01:Sakharov, +6:u02:St, +9:u03:Haifa, +11:u04:3190500, +10:u05:Israel, +8:u08:ynir, +17:u09:Haifa/3190500, +18:u0A:3190500/Israel, +16:u0B:Israel/Email, +12:u0C:St/Haifa, +13:u0D:3190500/0, +6:u10:st, +9:u11:haifa, +11:u12:3190500, +10:u13:israel, +7:u22:319, +8:u23:3190, +7:u32:500, +8:u33:0500, +12:u00:Sakharov, +6:u01:St, +9:u02:Haifa, +11:u03:3190500, +10:u04:Israel, +8:u07:ynir, +18:u09:3190500/Israel, +16:u0A:Israel/Email, +17:u0C:Haifa/3190500, +12:u0D:Israel/0, +9:u10:haifa, +11:u11:3190500, +10:u12:israel, +6:u21:Is, +7:u22:Isr, +8:u23:Isra, +7:u32:ael, +8:u33:rael, +6:u00:St, +9:u01:Haifa, +11:u02:3190500, +10:u03:Israel, +8:u06:ynir, +16:u09:Israel/Email, +10:u0B::/ynir, +18:u0C:3190500/Israel, +11:u10:3190500, +10:u11:israel, +8:u14:ynir, +9:u00:Haifa, +11:u01:3190500, +10:u02:Israel, +8:u05:ynir, +10:u0A::/ynir, +10:u0B:ynir/., +16:u0C:Israel/Email, +10:u10:israel, +8:u13:ynir, +11:u00:3190500, +10:u01:Israel, +8:u04:ynir, +10:u09::/ynir, +10:u0A:ynir/., +10:u0D:ynir/0, +8:u12:ynir, +6:u21:yn, +7:u22:yni, +8:u23:ynir, +7:u32:nir, +8:u33:ynir, +10:u00:Israel, +8:u03:ynir, +10:u09:ynir/., +10:u0C::/ynir, +8:u11:ynir, +8:u02:ynir, +10:u0C:ynir/., +8:u10:ynir, +8:u01:ynir, +8:u00:ynir, +12:u06:20190827, +17:u0B:date/20190827, +12:u14:20190827, +12:u05:20190827, +17:u0A:date/20190827, +14:u0B:20190827/;, +12:u13:20190827, +12:u04:20190827, +17:u09:date/20190827, +14:u0A:20190827/;, +14:u0D:20190827/0, +12:u12:20190827, +7:u32:827, +8:u33:0827, +12:u03:20190827, +14:u09:20190827/;, +17:u0C:date/20190827, +12:u11:20190827, +12:u02:20190827, +12:u08:20190829, +14:u0C:20190827/;, +12:u10:20190827, +12:u01:20190827, +12:u07:20190829, +10:u08:6TiSCH, +12:u00:20190827, +12:u06:20190829, +10:u07:6TiSCH, +5:u08:P, +15:u0B:on/20190829, +12:u14:20190829, +12:u05:20190829, +10:u06:6TiSCH, +5:u07:P, +15:u0A:on/20190829, +19:u0B:20190829/6TiSCH, +12:u13:20190829, +10:u14:6tisch, +12:u04:20190829, +10:u05:6TiSCH, +5:u06:P, +11:u08:Thubert, +15:u09:on/20190829, +19:u0A:20190829/6TiSCH, +12:u0B:6TiSCH/P, +14:u0D:20190829/0, +12:u12:20190829, +10:u13:6tisch, +5:u14:p, +6:u31:29, +7:u32:829, +8:u33:0829, +12:u03:20190829, +10:u04:6TiSCH, +5:u05:P, +11:u07:Thubert, +19:u09:20190829/6TiSCH, +12:u0A:6TiSCH/P, +7:u0B:P/., +15:u0C:on/20190829, +12:u0D:6TiSCH/0, +12:u11:20190829, +10:u12:6tisch, +5:u13:p, +6:u21:6T, +7:u22:6Ti, +8:u23:6TiS, +5:u30:H, +6:u31:CH, +7:u32:SCH, +8:u33:iSCH, +12:u02:20190829, +10:u03:6TiSCH, +5:u04:P, +11:u06:Thubert, +6:u08:Ed, +12:u09:6TiSCH/P, +7:u0A:P/., +13:u0B:./Thubert, +19:u0C:20190829/6TiSCH, +7:u0D:P/0, +12:u10:20190829, +10:u11:6tisch, +5:u12:p, +11:u14:thubert, +5:u21:P, +5:u22:P, +5:u23:P, +5:u31:P, +5:u32:P, +5:u33:P, +12:u01:20190829, +10:u02:6TiSCH, +5:u03:P, +11:u05:Thubert, +6:u07:Ed, +7:u09:P/., +13:u0A:./Thubert, +13:u0B:Thubert/,, +12:u0C:6TiSCH/P, +10:u10:6tisch, +5:u11:p, +11:u13:thubert, +12:u00:20190829, +10:u01:6TiSCH, +5:u02:P, +11:u04:Thubert, +6:u06:Ed, +13:u09:./Thubert, +13:u0A:Thubert/,, +8:u0B:,/Ed, +7:u0C:P/., +13:u0D:Thubert/0, +5:u10:p, +11:u12:thubert, +6:u14:ed, +7:u22:Thu, +8:u23:Thub, +7:u32:ert, +8:u33:bert, +10:u00:6TiSCH, +5:u01:P, +11:u03:Thubert, +6:u05:Ed, +13:u09:Thubert/,, +8:u0A:,/Ed, +8:u0B:Ed/., +13:u0C:./Thubert, +11:u11:thubert, +6:u13:ed, +5:u00:P, +11:u02:Thubert, +6:u04:Ed, +8:u09:,/Ed, +8:u0A:Ed/., +13:u0C:Thubert/,, +8:u0D:Ed/0, +11:u10:thubert, +6:u12:ed, +6:u21:Ed, +6:u22:Ed, +6:u23:Ed, +6:u31:Ed, +6:u32:Ed, +6:u33:Ed, +11:u01:Thubert, +6:u03:Ed, +8:u09:Ed/., +8:u0C:,/Ed, +6:u11:ed, +11:u00:Thubert, +6:u02:Ed, +8:u0C:Ed/., +6:u10:ed, +6:u01:Ed, +15:u0B:Draft/Cisco, +6:u00:Ed, +15:u0A:Draft/Cisco, +15:u09:Draft/Cisco, +20:u0B:Systems/Intended, +20:u0A:Systems/Intended, +15:u0C:Draft/Cisco, +20:u09:Systems/Intended, +20:u0C:Systems/Intended, +24:u0B:Informational/August, +24:u0A:Informational/August, +13:u0B:August/27, +24:u09:Informational/August, +13:u0A:August/27, +8:u0B:27/,, +13:u09:August/27, +8:u0A:27/,, +24:u0C:Informational/August, +8:u0D:27/0, +8:u09:27/,, +13:u0C:August/27, +6:u08:28, +8:u0C:27/,, +6:u07:28, +6:u06:28, +15:u0B:February/28, +6:u14:28, +6:u05:28, +6:u08:An, +15:u0A:February/28, +8:u0B:28/,, +6:u13:28, +6:u04:28, +6:u07:An, +16:u08:Architecture, +15:u09:February/28, +8:u0A:28/,, +8:u0D:28/0, +6:u12:28, +6:u22:28, +6:u23:28, +6:u31:28, +6:u32:28, +6:u33:28, +6:u03:28, +6:u06:An, +16:u07:Architecture, +8:u09:28/,, +11:u0B:2020/An, +15:u0C:February/28, +6:u11:28, +6:u02:28, +6:u05:An, +16:u06:Architecture, +8:u08:IPv6, +11:u0A:2020/An, +19:u0B:An/Architecture, +8:u0C:28/,, +6:u10:28, +6:u01:28, +6:u04:An, +16:u05:Architecture, +8:u07:IPv6, +11:u09:2020/An, +19:u0A:An/Architecture, +20:u0B:Architecture/for, +8:u0D:An/0, +6:u22:An, +6:u23:An, +6:u31:An, +6:u32:An, +6:u33:An, +6:u00:28, +6:u03:An, +16:u04:Architecture, +8:u06:IPv6, +19:u09:An/Architecture, +20:u0A:Architecture/for, +12:u0B:for/IPv6, +11:u0C:2020/An, +18:u0D:Architecture/0, +8:u14:ipv6, +7:u22:Arc, +8:u23:Arch, +6:u02:An, +16:u03:Architecture, +8:u05:IPv6, +8:u08:TSCH, +20:u09:Architecture/for, +12:u0A:for/IPv6, +13:u0B:IPv6/over, +19:u0C:An/Architecture, +8:u13:ipv6, +6:u01:An, +16:u02:Architecture, +8:u04:IPv6, +8:u07:TSCH, +8:u08:mode, +12:u09:for/IPv6, +13:u0A:IPv6/over, +12:u0B:over/the, +20:u0C:Architecture/for, +10:u0D:IPv6/0, +8:u12:ipv6, +7:u22:IPv, +8:u23:IPv6, +6:u31:v6, +7:u32:Pv6, +8:u33:IPv6, +6:u00:An, +16:u01:Architecture, +8:u03:IPv6, +8:u06:TSCH, +8:u07:mode, +13:u09:IPv6/over, +12:u0A:over/the, +12:u0B:the/TSCH, +12:u0C:for/IPv6, +8:u11:ipv6, +8:u14:tsch, +16:u00:Architecture, +8:u02:IPv6, +8:u05:TSCH, +8:u06:mode, +8:u08:IEEE, +12:u09:over/the, +12:u0A:the/TSCH, +13:u0B:TSCH/mode, +13:u0C:IPv6/over, +8:u10:ipv6, +8:u13:tsch, +8:u14:mode, +8:u01:IPv6, +8:u04:TSCH, +8:u05:mode, +8:u07:IEEE, +7:u08:802, +12:u09:the/TSCH, +13:u0A:TSCH/mode, +11:u0B:mode/of, +12:u0C:over/the, +10:u0D:TSCH/0, +8:u12:tsch, +8:u13:mode, +6:u21:TS, +7:u22:TSC, +8:u23:TSCH, +8:u33:TSCH, +8:u00:IPv6, +8:u03:TSCH, +8:u04:mode, +8:u06:IEEE, +7:u07:802, +13:u09:TSCH/mode, +11:u0A:mode/of, +11:u0B:of/IEEE, +12:u0C:the/TSCH, +10:u0D:mode/0, +8:u11:tsch, +8:u12:mode, +8:u14:ieee, +7:u22:mod, +8:u23:mode, +8:u33:mode, +8:u02:TSCH, +8:u03:mode, +8:u05:IEEE, +7:u06:802, +6:u08:15, +11:u09:mode/of, +11:u0A:of/IEEE, +12:u0B:IEEE/802, +13:u0C:TSCH/mode, +8:u10:tsch, +8:u11:mode, +8:u13:ieee, +7:u14:802, +8:u01:TSCH, +8:u02:mode, +8:u04:IEEE, +7:u05:802, +6:u07:15, +11:u09:of/IEEE, +12:u0A:IEEE/802, +9:u0B:802/., +11:u0C:mode/of, +10:u0D:IEEE/0, +8:u10:mode, +8:u12:ieee, +7:u13:802, +7:u22:IEE, +8:u23:IEEE, +5:u30:E, +6:u31:EE, +7:u32:EEE, +8:u33:IEEE, +8:u00:TSCH, +8:u01:mode, +8:u03:IEEE, +7:u04:802, +6:u06:15, +12:u09:IEEE/802, +9:u0A:802/., +8:u0B:./15, +11:u0C:of/IEEE, +9:u0D:802/0, +8:u11:ieee, +7:u12:802, +6:u14:15, +7:u22:802, +7:u23:802, +7:u32:802, +7:u33:802, +8:u00:mode, +8:u02:IEEE, +7:u03:802, +6:u05:15, +9:u09:802/., +8:u0A:./15, +8:u0B:15/., +12:u0C:IEEE/802, +8:u10:ieee, +7:u11:802, +6:u13:15, +8:u01:IEEE, +7:u02:802, +6:u04:15, +8:u09:./15, +8:u0A:15/., +7:u0B:./4, +9:u0C:802/., +8:u0D:15/0, +7:u10:802, +6:u12:15, +6:u21:15, +6:u22:15, +6:u23:15, +6:u32:15, +6:u33:15, +8:u00:IEEE, +7:u01:802, +6:u03:15, +8:u09:15/., +7:u0A:./4, +11:u0B:4/draft, +8:u0C:./15, +6:u11:15, +7:u00:802, +6:u02:15, +7:u09:./4, +11:u0A:4/draft, +8:u0C:15/., +6:u10:15, +6:u01:15, +10:u08:6tisch, +11:u09:4/draft, +7:u0C:./4, +6:u00:15, +10:u07:6tisch, +11:u0C:4/draft, +10:u06:6tisch, +12:u0B:-/6tisch, +10:u05:6tisch, +12:u0A:-/6tisch, +12:u0B:6tisch/-, +10:u04:6tisch, +6:u08:26, +12:u09:-/6tisch, +12:u0A:6tisch/-, +18:u0B:-/architecture, +12:u0D:6tisch/1, +6:u21:6t, +7:u22:6ti, +8:u23:6tis, +7:u32:sch, +8:u33:isch, +10:u03:6tisch, +6:u07:26, +12:u09:6tisch/-, +18:u0A:-/architecture, +18:u0B:architecture/-, +12:u0C:-/6tisch, +10:u02:6tisch, +6:u06:26, +18:u09:-/architecture, +18:u0A:architecture/-, +8:u0B:-/26, +12:u0C:6tisch/-, +18:u0D:architecture/1, +6:u14:26, +10:u01:6tisch, +6:u05:26, +18:u09:architecture/-, +8:u0A:-/26, +15:u0B:26/Abstract, +18:u0C:-/architecture, +6:u13:26, +10:u00:6tisch, +6:u04:26, +8:u09:-/26, +15:u0A:26/Abstract, +18:u0C:architecture/-, +8:u0D:26/1, +6:u12:26, +6:u21:26, +6:u22:26, +6:u23:26, +6:u31:26, +6:u32:26, +6:u33:26, +6:u03:26, +15:u09:26/Abstract, +8:u0C:-/26, +6:u11:26, +6:u02:26, +15:u0C:26/Abstract, +6:u10:26, +6:u01:26, +15:u0B:describes/a, +6:u00:26, +15:u0A:describes/a, +15:u09:describes/a, +24:u0B:network/architecture, +7:u08:low, +24:u0A:network/architecture, +21:u0B:architecture/that, +15:u0C:describes/a, +7:u07:low, +24:u09:network/architecture, +21:u0A:architecture/that, +17:u0B:that/provides, +7:u06:low, +11:u08:latency, +21:u09:architecture/that, +17:u0A:that/provides, +16:u0B:provides/low, +24:u0C:network/architecture, +7:u14:low, +7:u05:low, +11:u07:latency, +17:u09:that/provides, +16:u0A:provides/low, +9:u0B:low/-, +21:u0C:architecture/that, +7:u13:low, +7:u04:low, +11:u06:latency, +16:u09:provides/low, +9:u0A:low/-, +13:u0B:-/latency, +17:u0C:that/provides, +9:u0D:low/0, +7:u12:low, +11:u14:latency, +7:u22:low, +7:u23:low, +7:u33:low, +7:u03:low, +11:u05:latency, +9:u09:low/-, +13:u0A:-/latency, +13:u0B:latency/,, +16:u0C:provides/low, +7:u11:low, +11:u13:latency, +7:u02:low, +11:u04:latency, +10:u08:jitter, +13:u09:-/latency, +13:u0A:latency/,, +9:u0B:,/low, +9:u0C:low/-, +13:u0D:latency/1, +7:u10:low, +11:u12:latency, +7:u22:lat, +8:u23:late, +7:u01:low, +11:u03:latency, +10:u07:jitter, +13:u09:latency/,, +9:u0A:,/low, +13:u0C:-/latency, +11:u11:latency, +7:u00:low, +11:u02:latency, +10:u06:jitter, +8:u08:high, +9:u09:,/low, +12:u0B:-/jitter, +13:u0C:latency/,, +11:u10:latency, +10:u14:jitter, +11:u01:latency, +10:u05:jitter, +8:u07:high, +12:u0A:-/jitter, +14:u0B:jitter/and, +9:u0C:,/low, +10:u13:jitter, +11:u00:latency, +10:u04:jitter, +8:u06:high, +15:u08:reliability, +12:u09:-/jitter, +14:u0A:jitter/and, +12:u0B:and/high, +12:u0D:jitter/1, +10:u12:jitter, +8:u14:high, +6:u21:ji, +7:u22:jit, +8:u23:jitt, +8:u33:tter, +10:u03:jitter, +8:u05:high, +15:u07:reliability, +14:u09:jitter/and, +12:u0A:and/high, +10:u0B:high/-, +12:u0C:-/jitter, +10:u11:jitter, +8:u13:high, +10:u02:jitter, +8:u04:high, +15:u06:reliability, +12:u08:delivery, +12:u09:and/high, +10:u0A:high/-, +17:u0B:-/reliability, +14:u0C:jitter/and, +10:u0D:high/0, +10:u10:jitter, +8:u12:high, +15:u14:reliability, +6:u31:gh, +7:u32:igh, +8:u33:high, +10:u01:jitter, +8:u03:high, +15:u05:reliability, +12:u07:delivery, +10:u09:high/-, +17:u0A:-/reliability, +22:u0B:reliability/packet, +12:u0C:and/high, +8:u11:high, +15:u13:reliability, +10:u00:jitter, +8:u02:high, +15:u04:reliability, +12:u06:delivery, +17:u09:-/reliability, +22:u0A:reliability/packet, +19:u0B:packet/delivery, +10:u0C:high/-, +17:u0D:reliability/1, +8:u10:high, +15:u12:reliability, +12:u14:delivery, +8:u23:reli, +8:u01:high, +15:u03:reliability, +12:u05:delivery, +12:u08:combines, +22:u09:reliability/packet, +19:u0A:packet/delivery, +14:u0B:delivery/., +17:u0C:-/reliability, +15:u11:reliability, +12:u13:delivery, +8:u00:high, +15:u02:reliability, +12:u04:delivery, +12:u07:combines, +19:u09:packet/delivery, +14:u0A:delivery/., +22:u0C:reliability/packet, +14:u0D:delivery/0, +15:u10:reliability, +12:u12:delivery, +7:u22:del, +8:u23:deli, +15:u01:reliability, +12:u03:delivery, +12:u06:combines, +14:u09:delivery/., +15:u0B:It/combines, +19:u0C:packet/delivery, +12:u11:delivery, +12:u14:combines, +15:u00:reliability, +12:u02:delivery, +12:u05:combines, +15:u0A:It/combines, +14:u0B:combines/a, +14:u0C:delivery/., +12:u10:delivery, +12:u13:combines, +12:u01:delivery, +12:u04:combines, +9:u08:speed, +15:u09:It/combines, +14:u0A:combines/a, +10:u0B:a/high, +14:u0D:combines/0, +12:u12:combines, +8:u23:comb, +12:u00:delivery, +12:u03:combines, +9:u07:speed, +11:u08:powered, +14:u09:combines/a, +10:u0A:a/high, +15:u0C:It/combines, +12:u11:combines, +12:u02:combines, +9:u06:speed, +11:u07:powered, +12:u08:backbone, +10:u09:a/high, +11:u0B:-/speed, +14:u0C:combines/a, +12:u10:combines, +9:u14:speed, +12:u01:combines, +9:u05:speed, +11:u06:powered, +12:u07:backbone, +11:u0A:-/speed, +17:u0B:speed/powered, +10:u0C:a/high, +9:u13:speed, +11:u14:powered, +12:u00:combines, +9:u04:speed, +11:u05:powered, +12:u06:backbone, +15:u08:subnetworks, +11:u09:-/speed, +17:u0A:speed/powered, +20:u0B:powered/backbone, +11:u0D:speed/1, +9:u12:speed, +11:u13:powered, +12:u14:backbone, +8:u23:spee, +7:u32:eed, +8:u33:peed, +9:u03:speed, +11:u04:powered, +12:u05:backbone, +15:u07:subnetworks, +17:u09:speed/powered, +20:u0A:powered/backbone, +16:u0B:backbone/and, +11:u0C:-/speed, +13:u0D:powered/0, +9:u11:speed, +11:u12:powered, +12:u13:backbone, +7:u22:pow, +8:u23:powe, +9:u02:speed, +11:u03:powered, +12:u04:backbone, +15:u06:subnetworks, +20:u09:powered/backbone, +16:u0A:backbone/and, +19:u0B:and/subnetworks, +17:u0C:speed/powered, +14:u0D:backbone/0, +9:u10:speed, +11:u11:powered, +12:u12:backbone, +15:u14:subnetworks, +7:u22:bac, +8:u23:back, +8:u33:bone, +9:u01:speed, +11:u02:powered, +12:u03:backbone, +15:u05:subnetworks, +16:u09:backbone/and, +19:u0A:and/subnetworks, +21:u0B:subnetworks/using, +20:u0C:powered/backbone, +11:u10:powered, +12:u11:backbone, +15:u13:subnetworks, +9:u00:speed, +11:u01:powered, +12:u02:backbone, +15:u04:subnetworks, +19:u09:and/subnetworks, +21:u0A:subnetworks/using, +14:u0B:using/IEEE, +16:u0C:backbone/and, +17:u0D:subnetworks/0, +12:u10:backbone, +15:u12:subnetworks, +8:u23:subn, +11:u00:powered, +12:u01:backbone, +15:u03:subnetworks, +21:u09:subnetworks/using, +14:u0A:using/IEEE, +19:u0C:and/subnetworks, +15:u11:subnetworks, +12:u00:backbone, +15:u02:subnetworks, +14:u09:using/IEEE, +21:u0C:subnetworks/using, +15:u10:subnetworks, +15:u01:subnetworks, +14:u0C:using/IEEE, +15:u00:subnetworks, +11:u08:slotted, +10:u0B:4/time, +11:u07:slotted, +10:u0A:4/time, +10:u0B:time/-, +11:u06:slotted, +11:u08:hopping, +10:u09:4/time, +10:u0A:time/-, +13:u0B:-/slotted, +11:u14:slotted, +11:u05:slotted, +11:u07:hopping, +10:u09:time/-, +13:u0A:-/slotted, +19:u0B:slotted/channel, +10:u0C:4/time, +11:u13:slotted, +11:u04:slotted, +11:u06:hopping, +13:u09:-/slotted, +19:u0A:slotted/channel, +19:u0B:channel/hopping, +10:u0C:time/-, +13:u0D:slotted/1, +11:u12:slotted, +11:u14:hopping, +6:u21:sl, +7:u22:slo, +8:u23:slot, +11:u03:slotted, +11:u05:hopping, +19:u09:slotted/channel, +19:u0A:channel/hopping, +13:u0B:hopping/(, +13:u0C:-/slotted, +11:u11:slotted, +11:u13:hopping, +11:u02:slotted, +11:u04:hopping, +19:u09:channel/hopping, +13:u0A:hopping/(, +10:u0B:(/TSCH, +19:u0C:slotted/channel, +13:u0D:hopping/0, +11:u10:slotted, +11:u12:hopping, +8:u23:hopp, +8:u33:ping, +11:u01:slotted, +11:u03:hopping, +8:u08:meet, +13:u09:hopping/(, +10:u0A:(/TSCH, +10:u0B:TSCH/), +19:u0C:channel/hopping, +11:u11:hopping, +11:u00:slotted, +11:u02:hopping, +8:u07:meet, +10:u09:(/TSCH, +10:u0A:TSCH/), +8:u0B:)/to, +13:u0C:hopping/(, +11:u10:hopping, +11:u01:hopping, +8:u06:meet, +10:u09:TSCH/), +8:u0A:)/to, +11:u0B:to/meet, +10:u0C:(/TSCH, +8:u14:meet, +11:u00:hopping, +8:u05:meet, +8:u09:)/to, +11:u0A:to/meet, +12:u0B:meet/the, +10:u0C:TSCH/), +8:u13:meet, +8:u04:meet, +12:u08:LowPower, +11:u09:to/meet, +12:u0A:meet/the, +20:u0B:the/requirements, +8:u0C:)/to, +10:u0D:meet/0, +8:u12:meet, +7:u22:mee, +8:u23:meet, +8:u33:meet, +8:u03:meet, +12:u07:LowPower, +12:u08:wireless, +12:u09:meet/the, +20:u0A:the/requirements, +19:u0B:requirements/of, +11:u0C:to/meet, +8:u11:meet, +8:u02:meet, +12:u06:LowPower, +12:u07:wireless, +17:u08:deterministic, +20:u09:the/requirements, +19:u0A:requirements/of, +15:u0B:of/LowPower, +12:u0C:meet/the, +8:u10:meet, +12:u14:lowpower, +8:u01:meet, +12:u05:LowPower, +12:u06:wireless, +17:u07:deterministic, +16:u08:applications, +19:u09:requirements/of, +15:u0A:of/LowPower, +21:u0B:LowPower/wireless, +20:u0C:the/requirements, +12:u13:lowpower, +12:u14:wireless, +8:u00:meet, +12:u04:LowPower, +12:u05:wireless, +17:u06:deterministic, +16:u07:applications, +15:u09:of/LowPower, +21:u0A:LowPower/wireless, +26:u0B:wireless/deterministic, +19:u0C:requirements/of, +14:u0D:LowPower/0, +12:u12:lowpower, +12:u13:wireless, +17:u14:deterministic, +7:u22:Low, +8:u23:LowP, +8:u33:ower, +12:u03:LowPower, +12:u04:wireless, +17:u05:deterministic, +16:u06:applications, +21:u09:LowPower/wireless, +26:u0A:wireless/deterministic, +30:u0B:deterministic/applications, +15:u0C:of/LowPower, +14:u0D:wireless/0, +12:u11:lowpower, +12:u12:wireless, +17:u13:deterministic, +16:u14:applications, +8:u33:less, +12:u02:LowPower, +12:u03:wireless, +17:u04:deterministic, +16:u05:applications, +26:u09:wireless/deterministic, +30:u0A:deterministic/applications, +18:u0B:applications/., +21:u0C:LowPower/wireless, +19:u0D:deterministic/0, +12:u10:lowpower, +12:u11:wireless, +17:u12:deterministic, +16:u13:applications, +8:u23:dete, +7:u32:tic, +8:u33:stic, +12:u01:LowPower, +12:u02:wireless, +17:u03:deterministic, +16:u04:applications, +30:u09:deterministic/applications, +18:u0A:applications/., +26:u0C:wireless/deterministic, +18:u0D:applications/0, +12:u10:wireless, +17:u11:deterministic, +16:u12:applications, +8:u23:appl, +12:u00:LowPower, +12:u01:wireless, +17:u02:deterministic, +16:u03:applications, +18:u09:applications/., +30:u0C:deterministic/applications, +17:u10:deterministic, +16:u11:applications, +12:u00:wireless, +17:u01:deterministic, +16:u02:applications, +18:u0C:applications/., +16:u10:applications, +17:u00:deterministic, +16:u01:applications, +16:u00:applications, +10:u08:Pascal, +10:u07:Pascal, +10:u06:Pascal, +12:u0B:./Pascal, +10:u14:pascal, +10:u05:Pascal, +12:u0A:./Pascal, +18:u0B:Pascal/Thubert, +10:u13:pascal, +10:u04:Pascal, +12:u09:./Pascal, +18:u0A:Pascal/Thubert, +13:u0B:Thubert/(, +12:u0D:Pascal/0, +10:u12:pascal, +7:u22:Pas, +8:u23:Pasc, +8:u33:scal, +10:u03:Pascal, +18:u09:Pascal/Thubert, +13:u0A:Thubert/(, +12:u0B:(/editor, +12:u0C:./Pascal, +10:u11:pascal, +10:u02:Pascal, +13:u09:Thubert/(, +12:u0A:(/editor, +12:u0B:editor/), +18:u0C:Pascal/Thubert, +10:u10:pascal, +10:u01:Pascal, +12:u09:(/editor, +12:u0A:editor/), +13:u0C:Thubert/(, +12:u0D:editor/0, +10:u00:Pascal, +12:u09:editor/), +12:u0C:(/editor, +12:u08:Building, +12:u0C:editor/), +12:u07:Building, +12:u06:Building, +6:u08:45, +16:u0B:Inc/Building, +12:u05:Building, +6:u07:45, +9:u08:Allee, +16:u0A:Inc/Building, +14:u0B:Building/D, +12:u04:Building, +6:u06:45, +9:u07:Allee, +7:u08:des, +16:u09:Inc/Building, +14:u0A:Building/D, +8:u0B:D/45, +14:u0D:Building/0, +6:u14:45, +6:u21:Bu, +7:u22:Bui, +8:u23:Buil, +12:u03:Building, +6:u05:45, +9:u06:Allee, +7:u07:des, +9:u08:Ormes, +14:u09:Building/D, +8:u0A:D/45, +12:u0B:45/Allee, +16:u0C:Inc/Building, +6:u13:45, +9:u14:allee, +12:u02:Building, +6:u04:45, +9:u05:Allee, +7:u06:des, +9:u07:Ormes, +8:u09:D/45, +12:u0A:45/Allee, +13:u0B:Allee/des, +14:u0C:Building/D, +8:u0D:45/0, +6:u12:45, +9:u13:allee, +7:u14:des, +6:u22:45, +6:u23:45, +6:u31:45, +6:u32:45, +6:u33:45, +12:u01:Building, +6:u03:45, +9:u04:Allee, +7:u05:des, +9:u06:Ormes, +10:u08:BP1200, +12:u09:45/Allee, +13:u0A:Allee/des, +13:u0B:des/Ormes, +8:u0C:D/45, +11:u0D:Allee/0, +6:u11:45, +9:u12:allee, +7:u13:des, +9:u14:ormes, +8:u23:Alle, +7:u32:lee, +8:u33:llee, +12:u00:Building, +6:u02:45, +9:u03:Allee, +7:u04:des, +9:u05:Ormes, +10:u07:BP1200, +11:u08:MOUGINS, +13:u09:Allee/des, +13:u0A:des/Ormes, +11:u0B:Ormes/-, +12:u0C:45/Allee, +9:u0D:des/0, +6:u10:45, +9:u11:allee, +7:u12:des, +9:u13:ormes, +7:u23:des, +7:u33:des, +6:u01:45, +9:u02:Allee, +7:u03:des, +9:u04:Ormes, +10:u06:BP1200, +11:u07:MOUGINS, +13:u09:des/Ormes, +11:u0A:Ormes/-, +12:u0B:-/BP1200, +13:u0C:Allee/des, +11:u0D:Ormes/0, +9:u10:allee, +7:u11:des, +9:u12:ormes, +10:u14:bp1200, +7:u22:Orm, +8:u23:Orme, +8:u33:rmes, +6:u00:45, +9:u01:Allee, +7:u02:des, +9:u03:Ormes, +10:u05:BP1200, +11:u06:MOUGINS, +10:u08:Sophia, +11:u09:Ormes/-, +12:u0A:-/BP1200, +18:u0B:BP1200/MOUGINS, +13:u0C:des/Ormes, +7:u10:des, +9:u11:ormes, +10:u13:bp1200, +11:u14:mougins, +9:u00:Allee, +7:u01:des, +9:u02:Ormes, +10:u04:BP1200, +11:u05:MOUGINS, +10:u07:Sophia, +13:u08:Antipolis, +12:u09:-/BP1200, +18:u0A:BP1200/MOUGINS, +13:u0B:MOUGINS/-, +11:u0C:Ormes/-, +12:u0D:BP1200/1, +9:u10:ormes, +10:u12:bp1200, +11:u13:mougins, +6:u21:BP, +7:u22:BP1, +8:u23:BP12, +7:u32:200, +8:u33:1200, +7:u00:des, +9:u01:Ormes, +10:u03:BP1200, +11:u04:MOUGINS, +10:u06:Sophia, +13:u07:Antipolis, +9:u08:06254, +18:u09:BP1200/MOUGINS, +13:u0A:MOUGINS/-, +12:u0B:-/Sophia, +12:u0C:-/BP1200, +13:u0D:MOUGINS/0, +10:u11:bp1200, +11:u12:mougins, +10:u14:sophia, +6:u21:MO, +7:u22:MOU, +8:u23:MOUG, +6:u31:NS, +7:u32:INS, +8:u33:GINS, +9:u00:Ormes, +10:u02:BP1200, +11:u03:MOUGINS, +10:u05:Sophia, +13:u06:Antipolis, +9:u07:06254, +10:u08:FRANCE, +13:u09:MOUGINS/-, +12:u0A:-/Sophia, +20:u0B:Sophia/Antipolis, +18:u0C:BP1200/MOUGINS, +10:u10:bp1200, +11:u11:mougins, +10:u13:sophia, +13:u14:antipolis, +10:u01:BP1200, +11:u02:MOUGINS, +10:u04:Sophia, +13:u05:Antipolis, +9:u06:06254, +10:u07:FRANCE, +12:u09:-/Sophia, +20:u0A:Sophia/Antipolis, +19:u0B:Antipolis/06254, +13:u0C:MOUGINS/-, +12:u0D:Sophia/1, +11:u10:mougins, +10:u12:sophia, +13:u13:antipolis, +9:u14:06254, +7:u22:Sop, +8:u23:Soph, +7:u32:hia, +8:u33:phia, +10:u00:BP1200, +11:u01:MOUGINS, +10:u03:Sophia, +13:u04:Antipolis, +9:u05:06254, +10:u06:FRANCE, +20:u09:Sophia/Antipolis, +19:u0A:Antipolis/06254, +16:u0B:06254/FRANCE, +12:u0C:-/Sophia, +15:u0D:Antipolis/0, +10:u11:sophia, +13:u12:antipolis, +9:u13:06254, +10:u14:france, +7:u22:Ant, +8:u23:Anti, +11:u00:MOUGINS, +10:u02:Sophia, +13:u03:Antipolis, +9:u04:06254, +10:u05:FRANCE, +7:u08:+33, +19:u09:Antipolis/06254, +16:u0A:06254/FRANCE, +16:u0B:FRANCE/Phone, +20:u0C:Sophia/Antipolis, +11:u0D:06254/0, +10:u10:sophia, +13:u11:antipolis, +9:u12:06254, +10:u13:france, +7:u22:062, +8:u23:0625, +7:u32:254, +8:u33:6254, +10:u01:Sophia, +13:u02:Antipolis, +9:u03:06254, +10:u04:FRANCE, +7:u07:+33, +7:u08:497, +16:u09:06254/FRANCE, +16:u0A:FRANCE/Phone, +19:u0C:Antipolis/06254, +12:u0D:FRANCE/0, +13:u10:antipolis, +9:u11:06254, +10:u12:france, +6:u21:FR, +7:u22:FRA, +8:u23:FRAN, +6:u31:CE, +7:u32:NCE, +8:u33:ANCE, +10:u00:Sophia, +13:u01:Antipolis, +9:u02:06254, +10:u03:FRANCE, +7:u06:+33, +7:u07:497, +16:u09:FRANCE/Phone, +9:u0B::/+33, +16:u0C:06254/FRANCE, +9:u10:06254, +10:u11:france, +7:u14:+33, +13:u00:Antipolis, +9:u01:06254, +10:u02:FRANCE, +7:u05:+33, +7:u06:497, +9:u0A::/+33, +11:u0B:+33/497, +16:u0C:FRANCE/Phone, +10:u10:france, +7:u13:+33, +7:u14:497, +9:u00:06254, +10:u01:FRANCE, +7:u04:+33, +7:u05:497, +6:u08:34, +9:u09::/+33, +11:u0A:+33/497, +10:u0B:497/23, +9:u0D:+33/0, +7:u12:+33, +7:u13:497, +7:u22:+33, +7:u23:+33, +7:u32:+33, +7:u33:+33, +10:u00:FRANCE, +7:u03:+33, +7:u04:497, +6:u07:34, +11:u09:+33/497, +10:u0A:497/23, +9:u0B:23/26, +9:u0C::/+33, +9:u0D:497/0, +7:u11:+33, +7:u12:497, +6:u21:49, +7:u22:497, +7:u23:497, +7:u32:497, +7:u33:497, +7:u02:+33, +7:u03:497, +6:u06:34, +10:u09:497/23, +9:u0A:23/26, +9:u0B:26/34, +11:u0C:+33/497, +7:u10:+33, +7:u11:497, +6:u14:34, +7:u01:+33, +7:u02:497, +6:u05:34, +18:u08:pthubert@cisco, +9:u09:23/26, +9:u0A:26/34, +12:u0B:34/Email, +10:u0C:497/23, +8:u0D:26/0, +7:u10:497, +6:u13:34, +7:u00:+33, +7:u01:497, +6:u04:34, +18:u07:pthubert@cisco, +9:u09:26/34, +12:u0A:34/Email, +9:u0C:23/26, +8:u0D:34/0, +6:u12:34, +6:u21:34, +6:u22:34, +6:u23:34, +6:u32:34, +6:u33:34, +7:u00:497, +6:u03:34, +18:u06:pthubert@cisco, +12:u09:34/Email, +20:u0B::/pthubert@cisco, +9:u0C:26/34, +6:u11:34, +18:u14:pthubert@cisco, +6:u02:34, +18:u05:pthubert@cisco, +20:u0A::/pthubert@cisco, +20:u0B:pthubert@cisco/., +12:u0C:34/Email, +6:u10:34, +18:u13:pthubert@cisco, +6:u01:34, +18:u04:pthubert@cisco, +20:u09::/pthubert@cisco, +20:u0A:pthubert@cisco/., +20:u0D:pthubert@cisco/0, +18:u12:pthubert@cisco, +6:u21:pt, +7:u22:pth, +8:u23:pthu, +6:u00:34, +18:u03:pthubert@cisco, +20:u09:pthubert@cisco/., +20:u0C::/pthubert@cisco, +18:u11:pthubert@cisco, +18:u02:pthubert@cisco, +20:u0C:pthubert@cisco/., +18:u10:pthubert@cisco, +12:u06:20190804, +17:u0B:date/20190804, +12:u14:20190804, +12:u05:20190804, +17:u0A:date/20190804, +14:u0B:20190804/;, +12:u13:20190804, +12:u04:20190804, +17:u09:date/20190804, +14:u0A:20190804/;, +14:u0D:20190804/0, +12:u12:20190804, +7:u32:804, +8:u33:0804, +12:u03:20190804, +14:u09:20190804/;, +17:u0C:date/20190804, +12:u11:20190804, +12:u02:20190804, +12:u08:20190805, +14:u0C:20190804/;, +12:u10:20190804, +12:u01:20190804, +12:u07:20190805, +9:u08:NFSv4, +12:u00:20190804, +12:u06:20190805, +9:u07:NFSv4, +15:u0B:on/20190805, +12:u14:20190805, +12:u05:20190805, +9:u06:NFSv4, +15:u0A:on/20190805, +18:u0B:20190805/NFSv4, +12:u13:20190805, +9:u14:nfsv4, +12:u04:20190805, +9:u05:NFSv4, +10:u08:Noveck, +15:u09:on/20190805, +18:u0A:20190805/NFSv4, +11:u0B:NFSv4/D, +14:u0D:20190805/0, +12:u12:20190805, +9:u13:nfsv4, +7:u32:805, +8:u33:0805, +12:u03:20190805, +9:u04:NFSv4, +10:u07:Noveck, +18:u09:20190805/NFSv4, +11:u0A:NFSv4/D, +15:u0C:on/20190805, +11:u0D:NFSv4/0, +12:u11:20190805, +9:u12:nfsv4, +6:u21:NF, +7:u22:NFS, +8:u23:NFSv, +6:u31:v4, +7:u32:Sv4, +8:u33:FSv4, +12:u02:20190805, +9:u03:NFSv4, +10:u06:Noveck, +11:u09:NFSv4/D, +12:u0B:./Noveck, +18:u0C:20190805/NFSv4, +12:u10:20190805, +9:u11:nfsv4, +10:u14:noveck, +12:u01:20190805, +9:u02:NFSv4, +10:u05:Noveck, +12:u0A:./Noveck, +12:u0B:Noveck/,, +11:u0C:NFSv4/D, +9:u10:nfsv4, +10:u13:noveck, +12:u00:20190805, +9:u01:NFSv4, +10:u04:Noveck, +12:u09:./Noveck, +12:u0A:Noveck/,, +12:u0D:Noveck/0, +10:u12:noveck, +7:u22:Nov, +8:u23:Nove, +7:u32:eck, +8:u33:veck, +9:u00:NFSv4, +10:u03:Noveck, +12:u09:Noveck/,, +12:u0C:./Noveck, +10:u11:noveck, +10:u02:Noveck, +12:u0C:Noveck/,, +10:u10:noveck, +10:u01:Noveck, +10:u08:NetApp, +10:u00:Noveck, +10:u07:NetApp, +10:u06:NetApp, +16:u0B:Draft/NetApp, +10:u14:netapp, +10:u05:NetApp, +8:u08:5661, +16:u0A:Draft/NetApp, +20:u0B:NetApp/Obsoletes, +10:u13:netapp, +10:u04:NetApp, +8:u07:5661, +16:u09:Draft/NetApp, +20:u0A:NetApp/Obsoletes, +12:u0D:NetApp/0, +10:u12:netapp, +8:u23:NetA, +6:u31:pp, +7:u32:App, +8:u33:tApp, +10:u03:NetApp, +8:u06:5661, +20:u09:NetApp/Obsoletes, +10:u0B::/5661, +16:u0C:Draft/NetApp, +10:u11:netapp, +8:u14:5661, +10:u02:NetApp, +8:u05:5661, +10:u0A::/5661, +10:u0B:5661/(, +20:u0C:NetApp/Obsoletes, +10:u10:netapp, +8:u13:5661, +10:u01:NetApp, +8:u04:5661, +10:u09::/5661, +10:u0A:5661/(, +10:u0D:5661/0, +8:u12:5661, +6:u21:56, +7:u22:566, +8:u23:5661, +6:u31:61, +7:u32:661, +8:u33:5661, +10:u00:NetApp, +8:u03:5661, +10:u09:5661/(, +10:u0C::/5661, +8:u11:5661, +8:u02:5661, +10:u0C:5661/(, +8:u10:5661, +8:u01:5661, +9:u08:Lever, +7:u0B:)/C, +8:u00:5661, +9:u07:Lever, +7:u0A:)/C, +9:u06:Lever, +7:u09:)/C, +11:u0B:./Lever, +9:u14:lever, +9:u05:Lever, +11:u0A:./Lever, +18:u0B:Lever/Intended, +7:u0C:)/C, +9:u13:lever, +9:u04:Lever, +11:u09:./Lever, +18:u0A:Lever/Intended, +11:u0D:Lever/0, +9:u12:lever, +7:u22:Lev, +8:u23:Leve, +9:u03:Lever, +18:u09:Lever/Intended, +11:u0C:./Lever, +9:u11:lever, +9:u02:Lever, +10:u08:ORACLE, +18:u0C:Lever/Intended, +9:u10:lever, +9:u01:Lever, +10:u07:ORACLE, +9:u00:Lever, +10:u06:ORACLE, +16:u0B:Track/ORACLE, +10:u14:oracle, +10:u05:ORACLE, +16:u0A:Track/ORACLE, +18:u0B:ORACLE/Expires, +10:u13:oracle, +10:u04:ORACLE, +16:u09:Track/ORACLE, +18:u0A:ORACLE/Expires, +12:u0D:ORACLE/0, +10:u12:oracle, +6:u21:OR, +7:u22:ORA, +8:u23:ORAC, +6:u31:LE, +7:u32:CLE, +8:u33:ACLE, +10:u03:ORACLE, +18:u09:ORACLE/Expires, +16:u0C:Track/ORACLE, +10:u11:oracle, +10:u02:ORACLE, +14:u0B:February/5, +18:u0C:ORACLE/Expires, +10:u10:oracle, +10:u01:ORACLE, +14:u0A:February/5, +10:u00:ORACLE, +14:u09:February/5, +15:u0B:2020/August, +14:u0C:February/5, +15:u0A:2020/August, +12:u0B:August/4, +15:u09:2020/August, +12:u0A:August/4, +7:u0B:4/,, +8:u08:File, +12:u09:August/4, +7:u0A:4/,, +15:u0C:2020/August, +8:u07:File, +10:u08:System, +7:u09:4/,, +16:u0B:2019/Network, +12:u0C:August/4, +8:u06:File, +10:u07:System, +16:u0A:2019/Network, +16:u0B:Network/File, +7:u0C:4/,, +8:u14:file, +8:u05:File, +10:u06:System, +7:u08:NFS, +16:u09:2019/Network, +16:u0A:Network/File, +15:u0B:File/System, +8:u13:file, +8:u04:File, +10:u05:System, +7:u07:NFS, +16:u09:Network/File, +15:u0A:File/System, +12:u0B:System/(, +16:u0C:2019/Network, +10:u0D:File/0, +8:u12:file, +7:u22:Fil, +8:u23:File, +8:u33:File, +8:u03:File, +10:u04:System, +7:u06:NFS, +11:u08:Version, +15:u09:File/System, +12:u0A:System/(, +9:u0B:(/NFS, +16:u0C:Network/File, +12:u0D:System/0, +8:u11:file, +7:u14:nfs, +8:u02:File, +10:u03:System, +7:u05:NFS, +11:u07:Version, +12:u09:System/(, +9:u0A:(/NFS, +9:u0B:NFS/), +15:u0C:File/System, +8:u10:file, +7:u13:nfs, +8:u01:File, +10:u02:System, +7:u04:NFS, +11:u06:Version, +9:u08:Minor, +9:u09:(/NFS, +9:u0A:NFS/), +13:u0B:)/Version, +12:u0C:System/(, +9:u0D:NFS/0, +7:u12:nfs, +11:u14:version, +7:u23:NFS, +6:u31:FS, +7:u32:NFS, +7:u33:NFS, +8:u00:File, +10:u01:System, +7:u03:NFS, +11:u05:Version, +9:u07:Minor, +9:u09:NFS/), +13:u0A:)/Version, +13:u0B:Version/4, +9:u0C:(/NFS, +7:u11:nfs, +11:u13:version, +10:u00:System, +7:u02:NFS, +11:u04:Version, +9:u06:Minor, +13:u09:)/Version, +13:u0A:Version/4, +11:u0B:4/Minor, +9:u0C:NFS/), +13:u0D:Version/0, +7:u10:nfs, +11:u12:version, +9:u14:minor, +7:u22:Ver, +8:u23:Vers, +7:u01:NFS, +11:u03:Version, +9:u05:Minor, +13:u09:Version/4, +11:u0A:4/Minor, +17:u0B:Minor/Version, +13:u0C:)/Version, +11:u11:version, +9:u13:minor, +7:u00:NFS, +11:u02:Version, +9:u04:Minor, +11:u09:4/Minor, +17:u0A:Minor/Version, +13:u0B:Version/1, +13:u0C:Version/4, +11:u0D:Minor/0, +11:u10:version, +9:u12:minor, +6:u21:Mi, +7:u22:Min, +8:u23:Mino, +8:u33:inor, +11:u01:Version, +9:u03:Minor, +17:u09:Minor/Version, +13:u0A:Version/1, +14:u0B:1/Protocol, +11:u0C:4/Minor, +9:u11:minor, +11:u00:Version, +9:u02:Minor, +13:u09:Version/1, +14:u0A:1/Protocol, +18:u0B:Protocol/draft, +17:u0C:Minor/Version, +9:u10:minor, +9:u01:Minor, +14:u09:1/Protocol, +18:u0A:Protocol/draft, +13:u0C:Version/1, +9:u00:Minor, +9:u08:nfsv4, +18:u09:Protocol/draft, +14:u0C:1/Protocol, +9:u07:nfsv4, +18:u0C:Protocol/draft, +9:u06:nfsv4, +17:u08:rfc5661sesqui, +11:u0B:-/nfsv4, +9:u05:nfsv4, +17:u07:rfc5661sesqui, +11:u0A:-/nfsv4, +11:u0B:nfsv4/-, +9:u04:nfsv4, +17:u06:rfc5661sesqui, +8:u08:msns, +11:u09:-/nfsv4, +11:u0A:nfsv4/-, +19:u0B:-/rfc5661sesqui, +11:u0D:nfsv4/1, +17:u14:rfc5661sesqui, +6:u21:nf, +7:u22:nfs, +8:u23:nfsv, +7:u32:sv4, +8:u33:fsv4, +9:u03:nfsv4, +17:u05:rfc5661sesqui, +8:u07:msns, +11:u09:nfsv4/-, +19:u0A:-/rfc5661sesqui, +19:u0B:rfc5661sesqui/-, +11:u0C:-/nfsv4, +17:u13:rfc5661sesqui, +9:u02:nfsv4, +17:u04:rfc5661sesqui, +8:u06:msns, +19:u09:-/rfc5661sesqui, +19:u0A:rfc5661sesqui/-, +10:u0B:-/msns, +11:u0C:nfsv4/-, +19:u0D:rfc5661sesqui/1, +17:u12:rfc5661sesqui, +8:u14:msns, +8:u23:rfc5, +6:u31:ui, +7:u32:qui, +8:u33:squi, +9:u01:nfsv4, +17:u03:rfc5661sesqui, +8:u05:msns, +19:u09:rfc5661sesqui/-, +10:u0A:-/msns, +10:u0B:msns/-, +19:u0C:-/rfc5661sesqui, +17:u11:rfc5661sesqui, +8:u13:msns, +9:u00:nfsv4, +17:u02:rfc5661sesqui, +8:u04:msns, +10:u09:-/msns, +10:u0A:msns/-, +19:u0C:rfc5661sesqui/-, +10:u0D:msns/1, +17:u10:rfc5661sesqui, +8:u12:msns, +6:u21:ms, +7:u22:msn, +8:u23:msns, +7:u32:sns, +8:u33:msns, +17:u01:rfc5661sesqui, +8:u03:msns, +10:u09:msns/-, +10:u0C:-/msns, +8:u11:msns, +17:u00:rfc5661sesqui, +8:u02:msns, +10:u0C:msns/-, +8:u10:msns, +8:u01:msns, +8:u00:msns, +15:u0B:the/Network, +15:u0A:the/Network, +15:u09:the/Network, +15:u0C:the/Network, +11:u08:version, +11:u07:version, +11:u06:version, +9:u08:minor, +13:u0B:)/version, +11:u05:version, +9:u07:minor, +13:u0A:)/version, +13:u0B:version/4, +11:u04:version, +9:u06:minor, +13:u09:)/version, +13:u0A:version/4, +11:u0B:4/minor, +13:u0D:version/0, +8:u23:vers, +11:u03:version, +9:u05:minor, +13:u09:version/4, +11:u0A:4/minor, +17:u0B:minor/version, +13:u0C:)/version, +11:u02:version, +9:u04:minor, +11:u09:4/minor, +17:u0A:minor/version, +13:u0B:version/1, +13:u0C:version/4, +11:u0D:minor/0, +8:u23:mino, +11:u01:version, +9:u03:minor, +12:u08:features, +17:u09:minor/version, +13:u0A:version/1, +7:u0B:1/,, +11:u0C:4/minor, +11:u00:version, +9:u02:minor, +12:u07:features, +12:u08:retained, +13:u09:version/1, +7:u0A:1/,, +17:u0C:minor/version, +9:u01:minor, +12:u06:features, +12:u07:retained, +7:u09:1/,, +22:u0B:including/features, +13:u0C:version/1, +12:u14:features, +9:u00:minor, +12:u05:features, +12:u06:retained, +22:u0A:including/features, +21:u0B:features/retained, +7:u0C:1/,, +12:u13:features, +12:u14:retained, +12:u04:features, +12:u05:retained, +8:u08:base, +22:u09:including/features, +21:u0A:features/retained, +17:u0B:retained/from, +14:u0D:features/0, +12:u12:features, +12:u13:retained, +12:u03:features, +12:u04:retained, +8:u07:base, +21:u09:features/retained, +17:u0A:retained/from, +12:u0B:from/the, +22:u0C:including/features, +14:u0D:retained/0, +12:u11:features, +12:u12:retained, +8:u23:reta, +12:u02:features, +12:u03:retained, +8:u06:base, +17:u09:retained/from, +12:u0A:from/the, +12:u0B:the/base, +21:u0C:features/retained, +12:u10:features, +12:u11:retained, +8:u14:base, +12:u01:features, +12:u02:retained, +8:u05:base, +12:u09:from/the, +12:u0A:the/base, +17:u0B:base/protocol, +17:u0C:retained/from, +12:u10:retained, +8:u13:base, +12:u00:features, +12:u01:retained, +8:u04:base, +12:u09:the/base, +17:u0A:base/protocol, +14:u0B:protocol/(, +12:u0C:from/the, +10:u0D:base/0, +8:u12:base, +8:u33:base, +12:u00:retained, +8:u03:base, +17:u09:base/protocol, +14:u0A:protocol/(, +12:u0C:the/base, +8:u11:base, +8:u02:base, +14:u09:protocol/(, +15:u0B:NFS/version, +17:u0C:base/protocol, +8:u10:base, +8:u01:base, +15:u0A:NFS/version, +14:u0C:protocol/(, +8:u00:base, +5:u08:0, +15:u09:NFS/version, +5:u07:0, +15:u0C:NFS/version, +5:u06:0, +13:u0B:version/0, +5:u14:0, +5:u05:0, +13:u0A:version/0, +7:u0B:0/,, +5:u13:0, +5:u04:0, +13:u08:specified, +13:u09:version/0, +7:u0A:0/,, +7:u0D:0/0, +5:u12:0, +5:u21:0, +5:u22:0, +5:u23:0, +5:u31:0, +5:u32:0, +5:u33:0, +5:u03:0, +13:u07:specified, +7:u09:0/,, +12:u0B:which/is, +13:u0C:version/0, +5:u11:0, +5:u02:0, +13:u06:specified, +12:u0A:which/is, +16:u0B:is/specified, +7:u0C:0/,, +5:u10:0, +13:u14:specified, +5:u01:0, +13:u05:specified, +8:u08:7530, +12:u09:which/is, +16:u0A:is/specified, +16:u0B:specified/in, +13:u13:specified, +5:u00:0, +13:u04:specified, +8:u07:7530, +16:u09:is/specified, +16:u0A:specified/in, +10:u0B:in/RFC, +12:u0C:which/is, +15:u0D:specified/0, +13:u12:specified, +13:u03:specified, +8:u06:7530, +16:u09:specified/in, +10:u0A:in/RFC, +12:u0B:RFC/7530, +16:u0C:is/specified, +13:u11:specified, +8:u14:7530, +13:u02:specified, +8:u05:7530, +10:u09:in/RFC, +12:u0A:RFC/7530, +10:u0B:7530/), +16:u0C:specified/in, +13:u10:specified, +8:u13:7530, +13:u01:specified, +8:u04:7530, +12:u09:RFC/7530, +10:u0A:7530/), +10:u0C:in/RFC, +10:u0D:7530/0, +8:u12:7530, +7:u22:753, +8:u23:7530, +7:u32:530, +8:u33:7530, +13:u00:specified, +8:u03:7530, +8:u08:made, +10:u09:7530/), +12:u0C:RFC/7530, +8:u11:7530, +8:u02:7530, +8:u07:made, +16:u08:subsequently, +23:u0B:protocol/extensions, +10:u0C:7530/), +8:u10:7530, +8:u01:7530, +8:u06:made, +16:u07:subsequently, +23:u0A:protocol/extensions, +19:u0B:extensions/made, +8:u14:made, +8:u00:7530, +8:u05:made, +16:u06:subsequently, +23:u09:protocol/extensions, +19:u0A:extensions/made, +21:u0B:made/subsequently, +8:u13:made, +16:u14:subsequently, +8:u04:made, +16:u05:subsequently, +9:u08:later, +19:u09:extensions/made, +21:u0A:made/subsequently, +18:u0B:subsequently/., +23:u0C:protocol/extensions, +10:u0D:made/0, +8:u12:made, +16:u13:subsequently, +7:u22:mad, +8:u23:made, +8:u33:made, +8:u03:made, +16:u04:subsequently, +9:u07:later, +21:u09:made/subsequently, +18:u0A:subsequently/., +19:u0C:extensions/made, +18:u0D:subsequently/0, +8:u11:made, +16:u12:subsequently, +8:u23:subs, +8:u02:made, +16:u03:subsequently, +9:u06:later, +18:u09:subsequently/., +13:u0B:The/later, +21:u0C:made/subsequently, +8:u10:made, +16:u11:subsequently, +9:u14:later, +8:u01:made, +16:u02:subsequently, +9:u05:later, +13:u0A:The/later, +15:u0B:later/minor, +18:u0C:subsequently/., +16:u10:subsequently, +9:u13:later, +8:u00:made, +16:u01:subsequently, +9:u04:later, +13:u09:The/later, +15:u0A:later/minor, +11:u0D:later/0, +9:u12:later, +8:u33:ater, +16:u00:subsequently, +9:u03:later, +16:u08:dependencies, +15:u09:later/minor, +15:u0B:version/has, +13:u0C:The/later, +9:u11:later, +9:u02:later, +16:u07:dependencies, +15:u0A:version/has, +10:u0B:has/no, +15:u0C:later/minor, +9:u10:later, +9:u01:later, +16:u06:dependencies, +15:u09:version/has, +10:u0A:has/no, +19:u0B:no/dependencies, +16:u14:dependencies, +9:u00:later, +16:u05:dependencies, +10:u09:has/no, +19:u0A:no/dependencies, +19:u0B:dependencies/on, +15:u0C:version/has, +16:u13:dependencies, +16:u04:dependencies, +19:u09:no/dependencies, +19:u0A:dependencies/on, +10:u0B:on/NFS, +10:u0C:has/no, +18:u0D:dependencies/0, +16:u12:dependencies, +8:u23:depe, +8:u33:cies, +16:u03:dependencies, +19:u09:dependencies/on, +10:u0A:on/NFS, +19:u0C:no/dependencies, +16:u11:dependencies, +16:u02:dependencies, +10:u09:on/NFS, +19:u0C:dependencies/on, +16:u10:dependencies, +16:u01:dependencies, +10:u0C:on/NFS, +16:u00:dependencies, +10:u0B:and/is, +12:u08:separate, +10:u0A:and/is, +12:u07:separate, +10:u09:and/is, +16:u0B:considered/a, +12:u06:separate, +16:u0A:considered/a, +14:u0B:a/separate, +10:u0C:and/is, +12:u14:separate, +12:u05:separate, +16:u09:considered/a, +14:u0A:a/separate, +21:u0B:separate/protocol, +12:u13:separate, +12:u04:separate, +14:u09:a/separate, +21:u0A:separate/protocol, +14:u0B:protocol/., +16:u0C:considered/a, +14:u0D:separate/0, +12:u12:separate, +7:u22:sep, +8:u23:sepa, +8:u33:rate, +12:u03:separate, +21:u09:separate/protocol, +14:u0A:protocol/., +14:u0C:a/separate, +12:u11:separate, +12:u02:separate, +11:u08:RFC5661, +14:u09:protocol/., +21:u0C:separate/protocol, +12:u10:separate, +12:u01:separate, +11:u07:RFC5661, +14:u0C:protocol/., +12:u00:separate, +11:u06:RFC5661, +21:u0B:obsoletes/RFC5661, +11:u14:rfc5661, +11:u05:RFC5661, +16:u08:substantialy, +21:u0A:obsoletes/RFC5661, +13:u0B:RFC5661/., +11:u13:rfc5661, +11:u04:RFC5661, +16:u07:substantialy, +11:u08:revises, +21:u09:obsoletes/RFC5661, +13:u0A:RFC5661/., +13:u0D:RFC5661/0, +11:u12:rfc5661, +8:u23:RFC5, +11:u03:RFC5661, +16:u06:substantialy, +11:u07:revises, +13:u09:RFC5661/., +19:u0B:It/substantialy, +21:u0C:obsoletes/RFC5661, +11:u11:rfc5661, +16:u14:substantialy, +11:u02:RFC5661, +16:u05:substantialy, +11:u06:revises, +13:u08:treatment, +19:u0A:It/substantialy, +24:u0B:substantialy/revises, +13:u0C:RFC5661/., +11:u10:rfc5661, +16:u13:substantialy, +11:u14:revises, +11:u01:RFC5661, +16:u04:substantialy, +11:u05:revises, +13:u07:treatment, +19:u09:It/substantialy, +24:u0A:substantialy/revises, +15:u0B:revises/the, +18:u0D:substantialy/0, +16:u12:substantialy, +11:u13:revises, +7:u32:aly, +8:u33:ialy, +11:u00:RFC5661, +16:u03:substantialy, +11:u04:revises, +13:u06:treatment, +24:u09:substantialy/revises, +15:u0A:revises/the, +17:u0B:the/treatment, +19:u0C:It/substantialy, +13:u0D:revises/0, +16:u11:substantialy, +11:u12:revises, +13:u14:treatment, +8:u33:ises, +16:u02:substantialy, +11:u03:revises, +13:u05:treatment, +12:u08:relating, +15:u09:revises/the, +17:u0A:the/treatment, +16:u0B:treatment/of, +24:u0C:substantialy/revises, +16:u10:substantialy, +11:u11:revises, +13:u13:treatment, +16:u01:substantialy, +11:u02:revises, +13:u04:treatment, +12:u07:relating, +17:u09:the/treatment, +16:u0A:treatment/of, +15:u0B:of/features, +15:u0C:revises/the, +15:u0D:treatment/0, +11:u10:revises, +13:u12:treatment, +7:u22:tre, +8:u23:trea, +16:u00:substantialy, +11:u01:revises, +13:u03:treatment, +12:u06:relating, +9:u08:multi, +16:u09:treatment/of, +15:u0A:of/features, +21:u0B:features/relating, +17:u0C:the/treatment, +13:u11:treatment, +11:u00:revises, +13:u02:treatment, +12:u05:relating, +9:u07:multi, +15:u09:of/features, +21:u0A:features/relating, +15:u0B:relating/to, +16:u0C:treatment/of, +13:u10:treatment, +13:u01:treatment, +12:u04:relating, +9:u06:multi, +21:u09:features/relating, +15:u0A:relating/to, +12:u0B:to/multi, +15:u0C:of/features, +14:u0D:relating/0, +9:u14:multi, +13:u00:treatment, +12:u03:relating, +9:u05:multi, +13:u08:namesapce, +15:u09:relating/to, +12:u0A:to/multi, +11:u0B:multi/-, +21:u0C:features/relating, +9:u13:multi, +12:u02:relating, +9:u04:multi, +13:u07:namesapce, +15:u08:superseding, +12:u09:to/multi, +11:u0A:multi/-, +12:u0B:-/server, +15:u0C:relating/to, +11:u0D:multi/0, +9:u12:multi, +7:u22:mul, +8:u23:mult, +7:u32:lti, +8:u33:ulti, +12:u01:relating, +9:u03:multi, +13:u06:namesapce, +15:u07:superseding, +11:u09:multi/-, +12:u0A:-/server, +20:u0B:server/namesapce, +12:u0C:to/multi, +9:u11:multi, +13:u14:namesapce, +12:u00:relating, +9:u02:multi, +13:u05:namesapce, +15:u06:superseding, +15:u08:description, +12:u09:-/server, +20:u0A:server/namesapce, +25:u0B:namesapce/superseding, +11:u0C:multi/-, +12:u0D:server/1, +9:u10:multi, +13:u13:namesapce, +15:u14:superseding, +9:u01:multi, +13:u04:namesapce, +15:u05:superseding, +15:u07:description, +20:u09:server/namesapce, +25:u0A:namesapce/superseding, +19:u0B:superseding/the, +12:u0C:-/server, +15:u0D:namesapce/0, +13:u12:namesapce, +15:u13:superseding, +7:u32:pce, +8:u33:apce, +9:u00:multi, +13:u03:namesapce, +15:u04:superseding, +15:u06:description, +25:u09:namesapce/superseding, +19:u0A:superseding/the, +19:u0B:the/description, +20:u0C:server/namesapce, +17:u0D:superseding/0, +13:u11:namesapce, +15:u12:superseding, +8:u23:supe, +13:u02:namesapce, +15:u03:superseding, +15:u05:description, +19:u09:superseding/the, +19:u0A:the/description, +18:u0B:description/of, +25:u0C:namesapce/superseding, +13:u10:namesapce, +15:u11:superseding, +13:u01:namesapce, +15:u02:superseding, +15:u04:description, +13:u08:appearing, +19:u09:the/description, +18:u0A:description/of, +12:u0B:of/those, +19:u0C:superseding/the, +17:u0D:description/0, +15:u10:superseding, +13:u00:namesapce, +15:u01:superseding, +15:u03:description, +13:u07:appearing, +18:u09:description/of, +12:u0A:of/those, +18:u0B:those/features, +19:u0C:the/description, +15:u00:superseding, +15:u02:description, +13:u06:appearing, +12:u09:of/those, +18:u0A:those/features, +22:u0B:features/appearing, +18:u0C:description/of, +13:u14:appearing, +15:u01:description, +13:u05:appearing, +18:u09:those/features, +22:u0A:features/appearing, +16:u0B:appearing/in, +12:u0C:of/those, +13:u13:appearing, +15:u00:description, +13:u04:appearing, +22:u09:features/appearing, +16:u0A:appearing/in, +14:u0B:in/RFC5661, +18:u0C:those/features, +15:u0D:appearing/0, +13:u12:appearing, +8:u23:appe, +13:u03:appearing, +16:u09:appearing/in, +14:u0A:in/RFC5661, +22:u0C:features/appearing, +13:u11:appearing, +13:u02:appearing, +14:u09:in/RFC5661, +16:u0C:appearing/in, +13:u10:appearing, +13:u01:appearing, +14:u0C:in/RFC5661, +13:u00:appearing, +13:u0B:of/Noveck, +13:u0A:of/Noveck, +12:u0B:Noveck/&, +13:u09:of/Noveck, +12:u0A:Noveck/&, +11:u0B:&/Lever, +12:u09:Noveck/&, +11:u0A:&/Lever, +17:u0B:Lever/Expires, +13:u0C:of/Noveck, +11:u09:&/Lever, +17:u0A:Lever/Expires, +12:u0C:Noveck/&, +17:u09:Lever/Expires, +11:u0C:&/Lever, +17:u0C:Lever/Expires, +15:u0B:Draft/NFSv4, +15:u0A:Draft/NFSv4, +11:u0B:NFSv4/., +13:u08:Namespace, +15:u09:Draft/NFSv4, +11:u0A:NFSv4/., +7:u0B:./1, +13:u07:Namespace, +11:u09:NFSv4/., +7:u0A:./1, +10:u0B:1/with, +15:u0C:Draft/NFSv4, +13:u06:Namespace, +7:u09:./1, +10:u0A:1/with, +18:u0B:with/Namespace, +11:u0C:NFSv4/., +13:u14:namespace, +13:u05:Namespace, +10:u09:1/with, +18:u0A:with/Namespace, +20:u0B:Namespace/Update, +7:u0C:./1, +13:u13:namespace, +13:u04:Namespace, +18:u09:with/Namespace, +20:u0A:Namespace/Update, +17:u0B:Update/August, +10:u0C:1/with, +15:u0D:Namespace/0, +13:u12:namespace, +7:u32:ace, +8:u33:pace, +13:u03:Namespace, +20:u09:Namespace/Update, +17:u0A:Update/August, +18:u0C:with/Namespace, +13:u11:namespace, +13:u02:Namespace, +17:u09:Update/August, +20:u0B:2019/publication, +20:u0C:Namespace/Update, +13:u10:namespace, +13:u01:Namespace, +20:u0A:2019/publication, +17:u0C:Update/August, +13:u00:Namespace, +20:u09:2019/publication, +20:u0C:2019/publication, +11:u08:contain, +11:u07:contain, +16:u0B:document/may, +11:u06:contain, +16:u0A:document/may, +15:u0B:may/contain, +11:u14:contain, +11:u05:contain, +16:u09:document/may, +15:u0A:may/contain, +20:u0B:contain/material, +11:u13:contain, +11:u04:contain, +15:u09:may/contain, +20:u0A:contain/material, +17:u0B:material/from, +16:u0C:document/may, +13:u0D:contain/0, +11:u12:contain, +11:u03:contain, +20:u09:contain/material, +17:u0A:material/from, +13:u0B:from/IETF, +15:u0C:may/contain, +11:u11:contain, +11:u02:contain, +17:u09:material/from, +13:u0A:from/IETF, +20:u0C:contain/material, +11:u10:contain, +11:u01:contain, +17:u08:Contributions, +13:u09:from/IETF, +16:u0B:Documents/or, +17:u0C:material/from, +11:u00:contain, +17:u07:Contributions, +16:u0A:Documents/or, +11:u0B:or/IETF, +13:u0C:from/IETF, +17:u06:Contributions, +16:u09:Documents/or, +11:u0A:or/IETF, +22:u0B:IETF/Contributions, +17:u14:contributions, +17:u05:Contributions, +11:u09:or/IETF, +22:u0A:IETF/Contributions, +27:u0B:Contributions/published, +16:u0C:Documents/or, +17:u13:contributions, +17:u04:Contributions, +12:u08:publicly, +22:u09:IETF/Contributions, +27:u0A:Contributions/published, +16:u0B:published/or, +11:u0C:or/IETF, +19:u0D:Contributions/0, +17:u12:contributions, +17:u03:Contributions, +12:u07:publicly, +27:u09:Contributions/published, +16:u0A:published/or, +11:u0B:or/made, +22:u0C:IETF/Contributions, +17:u11:contributions, +17:u02:Contributions, +12:u06:publicly, +10:u08:before, +16:u09:published/or, +11:u0A:or/made, +17:u0B:made/publicly, +27:u0C:Contributions/published, +17:u10:contributions, +12:u14:publicly, +17:u01:Contributions, +12:u05:publicly, +10:u07:before, +12:u08:November, +11:u09:or/made, +17:u0A:made/publicly, +22:u0B:publicly/available, +16:u0C:published/or, +12:u13:publicly, +17:u00:Contributions, +12:u04:publicly, +10:u06:before, +12:u07:November, +17:u09:made/publicly, +22:u0A:publicly/available, +20:u0B:available/before, +11:u0C:or/made, +14:u0D:publicly/0, +12:u12:publicly, +10:u14:before, +7:u32:cly, +8:u33:icly, +12:u03:publicly, +10:u05:before, +12:u06:November, +22:u09:publicly/available, +20:u0A:available/before, +19:u0B:before/November, +17:u0C:made/publicly, +12:u11:publicly, +10:u13:before, +12:u14:november, +12:u02:publicly, +10:u04:before, +12:u05:November, +8:u08:2008, +20:u09:available/before, +19:u0A:before/November, +15:u0B:November/10, +22:u0C:publicly/available, +12:u0D:before/0, +12:u10:publicly, +10:u12:before, +12:u13:november, +7:u22:bef, +8:u23:befo, +8:u33:fore, +12:u01:publicly, +10:u03:before, +12:u04:November, +8:u07:2008, +19:u09:before/November, +15:u0A:November/10, +20:u0C:available/before, +14:u0D:November/0, +10:u11:before, +12:u12:november, +12:u00:publicly, +10:u02:before, +12:u03:November, +8:u06:2008, +15:u09:November/10, +10:u0B:,/2008, +19:u0C:before/November, +10:u10:before, +12:u11:november, +8:u14:2008, +10:u01:before, +12:u02:November, +8:u05:2008, +10:u08:person, +10:u0A:,/2008, +10:u0B:2008/., +15:u0C:November/10, +12:u10:november, +8:u13:2008, +10:u00:before, +12:u01:November, +8:u04:2008, +10:u07:person, +10:u09:,/2008, +10:u0A:2008/., +10:u0D:2008/0, +8:u12:2008, +7:u22:200, +8:u23:2008, +7:u32:008, +8:u33:2008, +12:u00:November, +8:u03:2008, +10:u06:person, +10:u09:2008/., +14:u0B:The/person, +10:u0C:,/2008, +8:u11:2008, +10:u14:person, +8:u02:2008, +10:u05:person, +14:u0A:The/person, +12:u0B:person/(, +10:u0C:2008/., +8:u10:2008, +10:u13:person, +8:u01:2008, +10:u04:person, +15:u08:controlling, +14:u09:The/person, +12:u0A:person/(, +12:u0D:person/0, +10:u12:person, +8:u33:rson, +8:u00:2008, +10:u03:person, +15:u07:controlling, +12:u09:person/(, +14:u0C:The/person, +10:u11:person, +10:u02:person, +15:u06:controlling, +13:u08:copyright, +17:u0B:)/controlling, +12:u0C:person/(, +10:u10:person, +15:u14:controlling, +10:u01:person, +15:u05:controlling, +13:u07:copyright, +17:u0A:)/controlling, +19:u0B:controlling/the, +15:u13:controlling, +10:u00:person, +15:u04:controlling, +13:u06:copyright, +17:u09:)/controlling, +19:u0A:controlling/the, +17:u0B:the/copyright, +17:u0D:controlling/0, +15:u12:controlling, +15:u03:controlling, +13:u05:copyright, +19:u09:controlling/the, +17:u0A:the/copyright, +16:u0B:copyright/in, +17:u0C:)/controlling, +15:u11:controlling, +15:u02:controlling, +13:u04:copyright, +17:u09:the/copyright, +16:u0A:copyright/in, +19:u0C:controlling/the, +15:u0D:copyright/0, +15:u10:controlling, +7:u22:cop, +8:u23:copy, +15:u01:controlling, +13:u03:copyright, +16:u09:copyright/in, +11:u0B:some/of, +17:u0C:the/copyright, +15:u00:controlling, +13:u02:copyright, +11:u0A:some/of, +16:u0C:copyright/in, +13:u01:copyright, +11:u09:some/of, +17:u0B:this/material, +13:u00:copyright, +17:u0A:this/material, +16:u0B:material/may, +11:u0C:some/of, +11:u08:granted, +17:u09:this/material, +16:u0A:material/may, +11:u0B:may/not, +11:u07:granted, +16:u09:material/may, +11:u0A:may/not, +12:u0B:not/have, +17:u0C:this/material, +11:u06:granted, +11:u09:may/not, +12:u0A:not/have, +16:u0B:have/granted, +16:u0C:material/may, +11:u14:granted, +11:u05:granted, +12:u09:not/have, +16:u0A:have/granted, +15:u0B:granted/the, +11:u0C:may/not, +11:u13:granted, +11:u04:granted, +16:u09:have/granted, +15:u0A:granted/the, +12:u0C:not/have, +13:u0D:granted/0, +11:u12:granted, +7:u22:gra, +8:u23:gran, +8:u33:nted, +11:u03:granted, +9:u08:right, +15:u09:granted/the, +16:u0C:have/granted, +11:u11:granted, +11:u02:granted, +9:u07:right, +13:u0B:Trust/the, +15:u0C:granted/the, +11:u10:granted, +11:u01:granted, +9:u06:right, +13:u0A:Trust/the, +13:u0B:the/right, +9:u14:right, +11:u00:granted, +9:u05:right, +17:u08:modifications, +13:u09:Trust/the, +13:u0A:the/right, +12:u0B:right/to, +9:u13:right, +9:u04:right, +17:u07:modifications, +13:u09:the/right, +12:u0A:right/to, +12:u0B:to/allow, +13:u0C:Trust/the, +11:u0D:right/0, +9:u12:right, +9:u03:right, +17:u06:modifications, +12:u09:right/to, +12:u0A:to/allow, +23:u0B:allow/modifications, +13:u0C:the/right, +9:u11:right, +17:u14:modifications, +9:u02:right, +17:u05:modifications, +12:u09:to/allow, +23:u0A:allow/modifications, +20:u0B:modifications/of, +12:u0C:right/to, +9:u10:right, +17:u13:modifications, +9:u01:right, +17:u04:modifications, +11:u08:outside, +23:u09:allow/modifications, +20:u0A:modifications/of, +11:u0B:of/such, +12:u0C:to/allow, +19:u0D:modifications/0, +17:u12:modifications, +8:u23:modi, +9:u00:right, +17:u03:modifications, +11:u07:outside, +20:u09:modifications/of, +11:u0A:of/such, +17:u0B:such/material, +23:u0C:allow/modifications, +17:u11:modifications, +17:u02:modifications, +11:u06:outside, +11:u09:of/such, +17:u0A:such/material, +20:u0B:material/outside, +20:u0C:modifications/of, +17:u10:modifications, +11:u14:outside, +17:u01:modifications, +11:u05:outside, +17:u09:such/material, +20:u0A:material/outside, +15:u0B:outside/the, +11:u0C:of/such, +11:u13:outside, +17:u00:modifications, +11:u04:outside, +11:u08:Process, +20:u09:material/outside, +15:u0A:outside/the, +17:u0C:such/material, +13:u0D:outside/0, +11:u12:outside, +8:u23:outs, +8:u33:side, +11:u03:outside, +11:u07:Process, +15:u09:outside/the, +18:u0B:IETF/Standards, +20:u0C:material/outside, +11:u11:outside, +11:u02:outside, +11:u06:Process, +11:u08:Without, +18:u0A:IETF/Standards, +21:u0B:Standards/Process, +15:u0C:outside/the, +11:u10:outside, +11:u01:outside, +11:u05:Process, +11:u07:Without, +13:u08:obtaining, +18:u09:IETF/Standards, +21:u0A:Standards/Process, +13:u0B:Process/., +11:u00:outside, +11:u04:Process, +11:u06:Without, +13:u07:obtaining, +21:u09:Standards/Process, +13:u0A:Process/., +13:u0B:./Without, +18:u0C:IETF/Standards, +13:u0D:Process/0, +8:u23:Proc, +11:u03:Process, +11:u05:Without, +13:u06:obtaining, +12:u08:adequate, +13:u09:Process/., +13:u0A:./Without, +21:u0B:Without/obtaining, +21:u0C:Standards/Process, +13:u14:obtaining, +11:u02:Process, +11:u04:Without, +13:u05:obtaining, +12:u07:adequate, +13:u09:./Without, +21:u0A:Without/obtaining, +16:u0B:obtaining/an, +13:u0C:Process/., +13:u0D:Without/0, +13:u13:obtaining, +6:u21:Wi, +7:u22:Wit, +8:u23:With, +11:u01:Process, +11:u03:Without, +13:u04:obtaining, +12:u06:adequate, +21:u09:Without/obtaining, +16:u0A:obtaining/an, +15:u0B:an/adequate, +13:u0C:./Without, +15:u0D:obtaining/0, +13:u12:obtaining, +12:u14:adequate, +11:u00:Process, +11:u02:Without, +13:u03:obtaining, +12:u05:adequate, +16:u09:obtaining/an, +15:u0A:an/adequate, +20:u0B:adequate/license, +21:u0C:Without/obtaining, +13:u11:obtaining, +12:u13:adequate, +11:u01:Without, +13:u02:obtaining, +12:u04:adequate, +15:u09:an/adequate, +20:u0A:adequate/license, +16:u0B:license/from, +16:u0C:obtaining/an, +14:u0D:adequate/0, +13:u10:obtaining, +12:u12:adequate, +7:u22:ade, +8:u23:adeq, +8:u33:uate, +11:u00:Without, +13:u01:obtaining, +12:u03:adequate, +20:u09:adequate/license, +16:u0A:license/from, +15:u0C:an/adequate, +12:u11:adequate, +13:u00:obtaining, +12:u02:adequate, +16:u09:license/from, +14:u0B:the/person, +20:u0C:adequate/license, +12:u10:adequate, +12:u01:adequate, +14:u0A:the/person, +16:u0C:license/from, +12:u00:adequate, +14:u09:the/person, +14:u0C:the/person, +13:u08:materials, +13:u07:materials, +13:u06:materials, +18:u0B:such/materials, +13:u14:materials, +13:u05:materials, +18:u0A:such/materials, +15:u0B:materials/,, +13:u13:materials, +13:u04:materials, +18:u09:such/materials, +15:u0A:materials/,, +15:u0D:materials/0, +13:u12:materials, +7:u32:als, +8:u33:ials, +13:u03:materials, +15:u09:materials/,, +18:u0C:such/materials, +13:u11:materials, +13:u02:materials, +15:u0C:materials/,, +13:u10:materials, +13:u01:materials, +12:u08:modified, +13:u00:materials, +12:u07:modified, +12:u06:modified, +15:u0B:be/modified, +12:u14:modified, +12:u05:modified, +15:u0A:be/modified, +20:u0B:modified/outside, +12:u13:modified, +12:u04:modified, +15:u09:be/modified, +20:u0A:modified/outside, +14:u0D:modified/0, +12:u12:modified, +12:u03:modified, +20:u09:modified/outside, +15:u0C:be/modified, +12:u11:modified, +12:u02:modified, +20:u0C:modified/outside, +12:u10:modified, +12:u01:modified, +12:u00:modified, +14:u08:derivative, +13:u0B:Process/,, +14:u07:derivative, +13:u0A:Process/,, +14:u06:derivative, +13:u09:Process/,, +18:u0B:and/derivative, +14:u14:derivative, +14:u05:derivative, +18:u0A:and/derivative, +20:u0B:derivative/works, +13:u0C:Process/,, +14:u13:derivative, +14:u04:derivative, +18:u09:and/derivative, +20:u0A:derivative/works, +12:u0B:works/of, +16:u0D:derivative/0, +14:u12:derivative, +7:u22:der, +8:u23:deri, +14:u03:derivative, +20:u09:derivative/works, +12:u0A:works/of, +9:u0B:of/it, +18:u0C:and/derivative, +14:u11:derivative, +14:u02:derivative, +12:u09:works/of, +9:u0A:of/it, +20:u0C:derivative/works, +14:u10:derivative, +14:u01:derivative, +11:u08:created, +9:u09:of/it, +12:u0C:works/of, +14:u00:derivative, +11:u07:created, +9:u0C:of/it, +11:u06:created, +14:u0B:be/created, +11:u14:created, +11:u05:created, +14:u0A:be/created, +19:u0B:created/outside, +11:u13:created, +11:u04:created, +14:u09:be/created, +19:u0A:created/outside, +13:u0D:created/0, +11:u12:created, +7:u22:cre, +8:u23:crea, +11:u03:created, +19:u09:created/outside, +14:u0C:be/created, +11:u11:created, +11:u02:created, +19:u0C:created/outside, +11:u10:created, +11:u01:created, +11:u00:created, +12:u0B:,/except, +12:u0A:,/except, +13:u0B:except/to, +12:u09:,/except, +13:u0A:except/to, +13:u0B:to/format, +13:u09:except/to, +13:u0A:to/format, +13:u0B:format/it, +12:u0C:,/except, +13:u09:to/format, +13:u0A:format/it, +10:u0B:it/for, +13:u0C:except/to, +13:u09:format/it, +10:u0A:it/for, +13:u0C:to/format, +10:u09:it/for, +18:u0B:publication/as, +13:u0C:format/it, +18:u0A:publication/as, +9:u0B:as/an, +10:u0C:it/for, +18:u09:publication/as, +9:u0A:as/an, +10:u0B:an/RFC, +13:u08:translate, +9:u09:as/an, +10:u0A:an/RFC, +10:u0B:RFC/or, +18:u0C:publication/as, +13:u07:translate, +10:u09:an/RFC, +10:u0A:RFC/or, +9:u0C:as/an, +13:u06:translate, +10:u09:RFC/or, +16:u0B:to/translate, +10:u0C:an/RFC, +13:u14:translate, +13:u05:translate, +13:u08:languages, +16:u0A:to/translate, +16:u0B:translate/it, +10:u0C:RFC/or, +13:u13:translate, +13:u04:translate, +13:u07:languages, +16:u09:to/translate, +16:u0A:translate/it, +11:u0B:it/into, +15:u0D:translate/0, +13:u12:translate, +7:u22:tra, +8:u23:tran, +8:u33:late, +13:u03:translate, +13:u06:languages, +16:u09:translate/it, +11:u0A:it/into, +18:u0B:into/languages, +16:u0C:to/translate, +13:u11:translate, +13:u14:languages, +13:u02:translate, +13:u05:languages, +11:u08:English, +11:u09:it/into, +18:u0A:into/languages, +19:u0B:languages/other, +16:u0C:translate/it, +13:u10:translate, +13:u13:languages, +13:u01:translate, +13:u04:languages, +11:u07:English, +18:u09:into/languages, +19:u0A:languages/other, +11:u0C:it/into, +15:u0D:languages/0, +13:u12:languages, +7:u22:lan, +8:u23:lang, +13:u00:translate, +13:u03:languages, +11:u06:English, +9:u08:David, +19:u09:languages/other, +16:u0B:than/English, +18:u0C:into/languages, +13:u11:languages, +11:u14:english, +13:u02:languages, +11:u05:English, +9:u07:David, +16:u0A:than/English, +13:u0B:English/., +19:u0C:languages/other, +13:u10:languages, +11:u13:english, +13:u01:languages, +11:u04:English, +9:u06:David, +16:u09:than/English, +13:u0A:English/., +11:u0B:./David, +13:u0D:English/0, +11:u12:english, +9:u14:david, +8:u23:Engl, +6:u31:sh, +7:u32:ish, +8:u33:lish, +13:u00:languages, +11:u03:English, +9:u05:David, +13:u09:English/., +11:u0A:./David, +16:u0B:David/Noveck, +16:u0C:than/English, +11:u11:english, +9:u13:david, +11:u02:English, +9:u04:David, +11:u09:./David, +16:u0A:David/Noveck, +12:u0B:Noveck/(, +13:u0C:English/., +11:u0D:David/0, +11:u10:english, +9:u12:david, +8:u23:Davi, +7:u32:vid, +8:u33:avid, +11:u01:English, +9:u03:David, +16:u09:David/Noveck, +12:u0A:Noveck/(, +11:u0C:./David, +9:u11:david, +11:u00:English, +9:u02:David, +8:u08:1601, +12:u09:Noveck/(, +16:u0C:David/Noveck, +9:u10:david, +9:u01:David, +8:u07:1601, +11:u08:Trapelo, +12:u0B:)/NetApp, +12:u0C:Noveck/(, +9:u00:David, +8:u06:1601, +11:u07:Trapelo, +8:u08:Road, +12:u0A:)/NetApp, +15:u0B:NetApp/1601, +8:u14:1601, +8:u05:1601, +11:u06:Trapelo, +8:u07:Road, +12:u09:)/NetApp, +15:u0A:NetApp/1601, +16:u0B:1601/Trapelo, +8:u13:1601, +11:u14:trapelo, +8:u04:1601, +11:u05:Trapelo, +8:u06:Road, +9:u08:Suite, +15:u09:NetApp/1601, +16:u0A:1601/Trapelo, +16:u0B:Trapelo/Road, +12:u0C:)/NetApp, +10:u0D:1601/0, +8:u12:1601, +11:u13:trapelo, +8:u14:road, +6:u21:16, +7:u22:160, +8:u23:1601, +7:u32:601, +8:u33:1601, +8:u03:1601, +11:u04:Trapelo, +8:u05:Road, +9:u07:Suite, +6:u08:16, +16:u09:1601/Trapelo, +16:u0A:Trapelo/Road, +10:u0B:Road/,, +15:u0C:NetApp/1601, +13:u0D:Trapelo/0, +8:u11:1601, +11:u12:trapelo, +8:u13:road, +8:u23:Trap, +7:u32:elo, +8:u33:pelo, +8:u02:1601, +11:u03:Trapelo, +8:u04:Road, +9:u06:Suite, +6:u07:16, +11:u08:Waltham, +16:u09:Trapelo/Road, +10:u0A:Road/,, +11:u0B:,/Suite, +16:u0C:1601/Trapelo, +10:u0D:Road/0, +8:u10:1601, +11:u11:trapelo, +8:u12:road, +9:u14:suite, +7:u22:Roa, +8:u23:Road, +7:u32:oad, +8:u33:Road, +8:u01:1601, +11:u02:Trapelo, +8:u03:Road, +9:u05:Suite, +6:u06:16, +11:u07:Waltham, +10:u09:Road/,, +11:u0A:,/Suite, +12:u0B:Suite/16, +16:u0C:Trapelo/Road, +11:u10:trapelo, +8:u11:road, +9:u13:suite, +6:u14:16, +8:u00:1601, +11:u01:Trapelo, +8:u02:Road, +9:u04:Suite, +6:u05:16, +11:u06:Waltham, +11:u09:,/Suite, +12:u0A:Suite/16, +14:u0B:16/Waltham, +10:u0C:Road/,, +11:u0D:Suite/0, +8:u10:road, +9:u12:suite, +6:u13:16, +11:u14:waltham, +7:u22:Sui, +8:u23:Suit, +8:u33:uite, +11:u00:Trapelo, +8:u01:Road, +9:u03:Suite, +6:u04:16, +11:u05:Waltham, +9:u08:02451, +12:u09:Suite/16, +14:u0A:16/Waltham, +13:u0B:Waltham/,, +11:u0C:,/Suite, +8:u0D:16/0, +9:u11:suite, +6:u12:16, +11:u13:waltham, +6:u22:16, +6:u23:16, +6:u31:16, +6:u32:16, +6:u33:16, +8:u00:Road, +9:u02:Suite, +6:u03:16, +11:u04:Waltham, +9:u07:02451, +14:u09:16/Waltham, +13:u0A:Waltham/,, +12:u0C:Suite/16, +13:u0D:Waltham/0, +9:u10:suite, +6:u11:16, +11:u12:waltham, +7:u22:Wal, +8:u23:Walt, +6:u31:am, +7:u32:ham, +8:u33:tham, +9:u01:Suite, +6:u02:16, +11:u03:Waltham, +9:u06:02451, +13:u09:Waltham/,, +12:u0B:MA/02451, +14:u0C:16/Waltham, +6:u10:16, +11:u11:waltham, +9:u14:02451, +9:u00:Suite, +6:u01:16, +11:u02:Waltham, +9:u05:02451, +12:u0A:MA/02451, +13:u0B:02451/USA, +13:u0C:Waltham/,, +11:u10:waltham, +9:u13:02451, +6:u00:16, +11:u01:Waltham, +9:u04:02451, +6:u08:+1, +12:u09:MA/02451, +13:u0A:02451/USA, +13:u0B:USA/Phone, +11:u0D:02451/0, +9:u12:02451, +8:u23:0245, +6:u31:51, +7:u32:451, +8:u33:2451, +11:u00:Waltham, +9:u03:02451, +6:u07:+1, +13:u09:02451/USA, +13:u0A:USA/Phone, +12:u0C:MA/02451, +9:u11:02451, +9:u02:02451, +6:u06:+1, +7:u08:781, +13:u09:USA/Phone, +8:u0B::/+1, +13:u0C:02451/USA, +9:u10:02451, +6:u14:+1, +9:u01:02451, +6:u05:+1, +7:u07:781, +8:u0A::/+1, +8:u0B:+1/-, +13:u0C:USA/Phone, +6:u13:+1, +9:u00:02451, +6:u04:+1, +7:u06:781, +7:u08:768, +8:u09::/+1, +8:u0A:+1/-, +9:u0B:-/781, +8:u0D:+1/0, +6:u12:+1, +7:u14:781, +6:u21:+1, +6:u22:+1, +6:u23:+1, +6:u31:+1, +6:u32:+1, +6:u33:+1, +6:u03:+1, +7:u05:781, +7:u07:768, +8:u09:+1/-, +9:u0A:-/781, +9:u0B:781/-, +8:u0C::/+1, +6:u11:+1, +7:u13:781, +6:u02:+1, +7:u04:781, +7:u06:768, +8:u08:5347, +9:u09:-/781, +9:u0A:781/-, +9:u0B:-/768, +8:u0C:+1/-, +9:u0D:781/1, +6:u10:+1, +7:u12:781, +7:u14:768, +7:u22:781, +7:u23:781, +6:u31:81, +7:u32:781, +7:u33:781, +6:u01:+1, +7:u03:781, +7:u05:768, +8:u07:5347, +9:u08:EMail, +9:u09:781/-, +9:u0A:-/768, +9:u0B:768/-, +9:u0C:-/781, +7:u11:781, +7:u13:768, +6:u00:+1, +7:u02:781, +7:u04:768, +8:u06:5347, +9:u07:EMail, +9:u09:-/768, +9:u0A:768/-, +10:u0B:-/5347, +9:u0C:781/-, +9:u0D:768/1, +7:u10:781, +7:u12:768, +8:u14:5347, +7:u22:768, +7:u23:768, +6:u31:68, +7:u32:768, +7:u33:768, +7:u01:781, +7:u03:768, +8:u05:5347, +9:u06:EMail, +18:u08:dnoveck@netapp, +9:u09:768/-, +10:u0A:-/5347, +14:u0B:5347/EMail, +9:u0C:-/768, +7:u11:768, +8:u13:5347, +7:u00:781, +7:u02:768, +8:u04:5347, +9:u05:EMail, +18:u07:dnoveck@netapp, +10:u09:-/5347, +14:u0A:5347/EMail, +11:u0B:EMail/:, +9:u0C:768/-, +10:u0D:5347/1, +7:u10:768, +8:u12:5347, +6:u21:53, +7:u22:534, +8:u23:5347, +6:u31:47, +7:u32:347, +8:u33:5347, +7:u01:768, +8:u03:5347, +9:u04:EMail, +18:u06:dnoveck@netapp, +14:u09:5347/EMail, +11:u0A:EMail/:, +20:u0B::/dnoveck@netapp, +10:u0C:-/5347, +11:u0D:EMail/0, +8:u11:5347, +18:u14:dnoveck@netapp, +7:u22:EMa, +8:u23:EMai, +8:u33:Mail, +7:u00:768, +8:u02:5347, +9:u03:EMail, +18:u05:dnoveck@netapp, +11:u08:Charles, +11:u09:EMail/:, +20:u0A::/dnoveck@netapp, +20:u0B:dnoveck@netapp/., +14:u0C:5347/EMail, +8:u10:5347, +18:u13:dnoveck@netapp, +8:u01:5347, +9:u02:EMail, +18:u04:dnoveck@netapp, +11:u07:Charles, +20:u09::/dnoveck@netapp, +20:u0A:dnoveck@netapp/., +11:u0C:EMail/:, +20:u0D:dnoveck@netapp/0, +18:u12:dnoveck@netapp, +6:u21:dn, +7:u22:dno, +8:u23:dnov, +7:u32:app, +8:u33:tapp, +8:u00:5347, +9:u01:EMail, +18:u03:dnoveck@netapp, +11:u06:Charles, +10:u08:Oracle, +20:u09:dnoveck@netapp/., +15:u0B:com/Charles, +20:u0C::/dnoveck@netapp, +18:u11:dnoveck@netapp, +11:u14:charles, +9:u00:EMail, +18:u02:dnoveck@netapp, +11:u05:Charles, +10:u07:Oracle, +15:u08:Corporation, +15:u0A:com/Charles, +17:u0B:Charles/Lever, +20:u0C:dnoveck@netapp/., +18:u10:dnoveck@netapp, +11:u13:charles, +18:u01:dnoveck@netapp, +11:u04:Charles, +10:u06:Oracle, +15:u07:Corporation, +8:u08:1015, +15:u09:com/Charles, +17:u0A:Charles/Lever, +16:u0B:Lever/Oracle, +13:u0D:Charles/0, +11:u12:charles, +8:u23:Char, +8:u33:rles, +18:u00:dnoveck@netapp, +11:u03:Charles, +10:u05:Oracle, +15:u06:Corporation, +8:u07:1015, +11:u08:Granger, +17:u09:Charles/Lever, +16:u0A:Lever/Oracle, +22:u0B:Oracle/Corporation, +15:u0C:com/Charles, +11:u11:charles, +15:u14:corporation, +11:u02:Charles, +10:u04:Oracle, +15:u05:Corporation, +8:u06:1015, +11:u07:Granger, +10:u08:Avenue, +16:u09:Lever/Oracle, +22:u0A:Oracle/Corporation, +20:u0B:Corporation/1015, +17:u0C:Charles/Lever, +12:u0D:Oracle/0, +11:u10:charles, +15:u13:corporation, +8:u14:1015, +8:u23:Orac, +7:u32:cle, +8:u33:acle, +11:u01:Charles, +10:u03:Oracle, +15:u04:Corporation, +8:u05:1015, +11:u06:Granger, +10:u07:Avenue, +7:u08:Ann, +22:u09:Oracle/Corporation, +20:u0A:Corporation/1015, +16:u0B:1015/Granger, +16:u0C:Lever/Oracle, +17:u0D:Corporation/0, +15:u12:corporation, +8:u13:1015, +11:u14:granger, +7:u22:Cor, +8:u23:Corp, +11:u00:Charles, +10:u02:Oracle, +15:u03:Corporation, +8:u04:1015, +11:u05:Granger, +10:u06:Avenue, +7:u07:Ann, +9:u08:Arbor, +20:u09:Corporation/1015, +16:u0A:1015/Granger, +18:u0B:Granger/Avenue, +22:u0C:Oracle/Corporation, +10:u0D:1015/0, +15:u11:corporation, +8:u12:1015, +11:u13:granger, +10:u14:avenue, +7:u22:101, +8:u23:1015, +8:u33:1015, +10:u01:Oracle, +15:u02:Corporation, +8:u03:1015, +11:u04:Granger, +10:u05:Avenue, +7:u06:Ann, +9:u07:Arbor, +16:u09:1015/Granger, +18:u0A:Granger/Avenue, +14:u0B:Avenue/Ann, +20:u0C:Corporation/1015, +13:u0D:Granger/0, +15:u10:corporation, +8:u11:1015, +11:u12:granger, +10:u13:avenue, +7:u14:ann, +7:u22:Gra, +8:u23:Gran, +10:u00:Oracle, +15:u01:Corporation, +8:u02:1015, +11:u03:Granger, +10:u04:Avenue, +7:u05:Ann, +9:u06:Arbor, +6:u08:MI, +18:u09:Granger/Avenue, +14:u0A:Avenue/Ann, +13:u0B:Ann/Arbor, +16:u0C:1015/Granger, +12:u0D:Avenue/0, +8:u10:1015, +11:u11:granger, +10:u12:avenue, +7:u13:ann, +9:u14:arbor, +7:u22:Ave, +8:u23:Aven, +7:u32:nue, +8:u33:enue, +15:u00:Corporation, +8:u01:1015, +11:u02:Granger, +10:u03:Avenue, +7:u04:Ann, +9:u05:Arbor, +6:u07:MI, +9:u08:48104, +14:u09:Avenue/Ann, +13:u0A:Ann/Arbor, +11:u0B:Arbor/,, +18:u0C:Granger/Avenue, +9:u0D:Ann/0, +11:u10:granger, +10:u11:avenue, +7:u12:ann, +9:u13:arbor, +7:u22:Ann, +7:u23:Ann, +6:u31:nn, +7:u32:Ann, +7:u33:Ann, +8:u00:1015, +11:u01:Granger, +10:u02:Avenue, +7:u03:Ann, +9:u04:Arbor, +6:u06:MI, +9:u07:48104, +13:u09:Ann/Arbor, +11:u0A:Arbor/,, +8:u0B:,/MI, +14:u0C:Avenue/Ann, +11:u0D:Arbor/0, +10:u10:avenue, +7:u11:ann, +9:u12:arbor, +6:u14:mi, +7:u22:Arb, +8:u23:Arbo, +7:u32:bor, +8:u33:rbor, +11:u00:Granger, +10:u01:Avenue, +7:u02:Ann, +9:u03:Arbor, +6:u05:MI, +9:u06:48104, +11:u09:Arbor/,, +8:u0A:,/MI, +12:u0B:MI/48104, +13:u0C:Ann/Arbor, +7:u10:ann, +9:u11:arbor, +6:u13:mi, +9:u14:48104, +10:u00:Avenue, +7:u01:Ann, +9:u02:Arbor, +6:u04:MI, +9:u05:48104, +8:u09:,/MI, +12:u0A:MI/48104, +16:u0B:48104/United, +11:u0C:Arbor/,, +8:u0D:MI/0, +9:u10:arbor, +6:u12:mi, +9:u13:48104, +6:u21:MI, +6:u22:MI, +6:u23:MI, +6:u31:MI, +6:u32:MI, +6:u33:MI, +7:u00:Ann, +9:u01:Arbor, +6:u03:MI, +9:u04:48104, +12:u09:MI/48104, +16:u0A:48104/United, +8:u0C:,/MI, +11:u0D:48104/0, +6:u11:mi, +9:u12:48104, +6:u21:48, +7:u22:481, +8:u23:4810, +7:u32:104, +8:u33:8104, +9:u00:Arbor, +6:u02:MI, +9:u03:48104, +16:u09:48104/United, +12:u0C:MI/48104, +6:u10:mi, +9:u11:48104, +6:u01:MI, +9:u02:48104, +16:u0C:48104/United, +9:u10:48104, +6:u00:MI, +9:u01:48104, +9:u00:48104, +7:u08:248, +7:u07:248, +7:u08:614, +7:u06:248, +7:u07:614, +8:u08:5091, +10:u0B:+1/248, +7:u14:248, +7:u05:248, +7:u06:614, +8:u07:5091, +10:u0A:+1/248, +11:u0B:248/614, +7:u13:248, +7:u14:614, +7:u04:248, +7:u05:614, +8:u06:5091, +10:u09:+1/248, +11:u0A:248/614, +12:u0B:614/5091, +9:u0D:248/0, +7:u12:248, +7:u13:614, +8:u14:5091, +6:u21:24, +7:u22:248, +7:u23:248, +6:u31:48, +7:u32:248, +7:u33:248, +7:u03:248, +7:u04:614, +8:u05:5091, +9:u08:chuck, +11:u09:248/614, +12:u0A:614/5091, +14:u0B:5091/EMail, +10:u0C:+1/248, +9:u0D:614/0, +7:u11:248, +7:u12:614, +8:u13:5091, +6:u21:61, +7:u22:614, +7:u23:614, +7:u32:614, +7:u33:614, +7:u02:248, +7:u03:614, +8:u04:5091, +9:u07:chuck, +12:u09:614/5091, +14:u0A:5091/EMail, +11:u0C:248/614, +10:u0D:5091/0, +7:u10:248, +7:u11:614, +8:u12:5091, +6:u21:50, +7:u22:509, +8:u23:5091, +6:u31:91, +7:u32:091, +8:u33:5091, +7:u01:248, +7:u02:614, +8:u03:5091, +9:u06:chuck, +16:u08:lever@oracle, +14:u09:5091/EMail, +11:u0B::/chuck, +12:u0C:614/5091, +7:u10:614, +8:u11:5091, +9:u14:chuck, +7:u00:248, +7:u01:614, +8:u02:5091, +9:u05:chuck, +16:u07:lever@oracle, +11:u0A::/chuck, +11:u0B:chuck/., +14:u0C:5091/EMail, +8:u10:5091, +9:u13:chuck, +7:u00:614, +8:u01:5091, +9:u04:chuck, +16:u06:lever@oracle, +11:u09::/chuck, +11:u0A:chuck/., +18:u0B:./lever@oracle, +11:u0D:chuck/0, +9:u12:chuck, +16:u14:lever@oracle, +7:u22:chu, +8:u23:chuc, +7:u32:uck, +8:u33:huck, +8:u00:5091, +9:u03:chuck, +16:u05:lever@oracle, +11:u09:chuck/., +18:u0A:./lever@oracle, +18:u0B:lever@oracle/., +11:u0C::/chuck, +9:u11:chuck, +16:u13:lever@oracle, +9:u02:chuck, +16:u04:lever@oracle, +18:u09:./lever@oracle, +18:u0A:lever@oracle/., +11:u0C:chuck/., +18:u0D:lever@oracle/0, +9:u10:chuck, +16:u12:lever@oracle, +9:u01:chuck, +16:u03:lever@oracle, +18:u09:lever@oracle/., +18:u0C:./lever@oracle, +16:u11:lever@oracle, +9:u00:chuck, +16:u02:lever@oracle, +18:u0C:lever@oracle/., +16:u10:lever@oracle, +12:u06:20190912, +17:u0B:date/20190912, +12:u14:20190912, +12:u05:20190912, +17:u0A:date/20190912, +14:u0B:20190912/;, +12:u13:20190912, +12:u04:20190912, +17:u09:date/20190912, +14:u0A:20190912/;, +14:u0D:20190912/0, +12:u12:20190912, +7:u32:912, +8:u33:0912, +12:u03:20190912, +14:u09:20190912/;, +17:u0C:date/20190912, +12:u11:20190912, +12:u02:20190912, +12:u08:20190913, +14:u0C:20190912/;, +12:u10:20190912, +12:u01:20190912, +12:u07:20190913, +8:u08:LISP, +12:u00:20190912, +12:u06:20190913, +8:u07:LISP, +15:u0B:on/20190913, +12:u14:20190913, +12:u05:20190913, +8:u06:LISP, +15:u0A:on/20190913, +17:u0B:20190913/LISP, +12:u13:20190913, +8:u14:lisp, +12:u04:20190913, +8:u05:LISP, +15:u09:on/20190913, +17:u0A:20190913/LISP, +16:u0B:LISP/Working, +14:u0D:20190913/0, +12:u12:20190913, +8:u13:lisp, +7:u32:913, +8:u33:0913, +12:u03:20190913, +8:u04:LISP, +17:u09:20190913/LISP, +16:u0A:LISP/Working, +15:u0C:on/20190913, +10:u0D:LISP/0, +12:u11:20190913, +8:u12:lisp, +6:u21:LI, +7:u22:LIS, +8:u23:LISP, +7:u32:ISP, +8:u33:LISP, +12:u02:20190913, +8:u03:LISP, +13:u08:Rodriguez, +16:u09:LISP/Working, +11:u0B:Group/A, +17:u0C:20190913/LISP, +12:u10:20190913, +8:u11:lisp, +12:u01:20190913, +8:u02:LISP, +13:u07:Rodriguez, +11:u0A:Group/A, +16:u0C:LISP/Working, +8:u10:lisp, +12:u00:20190913, +8:u01:LISP, +13:u06:Rodriguez, +9:u08:Natal, +11:u09:Group/A, +15:u0B:./Rodriguez, +13:u14:rodriguez, +8:u00:LISP, +13:u05:Rodriguez, +9:u07:Natal, +15:u0A:./Rodriguez, +15:u0B:Rodriguez/-, +11:u0C:Group/A, +13:u13:rodriguez, +13:u04:Rodriguez, +9:u06:Natal, +15:u09:./Rodriguez, +15:u0A:Rodriguez/-, +11:u0B:-/Natal, +15:u0D:Rodriguez/0, +13:u12:rodriguez, +9:u14:natal, +7:u22:Rod, +8:u23:Rodr, +5:u30:z, +6:u31:ez, +7:u32:uez, +8:u33:guez, +13:u03:Rodriguez, +9:u05:Natal, +15:u09:Rodriguez/-, +11:u0A:-/Natal, +18:u0B:Natal/Internet, +15:u0C:./Rodriguez, +13:u11:rodriguez, +9:u13:natal, +13:u02:Rodriguez, +9:u04:Natal, +11:u09:-/Natal, +18:u0A:Natal/Internet, +15:u0C:Rodriguez/-, +11:u0D:Natal/1, +13:u10:rodriguez, +9:u12:natal, +7:u22:Nat, +8:u23:Nata, +8:u33:atal, +13:u01:Rodriguez, +9:u03:Natal, +18:u09:Natal/Internet, +11:u0C:-/Natal, +9:u11:natal, +13:u00:Rodriguez, +9:u02:Natal, +18:u0C:Natal/Internet, +9:u10:natal, +9:u01:Natal, +9:u00:Natal, +5:u08:V, +5:u07:V, +5:u06:V, +11:u08:Ermagan, +18:u0B:Experimental/V, +5:u14:v, +5:u05:V, +11:u07:Ermagan, +18:u0A:Experimental/V, +7:u0B:V/., +5:u13:v, +5:u04:V, +11:u06:Ermagan, +18:u09:Experimental/V, +7:u0A:V/., +13:u0B:./Ermagan, +7:u0D:V/0, +5:u12:v, +11:u14:ermagan, +5:u21:V, +5:u22:V, +5:u23:V, +5:u31:V, +5:u32:V, +5:u33:V, +5:u03:V, +11:u05:Ermagan, +7:u09:V/., +13:u0A:./Ermagan, +19:u0B:Ermagan/Expires, +18:u0C:Experimental/V, +5:u11:v, +11:u13:ermagan, +5:u02:V, +11:u04:Ermagan, +13:u09:./Ermagan, +19:u0A:Ermagan/Expires, +7:u0C:V/., +13:u0D:Ermagan/0, +5:u10:v, +11:u12:ermagan, +7:u22:Erm, +8:u23:Erma, +7:u32:gan, +8:u33:agan, +5:u01:V, +11:u03:Ermagan, +19:u09:Ermagan/Expires, +13:u0C:./Ermagan, +11:u11:ermagan, +5:u00:V, +11:u02:Ermagan, +12:u0B:March/14, +19:u0C:Ermagan/Expires, +11:u10:ermagan, +11:u01:Ermagan, +10:u08:Google, +12:u0A:March/14, +8:u0B:14/,, +11:u00:Ermagan, +10:u07:Google, +12:u09:March/14, +8:u0A:14/,, +10:u06:Google, +8:u09:14/,, +15:u0B:2020/Google, +12:u0C:March/14, +10:u14:google, +10:u05:Google, +9:u08:Leong, +15:u0A:2020/Google, +12:u0B:Google/J, +8:u0C:14/,, +10:u13:google, +10:u04:Google, +9:u07:Leong, +15:u09:2020/Google, +12:u0A:Google/J, +12:u0D:Google/0, +10:u12:google, +7:u22:Goo, +8:u23:Goog, +7:u32:gle, +8:u33:ogle, +10:u03:Google, +9:u06:Leong, +12:u09:Google/J, +11:u0B:./Leong, +15:u0C:2020/Google, +10:u11:google, +9:u14:leong, +10:u02:Google, +9:u05:Leong, +9:u08:Maino, +11:u0A:./Leong, +11:u0B:Leong/F, +12:u0C:Google/J, +10:u10:google, +9:u13:leong, +10:u01:Google, +9:u04:Leong, +9:u07:Maino, +11:u09:./Leong, +11:u0A:Leong/F, +11:u0D:Leong/0, +9:u12:leong, +7:u22:Leo, +8:u23:Leon, +8:u33:eong, +10:u00:Google, +9:u03:Leong, +9:u06:Maino, +11:u09:Leong/F, +11:u0B:./Maino, +11:u0C:./Leong, +9:u11:leong, +9:u14:maino, +9:u02:Leong, +9:u05:Maino, +11:u0A:./Maino, +15:u0B:Maino/Cisco, +11:u0C:Leong/F, +9:u10:leong, +9:u13:maino, +9:u01:Leong, +9:u04:Maino, +11:u09:./Maino, +15:u0A:Maino/Cisco, +11:u0D:Maino/0, +9:u12:maino, +7:u32:ino, +8:u33:aino, +9:u00:Leong, +9:u03:Maino, +12:u08:Cabellos, +15:u09:Maino/Cisco, +13:u0B:Systems/A, +11:u0C:./Maino, +9:u11:maino, +9:u02:Maino, +12:u07:Cabellos, +13:u0A:Systems/A, +15:u0C:Maino/Cisco, +9:u10:maino, +9:u01:Maino, +12:u06:Cabellos, +12:u08:Aparicio, +13:u09:Systems/A, +14:u0B:./Cabellos, +12:u14:cabellos, +9:u00:Maino, +12:u05:Cabellos, +12:u07:Aparicio, +13:u08:Technical, +14:u0A:./Cabellos, +14:u0B:Cabellos/-, +13:u0C:Systems/A, +12:u13:cabellos, +12:u04:Cabellos, +12:u06:Aparicio, +13:u07:Technical, +14:u09:./Cabellos, +14:u0A:Cabellos/-, +14:u0B:-/Aparicio, +14:u0D:Cabellos/0, +12:u12:cabellos, +12:u14:aparicio, +7:u22:Cab, +8:u23:Cabe, +8:u33:llos, +12:u03:Cabellos, +12:u05:Aparicio, +13:u06:Technical, +14:u09:Cabellos/-, +14:u0A:-/Aparicio, +22:u0B:Aparicio/Technical, +14:u0C:./Cabellos, +12:u11:cabellos, +12:u13:aparicio, +12:u02:Cabellos, +12:u04:Aparicio, +13:u05:Technical, +13:u08:Catalonia, +14:u09:-/Aparicio, +22:u0A:Aparicio/Technical, +24:u0B:Technical/University, +14:u0C:Cabellos/-, +14:u0D:Aparicio/1, +12:u10:cabellos, +12:u12:aparicio, +7:u22:Apa, +8:u23:Apar, +8:u33:icio, +12:u01:Cabellos, +12:u03:Aparicio, +13:u04:Technical, +13:u07:Catalonia, +22:u09:Aparicio/Technical, +24:u0A:Technical/University, +14:u0C:-/Aparicio, +15:u0D:Technical/0, +12:u11:aparicio, +7:u22:Tec, +8:u23:Tech, +12:u00:Cabellos, +12:u02:Aparicio, +13:u03:Technical, +13:u06:Catalonia, +24:u09:Technical/University, +16:u0B:of/Catalonia, +22:u0C:Aparicio/Technical, +12:u10:aparicio, +13:u14:catalonia, +12:u01:Aparicio, +13:u02:Technical, +13:u05:Catalonia, +10:u08:Barkai, +16:u0A:of/Catalonia, +15:u0B:Catalonia/S, +24:u0C:Technical/University, +13:u13:catalonia, +12:u00:Aparicio, +13:u01:Technical, +13:u04:Catalonia, +10:u07:Barkai, +9:u08:Nexar, +16:u09:of/Catalonia, +15:u0A:Catalonia/S, +15:u0D:Catalonia/0, +13:u12:catalonia, +8:u23:Cata, +8:u33:onia, +13:u00:Technical, +13:u03:Catalonia, +10:u06:Barkai, +9:u07:Nexar, +15:u09:Catalonia/S, +12:u0B:./Barkai, +16:u0C:of/Catalonia, +13:u11:catalonia, +10:u14:barkai, +13:u02:Catalonia, +10:u05:Barkai, +9:u06:Nexar, +12:u0A:./Barkai, +16:u0B:Barkai/Nexar, +15:u0C:Catalonia/S, +13:u10:catalonia, +10:u13:barkai, +9:u14:nexar, +13:u01:Catalonia, +10:u04:Barkai, +9:u05:Nexar, +12:u09:./Barkai, +16:u0A:Barkai/Nexar, +13:u0B:Nexar/Inc, +12:u0D:Barkai/0, +10:u12:barkai, +9:u13:nexar, +7:u22:Bar, +8:u23:Bark, +6:u31:ai, +7:u32:kai, +8:u33:rkai, +13:u00:Catalonia, +10:u03:Barkai, +9:u04:Nexar, +16:u09:Barkai/Nexar, +13:u0A:Nexar/Inc, +12:u0C:./Barkai, +11:u0D:Nexar/0, +10:u11:barkai, +9:u12:nexar, +7:u22:Nex, +8:u23:Nexa, +7:u32:xar, +8:u33:exar, +10:u02:Barkai, +9:u03:Nexar, +13:u08:Farinacci, +13:u09:Nexar/Inc, +7:u0B:./D, +16:u0C:Barkai/Nexar, +10:u10:barkai, +9:u11:nexar, +10:u01:Barkai, +9:u02:Nexar, +13:u07:Farinacci, +11:u08:lispers, +7:u0A:./D, +13:u0C:Nexar/Inc, +9:u10:nexar, +10:u00:Barkai, +9:u01:Nexar, +13:u06:Farinacci, +11:u07:lispers, +7:u09:./D, +15:u0B:./Farinacci, +13:u14:farinacci, +9:u00:Nexar, +13:u05:Farinacci, +11:u06:lispers, +15:u0A:./Farinacci, +21:u0B:Farinacci/lispers, +7:u0C:./D, +13:u13:farinacci, +11:u14:lispers, +13:u04:Farinacci, +11:u05:lispers, +15:u09:./Farinacci, +21:u0A:Farinacci/lispers, +13:u0B:lispers/., +15:u0D:Farinacci/0, +13:u12:farinacci, +11:u13:lispers, +6:u21:Fa, +7:u22:Far, +8:u23:Fari, +7:u32:cci, +8:u33:acci, +13:u03:Farinacci, +11:u04:lispers, +21:u09:Farinacci/lispers, +13:u0A:lispers/., +15:u0C:./Farinacci, +13:u0D:lispers/0, +13:u11:farinacci, +11:u12:lispers, +8:u23:lisp, +8:u33:pers, +13:u02:Farinacci, +11:u03:lispers, +13:u08:Boucadair, +13:u09:lispers/., +9:u0B:net/M, +21:u0C:Farinacci/lispers, +13:u10:farinacci, +11:u11:lispers, +13:u01:Farinacci, +11:u02:lispers, +13:u07:Boucadair, +9:u0A:net/M, +13:u0C:lispers/., +11:u10:lispers, +13:u00:Farinacci, +11:u01:lispers, +13:u06:Boucadair, +9:u09:net/M, +15:u0B:./Boucadair, +13:u14:boucadair, +11:u00:lispers, +13:u05:Boucadair, +13:u08:Jacquenet, +15:u0A:./Boucadair, +15:u0B:Boucadair/C, +9:u0C:net/M, +13:u13:boucadair, +13:u04:Boucadair, +13:u07:Jacquenet, +10:u08:Orange, +15:u09:./Boucadair, +15:u0A:Boucadair/C, +15:u0D:Boucadair/0, +13:u12:boucadair, +6:u21:Bo, +7:u22:Bou, +8:u23:Bouc, +7:u32:air, +8:u33:dair, +13:u03:Boucadair, +13:u06:Jacquenet, +10:u07:Orange, +15:u09:Boucadair/C, +15:u0B:./Jacquenet, +15:u0C:./Boucadair, +13:u11:boucadair, +13:u14:jacquenet, +13:u02:Boucadair, +13:u05:Jacquenet, +10:u06:Orange, +15:u0A:./Jacquenet, +20:u0B:Jacquenet/Orange, +15:u0C:Boucadair/C, +13:u10:boucadair, +13:u13:jacquenet, +10:u14:orange, +13:u01:Boucadair, +13:u04:Jacquenet, +10:u05:Orange, +9:u08:Secci, +15:u09:./Jacquenet, +20:u0A:Jacquenet/Orange, +12:u0B:Orange/S, +15:u0D:Jacquenet/0, +13:u12:jacquenet, +10:u13:orange, +7:u22:Jac, +8:u23:Jacq, +8:u33:enet, +13:u00:Boucadair, +13:u03:Jacquenet, +10:u04:Orange, +9:u07:Secci, +8:u08:Cnam, +20:u09:Jacquenet/Orange, +12:u0A:Orange/S, +15:u0C:./Jacquenet, +12:u0D:Orange/0, +13:u11:jacquenet, +10:u12:orange, +13:u02:Jacquenet, +10:u03:Orange, +9:u06:Secci, +8:u07:Cnam, +12:u09:Orange/S, +11:u0B:./Secci, +20:u0C:Jacquenet/Orange, +13:u10:jacquenet, +10:u11:orange, +9:u14:secci, +13:u01:Jacquenet, +10:u02:Orange, +9:u05:Secci, +8:u06:Cnam, +11:u0A:./Secci, +14:u0B:Secci/Cnam, +12:u0C:Orange/S, +10:u10:orange, +9:u13:secci, +8:u14:cnam, +13:u00:Jacquenet, +10:u01:Orange, +9:u04:Secci, +8:u05:Cnam, +11:u09:./Secci, +14:u0A:Secci/Cnam, +18:u0B:Cnam/September, +11:u0D:Secci/0, +9:u12:secci, +8:u13:cnam, +8:u23:Secc, +8:u33:ecci, +10:u00:Orange, +9:u03:Secci, +8:u04:Cnam, +14:u09:Secci/Cnam, +18:u0A:Cnam/September, +16:u0B:September/11, +11:u0C:./Secci, +10:u0D:Cnam/0, +9:u11:secci, +8:u12:cnam, +6:u21:Cn, +7:u22:Cna, +8:u23:Cnam, +7:u32:nam, +8:u33:Cnam, +9:u02:Secci, +8:u03:Cnam, +11:u08:Publish, +18:u09:Cnam/September, +16:u0A:September/11, +14:u0C:Secci/Cnam, +9:u10:secci, +8:u11:cnam, +9:u01:Secci, +8:u02:Cnam, +11:u07:Publish, +16:u09:September/11, +18:u0C:Cnam/September, +8:u10:cnam, +9:u00:Secci, +8:u01:Cnam, +11:u06:Publish, +13:u08:Subscribe, +16:u0B:2019/Publish, +16:u0C:September/11, +11:u14:publish, +8:u00:Cnam, +11:u05:Publish, +13:u07:Subscribe, +17:u08:Functionality, +16:u0A:2019/Publish, +13:u0B:Publish//, +11:u13:publish, +11:u04:Publish, +13:u06:Subscribe, +17:u07:Functionality, +16:u09:2019/Publish, +13:u0A:Publish//, +15:u0B://Subscribe, +13:u0D:Publish/0, +11:u12:publish, +13:u14:subscribe, +6:u21:Pu, +7:u22:Pub, +8:u23:Publ, +11:u03:Publish, +13:u05:Subscribe, +17:u06:Functionality, +13:u09:Publish//, +15:u0A://Subscribe, +27:u0B:Subscribe/Functionality, +16:u0C:2019/Publish, +11:u11:publish, +13:u13:subscribe, +17:u14:functionality, +11:u02:Publish, +13:u04:Subscribe, +17:u05:Functionality, +15:u09://Subscribe, +27:u0A:Subscribe/Functionality, +21:u0B:Functionality/for, +13:u0C:Publish//, +15:u0D:Subscribe/0, +11:u10:publish, +13:u12:subscribe, +17:u13:functionality, +8:u23:Subs, +11:u01:Publish, +13:u03:Subscribe, +17:u04:Functionality, +27:u09:Subscribe/Functionality, +21:u0A:Functionality/for, +12:u0B:for/LISP, +15:u0C://Subscribe, +19:u0D:Functionality/0, +13:u11:subscribe, +17:u12:functionality, +11:u00:Publish, +13:u02:Subscribe, +17:u03:Functionality, +21:u09:Functionality/for, +12:u0A:for/LISP, +14:u0B:LISP/draft, +27:u0C:Subscribe/Functionality, +13:u10:subscribe, +17:u11:functionality, +13:u01:Subscribe, +17:u02:Functionality, +12:u09:for/LISP, +14:u0A:LISP/draft, +21:u0C:Functionality/for, +17:u10:functionality, +13:u00:Subscribe, +17:u01:Functionality, +8:u08:lisp, +14:u09:LISP/draft, +12:u0C:for/LISP, +17:u00:Functionality, +8:u07:lisp, +14:u0C:LISP/draft, +8:u06:lisp, +10:u08:pubsub, +10:u0B:-/lisp, +8:u05:lisp, +10:u07:pubsub, +10:u0A:-/lisp, +10:u0B:lisp/-, +8:u04:lisp, +10:u06:pubsub, +6:u08:04, +10:u09:-/lisp, +10:u0A:lisp/-, +12:u0B:-/pubsub, +10:u0D:lisp/1, +10:u14:pubsub, +6:u31:sp, +7:u32:isp, +8:u33:lisp, +8:u03:lisp, +10:u05:pubsub, +6:u07:04, +10:u09:lisp/-, +12:u0A:-/pubsub, +12:u0B:pubsub/-, +10:u0C:-/lisp, +10:u13:pubsub, +8:u02:lisp, +10:u04:pubsub, +6:u06:04, +12:u09:-/pubsub, +12:u0A:pubsub/-, +8:u0B:-/04, +10:u0C:lisp/-, +12:u0D:pubsub/1, +10:u12:pubsub, +6:u14:04, +8:u23:pubs, +7:u32:sub, +8:u33:bsub, +8:u01:lisp, +10:u03:pubsub, +6:u05:04, +12:u09:pubsub/-, +8:u0A:-/04, +15:u0B:04/Abstract, +12:u0C:-/pubsub, +10:u11:pubsub, +6:u13:04, +8:u00:lisp, +10:u02:pubsub, +6:u04:04, +8:u09:-/04, +15:u0A:04/Abstract, +12:u0C:pubsub/-, +8:u0D:04/1, +10:u10:pubsub, +6:u12:04, +6:u21:04, +6:u22:04, +6:u23:04, +6:u32:04, +6:u33:04, +10:u01:pubsub, +6:u03:04, +15:u09:04/Abstract, +8:u0C:-/04, +6:u11:04, +10:u00:pubsub, +6:u02:04, +15:u0C:04/Abstract, +6:u10:04, +6:u01:04, +16:u0B:specifies/an, +6:u00:04, +16:u0A:specifies/an, +16:u0B:an/extension, +16:u09:specifies/an, +16:u0A:an/extension, +16:u0B:extension/to, +16:u09:an/extension, +16:u0A:extension/to, +16:u0C:specifies/an, +7:u08:Map, +16:u09:extension/to, +16:u0C:an/extension, +7:u07:Map, +16:u0C:extension/to, +7:u06:Map, +10:u0B:of/Map, +7:u14:map, +7:u05:Map, +10:u0A:of/Map, +9:u0B:Map/-, +7:u13:map, +7:u04:Map, +10:u08:enable, +10:u09:of/Map, +9:u0A:Map/-, +13:u0B:-/Request, +9:u0D:Map/0, +7:u12:map, +7:u22:Map, +7:u23:Map, +6:u31:ap, +7:u32:Map, +7:u33:Map, +7:u03:Map, +10:u07:enable, +9:u09:Map/-, +13:u0A:-/Request, +14:u0B:Request/to, +10:u0C:of/Map, +7:u11:map, +7:u02:Map, +10:u06:enable, +13:u09:-/Request, +14:u0A:Request/to, +13:u0B:to/enable, +9:u0C:Map/-, +13:u0D:Request/1, +7:u10:map, +10:u14:enable, +7:u01:Map, +10:u05:enable, +14:u09:Request/to, +13:u0A:to/enable, +18:u0B:enable/Publish, +13:u0C:-/Request, +10:u13:enable, +7:u00:Map, +10:u04:enable, +13:u09:to/enable, +18:u0A:enable/Publish, +14:u0C:Request/to, +12:u0D:enable/0, +10:u12:enable, +7:u22:ena, +8:u23:enab, +10:u03:enable, +10:u08:PubSub, +18:u09:enable/Publish, +13:u0C:to/enable, +10:u11:enable, +10:u02:enable, +10:u07:PubSub, +15:u0B:Subscribe/(, +18:u0C:enable/Publish, +10:u10:enable, +10:u01:enable, +10:u06:PubSub, +13:u08:operation, +15:u0A:Subscribe/(, +12:u0B:(/PubSub, +10:u00:enable, +10:u05:PubSub, +13:u07:operation, +15:u09:Subscribe/(, +12:u0A:(/PubSub, +12:u0B:PubSub/), +10:u04:PubSub, +13:u06:operation, +12:u09:(/PubSub, +12:u0A:PubSub/), +15:u0B:)/operation, +15:u0C:Subscribe/(, +12:u0D:PubSub/0, +13:u14:operation, +8:u23:PubS, +8:u33:bSub, +10:u03:PubSub, +13:u05:operation, +12:u09:PubSub/), +15:u0A:)/operation, +17:u0B:operation/for, +12:u0C:(/PubSub, +13:u13:operation, +10:u02:PubSub, +13:u04:operation, +15:u09:)/operation, +17:u0A:operation/for, +12:u0C:PubSub/), +15:u0D:operation/0, +13:u12:operation, +7:u22:ope, +8:u23:oper, +10:u01:PubSub, +13:u03:operation, +17:u09:operation/for, +10:u0B:LISP/., +15:u0C:)/operation, +13:u11:operation, +10:u00:PubSub, +13:u02:operation, +10:u0A:LISP/., +17:u0C:operation/for, +13:u10:operation, +13:u01:operation, +10:u09:LISP/., +13:u00:operation, +10:u0C:LISP/., +11:u0B:Natal/,, +11:u0A:Natal/,, +11:u09:Natal/,, +11:u0C:Natal/,, +14:u0B:Draft/LISP, +14:u0A:Draft/LISP, +10:u0B:LISP/-, +14:u09:Draft/LISP, +10:u0A:LISP/-, +12:u0B:-/PubSub, +10:u09:LISP/-, +12:u0A:-/PubSub, +20:u0B:PubSub/September, +14:u0C:Draft/LISP, +12:u09:-/PubSub, +20:u0A:PubSub/September, +10:u0C:LISP/-, +12:u0D:PubSub/1, +20:u09:PubSub/September, +12:u0C:-/PubSub, +20:u0C:PubSub/September, +8:u08:Vina, +8:u07:Vina, +8:u06:Vina, +10:u0B:./Vina, +8:u14:vina, +8:u05:Vina, +10:u0A:./Vina, +16:u0B:Vina/Ermagan, +8:u13:vina, +8:u04:Vina, +10:u09:./Vina, +16:u0A:Vina/Ermagan, +18:u0B:Ermagan/Google, +10:u0D:Vina/0, +8:u12:vina, +7:u22:Vin, +8:u23:Vina, +8:u33:Vina, +8:u03:Vina, +16:u09:Vina/Ermagan, +18:u0A:Ermagan/Google, +14:u0B:Google/USA, +10:u0C:./Vina, +8:u11:vina, +8:u02:Vina, +17:u08:ermagan@gmail, +18:u09:Ermagan/Google, +14:u0A:Google/USA, +16:u0C:Vina/Ermagan, +8:u10:vina, +8:u01:Vina, +17:u07:ermagan@gmail, +14:u09:Google/USA, +18:u0C:Ermagan/Google, +8:u00:Vina, +17:u06:ermagan@gmail, +19:u0B::/ermagan@gmail, +14:u0C:Google/USA, +17:u14:ermagan@gmail, +17:u05:ermagan@gmail, +11:u08:Johnson, +19:u0A::/ermagan@gmail, +19:u0B:ermagan@gmail/., +17:u13:ermagan@gmail, +17:u04:ermagan@gmail, +11:u07:Johnson, +19:u09::/ermagan@gmail, +19:u0A:ermagan@gmail/., +19:u0D:ermagan@gmail/0, +17:u12:ermagan@gmail, +7:u22:erm, +8:u23:erma, +17:u03:ermagan@gmail, +11:u06:Johnson, +19:u09:ermagan@gmail/., +15:u0B:com/Johnson, +19:u0C::/ermagan@gmail, +17:u11:ermagan@gmail, +11:u14:johnson, +17:u02:ermagan@gmail, +11:u05:Johnson, +15:u0A:com/Johnson, +17:u0B:Johnson/Leong, +19:u0C:ermagan@gmail/., +17:u10:ermagan@gmail, +11:u13:johnson, +17:u01:ermagan@gmail, +11:u04:Johnson, +7:u08:170, +15:u09:com/Johnson, +17:u0A:Johnson/Leong, +15:u0B:Leong/Cisco, +13:u0D:Johnson/0, +11:u12:johnson, +7:u22:Joh, +8:u23:John, +8:u33:nson, +17:u00:ermagan@gmail, +11:u03:Johnson, +7:u07:170, +10:u08:Tasman, +17:u09:Johnson/Leong, +15:u0A:Leong/Cisco, +15:u0C:com/Johnson, +11:u11:johnson, +11:u02:Johnson, +7:u06:170, +10:u07:Tasman, +9:u08:Drive, +15:u09:Leong/Cisco, +15:u0B:Systems/170, +17:u0C:Johnson/Leong, +11:u10:johnson, +7:u14:170, +11:u01:Johnson, +7:u05:170, +10:u06:Tasman, +9:u07:Drive, +7:u08:San, +15:u0A:Systems/170, +14:u0B:170/Tasman, +15:u0C:Leong/Cisco, +7:u13:170, +10:u14:tasman, +11:u00:Johnson, +7:u04:170, +10:u05:Tasman, +9:u06:Drive, +7:u07:San, +8:u08:Jose, +15:u09:Systems/170, +14:u0A:170/Tasman, +16:u0B:Tasman/Drive, +9:u0D:170/0, +7:u12:170, +10:u13:tasman, +9:u14:drive, +7:u22:170, +7:u23:170, +7:u32:170, +7:u33:170, +7:u03:170, +10:u04:Tasman, +9:u05:Drive, +7:u06:San, +8:u07:Jose, +14:u09:170/Tasman, +16:u0A:Tasman/Drive, +13:u0B:Drive/San, +15:u0C:Systems/170, +12:u0D:Tasman/0, +7:u11:170, +10:u12:tasman, +9:u13:drive, +7:u14:san, +8:u23:Tasm, +8:u33:sman, +7:u02:170, +10:u03:Tasman, +9:u04:Drive, +7:u05:San, +8:u06:Jose, +16:u09:Tasman/Drive, +13:u0A:Drive/San, +12:u0B:San/Jose, +14:u0C:170/Tasman, +11:u0D:Drive/0, +7:u10:170, +10:u11:tasman, +9:u12:drive, +7:u13:san, +8:u14:jose, +7:u22:Dri, +8:u23:Driv, +8:u33:rive, +7:u01:170, +10:u02:Tasman, +9:u03:Drive, +7:u04:San, +8:u05:Jose, +13:u09:Drive/San, +12:u0A:San/Jose, +10:u0B:Jose/,, +16:u0C:Tasman/Drive, +9:u0D:San/0, +10:u10:tasman, +9:u11:drive, +7:u12:san, +8:u13:jose, +7:u22:San, +7:u23:San, +7:u32:San, +7:u33:San, +7:u00:170, +10:u01:Tasman, +9:u02:Drive, +7:u03:San, +8:u04:Jose, +12:u09:San/Jose, +10:u0A:Jose/,, +13:u0C:Drive/San, +10:u0D:Jose/0, +9:u10:drive, +7:u11:san, +8:u12:jose, +7:u22:Jos, +8:u23:Jose, +8:u33:Jose, +10:u00:Tasman, +9:u01:Drive, +7:u02:San, +8:u03:Jose, +10:u09:Jose/,, +10:u0B:CA/USA, +12:u0C:San/Jose, +7:u10:san, +8:u11:jose, +9:u00:Drive, +7:u01:San, +8:u02:Jose, +17:u08:joleong@cisco, +10:u0A:CA/USA, +10:u0C:Jose/,, +8:u10:jose, +7:u00:San, +8:u01:Jose, +17:u07:joleong@cisco, +10:u09:CA/USA, +8:u00:Jose, +17:u06:joleong@cisco, +19:u0B::/joleong@cisco, +10:u0C:CA/USA, +17:u14:joleong@cisco, +17:u05:joleong@cisco, +9:u08:Fabio, +19:u0A::/joleong@cisco, +19:u0B:joleong@cisco/., +17:u13:joleong@cisco, +17:u04:joleong@cisco, +9:u07:Fabio, +19:u09::/joleong@cisco, +19:u0A:joleong@cisco/., +19:u0D:joleong@cisco/0, +17:u12:joleong@cisco, +6:u21:jo, +7:u22:jol, +8:u23:jole, +17:u03:joleong@cisco, +9:u06:Fabio, +19:u09:joleong@cisco/., +13:u0B:com/Fabio, +19:u0C::/joleong@cisco, +17:u11:joleong@cisco, +9:u14:fabio, +17:u02:joleong@cisco, +9:u05:Fabio, +13:u0A:com/Fabio, +15:u0B:Fabio/Maino, +19:u0C:joleong@cisco/., +17:u10:joleong@cisco, +9:u13:fabio, +17:u01:joleong@cisco, +9:u04:Fabio, +13:u09:com/Fabio, +15:u0A:Fabio/Maino, +11:u0D:Fabio/0, +9:u12:fabio, +7:u22:Fab, +8:u23:Fabi, +7:u32:bio, +8:u33:abio, +17:u00:joleong@cisco, +9:u03:Fabio, +15:u09:Fabio/Maino, +13:u0C:com/Fabio, +9:u11:fabio, +9:u02:Fabio, +15:u0C:Fabio/Maino, +9:u10:fabio, +9:u01:Fabio, +9:u00:Fabio, +16:u08:fmaino@cisco, +16:u07:fmaino@cisco, +16:u06:fmaino@cisco, +18:u0B::/fmaino@cisco, +16:u14:fmaino@cisco, +16:u05:fmaino@cisco, +10:u08:Albert, +18:u0A::/fmaino@cisco, +18:u0B:fmaino@cisco/., +16:u13:fmaino@cisco, +16:u04:fmaino@cisco, +10:u07:Albert, +18:u09::/fmaino@cisco, +18:u0A:fmaino@cisco/., +18:u0D:fmaino@cisco/0, +16:u12:fmaino@cisco, +6:u21:fm, +7:u22:fma, +8:u23:fmai, +16:u03:fmaino@cisco, +10:u06:Albert, +18:u09:fmaino@cisco/., +14:u0B:com/Albert, +18:u0C::/fmaino@cisco, +16:u11:fmaino@cisco, +10:u14:albert, +16:u02:fmaino@cisco, +10:u05:Albert, +14:u0A:com/Albert, +19:u0B:Albert/Cabellos, +18:u0C:fmaino@cisco/., +16:u10:fmaino@cisco, +10:u13:albert, +16:u01:fmaino@cisco, +10:u04:Albert, +14:u09:com/Albert, +19:u0A:Albert/Cabellos, +12:u0D:Albert/0, +10:u12:albert, +7:u22:Alb, +8:u23:Albe, +16:u00:fmaino@cisco, +10:u03:Albert, +19:u09:Albert/Cabellos, +14:u0C:com/Albert, +10:u11:albert, +10:u02:Albert, +19:u0C:Albert/Cabellos, +10:u10:albert, +10:u01:Albert, +10:u00:Albert, +13:u08:Barcelona, +13:u07:Barcelona, +13:u06:Barcelona, +23:u0B:Catalonia/Barcelona, +13:u14:barcelona, +13:u05:Barcelona, +23:u0A:Catalonia/Barcelona, +19:u0B:Barcelona/Spain, +13:u13:barcelona, +13:u04:Barcelona, +15:u08:acabello@ac, +23:u09:Catalonia/Barcelona, +19:u0A:Barcelona/Spain, +15:u0D:Barcelona/0, +13:u12:barcelona, +8:u23:Barc, +7:u32:ona, +8:u33:lona, +13:u03:Barcelona, +15:u07:acabello@ac, +19:u09:Barcelona/Spain, +23:u0C:Catalonia/Barcelona, +13:u11:barcelona, +13:u02:Barcelona, +15:u06:acabello@ac, +7:u08:upc, +17:u0B::/acabello@ac, +19:u0C:Barcelona/Spain, +13:u10:barcelona, +15:u14:acabello@ac, +13:u01:Barcelona, +15:u05:acabello@ac, +7:u07:upc, +17:u0A::/acabello@ac, +17:u0B:acabello@ac/., +15:u13:acabello@ac, +13:u00:Barcelona, +15:u04:acabello@ac, +7:u06:upc, +17:u09::/acabello@ac, +17:u0A:acabello@ac/., +9:u0B:./upc, +17:u0D:acabello@ac/0, +15:u12:acabello@ac, +7:u14:upc, +8:u23:acab, +6:u31:ac, +7:u32:@ac, +8:u33:o@ac, +15:u03:acabello@ac, +7:u05:upc, +10:u08:Sharon, +17:u09:acabello@ac/., +9:u0A:./upc, +9:u0B:upc/., +17:u0C::/acabello@ac, +15:u11:acabello@ac, +7:u13:upc, +15:u02:acabello@ac, +7:u04:upc, +10:u07:Sharon, +9:u09:./upc, +9:u0A:upc/., +17:u0C:acabello@ac/., +9:u0D:upc/0, +15:u10:acabello@ac, +7:u12:upc, +7:u22:upc, +7:u23:upc, +6:u31:pc, +7:u32:upc, +7:u33:upc, +15:u01:acabello@ac, +7:u03:upc, +10:u06:Sharon, +9:u09:upc/., +14:u0B:edu/Sharon, +9:u0C:./upc, +7:u11:upc, +10:u14:sharon, +15:u00:acabello@ac, +7:u02:upc, +10:u05:Sharon, +14:u0A:edu/Sharon, +17:u0B:Sharon/Barkai, +9:u0C:upc/., +7:u10:upc, +10:u13:sharon, +7:u01:upc, +7:u03:edu, +10:u04:Sharon, +14:u09:edu/Sharon, +17:u0A:Sharon/Barkai, +9:u0C:./edu, +12:u0D:Sharon/0, +7:u11:edu, +10:u12:sharon, +8:u23:Shar, +8:u33:aron, +7:u00:upc, +7:u02:edu, +10:u03:Sharon, +17:u09:Sharon/Barkai, +14:u0C:edu/Sharon, +7:u10:edu, +10:u11:sharon, +7:u01:edu, +10:u02:Sharon, +17:u0C:Sharon/Barkai, +10:u10:sharon, +7:u00:edu, +10:u01:Sharon, +10:u08:sharon, +11:u0B:./Email, +10:u00:Sharon, +10:u07:sharon, +11:u0A:./Email, +10:u06:sharon, +19:u08:barkai@getnexar, +11:u09:./Email, +12:u0B::/sharon, +10:u05:sharon, +19:u07:barkai@getnexar, +12:u0A::/sharon, +12:u0B:sharon/., +11:u0C:./Email, +10:u04:sharon, +19:u06:barkai@getnexar, +12:u09::/sharon, +12:u0A:sharon/., +21:u0B:./barkai@getnexar, +12:u0D:sharon/0, +19:u14:barkai@getnexar, +8:u23:shar, +10:u03:sharon, +19:u05:barkai@getnexar, +8:u08:Dino, +12:u09:sharon/., +21:u0A:./barkai@getnexar, +21:u0B:barkai@getnexar/., +12:u0C::/sharon, +19:u13:barkai@getnexar, +10:u02:sharon, +19:u04:barkai@getnexar, +8:u07:Dino, +21:u09:./barkai@getnexar, +21:u0A:barkai@getnexar/., +12:u0C:sharon/., +21:u0D:barkai@getnexar/0, +19:u12:barkai@getnexar, +7:u22:bar, +8:u23:bark, +10:u01:sharon, +19:u03:barkai@getnexar, +8:u06:Dino, +21:u09:barkai@getnexar/., +12:u0B:com/Dino, +21:u0C:./barkai@getnexar, +19:u11:barkai@getnexar, +8:u14:dino, +10:u00:sharon, +19:u02:barkai@getnexar, +8:u05:Dino, +12:u0A:com/Dino, +18:u0B:Dino/Farinacci, +21:u0C:barkai@getnexar/., +19:u10:barkai@getnexar, +8:u13:dino, +19:u01:barkai@getnexar, +8:u04:Dino, +12:u09:com/Dino, +18:u0A:Dino/Farinacci, +10:u0D:Dino/0, +8:u12:dino, +6:u21:Di, +7:u22:Din, +8:u23:Dino, +8:u33:Dino, +19:u00:barkai@getnexar, +8:u03:Dino, +18:u09:Dino/Farinacci, +12:u0C:com/Dino, +8:u11:dino, +8:u02:Dino, +18:u0C:Dino/Farinacci, +8:u10:dino, +8:u01:Dino, +11:u0B:net/San, +8:u00:Dino, +11:u0A:net/San, +11:u09:net/San, +11:u08:Mohamed, +11:u0C:net/San, +11:u07:Mohamed, +11:u06:Mohamed, +15:u0B:USA/Mohamed, +11:u14:mohamed, +11:u05:Mohamed, +10:u08:Rennes, +15:u0A:USA/Mohamed, +21:u0B:Mohamed/Boucadair, +11:u13:mohamed, +11:u04:Mohamed, +10:u07:Rennes, +9:u08:35000, +15:u09:USA/Mohamed, +21:u0A:Mohamed/Boucadair, +20:u0B:Boucadair/Orange, +13:u0D:Mohamed/0, +11:u12:mohamed, +7:u22:Moh, +8:u23:Moha, +11:u03:Mohamed, +10:u06:Rennes, +9:u07:35000, +10:u08:France, +21:u09:Mohamed/Boucadair, +20:u0A:Boucadair/Orange, +17:u0B:Orange/Rennes, +15:u0C:USA/Mohamed, +11:u11:mohamed, +10:u14:rennes, +11:u02:Mohamed, +10:u05:Rennes, +9:u06:35000, +10:u07:France, +20:u09:Boucadair/Orange, +17:u0A:Orange/Rennes, +16:u0B:Rennes/35000, +21:u0C:Mohamed/Boucadair, +11:u10:mohamed, +10:u13:rennes, +9:u14:35000, +11:u01:Mohamed, +10:u04:Rennes, +9:u05:35000, +10:u06:France, +17:u09:Orange/Rennes, +16:u0A:Rennes/35000, +16:u0B:35000/France, +20:u0C:Boucadair/Orange, +12:u0D:Rennes/0, +10:u12:rennes, +9:u13:35000, +7:u22:Ren, +8:u23:Renn, +8:u33:nnes, +11:u00:Mohamed, +10:u03:Rennes, +9:u04:35000, +10:u05:France, +11:u08:mohamed, +16:u09:Rennes/35000, +16:u0A:35000/France, +16:u0B:France/Email, +17:u0C:Orange/Rennes, +11:u0D:35000/0, +10:u11:rennes, +9:u12:35000, +6:u21:35, +7:u22:350, +8:u23:3500, +8:u33:5000, +10:u02:Rennes, +9:u03:35000, +10:u04:France, +11:u07:mohamed, +16:u09:35000/France, +16:u0A:France/Email, +16:u0C:Rennes/35000, +12:u0D:France/0, +10:u10:rennes, +9:u11:35000, +6:u21:Fr, +7:u22:Fra, +8:u23:Fran, +10:u01:Rennes, +9:u02:35000, +10:u03:France, +11:u06:mohamed, +20:u08:boucadair@orange, +16:u09:France/Email, +13:u0B::/mohamed, +16:u0C:35000/France, +9:u10:35000, +10:u00:Rennes, +9:u01:35000, +10:u02:France, +11:u05:mohamed, +20:u07:boucadair@orange, +13:u0A::/mohamed, +13:u0B:mohamed/., +16:u0C:France/Email, +9:u00:35000, +10:u01:France, +11:u04:mohamed, +20:u06:boucadair@orange, +13:u09::/mohamed, +13:u0A:mohamed/., +22:u0B:./boucadair@orange, +13:u0D:mohamed/0, +20:u14:boucadair@orange, +7:u22:moh, +8:u23:moha, +10:u00:France, +11:u03:mohamed, +20:u05:boucadair@orange, +13:u08:Christian, +13:u09:mohamed/., +22:u0A:./boucadair@orange, +22:u0B:boucadair@orange/., +13:u0C::/mohamed, +20:u13:boucadair@orange, +11:u02:mohamed, +20:u04:boucadair@orange, +13:u07:Christian, +22:u09:./boucadair@orange, +22:u0A:boucadair@orange/., +13:u0C:mohamed/., +22:u0D:boucadair@orange/0, +20:u12:boucadair@orange, +6:u21:bo, +7:u22:bou, +8:u23:bouc, +11:u01:mohamed, +20:u03:boucadair@orange, +13:u06:Christian, +22:u09:boucadair@orange/., +17:u0B:com/Christian, +22:u0C:./boucadair@orange, +20:u11:boucadair@orange, +13:u14:christian, +11:u00:mohamed, +20:u02:boucadair@orange, +13:u05:Christian, +17:u0A:com/Christian, +23:u0B:Christian/Jacquenet, +22:u0C:boucadair@orange/., +20:u10:boucadair@orange, +13:u13:christian, +20:u01:boucadair@orange, +13:u04:Christian, +17:u09:com/Christian, +23:u0A:Christian/Jacquenet, +15:u0D:Christian/0, +13:u12:christian, +7:u32:ian, +8:u33:tian, +20:u00:boucadair@orange, +13:u03:Christian, +23:u09:Christian/Jacquenet, +17:u0C:com/Christian, +13:u11:christian, +13:u02:Christian, +23:u0C:Christian/Jacquenet, +13:u10:christian, +13:u01:Christian, +13:u00:Christian, +13:u08:christian, +13:u07:christian, +13:u06:christian, +20:u08:jacquenet@orange, +15:u0B::/christian, +13:u05:christian, +20:u07:jacquenet@orange, +15:u0A::/christian, +15:u0B:christian/., +13:u04:christian, +20:u06:jacquenet@orange, +15:u09::/christian, +15:u0A:christian/., +22:u0B:./jacquenet@orange, +15:u0D:christian/0, +20:u14:jacquenet@orange, +13:u03:christian, +20:u05:jacquenet@orange, +11:u08:Stefano, +15:u09:christian/., +22:u0A:./jacquenet@orange, +22:u0B:jacquenet@orange/., +15:u0C::/christian, +20:u13:jacquenet@orange, +13:u02:christian, +20:u04:jacquenet@orange, +11:u07:Stefano, +22:u09:./jacquenet@orange, +22:u0A:jacquenet@orange/., +15:u0C:christian/., +22:u0D:jacquenet@orange/0, +20:u12:jacquenet@orange, +7:u22:jac, +8:u23:jacq, +13:u01:christian, +20:u03:jacquenet@orange, +11:u06:Stefano, +22:u09:jacquenet@orange/., +15:u0B:com/Stefano, +22:u0C:./jacquenet@orange, +20:u11:jacquenet@orange, +11:u14:stefano, +13:u00:christian, +20:u02:jacquenet@orange, +11:u05:Stefano, +15:u0A:com/Stefano, +17:u0B:Stefano/Secci, +22:u0C:jacquenet@orange/., +20:u10:jacquenet@orange, +11:u13:stefano, +20:u01:jacquenet@orange, +11:u04:Stefano, +15:u09:com/Stefano, +17:u0A:Stefano/Secci, +13:u0D:Stefano/0, +11:u12:stefano, +8:u23:Stef, +7:u32:ano, +8:u33:fano, +20:u00:jacquenet@orange, +11:u03:Stefano, +17:u09:Stefano/Secci, +15:u0B:Cnam/France, +15:u0C:com/Stefano, +11:u11:stefano, +11:u02:Stefano, +15:u0A:Cnam/France, +15:u0B:France/_x+1, +17:u0C:Stefano/Secci, +11:u10:stefano, +11:u01:Stefano, +15:u09:Cnam/France, +15:u0A:France/_x+1, +16:uA3:INITCAP/_x+1, +555=-0x1.f6d790ed71828p-3 +565=-0x1.499860081b151p-4 +674=0x1.ab47fcd0b8f74p+0 +675=-0x1.bad2762bad661p-1 +680=0x1.15f861ff67568p+1 +684=0x1.1b82225a5f276p+0 +687=-0x1.02511219cb07ep-1 +692=0x1.5ae746e77c094p+1 +699=-0x1.e52b314382212p-5 +707=0x1.2649abbd7d256p-5 +709=-0x1.46cc62ff7a1bfp-5 +711=-0x1.66f31af069936p-11 +744=0x1.a00c35e9bcccfp+0 +745=-0x1.a4caa1ea71aa7p-1 +746=0x1.19ba715d42853p+0 +747=-0x1.6e3b5cbf3e056p-1 +750=0x1.bac079adf5d9fp-1 +751=-0x1.72db07fdc2a17p-2 +753=-0x1.a0148c1f33973p+0 +756=0x1.45a898a17746fp+0 +757=-0x1.ff680c4bb9cd6p-2 +758=-0x1.6ce0c9b41921cp+1 +765=-0x1.325e5f3600cd9p+0 +767=0x1.df6d941b715f1p+1 +768=0x1.79c54626ac19bp-5 +771=-0x1.5ef7f414ea37p-4 +779=0x1.ba947bcb6cea1p-4 +781=-0x1.a1683bc43ea3fp-7 +792=0x1.92242d5f31d4ap-2 +810=0x1.0a485735648ddp+1 +818=0x1.ed5c30501ba9bp-3 +843=-0x1.bc6ca5dc1218p-14 +851=0x1.feb2f0bcb6e02p-7 +853=-0x1.5557dc819b093p-12 +866=0x1.ed5c30501ba9bp-3 +891=-0x1.bc6ca5dc1218p-14 +899=0x1.feb2f0bcb6e02p-7 +901=-0x1.5557dc819b093p-12 +939=-0x1.08dabf6c1a578p-7 +945=-0x1.123179f02e334p-22 +947=-0x1.ab7628204abp-5 +949=-0x1.4f0b708b254eap-6 +950=0x1.03c178c700673p-4 +951=-0x1.6c0f8fc46f6e3p-9 +955=0x1.35216b42dc64fp-4 +963=-0x1.17285792c95dfp-7 +971=0x1.9c40a3adfa426p-15 +973=-0x1.1359dc1abce13p-6 +975=-0x1.3d7a9b186d355p-18 +979=0x1.7e72d5fa66a1ap-3 +1011=-0x1.f369878423931p-13 +1019=-0x1.e906ea062d13cp-12 +1021=-0x1.758d82cd303a9p-12 +1035=-0x1.425befcacd7dep-11 +1043=0x1.8ec39eea7446p-8 +1045=-0x1.147858b91a966p-12 +1083=-0x1.f369878423931p-13 +1091=-0x1.e906ea062d13cp-12 +1093=-0x1.758d82cd303a9p-12 +1107=-0x1.425befcacd7dep-11 +1115=0x1.8ec39eea7446p-8 +1117=-0x1.147858b91a966p-12 +1129=0x1.d6adddb7d6f88p-2 +1130=-0x1.eb74d14321518p-1 +1131=0x1.0c1e8a31b0093p-13 +1134=0x1.365902b8604bp-2 +1139=0x1.202491c505291p-5 +1141=0x1.a1de2cf3dfa5dp-5 +1152=0x1.0c0deca55c3acp+0 +1155=0x1.d9633d7a843a8p-4 +1161=0x1.f4b42df477287p-3 +1163=0x1.fb7e1561f2843p-3 +1200=0x1.60a60892ee55cp-1 +1203=0x1.1a82528f7725dp-2 +1211=0x1.7e2b06f6641d7p-3 +1249=-0x1.0f32d19fafe6p-21 +1251=-0x1.d3b3efbacd8e2p-5 +1257=-0x1.3cb397cd485dap-17 +1259=-0x1.0905d8d3ea0adp-10 +1261=-0x1.b72ddd67156d8p-12 +1262=0x1.523b75558e4fap-1 +1264=0x1.9c52fde13d8dap-3 +1271=-0x1.697c4c2e4f012p-1 +1299=-0x1.6d1882a2c12f7p-6 +1305=-0x1.bb351547a2de4p-19 +1307=0x1.2fed295350d8fp-6 +1323=-0x1.c4889a9e11498p-4 +1326=0x1.3b2833284731cp-3 +1331=-0x1.0460d7292a96fp-4 +1333=-0x1.4e8e19d2ebe36p-5 +1379=-0x1.f20e0a87e536fp-6 +1381=-0x1.36ec704b4ff58p-16 +1383=0x1.3078d49f73e16p-3 +1395=-0x1.c4889a9e11498p-4 +1398=0x1.3b2833284731cp-3 +1403=-0x1.0460d7292a96fp-4 +1405=-0x1.4e8e19d2ebe36p-5 +1419=-0x1.a6a19b1a6a5efp-13 +1427=0x1.78ee75e930da6p-7 +1429=0x1.8d6988313562p-8 +1436=-0x1.53fd405b5a0ap-17 +1442=0x1.82713cdb784d2p-2 +1443=-0x1.c63576d7b308ep-6 +1453=-0x1.73e3b2549712p-3 +1456=0x1.29105c42f695ep-1 +1460=0x1.1f6c5f201011p-3 +1461=0x1.ae365e08418a1p-4 +1467=-0x1.f369878423931p-13 +1475=-0x1.e906ea062d13cp-12 +1477=-0x1.758d82cd303a9p-12 +1491=-0x1.f369878423931p-13 +1499=-0x1.e906ea062d13cp-12 +1501=-0x1.758d82cd303a9p-12 +1519=-0x1.d201d5914f86ep-4 +1523=0x1.1953026952ddfp-5 +1525=-0x1.f45e71972ad0dp-6 +1535=-0x1.c9aa97648d6a9p-3 +1539=-0x1.0422c2ab4664p-3 +1547=0x1.c66d6cd8abf8bp-6 +1549=-0x1.4a6355b1c0609p-12 +1563=-0x1.f369878423931p-13 +1571=-0x1.e906ea062d13cp-12 +1573=-0x1.758d82cd303a9p-12 +1587=-0x1.59452aaefb322p-6 +1595=0x1.1978dc185399fp-6 +1597=-0x1.af4c84d00cde2p-14 +1619=-0x1.f20e0a87e536fp-6 +1621=-0x1.36ec704b4ff58p-16 +1623=0x1.3078d49f73e16p-3 +1635=0x1.3e3cc5b0635bdp-16 +1643=0x1.a6ab20ddc43ccp-6 +1645=-0x1.0a5f7aeefbd48p-15 +1648=-0x1.1f14c29d09a17p-10 +1658=0x1.7b2301447e333p-4 +1665=0x1.060ef2238376bp-3 +1667=0x1.5f4d080a4655fp-4 +1669=0x1.63d21f5314f92p-17 +1683=-0x1.425befcacd7dep-11 +1691=0x1.8ec39eea7446p-8 +1693=-0x1.147858b91a966p-12 +1707=-0x1.425befcacd7dep-11 +1715=0x1.8ec39eea7446p-8 +1717=-0x1.147858b91a966p-12 +1729=-0x1.2af05391445fbp-2 +1731=0x1.02b8fc547b166p-5 +1735=-0x1.0ddb5799583f2p-6 +1739=0x1.3f9f7c314fc88p-5 +1741=-0x1.772ae3668a02cp-12 +1755=-0x1.904f75a81561cp-3 +1763=0x1.eb8fc9b4e21eep-6 +1765=-0x1.07fa9ff35808ep-12 +1779=-0x1.425befcacd7dep-11 +1787=0x1.8ec39eea7446p-8 +1789=-0x1.147858b91a966p-12 +1803=-0x1.58317c19a795p-6 +1811=0x1.7b2d7b83b53fdp-6 +1813=-0x1.7bb8997c01281p-14 +1827=-0x1.d9a3ff1517d12p-5 +1835=-0x1.2c3a9b53f675dp-4 +1837=-0x1.f55bdf5306b02p-18 +1840=0x1.235635d992f4dp-1 +1900=-0x1.5734eec44ae74p-2 +1907=-0x1.38a177e3a8b6ap-6 +1909=-0x1.1408066d2b621p-15 +1923=-0x1.9594d7a376b43p-13 +1929=-0x1.2d5672e93190ep-21 +1931=0x1.f707f894eb0a9p-6 +1933=-0x1.3e440d1a93ddep-16 +1935=-0x1.db75178537a52p-7 +1971=-0x1.94c9f781e955dp-2 +1975=-0x1.62f25587bdb1dp-3 +1979=-0x1.ab3c3e0e391fcp-6 +1981=-0x1.b43e7d32b5c75p-7 +1983=0x1.364bdb6844fb6p-1 +1995=0x1.6f3959a0d7aa9p-15 +2003=-0x1.5e5f5cb2994e5p-5 +2017=0x1.63da3d0f9041cp+2 +2041=0x1.49907313fff0bp+2 +2042=0x1.219d9826e48b7p-2 +2048=0x1.f939721cb8cd1p+0 +2064=0x1.01c420391dedcp-1 +2067=0x1.1b77c30b19939p+2 +2070=0x1.72734189b2f75p+0 +2088=0x1.48633c272b9a1p-1 +2090=-0x1.80e0cab6a81c6p-1 +2091=0x1.e77e7a8b7d336p+2 +2092=0x1.c889cd670bbe6p+0 +2099=-0x1.6895094ccbfbfp-3 +2100=0x1.7285b151f9b91p+0 +2101=-0x1.f31403bce846bp-2 +2105=0x1.7275860a421bdp-1 +2106=0x1.214a196fb5055p-2 +2117=0x1.3969084ef60c5p+2 +2138=0x1.f08f6e703875ap+0 +2141=0x1.0addec829c987p+2 +2167=0x1.9c3cc69c19855p+1 +2191=0x1.668b758f9a59cp+2 +2194=0x1.fa377a301a0e2p-1 +2217=0x1.474d5a8f8a1acp+2 +2238=0x1.d5af64fcdaac8p+0 +2241=0x1.a838097f72936p+2 +2242=0x1.d0c326f65a711p-1 +2267=0x1.e03e6b1e924d1p+1 +2282=0x1.d2732a81589a6p-2 +2283=-0x1.e2566c66c44b1p-6 +2291=0x1.8f0f482d08e18p+2 +2317=0x1.1928a932c550dp+2 +2341=0x1.c391c488aa997p+2 +2348=0x1.d76958e1d139ap+0 +2354=-0x1.4dc907c08f621p-3 +2366=0x1.080d67d02522cp+2 +2369=0x1.9424d00440bdep-1 +2375=0x1.baa6d08c91929p+1 +2379=0x1.01ef832998e64p-2 +2391=0x1.5d95f4a7b7eabp+2 +2415=0x1.3982044ae57e4p-8 +2416=0x1.eef3040851f23p+1 +2420=0x1.eb7d54da4d3aep-1 +2440=0x1.d29ac9c3d348p+1 +2467=0x1.5efae473fe258p+2 +2474=0x1.c3d60a63211abp-2 +2491=0x1.6479e0b23d661p+2 +2517=0x1.5cf1a5062880ap+2 +2541=0x1.444fb8e75ff55p+2 +2542=0x1.70cebccb0a088p+2 +2558=0x1.142298adacfcdp+2 +2567=0x1.00e0f4eacbe53p+2 +2583=0x1.0f4970d73b182p+2 +3051=-0x1.51ab8ffafa747p-2 +3146=0x1.ab3778d3fc9e8p-2 +3147=0x1.079b7ee76edeap-3 +3155=-0x1.362294b9b268dp-6 +3243=0x1.e9cd3ae4758bdp-1 +3255=-0x1.2cd97ff576d45p-1 +3261=0x1.412918fa11ae7p+0 +3267=0x1.2b17715384b68p-5 +3272=-0x1.1c05c6f6411dbp-2 +3275=0x1.3a63cd3de188ep-5 +3276=-0x1.8652e78a10a55p-6 +3277=-0x1.7053168173c06p-10 +3279=0x1.df7c49ac8b94ep-11 +3284=-0x1.b3dc70bf7eb4cp-1 +3290=-0x1.165be2b90208p+0 +3291=0x1.ab55815e0d206p-3 +3293=0x1.ad40b802ba8f4p-6 +3313=0x1.89f07a0fe1119p-4 +3315=-0x1.823e4afe22f7ep-12 +3317=0x1.dd34f1a23bd17p-2 +3318=-0x1.f831039eb56efp-3 +3323=0x1.05f0e0ea19979p-4 +3327=0x1.af7f003da6e46p-5 +3328=0x1.e75d212420926p-3 +3334=-0x1.76486bb6c4d93p-2 +3335=-0x1.b7a21b17212d8p-3 +3371=0x1.0c165d582924p-6 +3373=-0x1.03c1b154da19p-12 +3419=0x1.0c165d582924p-6 +3421=-0x1.03c1b154da19p-12 +3433=0x1.e7a9ef56d559p-3 +3435=-0x1.4f29dade4e7f2p-12 +3441=-0x1.0b1e1eb4853b2p-22 +3443=-0x1.4d845bbdcba21p-5 +3445=-0x1.3b66eeacf8d6bp-6 +3446=0x1.154fdc013754fp-4 +3447=-0x1.a2fef5b545228p-9 +3451=0x1.ec08e37d19246p-5 +3467=0x1.09f163d02c26cp-7 +3469=-0x1.729cef1e231a3p-12 +3491=0x1.09f163d02c26cp-7 +3493=-0x1.729cef1e231a3p-12 +3505=0x1.0bcb78133bdafp-1 +3507=0x1.8c37d14376869p-3 +3515=0x1.951e46f31a2cp-3 +3517=0x1.3c31126c10005p-3 +3529=0x1.0badb61ab85a2p-2 +3531=0x1.2cd9645437a7bp-2 +3539=0x1.a1a2219c615ffp-3 +3541=-0x1.707a71ec1caaap-12 +3555=-0x1.00705abbfd2cfp-6 +3559=0x1.28773a7bb1655p-2 +3563=0x1.4a4763566045bp-7 +3565=-0x1.0254ac763f507p-12 +3567=-0x1.7285fb26bed62p-2 +3603=0x1.ff0b1ae544871p-17 +3611=0x1.01d0984a48fcfp-6 +3627=0x1.0f4b481de6768p-4 +3629=0x1.3cb01d4bb1a4ep+0 +3635=0x1.2d3565545b16p-6 +3637=0x1.655142d9e641ep-3 +3644=-0x1.901e664ea1a28p-15 +3654=0x1.6ed2a95600ae9p-2 +3657=-0x1.dbd91dce8d8c8p-2 +3659=-0x1.2bba3f02f9cf8p-3 +3661=-0x1.08e14bd570603p-18 +3662=0x1.2077ca9eadf97p-3 +3669=0x1.5e94d9e25591fp-6 +3670=-0x1.12577834f8b72p-3 +3673=0x1.829c102124dbep+0 +3679=0x1.88972b3ef819dp+0 +3699=-0x1.be57e5f399279p-13 +3703=-0x1.f8b9c2f81b84p-5 +3707=-0x1.70caf4a0397cfp-10 +3709=-0x1.f6e66a3214d58p-16 +3710=0x1.efd089900ac16p-1 +3718=-0x1.ba81a46a320f6p-2 +3744=-0x1.dfd976be35933p-3 +3746=-0x1.fad4d7d5d9f8ep-4 +3747=0x1.fa3c56a6ffa8ap-17 +3755=0x1.4f3868d138a33p-8 +3757=0x1.5b86c36f74017p-5 +3760=-0x1.a5443a1dec59cp-2 +4273=0x1.5acd0386303bap+1 +4418=0x1.9f64fa2465eb6p-2 +4419=-0x1.0165f9601f6b2p-4 +4425=-0x1.f51ada16c2a28p-18 +4427=-0x1.1051151b96ed1p-7 +4429=-0x1.4492dcab1194ap-11 +4431=0x1.d11a3e8e7ed7fp-7 +4443=-0x1.b4f64c7f04666p-15 +4449=0x1.66a65dc01bca9p-2 +4451=0x1.419341bc642e2p-4 +4453=0x1.836761fd89385p-3 +4456=0x1.efc7e6cd8f269p-8 +4461=0x1.17e4fcb373a81p-5 +4462=-0x1.481f69c4a5bbp-1 +4467=-0x1.67e1f8a7395f6p-5 +4475=0x1.8ec6da55afcc4p-6 +4477=-0x1.6643d5da1f028p-12 +4491=-0x1.67e1f8a7395f6p-5 +4499=0x1.8ec6da55afcc4p-6 +4501=-0x1.6643d5da1f028p-12 +4515=-0x1.e0857846b93e1p-6 +4518=0x1.b2bafd4304c01p-1 +4525=-0x1.3a2173666afb2p-19 +4530=0x1.f046b23b16e3ap-1 +4537=0x1.07bf033358ba2p-1 +4539=-0x1.156c2486cf55ap-5 +4561=0x1.4ef93a25b5ca7p-2 +4586=0x1.561636e2ba56bp-2 +4599=-0x1.560820c14a32dp-3 +4615=0x1.ea657cd168956p-1 +4634=0x1.561636e2ba56bp-2 +4647=-0x1.560820c14a32dp-3 +4659=0x1.9c31d370bdc96p-5 +4667=0x1.217f8af5f206ap-6 +4706=0x1.a22416e900c45p+0 +4754=0x1.5a13e0953a8ccp-1 +5042=0x1.5a13e0953a8ccp-1 +5354=0x1.05cbf0e4d8098p-1 +5363=0x1.31bbe8dcb9fcep-3 +5374=-0x1.44ade5bff98c4p-8 +5383=0x1.4591ee8c9ce4dp+0 +5392=0x1.e34734887191ap-1 +5411=0x1.e101ed8a9565ap-8 +5415=-0x1.45cd12510b44cp-1 +5426=0x1.873da24e6eb27p+0 +5432=0x1.cb33cce454661p+0 +5439=0x1.8d07f1c2b9ea4p-1 +5450=0x1.bc0be46a7f7b3p-2 +5451=0x1.775d8e210d50ap-3 +5469=0x1.61ca95bc71423p-3 +5474=0x1.bc0be46a7f7b3p-2 +5475=0x1.775d8e210d50ap-3 +5493=0x1.61ca95bc71423p-3 +5498=0x1.418a7dc14126cp+1 +5499=0x1.62a3838aa56b7p-3 +5520=0x1.9b6222d98407bp-3 +5544=0x1.975642b39fc46p-3 +5592=0x1.98889225eb83bp-3 +5616=0x1.941419e202aa2p-3 +5640=0x1.7a42006671099p-3 +5664=0x1.941419e202aa2p-3 +5688=0x1.6e147a6f96581p-3 +5736=0x1.941419e202aa2p-3 +5760=0x1.941419e202aa2p-3 +5784=0x1.941419e202aa2p-3 +5832=0x1.941419e202aa2p-3 +5880=0x1.98889225eb83bp-3 +5904=0x1.941419e202aa2p-3 +5928=0x1.7a42006671099p-3 +5952=0x1.941419e202aa2p-3 +6000=0x1.941419e202aa2p-3 +6024=0x1.941419e202aa2p-3 +6120=0x1.941419e202aa2p-3 +6146=0x1.1c4f1f1421c6cp-2 +6147=-0x1.8adf809ba2a6p-13 +6155=-0x1.3e2ea8ae160e1p-5 +6157=-0x1.5261036eb5d65p-3 +6171=-0x1.4722f01966633p-3 +6175=0x1.5c543895a03cep-1 +6184=0x1.12ce60bc3f685p+0 +6194=0x1.0f4eda2760dd1p-16 +6203=-0x1.82b0e4af131bep-3 +6205=-0x1.bffa15ec681e5p-20 +6208=0x1.d5bc40d35f2f2p-4 +6213=0x1.b178ee4db3481p-8 +7098=0x1.2bd931efca805p-1 +8003=-0x1.229cc5be49f23p-6 +8091=-0x1.403aba8275381p-2 +8101=-0x1.35a362be63b83p-13 +8197=-0x1.bfe7f516a85d1p-23 +8331=0x1.8668e2c58fc3cp-23 +8619=0x1.52cd0091b8f4fp-1 +8763=0x1.95875e8260984p-2 +8773=0x1.d52dd037864f1p-5 +8775=0x1.bf0c63fecec72p-1 +8786=-0x1.42bfd0c11e025p-4 +8787=0x1.20485485bee05p+0 +8798=0x1.9de0d24679f9p-4 +8811=0x1.d2bc5ebb9c66p-5 +8823=0x1.403f70a5ed8f4p-2 +8831=-0x1.59128b3d700d4p-1 +8885=0x1.3b74235c6397ap-3 +8891=-0x1.b979a06175a19p-4 +8930=0x1.1660fcc0ad75p-3 +8954=0x1.dbd4e88af48f7p-2 +8978=0x1.7bf39835db701p-4 +9074=0x1.36b788b0978adp-3 +9098=0x1.36b788b0978adp-3 +9266=0x1.7bf39835db701p-4 +9362=0x1.36b788b0978adp-3 +9386=-0x1.05ccb643401ep+0 +9398=0x1.51dd73c4d1301p-1 +9399=-0x1.1bfec6b1f1c8ap-2 +9411=0x1.3f14e5941ea39p-3 +9483=-0x1.768e061642c12p-8 +9484=0x1.3fc56d10059eap+1 +9489=-0x1.36e72c0e156f3p-21 +9578=0x1.3c9450aee2945p-1 +9579=-0x1.4eb2e629cd63dp+0 +9580=0x1.d004c2643cdacp-1 +9582=0x1.1b349557facb9p-1 +9587=-0x1.de3d277fc6041p-4 +9589=-0x1.4b8faffcb962dp-3 +9591=0x1.a1be4f3af592dp-4 +9596=0x1.178bcd63bef34p-3 +9598=0x1.3da18d0a24d9p+1 +9601=-0x1.cf245e07f903p-4 +9603=-0x1.533a140375eb1p-3 +9611=-0x1.d97ff43da3065p-4 +9612=0x1.11f7b4e3d0e9dp-3 +9613=-0x1.e977e925d8fcep-1 +9635=-0x1.8432cd633caa9p-2 +9643=0x1.1782b209e7459p-6 +9644=0x1.6091a078f57f3p-1 +9646=0x1.540c8d207799cp-3 +9651=-0x1.f9af64aaa79a1p-3 +9663=0x1.d178d5e8d5e39p-3 +9674=0x1.bf20e539ceef5p-6 +9675=-0x1.6980289c61399p-3 +9699=0x1.8b1b3a020540cp-2 +9723=0x1.3ae95bf74c7d6p-1 +10155=-0x1.277b118baf4fbp-2 +10351=-0x1.4c6812a2a6b6dp-4 +10363=0x1.c9d5c0c1ec613p-2 +10368=0x1.a97e9988fce7ep-2 +10371=0x1.6dd94d8a31dbfp-7 +10373=-0x1.bf0a47888cf98p-2 +10381=-0x1.f64a2e212975ap-8 +10394=0x1.3a41e209b1155p-2 +10395=-0x1.9b629772ddf2cp-6 +10405=-0x1.dd86eae65f673p-7 +10406=0x1.941e29ccbc269p-23 +10412=0x1.df7af29872f74p+0 +10755=0x1.007c7df336e2ap-1 +10875=0x1.5c80953a589afp-2 +10971=0x1.c5d94407350a1p-3 +11196=0x1.2dd4cfdd5e37p-21 +11244=0x1.ed423b54d0be6p-5 +11484=0x1.2dd4cfdd5e37p-21 +11523=0x1.e63f103c433d7p-3 +11619=0x1.83e35b4042663p-2 +11691=-0x1.f92b2d27e8187p-6 +11748=0x1.67eda91e05c6fp+0 +11931=0x1.735286dc40a2bp-6 +12387=0x1.bc7305340608bp-2 +12399=-0x1.878a47865c76ep-19 +12403=0x1.78d6ffa7b95d4p-1 +12411=-0x1.c6493d211e3afp-2 +12435=-0x1.a9a7d15c1e5a3p-2 +12640=0x1.112383d06629p-2 +13083=0x1.a9850f4f30286p-5 +13093=-0x1.866ece73cb849p-2 +13299=0x1.33bc1b48e7dd7p-5 +13323=0x1.0c9f4eedc4cb9p-2 +13587=0x1.33bc1b48e7dd7p-5 +13850=0x1.4153d86c9c3f7p+1 +13851=-0x1.2fc7c7843808ap+0 +13898=0x1.11db44f40546ep-4 +14186=0x1.11db44f40546ep-4 +14283=-0x1.1fe19b08193d5p-3 +14627=0x1.521c759fff101p-9 +14631=-0x1.3710315cae08fp-6 +14632=0x1.80d1cdeadf73fp-3 +14843=0x1.db769279eda82p-9 +14845=0x1.974ee9bde1edap-8 +14846=0x1.c34119043a0dp-3 +14915=0x1.521c759fff101p-9 +14919=-0x1.3710315cae08fp-6 +14920=0x1.80d1cdeadf73fp-3 +14987=0x1.521c759fff101p-9 +14991=-0x1.3710315cae08fp-6 +14992=0x1.80d1cdeadf73fp-3 +15011=0x1.521c759fff101p-9 +15015=-0x1.3710315cae08fp-6 +15016=0x1.80d1cdeadf73fp-3 +15035=0x1.521c759fff101p-9 +15039=-0x1.3710315cae08fp-6 +15040=0x1.80d1cdeadf73fp-3 +15059=0x1.521c759fff101p-9 +15063=-0x1.3710315cae08fp-6 +15064=0x1.80d1cdeadf73fp-3 +15083=0x1.521c759fff101p-9 +15087=-0x1.3710315cae08fp-6 +15088=0x1.80d1cdeadf73fp-3 +15107=0x1.521c759fff101p-9 +15111=-0x1.3710315cae08fp-6 +15112=0x1.80d1cdeadf73fp-3 +15131=0x1.521c759fff101p-9 +15135=-0x1.3710315cae08fp-6 +15136=0x1.80d1cdeadf73fp-3 +15155=0x1.521c759fff101p-9 +15159=-0x1.3710315cae08fp-6 +15160=0x1.80d1cdeadf73fp-3 +15179=0x1.bfea864eb54bbp-6 +15181=0x1.974a2fe0a189ap-6 +15203=0x1.521c759fff101p-9 +15207=-0x1.3710315cae08fp-6 +15208=0x1.80d1cdeadf73fp-3 +15290=0x1.74e3dbf6ac87ap-2 +15302=0x1.7a31acabe66fbp-7 +15304=0x1.46c4722d522dfp-6 +15578=0x1.74e3dbf6ac87ap-2 +15590=0x1.7a31acabe66fbp-7 +15592=0x1.46c4722d522dfp-6 +15746=0x1.15a8982eabc65p-1 +15842=0x1.aba1999464c58p-2 +15843=-0x1.dcfb5fc6d4fefp-14 +15866=0x1.74e3dbf6ac87ap-2 +15878=0x1.7a31acabe66fbp-7 +15880=0x1.46c4722d522dfp-6 +15940=0x1.22fc24a53c594p-2 +16059=-0x1.4cda2a063af8cp-2 +16071=0x1.a3c151d676c16p-4 +16228=0x1.22fc24a53c594p-2 +16517=0x1.2531e1d1e723ep-1 +16528=0x1.69a50d6a3086bp-1 +16533=0x1.7a14aeaa430c2p-2 +16647=0x1.6f1e17d98a4cp-3 +16935=0x1.6f1e17d98a4cp-3 +17139=0x1.73963a506c954p-5 +17141=0x1.3564de1358a0fp-4 +17151=-0x1.8b160aa4f650dp-7 +17152=-0x1.21f24c7c8ca0ep+0 +17157=0x1.fd944e7db9022p-2 +17189=0x1.a5fd0ca4ba043p-5 +17237=0x1.3e0ffbeadbe33p-6 +17258=0x1.3993e2a04339cp-2 +17343=0x1.c68c45e298bd3p-3 +17357=0x1.cc05acbd8ec15p-5 +17381=0x1.cc05acbd8ec15p-5 +17429=0x1.cc05acbd8ec15p-5 +17453=0x1.3e0ffbeadbe33p-6 +17477=0x1.5dcfaa64ba659p-5 +17525=0x1.3e0ffbeadbe33p-6 +17546=0x1.3993e2a04339cp-2 +17594=-0x1.c2bf82edc95eap-2 +17645=0x1.107826c5546afp-14 +17669=0x1.55a7a272d207fp-12 +17701=0x1.2bfc551d19d9fp-4 +17810=0x1.d62046c242e0bp-4 +17858=0x1.cf61a3c3d2edcp-4 +17955=0x1.a2af46fd325a5p-4 +18002=0x1.0581a4391cb76p-3 +18074=0x1.0581a4391cb76p-3 +18146=0x1.cf61a3c3d2edcp-4 +18438=0x1.6571cce28dca1p+0 +18486=0x1.65698dcbffa7dp+0 +18576=0x1.d87704f317ep-2 +18589=0x1.22d5fb1adf2e2p-5 +18702=0x1.664efa087bf72p+0 +18750=0x1.65698dcbffa7dp+0 +18840=0x1.d87704f317ep-2 +18853=0x1.22d5fb1adf2e2p-5 +18963=0x1.7f784d1237802p-4 +19058=0x1.88c7a49cb40e8p-2 +19082=0x1.6df6ff55baf9bp-1 +19179=-0x1.39017c1072e99p-2 +19190=0x1.0839ff0356a31p-1 +19443=-0x1.39017c1072e99p-2 +19454=0x1.0839ff0356a31p-1 +19490=0x1.4d8f513921a1bp-2 +19587=0x1.584cf7e1a2fb8p-2 +19683=-0x1.39017c1072e99p-2 +19694=0x1.0839ff0356a31p-1 +19815=0x1.f6ce733315083p-4 +19983=0x1.f6ce733315083p-4 +20055=0x1.f6ce733315083p-4 +20103=0x1.f6ce733315083p-4 +20127=0x1.f6ce733315083p-4 +20151=0x1.f6ce733315083p-4 +20175=0x1.f6ce733315083p-4 +20199=0x1.f6ce733315083p-4 +20223=0x1.f6ce733315083p-4 +20247=0x1.f6ce733315083p-4 +20271=0x1.f6ce733315083p-4 +20295=0x1.f6ce733315083p-4 +20307=0x1.2b0029540b0ccp-3 +20391=0x1.74e6bd98b3cf5p-2 +20631=0x1.74e6bd98b3cf5p-2 +20847=0x1.74e6bd98b3cf5p-2 +20907=0x1.51be749324e8cp-4 +20912=0x1.410fb0175a23bp-1 +21123=0x1.51be749324e8cp-4 +21128=0x1.410fb0175a23bp-1 +21688=0x1.79a086daf8c1ep-6 +22395=0x1.308f7ac63e56dp-3 +23433=0x1.64c5d99660ec7p-3 +23738=-0x1.dccae191e9a52p-4 +23739=0x1.54d7e083361fcp+0 +23886=0x1.00a2e56739e6ep-4 +23910=0x1.00a2e56739e6ep-4 +23934=0x1.2a8553f1b6831p+1 +23941=-0x1.2ae492048587dp-6 +23958=0x1.00a2e56739e6ep-4 +24006=0x1.00a2e56739e6ep-4 +24030=0x1.00a2e56739e6ep-4 +24078=0x1.00a2e56739e6ep-4 +24126=0x1.00a2e56739e6ep-4 +24150=0x1.00a2e56739e6ep-4 +24174=0x1.5d930c812e69ep-5 +24198=0x1.5d930c812e69ep-5 +24222=0x1.00a2e56739e6ep-4 +24246=0x1.0c742ac507d8cp-5 +24270=0x1.00a2e56739e6ep-4 +24294=0x1.00a2e56739e6ep-4 +24318=0x1.00a2e56739e6ep-4 +24447=0x1.9d85a5ced6751p-2 +24687=0x1.9d85a5ced6751p-2 +24711=0x1.9d85a5ced6751p-2 +25347=0x1.0b562b4cc408p-6 +25587=0x1.0b562b4cc408p-6 +25659=0x1.0b562b4cc408p-6 +25683=0x1.0b562b4cc408p-6 +25707=0x1.0b562b4cc408p-6 +25731=0x1.0b562b4cc408p-6 +25755=0x1.0b562b4cc408p-6 +25779=0x1.0b562b4cc408p-6 +25803=0x1.0b562b4cc408p-6 +25827=0x1.0b562b4cc408p-6 +25851=0x1.0b562b4cc408p-6 +25875=0x1.0b562b4cc408p-6 +25951=0x1.a7a541a1fa12fp-2 +26215=0x1.a7a541a1fa12fp-2 +26292=0x1.a640d0d85129dp-3 +26479=0x1.a7a541a1fa12fp-2 +26503=0x1.a7a541a1fa12fp-2 +26546=0x1.42d0e8ee5a806p-4 +26547=-0x1.b0725042e87cap-4 +26810=0x1.42d0e8ee5a806p-4 +26811=-0x1.b0725042e87cap-4 +26906=0x1.0ecc6a03dd822p+0 +26907=-0x1.aa0f6377d5865p-2 +27074=0x1.42d0e8ee5a806p-4 +27075=-0x1.b0725042e87cap-4 +27135=0x1.5e18a846688dap+0 +27280=0x1.7b027be60b221p+1 +27650=-0x1.b07b0b12c48b6p-1 +27795=0x1.2271ef890a083p+0 +28163=0x1.345cd1b9c4712p-6 +28427=0x1.345cd1b9c4712p-6 +28707=-0x1.f9cc43dddd8e7p-3 +28719=0x1.3700285368f1ep-3 +28971=-0x1.f9cc43dddd8e7p-3 +28983=0x1.3700285368f1ep-3 +29031=0x1.31b962732e983p-1 +29835=0x1.eacd8f15d3ed3p-2 +29928=0x1.14e1ca83a77d6p-1 +30123=0x1.eacd8f15d3ed3p-2 +30866=0x1.90c2172e0a30dp-16 +30939=0x1.659edf9d9c238p+1 +30987=-0x1.3856768430b1ep-3 +30999=-0x1.3e87ed0fce358p-19 +31560=0x1.d08e1dc836049p-3 +32139=-0x1.71fb7619d5bb9p-2 +32148=0x1.bdd29b12f886ep-2 +32379=-0x1.71fb7619d5bb9p-2 +32388=0x1.bdd29b12f886ep-2 +33931=0x1.2072da45b46b4p+0 +35555=0x1.1a82e1ceea129p-1 +37234=0x1.8da735ee6aaacp-1 +37330=0x1.8da735ee6aaacp-1 +37402=0x1.8da735ee6aaacp-1 +37450=0x1.8da735ee6aaacp-1 +37474=0x1.8da735ee6aaacp-1 +37498=0x1.8da735ee6aaacp-1 +37522=0x1.d06ab8988b533p-2 +37523=-0x1.23c0879bfa7dap-4 +37546=0x1.7269f06ea1c15p-1 +37570=0x1.8da735ee6aaacp-1 +39123=0x1.9380797bf6e13p-1 +40837=0x1.5abdf7325eb8ep-3 +40861=0x1.e537e073a51fp-5 +40986=0x1.810f3c4b955d4p-2 +44485=0x1.2d5c6e0a4a3fp-4 +46379=0x1.2ba60c2788e72p-2 +47163=-0x1.1f93484d97445p-2 +47403=-0x1.1f93484d97445p-2 +47643=0x1.a2428e4eb16d1p-4 +48013=0x1.e1f1866b7567ep-2 +48253=0x1.e1f1866b7567ep-2 +60594=0x1.3947e1642998ep+0 +62515=0x1.9857b4eee25d1p+0 +62810=0x1.077eed16a2328p-7 +62834=0x1.dbcb5f8d1b042p-3 +62858=0x1.31432adc236a2p-2 +62906=0x1.353ca8b60bf39p-2 +62930=0x1.353ca8b60bf39p-2 +62954=0x1.de70b1efe794bp-12 +62978=0x1.7a4a671e47362p-4 +63002=0x1.083ea41dfc40ep-1 +63026=0x1.7b5db38230019p-1 +63050=0x1.94bd5e083d269p-2 +63074=0x1.80e015bf45c7ap-1 +63098=0x1.80e015bf45c7ap-1 +63146=0x1.083ea41dfc40ep-1 +68835=-0x1.2e28f51208475p-4 +68848=0x1.21c1518e62da5p-2 +73643=0x1.370a1d51ad379p-2 +73667=0x1.370a1d51ad379p-2 +73691=0x1.d3549f1a9907dp-1 +73715=0x1.370a1d51ad379p-2 +73778=0x1.e4e7bdd6b5b1p-3 +73802=0x1.e4e7bdd6b5b1p-3 +73850=0x1.e4e7bdd6b5b1p-3 +73874=0x1.e4e7bdd6b5b1p-3 +73898=0x1.e4e7bdd6b5b1p-3 +73922=0x1.4ad5268b18f83p-4 +73994=0x1.e044174dda7d7p-3 +74018=0x1.26412f48241ebp-4 +74042=0x1.4ad5268b18f83p-4 +74066=0x1.4ad5268b18f83p-4 +84627=0x1.7b8b72897659fp-4 +85277=0x1.235b3eb11fe38p-16 +90962=-0x1.d841e194e515ep-13 +91130=-0x1.5451b5bec7a52p-12 +91131=0x1.84ccf8f5efe87p-2 +91515=0x1.d4cc53523b2eap-2 +91818=0x1.49909eb5076cep-1 +92155=0x1.4ebb1f37740bdp-3 +92251=0x1.4ebb1f37740bdp-3 +92299=0x1.2d6a3539ceef1p-3 +92323=0x1.4ebb1f37740bdp-3 +92347=0x1.4ebb1f37740bdp-3 +93075=-0x1.97f7902792a59p-1 +94179=0x1.c3a5f7b08abep-2 +107355=0x1.e2c0cab409d38p-2 +109347=0x1.6c10915e33698p-17 +109563=0x1.6c10915e33698p-17 +109971=0x1.b2c3f34af485ap-3 +113043=0x1.0c900d3013e3dp-3 +113067=-0x1.2a3d356b5a808p-1 +113114=0x1.375f1f9f5a20ep-3 +113138=0x1.375f1f9f5a20ep-3 +113186=0x1.375f1f9f5a20ep-3 +113258=0x1.375f1f9f5a20ep-3 +117194=-0x1.8949da1f6cc1cp-3 +117627=0x1.a8f399235284p+0 +118452=0x1.149a0698d829bp-2 +118476=0x1.149a0698d829bp-2 +118500=0x1.149a0698d829bp-2 +118524=0x1.149a0698d829bp-2 +118548=0x1.149a0698d829bp-2 +118572=0x1.149a0698d829bp-2 +118620=0x1.149a0698d829bp-2 +118645=0x1.564af513130e6p-2 +118717=0x1.896554592f936p-3 +120781=0x1.2f8341dfa73bdp-1 +134916=0x1.b5a40d861585ep-22 +135084=0x1.b5a40d861585ep-22 +139886=0x1.bd63e0b1c6738p+1 +139935=0x1.80bc9131d2237p+1 +140007=0x1.17a298880dcdp+1 +140091=0x1.191db842be82ap-3 +140115=0x1.191db842be82ap-3 +140139=0x1.191db842be82ap-3 +141135=0x1.b5a50f9d263a6p-4 +141255=0x1.b5a50f9d263a6p-4 +141327=0x1.b5a50f9d263a6p-4 +141506=0x1.154b98a32f25cp-3 +141602=0x1.154b98a32f25cp-3 +141674=0x1.154b98a32f25cp-3 +141722=0x1.154b98a32f25cp-3 +141770=0x1.b28731f14b8f7p-5 +141794=0x1.154b98a32f25cp-3 +141818=0x1.154b98a32f25cp-3 +141842=0x1.25cfe97cb6d3ep-3 +141866=0x1.154b98a32f25cp-3 +142707=0x1.c81063d8dfe06p-2 +144473=0x1.b895c0bf1c171p+2 +144593=0x1.54f3e5cf94e33p-2 +144617=0x1.60b936c146e29p-2 +144880=0x1.786d5c4f4a715p-1 +145744=0x1.5a34ebe8f70ebp+0 +147459=0x1.5fafe2fee9b22p-1 +165952=0x1.1ca25e96a4377p-3 +174650=0x1.d72af264af489p+1 +192004=0x1.8770eb729cab2p-2 +192100=0x1.8770eb729cab2p-2 +192171=-0x1.a1888ab86efd1p-2 +192172=0x1.498d23b298e0ap-2 +192245=0x1.faf1d81b5049cp-2 +192317=0x1.faf1d81b5049cp-2 +192411=-0x1.d609f0b8a708fp-3 +192413=0x1.6abedf2e62c36p-3 +192461=0x1.ab0279eca0132p-2 +192533=0x1.ab0279eca0132p-2 +192605=0x1.ab0279eca0132p-2 +192629=0x1.95f388682321p-3 +192677=0x1.2c20bacdeb5cep-15 +192701=0x1.c207fac1a9c2p-6 +192725=0x1.c207fac1a9c2p-6 +192749=0x1.95f388682321p-3 +192773=0x1.95f388682321p-3 +192797=0x1.95f388682321p-3 +192842=0x1.b87be03e92fd6p-1 +193010=0x1.b87be03e92fd6p-1 +193058=0x1.cebca499d19fbp-2 +193803=0x1.438035b9b674ep+0 +195819=-0x1.1d8acdabb8932p-3 +196202=0x1.3a5e2c2955781p-1 +196203=-0x1.33fe88d6d29dep-2 +196850=0x1.f63b48cd1dccp-1 +196851=-0x1.b3b9f1f585e23p-3 +198171=0x1.80e48357087dfp+0 +198555=0x1.643c251401472p-8 +198651=0x1.643c251401472p-8 +198747=0x1.643c251401472p-8 +198795=0x1.643c251401472p-8 +198843=0x1.643c251401472p-8 +198867=0x1.643c251401472p-8 +198915=0x1.643c251401472p-8 +198939=0x1.643c251401472p-8 +199394=-0x1.97b0ec4c4e4dcp-1 +199395=0x1.90938b2c5d06dp-4 +199419=-0x1.289a8dec9fcfcp-2 +199659=-0x1.289a8dec9fcfcp-2 +204057=0x1.01dfe2c935185p-2 +204153=0x1.140fdcf429a66p+0 +259803=0x1.0cf426521e5bbp-3 +259875=0x1.0cf426521e5bbp-3 +259947=0x1.a88a4d72a5847p+0 +333170=0x1.87e5d7dd1b71p-6 +333171=-0x1.3544e9b35af18p-21 +333194=0x1.2b5426120c717p-5 +333242=0x1.2b5426120c717p-5 +333314=0x1.87e5d7dd1b71p-6 +333315=-0x1.3544e9b35af18p-21 +403874=0x1.dd903ce623d7dp-6 +403883=-0x1.6062cfac59919p-7 +403887=0x1.2ce70b4c69cc7p-7 +403898=0x1.7bafd6ed27944p-4 +403907=-0x1.c156ebe1073a4p-7 +403911=0x1.e0a506d660e74p-6 +404147=-0x1.4fd3d3e790936p-7 +404151=0x1.dd48aab0f3ab8p-6 +410484=0x1.74ea2ec56be6p-24 +410628=0x1.74ea2ec56be6p-24 +410676=0x1.74ea2ec56be6p-24 +410700=0x1.74ea2ec56be6p-24 +410724=0x1.74ea2ec56be6p-24 +411036=0x1.188bf8778211fp-20 +411204=0x1.188bf8778211fp-20 +415596=0x1.3a21b24c6d11ap-20 +415740=0x1.3a21b24c6d11ap-20 +426002=0x1.109b55c4eb66bp+0 +426204=0x1.7c5f86cff5374p-8 +426228=0x1.7c5f86cff5374p-8 +426252=0x1.7c5f86cff5374p-8 +426276=0x1.7c5f86cff5374p-8 diff --git a/grobid-home/models/segmentation/sdo/ietf/model.wapiti b/grobid-home/models/segmentation/sdo/ietf/model.wapiti new file mode 100644 index 0000000000..41470f0d27 --- /dev/null +++ b/grobid-home/models/segmentation/sdo/ietf/model.wapiti @@ -0,0 +1,215149 @@ +#mdl#2#995 +#rdr#111/32/0 +12:u00:%x[-4,0], +12:u01:%x[-3,0], +12:u02:%x[-2,0], +12:u03:%x[-1,0], +11:u04:%x[0,0], +11:u05:%x[1,0], +11:u06:%x[2,0], +11:u07:%x[3,0], +11:u08:%x[4,0], +11:u08:%x[5,0], +12:u00:%x[-4,1], +12:u01:%x[-3,1], +12:u02:%x[-2,1], +12:u03:%x[-1,1], +11:u04:%x[0,1], +11:u05:%x[1,1], +11:u06:%x[2,1], +11:u07:%x[3,1], +11:u08:%x[4,1], +12:u10:%x[-2,2], +12:u11:%x[-1,2], +11:u12:%x[0,2], +11:u13:%x[1,2], +11:u14:%x[2,2], +11:u20:%x[0,3], +11:u21:%x[0,4], +11:u22:%x[0,5], +11:u23:%x[0,6], +12:u40:%x[-1,7], +11:u41:%x[0,7], +11:u42:%x[1,7], +12:u60:%x[-1,8], +11:u61:%x[0,8], +11:u62:%x[1,8], +12:u70:%x[-1,9], +11:u71:%x[0,9], +11:u72:%x[1,9], +13:u80:%x[-1,10], +12:u81:%x[0,10], +12:u82:%x[1,10], +13:u90:%x[-1,11], +12:u91:%x[0,11], +12:u92:%x[1,11], +13:uA0:%x[-1,12], +12:uA1:%x[0,12], +12:uA2:%x[1,12], +12:uB0:%x[0,13], +12:uB1:%x[1,13], +13:uB2:%x[-1,13], +12:uC0:%x[0,14], +13:uC1:%x[-1,14], +12:uC2:%x[1,14], +12:uD0:%x[0,15], +13:uD1:%x[-1,15], +12:uD2:%x[1,15], +12:uE0:%x[0,16], +12:uE1:%x[0,17], +12:uE2:%x[0,18], +12:uE3:%x[0,19], +12:uE4:%x[0,20], +12:uE5:%x[0,21], +12:uE6:%x[0,22], +12:uEI:%x[1,16], +12:uEJ:%x[1,17], +12:uEK:%x[1,18], +12:uEL:%x[1,19], +12:uEM:%x[1,20], +12:uEN:%x[1,21], +12:uEO:%x[1,22], +13:uG0:%x[-1,23], +12:uG1:%x[0,23], +12:uG2:%x[1,23], +13:uH0:%x[-1,24], +12:uH1:%x[0,24], +12:uH2:%x[1,24], +13:uI0:%x[-1,25], +12:uI1:%x[0,25], +12:uI2:%x[1,25], +13:uI0:%x[-1,26], +12:uI1:%x[0,26], +12:uI2:%x[1,26], +13:uI0:%x[-1,27], +12:uI1:%x[0,27], +12:uI2:%x[1,27], +13:uG0:%x[-2,28], +13:uG1:%x[-1,28], +12:uG2:%x[0,28], +12:uG3:%x[1,28], +12:uG4:%x[2,28], +12:uG5:%x[3,28], +13:uG0:%x[-2,29], +13:uG1:%x[-1,29], +12:uG2:%x[0,29], +12:uG3:%x[1,29], +12:uG4:%x[2,29], +12:uG5:%x[3,29], +13:uH0:%x[-2,30], +13:uH1:%x[-1,30], +12:uH2:%x[0,30], +12:uH3:%x[1,30], +12:uH4:%x[2,30], +12:uH5:%x[3,30], +13:uI1:%x[-1,31], +12:uI2:%x[0,31], +12:uI3:%x[1,31], +13:uJ1:%x[-2,32], +13:uJ1:%x[-1,32], +12:uJ2:%x[0,32], +12:uJ3:%x[1,32], +12:uJ3:%x[1,32], +1:b, +#qrk#18 +10:I-<header>, +8:<header>, +7:I-<toc>, +5:<toc>, +12:I-<footnote>, +10:<footnote>, +8:I-<page>, +12:I-<headnote>, +10:<headnote>, +8:I-<body>, +6:<body>, +19:I-<acknowledgement>, +17:<acknowledgement>, +14:I-<references>, +12:<references>, +7:<other>, +9:I-<annex>, +7:<annex>, +#qrk#214021 +8:u00:_x-4, +8:u01:_x-3, +8:u02:_x-2, +8:u03:_x-1, +11:u04:BFCPbis, +6:u05:G., +18:u06:Internet-Draft, +12:u07:Ericsson, +14:u08:Obsoletes:, +6:u08:T., +11:u04:Working, +13:u05:Camarillo, +8:u08:4583, +8:u10:_x-2, +8:u11:_x-1, +11:u12:bfcpbis, +6:u13:g., +18:u14:internet-draft, +5:u20:B, +6:u21:BF, +7:u22:BFC, +8:u23:BFCP, +8:u40:_x-1, +14:u41:BLOCKSTART, +14:u42:BLOCKSTART, +8:u60:_x-1, +13:u61:PAGESTART, +10:u62:PAGEIN, +8:u70:_x-1, +11:u71:NEWFONT, +12:u72:SAMEFONT, +8:u80:_x-1, +14:u81:HIGHERFONT, +16:u82:SAMEFONTSIZE, +8:u90:_x-1, +5:u91:0, +5:u92:0, +8:uA0:_x-1, +5:uA1:0, +5:uA2:0, +11:uB0:INITCAP, +10:uB1:ALLCAP, +8:uB2:_x-1, +11:uC0:NODIGIT, +8:uC1:_x-1, +11:uC2:NODIGIT, +5:uD0:0, +8:uD1:_x-1, +5:uD2:0, +5:uE0:0, +5:uE1:0, +5:uE2:0, +5:uE3:0, +5:uE4:0, +5:uE5:0, +5:uE6:0, +5:uEI:0, +5:uEJ:0, +5:uEK:0, +5:uEL:0, +5:uEM:0, +5:uEN:0, +5:uEO:0, +8:uG0:_x-1, +5:uG1:0, +5:uG2:0, +8:uH0:_x-1, +5:uH1:0, +5:uH2:0, +8:uI0:_x-1, +6:uI1:no, +5:uI2:., +5:uI1:0, +5:uI2:1, +6:uI1:10, +5:uI2:3, +8:uG0:_x-2, +8:uG1:_x-1, +5:uG3:0, +5:uG4:0, +5:uG5:0, +8:uH0:_x-2, +8:uH1:_x-1, +5:uH3:0, +5:uH4:1, +5:uH5:0, +8:uI1:_x-1, +5:uI2:0, +5:uI3:0, +8:uJ1:_x-2, +8:uJ1:_x-1, +5:uJ2:1, +5:uJ3:1, +1:b, +8:u00:_x-3, +8:u01:_x-2, +8:u02:_x-1, +11:u03:BFCPbis, +6:u04:G., +18:u05:Internet-Draft, +12:u06:Ericsson, +14:u07:Obsoletes:, +12:u08:Intended, +11:u03:Working, +13:u04:Camarillo, +8:u07:4583, +14:u08:Kristensen, +8:u10:_x-1, +11:u11:bfcpbis, +6:u12:g., +18:u13:internet-draft, +12:u14:ericsson, +5:u20:G, +6:u21:G., +6:u22:G., +6:u23:G., +14:u40:BLOCKSTART, +11:u42:BLOCKIN, +13:u60:PAGESTART, +10:u61:PAGEIN, +11:u70:NEWFONT, +12:u71:SAMEFONT, +14:u80:HIGHERFONT, +16:u81:SAMEFONTSIZE, +5:u90:0, +5:uA0:0, +10:uB0:ALLCAP, +11:uB1:INITCAP, +11:uB2:INITCAP, +11:uC1:NODIGIT, +5:uD1:0, +5:uG0:0, +5:uH0:0, +6:uI0:no, +5:uI1:., +5:uI2:-, +5:uI0:0, +5:uI1:1, +6:uI0:10, +5:uI1:3, +5:uI2:4, +5:uH3:1, +5:uH4:0, +5:uI3:1, +5:uJ1:1, +8:u00:_x-2, +8:u01:_x-1, +11:u02:BFCPbis, +6:u03:G., +18:u04:Internet-Draft, +12:u05:Ericsson, +14:u06:Obsoletes:, +6:u07:T., +9:u08:Cisco, +11:u02:Working, +13:u03:Camarillo, +8:u06:4583, +14:u07:Kristensen, +11:u08:status:, +11:u10:bfcpbis, +6:u11:g., +18:u12:internet-draft, +12:u13:ericsson, +14:u14:obsoletes:, +5:u20:I, +6:u21:In, +7:u22:Int, +8:u23:Inte, +11:u41:BLOCKIN, +10:u60:PAGEIN, +12:u70:SAMEFONT, +16:u80:SAMEFONTSIZE, +10:uB2:ALLCAP, +5:uI0:., +5:uI1:-, +6:uI2:no, +5:uI0:1, +5:uI0:3, +5:uI1:4, +5:uI2:2, +5:uH2:1, +8:u00:_x-1, +11:u01:BFCPbis, +6:u02:G., +18:u03:Internet-Draft, +12:u04:Ericsson, +14:u05:Obsoletes:, +6:u06:T., +12:u07:Intended, +12:u08:Expires:, +11:u01:Working, +13:u02:Camarillo, +8:u05:4583, +14:u06:Kristensen, +11:u07:status:, +6:u10:g., +18:u11:internet-draft, +12:u12:ericsson, +14:u13:obsoletes:, +6:u14:t., +5:u20:E, +6:u21:Er, +7:u22:Eri, +8:u23:Eric, +11:u40:BLOCKIN, +5:uI0:-, +7:uI2::(), +5:uI0:4, +5:uI1:2, +5:uI2:9, +5:uH1:1, +11:u00:BFCPbis, +6:u01:G., +18:u02:Internet-Draft, +12:u03:Ericsson, +14:u04:Obsoletes:, +6:u05:T., +12:u06:Intended, +9:u07:Cisco, +6:u08:C., +11:u00:Working, +13:u01:Camarillo, +8:u04:4583, +14:u05:Kristensen, +11:u06:status:, +8:u08:June, +18:u10:internet-draft, +12:u11:ericsson, +14:u12:obsoletes:, +6:u13:t., +12:u14:intended, +5:u20:O, +6:u21:Ob, +7:u22:Obs, +8:u23:Obso, +7:uI1::(), +5:uI0:2, +5:uI1:9, +5:uH0:1, +6:u00:G., +18:u01:Internet-Draft, +12:u02:Ericsson, +14:u03:Obsoletes:, +6:u04:T., +12:u05:Intended, +9:u06:Cisco, +12:u07:Expires:, +12:u08:Ericsson, +13:u00:Camarillo, +8:u03:4583, +14:u04:Kristensen, +11:u05:status:, +8:u07:June, +12:u08:Holmberg, +12:u10:ericsson, +14:u11:obsoletes:, +6:u12:t., +12:u13:intended, +9:u14:cisco, +5:u20:T, +6:u21:T., +6:u22:T., +6:u23:T., +5:uEJ:1, +7:uI0::(), +5:uI2::, +5:uI0:9, +6:uI2:10, +18:u00:Internet-Draft, +12:u01:Ericsson, +14:u02:Obsoletes:, +6:u03:T., +12:u04:Intended, +9:u05:Cisco, +12:u06:Expires:, +6:u07:C., +12:u08:December, +8:u02:4583, +14:u03:Kristensen, +11:u04:status:, +8:u06:June, +12:u07:Holmberg, +14:u10:obsoletes:, +6:u11:t., +12:u12:intended, +9:u13:cisco, +12:u14:expires:, +5:uE1:1, +5:uEI:1, +5:uI1::, +12:u00:Ericsson, +14:u01:Obsoletes:, +6:u02:T., +12:u03:Intended, +9:u04:Cisco, +12:u05:Expires:, +6:u06:C., +11:u08:Session, +8:u01:4583, +14:u02:Kristensen, +11:u03:status:, +8:u05:June, +12:u06:Holmberg, +6:u08:8,, +6:u10:t., +12:u11:intended, +9:u12:cisco, +12:u13:expires:, +6:u14:c., +5:u20:C, +6:u21:Ci, +7:u22:Cis, +8:u23:Cisc, +5:uE0:1, +5:uI0::, +6:uI2::,, +5:uI2:6, +14:u00:Obsoletes:, +6:u01:T., +12:u02:Intended, +9:u03:Cisco, +12:u04:Expires:, +6:u05:C., +12:u07:December, +12:u08:Protocol, +8:u00:4583, +14:u01:Kristensen, +11:u02:status:, +8:u04:June, +12:u05:Holmberg, +6:u07:8,, +15:u08:Description, +12:u10:intended, +9:u11:cisco, +12:u12:expires:, +6:u13:c., +6:u21:Ex, +7:u22:Exp, +8:u23:Expi, +6:uI1::,, +5:uI1:6, +6:u00:T., +12:u01:Intended, +9:u02:Cisco, +12:u03:Expires:, +6:u04:C., +12:u06:December, +11:u07:Session, +36:u08:draft-ietf-bfcpbis-rfc4583bis-27, +14:u00:Kristensen, +11:u01:status:, +8:u03:June, +12:u04:Holmberg, +6:u06:8,, +15:u07:Description, +10:u08:(BFCP), +9:u10:cisco, +12:u11:expires:, +6:u12:c., +12:u14:december, +6:u21:C., +6:u22:C., +6:u23:C., +6:uI0::,, +5:uI0:6, +12:u00:Intended, +9:u01:Cisco, +12:u02:Expires:, +6:u03:C., +12:u05:December, +11:u06:Session, +12:u07:Protocol, +12:u08:Abstract, +11:u00:status:, +8:u02:June, +12:u03:Holmberg, +6:u05:8,, +15:u06:Description, +10:u07:(BFCP), +12:u10:expires:, +6:u11:c., +12:u13:december, +11:u14:session, +12:u42:BLOCKEND, +5:uEM:1, +5:uI2:,, +5:uI2:5, +9:u00:Cisco, +12:u01:Expires:, +6:u02:C., +12:u04:December, +11:u05:Session, +12:u06:Protocol, +36:u07:draft-ietf-bfcpbis-rfc4583bis-27, +8:u08:This, +8:u01:June, +12:u02:Holmberg, +6:u04:8,, +15:u05:Description, +10:u06:(BFCP), +6:u10:c., +12:u12:december, +11:u13:session, +12:u14:protocol, +5:u20:D, +6:u21:De, +7:u22:Dec, +8:u23:Dece, +12:u41:BLOCKEND, +5:uE4:1, +5:uI1:,, +6:uI2:(), +5:uI1:5, +12:u00:Expires:, +6:u01:C., +12:u03:December, +11:u04:Session, +12:u05:Protocol, +36:u06:draft-ietf-bfcpbis-rfc4583bis-27, +12:u07:Abstract, +10:u08:answer, +8:u00:June, +12:u01:Holmberg, +6:u03:8,, +15:u04:Description, +10:u05:(BFCP), +12:u08:document, +12:u11:december, +11:u12:session, +12:u13:protocol, +36:u14:draft-ietf-bfcpbis-rfc4583bis-27, +5:u20:S, +6:u21:Se, +7:u22:Ses, +8:u23:Sess, +12:u40:BLOCKEND, +5:uI0:,, +6:uI1:(), +5:uI0:5, +6:u00:C., +12:u02:December, +11:u03:Session, +12:u04:Protocol, +36:u05:draft-ietf-bfcpbis-rfc4583bis-27, +12:u06:Abstract, +8:u07:This, +11:u08:Control, +12:u00:Holmberg, +6:u02:8,, +15:u03:Description, +10:u04:(BFCP), +12:u07:document, +14:u08:procedures, +12:u10:december, +11:u11:session, +12:u12:protocol, +36:u13:draft-ietf-bfcpbis-rfc4583bis-27, +12:u14:abstract, +5:u20:P, +6:u21:Pr, +7:u22:Pro, +8:u23:Prot, +10:uB1:NOCAPS, +18:uC2:CONTAINSDIGITS, +6:uI0:(), +8:uI2:----, +12:u01:December, +11:u02:Session, +12:u03:Protocol, +36:u04:draft-ietf-bfcpbis-rfc4583bis-27, +12:u05:Abstract, +8:u06:This, +10:u07:answer, +6:u01:8,, +15:u02:Description, +10:u03:(BFCP), +12:u06:document, +14:u07:procedures, +11:u10:session, +12:u11:protocol, +36:u12:draft-ietf-bfcpbis-rfc4583bis-27, +12:u13:abstract, +8:u14:this, +5:u20:d, +6:u21:dr, +7:u22:dra, +8:u23:draf, +10:uB0:NOCAPS, +18:uC0:CONTAINSDIGITS, +5:uH2:2, +8:uI1:----, +12:u00:December, +11:u01:Session, +12:u02:Protocol, +36:u03:draft-ietf-bfcpbis-rfc4583bis-27, +12:u04:Abstract, +8:u05:This, +10:u06:answer, +11:u07:Control, +14:u08:summarized, +6:u00:8,, +15:u01:Description, +10:u02:(BFCP), +12:u05:document, +14:u06:procedures, +12:u10:protocol, +36:u11:draft-ietf-bfcpbis-rfc4583bis-27, +12:u12:abstract, +8:u13:this, +10:u14:answer, +5:u20:A, +6:u21:Ab, +7:u22:Abs, +8:u23:Abst, +10:uB2:NOCAPS, +18:uC1:CONTAINSDIGITS, +5:uH1:2, +8:uI0:----, +7:uI2:()/, +11:u00:Session, +12:u01:Protocol, +36:u02:draft-ietf-bfcpbis-rfc4583bis-27, +12:u03:Abstract, +8:u04:This, +10:u05:answer, +11:u06:Control, +10:u08:Status, +15:u00:Description, +10:u01:(BFCP), +12:u04:document, +14:u05:procedures, +6:u08:in, +36:u10:draft-ietf-bfcpbis-rfc4583bis-27, +12:u11:abstract, +8:u12:this, +10:u13:answer, +11:u14:control, +6:u21:Th, +7:u22:Thi, +8:u23:This, +5:uH0:2, +7:uI1:()/, +12:u00:Protocol, +36:u01:draft-ietf-bfcpbis-rfc4583bis-27, +12:u02:Abstract, +8:u03:This, +10:u04:answer, +11:u05:Control, +14:u07:summarized, +10:u00:(BFCP), +12:u03:document, +14:u04:procedures, +6:u07:in, +6:u08:of, +12:u10:abstract, +8:u11:this, +10:u12:answer, +11:u13:control, +5:u20:a, +6:u21:an, +7:u22:ans, +8:u23:answ, +7:uI0:()/, +7:uI2:()., +36:u00:draft-ietf-bfcpbis-rfc4583bis-27, +12:u01:Abstract, +8:u02:This, +10:u03:answer, +11:u04:Control, +14:u06:summarized, +10:u07:Status, +14:u08:provisions, +12:u02:document, +14:u03:procedures, +6:u06:in, +6:u07:of, +18:u08:Internet-Draft, +8:u10:this, +10:u11:answer, +11:u12:control, +14:u14:summarized, +6:u21:Co, +7:u22:Con, +8:u23:Cont, +5:uH2:3, +7:uI1:()., +12:u00:Abstract, +8:u01:This, +10:u02:answer, +11:u03:Control, +14:u05:summarized, +10:u06:Status, +19:u08:Internet-Drafts, +12:u01:document, +14:u02:procedures, +6:u05:in, +6:u06:of, +18:u07:Internet-Draft, +10:u10:answer, +11:u11:control, +14:u13:summarized, +10:u14:status, +5:uH1:3, +7:uI0:()., +8:u00:This, +10:u01:answer, +11:u02:Control, +14:u04:summarized, +10:u05:Status, +14:u07:provisions, +8:u08:Task, +12:u00:document, +14:u01:procedures, +6:u04:in, +6:u05:of, +7:u08:are, +11:u10:control, +14:u12:summarized, +10:u13:status, +5:u20:s, +6:u21:su, +7:u22:sum, +8:u23:summ, +5:uH0:3, +5:uH2:4, +10:u00:answer, +11:u01:Control, +14:u03:summarized, +10:u04:Status, +14:u06:provisions, +19:u07:Internet-Drafts, +11:u08:working, +14:u00:procedures, +6:u03:in, +6:u04:of, +7:u07:are, +9:u08:Force, +14:u11:summarized, +10:u12:status, +14:u14:provisions, +6:u21:St, +7:u22:Sta, +8:u23:Stat, +5:uH1:4, +11:u00:Control, +14:u02:summarized, +10:u03:Status, +14:u05:provisions, +19:u06:Internet-Drafts, +8:u07:Task, +10:u08:Drafts, +6:u02:in, +6:u03:of, +7:u06:are, +9:u07:Force, +13:u08:documents, +14:u10:summarized, +10:u11:status, +14:u13:provisions, +19:u14:internet-drafts, +5:uH0:4, +14:u01:summarized, +10:u02:Status, +14:u04:provisions, +19:u05:Internet-Drafts, +8:u06:Task, +11:u07:working, +6:u01:in, +6:u02:of, +7:u05:are, +9:u06:Force, +13:u07:documents, +6:u08:is, +10:u10:status, +14:u12:provisions, +19:u13:internet-drafts, +8:u14:task, +5:u20:p, +6:u21:pr, +7:u22:pro, +8:u23:prov, +14:u00:summarized, +10:u01:Status, +14:u03:provisions, +19:u04:Internet-Drafts, +8:u05:Task, +11:u06:working, +10:u07:Drafts, +7:u08:and, +6:u00:in, +6:u01:of, +7:u04:are, +9:u05:Force, +13:u06:documents, +6:u07:is, +14:u11:provisions, +19:u12:internet-drafts, +8:u13:task, +11:u14:working, +10:u00:Status, +14:u02:provisions, +19:u03:Internet-Drafts, +8:u04:Task, +11:u05:working, +10:u06:Drafts, +9:u08:time., +6:u00:of, +7:u03:are, +9:u04:Force, +13:u05:documents, +6:u06:is, +7:u08:may, +14:u10:provisions, +19:u11:internet-drafts, +8:u12:task, +11:u13:working, +10:u14:drafts, +6:u21:Ta, +7:u22:Tas, +8:u23:Task, +7:uI2:-.-, +14:u01:provisions, +19:u02:Internet-Drafts, +8:u03:Task, +11:u04:working, +10:u05:Drafts, +7:u07:and, +12:u08:material, +7:u02:are, +9:u03:Force, +13:u04:documents, +6:u05:is, +7:u07:may, +6:u08:It, +19:u10:internet-drafts, +8:u11:task, +11:u12:working, +10:u13:drafts, +5:u20:w, +6:u21:wo, +7:u22:wor, +8:u23:work, +7:uI1:-.-, +13:uI2:://..///., +5:uI2:8, +14:u00:provisions, +19:u01:Internet-Drafts, +8:u02:Task, +11:u03:working, +10:u04:Drafts, +7:u06:and, +9:u07:time., +7:u01:are, +9:u02:Force, +13:u03:documents, +6:u04:is, +7:u06:may, +6:u07:It, +6:u08:or, +8:u10:task, +11:u11:working, +10:u12:drafts, +7:u14:and, +6:u21:Dr, +7:u22:Dra, +8:u23:Draf, +5:uH2:6, +7:uI0:-.-, +13:uI1:://..///., +5:uI1:8, +19:u00:Internet-Drafts, +8:u01:Task, +11:u02:working, +10:u03:Drafts, +7:u05:and, +9:u06:time., +12:u07:material, +13:u08:Copyright, +7:u00:are, +9:u01:Force, +13:u02:documents, +6:u03:is, +7:u05:may, +6:u06:It, +6:u07:or, +11:u10:working, +10:u11:drafts, +7:u13:and, +9:u14:time., +5:uH1:6, +13:uI0:://..///., +6:uI2:,,, +5:uI0:8, +8:u00:Task, +11:u01:working, +10:u02:Drafts, +7:u04:and, +9:u05:time., +12:u06:material, +9:u00:Force, +13:u01:documents, +6:u02:is, +7:u04:may, +6:u05:It, +6:u06:or, +10:u08:Notice, +10:u10:drafts, +7:u12:and, +9:u13:time., +12:u14:material, +7:u22:and, +7:u23:and, +5:uH0:6, +6:uI1:,,, +6:uI2:.-, +11:u00:working, +10:u01:Drafts, +7:u03:and, +9:u04:time., +12:u05:material, +13:u07:Copyright, +13:u00:documents, +6:u01:is, +7:u03:may, +6:u04:It, +6:u05:or, +10:u07:Notice, +7:u08:(c), +7:u11:and, +9:u12:time., +12:u13:material, +5:u20:t, +6:u21:ti, +7:u22:tim, +8:u23:time, +6:uI0:,,, +6:uI1:.-, +7:uI2:".", +10:u00:Drafts, +7:u02:and, +9:u03:time., +12:u04:material, +13:u06:Copyright, +6:u00:is, +7:u02:may, +6:u03:It, +6:u04:or, +10:u06:Notice, +7:u07:(c), +12:u08:authors., +7:u10:and, +9:u11:time., +12:u12:material, +13:u14:copyright, +5:u20:m, +6:u21:ma, +7:u22:mat, +8:u23:mate, +5:uH2:8, +6:uI0:.-, +7:uI1:".", +7:uI2:-,., +7:u01:and, +9:u02:time., +12:u03:material, +13:u05:Copyright, +14:u08:Provisions, +7:u01:may, +6:u02:It, +6:u03:or, +10:u05:Notice, +7:u06:(c), +12:u07:authors., +9:u10:time., +12:u11:material, +13:u13:copyright, +5:uH1:8, +7:uI0:".", +7:uI1:-,., +7:u00:and, +9:u01:time., +12:u02:material, +13:u04:Copyright, +42:u08:(http://trustee.ietf.org/license-info), +7:u00:may, +6:u01:It, +6:u02:or, +10:u04:Notice, +7:u05:(c), +12:u06:authors., +12:u08:Relating, +12:u10:material, +13:u12:copyright, +12:u14:document, +7:u22:Cop, +8:u23:Copy, +5:uH0:8, +5:uH2:9, +7:uI0:-,., +9:u00:time., +12:u01:material, +13:u03:Copyright, +14:u07:Provisions, +15:u08:publication, +6:u00:It, +6:u01:or, +10:u03:Notice, +7:u04:(c), +12:u05:authors., +12:u07:Relating, +13:u11:copyright, +12:u13:document, +5:uH1:9, +6:uI2:.., +12:u00:material, +13:u02:Copyright, +14:u06:Provisions, +42:u07:(http://trustee.ietf.org/license-info), +14:u08:Camarillo,, +6:u00:or, +10:u02:Notice, +7:u03:(c), +12:u04:authors., +12:u06:Relating, +13:u10:copyright, +12:u12:document, +6:u21:do, +7:u22:doc, +8:u23:docu, +5:uH0:9, +6:uI1:.., +5:uI2:', +13:u01:Copyright, +14:u05:Provisions, +42:u06:(http://trustee.ietf.org/license-info), +15:u07:publication, +11:u08:Expires, +10:u01:Notice, +7:u02:(c), +12:u03:authors., +12:u05:Relating, +6:u08:et, +12:u11:document, +42:u14:(http://trustee.ietf.org/license-info), +6:uI0:.., +5:uI1:', +13:u00:Copyright, +14:u04:Provisions, +42:u05:(http://trustee.ietf.org/license-info), +15:u06:publication, +14:u07:Camarillo,, +9:u08:[Page, +10:u00:Notice, +7:u01:(c), +12:u02:authors., +12:u04:Relating, +6:u07:et, +12:u10:document, +42:u13:(http://trustee.ietf.org/license-info), +15:u14:publication, +8:u23:Prov, +5:uEO:1, +5:uI0:', +13:uI2:(://../-), +5:uH5:1, +14:u03:Provisions, +42:u04:(http://trustee.ietf.org/license-info), +15:u05:publication, +14:u06:Camarillo,, +11:u07:Expires, +7:u00:(c), +12:u01:authors., +12:u03:Relating, +6:u06:et, +6:u08:1], +42:u12:(http://trustee.ietf.org/license-info), +15:u13:publication, +14:u14:camarillo,, +5:u20:(, +6:u21:(h, +7:u22:(ht, +8:u23:(htt, +5:uE6:1, +13:uI1:(://../-), +14:u02:Provisions, +42:u03:(http://trustee.ietf.org/license-info), +15:u04:publication, +14:u05:Camarillo,, +11:u06:Expires, +9:u07:[Page, +8:u08:BFCP, +12:u00:authors., +12:u02:Relating, +6:u05:et, +6:u07:1], +42:u11:(http://trustee.ietf.org/license-info), +15:u12:publication, +14:u13:camarillo,, +11:u14:expires, +6:u21:pu, +7:u22:pub, +8:u23:publ, +6:uH2:11, +13:uI0:(://../-), +6:uI2:,., +14:u01:Provisions, +42:u02:(http://trustee.ietf.org/license-info), +15:u03:publication, +14:u04:Camarillo,, +11:u05:Expires, +9:u06:[Page, +12:u01:Relating, +6:u04:et, +6:u06:1], +42:u10:(http://trustee.ietf.org/license-info), +15:u11:publication, +14:u12:camarillo,, +11:u13:expires, +9:u14:[page, +6:u21:Ca, +7:u22:Cam, +8:u23:Cama, +6:uH1:11, +6:uI1:,., +14:u00:Provisions, +42:u01:(http://trustee.ietf.org/license-info), +15:u02:publication, +14:u03:Camarillo,, +11:u04:Expires, +9:u05:[Page, +8:u07:BFCP, +14:u08:carefully,, +12:u00:Relating, +6:u03:et, +6:u05:1], +8:u08:2018, +15:u10:publication, +14:u11:camarillo,, +11:u12:expires, +9:u13:[page, +11:u62:PAGEEND, +6:uH0:11, +6:uI0:,., +6:uI2:[], +42:u00:(http://trustee.ietf.org/license-info), +15:u01:publication, +14:u02:Camarillo,, +11:u03:Expires, +9:u04:[Page, +8:u06:BFCP, +6:u08:to, +6:u02:et, +6:u04:1], +8:u07:2018, +6:u08:as, +14:u10:camarillo,, +11:u11:expires, +9:u12:[page, +8:u14:bfcp, +5:u20:[, +6:u21:[P, +7:u22:[Pa, +8:u23:[Pag, +11:u61:PAGEEND, +13:u62:PAGESTART, +6:uI1:[], +15:u00:publication, +14:u01:Camarillo,, +11:u02:Expires, +9:u03:[Page, +8:u05:BFCP, +14:u07:carefully,, +11:u08:include, +6:u01:et, +6:u03:1], +8:u06:2018, +6:u07:as, +8:u08:this, +11:u10:expires, +9:u11:[page, +8:u13:bfcp, +11:u60:PAGEEND, +6:uI0:[], +14:u00:Camarillo,, +11:u01:Expires, +9:u02:[Page, +8:u04:BFCP, +14:u06:carefully,, +6:u07:to, +7:u08:the, +6:u00:et, +6:u02:1], +8:u05:2018, +6:u06:as, +8:u07:this, +14:u08:Simplified, +9:u10:[page, +8:u12:bfcp, +14:u14:carefully,, +11:u00:Expires, +9:u01:[Page, +8:u03:BFCP, +14:u05:carefully,, +6:u06:to, +11:u07:include, +13:u08:described, +6:u01:1], +8:u04:2018, +6:u05:as, +8:u06:this, +14:u07:Simplified, +9:u08:Trust, +8:u11:bfcp, +14:u13:carefully,, +6:u14:to, +9:u00:[Page, +8:u02:BFCP, +14:u04:carefully,, +6:u05:to, +11:u06:include, +7:u07:the, +9:u08:Table, +6:u00:1], +8:u03:2018, +6:u04:as, +8:u05:this, +14:u06:Simplified, +9:u07:Trust, +8:u10:bfcp, +14:u12:carefully,, +6:u13:to, +11:u14:include, +5:u20:c, +6:u21:ca, +7:u22:car, +8:u23:care, +8:u01:BFCP, +14:u03:carefully,, +6:u04:to, +11:u05:include, +7:u06:the, +13:u07:described, +6:u08:1., +8:u02:2018, +6:u03:as, +8:u04:this, +14:u05:Simplified, +9:u06:Trust, +14:u11:carefully,, +6:u12:to, +11:u13:include, +7:u14:the, +6:u21:to, +6:u22:to, +6:u23:to, +8:u00:BFCP, +14:u02:carefully,, +6:u03:to, +11:u04:include, +7:u05:the, +13:u06:described, +9:u07:Table, +5:u08:3, +8:u01:2018, +6:u02:as, +8:u03:this, +14:u04:Simplified, +9:u05:Trust, +16:u08:Introduction, +14:u10:carefully,, +6:u11:to, +11:u12:include, +7:u13:the, +13:u14:described, +5:u20:i, +6:u21:in, +7:u22:inc, +8:u23:incl, +14:u01:carefully,, +6:u02:to, +11:u03:include, +7:u04:the, +13:u05:described, +9:u06:Table, +6:u07:1., +6:u08:2., +8:u00:2018, +6:u01:as, +8:u02:this, +14:u03:Simplified, +9:u04:Trust, +16:u07:Introduction, +6:u10:to, +11:u11:include, +7:u12:the, +13:u13:described, +9:u14:table, +6:u21:th, +7:u22:the, +7:u23:the, +14:u00:carefully,, +6:u01:to, +11:u02:include, +7:u03:the, +13:u04:described, +9:u05:Table, +6:u06:1., +5:u07:3, +6:u00:as, +8:u01:this, +14:u02:Simplified, +9:u03:Trust, +16:u06:Introduction, +15:u08:Conventions, +11:u10:include, +7:u11:the, +13:u12:described, +9:u13:table, +6:u14:1., +6:u21:de, +7:u22:des, +8:u23:desc, +6:u00:to, +11:u01:include, +7:u02:the, +13:u03:described, +9:u04:Table, +6:u05:1., +5:u06:3, +6:u07:2., +6:u08:3., +8:u00:this, +14:u01:Simplified, +9:u02:Trust, +16:u05:Introduction, +15:u07:Conventions, +7:u10:the, +13:u11:described, +9:u12:table, +6:u13:1., +5:u14:3, +7:u22:Tab, +8:u23:Tabl, +29:uI2:........................., +6:uI2:25, +11:u00:include, +7:u01:the, +13:u02:described, +9:u03:Table, +6:u04:1., +5:u05:3, +6:u06:2., +5:u08:4, +14:u00:Simplified, +9:u01:Trust, +16:u04:Introduction, +15:u06:Conventions, +9:u08:Floor, +13:u10:described, +9:u11:table, +6:u12:1., +5:u13:3, +6:u14:2., +5:u20:1, +6:u21:1., +6:u22:1., +6:u23:1., +12:uC2:ALLDIGIT, +5:uD2:1, +29:uI1:........................., +6:uI1:25, +7:u00:the, +13:u01:described, +9:u02:Table, +6:u03:1., +5:u04:3, +6:u05:2., +6:u07:3., +6:u08:4., +9:u00:Trust, +16:u03:Introduction, +15:u05:Conventions, +9:u07:Floor, +9:u10:table, +6:u11:1., +5:u12:3, +6:u13:2., +5:u20:3, +5:u21:3, +5:u22:3, +5:u23:3, +12:uC0:ALLDIGIT, +5:uD0:1, +29:uI0:........................., +30:uI2:.........................., +6:uI0:25, +6:uI2:26, +13:u00:described, +9:u01:Table, +6:u02:1., +5:u03:3, +6:u04:2., +6:u06:3., +5:u07:4, +16:u02:Introduction, +15:u04:Conventions, +9:u06:Floor, +10:u08:Fields, +6:u10:1., +5:u11:3, +6:u12:2., +6:u14:3., +5:u20:2, +6:u21:2., +6:u22:2., +6:u23:2., +12:uC1:ALLDIGIT, +5:uD1:1, +30:uI1:.........................., +6:uI1:26, +9:u00:Table, +6:u01:1., +5:u02:3, +6:u03:2., +6:u05:3., +5:u06:4, +6:u07:4., +6:u08:5., +16:u01:Introduction, +15:u03:Conventions, +9:u05:Floor, +10:u07:Fields, +5:u10:3, +6:u11:2., +6:u13:3., +5:u14:4, +30:uI0:.........................., +26:uI2:......................, +6:uI0:26, +6:uI2:22, +6:u00:1., +5:u01:3, +6:u02:2., +6:u04:3., +5:u05:4, +6:u06:4., +5:u08:5, +16:u00:Introduction, +15:u02:Conventions, +9:u04:Floor, +10:u06:Fields, +7:u08:SDP, +6:u10:2., +6:u12:3., +5:u13:4, +6:u14:4., +6:u21:3., +6:u22:3., +6:u23:3., +26:uI1:......................, +6:uI1:22, +5:u00:3, +6:u01:2., +6:u03:3., +5:u04:4, +6:u05:4., +6:u07:5., +8:u08:5.1., +15:u01:Conventions, +9:u03:Floor, +10:u05:Fields, +7:u07:SDP, +6:u11:3., +5:u12:4, +6:u13:4., +5:u20:4, +5:u21:4, +5:u22:4, +5:u23:4, +26:uI0:......................, +26:uI2:.''..................., +6:uI0:22, +6:u00:2., +6:u02:3., +5:u03:4, +6:u04:4., +6:u06:5., +5:u07:5, +15:u00:Conventions, +9:u02:Floor, +10:u04:Fields, +7:u06:SDP, +6:u10:3., +5:u11:4, +6:u12:4., +6:u14:5., +6:u21:4., +6:u22:4., +6:u23:4., +26:uI1:.''..................., +6:u01:3., +5:u02:4, +6:u03:4., +6:u05:5., +5:u06:5, +8:u07:5.1., +8:u08:5.2., +9:u01:Floor, +10:u03:Fields, +7:u05:SDP, +5:u10:4, +6:u11:4., +6:u13:5., +5:u14:5, +26:uI0:.''..................., +28:uI2:........................, +6:uI2:24, +6:u00:3., +5:u01:4, +6:u02:4., +6:u04:5., +5:u05:5, +8:u06:5.1., +5:u08:7, +9:u00:Floor, +10:u02:Fields, +7:u04:SDP, +6:u10:4., +6:u12:5., +5:u13:5, +8:u14:5.1., +5:u20:5, +6:u21:5., +6:u22:5., +6:u23:5., +28:uI1:........................, +6:uI1:24, +5:u00:4, +6:u01:4., +6:u03:5., +5:u04:5, +8:u05:5.1., +8:u07:5.2., +8:u08:5.3., +10:u01:Fields, +7:u03:SDP, +6:u11:5., +5:u12:5, +8:u13:5.1., +5:u21:5, +5:u22:5, +5:u23:5, +28:uI0:........................, +24:uI2:..''................, +6:uI0:24, +6:uI2:20, +6:u00:4., +6:u02:5., +5:u03:5, +8:u04:5.1., +8:u06:5.2., +5:u07:7, +5:u08:8, +10:u00:Fields, +7:u02:SDP, +6:u10:5., +5:u11:5, +8:u12:5.1., +8:u14:5.2., +7:u22:5.1, +8:u23:5.1., +24:uI1:..''................, +6:uI1:20, +6:u01:5., +5:u02:5, +8:u03:5.1., +8:u05:5.2., +5:u06:7, +8:u07:5.3., +8:u08:5.4., +7:u01:SDP, +5:u10:5, +8:u11:5.1., +8:u13:5.2., +5:u14:7, +24:uI0:..''................, +25:uI2:..''................., +6:uI0:20, +6:uI2:21, +6:u00:5., +5:u01:5, +8:u02:5.1., +8:u04:5.2., +5:u05:7, +8:u06:5.3., +5:u07:8, +5:u08:9, +7:u00:SDP, +8:u10:5.1., +8:u12:5.2., +5:u13:7, +8:u14:5.3., +7:u22:5.2, +8:u23:5.2., +25:uI1:..''................., +6:uI1:21, +5:u00:5, +8:u01:5.1., +8:u03:5.2., +5:u04:7, +8:u05:5.3., +5:u06:8, +8:u07:5.4., +8:u08:5.5., +8:u11:5.2., +5:u12:7, +8:u13:5.3., +5:u14:8, +5:u20:7, +5:u21:7, +5:u22:7, +5:u23:7, +25:uI0:..''................., +6:uI0:21, +8:u00:5.1., +8:u02:5.2., +5:u03:7, +8:u04:5.3., +5:u05:8, +8:u06:5.4., +5:u07:9, +6:u08:6., +8:u10:5.2., +5:u11:7, +8:u12:5.3., +5:u13:8, +8:u14:5.4., +7:u22:5.3, +8:u23:5.3., +8:u01:5.2., +5:u02:7, +8:u03:5.3., +5:u04:8, +8:u05:5.4., +5:u06:9, +8:u07:5.5., +6:u08:7., +16:u08:Multiplexing, +5:u10:7, +8:u11:5.3., +5:u12:8, +8:u13:5.4., +5:u14:9, +5:u20:8, +5:u21:8, +5:u22:8, +5:u23:8, +8:u00:5.2., +5:u01:7, +8:u02:5.3., +5:u03:8, +8:u04:5.4., +5:u05:9, +8:u06:5.5., +6:u07:6., +8:u08:7.1., +16:u07:Multiplexing, +8:u10:5.3., +5:u11:8, +8:u12:5.4., +5:u13:9, +8:u14:5.5., +7:u22:5.4, +8:u23:5.4., +5:u00:7, +8:u01:5.3., +5:u02:8, +8:u03:5.4., +5:u04:9, +8:u05:5.5., +6:u06:6., +6:u07:7., +6:u08:8., +16:u06:Multiplexing, +7:u08:TCP, +5:u10:8, +8:u11:5.4., +5:u12:9, +8:u13:5.5., +6:u14:6., +5:u20:9, +5:u21:9, +5:u22:9, +5:u23:9, +8:u00:5.3., +5:u01:8, +8:u02:5.4., +5:u03:9, +8:u04:5.5., +6:u05:6., +6:u06:7., +8:u07:7.1., +6:u08:9., +16:u05:Multiplexing, +7:u07:TCP, +12:u08:TLS/DTLS, +8:u10:5.4., +5:u11:9, +8:u12:5.5., +6:u13:6., +6:u14:7., +7:u22:5.5, +8:u23:5.5., +22:uI2:.................., +6:uI2:18, +5:u00:8, +8:u01:5.4., +5:u02:9, +8:u03:5.5., +6:u04:6., +6:u05:7., +8:u06:7.1., +6:u07:8., +7:u08:10., +16:u04:Multiplexing, +7:u06:TCP, +12:u07:TLS/DTLS, +7:u08:ICE, +5:u10:9, +8:u11:5.5., +6:u12:6., +6:u13:7., +8:u14:7.1., +5:u20:6, +6:u21:6., +6:u22:6., +6:u23:6., +22:uI1:.................., +6:uI1:18, +8:u00:5.4., +5:u01:9, +8:u02:5.5., +6:u03:6., +6:u04:7., +8:u05:7.1., +6:u06:8., +6:u07:9., +9:u08:10.1., +16:u03:Multiplexing, +7:u05:TCP, +12:u06:TLS/DTLS, +7:u07:ICE, +8:u10:5.5., +6:u11:6., +6:u12:7., +8:u13:7.1., +6:u14:8., +6:u21:7., +6:u22:7., +6:u23:7., +22:uI0:.................., +6:uI0:18, +5:u00:9, +8:u01:5.5., +6:u02:6., +6:u03:7., +8:u04:7.1., +6:u05:8., +6:u06:9., +7:u07:10., +9:u08:10.2., +16:u02:Multiplexing, +7:u04:TCP, +12:u05:TLS/DTLS, +7:u06:ICE, +14:u08:Generating, +6:u10:6., +6:u11:7., +8:u12:7.1., +6:u13:8., +6:u14:9., +7:u22:7.1, +8:u23:7.1., +25:uI2:./..................., +8:u00:5.5., +6:u01:6., +6:u02:7., +8:u03:7.1., +6:u04:8., +6:u05:9., +7:u06:10., +9:u07:10.1., +9:u08:10.3., +16:u01:Multiplexing, +7:u03:TCP, +12:u04:TLS/DTLS, +7:u05:ICE, +14:u07:Generating, +6:u10:7., +8:u11:7.1., +6:u12:8., +6:u13:9., +7:u14:10., +6:u21:8., +6:u22:8., +6:u23:8., +25:uI1:./..................., +6:u00:6., +6:u01:7., +8:u02:7.1., +6:u03:8., +6:u04:9., +7:u05:10., +9:u06:10.1., +9:u07:10.2., +9:u08:10.4., +16:u00:Multiplexing, +7:u02:TCP, +12:u03:TLS/DTLS, +7:u04:ICE, +14:u06:Generating, +11:u08:Offerer, +8:u10:7.1., +6:u11:8., +6:u12:9., +7:u13:10., +9:u14:10.1., +6:u21:9., +6:u22:9., +6:u23:9., +25:uI0:./..................., +23:uI2:./................., +6:uI2:19, +6:u00:7., +8:u01:7.1., +6:u02:8., +6:u03:9., +7:u04:10., +9:u05:10.1., +9:u06:10.2., +9:u07:10.3., +7:u08:11., +7:u01:TCP, +12:u02:TLS/DTLS, +7:u03:ICE, +14:u05:Generating, +11:u07:Offerer, +13:u08:Modifying, +6:u10:8., +6:u11:9., +7:u12:10., +9:u13:10.1., +9:u14:10.2., +6:u21:10, +7:u22:10., +7:u23:10., +23:uI1:./................., +18:uI2:.............., +6:uI1:19, +6:uI2:14, +8:u00:7.1., +6:u01:8., +6:u02:9., +7:u03:10., +9:u04:10.1., +9:u05:10.2., +9:u06:10.3., +9:u07:10.4., +7:u08:12., +7:u00:TCP, +12:u01:TLS/DTLS, +7:u02:ICE, +14:u04:Generating, +11:u06:Offerer, +13:u07:Modifying, +12:u08:Examples, +6:u10:9., +7:u11:10., +9:u12:10.1., +9:u13:10.2., +9:u14:10.3., +8:u23:10.1, +23:uI0:./................., +18:uI1:.............., +21:uI2:................., +6:uI0:19, +6:uI1:14, +6:uI2:17, +6:u00:8., +6:u01:9., +7:u02:10., +9:u03:10.1., +9:u04:10.2., +9:u05:10.3., +9:u06:10.4., +7:u07:11., +7:u08:13., +12:u00:TLS/DTLS, +7:u01:ICE, +14:u03:Generating, +11:u05:Offerer, +13:u06:Modifying, +12:u07:Examples, +12:u08:Security, +7:u10:10., +9:u11:10.1., +9:u12:10.2., +9:u13:10.3., +9:u14:10.4., +8:u23:10.2, +18:uI0:.............., +21:uI1:................., +16:uI2:............, +6:uI0:14, +6:uI1:17, +6:uI2:12, +6:u00:9., +7:u01:10., +9:u02:10.1., +9:u03:10.2., +9:u04:10.3., +9:u05:10.4., +7:u06:11., +7:u07:12., +9:u08:13.1., +7:u00:ICE, +14:u02:Generating, +11:u04:Offerer, +13:u05:Modifying, +12:u06:Examples, +12:u07:Security, +8:u08:IANA, +9:u10:10.1., +9:u11:10.2., +9:u12:10.3., +9:u13:10.4., +7:u14:11., +8:u23:10.3, +21:uI0:................., +16:uI1:............, +23:uI2:..................., +6:uI0:17, +6:uI1:12, +7:u00:10., +9:u01:10.1., +9:u02:10.2., +9:u03:10.3., +9:u04:10.4., +7:u05:11., +7:u06:12., +7:u07:13., +9:u08:13.2., +14:u01:Generating, +11:u03:Offerer, +13:u04:Modifying, +12:u05:Examples, +12:u06:Security, +8:u07:IANA, +16:u08:Registration, +9:u10:10.2., +9:u11:10.3., +9:u12:10.4., +7:u13:11., +7:u14:12., +8:u23:10.4, +16:uI0:............, +23:uI1:..................., +31:uI2:..........................., +6:uI0:12, +6:uI2:27, +9:u00:10.1., +9:u01:10.2., +9:u02:10.3., +9:u03:10.4., +7:u04:11., +7:u05:12., +7:u06:13., +9:u07:13.1., +9:u08:13.3., +14:u00:Generating, +11:u02:Offerer, +13:u03:Modifying, +12:u04:Examples, +12:u05:Security, +8:u06:IANA, +16:u07:Registration, +9:u10:10.3., +9:u11:10.4., +7:u12:11., +7:u13:12., +7:u14:13., +6:u21:11, +7:u22:11., +7:u23:11., +23:uI0:..................., +31:uI1:..........................., +24:uI2:...................., +6:uI1:27, +9:u00:10.2., +9:u01:10.3., +9:u02:10.4., +7:u03:11., +7:u04:12., +7:u05:13., +9:u06:13.1., +9:u07:13.2., +9:u08:13.4., +11:u01:Offerer, +13:u02:Modifying, +12:u03:Examples, +12:u04:Security, +8:u05:IANA, +16:u06:Registration, +9:u10:10.4., +7:u11:11., +7:u12:12., +7:u13:13., +9:u14:13.1., +6:u21:12, +7:u22:12., +7:u23:12., +31:uI0:..........................., +24:uI1:...................., +6:uI0:27, +9:u00:10.3., +9:u01:10.4., +7:u02:11., +7:u03:12., +7:u04:13., +9:u05:13.1., +9:u06:13.2., +9:u07:13.3., +9:u08:13.5., +11:u00:Offerer, +13:u01:Modifying, +12:u02:Examples, +12:u03:Security, +8:u04:IANA, +16:u05:Registration, +7:u10:11., +7:u11:12., +7:u12:13., +9:u13:13.1., +9:u14:13.2., +6:u21:13, +7:u22:13., +7:u23:13., +24:uI0:...................., +19:uI2:..''..........., +6:uI2:15, +9:u00:10.4., +7:u01:11., +7:u02:12., +7:u03:13., +9:u04:13.1., +9:u05:13.2., +9:u06:13.3., +9:u07:13.4., +9:u08:13.6., +13:u00:Modifying, +12:u01:Examples, +12:u02:Security, +8:u03:IANA, +16:u04:Registration, +7:u10:12., +7:u11:13., +9:u12:13.1., +9:u13:13.2., +9:u14:13.3., +8:u23:13.1, +19:uI1:..''..........., +13:uI2:..''....., +6:uI1:15, +7:u00:11., +7:u01:12., +7:u02:13., +9:u03:13.1., +9:u04:13.2., +9:u05:13.3., +9:u06:13.4., +9:u07:13.5., +7:u08:14., +12:u00:Examples, +12:u01:Security, +8:u02:IANA, +16:u03:Registration, +7:u10:13., +9:u11:13.1., +9:u12:13.2., +9:u13:13.3., +9:u14:13.4., +8:u23:13.2, +19:uI0:..''..........., +13:uI1:..''....., +15:uI2:..''......., +6:uI0:15, +6:uI2:11, +7:u00:12., +7:u01:13., +9:u02:13.1., +9:u03:13.2., +9:u04:13.3., +9:u05:13.4., +9:u06:13.5., +9:u07:13.6., +7:u08:15., +12:u00:Security, +8:u01:IANA, +16:u02:Registration, +11:u08:Changes, +9:u10:13.1., +9:u11:13.2., +9:u12:13.3., +9:u13:13.4., +9:u14:13.5., +8:u23:13.3, +13:uI0:..''....., +15:uI1:..''......., +6:uI1:11, +7:u00:13., +9:u01:13.1., +9:u02:13.2., +9:u03:13.3., +9:u04:13.4., +9:u05:13.5., +9:u06:13.6., +7:u07:14., +7:u08:16., +8:u00:IANA, +16:u01:Registration, +11:u07:Changes, +20:u08:Acknowledgements, +9:u10:13.2., +9:u11:13.3., +9:u12:13.4., +9:u13:13.5., +9:u14:13.6., +8:u23:13.4, +15:uI0:..''......., +14:uI2:..''......, +6:uI0:11, +9:u00:13.1., +9:u01:13.2., +9:u02:13.3., +9:u03:13.4., +9:u04:13.5., +9:u05:13.6., +7:u06:14., +7:u07:15., +9:u08:16.1., +16:u00:Registration, +11:u06:Changes, +20:u07:Acknowledgements, +14:u08:References, +9:u10:13.3., +9:u11:13.4., +9:u12:13.5., +9:u13:13.6., +7:u14:14., +8:u23:13.5, +14:uI1:..''......, +9:u00:13.2., +9:u01:13.3., +9:u02:13.4., +9:u03:13.5., +9:u04:13.6., +7:u05:14., +7:u06:15., +7:u07:16., +9:u08:16.2., +11:u05:Changes, +20:u06:Acknowledgements, +14:u07:References, +13:u08:Normative, +9:u10:13.4., +9:u11:13.5., +9:u12:13.6., +7:u13:14., +7:u14:15., +8:u23:13.6, +14:uI0:..''......, +25:uI2:....................., +9:u00:13.3., +9:u01:13.4., +9:u02:13.5., +9:u03:13.6., +7:u04:14., +7:u05:15., +7:u06:16., +9:u07:16.1., +12:u08:Authors', +11:u04:Changes, +20:u05:Acknowledgements, +14:u06:References, +13:u07:Normative, +17:u08:Informational, +9:u10:13.5., +9:u11:13.6., +7:u12:14., +7:u13:15., +7:u14:16., +6:u21:14, +7:u22:14., +7:u23:14., +25:uI1:....................., +27:uI2:......................., +6:uI2:23, +9:u00:13.4., +9:u01:13.5., +9:u02:13.6., +7:u03:14., +7:u04:15., +7:u05:16., +9:u06:16.1., +9:u07:16.2., +11:u03:Changes, +20:u04:Acknowledgements, +14:u05:References, +13:u06:Normative, +17:u07:Informational, +13:u08:Addresses, +9:u10:13.6., +7:u11:14., +7:u12:15., +7:u13:16., +9:u14:16.1., +6:u21:15, +7:u22:15., +7:u23:15., +25:uI0:....................., +27:uI1:......................., +6:uI1:23, +9:u00:13.5., +9:u01:13.6., +7:u02:14., +7:u03:15., +7:u04:16., +9:u05:16.1., +9:u06:16.2., +12:u07:Authors', +11:u02:Changes, +20:u03:Acknowledgements, +14:u04:References, +13:u05:Normative, +17:u06:Informational, +13:u07:Addresses, +7:u10:14., +7:u11:15., +7:u12:16., +9:u13:16.1., +9:u14:16.2., +6:u21:16, +7:u22:16., +7:u23:16., +27:uI0:......................., +6:uI0:23, +9:u00:13.6., +7:u01:14., +7:u02:15., +7:u03:16., +9:u04:16.1., +9:u05:16.2., +12:u06:Authors', +11:u01:Changes, +20:u02:Acknowledgements, +14:u03:References, +13:u04:Normative, +17:u05:Informational, +13:u06:Addresses, +7:u10:15., +7:u11:16., +9:u12:16.1., +9:u13:16.2., +12:u14:authors', +8:u23:16.1, +7:u00:14., +7:u01:15., +7:u02:16., +9:u03:16.1., +9:u04:16.2., +12:u05:Authors', +11:u00:Changes, +20:u01:Acknowledgements, +14:u02:References, +13:u03:Normative, +17:u04:Informational, +13:u05:Addresses, +6:u08:2], +7:u10:16., +9:u11:16.1., +9:u12:16.2., +12:u13:authors', +8:u23:16.2, +28:uI2:'......................., +7:u00:15., +7:u01:16., +9:u02:16.1., +9:u03:16.2., +12:u04:Authors', +20:u00:Acknowledgements, +14:u01:References, +13:u02:Normative, +17:u03:Informational, +13:u04:Addresses, +6:u07:2], +9:u10:16.1., +9:u11:16.2., +12:u12:authors', +6:u21:Au, +7:u22:Aut, +8:u23:Auth, +5:uG2:1, +28:uI1:'......................., +5:uJ3:0, +7:u00:16., +9:u01:16.1., +9:u02:16.2., +12:u03:Authors', +14:u00:References, +13:u01:Normative, +17:u02:Informational, +13:u03:Addresses, +6:u06:2], +9:u10:16.2., +12:u11:authors', +5:uG1:1, +28:uI0:'......................., +5:uJ2:0, +9:u00:16.1., +9:u01:16.2., +12:u02:Authors', +13:u00:Normative, +17:u01:Informational, +13:u02:Addresses, +6:u05:2], +12:u10:authors', +5:uG0:1, +5:uJ1:0, +9:u00:16.2., +12:u01:Authors', +6:u08:As, +17:u00:Informational, +13:u01:Addresses, +6:u04:2], +12:u00:Authors', +17:u08:specification, +13:u00:Addresses, +6:u03:2], +13:u08:discussed, +6:u07:As, +9:u08:needs, +6:u02:2], +13:u07:discussed, +34:u08:[I-D.ietf-bfcpbis-rfc4582bis],, +6:u06:As, +17:u07:specification, +9:u08:floor, +6:u01:2], +13:u06:discussed, +34:u07:[I-D.ietf-bfcpbis-rfc4582bis],, +5:u08:a, +6:u14:as, +6:u05:As, +17:u06:specification, +9:u07:needs, +6:u00:2], +13:u05:discussed, +34:u06:[I-D.ietf-bfcpbis-rfc4582bis],, +5:u07:a, +11:u08:control, +6:u13:as, +17:u14:specification, +6:u04:As, +17:u05:specification, +9:u06:needs, +9:u07:floor, +7:u08:One, +13:u04:discussed, +34:u05:[I-D.ietf-bfcpbis-rfc4582bis],, +5:u06:a, +11:u07:control, +11:u08:server,, +6:u12:as, +17:u13:specification, +9:u14:needs, +6:u21:As, +6:u22:As, +6:u23:As, +11:uI2:[-.--],, +5:uI2:7, +6:u03:As, +17:u04:specification, +9:u05:needs, +9:u06:floor, +16:u08:offer/answer, +13:u03:discussed, +34:u04:[I-D.ietf-bfcpbis-rfc4582bis],, +5:u05:a, +11:u06:control, +11:u07:server,, +7:u08:way, +6:u11:as, +17:u12:specification, +9:u13:needs, +9:u14:floor, +6:u21:sp, +7:u22:spe, +8:u23:spec, +11:uI1:[-.--],, +5:uI1:7, +6:u02:As, +17:u03:specification, +9:u04:needs, +9:u05:floor, +7:u07:One, +10:u08:encode, +13:u02:discussed, +34:u03:[I-D.ietf-bfcpbis-rfc4582bis],, +5:u04:a, +11:u05:control, +11:u06:server,, +7:u07:way, +13:u08:[RFC3264], +6:u10:as, +17:u11:specification, +9:u12:needs, +9:u13:floor, +5:u20:n, +6:u21:ne, +7:u22:nee, +8:u23:need, +11:uI0:[-.--],, +5:uI0:7, +6:u01:As, +17:u02:specification, +9:u03:needs, +9:u04:floor, +7:u06:One, +16:u07:offer/answer, +13:u01:discussed, +34:u02:[I-D.ietf-bfcpbis-rfc4582bis],, +5:u03:a, +11:u04:control, +11:u05:server,, +7:u06:way, +13:u07:[RFC3264], +17:u10:specification, +9:u11:needs, +9:u12:floor, +7:u14:one, +5:u20:f, +6:u21:fl, +7:u22:flo, +8:u23:floo, +7:uI2:,,., +6:u00:As, +17:u01:specification, +9:u02:needs, +9:u03:floor, +7:u05:One, +16:u06:offer/answer, +10:u07:encode, +8:u08:User, +13:u00:discussed, +34:u01:[I-D.ietf-bfcpbis-rfc4582bis],, +5:u02:a, +11:u03:control, +11:u04:server,, +7:u05:way, +13:u06:[RFC3264], +8:u08:such, +9:u10:needs, +9:u11:floor, +7:u13:one, +16:u14:offer/answer, +7:uI1:,,., +17:u00:specification, +9:u01:needs, +9:u02:floor, +7:u04:One, +16:u05:offer/answer, +10:u06:encode, +10:u08:number, +34:u00:[I-D.ietf-bfcpbis-rfc4582bis],, +5:u01:a, +11:u02:control, +11:u03:server,, +7:u04:way, +13:u05:[RFC3264], +8:u07:such, +10:u08:agents, +9:u10:floor, +7:u12:one, +16:u13:offer/answer, +10:u14:encode, +6:u21:On, +7:u22:One, +7:u23:One, +7:uI0:,,., +8:uI2:/[]., +9:u00:needs, +9:u01:floor, +7:u03:One, +16:u04:offer/answer, +10:u05:encode, +8:u07:User, +5:u00:a, +11:u01:control, +11:u02:server,, +7:u03:way, +13:u04:[RFC3264], +8:u06:such, +10:u07:agents, +7:u11:one, +16:u12:offer/answer, +10:u13:encode, +6:u14:of, +5:u20:o, +6:u21:of, +7:u22:off, +8:u23:offe, +8:uI1:/[]., +9:u00:floor, +7:u02:One, +16:u03:offer/answer, +10:u04:encode, +8:u06:User, +10:u07:number, +11:u00:control, +11:u01:server,, +7:u02:way, +13:u03:[RFC3264], +8:u05:such, +10:u06:agents, +14:u08:connection, +7:u10:one, +16:u11:offer/answer, +10:u12:encode, +6:u13:of, +8:u14:user, +5:u20:e, +6:u21:en, +7:u22:enc, +8:u23:enco, +8:uI0:/[]., +6:uI2:/., +7:u01:One, +16:u02:offer/answer, +10:u03:encode, +8:u05:User, +10:u06:number, +9:u08:apply, +11:u00:server,, +7:u01:way, +13:u02:[RFC3264], +8:u04:such, +10:u05:agents, +14:u07:connection, +7:u08:'m', +16:u10:offer/answer, +10:u11:encode, +6:u12:of, +8:u13:user, +10:u14:number, +6:u22:of, +6:u23:of, +6:uI1:/., +5:uI2:/, +7:u00:One, +16:u01:offer/answer, +10:u02:encode, +8:u04:User, +10:u05:number, +11:u08:Section, +7:u00:way, +13:u01:[RFC3264], +8:u03:such, +10:u04:agents, +14:u06:connection, +7:u07:'m', +10:u10:encode, +6:u11:of, +8:u12:user, +10:u13:number, +5:u20:U, +6:u21:Us, +7:u22:Use, +8:u23:User, +6:uI0:/., +5:uI1:/, +6:uI2:.,, +16:u00:offer/answer, +10:u01:encode, +8:u03:User, +10:u04:number, +9:u07:apply, +13:u00:[RFC3264], +8:u02:such, +10:u03:agents, +14:u05:connection, +7:u06:'m', +6:u10:of, +8:u11:user, +10:u12:number, +7:u14:sdp, +6:u21:nu, +7:u22:num, +8:u23:numb, +5:uI0:/, +6:uI1:.,, +10:u00:encode, +8:u02:User, +10:u03:number, +9:u06:apply, +11:u07:Section, +8:u01:such, +10:u02:agents, +14:u04:connection, +7:u05:'m', +8:u10:user, +10:u11:number, +7:u13:sdp, +9:u14:apply, +6:uI0:.,, +7:uI2:'',, +8:u01:User, +10:u02:number, +9:u05:apply, +11:u06:Section, +8:u00:such, +10:u01:agents, +14:u03:connection, +7:u04:'m', +10:u10:number, +7:u12:sdp, +9:u13:apply, +11:u14:section, +6:u21:SD, +7:u22:SDP, +7:u23:SDP, +7:uI1:'',, +8:u00:User, +10:u01:number, +9:u04:apply, +11:u05:Section, +10:u00:agents, +14:u02:connection, +7:u03:'m', +15:u08:connection., +7:u11:sdp, +9:u12:apply, +11:u13:section, +6:u21:ap, +7:u22:app, +8:u23:appl, +5:uH2:5, +7:uI0:'',, +6:uI2:'', +10:u00:number, +9:u03:apply, +11:u04:Section, +14:u01:connection, +7:u02:'m', +15:u07:connection., +5:u08:6, +7:u10:sdp, +9:u11:apply, +11:u12:section, +7:u22:Sec, +8:u23:Sect, +5:uH1:5, +6:uI1:'', +9:u02:apply, +11:u03:Section, +14:u00:connection, +7:u01:'m', +15:u06:connection., +5:u07:6, +9:u10:apply, +11:u11:section, +5:uH0:5, +6:uI0:'', +9:u01:apply, +11:u02:Section, +7:u00:'m', +15:u05:connection., +5:u06:6, +11:u10:section, +9:u00:apply, +11:u01:Section, +15:u04:connection., +5:u05:6, +11:u00:Section, +13:u08:[RFC8445], +15:u03:connection., +5:u04:6, +5:uH2:7, +15:u02:connection., +5:u03:6, +18:u08:considerations, +15:u14:connection., +5:uH1:7, +13:u07:[RFC8445], +15:u01:connection., +5:u02:6, +18:u07:considerations, +6:u08:10, +15:u13:connection., +5:uH0:7, +13:u06:[RFC8445], +15:u00:connection., +5:u01:6, +18:u06:considerations, +6:u07:10, +15:u12:connection., +13:u14:[rfc8445], +6:u21:co, +7:u22:con, +8:u23:conn, +13:u05:[RFC8445], +7:u08:The, +5:u00:6, +18:u05:considerations, +6:u06:10, +15:u11:connection., +13:u13:[rfc8445], +7:uI2:[]., +13:u04:[RFC8445], +13:u08:"SHOULD",, +18:u04:considerations, +6:u05:10, +7:u08:key, +15:u10:connection., +13:u12:[rfc8445], +6:u21:[R, +7:u22:[RF, +8:u23:[RFC, +7:uI1:[]., +13:u03:[RFC8445], +7:u07:The, +14:u08:"OPTIONAL", +18:u03:considerations, +6:u04:10, +7:u07:key, +11:u08:"SHOULD, +13:u11:[rfc8445], +7:uI0:[]., +13:u02:[RFC8445], +7:u06:The, +13:u07:"SHOULD",, +6:u08:14, +18:u02:considerations, +6:u03:10, +7:u06:key, +11:u07:"SHOULD, +13:u10:[rfc8445], +13:u01:[RFC8445], +7:u05:The, +13:u06:"SHOULD",, +14:u07:"OPTIONAL", +13:u08:capitals,, +18:u01:considerations, +6:u02:10, +7:u05:key, +11:u06:"SHOULD, +13:u08:[RFC2119], +13:u14:"should",, +19:uI2:"","","","","",, +13:u00:[RFC8445], +7:u04:The, +13:u05:"SHOULD",, +14:u06:"OPTIONAL", +6:u07:14, +18:u00:considerations, +6:u01:10, +7:u04:key, +11:u05:"SHOULD, +13:u07:[RFC2119], +13:u13:"should",, +14:u14:"optional", +7:u22:The, +7:u23:The, +19:uI1:"","","","","",, +7:u03:The, +13:u04:"SHOULD",, +14:u05:"OPTIONAL", +6:u06:14, +13:u07:capitals,, +6:u00:10, +7:u03:key, +11:u04:"SHOULD, +13:u06:[RFC2119], +13:u12:"should",, +14:u13:"optional", +6:u14:14, +5:u20:", +6:u21:"S, +7:u22:"SH, +8:u23:"SHO, +19:uI0:"","","","","",, +6:uI2:"", +7:u02:The, +13:u03:"SHOULD",, +14:u04:"OPTIONAL", +6:u05:14, +13:u06:capitals,, +7:u02:key, +11:u03:"SHOULD, +13:u05:[RFC2119], +13:u11:"should",, +14:u12:"optional", +6:u13:14, +13:u14:capitals,, +6:u21:"O, +7:u22:"OP, +8:u23:"OPT, +6:uI1:"", +10:uI2:[][],,, +7:u01:The, +13:u02:"SHOULD",, +14:u03:"OPTIONAL", +6:u04:14, +13:u05:capitals,, +7:u01:key, +11:u02:"SHOULD, +13:u04:[RFC2119], +6:u08:3], +13:u10:"should",, +14:u11:"optional", +6:u12:14, +13:u13:capitals,, +6:u22:14, +6:u23:14, +6:uI0:"", +10:uI1:[][],,, +7:u00:The, +13:u01:"SHOULD",, +14:u02:"OPTIONAL", +6:u03:14, +13:u04:capitals,, +7:u00:key, +11:u01:"SHOULD, +13:u03:[RFC2119], +6:u07:3], +14:u10:"optional", +6:u11:14, +13:u12:capitals,, +7:u22:cap, +8:u23:capi, +5:uG2:2, +10:uI0:[][],,, +13:u00:"SHOULD",, +14:u01:"OPTIONAL", +6:u02:14, +13:u03:capitals,, +11:u00:"SHOULD, +13:u02:[RFC2119], +6:u06:3], +6:u10:14, +13:u11:capitals,, +5:uG1:2, +14:u00:"OPTIONAL", +6:u01:14, +13:u02:capitals,, +13:u01:[RFC2119], +6:u05:3], +13:u10:capitals,, +5:uG0:2, +6:u00:14, +13:u01:capitals,, +8:u08:When, +13:u00:[RFC2119], +6:u04:3], +13:u00:capitals,, +9:u08:which, +6:u03:3], +7:u08:two, +8:u07:When, +6:u02:3], +7:u07:two, +8:u06:When, +9:u07:which, +8:u08:Once, +6:u01:3], +7:u06:two, +8:u14:when, +8:u05:When, +9:u06:which, +19:u08:BFCP-controlled, +6:u00:3], +7:u05:two, +8:u13:when, +9:u14:which, +8:u04:When, +9:u05:which, +8:u07:Once, +7:u04:two, +11:u08:streams, +8:u12:when, +9:u13:which, +5:u20:W, +6:u21:Wh, +7:u22:Whe, +8:u23:When, +8:u03:When, +9:u04:which, +8:u06:Once, +19:u07:BFCP-controlled, +13:u08:According, +7:u03:two, +11:u07:streams, +8:u11:when, +9:u12:which, +8:u14:once, +6:u21:wh, +7:u22:whi, +8:u23:whic, +8:u02:When, +9:u03:which, +8:u05:Once, +19:u06:BFCP-controlled, +7:u02:two, +11:u06:streams, +8:u10:when, +9:u11:which, +8:u13:once, +19:u14:bfcp-controlled, +8:u01:When, +9:u02:which, +8:u04:Once, +19:u05:BFCP-controlled, +13:u07:According, +13:u08:m=<media>, +7:u01:two, +11:u05:streams, +14:u08:following:, +9:u10:which, +8:u12:once, +19:u13:bfcp-controlled, +7:u22:Onc, +8:u23:Once, +6:uI2:-., +8:u00:When, +9:u01:which, +8:u03:Once, +19:u04:BFCP-controlled, +13:u06:According, +7:u00:two, +11:u04:streams, +14:u07:following:, +10:u08:<port>, +8:u11:once, +19:u12:bfcp-controlled, +13:u14:according, +6:uI1:-., +7:uI2:.'', +9:u00:which, +8:u02:Once, +19:u03:BFCP-controlled, +13:u05:According, +13:u07:m=<media>, +11:u03:streams, +14:u06:following:, +10:u07:<port>, +11:u08:section, +8:u10:once, +19:u11:bfcp-controlled, +13:u13:according, +6:uI0:-., +7:uI1:.'', +9:uI2:[],'', +8:u01:Once, +19:u02:BFCP-controlled, +13:u04:According, +13:u06:m=<media>, +11:u02:streams, +14:u05:following:, +10:u06:<port>, +11:u07:section, +8:u08:('m', +19:u10:bfcp-controlled, +13:u12:according, +13:u14:m=<media>, +6:u21:Ac, +7:u22:Acc, +8:u23:Acco, +7:uI0:.'', +9:uI1:[],'', +8:u00:Once, +19:u01:BFCP-controlled, +13:u03:According, +13:u05:m=<media>, +11:u01:streams, +14:u04:following:, +10:u05:<port>, +11:u06:section, +8:u07:('m', +9:u08:media, +13:u11:according, +13:u13:m=<media>, +9:uI0:[],'', +7:uI2:..., +19:u00:BFCP-controlled, +13:u02:According, +13:u04:m=<media>, +13:u08:explained, +11:u00:streams, +14:u03:following:, +10:u04:<port>, +11:u05:section, +8:u06:('m', +9:u07:media, +8:u08:port, +13:u10:according, +13:u12:m=<media>, +15:u14:description, +6:u21:m=, +7:u22:m=<, +8:u23:m=<m, +7:uI1:..., +13:u01:According, +13:u03:m=<media>, +11:u08:meaning, +14:u02:following:, +10:u03:<port>, +11:u04:section, +8:u05:('m', +9:u06:media, +8:u07:port, +10:u08:below., +13:u11:m=<media>, +15:u13:description, +7:uI0:..., +9:uI2:('')., +13:u00:According, +13:u02:m=<media>, +13:u07:explained, +10:u08:field., +14:u01:following:, +10:u02:<port>, +11:u03:section, +8:u04:('m', +9:u05:media, +8:u06:port, +10:u07:below., +10:u08:(i.e.,, +13:u10:m=<media>, +15:u12:description, +7:u22:Des, +8:u23:Desc, +9:uI1:('')., +7:uI2:""., +13:u01:m=<media>, +13:u06:explained, +11:u07:meaning, +14:u00:following:, +10:u01:<port>, +11:u02:section, +8:u03:('m', +9:u04:media, +8:u05:port, +10:u06:below., +10:u07:(i.e.,, +15:u11:description, +13:u14:explained, +9:uI0:('')., +7:uI1:""., +13:u00:m=<media>, +13:u05:explained, +11:u06:meaning, +10:u07:field., +10:u00:<port>, +11:u01:section, +8:u02:('m', +9:u03:media, +8:u04:port, +10:u05:below., +10:u06:(i.e.,, +15:u10:description, +13:u13:explained, +11:u14:meaning, +7:uI0:""., +13:u04:explained, +11:u05:meaning, +10:u06:field., +13:u08:attribute, +11:u00:section, +8:u01:('m', +9:u02:media, +8:u03:port, +10:u04:below., +10:u05:(i.e.,, +9:u08:rules, +13:u12:explained, +11:u13:meaning, +10:u14:field., +6:u21:ex, +7:u22:exp, +8:u23:expl, +9:uI2:(..,), +13:u03:explained, +11:u04:meaning, +10:u05:field., +8:u00:('m', +9:u01:media, +8:u02:port, +10:u03:below., +10:u04:(i.e.,, +9:u07:rules, +14:u08:(discussed, +13:u11:explained, +11:u12:meaning, +10:u13:field., +6:u21:me, +7:u22:mea, +8:u23:mean, +9:uI1:(..,), +13:u02:explained, +11:u03:meaning, +10:u04:field., +13:u07:attribute, +9:u00:media, +8:u01:port, +10:u02:below., +10:u03:(i.e.,, +9:u06:rules, +14:u07:(discussed, +13:u10:explained, +11:u11:meaning, +10:u12:field., +6:u21:fi, +7:u22:fie, +8:u23:fiel, +9:uI0:(..,), +13:u01:explained, +11:u02:meaning, +10:u03:field., +13:u06:attribute, +8:u00:port, +10:u01:below., +10:u02:(i.e.,, +9:u05:rules, +14:u06:(discussed, +8:u08:case, +11:u10:meaning, +10:u11:field., +13:u14:attribute, +9:uI2:[].'', +13:u00:explained, +11:u01:meaning, +10:u02:field., +13:u05:attribute, +10:u00:below., +10:u01:(i.e.,, +9:u04:rules, +14:u05:(discussed, +8:u07:case, +10:u08:remote, +10:u10:field., +13:u13:attribute, +8:u14:port, +9:uI1:[].'', +8:uI2:(.),, +11:u00:meaning, +10:u01:field., +13:u04:attribute, +10:u00:(i.e.,, +9:u03:rules, +14:u04:(discussed, +8:u06:case, +10:u07:remote, +7:u08:UDP, +13:u12:attribute, +8:u13:port, +6:u21:at, +7:u22:att, +8:u23:attr, +9:uI0:[].'', +8:uI1:(.),, +10:u00:field., +13:u03:attribute, +14:u08:regardless, +9:u02:rules, +14:u03:(discussed, +8:u05:case, +10:u06:remote, +7:u07:UDP, +13:u11:attribute, +8:u12:port, +6:u21:po, +7:u22:por, +8:u23:port, +8:uI0:(.),, +13:u02:attribute, +9:u01:rules, +14:u02:(discussed, +8:u04:case, +10:u05:remote, +7:u06:UDP, +13:u10:attribute, +8:u11:port, +13:u01:attribute, +14:u07:regardless, +18:u08:TCP/DTLS/BFCP,, +9:u00:rules, +14:u01:(discussed, +8:u03:case, +10:u04:remote, +7:u05:UDP, +8:u10:port, +13:u00:attribute, +14:u06:regardless, +14:u00:(discussed, +8:u02:case, +10:u03:remote, +7:u04:UDP, +17:u08:TCP/TLS/BFCP,, +14:u14:regardless, +14:u05:regardless, +18:u07:TCP/DTLS/BFCP,, +14:u08:'TCP/BFCP', +8:u01:case, +10:u02:remote, +7:u03:UDP, +17:u07:TCP/TLS/BFCP,, +9:u08:proto, +14:u13:regardless, +7:uI2:''., +14:u04:regardless, +18:u06:TCP/DTLS/BFCP,, +15:u08:encryption,, +8:u00:case, +10:u01:remote, +7:u02:UDP, +17:u06:TCP/TLS/BFCP,, +9:u07:proto, +14:u12:regardless, +18:u14:tcp/dtls/bfcp,, +5:u20:r, +6:u21:re, +7:u22:reg, +8:u23:rega, +7:uI1:''., +7:uI2::/,, +14:u03:regardless, +18:u05:TCP/DTLS/BFCP,, +14:u07:'TCP/BFCP', +14:u08:endpoints., +10:u00:remote, +7:u01:UDP, +17:u05:TCP/TLS/BFCP,, +9:u06:proto, +14:u11:regardless, +18:u13:tcp/dtls/bfcp,, +7:uI0:''., +7:uI1::/,, +15:uI2://,//,/,//., +14:u02:regardless, +18:u04:TCP/DTLS/BFCP,, +14:u06:'TCP/BFCP', +15:u07:encryption,, +7:u00:UDP, +17:u04:TCP/TLS/BFCP,, +9:u05:proto, +14:u10:regardless, +18:u12:tcp/dtls/bfcp,, +14:u14:'tcp/bfcp', +6:u21:TC, +7:u22:TCP, +8:u23:TCP/, +6:uH2:10, +7:uI0::/,, +15:uI1://,//,/,//., +14:u01:regardless, +18:u03:TCP/DTLS/BFCP,, +14:u05:'TCP/BFCP', +15:u06:encryption,, +14:u07:endpoints., +17:u03:TCP/TLS/BFCP,, +9:u04:proto, +18:u11:tcp/dtls/bfcp,, +14:u13:'tcp/bfcp', +15:u14:encryption,, +6:uH1:10, +15:uI0://,//,/,//., +7:uI2:'/', +14:u00:regardless, +18:u02:TCP/DTLS/BFCP,, +14:u04:'TCP/BFCP', +15:u05:encryption,, +14:u06:endpoints., +17:u02:TCP/TLS/BFCP,, +9:u03:proto, +18:u10:tcp/dtls/bfcp,, +14:u12:'tcp/bfcp', +15:u13:encryption,, +14:u14:endpoints., +5:u20:', +6:u21:'T, +7:u22:'TC, +8:u23:'TCP, +6:uH0:10, +7:uI1:'/', +18:u01:TCP/DTLS/BFCP,, +14:u03:'TCP/BFCP', +15:u04:encryption,, +14:u05:endpoints., +17:u01:TCP/TLS/BFCP,, +9:u02:proto, +6:u08:4], +14:u11:'tcp/bfcp', +15:u12:encryption,, +14:u13:endpoints., +8:u23:encr, +7:uI0:'/', +18:u00:TCP/DTLS/BFCP,, +14:u02:'TCP/BFCP', +15:u03:encryption,, +14:u04:endpoints., +17:u00:TCP/TLS/BFCP,, +9:u01:proto, +6:u07:4], +14:u10:'tcp/bfcp', +15:u11:encryption,, +14:u12:endpoints., +7:u22:end, +8:u23:endp, +14:u01:'TCP/BFCP', +15:u02:encryption,, +14:u03:endpoints., +9:u00:proto, +6:u06:4], +15:u10:encryption,, +14:u11:endpoints., +14:u00:'TCP/BFCP', +15:u01:encryption,, +14:u02:endpoints., +18:u08:'TCP/TLS/BFCP', +6:u05:4], +14:u10:endpoints., +15:u00:encryption,, +14:u01:endpoints., +6:u04:4], +14:u00:endpoints., +18:u07:'TCP/TLS/BFCP', +13:u08:endpoints, +6:u03:4], +18:u06:'TCP/TLS/BFCP', +14:u08:'UDP/BFCP', +6:u02:4], +8:u08:that, +18:u14:'tcp/tls/bfcp', +18:u05:'TCP/TLS/BFCP', +13:u07:endpoints, +14:u08:encryption, +6:u01:4], +8:u07:that, +18:u13:'tcp/tls/bfcp', +8:uI2:'//', +18:u04:'TCP/TLS/BFCP', +13:u06:endpoints, +14:u07:'UDP/BFCP', +18:u08:'UDP/TLS/BFCP', +6:u00:4], +8:u06:that, +14:u08:[RFC6347]., +18:u12:'tcp/tls/bfcp', +13:u14:endpoints, +8:uI1:'//', +18:u03:'TCP/TLS/BFCP', +13:u05:endpoints, +14:u06:'UDP/BFCP', +14:u07:encryption, +15:u08:encryption., +8:u05:that, +14:u07:[RFC6347]., +18:u11:'tcp/tls/bfcp', +13:u13:endpoints, +14:u14:'udp/bfcp', +8:uI0:'//', +18:u02:'TCP/TLS/BFCP', +13:u04:endpoints, +14:u05:'UDP/BFCP', +14:u06:encryption, +18:u07:'UDP/TLS/BFCP', +12:u08:(Section, +8:u04:that, +14:u06:[RFC6347]., +18:u10:'tcp/tls/bfcp', +13:u12:endpoints, +14:u13:'udp/bfcp', +14:u14:encryption, +18:u01:'TCP/TLS/BFCP', +13:u03:endpoints, +14:u04:'UDP/BFCP', +14:u05:encryption, +18:u06:'UDP/TLS/BFCP', +15:u07:encryption., +17:u08:compatibility, +8:u03:that, +14:u05:[RFC6347]., +7:u08:9)., +13:u11:endpoints, +14:u12:'udp/bfcp', +14:u13:encryption, +18:u14:'udp/tls/bfcp', +6:u21:'U, +7:u22:'UD, +8:u23:'UDP, +18:u00:'TCP/TLS/BFCP', +13:u02:endpoints, +14:u03:'UDP/BFCP', +14:u04:encryption, +18:u05:'UDP/TLS/BFCP', +15:u06:encryption., +12:u07:(Section, +19:u08:'TCP/DTLS/BFCP', +8:u02:that, +14:u04:[RFC6347]., +7:u07:9)., +8:u08:with, +13:u10:endpoints, +14:u11:'udp/bfcp', +14:u12:encryption, +18:u13:'udp/tls/bfcp', +15:u14:encryption., +13:u01:endpoints, +14:u02:'UDP/BFCP', +14:u03:encryption, +18:u04:'UDP/TLS/BFCP', +15:u05:encryption., +12:u06:(Section, +17:u07:compatibility, +8:u01:that, +14:u03:[RFC6347]., +7:u06:9)., +8:u07:with, +14:u10:'udp/bfcp', +14:u11:encryption, +18:u12:'udp/tls/bfcp', +15:u13:encryption., +12:u14:(section, +13:u00:endpoints, +14:u01:'UDP/BFCP', +14:u02:encryption, +18:u03:'UDP/TLS/BFCP', +15:u04:encryption., +12:u05:(Section, +17:u06:compatibility, +19:u07:'TCP/DTLS/BFCP', +8:u00:that, +14:u02:[RFC6347]., +7:u05:9)., +8:u06:with, +11:u08:running, +14:u10:encryption, +18:u11:'udp/tls/bfcp', +15:u12:encryption., +12:u13:(section, +17:u14:compatibility, +14:u00:'UDP/BFCP', +14:u01:encryption, +18:u02:'UDP/TLS/BFCP', +15:u03:encryption., +12:u04:(Section, +17:u05:compatibility, +19:u06:'TCP/DTLS/BFCP', +12:u08:RTP/RTCP, +14:u01:[RFC6347]., +7:u04:9)., +8:u05:with, +11:u07:running, +14:u08:[RFC4571],, +18:u10:'udp/tls/bfcp', +15:u11:encryption., +12:u12:(section, +17:u13:compatibility, +19:u14:'tcp/dtls/bfcp', +6:u21:(S, +7:u22:(Se, +8:u23:(Sec, +14:u00:encryption, +18:u01:'UDP/TLS/BFCP', +15:u02:encryption., +12:u03:(Section, +17:u04:compatibility, +19:u05:'TCP/DTLS/BFCP', +10:u08:length, +14:u00:[RFC6347]., +7:u03:9)., +8:u04:with, +11:u06:running, +14:u07:[RFC4571],, +11:u08:packets, +15:u10:encryption., +12:u11:(section, +17:u12:compatibility, +19:u13:'tcp/dtls/bfcp', +7:u22:com, +8:u23:comp, +18:u00:'UDP/TLS/BFCP', +15:u01:encryption., +12:u02:(Section, +17:u03:compatibility, +19:u04:'TCP/DTLS/BFCP', +12:u07:RTP/RTCP, +7:u02:9)., +8:u03:with, +11:u05:running, +14:u06:[RFC4571],, +11:u07:packets, +9:u08:field, +12:u10:(section, +17:u11:compatibility, +19:u12:'tcp/dtls/bfcp', +6:u14:in, +15:u00:encryption., +12:u01:(Section, +17:u02:compatibility, +19:u03:'TCP/DTLS/BFCP', +12:u06:RTP/RTCP, +10:u07:length, +6:u08:be, +7:u01:9)., +8:u02:with, +11:u04:running, +14:u05:[RFC4571],, +11:u06:packets, +9:u07:field, +7:u08:one, +17:u10:compatibility, +19:u11:'tcp/dtls/bfcp', +6:u13:in, +12:u14:rtp/rtcp, +7:uI2:[],, +12:u00:(Section, +17:u01:compatibility, +19:u02:'TCP/DTLS/BFCP', +12:u05:RTP/RTCP, +10:u06:length, +13:u08:compliant, +7:u00:9)., +8:u01:with, +11:u03:running, +14:u04:[RFC4571],, +11:u05:packets, +9:u06:field, +7:u07:one, +8:u08:used, +19:u10:'tcp/dtls/bfcp', +6:u12:in, +12:u13:rtp/rtcp, +10:u14:length, +6:u22:in, +6:u23:in, +7:uI1:[],, +17:u00:compatibility, +19:u01:'TCP/DTLS/BFCP', +12:u04:RTP/RTCP, +10:u05:length, +6:u07:be, +8:u00:with, +11:u02:running, +14:u03:[RFC4571],, +11:u04:packets, +9:u05:field, +7:u06:one, +8:u07:used, +6:u11:in, +12:u12:rtp/rtcp, +10:u13:length, +6:u14:is, +5:u20:R, +6:u21:RT, +7:u22:RTP, +8:u23:RTP/, +7:uI0:[],, +19:u00:'TCP/DTLS/BFCP', +12:u03:RTP/RTCP, +10:u04:length, +6:u06:be, +13:u07:compliant, +9:u08:lines, +11:u01:running, +14:u02:[RFC4571],, +11:u03:packets, +9:u04:field, +7:u05:one, +8:u06:used, +7:u08:fmt, +6:u10:in, +12:u11:rtp/rtcp, +10:u12:length, +6:u13:is, +6:u14:be, +5:u20:l, +6:u21:le, +7:u22:len, +8:u23:leng, +12:u02:RTP/RTCP, +10:u03:length, +6:u05:be, +13:u06:compliant, +11:u08:contain, +11:u00:running, +14:u01:[RFC4571],, +11:u02:packets, +9:u03:field, +7:u04:one, +8:u05:used, +7:u07:fmt, +12:u10:rtp/rtcp, +10:u11:length, +6:u12:is, +6:u13:be, +13:u14:compliant, +6:u21:is, +6:u22:is, +6:u23:is, +12:u01:RTP/RTCP, +10:u02:length, +6:u04:be, +13:u05:compliant, +9:u07:lines, +9:u08:other, +14:u00:[RFC4571],, +11:u01:packets, +9:u02:field, +7:u03:one, +8:u04:used, +7:u06:fmt, +10:u10:length, +6:u11:is, +6:u12:be, +13:u13:compliant, +5:u20:b, +6:u21:be, +6:u22:be, +6:u23:be, +12:u00:RTP/RTCP, +10:u01:length, +6:u03:be, +13:u04:compliant, +9:u06:lines, +11:u07:contain, +11:u00:packets, +9:u01:field, +7:u02:one, +8:u03:used, +7:u05:fmt, +9:u08:value, +6:u10:is, +6:u11:be, +13:u12:compliant, +9:u14:lines, +9:uI2:().'', +10:u00:length, +6:u02:be, +13:u03:compliant, +9:u05:lines, +11:u06:contain, +9:u07:other, +17:u08:m=application, +9:u00:field, +7:u01:one, +8:u02:used, +7:u04:fmt, +9:u07:value, +13:u08:following, +6:u10:be, +13:u11:compliant, +9:u13:lines, +11:u14:contain, +9:uI1:().'', +6:u01:be, +13:u02:compliant, +9:u04:lines, +11:u05:contain, +9:u06:other, +7:u00:one, +8:u01:used, +7:u03:fmt, +9:u06:value, +13:u07:following, +9:u08:50000, +13:u10:compliant, +9:u12:lines, +11:u13:contain, +9:u14:other, +6:u21:li, +7:u22:lin, +8:u23:line, +9:uI0:().'', +8:uI2:"*"., +6:u00:be, +13:u01:compliant, +9:u03:lines, +11:u04:contain, +9:u05:other, +17:u07:m=application, +8:u00:used, +7:u02:fmt, +9:u05:value, +13:u06:following, +9:u07:50000, +9:u11:lines, +11:u12:contain, +9:u13:other, +8:u23:cont, +8:uI1:"*"., +13:u00:compliant, +9:u02:lines, +11:u03:contain, +9:u04:other, +17:u06:m=application, +7:u01:fmt, +9:u04:value, +13:u05:following, +9:u06:50000, +9:u10:lines, +11:u11:contain, +9:u12:other, +17:u14:m=application, +6:u21:ot, +7:u22:oth, +8:u23:othe, +8:uI0:"*"., +7:uI2:'':, +9:u01:lines, +11:u02:contain, +9:u03:other, +17:u05:m=application, +7:u00:fmt, +9:u03:value, +13:u04:following, +9:u05:50000, +11:u10:contain, +9:u11:other, +17:u13:m=application, +7:uI1:'':, +7:uI2://*, +9:u00:lines, +11:u01:contain, +9:u02:other, +17:u04:m=application, +11:u08:server), +9:u02:value, +13:u03:following, +9:u04:50000, +9:u10:other, +17:u12:m=application, +7:u22:m=a, +8:u23:m=ap, +7:uI0:'':, +7:uI1://*, +11:u00:contain, +9:u01:other, +17:u03:m=application, +9:u01:value, +13:u02:following, +9:u03:50000, +7:u08:for, +17:u11:m=application, +7:uI0://*, +8:uI2:..'', +9:u00:other, +17:u02:m=application, +11:u07:server), +9:u00:value, +13:u01:following, +9:u02:50000, +7:u07:for, +17:u10:m=application, +8:uI1:..'', +8:uI2:''-., +17:u01:m=application, +11:u06:server), +13:u00:following, +9:u01:50000, +7:u06:for, +11:u14:server), +8:uI0:..'', +8:uI1:''-., +5:uI2:(, +17:u00:m=application, +11:u05:server), +9:u00:50000, +7:u05:for, +6:u08:5], +11:u13:server), +8:uI0:''-., +5:uI1:(, +6:uI2:)., +11:u04:server), +7:u04:for, +6:u07:5], +11:u12:server), +6:u21:se, +7:u22:ser, +8:u23:serv, +5:uG2:3, +5:uI0:(, +6:uI1:)., +11:u03:server), +7:u03:for, +6:u06:5], +11:u11:server), +5:uG1:3, +6:uI0:)., +11:u02:server), +13:u08:Attribute, +7:u02:for, +6:u05:5], +11:u10:server), +5:uG0:3, +11:u01:server), +7:u01:for, +6:u04:5], +9:u08:Name:, +11:u00:server), +13:u07:Attribute, +9:u08:Usage, +7:u00:for, +6:u03:5], +9:u07:Name:, +10:u08:Value:, +13:u06:Attribute, +11:u08:Charset, +6:u02:5], +9:u06:Name:, +10:u07:Value:, +10:u08:Level:, +13:u05:Attribute, +9:u07:Usage, +7:u08:Mux, +6:u01:5], +9:u05:Name:, +10:u06:Value:, +10:u07:Level:, +14:u08:Dependent:, +13:u04:Attribute, +9:u06:Usage, +11:u07:Charset, +6:u00:5], +9:u04:Name:, +10:u05:Value:, +10:u06:Level:, +14:u07:Dependent:, +13:u08:Category:, +9:u14:usage, +6:u21:At, +7:u22:Att, +8:u23:Attr, +6:uI2::-, +13:u03:Attribute, +9:u05:Usage, +11:u06:Charset, +7:u07:Mux, +17:u08:floor-control, +9:u03:Name:, +10:u04:Value:, +10:u05:Level:, +14:u06:Dependent:, +13:u07:Category:, +13:u08:Augmented, +9:u13:usage, +11:u14:charset, +6:uI1::-, +13:u02:Attribute, +9:u04:Usage, +11:u05:Charset, +7:u06:Mux, +8:u08:role, +9:u02:Name:, +10:u03:Value:, +10:u04:Level:, +14:u05:Dependent:, +13:u06:Category:, +13:u07:Augmented, +5:u08:=, +9:u12:usage, +11:u13:charset, +7:u14:mux, +7:u22:Usa, +8:u23:Usag, +6:uI0::-, +13:u01:Attribute, +9:u03:Usage, +11:u04:Charset, +7:u05:Mux, +17:u07:floor-control, +6:u08:An, +9:u01:Name:, +10:u02:Value:, +10:u03:Level:, +14:u04:Dependent:, +13:u05:Category:, +13:u06:Augmented, +5:u07:=, +9:u11:usage, +11:u12:charset, +7:u13:mux, +6:u21:Ch, +7:u22:Cha, +8:u23:Char, +13:u00:Attribute, +9:u02:Usage, +11:u03:Charset, +7:u04:Mux, +17:u06:floor-control, +8:u07:role, +9:u00:Name:, +10:u01:Value:, +10:u02:Level:, +14:u03:Dependent:, +13:u04:Category:, +13:u05:Augmented, +5:u06:=, +12:u08:endpoint, +9:u10:usage, +11:u11:charset, +7:u12:mux, +17:u14:floor-control, +5:u20:M, +6:u21:Mu, +7:u22:Mux, +7:u23:Mux, +7:uI2:[]:, +9:u01:Usage, +11:u02:Charset, +7:u03:Mux, +17:u05:floor-control, +8:u06:role, +6:u07:An, +11:u08:c-only:, +10:u00:Value:, +10:u01:Level:, +14:u02:Dependent:, +13:u03:Category:, +13:u04:Augmented, +5:u05:=, +12:u07:endpoint, +11:u08:willing, +11:u10:charset, +7:u11:mux, +17:u13:floor-control, +8:u14:role, +7:uI1:[]:, +8:uI2:-*(), +9:u00:Usage, +11:u01:Charset, +7:u02:Mux, +17:u04:floor-control, +8:u05:role, +6:u06:An, +11:u08:s-only:, +10:u00:Level:, +14:u01:Dependent:, +13:u02:Category:, +13:u03:Augmented, +5:u04:=, +12:u06:endpoint, +11:u07:willing, +7:u10:mux, +17:u12:floor-control, +8:u13:role, +6:u14:an, +7:uI0:[]:, +8:uI1:-*(), +15:uI2:"-"/"-"/"-", +11:u00:Charset, +7:u01:Mux, +17:u03:floor-control, +8:u04:role, +6:u05:An, +11:u07:c-only:, +14:u00:Dependent:, +13:u01:Category:, +13:u02:Augmented, +5:u03:=, +12:u05:endpoint, +11:u06:willing, +17:u11:floor-control, +8:u12:role, +6:u13:an, +6:u21:ro, +7:u22:rol, +8:u23:role, +8:uI0:-*(), +15:uI1:"-"/"-"/"-", +7:u00:Mux, +17:u02:floor-control, +8:u03:role, +6:u04:An, +11:u06:c-only:, +11:u07:s-only:, +13:u00:Category:, +13:u01:Augmented, +5:u02:=, +12:u04:endpoint, +11:u05:willing, +12:u08:inserted, +17:u10:floor-control, +8:u11:role, +6:u12:an, +11:u14:c-only:, +6:u21:An, +6:u22:An, +6:u23:An, +15:uI0:"-"/"-"/"-", +6:uI2:-:, +17:u01:floor-control, +8:u02:role, +6:u03:An, +11:u05:c-only:, +11:u06:s-only:, +11:u08:answer,, +13:u00:Augmented, +5:u01:=, +12:u03:endpoint, +11:u04:willing, +12:u07:inserted, +10:u08:values, +8:u10:role, +6:u11:an, +11:u13:c-only:, +11:u14:s-only:, +6:uI1:-:, +7:uI2:-:., +17:u00:floor-control, +8:u01:role, +6:u02:An, +11:u04:c-only:, +11:u05:s-only:, +5:u00:=, +12:u02:endpoint, +11:u03:willing, +12:u06:inserted, +10:u07:values, +6:u10:an, +11:u12:c-only:, +11:u13:s-only:, +6:u21:c-, +7:u22:c-o, +8:u23:c-on, +6:uI0:-:, +7:uI1:-:., +8:u00:role, +6:u01:An, +11:u03:c-only:, +11:u04:s-only:, +11:u07:answer,, +12:u01:endpoint, +11:u02:willing, +12:u05:inserted, +10:u06:values, +13:u08:"s-only"., +11:u11:c-only:, +11:u12:s-only:, +6:u21:s-, +7:u22:s-o, +8:u23:s-on, +7:uI0:-:., +6:u00:An, +11:u02:c-only:, +11:u03:s-only:, +11:u06:answer,, +6:u08:In, +12:u00:endpoint, +11:u01:willing, +12:u04:inserted, +10:u05:values, +13:u07:"s-only"., +11:u08:offerer, +11:u10:c-only:, +11:u11:s-only:, +11:u14:answer,, +13:uI2:("-""-")., +11:u01:c-only:, +11:u02:s-only:, +11:u05:answer,, +9:u08:meant, +11:u00:willing, +12:u03:inserted, +10:u04:values, +13:u06:"s-only"., +11:u07:offerer, +14:u08:[RFC4583],, +11:u10:s-only:, +11:u13:answer,, +6:u14:or, +13:uI1:("-""-")., +9:uI2:,:"-", +11:u00:c-only:, +11:u01:s-only:, +11:u04:answer,, +6:u07:In, +10:u08:client, +12:u02:inserted, +10:u03:values, +13:u05:"s-only"., +11:u06:offerer, +14:u07:[RFC4583],, +11:u12:answer,, +6:u13:or, +13:uI0:("-""-")., +9:uI1:,:"-", +9:uI2:"-".., +11:u00:s-only:, +11:u03:answer,, +6:u06:In, +9:u07:meant, +10:u08:taking, +12:u01:inserted, +10:u02:values, +13:u04:"s-only"., +11:u05:offerer, +14:u06:[RFC4583],, +11:u11:answer,, +6:u12:or, +6:u21:or, +6:u22:or, +6:u23:or, +9:uI0:,:"-", +9:uI1:"-".., +11:u02:answer,, +6:u05:In, +9:u06:meant, +10:u07:client, +12:u00:inserted, +10:u01:values, +13:u03:"s-only"., +11:u04:offerer, +14:u05:[RFC4583],, +13:u08:different, +11:u10:answer,, +6:u11:or, +9:u14:meant, +9:uI0:"-".., +12:uI2:[],,"-",, +11:u01:answer,, +6:u04:In, +9:u05:meant, +10:u06:client, +10:u07:taking, +14:u08:particular, +10:u00:values, +13:u02:"s-only"., +11:u03:offerer, +14:u04:[RFC4583],, +13:u07:different, +11:u08:feature, +6:u10:or, +9:u13:meant, +10:u14:client, +6:u22:In, +6:u23:In, +12:uI1:[],,"-",, +11:u00:answer,, +6:u03:In, +9:u04:meant, +10:u05:client, +10:u06:taking, +13:u01:"s-only"., +11:u02:offerer, +14:u03:[RFC4583],, +13:u06:different, +11:u07:feature, +8:u08:many, +9:u12:meant, +10:u13:client, +10:u14:taking, +12:uI0:[],,"-",, +6:u02:In, +9:u03:meant, +10:u04:client, +10:u05:taking, +14:u07:particular, +11:u08:"c-only, +13:u00:"s-only"., +11:u01:offerer, +14:u02:[RFC4583],, +13:u05:different, +11:u06:feature, +8:u07:many, +9:u11:meant, +10:u12:client, +10:u13:taking, +6:u21:cl, +7:u22:cli, +8:u23:clie, +6:u01:In, +9:u02:meant, +10:u03:client, +10:u04:taking, +14:u06:particular, +8:u08:MUST, +11:u00:offerer, +14:u01:[RFC4583],, +13:u04:different, +11:u05:feature, +8:u06:many, +13:u08:s-only")., +9:u10:meant, +10:u11:client, +10:u12:taking, +14:u14:particular, +6:u21:ta, +7:u22:tak, +8:u23:taki, +6:u00:In, +9:u01:meant, +10:u02:client, +10:u03:taking, +14:u05:particular, +11:u07:"c-only, +6:u08:an, +14:u00:[RFC4583],, +13:u03:different, +11:u04:feature, +8:u05:many, +13:u07:s-only")., +7:u08:NOT, +10:u10:client, +10:u11:taking, +14:u13:particular, +12:u14:endpoint, +7:uI2:"-", +9:u00:meant, +10:u01:client, +10:u02:taking, +14:u04:particular, +11:u06:"c-only, +8:u07:MUST, +11:u08:process, +13:u02:different, +11:u03:feature, +8:u04:many, +13:u06:s-only")., +7:u07:NOT, +10:u10:taking, +14:u12:particular, +12:u13:endpoint, +11:u14:"c-only, +6:u21:pa, +7:u22:par, +8:u23:part, +7:uI1:"-", +10:u00:client, +10:u01:taking, +14:u03:particular, +11:u05:"c-only, +8:u06:MUST, +6:u07:an, +9:u08:Also,, +13:u01:different, +11:u02:feature, +8:u03:many, +13:u05:s-only")., +7:u06:NOT, +6:u08:it, +14:u11:particular, +12:u12:endpoint, +11:u13:"c-only, +8:u14:must, +7:uI0:"-", +10:uI2:"--")., +10:u00:taking, +14:u02:particular, +11:u04:"c-only, +8:u05:MUST, +6:u06:an, +11:u07:process, +11:u08:allowed, +13:u00:different, +11:u01:feature, +8:u02:many, +13:u04:s-only")., +7:u05:NOT, +6:u07:it, +14:u10:particular, +12:u11:endpoint, +11:u12:"c-only, +8:u13:must, +6:u21:"c, +7:u22:"c-, +8:u23:"c-o, +10:uI1:"--")., +14:u01:particular, +11:u03:"c-only, +8:u04:MUST, +6:u05:an, +11:u06:process, +9:u07:Also,, +11:u00:feature, +8:u01:many, +13:u03:s-only")., +7:u04:NOT, +6:u06:it, +12:u10:endpoint, +11:u11:"c-only, +8:u12:must, +11:u14:process, +6:u21:MU, +7:u22:MUS, +8:u23:MUST, +10:uI0:"--")., +14:u00:particular, +11:u02:"c-only, +8:u03:MUST, +6:u04:an, +11:u05:process, +9:u06:Also,, +11:u07:allowed, +8:u00:many, +13:u02:s-only")., +7:u03:NOT, +6:u05:it, +8:u08:each, +11:u10:"c-only, +8:u11:must, +11:u13:process, +9:u14:also,, +6:u22:an, +6:u23:an, +15:uI2:"--"("--")., +11:u01:"c-only, +8:u02:MUST, +6:u03:an, +11:u04:process, +9:u05:Also,, +11:u06:allowed, +10:u08:stream, +13:u01:s-only")., +7:u02:NOT, +6:u04:it, +8:u07:each, +8:u08:will, +8:u10:must, +11:u12:process, +9:u13:also,, +11:u14:allowed, +8:u23:proc, +15:uI1:"--"("--")., +11:u00:"c-only, +8:u01:MUST, +6:u02:an, +11:u03:process, +9:u04:Also,, +11:u05:allowed, +13:u00:s-only")., +7:u01:NOT, +6:u03:it, +8:u06:each, +8:u07:will, +14:u08:associated, +11:u11:process, +9:u12:also,, +11:u13:allowed, +6:u21:Al, +7:u22:Als, +8:u23:Also, +15:uI0:"--"("--")., +12:uI2:,'-''-',, +8:u00:MUST, +6:u01:an, +11:u02:process, +9:u03:Also,, +11:u04:allowed, +10:u07:stream, +6:u08:on, +7:u00:NOT, +6:u02:it, +8:u05:each, +8:u06:will, +14:u07:associated, +5:u08:1, +11:u10:process, +9:u11:also,, +11:u12:allowed, +6:u21:al, +7:u22:all, +8:u23:allo, +12:uI1:,'-''-',, +6:u00:an, +11:u01:process, +9:u02:Also,, +11:u03:allowed, +10:u06:stream, +6:u01:it, +8:u04:each, +8:u05:will, +14:u06:associated, +5:u07:1, +8:u08:what, +9:u10:also,, +11:u11:allowed, +10:u14:stream, +12:uI0:,'-''-',, +11:u00:process, +9:u01:Also,, +11:u02:allowed, +10:u05:stream, +6:u07:on, +6:u00:it, +8:u03:each, +8:u04:will, +14:u05:associated, +5:u06:1, +8:u07:what, +11:u10:allowed, +10:u13:stream, +9:u00:Also,, +11:u01:allowed, +10:u04:stream, +6:u06:on, +8:u02:each, +8:u03:will, +14:u04:associated, +5:u05:1, +8:u06:what, +10:u12:stream, +6:u14:on, +6:u21:st, +7:u22:str, +8:u23:stre, +11:u00:allowed, +10:u03:stream, +6:u05:on, +8:u01:each, +8:u02:will, +14:u03:associated, +5:u04:1, +8:u05:what, +6:u08:6], +10:u11:stream, +6:u13:on, +10:u02:stream, +6:u04:on, +8:u00:each, +8:u01:will, +14:u02:associated, +5:u03:1, +8:u04:what, +6:u07:6], +10:u10:stream, +6:u12:on, +6:u21:on, +6:u22:on, +6:u23:on, +10:u01:stream, +6:u03:on, +8:u00:will, +14:u01:associated, +5:u02:1, +8:u03:what, +6:u06:6], +6:u11:on, +10:u00:stream, +6:u02:on, +26:u08:+---------+----------+, +14:u00:associated, +5:u01:1, +8:u02:what, +6:u05:6], +6:u10:on, +6:u01:on, +5:u08:|, +5:u00:1, +8:u01:what, +6:u04:6], +6:u00:on, +26:u07:+---------+----------+, +8:u00:what, +6:u03:6], +26:u06:+---------+----------+, +5:u07:|, +6:u02:6], +26:u14:+---------+----------+, +26:u05:+---------+----------+, +5:u06:|, +6:u01:6], +10:u08:c-only, +26:u13:+---------+----------+, +5:u14:|, +23:uI2:-------------------, +26:u04:+---------+----------+, +5:u05:|, +6:u00:6], +10:u07:c-only, +10:u08:s-only, +26:u12:+---------+----------+, +5:u13:|, +5:u20:+, +6:u21:+-, +7:u22:+--, +8:u23:+---, +23:uI1:-------------------, +26:u03:+---------+----------+, +5:u04:|, +7:u08:c-s, +10:u06:c-only, +10:u07:s-only, +26:u11:+---------+----------+, +5:u12:|, +5:u20:|, +5:u21:|, +5:u22:|, +5:u23:|, +23:uI0:-------------------, +26:u02:+---------+----------+, +5:u03:|, +10:u05:c-only, +10:u06:s-only, +26:u10:+---------+----------+, +5:u11:|, +6:uI2:--, +26:u01:+---------+----------+, +5:u02:|, +7:u07:c-s, +10:u04:c-only, +10:u05:s-only, +5:u10:|, +6:uI1:--, +26:u00:+---------+----------+, +5:u01:|, +7:u06:c-s, +10:u03:c-only, +10:u04:s-only, +7:u14:c-s, +6:uI0:--, +5:u00:|, +7:u05:c-s, +10:u02:c-only, +10:u03:s-only, +7:u13:c-s, +7:u04:c-s, +10:u01:c-only, +10:u02:s-only, +7:u12:c-s, +7:u22:c-s, +7:u23:c-s, +7:u03:c-s, +10:u00:c-only, +10:u01:s-only, +7:u11:c-s, +7:u02:c-s, +13:u08:Endpoints, +10:u00:s-only, +6:u08:1:, +7:u10:c-s, +7:u01:c-s, +6:u07:1:, +7:u00:c-s, +13:u07:Endpoints, +7:u08:not, +6:u06:1:, +13:u06:Endpoints, +6:u05:1:, +12:u08:present,, +13:u05:Endpoints, +7:u07:not, +6:u04:1:, +12:u07:present,, +8:uI2:[]'', +13:u04:Endpoints, +7:u06:not, +6:u03:1:, +12:u06:present,, +7:u14:not, +6:u21:En, +7:u22:End, +8:u23:Endp, +8:uI1:[]'', +13:u03:Endpoints, +7:u05:not, +11:u08:defined, +6:u02:1:, +12:u05:present,, +7:u13:not, +11:u14:offerer, +8:uI0:[]'', +13:u02:Endpoints, +7:u04:not, +6:u01:1:, +12:u04:present,, +7:u12:not, +11:u13:offerer, +6:u21:no, +7:u22:not, +7:u23:not, +13:u01:Endpoints, +7:u03:not, +11:u07:defined, +22:u08:a=floorctrl:c-only, +6:u00:1:, +12:u03:present,, +7:u11:not, +11:u12:offerer, +13:u00:Endpoints, +7:u02:not, +11:u06:defined, +12:u02:present,, +7:u10:not, +11:u11:offerer, +11:u14:defined, +7:uI2:/'', +7:u01:not, +11:u05:defined, +22:u07:a=floorctrl:c-only, +12:u01:present,, +11:u10:offerer, +11:u13:defined, +7:uI1:/'', +7:u00:not, +11:u04:defined, +22:u06:a=floorctrl:c-only, +12:u00:present,, +11:u12:defined, +22:u14:a=floorctrl:c-only, +7:u22:def, +8:u23:defi, +7:uI0:/'', +11:u03:defined, +22:u05:a=floorctrl:c-only, +6:u08:ID, +11:u11:defined, +22:u13:a=floorctrl:c-only, +7:uI2::--, +11:u02:defined, +22:u04:a=floorctrl:c-only, +19:u08:representation., +11:u10:defined, +22:u12:a=floorctrl:c-only, +6:u21:a=, +7:u22:a=f, +8:u23:a=fl, +7:uI1::--, +11:u01:defined, +22:u03:a=floorctrl:c-only, +6:u07:ID, +22:u11:a=floorctrl:c-only, +7:uI0::--, +11:u00:defined, +22:u02:a=floorctrl:c-only, +6:u06:ID, +19:u07:representation., +22:u10:a=floorctrl:c-only, +6:u14:id, +22:u01:a=floorctrl:c-only, +6:u05:ID, +19:u06:representation., +6:u13:id, +19:u14:representation., +22:u00:a=floorctrl:c-only, +6:u04:ID, +19:u05:representation., +6:u08:7], +6:u12:id, +19:u13:representation., +6:u21:ID, +6:u22:ID, +6:u23:ID, +6:u03:ID, +19:u04:representation., +6:u07:7], +6:u11:id, +19:u12:representation., +7:u22:rep, +8:u23:repr, +6:u02:ID, +19:u03:representation., +6:u06:7], +6:u10:id, +19:u11:representation., +6:u01:ID, +19:u02:representation., +6:u05:7], +19:u10:representation., +6:u00:ID, +19:u01:representation., +6:u04:7], +19:u00:representation., +6:u03:7], +6:u02:7], +6:u01:7], +6:u00:7], +17:u08:conference-id, +9:u08:DIGIT, +17:u07:conference-id, +17:u06:conference-id, +9:u07:DIGIT, +17:u08:COMMON-HEADER, +11:u08:maximum, +17:u14:conference-id, +17:u05:conference-id, +9:u06:DIGIT, +11:u07:maximum, +10:u08:format, +17:u13:conference-id, +9:u14:digit, +6:uI2:-*, +17:u04:conference-id, +9:u05:DIGIT, +17:u07:COMMON-HEADER, +11:u06:maximum, +10:u07:format, +17:u12:conference-id, +9:u13:digit, +8:u23:conf, +6:uI1:-*, +17:u03:conference-id, +9:u04:DIGIT, +17:u06:COMMON-HEADER, +11:u05:maximum, +10:u06:format, +17:u11:conference-id, +9:u12:digit, +17:u14:common-header, +6:u21:DI, +7:u22:DIG, +8:u23:DIGI, +6:uI0:-*, +17:u02:conference-id, +9:u03:DIGIT, +17:u05:COMMON-HEADER, +11:u04:maximum, +10:u05:format, +17:u10:conference-id, +9:u11:digit, +17:u13:common-header, +12:uI2:-[-.--]., +17:u01:conference-id, +9:u02:DIGIT, +17:u04:COMMON-HEADER, +11:u03:maximum, +10:u04:format, +9:u10:digit, +17:u12:common-header, +6:u21:CO, +7:u22:COM, +8:u23:COMM, +5:uG2:4, +12:uI1:-[-.--]., +17:u00:conference-id, +9:u01:DIGIT, +17:u03:COMMON-HEADER, +11:u02:maximum, +10:u03:format, +17:u11:common-header, +5:uG1:4, +12:uI0:-[-.--]., +9:u00:DIGIT, +17:u02:COMMON-HEADER, +11:u01:maximum, +10:u02:format, +17:u10:common-header, +5:uG0:4, +17:u01:COMMON-HEADER, +11:u00:maximum, +10:u01:format, +7:uI2:'-., +17:u00:COMMON-HEADER, +10:u00:format, +9:u14:value, +7:uI1:'-., +9:u13:value, +7:uI0:'-., +6:u08:8], +9:u12:value, +5:u20:v, +6:u21:va, +7:u22:val, +8:u23:valu, +6:u07:8], +9:u11:value, +6:u06:8], +9:u10:value, +6:u05:8], +6:u04:8], +6:u03:8], +6:u02:8], +6:u01:8], +6:u00:8], +11:u08:user-id, +11:u07:user-id, +11:u06:user-id, +11:u14:user-id, +11:u05:user-id, +11:u13:user-id, +11:u04:user-id, +11:u12:user-id, +5:u20:u, +6:u21:us, +7:u22:use, +8:u23:user, +11:u03:user-id, +11:u11:user-id, +11:u02:user-id, +11:u10:user-id, +11:u01:user-id, +11:u00:user-id, +19:u08:representation,, +11:u08:conveys, +14:u08:controlled, +11:u07:conveys, +19:u07:representation,, +11:u06:conveys, +19:u06:representation,, +14:u07:controlled, +11:u05:conveys, +19:u14:representation,, +19:u05:representation,, +14:u06:controlled, +11:u04:conveys, +19:u13:representation,, +14:u14:controlled, +6:uI2:,-, +19:u04:representation,, +14:u05:controlled, +11:u03:conveys, +6:u08:9], +19:u12:representation,, +14:u13:controlled, +6:uI1:,-, +19:u03:representation,, +14:u04:controlled, +11:u02:conveys, +6:u07:9], +19:u11:representation,, +14:u12:controlled, +6:uI0:,-, +19:u02:representation,, +14:u03:controlled, +11:u01:conveys, +6:u06:9], +19:u10:representation,, +14:u11:controlled, +19:u01:representation,, +14:u02:controlled, +11:u00:conveys, +6:u05:9], +14:u10:controlled, +19:u00:representation,, +14:u01:controlled, +6:u04:9], +14:u00:controlled, +6:u03:9], +6:u02:9], +6:u01:9], +6:u00:9], +12:u08:floor-id, +12:u07:floor-id, +9:u08:token, +12:u06:floor-id, +12:u14:floor-id, +12:u05:floor-id, +9:u07:token, +12:u08:FLOOR-ID, +12:u13:floor-id, +12:uI2:-*":"*(), +12:u04:floor-id, +9:u06:token, +12:u12:floor-id, +9:u14:token, +12:uI1:-*":"*(), +12:u03:floor-id, +9:u05:token, +12:u07:FLOOR-ID, +12:u11:floor-id, +9:u13:token, +12:uI0:-*":"*(), +12:u02:floor-id, +9:u04:token, +12:u06:FLOOR-ID, +12:u10:floor-id, +9:u12:token, +7:u22:tok, +8:u23:toke, +12:u01:floor-id, +9:u03:token, +12:u05:FLOOR-ID, +9:u11:token, +12:u00:floor-id, +9:u02:token, +12:u04:FLOOR-ID, +9:u10:token, +5:u20:F, +6:u21:FL, +7:u22:FLO, +8:u23:FLOO, +9:u01:token, +12:u03:FLOOR-ID, +9:u08:Note:, +8:u14:with, +9:u00:token, +12:u02:FLOOR-ID, +12:u08:Although, +8:u13:with, +9:uI2:''[]., +12:u01:FLOOR-ID, +9:u07:Note:, +11:u08:vendors, +8:u12:with, +6:u21:wi, +7:u22:wit, +8:u23:with, +9:uI1:''[]., +12:u00:FLOOR-ID, +9:u06:Note:, +12:u07:Although, +8:u11:with, +9:u14:note:, +9:uI0:''[]., +9:u05:Note:, +12:u06:Although, +11:u07:vendors, +16:u08:interpreting, +8:u10:with, +9:u13:note:, +12:u14:although, +11:uI2::[]'-'., +9:u04:Note:, +12:u05:Although, +11:u06:vendors, +14:u08:'m-stream', +9:u12:note:, +12:u13:although, +11:u14:vendors, +5:u20:N, +6:u21:No, +7:u22:Not, +8:u23:Note, +11:uI1::[]'-'., +6:uI2:-,, +9:u03:Note:, +12:u04:Although, +11:u05:vendors, +16:u07:interpreting, +14:u07:'m-stream', +9:u11:note:, +12:u12:although, +11:u13:vendors, +7:u22:Alt, +8:u23:Alth, +11:uI0::[]'-'., +6:uI1:-,, +9:u02:Note:, +12:u03:Although, +11:u04:vendors, +16:u06:interpreting, +14:u06:'m-stream', +9:u10:note:, +12:u11:although, +11:u12:vendors, +16:u14:interpreting, +6:u21:ve, +7:u22:ven, +8:u23:vend, +6:uI0:-,, +9:u01:Note:, +12:u02:Although, +11:u03:vendors, +16:u05:interpreting, +11:u08:integer, +14:u05:'m-stream', +12:u10:although, +11:u11:vendors, +16:u13:interpreting, +6:u21:as, +6:u22:as, +6:u23:as, +10:uI2:'-'''., +9:u00:Note:, +12:u01:Although, +11:u02:vendors, +16:u04:interpreting, +14:u04:'m-stream', +11:u10:vendors, +16:u12:interpreting, +7:u22:int, +8:u23:inte, +10:uI1:'-'''., +12:u00:Although, +11:u01:vendors, +16:u03:interpreting, +11:u07:integer, +14:u03:'m-stream', +16:u11:interpreting, +10:uI0:'-'''., +11:u00:vendors, +16:u02:interpreting, +11:u06:integer, +14:u02:'m-stream', +16:u10:interpreting, +11:u14:integer, +16:u01:interpreting, +11:u05:integer, +14:u01:'m-stream', +11:u13:integer, +16:u00:interpreting, +11:u04:integer, +14:u00:'m-stream', +7:u08:10], +11:u12:integer, +11:u03:integer, +7:u07:10], +11:u11:integer, +11:u02:integer, +7:u06:10], +11:u10:integer, +11:u01:integer, +7:u05:10], +11:u00:integer, +7:u04:10], +7:u03:10], +7:u02:10], +7:u01:10], +7:u00:10], +16:u08:bfcp-version, +11:u08:version, +16:u07:bfcp-version, +16:u06:bfcp-version, +11:u07:version, +11:u08:1*DIGIT, +16:u14:bfcp-version, +16:u05:bfcp-version, +11:u06:version, +11:u07:1*DIGIT, +16:u13:bfcp-version, +11:u14:version, +16:u04:bfcp-version, +11:u05:version, +11:u06:1*DIGIT, +16:u12:bfcp-version, +11:u13:version, +5:u14:=, +6:u21:bf, +7:u22:bfc, +8:u23:bfcp, +16:u03:bfcp-version, +11:u04:version, +11:u05:1*DIGIT, +16:u11:bfcp-version, +11:u12:version, +5:u13:=, +7:u22:ver, +8:u23:vers, +5:uI2:*, +16:u02:bfcp-version, +11:u03:version, +11:u04:1*DIGIT, +16:u10:bfcp-version, +11:u11:version, +5:u12:=, +5:u20:=, +5:u21:=, +5:u22:=, +5:u23:=, +5:uI1:*, +16:u01:bfcp-version, +11:u02:version, +12:u08:version,, +11:u03:1*DIGIT, +13:u08:supported, +11:u10:version, +5:u11:=, +5:uI0:*, +16:u00:bfcp-version, +11:u01:version, +13:u08:"Version", +11:u02:1*DIGIT, +13:u07:supported, +5:u10:=, +11:u00:version, +12:u07:version,, +34:u08:[I-D.ietf-bfcpbis-rfc4582bis]., +11:u01:1*DIGIT, +13:u06:supported, +8:uI2:''(), +12:u06:version,, +13:u07:"Version", +11:u00:1*DIGIT, +13:u05:supported, +12:u14:version,, +8:uI1:''(), +12:u05:version,, +13:u06:"Version", +34:u07:[I-D.ietf-bfcpbis-rfc4582bis]., +13:u04:supported, +12:u13:version,, +13:u14:"version", +8:uI0:''(), +12:u04:version,, +13:u05:"Version", +34:u06:[I-D.ietf-bfcpbis-rfc4582bis]., +13:u08:'bfcpver', +13:u03:supported, +12:u12:version,, +13:u13:"version", +34:u14:[i-d.ietf-bfcpbis-rfc4582bis]., +7:uI2:""-, +12:u03:version,, +13:u04:"Version", +34:u05:[I-D.ietf-bfcpbis-rfc4582bis]., +13:u02:supported, +12:u11:version,, +13:u12:"version", +34:u13:[i-d.ietf-bfcpbis-rfc4582bis]., +6:u21:"V, +7:u22:"Ve, +8:u23:"Ver, +7:uI1:""-, +11:uI2:[-.--]., +12:u02:version,, +13:u03:"Version", +34:u04:[I-D.ietf-bfcpbis-rfc4582bis]., +13:u07:'bfcpver', +13:u01:supported, +12:u10:version,, +13:u11:"version", +34:u12:[i-d.ietf-bfcpbis-rfc4582bis]., +6:u21:[I, +7:u22:[I-, +8:u23:[I-D, +7:uI0:""-, +11:uI1:[-.--]., +7:uI2:-/., +12:u01:version,, +13:u02:"Version", +34:u03:[I-D.ietf-bfcpbis-rfc4582bis]., +13:u06:'bfcpver', +13:u00:supported, +13:u10:"version", +34:u11:[i-d.ietf-bfcpbis-rfc4582bis]., +13:u14:'bfcpver', +11:uI0:[-.--]., +7:uI1:-/., +12:u00:version,, +13:u01:"Version", +34:u02:[I-D.ietf-bfcpbis-rfc4582bis]., +13:u05:'bfcpver', +34:u08:[I-D.ietf-bfcpbis-rfc4582bis]:, +34:u10:[i-d.ietf-bfcpbis-rfc4582bis]., +13:u13:'bfcpver', +12:u14:present,, +7:uI0:-/., +8:uI2:''.,, +13:u00:"Version", +34:u01:[I-D.ietf-bfcpbis-rfc4582bis]., +13:u04:'bfcpver', +8:u08:when, +13:u12:'bfcpver', +12:u13:present,, +9:u14:field, +6:u21:'b, +7:u22:'bf, +8:u23:'bfc, +8:uI1:''.,, +34:u00:[I-D.ietf-bfcpbis-rfc4582bis]., +13:u03:'bfcpver', +34:u07:[I-D.ietf-bfcpbis-rfc4582bis]:, +13:u08:transport, +8:u07:when, +11:u08:default, +13:u11:'bfcpver', +12:u12:present,, +9:u13:field, +7:u22:pre, +8:u23:pres, +8:uI0:''.,, +13:u02:'bfcpver', +34:u06:[I-D.ietf-bfcpbis-rfc4582bis]:, +8:u08:from, +8:u06:when, +11:u07:default, +13:u10:'bfcpver', +12:u11:present,, +9:u12:field, +34:u14:[i-d.ietf-bfcpbis-rfc4582bis]:, +13:u01:'bfcpver', +34:u05:[I-D.ietf-bfcpbis-rfc4582bis]:, +13:u07:transport, +8:u05:when, +11:u06:default, +12:u10:present,, +9:u11:field, +34:u13:[i-d.ietf-bfcpbis-rfc4582bis]:, +11:uI2:[-.--]:, +13:u00:'bfcpver', +34:u04:[I-D.ietf-bfcpbis-rfc4582bis]:, +13:u06:transport, +8:u07:from, +8:u04:when, +11:u05:default, +9:u10:field, +34:u12:[i-d.ietf-bfcpbis-rfc4582bis]:, +13:u14:transport, +11:uI1:[-.--]:, +7:uI2:"",, +34:u03:[I-D.ietf-bfcpbis-rfc4582bis]:, +13:u05:transport, +8:u06:from, +8:u03:when, +11:u04:default, +34:u11:[i-d.ietf-bfcpbis-rfc4582bis]:, +13:u13:transport, +8:u14:from, +11:uI0:[-.--]:, +7:uI1:"",, +34:u02:[I-D.ietf-bfcpbis-rfc4582bis]:, +13:u04:transport, +8:u05:from, +8:u02:when, +11:u03:default, +34:u10:[i-d.ietf-bfcpbis-rfc4582bis]:, +13:u12:transport, +8:u13:from, +6:u21:tr, +7:u22:tra, +8:u23:tran, +7:uI0:"",, +10:uI2:''()'', +34:u01:[I-D.ietf-bfcpbis-rfc4582bis]:, +13:u03:transport, +8:u04:from, +44:u08:[I-D.ietf-mmusic-sdp-bundle-negotiation], +8:u01:when, +11:u02:default, +13:u11:transport, +8:u12:from, +6:u21:fr, +7:u22:fro, +8:u23:from, +10:uI1:''()'', +34:u00:[I-D.ietf-bfcpbis-rfc4582bis]:, +13:u02:transport, +8:u03:from, +12:u08:multiple, +8:u00:when, +11:u01:default, +11:u08:defines, +13:u10:transport, +8:u11:from, +7:u22:sec, +8:u23:sect, +5:uG2:5, +10:uI0:''()'', +13:u01:transport, +8:u02:from, +44:u07:[I-D.ietf-mmusic-sdp-bundle-negotiation], +11:u00:default, +11:u07:defines, +8:u10:from, +5:uG1:5, +13:u00:transport, +8:u01:from, +44:u06:[I-D.ietf-mmusic-sdp-bundle-negotiation], +12:u07:multiple, +12:u08:streams., +11:u06:defines, +10:u08:define, +44:u14:[i-d.ietf-mmusic-sdp-bundle-negotiation], +5:uG0:5, +8:u00:from, +44:u05:[I-D.ietf-mmusic-sdp-bundle-negotiation], +12:u06:multiple, +11:u05:defines, +10:u07:define, +14:u08:Therefore,, +44:u13:[i-d.ietf-mmusic-sdp-bundle-negotiation], +12:u14:multiple, +12:uI2:[-.----], +44:u04:[I-D.ietf-mmusic-sdp-bundle-negotiation], +12:u05:multiple, +12:u07:streams., +11:u04:defines, +10:u06:define, +14:u07:Therefore,, +44:u12:[i-d.ietf-mmusic-sdp-bundle-negotiation], +12:u13:multiple, +12:uI1:[-.----], +44:u03:[I-D.ietf-mmusic-sdp-bundle-negotiation], +12:u04:multiple, +12:u06:streams., +11:u03:defines, +10:u05:define, +14:u06:Therefore,, +44:u11:[i-d.ietf-mmusic-sdp-bundle-negotiation], +12:u12:multiple, +12:u14:streams., +6:u21:mu, +7:u22:mul, +8:u23:mult, +12:uI0:[-.----], +44:u02:[I-D.ietf-mmusic-sdp-bundle-negotiation], +12:u03:multiple, +12:u05:streams., +11:u02:defines, +10:u04:define, +14:u05:Therefore,, +7:u08:11], +44:u10:[i-d.ietf-mmusic-sdp-bundle-negotiation], +12:u11:multiple, +12:u13:streams., +44:u01:[I-D.ietf-mmusic-sdp-bundle-negotiation], +12:u02:multiple, +12:u04:streams., +11:u01:defines, +10:u03:define, +14:u04:Therefore,, +7:u07:11], +12:u10:multiple, +12:u12:streams., +44:u00:[I-D.ietf-mmusic-sdp-bundle-negotiation], +12:u01:multiple, +12:u03:streams., +11:u00:defines, +10:u02:define, +14:u03:Therefore,, +7:u06:11], +12:u11:streams., +12:u00:multiple, +12:u02:streams., +10:u08:BUNDLE, +10:u01:define, +14:u02:Therefore,, +7:u05:11], +12:u10:streams., +12:u01:streams., +10:u00:define, +14:u01:Therefore,, +7:u04:11], +9:u08:group, +12:u00:streams., +10:u07:BUNDLE, +14:u00:Therefore,, +7:u03:11], +9:u07:group, +10:u06:BUNDLE, +40:u08:[I-D.ietf-mmusic-sdp-mux-attributes], +7:u02:11], +9:u06:group, +10:u14:bundle, +10:u05:BUNDLE, +7:u01:11], +9:u05:group, +10:u13:bundle, +13:uI2:[-.----]., +10:u04:BUNDLE, +40:u07:[I-D.ietf-mmusic-sdp-mux-attributes], +7:u00:11], +9:u04:group, +10:u12:bundle, +6:u21:BU, +7:u22:BUN, +8:u23:BUND, +13:uI1:[-.----]., +10:u03:BUNDLE, +40:u06:[I-D.ietf-mmusic-sdp-mux-attributes], +9:u03:group, +14:u08:attribute., +10:u11:bundle, +40:u14:[i-d.ietf-mmusic-sdp-mux-attributes], +13:uI0:[-.----]., +10:u02:BUNDLE, +40:u05:[I-D.ietf-mmusic-sdp-mux-attributes], +73:u08:+---------+-------------------------------------+-------+-----------+, +9:u02:group, +14:u07:attribute., +14:u08:attribute:, +10:u10:bundle, +40:u13:[i-d.ietf-mmusic-sdp-mux-attributes], +10:u01:BUNDLE, +40:u04:[I-D.ietf-mmusic-sdp-mux-attributes], +9:u01:group, +14:u06:attribute., +14:u07:attribute:, +40:u12:[i-d.ietf-mmusic-sdp-mux-attributes], +10:u00:BUNDLE, +40:u03:[I-D.ietf-mmusic-sdp-mux-attributes], +73:u07:+---------+-------------------------------------+-------+-----------+, +9:u00:group, +14:u05:attribute., +14:u06:attribute:, +8:u08:Name, +40:u11:[i-d.ietf-mmusic-sdp-mux-attributes], +40:u02:[I-D.ietf-mmusic-sdp-mux-attributes], +73:u06:+---------+-------------------------------------+-------+-----------+, +14:u04:attribute., +14:u05:attribute:, +8:u07:Name, +9:u08:Notes, +40:u10:[i-d.ietf-mmusic-sdp-mux-attributes], +73:u14:+---------+-------------------------------------+-------+-----------+, +40:u01:[I-D.ietf-mmusic-sdp-mux-attributes], +73:u05:+---------+-------------------------------------+-------+-----------+, +14:u03:attribute., +14:u04:attribute:, +8:u06:Name, +9:u07:Notes, +9:u08:Level, +73:u13:+---------+-------------------------------------+-------+-----------+, +68:uI2:----------------------------------------------------------------, +6:uI2:64, +40:u00:[I-D.ietf-mmusic-sdp-mux-attributes], +73:u04:+---------+-------------------------------------+-------+-----------+, +14:u02:attribute., +14:u03:attribute:, +8:u05:Name, +9:u06:Notes, +9:u07:Level, +73:u12:+---------+-------------------------------------+-------+-----------+, +68:uI1:----------------------------------------------------------------, +6:uI1:64, +73:u03:+---------+-------------------------------------+-------+-----------+, +14:u01:attribute., +14:u02:attribute:, +8:u04:Name, +9:u05:Notes, +9:u06:Level, +73:u11:+---------+-------------------------------------+-------+-----------+, +68:uI0:----------------------------------------------------------------, +6:uI0:64, +73:u02:+---------+-------------------------------------+-------+-----------+, +14:u00:attribute., +14:u01:attribute:, +8:u03:Name, +9:u04:Notes, +9:u05:Level, +73:u10:+---------+-------------------------------------+-------+-----------+, +73:u01:+---------+-------------------------------------+-------+-----------+, +14:u00:attribute:, +8:u02:Name, +9:u03:Notes, +9:u04:Level, +73:u00:+---------+-------------------------------------+-------+-----------+, +8:u01:Name, +9:u02:Notes, +9:u03:Level, +12:u08:Category, +8:u00:Name, +9:u01:Notes, +9:u02:Level, +12:u07:Category, +9:u00:Notes, +9:u01:Level, +12:u06:Category, +11:u08:bfcpver, +9:u00:Level, +12:u05:Category, +11:u07:bfcpver, +5:u08:M, +12:u04:Category, +11:u06:bfcpver, +5:u07:M, +7:u08:TBD, +12:u03:Category, +11:u05:bfcpver, +5:u06:M, +7:u07:TBD, +12:u02:Category, +11:u04:bfcpver, +5:u05:M, +7:u06:TBD, +12:u01:Category, +11:u03:bfcpver, +5:u04:M, +7:u05:TBD, +12:u08:separate, +12:u00:Category, +11:u02:bfcpver, +5:u03:M, +7:u04:TBD, +12:u07:separate, +11:u01:bfcpver, +5:u02:M, +7:u03:TBD, +12:u06:separate, +11:u00:bfcpver, +5:u01:M, +7:u02:TBD, +12:u05:separate, +5:u00:M, +7:u01:TBD, +12:u04:separate, +7:u00:TBD, +12:u03:separate, +6:u08:2:, +12:u02:separate, +6:u07:2:, +12:u01:separate, +6:u06:2:, +11:u08:towards, +12:u00:separate, +6:u05:2:, +14:u08:exchanging, +6:u04:2:, +14:u07:exchanging, +11:u07:towards, +15:u08:complicated, +6:u03:2:, +14:u06:exchanging, +11:u06:towards, +6:u02:2:, +14:u05:exchanging, +11:u14:towards, +11:u05:towards, +15:u07:complicated, +14:u08:[RFC8445],, +6:u01:2:, +14:u04:exchanging, +11:u13:towards, +11:u04:towards, +15:u06:complicated, +6:u00:2:, +14:u03:exchanging, +11:u12:towards, +15:u14:complicated, +7:u22:tow, +8:u23:towa, +9:uI2:''''., +11:u03:towards, +15:u05:complicated, +14:u07:[RFC8445],, +10:u08:apply., +14:u02:exchanging, +11:u11:towards, +15:u13:complicated, +9:uI1:''''., +11:u02:towards, +15:u04:complicated, +14:u06:[RFC8445],, +14:u01:exchanging, +16:u08:TCP/TLS/BFCP, +11:u10:towards, +15:u12:complicated, +14:u14:[rfc8445],, +9:uI0:''''., +11:u01:towards, +15:u03:complicated, +14:u05:[RFC8445],, +10:u07:apply., +14:u00:exchanging, +16:u07:TCP/TLS/BFCP, +15:u11:complicated, +14:u13:[rfc8445],, +14:u14:procedures, +14:uI2:[],//,//,-, +11:u00:towards, +15:u02:complicated, +14:u04:[RFC8445],, +10:u06:apply., +16:u06:TCP/TLS/BFCP, +15:u10:complicated, +14:u12:[rfc8445],, +14:u13:procedures, +10:u14:apply., +14:uI1:[],//,//,-, +15:u01:complicated, +14:u03:[RFC8445],, +10:u05:apply., +16:u05:TCP/TLS/BFCP, +14:u08:management, +14:u11:[rfc8445],, +14:u12:procedures, +10:u13:apply., +14:uI0:[],//,//,-, +8:uI2:.///, +15:u00:complicated, +14:u02:[RFC8445],, +10:u04:apply., +14:u08:[RFC4145]., +16:u04:TCP/TLS/BFCP, +14:u07:management, +13:u08:performed, +14:u10:[rfc8445],, +14:u11:procedures, +10:u12:apply., +8:uI1:.///, +14:u01:[RFC8445],, +10:u03:apply., +13:u08:initiates, +16:u03:TCP/TLS/BFCP, +14:u06:management, +13:u07:performed, +14:u10:procedures, +10:u11:apply., +8:uI0:.///, +14:u00:[RFC8445],, +10:u02:apply., +14:u07:[RFC4145]., +16:u02:TCP/TLS/BFCP, +14:u05:management, +13:u06:performed, +10:u10:apply., +10:u01:apply., +14:u06:[RFC4145]., +13:u07:initiates, +16:u01:TCP/TLS/BFCP, +14:u04:management, +13:u05:performed, +21:u08:re-establishment., +14:u14:[rfc4145]., +8:uI2:'''', +10:u00:apply., +14:u05:[RFC4145]., +13:u06:initiates, +16:u00:TCP/TLS/BFCP, +14:u03:management, +13:u04:performed, +21:u07:re-establishment., +14:u13:[rfc4145]., +13:u14:initiates, +8:uI1:'''', +14:u04:[RFC4145]., +13:u05:initiates, +14:u02:management, +13:u03:performed, +21:u06:re-establishment., +14:u12:[rfc4145]., +13:u13:initiates, +14:u14:connection, +8:uI0:'''', +14:u03:[RFC4145]., +13:u04:initiates, +12:u08:However,, +14:u01:management, +13:u02:performed, +21:u05:re-establishment., +14:u11:[rfc4145]., +13:u12:initiates, +14:u13:connection, +7:u22:ini, +8:u23:init, +14:u02:[RFC4145]., +13:u03:initiates, +14:u00:management, +13:u01:performed, +21:u04:re-establishment., +14:u10:[rfc4145]., +13:u11:initiates, +14:u12:connection, +10:uI2:[-.--], +14:u01:[RFC4145]., +13:u02:initiates, +12:u07:However,, +15:u08:established, +13:u00:performed, +21:u03:re-establishment., +11:u08:because, +13:u10:initiates, +14:u11:connection, +10:uI1:[-.--], +14:u00:[RFC4145]., +13:u01:initiates, +12:u06:However,, +13:u08:mechanism, +21:u02:re-establishment., +11:u07:because, +14:u10:connection, +12:u14:however,, +10:uI0:[-.--], +13:u00:initiates, +12:u05:However,, +15:u07:established, +21:u01:re-establishment., +11:u06:because, +10:u08:follow, +12:u13:however,, +12:u04:However,, +15:u06:established, +13:u07:mechanism, +21:u00:re-establishment., +11:u05:because, +10:u07:follow, +12:u12:however,, +15:u14:established, +5:u20:H, +6:u21:Ho, +7:u22:How, +8:u23:Howe, +12:u03:However,, +15:u05:established, +13:u06:mechanism, +11:u04:because, +10:u06:follow, +12:u11:however,, +15:u13:established, +13:u14:mechanism, +6:uI2:./, +12:u02:However,, +15:u04:established, +13:u05:mechanism, +11:u03:because, +10:u05:follow, +7:u08:12], +12:u10:however,, +15:u12:established, +13:u13:mechanism, +6:u21:es, +7:u22:est, +8:u23:esta, +6:uI1:./, +12:u01:However,, +15:u03:established, +13:u04:mechanism, +11:u02:because, +10:u04:follow, +7:u07:12], +15:u11:established, +13:u12:mechanism, +7:u22:mec, +8:u23:mech, +6:uI0:./, +12:u00:However,, +15:u02:established, +13:u03:mechanism, +11:u01:because, +10:u03:follow, +7:u06:12], +15:u10:established, +13:u11:mechanism, +15:u01:established, +13:u02:mechanism, +11:u00:because, +10:u02:follow, +7:u05:12], +13:u10:mechanism, +15:u00:established, +13:u01:mechanism, +10:u01:follow, +7:u04:12], +13:u00:mechanism, +10:u00:follow, +7:u03:12], +9:u08:order, +7:u02:12], +11:u08:deliver, +7:u01:12], +13:u14:following, +9:u07:order, +8:u08:send, +7:u00:12], +13:u13:following, +9:u06:order, +11:u07:deliver, +13:u12:following, +9:u14:order, +6:u21:fo, +7:u22:fol, +8:u23:foll, +9:u05:order, +11:u06:deliver, +8:u07:send, +13:u11:following, +9:u13:order, +11:u14:deliver, +9:u04:order, +11:u05:deliver, +8:u06:send, +15:u08:connections, +13:u10:following, +9:u12:order, +11:u13:deliver, +8:u14:send, +7:u22:ord, +8:u23:orde, +9:u03:order, +11:u04:deliver, +8:u05:send, +9:u11:order, +11:u12:deliver, +8:u13:send, +7:u22:del, +8:u23:deli, +9:u02:order, +11:u03:deliver, +8:u04:send, +15:u07:connections, +9:u10:order, +11:u11:deliver, +8:u12:send, +7:u22:sen, +8:u23:send, +9:u01:order, +11:u02:deliver, +8:u03:send, +15:u06:connections, +8:u08:DTLS, +11:u10:deliver, +8:u11:send, +15:u14:connections, +9:u00:order, +11:u01:deliver, +8:u02:send, +15:u05:connections, +8:u07:DTLS, +8:u10:send, +15:u13:connections, +11:u00:deliver, +8:u01:send, +15:u04:connections, +16:u08:established,, +8:u06:DTLS, +7:u08:TLS, +15:u12:connections, +8:u00:send, +15:u03:connections, +8:u05:DTLS, +7:u07:TLS, +15:u11:connections, +15:u02:connections, +16:u07:established,, +19:u08:re-establishing, +8:u04:DTLS, +7:u06:TLS, +15:u10:connections, +12:uI2:[-.---]., +15:u01:connections, +16:u06:established,, +15:u08:negotiated,, +8:u03:DTLS, +7:u05:TLS, +16:u14:established,, +5:uG2:6, +12:uI1:[-.---]., +15:u00:connections, +16:u05:established,, +19:u07:re-establishing, +14:u08:previously, +8:u02:DTLS, +7:u04:TLS, +14:u08:subsequent, +16:u13:established,, +5:uG1:6, +12:uI0:[-.---]., +16:u04:established,, +19:u06:re-establishing, +15:u07:negotiated,, +8:u01:DTLS, +7:u03:TLS, +14:u07:subsequent, +14:u08:negotiated, +16:u12:established,, +19:u14:re-establishing, +5:uG0:6, +7:uI2:,[], +16:u03:established,, +19:u05:re-establishing, +15:u06:negotiated,, +14:u07:previously, +13:u08:[RFC4583], +8:u00:DTLS, +7:u02:TLS, +14:u06:subsequent, +14:u07:negotiated, +7:u08:For, +16:u11:established,, +19:u13:re-establishing, +15:u14:negotiated,, +7:uI1:,[], +16:u02:established,, +19:u04:re-establishing, +15:u05:negotiated,, +14:u06:previously, +7:u01:TLS, +14:u05:subsequent, +14:u06:negotiated, +7:u07:For, +16:u10:established,, +19:u12:re-establishing, +15:u13:negotiated,, +14:u14:previously, +7:u22:re-, +8:u23:re-e, +7:uI0:,[], +16:u01:established,, +19:u03:re-establishing, +15:u04:negotiated,, +14:u05:previously, +13:u07:[RFC4583], +7:u00:TLS, +14:u04:subsequent, +14:u05:negotiated, +7:u06:For, +19:u11:re-establishing, +15:u12:negotiated,, +14:u13:previously, +7:u22:neg, +8:u23:nego, +16:u00:established,, +19:u02:re-establishing, +15:u03:negotiated,, +14:u04:previously, +13:u06:[RFC4583], +11:u08:Generic, +14:u03:subsequent, +14:u04:negotiated, +7:u05:For, +19:u10:re-establishing, +15:u11:negotiated,, +14:u12:previously, +13:u14:[rfc4583], +8:u23:prev, +19:u01:re-establishing, +15:u02:negotiated,, +14:u03:previously, +13:u05:[RFC4583], +17:u08:Establishment, +14:u02:subsequent, +14:u03:negotiated, +7:u04:For, +15:u10:negotiated,, +14:u11:previously, +13:u13:[rfc4583], +19:u00:re-establishing, +15:u01:negotiated,, +14:u02:previously, +13:u04:[RFC4583], +11:u07:Generic, +14:u01:subsequent, +14:u02:negotiated, +7:u03:For, +9:u08:(ICE), +14:u10:previously, +13:u12:[rfc4583], +15:u00:negotiated,, +14:u01:previously, +13:u03:[RFC4583], +11:u06:Generic, +17:u07:Establishment, +14:u00:subsequent, +14:u01:negotiated, +7:u02:For, +9:u07:(ICE), +13:u11:[rfc4583], +11:u14:generic, +14:u00:previously, +13:u02:[RFC4583], +11:u05:Generic, +17:u06:Establishment, +14:u00:negotiated, +7:u01:For, +9:u06:(ICE), +13:u10:[rfc4583], +11:u13:generic, +17:u14:establishment, +13:u01:[RFC4583], +11:u04:Generic, +17:u05:Establishment, +7:u00:For, +9:u05:(ICE), +11:u12:generic, +17:u13:establishment, +6:u21:Ge, +7:u22:Gen, +8:u23:Gene, +15:uI2:()[-.----]., +13:u00:[RFC4583], +11:u03:Generic, +17:u04:Establishment, +9:u08:Based, +9:u04:(ICE), +11:u11:generic, +17:u12:establishment, +6:u21:Es, +7:u22:Est, +8:u23:Esta, +15:uI1:()[-.----]., +11:u02:Generic, +17:u03:Establishment, +9:u03:(ICE), +11:u10:generic, +17:u11:establishment, +15:uI0:()[-.----]., +7:uI2://., +11:u01:Generic, +17:u02:Establishment, +9:u07:Based, +9:u02:(ICE), +9:u08:treat, +17:u10:establishment, +7:uI1://., +11:u00:Generic, +17:u01:Establishment, +9:u06:Based, +9:u08:Thus,, +9:u01:(ICE), +9:u07:treat, +7:u08:top, +9:u14:based, +7:uI0://., +17:u00:Establishment, +9:u05:Based, +8:u08:even, +9:u00:(ICE), +9:u06:treat, +7:u07:top, +9:u08:there, +9:u13:based, +12:uI2:[-.---],, +9:u04:Based, +9:u07:Thus,, +9:u05:treat, +7:u06:top, +9:u07:there, +6:u08:if, +9:u12:based, +6:u21:Ba, +7:u22:Bas, +8:u23:Base, +12:uI1:[-.---],, +9:u03:Based, +9:u06:Thus,, +8:u07:even, +9:u04:treat, +7:u05:top, +9:u06:there, +6:u07:if, +11:u08:shifted, +9:u11:based, +9:u14:thus,, +12:uI0:[-.---],, +9:u02:Based, +9:u05:Thus,, +8:u06:even, +10:u08:added,, +9:u03:treat, +7:u04:top, +9:u05:there, +6:u06:if, +11:u07:shifted, +9:u10:based, +9:u13:thus,, +8:u14:even, +9:u01:Based, +9:u04:Thus,, +8:u05:even, +9:u02:treat, +7:u03:top, +9:u04:there, +6:u05:if, +11:u06:shifted, +8:u08:they, +9:u12:thus,, +8:u13:even, +7:u22:Thu, +8:u23:Thus, +9:u00:Based, +9:u03:Thus,, +8:u04:even, +10:u07:added,, +9:u01:treat, +7:u02:top, +9:u03:there, +6:u04:if, +11:u05:shifted, +8:u07:they, +9:u11:thus,, +8:u12:even, +6:u21:ev, +7:u22:eve, +8:u23:even, +9:u02:Thus,, +8:u03:even, +10:u06:added,, +9:u00:treat, +7:u01:top, +9:u02:there, +6:u03:if, +11:u04:shifted, +8:u06:they, +9:u10:thus,, +8:u11:even, +10:u14:added,, +9:u01:Thus,, +8:u02:even, +10:u05:added,, +7:u00:top, +9:u01:there, +6:u02:if, +11:u03:shifted, +8:u05:they, +7:u08:13], +8:u10:even, +10:u13:added,, +9:u00:Thus,, +8:u01:even, +10:u04:added,, +9:u00:there, +6:u01:if, +11:u02:shifted, +8:u04:they, +7:u07:13], +10:u12:added,, +6:u21:ad, +7:u22:add, +8:u23:adde, +8:u00:even, +10:u03:added,, +6:u00:if, +11:u01:shifted, +8:u03:they, +7:u06:13], +10:u11:added,, +10:u02:added,, +11:u00:shifted, +8:u02:they, +7:u05:13], +10:u10:added,, +10:u01:added,, +14:u08:endpoints,, +8:u01:they, +7:u04:13], +10:u00:added,, +11:u08:support, +8:u00:they, +7:u03:13], +7:u08:all, +14:u07:endpoints,, +7:u02:13], +7:u07:all, +14:u06:endpoints,, +11:u07:support, +7:u01:13], +7:u06:all, +14:u14:endpoints,, +14:u05:endpoints,, +11:u06:support, +13:u08:candidate, +7:u00:13], +7:u05:all, +11:u08:stream,, +14:u13:endpoints,, +11:u14:support, +7:uI2:,--, +14:u04:endpoints,, +11:u05:support, +7:u04:all, +11:u07:stream,, +10:u08:SHOULD, +14:u12:endpoints,, +11:u13:support, +7:uI1:,--, +14:u03:endpoints,, +11:u04:support, +13:u07:candidate, +7:u03:all, +11:u06:stream,, +10:u07:SHOULD, +14:u11:endpoints,, +11:u12:support, +7:u22:sup, +8:u23:supp, +7:uI0:,--, +14:u02:endpoints,, +11:u03:support, +13:u06:candidate, +7:u02:all, +11:u05:stream,, +10:u06:SHOULD, +14:u10:endpoints,, +11:u11:support, +13:u14:candidate, +14:u01:endpoints,, +11:u02:support, +13:u05:candidate, +7:u01:all, +11:u04:stream,, +10:u05:SHOULD, +14:u08:candidate,, +11:u10:support, +13:u13:candidate, +14:u00:endpoints,, +11:u01:support, +13:u04:candidate, +17:u08:TCP/DTLS/BFCP, +7:u00:all, +11:u03:stream,, +10:u04:SHOULD, +14:u07:candidate,, +13:u12:candidate, +7:u22:can, +8:u23:cand, +7:uI2:,'', +11:u00:support, +13:u03:candidate, +11:u02:stream,, +10:u03:SHOULD, +14:u06:candidate,, +13:u11:candidate, +11:u14:default, +7:uI1:,'', +9:uI2:'//'., +13:u02:candidate, +17:u07:TCP/DTLS/BFCP, +11:u01:stream,, +10:u02:SHOULD, +14:u05:candidate,, +13:u10:candidate, +11:u13:default, +7:uI0:,'', +9:uI1:'//'., +12:uI2:,'''//'., +13:u01:candidate, +17:u06:TCP/DTLS/BFCP, +15:u08:negotiating, +11:u00:stream,, +10:u01:SHOULD, +14:u04:candidate,, +11:u12:default, +17:u14:tcp/dtls/bfcp, +8:u23:defa, +9:uI0:'//'., +12:uI1:,'''//'., +7:uI2:://, +13:u00:candidate, +17:u05:TCP/DTLS/BFCP, +10:u00:SHOULD, +14:u03:candidate,, +11:u11:default, +17:u13:tcp/dtls/bfcp, +12:uI0:,'''//'., +7:uI1:://, +17:u04:TCP/DTLS/BFCP, +15:u07:negotiating, +14:u02:candidate,, +11:u10:default, +17:u12:tcp/dtls/bfcp, +7:uI0:://, +17:u03:TCP/DTLS/BFCP, +15:u06:negotiating, +14:u01:candidate,, +17:u11:tcp/dtls/bfcp, +15:u14:negotiating, +7:uI2:/[], +17:u02:TCP/DTLS/BFCP, +15:u05:negotiating, +14:u08:explicitly, +14:u00:candidate,, +17:u10:tcp/dtls/bfcp, +15:u13:negotiating, +8:u14:dtls, +7:uI1:/[], +17:u01:TCP/DTLS/BFCP, +15:u04:negotiating, +14:u08:describing, +10:u08:stated, +15:u12:negotiating, +8:u13:dtls, +7:u14:for, +7:uI0:/[], +17:u00:TCP/DTLS/BFCP, +15:u03:negotiating, +14:u07:explicitly, +10:u07:stated, +15:u11:negotiating, +8:u12:dtls, +7:u13:for, +6:u21:DT, +7:u22:DTL, +8:u23:DTLS, +15:u02:negotiating, +14:u06:explicitly, +14:u07:describing, +17:u08:independently, +10:u06:stated, +12:u08:sections, +15:u10:negotiating, +8:u11:dtls, +7:u12:for, +14:u14:explicitly, +7:u22:for, +7:u23:for, +15:u01:negotiating, +14:u05:explicitly, +14:u06:describing, +10:u08:Within, +10:u05:stated, +12:u07:sections, +8:u10:dtls, +7:u11:for, +14:u13:explicitly, +14:u14:describing, +15:u00:negotiating, +14:u04:explicitly, +14:u05:describing, +17:u07:independently, +10:u08:within, +10:u04:stated, +12:u06:sections, +7:u10:for, +14:u12:explicitly, +14:u13:describing, +7:u14:'m', +14:u03:explicitly, +14:u04:describing, +17:u06:independently, +10:u07:Within, +10:u03:stated, +12:u05:sections, +14:u11:explicitly, +14:u12:describing, +7:u13:'m', +17:u14:independently, +14:u02:explicitly, +14:u03:describing, +17:u05:independently, +10:u06:Within, +10:u07:within, +13:u08:indicates, +10:u02:stated, +12:u04:sections, +9:u08:(SIP), +14:u10:explicitly, +14:u11:describing, +7:u12:'m', +17:u13:independently, +10:u14:within, +6:u21:'m, +7:u22:'m', +7:u23:'m', +14:u01:explicitly, +14:u02:describing, +17:u04:independently, +10:u05:Within, +10:u06:within, +11:u08:stream., +10:u01:stated, +12:u03:sections, +9:u07:(SIP), +14:u10:describing, +7:u11:'m', +17:u12:independently, +10:u13:within, +7:u22:ind, +8:u23:inde, +8:uI2:,'',, +14:u00:explicitly, +14:u01:describing, +17:u03:independently, +10:u04:Within, +10:u05:within, +13:u07:indicates, +6:u08:If, +10:u00:stated, +12:u02:sections, +9:u06:(SIP), +7:u10:'m', +17:u11:independently, +10:u12:within, +6:u21:Wi, +7:u22:Wit, +8:u23:With, +8:uI1:,'',, +7:uI2:(.., +14:u00:describing, +17:u02:independently, +10:u03:Within, +10:u04:within, +13:u06:indicates, +11:u07:stream., +19:u08:'UDP/TLS/BFCP',, +12:u01:sections, +9:u05:(SIP), +17:u10:independently, +10:u11:within, +13:u14:indicates, +8:uI0:,'',, +7:uI1:(.., +9:uI2:()[]), +17:u01:independently, +10:u02:Within, +10:u03:within, +13:u05:indicates, +11:u06:stream., +6:u07:If, +12:u00:sections, +9:u04:(SIP), +10:u10:within, +13:u13:indicates, +11:u14:stream., +7:uI0:(.., +9:uI1:()[]), +17:u00:independently, +10:u01:Within, +10:u02:within, +13:u04:indicates, +11:u05:stream., +6:u06:If, +19:u07:'UDP/TLS/BFCP',, +9:u03:(SIP), +13:u12:indicates, +11:u13:stream., +6:u14:if, +8:u23:indi, +9:uI0:()[]), +10:u00:Within, +10:u01:within, +13:u03:indicates, +11:u04:stream., +6:u05:If, +19:u06:'UDP/TLS/BFCP',, +8:u08:TCP', +9:u02:(SIP), +13:u11:indicates, +11:u12:stream., +6:u13:if, +19:u14:'udp/tls/bfcp',, +17:uI2:'''''//','//', +6:uI2:13, +10:u00:within, +13:u02:indicates, +11:u03:stream., +6:u04:If, +19:u05:'UDP/TLS/BFCP',, +9:u01:(SIP), +13:u10:indicates, +11:u11:stream., +6:u12:if, +19:u13:'udp/tls/bfcp',, +6:u21:If, +6:u22:If, +6:u23:If, +17:uI1:'''''//','//', +9:uI2:'//',, +6:uI1:13, +13:u01:indicates, +11:u02:stream., +6:u03:If, +19:u04:'UDP/TLS/BFCP',, +8:u07:TCP', +9:u00:(SIP), +13:u08:according, +11:u10:stream., +6:u11:if, +19:u12:'udp/tls/bfcp',, +17:uI0:'''''//','//', +9:uI1:'//',, +6:uI0:13, +13:u00:indicates, +11:u01:stream., +6:u02:If, +19:u03:'UDP/TLS/BFCP',, +8:u06:TCP', +20:u08:'TCP/DTLS/BFCP',, +13:u07:according, +6:u10:if, +19:u11:'udp/tls/bfcp',, +8:u14:tcp', +9:uI0:'//',, +18:uI2:'''/','//','//, +11:u00:stream., +6:u01:If, +19:u02:'UDP/TLS/BFCP',, +8:u05:TCP', +13:u06:according, +19:u10:'udp/tls/bfcp',, +8:u13:tcp', +18:uI1:'''/','//','//, +12:uI2:''//','', +6:u00:If, +19:u01:'UDP/TLS/BFCP',, +8:u04:TCP', +20:u07:'TCP/DTLS/BFCP',, +13:u05:according, +8:u12:tcp', +8:u23:TCP', +18:uI0:'''/','//','//, +12:uI1:''//','', +19:u00:'UDP/TLS/BFCP',, +8:u03:TCP', +20:u06:'TCP/DTLS/BFCP',, +13:u04:according, +8:u11:tcp', +20:u14:'tcp/dtls/bfcp',, +12:uI0:''//','', +14:uI2:'''/','//', +8:u02:TCP', +20:u05:'TCP/DTLS/BFCP',, +13:u03:according, +8:u10:tcp', +20:u13:'tcp/dtls/bfcp',, +14:uI1:'''/','//', +11:uI2:'//','', +8:u01:TCP', +20:u04:'TCP/DTLS/BFCP',, +13:u02:according, +20:u12:'tcp/dtls/bfcp',, +14:uI0:'''/','//', +11:uI1:'//','', +8:u00:TCP', +20:u03:'TCP/DTLS/BFCP',, +13:u01:according, +20:u11:'tcp/dtls/bfcp',, +11:uI0:'//','', +8:uI2::-[], +20:u02:'TCP/DTLS/BFCP',, +13:u00:according, +7:u08:14], +20:u10:'tcp/dtls/bfcp',, +8:uI1::-[], +20:u01:'TCP/DTLS/BFCP',, +7:u07:14], +8:uI0::-[], +20:u00:'TCP/DTLS/BFCP',, +7:u06:14], +7:u05:14], +7:u04:14], +7:u03:14], +7:u02:14], +7:u01:14], +7:u00:14], +13:u08:addition,, +5:uG2:7, +5:u08:o, +13:u07:addition,, +12:u08:'s-only', +5:uG1:7, +11:uI2:''(.)'', +12:u08:section;, +13:u06:addition,, +12:u07:'s-only', +5:uG0:7, +11:uI1:''(.)'', +10:uI2:(.)''., +5:u07:o, +13:u05:addition,, +12:u06:'s-only', +11:uI0:''(.)'', +10:uI1:(.)''., +5:u06:o, +12:u07:section;, +13:u04:addition,, +12:u05:'s-only', +5:u14:o, +10:uI0:(.)''., +12:uI2:'-''-',:, +5:u05:o, +12:u06:section;, +13:u03:addition,, +12:u04:'s-only', +5:u13:o, +12:u14:section;, +12:uI1:'-''-',:, +5:u04:o, +12:u05:section;, +13:u02:addition,, +12:u03:'s-only', +5:u12:o, +12:u13:section;, +5:u21:o, +5:u22:o, +5:u23:o, +12:uI0:'-''-',:, +5:uI2:;, +5:u03:o, +12:u04:section;, +13:u01:addition,, +12:u02:'s-only', +5:u11:o, +12:u12:section;, +5:uI1:;, +5:u02:o, +12:u03:section;, +13:u00:addition,, +12:u01:'s-only', +5:u10:o, +12:u11:section;, +5:uI0:;, +5:u01:o, +12:u02:section;, +12:u00:'s-only', +12:u10:section;, +5:u00:o, +12:u01:section;, +9:u08:'c-s', +12:u00:section;, +12:uI2:''([])'', +9:u07:'c-s', +12:uI1:''([])'', +9:u06:'c-s', +9:u14:'c-s', +12:uI0:''([])'', +7:uI2::'', +9:u05:'c-s', +9:u13:'c-s', +7:uI1::'', +14:uI2:'-','-''-', +9:u04:'c-s', +9:u12:'c-s', +6:u21:'c, +7:u22:'c-, +8:u23:'c-s, +7:uI0::'', +14:uI1:'-','-''-', +9:u03:'c-s', +9:u11:'c-s', +14:uI0:'-','-''-', +7:uI2:(.), +9:u02:'c-s', +9:u10:'c-s', +6:u21:if, +6:u22:if, +6:u23:if, +7:uI1:(.), +9:u01:'c-s', +7:uI0:(.), +9:u00:'c-s', +13:u08:versions,, +9:u08:5.5)., +12:u08:answerer, +9:u07:5.5)., +13:u07:versions,, +9:u06:5.5)., +11:u08:accepts, +13:u06:versions,, +12:u07:answerer, +13:u08:identical, +9:u05:5.5)., +11:u07:accepts, +13:u14:versions,, +7:u22:one, +7:u23:one, +8:uI2:(.)., +13:u05:versions,, +12:u06:answerer, +9:u04:5.5)., +11:u06:accepts, +13:u13:versions,, +12:u14:answerer, +8:uI1:(.)., +9:uI2:,''.,, +13:u04:versions,, +12:u05:answerer, +13:u07:identical, +12:u08:versions, +9:u03:5.5)., +11:u05:accepts, +13:u12:versions,, +12:u13:answerer, +8:uI0:(.)., +9:uI1:,''.,, +8:uI2:'',:, +13:u03:versions,, +12:u04:answerer, +13:u06:identical, +9:u02:5.5)., +11:u04:accepts, +13:u08:indicated, +13:u11:versions,, +12:u12:answerer, +13:u14:identical, +9:uI0:,''.,, +8:uI1:'',:, +13:u02:versions,, +12:u03:answerer, +13:u05:identical, +12:u07:versions, +9:u01:5.5)., +11:u03:accepts, +13:u07:indicated, +13:u10:versions,, +12:u11:answerer, +13:u13:identical, +8:uI0:'',:, +9:uI2:''[];, +13:u01:versions,, +12:u02:answerer, +13:u04:identical, +12:u06:versions, +9:u00:5.5)., +11:u02:accepts, +13:u06:indicated, +12:u10:answerer, +13:u12:identical, +12:u14:versions, +6:u21:id, +7:u22:ide, +8:u23:iden, +9:uI1:''[];, +13:u00:versions,, +12:u01:answerer, +13:u03:identical, +12:u05:versions, +11:u01:accepts, +13:u05:indicated, +9:u08:MUST,, +13:u11:identical, +12:u13:versions, +9:uI0:''[];, +12:u00:answerer, +13:u02:identical, +12:u04:versions, +11:u00:accepts, +13:u04:indicated, +9:u07:MUST,, +15:u08:'floorctrl', +13:u10:identical, +12:u12:versions, +13:u01:identical, +12:u03:versions, +13:u03:indicated, +9:u06:MUST,, +15:u07:'floorctrl', +12:u11:versions, +13:u00:identical, +12:u02:versions, +13:u02:indicated, +9:u05:MUST,, +15:u06:'floorctrl', +12:u10:versions, +5:u14:a, +12:u01:versions, +13:u01:indicated, +9:u04:MUST,, +15:u05:'floorctrl', +7:u08:15], +5:u13:a, +12:u00:versions, +13:u00:indicated, +9:u03:MUST,, +15:u04:'floorctrl', +7:u07:15], +5:u12:a, +5:u21:a, +5:u22:a, +5:u23:a, +9:u02:MUST,, +15:u03:'floorctrl', +7:u06:15], +5:u11:a, +9:u01:MUST,, +15:u02:'floorctrl', +7:u05:15], +5:u10:a, +9:u00:MUST,, +15:u01:'floorctrl', +7:u04:15], +15:u00:'floorctrl', +7:u03:15], +7:u02:15], +7:u01:15], +7:u00:15], +9:uI2:'-',:, +9:uI1:'-',:, +9:uI2:'''';, +9:uI0:'-',:, +9:uI1:'''';, +9:uI0:'''';, +15:u14:'floorctrl', +7:uI2::[], +15:u13:'floorctrl', +7:uI1::[], +9:uI2:'''',, +7:u08:(or, +15:u12:'floorctrl', +6:u21:'f, +7:u22:'fl, +8:u23:'flo, +7:uI0::[], +9:uI1:'''',, +15:u08:connection;, +20:u08:re-established),, +15:u11:'floorctrl', +9:uI0:'''',, +6:uI2:,:, +7:u07:(or, +20:u07:re-established),, +15:u10:'floorctrl', +6:uI1:,:, +7:u06:(or, +15:u07:connection;, +20:u06:re-established),, +7:u14:(or, +6:uI0:,:, +7:u05:(or, +15:u06:connection;, +20:u05:re-established),, +7:u13:(or, +15:u14:connection;, +8:uI2:(-),, +7:u04:(or, +15:u05:connection;, +20:u04:re-established),, +7:u12:(or, +15:u13:connection;, +6:u21:(o, +7:u22:(or, +7:u23:(or, +8:uI1:(-),, +7:u03:(or, +15:u04:connection;, +20:u03:re-established),, +7:u08:(by, +7:u11:(or, +15:u12:connection;, +8:uI0:(-),, +7:uI2:,,/, +7:u02:(or, +15:u03:connection;, +10:u08:assign, +20:u02:re-established),, +7:u07:(by, +7:u10:(or, +15:u11:connection;, +7:uI1:,,/, +7:u01:(or, +15:u02:connection;, +20:u01:re-established),, +7:u06:(by, +15:u10:connection;, +7:uI0:,,/, +9:uI2:(-),/, +7:u00:(or, +15:u01:connection;, +10:u07:assign, +20:u00:re-established),, +7:u05:(by, +9:uI1:(-),/, +15:u00:connection;, +10:u06:assign, +12:u08:section., +7:u04:(by, +10:u14:assign, +9:uI0:(-),/, +10:u05:assign, +7:u03:(by, +10:u13:assign, +10:u04:assign, +12:u07:section., +7:u02:(by, +10:u12:assign, +7:u22:ass, +8:u23:assi, +10:u03:assign, +12:u06:section., +7:u01:(by, +10:u11:assign, +12:u14:section., +10:u02:assign, +12:u05:section., +7:u00:(by, +12:u08:non-zero, +10:u10:assign, +12:u13:section., +10:u01:assign, +12:u04:section., +12:u07:non-zero, +12:u12:section., +10:u00:assign, +12:u03:section., +12:u06:non-zero, +12:u11:section., +12:u02:section., +12:u05:non-zero, +12:u10:section., +8:uI2:-,,:, +12:u01:section., +12:u04:non-zero, +8:uI1:-,,:, +12:u00:section., +12:u03:non-zero, +8:uI0:-,,:, +12:u02:non-zero, +12:u01:non-zero, +12:u00:non-zero, +5:uG2:8, +5:uG1:8, +5:uG0:8, +7:u08:16], +7:u07:16], +7:u06:16], +7:u05:16], +7:u04:16], +7:u03:16], +7:u02:16], +7:u01:16], +7:u00:16], +13:u08:offerer),, +13:u07:offerer),, +8:uI2:(..,, +13:u06:offerer),, +8:uI1:(..,, +13:u05:offerer),, +12:u14:tls/dtls, +8:uI0:(..,, +6:uI2:),, +13:u04:offerer),, +12:u13:tls/dtls, +6:uI1:),, +8:uI2:/''., +13:u03:offerer),, +9:u08:10.1,, +12:u12:tls/dtls, +6:u21:TL, +7:u22:TLS, +8:u23:TLS/, +6:uI0:),, +8:uI1:/''., +8:u08:does, +13:u02:offerer),, +9:u07:10.1,, +12:u11:tls/dtls, +8:uI0:/''., +13:u01:offerer),, +9:u06:10.1,, +12:u10:tls/dtls, +8:u07:does, +15:u08:"existing",, +13:u00:offerer),, +9:u05:10.1,, +7:uI2:.,:, +8:u06:does, +9:u04:10.1,, +8:u14:does, +7:uI1:.,:, +8:u05:does, +15:u07:"existing",, +9:u03:10.1,, +8:u13:does, +7:uI0:.,:, +8:u04:does, +15:u06:"existing",, +9:u02:10.1,, +8:u12:does, +15:u14:"existing",, +7:u22:doe, +8:u23:does, +8:u03:does, +15:u05:"existing",, +14:u08:[RFC3264]., +9:u01:10.1,, +8:u11:does, +15:u13:"existing",, +10:uI2:"",'';, +8:u02:does, +15:u04:"existing",, +9:u00:10.1,, +8:u10:does, +15:u12:"existing",, +11:u14:stream,, +6:u21:"e, +7:u22:"ex, +8:u23:"exi, +10:uI1:"",'';, +8:u01:does, +15:u03:"existing",, +14:u07:[RFC3264]., +15:u11:"existing",, +11:u13:stream,, +14:u14:associated, +10:uI0:"",'';, +8:u00:does, +15:u02:"existing",, +14:u06:[RFC3264]., +15:u08:description, +15:u10:"existing",, +11:u12:stream,, +14:u13:associated, +14:u14:[rfc3264]., +15:u01:"existing",, +14:u05:[RFC3264]., +11:u11:stream,, +14:u12:associated, +14:u13:[rfc3264]., +8:u23:asso, +15:u00:"existing",, +14:u04:[RFC3264]., +15:u07:description, +9:u08:their, +11:u10:stream,, +14:u11:associated, +14:u12:[rfc3264]., +14:u03:[RFC3264]., +15:u06:description, +9:u07:their, +14:u10:associated, +14:u11:[rfc3264]., +14:u02:[RFC3264]., +15:u05:description, +9:u06:their, +14:u10:[rfc3264]., +6:u21:Fo, +7:u22:For, +7:u23:For, +14:u01:[RFC3264]., +15:u04:description, +9:u05:their, +14:u00:[RFC3264]., +15:u03:description, +9:u04:their, +15:u02:description, +9:u03:their, +7:u08:17], +15:u01:description, +9:u02:their, +7:u07:17], +15:u00:description, +9:u01:their, +7:u06:17], +9:u00:their, +7:u05:17], +19:u08:a=setup:actpass, +7:u04:17], +20:u08:a=connection:new, +7:u03:17], +19:u07:a=setup:actpass, +25:u08:a=fingerprint:sha-256, +7:u02:17], +19:u06:a=setup:actpass, +20:u07:a=connection:new, +52:u08:19:E2:1C:3B:4B:9F:81:E6:B8:5C:F4:A5:A8:D8:73:04:, +7:u01:17], +5:u08:\, +19:u14:a=setup:actpass, +19:u05:a=setup:actpass, +20:u06:a=connection:new, +25:u07:a=fingerprint:sha-256, +51:u08:BB:05:2F:70:9F:04:A9:0E:05:E9:26:33:E8:70:88:A2, +7:u00:17], +5:u07:\, +19:u13:a=setup:actpass, +20:u14:a=connection:new, +19:u04:a=setup:actpass, +20:u05:a=connection:new, +25:u06:a=fingerprint:sha-256, +52:u07:19:E2:1C:3B:4B:9F:81:E6:B8:5C:F4:A5:A8:D8:73:04:, +5:u06:\, +19:u12:a=setup:actpass, +20:u13:a=connection:new, +25:u14:a=fingerprint:sha-256, +7:u22:a=s, +8:u23:a=se, +19:u03:a=setup:actpass, +20:u04:a=connection:new, +25:u05:a=fingerprint:sha-256, +52:u06:19:E2:1C:3B:4B:9F:81:E6:B8:5C:F4:A5:A8:D8:73:04:, +51:u07:BB:05:2F:70:9F:04:A9:0E:05:E9:26:33:E8:70:88:A2, +17:u08:a=confid:4321, +5:u05:\, +19:u11:a=setup:actpass, +20:u12:a=connection:new, +25:u13:a=fingerprint:sha-256, +52:u14:19:e2:1c:3b:4b:9f:81:e6:b8:5c:f4:a5:a8:d8:73:04:, +7:u22:a=c, +8:u23:a=co, +19:u02:a=setup:actpass, +20:u03:a=connection:new, +25:u04:a=fingerprint:sha-256, +52:u05:19:E2:1C:3B:4B:9F:81:E6:B8:5C:F4:A5:A8:D8:73:04:, +51:u06:BB:05:2F:70:9F:04:A9:0E:05:E9:26:33:E8:70:88:A2, +17:u08:a=userid:1234, +5:u04:\, +19:u10:a=setup:actpass, +20:u11:a=connection:new, +25:u12:a=fingerprint:sha-256, +52:u13:19:e2:1c:3b:4b:9f:81:e6:b8:5c:f4:a5:a8:d8:73:04:, +51:u14:bb:05:2f:70:9f:04:a9:0e:05:e9:26:33:e8:70:88:a2, +8:u23:a=fi, +20:uI2:::::::::::::::::, +6:uI2:16, +19:u01:a=setup:actpass, +20:u02:a=connection:new, +25:u03:a=fingerprint:sha-256, +52:u04:19:E2:1C:3B:4B:9F:81:E6:B8:5C:F4:A5:A8:D8:73:04:, +51:u05:BB:05:2F:70:9F:04:A9:0E:05:E9:26:33:E8:70:88:A2, +17:u07:a=confid:4321, +15:u08:a=floorid:1, +5:u03:\, +20:u10:a=connection:new, +25:u11:a=fingerprint:sha-256, +52:u12:19:e2:1c:3b:4b:9f:81:e6:b8:5c:f4:a5:a8:d8:73:04:, +51:u13:bb:05:2f:70:9f:04:a9:0e:05:e9:26:33:e8:70:88:a2, +6:u21:19, +7:u22:19:, +8:u23:19:E, +20:uI1:::::::::::::::::, +19:uI2::::::::::::::::, +6:uI1:16, +19:u00:a=setup:actpass, +20:u01:a=connection:new, +25:u02:a=fingerprint:sha-256, +52:u03:19:E2:1C:3B:4B:9F:81:E6:B8:5C:F4:A5:A8:D8:73:04:, +51:u04:BB:05:2F:70:9F:04:A9:0E:05:E9:26:33:E8:70:88:A2, +17:u06:a=confid:4321, +17:u07:a=userid:1234, +15:u08:a=floorid:2, +5:u02:\, +12:u08:mstrm:10, +25:u10:a=fingerprint:sha-256, +52:u11:19:e2:1c:3b:4b:9f:81:e6:b8:5c:f4:a5:a8:d8:73:04:, +51:u12:bb:05:2f:70:9f:04:a9:0e:05:e9:26:33:e8:70:88:a2, +17:u14:a=confid:4321, +6:u21:BB, +7:u22:BB:, +8:u23:BB:0, +20:uI0:::::::::::::::::, +19:uI1::::::::::::::::, +6:uI0:16, +20:u00:a=connection:new, +25:u01:a=fingerprint:sha-256, +52:u02:19:E2:1C:3B:4B:9F:81:E6:B8:5C:F4:A5:A8:D8:73:04:, +51:u03:BB:05:2F:70:9F:04:A9:0E:05:E9:26:33:E8:70:88:A2, +17:u05:a=confid:4321, +17:u06:a=userid:1234, +15:u07:a=floorid:1, +15:u08:a=bfcpver:1, +5:u01:\, +12:u07:mstrm:10, +12:u08:mstrm:11, +52:u10:19:e2:1c:3b:4b:9f:81:e6:b8:5c:f4:a5:a8:d8:73:04:, +51:u11:bb:05:2f:70:9f:04:a9:0e:05:e9:26:33:e8:70:88:a2, +17:u13:a=confid:4321, +17:u14:a=userid:1234, +19:uI0::::::::::::::::, +25:u00:a=fingerprint:sha-256, +52:u01:19:E2:1C:3B:4B:9F:81:E6:B8:5C:F4:A5:A8:D8:73:04:, +51:u02:BB:05:2F:70:9F:04:A9:0E:05:E9:26:33:E8:70:88:A2, +17:u04:a=confid:4321, +17:u05:a=userid:1234, +15:u06:a=floorid:1, +15:u07:a=floorid:2, +11:u08:m=audio, +5:u00:\, +12:u06:mstrm:10, +12:u07:mstrm:11, +5:u08:2, +51:u10:bb:05:2f:70:9f:04:a9:0e:05:e9:26:33:e8:70:88:a2, +17:u12:a=confid:4321, +17:u13:a=userid:1234, +15:u14:a=floorid:1, +5:uEL:1, +52:u00:19:E2:1C:3B:4B:9F:81:E6:B8:5C:F4:A5:A8:D8:73:04:, +51:u01:BB:05:2F:70:9F:04:A9:0E:05:E9:26:33:E8:70:88:A2, +17:u03:a=confid:4321, +17:u04:a=userid:1234, +15:u05:a=floorid:1, +15:u06:a=floorid:2, +15:u07:a=bfcpver:1, +14:u08:a=label:10, +12:u05:mstrm:10, +12:u06:mstrm:11, +5:u07:2, +9:u08:50002, +17:u11:a=confid:4321, +17:u12:a=userid:1234, +15:u13:a=floorid:1, +15:u14:a=floorid:2, +7:u22:a=u, +8:u23:a=us, +5:uE3:1, +6:uI2:::, +51:u00:BB:05:2F:70:9F:04:A9:0E:05:E9:26:33:E8:70:88:A2, +17:u02:a=confid:4321, +17:u03:a=userid:1234, +15:u04:a=floorid:1, +15:u05:a=floorid:2, +15:u06:a=bfcpver:1, +11:u07:m=audio, +11:u08:m=video, +12:u04:mstrm:10, +12:u05:mstrm:11, +5:u06:2, +9:u07:50002, +17:u10:a=confid:4321, +17:u11:a=userid:1234, +15:u12:a=floorid:1, +15:u13:a=floorid:2, +15:u14:a=bfcpver:1, +6:uI1:::, +17:u01:a=confid:4321, +17:u02:a=userid:1234, +15:u03:a=floorid:1, +15:u04:a=floorid:2, +15:u05:a=bfcpver:1, +11:u06:m=audio, +14:u07:a=label:10, +14:u08:a=label:11, +12:u03:mstrm:10, +12:u04:mstrm:11, +5:u05:2, +9:u06:50002, +9:u08:50004, +17:u10:a=userid:1234, +15:u11:a=floorid:1, +15:u12:a=floorid:2, +15:u13:a=bfcpver:1, +11:u14:m=audio, +6:uI0:::, +17:u00:a=confid:4321, +17:u01:a=userid:1234, +15:u02:a=floorid:1, +15:u03:a=floorid:2, +15:u04:a=bfcpver:1, +11:u05:m=audio, +14:u06:a=label:10, +11:u07:m=video, +8:u08:Note, +12:u02:mstrm:10, +12:u03:mstrm:11, +5:u04:2, +9:u05:50002, +9:u07:50004, +15:u10:a=floorid:1, +15:u11:a=floorid:2, +15:u12:a=bfcpver:1, +11:u13:m=audio, +14:u14:a=label:10, +7:u22:a=b, +8:u23:a=bf, +17:u00:a=userid:1234, +15:u01:a=floorid:1, +15:u02:a=floorid:2, +15:u03:a=bfcpver:1, +11:u04:m=audio, +14:u05:a=label:10, +11:u06:m=video, +14:u07:a=label:11, +10:u08:across, +12:u01:mstrm:10, +12:u02:mstrm:11, +5:u03:2, +9:u04:50002, +9:u06:50004, +15:u10:a=floorid:2, +15:u11:a=bfcpver:1, +11:u12:m=audio, +14:u13:a=label:10, +11:u14:m=video, +8:u23:m=au, +15:u00:a=floorid:1, +15:u01:a=floorid:2, +15:u02:a=bfcpver:1, +11:u03:m=audio, +14:u04:a=label:10, +11:u05:m=video, +14:u06:a=label:11, +8:u07:Note, +13:u08:character, +12:u00:mstrm:10, +12:u01:mstrm:11, +5:u02:2, +9:u03:50002, +9:u05:50004, +15:u10:a=bfcpver:1, +11:u11:m=audio, +14:u12:a=label:10, +11:u13:m=video, +14:u14:a=label:11, +7:u22:a=l, +8:u23:a=la, +15:u00:a=floorid:2, +15:u01:a=bfcpver:1, +11:u02:m=audio, +14:u03:a=label:10, +11:u04:m=video, +14:u05:a=label:11, +8:u06:Note, +10:u07:across, +13:u08:backslash, +12:u00:mstrm:11, +5:u01:2, +9:u02:50002, +9:u04:50004, +9:u08:marks, +11:u10:m=audio, +14:u11:a=label:10, +11:u12:m=video, +14:u13:a=label:11, +8:u14:note, +7:u22:m=v, +8:u23:m=vi, +15:u00:a=bfcpver:1, +11:u01:m=audio, +14:u02:a=label:10, +11:u03:m=video, +14:u04:a=label:11, +8:u05:Note, +10:u06:across, +13:u07:character, +10:u08:actual, +5:u00:2, +9:u01:50002, +9:u03:50004, +9:u07:marks, +14:u10:a=label:10, +11:u11:m=video, +14:u12:a=label:11, +8:u13:note, +10:u14:across, +11:u00:m=audio, +14:u01:a=label:10, +11:u02:m=video, +14:u03:a=label:11, +8:u04:Note, +10:u05:across, +13:u06:character, +13:u07:backslash, +9:u00:50002, +9:u02:50004, +9:u06:marks, +11:u10:m=video, +14:u11:a=label:11, +8:u12:note, +10:u13:across, +13:u14:character, +14:u00:a=label:10, +11:u01:m=video, +14:u02:a=label:11, +8:u03:Note, +10:u04:across, +13:u05:character, +13:u06:backslash, +10:u07:actual, +9:u01:50004, +9:u05:marks, +14:u10:a=label:11, +8:u11:note, +10:u12:across, +13:u13:character, +13:u14:backslash, +6:u21:ac, +7:u22:acr, +8:u23:acro, +11:u00:m=video, +14:u01:a=label:11, +8:u02:Note, +10:u03:across, +13:u04:character, +13:u05:backslash, +10:u06:actual, +18:u08:a=setup:active, +9:u00:50004, +9:u04:marks, +8:u10:note, +10:u11:across, +13:u12:character, +13:u13:backslash, +10:u14:actual, +6:u21:ch, +7:u22:cha, +8:u23:char, +14:u00:a=label:11, +8:u01:Note, +10:u02:across, +13:u03:character, +13:u04:backslash, +10:u05:actual, +9:u03:marks, +10:u10:across, +13:u11:character, +13:u12:backslash, +10:u13:actual, +6:u21:ba, +7:u22:bac, +8:u23:back, +8:u00:Note, +10:u01:across, +13:u02:character, +13:u03:backslash, +10:u04:actual, +18:u07:a=setup:active, +9:u02:marks, +13:u10:character, +13:u11:backslash, +10:u12:actual, +7:u22:act, +8:u23:actu, +10:u00:across, +13:u01:character, +13:u02:backslash, +10:u03:actual, +18:u06:a=setup:active, +52:u08:6B:8B:F0:65:5F:78:E2:51:3B:AC:6F:F3:3F:46:1B:35:, +9:u01:marks, +13:u10:backslash, +10:u11:actual, +18:u14:a=setup:active, +13:u00:character, +13:u01:backslash, +10:u02:actual, +18:u05:a=setup:active, +51:u08:DC:B8:5F:64:1A:24:C2:43:F0:A1:58:D0:A1:2C:19:08, +9:u00:marks, +10:u10:actual, +18:u13:a=setup:active, +13:u00:backslash, +10:u01:actual, +18:u04:a=setup:active, +52:u07:6B:8B:F0:65:5F:78:E2:51:3B:AC:6F:F3:3F:46:1B:35:, +18:u12:a=setup:active, +10:u00:actual, +18:u03:a=setup:active, +52:u06:6B:8B:F0:65:5F:78:E2:51:3B:AC:6F:F3:3F:46:1B:35:, +51:u07:DC:B8:5F:64:1A:24:C2:43:F0:A1:58:D0:A1:2C:19:08, +18:u11:a=setup:active, +52:u14:6b:8b:f0:65:5f:78:e2:51:3b:ac:6f:f3:3f:46:1b:35:, +18:u02:a=setup:active, +52:u05:6B:8B:F0:65:5F:78:E2:51:3B:AC:6F:F3:3F:46:1B:35:, +51:u06:DC:B8:5F:64:1A:24:C2:43:F0:A1:58:D0:A1:2C:19:08, +18:u10:a=setup:active, +52:u13:6b:8b:f0:65:5f:78:e2:51:3b:ac:6f:f3:3f:46:1b:35:, +51:u14:dc:b8:5f:64:1a:24:c2:43:f0:a1:58:d0:a1:2c:19:08, +18:u01:a=setup:active, +52:u04:6B:8B:F0:65:5F:78:E2:51:3B:AC:6F:F3:3F:46:1B:35:, +51:u05:DC:B8:5F:64:1A:24:C2:43:F0:A1:58:D0:A1:2C:19:08, +9:u08:55000, +52:u12:6b:8b:f0:65:5f:78:e2:51:3b:ac:6f:f3:3f:46:1b:35:, +51:u13:dc:b8:5f:64:1a:24:c2:43:f0:a1:58:d0:a1:2c:19:08, +6:u21:6B, +7:u22:6B:, +8:u23:6B:8, +18:u00:a=setup:active, +52:u03:6B:8B:F0:65:5F:78:E2:51:3B:AC:6F:F3:3F:46:1B:35:, +51:u04:DC:B8:5F:64:1A:24:C2:43:F0:A1:58:D0:A1:2C:19:08, +5:u08:A, +9:u07:55000, +9:u08:55002, +52:u11:6b:8b:f0:65:5f:78:e2:51:3b:ac:6f:f3:3f:46:1b:35:, +51:u12:dc:b8:5f:64:1a:24:c2:43:f0:a1:58:d0:a1:2c:19:08, +6:u21:DC, +7:u22:DC:, +8:u23:DC:B, +52:u02:6B:8B:F0:65:5F:78:E2:51:3B:AC:6F:F3:3F:46:1B:35:, +51:u03:DC:B8:5F:64:1A:24:C2:43:F0:A1:58:D0:A1:2C:19:08, +9:u08:where, +9:u06:55000, +9:u07:55002, +11:u08:similar, +52:u10:6b:8b:f0:65:5f:78:e2:51:3b:ac:6f:f3:3f:46:1b:35:, +51:u11:dc:b8:5f:64:1a:24:c2:43:f0:a1:58:d0:a1:2c:19:08, +52:u01:6B:8B:F0:65:5F:78:E2:51:3B:AC:6F:F3:3F:46:1B:35:, +51:u02:DC:B8:5F:64:1A:24:C2:43:F0:A1:58:D0:A1:2C:19:08, +5:u07:A, +9:u05:55000, +9:u06:55002, +11:u07:similar, +51:u10:dc:b8:5f:64:1a:24:c2:43:f0:a1:58:d0:a1:2c:19:08, +52:u00:6B:8B:F0:65:5F:78:E2:51:3B:AC:6F:F3:3F:46:1B:35:, +51:u01:DC:B8:5F:64:1A:24:C2:43:F0:A1:58:D0:A1:2C:19:08, +5:u06:A, +9:u07:where, +9:u04:55000, +9:u05:55002, +11:u06:similar, +51:u00:DC:B8:5F:64:1A:24:C2:43:F0:A1:58:D0:A1:2C:19:08, +5:u05:A, +9:u06:where, +9:u03:55000, +9:u04:55002, +11:u05:similar, +9:u14:where, +5:u04:A, +9:u05:where, +9:u02:55000, +9:u03:55002, +11:u04:similar, +7:u08:18], +9:u13:where, +5:u21:A, +5:u22:A, +5:u23:A, +5:u03:A, +9:u04:where, +9:u01:55000, +9:u02:55002, +11:u03:similar, +7:u07:18], +9:u12:where, +7:u22:whe, +8:u23:wher, +5:u02:A, +9:u03:where, +9:u00:55000, +9:u01:55002, +11:u02:similar, +7:u06:18], +9:u11:where, +5:u01:A, +9:u02:where, +9:u00:55002, +11:u01:similar, +7:u05:18], +9:u10:where, +5:u00:A, +9:u01:where, +11:u00:similar, +7:u04:18], +9:u00:where, +20:u08:a=dtls-id:abc3dl, +7:u03:18], +7:u02:18], +20:u07:a=dtls-id:abc3dl, +7:u01:18], +20:u06:a=dtls-id:abc3dl, +7:u00:18], +20:u14:a=dtls-id:abc3dl, +20:u05:a=dtls-id:abc3dl, +20:u13:a=dtls-id:abc3dl, +20:u04:a=dtls-id:abc3dl, +20:u12:a=dtls-id:abc3dl, +7:u22:a=d, +8:u23:a=dt, +20:u03:a=dtls-id:abc3dl, +20:u11:a=dtls-id:abc3dl, +20:u02:a=dtls-id:abc3dl, +20:u10:a=dtls-id:abc3dl, +20:u01:a=dtls-id:abc3dl, +20:u00:a=dtls-id:abc3dl, +22:u08:a=floorctrl:s-only, +22:u07:a=floorctrl:s-only, +22:u06:a=floorctrl:s-only, +22:u14:a=floorctrl:s-only, +22:u05:a=floorctrl:s-only, +22:u13:a=floorctrl:s-only, +22:u04:a=floorctrl:s-only, +15:u08:a=bfcpver:2, +22:u12:a=floorctrl:s-only, +22:u03:a=floorctrl:s-only, +22:u11:a=floorctrl:s-only, +22:u02:a=floorctrl:s-only, +15:u07:a=bfcpver:2, +22:u10:a=floorctrl:s-only, +22:u01:a=floorctrl:s-only, +15:u06:a=bfcpver:2, +9:u08:55004, +15:u14:a=bfcpver:2, +22:u00:a=floorctrl:s-only, +15:u05:a=bfcpver:2, +9:u07:55004, +15:u13:a=bfcpver:2, +15:u04:a=bfcpver:2, +9:u06:55004, +15:u12:a=bfcpver:2, +15:u03:a=bfcpver:2, +9:u08:BFCP,, +9:u05:55004, +15:u11:a=bfcpver:2, +15:u02:a=bfcpver:2, +9:u04:55004, +8:u08:SDP,, +15:u10:a=bfcpver:2, +5:uG2:9, +15:u01:a=bfcpver:2, +9:u07:BFCP,, +9:u03:55004, +8:u07:SDP,, +13:u08:[RFC8122], +5:uG1:9, +15:uI2:[-.--],[],/, +15:u00:a=bfcpver:2, +9:u06:BFCP,, +9:u02:55004, +8:u06:SDP,, +13:u07:[RFC8122], +9:u14:bfcp,, +5:uG0:9, +15:uI1:[-.--],[],/, +9:u05:BFCP,, +9:u01:55004, +8:u05:SDP,, +13:u06:[RFC8122], +9:u08:using, +9:u13:bfcp,, +15:uI0:[-.--],[],/, +12:uI2:,,/,.,[], +9:u04:BFCP,, +9:u00:55004, +8:u04:SDP,, +13:u05:[RFC8122], +9:u07:using, +9:u12:bfcp,, +7:u14:tcp, +12:uI1:,,/,.,[], +9:u03:BFCP,, +8:u03:SDP,, +13:u04:[RFC8122], +9:u06:using, +9:u08:usage, +9:u11:bfcp,, +7:u13:tcp, +12:uI0:,,/,.,[], +7:uI2:/.,, +9:u02:BFCP,, +13:u08:Operators, +8:u02:SDP,, +13:u03:[RFC8122], +9:u05:using, +9:u07:usage, +10:u08:result, +9:u10:bfcp,, +7:u12:tcp, +7:u23:TCP, +7:uI1:/.,, +6:uI2:,/, +9:u01:BFCP,, +19:u08:confidentiality, +8:u01:SDP,, +13:u02:[RFC8122], +9:u04:using, +9:u06:usage, +10:u07:result, +7:u11:tcp, +8:u23:when, +7:uI0:/.,, +6:uI1:,/, +9:u00:BFCP,, +13:u07:Operators, +8:u00:SDP,, +13:u01:[RFC8122], +9:u03:using, +9:u05:usage, +10:u06:result, +14:u08:protection, +7:u10:tcp, +8:u14:will, +6:uI0:,/, +13:u06:Operators, +19:u07:confidentiality, +13:u00:[RFC8122], +9:u02:using, +9:u04:usage, +10:u05:result, +14:u07:protection, +8:u13:will, +13:u14:operators, +13:u05:Operators, +19:u06:confidentiality, +9:u01:using, +9:u03:usage, +10:u04:result, +14:u06:protection, +8:u12:will, +13:u13:operators, +19:u14:confidentiality, +7:u22:wil, +8:u23:will, +13:u04:Operators, +19:u05:confidentiality, +9:u00:using, +9:u02:usage, +10:u03:result, +14:u05:protection, +7:u08:19], +8:u11:will, +13:u12:operators, +19:u13:confidentiality, +6:u21:Op, +7:u22:Ope, +8:u23:Oper, +13:u03:Operators, +19:u04:confidentiality, +9:u01:usage, +10:u02:result, +14:u04:protection, +7:u07:19], +8:u10:will, +13:u11:operators, +19:u12:confidentiality, +13:u02:Operators, +19:u03:confidentiality, +9:u00:usage, +10:u01:result, +14:u03:protection, +7:u06:19], +13:u10:operators, +19:u11:confidentiality, +13:u01:Operators, +19:u02:confidentiality, +10:u00:result, +14:u02:protection, +7:u05:19], +19:u10:confidentiality, +13:u00:Operators, +19:u01:confidentiality, +14:u01:protection, +7:u04:19], +11:u08:generic, +19:u00:confidentiality, +14:u00:protection, +7:u03:19], +11:u07:generic, +14:u08:individual, +7:u02:19], +11:u06:generic, +6:u08:do, +7:u01:19], +11:u05:generic, +6:u07:do, +7:u14:are, +14:u07:individual, +7:u00:19], +11:u04:generic, +6:u06:do, +7:u13:are, +14:u06:individual, +14:u08:[Editorial, +11:u03:generic, +6:u05:do, +7:u12:are, +14:u14:individual, +6:u21:ar, +7:u22:are, +7:u23:are, +14:u05:individual, +12:u08:register, +11:u02:generic, +6:u04:do, +9:u08:note:, +7:u11:are, +14:u13:individual, +11:u14:streams, +14:u04:individual, +14:u07:[Editorial, +11:u01:generic, +6:u03:do, +9:u07:note:, +7:u10:are, +14:u12:individual, +11:u13:streams, +14:u03:individual, +14:u06:[Editorial, +12:u07:register, +13:u08:registers, +11:u00:generic, +6:u02:do, +9:u06:note:, +14:u11:individual, +11:u12:streams, +14:u14:[editorial, +14:u02:individual, +14:u05:[Editorial, +12:u06:register, +6:u01:do, +9:u05:note:, +14:u10:individual, +11:u11:streams, +14:u13:[editorial, +12:u14:register, +7:uI2:[:., +14:u01:individual, +14:u04:[Editorial, +12:u05:register, +13:u07:registers, +6:u00:do, +9:u04:note:, +15:u08:[RFC4582].], +11:u10:streams, +14:u12:[editorial, +12:u13:register, +6:u21:[E, +7:u22:[Ed, +8:u23:[Edi, +7:uI1:[:., +10:uI2://,///, +14:u00:individual, +14:u03:[Editorial, +12:u04:register, +13:u06:registers, +9:u03:note:, +15:u07:[RFC4582].], +14:u11:[editorial, +12:u12:register, +13:u14:registers, +8:u23:regi, +7:uI0:[:., +10:uI1://,///, +8:uI2:''.., +14:u02:[Editorial, +12:u03:register, +13:u05:registers, +11:u08:'proto', +9:u02:note:, +15:u06:[RFC4582].], +14:u10:[editorial, +12:u11:register, +13:u13:registers, +10:uI0://,///, +8:uI1:''.., +14:u01:[Editorial, +12:u02:register, +13:u04:registers, +13:u08:registry:, +9:u01:note:, +15:u05:[RFC4582].], +12:u10:register, +13:u12:registers, +8:uI0:''.., +8:uI2:[].], +14:u00:[Editorial, +12:u01:register, +13:u03:registers, +11:u07:'proto', +34:u08:+---------------+------------+, +9:u00:note:, +15:u04:[RFC4582].], +13:u11:registers, +8:uI1:[].], +12:u00:register, +13:u02:registers, +11:u06:'proto', +13:u07:registry:, +15:u03:[RFC4582].], +13:u10:registers, +11:u14:'proto', +8:uI0:[].], +13:u01:registers, +11:u05:'proto', +13:u06:registry:, +34:u07:+---------------+------------+, +15:u02:[RFC4582].], +9:u08:Value, +11:u13:'proto', +13:u14:registry:, +13:u00:registers, +11:u04:'proto', +13:u05:registry:, +34:u06:+---------------+------------+, +15:u01:[RFC4582].], +9:u07:Value, +13:u08:Reference, +11:u12:'proto', +13:u13:registry:, +34:u14:+---------------+------------+, +6:u21:'p, +7:u22:'pr, +8:u23:'pro, +11:u03:'proto', +13:u04:registry:, +34:u05:+---------------+------------+, +15:u00:[RFC4582].], +9:u06:Value, +13:u07:Reference, +11:u11:'proto', +13:u12:registry:, +34:u13:+---------------+------------+, +31:uI2:---------------------------, +11:u02:'proto', +13:u03:registry:, +34:u04:+---------------+------------+, +9:u05:Value, +13:u06:Reference, +12:u08:TCP/BFCP, +11:u10:'proto', +13:u11:registry:, +34:u12:+---------------+------------+, +31:uI1:---------------------------, +11:u01:'proto', +13:u02:registry:, +34:u03:+---------------+------------+, +9:u04:Value, +13:u05:Reference, +12:u07:TCP/BFCP, +8:u08:[RFC, +13:u10:registry:, +34:u11:+---------------+------------+, +31:uI0:---------------------------, +11:u00:'proto', +13:u01:registry:, +34:u02:+---------------+------------+, +9:u03:Value, +13:u04:Reference, +12:u06:TCP/BFCP, +8:u07:[RFC, +34:u10:+---------------+------------+, +13:u00:registry:, +34:u01:+---------------+------------+, +9:u02:Value, +13:u03:Reference, +12:u05:TCP/BFCP, +8:u06:[RFC, +34:u00:+---------------+------------+, +9:u01:Value, +13:u02:Reference, +12:u04:TCP/BFCP, +8:u05:[RFC, +12:u08:UDP/BFCP, +9:u00:Value, +13:u01:Reference, +12:u03:TCP/BFCP, +8:u04:[RFC, +12:u07:UDP/BFCP, +8:uI2://[], +13:u00:Reference, +12:u02:TCP/BFCP, +8:u03:[RFC, +12:u06:UDP/BFCP, +16:u08:UDP/TLS/BFCP, +8:uI1://[], +12:u01:TCP/BFCP, +8:u02:[RFC, +12:u05:UDP/BFCP, +16:u07:UDP/TLS/BFCP, +8:uI0://[], +12:u00:TCP/BFCP, +8:u01:[RFC, +12:u04:UDP/BFCP, +16:u06:UDP/TLS/BFCP, +6:u08:3:, +8:u00:[RFC, +12:u03:UDP/BFCP, +16:u05:UDP/TLS/BFCP, +6:u07:3:, +12:u02:UDP/BFCP, +16:u04:UDP/TLS/BFCP, +6:u06:3:, +12:u01:UDP/BFCP, +16:u03:UDP/TLS/BFCP, +6:u05:3:, +12:u00:UDP/BFCP, +16:u02:UDP/TLS/BFCP, +6:u04:3:, +16:u01:UDP/TLS/BFCP, +6:u03:3:, +8:uI2:,''., +16:u00:UDP/TLS/BFCP, +6:u02:3:, +8:uI1:,''., +6:u01:3:, +8:uI0:,''., +6:u00:3:, +7:u08:20], +7:u07:20], +7:u06:20], +7:u05:20], +7:u04:20], +7:u03:20], +7:u02:20], +7:u01:20], +7:u00:20], +13:u08:Following, +14:u08:[RFC4583]., +13:u07:Following, +8:u08:Main, +13:u06:Following, +14:u07:[RFC4583]., +11:u08:purpose, +13:u05:Following, +14:u06:[RFC4583]., +8:u07:Main, +11:u07:purpose, +14:u14:[rfc4583]., +13:u04:Following, +14:u05:[RFC4583]., +8:u06:Main, +11:u06:purpose, +13:u08:resulting, +14:u13:[rfc4583]., +8:u14:main, +7:u22:Fol, +8:u23:Foll, +13:u03:Following, +14:u04:[RFC4583]., +8:u05:Main, +11:u05:purpose, +13:u07:resulting, +14:u12:[rfc4583]., +8:u13:main, +13:u02:Following, +14:u03:[RFC4583]., +8:u04:Main, +11:u04:purpose, +13:u06:resulting, +14:u11:[rfc4583]., +8:u12:main, +34:u14:[i-d.ietf-bfcpbis-rfc4582bis],, +6:u21:Ma, +7:u22:Mai, +8:u23:Main, +13:u01:Following, +14:u02:[RFC4583]., +8:u03:Main, +11:u03:purpose, +13:u05:resulting, +14:u10:[rfc4583]., +8:u11:main, +34:u13:[i-d.ietf-bfcpbis-rfc4582bis],, +12:uI2:[-.--],:, +13:u00:Following, +14:u01:[RFC4583]., +8:u02:Main, +11:u02:purpose, +13:u04:resulting, +8:u10:main, +34:u12:[i-d.ietf-bfcpbis-rfc4582bis],, +12:uI1:[-.--],:, +10:uI2:.''():, +14:u00:[RFC4583]., +8:u01:Main, +11:u01:purpose, +13:u03:resulting, +34:u11:[i-d.ietf-bfcpbis-rfc4582bis],, +12:uI0:[-.--],:, +10:uI1:.''():, +8:u00:Main, +16:u08:requirements, +11:u00:purpose, +13:u02:resulting, +34:u10:[i-d.ietf-bfcpbis-rfc4582bis],, +10:uI0:.''():, +31:u08:[I-D.ietf-mmusic-dtls-sdp]., +13:u01:resulting, +11:uI2://,///., +16:u07:requirements, +13:u00:resulting, +6:uG2:10, +11:uI1://,///., +8:uI2:.():, +16:u06:requirements, +31:u07:[I-D.ietf-mmusic-dtls-sdp]., +12:u08:Register, +16:u14:requirements, +6:uG1:10, +11:uI0://,///., +8:uI1:.():, +16:u05:requirements, +31:u06:[I-D.ietf-mmusic-dtls-sdp]., +16:u13:requirements, +31:u14:[i-d.ietf-mmusic-dtls-sdp]., +6:uG0:10, +8:uI0:.():, +16:u04:requirements, +31:u05:[I-D.ietf-mmusic-dtls-sdp]., +12:u07:Register, +16:u12:requirements, +31:u13:[i-d.ietf-mmusic-dtls-sdp]., +7:u22:req, +8:u23:requ, +16:u03:requirements, +31:u04:[I-D.ietf-mmusic-dtls-sdp]., +12:u06:Register, +16:u11:requirements, +31:u12:[i-d.ietf-mmusic-dtls-sdp]., +11:uI2:.''(.):, +16:u02:requirements, +31:u03:[I-D.ietf-mmusic-dtls-sdp]., +12:u05:Register, +10:u08:signal, +7:u08:new, +16:u10:requirements, +31:u11:[i-d.ietf-mmusic-dtls-sdp]., +16:u14:udp/tls/bfcp, +11:uI1:.''(.):, +8:uI2://,/, +16:u01:requirements, +31:u02:[I-D.ietf-mmusic-dtls-sdp]., +12:u04:Register, +7:u07:new, +31:u10:[i-d.ietf-mmusic-dtls-sdp]., +16:u13:udp/tls/bfcp, +6:u21:Re, +7:u22:Reg, +8:u23:Regi, +11:uI0:.''(.):, +8:uI1://,/, +16:u00:requirements, +31:u01:[I-D.ietf-mmusic-dtls-sdp]., +12:u03:Register, +10:u07:signal, +14:u08:unreliable, +7:u06:new, +12:u08:addition, +16:u12:udp/tls/bfcp, +6:u21:UD, +7:u22:UDP, +8:u23:UDP/, +8:uI0://,/, +9:uI2:.(.):, +31:u00:[I-D.ietf-mmusic-dtls-sdp]., +12:u02:Register, +10:u06:signal, +7:u05:new, +12:u07:addition, +14:u08:transport,, +16:u11:udp/tls/bfcp, +10:u14:signal, +9:uI1:.(.):, +7:uI2:''-, +12:u01:Register, +10:u05:signal, +14:u07:unreliable, +8:u08:been, +7:u04:new, +12:u06:addition, +14:u07:transport,, +16:u10:udp/tls/bfcp, +10:u13:signal, +9:uI0:.(.):, +7:uI1:''-, +12:u00:Register, +10:u04:signal, +14:u06:unreliable, +7:u03:new, +12:u05:addition, +14:u06:transport,, +12:u08:removed., +10:u12:signal, +14:u14:unreliable, +6:u21:si, +7:u22:sig, +8:u23:sign, +7:uI0:''-, +10:u03:signal, +14:u05:unreliable, +8:u07:been, +17:u08:Clarification, +7:u02:new, +12:u04:addition, +14:u05:transport,, +12:u07:removed., +10:u11:signal, +14:u13:unreliable, +10:u02:signal, +14:u04:unreliable, +8:u06:been, +7:u01:new, +12:u03:addition, +14:u04:transport,, +12:u06:removed., +10:u10:signal, +14:u12:unreliable, +8:u14:been, +6:u21:un, +7:u22:unr, +8:u23:unre, +10:u01:signal, +14:u03:unreliable, +8:u05:been, +17:u07:Clarification, +7:u00:new, +12:u02:addition, +14:u03:transport,, +12:u05:removed., +10:u08:Errata, +14:u11:unreliable, +8:u13:been, +10:u00:signal, +14:u02:unreliable, +8:u04:been, +17:u06:Clarification, +12:u01:addition, +14:u02:transport,, +12:u04:removed., +10:u07:Errata, +14:u10:unreliable, +8:u12:been, +17:u14:clarification, +7:u22:bee, +8:u23:been, +14:u01:unreliable, +8:u03:been, +17:u05:Clarification, +12:u00:addition, +14:u01:transport,, +12:u03:removed., +10:u06:Errata, +8:u11:been, +17:u13:clarification, +14:u00:unreliable, +8:u02:been, +17:u04:Clarification, +14:u00:transport,, +12:u02:removed., +10:u05:Errata, +7:u08:21], +8:u10:been, +17:u12:clarification, +6:u21:Cl, +7:u22:Cla, +8:u23:Clar, +9:uI2:.:():, +8:u01:been, +17:u03:Clarification, +12:u01:removed., +10:u04:Errata, +7:u07:21], +17:u11:clarification, +9:uI1:.:():, +8:u00:been, +17:u02:Clarification, +12:u00:removed., +10:u03:Errata, +7:u06:21], +17:u10:clarification, +9:uI0:.:():, +17:u01:Clarification, +12:u08:Language, +10:u02:Errata, +7:u05:21], +17:u00:Clarification, +9:u08:"used, +10:u01:Errata, +7:u04:21], +18:u08:clarification., +12:u07:Language, +15:u08:media-level, +10:u00:Errata, +7:u03:21], +18:u07:clarification., +12:u06:Language, +9:u07:"used, +7:u02:21], +18:u06:clarification., +12:u14:language, +12:u05:Language, +9:u06:"used, +15:u07:media-level, +6:u08:Do, +7:u01:21], +18:u05:clarification., +7:u08:Fix, +12:u13:language, +9:u14:"used, +6:uI2:.', +12:u04:Language, +9:u05:"used, +15:u06:media-level, +7:u00:21], +18:u04:clarification., +7:u07:Fix, +12:u12:language, +9:u13:"used, +15:u14:media-level, +5:u20:L, +6:u21:La, +7:u22:Lan, +8:u23:Lang, +6:uI1:.', +9:uI2:"''",, +12:u03:Language, +9:u04:"used, +15:u05:media-level, +6:u07:Do, +18:u03:clarification., +7:u06:Fix, +13:u08:specified, +12:u11:language, +9:u12:"used, +15:u13:media-level, +6:u21:"u, +7:u22:"us, +8:u23:"use, +6:uI0:.', +9:uI1:"''",, +12:u02:Language, +9:u03:"used, +15:u04:media-level, +6:u06:Do, +18:u02:clarification., +7:u05:Fix, +13:u07:specified, +12:u10:language, +9:u11:"used, +15:u12:media-level, +6:u14:do, +7:u22:med, +8:u23:medi, +9:uI0:"''",, +12:u01:Language, +9:u02:"used, +15:u03:media-level, +6:u05:Do, +18:u01:clarification., +7:u04:Fix, +13:u06:specified, +12:u08:Assorted, +9:u10:"used, +15:u11:media-level, +6:u13:do, +10:uI2:'-','', +12:u00:Language, +9:u01:"used, +15:u02:media-level, +6:u04:Do, +13:u08:normative, +18:u00:clarification., +7:u03:Fix, +13:u05:specified, +12:u07:Assorted, +18:u08:clarifications, +15:u10:media-level, +6:u12:do, +6:u14:it, +6:u21:Do, +6:u22:Do, +6:u23:Do, +10:uI1:'-','', +8:uI2:.'-', +9:u00:"used, +15:u01:media-level, +6:u03:Do, +11:u08:changed, +7:u02:Fix, +13:u04:specified, +12:u06:Assorted, +18:u07:clarifications, +12:u08:language, +6:u11:do, +6:u13:it, +10:uI0:'-','', +8:uI1:.'-', +15:u00:media-level, +6:u02:Do, +13:u07:normative, +7:u01:Fix, +13:u03:specified, +12:u05:Assorted, +18:u06:clarifications, +12:u07:language, +6:u10:do, +6:u12:it, +6:u21:it, +6:u22:it, +6:u23:it, +8:uI0:.'-', +6:u01:Do, +13:u06:normative, +11:u07:changed, +9:u08:Joerg, +7:u00:Fix, +13:u02:specified, +12:u04:Assorted, +18:u05:clarifications, +12:u06:language, +6:u11:it, +13:u14:normative, +6:u00:Do, +13:u05:normative, +11:u06:changed, +9:u08:Oscar, +13:u01:specified, +12:u03:Assorted, +18:u04:clarifications, +12:u05:language, +8:u08:Ott,, +6:u10:it, +13:u13:normative, +11:u14:changed, +7:uI2:,.., +13:u04:normative, +11:u05:changed, +9:u07:Joerg, +11:u08:authors, +13:u00:specified, +12:u02:Assorted, +18:u03:clarifications, +12:u04:language, +8:u07:Ott,, +8:u08:Novo, +13:u12:normative, +11:u13:changed, +7:u22:nor, +8:u23:norm, +7:uI1:,.., +13:u03:normative, +11:u04:changed, +9:u06:Joerg, +9:u07:Oscar, +7:u08:use, +12:u01:Assorted, +18:u02:clarifications, +12:u03:language, +8:u06:Ott,, +8:u07:Novo, +8:u08:also, +13:u11:normative, +11:u12:changed, +9:u14:joerg, +8:u23:chan, +7:uI0:,.., +13:u02:normative, +11:u03:changed, +9:u05:Joerg, +9:u06:Oscar, +11:u07:authors, +10:u08:Eckel,, +12:u00:Assorted, +18:u01:clarifications, +12:u02:language, +8:u05:Ott,, +8:u06:Novo, +8:u07:also, +8:u08:over, +13:u10:normative, +11:u11:changed, +9:u13:joerg, +9:u14:oscar, +9:uI2:,,,,,, +13:u01:normative, +11:u02:changed, +9:u04:Joerg, +9:u05:Oscar, +11:u06:authors, +7:u07:use, +13:u08:important, +18:u00:clarifications, +12:u01:language, +8:u04:Ott,, +8:u05:Novo, +8:u06:also, +8:u07:over, +8:u08:Alan, +11:u10:changed, +9:u12:joerg, +9:u13:oscar, +11:u14:authors, +5:u20:J, +6:u21:Jo, +7:u22:Joe, +8:u23:Joer, +9:uI1:,,,,,, +13:u00:normative, +11:u01:changed, +9:u03:Joerg, +9:u04:Oscar, +11:u05:authors, +7:u06:use, +10:u07:Eckel,, +11:u08:Charles, +12:u00:language, +8:u03:Ott,, +8:u04:Novo, +8:u05:also, +8:u06:over, +8:u07:Alan, +9:u08:final, +9:u11:joerg, +9:u12:oscar, +11:u13:authors, +7:u14:use, +6:u21:Os, +7:u22:Osc, +8:u23:Osca, +9:uI0:,,,,,, +11:u00:changed, +9:u02:Joerg, +9:u03:Oscar, +11:u04:authors, +7:u05:use, +10:u06:Eckel,, +13:u07:important, +16:u08:considerable, +8:u02:Ott,, +8:u03:Novo, +8:u04:also, +8:u05:over, +8:u06:Alan, +9:u07:final, +10:u08:Eckel., +9:u10:joerg, +9:u11:oscar, +11:u12:authors, +7:u13:use, +10:u14:eckel,, +6:u21:au, +7:u22:aut, +8:u23:auth, +9:u01:Joerg, +9:u02:Oscar, +11:u03:authors, +7:u04:use, +10:u05:Eckel,, +13:u06:important, +11:u07:Charles, +8:u01:Ott,, +8:u02:Novo, +8:u03:also, +8:u04:over, +8:u05:Alan, +9:u06:final, +10:u07:Eckel., +10:u08:effort, +9:u10:oscar, +11:u11:authors, +7:u12:use, +10:u13:eckel,, +13:u14:important, +7:u23:use, +9:u00:Joerg, +9:u01:Oscar, +11:u02:authors, +7:u03:use, +10:u04:Eckel,, +13:u05:important, +11:u06:Charles, +16:u07:considerable, +8:u00:Ott,, +8:u01:Novo, +8:u02:also, +8:u03:over, +8:u04:Alan, +9:u05:final, +10:u06:Eckel., +10:u07:effort, +11:u10:authors, +7:u11:use, +10:u12:eckel,, +13:u13:important, +11:u14:charles, +6:u21:Ec, +7:u22:Eck, +8:u23:Ecke, +9:u00:Oscar, +11:u01:authors, +7:u02:use, +10:u03:Eckel,, +13:u04:important, +11:u05:Charles, +16:u06:considerable, +33:u08:[I-D.ietf-bfcpbis-rfc4582bis], +8:u00:Novo, +8:u01:also, +8:u02:over, +8:u03:Alan, +9:u04:final, +10:u05:Eckel., +10:u06:effort, +7:u10:use, +10:u11:eckel,, +13:u12:important, +11:u13:charles, +16:u14:considerable, +6:u21:im, +7:u22:imp, +8:u23:impo, +11:u00:authors, +7:u01:use, +10:u02:Eckel,, +13:u03:important, +11:u04:Charles, +16:u05:considerable, +8:u00:also, +8:u01:over, +8:u02:Alan, +9:u03:final, +10:u04:Eckel., +10:u05:effort, +10:u10:eckel,, +13:u11:important, +11:u12:charles, +16:u13:considerable, +7:u00:use, +10:u01:Eckel,, +13:u02:important, +11:u03:Charles, +16:u04:considerable, +33:u07:[I-D.ietf-bfcpbis-rfc4582bis], +8:u00:over, +8:u01:Alan, +9:u02:final, +10:u03:Eckel., +10:u04:effort, +7:u08:G.,, +13:u10:important, +11:u11:charles, +16:u12:considerable, +8:u23:cons, +10:u00:Eckel,, +13:u01:important, +11:u02:Charles, +16:u03:considerable, +33:u06:[I-D.ietf-bfcpbis-rfc4582bis], +30:u08:ietf-bfcpbis-rfc4582bis-16, +8:u00:Alan, +9:u01:final, +10:u02:Eckel., +10:u03:effort, +7:u07:G.,, +8:u08:"The, +11:u10:charles, +16:u11:considerable, +33:u14:[i-d.ietf-bfcpbis-rfc4582bis], +13:u00:important, +11:u01:Charles, +16:u02:considerable, +33:u05:[I-D.ietf-bfcpbis-rfc4582bis], +9:u08:2015., +9:u00:final, +10:u01:Eckel., +10:u02:effort, +7:u06:G.,, +8:u07:"The, +9:u08:(work, +16:u10:considerable, +33:u13:[i-d.ietf-bfcpbis-rfc4582bis], +11:u00:Charles, +16:u01:considerable, +33:u04:[I-D.ietf-bfcpbis-rfc4582bis], +30:u07:ietf-bfcpbis-rfc4582bis-16, +30:u08:[I-D.ietf-mmusic-dtls-sdp], +10:u00:Eckel., +10:u01:effort, +7:u05:G.,, +8:u06:"The, +9:u07:(work, +33:u12:[i-d.ietf-bfcpbis-rfc4582bis], +17:uI2:,.,,.,,.,,.,., +16:u00:considerable, +33:u03:[I-D.ietf-bfcpbis-rfc4582bis], +30:u06:ietf-bfcpbis-rfc4582bis-16, +9:u07:2015., +13:u08:Holmberg,, +10:u00:effort, +7:u04:G.,, +8:u05:"The, +9:u06:(work, +33:u11:[i-d.ietf-bfcpbis-rfc4582bis], +30:u14:ietf-bfcpbis-rfc4582bis-16, +17:uI1:,.,,.,,.,,.,., +11:uI2:,"()",-, +33:u02:[I-D.ietf-bfcpbis-rfc4582bis], +30:u05:ietf-bfcpbis-rfc4582bis-16, +9:u06:2015., +30:u07:[I-D.ietf-mmusic-dtls-sdp], +9:u08:(SDP), +7:u03:G.,, +8:u04:"The, +9:u05:(work, +33:u10:[i-d.ietf-bfcpbis-rfc4582bis], +30:u13:ietf-bfcpbis-rfc4582bis-16, +9:u14:2015., +17:uI0:,.,,.,,.,,.,., +11:uI1:,"()",-, +10:uI2:---(),, +33:u01:[I-D.ietf-bfcpbis-rfc4582bis], +30:u04:ietf-bfcpbis-rfc4582bis-16, +9:u05:2015., +30:u06:[I-D.ietf-mmusic-dtls-sdp], +13:u07:Holmberg,, +9:u08:Layer, +7:u02:G.,, +8:u03:"The, +9:u04:(work, +16:u08:Offer/Answer, +30:u12:ietf-bfcpbis-rfc4582bis-16, +9:u13:2015., +30:u14:[i-d.ietf-mmusic-dtls-sdp], +6:u21:ie, +7:u22:iet, +8:u23:ietf, +11:uI0:,"()",-, +10:uI1:---(),, +33:u00:[I-D.ietf-bfcpbis-rfc4582bis], +30:u03:ietf-bfcpbis-rfc4582bis-16, +9:u04:2015., +30:u05:[I-D.ietf-mmusic-dtls-sdp], +13:u06:Holmberg,, +9:u07:(SDP), +33:u08:draft-ietf-mmusic-dtls-sdp-32, +7:u01:G.,, +8:u02:"The, +9:u03:(work, +16:u07:Offer/Answer, +30:u11:ietf-bfcpbis-rfc4582bis-16, +9:u12:2015., +30:u13:[i-d.ietf-mmusic-dtls-sdp], +13:u14:holmberg,, +6:u21:20, +7:u22:201, +8:u23:2015, +10:uI0:---(),, +11:uI2:[-.---], +30:u02:ietf-bfcpbis-rfc4582bis-16, +9:u03:2015., +30:u04:[I-D.ietf-mmusic-dtls-sdp], +13:u05:Holmberg,, +9:u06:(SDP), +9:u07:Layer, +9:u08:2017., +7:u00:G.,, +8:u01:"The, +9:u02:(work, +16:u06:Offer/Answer, +30:u10:ietf-bfcpbis-rfc4582bis-16, +9:u11:2015., +30:u12:[i-d.ietf-mmusic-dtls-sdp], +13:u13:holmberg,, +9:u14:(sdp), +11:uI1:[-.---], +9:uI2:,..,", +30:u01:ietf-bfcpbis-rfc4582bis-16, +9:u02:2015., +30:u03:[I-D.ietf-mmusic-dtls-sdp], +13:u04:Holmberg,, +9:u05:(SDP), +9:u06:Layer, +33:u07:draft-ietf-mmusic-dtls-sdp-32, +33:u08:[I-D.ietf-mmusic-ice-sip-sdp], +8:u00:"The, +9:u01:(work, +16:u05:Offer/Answer, +9:u10:2015., +30:u11:[i-d.ietf-mmusic-dtls-sdp], +13:u12:holmberg,, +9:u13:(sdp), +9:u14:layer, +7:u22:Hol, +8:u23:Holm, +11:uI0:[-.---], +9:uI1:,..,", +30:u00:ietf-bfcpbis-rfc4582bis-16, +9:u01:2015., +30:u02:[I-D.ietf-mmusic-dtls-sdp], +13:u03:Holmberg,, +9:u04:(SDP), +9:u05:Layer, +33:u06:draft-ietf-mmusic-dtls-sdp-32, +9:u07:2017., +19:u08:Petit-Huguenin,, +9:u00:(work, +16:u04:Offer/Answer, +30:u10:[i-d.ietf-mmusic-dtls-sdp], +13:u11:holmberg,, +9:u12:(sdp), +9:u13:layer, +33:u14:draft-ietf-mmusic-dtls-sdp-32, +7:u22:(SD, +8:u23:(SDP, +9:uI0:,..,", +10:uI2:()()",, +9:u00:2015., +30:u01:[I-D.ietf-mmusic-dtls-sdp], +13:u02:Holmberg,, +9:u03:(SDP), +9:u04:Layer, +33:u05:draft-ietf-mmusic-dtls-sdp-32, +9:u06:2017., +33:u07:[I-D.ietf-mmusic-ice-sip-sdp], +12:u08:"Session, +16:u03:Offer/Answer, +7:u08:M.,, +13:u10:holmberg,, +9:u11:(sdp), +9:u12:layer, +33:u13:draft-ietf-mmusic-dtls-sdp-32, +9:u14:2017., +7:u22:Lay, +8:u23:Laye, +10:uI1:()()",, +12:uI2:-----(),, +30:u00:[I-D.ietf-mmusic-dtls-sdp], +13:u01:Holmberg,, +9:u02:(SDP), +9:u03:Layer, +33:u04:draft-ietf-mmusic-dtls-sdp-32, +9:u05:2017., +33:u06:[I-D.ietf-mmusic-ice-sip-sdp], +19:u07:Petit-Huguenin,, +16:u02:Offer/Answer, +7:u07:M.,, +9:u10:(sdp), +9:u11:layer, +33:u12:draft-ietf-mmusic-dtls-sdp-32, +9:u13:2017., +33:u14:[i-d.ietf-mmusic-ice-sip-sdp], +10:uI0:()()",, +12:uI1:-----(),, +13:u00:Holmberg,, +9:u01:(SDP), +9:u02:Layer, +33:u03:draft-ietf-mmusic-dtls-sdp-32, +9:u04:2017., +33:u05:[I-D.ietf-mmusic-ice-sip-sdp], +19:u06:Petit-Huguenin,, +12:u07:"Session, +11:u08:(ICE)",, +16:u01:Offer/Answer, +7:u06:M.,, +9:u10:layer, +33:u11:draft-ietf-mmusic-dtls-sdp-32, +9:u12:2017., +33:u13:[i-d.ietf-mmusic-ice-sip-sdp], +19:u14:petit-huguenin,, +8:u23:2017, +12:uI0:-----(),, +9:u00:(SDP), +9:u01:Layer, +33:u02:draft-ietf-mmusic-dtls-sdp-32, +9:u03:2017., +33:u04:[I-D.ietf-mmusic-ice-sip-sdp], +19:u05:Petit-Huguenin,, +12:u06:"Session, +14:u08:progress),, +16:u00:Offer/Answer, +7:u05:M.,, +36:u08:draft-ietf-mmusic-ice-sip-sdp-24, +33:u10:draft-ietf-mmusic-dtls-sdp-32, +9:u11:2017., +33:u12:[i-d.ietf-mmusic-ice-sip-sdp], +19:u13:petit-huguenin,, +12:u14:"session, +13:uI2:-,.,,.,.,, +9:u00:Layer, +33:u01:draft-ietf-mmusic-dtls-sdp-32, +9:u02:2017., +33:u03:[I-D.ietf-mmusic-ice-sip-sdp], +19:u04:Petit-Huguenin,, +12:u05:"Session, +11:u07:(ICE)",, +7:u04:M.,, +36:u07:draft-ietf-mmusic-ice-sip-sdp-24, +12:u08:November, +9:u10:2017., +33:u11:[i-d.ietf-mmusic-ice-sip-sdp], +19:u12:petit-huguenin,, +12:u13:"session, +6:u21:Pe, +7:u22:Pet, +8:u23:Peti, +13:uI1:-,.,,.,.,, +8:uI2:"()/, +33:u00:draft-ietf-mmusic-dtls-sdp-32, +9:u01:2017., +33:u02:[I-D.ietf-mmusic-ice-sip-sdp], +19:u03:Petit-Huguenin,, +12:u04:"Session, +11:u06:(ICE)",, +14:u07:progress),, +7:u03:M.,, +36:u06:draft-ietf-mmusic-ice-sip-sdp-24, +12:u07:November, +33:u10:[i-d.ietf-mmusic-ice-sip-sdp], +19:u11:petit-huguenin,, +12:u12:"session, +11:u14:(ice)",, +7:u22:"Se, +8:u23:"Ses, +13:uI0:-,.,,.,.,, +8:uI1:"()/, +9:u00:2017., +33:u01:[I-D.ietf-mmusic-ice-sip-sdp], +19:u02:Petit-Huguenin,, +12:u03:"Session, +11:u05:(ICE)",, +14:u06:progress),, +7:u02:M.,, +36:u05:draft-ietf-mmusic-ice-sip-sdp-24, +12:u06:November, +19:u10:petit-huguenin,, +12:u11:"session, +11:u13:(ice)",, +14:u14:progress),, +8:uI0:"()/, +15:uI2:()",------(, +33:u00:[I-D.ietf-mmusic-ice-sip-sdp], +19:u01:Petit-Huguenin,, +12:u02:"Session, +11:u04:(ICE)",, +14:u05:progress),, +7:u01:M.,, +36:u04:draft-ietf-mmusic-ice-sip-sdp-24, +12:u05:November, +7:u08:22], +12:u10:"session, +11:u12:(ice)",, +14:u13:progress),, +6:u21:(I, +7:u22:(IC, +8:u23:(ICE, +15:uI1:()",------(, +7:uI2:),., +19:u00:Petit-Huguenin,, +12:u01:"Session, +11:u03:(ICE)",, +14:u04:progress),, +7:u00:M.,, +36:u03:draft-ietf-mmusic-ice-sip-sdp-24, +12:u04:November, +7:u07:22], +11:u11:(ice)",, +14:u12:progress),, +8:u23:prog, +15:uI0:()",------(, +7:uI1:),., +12:u00:"Session, +11:u02:(ICE)",, +14:u03:progress),, +36:u02:draft-ietf-mmusic-ice-sip-sdp-24, +12:u03:November, +7:u06:22], +11:u10:(ice)",, +14:u11:progress),, +7:uI0:),., +11:u01:(ICE)",, +14:u02:progress),, +36:u01:draft-ietf-mmusic-ice-sip-sdp-24, +12:u02:November, +7:u05:22], +14:u10:progress),, +11:u00:(ICE)",, +14:u01:progress),, +15:u08:Nandakumar,, +36:u00:draft-ietf-mmusic-ice-sip-sdp-24, +12:u01:November, +7:u04:22], +14:u00:progress),, +18:u08:Multiplexing",, +12:u00:November, +7:u03:22], +7:u08:S.,, +15:u07:Nandakumar,, +7:u02:22], +7:u07:S.,, +43:u08:draft-ietf-mmusic-sdp-mux-attributes-17, +15:u06:Nandakumar,, +18:u07:Multiplexing",, +7:u01:22], +7:u06:S.,, +43:u07:draft-ietf-mmusic-sdp-mux-attributes-17, +15:u14:nandakumar,, +15:u05:Nandakumar,, +18:u06:Multiplexing",, +15:u08:Requirement, +7:u00:22], +7:u05:S.,, +43:u06:draft-ietf-mmusic-sdp-mux-attributes-17, +12:u08:Bradner,, +15:u13:nandakumar,, +18:u14:multiplexing",, +8:uI2:,.,", +15:u04:Nandakumar,, +18:u05:Multiplexing",, +7:u08:DOI, +7:u04:S.,, +43:u05:draft-ietf-mmusic-sdp-mux-attributes-17, +12:u07:Bradner,, +12:u08:Levels",, +15:u12:nandakumar,, +18:u13:multiplexing",, +9:u14:(work, +6:u21:Na, +7:u22:Nan, +8:u23:Nand, +8:uI1:,.,", +12:uI2:",------, +15:u03:Nandakumar,, +18:u04:Multiplexing",, +15:u07:Requirement, +29:u08:editor.org/info/rfc2119>., +7:u03:S.,, +43:u04:draft-ietf-mmusic-sdp-mux-attributes-17, +12:u06:Bradner,, +12:u07:Levels",, +21:u08:10.17487/RFC2119,, +15:u11:nandakumar,, +18:u12:multiplexing",, +9:u13:(work, +13:u14:[rfc2119], +7:u22:Mul, +8:u23:Mult, +8:uI0:,.,", +12:uI1:",------, +8:uI2:(),., +15:u02:Nandakumar,, +18:u03:Multiplexing",, +15:u06:Requirement, +7:u07:DOI, +13:u08:[RFC3261], +7:u02:S.,, +43:u03:draft-ietf-mmusic-sdp-mux-attributes-17, +12:u05:Bradner,, +12:u06:Levels",, +21:u07:10.17487/RFC2119,, +15:u10:nandakumar,, +18:u11:multiplexing",, +9:u12:(work, +13:u13:[rfc2119], +15:u14:requirement, +6:u21:(w, +7:u22:(wo, +8:u23:(wor, +12:uI0:",------, +8:uI1:(),., +10:uI2:[],.,", +15:u01:Nandakumar,, +18:u02:Multiplexing",, +15:u05:Requirement, +7:u06:DOI, +29:u07:editor.org/info/rfc2119>., +7:u08:A.,, +7:u01:S.,, +43:u02:draft-ietf-mmusic-sdp-mux-attributes-17, +12:u04:Bradner,, +12:u05:Levels",, +21:u06:10.17487/RFC2119,, +14:u08:Rosenberg,, +18:u10:multiplexing",, +9:u11:(work, +13:u12:[rfc2119], +15:u13:requirement, +7:u14:doi, +8:uI0:(),., +10:uI1:[],.,", +8:uI2:",,,, +15:u00:Nandakumar,, +18:u01:Multiplexing",, +15:u04:Requirement, +7:u05:DOI, +29:u06:editor.org/info/rfc2119>., +13:u07:[RFC3261], +13:u08:Schooler,, +7:u00:S.,, +43:u01:draft-ietf-mmusic-sdp-mux-attributes-17, +12:u03:Bradner,, +12:u04:Levels",, +21:u05:10.17487/RFC2119,, +14:u07:Rosenberg,, +13:u08:Peterson,, +9:u10:(work, +13:u11:[rfc2119], +15:u12:requirement, +7:u13:doi, +29:u14:editor.org/info/rfc2119>., +7:u22:Req, +8:u23:Requ, +10:uI0:[],.,", +8:uI1:",,,, +13:uI2:./,,://.-, +18:u00:Multiplexing",, +15:u03:Requirement, +7:u04:DOI, +29:u05:editor.org/info/rfc2119>., +13:u06:[RFC3261], +7:u07:A.,, +43:u00:draft-ietf-mmusic-sdp-mux-attributes-17, +12:u02:Bradner,, +12:u03:Levels",, +21:u04:10.17487/RFC2119,, +14:u06:Rosenberg,, +13:u07:Peterson,, +9:u08:"SIP:, +13:u10:[rfc2119], +15:u11:requirement, +7:u12:doi, +29:u13:editor.org/info/rfc2119>., +13:u14:[rfc3261], +6:u21:DO, +7:u22:DOI, +7:u23:DOI, +8:uI0:",,,, +13:uI1:./,,://.-, +8:uI2:.//., +15:u02:Requirement, +7:u03:DOI, +29:u04:editor.org/info/rfc2119>., +13:u05:[RFC3261], +7:u06:A.,, +13:u07:Schooler,, +29:u08:editor.org/info/rfc3261>., +12:u01:Bradner,, +12:u02:Levels",, +21:u03:10.17487/RFC2119,, +14:u05:Rosenberg,, +13:u06:Peterson,, +9:u07:"SIP:, +21:u08:10.17487/RFC3261,, +15:u10:requirement, +7:u11:doi, +29:u12:editor.org/info/rfc2119>., +13:u13:[rfc3261], +7:u14:a.,, +6:u21:ed, +7:u22:edi, +8:u23:edit, +13:uI0:./,,://.-, +8:uI1:.//., +16:uI2:[],.,,.,,.,,, +15:u01:Requirement, +7:u02:DOI, +29:u03:editor.org/info/rfc2119>., +13:u04:[RFC3261], +7:u05:A.,, +13:u06:Schooler,, +12:u00:Bradner,, +12:u01:Levels",, +21:u02:10.17487/RFC2119,, +14:u04:Rosenberg,, +13:u05:Peterson,, +9:u06:"SIP:, +21:u07:10.17487/RFC3261,, +7:u10:doi, +29:u11:editor.org/info/rfc2119>., +13:u12:[rfc3261], +7:u13:a.,, +13:u14:schooler,, +8:uI0:.//., +16:uI1:[],.,,.,,.,,, +16:uI2:.,,.,,.,,.,., +15:u00:Requirement, +7:u01:DOI, +29:u02:editor.org/info/rfc2119>., +13:u03:[RFC3261], +7:u04:A.,, +13:u05:Schooler,, +29:u07:editor.org/info/rfc3261>., +12:u00:Levels",, +21:u01:10.17487/RFC2119,, +14:u03:Rosenberg,, +13:u04:Peterson,, +9:u05:"SIP:, +21:u06:10.17487/RFC3261,, +29:u10:editor.org/info/rfc2119>., +13:u11:[rfc3261], +7:u12:a.,, +13:u13:schooler,, +6:u21:A., +7:u22:A.,, +7:u23:A.,, +16:uI0:[],.,,.,,.,,, +16:uI1:.,,.,,.,,.,., +10:uI2:,":",,, +7:u00:DOI, +29:u01:editor.org/info/rfc2119>., +13:u02:[RFC3261], +7:u03:A.,, +13:u04:Schooler,, +29:u06:editor.org/info/rfc3261>., +21:u00:10.17487/RFC2119,, +14:u02:Rosenberg,, +13:u03:Peterson,, +9:u04:"SIP:, +21:u05:10.17487/RFC3261,, +13:u10:[rfc3261], +7:u11:a.,, +13:u12:schooler,, +29:u14:editor.org/info/rfc3261>., +6:u21:Sc, +7:u22:Sch, +8:u23:Scho, +16:uI0:.,,.,,.,,.,., +10:uI1:,":",,, +29:u00:editor.org/info/rfc2119>., +13:u01:[RFC3261], +7:u02:A.,, +13:u03:Schooler,, +29:u05:editor.org/info/rfc3261>., +29:u08:editor.org/info/rfc3264>., +14:u01:Rosenberg,, +13:u02:Peterson,, +9:u03:"SIP:, +21:u04:10.17487/RFC3261,, +21:u08:10.17487/RFC3264,, +7:u10:a.,, +13:u11:schooler,, +29:u13:editor.org/info/rfc3261>., +13:u14:[rfc3264], +10:uI0:,":",,, +13:u00:[RFC3261], +7:u01:A.,, +13:u02:Schooler,, +29:u04:editor.org/info/rfc3261>., +13:u08:[RFC4145], +14:u00:Rosenberg,, +13:u01:Peterson,, +9:u02:"SIP:, +21:u03:10.17487/RFC3261,, +21:u07:10.17487/RFC3264,, +13:u10:schooler,, +29:u12:editor.org/info/rfc3261>., +13:u13:[rfc3264], +12:uI2:[],..,"/, +7:u00:A.,, +13:u01:Schooler,, +29:u03:editor.org/info/rfc3261>., +29:u07:editor.org/info/rfc3264>., +13:u00:Peterson,, +9:u01:"SIP:, +21:u02:10.17487/RFC3261,, +21:u06:10.17487/RFC3264,, +8:u08:Yon,, +29:u11:editor.org/info/rfc3261>., +13:u12:[rfc3264], +12:uI1:[],..,"/, +9:uI2:()",,, +13:u00:Schooler,, +29:u02:editor.org/info/rfc3261>., +29:u06:editor.org/info/rfc3264>., +13:u07:[RFC4145], +9:u00:"SIP:, +21:u01:10.17487/RFC3261,, +21:u05:10.17487/RFC3264,, +8:u07:Yon,, +29:u10:editor.org/info/rfc3261>., +13:u11:[rfc3264], +29:u14:editor.org/info/rfc3264>., +12:uI0:[],..,"/, +9:uI1:()",,, +29:u01:editor.org/info/rfc3261>., +29:u05:editor.org/info/rfc3264>., +13:u06:[RFC4145], +29:u08:editor.org/info/rfc4145>., +21:u00:10.17487/RFC3261,, +21:u04:10.17487/RFC3264,, +8:u06:Yon,, +21:u08:10.17487/RFC4145,, +13:u10:[rfc3264], +29:u13:editor.org/info/rfc3264>., +13:u14:[rfc4145], +9:uI0:()",,, +29:u00:editor.org/info/rfc3261>., +29:u04:editor.org/info/rfc3264>., +13:u05:[RFC4145], +13:u08:[RFC4566], +21:u03:10.17487/RFC3264,, +8:u05:Yon,, +21:u07:10.17487/RFC4145,, +29:u12:editor.org/info/rfc3264>., +13:u13:[rfc4145], +6:uG2:11, +12:uI2:[],..,"-, +29:u03:editor.org/info/rfc3264>., +13:u04:[RFC4145], +29:u07:editor.org/info/rfc4145>., +21:u02:10.17487/RFC3264,, +8:u04:Yon,, +21:u06:10.17487/RFC4145,, +12:u08:Handley,, +29:u11:editor.org/info/rfc3264>., +13:u12:[rfc4145], +6:uG1:11, +12:uI1:[],..,"-, +29:u02:editor.org/info/rfc3264>., +13:u03:[RFC4145], +29:u06:editor.org/info/rfc4145>., +13:u07:[RFC4566], +8:u08:July, +21:u01:10.17487/RFC3264,, +8:u03:Yon,, +21:u05:10.17487/RFC4145,, +12:u07:Handley,, +14:u08:Protocol",, +29:u10:editor.org/info/rfc3264>., +13:u11:[rfc4145], +29:u14:editor.org/info/rfc4145>., +6:uG0:11, +12:uI0:[],..,"-, +29:u01:editor.org/info/rfc3264>., +13:u02:[RFC4145], +29:u05:editor.org/info/rfc4145>., +13:u06:[RFC4566], +13:u08:[RFC4571], +21:u00:10.17487/RFC3264,, +8:u02:Yon,, +21:u04:10.17487/RFC4145,, +12:u06:Handley,, +14:u07:Protocol",, +9:u08:2006,, +13:u10:[rfc4145], +29:u13:editor.org/info/rfc4145>., +13:u14:[rfc4566], +29:u00:editor.org/info/rfc3264>., +13:u01:[RFC4145], +29:u04:editor.org/info/rfc4145>., +13:u05:[RFC4566], +8:u07:July, +8:u01:Yon,, +21:u03:10.17487/RFC4145,, +12:u05:Handley,, +14:u06:Protocol",, +9:u07:2006,, +12:u08:Lazzaro,, +29:u12:editor.org/info/rfc4145>., +13:u13:[rfc4566], +16:uI2:[],.,,.,.,":, +13:u00:[RFC4145], +29:u03:editor.org/info/rfc4145>., +13:u04:[RFC4566], +8:u06:July, +13:u07:[RFC4571], +12:u08:Oriented, +8:u00:Yon,, +21:u02:10.17487/RFC4145,, +12:u04:Handley,, +14:u05:Protocol",, +9:u06:2006,, +12:u07:Lazzaro,, +7:u08:RTP, +29:u11:editor.org/info/rfc4145>., +13:u12:[rfc4566], +8:u14:july, +16:uI1:[],.,,.,.,":, +10:uI2:",,./,, +29:u02:editor.org/info/rfc4145>., +13:u03:[RFC4566], +8:u05:July, +13:u06:[RFC4571], +21:u01:10.17487/RFC4145,, +12:u03:Handley,, +14:u04:Protocol",, +9:u05:2006,, +12:u06:Lazzaro,, +7:u07:RTP, +15:u08:Transport",, +29:u10:editor.org/info/rfc4145>., +13:u11:[rfc4566], +8:u13:july, +13:u14:[rfc4571], +16:uI0:[],.,,.,.,":, +10:uI1:",,./,, +14:uI2:,://.-.//., +29:u01:editor.org/info/rfc4145>., +13:u02:[RFC4566], +8:u04:July, +13:u05:[RFC4571], +12:u07:Oriented, +13:u08:[RFC4574], +21:u00:10.17487/RFC4145,, +12:u02:Handley,, +14:u03:Protocol",, +9:u04:2006,, +12:u05:Lazzaro,, +7:u06:RTP, +15:u07:Transport",, +46:u08:<https://www.rfc-editor.org/info/rfc4571>., +13:u10:[rfc4566], +8:u12:july, +13:u13:[rfc4571], +6:u21:Ju, +7:u22:Jul, +8:u23:July, +10:uI0:",,./,, +14:uI1:,://.-.//., +13:uI2:[],.,"-(), +29:u00:editor.org/info/rfc4145>., +13:u01:[RFC4566], +8:u03:July, +13:u04:[RFC4571], +12:u06:Oriented, +12:u01:Handley,, +14:u02:Protocol",, +9:u03:2006,, +12:u04:Lazzaro,, +7:u05:RTP, +15:u06:Transport",, +46:u07:<https://www.rfc-editor.org/info/rfc4571>., +10:u08:Levin,, +8:u11:july, +13:u12:[rfc4571], +12:u14:oriented, +14:uI0:,://.-.//., +13:uI1:[],.,"-(), +7:uI2:()-, +13:u00:[RFC4566], +8:u02:July, +13:u03:[RFC4571], +12:u05:Oriented, +13:u07:[RFC4574], +12:u00:Handley,, +14:u01:Protocol",, +9:u02:2006,, +12:u03:Lazzaro,, +7:u04:RTP, +15:u05:Transport",, +46:u06:<https://www.rfc-editor.org/info/rfc4571>., +10:u07:Levin,, +8:u10:july, +13:u11:[rfc4571], +12:u13:oriented, +9:u14:2006,, +13:uI0:[],.,"-(), +7:uI1:()-, +8:u01:July, +13:u02:[RFC4571], +12:u04:Oriented, +13:u06:[RFC4574], +29:u08:editor.org/info/rfc4574>., +14:u00:Protocol",, +9:u01:2006,, +12:u02:Lazzaro,, +7:u03:RTP, +15:u04:Transport",, +46:u05:<https://www.rfc-editor.org/info/rfc4571>., +10:u06:Levin,, +21:u08:10.17487/RFC4574,, +13:u10:[rfc4571], +12:u12:oriented, +9:u13:2006,, +13:u14:[rfc4574], +6:u21:Or, +7:u22:Ori, +8:u23:Orie, +7:uI0:()-, +8:u00:July, +13:u01:[RFC4571], +12:u03:Oriented, +13:u05:[RFC4574], +13:u08:[RFC4582], +9:u00:2006,, +12:u01:Lazzaro,, +7:u02:RTP, +15:u03:Transport",, +46:u04:<https://www.rfc-editor.org/info/rfc4571>., +10:u05:Levin,, +21:u07:10.17487/RFC4574,, +12:u11:oriented, +9:u12:2006,, +13:u13:[rfc4574], +7:u22:200, +8:u23:2006, +11:uI2:[],..,", +13:u00:[RFC4571], +12:u02:Oriented, +13:u04:[RFC4574], +29:u07:editor.org/info/rfc4574>., +12:u00:Lazzaro,, +7:u01:RTP, +15:u02:Transport",, +46:u03:<https://www.rfc-editor.org/info/rfc4571>., +10:u04:Levin,, +21:u06:10.17487/RFC4574,, +12:u10:oriented, +9:u11:2006,, +13:u12:[rfc4574], +11:uI1:[],..,", +12:u01:Oriented, +13:u03:[RFC4574], +29:u06:editor.org/info/rfc4574>., +13:u07:[RFC4582], +7:u00:RTP, +15:u01:Transport",, +46:u02:<https://www.rfc-editor.org/info/rfc4571>., +10:u03:Levin,, +21:u05:10.17487/RFC4574,, +9:u10:2006,, +13:u11:[rfc4574], +29:u14:editor.org/info/rfc4574>., +11:uI0:[],..,", +12:u00:Oriented, +13:u02:[RFC4574], +29:u05:editor.org/info/rfc4574>., +13:u06:[RFC4582], +15:u00:Transport",, +46:u01:<https://www.rfc-editor.org/info/rfc4571>., +10:u02:Levin,, +21:u04:10.17487/RFC4574,, +13:u10:[rfc4574], +29:u13:editor.org/info/rfc4574>., +13:u14:[rfc4582], +13:u01:[RFC4574], +29:u04:editor.org/info/rfc4574>., +13:u05:[RFC4582], +46:u00:<https://www.rfc-editor.org/info/rfc4571>., +10:u01:Levin,, +21:u03:10.17487/RFC4574,, +29:u12:editor.org/info/rfc4574>., +13:u13:[rfc4582], +15:uI2:[],.,,.,.,", +13:u00:[RFC4574], +29:u03:editor.org/info/rfc4574>., +13:u04:[RFC4582], +7:u08:RFC, +10:u00:Levin,, +21:u02:10.17487/RFC4574,, +10:u08:Binary, +29:u11:editor.org/info/rfc4574>., +13:u12:[rfc4582], +12:u14:november, +15:uI1:[],.,,.,.,", +12:uI2:()",,./,, +29:u02:editor.org/info/rfc4574>., +13:u03:[RFC4582], +46:u08:<https://www.rfc-editor.org/info/rfc4583>., +21:u01:10.17487/RFC4574,, +10:u07:Binary, +9:u08:4583,, +29:u10:editor.org/info/rfc4574>., +13:u11:[rfc4582], +12:u13:november, +15:uI0:[],.,,.,.,", +12:uI1:()",,./,, +29:u01:editor.org/info/rfc4574>., +13:u02:[RFC4582], +7:u07:RFC, +21:u00:10.17487/RFC4574,, +10:u06:Binary, +9:u07:4583,, +13:u10:[rfc4582], +12:u12:november, +7:u22:Nov, +8:u23:Nove, +12:uI0:()",,./,, +12:uI2:[],.,"(), +29:u00:editor.org/info/rfc4574>., +13:u01:[RFC4582], +7:u06:RFC, +46:u07:<https://www.rfc-editor.org/info/rfc4583>., +10:u05:Binary, +9:u06:4583,, +12:u11:november, +7:u14:rfc, +12:uI1:[],.,"(), +8:uI2:()",, +13:u00:[RFC4582], +7:u05:RFC, +46:u06:<https://www.rfc-editor.org/info/rfc4583>., +10:u04:Binary, +9:u05:4583,, +12:u10:november, +7:u13:rfc, +46:u14:<https://www.rfc-editor.org/info/rfc4583>., +12:uI0:[],.,"(), +8:uI1:()",, +9:uI2:,./,,, +7:u04:RFC, +46:u05:<https://www.rfc-editor.org/info/rfc4583>., +10:u03:Binary, +9:u04:4583,, +7:u08:23], +7:u12:rfc, +46:u13:<https://www.rfc-editor.org/info/rfc4583>., +6:u21:RF, +7:u22:RFC, +7:u23:RFC, +8:uI0:()",, +9:uI1:,./,,, +13:uI2:://.-.//., +7:u03:RFC, +46:u04:<https://www.rfc-editor.org/info/rfc4583>., +10:u02:Binary, +9:u03:4583,, +7:u07:23], +7:u11:rfc, +46:u12:<https://www.rfc-editor.org/info/rfc4583>., +5:u20:<, +6:u21:<h, +7:u22:<ht, +8:u23:<htt, +9:uI0:,./,,, +13:uI1:://.-.//., +7:u02:RFC, +46:u03:<https://www.rfc-editor.org/info/rfc4583>., +10:u01:Binary, +9:u02:4583,, +7:u06:23], +7:u10:rfc, +46:u11:<https://www.rfc-editor.org/info/rfc4583>., +13:uI0:://.-.//., +7:u01:RFC, +46:u02:<https://www.rfc-editor.org/info/rfc4583>., +13:u08:[RFC5234], +10:u00:Binary, +9:u01:4583,, +7:u05:23], +46:u10:<https://www.rfc-editor.org/info/rfc4583>., +7:u00:RFC, +46:u01:<https://www.rfc-editor.org/info/rfc4583>., +19:u08:Specifications:, +9:u00:4583,, +7:u04:23], +12:u08:Crocker,, +46:u00:<https://www.rfc-editor.org/info/rfc4583>., +13:u07:[RFC5234], +7:u03:23], +12:u07:Crocker,, +10:u08:ABNF",, +13:u06:[RFC5234], +19:u07:Specifications:, +29:u08:editor.org/info/rfc5234>., +7:u02:23], +12:u06:Crocker,, +10:u07:ABNF",, +21:u08:10.17487/RFC5234,, +13:u14:[rfc5234], +13:u05:[RFC5234], +19:u06:Specifications:, +13:u08:[RFC6347], +7:u01:23], +12:u05:Crocker,, +10:u06:ABNF",, +21:u07:10.17487/RFC5234,, +13:u13:[rfc5234], +19:u14:specifications:, +13:uI2:[],.,..,", +13:u04:[RFC5234], +19:u05:Specifications:, +29:u07:editor.org/info/rfc5234>., +7:u00:23], +12:u04:Crocker,, +10:u05:ABNF",, +21:u06:10.17487/RFC5234,, +13:u08:Rescorla,, +13:u12:[rfc5234], +19:u13:specifications:, +13:uI1:[],.,..,", +9:uI2::",,,, +13:u03:[RFC5234], +19:u04:Specifications:, +29:u06:editor.org/info/rfc5234>., +13:u07:[RFC6347], +11:u08:January, +12:u03:Crocker,, +10:u04:ABNF",, +21:u05:10.17487/RFC5234,, +13:u07:Rescorla,, +11:u08:Version, +13:u11:[rfc5234], +19:u12:specifications:, +29:u14:editor.org/info/rfc5234>., +6:u21:Sp, +7:u22:Spe, +8:u23:Spec, +13:uI0:[],.,..,", +9:uI1::",,,, +13:u02:[RFC5234], +19:u03:Specifications:, +29:u05:editor.org/info/rfc5234>., +13:u06:[RFC6347], +13:u08:[RFC6544], +12:u02:Crocker,, +10:u03:ABNF",, +21:u04:10.17487/RFC5234,, +13:u06:Rescorla,, +11:u07:Version, +9:u08:2012,, +13:u10:[rfc5234], +19:u11:specifications:, +29:u13:editor.org/info/rfc5234>., +13:u14:[rfc6347], +9:uI0::",,,, +13:u01:[RFC5234], +19:u02:Specifications:, +29:u04:editor.org/info/rfc5234>., +13:u05:[RFC6347], +11:u07:January, +8:u08:"TCP, +12:u01:Crocker,, +10:u02:ABNF",, +21:u03:10.17487/RFC5234,, +13:u05:Rescorla,, +11:u06:Version, +9:u07:2012,, +19:u10:specifications:, +29:u12:editor.org/info/rfc5234>., +13:u13:[rfc6347], +12:u14:security, +13:u00:[RFC5234], +19:u01:Specifications:, +29:u03:editor.org/info/rfc5234>., +13:u04:[RFC6347], +11:u06:January, +13:u07:[RFC6544], +12:u00:Crocker,, +10:u01:ABNF",, +21:u02:10.17487/RFC5234,, +13:u04:Rescorla,, +11:u05:Version, +9:u06:2012,, +14:u08:Candidates, +29:u11:editor.org/info/rfc5234>., +13:u12:[rfc6347], +12:u13:security, +11:u14:january, +11:uI2:.",,./,, +19:u00:Specifications:, +29:u02:editor.org/info/rfc5234>., +13:u03:[RFC6347], +11:u05:January, +13:u06:[RFC6544], +8:u07:"TCP, +9:u08:March, +10:u00:ABNF",, +21:u01:10.17487/RFC5234,, +13:u03:Rescorla,, +11:u04:Version, +9:u05:2012,, +14:u07:Candidates, +29:u10:editor.org/info/rfc5234>., +13:u11:[rfc6347], +12:u12:security, +11:u13:january, +13:u14:[rfc6544], +8:u23:Secu, +11:uI1:.",,./,, +29:u01:editor.org/info/rfc5234>., +13:u02:[RFC6347], +11:u04:January, +13:u05:[RFC6544], +8:u06:"TCP, +21:u00:10.17487/RFC5234,, +13:u02:Rescorla,, +11:u03:Version, +9:u04:2012,, +14:u06:Candidates, +13:u10:[rfc6347], +12:u11:security, +11:u12:january, +13:u13:[rfc6544], +8:u14:"tcp, +6:u21:Ja, +7:u22:Jan, +8:u23:Janu, +11:uI0:.",,./,, +17:uI2:[],.,,.,,.,.,, +29:u00:editor.org/info/rfc5234>., +13:u01:[RFC6347], +11:u03:January, +13:u04:[RFC6544], +8:u05:"TCP, +9:u07:March, +13:u08:Transport, +13:u01:Rescorla,, +11:u02:Version, +9:u03:2012,, +14:u05:Candidates, +11:u08:Lennox,, +12:u10:security, +11:u11:january, +13:u12:[rfc6544], +8:u13:"tcp, +17:uI1:[],.,,.,,.,.,, +5:uI2:", +13:u00:[RFC6347], +11:u02:January, +13:u03:[RFC6544], +8:u04:"TCP, +9:u06:March, +13:u00:Rescorla,, +11:u01:Version, +9:u02:2012,, +14:u04:Candidates, +11:u07:Lennox,, +11:u10:january, +13:u11:[rfc6544], +8:u12:"tcp, +9:u14:march, +6:u21:"T, +7:u22:"TC, +8:u23:"TCP, +17:uI0:[],.,,.,,.,.,, +5:uI1:", +11:u01:January, +13:u02:[RFC6544], +8:u03:"TCP, +9:u05:March, +13:u07:Transport, +11:u00:Version, +9:u01:2012,, +14:u03:Candidates, +11:u06:Lennox,, +13:u10:[rfc6544], +8:u11:"tcp, +9:u13:march, +13:u14:[rfc8122], +5:uI0:", +11:u00:January, +13:u01:[RFC6544], +8:u02:"TCP, +9:u04:March, +13:u06:Transport, +29:u08:editor.org/info/rfc8122>., +9:u00:2012,, +14:u02:Candidates, +11:u05:Lennox,, +21:u08:10.17487/RFC8122,, +8:u10:"tcp, +9:u12:march, +13:u13:[rfc8122], +7:u22:Mar, +8:u23:Marc, +13:u00:[RFC6544], +8:u01:"TCP, +9:u03:March, +13:u05:Transport, +13:u08:[RFC8174], +14:u01:Candidates, +11:u04:Lennox,, +21:u07:10.17487/RFC8122,, +9:u11:march, +13:u12:[rfc8122], +8:u00:"TCP, +9:u02:March, +13:u04:Transport, +29:u07:editor.org/info/rfc8122>., +8:u08:2119, +14:u00:Candidates, +11:u03:Lennox,, +21:u06:10.17487/RFC8122,, +10:u08:Leiba,, +9:u10:march, +13:u11:[rfc8122], +6:u21:Tr, +7:u22:Tra, +8:u23:Tran, +9:u01:March, +13:u03:Transport, +29:u06:editor.org/info/rfc8122>., +13:u07:[RFC8174], +7:u08:May, +11:u02:Lennox,, +21:u05:10.17487/RFC8122,, +10:u07:Leiba,, +7:u08:Key, +13:u10:[rfc8122], +29:u14:editor.org/info/rfc8122>., +9:u00:March, +13:u02:Transport, +29:u05:editor.org/info/rfc8122>., +13:u06:[RFC8174], +8:u07:2119, +11:u01:Lennox,, +21:u04:10.17487/RFC8122,, +10:u06:Leiba,, +7:u07:Key, +9:u08:2017,, +29:u13:editor.org/info/rfc8122>., +13:u14:[rfc8174], +13:u01:Transport, +29:u04:editor.org/info/rfc8122>., +13:u05:[RFC8174], +8:u06:2119, +7:u07:May, +16:u08:Connectivity, +11:u00:Lennox,, +21:u03:10.17487/RFC8122,, +10:u05:Leiba,, +7:u06:Key, +9:u07:2017,, +12:u08:Keranen,, +29:u12:editor.org/info/rfc8122>., +13:u13:[rfc8174], +8:u14:2119, +13:u00:Transport, +29:u03:editor.org/info/rfc8122>., +13:u04:[RFC8174], +8:u05:2119, +7:u06:May, +11:u08:Address, +21:u02:10.17487/RFC8122,, +10:u04:Leiba,, +7:u05:Key, +9:u06:2017,, +12:u07:Keranen,, +29:u11:editor.org/info/rfc8122>., +13:u12:[rfc8174], +8:u13:2119, +7:u14:may, +11:uI2:",,,./,, +29:u02:editor.org/info/rfc8122>., +13:u03:[RFC8174], +8:u04:2119, +7:u05:May, +16:u07:Connectivity, +21:u01:10.17487/RFC8122,, +10:u03:Leiba,, +7:u04:Key, +9:u05:2017,, +12:u06:Keranen,, +14:u08:Translator, +29:u10:editor.org/info/rfc8122>., +13:u11:[rfc8174], +8:u12:2119, +7:u13:may, +6:u21:21, +7:u22:211, +8:u23:2119, +11:uI1:",,,./,, +29:u01:editor.org/info/rfc8122>., +13:u02:[RFC8174], +8:u03:2119, +7:u04:May, +16:u06:Connectivity, +11:u07:Address, +29:u08:editor.org/info/rfc8445>., +21:u00:10.17487/RFC8122,, +10:u02:Leiba,, +7:u03:Key, +9:u04:2017,, +12:u05:Keranen,, +14:u07:Translator, +21:u08:10.17487/RFC8445,, +13:u10:[rfc8174], +8:u11:2119, +7:u12:may, +16:u14:connectivity, +7:u22:May, +7:u23:May, +11:uI0:",,,./,, +29:u00:editor.org/info/rfc8122>., +13:u01:[RFC8174], +8:u02:2119, +7:u03:May, +16:u05:Connectivity, +11:u06:Address, +10:u01:Leiba,, +7:u02:Key, +9:u03:2017,, +12:u04:Keranen,, +14:u06:Translator, +21:u07:10.17487/RFC8445,, +8:u10:2119, +7:u11:may, +16:u13:connectivity, +11:u14:address, +7:uI2:():, +13:u00:[RFC8174], +8:u01:2119, +7:u02:May, +16:u04:Connectivity, +11:u05:Address, +29:u07:editor.org/info/rfc8445>., +10:u00:Leiba,, +7:u01:Key, +9:u02:2017,, +12:u03:Keranen,, +14:u05:Translator, +21:u06:10.17487/RFC8445,, +7:u10:may, +16:u12:connectivity, +11:u13:address, +8:u23:Conn, +7:uI1:():, +8:u00:2119, +7:u01:May, +16:u03:Connectivity, +11:u04:Address, +29:u06:editor.org/info/rfc8445>., +7:u00:Key, +9:u01:2017,, +12:u02:Keranen,, +14:u04:Translator, +21:u05:10.17487/RFC8445,, +16:u11:connectivity, +11:u12:address, +29:u14:editor.org/info/rfc8445>., +6:u21:Ad, +7:u22:Add, +8:u23:Addr, +7:uI0:():, +7:u00:May, +16:u02:Connectivity, +11:u03:Address, +29:u05:editor.org/info/rfc8445>., +16:u08:"Negotiating, +9:u00:2017,, +12:u01:Keranen,, +14:u03:Translator, +21:u04:10.17487/RFC8445,, +7:u08:C.,, +16:u10:connectivity, +11:u11:address, +29:u13:editor.org/info/rfc8445>., +16:u01:Connectivity, +11:u02:Address, +29:u04:editor.org/info/rfc8445>., +12:u00:Keranen,, +14:u02:Translator, +21:u03:10.17487/RFC8445,, +7:u07:C.,, +9:u08:Media, +11:u10:address, +29:u12:editor.org/info/rfc8445>., +16:u00:Connectivity, +11:u01:Address, +29:u03:editor.org/info/rfc8445>., +16:u07:"Negotiating, +18:u08:negotiation-53, +14:u01:Translator, +21:u02:10.17487/RFC8445,, +7:u06:C.,, +9:u07:Media, +29:u11:editor.org/info/rfc8445>., +11:u00:Address, +29:u02:editor.org/info/rfc8445>., +16:u06:"Negotiating, +13:u08:[RFC5576], +14:u00:Translator, +21:u01:10.17487/RFC8445,, +7:u05:C.,, +9:u06:Media, +29:u10:editor.org/info/rfc8445>., +16:u14:"negotiating, +12:uI2:,.,,.,.,, +29:u01:editor.org/info/rfc8445>., +16:u05:"Negotiating, +18:u07:negotiation-53, +21:u00:10.17487/RFC8445,, +7:u04:C.,, +9:u05:Media, +16:u13:"negotiating, +12:uI1:,.,,.,.,, +29:u00:editor.org/info/rfc8445>., +16:u04:"Negotiating, +18:u06:negotiation-53, +13:u07:[RFC5576], +11:u08:(SDP)",, +7:u03:C.,, +9:u04:Media, +14:u08:Attributes, +16:u12:"negotiating, +18:u14:negotiation-53, +6:u21:"N, +7:u22:"Ne, +8:u23:"Neg, +12:uI0:,.,,.,.,, +13:uI2:()",-----, +16:u03:"Negotiating, +18:u05:negotiation-53, +13:u06:[RFC5576], +46:u08:<https://www.rfc-editor.org/info/rfc5576>., +7:u02:C.,, +9:u03:Media, +14:u07:Attributes, +16:u11:"negotiating, +18:u13:negotiation-53, +13:u14:[rfc5576], +13:uI1:()",-----, +9:uI2:-(),., +16:u02:"Negotiating, +18:u04:negotiation-53, +13:u05:[RFC5576], +11:u07:(SDP)",, +7:u01:C.,, +9:u02:Media, +14:u06:Attributes, +16:u10:"negotiating, +18:u12:negotiation-53, +13:u13:[rfc5576], +9:u14:media, +13:uI0:()",-----, +9:uI1:-(),., +16:uI2:[],.,,.,.,"-, +16:u01:"Negotiating, +18:u03:negotiation-53, +13:u04:[RFC5576], +11:u06:(SDP)",, +46:u07:<https://www.rfc-editor.org/info/rfc5576>., +7:u00:C.,, +9:u01:Media, +14:u05:Attributes, +18:u11:negotiation-53, +13:u12:[rfc5576], +9:u13:media, +11:u14:(sdp)",, +9:uI0:-(),., +16:uI1:[],.,,.,.,"-, +16:u00:"Negotiating, +18:u02:negotiation-53, +13:u03:[RFC5576], +11:u05:(SDP)",, +46:u06:<https://www.rfc-editor.org/info/rfc5576>., +9:u00:Media, +14:u04:Attributes, +18:u10:negotiation-53, +13:u11:[rfc5576], +9:u12:media, +11:u13:(sdp)",, +46:u14:<https://www.rfc-editor.org/info/rfc5576>., +6:u21:Me, +7:u22:Med, +8:u23:Medi, +16:uI0:[],.,,.,.,"-, +13:uI2:()",,./,,, +18:u01:negotiation-53, +13:u02:[RFC5576], +11:u04:(SDP)",, +46:u05:<https://www.rfc-editor.org/info/rfc5576>., +14:u03:Attributes, +13:u10:[rfc5576], +9:u11:media, +11:u12:(sdp)",, +46:u13:<https://www.rfc-editor.org/info/rfc5576>., +13:uI1:()",,./,,, +18:u00:negotiation-53, +13:u01:[RFC5576], +11:u03:(SDP)",, +46:u04:<https://www.rfc-editor.org/info/rfc5576>., +14:u02:Attributes, +7:u08:24], +9:u10:media, +11:u11:(sdp)",, +46:u12:<https://www.rfc-editor.org/info/rfc5576>., +13:uI0:()",,./,,, +13:u00:[RFC5576], +11:u02:(SDP)",, +46:u03:<https://www.rfc-editor.org/info/rfc5576>., +14:u01:Attributes, +7:u07:24], +11:u10:(sdp)",, +46:u11:<https://www.rfc-editor.org/info/rfc5576>., +11:u01:(SDP)",, +46:u02:<https://www.rfc-editor.org/info/rfc5576>., +14:u00:Attributes, +7:u06:24], +46:u10:<https://www.rfc-editor.org/info/rfc5576>., +11:u00:(SDP)",, +46:u01:<https://www.rfc-editor.org/info/rfc5576>., +11:u08:Gonzalo, +7:u05:24], +46:u00:<https://www.rfc-editor.org/info/rfc5576>., +7:u04:24], +13:u08:Camarillo, +11:u07:Gonzalo, +15:u08:Hirsalantie, +7:u03:24], +13:u07:Camarillo, +11:u06:Gonzalo, +12:u08:FI-02420, +7:u02:24], +13:u06:Camarillo, +6:u08:11, +11:u14:gonzalo, +11:u05:Gonzalo, +15:u07:Hirsalantie, +11:u08:Finland, +7:u01:24], +6:u07:11, +10:u08:Jorvas, +11:u13:gonzalo, +11:u04:Gonzalo, +15:u06:Hirsalantie, +12:u07:FI-02420, +10:u08:Email:, +7:u00:24], +6:u06:11, +10:u07:Jorvas, +11:u12:gonzalo, +15:u14:hirsalantie, +6:u21:Go, +7:u22:Gon, +8:u23:Gonz, +11:u03:Gonzalo, +15:u05:Hirsalantie, +12:u06:FI-02420, +11:u07:Finland, +7:u08:Tom, +6:u05:11, +10:u06:Jorvas, +34:u08:Gonzalo.Camarillo@ericsson.com, +11:u11:gonzalo, +15:u13:hirsalantie, +12:u14:fi-02420, +11:u02:Gonzalo, +15:u04:Hirsalantie, +12:u05:FI-02420, +11:u06:Finland, +10:u07:Email:, +6:u04:11, +10:u05:Jorvas, +34:u07:Gonzalo.Camarillo@ericsson.com, +11:u10:gonzalo, +15:u12:hirsalantie, +12:u13:fi-02420, +11:u14:finland, +6:u21:Hi, +7:u22:Hir, +8:u23:Hirs, +11:u01:Gonzalo, +15:u03:Hirsalantie, +12:u04:FI-02420, +11:u05:Finland, +10:u06:Email:, +7:u07:Tom, +10:u08:Philip, +6:u03:11, +10:u04:Jorvas, +34:u06:Gonzalo.Camarillo@ericsson.com, +15:u11:hirsalantie, +12:u12:fi-02420, +11:u13:finland, +10:u14:email:, +6:u21:FI, +7:u22:FI-, +8:u23:FI-0, +11:u00:Gonzalo, +15:u02:Hirsalantie, +12:u03:FI-02420, +11:u04:Finland, +10:u05:Email:, +7:u06:Tom, +11:u08:NO-1366, +6:u02:11, +10:u03:Jorvas, +34:u05:Gonzalo.Camarillo@ericsson.com, +13:u08:Pedersens, +15:u10:hirsalantie, +12:u11:fi-02420, +11:u12:finland, +10:u13:email:, +7:u14:tom, +6:u21:Fi, +7:u22:Fin, +8:u23:Finl, +7:uI2::.., +15:u01:Hirsalantie, +12:u02:FI-02420, +11:u03:Finland, +10:u04:Email:, +7:u05:Tom, +10:u07:Philip, +10:u08:Norway, +6:u01:11, +10:u02:Jorvas, +34:u04:Gonzalo.Camarillo@ericsson.com, +13:u07:Pedersens, +11:u08:Lysaker, +12:u10:fi-02420, +11:u11:finland, +10:u12:email:, +7:u13:tom, +6:u21:Em, +7:u22:Ema, +8:u23:Emai, +7:uI1::.., +15:u00:Hirsalantie, +12:u01:FI-02420, +11:u02:Finland, +10:u03:Email:, +7:u04:Tom, +10:u06:Philip, +11:u07:NO-1366, +6:u00:11, +10:u01:Jorvas, +34:u03:Gonzalo.Camarillo@ericsson.com, +13:u06:Pedersens, +11:u07:Lysaker, +11:u10:finland, +10:u11:email:, +7:u12:tom, +10:u14:philip, +6:u21:To, +7:u22:Tom, +7:u23:Tom, +7:uI0::.., +12:u00:FI-02420, +11:u01:Finland, +10:u02:Email:, +7:u03:Tom, +10:u05:Philip, +11:u06:NO-1366, +10:u07:Norway, +12:u08:Christer, +10:u00:Jorvas, +34:u02:Gonzalo.Camarillo@ericsson.com, +13:u05:Pedersens, +11:u06:Lysaker, +23:u08:tomkrist@cisco.com,, +10:u10:email:, +7:u11:tom, +10:u13:philip, +11:u14:no-1366, +11:u00:Finland, +10:u01:Email:, +7:u02:Tom, +10:u04:Philip, +11:u05:NO-1366, +10:u06:Norway, +34:u01:Gonzalo.Camarillo@ericsson.com, +13:u04:Pedersens, +11:u05:Lysaker, +23:u07:tomkrist@cisco.com,, +7:u10:tom, +10:u12:philip, +11:u13:no-1366, +10:u14:norway, +6:u21:Ph, +7:u22:Phi, +8:u23:Phil, +10:u00:Email:, +7:u01:Tom, +10:u03:Philip, +11:u04:NO-1366, +10:u05:Norway, +12:u07:Christer, +34:u00:Gonzalo.Camarillo@ericsson.com, +13:u03:Pedersens, +11:u04:Lysaker, +23:u06:tomkrist@cisco.com,, +10:u11:philip, +11:u12:no-1366, +10:u13:norway, +6:u21:NO, +7:u22:NO-, +8:u23:NO-1, +7:u00:Tom, +10:u02:Philip, +11:u03:NO-1366, +10:u04:Norway, +12:u06:Christer, +13:u02:Pedersens, +11:u03:Lysaker, +23:u05:tomkrist@cisco.com,, +10:u10:philip, +11:u11:no-1366, +10:u12:norway, +12:u14:christer, +7:u22:Nor, +8:u23:Norw, +9:uI2::.,.., +10:u01:Philip, +11:u02:NO-1366, +10:u03:Norway, +12:u05:Christer, +13:u01:Pedersens, +11:u02:Lysaker, +23:u04:tomkrist@cisco.com,, +9:u08:02420, +11:u10:no-1366, +10:u11:norway, +12:u13:christer, +9:uI1::.,.., +10:u00:Philip, +11:u01:NO-1366, +10:u02:Norway, +12:u04:Christer, +13:u00:Pedersens, +11:u01:Lysaker, +23:u03:tomkrist@cisco.com,, +9:u07:02420, +10:u10:norway, +12:u12:christer, +7:u22:Chr, +8:u23:Chri, +9:uI0::.,.., +11:u00:NO-1366, +10:u01:Norway, +12:u03:Christer, +11:u00:Lysaker, +23:u02:tomkrist@cisco.com,, +9:u06:02420, +34:u08:christer.holmberg@ericsson.com, +12:u11:christer, +10:u14:jorvas, +10:u00:Norway, +12:u02:Christer, +23:u01:tomkrist@cisco.com,, +9:u05:02420, +34:u07:christer.holmberg@ericsson.com, +12:u10:christer, +10:u13:jorvas, +12:u01:Christer, +23:u00:tomkrist@cisco.com,, +9:u04:02420, +34:u06:christer.holmberg@ericsson.com, +10:u12:jorvas, +7:u22:Jor, +8:u23:Jorv, +12:u00:Christer, +8:u08:_x+1, +9:u03:02420, +34:u05:christer.holmberg@ericsson.com, +7:u08:25], +10:u11:jorvas, +8:u08:_x+2, +9:u02:02420, +34:u04:christer.holmberg@ericsson.com, +7:u07:25], +10:u10:jorvas, +8:u07:_x+1, +8:u08:_x+3, +9:u01:02420, +34:u03:christer.holmberg@ericsson.com, +7:u06:25], +8:uG5:_x+1, +8:uH5:_x+1, +8:u06:_x+1, +8:u07:_x+2, +8:u08:_x+4, +9:u00:02420, +34:u02:christer.holmberg@ericsson.com, +7:u05:25], +8:u14:_x+1, +8:uG4:_x+1, +8:uG5:_x+2, +8:uH4:_x+1, +8:uH5:_x+2, +8:u05:_x+1, +8:u06:_x+2, +8:u07:_x+3, +8:u08:_x+#, +34:u01:christer.holmberg@ericsson.com, +7:u04:25], +8:u13:_x+1, +8:u14:_x+2, +8:u42:_x+1, +8:u62:_x+1, +8:u72:_x+1, +8:u82:_x+1, +8:u92:_x+1, +8:uA2:_x+1, +8:uB1:_x+1, +8:uC2:_x+1, +8:uD2:_x+1, +8:uEI:_x+1, +8:uEJ:_x+1, +8:uEK:_x+1, +8:uEL:_x+1, +8:uEM:_x+1, +8:uEN:_x+1, +8:uEO:_x+1, +8:uG2:_x+1, +8:uH2:_x+1, +8:uI2:_x+1, +8:uG3:_x+1, +8:uG4:_x+2, +8:uG5:_x+3, +8:uH3:_x+1, +8:uH4:_x+2, +8:uH5:_x+3, +8:uI3:_x+1, +8:uJ3:_x+1, +10:u04:server, +12:u05:Internet, +6:u06:J., +11:u07:Request, +12:u08:Updates:, +8:u04:date, +15:u05:Engineering, +9:u06:Arkko, +10:u12:server, +12:u13:internet, +6:u14:j., +11:u72:NEWFONT, +14:u82:HIGHERFONT, +5:u91:1, +5:u92:1, +10:u03:server, +12:u04:Internet, +6:u05:J., +11:u06:Request, +8:u03:date, +15:u04:Engineering, +9:u05:Arkko, +8:u08:3219, +10:u11:server, +12:u12:internet, +6:u13:j., +11:u14:request, +5:u90:1, +10:u02:server, +12:u03:Internet, +6:u04:J., +11:u05:Request, +12:u07:Updates:, +8:u02:date, +15:u03:Engineering, +9:u04:Arkko, +8:u07:3219, +10:u08:Hardie, +10:u10:server, +12:u11:internet, +6:u12:j., +11:u13:request, +6:u21:J., +6:u22:J., +6:u23:J., +10:u01:server, +12:u02:Internet, +6:u03:J., +11:u04:Request, +12:u06:Updates:, +8:u01:date, +15:u02:Engineering, +9:u03:Arkko, +8:u06:3219, +10:u07:Hardie, +13:u08:Standards, +12:u10:internet, +6:u11:j., +11:u12:request, +12:u14:updates:, +10:u00:server, +12:u01:Internet, +6:u02:J., +11:u03:Request, +12:u05:Updates:, +9:u08:ISSN:, +8:u00:date, +15:u01:Engineering, +9:u02:Arkko, +8:u05:3219, +10:u06:Hardie, +13:u07:Standards, +8:u08:2019, +6:u10:j., +11:u11:request, +12:u13:updates:, +12:u00:Internet, +6:u01:J., +11:u02:Request, +12:u04:Updates:, +10:u08:Update, +15:u00:Engineering, +9:u01:Arkko, +8:u04:3219, +10:u05:Hardie, +13:u06:Standards, +8:u07:2019, +13:u08:2070-1721, +11:u10:request, +12:u12:updates:, +13:u14:category:, +6:u21:Up, +7:u22:Upd, +8:u23:Upda, +6:u00:J., +11:u01:Request, +12:u03:Updates:, +9:u07:ISSN:, +13:u08:regarding, +9:u00:Arkko, +8:u03:3219, +10:u04:Hardie, +13:u05:Standards, +8:u06:2019, +13:u07:2070-1721, +12:u11:updates:, +13:u13:category:, +11:u00:Request, +12:u02:Updates:, +9:u06:ISSN:, +10:u07:Update, +8:u02:3219, +10:u03:Hardie, +13:u04:Standards, +8:u05:2019, +13:u06:2070-1721, +10:u08:Postal, +12:u10:updates:, +13:u12:category:, +9:u14:issn:, +7:u22:Cat, +8:u23:Cate, +12:u01:Updates:, +9:u05:ISSN:, +10:u06:Update, +13:u07:regarding, +8:u01:3219, +10:u02:Hardie, +13:u03:Standards, +8:u04:2019, +13:u05:2070-1721, +10:u07:Postal, +13:u11:category:, +9:u13:issn:, +10:u14:update, +12:u00:Updates:, +9:u04:ISSN:, +10:u05:Update, +13:u06:regarding, +8:u00:3219, +10:u01:Hardie, +13:u02:Standards, +8:u03:2019, +13:u04:2070-1721, +10:u06:Postal, +8:u08:memo, +13:u10:category:, +9:u12:issn:, +10:u13:update, +13:u14:regarding, +6:u21:IS, +7:u22:ISS, +8:u23:ISSN, +9:u03:ISSN:, +10:u04:Update, +13:u05:regarding, +10:u00:Hardie, +13:u01:Standards, +8:u02:2019, +13:u03:2070-1721, +10:u05:Postal, +8:u07:memo, +6:u08:IP, +9:u11:issn:, +10:u12:update, +13:u13:regarding, +9:u02:ISSN:, +10:u03:Update, +13:u04:regarding, +13:u00:Standards, +8:u01:2019, +13:u02:2070-1721, +10:u04:Postal, +8:u06:memo, +6:u07:IP, +12:u08:included, +9:u10:issn:, +10:u11:update, +13:u12:regarding, +9:u01:ISSN:, +10:u02:Update, +13:u03:regarding, +8:u00:2019, +13:u01:2070-1721, +10:u03:Postal, +8:u05:memo, +6:u06:IP, +12:u07:included, +10:u10:update, +13:u11:regarding, +8:u14:over, +9:u00:ISSN:, +10:u01:Update, +13:u02:regarding, +13:u00:2070-1721, +10:u02:Postal, +8:u04:memo, +6:u05:IP, +12:u06:included, +13:u10:regarding, +8:u13:over, +7:uI2:(),, +10:u00:Update, +13:u01:regarding, +10:u01:Postal, +8:u03:memo, +6:u04:IP, +12:u05:included, +8:u12:over, +6:u21:ov, +7:u22:ove, +8:u23:over, +7:uI1:(),, +13:u00:regarding, +11:u08:(IETF)., +10:u00:Postal, +8:u02:memo, +6:u03:IP, +12:u04:included, +8:u11:over, +7:uI0:(),, +12:u08:received, +8:u01:memo, +6:u02:IP, +12:u03:included, +8:u10:over, +11:u07:(IETF)., +12:u08:Internet, +8:u00:memo, +6:u01:IP, +12:u02:included, +10:u08:public, +11:u06:(IETF)., +12:u07:received, +6:u00:IP, +12:u01:included, +10:u07:public, +15:u08:Engineering, +11:u14:(ietf)., +11:u05:(IETF)., +12:u06:received, +12:u07:Internet, +15:u08:Information, +12:u00:included, +10:u06:public, +15:u07:Engineering, +11:u13:(ietf)., +12:u14:received, +8:uI2:().., +11:u04:(IETF)., +12:u05:received, +12:u06:Internet, +10:u05:public, +15:u06:Engineering, +9:u08:about, +11:u12:(ietf)., +12:u13:received, +12:u14:internet, +7:u22:(IE, +8:u23:(IET, +8:uI1:().., +11:u03:(IETF)., +12:u04:received, +15:u07:Information, +44:u08:https://www.rfc-editor.org/info/rfc8602., +10:u04:public, +9:u07:about, +7:u08:how, +11:u11:(ietf)., +12:u12:received, +7:u22:rec, +8:u23:rece, +8:uI0:().., +11:u02:(IETF)., +12:u03:received, +15:u06:Information, +10:u03:public, +9:u06:about, +7:u07:how, +11:u10:(ietf)., +12:u11:received, +15:u14:information, +11:u01:(IETF)., +12:u02:received, +15:u05:Information, +44:u07:https://www.rfc-editor.org/info/rfc8602., +10:u02:public, +9:u05:about, +7:u06:how, +12:u10:received, +15:u13:information, +11:u00:(IETF)., +12:u01:received, +15:u04:Information, +44:u06:https://www.rfc-editor.org/info/rfc8602., +10:u01:public, +9:u04:about, +7:u05:how, +15:u12:information, +44:u14:https://www.rfc-editor.org/info/rfc8602., +7:u22:Inf, +8:u23:Info, +12:u00:received, +15:u03:Information, +44:u05:https://www.rfc-editor.org/info/rfc8602., +10:u00:public, +9:u03:about, +7:u04:how, +15:u11:information, +44:u13:https://www.rfc-editor.org/info/rfc8602., +15:u02:Information, +44:u04:https://www.rfc-editor.org/info/rfc8602., +9:u02:about, +7:u03:how, +15:u10:information, +44:u12:https://www.rfc-editor.org/info/rfc8602., +5:u20:h, +6:u21:ht, +7:u22:htt, +8:u23:http, +15:u01:Information, +44:u03:https://www.rfc-editor.org/info/rfc8602., +43:u08:(https://trustee.ietf.org/license-info), +9:u01:about, +7:u02:how, +44:u11:https://www.rfc-editor.org/info/rfc8602., +15:u00:Information, +44:u02:https://www.rfc-editor.org/info/rfc8602., +9:u00:about, +7:u01:how, +44:u10:https://www.rfc-editor.org/info/rfc8602., +44:u01:https://www.rfc-editor.org/info/rfc8602., +43:u07:(https://trustee.ietf.org/license-info), +7:u00:how, +44:u00:https://www.rfc-editor.org/info/rfc8602., +43:u06:(https://trustee.ietf.org/license-info), +43:u14:(https://trustee.ietf.org/license-info), +43:u05:(https://trustee.ietf.org/license-info), +43:u13:(https://trustee.ietf.org/license-info), +43:u04:(https://trustee.ietf.org/license-info), +43:u12:(https://trustee.ietf.org/license-info), +43:u03:(https://trustee.ietf.org/license-info), +43:u11:(https://trustee.ietf.org/license-info), +43:u02:(https://trustee.ietf.org/license-info), +9:u08:Arkko, +43:u10:(https://trustee.ietf.org/license-info), +43:u01:(https://trustee.ietf.org/license-info), +5:u08:&, +43:u00:(https://trustee.ietf.org/license-info), +9:u07:Arkko, +5:u07:&, +9:u08:Track, +5:u06:&, +9:u07:Track, +9:u14:arkko, +8:u08:TRIP, +5:u05:&, +9:u06:Track, +8:u08:8602, +9:u13:arkko, +13:u14:standards, +5:u04:&, +9:u05:Track, +8:u07:8602, +12:u08:Registry, +9:u12:arkko, +13:u13:standards, +6:u21:Ar, +7:u22:Ark, +8:u23:Arkk, +8:u07:TRIP, +5:u03:&, +9:u04:Track, +8:u06:8602, +12:u07:Registry, +9:u11:arkko, +13:u12:standards, +8:u23:Stan, +8:u06:TRIP, +5:u02:&, +9:u03:Track, +8:u05:8602, +12:u06:Registry, +9:u10:arkko, +13:u11:standards, +8:u14:trip, +8:u05:TRIP, +5:u01:&, +9:u02:Track, +8:u04:8602, +12:u05:Registry, +13:u10:standards, +8:u13:trip, +8:u04:TRIP, +5:u00:&, +9:u01:Track, +8:u03:8602, +12:u04:Registry, +8:u12:trip, +6:u21:TR, +7:u22:TRI, +8:u23:TRIP, +8:u03:TRIP, +9:u00:Track, +8:u02:8602, +12:u03:Registry, +8:u11:trip, +8:u02:TRIP, +8:u01:8602, +12:u02:Registry, +8:u10:trip, +5:u14:2, +8:u01:TRIP, +8:u00:8602, +12:u01:Registry, +5:u13:2, +8:u00:TRIP, +12:u00:Registry, +5:u12:2, +5:u21:2, +5:u22:2, +5:u23:2, +5:u11:2, +5:u10:2, +5:u08:., +5:u07:., +5:u06:., +20:u14:acknowledgements, +5:u05:., +20:u13:acknowledgements, +5:u04:., +20:u12:acknowledgements, +7:u22:Ack, +8:u23:Ackn, +5:u03:., +20:u11:acknowledgements, +5:u02:., +20:u10:acknowledgements, +15:u08:identified,, +5:u01:., +5:u00:., +15:u07:identified,, +15:u06:identified,, +15:u14:identified,, +15:u05:identified,, +15:u13:identified,, +15:u04:identified,, +18:u08:Administrative, +15:u08:([RFC3219],, +15:u12:identified,, +15:u03:identified,, +12:u08:follows., +15:u07:([RFC3219],, +10:u08:Domain, +15:u11:identified,, +15:u02:identified,, +18:u07:Administrative, +15:u06:([RFC3219],, +10:u07:Domain, +15:u10:identified,, +14:u14:attributes, +15:u01:identified,, +18:u06:Administrative, +12:u07:follows., +15:u08:information, +15:u05:([RFC3219],, +10:u06:Domain, +8:u08:IETF, +14:u13:attributes, +18:u14:administrative, +10:uI2:([],.), +15:u00:identified,, +18:u05:Administrative, +12:u06:follows., +7:u08:has, +15:u04:([RFC3219],, +10:u05:Domain, +8:u07:IETF, +14:u12:attributes, +18:u13:administrative, +12:u14:follows., +10:uI1:([],.), +12:uI2:()([],.), +18:u04:Administrative, +12:u05:follows., +15:u07:information, +15:u08:registries., +15:u03:([RFC3219],, +10:u04:Domain, +8:u06:IETF, +11:u08:removed, +14:u11:attributes, +18:u12:administrative, +12:u13:follows., +7:u22:Adm, +8:u23:Admi, +10:uI0:([],.), +12:uI1:()([],.), +18:u03:Administrative, +12:u04:follows., +15:u06:information, +7:u07:has, +15:u02:([RFC3219],, +10:u03:Domain, +8:u05:IETF, +11:u07:removed, +14:u10:attributes, +18:u11:administrative, +12:u12:follows., +12:uI0:()([],.), +18:u02:Administrative, +12:u03:follows., +15:u05:information, +7:u06:has, +15:u07:registries., +6:u08:No, +15:u01:([RFC3219],, +10:u02:Domain, +8:u04:IETF, +11:u06:removed, +18:u10:administrative, +12:u11:follows., +7:u14:has, +18:u01:Administrative, +12:u02:follows., +15:u04:information, +7:u05:has, +15:u06:registries., +15:u00:([RFC3219],, +10:u01:Domain, +8:u03:IETF, +11:u05:removed, +12:u08:security, +12:u10:follows., +7:u13:has, +15:u14:registries., +7:u22:inf, +8:u23:info, +18:u00:Administrative, +12:u01:follows., +15:u03:information, +7:u04:has, +15:u05:registries., +6:u07:No, +13:u08:[RFC3219], +10:u00:Domain, +8:u02:IETF, +11:u04:removed, +12:u07:security, +7:u12:has, +15:u13:registries., +6:u21:ha, +7:u22:has, +7:u23:has, +12:u00:follows., +15:u02:information, +7:u03:has, +15:u04:registries., +6:u06:No, +11:u08:Routing, +8:u01:IETF, +11:u03:removed, +12:u06:security, +7:u11:has, +15:u12:registries., +6:u14:no, +15:u01:information, +7:u02:has, +15:u03:registries., +6:u05:No, +13:u07:[RFC3219], +8:u00:IETF, +11:u02:removed, +12:u05:security, +7:u10:has, +15:u11:registries., +6:u13:no, +15:u00:information, +7:u01:has, +15:u02:registries., +6:u04:No, +13:u06:[RFC3219], +11:u07:Routing, +13:u08:[RFC8126], +11:u01:removed, +12:u04:security, +9:u08:2002,, +15:u10:registries., +6:u12:no, +13:u14:[rfc3219], +6:u22:No, +6:u23:No, +7:u00:has, +15:u01:registries., +6:u03:No, +13:u05:[RFC3219], +11:u06:Routing, +11:u08:Writing, +11:u00:removed, +12:u03:security, +9:u07:2002,, +11:u08:Cotton,, +6:u11:no, +13:u13:[rfc3219], +11:u14:routing, +15:u00:registries., +6:u02:No, +13:u04:[RFC3219], +11:u05:Routing, +13:u07:[RFC8126], +12:u02:security, +9:u06:2002,, +11:u07:Cotton,, +6:u10:no, +13:u12:[rfc3219], +11:u13:routing, +6:u01:No, +13:u03:[RFC3219], +11:u04:Routing, +13:u06:[RFC8126], +11:u07:Writing, +46:u08:<https://www.rfc-editor.org/info/rfc8126>., +12:u01:security, +9:u05:2002,, +11:u06:Cotton,, +9:u08:8126,, +13:u11:[rfc3219], +11:u12:routing, +13:u14:[rfc8126], +6:u21:Ro, +7:u22:Rou, +8:u23:Rout, +6:u00:No, +13:u02:[RFC3219], +11:u03:Routing, +13:u05:[RFC8126], +11:u06:Writing, +12:u00:security, +9:u04:2002,, +11:u05:Cotton,, +9:u07:8126,, +13:u10:[rfc3219], +11:u11:routing, +13:u13:[rfc8126], +11:u14:writing, +13:u01:[RFC3219], +11:u02:Routing, +13:u04:[RFC8126], +11:u05:Writing, +46:u07:<https://www.rfc-editor.org/info/rfc8126>., +9:u03:2002,, +11:u04:Cotton,, +9:u06:8126,, +11:u10:routing, +13:u12:[rfc8126], +11:u13:writing, +7:uI2:",,, +13:u00:[RFC3219], +11:u01:Routing, +13:u03:[RFC8126], +11:u04:Writing, +46:u06:<https://www.rfc-editor.org/info/rfc8126>., +9:u02:2002,, +11:u03:Cotton,, +9:u05:8126,, +13:u11:[rfc8126], +11:u12:writing, +46:u14:<https://www.rfc-editor.org/info/rfc8126>., +6:u21:Wr, +7:u22:Wri, +8:u23:Writ, +7:uI1:",,, +11:u00:Routing, +13:u02:[RFC8126], +11:u03:Writing, +46:u05:<https://www.rfc-editor.org/info/rfc8126>., +9:u01:2002,, +11:u02:Cotton,, +9:u04:8126,, +13:u10:[rfc8126], +11:u11:writing, +46:u13:<https://www.rfc-editor.org/info/rfc8126>., +7:uI0:",,, +13:u01:[RFC8126], +11:u02:Writing, +46:u04:<https://www.rfc-editor.org/info/rfc8126>., +9:u00:2002,, +11:u01:Cotton,, +9:u03:8126,, +11:u10:writing, +46:u12:<https://www.rfc-editor.org/info/rfc8126>., +13:u00:[RFC8126], +11:u01:Writing, +46:u03:<https://www.rfc-editor.org/info/rfc8126>., +11:u00:Cotton,, +9:u02:8126,, +46:u11:<https://www.rfc-editor.org/info/rfc8126>., +11:u00:Writing, +46:u02:<https://www.rfc-editor.org/info/rfc8126>., +9:u01:8126,, +46:u10:<https://www.rfc-editor.org/info/rfc8126>., +46:u01:<https://www.rfc-editor.org/info/rfc8126>., +9:u00:8126,, +46:u00:<https://www.rfc-editor.org/info/rfc8126>., +12:u08:Jonathan, +13:u08:Rosenberg, +12:u07:Jonathan, +14:u08:Abdussalam, +13:u07:Rosenberg, +12:u06:Jonathan, +13:u06:Rosenberg, +11:u08:Baryun,, +12:u14:jonathan, +12:u05:Jonathan, +14:u07:Abdussalam, +8:u08:Jari, +13:u05:Rosenberg, +11:u07:Baryun,, +12:u13:jonathan, +12:u04:Jonathan, +14:u06:Abdussalam, +13:u04:Rosenberg, +11:u06:Baryun,, +12:u12:jonathan, +14:u14:abdussalam, +7:u22:Jon, +8:u23:Jona, +12:u03:Jonathan, +14:u05:Abdussalam, +8:u07:Jari, +14:u08:Kauniainen, +13:u03:Rosenberg, +11:u05:Baryun,, +12:u11:jonathan, +14:u13:abdussalam, +12:u02:Jonathan, +14:u04:Abdussalam, +8:u06:Jari, +13:u02:Rosenberg, +11:u04:Baryun,, +9:u08:02700, +12:u10:jonathan, +14:u12:abdussalam, +8:u14:jari, +7:u22:Abd, +8:u23:Abdu, +12:u01:Jonathan, +14:u03:Abdussalam, +8:u05:Jari, +14:u07:Kauniainen, +13:u01:Rosenberg, +11:u03:Baryun,, +9:u07:02700, +14:u11:abdussalam, +8:u13:jari, +12:u00:Jonathan, +14:u02:Abdussalam, +8:u04:Jari, +14:u06:Kauniainen, +7:u08:Ted, +13:u00:Rosenberg, +11:u02:Baryun,, +9:u06:02700, +24:u08:jari.arkko@piuha.net, +14:u10:abdussalam, +8:u12:jari, +14:u14:kauniainen, +7:u22:Jar, +8:u23:Jari, +14:u01:Abdussalam, +8:u03:Jari, +14:u05:Kauniainen, +11:u01:Baryun,, +9:u05:02700, +24:u07:jari.arkko@piuha.net, +8:u11:jari, +14:u13:kauniainen, +14:u00:Abdussalam, +8:u02:Jari, +14:u04:Kauniainen, +7:u07:Ted, +11:u00:Baryun,, +9:u04:02700, +24:u06:jari.arkko@piuha.net, +22:u08:ted.ietf@gmail.com, +8:u10:jari, +14:u12:kauniainen, +5:u20:K, +6:u21:Ka, +7:u22:Kau, +8:u23:Kaun, +8:u01:Jari, +14:u03:Kauniainen, +7:u06:Ted, +9:u03:02700, +24:u05:jari.arkko@piuha.net, +22:u07:ted.ietf@gmail.com, +14:u11:kauniainen, +7:u14:ted, +8:u00:Jari, +14:u02:Kauniainen, +7:u05:Ted, +9:u02:02700, +24:u04:jari.arkko@piuha.net, +22:u06:ted.ietf@gmail.com, +14:u10:kauniainen, +7:u13:ted, +14:u01:Kauniainen, +7:u04:Ted, +9:u01:02700, +24:u03:jari.arkko@piuha.net, +22:u05:ted.ietf@gmail.com, +7:u12:ted, +6:u21:Te, +7:u22:Ted, +7:u23:Ted, +14:u00:Kauniainen, +7:u03:Ted, +9:u00:02700, +24:u02:jari.arkko@piuha.net, +22:u04:ted.ietf@gmail.com, +7:u11:ted, +7:u02:Ted, +24:u01:jari.arkko@piuha.net, +22:u03:ted.ietf@gmail.com, +7:u10:ted, +7:u01:Ted, +24:u00:jari.arkko@piuha.net, +22:u02:ted.ietf@gmail.com, +7:u00:Ted, +22:u01:ted.ietf@gmail.com, +11:u05:Network, +6:u06:B., +10:u08:Huawei, +11:u05:Working, +7:u06:Liu, +16:u08:Technologies, +11:u13:network, +6:u14:b., +11:u04:Network, +6:u05:B., +10:u07:Huawei, +7:u05:Liu, +16:u07:Technologies, +11:u12:network, +6:u13:b., +6:u21:Ne, +7:u22:Net, +8:u23:Netw, +11:u03:Network, +6:u04:B., +10:u06:Huawei, +7:u04:Liu, +16:u06:Technologies, +11:u11:network, +6:u12:b., +10:u14:huawei, +6:u21:B., +6:u22:B., +6:u23:B., +11:u02:Network, +6:u03:B., +10:u05:Huawei, +11:u08:Instant, +7:u03:Liu, +16:u05:Technologies, +11:u10:network, +6:u11:b., +10:u13:huawei, +11:u01:Network, +6:u02:B., +10:u04:Huawei, +7:u02:Liu, +16:u04:Technologies, +14:u08:Congestion, +6:u10:b., +10:u12:huawei, +6:u21:Hu, +7:u22:Hua, +8:u23:Huaw, +11:u00:Network, +6:u01:B., +10:u03:Huawei, +11:u07:Instant, +21:u08:draft-liu-ican-00, +7:u01:Liu, +16:u03:Technologies, +14:u07:Congestion, +10:u11:huawei, +6:u00:B., +10:u02:Huawei, +11:u06:Instant, +7:u00:Liu, +16:u02:Technologies, +14:u06:Congestion, +10:u10:huawei, +11:u14:instant, +10:u01:Huawei, +11:u05:Instant, +21:u07:draft-liu-ican-00, +8:u08:iCAN, +16:u01:Technologies, +14:u05:Congestion, +11:u13:instant, +15:u14:engineering, +10:u00:Huawei, +11:u04:Instant, +21:u06:draft-liu-ican-00, +16:u00:Technologies, +14:u04:Congestion, +12:u08:(instant, +11:u12:instant, +15:u13:engineering, +21:u14:draft-liu-ican-00, +7:u22:Ins, +8:u23:Inst, +11:u03:Instant, +21:u05:draft-liu-ican-00, +8:u07:iCAN, +14:u03:Congestion, +12:u07:(instant, +12:u08:directly, +11:u11:instant, +15:u12:engineering, +21:u13:draft-liu-ican-00, +7:u22:Eng, +8:u23:Engi, +7:uI2:---, +11:u02:Instant, +21:u04:draft-liu-ican-00, +8:u06:iCAN, +14:u02:Congestion, +12:u06:(instant, +12:u07:directly, +6:u08:To, +11:u10:instant, +15:u11:engineering, +21:u12:draft-liu-ican-00, +8:u14:ican, +7:uI1:---, +11:u01:Instant, +21:u03:draft-liu-ican-00, +8:u05:iCAN, +14:u01:Congestion, +12:u05:(instant, +12:u06:directly, +6:u07:To, +10:u08:paths., +15:u10:engineering, +21:u11:draft-liu-ican-00, +8:u13:ican, +11:u14:running, +7:uI0:---, +11:u00:Instant, +21:u02:draft-liu-ican-00, +8:u04:iCAN, +9:u08:path,, +14:u00:Congestion, +12:u04:(instant, +12:u05:directly, +6:u06:To, +10:u07:paths., +21:u10:draft-liu-ican-00, +8:u12:ican, +11:u13:running, +6:u21:iC, +7:u22:iCA, +8:u23:iCAN, +21:u01:draft-liu-ican-00, +8:u03:iCAN, +12:u03:(instant, +12:u04:directly, +6:u05:To, +10:u06:paths., +6:u08:so, +8:u11:ican, +11:u12:running, +6:u21:ru, +7:u22:run, +8:u23:runn, +21:u00:draft-liu-ican-00, +8:u02:iCAN, +9:u07:path,, +12:u02:(instant, +12:u03:directly, +6:u04:To, +10:u05:paths., +6:u07:so, +12:u08:switched, +8:u10:ican, +11:u11:running, +8:u01:iCAN, +9:u06:path,, +12:u08:achieve:, +12:u01:(instant, +12:u02:directly, +6:u03:To, +10:u04:paths., +6:u06:so, +12:u07:switched, +11:u10:running, +9:u14:path,, +8:u00:iCAN, +9:u05:path,, +12:u00:(instant, +12:u01:directly, +6:u02:To, +10:u03:paths., +6:u05:so, +12:u06:switched, +9:u13:path,, +9:u04:path,, +12:u07:achieve:, +8:u08:able, +12:u00:directly, +6:u01:To, +10:u02:paths., +6:u04:so, +12:u05:switched, +7:u08:SDN, +9:u12:path,, +7:u22:pat, +8:u23:path, +9:u03:path,, +12:u06:achieve:, +7:u08:nor, +6:u00:To, +10:u01:paths., +6:u03:so, +12:u04:switched, +7:u07:SDN, +9:u11:path,, +12:u14:achieve:, +9:u02:path,, +12:u05:achieve:, +8:u07:able, +15:u08:(especially, +10:u00:paths., +6:u02:so, +12:u03:switched, +7:u06:SDN, +9:u10:path,, +12:u13:achieve:, +9:u01:path,, +12:u04:achieve:, +8:u06:able, +7:u07:nor, +14:u08:perfectly:, +6:u01:so, +12:u02:switched, +7:u05:SDN, +12:u12:achieve:, +8:u14:able, +7:u22:ach, +8:u23:achi, +9:u00:path,, +12:u03:achieve:, +8:u05:able, +7:u06:nor, +15:u07:(especially, +6:u00:so, +12:u01:switched, +7:u04:SDN, +14:u08:controller, +12:u11:achieve:, +8:u13:able, +7:u14:nor, +12:u02:achieve:, +8:u04:able, +7:u05:nor, +15:u06:(especially, +14:u07:perfectly:, +12:u00:switched, +7:u03:SDN, +14:u07:controller, +12:u10:achieve:, +8:u12:able, +7:u13:nor, +15:u14:(especially, +6:u21:ab, +7:u22:abl, +8:u23:able, +12:u01:achieve:, +8:u03:able, +7:u04:nor, +15:u05:(especially, +14:u06:perfectly:, +7:u02:SDN, +14:u06:controller, +15:u08:Traditional, +8:u11:able, +7:u12:nor, +15:u13:(especially, +14:u14:perfectly:, +7:u23:nor, +8:uI2:().,, +12:u00:achieve:, +8:u02:able, +7:u03:nor, +15:u04:(especially, +14:u05:perfectly:, +7:u01:SDN, +14:u05:controller, +15:u07:Traditional, +8:u10:able, +7:u11:nor, +15:u12:(especially, +14:u13:perfectly:, +6:u21:(e, +7:u22:(es, +8:u23:(esp, +8:uI1:().,, +7:uI2::-,, +8:u01:able, +7:u02:nor, +15:u03:(especially, +14:u04:perfectly:, +7:u00:SDN, +14:u04:controller, +15:u06:Traditional, +7:u10:nor, +15:u11:(especially, +14:u12:perfectly:, +6:u21:pe, +7:u22:per, +8:u23:perf, +8:uI0:().,, +7:uI1::-,, +8:u00:able, +7:u01:nor, +15:u02:(especially, +14:u03:perfectly:, +14:u03:controller, +15:u05:Traditional, +15:u10:(especially, +14:u11:perfectly:, +7:uI0::-,, +7:u00:nor, +15:u01:(especially, +14:u02:perfectly:, +14:u02:controller, +15:u04:Traditional, +14:u10:perfectly:, +15:u00:(especially, +14:u01:perfectly:, +14:u01:controller, +15:u03:Traditional, +14:u00:perfectly:, +14:u00:controller, +15:u02:Traditional, +15:u01:Traditional, +15:u00:Traditional, +7:u08:Liu, +7:u07:Liu, +7:u14:liu, +7:u13:liu, +7:u12:liu, +6:u21:Li, +7:u22:Liu, +7:u23:Liu, +7:u11:liu, +7:u10:liu, +8:u08:2.1., +16:u08:Architecture, +8:u07:2.1., +8:u08:2.2., +16:u07:Architecture, +11:uI2:......., +8:u06:2.1., +16:u06:Architecture, +8:u14:2.1., +11:uI1:......., +8:u05:2.1., +8:u07:2.2., +10:u08:2.2.1., +16:u05:Architecture, +8:u13:2.1., +11:uI0:......., +8:u04:2.1., +8:u06:2.2., +16:u04:Architecture, +8:u08:Path, +8:u12:2.1., +8:u14:2.2., +7:u22:2.1, +8:u23:2.1., +8:u03:2.1., +8:u05:2.2., +10:u07:2.2.1., +10:u08:2.2.2., +16:u03:Architecture, +8:u07:Path, +8:u11:2.1., +8:u13:2.2., +8:u02:2.1., +8:u04:2.2., +10:u06:2.2.1., +16:u02:Architecture, +8:u06:Path, +15:u08:Recognition, +8:u10:2.1., +8:u12:2.2., +10:u14:2.2.1., +7:u22:2.2, +8:u23:2.2., +8:u01:2.1., +8:u03:2.2., +10:u05:2.2.1., +10:u07:2.2.2., +10:u08:2.2.3., +16:u01:Architecture, +8:u05:Path, +15:u07:Recognition, +8:u11:2.2., +10:u13:2.2.1., +8:u00:2.1., +8:u02:2.2., +10:u04:2.2.1., +10:u06:2.2.2., +16:u00:Architecture, +8:u04:Path, +15:u06:Recognition, +8:u08:Flow, +8:u10:2.2., +10:u12:2.2.1., +10:u14:2.2.2., +8:u01:2.2., +10:u03:2.2.1., +10:u05:2.2.2., +10:u07:2.2.3., +8:u03:Path, +15:u05:Recognition, +8:u07:Flow, +10:u11:2.2.1., +10:u13:2.2.2., +8:u00:2.2., +10:u02:2.2.1., +10:u04:2.2.2., +10:u06:2.2.3., +8:u02:Path, +15:u04:Recognition, +8:u06:Flow, +7:u08:Use, +10:u10:2.2.1., +10:u12:2.2.2., +10:u14:2.2.3., +10:u01:2.2.1., +10:u03:2.2.2., +10:u05:2.2.3., +8:u08:3.1., +8:u01:Path, +15:u03:Recognition, +8:u05:Flow, +7:u07:Use, +10:u11:2.2.2., +10:u13:2.2.3., +19:uI2:..............., +10:u00:2.2.1., +10:u02:2.2.2., +10:u04:2.2.3., +8:u00:Path, +15:u02:Recognition, +8:u04:Flow, +7:u06:Use, +11:u08:Network, +10:u10:2.2.2., +10:u12:2.2.3., +19:uI1:..............., +10:u01:2.2.2., +10:u03:2.2.3., +8:u07:3.1., +8:u08:3.2., +15:u01:Recognition, +8:u03:Flow, +7:u05:Use, +11:u07:Network, +10:u11:2.2.3., +5:u14:6, +19:uI0:..............., +10:u00:2.2.2., +10:u02:2.2.3., +8:u06:3.1., +15:u00:Recognition, +8:u02:Flow, +7:u04:Use, +11:u06:Network, +7:u08:SLA, +10:u10:2.2.3., +5:u13:6, +8:u14:3.1., +10:u01:2.2.3., +8:u05:3.1., +8:u07:3.2., +8:u08:3.3., +8:u01:Flow, +7:u03:Use, +7:u07:SLA, +5:u12:6, +8:u13:3.1., +5:u21:6, +5:u22:6, +5:u23:6, +10:u00:2.2.3., +8:u04:3.1., +8:u06:3.2., +8:u00:Flow, +7:u02:Use, +7:u06:SLA, +20:u08:Fine-Granularity, +5:u11:6, +8:u12:3.1., +8:u14:3.2., +7:u22:3.1, +8:u23:3.1., +8:u03:3.1., +8:u05:3.2., +8:u07:3.3., +7:u01:Use, +7:u05:SLA, +20:u07:Fine-Granularity, +5:u10:6, +8:u11:3.1., +8:u13:3.2., +8:u02:3.1., +8:u04:3.2., +8:u06:3.3., +7:u00:Use, +7:u04:SLA, +20:u06:Fine-Granularity, +18:u08:Implementation, +8:u10:3.1., +8:u12:3.2., +8:u14:3.3., +7:u22:3.2, +8:u23:3.2., +8:u01:3.1., +8:u03:3.2., +8:u05:3.3., +8:u08:4.1., +7:u03:SLA, +20:u05:Fine-Granularity, +18:u07:Implementation, +8:u11:3.2., +8:u13:3.3., +21:uI2:..-.............., +8:u00:3.1., +8:u02:3.2., +8:u04:3.3., +7:u02:SLA, +20:u04:Fine-Granularity, +18:u06:Implementation, +8:u10:3.2., +8:u12:3.3., +7:u22:3.3, +8:u23:3.3., +21:uI1:..-.............., +8:u01:3.2., +8:u03:3.3., +8:u07:4.1., +8:u08:4.2., +7:u01:SLA, +20:u03:Fine-Granularity, +18:u05:Implementation, +8:u11:3.3., +21:uI0:..-.............., +8:u00:3.2., +8:u02:3.3., +8:u06:4.1., +7:u00:SLA, +20:u02:Fine-Granularity, +18:u04:Implementation, +8:u10:3.3., +8:u14:4.1., +8:u01:3.3., +8:u05:4.1., +8:u07:4.2., +8:u08:4.3., +20:u01:Fine-Granularity, +18:u03:Implementation, +8:u13:4.1., +8:u00:3.3., +8:u04:4.1., +8:u06:4.2., +20:u00:Fine-Granularity, +18:u02:Implementation, +8:u12:4.1., +8:u14:4.2., +7:u22:4.1, +8:u23:4.1., +8:u03:4.1., +8:u05:4.2., +8:u07:4.3., +18:u01:Implementation, +8:u11:4.1., +8:u13:4.2., +8:u02:4.1., +8:u04:4.2., +8:u06:4.3., +18:u00:Implementation, +19:u08:Standardization, +8:u10:4.1., +8:u12:4.2., +8:u14:4.3., +7:u22:4.2, +8:u23:4.2., +8:u01:4.1., +8:u03:4.2., +8:u05:4.3., +19:u07:Standardization, +8:u11:4.2., +8:u13:4.3., +25:uI2:../-................., +8:u00:4.1., +8:u02:4.2., +8:u04:4.3., +19:u06:Standardization, +8:u10:4.2., +8:u12:4.3., +7:u22:4.3, +8:u23:4.3., +25:uI1:../-................., +8:u01:4.2., +8:u03:4.3., +19:u05:Standardization, +8:u11:4.3., +25:uI0:../-................., +8:u00:4.2., +8:u02:4.3., +19:u04:Standardization, +8:u10:4.3., +8:u01:4.3., +19:u03:Standardization, +8:u00:4.3., +19:u02:Standardization, +19:u01:Standardization, +19:u00:Standardization, +8:u08:9.1., +8:u07:9.1., +8:u08:9.2., +8:u06:9.1., +15:u08:Informative, +8:u14:9.1., +8:u05:9.1., +8:u07:9.2., +12:u08:Author's, +15:u07:Informative, +8:u13:9.1., +8:u04:9.1., +8:u06:9.2., +15:u06:Informative, +8:u12:9.1., +8:u14:9.2., +7:u22:9.1, +8:u23:9.1., +8:u03:9.1., +8:u05:9.2., +12:u07:Author's, +15:u05:Informative, +8:u11:9.1., +8:u13:9.2., +8:u02:9.1., +8:u04:9.2., +12:u06:Author's, +15:u04:Informative, +8:u10:9.1., +8:u12:9.2., +12:u14:author's, +7:u22:9.2, +8:u23:9.2., +8:u01:9.1., +8:u03:9.2., +12:u05:Author's, +15:u03:Informative, +8:u11:9.2., +12:u13:author's, +29:uI2:'........................, +8:u00:9.1., +8:u02:9.2., +12:u04:Author's, +15:u02:Informative, +7:u08:can, +8:u10:9.2., +12:u12:author's, +29:uI1:'........................, +8:u01:9.2., +12:u03:Author's, +15:u01:Informative, +7:u07:can, +14:u08:capability, +12:u11:author's, +15:u14:traditional, +29:uI0:'........................, +8:u00:9.2., +12:u02:Author's, +15:u00:Informative, +7:u06:can, +14:u07:capability, +12:u10:author's, +15:u13:traditional, +12:u01:Author's, +7:u05:can, +14:u06:capability, +15:u12:traditional, +8:u23:Trad, +12:u00:Author's, +7:u04:can, +14:u05:capability, +15:u11:traditional, +7:u03:can, +14:u04:capability, +15:u10:traditional, +7:u02:can, +14:u03:capability, +7:u01:can, +14:u02:capability, +7:u00:can, +14:u01:capability, +11:u08:doable;, +15:u08:flexibility, +14:u00:capability, +11:u07:doable;, +15:u08:controller,, +11:u06:doable;, +15:u07:flexibility, +11:u05:doable;, +7:uI2:;,-, +15:u06:flexibility, +15:u07:controller,, +11:u04:doable;, +15:u14:flexibility, +7:uI1:;,-, +15:u05:flexibility, +15:u06:controller,, +13:u08:situation, +11:u03:doable;, +11:u08:implies, +15:u13:flexibility, +15:u14:controller,, +7:uI0:;,-, +15:u04:flexibility, +15:u05:controller,, +24:u08:planning/controlling, +11:u02:doable;, +11:u07:implies, +15:u12:flexibility, +15:u13:controller,, +7:u22:fle, +8:u23:flex, +15:u03:flexibility, +15:u04:controller,, +13:u07:situation, +11:u08:traffic, +11:u01:doable;, +11:u06:implies, +13:u08:(minuets,, +15:u11:flexibility, +15:u12:controller,, +15:u02:flexibility, +15:u03:controller,, +13:u06:situation, +24:u07:planning/controlling, +13:u08:real-time, +11:u00:doable;, +11:u05:implies, +13:u07:(minuets,, +15:u10:flexibility, +15:u11:controller,, +13:u14:situation, +15:u01:flexibility, +15:u02:controller,, +13:u05:situation, +24:u06:planning/controlling, +11:u07:traffic, +11:u08:(metro,, +11:u04:implies, +13:u06:(minuets,, +9:u08:(e.g., +15:u10:controller,, +13:u13:situation, +24:u14:planning/controlling, +15:u00:flexibility, +15:u01:controller,, +13:u04:situation, +24:u05:planning/controlling, +11:u06:traffic, +13:u07:real-time, +13:u08:resources, +11:u03:implies, +13:u05:(minuets,, +9:u07:(e.g., +13:u08:backbones, +13:u12:situation, +24:u13:planning/controlling, +11:u14:traffic, +7:u22:sit, +8:u23:situ, +9:uI2:/(,-), +15:u00:controller,, +13:u03:situation, +24:u04:planning/controlling, +11:u05:traffic, +13:u06:real-time, +11:u07:(metro,, +9:u08:waste, +11:u02:implies, +13:u04:(minuets,, +9:u06:(e.g., +13:u07:backbones, +9:u08:could, +13:u11:situation, +24:u12:planning/controlling, +11:u13:traffic, +13:u14:real-time, +6:u21:pl, +7:u22:pla, +8:u23:plan, +9:uI1:/(,-), +13:u02:situation, +24:u03:planning/controlling, +11:u04:traffic, +13:u05:real-time, +11:u06:(metro,, +13:u07:resources, +11:u01:implies, +13:u03:(minuets,, +9:u05:(e.g., +13:u06:backbones, +9:u07:could, +13:u10:situation, +24:u11:planning/controlling, +11:u12:traffic, +13:u13:real-time, +11:u14:(metro,, +8:u23:traf, +9:uI0:/(,-), +12:uI2:-(..-).,, +13:u01:situation, +24:u02:planning/controlling, +11:u03:traffic, +13:u04:real-time, +11:u05:(metro,, +13:u06:resources, +9:u07:waste, +16:u08:architecture, +11:u00:implies, +13:u02:(minuets,, +9:u04:(e.g., +13:u05:backbones, +9:u06:could, +9:u08:draft, +24:u10:planning/controlling, +11:u11:traffic, +13:u12:real-time, +11:u13:(metro,, +13:u14:resources, +7:u22:rea, +8:u23:real, +12:uI1:-(..-).,, +9:uI2:(,.),, +13:u00:situation, +24:u01:planning/controlling, +11:u02:traffic, +13:u03:real-time, +11:u04:(metro,, +13:u05:resources, +9:u06:waste, +8:u08:time, +13:u01:(minuets,, +9:u03:(e.g., +13:u04:backbones, +9:u05:could, +9:u07:draft, +11:u10:traffic, +13:u11:real-time, +11:u12:(metro,, +13:u13:resources, +9:u14:waste, +6:u21:(m, +7:u22:(me, +8:u23:(met, +12:uI0:-(..-).,, +9:uI1:(,.),, +24:u00:planning/controlling, +11:u01:traffic, +13:u02:real-time, +11:u03:(metro,, +13:u04:resources, +9:u05:waste, +16:u07:architecture, +13:u00:(minuets,, +9:u02:(e.g., +13:u03:backbones, +9:u04:could, +9:u06:draft, +13:u10:real-time, +11:u11:(metro,, +13:u12:resources, +9:u13:waste, +7:u22:res, +8:u23:reso, +9:uI0:(,.),, +11:u00:traffic, +13:u01:real-time, +11:u02:(metro,, +13:u03:resources, +9:u04:waste, +16:u06:architecture, +8:u07:time, +9:u01:(e.g., +13:u02:backbones, +9:u03:could, +9:u05:draft, +12:u08:includes, +11:u10:(metro,, +13:u11:resources, +9:u12:waste, +16:u14:architecture, +6:u21:wa, +7:u22:was, +8:u23:wast, +13:u00:real-time, +11:u01:(metro,, +13:u02:resources, +9:u03:waste, +16:u05:architecture, +8:u06:time, +14:u08:congestion, +9:u00:(e.g., +13:u01:backbones, +9:u02:could, +9:u04:draft, +12:u07:includes, +13:u10:resources, +9:u11:waste, +16:u13:architecture, +8:u14:time, +11:u00:(metro,, +13:u01:resources, +9:u02:waste, +16:u04:architecture, +8:u05:time, +13:u00:backbones, +9:u01:could, +9:u03:draft, +12:u06:includes, +9:u10:waste, +16:u12:architecture, +8:u13:time, +7:u22:arc, +8:u23:arch, +13:u00:resources, +9:u01:waste, +16:u03:architecture, +8:u04:time, +14:u07:congestion, +9:u00:could, +9:u02:draft, +12:u05:includes, +13:u08:underload, +16:u11:architecture, +8:u12:time, +9:u00:waste, +16:u02:architecture, +8:u03:time, +14:u06:congestion, +9:u01:draft, +12:u04:includes, +13:u07:underload, +15:u08:Recognizing, +16:u10:architecture, +8:u11:time, +14:u14:congestion, +16:u01:architecture, +8:u02:time, +14:u05:congestion, +12:u08:balance,, +9:u00:draft, +12:u03:includes, +13:u06:underload, +15:u07:Recognizing, +11:u08:Ingress, +8:u10:time, +14:u13:congestion, +16:u00:architecture, +8:u01:time, +14:u04:congestion, +12:u02:includes, +13:u05:underload, +15:u06:Recognizing, +11:u07:Ingress, +14:u12:congestion, +8:u23:cong, +8:u00:time, +14:u03:congestion, +12:u07:balance,, +9:u08:iCAN., +12:u01:includes, +13:u04:underload, +15:u05:Recognizing, +11:u06:Ingress, +14:u11:congestion, +14:u02:congestion, +12:u06:balance,, +12:u00:includes, +13:u03:underload, +15:u04:Recognizing, +11:u05:Ingress, +14:u10:congestion, +12:u14:balance,, +14:u01:congestion, +12:u05:balance,, +9:u07:iCAN., +13:u02:underload, +15:u03:Recognizing, +11:u04:Ingress, +12:u13:balance,, +14:u00:congestion, +12:u04:balance,, +9:u06:iCAN., +13:u01:underload, +15:u02:Recognizing, +11:u03:Ingress, +12:u12:balance,, +9:u14:ican., +7:u22:bal, +8:u23:bala, +12:u03:balance,, +9:u05:iCAN., +13:u00:underload, +15:u01:Recognizing, +11:u02:Ingress, +12:u11:balance,, +9:u13:ican., +12:u02:balance,, +9:u04:iCAN., +15:u00:Recognizing, +11:u01:Ingress, +12:u10:balance,, +9:u12:ican., +12:u01:balance,, +9:u03:iCAN., +11:u00:Ingress, +9:u11:ican., +12:u00:balance,, +9:u02:iCAN., +9:u10:ican., +9:u01:iCAN., +9:u00:iCAN., +17:u08:+-----------+, +17:u07:+-----------+, +17:u06:+-----------+, +17:u14:+-----------+, +17:u05:+-----------+, +15:u08:Controller|, +17:u13:+-----------+, +15:uI2:-----------, +17:u04:+-----------+, +15:u07:Controller|, +17:u12:+-----------+, +15:uI1:-----------, +17:u03:+-----------+, +15:u06:Controller|, +17:u11:+-----------+, +15:uI0:-----------, +17:u02:+-----------+, +15:u05:Controller|, +17:u10:+-----------+, +17:u01:+-----------+, +16:u08:0.Multi-path, +15:u04:Controller|, +17:u00:+-----------+, +12:u08:Planning, +15:u03:Controller|, +16:u07:0.Multi-path, +15:u02:Controller|, +16:u06:0.Multi-path, +12:u07:Planning, +15:u01:Controller|, +16:u14:0.multi-path, +16:u05:0.Multi-path, +12:u06:Planning, +5:u08:v, +15:u00:Controller|, +16:u13:0.multi-path, +12:u14:planning, +16:u04:0.Multi-path, +12:u05:Planning, +16:u12:0.multi-path, +12:u13:planning, +5:u20:0, +6:u21:0., +7:u22:0.M, +8:u23:0.Mu, +16:u03:0.Multi-path, +12:u04:Planning, +5:u07:v, +12:u08:Imcoming, +16:u08:--------Path, +16:u11:0.multi-path, +12:u12:planning, +6:u21:Pl, +7:u22:Pla, +8:u23:Plan, +16:u02:0.Multi-path, +12:u03:Planning, +5:u06:v, +16:u07:--------Path, +9:u08:Flows, +16:u10:0.multi-path, +12:u11:planning, +5:u14:v, +16:u01:0.Multi-path, +12:u02:Planning, +5:u05:v, +12:u07:Imcoming, +19:u08:-------------->, +16:u06:--------Path, +9:u07:Flows, +12:u10:planning, +5:u13:v, +16:u00:0.Multi-path, +12:u01:Planning, +5:u04:v, +12:u06:Imcoming, +16:u05:--------Path, +9:u06:Flows, +5:u12:v, +12:u14:imcoming, +5:u21:v, +5:u22:v, +5:u23:v, +45:uI2:-----------------------------------------, +6:uI2:41, +12:u00:Planning, +5:u03:v, +12:u05:Imcoming, +19:u07:-------------->, +16:u04:--------Path, +9:u05:Flows, +5:u11:v, +12:u13:imcoming, +45:uI1:-----------------------------------------, +6:uI1:41, +5:u02:v, +12:u04:Imcoming, +19:u06:-------------->, +16:u03:--------Path, +9:u04:Flows, +5:u10:v, +12:u12:imcoming, +19:u14:-------------->, +6:u21:Im, +7:u22:Imc, +8:u23:Imco, +45:uI0:-----------------------------------------, +6:uI0:41, +5:u01:v, +12:u03:Imcoming, +19:u05:-------------->, +16:u02:--------Path, +9:u03:Flows, +12:u11:imcoming, +19:u13:-------------->, +18:uI2:--------------, +5:u00:v, +12:u02:Imcoming, +19:u04:-------------->, +16:u01:--------Path, +9:u02:Flows, +12:u10:imcoming, +19:u12:-------------->, +5:u20:-, +6:u21:--, +7:u22:---, +8:u23:----, +18:uI1:--------------, +24:uI2:--------------------, +12:u01:Imcoming, +19:u03:-------------->, +16:u00:--------Path, +9:u01:Flows, +19:u11:-------------->, +18:uI0:--------------, +24:uI1:--------------------, +12:u00:Imcoming, +19:u02:-------------->, +17:u08:+-/------\--+, +9:u00:Flows, +19:u10:-------------->, +24:uI0:--------------------, +19:u01:-------------->, +5:u08:/, +32:u08:<-------------------------->, +19:u00:-------------->, +17:u07:+-/------\--+, +32:u07:<-------------------------->, +17:u06:+-/------\--+, +5:u07:/, +10:u08:1.Path, +32:u06:<-------------------------->, +17:u14:+-/------\--+, +17:u05:+-/------\--+, +5:u06:/, +32:u05:<-------------------------->, +11:u08:Quality, +17:u13:+-/------\--+, +5:u14:/, +50:uI2:-/--------------------------------------------, +6:uI2:46, +17:u04:+-/------\--+, +5:u05:/, +10:u07:1.Path, +32:u04:<-------------------------->, +11:u07:Quality, +17:u12:+-/------\--+, +5:u13:/, +5:u14:\, +7:u22:+-/, +8:u23:+-/-, +50:uI1:-/--------------------------------------------, +6:uI1:46, +17:u03:+-/------\--+, +5:u04:/, +10:u06:1.Path, +32:u03:<-------------------------->, +11:u06:Quality, +15:u08:recognition, +17:u11:+-/------\--+, +5:u12:/, +5:u13:\, +10:u14:1.path, +5:u20:/, +5:u21:/, +5:u22:/, +5:u23:/, +50:uI0:-/--------------------------------------------, +6:uI0:46, +17:u02:+-/------\--+, +5:u03:/, +10:u05:1.Path, +32:u02:<-------------------------->, +11:u05:Quality, +15:u07:recognition, +17:u10:+-/------\--+, +5:u11:/, +5:u12:\, +10:u13:1.path, +5:u20:\, +5:u21:\, +5:u22:\, +5:u23:\, +17:u01:+-/------\--+, +5:u02:/, +10:u04:1.Path, +32:u01:<-------------------------->, +11:u04:Quality, +15:u06:recognition, +5:u10:/, +5:u11:\, +10:u12:1.path, +7:u22:1.P, +8:u23:1.Pa, +8:uI2:/.(), +17:u00:+-/------\--+, +5:u01:/, +10:u03:1.Path, +32:u00:<-------------------------->, +11:u03:Quality, +15:u05:recognition, +9:u08:above, +5:u10:\, +10:u11:1.path, +8:uI1:/.(), +5:u00:/, +10:u02:1.Path, +16:u08:-Responsible, +11:u02:Quality, +15:u04:recognition, +9:u07:above, +14:u08:Controller, +10:u10:1.path, +8:uI0:/.(), +10:u01:1.Path, +11:u01:Quality, +15:u03:recognition, +9:u06:above, +14:u07:Controller, +10:u00:1.Path, +16:u07:-Responsible, +10:u08:-After, +11:u00:Quality, +15:u02:recognition, +9:u05:above, +14:u06:Controller, +16:u06:-Responsible, +15:u01:recognition, +9:u04:above, +14:u05:Controller, +14:u08:delivering, +16:u14:-responsible, +16:u05:-Responsible, +10:u07:-After, +15:u00:recognition, +9:u03:above, +14:u04:Controller, +14:u07:delivering, +9:u08:would, +16:u13:-responsible, +8:u14:that, +16:u04:-Responsible, +10:u06:-After, +11:u08:-Serves, +9:u02:above, +14:u03:Controller, +14:u06:delivering, +9:u07:would, +16:u12:-responsible, +8:u13:that, +10:u14:-after, +6:u21:-R, +7:u22:-Re, +8:u23:-Res, +16:u03:-Responsible, +10:u05:-After, +9:u01:above, +14:u02:Controller, +14:u05:delivering, +9:u06:would, +16:u11:-responsible, +8:u12:that, +10:u13:-after, +14:u14:controller, +7:u22:tha, +8:u23:that, +16:u02:-Responsible, +10:u04:-After, +11:u07:-Serves, +9:u00:above, +14:u01:Controller, +14:u04:delivering, +9:u05:would, +16:u10:-responsible, +8:u11:that, +10:u12:-after, +14:u13:controller, +6:u21:-A, +7:u22:-Af, +8:u23:-Aft, +16:u01:-Responsible, +10:u03:-After, +11:u06:-Serves, +15:u08:measurement, +14:u00:Controller, +14:u03:delivering, +9:u04:would, +8:u10:that, +10:u11:-after, +14:u12:controller, +11:u14:-serves, +6:uI2:.:, +16:u00:-Responsible, +10:u02:-After, +11:u05:-Serves, +14:u02:delivering, +9:u03:would, +13:u08:protocol., +10:u10:-after, +14:u11:controller, +11:u13:-serves, +6:uI1:.:, +8:uI2:-""., +10:u01:-After, +11:u04:-Serves, +15:u07:measurement, +13:u08:calculate, +14:u01:delivering, +9:u02:would, +13:u07:protocol., +11:u08:getting, +14:u10:controller, +11:u12:-serves, +6:u21:-S, +7:u22:-Se, +8:u23:-Ser, +6:uI0:.:, +8:uI1:-""., +10:u00:-After, +11:u03:-Serves, +15:u06:measurement, +14:u00:delivering, +9:u01:would, +13:u06:protocol., +11:u07:getting, +11:u11:-serves, +15:u14:measurement, +8:uI0:-""., +11:u02:-Serves, +15:u05:measurement, +13:u07:calculate, +9:u00:would, +13:u05:protocol., +11:u06:getting, +11:u10:-serves, +15:u13:measurement, +11:u01:-Serves, +15:u04:measurement, +13:u06:calculate, +7:u08:-In, +13:u04:protocol., +11:u05:getting, +11:u08:quality, +15:u12:measurement, +13:u14:calculate, +8:u23:meas, +11:u00:-Serves, +15:u03:measurement, +13:u05:calculate, +10:u08:router, +13:u03:protocol., +11:u04:getting, +11:u07:quality, +15:u11:measurement, +13:u13:calculate, +15:u02:measurement, +13:u04:calculate, +7:u07:-In, +13:u08:switching, +13:u02:protocol., +11:u03:getting, +11:u06:quality, +15:u10:measurement, +13:u12:calculate, +7:u22:cal, +8:u23:calc, +15:u01:measurement, +13:u03:calculate, +7:u06:-In, +10:u07:router, +13:u01:protocol., +11:u02:getting, +11:u05:quality, +13:u11:calculate, +7:u14:-in, +15:u00:measurement, +13:u02:calculate, +7:u05:-In, +10:u06:router, +13:u07:switching, +13:u00:protocol., +11:u01:getting, +11:u04:quality, +13:u10:calculate, +7:u13:-in, +10:u14:router, +13:u01:calculate, +7:u04:-In, +10:u05:router, +13:u06:switching, +11:u00:getting, +11:u03:quality, +7:u12:-in, +10:u13:router, +13:u14:switching, +6:u21:-I, +7:u22:-In, +7:u23:-In, +13:u00:calculate, +7:u03:-In, +10:u04:router, +13:u05:switching, +11:u02:quality, +7:u11:-in, +10:u12:router, +13:u13:switching, +7:u22:rou, +8:u23:rout, +7:u02:-In, +10:u03:router, +13:u04:switching, +11:u01:quality, +7:u10:-in, +10:u11:router, +13:u12:switching, +6:u21:sw, +7:u22:swi, +8:u23:swit, +7:u01:-In, +10:u02:router, +13:u03:switching, +11:u00:quality, +10:u10:router, +13:u11:switching, +7:u00:-In, +10:u01:router, +13:u02:switching, +13:u10:switching, +10:u00:router, +13:u01:switching, +9:u08:-Only, +10:u08:Egress, +13:u00:switching, +8:u08:path, +10:u07:Egress, +9:u07:-Only, +10:u06:Egress, +15:u08:assessment., +9:u06:-Only, +8:u07:path, +10:u05:Egress, +15:u07:assessment., +9:u14:-only, +9:u05:-Only, +8:u06:path, +10:u04:Egress, +15:u06:assessment., +9:u13:-only, +8:u14:path, +9:u04:-Only, +8:u05:path, +10:u03:Egress, +15:u05:assessment., +10:u08:Req-1:, +9:u12:-only, +8:u13:path, +6:u21:-O, +7:u22:-On, +8:u23:-Onl, +9:u03:-Only, +8:u04:path, +32:u08:[I-D.dang-ippm-congestion].), +10:u02:Egress, +15:u04:assessment., +10:u07:Req-1:, +10:u08:(Note:, +9:u11:-only, +8:u12:path, +9:u02:-Only, +8:u03:path, +10:u01:Egress, +15:u03:assessment., +10:u06:Req-1:, +10:u07:(Note:, +9:u10:-only, +8:u11:path, +9:u01:-Only, +8:u02:path, +32:u07:[I-D.dang-ippm-congestion].), +10:u00:Egress, +15:u02:assessment., +10:u05:Req-1:, +10:u06:(Note:, +10:u08:Req-2:, +8:u10:path, +10:u14:paths., +9:u00:-Only, +8:u01:path, +32:u06:[I-D.dang-ippm-congestion].), +15:u01:assessment., +10:u04:Req-1:, +10:u05:(Note:, +10:u07:Req-2:, +10:u13:paths., +32:u14:[i-d.dang-ippm-congestion].), +8:uI2:.(::, +8:u00:path, +32:u05:[I-D.dang-ippm-congestion].), +15:u00:assessment., +10:u03:Req-1:, +10:u04:(Note:, +10:u06:Req-2:, +10:u12:paths., +32:u13:[i-d.dang-ippm-congestion].), +8:uI1:.(::, +12:uI2:[-.--].), +32:u04:[I-D.dang-ippm-congestion].), +8:u08:same, +10:u02:Req-1:, +10:u03:(Note:, +10:u05:Req-2:, +10:u08:Req-3:, +10:u11:paths., +32:u12:[i-d.dang-ippm-congestion].), +8:uI0:.(::, +12:uI1:[-.--].), +32:u03:[I-D.dang-ippm-congestion].), +10:u01:Req-1:, +10:u02:(Note:, +10:u04:Req-2:, +10:u07:Req-3:, +18:u08:ingress/egress, +10:u10:paths., +32:u11:[i-d.dang-ippm-congestion].), +12:uI0:[-.--].), +32:u02:[I-D.dang-ippm-congestion].), +8:u07:same, +47:u08:[I-D.dang-ippm-multiple-path-measurement].), +10:u00:Req-1:, +10:u01:(Note:, +10:u03:Req-2:, +10:u06:Req-3:, +18:u07:ingress/egress, +10:u08:metric, +32:u10:[i-d.dang-ippm-congestion].), +32:u01:[I-D.dang-ippm-congestion].), +8:u06:same, +10:u00:(Note:, +10:u02:Req-2:, +10:u05:Req-3:, +18:u06:ingress/egress, +10:u07:metric, +8:u14:same, +32:u00:[I-D.dang-ippm-congestion].), +8:u05:same, +47:u07:[I-D.dang-ippm-multiple-path-measurement].), +10:u01:Req-2:, +10:u04:Req-3:, +18:u05:ingress/egress, +10:u06:metric, +8:u13:same, +8:uI2:/.(:, +8:u04:same, +47:u06:[I-D.dang-ippm-multiple-path-measurement].), +10:u00:Req-2:, +10:u03:Req-3:, +18:u04:ingress/egress, +10:u05:metric, +8:u12:same, +47:u14:[i-d.dang-ippm-multiple-path-measurement].), +6:u21:sa, +7:u22:sam, +8:u23:same, +8:uI1:/.(:, +8:u03:same, +47:u05:[I-D.dang-ippm-multiple-path-measurement].), +10:u02:Req-3:, +18:u03:ingress/egress, +10:u04:metric, +8:u11:same, +47:u13:[i-d.dang-ippm-multiple-path-measurement].), +8:uI0:/.(:, +14:uI2:[-.----].), +8:u02:same, +47:u04:[I-D.dang-ippm-multiple-path-measurement].), +13:u08:timeslot., +10:u01:Req-3:, +18:u02:ingress/egress, +10:u03:metric, +8:u10:same, +47:u12:[i-d.dang-ippm-multiple-path-measurement].), +14:uI1:[-.----].), +8:u01:same, +47:u03:[I-D.dang-ippm-multiple-path-measurement].), +10:u00:Req-3:, +18:u01:ingress/egress, +10:u02:metric, +47:u11:[i-d.dang-ippm-multiple-path-measurement].), +14:uI0:[-.----].), +8:u00:same, +47:u02:[I-D.dang-ippm-multiple-path-measurement].), +13:u07:timeslot., +18:u00:ingress/egress, +10:u01:metric, +47:u10:[i-d.dang-ippm-multiple-path-measurement].), +47:u01:[I-D.dang-ippm-multiple-path-measurement].), +13:u06:timeslot., +10:u00:metric, +13:u14:timeslot., +7:uI2:-:', +47:u00:[I-D.dang-ippm-multiple-path-measurement].), +13:u05:timeslot., +13:u13:timeslot., +7:uI1:-:', +13:u04:timeslot., +16:u08:artificially, +13:u12:timeslot., +7:uI0:-:', +13:u03:timeslot., +16:u08:immediately,, +10:u08:create, +13:u11:timeslot., +13:u02:timeslot., +16:u07:artificially, +16:u08:out-of-order, +10:u07:create, +8:u08:then, +13:u10:timeslot., +13:u01:timeslot., +16:u06:artificially, +16:u07:immediately,, +10:u06:create, +8:u07:then, +16:u14:artificially, +13:u00:timeslot., +16:u05:artificially, +16:u06:immediately,, +16:u07:out-of-order, +10:u05:create, +8:u06:then, +16:u13:artificially, +16:u14:immediately,, +16:u04:artificially, +16:u05:immediately,, +16:u06:out-of-order, +9:u08:flows, +10:u04:create, +8:u05:then, +16:u12:artificially, +16:u13:immediately,, +16:u14:out-of-order, +7:u22:art, +8:u23:arti, +16:u03:artificially, +16:u04:immediately,, +16:u05:out-of-order, +10:u03:create, +8:u04:then, +16:u11:artificially, +16:u12:immediately,, +16:u13:out-of-order, +7:u22:imm, +8:u23:imme, +16:u02:artificially, +16:u03:immediately,, +16:u04:out-of-order, +9:u07:flows, +10:u02:create, +8:u03:then, +10:u08:Req-4:, +16:u10:artificially, +16:u11:immediately,, +16:u12:out-of-order, +6:u21:ou, +7:u22:out, +8:u23:out-, +16:u01:artificially, +16:u02:immediately,, +16:u03:out-of-order, +9:u06:flows, +10:u01:create, +8:u02:then, +10:u07:Req-4:, +16:u10:immediately,, +16:u11:out-of-order, +9:u14:flows, +16:u00:artificially, +16:u01:immediately,, +16:u02:out-of-order, +9:u05:flows, +10:u00:create, +8:u01:then, +10:u06:Req-4:, +9:u08:avoid, +16:u10:out-of-order, +9:u13:flows, +16:u00:immediately,, +16:u01:out-of-order, +9:u04:flows, +8:u00:then, +10:u05:Req-4:, +9:u07:avoid, +9:u12:flows, +8:u23:flow, +16:u00:out-of-order, +9:u03:flows, +10:u04:Req-4:, +9:u06:avoid, +9:u11:flows, +6:uI2:',, +9:u02:flows, +10:u03:Req-4:, +9:u05:avoid, +9:u10:flows, +6:uI1:',, +9:u01:flows, +10:u02:Req-4:, +9:u04:avoid, +6:uI0:',, +9:u00:flows, +10:u01:Req-4:, +9:u03:avoid, +10:u00:Req-4:, +9:u02:avoid, +9:u01:avoid, +14:u08:Background, +9:u00:avoid, +9:u08:While, +12:u08:problem:, +14:u07:Background, +11:u08:loaded:, +12:u07:problem:, +8:u08:some, +14:u06:Background, +9:u07:While, +12:u06:problem:, +8:u07:some, +13:u08:unbalance, +14:u14:background, +14:u05:Background, +9:u06:While, +11:u07:loaded:, +12:u05:problem:, +8:u06:some, +13:u07:unbalance, +14:u13:background, +9:u14:while, +6:uI2::., +14:u04:Background, +9:u05:While, +11:u06:loaded:, +8:u08:e.g., +12:u04:problem:, +8:u05:some, +13:u06:unbalance, +8:u08:lows, +14:u12:background, +9:u13:while, +11:u14:loaded:, +7:u22:Bac, +8:u23:Back, +6:uI1::., +14:u03:Background, +9:u04:While, +11:u05:loaded:, +12:u08:traffic,, +12:u03:problem:, +8:u04:some, +13:u05:unbalance, +8:u07:lows, +14:u11:background, +9:u12:while, +11:u13:loaded:, +9:u14:could, +7:u22:Whi, +8:u23:Whil, +6:uI0::., +8:uI2::(.., +14:u02:Background, +9:u03:While, +11:u04:loaded:, +8:u07:e.g., +12:u02:problem:, +8:u03:some, +13:u04:unbalance, +8:u06:lows, +14:u10:background, +9:u11:while, +11:u12:loaded:, +9:u13:could, +6:u21:lo, +7:u22:loa, +8:u23:load, +8:uI1::(.., +7:uI2:/);, +14:u01:Background, +9:u02:While, +11:u03:loaded:, +8:u06:e.g., +12:u07:traffic,, +12:u01:problem:, +8:u02:some, +13:u03:unbalance, +8:u05:lows, +9:u10:while, +11:u11:loaded:, +9:u12:could, +8:u14:e.g., +7:u22:cou, +8:u23:coul, +8:uI0::(.., +7:uI1:/);, +6:uI2:(,, +14:u00:Background, +9:u01:While, +11:u02:loaded:, +8:u05:e.g., +12:u06:traffic,, +8:u08:real, +12:u00:problem:, +8:u01:some, +13:u02:unbalance, +8:u04:lows, +8:u08:pair, +11:u10:loaded:, +9:u11:could, +8:u13:e.g., +12:u14:traffic,, +7:uI0:/);, +6:uI1:(,, +9:u00:While, +11:u01:loaded:, +8:u04:e.g., +12:u05:traffic,, +8:u00:some, +13:u01:unbalance, +8:u03:lows, +8:u07:pair, +14:u08:throughput, +9:u10:could, +8:u12:e.g., +12:u13:traffic,, +6:u21:e., +7:u22:e.g, +8:u23:e.g., +6:uI0:(,, +7:uI2:,)., +11:u00:loaded:, +8:u03:e.g., +12:u04:traffic,, +8:u07:real, +9:u08:Since, +13:u00:unbalance, +8:u02:lows, +8:u06:pair, +14:u07:throughput, +8:u11:e.g., +12:u12:traffic,, +7:uI1:,)., +8:u02:e.g., +12:u03:traffic,, +8:u06:real, +8:u01:lows, +8:u05:pair, +14:u06:throughput, +8:u10:e.g., +12:u11:traffic,, +8:u14:real, +7:uI0:,)., +8:u01:e.g., +12:u02:traffic,, +8:u05:real, +9:u07:Since, +8:u00:lows, +8:u04:pair, +14:u05:throughput, +10:u08:flows., +12:u10:traffic,, +8:u13:real, +8:u00:e.g., +12:u01:traffic,, +8:u04:real, +9:u06:Since, +10:u08:paths,, +8:u03:pair, +14:u04:throughput, +10:u07:flows., +8:u12:real, +9:u14:since, +12:u00:traffic,, +8:u03:real, +9:u05:Since, +9:u08:path., +8:u02:pair, +14:u03:throughput, +10:u06:flows., +8:u11:real, +9:u13:since, +8:u02:real, +9:u04:Since, +10:u07:paths,, +9:u08:(More, +8:u01:pair, +14:u02:throughput, +10:u05:flows., +8:u10:real, +9:u12:since, +6:u21:Si, +7:u22:Sin, +8:u23:Sinc, +8:u01:real, +9:u03:Since, +10:u06:paths,, +9:u07:path., +8:u00:pair, +14:u01:throughput, +10:u04:flows., +11:u08:content, +9:u11:since, +10:u14:paths,, +8:u00:real, +9:u02:Since, +10:u05:paths,, +9:u06:path., +9:u07:(More, +14:u00:throughput, +10:u03:flows., +11:u07:content, +9:u10:since, +10:u13:paths,, +9:u14:path., +9:u01:Since, +10:u04:paths,, +9:u05:path., +9:u06:(More, +8:u08:link, +10:u02:flows., +11:u06:content, +15:u08:reliability, +10:u12:paths,, +9:u13:path., +9:u14:(more, +9:u00:Since, +10:u03:paths,, +9:u04:path., +9:u05:(More, +10:u01:flows., +11:u05:content, +15:u07:reliability, +10:u11:paths,, +9:u12:path., +9:u13:(more, +10:u02:paths,, +9:u03:path., +9:u04:(More, +8:u07:link, +10:u00:flows., +11:u04:content, +15:u06:reliability, +10:u10:paths,, +9:u11:path., +9:u12:(more, +6:u21:(M, +7:u22:(Mo, +8:u23:(Mor, +7:uI2:..-, +10:u01:paths,, +9:u02:path., +9:u03:(More, +8:u06:link, +11:u03:content, +15:u05:reliability, +9:u10:path., +9:u11:(more, +8:u14:link, +7:uI1:..-, +10:u00:paths,, +9:u01:path., +9:u02:(More, +8:u05:link, +11:u02:content, +15:u04:reliability, +9:u10:(more, +8:u13:link, +7:uI0:..-, +9:u00:path., +9:u01:(More, +8:u04:link, +7:u08:-SR, +11:u01:content, +15:u03:reliability, +8:u12:link, +8:u23:link, +9:u00:(More, +8:u03:link, +11:u00:content, +15:u02:reliability, +12:u08:Multiple, +8:u11:link, +8:u02:link, +7:u07:-SR, +10:u08:nodes,, +15:u01:reliability, +12:u07:Multiple, +12:u08:example,, +8:u10:link, +8:u01:link, +7:u06:-SR, +13:u08:LSP1/2/3., +15:u00:reliability, +12:u06:Multiple, +12:u07:example,, +7:u14:-sr, +8:u00:link, +7:u05:-SR, +10:u07:nodes,, +12:u05:Multiple, +12:u06:example,, +7:u13:-sr, +7:u04:-SR, +10:u06:nodes,, +13:u07:LSP1/2/3., +8:u08:list, +12:u04:Multiple, +12:u05:example,, +9:u08:probe, +7:u12:-sr, +10:u14:nodes,, +7:u22:-SR, +7:u23:-SR, +7:u03:-SR, +10:u05:nodes,, +13:u06:LSP1/2/3., +12:u03:Multiple, +12:u04:example,, +9:u07:probe, +7:u11:-sr, +10:u13:nodes,, +13:u14:lsp1/2/3., +7:u02:-SR, +10:u04:nodes,, +13:u05:LSP1/2/3., +8:u07:list, +12:u02:Multiple, +12:u03:example,, +9:u06:probe, +9:u08:three, +7:u10:-sr, +10:u12:nodes,, +13:u13:lsp1/2/3., +7:u22:nod, +8:u23:node, +7:u01:-SR, +10:u03:nodes,, +13:u04:LSP1/2/3., +8:u06:list, +12:u01:Multiple, +12:u02:example,, +9:u05:probe, +9:u07:three, +10:u11:nodes,, +13:u12:lsp1/2/3., +8:u14:list, +6:u21:LS, +7:u22:LSP, +8:u23:LSP1, +7:u00:-SR, +10:u02:nodes,, +13:u03:LSP1/2/3., +8:u05:list, +12:u00:Multiple, +12:u01:example,, +9:u04:probe, +9:u06:three, +10:u10:nodes,, +13:u11:lsp1/2/3., +8:u13:list, +10:u01:nodes,, +13:u02:LSP1/2/3., +8:u04:list, +12:u00:example,, +9:u03:probe, +9:u05:three, +13:u10:lsp1/2/3., +8:u12:list, +7:u22:lis, +8:u23:list, +10:u00:nodes,, +13:u01:LSP1/2/3., +8:u03:list, +9:u02:probe, +9:u04:three, +8:u11:list, +13:u00:LSP1/2/3., +8:u02:list, +9:u01:probe, +9:u03:three, +8:u10:list, +8:u01:list, +13:u08:SR-lists,, +9:u00:probe, +9:u02:three, +8:u00:list, +9:u01:three, +13:u07:SR-lists,, +9:u00:three, +13:u06:SR-lists,, +13:u14:sr-lists,, +13:u05:SR-lists,, +9:u08:loose, +13:u13:sr-lists,, +13:u04:SR-lists,, +14:u08:operations, +9:u07:loose, +13:u12:sr-lists,, +6:u21:SR, +7:u22:SR-, +8:u23:SR-l, +13:u03:SR-lists,, +13:u08:scenario., +9:u06:loose, +13:u11:sr-lists,, +13:u02:SR-lists,, +14:u07:operations, +9:u05:loose, +13:u10:sr-lists,, +13:u01:SR-lists,, +14:u06:operations, +13:u07:scenario., +8:u08:TBD., +9:u04:loose, +14:u14:operations, +13:u00:SR-lists,, +14:u05:operations, +13:u06:scenario., +9:u03:loose, +14:u13:operations, +13:u14:scenario., +14:u04:operations, +13:u05:scenario., +8:u07:TBD., +9:u02:loose, +14:u12:operations, +13:u13:scenario., +6:u21:op, +7:u22:ope, +8:u23:oper, +14:u03:operations, +13:u04:scenario., +8:u06:TBD., +9:u01:loose, +14:u11:operations, +13:u12:scenario., +8:u14:tbd., +6:u21:sc, +7:u22:sce, +8:u23:scen, +14:u02:operations, +13:u03:scenario., +8:u05:TBD., +9:u00:loose, +14:u10:operations, +13:u11:scenario., +8:u13:tbd., +14:u01:operations, +13:u02:scenario., +8:u04:TBD., +12:u08:devices), +14:u08:Multi-path, +13:u10:scenario., +8:u12:tbd., +6:u21:TB, +7:u22:TBD, +8:u23:TBD., +8:uI2:../-, +14:u00:operations, +13:u01:scenario., +8:u03:TBD., +14:u07:Multi-path, +8:u11:tbd., +8:uI1:../-, +13:u00:scenario., +8:u02:TBD., +12:u07:devices), +10:u08:mostly, +14:u06:Multi-path, +8:u10:tbd., +8:uI0:../-, +8:u01:TBD., +12:u06:devices), +14:u05:Multi-path, +12:u14:devices), +7:uI2:.-(, +8:u00:TBD., +12:u05:devices), +10:u07:mostly, +13:u08:devices),, +14:u04:Multi-path, +12:u13:devices), +7:uI1:.-(, +5:uI2:), +12:u04:devices), +10:u06:mostly, +14:u03:Multi-path, +12:u12:devices), +10:u14:mostly, +7:u22:dev, +8:u23:devi, +7:uI0:.-(, +5:uI1:), +8:uI2:.(),, +12:u03:devices), +10:u05:mostly, +13:u07:devices),, +14:u02:Multi-path, +12:u11:devices), +10:u13:mostly, +5:uI0:), +8:uI1:.(),, +8:uI2:-..., +12:u02:devices), +10:u04:mostly, +13:u06:devices),, +14:u01:Multi-path, +12:u10:devices), +10:u12:mostly, +13:u14:devices),, +6:u21:mo, +7:u22:mos, +8:u23:most, +8:uI0:.(),, +8:uI1:-..., +6:uI2:.(, +12:u01:devices), +10:u03:mostly, +13:u05:devices),, +14:u00:Multi-path, +10:u11:mostly, +13:u13:devices),, +5:u14:., +8:uI0:-..., +6:uI1:.(, +9:uI2:),-.., +12:u00:devices), +10:u02:mostly, +13:u04:devices),, +10:u10:mostly, +13:u12:devices),, +5:u13:., +6:uI0:.(, +9:uI1:),-.., +10:u01:mostly, +13:u03:devices),, +13:u11:devices),, +5:u12:., +5:u20:., +5:u21:., +5:u22:., +5:u23:., +9:uI0:),-.., +10:u00:mostly, +13:u02:devices),, +13:u10:devices),, +5:u11:., +13:u01:devices),, +8:u08:Very, +5:u10:., +13:u00:devices),, +12:u08:valuable, +8:u07:Very, +12:u07:valuable, +9:u08:Bruno, +8:u06:Very, +9:u08:prove, +12:u06:valuable, +9:u07:Bruno, +14:u08:commercial, +8:u14:very, +8:u05:Very, +12:u05:valuable, +9:u06:Bruno, +14:u07:commercial, +8:u13:very, +8:u04:Very, +9:u07:prove, +12:u04:valuable, +9:u05:Bruno, +14:u06:commercial, +8:u12:very, +5:u20:V, +6:u21:Ve, +7:u22:Ver, +8:u23:Very, +8:u03:Very, +9:u06:prove, +12:u03:valuable, +9:u04:Bruno, +14:u05:commercial, +8:u11:very, +9:u14:prove, +8:u02:Very, +9:u05:prove, +12:u02:valuable, +9:u03:Bruno, +14:u04:commercial, +8:u10:very, +9:u13:prove, +8:u01:Very, +9:u04:prove, +12:u01:valuable, +9:u02:Bruno, +14:u03:commercial, +9:u12:prove, +8:u00:Very, +9:u03:prove, +12:u00:valuable, +9:u01:Bruno, +14:u02:commercial, +9:u11:prove, +9:u02:prove, +9:u00:Bruno, +14:u01:commercial, +9:u10:prove, +9:u01:prove, +14:u00:commercial, +9:u00:prove, +46:u08:<https://www.rfc-editor.org/info/rfc2119>., +13:u08:[RFC2629], +46:u07:<https://www.rfc-editor.org/info/rfc2119>., +9:u08:Rose,, +46:u06:<https://www.rfc-editor.org/info/rfc2119>., +13:u07:[RFC2629], +46:u08:<https://www.rfc-editor.org/info/rfc2629>., +9:u07:Rose,, +21:u08:10.17487/RFC2629,, +46:u14:<https://www.rfc-editor.org/info/rfc2119>., +8:uI2:./,,, +46:u05:<https://www.rfc-editor.org/info/rfc2119>., +13:u06:[RFC2629], +9:u06:Rose,, +21:u07:10.17487/RFC2629,, +46:u13:<https://www.rfc-editor.org/info/rfc2119>., +13:u14:[rfc2629], +8:uI1:./,,, +46:u04:<https://www.rfc-editor.org/info/rfc2119>., +13:u05:[RFC2629], +46:u07:<https://www.rfc-editor.org/info/rfc2629>., +30:u08:[I-D.dang-ippm-congestion], +9:u05:Rose,, +21:u06:10.17487/RFC2629,, +46:u12:<https://www.rfc-editor.org/info/rfc2119>., +13:u13:[rfc2629], +8:uI0:./,,, +14:uI2:[],.,"-",,, +46:u03:<https://www.rfc-editor.org/info/rfc2119>., +13:u04:[RFC2629], +46:u06:<https://www.rfc-editor.org/info/rfc2629>., +9:u08:Dang,, +9:u04:Rose,, +21:u05:10.17487/RFC2629,, +46:u11:<https://www.rfc-editor.org/info/rfc2119>., +13:u12:[rfc2629], +46:u14:<https://www.rfc-editor.org/info/rfc2629>., +14:uI1:[],.,"-",,, +46:u02:<https://www.rfc-editor.org/info/rfc2119>., +13:u03:[RFC2629], +46:u05:<https://www.rfc-editor.org/info/rfc2629>., +30:u07:[I-D.dang-ippm-congestion], +10:u08:IPPM",, +9:u03:Rose,, +21:u04:10.17487/RFC2629,, +6:u08:J., +46:u10:<https://www.rfc-editor.org/info/rfc2119>., +13:u11:[rfc2629], +46:u13:<https://www.rfc-editor.org/info/rfc2629>., +14:uI0:[],.,"-",,, +46:u01:<https://www.rfc-editor.org/info/rfc2119>., +13:u02:[RFC2629], +46:u04:<https://www.rfc-editor.org/info/rfc2629>., +30:u06:[I-D.dang-ippm-congestion], +9:u07:Dang,, +9:u02:Rose,, +21:u03:10.17487/RFC2629,, +6:u07:J., +33:u08:draft-dang-ippm-congestion-01, +13:u10:[rfc2629], +46:u12:<https://www.rfc-editor.org/info/rfc2629>., +30:u14:[i-d.dang-ippm-congestion], +46:u00:<https://www.rfc-editor.org/info/rfc2119>., +13:u01:[RFC2629], +46:u03:<https://www.rfc-editor.org/info/rfc2629>., +30:u05:[I-D.dang-ippm-congestion], +9:u06:Dang,, +10:u07:IPPM",, +45:u08:[I-D.dang-ippm-multiple-path-measurement], +9:u01:Rose,, +21:u02:10.17487/RFC2629,, +33:u07:draft-dang-ippm-congestion-01, +9:u08:2019., +46:u11:<https://www.rfc-editor.org/info/rfc2629>., +30:u13:[i-d.dang-ippm-congestion], +9:u14:dang,, +13:u00:[RFC2629], +46:u02:<https://www.rfc-editor.org/info/rfc2629>., +30:u04:[I-D.dang-ippm-congestion], +9:u05:Dang,, +10:u06:IPPM",, +9:u00:Rose,, +21:u01:10.17487/RFC2629,, +33:u06:draft-dang-ippm-congestion-01, +9:u07:2019., +46:u10:<https://www.rfc-editor.org/info/rfc2629>., +30:u12:[i-d.dang-ippm-congestion], +9:u13:dang,, +10:u14:ippm",, +10:uI2:,..,"-, +46:u01:<https://www.rfc-editor.org/info/rfc2629>., +30:u03:[I-D.dang-ippm-congestion], +9:u04:Dang,, +10:u05:IPPM",, +45:u07:[I-D.dang-ippm-multiple-path-measurement], +21:u00:10.17487/RFC2629,, +33:u05:draft-dang-ippm-congestion-01, +9:u06:2019., +30:u11:[i-d.dang-ippm-congestion], +9:u12:dang,, +10:u13:ippm",, +6:u21:Da, +7:u22:Dan, +8:u23:Dang, +10:uI1:,..,"-, +13:uI2:",----(),, +46:u00:<https://www.rfc-editor.org/info/rfc2629>., +30:u02:[I-D.dang-ippm-congestion], +9:u03:Dang,, +10:u04:IPPM",, +45:u06:[I-D.dang-ippm-multiple-path-measurement], +18:u08:measurement-01, +33:u04:draft-dang-ippm-congestion-01, +9:u05:2019., +30:u10:[i-d.dang-ippm-congestion], +9:u11:dang,, +10:u12:ippm",, +45:u14:[i-d.dang-ippm-multiple-path-measurement], +6:u21:IP, +7:u22:IPP, +8:u23:IPPM, +10:uI0:,..,"-, +13:uI1:",----(),, +30:u01:[I-D.dang-ippm-congestion], +9:u02:Dang,, +10:u03:IPPM",, +45:u05:[I-D.dang-ippm-multiple-path-measurement], +33:u03:draft-dang-ippm-congestion-01, +9:u04:2019., +9:u10:dang,, +10:u11:ippm",, +45:u13:[i-d.dang-ippm-multiple-path-measurement], +13:uI0:",----(),, +30:u00:[I-D.dang-ippm-congestion], +9:u01:Dang,, +10:u02:IPPM",, +45:u04:[I-D.dang-ippm-multiple-path-measurement], +18:u07:measurement-01, +8:u08:Bing, +33:u02:draft-dang-ippm-congestion-01, +9:u03:2019., +10:u10:ippm",, +45:u12:[i-d.dang-ippm-multiple-path-measurement], +9:u00:Dang,, +10:u01:IPPM",, +45:u03:[I-D.dang-ippm-multiple-path-measurement], +18:u06:measurement-01, +33:u01:draft-dang-ippm-congestion-01, +9:u02:2019., +45:u11:[i-d.dang-ippm-multiple-path-measurement], +18:u14:measurement-01, +11:uI2:",-----, +10:u00:IPPM",, +45:u02:[I-D.dang-ippm-multiple-path-measurement], +18:u05:measurement-01, +8:u07:Bing, +8:u08:Q14,, +33:u00:draft-dang-ippm-congestion-01, +9:u01:2019., +45:u10:[i-d.dang-ippm-multiple-path-measurement], +18:u13:measurement-01, +11:uI1:",-----, +45:u01:[I-D.dang-ippm-multiple-path-measurement], +18:u04:measurement-01, +8:u06:Bing, +10:u08:No.156, +9:u00:2019., +18:u12:measurement-01, +8:u14:bing, +11:uI0:",-----, +45:u00:[I-D.dang-ippm-multiple-path-measurement], +18:u03:measurement-01, +8:u05:Bing, +8:u07:Q14,, +12:u08:Hai-Dian, +11:u08:Beiqing, +18:u11:measurement-01, +8:u13:bing, +18:u02:measurement-01, +8:u04:Bing, +8:u06:Q14,, +10:u07:No.156, +8:u08:P.R., +11:u07:Beiqing, +13:u08:District,, +18:u10:measurement-01, +8:u12:bing, +8:u14:q14,, +6:u21:Bi, +7:u22:Bin, +8:u23:Bing, +18:u01:measurement-01, +8:u03:Bing, +8:u05:Q14,, +10:u06:No.156, +12:u07:Hai-Dian, +11:u06:Beiqing, +13:u07:District,, +9:u08:China, +8:u11:bing, +8:u13:q14,, +10:u14:no.156, +18:u00:measurement-01, +8:u02:Bing, +8:u04:Q14,, +10:u05:No.156, +12:u06:Hai-Dian, +8:u07:P.R., +11:u05:Beiqing, +13:u06:District,, +9:u07:China, +26:u08:leo.liubing@huawei.com, +8:u10:bing, +8:u12:q14,, +10:u13:no.156, +12:u14:hai-dian, +5:u20:Q, +6:u21:Q1, +7:u22:Q14, +8:u23:Q14,, +8:u01:Bing, +8:u03:Q14,, +10:u04:No.156, +12:u05:Hai-Dian, +8:u06:P.R., +11:u04:Beiqing, +13:u05:District,, +9:u06:China, +26:u07:leo.liubing@huawei.com, +8:u11:q14,, +10:u12:no.156, +12:u13:hai-dian, +8:u14:p.r., +7:u22:No., +8:u23:No.1, +8:u00:Bing, +8:u02:Q14,, +10:u03:No.156, +12:u04:Hai-Dian, +8:u05:P.R., +11:u03:Beiqing, +13:u04:District,, +9:u05:China, +26:u06:leo.liubing@huawei.com, +8:u10:q14,, +10:u11:no.156, +12:u12:hai-dian, +8:u13:p.r., +6:u21:Ha, +7:u22:Hai, +8:u23:Hai-, +8:u01:Q14,, +10:u02:No.156, +12:u03:Hai-Dian, +8:u04:P.R., +11:u02:Beiqing, +13:u03:District,, +9:u04:China, +26:u05:leo.liubing@huawei.com, +10:u10:no.156, +12:u11:hai-dian, +8:u12:p.r., +6:u21:P., +7:u22:P.R, +8:u23:P.R., +8:u00:Q14,, +10:u01:No.156, +12:u02:Hai-Dian, +8:u03:P.R., +11:u01:Beiqing, +13:u02:District,, +9:u03:China, +26:u04:leo.liubing@huawei.com, +12:u10:hai-dian, +8:u11:p.r., +10:u00:No.156, +12:u01:Hai-Dian, +8:u02:P.R., +11:u00:Beiqing, +13:u01:District,, +9:u02:China, +26:u03:leo.liubing@huawei.com, +8:u10:p.r., +12:u00:Hai-Dian, +8:u01:P.R., +13:u00:District,, +9:u01:China, +26:u02:leo.liubing@huawei.com, +8:u00:P.R., +9:u00:China, +26:u01:leo.liubing@huawei.com, +13:u08:SimulaMet, +13:u06:Dreibholz, +13:u07:SimulaMet, +6:u08:X., +13:u05:Dreibholz, +13:u06:SimulaMet, +13:u04:Dreibholz, +8:u08:Zhou, +13:u14:simulamet, +13:u05:SimulaMet, +6:u07:X., +10:u08:Hainan, +13:u03:Dreibholz, +8:u07:Zhou, +13:u13:simulamet, +13:u04:SimulaMet, +6:u06:X., +13:u08:September, +13:u02:Dreibholz, +8:u06:Zhou, +14:u08:University, +13:u12:simulamet, +6:u14:x., +7:u22:Sim, +8:u23:Simu, +13:u03:SimulaMet, +6:u05:X., +10:u07:Hainan, +12:u08:Takeover, +13:u01:Dreibholz, +8:u05:Zhou, +14:u07:University, +7:u08:10,, +13:u11:simulamet, +6:u13:x., +13:u02:SimulaMet, +6:u04:X., +10:u06:Hainan, +13:u07:September, +45:u08:draft-dreibholz-rserpool-enrp-takeover-22, +13:u00:Dreibholz, +8:u04:Zhou, +14:u06:University, +7:u07:10,, +14:u08:Suggestion, +13:u10:simulamet, +6:u12:x., +10:u14:hainan, +5:u20:X, +6:u21:X., +6:u22:X., +6:u23:X., +13:u01:SimulaMet, +6:u03:X., +10:u05:Hainan, +13:u06:September, +12:u07:Takeover, +8:u03:Zhou, +14:u05:University, +7:u06:10,, +14:u07:Suggestion, +6:u11:x., +10:u13:hainan, +13:u14:september, +13:u00:SimulaMet, +6:u02:X., +10:u04:Hainan, +13:u05:September, +12:u06:Takeover, +45:u07:draft-dreibholz-rserpool-enrp-takeover-22, +8:u02:Zhou, +14:u04:University, +7:u05:10,, +14:u06:Suggestion, +6:u10:x., +10:u12:hainan, +13:u13:september, +12:u14:takeover, +8:u23:Hain, +6:u01:X., +10:u03:Hainan, +13:u04:September, +12:u05:Takeover, +45:u06:draft-dreibholz-rserpool-enrp-takeover-22, +22:u08:ENRP_HANDLE_UPDATE, +8:u01:Zhou, +14:u03:University, +7:u04:10,, +14:u05:Suggestion, +10:u11:hainan, +13:u12:september, +12:u13:takeover, +45:u14:draft-dreibholz-rserpool-enrp-takeover-22, +7:u22:Sep, +8:u23:Sept, +6:u00:X., +10:u02:Hainan, +13:u03:September, +12:u04:Takeover, +45:u05:draft-dreibholz-rserpool-enrp-takeover-22, +8:u00:Zhou, +14:u02:University, +7:u03:10,, +14:u04:Suggestion, +11:u08:message, +10:u10:hainan, +13:u11:september, +12:u12:takeover, +45:u13:draft-dreibholz-rserpool-enrp-takeover-22, +7:u22:Tak, +8:u23:Take, +9:uI2:-----, +10:u01:Hainan, +13:u02:September, +12:u03:Takeover, +45:u04:draft-dreibholz-rserpool-enrp-takeover-22, +22:u07:ENRP_HANDLE_UPDATE, +14:u01:University, +7:u02:10,, +14:u03:Suggestion, +11:u07:message, +13:u10:september, +12:u11:takeover, +45:u12:draft-dreibholz-rserpool-enrp-takeover-22, +9:uI1:-----, +10:u00:Hainan, +13:u01:September, +12:u02:Takeover, +45:u03:draft-dreibholz-rserpool-enrp-takeover-22, +22:u06:ENRP_HANDLE_UPDATE, +14:u00:University, +7:u01:10,, +14:u02:Suggestion, +11:u06:message, +12:u10:takeover, +45:u11:draft-dreibholz-rserpool-enrp-takeover-22, +22:u14:enrp_handle_update, +9:uI0:-----, +13:u00:September, +12:u01:Takeover, +45:u02:draft-dreibholz-rserpool-enrp-takeover-22, +22:u05:ENRP_HANDLE_UPDATE, +7:u00:10,, +14:u01:Suggestion, +11:u05:message, +45:u10:draft-dreibholz-rserpool-enrp-takeover-22, +22:u13:enrp_handle_update, +12:u00:Takeover, +45:u01:draft-dreibholz-rserpool-enrp-takeover-22, +22:u04:ENRP_HANDLE_UPDATE, +14:u00:Suggestion, +11:u04:message, +22:u12:enrp_handle_update, +6:u21:EN, +7:u22:ENR, +8:u23:ENRP, +45:u00:draft-dreibholz-rserpool-enrp-takeover-22, +22:u03:ENRP_HANDLE_UPDATE, +11:u03:message, +22:u11:enrp_handle_update, +22:u02:ENRP_HANDLE_UPDATE, +11:u02:message, +22:u10:enrp_handle_update, +22:u01:ENRP_HANDLE_UPDATE, +11:u01:message, +22:u00:ENRP_HANDLE_UPDATE, +11:u00:message, +13:u08:Dreibholz, +13:u07:Dreibholz, +13:u14:dreibholz, +13:u13:dreibholz, +13:u12:dreibholz, +7:u22:Dre, +8:u23:Drei, +13:u11:dreibholz, +13:u10:dreibholz, +8:u08:1.1., +9:u08:Scope, +8:u07:1.1., +8:u08:1.2., +9:u07:Scope, +8:u06:1.1., +9:u06:Scope, +15:u08:Terminology, +8:u14:1.1., +8:u05:1.1., +8:u07:1.2., +8:u08:1.3., +9:u05:Scope, +15:u07:Terminology, +8:u13:1.1., +32:uI2:............................, +6:uI2:28, +8:u04:1.1., +8:u06:1.2., +9:u04:Scope, +15:u06:Terminology, +8:u12:1.1., +8:u14:1.2., +7:u22:1.1, +8:u23:1.1., +32:uI1:............................, +6:uI1:28, +8:u03:1.1., +8:u05:1.2., +8:u07:1.3., +9:u03:Scope, +15:u05:Terminology, +8:u11:1.1., +8:u13:1.2., +32:uI0:............................, +6:uI0:28, +8:u02:1.1., +8:u04:1.2., +8:u06:1.3., +9:u02:Scope, +15:u04:Terminology, +8:u10:1.1., +8:u12:1.2., +8:u14:1.3., +7:u22:1.2, +8:u23:1.2., +8:u01:1.1., +8:u03:1.2., +8:u05:1.3., +9:u01:Scope, +15:u03:Terminology, +8:u11:1.2., +8:u13:1.3., +8:u00:1.1., +8:u02:1.2., +8:u04:1.3., +9:u00:Scope, +15:u02:Terminology, +14:u08:Definition, +8:u10:1.2., +8:u12:1.3., +7:u22:1.3, +8:u23:1.3., +8:u01:1.2., +8:u03:1.3., +15:u01:Terminology, +14:u07:Definition, +8:u11:1.3., +8:u00:1.2., +8:u02:1.3., +15:u00:Terminology, +14:u06:Definition, +8:u10:1.3., +8:u01:1.3., +14:u05:Definition, +8:u00:1.3., +14:u04:Definition, +11:u08:Testbed, +14:u03:Definition, +11:u07:Testbed, +14:u02:Definition, +11:u06:Testbed, +14:u01:Definition, +11:u05:Testbed, +14:u00:Definition, +11:u04:Testbed, +11:u03:Testbed, +11:u02:Testbed, +11:u01:Testbed, +11:u00:Testbed, +8:u08:7.2., +8:u07:7.2., +8:u06:7.2., +8:u14:7.2., +8:u05:7.2., +8:u13:7.2., +8:u04:7.2., +12:u08:Reliable, +8:u12:7.2., +7:u22:7.2, +8:u23:7.2., +8:u03:7.2., +10:u08:Server, +8:u11:7.2., +8:u02:7.2., +12:u07:Reliable, +10:u07:Server, +13:u08:providing, +8:u10:7.2., +8:u01:7.2., +12:u06:Reliable, +13:u08:Registrar, +10:u06:Server, +13:u07:providing, +12:u14:reliable, +8:u00:7.2., +12:u05:Reliable, +9:u08:point, +10:u05:Server, +13:u06:providing, +9:u08:(PR)., +12:u13:reliable, +12:u04:Reliable, +13:u07:Registrar, +11:u08:denoted, +10:u04:Server, +13:u05:providing, +9:u07:(PR)., +12:u12:reliable, +8:u14:used, +7:u22:Rel, +8:u23:Reli, +12:u03:Reliable, +13:u06:Registrar, +9:u07:point, +16:u08:registration, +10:u03:Server, +13:u04:providing, +9:u06:(PR)., +12:u11:reliable, +8:u13:used, +13:u14:registrar, +12:u02:Reliable, +13:u05:Registrar, +9:u06:point, +11:u07:denoted, +8:u08:ENRP, +10:u02:Server, +13:u03:providing, +9:u05:(PR)., +8:u08:into, +12:u10:reliable, +8:u12:used, +13:u13:registrar, +9:u14:point, +8:u23:used, +12:u01:Reliable, +13:u04:Registrar, +9:u05:point, +11:u06:denoted, +16:u07:registration, +15:u08:responsible, +10:u01:Server, +13:u02:providing, +9:u04:(PR)., +8:u07:into, +11:u08:Server,, +8:u11:used, +13:u12:registrar, +9:u13:point, +11:u14:denoted, +7:uI2:,.,, +12:u00:Reliable, +13:u03:Registrar, +9:u04:point, +11:u05:denoted, +16:u06:registration, +8:u07:ENRP, +11:u08:servers, +10:u00:Server, +13:u01:providing, +9:u03:(PR)., +8:u06:into, +11:u07:Server,, +8:u10:used, +13:u11:registrar, +9:u12:point, +11:u13:denoted, +16:u14:registration, +7:u22:poi, +8:u23:poin, +7:uI1:,.,, +13:u02:Registrar, +9:u03:point, +11:u04:denoted, +16:u05:registration, +8:u06:ENRP, +15:u07:responsible, +13:u00:providing, +9:u02:(PR)., +8:u05:into, +11:u06:Server,, +13:u10:registrar, +9:u11:point, +11:u12:denoted, +16:u13:registration, +8:u14:enrp, +7:u22:den, +8:u23:deno, +7:uI0:,.,, +13:u01:Registrar, +9:u02:point, +11:u03:denoted, +16:u04:registration, +8:u05:ENRP, +15:u06:responsible, +11:u07:servers, +9:u01:(PR)., +8:u04:into, +11:u05:Server,, +6:u08:PE, +9:u10:point, +11:u11:denoted, +16:u12:registration, +8:u13:enrp, +15:u14:responsible, +10:uI2:,(-),., +13:u00:Registrar, +9:u01:point, +11:u02:denoted, +16:u03:registration, +8:u04:ENRP, +15:u05:responsible, +11:u06:servers, +9:u00:(PR)., +8:u03:into, +11:u04:Server,, +6:u07:PE, +9:u08:shown, +11:u10:denoted, +16:u11:registration, +8:u12:enrp, +15:u13:responsible, +11:u14:servers, +10:uI1:,(-),., +9:u00:point, +11:u01:denoted, +16:u02:registration, +8:u03:ENRP, +15:u04:responsible, +11:u05:servers, +8:u02:into, +11:u03:Server,, +6:u06:PE, +9:u07:shown, +10:u08:server, +16:u10:registration, +8:u11:enrp, +15:u12:responsible, +11:u13:servers, +8:u23:resp, +10:uI0:,(-),., +11:u00:denoted, +16:u01:registration, +8:u02:ENRP, +15:u03:responsible, +11:u04:servers, +8:u01:into, +11:u02:Server,, +6:u05:PE, +9:u06:shown, +10:u07:server, +10:u08:subset, +8:u10:enrp, +15:u11:responsible, +11:u12:servers, +8:uI2:(-)., +16:u00:registration, +8:u01:ENRP, +15:u02:responsible, +11:u03:servers, +12:u08:reliable, +8:u00:into, +11:u01:Server,, +6:u04:PE, +9:u05:shown, +10:u06:server, +10:u07:subset, +13:u08:problems), +15:u10:responsible, +11:u11:servers, +8:uI1:(-)., +8:u00:ENRP, +15:u01:responsible, +11:u02:servers, +11:u00:Server,, +6:u03:PE, +9:u04:shown, +10:u05:server, +10:u06:subset, +13:u07:problems), +11:u10:servers, +8:uI0:(-)., +15:u00:responsible, +11:u01:servers, +12:u07:reliable, +6:u02:PE, +9:u03:shown, +10:u05:subset, +13:u06:problems), +11:u00:servers, +12:u06:reliable, +6:u01:PE, +9:u02:shown, +10:u04:subset, +13:u05:problems), +7:uI2:).,, +12:u05:reliable, +9:u08:large, +6:u00:PE, +9:u01:shown, +10:u03:subset, +13:u04:problems), +6:u08:by, +7:u14:all, +7:uI1:).,, +12:u04:reliable, +9:u00:shown, +10:u02:subset, +13:u03:problems), +6:u07:by, +12:u08:RSerPool, +7:u13:all, +7:u22:rel, +8:u23:reli, +7:uI0:).,, +12:u03:reliable, +9:u07:large, +10:u01:subset, +13:u02:problems), +6:u06:by, +12:u07:RSerPool, +7:u12:all, +9:u14:shown, +7:u23:all, +6:uI2:-(, +12:u02:reliable, +9:u06:large, +10:u00:subset, +13:u01:problems), +6:u05:by, +12:u06:RSerPool, +11:u08:network, +7:u11:all, +9:u13:shown, +9:u14:large, +6:uI1:-(, +8:uI2:[]),, +12:u01:reliable, +9:u05:large, +13:u00:problems), +6:u04:by, +12:u05:RSerPool, +11:u07:network, +7:u10:all, +9:u12:shown, +9:u13:large, +6:u21:sh, +7:u22:sho, +8:u23:show, +6:uI0:-(, +8:uI1:[]),, +12:u00:reliable, +9:u04:large, +6:u03:by, +12:u04:RSerPool, +11:u06:network, +9:u11:shown, +9:u12:large, +6:u21:la, +7:u22:lar, +8:u23:larg, +8:uI0:[]),, +9:u03:large, +6:u02:by, +12:u03:RSerPool, +11:u05:network, +9:u10:shown, +9:u11:large, +9:u02:large, +6:u01:by, +12:u02:RSerPool, +11:u04:network, +9:u10:large, +9:u01:large, +6:u00:by, +12:u01:RSerPool, +11:u03:network, +9:u00:large, +12:u00:RSerPool, +11:u02:network, +11:u01:network, +11:u00:network, +12:u08:message., +12:u07:message., +12:u06:message., +9:u08:terms, +12:u05:message., +9:u07:terms, +12:u04:message., +9:u06:terms, +12:u03:message., +9:u05:terms, +12:u02:message., +9:u04:terms, +12:u01:message., +9:u03:terms, +12:u00:message., +9:u02:terms, +9:u01:terms, +9:u00:terms, +9:u08:shows, +5:u08:0, +9:u07:shows, +11:u14:message, +9:u06:shows, +5:u07:0, +11:u13:message, +9:u14:shows, +9:u05:shows, +5:u06:0, +11:u12:message, +9:u13:shows, +5:u14:0, +7:u22:mes, +8:u23:mess, +9:u04:shows, +5:u05:0, +11:u11:message, +9:u12:shows, +5:u13:0, +5:u14:1, +9:u03:shows, +5:u04:0, +69:u08:+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+, +11:u10:message, +9:u11:shows, +5:u12:0, +5:u13:1, +5:u21:0, +5:u22:0, +5:u23:0, +9:u02:shows, +5:u03:0, +9:u10:shows, +5:u11:0, +5:u12:1, +5:u21:1, +5:u22:1, +5:u23:1, +9:u01:shows, +5:u02:0, +69:u07:+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+, +8:u08:Type, +5:u10:0, +5:u11:1, +9:u00:shows, +5:u01:0, +69:u06:+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+, +11:u08:Message, +5:u10:1, +69:u14:+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+, +5:u00:0, +69:u05:+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+, +8:u07:Type, +10:u08:Length, +69:u13:+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+, +36:uI2:--------------------------------, +6:uI2:32, +69:u04:+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+, +8:u06:Type, +11:u07:Message, +10:u07:Length, +69:u12:+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+, +8:u14:type, +7:u22:+-+, +8:u23:+-+-, +36:uI1:--------------------------------, +6:uI1:32, +69:u03:+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+, +8:u05:Type, +11:u06:Message, +10:u06:Length, +69:u11:+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+, +8:u13:type, +36:uI0:--------------------------------, +6:uI0:32, +69:u02:+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+, +8:u04:Type, +11:u05:Message, +11:u08:Sending, +10:u05:Length, +69:u10:+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+, +8:u12:type, +6:u21:Ty, +7:u22:Typ, +8:u23:Type, +69:u01:+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+, +8:u03:Type, +11:u04:Message, +10:u04:Length, +12:u08:Server's, +8:u11:type, +7:u22:Mes, +8:u23:Mess, +69:u00:+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+, +8:u02:Type, +11:u03:Message, +11:u07:Sending, +10:u03:Length, +12:u07:Server's, +8:u10:type, +8:u01:Type, +11:u02:Message, +11:u06:Sending, +10:u02:Length, +12:u06:Server's, +11:u14:sending, +8:u00:Type, +11:u01:Message, +11:u05:Sending, +13:u08:Receiving, +10:u01:Length, +12:u05:Server's, +11:u13:sending, +11:u00:Message, +11:u04:Sending, +10:u00:Length, +12:u04:Server's, +11:u12:sending, +7:u22:Sen, +8:u23:Send, +11:u03:Sending, +13:u07:Receiving, +12:u03:Server's, +11:u11:sending, +11:u02:Sending, +13:u06:Receiving, +12:u02:Server's, +11:u10:sending, +13:u14:receiving, +11:u01:Sending, +13:u05:Receiving, +12:u01:Server's, +13:u13:receiving, +11:u00:Sending, +13:u04:Receiving, +12:u00:Server's, +10:u08:Action, +13:u12:receiving, +7:u22:Rec, +8:u23:Rece, +13:u03:Receiving, +14:u08:(reserved), +10:u07:Action, +13:u11:receiving, +13:u02:Receiving, +10:u06:Action, +13:u10:receiving, +13:u01:Receiving, +14:u07:(reserved), +10:u05:Action, +13:u00:Receiving, +14:u06:(reserved), +5:u08::, +10:u04:Action, +14:u14:(reserved), +14:u05:(reserved), +8:u08:Pool, +10:u03:Action, +14:u13:(reserved), +14:u04:(reserved), +5:u07::, +10:u02:Action, +10:u08:Handle, +14:u12:(reserved), +6:u21:(r, +7:u22:(re, +8:u23:(res, +14:u03:(reserved), +5:u06::, +8:u07:Pool, +10:u01:Action, +10:u07:Handle, +14:u11:(reserved), +5:u14::, +14:u02:(reserved), +5:u05::, +8:u06:Pool, +10:u00:Action, +10:u06:Handle, +14:u10:(reserved), +5:u13::, +8:u14:pool, +14:u01:(reserved), +5:u04::, +8:u05:Pool, +10:u05:Handle, +5:u12::, +8:u13:pool, +5:u20::, +5:u21::, +5:u22::, +5:u23::, +14:u00:(reserved), +5:u03::, +8:u04:Pool, +10:u04:Handle, +11:u08:Element, +5:u11::, +8:u12:pool, +6:u21:Po, +7:u22:Poo, +8:u23:Pool, +5:u02::, +8:u03:Pool, +10:u03:Handle, +11:u07:Element, +5:u10::, +8:u11:pool, +5:u01::, +8:u02:Pool, +5:u08:T, +10:u02:Handle, +11:u06:Element, +8:u10:pool, +5:u00::, +8:u01:Pool, +10:u01:Handle, +11:u05:Element, +9:u08:flag:, +8:u00:Pool, +5:u07:T, +10:u00:Handle, +11:u04:Element, +9:u07:flag:, +8:u08:set,, +5:u06:T, +15:u08:RECOMMENDED, +11:u03:Element, +9:u06:flag:, +8:u07:set,, +5:u14:t, +5:u05:T, +11:u02:Element, +9:u05:flag:, +8:u06:set,, +5:u13:t, +5:u04:T, +15:u07:RECOMMENDED, +11:u01:Element, +9:u04:flag:, +8:u05:set,, +5:u12:t, +13:u14:specified, +5:u21:T, +5:u22:T, +5:u23:T, +5:u03:T, +15:u06:RECOMMENDED, +11:u00:Element, +9:u03:flag:, +8:u04:set,, +5:u11:t, +13:u13:specified, +15:u14:recommended, +5:u02:T, +15:u05:RECOMMENDED, +9:u02:flag:, +8:u03:set,, +5:u10:t, +13:u12:specified, +15:u13:recommended, +5:u01:T, +15:u04:RECOMMENDED, +9:u01:flag:, +8:u02:set,, +13:u11:specified, +15:u12:recommended, +6:u21:RE, +7:u22:REC, +8:u23:RECO, +5:u00:T, +15:u03:RECOMMENDED, +9:u00:flag:, +8:u01:set,, +13:u10:specified, +15:u11:recommended, +15:u02:RECOMMENDED, +8:u00:set,, +15:u10:recommended, +15:u01:RECOMMENDED, +15:u00:RECOMMENDED, +23:u08:[RSerPool-Website]., +14:u08:[RFC5351],, +23:u07:[RSerPool-Website]., +14:u08:[RFC5352],, +23:u06:[RSerPool-Website]., +14:u07:[RFC5351],, +34:u08:[I-D.dreibholz-rserpool-delay], +14:u07:[RFC5352],, +11:u08:options, +23:u14:[rserpool-website]., +23:u05:[RSerPool-Website]., +14:u06:[RFC5351],, +14:u06:[RFC5352],, +11:u07:options, +23:u13:[rserpool-website]., +14:u14:[rfc5351],, +8:uI2:[-]., +23:u04:[RSerPool-Website]., +14:u05:[RFC5351],, +34:u07:[I-D.dreibholz-rserpool-delay], +14:u08:[Dre2006]., +14:u05:[RFC5352],, +11:u06:options, +13:u08:document., +23:u12:[rserpool-website]., +14:u13:[rfc5351],, +7:u22:[RS, +8:u23:[RSe, +8:uI1:[-]., +17:uI2:[],[],[],[][], +23:u03:[RSerPool-Website]., +14:u04:[RFC5351],, +34:u06:[I-D.dreibholz-rserpool-delay], +14:u04:[RFC5352],, +11:u05:options, +13:u07:document., +23:u11:[rserpool-website]., +14:u12:[rfc5351],, +34:u14:[i-d.dreibholz-rserpool-delay], +8:uI0:[-]., +17:uI1:[],[],[],[][], +23:u02:[RSerPool-Website]., +14:u03:[RFC5351],, +34:u05:[I-D.dreibholz-rserpool-delay], +14:u07:[Dre2006]., +14:u03:[RFC5352],, +11:u04:options, +13:u06:document., +23:u10:[rserpool-website]., +14:u11:[rfc5351],, +34:u13:[i-d.dreibholz-rserpool-delay], +17:uI0:[],[],[],[][], +23:u01:[RSerPool-Website]., +14:u02:[RFC5351],, +34:u04:[I-D.dreibholz-rserpool-delay], +14:u06:[Dre2006]., +14:u02:[RFC5352],, +11:u03:options, +13:u05:document., +15:u08:large-scale, +14:u10:[rfc5351],, +34:u12:[i-d.dreibholz-rserpool-delay], +14:u14:[dre2006]., +23:u00:[RSerPool-Website]., +14:u01:[RFC5351],, +34:u03:[I-D.dreibholz-rserpool-delay], +14:u05:[Dre2006]., +11:u08:NorNet., +14:u01:[RFC5352],, +11:u02:options, +13:u04:document., +15:u07:large-scale, +34:u11:[i-d.dreibholz-rserpool-delay], +14:u13:[dre2006]., +7:u22:thi, +8:u23:this, +14:u00:[RFC5351],, +34:u02:[I-D.dreibholz-rserpool-delay], +14:u04:[Dre2006]., +14:u00:[RFC5352],, +11:u01:options, +13:u03:document., +15:u06:large-scale, +34:u10:[i-d.dreibholz-rserpool-delay], +14:u12:[dre2006]., +6:u21:[D, +7:u22:[Dr, +8:u23:[Dre, +34:u01:[I-D.dreibholz-rserpool-delay], +14:u03:[Dre2006]., +11:u07:NorNet., +21:u08:[NorNet-Website]., +11:u00:options, +13:u02:document., +15:u05:large-scale, +11:u08:further, +14:u11:[dre2006]., +34:u00:[I-D.dreibholz-rserpool-delay], +14:u02:[Dre2006]., +11:u06:NorNet., +13:u01:document., +15:u04:large-scale, +11:u07:further, +14:u10:[dre2006]., +11:u14:nornet., +14:u01:[Dre2006]., +11:u05:NorNet., +21:u07:[NorNet-Website]., +13:u00:document., +15:u03:large-scale, +11:u06:further, +11:u13:nornet., +8:u14:some, +9:uI2:.[-],, +14:u00:[Dre2006]., +11:u04:NorNet., +21:u06:[NorNet-Website]., +14:u08:[RFC5355]., +15:u02:large-scale, +11:u05:further, +11:u12:nornet., +8:u13:some, +21:u14:[nornet-website]., +8:u23:NorN, +9:uI1:.[-],, +11:u03:NorNet., +21:u05:[NorNet-Website]., +15:u01:large-scale, +11:u04:further, +11:u11:nornet., +8:u12:some, +21:u13:[nornet-website]., +6:u21:so, +7:u22:som, +8:u23:some, +9:uI0:.[-],, +11:u02:NorNet., +21:u04:[NorNet-Website]., +14:u07:[RFC5355]., +15:u00:large-scale, +11:u03:further, +11:u10:nornet., +8:u11:some, +21:u12:[nornet-website]., +6:u21:[N, +7:u22:[No, +8:u23:[Nor, +11:u01:NorNet., +21:u03:[NorNet-Website]., +14:u06:[RFC5355]., +11:u08:already, +11:u02:further, +8:u10:some, +21:u11:[nornet-website]., +14:u14:[rfc5355]., +11:u00:NorNet., +21:u02:[NorNet-Website]., +14:u05:[RFC5355]., +11:u01:further, +14:u08:identified, +21:u10:[nornet-website]., +14:u13:[rfc5355]., +21:u01:[NorNet-Website]., +14:u04:[RFC5355]., +11:u07:already, +11:u00:further, +14:u07:identified, +14:u12:[rfc5355]., +21:u00:[NorNet-Website]., +14:u03:[RFC5355]., +11:u06:already, +39:u08:[I-D.dreibholz-rserpool-asap-hropt], +14:u06:identified, +14:u11:[rfc5355]., +11:u14:already, +14:u02:[RFC5355]., +11:u05:already, +14:u08:Dreibholz,, +14:u05:identified, +14:u10:[rfc5355]., +11:u13:already, +14:u01:[RFC5355]., +11:u04:already, +39:u07:[I-D.dreibholz-rserpool-asap-hropt], +36:u08:dreibholz-rserpool-asap-hropt-24, +14:u04:identified, +7:u08:T.,, +11:u12:already, +7:u22:alr, +8:u23:alre, +14:u00:[RFC5355]., +11:u03:already, +39:u06:[I-D.dreibholz-rserpool-asap-hropt], +14:u07:Dreibholz,, +14:u03:identified, +7:u07:T.,, +11:u11:already, +39:u14:[i-d.dreibholz-rserpool-asap-hropt], +11:u02:already, +39:u05:[I-D.dreibholz-rserpool-asap-hropt], +14:u06:Dreibholz,, +36:u07:dreibholz-rserpool-asap-hropt-24, +14:u02:identified, +7:u06:T.,, +11:u10:already, +39:u13:[i-d.dreibholz-rserpool-asap-hropt], +14:u14:dreibholz,, +11:u01:already, +39:u04:[I-D.dreibholz-rserpool-asap-hropt], +14:u05:Dreibholz,, +36:u06:dreibholz-rserpool-asap-hropt-24, +14:u01:identified, +7:u05:T.,, +39:u12:[i-d.dreibholz-rserpool-asap-hropt], +14:u13:dreibholz,, +36:u14:dreibholz-rserpool-asap-hropt-24, +11:uI2:,.,"",-, +11:u00:already, +39:u03:[I-D.dreibholz-rserpool-asap-hropt], +14:u04:Dreibholz,, +36:u05:dreibholz-rserpool-asap-hropt-24, +15:u08:Measurement, +14:u00:identified, +7:u04:T.,, +39:u11:[i-d.dreibholz-rserpool-asap-hropt], +14:u12:dreibholz,, +36:u13:dreibholz-rserpool-asap-hropt-24, +9:u14:2019., +11:uI1:,.,"",-, +11:uI2:----(),, +39:u02:[I-D.dreibholz-rserpool-asap-hropt], +14:u03:Dreibholz,, +36:u04:dreibholz-rserpool-asap-hropt-24, +10:u08:Policy, +7:u03:T.,, +18:u08:Infrastructure, +39:u10:[i-d.dreibholz-rserpool-asap-hropt], +14:u11:dreibholz,, +36:u12:dreibholz-rserpool-asap-hropt-24, +9:u13:2019., +7:u22:dre, +8:u23:drei, +11:uI0:,.,"",-, +11:uI1:----(),, +39:u01:[I-D.dreibholz-rserpool-asap-hropt], +14:u02:Dreibholz,, +36:u03:dreibholz-rserpool-asap-hropt-24, +15:u07:Measurement, +21:u08:rserpool-delay-23, +7:u02:T.,, +18:u07:Infrastructure, +14:u10:dreibholz,, +36:u11:dreibholz-rserpool-asap-hropt-24, +9:u12:2019., +8:u23:2019, +11:uI0:----(),, +39:u00:[I-D.dreibholz-rserpool-asap-hropt], +14:u01:Dreibholz,, +36:u02:dreibholz-rserpool-asap-hropt-24, +15:u06:Measurement, +10:u07:Policy, +7:u01:T.,, +18:u06:Infrastructure, +36:u10:dreibholz-rserpool-asap-hropt-24, +9:u11:2019., +14:u00:Dreibholz,, +36:u01:dreibholz-rserpool-asap-hropt-24, +15:u05:Measurement, +10:u06:Policy, +21:u07:rserpool-delay-23, +7:u00:T.,, +18:u05:Infrastructure, +9:u10:2019., +10:u14:policy, +36:u00:dreibholz-rserpool-asap-hropt-24, +15:u04:Measurement, +10:u05:Policy, +21:u06:rserpool-delay-23, +18:u04:Infrastructure, +10:u13:policy, +21:u14:rserpool-delay-23, +7:u22:Mea, +8:u23:Meas, +8:uI2:",--, +15:u03:Measurement, +10:u04:Policy, +21:u05:rserpool-delay-23, +18:u03:Infrastructure, +10:u12:policy, +21:u13:rserpool-delay-23, +7:u22:Pol, +8:u23:Poli, +8:uI1:",--, +10:uI2:--(),., +15:u02:Measurement, +10:u03:Policy, +21:u04:rserpool-delay-23, +18:u02:Infrastructure, +10:u11:policy, +21:u12:rserpool-delay-23, +6:u21:rs, +7:u22:rse, +8:u23:rser, +8:uI0:",--, +10:uI1:--(),., +15:u01:Measurement, +10:u02:Policy, +21:u03:rserpool-delay-23, +18:u01:Infrastructure, +10:u10:policy, +21:u11:rserpool-delay-23, +10:uI0:--(),., +15:u00:Measurement, +10:u01:Policy, +21:u02:rserpool-delay-23, +18:u00:Infrastructure, +21:u10:rserpool-delay-23, +10:u00:Policy, +21:u01:rserpool-delay-23, +21:u00:rserpool-delay-23, +13:u08:[RFC5351], +12:u08:Overview, +8:u08:Lei,, +13:u07:[RFC5351], +8:u07:Lei,, +13:u06:[RFC5351], +12:u07:Overview, +46:u08:<https://www.rfc-editor.org/info/rfc5351>., +8:u06:Lei,, +21:u08:10.17487/RFC5351,, +13:u14:[rfc5351], +13:u05:[RFC5351], +12:u06:Overview, +13:u08:[RFC5352], +8:u05:Lei,, +21:u07:10.17487/RFC5351,, +13:u13:[rfc5351], +12:u14:overview, +18:uI2:[],.,,.,,.,.,", +13:u04:[RFC5351], +12:u05:Overview, +46:u07:<https://www.rfc-editor.org/info/rfc5351>., +14:u08:"Aggregate, +8:u04:Lei,, +21:u06:10.17487/RFC5351,, +12:u08:Stewart,, +13:u12:[rfc5351], +12:u13:overview, +18:uI1:[],.,,.,,.,.,", +13:u03:[RFC5351], +12:u04:Overview, +46:u06:<https://www.rfc-editor.org/info/rfc5351>., +13:u07:[RFC5352], +8:u03:Lei,, +21:u05:10.17487/RFC5351,, +12:u07:Stewart,, +13:u11:[rfc5351], +12:u12:overview, +46:u14:<https://www.rfc-editor.org/info/rfc5351>., +6:u21:Ov, +7:u22:Ove, +8:u23:Over, +18:uI0:[],.,,.,,.,.,", +13:u02:[RFC5351], +12:u03:Overview, +46:u05:<https://www.rfc-editor.org/info/rfc5351>., +13:u06:[RFC5352], +14:u07:"Aggregate, +46:u08:<https://www.rfc-editor.org/info/rfc5352>., +8:u02:Lei,, +21:u04:10.17487/RFC5351,, +12:u06:Stewart,, +21:u08:10.17487/RFC5352,, +13:u10:[rfc5351], +12:u11:overview, +46:u13:<https://www.rfc-editor.org/info/rfc5351>., +13:u14:[rfc5352], +13:u01:[RFC5351], +12:u02:Overview, +46:u04:<https://www.rfc-editor.org/info/rfc5351>., +13:u05:[RFC5352], +14:u06:"Aggregate, +13:u08:[RFC5353], +8:u01:Lei,, +21:u03:10.17487/RFC5351,, +12:u05:Stewart,, +21:u07:10.17487/RFC5352,, +12:u10:overview, +46:u12:<https://www.rfc-editor.org/info/rfc5351>., +13:u13:[rfc5352], +14:u14:"aggregate, +13:u00:[RFC5351], +12:u01:Overview, +46:u03:<https://www.rfc-editor.org/info/rfc5351>., +13:u04:[RFC5352], +14:u05:"Aggregate, +46:u07:<https://www.rfc-editor.org/info/rfc5352>., +14:u08:Silverton,, +8:u00:Lei,, +21:u02:10.17487/RFC5351,, +12:u04:Stewart,, +21:u06:10.17487/RFC5352,, +8:u08:Xie,, +46:u11:<https://www.rfc-editor.org/info/rfc5351>., +13:u12:[rfc5352], +14:u13:"aggregate, +10:uI2:"()",,, +12:u00:Overview, +46:u02:<https://www.rfc-editor.org/info/rfc5351>., +13:u03:[RFC5352], +14:u04:"Aggregate, +46:u06:<https://www.rfc-editor.org/info/rfc5352>., +13:u07:[RFC5353], +12:u08:(ENRP)",, +21:u01:10.17487/RFC5351,, +12:u03:Stewart,, +21:u05:10.17487/RFC5352,, +8:u07:Xie,, +13:u08:"Endpoint, +46:u10:<https://www.rfc-editor.org/info/rfc5351>., +13:u11:[rfc5352], +14:u12:"aggregate, +46:u14:<https://www.rfc-editor.org/info/rfc5352>., +6:u21:"A, +7:u22:"Ag, +8:u23:"Agg, +10:uI1:"()",,, +46:u01:<https://www.rfc-editor.org/info/rfc5351>., +13:u02:[RFC5352], +14:u03:"Aggregate, +46:u05:<https://www.rfc-editor.org/info/rfc5352>., +13:u06:[RFC5353], +14:u07:Silverton,, +46:u08:<https://www.rfc-editor.org/info/rfc5353>., +21:u00:10.17487/RFC5351,, +12:u02:Stewart,, +21:u04:10.17487/RFC5352,, +8:u06:Xie,, +13:u07:"Endpoint, +13:u10:[rfc5352], +14:u11:"aggregate, +46:u13:<https://www.rfc-editor.org/info/rfc5352>., +13:u14:[rfc5353], +10:uI0:"()",,, +46:u00:<https://www.rfc-editor.org/info/rfc5351>., +13:u01:[RFC5352], +14:u02:"Aggregate, +46:u04:<https://www.rfc-editor.org/info/rfc5352>., +13:u05:[RFC5353], +14:u06:Silverton,, +12:u07:(ENRP)",, +13:u08:[RFC5354], +12:u01:Stewart,, +21:u03:10.17487/RFC5352,, +8:u05:Xie,, +13:u06:"Endpoint, +14:u10:"aggregate, +46:u12:<https://www.rfc-editor.org/info/rfc5352>., +13:u13:[rfc5353], +14:u14:silverton,, +19:uI2:[],.,,.,,.,,.,., +13:u00:[RFC5352], +14:u01:"Aggregate, +46:u03:<https://www.rfc-editor.org/info/rfc5352>., +13:u04:[RFC5353], +14:u05:Silverton,, +12:u06:(ENRP)",, +46:u07:<https://www.rfc-editor.org/info/rfc5353>., +12:u00:Stewart,, +21:u02:10.17487/RFC5352,, +8:u04:Xie,, +13:u05:"Endpoint, +46:u11:<https://www.rfc-editor.org/info/rfc5352>., +13:u12:[rfc5353], +14:u13:silverton,, +12:u14:(enrp)",, +19:uI1:[],.,,.,,.,,.,., +6:uI2:,", +14:u00:"Aggregate, +46:u02:<https://www.rfc-editor.org/info/rfc5352>., +13:u03:[RFC5353], +14:u04:Silverton,, +12:u05:(ENRP)",, +46:u06:<https://www.rfc-editor.org/info/rfc5353>., +13:u07:[RFC5354], +15:u08:Handlespace, +21:u01:10.17487/RFC5352,, +8:u03:Xie,, +13:u04:"Endpoint, +46:u10:<https://www.rfc-editor.org/info/rfc5352>., +13:u11:[rfc5353], +14:u12:silverton,, +12:u13:(enrp)",, +46:u14:<https://www.rfc-editor.org/info/rfc5353>., +7:u22:Sil, +8:u23:Silv, +19:uI0:[],.,,.,,.,,.,., +6:uI1:,", +46:u01:<https://www.rfc-editor.org/info/rfc5352>., +13:u02:[RFC5353], +14:u03:Silverton,, +12:u04:(ENRP)",, +46:u05:<https://www.rfc-editor.org/info/rfc5353>., +13:u06:[RFC5354], +21:u00:10.17487/RFC5352,, +8:u02:Xie,, +13:u03:"Endpoint, +14:u08:Redundancy, +13:u10:[rfc5353], +14:u11:silverton,, +12:u12:(enrp)",, +46:u13:<https://www.rfc-editor.org/info/rfc5353>., +13:u14:[rfc5354], +6:u21:(E, +7:u22:(EN, +8:u23:(ENR, +6:uI0:,", +46:u00:<https://www.rfc-editor.org/info/rfc5352>., +13:u01:[RFC5353], +14:u02:Silverton,, +12:u03:(ENRP)",, +46:u04:<https://www.rfc-editor.org/info/rfc5353>., +13:u05:[RFC5354], +15:u07:Handlespace, +46:u08:<https://www.rfc-editor.org/info/rfc5354>., +8:u01:Xie,, +13:u02:"Endpoint, +14:u07:Redundancy, +9:u08:5354,, +14:u10:silverton,, +12:u11:(enrp)",, +46:u12:<https://www.rfc-editor.org/info/rfc5353>., +13:u13:[rfc5354], +13:u00:[RFC5353], +14:u01:Silverton,, +12:u02:(ENRP)",, +46:u03:<https://www.rfc-editor.org/info/rfc5353>., +13:u04:[RFC5354], +15:u06:Handlespace, +13:u08:[RFC5355], +8:u00:Xie,, +13:u01:"Endpoint, +14:u06:Redundancy, +9:u07:5354,, +12:u10:(enrp)",, +46:u11:<https://www.rfc-editor.org/info/rfc5353>., +13:u12:[rfc5354], +15:u14:handlespace, +7:uI2:"(), +14:u00:Silverton,, +12:u01:(ENRP)",, +46:u02:<https://www.rfc-editor.org/info/rfc5353>., +13:u03:[RFC5354], +15:u05:Handlespace, +46:u07:<https://www.rfc-editor.org/info/rfc5354>., +13:u00:"Endpoint, +14:u05:Redundancy, +9:u06:5354,, +13:u08:Stillman,, +46:u10:<https://www.rfc-editor.org/info/rfc5353>., +13:u11:[rfc5354], +15:u13:handlespace, +7:uI1:"(), +12:u00:(ENRP)",, +46:u01:<https://www.rfc-editor.org/info/rfc5353>., +13:u02:[RFC5354], +15:u04:Handlespace, +46:u06:<https://www.rfc-editor.org/info/rfc5354>., +13:u07:[RFC5355], +11:u08:Pooling, +14:u04:Redundancy, +9:u05:5354,, +13:u07:Stillman,, +6:u08:M., +13:u10:[rfc5354], +15:u12:handlespace, +46:u14:<https://www.rfc-editor.org/info/rfc5354>., +7:u22:Han, +8:u23:Hand, +7:uI0:"(), +46:u00:<https://www.rfc-editor.org/info/rfc5353>., +13:u01:[RFC5354], +15:u03:Handlespace, +46:u05:<https://www.rfc-editor.org/info/rfc5354>., +13:u06:[RFC5355], +12:u08:Response, +14:u03:Redundancy, +9:u04:5354,, +13:u06:Stillman,, +6:u07:M., +14:u08:(RSerPool), +15:u11:handlespace, +46:u13:<https://www.rfc-editor.org/info/rfc5354>., +13:u14:[rfc5355], +13:u00:[RFC5354], +15:u02:Handlespace, +46:u04:<https://www.rfc-editor.org/info/rfc5354>., +13:u05:[RFC5355], +11:u07:Pooling, +14:u02:Redundancy, +9:u03:5354,, +13:u05:Stillman,, +6:u06:M., +14:u07:(RSerPool), +15:u10:handlespace, +46:u12:<https://www.rfc-editor.org/info/rfc5354>., +13:u13:[rfc5355], +20:uI2:[],.,.,,.,,.,,.,, +15:u01:Handlespace, +46:u03:<https://www.rfc-editor.org/info/rfc5354>., +13:u04:[RFC5355], +11:u06:Pooling, +12:u07:Response, +13:u08:[RFC5356], +14:u01:Redundancy, +9:u02:5354,, +13:u04:Stillman,, +6:u05:M., +14:u06:(RSerPool), +9:u08:2008,, +46:u11:<https://www.rfc-editor.org/info/rfc5354>., +13:u12:[rfc5355], +11:u14:pooling, +20:uI1:[],.,.,,.,,.,,.,, +7:uI2:.,", +15:u00:Handlespace, +46:u02:<https://www.rfc-editor.org/info/rfc5354>., +13:u03:[RFC5355], +11:u05:Pooling, +12:u06:Response, +14:u08:Policies",, +14:u00:Redundancy, +9:u01:5354,, +13:u03:Stillman,, +6:u04:M., +14:u05:(RSerPool), +9:u07:2008,, +46:u10:<https://www.rfc-editor.org/info/rfc5354>., +13:u11:[rfc5355], +11:u13:pooling, +12:u14:response, +20:uI0:[],.,.,,.,,.,,.,, +7:uI1:.,", +46:u01:<https://www.rfc-editor.org/info/rfc5354>., +13:u02:[RFC5355], +11:u04:Pooling, +12:u05:Response, +13:u07:[RFC5356], +46:u08:<https://www.rfc-editor.org/info/rfc5356>., +9:u00:5354,, +13:u02:Stillman,, +6:u03:M., +14:u04:(RSerPool), +9:u06:2008,, +13:u10:[rfc5355], +11:u12:pooling, +12:u13:response, +7:uI0:.,", +46:u00:<https://www.rfc-editor.org/info/rfc5354>., +13:u01:[RFC5355], +11:u03:Pooling, +12:u04:Response, +13:u06:[RFC5356], +14:u07:Policies",, +13:u01:Stillman,, +6:u02:M., +14:u03:(RSerPool), +9:u05:2008,, +11:u11:pooling, +12:u12:response, +13:u14:[rfc5356], +7:u22:Res, +8:u23:Resp, +13:u00:[RFC5355], +11:u02:Pooling, +12:u03:Response, +13:u05:[RFC5356], +14:u06:Policies",, +46:u07:<https://www.rfc-editor.org/info/rfc5356>., +13:u00:Stillman,, +6:u01:M., +14:u02:(RSerPool), +9:u04:2008,, +11:u10:pooling, +12:u11:response, +13:u13:[rfc5356], +14:u14:policies",, +11:u01:Pooling, +12:u02:Response, +13:u04:[RFC5356], +14:u05:Policies",, +46:u06:<https://www.rfc-editor.org/info/rfc5356>., +6:u00:M., +14:u01:(RSerPool), +9:u03:2008,, +12:u10:response, +13:u12:[rfc5356], +14:u13:policies",, +46:u14:<https://www.rfc-editor.org/info/rfc5356>., +11:uI2:",,./,,, +11:u00:Pooling, +12:u01:Response, +13:u03:[RFC5356], +14:u04:Policies",, +46:u05:<https://www.rfc-editor.org/info/rfc5356>., +14:u00:(RSerPool), +9:u02:2008,, +13:u11:[rfc5356], +14:u12:policies",, +46:u13:<https://www.rfc-editor.org/info/rfc5356>., +11:uI1:",,./,,, +12:u00:Response, +13:u02:[RFC5356], +14:u03:Policies",, +46:u04:<https://www.rfc-editor.org/info/rfc5356>., +14:u08:[AINA2009], +9:u01:2008,, +13:u10:[rfc5356], +14:u11:policies",, +46:u12:<https://www.rfc-editor.org/info/rfc5356>., +11:uI0:",,./,,, +13:u01:[RFC5356], +14:u02:Policies",, +46:u03:<https://www.rfc-editor.org/info/rfc5356>., +9:u08:Zhou,, +9:u00:2008,, +14:u10:policies",, +46:u11:<https://www.rfc-editor.org/info/rfc5356>., +13:u00:[RFC5356], +14:u01:Policies",, +46:u02:<https://www.rfc-editor.org/info/rfc5356>., +14:u07:[AINA2009], +15:u08:"Evaluation, +7:u08:X.,, +46:u10:<https://www.rfc-editor.org/info/rfc5356>., +14:u00:Policies",, +46:u01:<https://www.rfc-editor.org/info/rfc5356>., +14:u06:[AINA2009], +9:u07:Zhou,, +12:u08:Handling, +7:u07:X.,, +14:u14:[aina2009], +46:u00:<https://www.rfc-editor.org/info/rfc5356>., +14:u05:[AINA2009], +9:u06:Zhou,, +15:u07:"Evaluation, +7:u06:X.,, +14:u13:[aina2009], +9:u14:zhou,, +14:u04:[AINA2009], +9:u05:Zhou,, +15:u06:"Evaluation, +12:u07:Handling, +7:u05:X.,, +14:u12:[aina2009], +9:u13:zhou,, +15:u14:"evaluation, +6:u21:[A, +7:u22:[AI, +8:u23:[AIN, +18:uI2:,.,,.,,.,,.,.,, +14:u03:[AINA2009], +9:u04:Zhou,, +15:u05:"Evaluation, +12:u06:Handling, +12:u08:256-262,, +7:u04:X.,, +14:u08:Networking, +14:u11:[aina2009], +9:u12:zhou,, +15:u13:"evaluation, +12:u14:handling, +5:u20:Z, +6:u21:Zh, +7:u22:Zho, +8:u23:Zhou, +18:uI1:,.,,.,,.,,.,.,, +14:u02:[AINA2009], +9:u03:Zhou,, +15:u04:"Evaluation, +12:u05:Handling, +7:u03:X.,, +14:u07:Networking, +8:u08:ISBN, +14:u10:[aina2009], +9:u11:zhou,, +15:u12:"evaluation, +12:u13:handling, +6:u21:"E, +7:u22:"Ev, +8:u23:"Eva, +18:uI0:,.,,.,,.,,.,.,, +6:uI2:",, +14:u01:[AINA2009], +9:u02:Zhou,, +15:u03:"Evaluation, +12:u04:Handling, +12:u07:256-262,, +34:u08:due.de/fileadmin/fileupload/I-, +7:u02:X.,, +14:u06:Networking, +8:u07:ISBN, +9:u08:2009,, +9:u10:zhou,, +15:u11:"evaluation, +12:u12:handling, +6:uI1:",, +14:u00:[AINA2009], +9:u01:Zhou,, +15:u02:"Evaluation, +12:u03:Handling, +12:u06:256-262,, +50:u08:TDR/ReliableServer/Publications/AINA2009.pdf>., +7:u01:X.,, +14:u05:Networking, +8:u06:ISBN, +9:u07:2009,, +15:u10:"evaluation, +12:u11:handling, +12:u14:256-262,, +6:uI0:",, +9:u00:Zhou,, +15:u01:"Evaluation, +12:u02:Handling, +12:u05:256-262,, +34:u07:due.de/fileadmin/fileupload/I-, +7:u00:X.,, +14:u04:Networking, +8:u05:ISBN, +9:u06:2009,, +12:u10:handling, +12:u13:256-262,, +16:uI2:-,----,./..,, +15:u00:"Evaluation, +12:u01:Handling, +12:u04:256-262,, +34:u06:due.de/fileadmin/fileupload/I-, +50:u07:TDR/ReliableServer/Publications/AINA2009.pdf>., +14:u03:Networking, +8:u04:ISBN, +9:u05:2009,, +12:u12:256-262,, +34:u14:due.de/fileadmin/fileupload/i-, +6:u21:25, +7:u22:256, +8:u23:256-, +16:uI1:-,----,./..,, +11:uI2:,://..-, +12:u00:Handling, +12:u03:256-262,, +34:u05:due.de/fileadmin/fileupload/I-, +50:u06:TDR/ReliableServer/Publications/AINA2009.pdf>., +14:u02:Networking, +8:u03:ISBN, +9:u04:2009,, +12:u11:256-262,, +34:u13:due.de/fileadmin/fileupload/i-, +50:u14:tdr/reliableserver/publications/aina2009.pdf>., +16:uI0:-,----,./..,, +11:uI1:,://..-, +9:uI2:.///-, +12:u02:256-262,, +34:u04:due.de/fileadmin/fileupload/I-, +50:u05:TDR/ReliableServer/Publications/AINA2009.pdf>., +14:u01:Networking, +8:u02:ISBN, +9:u03:2009,, +12:u10:256-262,, +34:u12:due.de/fileadmin/fileupload/i-, +50:u13:tdr/reliableserver/publications/aina2009.pdf>., +6:u21:du, +7:u22:due, +8:u23:due., +11:uI0:,://..-, +9:uI1:.///-, +9:uI2:///.., +12:u01:256-262,, +34:u03:due.de/fileadmin/fileupload/I-, +50:u04:TDR/ReliableServer/Publications/AINA2009.pdf>., +14:u00:Networking, +8:u01:ISBN, +9:u02:2009,, +34:u11:due.de/fileadmin/fileupload/i-, +50:u12:tdr/reliableserver/publications/aina2009.pdf>., +6:u21:TD, +7:u22:TDR, +8:u23:TDR/, +9:uI0:.///-, +9:uI1:///.., +12:u00:256-262,, +34:u02:due.de/fileadmin/fileupload/I-, +50:u03:TDR/ReliableServer/Publications/AINA2009.pdf>., +8:u00:ISBN, +9:u01:2009,, +34:u10:due.de/fileadmin/fileupload/i-, +50:u11:tdr/reliableserver/publications/aina2009.pdf>., +9:uI0:///.., +34:u01:due.de/fileadmin/fileupload/I-, +50:u02:TDR/ReliableServer/Publications/AINA2009.pdf>., +13:u08:[Dre2006], +9:u00:2009,, +50:u10:tdr/reliableserver/publications/aina2009.pdf>., +34:u00:due.de/fileadmin/fileupload/I-, +50:u01:TDR/ReliableServer/Publications/AINA2009.pdf>., +16:u08:Optimization, +50:u00:TDR/ReliableServer/Publications/AINA2009.pdf>., +13:u07:[Dre2006], +13:u06:[Dre2006], +16:u07:Optimization, +53:u08:essen.de/servlets/DerivateServlet/Derivate-16326/, +9:u08:2007,, +13:u14:[dre2006], +13:u05:[Dre2006], +16:u06:Optimization, +23:u08:Dre2006_final.pdf>., +9:u07:2007,, +13:u13:[dre2006], +16:u14:optimization, +12:uI2:[],.,"-,, +13:u04:[Dre2006], +16:u05:Optimization, +53:u07:essen.de/servlets/DerivateServlet/Derivate-16326/, +15:u08:[IJHIT2008], +9:u06:2007,, +13:u12:[dre2006], +16:u13:optimization, +12:uI1:[],.,"-,, +13:u03:[Dre2006], +16:u04:Optimization, +53:u06:essen.de/servlets/DerivateServlet/Derivate-16326/, +23:u07:Dre2006_final.pdf>., +9:u05:2007,, +13:u11:[dre2006], +16:u12:optimization, +53:u14:essen.de/servlets/derivateservlet/derivate-16326/, +7:u22:Opt, +8:u23:Opti, +12:uI0:[],.,"-,, +11:uI2:,://.--, +13:u02:[Dre2006], +16:u03:Optimization, +53:u05:essen.de/servlets/DerivateServlet/Derivate-16326/, +23:u06:Dre2006_final.pdf>., +15:u07:[IJHIT2008], +15:u08:Maintenance, +9:u04:2007,, +13:u10:[dre2006], +16:u11:optimization, +53:u13:essen.de/servlets/derivateservlet/derivate-16326/, +23:u14:dre2006_final.pdf>., +11:uI1:,://.--, +10:uI2:.///-/, +13:u01:[Dre2006], +16:u02:Optimization, +53:u04:essen.de/servlets/DerivateServlet/Derivate-16326/, +23:u05:Dre2006_final.pdf>., +15:u06:[IJHIT2008], +9:u08:SERSC, +9:u03:2007,, +12:u08:Overhead, +16:u10:optimization, +53:u12:essen.de/servlets/derivateservlet/derivate-16326/, +23:u13:dre2006_final.pdf>., +15:u14:[ijhit2008], +7:u22:ess, +8:u23:esse, +11:uI0:,://.--, +10:uI1:.///-/, +13:u00:[Dre2006], +16:u01:Optimization, +53:u03:essen.de/servlets/DerivateServlet/Derivate-16326/, +23:u04:Dre2006_final.pdf>., +15:u05:[IJHIT2008], +15:u07:Maintenance, +14:u08:Technology, +9:u02:2007,, +12:u07:Overhead, +17:u08:International, +53:u11:essen.de/servlets/derivateservlet/derivate-16326/, +23:u12:dre2006_final.pdf>., +15:u13:[ijhit2008], +8:u23:Dre2, +10:uI0:.///-/, +16:u00:Optimization, +53:u02:essen.de/servlets/DerivateServlet/Derivate-16326/, +23:u03:Dre2006_final.pdf>., +15:u04:[IJHIT2008], +15:u06:Maintenance, +9:u07:SERSC, +8:u08:ISSN, +9:u01:2007,, +12:u06:Overhead, +17:u07:International, +11:u08:(IJHIT), +53:u10:essen.de/servlets/derivateservlet/derivate-16326/, +23:u11:dre2006_final.pdf>., +15:u12:[ijhit2008], +15:u14:maintenance, +7:u22:[IJ, +8:u23:[IJH, +53:u01:essen.de/servlets/DerivateServlet/Derivate-16326/, +23:u02:Dre2006_final.pdf>., +15:u03:[IJHIT2008], +15:u05:Maintenance, +9:u06:SERSC, +14:u07:Technology, +9:u00:2007,, +12:u05:Overhead, +17:u06:International, +11:u07:(IJHIT), +14:u08:1738-9968,, +23:u10:dre2006_final.pdf>., +15:u11:[ijhit2008], +15:u13:maintenance, +9:u14:sersc, +53:u00:essen.de/servlets/DerivateServlet/Derivate-16326/, +23:u01:Dre2006_final.pdf>., +15:u02:[IJHIT2008], +15:u04:Maintenance, +9:u05:SERSC, +14:u06:Technology, +8:u07:ISSN, +51:u08:TDR/ReliableServer/Publications/IJHIT2008.pdf>., +12:u04:Overhead, +17:u05:International, +11:u06:(IJHIT), +14:u07:1738-9968,, +15:u10:[ijhit2008], +15:u12:maintenance, +9:u13:sersc, +14:u14:technology, +23:u00:Dre2006_final.pdf>., +15:u01:[IJHIT2008], +15:u03:Maintenance, +9:u04:SERSC, +14:u05:Technology, +8:u06:ISSN, +20:u08:[NorNet-Website], +12:u03:Overhead, +17:u04:International, +11:u05:(IJHIT), +14:u06:1738-9968,, +15:u11:maintenance, +9:u12:sersc, +14:u13:technology, +8:u14:issn, +6:u21:SE, +7:u22:SER, +8:u23:SERS, +10:uI2:(),,-,, +15:u00:[IJHIT2008], +15:u02:Maintenance, +9:u03:SERSC, +14:u04:Technology, +8:u05:ISSN, +51:u07:TDR/ReliableServer/Publications/IJHIT2008.pdf>., +12:u02:Overhead, +17:u03:International, +11:u04:(IJHIT), +14:u05:1738-9968,, +15:u10:maintenance, +9:u11:sersc, +14:u12:technology, +8:u13:issn, +7:u22:Tec, +8:u23:Tech, +10:uI1:(),,-,, +13:uI2:-,,://..-, +15:u01:Maintenance, +9:u02:SERSC, +14:u03:Technology, +8:u04:ISSN, +51:u06:TDR/ReliableServer/Publications/IJHIT2008.pdf>., +20:u07:[NorNet-Website], +10:u08:Homing, +12:u01:Overhead, +17:u02:International, +11:u03:(IJHIT), +14:u04:1738-9968,, +9:u10:sersc, +14:u11:technology, +8:u12:issn, +51:u14:tdr/reliableserver/publications/ijhit2008.pdf>., +10:uI0:(),,-,, +13:uI1:-,,://..-, +15:u00:Maintenance, +9:u01:SERSC, +14:u02:Technology, +8:u03:ISSN, +51:u05:TDR/ReliableServer/Publications/IJHIT2008.pdf>., +20:u06:[NorNet-Website], +27:u08:<https://www.nntb.no/>., +12:u00:Overhead, +17:u01:International, +11:u02:(IJHIT), +14:u03:1738-9968,, +13:u08:Testbed",, +14:u10:technology, +8:u11:issn, +51:u13:tdr/reliableserver/publications/ijhit2008.pdf>., +20:u14:[nornet-website], +13:uI0:-,,://..-, +9:u00:SERSC, +14:u01:Technology, +8:u02:ISSN, +51:u04:TDR/ReliableServer/Publications/IJHIT2008.pdf>., +20:u05:[NorNet-Website], +10:u07:Homing, +21:u08:[PAMS2013-NorNet], +17:u00:International, +11:u01:(IJHIT), +14:u02:1738-9968,, +13:u07:Testbed",, +8:u10:issn, +51:u12:tdr/reliableserver/publications/ijhit2008.pdf>., +20:u13:[nornet-website], +7:uI2:[-], +14:u00:Technology, +8:u01:ISSN, +51:u03:TDR/ReliableServer/Publications/IJHIT2008.pdf>., +20:u04:[NorNet-Website], +10:u06:Homing, +27:u07:<https://www.nntb.no/>., +11:u00:(IJHIT), +14:u01:1738-9968,, +13:u06:Testbed",, +51:u11:tdr/reliableserver/publications/ijhit2008.pdf>., +20:u12:[nornet-website], +10:u14:homing, +7:uI1:[-], +13:uI2:,.,"--,--, +8:u00:ISSN, +51:u02:TDR/ReliableServer/Publications/IJHIT2008.pdf>., +20:u03:[NorNet-Website], +10:u05:Homing, +27:u06:<https://www.nntb.no/>., +21:u07:[PAMS2013-NorNet], +14:u00:1738-9968,, +13:u05:Testbed",, +51:u10:tdr/reliableserver/publications/ijhit2008.pdf>., +20:u11:[nornet-website], +10:u13:homing, +27:u14:<https://www.nntb.no/>., +7:uI0:[-], +13:uI1:,.,"--,--, +15:uI2:",:://../,,, +51:u01:TDR/ReliableServer/Publications/IJHIT2008.pdf>., +20:u02:[NorNet-Website], +10:u04:Homing, +27:u05:<https://www.nntb.no/>., +21:u06:[PAMS2013-NorNet], +15:u08:Proceedings, +13:u04:Testbed",, +10:u08:NorNet, +20:u10:[nornet-website], +10:u12:homing, +27:u13:<https://www.nntb.no/>., +21:u14:[pams2013-nornet], +7:u22:Hom, +8:u23:Homi, +13:uI0:,.,"--,--, +15:uI1:",:://../,,, +11:uI2:://../., +51:u00:TDR/ReliableServer/Publications/IJHIT2008.pdf>., +20:u01:[NorNet-Website], +10:u03:Homing, +27:u04:<https://www.nntb.no/>., +21:u05:[PAMS2013-NorNet], +13:u03:Testbed",, +10:u07:NorNet, +10:u11:homing, +27:u12:<https://www.nntb.no/>., +21:u13:[pams2013-nornet], +15:uI0:",:://../,,, +11:uI1:://../., +20:u00:[NorNet-Website], +10:u02:Homing, +27:u03:<https://www.nntb.no/>., +21:u04:[PAMS2013-NorNet], +15:u07:Proceedings, +14:u08:1094-1100,, +13:u02:Testbed",, +10:u06:NorNet, +16:u08:Applications, +10:u10:homing, +27:u11:<https://www.nntb.no/>., +21:u12:[pams2013-nornet], +7:u22:[PA, +8:u23:[PAM, +11:uI0:://../., +10:u01:Homing, +27:u02:<https://www.nntb.no/>., +21:u03:[PAMS2013-NorNet], +15:u06:Proceedings, +13:u01:Testbed",, +10:u05:NorNet, +16:u07:Applications, +27:u10:<https://www.nntb.no/>., +21:u11:[pams2013-nornet], +15:u14:proceedings, +7:uI2:-",, +10:u00:Homing, +27:u01:<https://www.nntb.no/>., +21:u02:[PAMS2013-NorNet], +15:u05:Proceedings, +14:u07:1094-1100,, +32:u08:<https://www.simula.no/file/, +13:u00:Testbed",, +10:u04:NorNet, +16:u06:Applications, +26:u08:10.1109/WAINA.2013.71,, +21:u10:[pams2013-nornet], +15:u13:proceedings, +7:uI1:-",, +27:u00:<https://www.nntb.no/>., +21:u01:[PAMS2013-NorNet], +15:u04:Proceedings, +14:u06:1094-1100,, +60:u08:threfereedinproceedingsreference2012-12-207643198512pdf/, +10:u03:NorNet, +16:u05:Applications, +26:u07:10.1109/WAINA.2013.71,, +15:u12:proceedings, +14:u14:1094-1100,, +8:u23:Proc, +7:uI0:-",, +7:uI2:-(), +21:u00:[PAMS2013-NorNet], +15:u03:Proceedings, +14:u05:1094-1100,, +32:u07:<https://www.simula.no/file/, +14:u08:download>., +10:u02:NorNet, +16:u04:Applications, +26:u06:10.1109/WAINA.2013.71,, +15:u11:proceedings, +14:u13:1094-1100,, +7:uI1:-(), +11:uI2:-,----,, +15:u02:Proceedings, +14:u04:1094-1100,, +32:u06:<https://www.simula.no/file/, +60:u07:threfereedinproceedingsreference2012-12-207643198512pdf/, +22:u08:[RSerPool-Website], +10:u01:NorNet, +16:u03:Applications, +26:u05:10.1109/WAINA.2013.71,, +15:u10:proceedings, +14:u12:1094-1100,, +32:u14:<https://www.simula.no/file/, +7:u22:109, +8:u23:1094, +7:uI0:-(), +11:uI1:-,----,, +10:uI2:./..,,, +15:u01:Proceedings, +14:u03:1094-1100,, +32:u05:<https://www.simula.no/file/, +60:u06:threfereedinproceedingsreference2012-12-207643198512pdf/, +14:u07:download>., +10:u00:NorNet, +16:u02:Applications, +26:u04:10.1109/WAINA.2013.71,, +14:u11:1094-1100,, +32:u13:<https://www.simula.no/file/, +60:u14:threfereedinproceedingsreference2012-12-207643198512pdf/, +11:uI0:-,----,, +10:uI1:./..,,, +11:uI2:://..//, +15:u00:Proceedings, +14:u02:1094-1100,, +32:u04:<https://www.simula.no/file/, +60:u05:threfereedinproceedingsreference2012-12-207643198512pdf/, +14:u06:download>., +22:u07:[RSerPool-Website], +11:u08:Online:, +16:u01:Applications, +26:u03:10.1109/WAINA.2013.71,, +14:u10:1094-1100,, +32:u12:<https://www.simula.no/file/, +60:u13:threfereedinproceedingsreference2012-12-207643198512pdf/, +14:u14:download>., +10:uI0:./..,,, +11:uI1:://..//, +7:uI2:--/, +14:u01:1094-1100,, +32:u03:<https://www.simula.no/file/, +60:u04:threfereedinproceedingsreference2012-12-207643198512pdf/, +14:u05:download>., +22:u06:[RSerPool-Website], +47:u08:<https://www.uni-due.de/~be0001/rserpool/>., +16:u00:Applications, +26:u02:10.1109/WAINA.2013.71,, +45:u08:https://www.uni-due.de/~be0001/rserpool/,, +32:u11:<https://www.simula.no/file/, +60:u12:threfereedinproceedingsreference2012-12-207643198512pdf/, +14:u13:download>., +22:u14:[rserpool-website], +7:u22:thr, +8:u23:thre, +11:uI0:://..//, +7:uI1:--/, +14:u00:1094-1100,, +32:u02:<https://www.simula.no/file/, +60:u03:threfereedinproceedingsreference2012-12-207643198512pdf/, +14:u04:download>., +22:u05:[RSerPool-Website], +11:u07:Online:, +26:u01:10.1109/WAINA.2013.71,, +45:u07:https://www.uni-due.de/~be0001/rserpool/,, +32:u10:<https://www.simula.no/file/, +60:u11:threfereedinproceedingsreference2012-12-207643198512pdf/, +14:u12:download>., +22:u13:[rserpool-website], +7:u22:dow, +8:u23:down, +7:uI0:--/, +32:u01:<https://www.simula.no/file/, +60:u02:threfereedinproceedingsreference2012-12-207643198512pdf/, +14:u03:download>., +22:u04:[RSerPool-Website], +11:u06:Online:, +47:u07:<https://www.uni-due.de/~be0001/rserpool/>., +10:u08:Thomas, +26:u00:10.1109/WAINA.2013.71,, +45:u06:https://www.uni-due.de/~be0001/rserpool/,, +60:u10:threfereedinproceedingsreference2012-12-207643198512pdf/, +14:u11:download>., +22:u12:[rserpool-website], +11:u14:online:, +11:uI2:,.,"'",, +32:u00:<https://www.simula.no/file/, +60:u01:threfereedinproceedingsreference2012-12-207643198512pdf/, +14:u02:download>., +22:u03:[RSerPool-Website], +11:u05:Online:, +47:u06:<https://www.uni-due.de/~be0001/rserpool/>., +10:u08:Simula, +45:u05:https://www.uni-due.de/~be0001/rserpool/,, +14:u10:download>., +22:u11:[rserpool-website], +11:u13:online:, +47:u14:<https://www.uni-due.de/~be0001/rserpool/>., +11:uI1:,.,"'",, +16:uI2::://.-.///,,, +60:u00:threfereedinproceedingsreference2012-12-207643198512pdf/, +14:u01:download>., +22:u02:[RSerPool-Website], +11:u04:Online:, +47:u05:<https://www.uni-due.de/~be0001/rserpool/>., +10:u07:Thomas, +15:u08:Pilestredet, +45:u04:https://www.uni-due.de/~be0001/rserpool/,, +16:u08:Metropolitan, +22:u10:[rserpool-website], +11:u12:online:, +47:u13:<https://www.uni-due.de/~be0001/rserpool/>., +7:u22:Onl, +8:u23:Onli, +11:uI0:,.,"'",, +16:uI1::://.-.///,,, +14:uI2:://.-.///., +14:u00:download>., +22:u01:[RSerPool-Website], +11:u03:Online:, +47:u04:<https://www.uni-due.de/~be0001/rserpool/>., +10:u06:Thomas, +10:u07:Simula, +8:u08:0167, +45:u03:https://www.uni-due.de/~be0001/rserpool/,, +16:u07:Metropolitan, +6:u08:52, +11:u11:online:, +47:u12:<https://www.uni-due.de/~be0001/rserpool/>., +10:u14:thomas, +16:uI0::://.-.///,,, +14:uI1:://.-.///., +22:u00:[RSerPool-Website], +11:u02:Online:, +47:u03:<https://www.uni-due.de/~be0001/rserpool/>., +10:u05:Thomas, +10:u06:Simula, +15:u07:Pilestredet, +45:u02:https://www.uni-due.de/~be0001/rserpool/,, +16:u06:Metropolitan, +6:u07:52, +9:u08:Oslo,, +11:u10:online:, +47:u11:<https://www.uni-due.de/~be0001/rserpool/>., +10:u13:thomas, +10:u14:simula, +14:uI0:://.-.///., +11:u01:Online:, +47:u02:<https://www.uni-due.de/~be0001/rserpool/>., +10:u04:Thomas, +10:u05:Simula, +15:u06:Pilestredet, +8:u07:0167, +10:u08:Phone:, +45:u01:https://www.uni-due.de/~be0001/rserpool/,, +16:u05:Metropolitan, +6:u06:52, +9:u07:Oslo,, +47:u10:<https://www.uni-due.de/~be0001/rserpool/>., +10:u12:thomas, +10:u13:simula, +15:u14:pilestredet, +7:u22:Tho, +8:u23:Thom, +11:u00:Online:, +47:u01:<https://www.uni-due.de/~be0001/rserpool/>., +10:u03:Thomas, +10:u04:Simula, +15:u05:Pilestredet, +8:u06:0167, +8:u08:Fax:, +45:u00:https://www.uni-due.de/~be0001/rserpool/,, +16:u04:Metropolitan, +6:u05:52, +9:u06:Oslo,, +17:u08:+47-6782-8200, +10:u11:thomas, +10:u12:simula, +15:u13:pilestredet, +8:u14:0167, +47:u00:<https://www.uni-due.de/~be0001/rserpool/>., +10:u02:Thomas, +10:u03:Simula, +15:u04:Pilestredet, +8:u05:0167, +10:u07:Phone:, +17:u08:+47-6782-8201, +16:u03:Metropolitan, +6:u04:52, +9:u05:Oslo,, +17:u07:+47-6782-8200, +10:u10:thomas, +10:u11:simula, +15:u12:pilestredet, +8:u13:0167, +6:u21:Pi, +7:u22:Pil, +8:u23:Pile, +10:u01:Thomas, +10:u02:Simula, +15:u03:Pilestredet, +8:u04:0167, +10:u06:Phone:, +8:u07:Fax:, +16:u02:Metropolitan, +6:u03:52, +9:u04:Oslo,, +17:u06:+47-6782-8200, +10:u10:simula, +15:u11:pilestredet, +8:u12:0167, +10:u14:phone:, +6:u21:01, +7:u22:016, +8:u23:0167, +10:u00:Thomas, +10:u01:Simula, +15:u02:Pilestredet, +8:u03:0167, +10:u05:Phone:, +8:u06:Fax:, +17:u07:+47-6782-8201, +8:u08:URI:, +16:u01:Metropolitan, +6:u02:52, +9:u03:Oslo,, +17:u05:+47-6782-8200, +20:u08:dreibh@simula.no, +15:u10:pilestredet, +8:u11:0167, +10:u13:phone:, +8:u14:fax:, +10:u00:Simula, +15:u01:Pilestredet, +8:u02:0167, +10:u04:Phone:, +8:u05:Fax:, +17:u06:+47-6782-8201, +39:u08:https://www.simula.no/people/dreibh, +16:u00:Metropolitan, +6:u01:52, +9:u02:Oslo,, +17:u04:+47-6782-8200, +20:u07:dreibh@simula.no, +8:u10:0167, +10:u12:phone:, +8:u13:fax:, +17:u14:+47-6782-8201, +7:u22:Pho, +8:u23:Phon, +15:u00:Pilestredet, +8:u01:0167, +10:u03:Phone:, +8:u04:Fax:, +17:u05:+47-6782-8201, +8:u07:URI:, +6:u00:52, +9:u01:Oslo,, +17:u03:+47-6782-8200, +20:u06:dreibh@simula.no, +10:u11:phone:, +8:u12:fax:, +17:u13:+47-6782-8201, +6:u21:Fa, +7:u22:Fax, +8:u23:Fax:, +8:u00:0167, +10:u02:Phone:, +8:u03:Fax:, +17:u04:+47-6782-8201, +8:u06:URI:, +39:u07:https://www.simula.no/people/dreibh, +9:u00:Oslo,, +17:u02:+47-6782-8200, +20:u05:dreibh@simula.no, +10:u10:phone:, +8:u11:fax:, +17:u12:+47-6782-8201, +8:u14:uri:, +6:u21:+4, +7:u22:+47, +8:u23:+47-, +10:u01:Phone:, +8:u02:Fax:, +17:u03:+47-6782-8201, +8:u05:URI:, +39:u06:https://www.simula.no/people/dreibh, +17:u01:+47-6782-8200, +20:u04:dreibh@simula.no, +8:u10:fax:, +17:u11:+47-6782-8201, +8:u13:uri:, +39:u14:https://www.simula.no/people/dreibh, +10:u00:Phone:, +8:u01:Fax:, +17:u02:+47-6782-8201, +8:u04:URI:, +39:u05:https://www.simula.no/people/dreibh, +17:u00:+47-6782-8200, +20:u03:dreibh@simula.no, +17:u10:+47-6782-8201, +8:u12:uri:, +39:u13:https://www.simula.no/people/dreibh, +6:u21:UR, +7:u22:URI, +8:u23:URI:, +8:u00:Fax:, +17:u01:+47-6782-8201, +8:u03:URI:, +39:u04:https://www.simula.no/people/dreibh, +20:u02:dreibh@simula.no, +8:u11:uri:, +39:u12:https://www.simula.no/people/dreibh, +17:u00:+47-6782-8201, +8:u02:URI:, +39:u03:https://www.simula.no/people/dreibh, +20:u01:dreibh@simula.no, +8:u10:uri:, +39:u11:https://www.simula.no/people/dreibh, +8:u01:URI:, +39:u02:https://www.simula.no/people/dreibh, +8:u08:Xing, +20:u00:dreibh@simula.no, +39:u10:https://www.simula.no/people/dreibh, +8:u00:URI:, +39:u01:https://www.simula.no/people/dreibh, +39:u00:https://www.simula.no/people/dreibh, +8:u07:Xing, +10:u08:Renmin, +15:u08:University,, +8:u06:Xing, +10:u08:570228, +15:u07:University,, +10:u08:Avenue, +8:u14:xing, +8:u05:Xing, +10:u07:Renmin, +15:u06:University,, +10:u07:Avenue, +11:u08:Haikou,, +8:u13:xing, +8:u04:Xing, +10:u06:Renmin, +10:u07:570228, +15:u05:University,, +10:u06:Avenue, +11:u07:Haikou,, +8:u12:xing, +10:u14:renmin, +6:u21:Xi, +7:u22:Xin, +8:u23:Xing, +8:u03:Xing, +10:u05:Renmin, +10:u06:570228, +15:u04:University,, +10:u05:Avenue, +11:u06:Haikou,, +20:u08:+86-898-66279141, +8:u11:xing, +10:u13:renmin, +10:u14:570228, +8:u02:Xing, +10:u04:Renmin, +10:u05:570228, +15:u03:University,, +10:u04:Avenue, +11:u05:Haikou,, +20:u07:+86-898-66279141, +25:u08:zhouxing@hainu.edu.cn, +8:u10:xing, +10:u12:renmin, +10:u13:570228, +9:u14:china, +7:u22:Ren, +8:u23:Renm, +8:u01:Xing, +10:u03:Renmin, +10:u04:570228, +60:u08:http://www.hainu.edu.cn/stm/xinxi/2011330/10409758.shtml, +15:u02:University,, +10:u03:Avenue, +11:u04:Haikou,, +20:u06:+86-898-66279141, +25:u07:zhouxing@hainu.edu.cn, +10:u11:renmin, +10:u12:570228, +9:u13:china, +6:u21:57, +7:u22:570, +8:u23:5702, +8:u00:Xing, +10:u02:Renmin, +10:u03:570228, +15:u01:University,, +10:u02:Avenue, +11:u03:Haikou,, +20:u05:+86-898-66279141, +25:u06:zhouxing@hainu.edu.cn, +10:u10:renmin, +10:u11:570228, +9:u12:china, +7:u22:Chi, +8:u23:Chin, +10:u01:Renmin, +10:u02:570228, +60:u07:http://www.hainu.edu.cn/stm/xinxi/2011330/10409758.shtml, +15:u00:University,, +10:u01:Avenue, +11:u02:Haikou,, +20:u04:+86-898-66279141, +25:u05:zhouxing@hainu.edu.cn, +10:u10:570228, +9:u11:china, +10:u00:Renmin, +10:u01:570228, +60:u06:http://www.hainu.edu.cn/stm/xinxi/2011330/10409758.shtml, +10:u00:Avenue, +11:u01:Haikou,, +20:u03:+86-898-66279141, +25:u04:zhouxing@hainu.edu.cn, +9:u10:china, +60:u14:http://www.hainu.edu.cn/stm/xinxi/2011330/10409758.shtml, +10:u00:570228, +60:u05:http://www.hainu.edu.cn/stm/xinxi/2011330/10409758.shtml, +11:u00:Haikou,, +20:u02:+86-898-66279141, +25:u03:zhouxing@hainu.edu.cn, +60:u13:http://www.hainu.edu.cn/stm/xinxi/2011330/10409758.shtml, +15:uI2:://...////., +60:u04:http://www.hainu.edu.cn/stm/xinxi/2011330/10409758.shtml, +20:u01:+86-898-66279141, +25:u02:zhouxing@hainu.edu.cn, +60:u12:http://www.hainu.edu.cn/stm/xinxi/2011330/10409758.shtml, +15:uI1:://...////., +60:u03:http://www.hainu.edu.cn/stm/xinxi/2011330/10409758.shtml, +20:u00:+86-898-66279141, +25:u01:zhouxing@hainu.edu.cn, +60:u11:http://www.hainu.edu.cn/stm/xinxi/2011330/10409758.shtml, +15:uI0:://...////., +60:u02:http://www.hainu.edu.cn/stm/xinxi/2011330/10409758.shtml, +25:u00:zhouxing@hainu.edu.cn, +60:u10:http://www.hainu.edu.cn/stm/xinxi/2011330/10409758.shtml, +60:u01:http://www.hainu.edu.cn/stm/xinxi/2011330/10409758.shtml, +8:u04:MPLS, +6:u05:K., +11:u07:Juniper, +6:u08:L., +6:u04:WG, +12:u05:Kompella, +13:u07:Networks,, +8:u12:mpls, +6:u13:k., +6:u21:MP, +7:u22:MPL, +8:u23:MPLS, +8:u03:MPLS, +6:u04:K., +11:u06:Juniper, +6:u03:WG, +12:u04:Kompella, +13:u06:Networks,, +13:u08:Contreras, +8:u11:mpls, +6:u12:k., +11:u14:juniper, +6:u21:K., +6:u22:K., +6:u23:K., +8:u02:MPLS, +6:u03:K., +11:u05:Juniper, +6:u07:L., +14:u08:Telefonica, +6:u02:WG, +12:u03:Kompella, +13:u05:Networks,, +13:u07:Contreras, +9:u08:April, +8:u10:mpls, +6:u11:k., +11:u13:juniper, +8:u01:MPLS, +6:u02:K., +11:u04:Juniper, +6:u06:L., +11:u08:October, +6:u01:WG, +12:u02:Kompella, +13:u04:Networks,, +13:u06:Contreras, +9:u07:April, +6:u10:k., +11:u12:juniper, +6:u14:l., +7:u22:Jun, +8:u23:Juni, +8:u00:MPLS, +6:u01:K., +11:u03:Juniper, +6:u05:L., +14:u07:Telefonica, +13:u08:Resilient, +6:u00:WG, +12:u01:Kompella, +13:u03:Networks,, +13:u05:Contreras, +9:u06:April, +7:u08:23,, +11:u11:juniper, +6:u13:l., +6:u00:K., +11:u02:Juniper, +6:u04:L., +14:u06:Telefonica, +11:u07:October, +26:u08:draft-ietf-mpls-rmr-12, +12:u00:Kompella, +13:u02:Networks,, +13:u04:Contreras, +9:u05:April, +7:u07:23,, +8:u08:MPLS, +11:u10:juniper, +6:u12:l., +14:u14:telefonica, +6:u21:L., +6:u22:L., +6:u23:L., +11:u01:Juniper, +6:u03:L., +14:u05:Telefonica, +11:u06:October, +13:u07:Resilient, +13:u01:Networks,, +13:u03:Contreras, +9:u04:April, +7:u06:23,, +8:u07:MPLS, +6:u11:l., +14:u13:telefonica, +11:u14:october, +11:u00:Juniper, +6:u02:L., +14:u04:Telefonica, +11:u05:October, +13:u06:Resilient, +26:u07:draft-ietf-mpls-rmr-12, +13:u00:Networks,, +13:u02:Contreras, +9:u03:April, +7:u05:23,, +8:u06:MPLS, +6:u10:l., +14:u12:telefonica, +11:u13:october, +13:u14:resilient, +7:u22:Tel, +8:u23:Tele, +6:u01:L., +14:u03:Telefonica, +11:u04:October, +13:u05:Resilient, +26:u06:draft-ietf-mpls-rmr-12, +13:u01:Contreras, +9:u02:April, +7:u04:23,, +8:u05:MPLS, +14:u11:telefonica, +11:u12:october, +13:u13:resilient, +26:u14:draft-ietf-mpls-rmr-12, +6:u21:Oc, +7:u22:Oct, +8:u23:Octo, +6:u00:L., +14:u02:Telefonica, +11:u03:October, +13:u04:Resilient, +26:u05:draft-ietf-mpls-rmr-12, +12:u08:proceeds, +13:u00:Contreras, +9:u01:April, +7:u03:23,, +8:u08:ring, +14:u10:telefonica, +11:u11:october, +13:u12:resilient, +26:u13:draft-ietf-mpls-rmr-12, +8:u23:Resi, +14:u01:Telefonica, +11:u02:October, +13:u03:Resilient, +26:u04:draft-ietf-mpls-rmr-12, +9:u00:April, +7:u02:23,, +8:u07:ring, +11:u10:october, +13:u11:resilient, +26:u12:draft-ietf-mpls-rmr-12, +14:u00:Telefonica, +11:u01:October, +13:u02:Resilient, +26:u03:draft-ietf-mpls-rmr-12, +12:u07:proceeds, +13:u08:signaled,, +7:u01:23,, +8:u06:ring, +13:u08:describes, +13:u10:resilient, +26:u11:draft-ietf-mpls-rmr-12, +11:u00:October, +13:u01:Resilient, +26:u02:draft-ietf-mpls-rmr-12, +12:u06:proceeds, +12:u08:describe, +7:u00:23,, +8:u05:ring, +13:u07:describes, +26:u10:draft-ietf-mpls-rmr-12, +12:u14:proceeds, +13:u00:Resilient, +26:u01:draft-ietf-mpls-rmr-12, +12:u05:proceeds, +13:u07:signaled,, +14:u08:protocols., +8:u04:ring, +13:u06:describes, +12:u13:proceeds, +26:u00:draft-ietf-mpls-rmr-12, +12:u04:proceeds, +13:u06:signaled,, +12:u07:describe, +16:u08:Requirements, +8:u03:ring, +13:u05:describes, +12:u12:proceeds, +13:u14:signaled,, +12:u03:proceeds, +13:u05:signaled,, +12:u06:describe, +14:u07:protocols., +8:u02:ring, +13:u04:describes, +12:u11:proceeds, +13:u13:signaled,, +12:u14:describe, +6:u21:It, +6:u22:It, +6:u23:It, +12:u02:proceeds, +13:u04:signaled,, +12:u05:describe, +14:u06:protocols., +16:u07:Requirements, +8:u01:ring, +13:u03:describes, +12:u10:proceeds, +13:u12:signaled,, +12:u13:describe, +14:u14:protocols., +12:u01:proceeds, +13:u03:signaled,, +12:u04:describe, +14:u05:protocols., +16:u06:Requirements, +8:u00:ring, +13:u02:describes, +13:u11:signaled,, +12:u12:describe, +14:u13:protocols., +12:u00:proceeds, +13:u02:signaled,, +12:u03:describe, +14:u04:protocols., +16:u05:Requirements, +13:u01:describes, +13:u10:signaled,, +12:u11:describe, +14:u12:protocols., +8:u23:prot, +13:u01:signaled,, +12:u02:describe, +14:u03:protocols., +16:u04:Requirements, +13:u00:describes, +12:u10:describe, +14:u11:protocols., +13:u00:signaled,, +12:u01:describe, +14:u02:protocols., +16:u03:Requirements, +14:u10:protocols., +18:uI2:"","","","","", +12:u00:describe, +14:u01:protocols., +16:u02:Requirements, +18:uI1:"","","","","", +14:u00:protocols., +16:u01:Requirements, +18:uI0:"","","","","", +16:u00:Requirements, +12:u08:Kompella, +12:u07:Kompella, +12:u06:Kompella, +12:u14:kompella, +12:u13:kompella, +12:u12:kompella, +6:u21:Ko, +7:u22:Kom, +8:u23:Komp, +12:u11:kompella, +12:u10:kompella, +15:u08:Definitions, +15:u07:Definitions, +15:u06:Definitions, +14:u08:Motivation, +15:u05:Definitions, +14:u07:Motivation, +15:u04:Definitions, +14:u06:Motivation, +10:u08:Theory, +15:u03:Definitions, +14:u05:Motivation, +10:u07:Theory, +15:u02:Definitions, +14:u04:Motivation, +10:u06:Theory, +16:u08:Provisioning, +15:u01:Definitions, +14:u03:Motivation, +10:u05:Theory, +16:u07:Provisioning, +15:u00:Definitions, +14:u02:Motivation, +10:u04:Theory, +16:u06:Provisioning, +8:u08:Ring, +14:u01:Motivation, +10:u03:Theory, +16:u05:Provisioning, +8:u07:Ring, +14:u00:Motivation, +10:u02:Theory, +16:u04:Provisioning, +8:u06:Ring, +10:u08:3.3.1., +10:u01:Theory, +16:u03:Provisioning, +8:u05:Ring, +10:u00:Theory, +16:u02:Provisioning, +8:u04:Ring, +11:u08:Express, +10:u07:3.3.1., +8:u08:3.4., +16:u01:Provisioning, +8:u03:Ring, +11:u07:Express, +10:u06:3.3.1., +16:u00:Provisioning, +8:u02:Ring, +11:u06:Express, +10:u14:3.3.1., +10:u05:3.3.1., +8:u07:3.4., +8:u08:3.5., +8:u01:Ring, +11:u05:Express, +10:u13:3.3.1., +10:u04:3.3.1., +8:u06:3.4., +8:u00:Ring, +11:u04:Express, +14:u08:Installing, +10:u12:3.3.1., +8:u14:3.4., +10:u03:3.3.1., +8:u05:3.4., +8:u07:3.5., +8:u08:3.6., +11:u03:Express, +14:u07:Installing, +10:u11:3.3.1., +8:u13:3.4., +10:u02:3.3.1., +8:u04:3.4., +8:u06:3.5., +11:u02:Express, +14:u06:Installing, +14:u08:Protection, +10:u10:3.3.1., +8:u12:3.4., +8:u14:3.5., +7:u22:3.4, +8:u23:3.4., +10:u01:3.3.1., +8:u03:3.4., +8:u05:3.5., +8:u07:3.6., +8:u08:3.7., +11:u01:Express, +14:u05:Installing, +14:u07:Protection, +8:u11:3.4., +8:u13:3.5., +10:u00:3.3.1., +8:u02:3.4., +8:u04:3.5., +8:u06:3.6., +11:u00:Express, +14:u04:Installing, +14:u06:Protection, +8:u10:3.4., +8:u12:3.5., +8:u14:3.6., +7:u22:3.5, +8:u23:3.5., +8:u01:3.4., +8:u03:3.5., +8:u05:3.6., +8:u07:3.7., +14:u03:Installing, +14:u05:Protection, +8:u11:3.5., +8:u13:3.6., +8:u00:3.4., +8:u02:3.5., +8:u04:3.6., +8:u06:3.7., +14:u02:Installing, +14:u04:Protection, +17:u08:Autodiscovery, +8:u10:3.5., +8:u12:3.6., +8:u14:3.7., +7:u22:3.6, +8:u23:3.6., +8:u01:3.5., +8:u03:3.6., +8:u05:3.7., +14:u01:Installing, +14:u03:Protection, +17:u07:Autodiscovery, +8:u11:3.6., +8:u13:3.7., +8:u00:3.5., +8:u02:3.6., +8:u04:3.7., +14:u00:Installing, +14:u02:Protection, +17:u06:Autodiscovery, +8:u10:3.6., +8:u12:3.7., +7:u22:3.7, +8:u23:3.7., +8:u01:3.6., +8:u03:3.7., +14:u01:Protection, +17:u05:Autodiscovery, +8:u11:3.7., +8:u00:3.6., +8:u02:3.7., +14:u00:Protection, +17:u04:Autodiscovery, +8:u10:3.7., +8:u01:3.7., +8:u08:4.4., +17:u03:Autodiscovery, +14:u08:Mastership, +8:u00:3.7., +8:u08:4.5., +17:u02:Autodiscovery, +14:u07:Mastership, +8:u07:4.4., +17:u01:Autodiscovery, +14:u06:Mastership, +8:u06:4.4., +8:u07:4.5., +17:u00:Autodiscovery, +14:u05:Mastership, +8:u14:4.4., +8:u05:4.4., +8:u06:4.5., +8:u08:6.1., +14:u04:Mastership, +12:u08:Advanced, +8:u13:4.4., +8:u14:4.5., +8:u04:4.4., +8:u05:4.5., +8:u08:6.2., +14:u03:Mastership, +12:u07:Advanced, +14:u08:Half-rings, +8:u12:4.4., +8:u13:4.5., +7:u22:4.4, +8:u23:4.4., +8:u03:4.4., +8:u04:4.5., +8:u07:6.1., +14:u02:Mastership, +12:u06:Advanced, +14:u07:Half-rings, +7:u08:Hub, +8:u11:4.4., +8:u12:4.5., +7:u22:4.5, +8:u23:4.5., +8:u02:4.4., +8:u03:4.5., +8:u06:6.1., +8:u07:6.2., +14:u01:Mastership, +12:u05:Advanced, +14:u06:Half-rings, +7:u07:Hub, +8:u10:4.4., +8:u11:4.5., +8:u14:6.1., +8:u01:4.4., +8:u02:4.5., +8:u05:6.1., +8:u06:6.2., +14:u00:Mastership, +12:u04:Advanced, +14:u05:Half-rings, +7:u06:Hub, +19:u08:Acknowledgments, +8:u10:4.5., +8:u13:6.1., +8:u14:6.2., +30:uI2:..-......................., +8:u00:4.4., +8:u01:4.5., +8:u04:6.1., +8:u05:6.2., +12:u03:Advanced, +14:u04:Half-rings, +7:u05:Hub, +19:u07:Acknowledgments, +8:u12:6.1., +8:u13:6.2., +7:u22:6.1, +8:u23:6.1., +30:uI1:..-......................., +8:u00:4.5., +8:u03:6.1., +8:u04:6.2., +12:u02:Advanced, +14:u03:Half-rings, +7:u04:Hub, +19:u06:Acknowledgments, +8:u11:6.1., +8:u12:6.2., +7:u22:6.2, +8:u23:6.2., +30:uI0:..-......................., +8:u02:6.1., +8:u03:6.2., +12:u01:Advanced, +14:u02:Half-rings, +7:u03:Hub, +19:u05:Acknowledgments, +8:u10:6.1., +8:u11:6.2., +8:u01:6.1., +8:u02:6.2., +12:u00:Advanced, +14:u01:Half-rings, +7:u02:Hub, +19:u04:Acknowledgments, +8:u10:6.2., +8:u00:6.1., +8:u01:6.2., +14:u00:Half-rings, +7:u01:Hub, +19:u03:Acknowledgments, +8:u00:6.2., +9:u08:Rings, +7:u00:Hub, +19:u02:Acknowledgments, +19:u01:Acknowledgments, +9:u07:Rings, +10:u08:nearly, +19:u00:Acknowledgments, +12:u08:simplest, +9:u06:Rings, +13:u08:increases, +12:u07:simplest, +14:u08:ubiquitous, +9:u14:rings, +9:u05:Rings, +10:u07:nearly, +12:u06:simplest, +14:u07:ubiquitous, +7:u08:its, +9:u13:rings, +9:u04:Rings, +10:u06:nearly, +13:u07:increases, +12:u05:simplest, +14:u06:ubiquitous, +7:u07:its, +9:u12:rings, +10:u14:nearly, +6:u21:Ri, +7:u22:Rin, +8:u23:Ring, +9:u03:Rings, +10:u05:nearly, +13:u06:increases, +12:u04:simplest, +14:u05:ubiquitous, +7:u06:its, +9:u11:rings, +10:u13:nearly, +13:u14:increases, +9:u02:Rings, +10:u04:nearly, +13:u05:increases, +12:u03:simplest, +14:u04:ubiquitous, +7:u05:its, +9:u10:rings, +10:u12:nearly, +13:u13:increases, +7:u22:nea, +8:u23:near, +9:u01:Rings, +10:u03:nearly, +13:u04:increases, +12:u02:simplest, +14:u03:ubiquitous, +7:u04:its, +10:u11:nearly, +13:u12:increases, +8:u23:incr, +9:u00:Rings, +10:u02:nearly, +13:u03:increases, +12:u01:simplest, +14:u02:ubiquitous, +7:u03:its, +10:u10:nearly, +13:u11:increases, +10:u01:nearly, +13:u02:increases, +12:u00:simplest, +14:u01:ubiquitous, +7:u02:its, +13:u10:increases, +10:u00:nearly, +13:u01:increases, +14:u00:ubiquitous, +7:u01:its, +13:u00:increases, +7:u00:its, +11:u08:several, +6:uI2:,;, +9:u08:IS-IS, +9:u08:ways,, +6:uI1:,;, +11:u07:several, +7:u08:RMR, +9:u07:ways,, +14:u08:[RFC5305],, +6:uI0:,;, +11:u06:several, +9:u07:IS-IS, +9:u06:ways,, +14:u07:[RFC5305],, +8:u08:LSPs, +11:u14:several, +11:u05:several, +9:u06:IS-IS, +7:u07:RMR, +9:u05:ways,, +14:u06:[RFC5305],, +8:u07:LSPs, +11:u13:several, +9:u14:is-is, +11:u04:several, +9:u05:IS-IS, +7:u06:RMR, +15:u08:naturally"., +9:u04:ways,, +14:u05:[RFC5305],, +8:u06:LSPs, +10:u08:intent, +11:u12:several, +9:u13:is-is, +7:u14:rmr, +7:u22:sev, +8:u23:seve, +17:uI2:-[],[],-[][]., +11:u03:several, +9:u04:IS-IS, +7:u05:RMR, +9:u03:ways,, +14:u04:[RFC5305],, +8:u05:LSPs, +10:u07:intent, +8:u08:Many, +11:u11:several, +9:u12:is-is, +7:u13:rmr, +7:u22:IS-, +8:u23:IS-I, +17:uI1:-[],[],-[][]., +7:uI2:[];, +11:u02:several, +9:u03:IS-IS, +7:u04:RMR, +15:u07:naturally"., +15:u08:topologies,, +9:u02:ways,, +14:u03:[RFC5305],, +8:u04:LSPs, +10:u06:intent, +8:u07:Many, +9:u08:start, +11:u10:several, +9:u11:is-is, +7:u12:rmr, +6:u21:RM, +7:u22:RMR, +7:u23:RMR, +17:uI0:-[],[],-[][]., +7:uI1:[];, +11:u01:several, +9:u02:IS-IS, +7:u03:RMR, +15:u06:naturally"., +10:u08:adding, +9:u01:ways,, +14:u02:[RFC5305],, +8:u03:LSPs, +10:u05:intent, +8:u06:Many, +9:u07:start, +9:u10:is-is, +7:u11:rmr, +15:u14:naturally"., +7:uI0:[];, +11:u00:several, +9:u01:IS-IS, +7:u02:RMR, +15:u05:naturally"., +15:u07:topologies,, +9:u08:(with, +9:u00:ways,, +14:u01:[RFC5305],, +8:u02:LSPs, +10:u04:intent, +8:u05:Many, +9:u06:start, +13:u08:"express", +7:u10:rmr, +15:u13:naturally"., +9:u14:their, +6:uI2:"., +9:u00:IS-IS, +7:u01:RMR, +15:u04:naturally"., +15:u06:topologies,, +10:u07:adding, +14:u00:[RFC5305],, +8:u01:LSPs, +10:u03:intent, +8:u04:Many, +9:u05:start, +13:u07:"express", +15:u12:naturally"., +9:u13:their, +15:u14:topologies,, +6:u21:na, +7:u22:nat, +8:u23:natu, +6:uI1:"., +7:u00:RMR, +15:u03:naturally"., +15:u05:topologies,, +10:u06:adding, +9:u07:(with, +15:u08:protection., +8:u00:LSPs, +10:u02:intent, +8:u03:Many, +9:u04:start, +13:u06:"express", +15:u11:naturally"., +9:u12:their, +15:u13:topologies,, +10:u14:adding, +8:u23:thei, +6:uI0:"., +7:uI2:,,,, +15:u02:naturally"., +15:u04:topologies,, +10:u05:adding, +9:u06:(with, +10:u01:intent, +8:u02:Many, +9:u03:start, +13:u05:"express", +15:u10:naturally"., +9:u11:their, +15:u12:topologies,, +10:u13:adding, +9:u14:(with, +7:u22:top, +8:u23:topo, +7:uI1:,,,, +15:u01:naturally"., +15:u03:topologies,, +10:u04:adding, +9:u05:(with, +15:u07:protection., +10:u00:intent, +8:u01:Many, +9:u02:start, +13:u04:"express", +9:u10:their, +15:u11:topologies,, +10:u12:adding, +9:u13:(with, +8:u23:addi, +7:uI0:,,,, +15:u00:naturally"., +15:u02:topologies,, +10:u03:adding, +9:u04:(with, +15:u06:protection., +10:u08:nodes), +8:u00:Many, +9:u01:start, +13:u03:"express", +14:u08:(directed), +15:u10:topologies,, +10:u11:adding, +9:u12:(with, +15:u14:protection., +7:u22:(wi, +8:u23:(wit, +15:u01:topologies,, +10:u02:adding, +9:u03:(with, +15:u05:protection., +9:u00:start, +13:u02:"express", +14:u07:(directed), +5:u08:V, +10:u10:adding, +9:u11:(with, +15:u13:protection., +15:u00:topologies,, +10:u01:adding, +9:u02:(with, +15:u04:protection., +10:u07:nodes), +13:u01:"express", +14:u06:(directed), +5:u07:V, +9:u08:nodes, +9:u10:(with, +15:u12:protection., +10:u00:adding, +9:u01:(with, +15:u03:protection., +10:u06:nodes), +13:u00:"express", +14:u05:(directed), +5:u06:V, +9:u07:nodes, +8:u08:node, +15:u11:protection., +10:u14:nodes), +10:uI2:()(,)(, +9:u00:(with, +15:u02:protection., +10:u05:nodes), +9:u08:{R_i,, +14:u04:(directed), +5:u05:V, +9:u06:nodes, +8:u07:node, +15:u10:protection., +10:u13:nodes), +10:uI1:()(,)(, +8:uI2:)()., +15:u01:protection., +10:u04:nodes), +9:u08:R_i),, +14:u03:(directed), +5:u04:V, +9:u05:nodes, +8:u06:node, +10:u12:nodes), +9:u14:terms, +10:uI0:()(,)(, +8:uI1:)()., +11:uI2:(,),.(,, +15:u00:protection., +10:u03:nodes), +9:u07:{R_i,, +14:u02:(directed), +5:u03:V, +9:u04:nodes, +8:u05:node, +10:u11:nodes), +9:u13:terms, +8:uI0:)()., +11:uI1:(,),.(,, +6:uI2:.), +10:u02:nodes), +9:u06:{R_i,, +9:u07:R_i),, +15:u08:"clockwise", +14:u01:(directed), +5:u02:V, +9:u03:nodes, +8:u04:node, +8:u08:done, +10:u10:nodes), +9:u12:terms, +9:u14:{r_i,, +6:u21:te, +7:u22:ter, +8:u23:term, +11:uI0:(,),.(,, +6:uI1:.), +10:u01:nodes), +9:u05:{R_i,, +9:u06:R_i),, +14:u00:(directed), +5:u01:V, +9:u02:nodes, +8:u03:node, +8:u07:done, +8:u08:(CW), +9:u11:terms, +9:u13:{r_i,, +9:u14:r_i),, +6:uI0:.), +11:uI2:,.(,)(,, +10:u00:nodes), +9:u04:{R_i,, +9:u05:R_i),, +15:u07:"clockwise", +12:u08:distinct, +5:u00:V, +9:u01:nodes, +8:u02:node, +8:u06:done, +8:u07:(CW), +9:u10:terms, +9:u12:{r_i,, +9:u13:r_i),, +5:u20:{, +6:u21:{R, +7:u22:{R_, +8:u23:{R_i, +11:uI1:,.(,)(,, +8:uI2:),-(, +9:u03:{R_i,, +9:u04:R_i),, +15:u06:"clockwise", +6:u08:R0, +9:u00:nodes, +8:u01:node, +8:u05:done, +8:u06:(CW), +9:u11:{r_i,, +9:u12:r_i),, +15:u14:"clockwise", +6:u21:R_, +7:u22:R_i, +8:u23:R_i), +11:uI0:,.(,)(,, +8:uI1:),-(, +9:u02:{R_i,, +9:u03:R_i),, +15:u05:"clockwise", +12:u07:distinct, +8:u00:node, +8:u04:done, +8:u05:(CW), +9:u10:{r_i,, +9:u11:r_i),, +15:u13:"clockwise", +8:uI0:),-(, +13:uI2:""()""()., +9:u01:{R_i,, +9:u02:R_i),, +15:u04:"clockwise", +12:u06:distinct, +6:u07:R0, +8:u03:done, +8:u04:(CW), +9:u10:r_i),, +15:u12:"clockwise", +12:u14:distinct, +7:u22:"cl, +8:u23:"clo, +13:uI1:""()""()., +9:u00:{R_i,, +9:u01:R_i),, +15:u03:"clockwise", +12:u05:distinct, +6:u06:R0, +6:u08:R7, +8:u02:done, +8:u03:(CW), +15:u11:"clockwise", +12:u13:distinct, +6:u14:r0, +13:uI0:""()""()., +9:u00:R_i),, +15:u02:"clockwise", +12:u04:distinct, +6:u05:R0, +6:u08:R2, +8:u01:done, +8:u02:(CW), +15:u10:"clockwise", +12:u12:distinct, +6:u13:r0, +6:u21:di, +7:u22:dis, +8:u23:dist, +15:u01:"clockwise", +12:u03:distinct, +6:u04:R0, +6:u07:R7, +9:u08:Anti-, +8:u00:done, +8:u01:(CW), +12:u11:distinct, +6:u12:r0, +6:u21:R0, +6:u22:R0, +6:u23:R0, +15:u00:"clockwise", +12:u02:distinct, +6:u03:R0, +6:u06:R7, +6:u07:R2, +8:u00:(CW), +12:u10:distinct, +6:u11:r0, +6:u14:r7, +12:u01:distinct, +6:u02:R0, +6:u05:R7, +6:u06:R2, +9:u07:Anti-, +6:u10:r0, +6:u13:r7, +6:u14:r2, +12:u00:distinct, +6:u01:R0, +6:u04:R7, +6:u05:R2, +9:u06:Anti-, +6:u12:r7, +6:u13:r2, +9:u14:anti-, +6:u21:R7, +6:u22:R7, +6:u23:R7, +6:u00:R0, +6:u03:R7, +6:u04:R2, +9:u05:Anti-, +13:u08:Clockwise, +6:u11:r7, +6:u12:r2, +9:u13:anti-, +6:u21:R2, +6:u22:R2, +6:u23:R2, +6:u02:R7, +6:u03:R2, +9:u04:Anti-, +6:u10:r7, +6:u11:r2, +9:u12:anti-, +8:u14:ring, +7:u22:Ant, +8:u23:Anti, +6:u01:R7, +6:u02:R2, +9:u03:Anti-, +13:u07:Clockwise, +6:u10:r2, +9:u11:anti-, +8:u13:ring, +6:u00:R7, +6:u01:R2, +9:u02:Anti-, +13:u06:Clockwise, +7:u08:RID, +9:u10:anti-, +8:u12:ring, +13:u14:clockwise, +6:u00:R2, +9:u01:Anti-, +13:u05:Clockwise, +8:u11:ring, +13:u13:clockwise, +9:u00:Anti-, +13:u04:Clockwise, +7:u07:RID, +6:u08:R6, +8:u10:ring, +13:u12:clockwise, +7:u22:Clo, +8:u23:Cloc, +13:u03:Clockwise, +7:u06:RID, +6:u08:R3, +13:u11:clockwise, +7:u14:rid, +13:u02:Clockwise, +7:u05:RID, +6:u07:R6, +13:u10:clockwise, +7:u13:rid, +13:u01:Clockwise, +7:u04:RID, +6:u06:R6, +6:u07:R3, +7:u12:rid, +6:u14:r6, +6:u21:RI, +7:u22:RID, +7:u23:RID, +13:u00:Clockwise, +7:u03:RID, +6:u05:R6, +6:u06:R3, +6:u08:R5, +7:u11:rid, +6:u13:r6, +6:u14:r3, +7:u02:RID, +6:u04:R6, +6:u05:R3, +10:u08:Figure, +7:u10:rid, +6:u12:r6, +6:u13:r3, +6:u21:R6, +6:u22:R6, +6:u23:R6, +7:u01:RID, +6:u03:R6, +6:u04:R3, +6:u07:R5, +6:u11:r6, +6:u12:r3, +6:u21:R3, +6:u22:R3, +6:u23:R3, +7:u00:RID, +6:u02:R6, +6:u03:R3, +6:u06:R5, +10:u07:Figure, +6:u10:r6, +6:u11:r3, +6:u14:r5, +6:u01:R6, +6:u02:R3, +6:u05:R5, +10:u06:Figure, +6:u10:r3, +6:u13:r5, +10:u14:figure, +6:u00:R6, +6:u01:R3, +6:u04:R5, +10:u05:Figure, +6:u12:r5, +10:u13:figure, +6:u21:R5, +6:u22:R5, +6:u23:R5, +6:u00:R3, +6:u03:R5, +10:u04:Figure, +6:u11:r5, +10:u12:figure, +7:u22:Fig, +8:u23:Figu, +6:u02:R5, +10:u03:Figure, +6:u10:r5, +10:u11:figure, +6:u01:R5, +10:u02:Figure, +10:u10:figure, +6:u00:R5, +10:u01:Figure, +10:u00:Figure, +9:u08:ring,, +14:u08:Provider's, +9:u07:ring,, +12:u08:network., +9:u06:ring,, +14:u07:Provider's, +12:u07:network., +9:u14:ring,, +9:uI2:():-., +9:u05:ring,, +14:u06:Provider's, +12:u06:network., +9:u08:3.2)., +9:u13:ring,, +14:u14:provider's, +9:uI1:():-., +9:u04:ring,, +14:u05:Provider's, +12:u05:network., +9:u07:3.2)., +9:u08:node:, +9:u12:ring,, +14:u13:provider's, +6:u21:ri, +7:u22:rin, +8:u23:ring, +9:uI0:():-., +8:uI2:'.,,, +9:u03:ring,, +14:u04:Provider's, +8:u08:Node, +12:u04:network., +9:u06:3.2)., +9:u07:node:, +10:u08:rings., +9:u11:ring,, +14:u12:provider's, +8:uI1:'.,,, +7:uI2:""(, +9:u02:ring,, +14:u03:Provider's, +12:u03:network., +9:u05:3.2)., +9:u06:node:, +10:u07:rings., +10:u08:index:, +9:u10:ring,, +14:u11:provider's, +8:uI0:'.,,, +7:uI1:""(, +8:uI2:.).., +9:u01:ring,, +14:u02:Provider's, +8:u07:Node, +12:u02:network., +9:u04:3.2)., +9:u05:node:, +10:u06:rings., +10:u07:index:, +8:u08:less, +14:u10:provider's, +7:uI0:""(, +8:uI1:.).., +9:u00:ring,, +14:u01:Provider's, +8:u06:Node, +12:u01:network., +9:u03:3.2)., +9:u04:node:, +10:u05:rings., +10:u06:index:, +8:u07:less, +8:u14:node, +8:uI0:.).., +14:u00:Provider's, +8:u05:Node, +12:u08:process., +12:u00:network., +9:u02:3.2)., +9:u03:node:, +10:u04:rings., +10:u05:index:, +8:u06:less, +11:u08:master:, +8:u13:node, +8:u04:Node, +9:u01:3.2)., +9:u02:node:, +10:u03:rings., +10:u04:index:, +8:u05:less, +11:u07:master:, +8:u12:node, +13:u14:document., +7:u22:Nod, +8:u23:Node, +8:u03:Node, +12:u07:process., +10:u08:size)., +9:u00:3.2)., +9:u01:node:, +10:u02:rings., +10:u03:index:, +8:u04:less, +11:u06:master:, +14:u08:neighbors:, +8:u11:node, +13:u13:document., +8:u02:Node, +12:u06:process., +9:u00:node:, +10:u01:rings., +10:u02:index:, +8:u03:less, +11:u05:master:, +14:u07:neighbors:, +8:u10:node, +13:u12:document., +12:u14:process., +8:u01:Node, +12:u05:process., +10:u07:size)., +10:u00:rings., +10:u01:index:, +8:u02:less, +11:u04:master:, +14:u06:neighbors:, +10:u08:links:, +13:u11:document., +12:u13:process., +7:uI2:.-., +8:u00:Node, +12:u04:process., +10:u06:size)., +10:u00:index:, +8:u01:less, +11:u03:master:, +14:u05:neighbors:, +10:u07:links:, +13:u10:document., +12:u12:process., +10:u14:size)., +7:uI1:.-., +6:uI2::(, +12:u03:process., +10:u05:size)., +8:u00:less, +11:u02:master:, +14:u04:neighbors:, +10:u06:links:, +14:u08:direction:, +12:u11:process., +10:u13:size)., +7:uI0:.-., +6:uI1::(, +12:u02:process., +10:u04:size)., +7:u08:UN:, +11:u01:master:, +14:u03:neighbors:, +10:u05:links:, +14:u07:direction:, +12:u10:process., +10:u12:size)., +11:u14:express, +7:u22:siz, +8:u23:size, +6:uI0::(, +12:u01:process., +10:u03:size)., +7:u08:CW:, +11:u00:master:, +14:u02:neighbors:, +10:u04:links:, +14:u06:direction:, +6:u08:00, +10:u11:size)., +11:u13:express, +7:uI2::-., +12:u00:process., +10:u02:size)., +7:u07:UN:, +7:u08:AC:, +14:u01:neighbors:, +10:u03:links:, +14:u05:direction:, +6:u07:00, +6:u08:01, +10:u10:size)., +11:u12:express, +8:u23:Expr, +7:uI1::-., +10:u01:size)., +7:u06:UN:, +7:u07:CW:, +7:u08:EX:, +14:u00:neighbors:, +10:u02:links:, +14:u04:direction:, +6:u06:00, +6:u07:01, +11:u11:express, +7:u14:un:, +7:uI0::-., +10:u00:size)., +7:u05:UN:, +7:u06:CW:, +7:u07:AC:, +10:u01:links:, +14:u03:direction:, +6:u05:00, +6:u06:01, +11:u10:express, +7:u13:un:, +7:u14:cw:, +7:u04:UN:, +7:u05:CW:, +7:u06:AC:, +7:u07:EX:, +10:u08:links,, +10:u00:links:, +14:u02:direction:, +6:u04:00, +6:u05:01, +19:u08:Identification:, +7:u12:un:, +7:u13:cw:, +7:u14:ac:, +6:u21:UN, +7:u22:UN:, +7:u23:UN:, +7:u03:UN:, +7:u04:CW:, +7:u05:AC:, +7:u06:EX:, +14:u01:direction:, +6:u03:00, +6:u04:01, +19:u07:Identification:, +7:u11:un:, +7:u12:cw:, +7:u13:ac:, +7:u14:ex:, +6:u21:CW, +7:u22:CW:, +7:u23:CW:, +7:u02:UN:, +7:u03:CW:, +7:u04:AC:, +7:u05:EX:, +10:u07:links,, +8:u08:R_k:, +14:u00:direction:, +6:u02:00, +6:u03:01, +19:u06:Identification:, +7:u10:un:, +7:u11:cw:, +7:u12:ac:, +7:u13:ex:, +6:u21:AC, +7:u22:AC:, +7:u23:AC:, +7:u01:UN:, +7:u02:CW:, +7:u03:AC:, +7:u04:EX:, +10:u06:links,, +12:u08:neighbor, +6:u01:00, +6:u02:01, +19:u05:Identification:, +7:u10:cw:, +7:u11:ac:, +7:u12:ex:, +10:u14:links,, +6:u21:EX, +7:u22:EX:, +7:u23:EX:, +7:u00:UN:, +7:u01:CW:, +7:u02:AC:, +7:u03:EX:, +10:u05:links,, +8:u07:R_k:, +9:u08:RL_k:, +6:u00:00, +6:u01:01, +19:u04:Identification:, +12:u08:R_(k+1)., +7:u10:ac:, +7:u11:ex:, +10:u13:links,, +7:u00:CW:, +7:u01:AC:, +7:u02:EX:, +10:u04:links,, +8:u06:R_k:, +12:u07:neighbor, +10:u08:CL_jk:, +6:u00:01, +19:u03:Identification:, +12:u07:R_(k+1)., +7:u10:ex:, +10:u12:links,, +8:u14:r_k:, +7:u00:AC:, +7:u01:EX:, +10:u03:links,, +8:u05:R_k:, +12:u06:neighbor, +9:u07:RL_k:, +10:u08:AL_jk:, +19:u02:Identification:, +12:u06:R_(k+1)., +10:u11:links,, +8:u13:r_k:, +12:u14:neighbor, +9:uI2::.(-), +7:u00:EX:, +10:u02:links,, +8:u04:R_k:, +12:u05:neighbor, +9:u06:RL_k:, +10:u07:CL_jk:, +19:u01:Identification:, +12:u05:R_(k+1)., +10:u10:links,, +8:u12:r_k:, +12:u13:neighbor, +9:u14:rl_k:, +7:u22:R_k, +8:u23:R_k:, +9:uI1::.(-), +10:u01:links,, +8:u03:R_k:, +12:u04:neighbor, +9:u05:RL_k:, +10:u06:CL_jk:, +10:u07:AL_jk:, +19:u00:Identification:, +12:u04:R_(k+1)., +8:u11:r_k:, +12:u12:neighbor, +9:u13:rl_k:, +10:u14:cl_jk:, +7:u22:nei, +8:u23:neig, +9:uI0::.(-), +8:uI2::()., +10:u00:links,, +8:u02:R_k:, +12:u03:neighbor, +9:u04:RL_k:, +10:u05:CL_jk:, +10:u06:AL_jk:, +12:u03:R_(k+1)., +8:u10:r_k:, +12:u11:neighbor, +9:u12:rl_k:, +10:u13:cl_jk:, +10:u14:al_jk:, +6:u21:RL, +7:u22:RL_, +8:u23:RL_k, +8:uI1::()., +8:u01:R_k:, +12:u02:neighbor, +9:u03:RL_k:, +10:u04:CL_jk:, +10:u05:AL_jk:, +12:u02:R_(k+1)., +12:u10:neighbor, +9:u11:rl_k:, +10:u12:cl_jk:, +10:u13:al_jk:, +6:u21:CL, +7:u22:CL_, +8:u23:CL_j, +8:uI0::()., +8:u00:R_k:, +12:u01:neighbor, +9:u02:RL_k:, +10:u03:CL_jk:, +10:u04:AL_jk:, +12:u01:R_(k+1)., +9:u10:rl_k:, +10:u11:cl_jk:, +10:u12:al_jk:, +6:u21:AL, +7:u22:AL_, +8:u23:AL_j, +12:u00:neighbor, +9:u01:RL_k:, +10:u02:CL_jk:, +10:u03:AL_jk:, +12:u00:R_(k+1)., +10:u10:cl_jk:, +10:u11:al_jk:, +9:u00:RL_k:, +10:u01:CL_jk:, +10:u02:AL_jk:, +10:u10:al_jk:, +10:u00:CL_jk:, +10:u01:AL_jk:, +10:u00:AL_jk:, +11:u08:perhaps, +14:u08:mechanisms, +11:u07:perhaps, +11:u06:perhaps, +14:u07:mechanisms, +11:u14:perhaps, +11:u05:perhaps, +14:u06:mechanisms, +10:u08:simple, +11:u13:perhaps, +14:u14:mechanisms, +11:u04:perhaps, +14:u05:mechanisms, +10:u07:simple, +8:u08:very, +11:u12:perhaps, +14:u13:mechanisms, +8:u23:perh, +11:u03:perhaps, +14:u04:mechanisms, +14:u08:MPLS-based, +10:u06:simple, +8:u07:very, +9:u08:goals, +11:u11:perhaps, +14:u12:mechanisms, +11:u02:perhaps, +14:u03:mechanisms, +15:u08:reminiscent, +10:u05:simple, +8:u06:very, +9:u07:goals, +14:u08:resilience, +11:u10:perhaps, +14:u11:mechanisms, +11:u01:perhaps, +14:u02:mechanisms, +14:u07:MPLS-based, +12:u08:bring-up, +10:u04:simple, +8:u05:very, +9:u06:goals, +14:u07:resilience, +14:u10:mechanisms, +11:u00:perhaps, +14:u01:mechanisms, +14:u06:MPLS-based, +15:u07:reminiscent, +9:u08:These, +10:u03:simple, +8:u04:very, +9:u05:goals, +14:u06:resilience, +14:u14:mpls-based, +14:u00:mechanisms, +14:u05:MPLS-based, +15:u06:reminiscent, +12:u07:bring-up, +13:u08:signaling, +10:u02:simple, +8:u03:very, +9:u04:goals, +14:u05:resilience, +14:u13:mpls-based, +15:u14:reminiscent, +14:u04:MPLS-based, +15:u05:reminiscent, +12:u06:bring-up, +9:u07:These, +10:u01:simple, +8:u02:very, +9:u03:goals, +14:u04:resilience, +14:u08:protocols,, +14:u12:mpls-based, +15:u13:reminiscent, +12:u14:bring-up, +14:u03:MPLS-based, +15:u04:reminiscent, +12:u05:bring-up, +9:u06:These, +13:u07:signaling, +7:u08:Say, +10:u00:simple, +8:u01:very, +9:u02:goals, +14:u03:resilience, +14:u07:protocols,, +14:u11:mpls-based, +15:u12:reminiscent, +12:u13:bring-up, +9:u14:these, +7:u22:rem, +8:u23:remi, +8:uI2:-,-., +14:u02:MPLS-based, +15:u03:reminiscent, +12:u04:bring-up, +9:u05:These, +13:u06:signaling, +8:u00:very, +9:u01:goals, +14:u02:resilience, +14:u06:protocols,, +14:u10:mpls-based, +15:u11:reminiscent, +12:u12:bring-up, +9:u13:these, +13:u14:signaling, +6:u21:br, +7:u22:bri, +8:u23:brin, +8:uI1:-,-., +14:u01:MPLS-based, +15:u02:reminiscent, +12:u03:bring-up, +9:u04:These, +13:u05:signaling, +7:u07:Say, +9:u00:goals, +14:u01:resilience, +14:u05:protocols,, +8:u08:more, +15:u10:reminiscent, +12:u11:bring-up, +9:u12:these, +13:u13:signaling, +8:u23:Thes, +8:uI0:-,-., +14:u00:MPLS-based, +15:u01:reminiscent, +12:u02:bring-up, +9:u03:These, +13:u04:signaling, +7:u06:Say, +14:u00:resilience, +14:u04:protocols,, +8:u07:more, +12:u10:bring-up, +9:u11:these, +13:u12:signaling, +7:u14:say, +15:u00:reminiscent, +12:u01:bring-up, +9:u02:These, +13:u03:signaling, +7:u05:Say, +9:u08:knows, +14:u03:protocols,, +8:u06:more, +18:u08:"promiscuous"., +9:u10:these, +13:u11:signaling, +7:u13:say, +12:u00:bring-up, +9:u01:These, +13:u02:signaling, +7:u04:Say, +11:u08:express, +14:u02:protocols,, +8:u05:more, +18:u07:"promiscuous"., +13:u10:signaling, +7:u12:say, +9:u14:nodes, +6:u21:Sa, +7:u22:Say, +7:u23:Say, +9:u00:These, +13:u01:signaling, +7:u03:Say, +9:u07:knows, +14:u01:protocols,, +8:u04:more, +18:u06:"promiscuous"., +9:u08:links, +7:u11:say, +9:u13:nodes, +13:u00:signaling, +7:u02:Say, +9:u06:knows, +11:u07:express, +14:u00:protocols,, +8:u03:more, +18:u05:"promiscuous"., +9:u07:links, +7:u10:say, +9:u12:nodes, +9:u14:knows, +8:uI2:"".., +7:u01:Say, +9:u05:knows, +11:u06:express, +12:u08:rotating, +8:u02:more, +18:u04:"promiscuous"., +9:u06:links, +9:u11:nodes, +9:u13:knows, +8:uI1:"".., +7:u00:Say, +9:u04:knows, +11:u05:express, +17:u08:"multipoint":, +8:u01:more, +18:u03:"promiscuous"., +9:u05:links, +11:u08:unicast, +9:u10:nodes, +9:u12:knows, +5:u20:k, +6:u21:kn, +7:u22:kno, +8:u23:know, +8:uI0:"".., +9:u03:knows, +11:u04:express, +12:u07:rotating, +8:u00:more, +18:u02:"promiscuous"., +9:u04:links, +11:u07:unicast, +7:u08:any, +9:u11:knows, +8:u23:expr, +9:u02:knows, +11:u03:express, +12:u06:rotating, +17:u07:"multipoint":, +14:u08:balanced)., +18:u01:"promiscuous"., +9:u03:links, +11:u06:unicast, +7:u07:any, +9:u10:knows, +12:u14:rotating, +8:uI2:.,,-, +9:u01:knows, +11:u02:express, +12:u05:rotating, +17:u06:"multipoint":, +10:u08:choice, +18:u00:"promiscuous"., +9:u02:links, +11:u05:unicast, +7:u06:any, +8:u08:Both, +12:u13:rotating, +17:u14:"multipoint":, +8:uI1:.,,-, +9:u00:knows, +11:u01:express, +12:u04:rotating, +17:u05:"multipoint":, +14:u07:balanced)., +9:u01:links, +11:u04:unicast, +7:u05:any, +8:u07:Both, +12:u12:rotating, +17:u13:"multipoint":, +7:u14:can, +7:u22:rot, +8:u23:rota, +8:uI0:.,,-, +8:uI2:"":;, +11:u00:express, +12:u03:rotating, +17:u04:"multipoint":, +14:u06:balanced)., +10:u07:choice, +9:u00:links, +11:u03:unicast, +7:u04:any, +8:u06:Both, +12:u11:rotating, +17:u12:"multipoint":, +7:u13:can, +14:u14:balanced)., +6:u21:"m, +7:u22:"mu, +8:u23:"mul, +8:uI1:"":;, +9:uI2:,(..,, +12:u02:rotating, +17:u03:"multipoint":, +14:u05:balanced)., +10:u06:choice, +16:u08:connectivity, +11:u02:unicast, +7:u03:any, +8:u05:Both, +12:u10:rotating, +17:u11:"multipoint":, +7:u12:can, +14:u13:balanced)., +10:u14:choice, +7:u23:can, +8:uI0:"":;, +9:uI1:,(..,, +10:uI2:).-"";, +12:u01:rotating, +17:u02:"multipoint":, +14:u04:balanced)., +10:u05:choice, +11:u01:unicast, +7:u02:any, +8:u04:Both, +11:u08:between, +17:u10:"multipoint":, +7:u11:can, +14:u12:balanced)., +10:u13:choice, +9:uI0:,(..,, +10:uI1:).-"";, +12:u00:rotating, +17:u01:"multipoint":, +14:u03:balanced)., +10:u04:choice, +16:u07:connectivity, +9:u08:reach, +11:u00:unicast, +7:u01:any, +8:u03:Both, +11:u07:between, +7:u10:can, +14:u11:balanced)., +10:u12:choice, +7:u22:cho, +8:u23:choi, +10:uI0:).-"";, +17:u00:"multipoint":, +14:u02:balanced)., +10:u03:choice, +16:u06:connectivity, +7:u00:any, +8:u02:Both, +11:u06:between, +8:u08:R_i., +14:u10:balanced)., +10:u11:choice, +14:u01:balanced)., +10:u02:choice, +16:u05:connectivity, +9:u07:reach, +8:u01:Both, +11:u05:between, +8:u07:R_i., +10:u10:choice, +13:u14:different, +14:u00:balanced)., +10:u01:choice, +16:u04:connectivity, +9:u06:reach, +18:u08:configuration., +8:u00:Both, +11:u04:between, +8:u06:R_i., +8:u08:goal, +13:u13:different, +9:u14:reach, +10:u00:choice, +16:u03:connectivity, +9:u05:reach, +13:u08:discovery, +11:u03:between, +8:u05:R_i., +8:u07:goal, +13:u12:different, +9:u13:reach, +7:u22:dif, +8:u23:diff, +16:u02:connectivity, +9:u04:reach, +18:u07:configuration., +11:u02:between, +8:u04:R_i., +8:u06:goal, +7:u08:via, +13:u11:different, +9:u12:reach, +8:u23:reac, +16:u01:connectivity, +9:u03:reach, +18:u06:configuration., +13:u07:discovery, +11:u01:between, +8:u03:R_i., +8:u05:goal, +7:u07:via, +13:u10:different, +9:u11:reach, +18:u14:configuration., +16:u00:connectivity, +9:u02:reach, +18:u05:configuration., +13:u06:discovery, +9:u08:might, +11:u00:between, +8:u02:R_i., +8:u04:goal, +7:u06:via, +9:u10:reach, +18:u13:configuration., +13:u14:discovery, +9:u01:reach, +18:u04:configuration., +13:u05:discovery, +8:u01:R_i., +8:u03:goal, +7:u05:via, +18:u12:configuration., +13:u13:discovery, +10:uI2:-().,-, +9:u00:reach, +18:u03:configuration., +13:u04:discovery, +9:u07:might, +8:u00:R_i., +8:u02:goal, +7:u04:via, +18:u11:configuration., +13:u12:discovery, +8:u23:disc, +10:uI1:-().,-, +18:u02:configuration., +13:u03:discovery, +9:u06:might, +8:u01:goal, +7:u03:via, +18:u10:configuration., +13:u11:discovery, +9:u14:might, +10:uI0:-().,-, +18:u01:configuration., +13:u02:discovery, +9:u05:might, +8:u00:goal, +7:u02:via, +13:u10:discovery, +9:u13:might, +18:u00:configuration., +13:u01:discovery, +9:u04:might, +7:u01:via, +9:u12:might, +6:u21:mi, +7:u22:mig, +8:u23:migh, +13:u00:discovery, +9:u03:might, +7:u00:via, +9:u11:might, +9:u02:might, +9:u10:might, +9:u01:might, +9:u00:might, +8:u08:RID,, +8:u07:RID,, +10:u08:rings,, +8:u14:mpls, +8:u06:RID,, +17:u08:"promiscuous", +10:u07:rings,, +12:u08:simplify, +8:u13:mpls, +8:u14:rid,, +8:u05:RID,, +11:u08:listens, +10:u06:rings,, +12:u07:simplify, +8:u13:rid,, +8:u04:RID,, +17:u07:"promiscuous", +10:u05:rings,, +12:u06:simplify, +8:u12:rid,, +8:u23:RID,, +8:u03:RID,, +17:u06:"promiscuous", +11:u07:listens, +10:u04:rings,, +12:u05:simplify, +8:u11:rid,, +17:u14:"promiscuous", +8:u02:RID,, +17:u05:"promiscuous", +11:u06:listens, +8:u08:mode, +10:u03:rings,, +12:u04:simplify, +8:u10:rid,, +17:u13:"promiscuous", +11:u14:listens, +6:u22:To, +6:u23:To, +8:u01:RID,, +17:u04:"promiscuous", +11:u05:listens, +16:u08:provisioned;, +10:u02:rings,, +12:u03:simplify, +9:u08:means, +17:u12:"promiscuous", +11:u13:listens, +12:u14:non-zero, +6:u21:"p, +7:u22:"pr, +8:u23:"pro, +8:u00:RID,, +17:u03:"promiscuous", +11:u04:listens, +8:u07:mode, +10:u01:rings,, +12:u02:simplify, +9:u07:means, +14:u08:everything, +17:u11:"promiscuous", +11:u12:listens, +12:u13:non-zero, +6:u14:by, +17:u02:"promiscuous", +11:u03:listens, +8:u06:mode, +16:u07:provisioned;, +13:u08:protocols, +10:u00:rings,, +12:u01:simplify, +9:u06:means, +14:u07:everything, +17:u10:"promiscuous", +11:u11:listens, +12:u12:non-zero, +6:u13:by, +8:u14:mode, +7:u22:non, +8:u23:non-, +17:u01:"promiscuous", +11:u02:listens, +8:u05:mode, +16:u06:provisioned;, +12:u00:simplify, +9:u05:means, +14:u06:everything, +11:u10:listens, +12:u11:non-zero, +6:u12:by, +8:u13:mode, +16:u14:provisioned;, +6:u21:by, +6:u22:by, +6:u23:by, +17:u00:"promiscuous", +11:u01:listens, +8:u04:mode, +16:u05:provisioned;, +13:u07:protocols, +9:u04:means, +14:u05:everything, +12:u10:non-zero, +6:u11:by, +8:u12:mode, +16:u13:provisioned;, +7:u22:mod, +8:u23:mode, +7:uI2:;-., +11:u00:listens, +8:u03:mode, +16:u04:provisioned;, +13:u06:protocols, +9:u03:means, +14:u04:everything, +6:u10:by, +8:u11:mode, +16:u12:provisioned;, +13:u14:protocols, +7:uI1:;-., +8:u02:mode, +16:u03:provisioned;, +13:u05:protocols, +18:u08:point-to-point, +9:u02:means, +14:u03:everything, +8:u10:mode, +16:u11:provisioned;, +13:u13:protocols, +8:u14:each, +7:uI0:;-., +9:uI2:./-.,, +8:u01:mode, +16:u02:provisioned;, +13:u04:protocols, +18:u08:"auto-bundled", +9:u01:means, +14:u02:everything, +9:u08:(from, +16:u10:provisioned;, +13:u12:protocols, +8:u13:each, +9:uI1:./-.,, +8:u00:mode, +16:u01:provisioned;, +13:u03:protocols, +18:u07:point-to-point, +13:u08:neighbors, +9:u00:means, +14:u01:everything, +9:u07:(from, +13:u11:protocols, +8:u12:each, +6:u21:ea, +7:u22:eac, +8:u23:each, +9:uI0:./-.,, +16:u00:provisioned;, +13:u02:protocols, +18:u06:point-to-point, +18:u07:"auto-bundled", +12:u08:explicit, +14:u00:everything, +9:u06:(from, +13:u10:protocols, +8:u11:each, +18:u14:point-to-point, +7:uI2:-.,, +13:u01:protocols, +18:u05:point-to-point, +18:u06:"auto-bundled", +13:u07:neighbors, +11:u08:Group)., +9:u05:(from, +17:u08:configuration, +8:u10:each, +18:u13:point-to-point, +18:u14:"auto-bundled", +7:uI1:-.,, +12:uI2:--()"-"., +13:u00:protocols, +18:u04:point-to-point, +18:u05:"auto-bundled", +13:u06:neighbors, +12:u07:explicit, +8:u08:IGP;, +9:u04:(from, +17:u07:configuration, +18:u12:point-to-point, +18:u13:"auto-bundled", +13:u14:neighbors, +7:uI0:-.,, +12:uI1:--()"-"., +18:u03:point-to-point, +18:u04:"auto-bundled", +13:u05:neighbors, +12:u06:explicit, +11:u07:Group)., +9:u03:(from, +17:u06:configuration, +12:u08:however,, +18:u11:point-to-point, +18:u12:"auto-bundled", +13:u13:neighbors, +12:u14:explicit, +6:u21:"a, +7:u22:"au, +8:u23:"aut, +12:uI0:--()"-"., +18:u02:point-to-point, +18:u03:"auto-bundled", +13:u04:neighbors, +12:u05:explicit, +11:u06:Group)., +8:u07:IGP;, +9:u02:(from, +17:u05:configuration, +12:u07:however,, +18:u10:point-to-point, +18:u11:"auto-bundled", +13:u12:neighbors, +12:u13:explicit, +11:u14:group)., +18:u01:point-to-point, +18:u02:"auto-bundled", +13:u03:neighbors, +12:u04:explicit, +11:u05:Group)., +8:u06:IGP;, +9:u08:those, +9:u01:(from, +17:u04:configuration, +12:u06:however,, +9:u08:often, +18:u10:"auto-bundled", +13:u11:neighbors, +12:u12:explicit, +11:u13:group)., +8:u14:igp;, +18:u00:point-to-point, +18:u01:"auto-bundled", +13:u02:neighbors, +12:u03:explicit, +11:u04:Group)., +8:u05:IGP;, +10:u08:layer;, +9:u00:(from, +17:u03:configuration, +12:u05:however,, +9:u07:often, +10:u08:nodes., +13:u10:neighbors, +12:u11:explicit, +11:u12:group)., +8:u13:igp;, +6:u21:Gr, +7:u22:Gro, +8:u23:Grou, +6:uI2:;,, +18:u00:"auto-bundled", +13:u01:neighbors, +12:u02:explicit, +11:u03:Group)., +8:u04:IGP;, +9:u07:those, +17:u02:configuration, +12:u04:however,, +9:u06:often, +10:u07:nodes., +12:u10:explicit, +11:u11:group)., +8:u12:igp;, +6:u21:IG, +7:u22:IGP, +8:u23:IGP;, +6:uI1:;,, +13:u00:neighbors, +12:u01:explicit, +11:u02:Group)., +8:u03:IGP;, +9:u06:those, +10:u07:layer;, +17:u01:configuration, +12:u03:however,, +9:u05:often, +10:u06:nodes., +11:u10:group)., +8:u11:igp;, +9:u14:those, +6:uI0:;,, +12:u00:explicit, +11:u01:Group)., +8:u02:IGP;, +9:u05:those, +10:u06:layer;, +14:u08:discovered, +17:u00:configuration, +12:u02:however,, +9:u04:often, +10:u05:nodes., +8:u10:igp;, +9:u13:those, +10:u14:layer;, +11:u00:Group)., +8:u01:IGP;, +9:u04:those, +10:u05:layer;, +8:u08:RID., +12:u01:however,, +9:u03:often, +10:u04:nodes., +9:u12:those, +10:u13:layer;, +10:u14:result, +7:u22:tho, +8:u23:thos, +8:u00:IGP;, +9:u03:those, +10:u04:layer;, +14:u07:discovered, +12:u00:however,, +9:u02:often, +10:u03:nodes., +9:u11:those, +10:u12:layer;, +10:u13:result, +7:u22:lay, +8:u23:laye, +9:u02:those, +10:u03:layer;, +14:u06:discovered, +8:u07:RID., +9:u01:often, +10:u02:nodes., +9:u10:those, +10:u11:layer;, +10:u12:result, +14:u14:discovered, +8:u23:resu, +9:u01:those, +10:u02:layer;, +14:u05:discovered, +8:u06:RID., +9:u00:often, +10:u01:nodes., +14:u08:attributes, +10:u10:layer;, +10:u11:result, +14:u13:discovered, +8:u14:rid., +9:u00:those, +10:u01:layer;, +14:u04:discovered, +8:u05:RID., +9:u08:ring., +10:u00:nodes., +14:u07:attributes, +6:u08:up, +10:u10:result, +14:u12:discovered, +8:u13:rid., +9:uI2:.'();, +10:u00:layer;, +14:u03:discovered, +8:u04:RID., +14:u06:attributes, +6:u07:up, +14:u11:discovered, +8:u12:rid., +7:u14:two, +8:u23:RID., +9:uI1:.'();, +6:uI2:'., +14:u02:discovered, +8:u03:RID., +9:u07:ring., +14:u05:attributes, +6:u06:up, +14:u10:discovered, +8:u11:rid., +7:u13:two, +8:u14:then, +9:uI0:.'();, +6:uI1:'., +14:u01:discovered, +8:u02:RID., +9:u06:ring., +14:u08:directions, +14:u04:attributes, +6:u05:up, +8:u10:rid., +7:u12:two, +8:u13:then, +9:u14:ring., +6:u21:tw, +7:u22:two, +7:u23:two, +6:uI0:'., +14:u00:discovered, +8:u01:RID., +9:u05:ring., +14:u03:attributes, +6:u04:up, +8:u08:have, +7:u11:two, +8:u12:then, +9:u13:ring., +8:u23:then, +8:u00:RID., +9:u04:ring., +14:u07:directions, +14:u02:attributes, +6:u03:up, +8:u07:have, +7:u10:two, +8:u11:then, +9:u12:ring., +9:u03:ring., +14:u06:directions, +14:u01:attributes, +6:u02:up, +8:u06:have, +8:u10:then, +9:u11:ring., +14:u14:directions, +9:u02:ring., +14:u05:directions, +14:u00:attributes, +6:u01:up, +8:u05:have, +9:u10:ring., +14:u13:directions, +9:u01:ring., +14:u04:directions, +6:u00:up, +8:u04:have, +14:u12:directions, +7:u22:dir, +8:u23:dire, +7:uI2:-;,, +9:u00:ring., +14:u03:directions, +8:u03:have, +14:u11:directions, +7:uI1:-;,, +14:u02:directions, +8:u02:have, +14:u10:directions, +7:uI0:-;,, +14:u01:directions, +8:u01:have, +14:u00:directions, +8:u00:have, +18:u08:automatically., +9:u08:RL_k., +7:u08:R_i, +18:u07:automatically., +14:u08:propagates, +7:u07:R_i, +7:u14:its, +18:u06:automatically., +9:u07:RL_k., +12:u08:receives, +7:u06:R_i, +10:u08:around, +7:u13:its, +18:u14:automatically., +18:u05:automatically., +9:u06:RL_k., +14:u07:propagates, +7:u05:R_i, +10:u07:around, +6:u08:CW, +7:u12:its, +18:u13:automatically., +9:u14:rl_k., +7:u22:its, +7:u23:its, +18:u04:automatically., +9:u05:RL_k., +14:u06:propagates, +12:u07:receives, +7:u04:R_i, +10:u06:around, +6:u07:CW, +8:u08:fast, +7:u11:its, +18:u12:automatically., +9:u13:rl_k., +14:u14:propagates, +8:u23:auto, +18:u03:automatically., +9:u04:RL_k., +14:u05:propagates, +12:u06:receives, +7:u03:R_i, +10:u05:around, +6:u06:CW, +8:u07:fast, +11:u08:RSVP-TE, +7:u10:its, +18:u11:automatically., +9:u12:rl_k., +14:u13:propagates, +12:u14:receives, +18:u02:automatically., +9:u03:RL_k., +14:u04:propagates, +12:u05:receives, +8:u08:call, +7:u02:R_i, +10:u04:around, +6:u05:CW, +8:u06:fast, +11:u07:RSVP-TE, +9:u08:these, +18:u10:automatically., +9:u11:rl_k., +14:u12:propagates, +12:u13:receives, +8:u23:prop, +18:u01:automatically., +9:u02:RL_k., +14:u03:propagates, +12:u04:receives, +7:u01:R_i, +10:u03:around, +6:u04:CW, +8:u05:fast, +11:u06:RSVP-TE, +9:u07:these, +13:u08:admission, +9:u10:rl_k., +14:u11:propagates, +12:u12:receives, +18:u00:automatically., +9:u01:RL_k., +14:u02:propagates, +12:u03:receives, +8:u07:call, +13:u08:bandwidth, +7:u00:R_i, +10:u02:around, +6:u03:CW, +8:u04:fast, +11:u05:RSVP-TE, +9:u06:these, +13:u07:admission, +14:u10:propagates, +12:u11:receives, +9:u00:RL_k., +14:u01:propagates, +12:u02:receives, +8:u06:call, +12:u08:admitted, +10:u01:around, +6:u02:CW, +8:u03:fast, +11:u04:RSVP-TE, +9:u05:these, +13:u06:admission, +12:u10:receives, +8:u14:call, +8:uI2:,;,", +14:u00:propagates, +12:u01:receives, +8:u05:call, +13:u07:bandwidth, +10:u00:around, +6:u01:CW, +8:u02:fast, +11:u03:RSVP-TE, +9:u04:these, +13:u05:admission, +8:u13:call, +8:uI1:,;,", +7:uI2:".,, +12:u00:receives, +8:u04:call, +13:u06:bandwidth, +12:u07:admitted, +6:u00:CW, +8:u01:fast, +11:u02:RSVP-TE, +9:u03:these, +13:u04:admission, +8:u12:call, +13:u14:bandwidth, +8:u23:call, +8:uI0:,;,", +7:uI1:".,, +8:u03:call, +13:u05:bandwidth, +12:u06:admitted, +8:u00:fast, +11:u01:RSVP-TE, +9:u02:these, +13:u03:admission, +11:u08:setting, +8:u11:call, +13:u13:bandwidth, +12:u14:admitted, +7:uI0:".,, +8:u02:call, +13:u04:bandwidth, +12:u05:admitted, +10:u08:R_j+1,, +11:u00:RSVP-TE, +9:u01:these, +13:u02:admission, +11:u07:setting, +9:u08:AL_jk, +8:u10:call, +13:u12:bandwidth, +12:u13:admitted, +7:u22:ban, +8:u23:band, +8:u01:call, +13:u03:bandwidth, +12:u04:admitted, +11:u08:entries, +9:u00:these, +13:u01:admission, +11:u06:setting, +9:u07:AL_jk, +13:u11:bandwidth, +12:u12:admitted, +7:u22:adm, +8:u23:admi, +8:u00:call, +13:u02:bandwidth, +12:u03:admitted, +10:u07:R_j+1,, +9:u08:CL_jk, +13:u00:admission, +11:u05:setting, +9:u06:AL_jk, +13:u10:bandwidth, +12:u11:admitted, +7:uI2:,:-, +13:u01:bandwidth, +12:u02:admitted, +10:u06:R_j+1,, +11:u07:entries, +7:u08:LSR, +11:u04:setting, +9:u05:AL_jk, +12:u10:admitted, +10:u14:r_j+1,, +7:uI1:,:-, +7:uI2:.:,, +13:u00:bandwidth, +12:u01:admitted, +10:u05:R_j+1,, +11:u06:entries, +9:u07:CL_jk, +8:u08:next, +11:u03:setting, +9:u04:AL_jk, +10:u13:r_j+1,, +11:u14:entries, +7:uI0:,:-, +7:uI1:.:,, +9:uI2:,-,-., +12:u00:admitted, +10:u04:R_j+1,, +11:u05:entries, +9:u06:CL_jk, +7:u07:LSR, +14:u08:direction,, +11:u02:setting, +9:u03:AL_jk, +7:u08:hop, +10:u12:r_j+1,, +11:u13:entries, +9:u14:cl_jk, +7:u22:R_j, +8:u23:R_j+, +7:uI0:.:,, +9:uI1:,-,-., +10:u03:R_j+1,, +11:u04:entries, +9:u05:CL_jk, +7:u06:LSR, +8:u07:next, +9:u08:R_j-1, +11:u01:setting, +9:u02:AL_jk, +7:u07:hop, +7:u08:R_j, +10:u11:r_j+1,, +11:u12:entries, +9:u13:cl_jk, +7:u14:lsr, +7:u22:ent, +8:u23:entr, +9:uI0:,-,-., +10:u02:R_j+1,, +11:u03:entries, +9:u04:CL_jk, +7:u05:LSR, +8:u06:next, +14:u07:direction,, +13:u08:ingress)., +11:u00:setting, +9:u01:AL_jk, +7:u06:hop, +7:u07:R_j, +7:u08:(as, +10:u10:r_j+1,, +11:u11:entries, +9:u12:cl_jk, +7:u13:lsr, +8:u14:next, +10:u01:R_j+1,, +11:u02:entries, +9:u03:CL_jk, +7:u04:LSR, +8:u05:next, +14:u06:direction,, +9:u07:R_j-1, +12:u08:Clearly,, +9:u00:AL_jk, +7:u05:hop, +7:u06:R_j, +7:u07:(as, +11:u10:entries, +9:u11:cl_jk, +7:u12:lsr, +8:u13:next, +14:u14:direction,, +7:u22:LSR, +7:u23:LSR, +10:u00:R_j+1,, +11:u01:entries, +9:u02:CL_jk, +7:u03:LSR, +8:u04:next, +14:u05:direction,, +9:u06:R_j-1, +13:u07:ingress)., +7:u04:hop, +7:u05:R_j, +7:u06:(as, +7:u08:R_k, +9:u10:cl_jk, +7:u11:lsr, +8:u12:next, +14:u13:direction,, +9:u14:r_j-1, +7:u22:nex, +8:u23:next, +7:uI2:,-,, +11:u00:entries, +9:u01:CL_jk, +7:u02:LSR, +8:u03:next, +14:u04:direction,, +9:u05:R_j-1, +13:u06:ingress)., +12:u07:Clearly,, +33:u08:([I-D.ietf-mpls-rfc4379bis]),, +7:u03:hop, +7:u04:R_j, +7:u05:(as, +7:u07:R_k, +7:u10:lsr, +8:u11:next, +14:u12:direction,, +9:u13:r_j-1, +13:u14:ingress)., +7:uI1:,-,, +12:uI2:-(),-,-(, +9:u00:CL_jk, +7:u01:LSR, +8:u02:next, +14:u03:direction,, +9:u04:R_j-1, +13:u05:ingress)., +12:u06:Clearly,, +8:u08:test, +7:u02:hop, +7:u03:R_j, +7:u04:(as, +7:u06:R_k, +8:u10:next, +14:u11:direction,, +9:u12:r_j-1, +13:u13:ingress)., +12:u14:clearly,, +8:u23:R_j-, +7:uI0:,-,, +12:uI1:-(),-,-(, +7:u00:LSR, +8:u01:next, +14:u02:direction,, +9:u03:R_j-1, +13:u04:ingress)., +12:u05:Clearly,, +33:u07:([I-D.ietf-mpls-rfc4379bis]),, +16:u08:Furthermore,, +7:u01:hop, +7:u02:R_j, +7:u03:(as, +7:u05:R_k, +14:u10:direction,, +9:u11:r_j-1, +13:u12:ingress)., +12:u13:clearly,, +7:u22:ing, +8:u23:ingr, +12:uI0:-(),-,-(, +8:u00:next, +14:u01:direction,, +9:u02:R_j-1, +13:u03:ingress)., +12:u04:Clearly,, +33:u06:([I-D.ietf-mpls-rfc4379bis]),, +8:u07:test, +12:u08:installs, +7:u00:hop, +7:u01:R_j, +7:u02:(as, +7:u04:R_k, +9:u10:r_j-1, +13:u11:ingress)., +12:u12:clearly,, +33:u14:([i-d.ietf-mpls-rfc4379bis]),, +7:u22:Cle, +8:u23:Clea, +14:u00:direction,, +9:u01:R_j-1, +13:u02:ingress)., +12:u03:Clearly,, +33:u05:([I-D.ietf-mpls-rfc4379bis]),, +8:u06:test, +16:u07:Furthermore,, +7:u00:R_j, +7:u01:(as, +7:u03:R_k, +8:u08:LFIB, +13:u10:ingress)., +12:u11:clearly,, +33:u13:([i-d.ietf-mpls-rfc4379bis]),, +8:u14:test, +17:uI2:([-.--]),,-,,, +9:u00:R_j-1, +13:u01:ingress)., +12:u02:Clearly,, +33:u04:([I-D.ietf-mpls-rfc4379bis]),, +8:u05:test, +16:u06:Furthermore,, +12:u07:installs, +7:u00:(as, +7:u02:R_k, +8:u07:LFIB, +12:u10:clearly,, +33:u12:([i-d.ietf-mpls-rfc4379bis]),, +8:u13:test, +16:u14:furthermore,, +6:u21:([, +7:u22:([I, +8:u23:([I-, +17:uI1:([-.--]),,-,,, +13:u00:ingress)., +12:u01:Clearly,, +33:u03:([I-D.ietf-mpls-rfc4379bis]),, +8:u04:test, +16:u05:Furthermore,, +12:u06:installs, +7:u01:R_k, +8:u06:LFIB, +33:u11:([i-d.ietf-mpls-rfc4379bis]),, +8:u12:test, +16:u13:furthermore,, +12:u14:installs, +7:u22:tes, +8:u23:test, +17:uI0:([-.--]),,-,,, +12:u00:Clearly,, +33:u02:([I-D.ietf-mpls-rfc4379bis]),, +8:u03:test, +16:u04:Furthermore,, +12:u05:installs, +7:u00:R_k, +8:u05:LFIB, +33:u10:([i-d.ietf-mpls-rfc4379bis]),, +8:u11:test, +16:u12:furthermore,, +12:u13:installs, +6:u21:Fu, +7:u22:Fur, +8:u23:Furt, +33:u01:([I-D.ietf-mpls-rfc4379bis]),, +8:u02:test, +16:u03:Furthermore,, +12:u04:installs, +8:u04:LFIB, +10:u08:bypass, +8:u10:test, +16:u11:furthermore,, +12:u12:installs, +7:u22:ins, +8:u23:inst, +33:u00:([I-D.ietf-mpls-rfc4379bis]),, +8:u01:test, +16:u02:Furthermore,, +12:u03:installs, +8:u03:LFIB, +10:u07:bypass, +16:u10:furthermore,, +12:u11:installs, +8:u00:test, +16:u01:Furthermore,, +12:u02:installs, +9:u08:works, +8:u02:LFIB, +10:u06:bypass, +12:u10:installs, +16:u00:Furthermore,, +12:u01:installs, +8:u01:LFIB, +10:u05:bypass, +8:uI2:,,,-, +12:u00:installs, +9:u07:works, +9:u08:R_j+1, +8:u00:LFIB, +10:u04:bypass, +8:uI1:,,,-, +8:uI2:."",, +9:u06:works, +10:u03:bypass, +9:u08:fail,, +9:u14:works, +8:uI0:,,,-, +8:uI1:."",, +9:u05:works, +9:u07:R_j+1, +10:u02:bypass, +9:u07:fail,, +9:u13:works, +8:uI0:."",, +9:u04:works, +9:u06:R_j+1, +10:u01:bypass, +9:u06:fail,, +9:u12:works, +9:u14:r_j+1, +9:u03:works, +9:u05:R_j+1, +10:u00:bypass, +9:u05:fail,, +9:u11:works, +9:u13:r_j+1, +9:u02:works, +9:u04:R_j+1, +9:u04:fail,, +9:u10:works, +9:u12:r_j+1, +9:u01:works, +9:u03:R_j+1, +9:u03:fail,, +9:u11:r_j+1, +9:u00:works, +9:u02:R_j+1, +9:u02:fail,, +9:u10:r_j+1, +9:u01:R_j+1, +11:u08:failure, +9:u01:fail,, +9:u00:R_j+1, +9:u00:fail,, +11:u07:failure, +11:u06:failure, +14:u08:switchover, +7:u08:FRR, +11:u14:failure, +11:u05:failure, +7:u07:FRR, +8:u08:lead, +11:u13:failure, +11:u04:failure, +14:u07:switchover, +12:u08:working,, +7:u06:FRR, +8:u07:lead, +11:u12:failure, +6:u21:fa, +7:u22:fai, +8:u23:fail, +7:uI2:.,,, +11:u03:failure, +14:u06:switchover, +14:u08:direction., +7:u05:FRR, +8:u06:lead, +11:u11:failure, +14:u14:switchover, +7:uI1:.,,, +11:u02:failure, +14:u05:switchover, +12:u07:working,, +11:u08:Notify;, +7:u04:FRR, +8:u05:lead, +11:u10:failure, +14:u13:switchover, +7:u14:r_j, +7:uI0:.,,, +11:u01:failure, +14:u04:switchover, +12:u06:working,, +14:u07:direction., +15:u08:indications, +7:u03:FRR, +8:u04:lead, +14:u12:switchover, +7:u13:r_j, +12:u14:working,, +11:u00:failure, +14:u03:switchover, +12:u05:working,, +14:u06:direction., +11:u07:Notify;, +7:u02:FRR, +8:u03:lead, +13:u08:propagate, +14:u11:switchover, +7:u12:r_j, +12:u13:working,, +14:u14:direction., +7:u23:R_j, +14:u02:switchover, +12:u04:working,, +14:u05:direction., +11:u06:Notify;, +15:u07:indications, +7:u01:FRR, +8:u02:lead, +13:u07:propagate, +14:u10:switchover, +7:u11:r_j, +12:u12:working,, +14:u13:direction., +11:u14:notify;, +7:uI2:.-,, +14:u01:switchover, +12:u03:working,, +14:u04:direction., +11:u05:Notify;, +15:u06:indications, +7:u00:FRR, +8:u01:lead, +13:u06:propagate, +7:u10:r_j, +12:u11:working,, +14:u12:direction., +11:u13:notify;, +15:u14:indications, +7:uI1:.-,, +6:uI2:;., +14:u00:switchover, +12:u02:working,, +14:u03:direction., +11:u04:Notify;, +15:u05:indications, +8:u00:lead, +13:u05:propagate, +12:u10:working,, +14:u11:direction., +11:u12:notify;, +15:u13:indications, +8:u23:Noti, +7:uI0:.-,, +6:uI1:;., +12:u01:working,, +14:u02:direction., +11:u03:Notify;, +15:u04:indications, +15:u08:suboptimal., +13:u04:propagate, +9:u08:until, +14:u10:direction., +11:u11:notify;, +15:u12:indications, +6:uI0:;., +12:u00:working,, +14:u01:direction., +11:u02:Notify;, +15:u03:indications, +13:u03:propagate, +9:u07:until, +11:u10:notify;, +15:u11:indications, +14:u00:direction., +11:u01:Notify;, +15:u02:indications, +15:u07:suboptimal., +13:u02:propagate, +9:u06:until, +15:u10:indications, +11:u00:Notify;, +15:u01:indications, +15:u06:suboptimal., +8:u08:(and, +13:u01:propagate, +9:u05:until, +15:u14:suboptimal., +15:u00:indications, +15:u05:suboptimal., +13:u00:propagate, +9:u04:until, +10:u08:switch, +15:u13:suboptimal., +15:u04:suboptimal., +8:u07:(and, +11:u08:clearly, +9:u03:until, +10:u07:switch, +15:u12:suboptimal., +7:u22:sub, +8:u23:subo, +15:u03:suboptimal., +8:u06:(and, +9:u02:until, +10:u06:switch, +13:u08:unusable., +15:u11:suboptimal., +8:u14:(and, +15:u02:suboptimal., +8:u05:(and, +11:u07:clearly, +9:u01:until, +10:u05:switch, +13:u07:unusable., +9:u08:loop:, +15:u10:suboptimal., +8:u13:(and, +15:u01:suboptimal., +8:u04:(and, +11:u06:clearly, +9:u00:until, +10:u04:switch, +13:u06:unusable., +9:u07:loop:, +8:u12:(and, +11:u14:clearly, +6:u21:(a, +7:u22:(an, +8:u23:(and, +15:u00:suboptimal., +8:u03:(and, +11:u05:clearly, +10:u03:switch, +13:u05:unusable., +9:u06:loop:, +8:u11:(and, +11:u13:clearly, +8:u02:(and, +11:u04:clearly, +8:u08:most, +10:u02:switch, +13:u04:unusable., +9:u05:loop:, +8:u08:Each, +8:u10:(and, +11:u12:clearly, +7:u22:cle, +8:u23:clea, +8:u01:(and, +11:u03:clearly, +10:u01:switch, +13:u03:unusable., +9:u04:loop:, +8:u07:Each, +8:u08:2*n,, +11:u11:clearly, +8:u00:(and, +11:u02:clearly, +8:u07:most, +10:u00:switch, +13:u02:unusable., +9:u03:loop:, +8:u06:Each, +8:u07:2*n,, +11:u10:clearly, +8:uI2:-,.:, +11:u01:clearly, +8:u06:most, +11:u08:egress., +13:u01:unusable., +9:u02:loop:, +8:u05:Each, +8:u06:2*n,, +8:u14:most, +8:uI1:-,.:, +11:u00:clearly, +8:u05:most, +13:u00:unusable., +9:u01:loop:, +8:u04:Each, +8:u05:2*n,, +8:u13:most, +8:uI0:-,.:, +7:uI2:*,., +8:u04:most, +11:u07:egress., +9:u08:below, +9:u00:loop:, +8:u03:Each, +8:u04:2*n,, +8:u12:most, +6:u14:cw, +7:uI1:*,., +9:uI2:.(..,, +8:u03:most, +11:u06:egress., +12:u08:presence, +8:u02:Each, +8:u03:2*n,, +8:u11:most, +6:u13:cw, +11:u14:egress., +7:uI0:*,., +9:uI1:.(..,, +8:u02:most, +11:u05:egress., +9:u07:below, +11:u08:looping, +8:u01:Each, +8:u02:2*n,, +8:u10:most, +6:u12:cw, +11:u13:egress., +6:u22:CW, +6:u23:CW, +9:uI0:.(..,, +8:u01:most, +11:u04:egress., +9:u06:below, +12:u07:presence, +8:u00:Each, +8:u01:2*n,, +6:u11:cw, +11:u12:egress., +9:u14:below, +6:u21:eg, +7:u22:egr, +8:u23:egre, +8:u00:most, +11:u03:egress., +9:u05:below, +12:u06:presence, +11:u07:looping, +13:u08:optional., +8:u00:2*n,, +6:u10:cw, +11:u11:egress., +9:u13:below, +12:u14:presence, +11:u02:egress., +9:u04:below, +12:u05:presence, +11:u06:looping, +11:u10:egress., +9:u12:below, +12:u13:presence, +11:u14:looping, +7:u22:bel, +8:u23:belo, +11:u01:egress., +9:u03:below, +12:u04:presence, +11:u05:looping, +13:u07:optional., +6:u08:At, +9:u11:below, +12:u12:presence, +11:u13:looping, +11:u00:egress., +9:u02:below, +12:u03:presence, +11:u04:looping, +13:u06:optional., +9:u10:below, +12:u11:presence, +11:u12:looping, +13:u14:optional., +7:u22:loo, +8:u23:loop, +9:u01:below, +12:u02:presence, +11:u03:looping, +13:u05:optional., +6:u07:At, +12:u10:presence, +11:u11:looping, +13:u13:optional., +9:u00:below, +12:u01:presence, +11:u02:looping, +13:u04:optional., +6:u06:At, +9:u08:label, +11:u10:looping, +13:u12:optional., +6:u14:at, +7:u22:opt, +8:u23:opti, +12:u00:presence, +11:u01:looping, +13:u03:optional., +6:u05:At, +13:u11:optional., +6:u13:at, +11:u00:looping, +13:u02:optional., +6:u04:At, +9:u07:label, +13:u10:optional., +6:u12:at, +6:u22:At, +6:u23:At, +13:u01:optional., +6:u03:At, +9:u06:label, +6:u11:at, +9:u14:label, +13:u00:optional., +6:u02:At, +9:u05:label, +6:u10:at, +9:u13:label, +9:uI2:-,-.,, +6:u01:At, +9:u04:label, +9:u12:label, +7:u22:lab, +8:u23:labe, +9:uI1:-,-.,, +6:u00:At, +9:u03:label, +9:u11:label, +9:uI0:-,-.,, +9:u02:label, +9:u10:label, +9:u01:label, +12:u08:CL_j+1,k, +8:u08:sets, +9:u00:label, +8:u07:sets, +12:u07:CL_j+1,k, +8:u06:sets, +12:u06:CL_j+1,k, +8:u05:sets, +6:u08:R1, +12:u14:cl_j+1,k, +12:u05:CL_j+1,k, +13:u08:clockwise, +8:u04:sets, +6:u07:R1, +12:u13:cl_j+1,k, +12:u04:CL_j+1,k, +8:u03:sets, +6:u06:R1, +12:u12:cl_j+1,k, +12:u03:CL_j+1,k, +13:u07:clockwise, +8:u02:sets, +6:u05:R1, +12:u11:cl_j+1,k, +12:u02:CL_j+1,k, +13:u06:clockwise, +8:u01:sets, +6:u04:R1, +12:u10:cl_j+1,k, +12:u01:CL_j+1,k, +13:u05:clockwise, +54:u08:+------+--------+-----------+--------+-----------+, +8:u00:sets, +6:u03:R1, +12:u08:entries:, +12:u00:CL_j+1,k, +13:u04:clockwise, +6:u02:R1, +12:u07:entries:, +7:u22:clo, +8:u23:cloc, +13:u03:clockwise, +54:u07:+------+--------+-----------+--------+-----------+, +6:u01:R1, +12:u06:entries:, +8:u08:Dest, +8:u14:lfib, +13:u02:clockwise, +54:u06:+------+--------+-----------+--------+-----------+, +6:u00:R1, +12:u05:entries:, +8:u07:Dest, +8:u13:lfib, +54:u14:+------+--------+-----------+--------+-----------+, +13:u01:clockwise, +54:u05:+------+--------+-----------+--------+-----------+, +12:u04:entries:, +8:u06:Dest, +7:u08:..., +8:u12:lfib, +54:u13:+------+--------+-----------+--------+-----------+, +6:u21:LF, +7:u22:LFI, +8:u23:LFIB, +48:uI2:--------------------------------------------, +6:uI2:44, +13:u00:clockwise, +54:u04:+------+--------+-----------+--------+-----------+, +12:u03:entries:, +8:u05:Dest, +7:u07:..., +8:u11:lfib, +54:u12:+------+--------+-----------+--------+-----------+, +48:uI1:--------------------------------------------, +8:uI2:////, +6:uI1:44, +54:u03:+------+--------+-----------+--------+-----------+, +12:u02:entries:, +8:u04:Dest, +7:u06:..., +8:u10:lfib, +54:u11:+------+--------+-----------+--------+-----------+, +48:uI0:--------------------------------------------, +8:uI1:////, +6:uI0:44, +54:u02:+------+--------+-----------+--------+-----------+, +12:u01:entries:, +8:u03:Dest, +7:u05:..., +54:u10:+------+--------+-----------+--------+-----------+, +8:uI0:////, +54:u01:+------+--------+-----------+--------+-----------+, +12:u00:entries:, +8:u02:Dest, +7:u04:..., +54:u00:+------+--------+-----------+--------+-----------+, +8:u01:Dest, +7:u03:..., +6:u08:R4, +10:u08:L40/R0, +8:u00:Dest, +7:u02:..., +6:u07:R4, +10:u08:L42/R2, +7:u01:..., +6:u06:R4, +10:u07:L42/R2, +10:u07:L40/R0, +7:u00:..., +6:u05:R4, +10:u06:L42/R2, +10:u06:L40/R0, +6:u04:R4, +10:u05:L42/R2, +10:u14:l40/r0, +10:u05:L40/R0, +10:u08:L50/R0, +6:u03:R4, +10:u04:L42/R2, +10:u08:L52/R2, +10:u13:l40/r0, +10:u14:l42/r2, +6:uI2://, +10:u04:L40/R0, +6:u02:R4, +10:u03:L42/R2, +10:u07:L52/R2, +10:u12:l40/r0, +10:u13:l42/r2, +6:u21:L4, +7:u22:L40, +8:u23:L40/, +6:uI1://, +10:u03:L40/R0, +10:u07:L50/R0, +6:u01:R4, +10:u02:L42/R2, +10:u06:L52/R2, +10:u11:l40/r0, +10:u12:l42/r2, +7:u22:L42, +8:u23:L42/, +6:uI0://, +10:u02:L40/R0, +10:u06:L50/R0, +6:u00:R4, +10:u01:L42/R2, +10:u05:L52/R2, +10:u10:l40/r0, +10:u11:l42/r2, +10:u14:l50/r0, +10:u01:L40/R0, +10:u05:L50/R0, +10:u00:L42/R2, +10:u04:L52/R2, +10:u10:l42/r2, +10:u13:l50/r0, +10:u14:l52/r2, +10:u00:L40/R0, +10:u04:L50/R0, +10:u03:L52/R2, +10:u12:l50/r0, +10:u13:l52/r2, +6:u21:L5, +7:u22:L50, +8:u23:L50/, +10:u03:L50/R0, +10:u02:L52/R2, +10:u11:l50/r0, +10:u12:l52/r2, +7:u22:L52, +8:u23:L52/, +10:u02:L50/R0, +10:u01:L52/R2, +10:u10:l50/r0, +10:u11:l52/r2, +10:u01:L50/R0, +8:u08:R1's, +10:u00:L52/R2, +10:u10:l52/r2, +10:u00:L50/R0, +8:u07:R1's, +8:u06:R1's, +18:u08:Auto-discovery, +8:u14:r1's, +8:u05:R1's, +16:u08:announcement, +8:u13:r1's, +8:u04:R1's, +18:u07:Auto-discovery, +9:u08:third, +10:u08:phase., +8:u12:r1's, +6:u21:R1, +7:u22:R1', +8:u23:R1's, +8:u03:R1's, +18:u06:Auto-discovery, +16:u07:announcement, +6:u08:S1, +10:u07:phase., +9:u08:phase, +8:u11:r1's, +18:u14:auto-discovery, +8:u02:R1's, +18:u05:Auto-discovery, +16:u06:announcement, +9:u07:third, +10:u06:phase., +9:u07:phase, +8:u10:r1's, +18:u13:auto-discovery, +16:u14:announcement, +8:u01:R1's, +18:u04:Auto-discovery, +16:u05:announcement, +9:u06:third, +6:u07:S1, +10:u05:phase., +9:u06:phase, +18:u12:auto-discovery, +16:u13:announcement, +9:u14:third, +8:u23:Auto, +8:u00:R1's, +18:u03:Auto-discovery, +16:u04:announcement, +9:u05:third, +6:u06:S1, +10:u04:phase., +9:u05:phase, +18:u11:auto-discovery, +16:u12:announcement, +9:u13:third, +6:u14:s1, +7:u22:ann, +8:u23:anno, +18:u02:Auto-discovery, +16:u03:announcement, +9:u04:third, +6:u05:S1, +10:u03:phase., +9:u04:phase, +18:u10:auto-discovery, +16:u11:announcement, +9:u12:third, +6:u13:s1, +8:u23:thir, +18:u01:Auto-discovery, +16:u02:announcement, +9:u03:third, +6:u04:S1, +10:u02:phase., +9:u03:phase, +16:u10:announcement, +9:u11:third, +6:u12:s1, +6:u21:S1, +6:u22:S1, +6:u23:S1, +18:u00:Auto-discovery, +16:u01:announcement, +9:u02:third, +6:u03:S1, +10:u01:phase., +9:u02:phase, +9:u10:third, +6:u11:s1, +16:u00:announcement, +9:u01:third, +6:u02:S1, +10:u00:phase., +9:u01:phase, +6:u10:s1, +9:u00:third, +6:u01:S1, +9:u00:phase, +6:u00:S1, +13:u08:\________, +7:u08:All, +6:u14:r1, +13:u07:\________, +6:u13:r1, +13:u06:\________, +7:u07:All, +6:u12:r1, +13:u14:\________, +6:u22:R1, +6:u23:R1, +13:u05:\________, +7:u06:All, +6:u11:r1, +13:u13:\________, +13:u04:\________, +7:u05:All, +6:u10:r1, +13:u12:\________, +6:u21:\_, +7:u22:\__, +8:u23:\___, +13:u03:\________, +7:u04:All, +13:u11:\________, +7:u22:All, +7:u23:All, +13:u02:\________, +7:u03:All, +13:u10:\________, +13:u01:\________, +7:u02:All, +13:u00:\________, +7:u01:All, +7:u00:All, +12:u08:consists, +9:u08:TLVs., +12:u07:consists, +10:u08:node's, +12:u06:consists, +9:u07:TLVs., +11:u08:Details, +14:u08:neighbors., +12:u14:consists, +9:uI2:--()., +12:u05:consists, +9:u06:TLVs., +10:u07:node's, +17:u08:corresponding, +14:u07:neighbors., +12:u13:consists, +9:u14:tlvs., +9:uI1:--()., +12:u04:consists, +9:u05:TLVs., +10:u06:node's, +11:u07:Details, +8:u08:[RMR, +14:u06:neighbors., +7:u08:IGP, +12:u12:consists, +9:u13:tlvs., +10:u14:node's, +9:uI0:--()., +12:u03:consists, +9:u04:TLVs., +10:u05:node's, +11:u06:Details, +17:u07:corresponding, +14:u05:neighbors., +7:u07:IGP, +12:u11:consists, +9:u12:tlvs., +10:u13:node's, +11:u14:details, +7:u22:TLV, +8:u23:TLVs, +8:uI2:'.-., +12:u02:consists, +9:u03:TLVs., +10:u04:node's, +11:u05:Details, +17:u06:corresponding, +8:u07:[RMR, +14:u04:neighbors., +7:u06:IGP, +12:u10:consists, +9:u11:tlvs., +10:u12:node's, +11:u13:details, +17:u14:corresponding, +8:uI1:'.-., +12:u01:consists, +9:u02:TLVs., +10:u03:node's, +11:u04:Details, +17:u05:corresponding, +8:u06:[RMR, +14:u03:neighbors., +7:u05:IGP, +7:u08:Nbr, +9:u10:tlvs., +10:u11:node's, +11:u12:details, +17:u13:corresponding, +8:u14:[rmr, +7:u22:Det, +8:u23:Deta, +8:uI0:'.-., +12:u00:consists, +9:u01:TLVs., +10:u02:node's, +11:u03:Details, +17:u04:corresponding, +8:u05:[RMR, +14:u02:neighbors., +7:u04:IGP, +7:u07:Nbr, +12:u08:Neighbor, +10:u10:node's, +11:u11:details, +17:u12:corresponding, +8:u13:[rmr, +7:u22:cor, +8:u23:corr, +15:uI2:[][][][][-], +9:u00:TLVs., +10:u01:node's, +11:u02:Details, +17:u03:corresponding, +8:u04:[RMR, +14:u01:neighbors., +7:u03:IGP, +7:u06:Nbr, +12:u07:Neighbor, +11:u10:details, +17:u11:corresponding, +8:u12:[rmr, +7:u22:[RM, +8:u23:[RMR, +15:uI1:[][][][][-], +10:u00:node's, +11:u01:Details, +17:u02:corresponding, +8:u03:[RMR, +14:u00:neighbors., +7:u02:IGP, +7:u05:Nbr, +12:u06:Neighbor, +17:u10:corresponding, +8:u11:[rmr, +15:uI0:[][][][][-], +12:uI2:[][][][], +11:u00:Details, +17:u01:corresponding, +8:u02:[RMR, +37:u08:+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+, +7:u01:IGP, +7:u04:Nbr, +12:u05:Neighbor, +8:u10:[rmr, +12:uI1:[][][][], +17:u00:corresponding, +8:u01:[RMR, +7:u08:|MV, +7:u00:IGP, +7:u03:Nbr, +12:u04:Neighbor, +12:uI0:[][][][], +8:u00:[RMR, +37:u07:+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+, +7:u08:|SU, +7:u02:Nbr, +12:u03:Neighbor, +37:u06:+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+, +7:u07:|MV, +7:u01:Nbr, +12:u02:Neighbor, +7:u08:|M|, +37:u14:+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+, +37:u05:+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+, +7:u06:|MV, +7:u07:|SU, +7:u08:MV:, +7:u00:Nbr, +12:u01:Neighbor, +7:u07:|M|, +37:u13:+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+, +7:u14:|mv, +20:uI2:----------------, +37:u04:+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+, +7:u05:|MV, +7:u06:|SU, +7:u08:SS:, +12:u00:Neighbor, +7:u06:|M|, +37:u12:+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+, +7:u13:|mv, +7:u14:|su, +20:uI1:----------------, +37:u03:+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+, +7:u04:|MV, +7:u05:|SU, +7:u07:MV:, +8:u08:(100, +7:u05:|M|, +13:u08:Supported, +37:u11:+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+, +7:u12:|mv, +7:u13:|su, +6:u21:|M, +7:u22:|MV, +7:u23:|MV, +20:uI0:----------------, +37:u02:+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+, +7:u03:|MV, +7:u04:|SU, +7:u06:MV:, +7:u07:SS:, +8:u08:MBZ:, +7:u04:|M|, +13:u07:Supported, +37:u10:+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+, +7:u11:|mv, +7:u12:|su, +7:u14:mv:, +6:u21:|S, +7:u22:|SU, +7:u23:|SU, +37:u01:+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+, +7:u02:|MV, +7:u03:|SU, +7:u05:MV:, +7:u06:SS:, +8:u07:(100, +7:u08:SO:, +7:u03:|M|, +13:u06:Supported, +8:u08:Must, +7:u10:|mv, +7:u11:|su, +7:u13:mv:, +7:u14:ss:, +37:u00:+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+, +7:u01:|MV, +7:u02:|SU, +7:u04:MV:, +7:u05:SS:, +8:u06:(100, +8:u07:MBZ:, +7:u08:SU:, +7:u02:|M|, +13:u05:Supported, +8:u07:Must, +7:u10:|su, +7:u12:mv:, +7:u13:ss:, +8:u14:(100, +6:u21:MV, +7:u22:MV:, +7:u23:MV:, +7:u00:|MV, +7:u01:|SU, +7:u03:MV:, +7:u04:SS:, +8:u05:(100, +8:u06:MBZ:, +7:u07:SO:, +7:u01:|M|, +13:u04:Supported, +8:u06:Must, +13:u08:Signaling, +7:u11:mv:, +7:u12:ss:, +8:u13:(100, +8:u14:mbz:, +6:u21:SS, +7:u22:SS:, +7:u23:SS:, +9:uI2:(-;;), +7:u00:|SU, +7:u02:MV:, +7:u03:SS:, +8:u04:(100, +8:u05:MBZ:, +7:u06:SO:, +7:u07:SU:, +9:u08:Flags, +7:u00:|M|, +13:u03:Supported, +8:u05:Must, +13:u07:Signaling, +7:u10:mv:, +7:u11:ss:, +8:u12:(100, +8:u13:mbz:, +7:u14:so:, +6:u21:(1, +7:u22:(10, +8:u23:(100, +9:uI1:(-;;), +7:u01:MV:, +7:u02:SS:, +8:u03:(100, +8:u04:MBZ:, +7:u05:SO:, +7:u06:SU:, +13:u02:Supported, +8:u04:Must, +13:u06:Signaling, +7:u10:ss:, +8:u11:(100, +8:u12:mbz:, +7:u13:so:, +7:u14:su:, +6:u21:MB, +7:u22:MBZ, +8:u23:MBZ:, +9:uI0:(-;;), +9:uI2::(;;), +7:u00:MV:, +7:u01:SS:, +8:u02:(100, +8:u03:MBZ:, +7:u04:SO:, +7:u05:SU:, +9:u07:Flags, +13:u01:Supported, +8:u03:Must, +13:u05:Signaling, +8:u10:(100, +8:u11:mbz:, +7:u12:so:, +7:u13:su:, +5:u14:m, +6:u21:SO, +7:u22:SO:, +7:u23:SO:, +9:uI1::(;;), +10:uI2::(;;-), +7:u00:SS:, +8:u01:(100, +8:u02:MBZ:, +7:u03:SO:, +7:u04:SU:, +9:u06:Flags, +13:u00:Supported, +8:u02:Must, +13:u04:Signaling, +8:u10:mbz:, +7:u11:so:, +7:u12:su:, +5:u13:m, +9:u14:flags, +6:u21:SU, +7:u22:SU:, +7:u23:SU:, +9:uI0::(;;), +10:uI1::(;;-), +8:uI2::(,), +8:u00:(100, +8:u01:MBZ:, +7:u02:SO:, +7:u03:SU:, +9:u05:Flags, +8:u01:Must, +13:u03:Signaling, +7:u10:so:, +7:u11:su:, +5:u12:m, +9:u13:flags, +5:u21:M, +5:u22:M, +5:u23:M, +10:uI0::(;;-), +8:uI1::(,), +8:u00:MBZ:, +7:u01:SO:, +7:u02:SU:, +9:u04:Flags, +7:u08:|RD, +8:u00:Must, +13:u02:Signaling, +7:u10:su:, +5:u11:m, +9:u12:flags, +6:u21:Fl, +7:u22:Fla, +8:u23:Flag, +8:uI0::(,), +7:u00:SO:, +7:u01:SU:, +9:u03:Flags, +7:u08:MBZ, +13:u01:Signaling, +9:u08:|OAM|, +5:u10:m, +9:u11:flags, +7:u00:SU:, +9:u02:Flags, +7:u07:|RD, +13:u00:Signaling, +9:u07:|OAM|, +9:u10:flags, +9:u01:Flags, +7:u06:|RD, +7:u07:MBZ, +9:u06:|OAM|, +7:u14:|rd, +9:u00:Flags, +7:u05:|RD, +7:u06:MBZ, +7:u08:RD:, +9:u05:|OAM|, +7:u13:|rd, +7:u14:mbz, +7:u04:|RD, +7:u05:MBZ, +8:u08:OAM:, +9:u04:|OAM|, +7:u12:|rd, +7:u13:mbz, +6:u21:|R, +7:u22:|RD, +7:u23:|RD, +7:u03:|RD, +7:u04:MBZ, +7:u07:RD:, +9:u03:|OAM|, +7:u08:OAM, +7:u11:|rd, +7:u12:mbz, +7:u23:MBZ, +7:u02:|RD, +7:u03:MBZ, +7:u06:RD:, +8:u07:OAM:, +9:u02:|OAM|, +7:u07:OAM, +7:u10:|rd, +7:u11:mbz, +7:u14:rd:, +7:u01:|RD, +7:u02:MBZ, +7:u05:RD:, +8:u06:OAM:, +9:u01:|OAM|, +7:u06:OAM, +7:u10:mbz, +7:u13:rd:, +8:u14:oam:, +7:u00:|RD, +7:u01:MBZ, +7:u04:RD:, +8:u05:OAM:, +9:u00:|OAM|, +7:u05:OAM, +7:u12:rd:, +8:u13:oam:, +6:u21:RD, +7:u22:RD:, +7:u23:RD:, +10:uI2::(;;;), +7:u00:MBZ, +7:u03:RD:, +8:u04:OAM:, +7:u04:OAM, +7:u11:rd:, +8:u12:oam:, +6:u21:OA, +7:u22:OAM, +8:u23:OAM:, +10:uI1::(;;;), +7:u02:RD:, +8:u03:OAM:, +10:u08:value., +7:u03:OAM, +7:u10:rd:, +8:u11:oam:, +10:uI0::(;;;), +7:u01:RD:, +8:u02:OAM:, +17:u08:participating, +7:u02:OAM, +8:u10:oam:, +7:u00:RD:, +8:u01:OAM:, +10:u07:value., +7:u01:OAM, +7:u08:in,, +12:u14:example,, +8:u00:OAM:, +10:u06:value., +17:u07:participating, +7:u00:OAM, +7:u07:in,, +12:u13:example,, +10:u14:value., +6:u21:Ea, +7:u22:Eac, +8:u23:Each, +10:u05:value., +17:u06:participating, +7:u06:in,, +12:u12:example,, +10:u13:value., +17:u14:participating, +7:u22:exa, +8:u23:exam, +10:u04:value., +17:u05:participating, +7:u05:in,, +12:u11:example,, +10:u12:value., +17:u13:participating, +10:u03:value., +17:u04:participating, +7:u04:in,, +12:u10:example,, +10:u11:value., +17:u12:participating, +10:u02:value., +17:u03:participating, +7:u03:in,, +10:u10:value., +17:u11:participating, +10:u01:value., +17:u02:participating, +9:u08:timer, +7:u02:in,, +17:u10:participating, +10:u00:value., +17:u01:participating, +7:u01:in,, +7:u08:T1;, +17:u00:participating, +9:u07:timer, +7:u00:in,, +7:u07:T1;, +9:u06:timer, +7:u06:T1;, +9:u14:timer, +9:u05:timer, +7:u05:T1;, +9:u13:timer, +9:u04:timer, +7:u04:T1;, +9:u12:timer, +9:u03:timer, +7:u03:T1;, +9:u11:timer, +9:u02:timer, +7:u02:T1;, +9:u10:timer, +9:u01:timer, +7:u01:T1;, +9:u00:timer, +10:u08:phase,, +7:u00:T1;, +10:u07:phase,, +10:u06:phase,, +17:u08:readvertising, +11:u08:highest, +10:u14:phase,, +10:u05:phase,, +11:u07:highest, +10:u13:phase,, +10:u04:phase,, +17:u07:readvertising, +11:u06:highest, +10:u12:phase,, +6:u21:ph, +7:u22:pha, +8:u23:phas, +10:u03:phase,, +17:u06:readvertising, +11:u08:exactly, +11:u05:highest, +10:u11:phase,, +17:u14:readvertising, +10:u02:phase,, +17:u05:readvertising, +11:u08:Barring, +11:u04:highest, +8:u08:one;, +10:u10:phase,, +17:u13:readvertising, +10:u01:phase,, +17:u04:readvertising, +11:u07:exactly, +11:u03:highest, +8:u07:one;, +12:u08:software, +17:u12:readvertising, +8:u23:read, +10:u00:phase,, +17:u03:readvertising, +11:u06:exactly, +11:u07:Barring, +18:u08:announcements., +11:u02:highest, +8:u06:one;, +12:u07:software, +17:u11:readvertising, +11:u14:exactly, +17:u02:readvertising, +11:u05:exactly, +11:u06:Barring, +11:u08:values,, +11:u01:highest, +8:u05:one;, +12:u06:software, +17:u10:readvertising, +11:u13:exactly, +11:u14:barring, +7:uI2:;,., +17:u01:readvertising, +11:u04:exactly, +11:u05:Barring, +18:u07:announcements., +10:u08:second, +11:u00:highest, +8:u04:one;, +12:u05:software, +11:u12:exactly, +11:u13:barring, +8:u23:exac, +7:uI1:;,., +17:u00:readvertising, +11:u03:exactly, +11:u04:Barring, +18:u06:announcements., +11:u07:values,, +8:u08:just, +8:u03:one;, +12:u04:software, +10:u08:lowest, +11:u11:exactly, +11:u12:barring, +18:u14:announcements., +7:u22:Bar, +8:u23:Barr, +7:uI0:;,., +11:u02:exactly, +11:u03:Barring, +18:u05:announcements., +11:u06:values,, +10:u07:second, +10:u08:master, +8:u02:one;, +12:u03:software, +10:u07:lowest, +11:u10:exactly, +11:u11:barring, +18:u13:announcements., +11:u14:values,, +11:u01:exactly, +11:u02:Barring, +18:u04:announcements., +11:u05:values,, +10:u06:second, +8:u07:just, +8:u01:one;, +12:u02:software, +10:u06:lowest, +10:u08:(since, +11:u10:barring, +18:u12:announcements., +11:u13:values,, +10:u14:second, +11:u00:exactly, +11:u01:Barring, +18:u03:announcements., +11:u04:values,, +10:u05:second, +8:u06:just, +10:u07:master, +11:u08:master., +8:u00:one;, +12:u01:software, +10:u05:lowest, +10:u07:(since, +18:u11:announcements., +11:u12:values,, +10:u13:second, +8:u14:just, +11:u00:Barring, +18:u02:announcements., +11:u03:values,, +10:u04:second, +8:u05:just, +10:u06:master, +9:u08:times, +12:u00:software, +10:u04:lowest, +10:u06:(since, +18:u10:announcements., +11:u11:values,, +10:u12:second, +8:u13:just, +10:u14:master, +8:u23:seco, +18:u01:announcements., +11:u02:values,, +10:u03:second, +8:u04:just, +10:u05:master, +11:u07:master., +10:u03:lowest, +10:u05:(since, +11:u10:values,, +10:u11:second, +8:u12:just, +10:u13:master, +5:u20:j, +6:u21:ju, +7:u22:jus, +8:u23:just, +8:uI2:(')., +18:u00:announcements., +11:u01:values,, +10:u02:second, +8:u03:just, +10:u04:master, +11:u06:master., +9:u07:times, +10:u02:lowest, +10:u04:(since, +10:u10:second, +8:u11:just, +10:u12:master, +11:u14:master., +7:u22:mas, +8:u23:mast, +8:uI1:(')., +11:u00:values,, +10:u01:second, +8:u02:just, +10:u03:master, +11:u05:master., +9:u06:times, +13:u08:<------3., +10:u01:lowest, +10:u03:(since, +8:u10:just, +10:u11:master, +11:u13:master., +9:u14:times, +8:uI0:(')., +10:u00:second, +8:u01:just, +10:u02:master, +11:u04:master., +9:u05:times, +10:u00:lowest, +10:u02:(since, +18:u08:Anti-clockwise, +10:u10:master, +11:u12:master., +9:u13:times, +8:u00:just, +10:u01:master, +11:u03:master., +9:u04:times, +13:u07:<------3., +10:u01:(since, +18:u07:Anti-clockwise, +11:u11:master., +9:u12:times, +10:u00:master, +11:u02:master., +9:u03:times, +13:u06:<------3., +10:u00:(since, +18:u06:Anti-clockwise, +11:u10:master., +9:u11:times, +13:u14:<------3., +11:u01:master., +9:u02:times, +13:u05:<------3., +18:u05:Anti-clockwise, +9:u10:times, +13:u13:<------3., +12:uI2:------.-, +11:u00:master., +9:u01:times, +13:u04:<------3., +18:u04:Anti-clockwise, +10:u08:<---0., +13:u12:<------3., +6:u21:<-, +7:u22:<--, +8:u23:<---, +12:uI1:------.-, +9:u00:times, +13:u03:<------3., +18:u03:Anti-clockwise, +10:u07:<---0., +13:u11:<------3., +12:uI0:------.-, +13:u02:<------3., +18:u02:Anti-clockwise, +10:u06:<---0., +13:u10:<------3., +13:u01:<------3., +18:u01:Anti-clockwise, +10:u05:<---0., +8:uI2:---., +13:u00:<------3., +18:u00:Anti-clockwise, +10:u04:<---0., +8:uI1:---., +10:u03:<---0., +8:uI0:---., +10:u02:<---0., +11:u08:Maximal, +10:u01:<---0., +11:u07:Maximal, +10:u00:<---0., +11:u06:Maximal, +11:u05:Maximal, +11:u04:Maximal, +11:u03:Maximal, +11:u02:Maximal, +10:u08:<---2., +11:u01:Maximal, +10:u07:<---2., +11:u00:Maximal, +10:u06:<---2., +13:u08:<------4., +10:u05:<---2., +10:u04:<---2., +13:u07:<------4., +10:u03:<---2., +13:u06:<------4., +10:u02:<---2., +13:u14:<------4., +13:u05:<------4., +10:u01:<---2., +13:u13:<------4., +11:uI2:------., +13:u04:<------4., +10:u00:<---2., +13:u12:<------4., +11:uI1:------., +13:u03:<------4., +13:u11:<------4., +11:uI0:------., +13:u02:<------4., +13:u10:<------4., +13:u01:<------4., +13:u00:<------4., +18:u08:Identification, +10:u08:Phase., +18:u07:Identification, +7:u08:M's, +10:u07:Phase., +18:u06:Identification, +10:u08:passes, +10:u06:Phase., +18:u14:identification, +8:uI2:(,),, +18:u05:Identification, +7:u07:M's, +10:u05:Phase., +18:u13:identification, +8:uI1:(,),, +18:u04:Identification, +7:u06:M's, +10:u07:passes, +10:u04:Phase., +18:u12:identification, +7:u14:m's, +6:u21:Id, +7:u22:Ide, +8:u23:Iden, +8:uI0:(,),, +18:u03:Identification, +7:u05:M's, +10:u06:passes, +13:u08:neighbor., +10:u03:Phase., +18:u11:identification, +7:u13:m's, +10:u14:passes, +18:u02:Identification, +7:u04:M's, +10:u05:passes, +10:u02:Phase., +18:u10:identification, +7:u12:m's, +10:u13:passes, +6:u21:M', +7:u22:M's, +7:u23:M's, +18:u01:Identification, +7:u03:M's, +10:u04:passes, +13:u07:neighbor., +12:u08:trivial., +10:u01:Phase., +7:u11:m's, +10:u12:passes, +7:u22:pas, +8:u23:pass, +18:u00:Identification, +7:u02:M's, +10:u03:passes, +13:u06:neighbor., +13:u08:completed, +10:u00:Phase., +7:u10:m's, +10:u11:passes, +13:u14:neighbor., +7:u01:M's, +10:u02:passes, +13:u05:neighbor., +12:u07:trivial., +9:u08:TLVs), +10:u10:passes, +13:u13:neighbor., +7:u00:M's, +10:u01:passes, +13:u04:neighbor., +12:u06:trivial., +13:u07:completed, +13:u12:neighbor., +12:u14:trivial., +10:u00:passes, +13:u03:neighbor., +12:u05:trivial., +13:u06:completed, +9:u07:TLVs), +8:u08:TLVs, +13:u11:neighbor., +12:u13:trivial., +13:u14:completed, +13:u02:neighbor., +12:u04:trivial., +13:u05:completed, +9:u06:TLVs), +11:u08:inserts, +13:u10:neighbor., +12:u12:trivial., +13:u13:completed, +9:u14:tlvs), +7:u22:tri, +8:u23:triv, +13:u01:neighbor., +12:u03:trivial., +13:u04:completed, +9:u05:TLVs), +8:u07:TLVs, +12:u11:trivial., +13:u12:completed, +9:u13:tlvs), +13:u00:neighbor., +12:u02:trivial., +13:u03:completed, +9:u04:TLVs), +8:u06:TLVs, +11:u07:inserts, +13:u08:connected, +9:u08:Then,, +12:u10:trivial., +13:u11:completed, +9:u12:tlvs), +8:u14:tlvs, +12:u01:trivial., +13:u02:completed, +9:u03:TLVs), +8:u05:TLVs, +11:u06:inserts, +9:u07:Then,, +13:u10:completed, +9:u11:tlvs), +8:u13:tlvs, +11:u14:inserts, +12:u00:trivial., +13:u01:completed, +9:u02:TLVs), +8:u04:TLVs, +11:u05:inserts, +13:u07:connected, +12:u08:"express, +9:u06:Then,, +9:u10:tlvs), +8:u12:tlvs, +11:u13:inserts, +13:u00:completed, +9:u01:TLVs), +8:u03:TLVs, +11:u04:inserts, +13:u06:connected, +9:u08:Here,, +9:u05:Then,, +10:u08:link"., +8:u11:tlvs, +11:u12:inserts, +13:u14:connected, +8:u23:inse, +7:uI2:.,., +9:u00:TLVs), +8:u02:TLVs, +11:u03:inserts, +13:u05:connected, +12:u07:"express, +9:u04:Then,, +10:u07:link"., +8:u10:tlvs, +11:u11:inserts, +13:u13:connected, +7:uI1:.,., +8:u01:TLVs, +11:u02:inserts, +13:u04:connected, +12:u06:"express, +9:u07:Here,, +9:u03:Then,, +10:u06:link"., +11:u10:inserts, +13:u12:connected, +12:u14:"express, +7:uI0:.,., +8:u00:TLVs, +11:u01:inserts, +13:u03:connected, +12:u05:"express, +9:u06:Here,, +9:u08:(Step, +9:u02:Then,, +10:u05:link"., +9:u08:picks, +13:u11:connected, +12:u13:"express, +9:u14:here,, +11:u00:inserts, +13:u02:connected, +12:u04:"express, +9:u05:Here,, +9:u01:Then,, +10:u04:link"., +9:u07:picks, +7:u08:3)., +13:u10:connected, +12:u12:"express, +9:u13:here,, +8:u23:"exp, +7:uI2:,;,, +13:u01:connected, +12:u03:"express, +9:u04:Here,, +9:u07:(Step, +9:u00:Then,, +10:u03:link"., +9:u06:picks, +7:u07:3)., +12:u11:"express, +9:u12:here,, +6:u21:He, +7:u22:Her, +8:u23:Here, +7:uI1:,;,, +8:uI2:.()., +13:u00:connected, +12:u02:"express, +9:u03:Here,, +9:u06:(Step, +10:u02:link"., +9:u05:picks, +7:u06:3)., +8:u08:main, +12:u10:"express, +9:u11:here,, +9:u14:(step, +7:uI0:,;,, +8:uI1:.()., +12:u01:"express, +9:u02:Here,, +9:u05:(Step, +10:u01:link"., +9:u04:picks, +7:u05:3)., +8:u07:main, +9:u10:here,, +9:u13:(step, +8:uI0:.()., +9:uI2:().,., +12:u00:"express, +9:u01:Here,, +9:u04:(Step, +10:u00:link"., +9:u03:picks, +7:u04:3)., +8:u06:main, +9:u12:(step, +7:u22:(St, +8:u23:(Ste, +9:uI1:().,., +9:u00:Here,, +9:u03:(Step, +9:u02:picks, +7:u03:3)., +8:u05:main, +9:u11:(step, +9:uI0:().,., +9:u02:(Step, +9:u01:picks, +7:u02:3)., +8:u04:main, +9:u10:(step, +9:u01:(Step, +9:u00:picks, +7:u01:3)., +8:u03:main, +9:u00:(Step, +12:u08:changed,, +7:u00:3)., +8:u02:main, +11:u08:perturb, +11:u08:change., +8:u01:main, +11:u07:perturb, +12:u07:changed,, +13:u08:advantage, +8:u00:main, +11:u06:perturb, +8:u08:Link, +12:u06:changed,, +11:u07:change., +11:u05:perturb, +8:u07:Link, +12:u14:changed,, +7:uI2:.,', +12:u05:changed,, +11:u06:change., +13:u07:advantage, +10:u08:(until, +11:u04:perturb, +8:u06:Link, +12:u13:changed,, +11:u14:change., +7:uI1:.,', +12:u04:changed,, +11:u05:change., +13:u06:advantage, +11:u03:perturb, +8:u05:Link, +12:u12:changed,, +11:u13:change., +13:u14:advantage, +7:uI0:.,', +6:uI2:.;, +12:u03:changed,, +11:u04:change., +13:u05:advantage, +10:u07:(until, +11:u02:perturb, +8:u04:Link, +11:u08:removal, +12:u11:changed,, +11:u12:change., +13:u13:advantage, +6:uI1:.;, +12:u02:changed,, +11:u03:change., +13:u04:advantage, +10:u06:(until, +11:u01:perturb, +8:u03:Link, +11:u07:removal, +12:u10:changed,, +11:u11:change., +13:u12:advantage, +10:u14:(until, +7:u22:adv, +8:u23:adva, +6:uI0:.;, +12:u01:changed,, +11:u02:change., +13:u03:advantage, +10:u05:(until, +11:u00:perturb, +8:u02:Link, +11:u06:removal, +11:u10:change., +13:u11:advantage, +10:u13:(until, +12:u00:changed,, +11:u01:change., +13:u02:advantage, +10:u04:(until, +8:u01:Link, +11:u05:removal, +13:u10:advantage, +10:u12:(until, +6:u21:(u, +7:u22:(un, +8:u23:(unt, +11:u00:change., +13:u01:advantage, +10:u03:(until, +8:u00:Link, +11:u04:removal, +10:u11:(until, +13:u00:advantage, +10:u02:(until, +11:u03:removal, +10:u10:(until, +10:u01:(until, +11:u02:removal, +10:u00:(until, +11:u01:removal, +11:u00:removal, +10:u14:simple, +10:u13:simple, +10:u12:simple, +7:u22:sim, +8:u23:simp, +10:u11:simple, +9:u08:level, +10:u10:simple, +8:u08:both, +9:u07:level, +9:u06:level, +8:u07:both, +9:u14:level, +9:u05:level, +8:u06:both, +7:u08:BFD, +8:u08:LSP., +9:u13:level, +8:u14:both, +9:u04:level, +8:u05:both, +8:u07:LSP., +9:u12:level, +8:u13:both, +7:u22:lev, +8:u23:leve, +9:u03:level, +8:u04:both, +7:u07:BFD, +8:u06:LSP., +9:u11:level, +8:u12:both, +6:u21:bo, +7:u22:bot, +8:u23:both, +9:u02:level, +8:u03:both, +7:u06:BFD, +8:u05:LSP., +9:u10:level, +8:u11:both, +7:u14:bfd, +8:uI2:.-;,, +9:u01:level, +8:u02:both, +7:u05:BFD, +8:u04:LSP., +8:u10:both, +7:u13:bfd, +8:uI1:.-;,, +9:u00:level, +8:u01:both, +7:u04:BFD, +15:u08:permanently, +8:u03:LSP., +7:u12:bfd, +7:u22:BFD, +7:u23:BFD, +8:uI0:.-;,, +8:u00:both, +7:u03:BFD, +8:u02:LSP., +11:u08:missing, +7:u11:bfd, +7:u02:BFD, +15:u07:permanently, +10:u08:Either, +8:u01:LSP., +11:u07:missing, +7:u10:bfd, +7:u01:BFD, +15:u06:permanently, +8:u00:LSP., +11:u06:missing, +8:u08:way,, +15:u14:permanently, +7:u00:BFD, +15:u05:permanently, +10:u07:Either, +11:u05:missing, +8:u07:way,, +15:u13:permanently, +11:u14:because, +15:u04:permanently, +10:u06:Either, +11:u04:missing, +8:u06:way,, +15:u12:permanently, +11:u13:because, +10:u14:either, +8:u23:perm, +15:u03:permanently, +10:u05:Either, +11:u03:missing, +8:u05:way,, +9:u08:topic, +15:u11:permanently, +11:u12:because, +10:u13:either, +7:u22:bec, +8:u23:beca, +15:u02:permanently, +10:u04:Either, +11:u02:missing, +8:u04:way,, +9:u07:topic, +15:u10:permanently, +11:u11:because, +10:u12:either, +6:u21:Ei, +7:u22:Eit, +8:u23:Eith, +9:uI2:"-".-, +15:u01:permanently, +10:u03:Either, +9:u08:Let's, +11:u01:missing, +8:u03:way,, +9:u06:topic, +11:u10:because, +10:u11:either, +9:uI1:"-".-, +15:u00:permanently, +10:u02:Either, +8:u08:"hub, +11:u00:missing, +8:u02:way,, +9:u05:topic, +10:u10:either, +9:uI0:"-".-, +10:u01:Either, +9:u07:Let's, +8:u01:way,, +9:u04:topic, +12:u08:node(s)", +10:u00:Either, +9:u06:Let's, +8:u07:"hub, +8:u00:way,, +9:u03:topic, +12:u07:node(s)", +9:u14:let's, +9:u05:Let's, +8:u06:"hub, +9:u02:topic, +12:u06:node(s)", +9:u13:let's, +8:u14:"hub, +7:uI2:'(), +9:u04:Let's, +8:u05:"hub, +6:u08:H1, +9:u01:topic, +12:u05:node(s)", +9:u12:let's, +8:u13:"hub, +6:u21:Le, +7:u22:Let, +8:u23:Let', +7:uI1:'(), +12:uI2:"()"(,.), +9:u03:Let's, +8:u04:"hub, +9:u00:topic, +12:u04:node(s)", +9:u11:let's, +8:u12:"hub, +6:u21:"h, +7:u22:"hu, +8:u23:"hub, +7:uI0:'(), +12:uI1:"()"(,.), +9:u02:Let's, +8:u03:"hub, +6:u07:H1, +11:u08:prefers, +12:u03:node(s)", +9:u10:let's, +8:u11:"hub, +12:uI0:"()"(,.), +9:u01:Let's, +8:u02:"hub, +6:u06:H1, +8:u08:LSP,, +12:u02:node(s)", +7:u08:H1;, +8:u10:"hub, +6:u14:h1, +9:uI2:,,(-), +9:u00:Let's, +8:u01:"hub, +6:u05:H1, +11:u07:prefers, +12:u01:node(s)", +7:u07:H1;, +6:u13:h1, +9:u14:would, +9:uI1:,,(-), +7:uI2:();, +8:u00:"hub, +6:u04:H1, +11:u06:prefers, +8:u07:LSP,, +12:u00:node(s)", +7:u06:H1;, +6:u12:h1, +9:u13:would, +11:u14:prefers, +6:u21:H1, +6:u22:H1, +6:u23:H1, +9:uI0:,,(-), +7:uI1:();, +6:u03:H1, +11:u05:prefers, +8:u06:LSP,, +11:u08:chosen., +7:u05:H1;, +6:u11:h1, +9:u12:would, +11:u13:prefers, +8:u14:lsp,, +7:u22:wou, +8:u23:woul, +7:uI0:();, +6:u02:H1, +11:u04:prefers, +8:u05:LSP,, +7:u04:H1;, +15:u08:Thereafter,, +6:u10:h1, +9:u11:would, +11:u12:prefers, +8:u13:lsp,, +8:u23:pref, +6:u01:H1, +11:u03:prefers, +8:u04:LSP,, +11:u07:chosen., +7:u03:H1;, +15:u07:Thereafter,, +9:u10:would, +11:u11:prefers, +8:u12:lsp,, +8:u23:LSP,, +6:u00:H1, +11:u02:prefers, +8:u03:LSP,, +11:u06:chosen., +7:u02:H1;, +15:u06:Thereafter,, +11:u10:prefers, +8:u11:lsp,, +11:u14:chosen., +7:uI2:,,', +11:u01:prefers, +8:u02:LSP,, +11:u05:chosen., +7:u01:H1;, +15:u05:Thereafter,, +8:u10:lsp,, +11:u13:chosen., +7:uI1:,,', +11:u00:prefers, +8:u01:LSP,, +11:u04:chosen., +7:u00:H1;, +15:u04:Thereafter,, +11:u12:chosen., +8:u23:chos, +7:uI0:,,', +8:u00:LSP,, +11:u03:chosen., +15:u03:Thereafter,, +11:u11:chosen., +11:u02:chosen., +15:u02:Thereafter,, +11:u10:chosen., +11:u01:chosen., +15:u01:Thereafter,, +11:u00:chosen., +10:u08:useful, +15:u00:Thereafter,, +13:u08:addressed, +11:u08:problem, +10:u07:useful, +11:u07:problem, +10:u06:useful, +13:u07:addressed, +11:u06:problem, +10:u14:useful, +10:u05:useful, +13:u06:addressed, +11:u05:problem, +10:u13:useful, +13:u14:addressed, +10:u04:useful, +13:u05:addressed, +11:u04:problem, +10:u12:useful, +13:u13:addressed, +8:u23:usef, +10:u03:useful, +13:u04:addressed, +11:u03:problem, +10:u11:useful, +13:u12:addressed, +8:u23:addr, +10:u02:useful, +13:u03:addressed, +11:u02:problem, +9:u08:plane, +10:u10:useful, +13:u11:addressed, +9:uI2:-,,-,, +10:u01:useful, +13:u02:addressed, +13:u08:semantics, +11:u01:problem, +9:u07:plane, +12:u08:messages, +13:u10:addressed, +9:uI1:-,,-,, +10:u00:useful, +13:u01:addressed, +11:u00:problem, +9:u06:plane, +12:u07:messages, +9:uI0:-,,-,, +13:u00:addressed, +13:u07:semantics, +9:u05:plane, +12:u06:messages, +6:u22:do, +6:u23:do, +13:u06:semantics, +12:u08:networks, +9:u04:plane, +12:u05:messages, +10:u08:thanks, +13:u14:semantics, +13:u05:semantics, +10:u08:notion, +9:u03:plane, +12:u04:messages, +10:u07:thanks, +13:u13:semantics, +13:u04:semantics, +12:u07:networks, +9:u02:plane, +12:u03:messages, +10:u06:thanks, +13:u12:semantics, +8:u14:many, +7:u22:sem, +8:u23:sema, +13:u03:semantics, +12:u06:networks, +10:u07:notion, +9:u08:There, +9:u01:plane, +12:u02:messages, +10:u05:thanks, +13:u11:semantics, +8:u13:many, +12:u14:networks, +13:u02:semantics, +12:u05:networks, +10:u06:notion, +9:u00:plane, +12:u01:messages, +10:u04:thanks, +13:u10:semantics, +8:u12:many, +12:u13:networks, +10:u14:notion, +7:u22:Man, +8:u23:Many, +13:u01:semantics, +12:u04:networks, +10:u05:notion, +9:u07:There, +12:u00:messages, +10:u03:thanks, +8:u11:many, +12:u12:networks, +10:u13:notion, +7:u22:net, +8:u23:netw, +13:u00:semantics, +12:u03:networks, +10:u04:notion, +9:u06:There, +10:u02:thanks, +8:u10:many, +12:u11:networks, +10:u12:notion, +9:u14:there, +8:u23:noti, +12:u02:networks, +10:u03:notion, +9:u05:There, +10:u01:thanks, +12:u10:networks, +10:u11:notion, +9:u13:there, +12:u01:networks, +10:u02:notion, +9:u04:There, +10:u00:thanks, +10:u10:notion, +9:u12:there, +8:u23:Ther, +12:u00:networks, +10:u01:notion, +9:u03:There, +9:u11:there, +10:u00:notion, +9:u02:There, +9:u10:there, +9:u01:There, +30:u08:[I-D.ietf-mpls-rfc4379bis], +9:u00:There, +13:u08:Kompella,, +30:u07:[I-D.ietf-mpls-rfc4379bis], +11:u08:Aldrin,, +7:u08:K.,, +30:u06:[I-D.ietf-mpls-rfc4379bis], +13:u07:Kompella,, +12:u08:Switched, +7:u07:K.,, +30:u14:[i-d.ietf-mpls-rfc4379bis], +30:u05:[I-D.ietf-mpls-rfc4379bis], +13:u06:Kompella,, +11:u07:Aldrin,, +17:u08:rfc4379bis-09, +7:u06:K.,, +10:u08:(MPLS), +30:u13:[i-d.ietf-mpls-rfc4379bis], +13:u14:kompella,, +30:u04:[I-D.ietf-mpls-rfc4379bis], +13:u05:Kompella,, +11:u06:Aldrin,, +12:u07:Switched, +13:u08:[RFC3209], +7:u05:K.,, +10:u07:(MPLS), +30:u12:[i-d.ietf-mpls-rfc4379bis], +13:u13:kompella,, +11:u14:aldrin,, +16:uI2:,.,,.,,.,,.,, +30:u03:[I-D.ietf-mpls-rfc4379bis], +13:u04:Kompella,, +11:u05:Aldrin,, +12:u06:Switched, +17:u07:rfc4379bis-09, +7:u04:K.,, +10:u06:(MPLS), +12:u08:Awduche,, +30:u11:[i-d.ietf-mpls-rfc4379bis], +13:u12:kompella,, +11:u13:aldrin,, +12:u14:switched, +16:uI1:,.,,.,,.,,.,, +11:uI2:,.,.,"-, +30:u02:[I-D.ietf-mpls-rfc4379bis], +13:u03:Kompella,, +11:u04:Aldrin,, +12:u05:Switched, +17:u06:rfc4379bis-09, +13:u07:[RFC3209], +13:u08:Tunnels",, +7:u03:K.,, +10:u05:(MPLS), +12:u07:Awduche,, +6:u08:G., +30:u10:[i-d.ietf-mpls-rfc4379bis], +13:u11:kompella,, +11:u12:aldrin,, +12:u13:switched, +17:u14:rfc4379bis-09, +7:u22:Ald, +8:u23:Aldr, +16:uI0:,.,,.,,.,,.,, +11:uI1:,.,.,"-, +11:uI2:()",---, +30:u01:[I-D.ietf-mpls-rfc4379bis], +13:u02:Kompella,, +11:u03:Aldrin,, +12:u04:Switched, +17:u05:rfc4379bis-09, +13:u06:[RFC3209], +46:u08:<https://www.rfc-editor.org/info/rfc3209>., +7:u02:K.,, +10:u04:(MPLS), +12:u06:Awduche,, +6:u07:G., +13:u10:kompella,, +11:u11:aldrin,, +12:u12:switched, +17:u13:rfc4379bis-09, +13:u14:[rfc3209], +6:u21:Sw, +7:u22:Swi, +8:u23:Swit, +11:uI0:,.,.,"-, +11:uI1:()",---, +30:u00:[I-D.ietf-mpls-rfc4379bis], +13:u01:Kompella,, +11:u02:Aldrin,, +12:u03:Switched, +17:u04:rfc4379bis-09, +13:u05:[RFC3209], +13:u07:Tunnels",, +13:u08:[RFC3630], +7:u01:K.,, +10:u03:(MPLS), +12:u05:Awduche,, +6:u06:G., +11:u10:aldrin,, +12:u11:switched, +17:u12:rfc4379bis-09, +13:u13:[rfc3209], +6:u21:rf, +7:u22:rfc, +8:u23:rfc4, +11:uI0:()",---, +21:uI2:[],.,,.,,.,,.,,.,, +13:u00:Kompella,, +11:u01:Aldrin,, +12:u02:Switched, +17:u03:rfc4379bis-09, +13:u04:[RFC3209], +13:u06:Tunnels",, +46:u07:<https://www.rfc-editor.org/info/rfc3209>., +8:u08:(TE), +7:u00:K.,, +10:u02:(MPLS), +12:u04:Awduche,, +9:u08:Katz,, +12:u10:switched, +17:u11:rfc4379bis-09, +13:u12:[rfc3209], +13:u14:tunnels",, +21:uI1:[],.,,.,,.,,.,,.,, +9:uI2:.,"-:, +11:u00:Aldrin,, +12:u01:Switched, +17:u02:rfc4379bis-09, +13:u03:[RFC3209], +13:u05:Tunnels",, +46:u06:<https://www.rfc-editor.org/info/rfc3209>., +13:u07:[RFC3630], +10:u01:(MPLS), +12:u03:Awduche,, +9:u07:Katz,, +14:u08:Extensions, +17:u10:rfc4379bis-09, +13:u11:[rfc3209], +13:u13:tunnels",, +46:u14:<https://www.rfc-editor.org/info/rfc3209>., +21:uI0:[],.,,.,,.,,.,,.,, +9:uI1:.,"-:, +12:u00:Switched, +17:u01:rfc4379bis-09, +13:u02:[RFC3209], +13:u04:Tunnels",, +46:u05:<https://www.rfc-editor.org/info/rfc3209>., +13:u06:[RFC3630], +8:u07:(TE), +46:u08:<https://www.rfc-editor.org/info/rfc3630>., +10:u00:(MPLS), +12:u02:Awduche,, +9:u06:Katz,, +14:u07:Extensions, +21:u08:10.17487/RFC3630,, +13:u10:[rfc3209], +13:u12:tunnels",, +46:u13:<https://www.rfc-editor.org/info/rfc3209>., +13:u14:[rfc3630], +6:u21:Tu, +7:u22:Tun, +8:u23:Tunn, +9:uI0:.,"-:, +17:u00:rfc4379bis-09, +13:u01:[RFC3209], +13:u03:Tunnels",, +46:u04:<https://www.rfc-editor.org/info/rfc3209>., +13:u05:[RFC3630], +8:u06:(TE), +12:u01:Awduche,, +9:u05:Katz,, +14:u06:Extensions, +21:u07:10.17487/RFC3630,, +13:u11:tunnels",, +46:u12:<https://www.rfc-editor.org/info/rfc3209>., +13:u13:[rfc3630], +8:u14:(te), +13:u00:[RFC3209], +13:u02:Tunnels",, +46:u03:<https://www.rfc-editor.org/info/rfc3209>., +13:u04:[RFC3630], +8:u05:(TE), +46:u07:<https://www.rfc-editor.org/info/rfc3630>., +12:u00:Awduche,, +9:u04:Katz,, +14:u05:Extensions, +21:u06:10.17487/RFC3630,, +13:u10:tunnels",, +46:u11:<https://www.rfc-editor.org/info/rfc3209>., +13:u12:[rfc3630], +8:u13:(te), +13:u01:Tunnels",, +46:u02:<https://www.rfc-editor.org/info/rfc3209>., +13:u03:[RFC3630], +8:u04:(TE), +46:u06:<https://www.rfc-editor.org/info/rfc3630>., +9:u03:Katz,, +14:u04:Extensions, +21:u05:10.17487/RFC3630,, +46:u10:<https://www.rfc-editor.org/info/rfc3209>., +13:u11:[rfc3630], +8:u12:(te), +46:u14:<https://www.rfc-editor.org/info/rfc3630>., +6:u21:(T, +7:u22:(TE, +8:u23:(TE), +13:u00:Tunnels",, +46:u01:<https://www.rfc-editor.org/info/rfc3209>., +13:u02:[RFC3630], +8:u03:(TE), +46:u05:<https://www.rfc-editor.org/info/rfc3630>., +9:u02:Katz,, +14:u03:Extensions, +21:u04:10.17487/RFC3630,, +13:u10:[rfc3630], +8:u11:(te), +46:u13:<https://www.rfc-editor.org/info/rfc3630>., +46:u00:<https://www.rfc-editor.org/info/rfc3209>., +13:u01:[RFC3630], +8:u02:(TE), +46:u04:<https://www.rfc-editor.org/info/rfc3630>., +9:u01:Katz,, +14:u02:Extensions, +21:u03:10.17487/RFC3630,, +8:u10:(te), +46:u12:<https://www.rfc-editor.org/info/rfc3630>., +13:u00:[RFC3630], +8:u01:(TE), +46:u03:<https://www.rfc-editor.org/info/rfc3630>., +9:u00:Katz,, +14:u01:Extensions, +21:u02:10.17487/RFC3630,, +46:u11:<https://www.rfc-editor.org/info/rfc3630>., +8:u00:(TE), +46:u02:<https://www.rfc-editor.org/info/rfc3630>., +13:u08:[RFC5036], +14:u00:Extensions, +21:u01:10.17487/RFC3630,, +46:u10:<https://www.rfc-editor.org/info/rfc3630>., +46:u01:<https://www.rfc-editor.org/info/rfc3630>., +8:u08:"LDP, +21:u00:10.17487/RFC3630,, +14:u08:Andersson,, +46:u00:<https://www.rfc-editor.org/info/rfc3630>., +13:u07:[RFC5036], +14:u07:Andersson,, +19:u08:Specification",, +13:u06:[RFC5036], +8:u07:"LDP, +13:u08:[RFC5305], +14:u06:Andersson,, +19:u07:Specification",, +13:u14:[rfc5036], +13:u05:[RFC5036], +8:u06:"LDP, +17:u08:Engineering",, +14:u05:Andersson,, +19:u06:Specification",, +7:u08:Li,, +13:u13:[rfc5036], +8:u14:"ldp, +20:uI2:[],.,.,,.,.,.,.,, +13:u04:[RFC5036], +8:u05:"LDP, +13:u07:[RFC5305], +14:u04:Andersson,, +19:u05:Specification",, +7:u07:Li,, +13:u12:[rfc5036], +8:u13:"ldp, +20:uI1:[],.,.,,.,.,.,.,, +11:uI2:"",,./,, +13:u03:[RFC5036], +8:u04:"LDP, +13:u06:[RFC5305], +17:u07:Engineering",, +13:u08:[RFC8402], +14:u03:Andersson,, +19:u04:Specification",, +7:u06:Li,, +46:u08:<https://www.rfc-editor.org/info/rfc5305>., +13:u11:[rfc5036], +8:u12:"ldp, +13:u14:[rfc5305], +6:u21:"L, +7:u22:"LD, +8:u23:"LDP, +20:uI0:[],.,.,,.,.,.,.,, +11:uI1:"",,./,, +13:u02:[RFC5036], +8:u03:"LDP, +13:u05:[RFC5305], +17:u06:Engineering",, +13:u08:Decraene,, +14:u02:Andersson,, +19:u03:Specification",, +7:u05:Li,, +46:u07:<https://www.rfc-editor.org/info/rfc5305>., +13:u08:Filsfils,, +13:u10:[rfc5036], +8:u11:"ldp, +13:u13:[rfc5305], +17:u14:engineering",, +11:uI0:"",,./,, +13:u01:[RFC5036], +8:u02:"LDP, +13:u04:[RFC5305], +17:u05:Engineering",, +13:u07:[RFC8402], +14:u01:Andersson,, +19:u02:Specification",, +7:u04:Li,, +46:u06:<https://www.rfc-editor.org/info/rfc5305>., +13:u07:Filsfils,, +7:u08:B.,, +8:u10:"ldp, +13:u12:[rfc5305], +17:u13:engineering",, +9:u14:2008,, +13:u00:[RFC5036], +8:u01:"LDP, +13:u03:[RFC5305], +17:u04:Engineering",, +13:u06:[RFC8402], +13:u07:Decraene,, +14:u00:Andersson,, +19:u01:Specification",, +7:u03:Li,, +46:u05:<https://www.rfc-editor.org/info/rfc5305>., +13:u06:Filsfils,, +7:u07:B.,, +18:u08:Architecture",, +13:u11:[rfc5305], +17:u12:engineering",, +9:u13:2008,, +13:u14:[rfc8402], +8:u00:"LDP, +13:u02:[RFC5305], +17:u03:Engineering",, +13:u05:[RFC8402], +13:u06:Decraene,, +19:u00:Specification",, +7:u02:Li,, +46:u04:<https://www.rfc-editor.org/info/rfc5305>., +13:u05:Filsfils,, +7:u06:B.,, +18:u07:Architecture",, +9:u08:2018,, +13:u10:[rfc5305], +17:u11:engineering",, +9:u12:2008,, +13:u13:[rfc8402], +13:u14:decraene,, +8:u23:2008, +19:uI2:[],.,.,,.,.,,.,, +13:u01:[RFC5305], +17:u02:Engineering",, +13:u04:[RFC8402], +13:u05:Decraene,, +11:u08:Kireeti, +7:u01:Li,, +46:u03:<https://www.rfc-editor.org/info/rfc5305>., +13:u04:Filsfils,, +7:u05:B.,, +18:u06:Architecture",, +9:u07:2018,, +17:u10:engineering",, +9:u11:2008,, +13:u12:[rfc8402], +13:u13:decraene,, +19:uI1:[],.,.,,.,.,,.,, +13:uI2:,.,,.,.,", +13:u00:[RFC5305], +17:u01:Engineering",, +13:u03:[RFC8402], +13:u04:Decraene,, +11:u08:Juniper, +7:u00:Li,, +46:u02:<https://www.rfc-editor.org/info/rfc5305>., +13:u03:Filsfils,, +7:u04:B.,, +18:u05:Architecture",, +9:u06:2018,, +9:u10:2008,, +13:u11:[rfc8402], +13:u12:decraene,, +8:u23:Decr, +19:uI0:[],.,.,,.,.,,.,, +13:uI1:,.,,.,.,", +17:u00:Engineering",, +13:u02:[RFC8402], +13:u03:Decraene,, +11:u07:Kireeti, +8:u08:1133, +46:u01:<https://www.rfc-editor.org/info/rfc5305>., +13:u02:Filsfils,, +7:u03:B.,, +18:u04:Architecture",, +9:u05:2018,, +13:u08:Networks,, +13:u10:[rfc8402], +13:u11:decraene,, +13:uI0:,.,,.,.,", +13:u01:[RFC8402], +13:u02:Decraene,, +11:u06:Kireeti, +14:u08:Sunnyvale,, +46:u00:<https://www.rfc-editor.org/info/rfc5305>., +13:u01:Filsfils,, +7:u02:B.,, +18:u03:Architecture",, +9:u04:2018,, +14:u08:Innovation, +13:u10:decraene,, +11:u14:kireeti, +13:u00:[RFC8402], +13:u01:Decraene,, +11:u05:Kireeti, +8:u07:1133, +7:u08:USA, +13:u00:Filsfils,, +7:u01:B.,, +18:u02:Architecture",, +9:u03:2018,, +14:u07:Innovation, +6:u08:CA, +11:u13:kireeti, +13:u00:Decraene,, +11:u04:Kireeti, +8:u06:1133, +14:u07:Sunnyvale,, +7:u00:B.,, +18:u01:Architecture",, +9:u02:2018,, +14:u06:Innovation, +6:u07:CA, +11:u12:kireeti, +8:u14:1133, +6:u21:Ki, +7:u22:Kir, +8:u23:Kire, +11:u03:Kireeti, +8:u05:1133, +14:u06:Sunnyvale,, +7:u07:USA, +8:u08:Luis, +18:u00:Architecture",, +9:u01:2018,, +14:u05:Innovation, +6:u06:CA, +30:u08:kireeti.kompella@gmail.com, +11:u11:kireeti, +8:u13:1133, +14:u14:sunnyvale,, +11:u02:Kireeti, +8:u04:1133, +14:u05:Sunnyvale,, +7:u06:USA, +9:u00:2018,, +14:u04:Innovation, +6:u05:CA, +30:u07:kireeti.kompella@gmail.com, +11:u10:kireeti, +8:u12:1133, +14:u13:sunnyvale,, +7:u14:usa, +7:u22:113, +8:u23:1133, +11:u01:Kireeti, +8:u03:1133, +14:u04:Sunnyvale,, +7:u05:USA, +8:u07:Luis, +9:u08:Ronda, +14:u03:Innovation, +6:u04:CA, +30:u06:kireeti.kompella@gmail.com, +8:u11:1133, +14:u12:sunnyvale,, +7:u13:usa, +6:u21:Su, +7:u22:Sun, +8:u23:Sunn, +11:u00:Kireeti, +8:u02:1133, +14:u03:Sunnyvale,, +7:u04:USA, +8:u06:Luis, +9:u08:Sur-3, +14:u02:Innovation, +6:u03:CA, +30:u05:kireeti.kompella@gmail.com, +6:u08:de, +8:u10:1133, +14:u11:sunnyvale,, +7:u12:usa, +8:u14:luis, +6:u21:US, +7:u22:USA, +7:u23:USA, +8:u01:1133, +14:u02:Sunnyvale,, +7:u03:USA, +8:u05:Luis, +9:u07:Ronda, +10:u08:Madrid, +14:u01:Innovation, +6:u02:CA, +30:u04:kireeti.kompella@gmail.com, +6:u07:de, +13:u08:building,, +14:u10:sunnyvale,, +7:u11:usa, +8:u13:luis, +8:u00:1133, +14:u01:Sunnyvale,, +7:u02:USA, +8:u04:Luis, +9:u06:Ronda, +9:u07:Sur-3, +9:u08:Spain, +14:u00:Innovation, +6:u01:CA, +30:u03:kireeti.kompella@gmail.com, +6:u06:de, +13:u07:building,, +9:u08:28050, +7:u10:usa, +8:u12:luis, +9:u14:ronda, +6:u21:Lu, +7:u22:Lui, +8:u23:Luis, +14:u00:Sunnyvale,, +7:u01:USA, +8:u03:Luis, +9:u05:Ronda, +9:u06:Sur-3, +10:u07:Madrid, +6:u00:CA, +30:u02:kireeti.kompella@gmail.com, +6:u05:de, +13:u06:building,, +9:u07:28050, +8:u11:luis, +9:u13:ronda, +9:u14:sur-3, +7:u00:USA, +8:u02:Luis, +9:u04:Ronda, +9:u05:Sur-3, +10:u06:Madrid, +9:u07:Spain, +30:u01:kireeti.kompella@gmail.com, +6:u04:de, +13:u05:building,, +9:u06:28050, +46:u08:luismiguel.contrerasmurillo@telefonica.com, +8:u10:luis, +9:u12:ronda, +9:u13:sur-3, +10:u14:madrid, +7:u22:Ron, +8:u23:Rond, +8:u01:Luis, +9:u03:Ronda, +9:u04:Sur-3, +10:u05:Madrid, +9:u06:Spain, +41:u08:http://people.tid.es/LuisM.Contreras/, +30:u00:kireeti.kompella@gmail.com, +6:u03:de, +13:u04:building,, +9:u05:28050, +46:u07:luismiguel.contrerasmurillo@telefonica.com, +9:u11:ronda, +9:u12:sur-3, +10:u13:madrid, +9:u14:spain, +7:u22:Sur, +8:u23:Sur-, +8:u00:Luis, +9:u02:Ronda, +9:u03:Sur-3, +10:u04:Madrid, +9:u05:Spain, +6:u02:de, +13:u03:building,, +9:u04:28050, +46:u06:luismiguel.contrerasmurillo@telefonica.com, +9:u10:ronda, +9:u11:sur-3, +10:u12:madrid, +9:u13:spain, +7:u22:Mad, +8:u23:Madr, +9:u01:Ronda, +9:u02:Sur-3, +10:u03:Madrid, +9:u04:Spain, +41:u07:http://people.tid.es/LuisM.Contreras/, +6:u01:de, +13:u02:building,, +9:u03:28050, +46:u05:luismiguel.contrerasmurillo@telefonica.com, +9:u10:sur-3, +10:u11:madrid, +9:u12:spain, +7:u22:Spa, +8:u23:Spai, +9:u00:Ronda, +9:u01:Sur-3, +10:u02:Madrid, +9:u03:Spain, +41:u06:http://people.tid.es/LuisM.Contreras/, +6:u00:de, +13:u01:building,, +9:u02:28050, +46:u04:luismiguel.contrerasmurillo@telefonica.com, +10:u10:madrid, +9:u11:spain, +41:u14:http://people.tid.es/luism.contreras/, +9:u00:Sur-3, +10:u01:Madrid, +9:u02:Spain, +41:u05:http://people.tid.es/LuisM.Contreras/, +13:u00:building,, +9:u01:28050, +46:u03:luismiguel.contrerasmurillo@telefonica.com, +9:u10:spain, +41:u13:http://people.tid.es/luism.contreras/, +12:uI2:://.././, +10:u00:Madrid, +9:u01:Spain, +41:u04:http://people.tid.es/LuisM.Contreras/, +9:u00:28050, +46:u02:luismiguel.contrerasmurillo@telefonica.com, +41:u12:http://people.tid.es/luism.contreras/, +12:uI1:://.././, +9:u00:Spain, +41:u03:http://people.tid.es/LuisM.Contreras/, +46:u01:luismiguel.contrerasmurillo@telefonica.com, +41:u11:http://people.tid.es/luism.contreras/, +12:uI0:://.././, +41:u02:http://people.tid.es/LuisM.Contreras/, +46:u00:luismiguel.contrerasmurillo@telefonica.com, +41:u10:http://people.tid.es/luism.contreras/, +41:u01:http://people.tid.es/LuisM.Contreras/, +10:u05:6TiSCH, +6:u06:P., +12:u06:Thubert,, +11:u08:Systems, +10:u13:6tisch, +6:u14:p., +10:u04:6TiSCH, +6:u05:P., +10:u08:August, +12:u05:Thubert,, +11:u07:Systems, +10:u12:6tisch, +6:u13:p., +6:u21:6T, +7:u22:6Ti, +8:u23:6TiS, +10:u03:6TiSCH, +6:u04:P., +12:u04:Thubert,, +11:u06:Systems, +7:u08:27,, +10:u11:6tisch, +6:u12:p., +6:u22:P., +6:u23:P., +10:u02:6TiSCH, +6:u03:P., +10:u07:August, +12:u03:Thubert,, +11:u05:Systems, +7:u07:27,, +12:u08:February, +10:u10:6tisch, +6:u11:p., +10:u01:6TiSCH, +6:u02:P., +10:u06:August, +37:u08:draft-ietf-6tisch-architecture-26, +12:u02:Thubert,, +11:u04:Systems, +7:u06:27,, +12:u07:February, +6:u10:p., +10:u14:august, +10:u00:6TiSCH, +6:u01:P., +10:u05:August, +12:u01:Thubert,, +11:u03:Systems, +7:u05:27,, +12:u06:February, +10:u13:august, +6:u00:P., +10:u04:August, +37:u07:draft-ietf-6tisch-architecture-26, +12:u00:Thubert,, +11:u02:Systems, +7:u04:27,, +12:u05:February, +10:u12:august, +7:u22:Aug, +8:u23:Augu, +10:u03:August, +37:u06:draft-ietf-6tisch-architecture-26, +12:u08:latency,, +11:u01:Systems, +7:u03:27,, +12:u04:February, +10:u11:august, +37:u14:draft-ietf-6tisch-architecture-26, +10:u02:August, +37:u05:draft-ietf-6tisch-architecture-26, +12:u08:combines, +11:u00:Systems, +7:u02:27,, +12:u03:February, +14:u08:low-jitter, +10:u10:august, +37:u13:draft-ietf-6tisch-architecture-26, +10:u01:August, +37:u04:draft-ietf-6tisch-architecture-26, +12:u07:latency,, +12:u08:802.15.4, +7:u01:27,, +12:u02:February, +14:u07:low-jitter, +37:u12:draft-ietf-6tisch-architecture-26, +10:u00:August, +37:u03:draft-ietf-6tisch-architecture-26, +12:u06:latency,, +12:u07:combines, +7:u00:27,, +12:u01:February, +14:u06:low-jitter, +16:u08:time-slotted, +37:u11:draft-ietf-6tisch-architecture-26, +12:u14:latency,, +37:u02:draft-ietf-6tisch-architecture-26, +12:u05:latency,, +12:u06:combines, +12:u07:802.15.4, +12:u00:February, +14:u05:low-jitter, +16:u07:time-slotted, +12:u08:LowPower, +37:u10:draft-ietf-6tisch-architecture-26, +12:u13:latency,, +12:u14:combines, +8:uI2:,--., +37:u01:draft-ietf-6tisch-architecture-26, +12:u04:latency,, +12:u05:combines, +12:u06:802.15.4, +14:u04:low-jitter, +16:u06:time-slotted, +12:u07:LowPower, +12:u12:latency,, +12:u13:combines, +12:u14:802.15.4, +7:u22:lat, +8:u23:late, +8:uI1:,--., +37:u00:draft-ietf-6tisch-architecture-26, +12:u03:latency,, +12:u04:combines, +12:u05:802.15.4, +14:u03:low-jitter, +16:u05:time-slotted, +12:u06:LowPower, +12:u11:latency,, +12:u12:combines, +12:u13:802.15.4, +8:u23:comb, +8:uI0:,--., +9:uI2:..-(), +12:u02:latency,, +12:u03:combines, +12:u04:802.15.4, +14:u02:low-jitter, +16:u04:time-slotted, +12:u05:LowPower, +12:u10:latency,, +12:u11:combines, +12:u12:802.15.4, +6:u21:80, +7:u22:802, +8:u23:802., +9:uI1:..-(), +12:u01:latency,, +12:u02:combines, +12:u03:802.15.4, +14:u01:low-jitter, +16:u03:time-slotted, +12:u04:LowPower, +12:u10:combines, +12:u11:802.15.4, +9:uI0:..-(), +12:u00:latency,, +12:u01:combines, +12:u02:802.15.4, +14:u00:low-jitter, +16:u02:time-slotted, +12:u03:LowPower, +12:u10:802.15.4, +12:u00:combines, +12:u01:802.15.4, +16:u01:time-slotted, +12:u02:LowPower, +12:u00:802.15.4, +16:u00:time-slotted, +12:u01:LowPower, +12:u00:LowPower, +11:u08:Thubert, +11:u07:Thubert, +11:u06:Thubert, +11:u14:thubert, +11:u05:Thubert, +23:u08:6tisch-architecture, +11:u13:thubert, +11:u04:Thubert, +11:u12:thubert, +8:u23:Thub, +11:u03:Thubert, +23:u07:6tisch-architecture, +11:u11:thubert, +11:u02:Thubert, +23:u06:6tisch-architecture, +11:u10:thubert, +23:u14:6tisch-architecture, +11:u01:Thubert, +23:u05:6tisch-architecture, +23:u13:6tisch-architecture, +11:u00:Thubert, +23:u04:6tisch-architecture, +23:u12:6tisch-architecture, +6:u21:6t, +7:u22:6ti, +8:u23:6tis, +23:u03:6tisch-architecture, +23:u11:6tisch-architecture, +23:u02:6tisch-architecture, +23:u10:6tisch-architecture, +23:u01:6tisch-architecture, +7:u08:New, +23:u00:6tisch-architecture, +7:u07:New, +8:u08:2.3., +7:u06:New, +17:u08:Abbreviations, +7:u05:New, +17:u07:Abbreviations, +11:u08:Related, +8:u07:2.3., +7:u04:New, +17:u06:Abbreviations, +11:u07:Related, +8:u08:High, +8:u06:2.3., +7:u03:New, +17:u05:Abbreviations, +11:u06:Related, +8:u07:High, +8:u14:2.3., +8:u05:2.3., +7:u02:New, +17:u04:Abbreviations, +11:u05:Related, +8:u06:High, +8:u13:2.3., +8:u04:2.3., +7:u01:New, +17:u03:Abbreviations, +11:u04:Related, +8:u05:High, +9:u08:TSCH:, +8:u12:2.3., +7:u22:2.3, +8:u23:2.3., +8:u03:2.3., +7:u00:New, +17:u02:Abbreviations, +11:u03:Related, +8:u04:High, +9:u07:TSCH:, +14:u08:Scheduling, +8:u11:2.3., +13:uI2:..--....., +8:u02:2.3., +17:u01:Abbreviations, +11:u02:Related, +8:u03:High, +9:u06:TSCH:, +14:u07:Scheduling, +15:u08:Distributed, +8:u10:2.3., +13:uI1:..--....., +23:uI2:..-................, +8:u01:2.3., +17:u00:Abbreviations, +11:u01:Related, +8:u02:High, +9:u05:TSCH:, +14:u06:Scheduling, +15:u07:Distributed, +14:u08:Forwarding, +13:uI0:..--....., +23:uI1:..-................, +20:uI2:..:............., +8:u00:2.3., +8:u08:3.8., +11:u00:Related, +8:u01:High, +9:u04:TSCH:, +14:u05:Scheduling, +15:u06:Distributed, +14:u07:Forwarding, +10:u08:6TiSCH, +23:uI0:..-................, +20:uI1:..:............., +8:u00:High, +9:u03:TSCH:, +14:u04:Scheduling, +15:u05:Distributed, +14:u06:Forwarding, +10:u07:6TiSCH, +17:u08:Communication, +20:uI0:..:............., +8:u07:3.8., +9:u02:TSCH:, +14:u03:Scheduling, +15:u04:Distributed, +14:u05:Forwarding, +10:u06:6TiSCH, +17:u07:Communication, +8:u06:3.8., +10:u08:4.1.1., +9:u01:TSCH:, +14:u02:Scheduling, +15:u03:Distributed, +14:u04:Forwarding, +17:u06:Communication, +11:u08:6LoWPAN, +8:u14:3.8., +8:u05:3.8., +10:u08:4.1.2., +9:u00:TSCH:, +14:u01:Scheduling, +15:u02:Distributed, +14:u03:Forwarding, +17:u05:Communication, +11:u07:6LoWPAN, +15:u08:RPL-Unaware, +8:u13:3.8., +8:u04:3.8., +10:u07:4.1.1., +14:u00:Scheduling, +15:u01:Distributed, +14:u02:Forwarding, +17:u04:Communication, +11:u06:6LoWPAN, +15:u07:RPL-Unaware, +8:u08:6LBR, +8:u12:3.8., +7:u22:3.8, +8:u23:3.8., +8:u03:3.8., +10:u06:4.1.1., +10:u07:4.1.2., +10:u08:4.2.1., +15:u00:Distributed, +14:u01:Forwarding, +17:u03:Communication, +11:u05:6LoWPAN, +15:u06:RPL-Unaware, +8:u07:6LBR, +8:u11:3.8., +10:u14:4.1.1., +28:uI2:..()...................., +8:u02:3.8., +10:u05:4.1.1., +10:u06:4.1.2., +10:u08:4.2.2., +14:u00:Forwarding, +17:u02:Communication, +11:u04:6LoWPAN, +15:u05:RPL-Unaware, +8:u06:6LBR, +8:u08:Join, +8:u10:3.8., +10:u13:4.1.1., +10:u14:4.1.2., +28:uI1:..()...................., +18:uI2:...-.........., +8:u01:3.8., +10:u04:4.1.1., +10:u05:4.1.2., +10:u07:4.2.1., +17:u01:Communication, +11:u03:6LoWPAN, +15:u04:RPL-Unaware, +8:u05:6LBR, +8:u07:Join, +10:u12:4.1.1., +10:u13:4.1.2., +28:uI0:..()...................., +18:uI1:...-.........., +8:u00:3.8., +10:u03:4.1.1., +10:u04:4.1.2., +10:u06:4.2.1., +10:u07:4.2.2., +10:u08:4.3.1., +17:u00:Communication, +11:u02:6LoWPAN, +15:u03:RPL-Unaware, +8:u04:6LBR, +8:u06:Join, +8:u08:TSCH, +10:u11:4.1.1., +10:u12:4.1.2., +10:u14:4.2.1., +18:uI0:...-.........., +20:uI2:................, +10:u02:4.1.1., +10:u03:4.1.2., +10:u05:4.2.1., +10:u06:4.2.2., +10:u08:4.3.2., +11:u01:6LoWPAN, +15:u02:RPL-Unaware, +8:u03:6LBR, +8:u05:Join, +8:u07:TSCH, +8:u08:6top, +10:u10:4.1.1., +10:u11:4.1.2., +10:u13:4.2.1., +10:u14:4.2.2., +20:uI1:................, +10:u01:4.1.1., +10:u02:4.1.2., +10:u04:4.2.1., +10:u05:4.2.2., +10:u07:4.3.1., +10:u08:4.3.3., +11:u00:6LoWPAN, +15:u01:RPL-Unaware, +8:u02:6LBR, +8:u04:Join, +8:u06:TSCH, +8:u07:6top, +10:u10:4.1.2., +10:u12:4.2.1., +10:u13:4.2.2., +20:uI0:................, +10:u00:4.1.1., +10:u01:4.1.2., +10:u03:4.2.1., +10:u04:4.2.2., +10:u06:4.3.1., +10:u07:4.3.2., +10:u08:4.3.4., +15:u00:RPL-Unaware, +8:u01:6LBR, +8:u03:Join, +8:u05:TSCH, +8:u06:6top, +10:u11:4.2.1., +10:u12:4.2.2., +10:u14:4.3.1., +10:u00:4.1.2., +10:u02:4.2.1., +10:u03:4.2.2., +10:u05:4.3.1., +10:u06:4.3.2., +10:u07:4.3.3., +10:u08:4.3.5., +8:u00:6LBR, +8:u02:Join, +8:u04:TSCH, +8:u05:6top, +10:u10:4.2.1., +10:u11:4.2.2., +10:u13:4.3.1., +10:u14:4.3.2., +10:u01:4.2.1., +10:u02:4.2.2., +10:u04:4.3.1., +10:u05:4.3.2., +10:u06:4.3.3., +10:u07:4.3.4., +10:u08:4.3.6., +8:u01:Join, +8:u03:TSCH, +8:u04:6top, +14:u08:Slotframes, +10:u10:4.2.2., +10:u12:4.3.1., +10:u13:4.3.2., +10:u14:4.3.3., +12:uI2:........, +10:u00:4.2.1., +10:u01:4.2.2., +10:u03:4.3.1., +10:u04:4.3.2., +10:u05:4.3.3., +10:u06:4.3.4., +10:u07:4.3.5., +8:u00:Join, +8:u02:TSCH, +8:u03:6top, +14:u07:Slotframes, +16:u08:Distributing, +10:u11:4.3.1., +10:u12:4.3.2., +10:u13:4.3.3., +10:u14:4.3.4., +12:uI1:........, +10:u00:4.2.2., +10:u02:4.3.1., +10:u03:4.3.2., +10:u04:4.3.3., +10:u05:4.3.4., +10:u06:4.3.5., +10:u07:4.3.6., +10:u08:4.4.1., +8:u01:TSCH, +8:u02:6top, +14:u06:Slotframes, +16:u07:Distributing, +12:u08:Schedule, +10:u10:4.3.1., +10:u11:4.3.2., +10:u12:4.3.3., +10:u13:4.3.4., +10:u14:4.3.5., +12:uI0:........, +10:u01:4.3.1., +10:u02:4.3.2., +10:u03:4.3.3., +10:u04:4.3.4., +10:u05:4.3.5., +10:u06:4.3.6., +10:u08:4.4.2., +8:u00:TSCH, +8:u01:6top, +14:u05:Slotframes, +16:u06:Distributing, +12:u07:Schedule, +10:u08:Static, +10:u10:4.3.2., +10:u11:4.3.3., +10:u12:4.3.4., +10:u13:4.3.5., +10:u14:4.3.6., +10:u00:4.3.1., +10:u01:4.3.2., +10:u02:4.3.3., +10:u03:4.3.4., +10:u04:4.3.5., +10:u05:4.3.6., +10:u07:4.4.1., +10:u08:4.4.3., +8:u00:6top, +14:u04:Slotframes, +16:u05:Distributing, +12:u06:Schedule, +10:u07:Static, +24:u08:Neighbor-to-neighbor, +10:u10:4.3.3., +10:u11:4.3.4., +10:u12:4.3.5., +10:u13:4.3.6., +15:uI2:..........., +10:u00:4.3.2., +10:u01:4.3.3., +10:u02:4.3.4., +10:u03:4.3.5., +10:u04:4.3.6., +10:u06:4.4.1., +10:u07:4.4.2., +10:u08:4.4.4., +14:u03:Slotframes, +16:u04:Distributing, +12:u05:Schedule, +10:u06:Static, +24:u07:Neighbor-to-neighbor, +10:u08:Remote, +10:u10:4.3.4., +10:u11:4.3.5., +10:u12:4.3.6., +10:u14:4.4.1., +15:uI1:..........., +10:u00:4.3.3., +10:u01:4.3.4., +10:u02:4.3.5., +10:u03:4.3.6., +10:u05:4.4.1., +10:u06:4.4.2., +10:u07:4.4.3., +14:u02:Slotframes, +16:u03:Distributing, +12:u04:Schedule, +10:u05:Static, +24:u06:Neighbor-to-neighbor, +10:u07:Remote, +14:u08:Hop-by-hop, +10:u10:4.3.5., +10:u11:4.3.6., +10:u13:4.4.1., +10:u14:4.4.2., +15:uI0:..........., +10:u00:4.3.4., +10:u01:4.3.5., +10:u02:4.3.6., +10:u04:4.4.1., +10:u05:4.4.2., +10:u06:4.4.3., +10:u07:4.4.4., +10:u08:4.5.1., +14:u01:Slotframes, +16:u02:Distributing, +12:u03:Schedule, +10:u04:Static, +24:u05:Neighbor-to-neighbor, +10:u06:Remote, +14:u07:Hop-by-hop, +6:u08:On, +10:u10:4.3.6., +10:u12:4.4.1., +10:u13:4.4.2., +10:u14:4.4.3., +20:uI2:...--..........., +10:u00:4.3.5., +10:u01:4.3.6., +10:u03:4.4.1., +10:u04:4.4.2., +10:u05:4.4.3., +10:u06:4.4.4., +10:u08:4.5.2., +14:u00:Slotframes, +16:u01:Distributing, +12:u02:Schedule, +10:u03:Static, +24:u04:Neighbor-to-neighbor, +10:u05:Remote, +14:u06:Hop-by-hop, +6:u07:On, +11:u08:General, +10:u11:4.4.1., +10:u12:4.4.2., +10:u13:4.4.3., +10:u14:4.4.4., +20:uI1:...--..........., +13:uI2:........., +10:u00:4.3.6., +10:u02:4.4.1., +10:u03:4.4.2., +10:u04:4.4.3., +10:u05:4.4.4., +10:u07:4.5.1., +10:u08:4.5.3., +16:u00:Distributing, +12:u01:Schedule, +10:u02:Static, +24:u03:Neighbor-to-neighbor, +10:u04:Remote, +14:u05:Hop-by-hop, +6:u06:On, +11:u07:General, +10:u08:Serial, +10:u10:4.4.1., +10:u11:4.4.2., +10:u12:4.4.3., +10:u13:4.4.4., +20:uI0:...--..........., +13:uI1:........., +25:uI2:...--................, +10:u01:4.4.1., +10:u02:4.4.2., +10:u03:4.4.3., +10:u04:4.4.4., +10:u06:4.5.1., +10:u07:4.5.2., +10:u08:4.5.4., +12:u00:Schedule, +10:u01:Static, +24:u02:Neighbor-to-neighbor, +10:u03:Remote, +14:u04:Hop-by-hop, +6:u05:On, +11:u06:General, +10:u07:Serial, +11:u08:Complex, +10:u10:4.4.2., +10:u11:4.4.3., +10:u12:4.4.4., +10:u14:4.5.1., +13:uI0:........., +25:uI1:...--................, +10:u00:4.4.1., +10:u01:4.4.2., +10:u02:4.4.3., +10:u03:4.4.4., +10:u05:4.5.1., +10:u06:4.5.2., +10:u07:4.5.3., +10:u08:4.5.5., +10:u00:Static, +24:u01:Neighbor-to-neighbor, +10:u02:Remote, +14:u03:Hop-by-hop, +6:u04:On, +11:u05:General, +10:u06:Serial, +11:u07:Complex, +10:u08:DetNet, +10:u10:4.4.3., +10:u11:4.4.4., +10:u13:4.5.1., +10:u14:4.5.2., +25:uI0:...--................, +10:u00:4.4.2., +10:u01:4.4.3., +10:u02:4.4.4., +10:u04:4.5.1., +10:u05:4.5.2., +10:u06:4.5.3., +10:u07:4.5.4., +8:u08:4.6., +24:u00:Neighbor-to-neighbor, +10:u01:Remote, +14:u02:Hop-by-hop, +6:u03:On, +11:u04:General, +10:u05:Serial, +11:u06:Complex, +10:u07:DetNet, +8:u08:Cell, +10:u10:4.4.4., +10:u12:4.5.1., +10:u13:4.5.2., +10:u14:4.5.3., +10:u00:4.4.3., +10:u01:4.4.4., +10:u03:4.5.1., +10:u04:4.5.2., +10:u05:4.5.3., +10:u06:4.5.4., +10:u07:4.5.5., +10:u08:4.6.1., +10:u00:Remote, +14:u01:Hop-by-hop, +6:u02:On, +11:u03:General, +10:u04:Serial, +11:u05:Complex, +10:u06:DetNet, +8:u07:Cell, +10:u11:4.5.1., +10:u12:4.5.2., +10:u13:4.5.3., +10:u14:4.5.4., +10:uI2:......, +10:u00:4.4.4., +10:u02:4.5.1., +10:u03:4.5.2., +10:u04:4.5.3., +10:u05:4.5.4., +10:u06:4.5.5., +8:u07:4.6., +10:u08:4.6.2., +14:u00:Hop-by-hop, +6:u01:On, +11:u02:General, +10:u03:Serial, +11:u04:Complex, +10:u05:DetNet, +8:u06:Cell, +10:u10:4.5.1., +10:u11:4.5.2., +10:u12:4.5.3., +10:u13:4.5.4., +10:u14:4.5.5., +10:uI1:......, +24:uI2:...--..............., +10:u01:4.5.1., +10:u02:4.5.2., +10:u03:4.5.3., +10:u04:4.5.4., +10:u05:4.5.5., +8:u06:4.6., +10:u07:4.6.1., +10:u08:4.6.3., +6:u00:On, +11:u01:General, +10:u02:Serial, +11:u03:Complex, +10:u04:DetNet, +8:u05:Cell, +8:u08:IPv6, +10:u10:4.5.2., +10:u11:4.5.3., +10:u12:4.5.4., +10:u13:4.5.5., +8:u14:4.6., +10:uI0:......, +24:uI1:...--..............., +10:u00:4.5.1., +10:u01:4.5.2., +10:u02:4.5.3., +10:u03:4.5.4., +10:u04:4.5.5., +8:u05:4.6., +10:u06:4.6.1., +10:u07:4.6.2., +8:u08:4.7., +11:u00:General, +10:u01:Serial, +11:u02:Complex, +10:u03:DetNet, +8:u04:Cell, +8:u07:IPv6, +12:u08:Fragment, +10:u10:4.5.3., +10:u11:4.5.4., +10:u12:4.5.5., +8:u13:4.6., +10:u14:4.6.1., +24:uI0:...--..............., +10:u00:4.5.2., +10:u01:4.5.3., +10:u02:4.5.4., +10:u03:4.5.5., +8:u04:4.6., +10:u05:4.6.1., +10:u06:4.6.2., +10:u07:4.6.3., +10:u08:4.7.1., +10:u00:Serial, +11:u01:Complex, +10:u02:DetNet, +8:u03:Cell, +8:u06:IPv6, +12:u07:Fragment, +10:u10:4.5.4., +10:u11:4.5.5., +8:u12:4.6., +10:u13:4.6.1., +10:u14:4.6.2., +7:u22:4.6, +8:u23:4.6., +10:u00:4.5.3., +10:u01:4.5.4., +10:u02:4.5.5., +8:u03:4.6., +10:u04:4.6.1., +10:u05:4.6.2., +10:u06:4.6.3., +8:u07:4.7., +10:u08:4.7.2., +11:u00:Complex, +10:u01:DetNet, +8:u02:Cell, +8:u05:IPv6, +12:u06:Fragment, +10:u08:Packet, +10:u10:4.5.5., +8:u11:4.6., +10:u12:4.6.1., +10:u13:4.6.2., +10:u14:4.6.3., +10:u00:4.5.4., +10:u01:4.5.5., +8:u02:4.6., +10:u03:4.6.1., +10:u04:4.6.2., +10:u05:4.6.3., +8:u06:4.7., +10:u07:4.7.1., +10:u00:DetNet, +8:u01:Cell, +8:u04:IPv6, +12:u05:Fragment, +10:u07:Packet, +16:u08:Replication,, +8:u10:4.6., +10:u11:4.6.1., +10:u12:4.6.2., +10:u13:4.6.3., +8:u14:4.7., +10:u00:4.5.5., +8:u01:4.6., +10:u02:4.6.1., +10:u03:4.6.2., +10:u04:4.6.3., +8:u05:4.7., +10:u06:4.7.1., +10:u07:4.7.2., +8:u00:Cell, +8:u03:IPv6, +12:u04:Fragment, +10:u06:Packet, +16:u07:Replication,, +10:u10:4.6.1., +10:u11:4.6.2., +10:u12:4.6.3., +8:u13:4.7., +10:u14:4.7.1., +8:u00:4.6., +10:u01:4.6.1., +10:u02:4.6.2., +10:u03:4.6.3., +8:u04:4.7., +10:u05:4.7.1., +10:u06:4.7.2., +8:u02:IPv6, +12:u03:Fragment, +10:u05:Packet, +16:u06:Replication,, +10:u10:4.6.2., +10:u11:4.6.3., +8:u12:4.7., +10:u13:4.7.1., +10:u14:4.7.2., +7:u22:4.7, +8:u23:4.7., +10:u00:4.6.1., +10:u01:4.6.2., +10:u02:4.6.3., +8:u03:4.7., +10:u04:4.7.1., +10:u05:4.7.2., +8:u01:IPv6, +12:u02:Fragment, +10:u04:Packet, +16:u05:Replication,, +10:u10:4.6.3., +8:u11:4.7., +10:u12:4.7.1., +10:u13:4.7.2., +16:uI2:...,........, +10:u00:4.6.2., +10:u01:4.6.3., +8:u02:4.7., +10:u03:4.7.1., +10:u04:4.7.2., +8:u00:IPv6, +12:u01:Fragment, +10:u03:Packet, +16:u04:Replication,, +8:u10:4.7., +10:u11:4.7.1., +10:u12:4.7.2., +16:uI1:...,........, +10:u00:4.6.3., +8:u01:4.7., +10:u02:4.7.1., +10:u03:4.7.2., +12:u00:Fragment, +10:u02:Packet, +16:u03:Replication,, +10:u10:4.7.1., +10:u11:4.7.2., +16:uI0:...,........, +8:u00:4.7., +10:u01:4.7.1., +10:u02:4.7.2., +10:u01:Packet, +16:u02:Replication,, +10:u10:4.7.2., +10:u00:4.7.1., +10:u01:4.7.2., +10:u00:Packet, +16:u01:Replication,, +10:u00:4.7.2., +16:u00:Replication,, +16:u08:Availability, +8:u08:6.3., +16:u07:Availability, +13:u08:Selective, +8:u08:6.4., +16:u06:Availability, +13:u07:Selective, +13:u08:MAC-Layer, +8:u07:6.3., +8:u08:6.5., +16:u05:Availability, +13:u06:Selective, +13:u07:MAC-Layer, +8:u08:Time, +8:u06:6.3., +8:u07:6.4., +8:u08:6.6., +16:u04:Availability, +13:u05:Selective, +13:u06:MAC-Layer, +8:u07:Time, +14:u08:Validating, +8:u14:6.3., +8:u05:6.3., +8:u06:6.4., +8:u07:6.5., +16:u03:Availability, +13:u04:Selective, +13:u05:MAC-Layer, +8:u06:Time, +14:u07:Validating, +8:u13:6.3., +8:u14:6.4., +26:uI2:..-..................., +8:u04:6.3., +8:u05:6.4., +8:u06:6.5., +8:u07:6.6., +16:u02:Availability, +13:u03:Selective, +13:u04:MAC-Layer, +8:u05:Time, +14:u06:Validating, +8:u12:6.3., +8:u13:6.4., +8:u14:6.5., +7:u22:6.3, +8:u23:6.3., +26:uI1:..-..................., +8:u03:6.3., +8:u04:6.4., +8:u05:6.5., +8:u06:6.6., +16:u01:Availability, +13:u02:Selective, +13:u03:MAC-Layer, +8:u04:Time, +14:u05:Validating, +16:u08:Contributors, +8:u11:6.3., +8:u12:6.4., +8:u13:6.5., +8:u14:6.6., +7:u22:6.4, +8:u23:6.4., +26:uI0:..-..................., +8:u02:6.3., +8:u03:6.4., +8:u04:6.5., +8:u05:6.6., +8:u08:7.3., +16:u00:Availability, +13:u01:Selective, +13:u02:MAC-Layer, +8:u03:Time, +14:u04:Validating, +16:u07:Contributors, +11:u08:Special, +8:u10:6.3., +8:u11:6.4., +8:u12:6.5., +8:u13:6.6., +7:u22:6.5, +8:u23:6.5., +8:u01:6.3., +8:u02:6.4., +8:u03:6.5., +8:u04:6.6., +13:u00:Selective, +13:u01:MAC-Layer, +8:u02:Time, +14:u03:Validating, +16:u06:Contributors, +11:u07:Special, +7:u08:And, +8:u10:6.4., +8:u11:6.5., +8:u12:6.6., +7:u22:6.6, +8:u23:6.6., +8:u00:6.3., +8:u01:6.4., +8:u02:6.5., +8:u03:6.6., +8:u07:7.3., +8:u08:8.1., +13:u00:MAC-Layer, +8:u01:Time, +14:u02:Validating, +16:u05:Contributors, +11:u06:Special, +7:u07:And, +8:u10:6.5., +8:u11:6.6., +8:u00:6.4., +8:u01:6.5., +8:u02:6.6., +8:u06:7.3., +8:u08:8.2., +8:u00:Time, +14:u01:Validating, +16:u04:Contributors, +11:u05:Special, +7:u06:And, +8:u10:6.6., +8:u14:7.3., +8:u00:6.5., +8:u01:6.6., +8:u05:7.3., +8:u07:8.1., +12:u08:Appendix, +14:u00:Validating, +16:u03:Contributors, +11:u04:Special, +7:u05:And, +8:u13:7.3., +8:u00:6.6., +8:u04:7.3., +8:u06:8.1., +8:u07:8.2., +8:u08:A.1., +16:u02:Contributors, +11:u03:Special, +7:u04:And, +6:u08:A., +8:u12:7.3., +8:u14:8.1., +7:u22:7.3, +8:u23:7.3., +8:u03:7.3., +8:u05:8.1., +8:u06:8.2., +12:u07:Appendix, +10:u08:A.1.1., +16:u01:Contributors, +11:u02:Special, +7:u03:And, +6:u07:A., +15:u08:Unchartered, +8:u11:7.3., +8:u13:8.1., +8:u14:8.2., +8:u02:7.3., +8:u04:8.1., +8:u05:8.2., +12:u06:Appendix, +8:u07:A.1., +10:u08:A.1.2., +16:u00:Contributors, +11:u01:Special, +7:u02:And, +6:u06:A., +15:u07:Unchartered, +8:u10:7.3., +8:u12:8.1., +8:u13:8.2., +12:u14:appendix, +7:u22:8.1, +8:u23:8.1., +8:u01:7.3., +8:u03:8.1., +8:u04:8.2., +12:u05:Appendix, +8:u06:A.1., +10:u07:A.1.1., +10:u08:A.1.3., +11:u00:Special, +7:u01:And, +6:u05:A., +15:u06:Unchartered, +8:u11:8.1., +8:u12:8.2., +12:u13:appendix, +8:u14:a.1., +7:u22:8.2, +8:u23:8.2., +8:u00:7.3., +8:u02:8.1., +8:u03:8.2., +12:u04:Appendix, +8:u05:A.1., +10:u06:A.1.1., +10:u07:A.1.2., +8:u08:A.2., +7:u00:And, +6:u04:A., +15:u05:Unchartered, +9:u08:Using, +8:u10:8.1., +8:u11:8.2., +12:u12:appendix, +8:u13:a.1., +10:u14:a.1.1., +6:u21:Ap, +7:u22:App, +8:u23:Appe, +8:u01:8.1., +8:u02:8.2., +12:u03:Appendix, +8:u04:A.1., +10:u05:A.1.1., +10:u06:A.1.2., +10:u07:A.1.3., +6:u03:A., +15:u04:Unchartered, +9:u07:Using, +12:u08:External, +8:u10:8.2., +12:u11:appendix, +8:u12:a.1., +10:u13:a.1.1., +10:u14:a.1.2., +7:u22:A.1, +8:u23:A.1., +8:u00:8.1., +8:u01:8.2., +12:u02:Appendix, +8:u03:A.1., +10:u04:A.1.1., +10:u05:A.1.2., +10:u06:A.1.3., +8:u07:A.2., +6:u02:A., +15:u03:Unchartered, +9:u06:Using, +12:u07:External, +12:u10:appendix, +8:u11:a.1., +10:u12:a.1.1., +10:u13:a.1.2., +10:u14:a.1.3., +8:u00:8.2., +12:u01:Appendix, +8:u02:A.1., +10:u03:A.1.1., +10:u04:A.1.2., +10:u05:A.1.3., +8:u06:A.2., +12:u08:Wireless, +6:u01:A., +15:u02:Unchartered, +9:u05:Using, +12:u06:External, +8:u10:a.1., +10:u11:a.1.1., +10:u12:a.1.2., +10:u13:a.1.3., +8:u14:a.2., +12:u00:Appendix, +8:u01:A.1., +10:u02:A.1.1., +10:u03:A.1.2., +10:u04:A.1.3., +8:u05:A.2., +19:u08:interconnected,, +6:u00:A., +15:u01:Unchartered, +9:u04:Using, +12:u05:External, +12:u08:Networks, +10:u10:a.1.1., +10:u11:a.1.2., +10:u12:a.1.3., +8:u13:a.2., +22:uI2:..(-)............., +8:u00:A.1., +10:u01:A.1.1., +10:u02:A.1.2., +10:u03:A.1.3., +8:u04:A.2., +12:u07:Wireless, +10:u08:range,, +15:u00:Unchartered, +9:u03:Using, +12:u04:External, +12:u07:Networks, +10:u10:a.1.2., +10:u11:a.1.3., +8:u12:a.2., +7:u22:A.2, +8:u23:A.2., +22:uI1:..(-)............., +10:u00:A.1.1., +10:u01:A.1.2., +10:u02:A.1.3., +8:u03:A.2., +12:u06:Wireless, +19:u07:interconnected,, +12:u08:instance, +9:u02:Using, +12:u03:External, +12:u06:Networks, +10:u10:a.1.3., +8:u11:a.2., +12:u14:wireless, +22:uI0:..(-)............., +10:u00:A.1.2., +10:u01:A.1.3., +8:u02:A.2., +12:u05:Wireless, +19:u06:interconnected,, +10:u07:range,, +9:u01:Using, +12:u02:External, +12:u05:Networks, +8:u10:a.2., +12:u13:wireless, +19:u14:interconnected,, +10:u00:A.1.3., +8:u01:A.2., +12:u04:Wireless, +19:u05:interconnected,, +10:u06:range,, +12:u07:instance, +12:u08:delivery, +9:u00:Using, +12:u01:External, +12:u04:Networks, +12:u12:wireless, +19:u13:interconnected,, +10:u14:range,, +7:u22:Wir, +8:u23:Wire, +8:u00:A.2., +12:u03:Wireless, +19:u04:interconnected,, +10:u05:range,, +12:u06:instance, +12:u08:critical, +12:u00:External, +12:u03:Networks, +9:u08:ratio, +12:u11:wireless, +19:u12:interconnected,, +10:u13:range,, +12:u14:instance, +12:u02:Wireless, +19:u03:interconnected,, +10:u04:range,, +12:u05:instance, +12:u07:delivery, +12:u02:Networks, +9:u07:ratio, +22:u08:machine-to-machine, +12:u10:wireless, +19:u11:interconnected,, +10:u12:range,, +12:u13:instance, +6:u21:ra, +7:u22:ran, +8:u23:rang, +12:u01:Wireless, +19:u02:interconnected,, +10:u03:range,, +12:u04:instance, +12:u06:delivery, +12:u07:critical, +34:u08:[I-D.bernardos-raw-use-cases],, +12:u01:Networks, +9:u06:ratio, +22:u07:machine-to-machine, +19:u10:interconnected,, +10:u11:range,, +12:u12:instance, +12:u14:delivery, +12:u00:Wireless, +19:u01:interconnected,, +10:u02:range,, +12:u03:instance, +12:u05:delivery, +12:u06:critical, +12:u00:Networks, +9:u05:ratio, +22:u06:machine-to-machine, +10:u10:range,, +12:u11:instance, +12:u13:delivery, +12:u14:critical, +6:u22:On, +6:u23:On, +19:u00:interconnected,, +10:u01:range,, +12:u02:instance, +12:u04:delivery, +12:u05:critical, +34:u07:[I-D.bernardos-raw-use-cases],, +14:u08:considered, +9:u04:ratio, +22:u05:machine-to-machine, +9:u08:cases, +12:u10:instance, +12:u12:delivery, +12:u13:critical, +8:u14:such, +10:u00:range,, +12:u01:instance, +12:u03:delivery, +12:u04:critical, +34:u06:[I-D.bernardos-raw-use-cases],, +14:u08:Automation, +9:u03:ratio, +22:u04:machine-to-machine, +9:u07:cases, +16:u08:applications, +12:u11:delivery, +12:u12:critical, +8:u13:such, +34:u14:[i-d.bernardos-raw-use-cases],, +6:u21:cr, +7:u22:cri, +8:u23:crit, +12:u00:instance, +12:u02:delivery, +12:u03:critical, +34:u05:[I-D.bernardos-raw-use-cases],, +14:u07:considered, +11:u08:command, +9:u02:ratio, +22:u03:machine-to-machine, +9:u06:cases, +16:u07:applications, +12:u10:delivery, +12:u11:critical, +8:u12:such, +34:u13:[i-d.bernardos-raw-use-cases],, +7:u22:suc, +8:u23:such, +12:u01:delivery, +12:u02:critical, +34:u04:[I-D.bernardos-raw-use-cases],, +14:u06:considered, +14:u07:Automation, +10:u08:mobile, +9:u01:ratio, +22:u02:machine-to-machine, +9:u05:cases, +16:u06:applications, +12:u10:critical, +8:u11:such, +34:u12:[i-d.bernardos-raw-use-cases],, +14:u14:considered, +12:u00:delivery, +12:u01:critical, +34:u03:[I-D.bernardos-raw-use-cases],, +14:u05:considered, +14:u06:Automation, +11:u07:command, +9:u00:ratio, +22:u01:machine-to-machine, +9:u04:cases, +16:u05:applications, +14:u08:scenarios,, +8:u10:such, +34:u11:[i-d.bernardos-raw-use-cases],, +14:u13:considered, +14:u14:automation, +12:u00:critical, +34:u02:[I-D.bernardos-raw-use-cases],, +14:u04:considered, +14:u05:Automation, +11:u06:command, +10:u07:mobile, +22:u00:machine-to-machine, +9:u03:cases, +16:u04:applications, +14:u07:scenarios,, +8:u08:home, +34:u10:[i-d.bernardos-raw-use-cases],, +14:u12:considered, +14:u13:automation, +11:u14:command, +9:uI2:(),,-, +34:u01:[I-D.bernardos-raw-use-cases],, +14:u03:considered, +14:u04:Automation, +11:u05:command, +10:u06:mobile, +8:u08:Std., +9:u02:cases, +16:u03:applications, +14:u06:scenarios,, +8:u07:home, +15:u08:Timeslotted, +14:u11:considered, +14:u12:automation, +11:u13:command, +10:u14:mobile, +9:uI1:(),,-, +34:u00:[I-D.bernardos-raw-use-cases],, +14:u02:considered, +14:u03:Automation, +11:u04:command, +10:u05:mobile, +9:u01:cases, +16:u02:applications, +14:u05:scenarios,, +8:u06:home, +15:u07:Timeslotted, +14:u10:considered, +14:u11:automation, +11:u12:command, +10:u13:mobile, +8:u23:comm, +9:uI0:(),,-, +14:u01:considered, +14:u02:Automation, +11:u03:command, +10:u04:mobile, +8:u07:Std., +15:u08:retrofitted, +9:u00:cases, +16:u01:applications, +14:u04:scenarios,, +8:u05:home, +15:u06:Timeslotted, +14:u10:automation, +11:u11:command, +10:u12:mobile, +7:u22:mob, +8:u23:mobi, +14:u00:considered, +14:u01:Automation, +11:u02:command, +10:u03:mobile, +8:u06:Std., +16:u00:applications, +14:u03:scenarios,, +8:u04:home, +15:u05:Timeslotted, +11:u10:command, +10:u11:mobile, +8:u14:std., +8:uI2:()[], +14:u00:Automation, +11:u01:command, +10:u02:mobile, +8:u05:Std., +15:u07:retrofitted, +13:u08:standard,, +14:u02:scenarios,, +8:u03:home, +15:u04:Timeslotted, +10:u10:mobile, +8:u13:std., +8:uI1:()[], +11:uI2:...[](), +11:u00:command, +10:u01:mobile, +8:u04:Std., +15:u06:retrofitted, +14:u01:scenarios,, +8:u02:home, +15:u03:Timeslotted, +8:u12:std., +15:u14:retrofitted, +7:u22:Std, +8:u23:Std., +8:uI0:()[], +11:uI1:...[](), +9:uI2:...[], +10:u00:mobile, +8:u03:Std., +15:u05:retrofitted, +13:u07:standard,, +14:u00:scenarios,, +8:u01:home, +15:u02:Timeslotted, +8:u11:std., +15:u13:retrofitted, +11:uI0:...[](), +9:uI1:...[], +8:u02:Std., +15:u04:retrofitted, +13:u06:standard,, +8:u00:home, +15:u01:Timeslotted, +8:u10:std., +15:u12:retrofitted, +13:u14:standard,, +7:u22:ret, +8:u23:retr, +9:uI0:...[], +8:u01:Std., +15:u03:retrofitted, +13:u05:standard,, +15:u00:Timeslotted, +15:u11:retrofitted, +13:u13:standard,, +8:u00:Std., +15:u02:retrofitted, +13:u04:standard,, +15:u10:retrofitted, +13:u12:standard,, +7:u22:sta, +8:u23:stan, +15:u01:retrofitted, +13:u03:standard,, +13:u11:standard,, +15:u00:retrofitted, +13:u02:standard,, +17:u08:Time-Division, +13:u10:standard,, +13:u01:standard,, +13:u08:technique, +13:u00:standard,, +17:u07:Time-Division, +17:u08:transmission,, +11:u08:whereby, +17:u06:Time-Division, +13:u07:technique, +17:u08:deterministic, +11:u07:whereby, +17:u14:time-division, +17:u05:Time-Division, +13:u06:technique, +17:u07:transmission,, +15:u08:constrained, +11:u06:whereby, +15:u08:operations,, +17:u13:time-division, +13:u14:technique, +17:u04:Time-Division, +13:u05:technique, +17:u06:transmission,, +17:u07:deterministic, +11:u05:whereby, +15:u07:operations,, +12:u08:wireless, +17:u12:time-division, +13:u13:technique, +17:u14:transmission,, +6:u21:Ti, +7:u22:Tim, +8:u23:Time, +17:u03:Time-Division, +13:u04:technique, +17:u05:transmission,, +17:u06:deterministic, +15:u07:constrained, +11:u04:whereby, +15:u06:operations,, +12:u07:wireless, +13:u08:scheduled, +17:u11:time-division, +13:u12:technique, +17:u13:transmission,, +17:u14:deterministic, +7:u22:tec, +8:u23:tech, +17:u02:Time-Division, +13:u03:technique, +17:u04:transmission,, +17:u05:deterministic, +15:u06:constrained, +11:u03:whereby, +15:u05:operations,, +12:u06:wireless, +13:u07:scheduled, +17:u10:time-division, +13:u11:technique, +17:u12:transmission,, +17:u13:deterministic, +15:u14:constrained, +17:u01:Time-Division, +13:u02:technique, +17:u03:transmission,, +17:u04:deterministic, +15:u05:constrained, +10:u08:Proven, +11:u02:whereby, +15:u04:operations,, +12:u05:wireless, +13:u06:scheduled, +13:u10:technique, +17:u11:transmission,, +17:u12:deterministic, +15:u13:constrained, +7:u22:det, +8:u23:dete, +17:u00:Time-Division, +13:u01:technique, +17:u02:transmission,, +17:u03:deterministic, +15:u04:constrained, +13:u08:including, +11:u01:whereby, +15:u03:operations,, +12:u04:wireless, +13:u05:scheduled, +17:u08:Deterministic, +17:u10:transmission,, +17:u11:deterministic, +15:u12:constrained, +13:u00:technique, +17:u01:transmission,, +17:u02:deterministic, +15:u03:constrained, +10:u07:Proven, +11:u00:whereby, +15:u02:operations,, +12:u03:wireless, +13:u04:scheduled, +17:u07:Deterministic, +14:u08:ISA100.11a, +17:u10:deterministic, +15:u11:constrained, +9:uI2:,..,,, +17:u00:transmission,, +17:u01:deterministic, +15:u02:constrained, +10:u06:Proven, +13:u07:including, +15:u01:operations,, +12:u02:wireless, +13:u03:scheduled, +17:u06:Deterministic, +14:u07:ISA100.11a, +16:u08:demonstrated, +15:u10:constrained, +10:u14:proven, +9:uI1:,..,,, +17:u00:deterministic, +15:u01:constrained, +10:u05:Proven, +13:u06:including, +14:u08:well-known, +15:u00:operations,, +12:u01:wireless, +13:u02:scheduled, +17:u05:Deterministic, +14:u06:ISA100.11a, +16:u07:demonstrated, +8:u08:high, +10:u13:proven, +13:u14:including, +9:uI0:,..,,, +15:u00:constrained, +10:u04:Proven, +13:u05:including, +12:u00:wireless, +13:u01:scheduled, +17:u04:Deterministic, +14:u05:ISA100.11a, +16:u06:demonstrated, +8:u07:high, +10:u08:flows,, +10:u12:proven, +13:u13:including, +8:u14:have, +11:uI2:.[.][],, +10:u03:Proven, +13:u04:including, +14:u07:well-known, +13:u00:scheduled, +17:u03:Deterministic, +14:u04:ISA100.11a, +16:u05:demonstrated, +8:u06:high, +10:u07:flows,, +10:u11:proven, +13:u12:including, +8:u13:have, +11:uI1:.[.][],, +10:u02:Proven, +13:u03:including, +14:u06:well-known, +15:u08:Operational, +17:u02:Deterministic, +14:u03:ISA100.11a, +16:u04:demonstrated, +8:u05:high, +10:u06:flows,, +10:u08:enable, +10:u10:proven, +13:u11:including, +8:u12:have, +14:u14:well-known, +7:u22:hav, +8:u23:have, +11:uI0:.[.][],, +10:u01:Proven, +13:u02:including, +14:u05:well-known, +17:u01:Deterministic, +14:u02:ISA100.11a, +16:u03:demonstrated, +8:u04:high, +10:u05:flows,, +10:u07:enable, +13:u10:including, +8:u11:have, +14:u13:well-known, +8:uI2:-,(), +10:u00:Proven, +13:u01:including, +14:u04:well-known, +15:u07:Operational, +17:u00:Deterministic, +14:u01:ISA100.11a, +16:u02:demonstrated, +8:u03:high, +10:u04:flows,, +10:u06:enable, +8:u10:have, +14:u12:well-known, +6:u21:we, +7:u22:wel, +8:u23:well, +8:uI1:-,(), +13:u00:including, +14:u03:well-known, +15:u06:Operational, +13:u08:otherwise, +14:u00:ISA100.11a, +16:u01:demonstrated, +8:u02:high, +10:u03:flows,, +10:u05:enable, +14:u11:well-known, +15:u14:operational, +8:uI0:-,(), +14:u02:well-known, +15:u05:Operational, +16:u00:demonstrated, +8:u01:high, +10:u02:flows,, +10:u04:enable, +14:u10:well-known, +15:u13:operational, +10:u14:6tisch, +10:uI2:()-(),, +14:u01:well-known, +15:u04:Operational, +13:u07:otherwise, +11:u08:routing, +8:u00:high, +10:u01:flows,, +10:u03:enable, +15:u12:operational, +10:uI1:()-(),, +14:u00:well-known, +15:u03:Operational, +13:u06:otherwise, +14:u08:high-speed, +10:u00:flows,, +10:u02:enable, +15:u11:operational, +13:u14:otherwise, +10:uI0:()-(),, +15:u02:Operational, +13:u05:otherwise, +11:u07:routing, +10:u01:enable, +14:u08:federating, +15:u10:operational, +13:u13:otherwise, +15:u01:Operational, +13:u04:otherwise, +11:u06:routing, +14:u07:high-speed, +10:u00:enable, +14:u07:federating, +13:u12:otherwise, +15:u00:Operational, +13:u03:otherwise, +11:u05:routing, +14:u06:high-speed, +10:u08:routed, +14:u06:federating, +13:u11:otherwise, +14:u14:high-speed, +13:u02:otherwise, +11:u04:routing, +14:u05:high-speed, +14:u05:federating, +14:u08:structure., +13:u10:otherwise, +14:u13:high-speed, +13:u01:otherwise, +11:u03:routing, +14:u04:high-speed, +10:u07:routed, +14:u04:federating, +14:u07:structure., +14:u12:high-speed, +6:u21:hi, +7:u22:hig, +8:u23:high, +13:u00:otherwise, +11:u02:routing, +14:u03:high-speed, +10:u06:routed, +14:u03:federating, +14:u06:structure., +14:u11:high-speed, +10:u14:routed, +11:u01:routing, +14:u02:high-speed, +10:u05:routed, +14:u02:federating, +14:u05:structure., +14:u10:high-speed, +10:u13:routed, +11:u00:routing, +14:u01:high-speed, +10:u04:routed, +14:u01:federating, +14:u04:structure., +12:u08:Backbone, +10:u12:routed, +14:u00:high-speed, +10:u03:routed, +7:u08:ND), +14:u00:federating, +14:u03:structure., +12:u07:Backbone, +10:u11:routed, +10:u02:routed, +14:u02:structure., +12:u06:Backbone, +13:u08:[RFC4861], +10:u10:routed, +10:u01:routed, +7:u07:ND), +14:u01:structure., +12:u05:Backbone, +13:u07:[RFC4861], +10:u00:routed, +7:u06:ND), +15:u08:operations., +14:u00:structure., +12:u04:Backbone, +13:u06:[RFC4861], +7:u14:nd), +7:u05:ND), +15:u08:Centralized, +12:u03:Backbone, +13:u05:[RFC4861], +7:u13:nd), +8:uI2:)[]., +7:u04:ND), +15:u07:operations., +12:u02:Backbone, +13:u04:[RFC4861], +7:u12:nd), +6:u21:ND, +7:u22:ND), +7:u23:ND), +8:uI1:)[]., +7:u03:ND), +15:u06:operations., +15:u07:Centralized, +16:u08:particularly, +12:u01:Backbone, +13:u03:[RFC4861], +7:u11:nd), +15:u14:operations., +8:uI0:)[]., +7:u02:ND), +15:u05:operations., +15:u06:Centralized, +18:u08:transmissions., +12:u00:Backbone, +13:u02:[RFC4861], +11:u08:helpful, +7:u10:nd), +15:u13:operations., +15:u14:centralized, +7:u01:ND), +15:u04:operations., +15:u05:Centralized, +16:u07:particularly, +13:u01:[RFC4861], +11:u07:helpful, +15:u12:operations., +15:u13:centralized, +7:u00:ND), +15:u03:operations., +15:u04:Centralized, +16:u06:particularly, +18:u07:transmissions., +12:u08:resource, +13:u00:[RFC4861], +11:u06:helpful, +10:u08:relies, +15:u11:operations., +15:u12:centralized, +16:u14:particularly, +6:u21:Ce, +7:u22:Cen, +8:u23:Cent, +15:u02:operations., +15:u03:Centralized, +16:u05:particularly, +18:u06:transmissions., +11:u05:helpful, +10:u07:relies, +14:u08:allocation, +15:u10:operations., +15:u11:centralized, +16:u13:particularly, +18:u14:transmissions., +15:u01:operations., +15:u02:Centralized, +16:u04:particularly, +18:u05:transmissions., +12:u07:resource, +11:u04:helpful, +10:u06:relies, +14:u07:allocation, +15:u10:centralized, +16:u12:particularly, +18:u13:transmissions., +15:u00:operations., +15:u01:Centralized, +16:u03:particularly, +18:u04:transmissions., +12:u06:resource, +11:u03:helpful, +10:u05:relies, +14:u06:allocation, +16:u11:particularly, +18:u12:transmissions., +12:u14:resource, +15:u00:Centralized, +16:u02:particularly, +18:u03:transmissions., +12:u05:resource, +11:u02:helpful, +10:u04:relies, +14:u05:allocation, +16:u10:particularly, +18:u11:transmissions., +12:u13:resource, +16:u01:particularly, +18:u02:transmissions., +12:u04:resource, +11:u01:helpful, +10:u03:relies, +14:u04:allocation, +18:u10:transmissions., +12:u12:resource, +16:u00:particularly, +18:u01:transmissions., +12:u03:resource, +11:u00:helpful, +10:u02:relies, +14:u03:allocation, +12:u11:resource, +18:u00:transmissions., +12:u02:resource, +10:u01:relies, +14:u02:allocation, +12:u10:resource, +12:u01:resource, +10:u00:relies, +14:u01:allocation, +12:u00:resource, +14:u00:allocation, +14:u08:scheduling, +10:u08:highly, +14:u07:scheduling, +14:u06:scheduling, +12:u08:scalable, +10:u07:highly, +14:u05:scheduling, +12:u07:scalable, +9:u08:[AMI], +10:u06:highly, +14:u04:scheduling, +12:u06:scalable, +9:u07:[AMI], +13:u08:multipath, +10:u14:highly, +10:u05:highly, +14:u03:scheduling, +12:u05:scalable, +9:u06:[AMI], +13:u07:multipath, +10:u13:highly, +18:u14:infrastructure, +10:u04:highly, +14:u02:scheduling, +12:u04:scalable, +9:u05:[AMI], +13:u06:multipath, +10:u12:highly, +18:u13:infrastructure, +10:u14:enable, +10:u03:highly, +16:u08:[IEEE802154], +14:u01:scheduling, +12:u03:scalable, +9:u04:[AMI], +13:u05:multipath, +10:u11:highly, +18:u12:infrastructure, +10:u13:enable, +8:u23:Infr, +10:u02:highly, +14:u00:scheduling, +12:u02:scalable, +9:u03:[AMI], +13:u04:multipath, +12:u08:standard, +10:u10:highly, +18:u11:infrastructure, +10:u12:enable, +7:u22:ena, +8:u23:enab, +10:u01:highly, +16:u07:[IEEE802154], +12:u01:scalable, +9:u02:[AMI], +13:u03:multipath, +12:u07:standard, +18:u10:infrastructure, +10:u11:enable, +10:u00:highly, +16:u06:[IEEE802154], +12:u00:scalable, +9:u01:[AMI], +13:u02:multipath, +12:u06:standard, +10:u10:enable, +16:u14:[ieee802154], +16:u05:[IEEE802154], +14:u08:adaptation, +9:u00:[AMI], +13:u01:multipath, +12:u05:standard, +9:u08:(IPv6, +16:u13:[ieee802154], +10:uI2:[]"""", +16:u04:[IEEE802154], +13:u00:multipath, +12:u04:standard, +9:u07:(IPv6, +12:u08:sublayer, +16:u12:[ieee802154], +7:u22:[IE, +8:u23:[IEE, +10:uI1:[]"""", +16:u03:[IEEE802154], +14:u07:adaptation, +15:u08:distributed, +12:u03:standard, +9:u06:(IPv6, +12:u07:sublayer, +16:u11:[ieee802154], +10:uI0:[]"""", +16:u02:[IEEE802154], +14:u06:adaptation, +12:u02:standard, +9:u05:(IPv6, +12:u06:sublayer, +13:u08:approach,, +16:u10:[ieee802154], +14:u14:adaptation, +9:uI2:(..):, +16:u01:[IEEE802154], +14:u05:adaptation, +15:u07:distributed, +12:u01:standard, +9:u04:(IPv6, +12:u05:sublayer, +13:u07:approach,, +12:u08:extended, +14:u13:adaptation, +9:uI1:(..):, +16:u00:[IEEE802154], +14:u04:adaptation, +15:u06:distributed, +12:u00:standard, +9:u03:(IPv6, +12:u04:sublayer, +13:u06:approach,, +12:u07:extended, +14:u12:adaptation, +15:u14:distributed, +7:u22:ada, +8:u23:adap, +9:uI0:(..):, +14:u03:adaptation, +15:u05:distributed, +9:u02:(IPv6, +12:u03:sublayer, +13:u05:approach,, +12:u06:extended, +11:u08:(6TiSCH, +14:u11:adaptation, +15:u13:distributed, +14:u02:adaptation, +15:u04:distributed, +15:u08:abstraction, +9:u01:(IPv6, +12:u02:sublayer, +13:u04:approach,, +12:u05:extended, +11:u07:(6TiSCH, +14:u10:adaptation, +15:u12:distributed, +13:u14:providing, +14:u01:adaptation, +15:u03:distributed, +9:u00:(IPv6, +12:u01:sublayer, +13:u03:approach,, +12:u04:extended, +11:u06:(6TiSCH, +15:u11:distributed, +13:u13:providing, +8:u14:6top, +14:u00:adaptation, +15:u02:distributed, +15:u07:abstraction, +13:u08:interface, +12:u00:sublayer, +13:u02:approach,, +12:u03:extended, +11:u05:(6TiSCH, +15:u10:distributed, +13:u12:providing, +8:u13:6top, +15:u01:distributed, +15:u06:abstraction, +6:u08:6P, +13:u01:approach,, +12:u02:extended, +11:u04:(6TiSCH, +13:u11:providing, +8:u12:6top, +15:u14:abstraction, +7:u22:6to, +8:u23:6top, +8:uI2:...., +15:u00:distributed, +15:u05:abstraction, +13:u07:interface, +11:u08:Layer-2, +13:u00:approach,, +12:u01:extended, +11:u03:(6TiSCH, +9:u08:(6top, +13:u10:providing, +8:u11:6top, +15:u13:abstraction, +11:u14:packets, +8:uI1:...., +15:u04:abstraction, +13:u06:interface, +6:u07:6P, +12:u00:extended, +11:u02:(6TiSCH, +9:u07:(6top, +9:u08:peers, +8:u10:6top, +15:u12:abstraction, +11:u13:packets, +13:u14:interface, +7:u22:abs, +8:u23:abst, +8:uI0:...., +15:u03:abstraction, +13:u05:interface, +6:u06:6P, +11:u07:Layer-2, +6:u08:at, +11:u01:(6TiSCH, +9:u06:(6top, +9:u07:peers, +14:u08:respective, +15:u11:abstraction, +11:u12:packets, +13:u13:interface, +6:u14:6p, +7:u22:pac, +8:u23:pack, +15:u02:abstraction, +13:u04:interface, +6:u05:6P, +11:u06:Layer-2, +11:u00:(6TiSCH, +9:u05:(6top, +9:u06:peers, +14:u07:respective, +15:u10:abstraction, +11:u11:packets, +13:u12:interface, +6:u13:6p, +11:u14:layer-2, +10:uI2:():[]., +15:u01:abstraction, +13:u03:interface, +6:u04:6P, +11:u05:Layer-2, +6:u07:at, +9:u04:(6top, +9:u05:peers, +14:u06:respective, +16:u08:Transaction:, +11:u10:packets, +13:u11:interface, +6:u12:6p, +11:u13:layer-2, +6:u21:6P, +6:u22:6P, +6:u23:6P, +10:uI1:():[]., +15:u00:abstraction, +13:u02:interface, +6:u03:6P, +11:u04:Layer-2, +6:u06:at, +7:u08:ASN, +9:u03:(6top, +9:u04:peers, +14:u05:respective, +16:u07:Transaction:, +13:u10:interface, +6:u11:6p, +11:u12:layer-2, +10:uI0:():[]., +13:u01:interface, +6:u02:6P, +11:u03:Layer-2, +6:u05:at, +9:u08:total, +9:u02:(6top, +9:u03:peers, +14:u04:respective, +16:u06:Transaction:, +13:u08:(Absolute, +6:u10:6p, +11:u11:layer-2, +13:u00:interface, +6:u01:6P, +11:u02:Layer-2, +6:u04:at, +7:u07:ASN, +9:u08:Epoch, +9:u01:(6top, +9:u02:peers, +14:u03:respective, +16:u05:Transaction:, +13:u07:(Absolute, +11:u10:layer-2, +6:u22:at, +6:u23:at, +6:u00:6P, +11:u01:Layer-2, +6:u03:at, +7:u06:ASN, +9:u07:total, +9:u00:(6top, +9:u01:peers, +14:u02:respective, +16:u04:Transaction:, +13:u06:(Absolute, +7:u14:asn, +11:u00:Layer-2, +6:u02:at, +7:u05:ASN, +9:u06:total, +9:u07:Epoch, +9:u00:peers, +14:u01:respective, +16:u03:Transaction:, +13:u05:(Absolute, +7:u13:asn, +9:u14:total, +10:uI2:():[],, +6:u01:at, +7:u04:ASN, +9:u05:total, +9:u06:Epoch, +11:u08:bundle:, +14:u00:respective, +16:u02:Transaction:, +13:u04:(Absolute, +13:u08:practice., +7:u12:asn, +9:u13:total, +9:u14:epoch, +6:u21:AS, +7:u22:ASN, +7:u23:ASN, +10:uI1:():[],, +6:u00:at, +7:u03:ASN, +9:u04:total, +9:u05:Epoch, +16:u01:Transaction:, +13:u03:(Absolute, +13:u07:practice., +7:u11:asn, +9:u12:total, +9:u13:epoch, +7:u22:tot, +8:u23:tota, +10:uI0:():[],, +7:u02:ASN, +9:u03:total, +9:u04:Epoch, +11:u07:bundle:, +16:u00:Transaction:, +13:u02:(Absolute, +13:u06:practice., +7:u10:asn, +9:u11:total, +9:u12:epoch, +6:u21:Ep, +7:u22:Epo, +8:u23:Epoc, +7:u01:ASN, +9:u02:total, +9:u03:Epoch, +11:u06:bundle:, +13:u01:(Absolute, +13:u05:practice., +9:u10:total, +9:u11:epoch, +11:u14:bundle:, +7:u00:ASN, +9:u01:total, +9:u02:Epoch, +11:u05:bundle:, +13:u08:neighbor,, +13:u00:(Absolute, +13:u04:practice., +9:u10:epoch, +11:u13:bundle:, +9:u00:total, +9:u01:Epoch, +11:u04:bundle:, +13:u03:practice., +11:u12:bundle:, +14:u14:identified, +6:u21:bu, +7:u22:bun, +8:u23:bund, +8:uI2:,..,, +9:u00:Epoch, +11:u03:bundle:, +13:u07:neighbor,, +13:u02:practice., +11:u11:bundle:, +14:u13:identified, +8:uI1:,..,, +8:uI2:[,],, +11:u02:bundle:, +13:u06:neighbor,, +13:u01:practice., +11:u10:bundle:, +14:u12:identified, +13:u14:neighbor,, +8:uI0:,..,, +8:uI1:[,],, +11:u01:bundle:, +13:u05:neighbor,, +13:u00:practice., +14:u11:identified, +13:u13:neighbor,, +8:uI0:[,],, +11:u00:bundle:, +13:u04:neighbor,, +14:u10:identified, +13:u12:neighbor,, +13:u03:neighbor,, +13:u11:neighbor,, +13:u02:neighbor,, +13:u10:neighbor,, +13:u01:neighbor,, +13:u08:contains., +8:u08:size, +13:u00:neighbor,, +10:u08:bundle, +8:u07:size, +13:u07:contains., +9:u08:local, +8:u06:size, +14:u08:translates, +13:u06:contains., +10:u07:bundle, +10:u08:either, +8:u05:size, +14:u07:translates, +13:u14:contains., +13:u05:contains., +10:u06:bundle, +9:u07:local, +8:u04:size, +14:u06:translates, +11:u08:sending, +13:u13:contains., +13:u04:contains., +10:u05:bundle, +9:u06:local, +10:u07:either, +8:u03:size, +14:u05:translates, +11:u07:sending, +13:u12:contains., +9:u14:local, +13:u03:contains., +10:u04:bundle, +9:u05:local, +10:u06:either, +8:u02:size, +14:u04:translates, +11:u06:sending, +7:u08:vs., +13:u11:contains., +9:u13:local, +13:u02:contains., +10:u03:bundle, +9:u04:local, +10:u05:either, +8:u01:size, +14:u03:translates, +11:u05:sending, +7:u07:vs., +15:u08:(switching), +13:u10:contains., +9:u12:local, +7:u22:loc, +8:u23:loca, +13:u01:contains., +10:u02:bundle, +9:u03:local, +10:u04:either, +14:u08:direction), +8:u00:size, +14:u02:translates, +11:u04:sending, +7:u06:vs., +15:u07:(switching), +9:u11:local, +6:u21:ei, +7:u22:eit, +8:u23:eith, +13:u00:contains., +10:u01:bundle, +9:u02:local, +10:u03:either, +7:u08:set, +14:u01:translates, +11:u03:sending, +7:u05:vs., +15:u06:(switching), +8:u08:maps, +9:u10:local, +8:uI2:-.-:, +10:u00:bundle, +9:u01:local, +10:u02:either, +14:u07:direction), +14:u00:translates, +11:u02:sending, +7:u04:vs., +15:u05:(switching), +8:u07:maps, +8:uI1:-.-:, +10:uI2:-()-(), +9:u00:local, +10:u01:either, +14:u06:direction), +7:u07:set, +12:u08:incoming, +11:u01:sending, +7:u03:vs., +15:u04:(switching), +8:u06:maps, +15:u08:corresponds, +14:u14:direction), +8:uI0:-.-:, +10:uI1:-()-(), +10:u00:either, +14:u05:direction), +7:u06:set, +11:u00:sending, +7:u02:vs., +15:u03:(switching), +8:u05:maps, +15:u07:corresponds, +13:u08:bundle(s), +14:u13:direction), +7:u14:set, +10:uI0:-()-(), +14:u04:direction), +7:u05:set, +12:u07:incoming, +15:u08:neighbor(s), +7:u01:vs., +15:u02:(switching), +8:u04:maps, +15:u06:corresponds, +13:u07:bundle(s), +14:u12:direction), +7:u13:set, +8:uI2:-("", +14:u03:direction), +7:u04:set, +12:u06:incoming, +7:u00:vs., +15:u01:(switching), +8:u03:maps, +15:u05:corresponds, +13:u06:bundle(s), +9:u08:along, +14:u11:direction), +7:u12:set, +12:u14:incoming, +7:u22:set, +7:u23:set, +8:uI1:-("", +14:u02:direction), +7:u03:set, +12:u05:incoming, +15:u07:neighbor(s), +7:u08:CCA, +15:u00:(switching), +8:u02:maps, +15:u04:corresponds, +13:u05:bundle(s), +9:u07:along, +14:u10:direction), +7:u11:set, +12:u13:incoming, +8:uI0:-("", +9:uI2:()-(), +14:u01:direction), +7:u02:set, +12:u04:incoming, +15:u06:neighbor(s), +8:u01:maps, +15:u03:corresponds, +13:u04:bundle(s), +9:u06:along, +10:u08:(Clear, +7:u10:set, +12:u12:incoming, +15:u14:neighbor(s), +8:u23:inco, +9:uI1:()-(), +14:u00:direction), +7:u01:set, +12:u03:incoming, +15:u05:neighbor(s), +7:u07:CCA, +10:u08:detect, +8:u00:maps, +15:u02:corresponds, +13:u03:bundle(s), +9:u05:along, +10:u07:(Clear, +12:u11:incoming, +15:u13:neighbor(s), +9:uI0:()-(), +7:u00:set, +12:u02:incoming, +15:u04:neighbor(s), +7:u06:CCA, +15:u01:corresponds, +13:u02:bundle(s), +9:u04:along, +10:u06:(Clear, +11:u08:ongoing, +12:u10:incoming, +15:u12:neighbor(s), +7:u14:cca, +12:u01:incoming, +15:u03:neighbor(s), +7:u05:CCA, +10:u07:detect, +13:u08:colliding, +15:u00:corresponds, +13:u01:bundle(s), +9:u03:along, +10:u05:(Clear, +11:u07:ongoing, +15:u11:neighbor(s), +7:u13:cca, +11:u14:whereby, +9:uI2:():[], +12:u00:incoming, +15:u02:neighbor(s), +7:u04:CCA, +10:u06:detect, +13:u00:bundle(s), +9:u02:along, +10:u04:(Clear, +11:u06:ongoing, +17:u08:transmissions, +15:u10:neighbor(s), +7:u12:cca, +11:u13:whereby, +10:u14:detect, +6:u21:CC, +7:u22:CCA, +7:u23:CCA, +9:uI1:():[], +15:u01:neighbor(s), +7:u03:CCA, +10:u05:detect, +13:u07:colliding, +9:u08:cell:, +9:u01:along, +10:u03:(Clear, +11:u05:ongoing, +17:u07:transmissions, +7:u11:cca, +11:u12:whereby, +10:u13:detect, +9:uI0:():[], +15:u00:neighbor(s), +7:u02:CCA, +10:u04:detect, +13:u06:colliding, +9:u00:along, +10:u02:(Clear, +11:u04:ongoing, +17:u06:transmissions, +7:u10:cca, +11:u11:whereby, +10:u12:detect, +13:u14:colliding, +7:u01:CCA, +10:u03:detect, +13:u05:colliding, +9:u07:cell:, +10:u01:(Clear, +11:u03:ongoing, +17:u05:transmissions, +8:u08:unit, +11:u10:whereby, +10:u11:detect, +13:u13:colliding, +7:u00:CCA, +10:u02:detect, +13:u04:colliding, +9:u06:cell:, +8:u08:cell, +10:u00:(Clear, +11:u02:ongoing, +17:u04:transmissions, +8:u07:unit, +10:u10:detect, +13:u12:colliding, +9:u14:cell:, +7:u22:col, +8:u23:coll, +10:u01:detect, +13:u03:colliding, +9:u05:cell:, +11:u08:Channel, +11:u01:ongoing, +17:u03:transmissions, +8:u06:unit, +13:u11:colliding, +9:u13:cell:, +10:u00:detect, +13:u02:colliding, +9:u04:cell:, +8:u07:cell, +16:u08:representing, +11:u00:ongoing, +17:u02:transmissions, +8:u05:unit, +22:u08:Distribution/Usage, +13:u10:colliding, +9:u12:cell:, +6:u21:ce, +7:u22:cel, +8:u23:cell, +13:u01:colliding, +9:u03:cell:, +8:u06:cell, +11:u07:Channel, +17:u01:transmissions, +8:u04:unit, +22:u07:Distribution/Usage, +9:u11:cell:, +8:u14:cell, +13:u00:colliding, +9:u02:cell:, +8:u05:cell, +11:u06:Channel, +16:u07:representing, +10:u08:matrix, +17:u00:transmissions, +8:u03:unit, +22:u06:Distribution/Usage, +9:u10:cell:, +8:u13:cell, +11:u14:channel, +9:u01:cell:, +8:u04:cell, +11:u05:Channel, +16:u06:representing, +8:u02:unit, +22:u05:Distribution/Usage, +8:u12:cell, +11:u13:channel, +16:u14:representing, +12:uI2:/()::(,), +9:u00:cell:, +8:u03:cell, +11:u04:Channel, +16:u05:representing, +10:u07:matrix, +8:u01:unit, +22:u04:Distribution/Usage, +8:u11:cell, +11:u12:channel, +16:u13:representing, +8:u23:Chan, +12:uI1:/()::(,), +8:u02:cell, +11:u03:Channel, +16:u04:representing, +10:u06:matrix, +8:u08:CDU,, +8:u00:unit, +22:u03:Distribution/Usage, +8:u10:cell, +11:u11:channel, +16:u12:representing, +10:u14:matrix, +12:uI0:/()::(,), +8:u01:cell, +11:u02:Channel, +16:u03:representing, +10:u05:matrix, +22:u02:Distribution/Usage, +11:u10:channel, +16:u11:representing, +10:u13:matrix, +11:u14:network, +8:u00:cell, +11:u01:Channel, +16:u02:representing, +10:u04:matrix, +8:u07:CDU,, +18:u08:channelOffset:, +22:u01:Distribution/Usage, +16:u10:representing, +10:u12:matrix, +8:u23:matr, +11:u00:Channel, +16:u01:representing, +10:u03:matrix, +8:u06:CDU,, +17:u08:channelOffset, +22:u00:Distribution/Usage, +14:u08:Identifies, +10:u11:matrix, +8:u14:cdu,, +8:uI2:.(,), +16:u00:representing, +10:u02:matrix, +8:u05:CDU,, +18:u07:channelOffset:, +13:u08:available, +14:u07:Identifies, +10:u10:matrix, +8:u13:cdu,, +8:uI1:.(,), +9:uI2:,(,),, +10:u01:matrix, +8:u04:CDU,, +18:u06:channelOffset:, +17:u07:channelOffset, +14:u06:Identifies, +16:u08:frequencies., +8:u12:cdu,, +18:u14:channeloffset:, +6:u21:CD, +7:u22:CDU, +8:u23:CDU,, +8:uI0:.(,), +9:uI1:,(,),, +10:u00:matrix, +8:u03:CDU,, +18:u05:channelOffset:, +17:u06:channelOffset, +13:u07:available, +14:u05:Identifies, +16:u07:frequencies., +13:u08:frequency, +8:u11:cdu,, +18:u13:channeloffset:, +17:u14:channeloffset, +9:uI0:,(,),, +8:u02:CDU,, +18:u04:channelOffset:, +17:u05:channelOffset, +13:u06:available, +11:u08:channel, +14:u04:Identifies, +16:u06:frequencies., +13:u07:frequency, +8:u10:cdu,, +18:u12:channeloffset:, +17:u13:channeloffset, +13:u14:available, +8:u01:CDU,, +18:u03:channelOffset:, +17:u04:channelOffset, +13:u05:available, +10:u08:chunk:, +14:u03:Identifies, +16:u05:frequencies., +13:u06:frequency, +11:u08:hopping, +18:u11:channeloffset:, +17:u12:channeloffset, +13:u13:available, +8:u00:CDU,, +18:u02:channelOffset:, +17:u03:channelOffset, +13:u04:available, +11:u07:channel, +14:u02:Identifies, +16:u04:frequencies., +13:u05:frequency, +11:u07:hopping, +18:u10:channeloffset:, +17:u11:channeloffset, +13:u12:available, +6:u21:av, +7:u22:ava, +8:u23:avai, +18:u01:channelOffset:, +17:u02:channelOffset, +13:u03:available, +11:u06:channel, +10:u07:chunk:, +14:u08:frequency,, +14:u01:Identifies, +16:u03:frequencies., +13:u04:frequency, +11:u06:hopping, +17:u10:channeloffset, +13:u11:available, +18:u00:channelOffset:, +17:u01:channelOffset, +13:u02:available, +11:u05:channel, +10:u06:chunk:, +11:u08:portion, +14:u00:Identifies, +16:u02:frequencies., +13:u03:frequency, +11:u05:hopping, +13:u10:available, +10:u14:chunk:, +17:u00:channelOffset, +13:u01:available, +11:u04:channel, +10:u05:chunk:, +14:u07:frequency,, +16:u01:frequencies., +13:u02:frequency, +11:u04:hopping, +10:u13:chunk:, +13:u00:available, +11:u03:channel, +10:u04:chunk:, +14:u06:frequency,, +11:u07:portion, +16:u00:frequencies., +13:u01:frequency, +11:u03:hopping, +10:u12:chunk:, +14:u14:frequency,, +7:u22:chu, +8:u23:chun, +11:u02:channel, +10:u03:chunk:, +14:u05:frequency,, +11:u06:portion, +13:u00:frequency, +11:u02:hopping, +10:u11:chunk:, +14:u13:frequency,, +11:u14:portion, +11:u01:channel, +10:u02:chunk:, +14:u04:frequency,, +11:u05:portion, +11:u01:hopping, +10:u10:chunk:, +14:u12:frequency,, +11:u13:portion, +7:u22:fre, +8:u23:freq, +11:u00:channel, +10:u01:chunk:, +14:u03:frequency,, +11:u04:portion, +11:u00:hopping, +14:u11:frequency,, +11:u12:portion, +10:u00:chunk:, +14:u02:frequency,, +11:u03:portion, +14:u10:frequency,, +11:u11:portion, +14:u01:frequency,, +11:u02:portion, +11:u10:portion, +14:u00:frequency,, +11:u01:portion, +10:u08:chunks, +11:u00:portion, +15:u08:negotiation, +10:u07:chunks, +10:u06:chunks, +15:u07:negotiation, +10:u05:chunks, +15:u06:negotiation, +9:u08:chunk, +10:u04:chunks, +15:u14:negotiation, +15:u05:negotiation, +10:u03:chunks, +15:u13:negotiation, +15:u04:negotiation, +9:u07:chunk, +10:u02:chunks, +10:u08:decide, +15:u12:negotiation, +15:u03:negotiation, +9:u06:chunk, +8:u08:CoJP, +10:u01:chunks, +10:u07:decide, +15:u11:negotiation, +9:u14:chunk, +15:u02:negotiation, +9:u05:chunk, +10:u08:(CoJP), +10:u00:chunks, +10:u06:decide, +16:u08:(Constrained, +15:u10:negotiation, +9:u13:chunk, +15:u01:negotiation, +9:u04:chunk, +8:u07:CoJP, +10:u05:decide, +16:u07:(Constrained, +11:u08:enables, +9:u12:chunk, +15:u00:negotiation, +9:u03:chunk, +8:u06:CoJP, +10:u07:(CoJP), +11:u08:Minimal, +10:u04:decide, +16:u06:(Constrained, +11:u07:enables, +10:u08:obtain, +9:u11:chunk, +8:u14:cojp, +9:u02:chunk, +8:u05:CoJP, +10:u06:(CoJP), +38:u08:[I-D.ietf-6tisch-minimal-security], +10:u03:decide, +16:u05:(Constrained, +11:u06:enables, +10:u07:obtain, +9:u10:chunk, +8:u13:cojp, +10:u14:(cojp), +9:u01:chunk, +8:u04:CoJP, +10:u05:(CoJP), +11:u07:Minimal, +10:u02:decide, +16:u04:(Constrained, +11:u05:enables, +10:u06:obtain, +8:u12:cojp, +10:u13:(cojp), +7:u22:CoJ, +8:u23:CoJP, +9:u00:chunk, +8:u03:CoJP, +10:u04:(CoJP), +11:u06:Minimal, +38:u07:[I-D.ietf-6tisch-minimal-security], +10:u01:decide, +16:u03:(Constrained, +11:u04:enables, +10:u05:obtain, +9:u08:setup, +8:u11:cojp, +10:u12:(cojp), +11:u14:minimal, +6:u21:(C, +7:u22:(Co, +8:u23:(CoJ, +8:u02:CoJP, +10:u03:(CoJP), +11:u05:Minimal, +38:u06:[I-D.ietf-6tisch-minimal-security], +13:u08:dedicated, +10:u00:decide, +16:u02:(Constrained, +11:u03:enables, +10:u04:obtain, +9:u07:setup, +8:u10:cojp, +10:u11:(cojp), +11:u13:minimal, +38:u14:[i-d.ietf-6tisch-minimal-security], +8:u01:CoJP, +10:u02:(CoJP), +11:u04:Minimal, +38:u05:[I-D.ietf-6tisch-minimal-security], +16:u01:(Constrained, +11:u02:enables, +10:u03:obtain, +9:u06:setup, +10:u10:(cojp), +11:u12:minimal, +38:u13:[i-d.ietf-6tisch-minimal-security], +6:u21:Mi, +7:u22:Min, +8:u23:Mini, +8:u00:CoJP, +10:u01:(CoJP), +11:u03:Minimal, +38:u04:[I-D.ietf-6tisch-minimal-security], +13:u07:dedicated, +16:u00:(Constrained, +11:u01:enables, +10:u02:obtain, +9:u05:setup, +11:u11:minimal, +38:u12:[i-d.ietf-6tisch-minimal-security], +10:u00:(CoJP), +11:u02:Minimal, +38:u03:[I-D.ietf-6tisch-minimal-security], +13:u06:dedicated, +11:u00:enables, +10:u01:obtain, +9:u04:setup, +12:u08:network:, +11:u10:minimal, +38:u11:[i-d.ietf-6tisch-minimal-security], +13:u14:dedicated, +11:u01:Minimal, +38:u02:[I-D.ietf-6tisch-minimal-security], +13:u05:dedicated, +11:u08:applied, +10:u00:obtain, +9:u03:setup, +12:u07:network:, +38:u10:[i-d.ietf-6tisch-minimal-security], +13:u13:dedicated, +11:u00:Minimal, +38:u01:[I-D.ietf-6tisch-minimal-security], +13:u04:dedicated, +9:u02:setup, +12:u06:network:, +13:u12:dedicated, +7:u22:ded, +8:u23:dedi, +38:u00:[I-D.ietf-6tisch-minimal-security], +13:u03:dedicated, +11:u07:applied, +9:u01:setup, +12:u05:network:, +14:u08:guarantees, +13:u11:dedicated, +13:u02:dedicated, +11:u06:applied, +9:u00:setup, +12:u04:network:, +14:u07:guarantees, +12:u08:Delivery, +13:u10:dedicated, +11:u14:applied, +13:u01:dedicated, +11:u05:applied, +12:u03:network:, +14:u06:guarantees, +12:u07:Delivery, +11:u13:applied, +13:u00:dedicated, +11:u04:applied, +12:u02:network:, +14:u05:guarantees, +12:u06:Delivery, +14:u08:in-network, +11:u12:applied, +10:u14:packet, +11:u03:applied, +12:u01:network:, +14:u04:guarantees, +12:u05:Delivery, +14:u07:in-network, +11:u11:applied, +10:u13:packet, +8:uI2:()-., +11:u02:applied, +6:u08:EB, +12:u00:network:, +14:u03:guarantees, +12:u04:Delivery, +14:u06:in-network, +11:u10:applied, +10:u12:packet, +8:u14:more, +6:u21:Pa, +7:u22:Pac, +8:u23:Pack, +8:uI1:()-., +11:u01:applied, +14:u02:guarantees, +12:u03:Delivery, +14:u05:in-network, +13:u08:(Enhanced, +10:u11:packet, +8:u13:more, +8:uI0:()-., +11:u00:applied, +6:u07:EB, +14:u01:guarantees, +12:u02:Delivery, +14:u04:in-network, +13:u07:(Enhanced, +10:u10:packet, +8:u12:more, +7:u22:mor, +8:u23:more, +6:u06:EB, +14:u00:guarantees, +12:u01:Delivery, +14:u03:in-network, +13:u06:(Enhanced, +8:u11:more, +6:u14:eb, +6:u05:EB, +8:u08:hard, +12:u00:Delivery, +14:u02:in-network, +13:u05:(Enhanced, +15:u08:synchronize, +8:u10:more, +6:u13:eb, +6:u04:EB, +13:u08:relocate., +14:u01:in-network, +13:u04:(Enhanced, +15:u07:synchronize, +6:u12:eb, +6:u21:EB, +6:u22:EB, +6:u23:EB, +6:u03:EB, +8:u07:hard, +14:u00:in-network, +13:u03:(Enhanced, +15:u06:synchronize, +6:u11:eb, +6:u02:EB, +8:u06:hard, +13:u07:relocate., +24:u08:Hopping_Sequence_ID,, +13:u02:(Enhanced, +15:u05:synchronize, +13:u08:sequence:, +6:u10:eb, +8:u14:hard, +6:u01:EB, +8:u05:hard, +13:u06:relocate., +15:u08:translating, +13:u01:(Enhanced, +15:u04:synchronize, +13:u07:sequence:, +8:u13:hard, +13:u14:relocate., +6:u00:EB, +8:u04:hard, +13:u05:relocate., +24:u07:Hopping_Sequence_ID,, +6:u08:IE, +13:u00:(Enhanced, +15:u03:synchronize, +13:u06:sequence:, +8:u12:hard, +13:u13:relocate., +11:u14:hopping, +7:u22:har, +8:u23:hard, +8:u03:hard, +13:u04:relocate., +24:u06:Hopping_Sequence_ID,, +15:u07:translating, +7:u08:end, +15:u02:synchronize, +13:u05:sequence:, +16:u08:(Information, +8:u11:hard, +13:u12:relocate., +11:u13:hopping, +24:u14:hopping_sequence_id,, +8:u23:relo, +8:u02:hard, +13:u03:relocate., +24:u05:Hopping_Sequence_ID,, +15:u06:translating, +6:u07:IE, +15:u01:synchronize, +13:u04:sequence:, +16:u07:(Information, +8:u10:hard, +13:u11:relocate., +11:u12:hopping, +24:u13:hopping_sequence_id,, +15:u14:translating, +6:u21:ho, +7:u22:hop, +8:u23:hopp, +8:u01:hard, +13:u02:relocate., +24:u04:Hopping_Sequence_ID,, +15:u05:translating, +6:u06:IE, +7:u07:end, +17:u08:[IEEE802154]., +15:u00:synchronize, +13:u03:sequence:, +16:u06:(Information, +12:u08:devices., +13:u10:relocate., +11:u11:hopping, +24:u12:hopping_sequence_id,, +15:u13:translating, +6:u14:ie, +7:u22:Hop, +8:u23:Hopp, +8:u00:hard, +13:u01:relocate., +24:u03:Hopping_Sequence_ID,, +15:u04:translating, +6:u05:IE, +7:u06:end, +13:u02:sequence:, +16:u05:(Information, +12:u07:devices., +8:u08:Some, +11:u10:hopping, +24:u11:hopping_sequence_id,, +15:u12:translating, +6:u13:ie, +7:u14:end, +9:uI2:():--, +13:u00:relocate., +24:u02:Hopping_Sequence_ID,, +15:u03:translating, +6:u04:IE, +7:u05:end, +17:u07:[IEEE802154]., +13:u01:sequence:, +16:u04:(Information, +12:u06:devices., +8:u07:Some, +24:u10:hopping_sequence_id,, +15:u11:translating, +6:u12:ie, +7:u13:end, +6:u21:IE, +6:u22:IE, +6:u23:IE, +9:uI1:():--, +24:u01:Hopping_Sequence_ID,, +15:u02:translating, +6:u03:IE, +7:u04:end, +17:u06:[IEEE802154]., +13:u00:sequence:, +16:u03:(Information, +12:u05:devices., +8:u06:Some, +15:u10:translating, +6:u11:ie, +7:u12:end, +17:u14:[ieee802154]., +7:u23:end, +9:uI0:():--, +24:u00:Hopping_Sequence_ID,, +15:u01:translating, +6:u02:IE, +7:u03:end, +17:u05:[IEEE802154]., +16:u02:(Information, +12:u04:devices., +8:u05:Some, +6:u10:ie, +7:u11:end, +17:u13:[ieee802154]., +15:u00:translating, +6:u01:IE, +7:u02:end, +17:u04:[IEEE802154]., +16:u01:(Information, +12:u03:devices., +8:u04:Some, +7:u10:end, +17:u12:[ieee802154]., +6:u00:IE, +7:u01:end, +17:u03:[IEEE802154]., +16:u00:(Information, +12:u02:devices., +8:u03:Some, +17:u11:[ieee802154]., +7:u00:end, +17:u02:[IEEE802154]., +12:u01:devices., +8:u02:Some, +17:u10:[ieee802154]., +17:u01:[IEEE802154]., +48:u08:[I-D.ietf-6tisch-enrollment-enhanced-beacon], +12:u00:devices., +8:u01:Some, +14:u08:[RFC8137],, +17:u00:[IEEE802154]., +11:u08:subtype, +8:u00:Some, +14:u07:[RFC8137],, +8:u08:uses, +48:u07:[I-D.ietf-6tisch-enrollment-enhanced-beacon], +8:u08:join, +14:u06:[RFC8137],, +8:u07:uses, +8:u14:ietf, +48:u06:[I-D.ietf-6tisch-enrollment-enhanced-beacon], +11:u07:subtype, +14:u05:[RFC8137],, +8:u06:uses, +12:u08:process:, +8:u13:ietf, +48:u14:[i-d.ietf-6tisch-enrollment-enhanced-beacon], +48:u05:[I-D.ietf-6tisch-enrollment-enhanced-beacon], +11:u06:subtype, +8:u07:join, +14:u04:[RFC8137],, +8:u05:uses, +12:u07:process:, +8:u12:ietf, +48:u13:[i-d.ietf-6tisch-enrollment-enhanced-beacon], +11:u14:subtype, +7:u22:IET, +8:u23:IETF, +48:u04:[I-D.ietf-6tisch-enrollment-enhanced-beacon], +11:u05:subtype, +8:u06:join, +14:u03:[RFC8137],, +8:u04:uses, +12:u06:process:, +8:u11:ietf, +48:u12:[i-d.ietf-6tisch-enrollment-enhanced-beacon], +11:u13:subtype, +8:u14:join, +48:u03:[I-D.ietf-6tisch-enrollment-enhanced-beacon], +11:u04:subtype, +8:u05:join, +14:u02:[RFC8137],, +8:u03:uses, +12:u05:process:, +13:u08:protocol:, +8:u10:ietf, +48:u11:[i-d.ietf-6tisch-enrollment-enhanced-beacon], +11:u12:subtype, +8:u13:join, +8:u23:subt, +48:u02:[I-D.ietf-6tisch-enrollment-enhanced-beacon], +11:u03:subtype, +8:u04:join, +17:u08:authorization, +14:u01:[RFC8137],, +8:u02:uses, +12:u04:process:, +13:u07:protocol:, +48:u10:[i-d.ietf-6tisch-enrollment-enhanced-beacon], +11:u11:subtype, +8:u12:join, +13:u14:protocol., +6:u21:jo, +7:u22:joi, +8:u23:join, +48:u01:[I-D.ietf-6tisch-enrollment-enhanced-beacon], +11:u02:subtype, +8:u03:join, +12:u08:protocol, +14:u00:[RFC8137],, +8:u01:uses, +12:u03:process:, +13:u06:protocol:, +11:u10:subtype, +8:u11:join, +13:u13:protocol., +48:u00:[I-D.ietf-6tisch-enrollment-enhanced-beacon], +11:u01:subtype, +8:u02:join, +17:u07:authorization, +10:u08:joined, +8:u00:uses, +12:u02:process:, +13:u05:protocol:, +8:u10:join, +13:u12:protocol., +12:u14:network., +11:u00:subtype, +8:u01:join, +17:u06:authorization, +12:u07:protocol, +12:u08:process,, +12:u01:process:, +13:u04:protocol:, +13:u11:protocol., +12:u13:network., +17:u14:authorization, +8:u00:join, +17:u05:authorization, +12:u06:protocol, +10:u07:joined, +6:u08:JP, +12:u00:process:, +13:u03:protocol:, +13:u10:protocol., +12:u12:network., +17:u13:authorization, +17:u04:authorization, +12:u05:protocol, +10:u06:joined, +12:u07:process,, +13:u02:protocol:, +9:u08:(Join, +12:u11:network., +17:u12:authorization, +10:u14:joined, +17:u03:authorization, +12:u04:protocol, +10:u05:joined, +12:u06:process,, +6:u07:JP, +13:u01:protocol:, +9:u07:(Join, +12:u10:network., +17:u11:authorization, +10:u13:joined, +12:u14:process,, +17:u02:authorization, +12:u03:protocol, +10:u04:joined, +12:u05:process,, +6:u06:JP, +13:u08:regularly, +13:u00:protocol:, +9:u06:(Join, +8:u08:JRC., +17:u10:authorization, +10:u12:joined, +12:u13:process,, +6:u14:jp, +17:u01:authorization, +12:u02:protocol, +10:u03:joined, +12:u04:process,, +6:u05:JP, +7:u08:JRC, +9:u05:(Join, +8:u07:JRC., +10:u11:joined, +12:u12:process,, +6:u13:jp, +17:u00:authorization, +12:u01:protocol, +10:u02:joined, +12:u03:process,, +6:u04:JP, +13:u07:regularly, +19:u08:authentication,, +9:u04:(Join, +8:u06:JRC., +10:u10:joined, +12:u11:process,, +6:u12:jp, +6:u21:JP, +6:u22:JP, +6:u23:JP, +12:u00:protocol, +10:u01:joined, +12:u02:process,, +6:u03:JP, +13:u06:regularly, +7:u07:JRC, +11:u08:pledge., +9:u03:(Join, +8:u05:JRC., +12:u10:process,, +6:u11:jp, +13:u14:regularly, +10:u00:joined, +12:u01:process,, +6:u02:JP, +13:u05:regularly, +7:u06:JRC, +19:u07:authentication,, +9:u08:link:, +9:u02:(Join, +8:u04:JRC., +6:u10:jp, +13:u13:regularly, +7:u14:jrc, +12:u00:process,, +6:u01:JP, +13:u04:regularly, +7:u05:JRC, +19:u06:authentication,, +11:u07:pledge., +9:u01:(Join, +8:u03:JRC., +13:u12:regularly, +7:u13:jrc, +19:u14:authentication,, +8:u23:regu, +8:uI2:(/):, +6:u00:JP, +13:u03:regularly, +7:u04:JRC, +19:u05:authentication,, +11:u06:pledge., +9:u07:link:, +15:u08:communicate, +9:u00:(Join, +8:u02:JRC., +17:u08:communication, +13:u11:regularly, +7:u12:jrc, +19:u13:authentication,, +11:u14:pledge., +6:u21:JR, +7:u22:JRC, +7:u23:JRC, +8:uI1:(/):, +13:u02:regularly, +7:u03:JRC, +19:u04:authentication,, +11:u05:pledge., +9:u06:link:, +8:u01:JRC., +17:u07:communication, +13:u10:regularly, +7:u11:jrc, +19:u12:authentication,, +11:u13:pledge., +9:u14:link:, +8:uI0:(/):, +13:u01:regularly, +7:u02:JRC, +19:u03:authentication,, +11:u04:pledge., +9:u05:link:, +15:u07:communicate, +14:u08:collection, +8:u00:JRC., +17:u06:communication, +7:u08:IP., +7:u10:jrc, +19:u11:authentication,, +11:u12:pledge., +9:u13:link:, +7:u22:ple, +8:u23:pled, +13:u00:regularly, +7:u01:JRC, +19:u02:authentication,, +11:u03:pledge., +9:u04:link:, +15:u06:communicate, +17:u05:communication, +7:u07:IP., +19:u10:authentication,, +11:u11:pledge., +9:u12:link:, +15:u14:communicate, +7:u00:JRC, +19:u01:authentication,, +11:u02:pledge., +9:u03:link:, +15:u05:communicate, +14:u07:collection, +17:u04:communication, +7:u06:IP., +11:u10:pledge., +9:u11:link:, +15:u13:communicate, +19:u00:authentication,, +11:u01:pledge., +9:u02:link:, +15:u04:communicate, +14:u06:collection, +17:u03:communication, +7:u05:IP., +9:u10:link:, +15:u12:communicate, +14:u14:collection, +11:u00:pledge., +9:u01:link:, +15:u03:communicate, +14:u05:collection, +17:u02:communication, +7:u04:IP., +15:u08:Technology:, +15:u11:communicate, +14:u13:collection, +7:uI2:-.:, +9:u00:link:, +15:u02:communicate, +14:u04:collection, +15:u08:convergence, +17:u01:communication, +7:u03:IP., +15:u07:Technology:, +15:u10:communicate, +14:u12:collection, +7:uI1:-.:, +15:u01:communicate, +14:u03:collection, +14:u08:Industrial, +17:u00:communication, +7:u02:IP., +15:u06:Technology:, +14:u11:collection, +7:uI0:-.:, +15:u00:communicate, +14:u02:collection, +15:u07:convergence, +11:u08:pledge:, +7:u01:IP., +15:u05:Technology:, +14:u10:collection, +14:u01:collection, +15:u06:convergence, +14:u07:Industrial, +7:u00:IP., +15:u04:Technology:, +15:u14:convergence, +14:u00:collection, +15:u05:convergence, +14:u06:Industrial, +11:u07:pledge:, +8:u08:(to), +15:u03:Technology:, +15:u13:convergence, +14:u14:industrial, +15:u04:convergence, +14:u05:Industrial, +11:u06:pledge:, +12:u08:changing, +15:u02:Technology:, +12:u08:relocate, +15:u12:convergence, +14:u13:industrial, +11:u14:pledge:, +8:u23:conv, +15:u03:convergence, +14:u04:Industrial, +11:u05:pledge:, +8:u07:(to), +9:u08:cell., +15:u01:Technology:, +12:u07:relocate, +15:u11:convergence, +14:u12:industrial, +11:u13:pledge:, +7:u22:Ind, +8:u23:Indu, +15:u02:convergence, +14:u03:Industrial, +11:u04:pledge:, +8:u06:(to), +12:u07:changing, +15:u00:Technology:, +12:u06:relocate, +15:u10:convergence, +14:u11:industrial, +11:u12:pledge:, +8:u14:(to), +15:u01:convergence, +14:u02:Industrial, +11:u03:pledge:, +8:u05:(to), +12:u06:changing, +9:u07:cell., +12:u05:relocate, +12:u08:schedule, +14:u10:industrial, +11:u11:pledge:, +8:u13:(to), +12:u14:changing, +15:u00:convergence, +14:u01:Industrial, +11:u02:pledge:, +8:u04:(to), +12:u05:changing, +9:u06:cell., +12:u04:relocate, +12:u07:schedule, +11:u10:pledge:, +8:u12:(to), +12:u13:changing, +9:u14:cell., +6:u21:(t, +7:u22:(to, +8:u23:(to), +14:u00:Industrial, +11:u01:pledge:, +8:u03:(to), +12:u04:changing, +9:u05:cell., +14:u08:(broadcast, +12:u03:relocate, +12:u06:schedule, +8:u11:(to), +12:u12:changing, +9:u13:cell., +11:u00:pledge:, +8:u02:(to), +12:u03:changing, +9:u04:cell., +12:u02:relocate, +12:u05:schedule, +11:u08:address, +8:u10:(to), +12:u11:changing, +9:u12:cell., +8:u01:(to), +12:u02:changing, +9:u03:cell., +14:u07:(broadcast, +12:u01:relocate, +12:u04:schedule, +11:u07:address, +12:u10:changing, +9:u11:cell., +13:u14:scheduled, +8:u00:(to), +12:u01:changing, +9:u02:cell., +14:u06:(broadcast, +12:u00:relocate, +12:u03:schedule, +11:u06:address, +9:u10:cell., +13:u13:scheduled, +14:u14:(broadcast, +12:u00:changing, +9:u01:cell., +14:u05:(broadcast, +12:u02:schedule, +11:u05:address, +13:u12:scheduled, +14:u13:(broadcast, +7:u22:sch, +8:u23:sche, +9:u00:cell., +14:u04:(broadcast, +12:u01:schedule, +11:u04:address, +13:u11:scheduled, +14:u12:(broadcast, +6:u21:(b, +7:u22:(br, +8:u23:(bro, +14:u03:(broadcast, +12:u00:schedule, +11:u03:address, +13:u10:scheduled, +14:u11:(broadcast, +14:u02:(broadcast, +11:u02:address, +14:u10:(broadcast, +14:u01:(broadcast, +11:u01:address, +14:u00:(broadcast, +18:u08:implementation, +11:u00:address, +18:u07:implementation, +6:u08:SF, +8:uI2::,,., +18:u06:implementation, +18:u14:implementation, +8:uI1::,,., +18:u05:implementation, +6:u07:SF, +14:u08:networking, +11:u08:deletes, +18:u13:implementation, +8:uI0::,,., +18:u04:implementation, +6:u06:SF, +11:u07:deletes, +17:u08:requirements., +18:u12:implementation, +6:u14:sf, +8:u23:impl, +18:u03:implementation, +6:u05:SF, +14:u07:networking, +8:u08:SFID, +11:u06:deletes, +17:u07:requirements., +18:u11:implementation, +6:u13:sf, +18:u02:implementation, +6:u04:SF, +14:u06:networking, +15:u08:identifying, +11:u05:deletes, +17:u06:requirements., +18:u10:implementation, +6:u12:sf, +14:u14:networking, +6:u21:SF, +6:u22:SF, +6:u23:SF, +18:u01:implementation, +6:u03:SF, +14:u05:networking, +8:u07:SFID, +10:u08:shared, +11:u04:deletes, +17:u05:requirements., +6:u11:sf, +14:u13:networking, +18:u00:implementation, +6:u02:SF, +14:u04:networking, +8:u06:SFID, +15:u07:identifying, +11:u03:deletes, +17:u04:requirements., +6:u10:sf, +14:u12:networking, +8:u14:sfid, +6:u01:SF, +14:u03:networking, +8:u05:SFID, +15:u06:identifying, +10:u07:shared, +11:u02:deletes, +17:u03:requirements., +14:u11:networking, +8:u13:sfid, +15:u14:identifying, +8:uI2:():-, +6:u00:SF, +14:u02:networking, +8:u04:SFID, +15:u05:identifying, +10:u06:shared, +14:u08:slotframe:, +11:u01:deletes, +17:u02:requirements., +12:u08:back-off, +14:u10:networking, +8:u12:sfid, +15:u13:identifying, +10:u14:shared, +7:u22:SFI, +8:u23:SFID, +8:uI1:():-, +14:u01:networking, +8:u03:SFID, +15:u04:identifying, +10:u05:shared, +11:u00:deletes, +17:u01:requirements., +12:u07:back-off, +8:u11:sfid, +15:u12:identifying, +10:u13:shared, +8:uI0:():-, +10:uI2::""""., +14:u00:networking, +8:u02:SFID, +15:u03:identifying, +10:u04:shared, +14:u07:slotframe:, +18:u08:opportunities., +17:u00:requirements., +12:u06:back-off, +14:u08:superframe, +8:u10:sfid, +15:u11:identifying, +10:u12:shared, +7:u22:sha, +8:u23:shar, +10:uI1::""""., +8:u01:SFID, +15:u02:identifying, +10:u03:shared, +14:u06:slotframe:, +12:u05:back-off, +14:u07:superframe, +15:u10:identifying, +10:u11:shared, +14:u14:slotframe:, +10:uI0::""""., +8:u00:SFID, +15:u01:identifying, +10:u02:shared, +14:u05:slotframe:, +18:u07:opportunities., +12:u04:back-off, +14:u06:superframe, +10:u10:shared, +14:u13:slotframe:, +15:u00:identifying, +10:u01:shared, +14:u04:slotframe:, +18:u06:opportunities., +14:u08:activities, +12:u03:back-off, +14:u05:superframe, +14:u12:slotframe:, +18:u14:opportunities., +6:u21:sl, +7:u22:slo, +8:u23:slot, +10:u00:shared, +14:u03:slotframe:, +18:u05:opportunities., +12:u02:back-off, +14:u04:superframe, +14:u11:slotframe:, +18:u13:opportunities., +14:u02:slotframe:, +18:u04:opportunities., +14:u07:activities, +12:u01:back-off, +14:u03:superframe, +12:u08:priority, +14:u10:slotframe:, +18:u12:opportunities., +7:u22:opp, +8:u23:oppo, +14:u01:slotframe:, +18:u03:opportunities., +14:u06:activities, +12:u08:timeslot, +12:u00:back-off, +14:u02:superframe, +12:u07:priority, +18:u11:opportunities., +14:u14:activities, +9:uI2:',..,, +14:u00:slotframe:, +18:u02:opportunities., +14:u05:activities, +15:u08:slotOffset:, +14:u01:superframe, +12:u06:priority, +18:u10:opportunities., +14:u13:activities, +9:uI1:',..,, +18:u01:opportunities., +14:u04:activities, +12:u07:timeslot, +13:u08:timeslots, +14:u00:superframe, +12:u05:priority, +14:u12:activities, +8:u23:acti, +9:uI0:',..,, +18:u00:opportunities., +14:u03:activities, +12:u06:timeslot, +15:u07:slotOffset:, +12:u04:priority, +9:u08:since, +14:u11:activities, +12:u14:timeslot, +14:u02:activities, +12:u05:timeslot, +15:u06:slotOffset:, +13:u07:timeslots, +8:u08:soft, +12:u03:priority, +9:u07:since, +14:u08:slotframe., +14:u10:activities, +12:u13:timeslot, +15:u14:slotoffset:, +14:u01:activities, +12:u04:timeslot, +15:u05:slotOffset:, +13:u06:timeslots, +12:u02:priority, +9:u06:since, +14:u07:slotframe., +12:u12:timeslot, +15:u13:slotoffset:, +13:u14:timeslots, +9:uI2::,..,, +14:u00:activities, +12:u03:timeslot, +15:u04:slotOffset:, +13:u05:timeslots, +8:u07:soft, +14:u08:reference,, +12:u01:priority, +9:u05:since, +14:u06:slotframe., +10:u08:source, +12:u11:timeslot, +15:u12:slotoffset:, +13:u13:timeslots, +9:uI1::,..,, +12:u02:timeslot, +15:u03:slotOffset:, +13:u04:timeslots, +8:u06:soft, +17:u08:synchronized., +12:u00:priority, +9:u04:since, +14:u05:slotframe., +10:u07:source, +12:u10:timeslot, +15:u11:slotoffset:, +13:u12:timeslots, +8:u14:soft, +9:uI0::,..,, +12:u01:timeslot, +15:u02:slotOffset:, +13:u03:timeslots, +8:u05:soft, +14:u07:reference,, +13:u08:timeslot:, +9:u03:since, +14:u04:slotframe., +10:u06:source, +15:u10:slotoffset:, +13:u11:timeslots, +8:u13:soft, +12:u00:timeslot, +15:u01:slotOffset:, +13:u02:timeslots, +8:u04:soft, +14:u06:reference,, +17:u07:synchronized., +9:u02:since, +14:u03:slotframe., +10:u05:source, +13:u10:timeslots, +8:u12:soft, +14:u14:reference,, +7:u22:sof, +8:u23:soft, +15:u00:slotOffset:, +13:u01:timeslots, +8:u03:soft, +14:u05:reference,, +17:u06:synchronized., +13:u07:timeslot:, +15:u08:transmitter, +9:u01:since, +14:u02:slotframe., +10:u04:source, +9:u08:basic, +8:u11:soft, +14:u13:reference,, +17:u14:synchronized., +13:u00:timeslots, +8:u02:soft, +14:u04:reference,, +17:u05:synchronized., +13:u06:timeslot:, +9:u00:since, +14:u01:slotframe., +10:u03:source, +9:u07:basic, +8:u10:soft, +14:u12:reference,, +17:u13:synchronized., +13:u14:timeslot:, +7:u22:ref, +8:u23:refe, +8:u01:soft, +14:u03:reference,, +17:u04:synchronized., +13:u05:timeslot:, +15:u07:transmitter, +19:u08:acknowledgment., +14:u00:slotframe., +10:u02:source, +9:u06:basic, +14:u11:reference,, +17:u12:synchronized., +13:u13:timeslot:, +6:u21:sy, +7:u22:syn, +8:u23:sync, +8:u00:soft, +14:u02:reference,, +17:u03:synchronized., +13:u04:timeslot:, +15:u06:transmitter, +10:u08:Track:, +10:u01:source, +9:u05:basic, +14:u10:reference,, +17:u11:synchronized., +13:u12:timeslot:, +15:u14:transmitter, +14:u01:reference,, +17:u02:synchronized., +13:u03:timeslot:, +15:u05:transmitter, +19:u07:acknowledgment., +10:u00:source, +9:u04:basic, +17:u10:synchronized., +13:u11:timeslot:, +15:u13:transmitter, +14:u00:reference,, +17:u01:synchronized., +13:u02:timeslot:, +15:u04:transmitter, +19:u06:acknowledgment., +10:u07:Track:, +9:u03:basic, +13:u10:timeslot:, +15:u12:transmitter, +19:u14:acknowledgment., +17:u00:synchronized., +13:u01:timeslot:, +15:u03:transmitter, +19:u05:acknowledgment., +10:u06:Track:, +9:u02:basic, +11:u08:complex, +15:u11:transmitter, +19:u13:acknowledgment., +10:u14:track:, +13:u00:timeslot:, +15:u02:transmitter, +19:u04:acknowledgment., +10:u05:Track:, +15:u08:Destination, +9:u01:basic, +11:u07:complex, +15:u10:transmitter, +19:u12:acknowledgment., +10:u13:track:, +7:u22:ack, +8:u23:ackn, +15:u01:transmitter, +19:u03:acknowledgment., +10:u04:Track:, +9:u08:DODAG, +9:u00:basic, +11:u06:complex, +19:u11:acknowledgment., +10:u12:track:, +8:u23:Trac, +15:u00:transmitter, +19:u02:acknowledgment., +10:u03:Track:, +15:u07:Destination, +11:u05:complex, +19:u10:acknowledgment., +10:u11:track:, +19:u01:acknowledgment., +10:u02:Track:, +15:u06:Destination, +9:u07:DODAG, +11:u04:complex, +16:u08:replication,, +10:u10:track:, +15:u14:destination, +19:u00:acknowledgment., +10:u01:Track:, +15:u05:Destination, +9:u06:DODAG, +11:u03:complex, +16:u07:replication,, +15:u13:destination, +9:u14:dodag, +10:u00:Track:, +15:u04:Destination, +9:u05:DODAG, +11:u02:complex, +16:u06:replication,, +15:u12:destination, +9:u13:dodag, +11:u14:enables, +8:u23:Dest, +15:u03:Destination, +9:u04:DODAG, +11:u01:complex, +16:u05:replication,, +15:u11:destination, +9:u12:dodag, +11:u13:enables, +7:u22:DOD, +8:u23:DODA, +15:u02:Destination, +9:u03:DODAG, +11:u00:complex, +16:u04:replication,, +15:u10:destination, +9:u11:dodag, +11:u12:enables, +15:u01:Destination, +9:u02:DODAG, +16:u03:replication,, +9:u10:dodag, +11:u11:enables, +15:u00:Destination, +9:u01:DODAG, +16:u02:replication,, +11:u10:enables, +9:u00:DODAG, +16:u01:replication,, +16:u00:replication,, +9:u08:cells, +9:u07:cells, +15:u08:destination, +12:uI2:[-.--])., +9:u06:cells, +12:u08:TrackID:, +9:u14:cells, +12:uI1:[-.--])., +9:u05:cells, +15:u07:destination, +9:u13:cells, +12:uI0:[-.--])., +9:u04:cells, +15:u06:destination, +12:u07:TrackID:, +11:u08:TrackID, +9:u12:cells, +9:u03:cells, +15:u05:destination, +12:u06:TrackID:, +9:u08:owner, +11:u07:TrackID, +9:u11:cells, +12:u14:trackid:, +9:u02:cells, +15:u04:destination, +12:u05:TrackID:, +11:u08:provide, +11:u06:TrackID, +8:u08:must, +9:u10:cells, +12:u13:trackid:, +8:u23:dest, +9:u01:cells, +15:u03:destination, +12:u04:TrackID:, +9:u07:owner, +11:u05:TrackID, +8:u07:must, +12:u12:trackid:, +9:u00:cells, +15:u02:destination, +12:u03:TrackID:, +9:u06:owner, +11:u07:provide, +11:u04:TrackID, +8:u06:must, +12:u11:trackid:, +9:u14:owner, +15:u01:destination, +12:u02:TrackID:, +9:u05:owner, +11:u06:provide, +11:u03:TrackID, +8:u05:must, +12:u10:trackid:, +9:u13:owner, +11:u14:provide, +15:u00:destination, +12:u01:TrackID:, +9:u04:owner, +11:u05:provide, +14:u08:InstanceID, +11:u02:TrackID, +8:u04:must, +9:u12:owner, +11:u13:provide, +6:u21:ow, +7:u22:own, +8:u23:owne, +12:u00:TrackID:, +9:u03:owner, +11:u04:provide, +9:u08:case,, +11:u01:TrackID, +8:u03:must, +13:u08:[RFC6550], +9:u11:owner, +11:u12:provide, +9:u02:owner, +11:u03:provide, +14:u07:InstanceID, +10:u08:packet, +11:u00:TrackID, +8:u02:must, +13:u07:[RFC6550], +9:u10:owner, +11:u11:provide, +9:u01:owner, +11:u02:provide, +14:u06:InstanceID, +9:u07:case,, +13:u08:expressed, +8:u01:must, +13:u06:[RFC6550], +11:u10:provide, +14:u14:instanceid, +9:u00:owner, +11:u01:provide, +14:u05:InstanceID, +9:u06:case,, +10:u07:packet, +8:u00:must, +13:u05:[RFC6550], +14:u13:instanceid, +9:u14:case,, +11:u00:provide, +14:u04:InstanceID, +9:u05:case,, +10:u06:packet, +13:u07:expressed, +13:u04:[RFC6550], +14:u12:instanceid, +9:u13:case,, +14:u03:InstanceID, +9:u04:case,, +10:u05:packet, +13:u06:expressed, +13:u03:[RFC6550], +10:u08:medium, +14:u11:instanceid, +9:u12:case,, +13:u14:expressed, +7:u22:cas, +8:u23:case, +14:u02:InstanceID, +9:u03:case,, +10:u04:packet, +13:u05:expressed, +11:u08:achieve, +13:u02:[RFC6550], +10:u07:medium, +14:u10:instanceid, +9:u11:case,, +13:u13:expressed, +9:u14:tsch:, +14:u01:InstanceID, +9:u02:case,, +10:u03:packet, +13:u04:expressed, +13:u01:[RFC6550], +10:u06:medium, +19:u08:ultra-low-power, +9:u10:case,, +13:u12:expressed, +9:u13:tsch:, +14:u00:InstanceID, +9:u01:case,, +10:u02:packet, +13:u03:expressed, +11:u07:achieve, +13:u00:[RFC6550], +10:u05:medium, +19:u07:ultra-low-power, +13:u11:expressed, +9:u12:tsch:, +6:u21:TS, +7:u22:TSC, +8:u23:TSCH, +9:u00:case,, +10:u01:packet, +13:u02:expressed, +11:u06:achieve, +10:u04:medium, +19:u06:ultra-low-power, +13:u08:Schedule:, +13:u10:expressed, +9:u11:tsch:, +11:u14:achieve, +10:u00:packet, +13:u01:expressed, +11:u05:achieve, +10:u03:medium, +19:u05:ultra-low-power, +13:u07:Schedule:, +9:u10:tsch:, +11:u13:achieve, +7:uI2:--,, +13:u00:expressed, +11:u04:achieve, +11:u08:qualify, +10:u02:medium, +19:u04:ultra-low-power, +13:u06:Schedule:, +11:u12:achieve, +8:u14:tsch, +7:uI1:--,, +11:u03:achieve, +10:u01:medium, +19:u03:ultra-low-power, +13:u05:Schedule:, +11:u11:achieve, +8:u13:tsch, +7:uI0:--,, +11:u02:achieve, +11:u07:qualify, +11:u08:matrix), +10:u00:medium, +19:u02:ultra-low-power, +13:u04:Schedule:, +11:u10:achieve, +8:u12:tsch, +11:u01:achieve, +11:u06:qualify, +15:u08:Unscheduled, +19:u01:ultra-low-power, +13:u03:Schedule:, +8:u11:tsch, +11:u14:qualify, +11:u00:achieve, +11:u05:qualify, +11:u07:matrix), +19:u00:ultra-low-power, +13:u02:Schedule:, +9:u08:Cell:, +8:u10:tsch, +11:u13:qualify, +11:u04:qualify, +11:u06:matrix), +15:u07:Unscheduled, +13:u01:Schedule:, +9:u07:Cell:, +19:u08:implementation., +11:u12:qualify, +11:u14:matrix), +5:u20:q, +6:u21:qu, +7:u22:qua, +8:u23:qual, +7:uI2:("", +11:u03:qualify, +11:u05:matrix), +15:u06:Unscheduled, +13:u00:Schedule:, +9:u06:Cell:, +19:u07:implementation., +11:u11:qualify, +11:u13:matrix), +15:u14:unscheduled, +7:uI1:("", +11:u02:qualify, +11:u04:matrix), +15:u05:Unscheduled, +9:u08:6BBR:, +9:u05:Cell:, +19:u06:implementation., +11:u10:qualify, +11:u12:matrix), +15:u13:unscheduled, +7:uI0:("", +8:uI2::..., +11:u01:qualify, +11:u03:matrix), +15:u04:Unscheduled, +9:u08:6LBR:, +9:u04:Cell:, +19:u05:implementation., +11:u11:matrix), +15:u12:unscheduled, +6:u21:Un, +7:u22:Uns, +8:u23:Unsc, +8:uI1::..., +11:u00:qualify, +11:u02:matrix), +15:u03:Unscheduled, +9:u07:6BBR:, +8:u08:6LN:, +9:u03:Cell:, +19:u04:implementation., +11:u10:matrix), +15:u11:unscheduled, +8:uI0::..., +11:u01:matrix), +15:u02:Unscheduled, +9:u06:6BBR:, +9:u07:6LBR:, +8:u08:6LR:, +9:u02:Cell:, +19:u03:implementation., +15:u10:unscheduled, +9:u14:6bbr:, +11:u00:matrix), +15:u01:Unscheduled, +9:u05:6BBR:, +9:u06:6LBR:, +8:u07:6LN:, +9:u08:6CIO:, +9:u01:Cell:, +19:u02:implementation., +9:u13:6bbr:, +9:u14:6lbr:, +15:u00:Unscheduled, +9:u04:6BBR:, +9:u05:6LBR:, +8:u06:6LN:, +8:u07:6LR:, +9:u00:Cell:, +19:u01:implementation., +14:u08:Capability, +9:u12:6bbr:, +9:u13:6lbr:, +8:u14:6ln:, +7:u22:6BB, +8:u23:6BBR, +9:u03:6BBR:, +9:u04:6LBR:, +8:u05:6LN:, +8:u06:6LR:, +9:u07:6CIO:, +19:u00:implementation., +14:u07:Capability, +9:u11:6bbr:, +9:u12:6lbr:, +8:u13:6ln:, +8:u14:6lr:, +6:u21:6L, +7:u22:6LB, +8:u23:6LBR, +9:u02:6BBR:, +9:u03:6LBR:, +8:u04:6LN:, +8:u05:6LR:, +9:u06:6CIO:, +14:u06:Capability, +9:u10:6bbr:, +9:u11:6lbr:, +8:u12:6ln:, +8:u13:6lr:, +9:u14:6cio:, +7:u22:6LN, +8:u23:6LN:, +9:u01:6BBR:, +9:u02:6LBR:, +8:u03:6LN:, +8:u04:6LR:, +9:u05:6CIO:, +14:u05:Capability, +9:u10:6lbr:, +8:u11:6ln:, +8:u12:6lr:, +9:u13:6cio:, +7:u22:6LR, +8:u23:6LR:, +9:u00:6BBR:, +9:u01:6LBR:, +8:u02:6LN:, +8:u03:6LR:, +9:u04:6CIO:, +14:u04:Capability, +8:u10:6ln:, +8:u11:6lr:, +9:u12:6cio:, +6:u21:6C, +7:u22:6CI, +8:u23:6CIO, +9:u00:6LBR:, +8:u01:6LN:, +8:u02:6LR:, +9:u03:6CIO:, +14:u03:Capability, +8:u10:6lr:, +9:u11:6cio:, +8:u00:6LN:, +8:u01:6LR:, +9:u02:6CIO:, +11:u08:(E)ARO:, +14:u02:Capability, +9:u10:6cio:, +8:u00:6LR:, +9:u01:6CIO:, +11:u08:(E)DAR:, +14:u01:Capability, +14:u08:(Extended), +9:u00:6CIO:, +11:u07:(E)ARO:, +11:u08:(E)DAC:, +14:u00:Capability, +14:u07:(Extended), +11:u06:(E)ARO:, +11:u07:(E)DAR:, +8:u08:DAD:, +14:u06:(Extended), +11:u14:(e)aro:, +11:u05:(E)ARO:, +11:u06:(E)DAR:, +11:u07:(E)DAC:, +10:u08:DODAG:, +14:u05:(Extended), +13:u08:Duplicate, +11:u13:(e)aro:, +11:u14:(e)dar:, +9:uI2:():(), +11:u04:(E)ARO:, +11:u05:(E)DAR:, +11:u06:(E)DAC:, +8:u07:DAD:, +8:u08:LLN:, +14:u04:(Extended), +13:u07:Duplicate, +24:u08:Destination-Oriented, +11:u12:(e)aro:, +11:u13:(e)dar:, +11:u14:(e)dac:, +7:u22:(E), +8:u23:(E)A, +9:uI1:():(), +11:u03:(E)ARO:, +11:u04:(E)DAR:, +11:u05:(E)DAC:, +8:u06:DAD:, +10:u07:DODAG:, +7:u08:NA:, +14:u03:(Extended), +13:u06:Duplicate, +24:u07:Destination-Oriented, +13:u08:Low-Power, +11:u11:(e)aro:, +11:u12:(e)dar:, +11:u13:(e)dac:, +8:u14:dad:, +8:u23:(E)D, +9:uI0:():(), +11:u02:(E)ARO:, +11:u03:(E)DAR:, +11:u04:(E)DAC:, +8:u05:DAD:, +10:u06:DODAG:, +8:u07:LLN:, +14:u02:(Extended), +13:u05:Duplicate, +24:u06:Destination-Oriented, +13:u07:Low-Power, +11:u10:(e)aro:, +11:u11:(e)dar:, +11:u12:(e)dac:, +8:u13:dad:, +10:u14:dodag:, +11:u01:(E)ARO:, +11:u02:(E)DAR:, +11:u03:(E)DAC:, +8:u04:DAD:, +10:u05:DODAG:, +8:u06:LLN:, +7:u07:NA:, +8:u08:NCE:, +14:u01:(Extended), +13:u04:Duplicate, +24:u05:Destination-Oriented, +13:u06:Low-Power, +17:u08:Advertisement, +11:u10:(e)dar:, +11:u11:(e)dac:, +8:u12:dad:, +10:u13:dodag:, +8:u14:lln:, +6:u21:DA, +7:u22:DAD, +8:u23:DAD:, +11:u00:(E)ARO:, +11:u01:(E)DAR:, +11:u02:(E)DAC:, +8:u03:DAD:, +10:u04:DODAG:, +8:u05:LLN:, +7:u06:NA:, +7:u08:ND:, +14:u00:(Extended), +13:u03:Duplicate, +24:u04:Destination-Oriented, +13:u05:Low-Power, +17:u07:Advertisement, +11:u10:(e)dac:, +8:u11:dad:, +10:u12:dodag:, +8:u13:lln:, +7:u14:na:, +8:uI2::-(), +11:u00:(E)DAR:, +11:u01:(E)DAC:, +8:u02:DAD:, +10:u03:DODAG:, +8:u04:LLN:, +7:u05:NA:, +8:u07:NCE:, +13:u02:Duplicate, +24:u03:Destination-Oriented, +13:u04:Low-Power, +17:u06:Advertisement, +8:u10:dad:, +10:u11:dodag:, +8:u12:lln:, +7:u13:na:, +6:u21:LL, +7:u22:LLN, +8:u23:LLN:, +8:uI1::-(), +11:u00:(E)DAC:, +8:u01:DAD:, +10:u02:DODAG:, +8:u03:LLN:, +7:u04:NA:, +8:u06:NCE:, +7:u07:ND:, +8:u08:NDP:, +13:u01:Duplicate, +24:u02:Destination-Oriented, +13:u03:Low-Power, +17:u05:Advertisement, +13:u08:Discovery, +10:u10:dodag:, +8:u11:lln:, +7:u12:na:, +8:u14:nce:, +6:u21:NA, +7:u22:NA:, +7:u23:NA:, +8:uI0::-(), +8:u00:DAD:, +10:u01:DODAG:, +8:u02:LLN:, +7:u03:NA:, +8:u05:NCE:, +7:u06:ND:, +8:u08:PCE:, +13:u00:Duplicate, +24:u01:Destination-Oriented, +13:u02:Low-Power, +17:u04:Advertisement, +13:u07:Discovery, +8:u10:lln:, +7:u11:na:, +8:u13:nce:, +7:u14:nd:, +7:u22:Nei, +8:u23:Neig, +10:u00:DODAG:, +8:u01:LLN:, +7:u02:NA:, +8:u04:NCE:, +7:u05:ND:, +8:u07:NDP:, +8:u08:NME:, +24:u00:Destination-Oriented, +13:u01:Low-Power, +17:u03:Advertisement, +13:u06:Discovery, +7:u10:na:, +8:u12:nce:, +7:u13:nd:, +6:u21:NC, +7:u22:NCE, +8:u23:NCE:, +8:u00:LLN:, +7:u01:NA:, +8:u03:NCE:, +7:u04:ND:, +8:u06:NDP:, +8:u07:PCE:, +9:u08:ROVR:, +13:u00:Low-Power, +17:u02:Advertisement, +13:u05:Discovery, +8:u11:nce:, +7:u12:nd:, +8:u14:ndp:, +7:u22:ND:, +7:u23:ND:, +7:u00:NA:, +8:u02:NCE:, +7:u03:ND:, +8:u05:NDP:, +8:u06:PCE:, +8:u07:NME:, +8:u08:RPL:, +17:u01:Advertisement, +13:u04:Discovery, +8:u10:nce:, +7:u11:nd:, +8:u13:ndp:, +8:u14:pce:, +8:u01:NCE:, +7:u02:ND:, +8:u04:NDP:, +8:u05:PCE:, +8:u06:NME:, +9:u07:ROVR:, +7:u08:RA:, +17:u00:Advertisement, +13:u03:Discovery, +7:u10:nd:, +8:u12:ndp:, +8:u13:pce:, +8:u14:nme:, +7:u22:NDP, +8:u23:NDP:, +8:u00:NCE:, +7:u01:ND:, +8:u03:NDP:, +8:u04:PCE:, +8:u05:NME:, +9:u06:ROVR:, +8:u07:RPL:, +10:u08:Router, +13:u02:Discovery, +8:u11:ndp:, +8:u12:pce:, +8:u13:nme:, +9:u14:rovr:, +6:u21:PC, +7:u22:PCE, +8:u23:PCE:, +7:u00:ND:, +8:u02:NDP:, +8:u03:PCE:, +8:u04:NME:, +9:u05:ROVR:, +8:u06:RPL:, +7:u07:RA:, +7:u08:RS:, +13:u01:Discovery, +8:u10:ndp:, +8:u11:pce:, +8:u12:nme:, +9:u13:rovr:, +8:u14:rpl:, +6:u21:NM, +7:u22:NME, +8:u23:NME:, +8:u01:NDP:, +8:u02:PCE:, +8:u03:NME:, +9:u04:ROVR:, +8:u05:RPL:, +7:u06:RA:, +10:u07:Router, +13:u00:Discovery, +8:u10:pce:, +8:u11:nme:, +9:u12:rovr:, +8:u13:rpl:, +7:u14:ra:, +6:u21:RO, +7:u22:ROV, +8:u23:ROVR, +8:u00:NDP:, +8:u01:PCE:, +8:u02:NME:, +9:u03:ROVR:, +8:u04:RPL:, +7:u05:RA:, +10:u06:Router, +7:u07:RS:, +16:u08:Solicitation, +8:u10:nme:, +9:u11:rovr:, +8:u12:rpl:, +7:u13:ra:, +6:u21:RP, +7:u22:RPL, +8:u23:RPL:, +8:u00:PCE:, +8:u01:NME:, +9:u02:ROVR:, +8:u03:RPL:, +7:u04:RA:, +10:u05:Router, +7:u06:RS:, +8:u08:TID:, +16:u07:Solicitation, +15:u08:timeslotted, +9:u10:rovr:, +8:u11:rpl:, +7:u12:ra:, +7:u14:rs:, +6:u21:RA, +7:u22:RA:, +7:u23:RA:, +8:u00:NME:, +9:u01:ROVR:, +8:u02:RPL:, +7:u03:RA:, +10:u04:Router, +7:u05:RS:, +16:u06:Solicitation, +15:u07:timeslotted, +15:u08:Transaction, +8:u10:rpl:, +7:u11:ra:, +7:u13:rs:, +9:u00:ROVR:, +8:u01:RPL:, +7:u02:RA:, +10:u03:Router, +7:u04:RS:, +8:u07:TID:, +16:u05:Solicitation, +15:u06:timeslotted, +15:u07:Transaction, +7:u10:ra:, +7:u12:rs:, +6:u21:RS, +7:u22:RS:, +7:u23:RS:, +8:u00:RPL:, +7:u01:RA:, +10:u02:Router, +7:u03:RS:, +8:u06:TID:, +13:u08:[RFC3444], +16:u04:Solicitation, +15:u05:timeslotted, +15:u06:Transaction, +7:u11:rs:, +8:u14:tid:, +7:u00:RA:, +10:u01:Router, +7:u02:RS:, +8:u05:TID:, +16:u03:Solicitation, +15:u04:timeslotted, +15:u05:Transaction, +7:u10:rs:, +8:u13:tid:, +10:u00:Router, +7:u01:RS:, +8:u04:TID:, +13:u07:[RFC3444], +16:u02:Solicitation, +15:u03:timeslotted, +15:u04:Transaction, +8:u12:tid:, +6:u21:TI, +7:u22:TID, +8:u23:TID:, +7:u00:RS:, +8:u03:TID:, +13:u06:[RFC3444], +16:u01:Solicitation, +15:u02:timeslotted, +15:u03:Transaction, +15:u08:reservation, +8:u11:tid:, +13:u14:[rfc3444], +8:u02:TID:, +13:u05:[RFC3444], +16:u00:Solicitation, +15:u01:timeslotted, +15:u02:Transaction, +15:u07:reservation, +8:u10:tid:, +13:u13:[rfc3444], +8:uI2:[][], +8:u01:TID:, +13:u04:[RFC3444], +9:u08:Lossy, +15:u00:timeslotted, +15:u01:Transaction, +15:u06:reservation, +6:u08:ND, +13:u12:[rfc3444], +8:uI1:[][], +8:u00:TID:, +13:u03:[RFC3444], +15:u00:Transaction, +15:u05:reservation, +6:u07:ND, +13:u08:Networks", +13:u11:[rfc3444], +8:uI0:[][], +13:u02:[RFC3444], +9:u07:Lossy, +15:u04:reservation, +6:u06:ND, +13:u07:Networks", +14:u08:Discovery", +13:u10:[rfc3444], +11:u14:6lowpan, +13:u01:[RFC3444], +9:u06:Lossy, +15:u03:reservation, +6:u05:ND, +13:u06:Networks", +14:u07:Discovery", +11:u13:6lowpan, +9:u14:lossy, +6:uI2:"-, +13:u00:[RFC3444], +9:u05:Lossy, +15:u02:reservation, +6:u04:ND, +13:u05:Networks", +14:u06:Discovery", +11:u12:6lowpan, +9:u13:lossy, +7:u22:6Lo, +8:u23:6LoW, +6:uI1:"-, +8:uI2:"[]", +9:u04:Lossy, +15:u01:reservation, +6:u03:ND, +13:u04:Networks", +14:u05:Discovery", +11:u11:6lowpan, +9:u12:lossy, +6:u21:Lo, +7:u22:Los, +8:u23:Loss, +6:uI0:"-, +8:uI1:"[]", +8:uI2:"[],, +9:u03:Lossy, +15:u00:reservation, +6:u02:ND, +13:u03:Networks", +14:u04:Discovery", +11:u10:6lowpan, +9:u11:lossy, +8:uI0:"[]", +8:uI1:"[],, +9:u02:Lossy, +6:u01:ND, +13:u02:Networks", +14:u03:Discovery", +9:u10:lossy, +8:uI0:"[],, +9:u01:Lossy, +10:u08:"Terms, +6:u00:ND, +13:u01:Networks", +14:u02:Discovery", +9:u00:Lossy, +14:u08:[RFC7102],, +13:u00:Networks", +14:u01:Discovery", +8:u08:Used, +10:u07:"Terms, +14:u00:Discovery", +8:u07:Used, +10:u06:"Terms, +14:u07:[RFC7102],, +9:u08:Power, +8:u06:Used, +7:u08:RPL, +10:u14:"terms, +10:u05:"Terms, +14:u06:[RFC7102],, +8:u05:Used, +7:u07:RPL, +10:u13:"terms, +14:u14:[rfc7102],, +9:uI2:"-()", +10:u04:"Terms, +14:u05:[RFC7102],, +9:u07:Power, +9:u08:Other, +8:u04:Used, +7:u06:RPL, +10:u12:"terms, +14:u13:[rfc7102],, +7:u22:"Te, +8:u23:"Ter, +9:uI1:"-()", +10:u03:"Terms, +14:u04:[RFC7102],, +9:u06:Power, +8:u03:Used, +7:u05:RPL, +10:u11:"terms, +14:u12:[rfc7102],, +9:u14:power, +9:uI0:"-()", +10:u02:"Terms, +14:u03:[RFC7102],, +9:u05:Power, +9:u07:Other, +11:u08:Readers, +8:u02:Used, +7:u04:RPL, +10:u10:"terms, +14:u11:[rfc7102],, +9:u13:power, +12:uI2:()"[],":, +10:u01:"Terms, +14:u02:[RFC7102],, +9:u04:Power, +9:u06:Other, +8:u01:Used, +7:u03:RPL, +14:u10:[rfc7102],, +9:u12:power, +7:u22:Pow, +8:u23:Powe, +12:uI1:()"[],":, +9:uI2:-"[]., +10:u00:"Terms, +14:u01:[RFC7102],, +9:u03:Power, +9:u05:Other, +11:u07:Readers, +8:u00:Used, +7:u02:RPL, +9:u11:power, +12:uI0:()"[],":, +9:uI1:-"[]., +14:u00:[RFC7102],, +9:u02:Power, +9:u04:Other, +11:u06:Readers, +13:u08:Stateless, +7:u01:RPL, +13:u08:"Neighbor, +9:u10:power, +11:u14:readers, +6:u21:Ot, +7:u22:Oth, +8:u23:Othe, +9:uI0:-"[]., +8:uI2:"[]., +9:u01:Power, +9:u03:Other, +11:u05:Readers, +7:u00:RPL, +13:u07:"Neighbor, +11:u13:readers, +8:uI1:"[]., +9:u00:Power, +9:u02:Other, +11:u04:Readers, +13:u07:Stateless, +13:u06:"Neighbor, +11:u12:readers, +7:u22:Rea, +8:u23:Read, +8:uI0:"[]., +9:u01:Other, +11:u03:Readers, +13:u06:Stateless, +13:u05:"Neighbor, +12:u08:"Problem, +11:u11:readers, +13:u14:stateless, +10:uI2:""[],", +9:u00:Other, +11:u02:Readers, +13:u05:Stateless, +13:u04:"Neighbor, +12:u07:"Problem, +12:u08:Personal, +11:u10:readers, +13:u13:stateless, +10:uI1:""[],", +11:u01:Readers, +13:u04:Stateless, +13:u03:"Neighbor, +12:u06:"Problem, +12:u07:Personal, +15:u08:"Multi-Link, +13:u12:stateless, +10:uI0:""[],", +11:u00:Readers, +13:u03:Stateless, +13:u08:Overview,, +13:u02:"Neighbor, +12:u05:"Problem, +12:u06:Personal, +15:u07:"Multi-Link, +9:u08:"IPv6, +13:u11:stateless, +13:u02:Stateless, +9:u08:prior, +13:u01:"Neighbor, +12:u04:"Problem, +12:u05:Personal, +15:u06:"Multi-Link, +9:u07:"IPv6, +16:u08:Assumptions,, +13:u10:stateless, +10:uI2:()"[],, +13:u01:Stateless, +13:u07:Overview,, +15:u08:ND-proxying, +13:u00:"Neighbor, +12:u03:"Problem, +12:u04:Personal, +15:u05:"Multi-Link, +9:u06:"IPv6, +16:u07:Assumptions,, +10:uI1:()"[],, +10:uI2:"-"[],, +13:u00:Stateless, +13:u06:Overview,, +9:u07:prior, +12:u02:"Problem, +12:u03:Personal, +15:u04:"Multi-Link, +9:u05:"IPv6, +16:u06:Assumptions,, +13:u14:overview,, +10:uI0:()"[],, +10:uI1:"-"[],, +9:uI2:"-():, +13:u05:Overview,, +9:u06:prior, +15:u07:ND-proxying, +12:u01:"Problem, +12:u02:Personal, +15:u03:"Multi-Link, +9:u04:"IPv6, +16:u05:Assumptions,, +13:u13:overview,, +9:u14:prior, +10:uI0:"-"[],, +9:uI1:"-():, +10:uI2:,,,"[], +13:u04:Overview,, +9:u05:prior, +15:u06:ND-proxying, +12:u00:"Problem, +12:u01:Personal, +15:u02:"Multi-Link, +9:u03:"IPv6, +16:u04:Assumptions,, +13:u12:overview,, +9:u13:prior, +15:u14:nd-proxying, +9:uI0:"-():, +10:uI1:,,,"[], +13:u03:Overview,, +9:u04:prior, +15:u05:ND-proxying, +12:u00:Personal, +15:u01:"Multi-Link, +9:u02:"IPv6, +16:u03:Assumptions,, +13:u11:overview,, +9:u12:prior, +15:u13:nd-proxying, +7:u22:pri, +8:u23:prio, +10:uI0:,,,"[], +13:u02:Overview,, +9:u03:prior, +15:u04:ND-proxying, +15:u00:"Multi-Link, +9:u01:"IPv6, +16:u02:Assumptions,, +15:u08:illustrated, +13:u10:overview,, +9:u11:prior, +15:u12:nd-proxying, +7:u22:ND-, +8:u23:ND-p, +13:u01:Overview,, +9:u02:prior, +15:u03:ND-proxying, +9:u00:"IPv6, +16:u01:Assumptions,, +15:u07:illustrated, +9:u08:(LLN), +9:u10:prior, +15:u11:nd-proxying, +8:uI2:..--, +13:u00:Overview,, +9:u01:prior, +15:u02:ND-proxying, +16:u00:Assumptions,, +15:u06:illustrated, +9:u07:(LLN), +15:u10:nd-proxying, +17:u14:configuration, +8:uI1:..--, +9:u00:prior, +15:u01:ND-proxying, +15:u05:illustrated, +9:u06:(LLN), +17:u13:configuration, +8:uI0:..--, +15:u00:ND-proxying, +15:u04:illustrated, +9:u05:(LLN), +17:u12:configuration, +15:u03:illustrated, +9:u04:(LLN), +17:u11:configuration, +15:u02:illustrated, +9:u03:(LLN), +17:u10:configuration, +28:u08:---+--------............, +15:u01:illustrated, +9:u02:(LLN), +15:u00:illustrated, +9:u01:(LLN), +16:u08:------------, +28:u07:---+--------............, +9:u00:(LLN), +16:u07:------------, +28:u06:---+--------............, +16:u06:------------, +28:u14:---+--------............, +28:u05:---+--------............, +16:u05:------------, +28:u13:---+--------............, +39:uI2:-----------............------------, +6:uI2:35, +28:u04:---+--------............, +11:u08:+-----+, +16:u04:------------, +28:u12:---+--------............, +12:u14:external, +8:u23:---+, +39:uI1:-----------............------------, +6:uI1:35, +28:u03:---+--------............, +16:u03:------------, +28:u11:---+--------............, +12:u13:external, +39:uI0:-----------............------------, +6:uI0:35, +28:u02:---+--------............, +11:u07:+-----+, +16:u02:------------, +28:u10:---+--------............, +12:u12:external, +7:u22:Ext, +8:u23:Exte, +28:u01:---+--------............, +11:u06:+-----+, +16:u01:------------, +7:u08:NME, +12:u11:external, +11:u14:+-----+, +28:u00:---+--------............, +11:u05:+-----+, +16:u00:------------, +7:u07:NME, +12:u10:external, +11:u13:+-----+, +11:u04:+-----+, +7:u06:NME, +7:u08:LLN, +11:u12:+-----+, +11:u03:+-----+, +7:u05:NME, +7:u07:LLN, +7:u08:PCE, +11:u11:+-----+, +11:u02:+-----+, +7:u04:NME, +7:u06:LLN, +7:u07:PCE, +11:u10:+-----+, +11:u01:+-----+, +7:u03:NME, +7:u05:LLN, +7:u06:PCE, +11:u00:+-----+, +7:u02:NME, +7:u04:LLN, +7:u05:PCE, +7:u01:NME, +7:u03:LLN, +7:u04:PCE, +7:u00:NME, +7:u02:LLN, +7:u03:PCE, +7:u01:LLN, +7:u02:PCE, +7:u00:LLN, +7:u01:PCE, +7:u00:PCE, +10:u08:Inside, +12:u08:(6LoWPAN, +10:u07:Inside, +7:u08:HC), +10:u06:Inside, +12:u07:(6LoWPAN, +22:u08:802.15.4-compliant, +7:u07:HC), +10:u14:inside, +10:u05:Inside, +12:u06:(6LoWPAN, +7:u06:HC), +10:u08:radio), +10:u13:inside, +12:u14:(6lowpan, +10:u04:Inside, +12:u05:(6LoWPAN, +22:u07:802.15.4-compliant, +7:u05:HC), +10:u07:radio), +16:u08:capabilities, +10:u12:inside, +12:u13:(6lowpan, +8:u23:Insi, +9:uI2:()[]., +10:u03:Inside, +12:u04:(6LoWPAN, +22:u06:802.15.4-compliant, +7:u04:HC), +10:u06:radio), +16:u07:capabilities, +10:u11:inside, +12:u12:(6lowpan, +22:u14:802.15.4-compliant, +6:u21:(6, +7:u22:(6L, +8:u23:(6Lo, +9:uI1:()[]., +7:uI2:,(., +10:u02:Inside, +12:u03:(6LoWPAN, +22:u05:802.15.4-compliant, +11:u08:aspects, +7:u03:HC), +10:u05:radio), +16:u06:capabilities, +11:u08:members, +10:u10:inside, +12:u11:(6lowpan, +22:u13:802.15.4-compliant, +9:uI0:()[]., +7:uI1:,(., +8:uI2:..-), +10:u01:Inside, +12:u02:(6LoWPAN, +22:u04:802.15.4-compliant, +8:u08:mesh, +7:u02:HC), +10:u04:radio), +16:u05:capabilities, +11:u07:members, +12:u10:(6lowpan, +22:u12:802.15.4-compliant, +7:uI0:,(., +8:uI1:..-), +10:u00:Inside, +12:u01:(6LoWPAN, +22:u03:802.15.4-compliant, +11:u07:aspects, +11:u08:another, +7:u01:HC), +10:u03:radio), +16:u04:capabilities, +11:u06:members, +12:u08:network,, +22:u11:802.15.4-compliant, +8:uI0:..-), +12:u00:(6LoWPAN, +22:u02:802.15.4-compliant, +11:u06:aspects, +8:u07:mesh, +7:u00:HC), +10:u02:radio), +16:u03:capabilities, +11:u05:members, +12:u07:network,, +22:u10:802.15.4-compliant, +11:u14:aspects, +9:uI2:(..)., +22:u01:802.15.4-compliant, +11:u05:aspects, +8:u06:mesh, +11:u07:another, +10:u01:radio), +16:u02:capabilities, +11:u04:members, +12:u06:network,, +9:u08:forms, +11:u13:aspects, +8:u14:mesh, +9:uI1:(..)., +22:u00:802.15.4-compliant, +11:u04:aspects, +8:u05:mesh, +11:u06:another, +23:u08:[RFC4861][RFC4862]., +10:u00:radio), +16:u01:capabilities, +11:u03:members, +12:u05:network,, +9:u07:forms, +11:u12:aspects, +8:u13:mesh, +11:u14:another, +7:u22:asp, +8:u23:aspe, +9:uI0:(..)., +11:u03:aspects, +8:u04:mesh, +11:u05:another, +22:u08:[RFC6775][RFC8505], +16:u00:capabilities, +11:u02:members, +12:u04:network,, +9:u06:forms, +11:u11:aspects, +8:u12:mesh, +11:u13:another, +8:u23:mesh, +11:u02:aspects, +8:u03:mesh, +11:u04:another, +23:u07:[RFC4861][RFC4862]., +11:u01:members, +12:u03:network,, +9:u05:forms, +13:u08:specifies, +11:u10:aspects, +8:u11:mesh, +11:u12:another, +7:u22:ano, +8:u23:anot, +9:uI2:--(),, +11:u01:aspects, +8:u02:mesh, +11:u03:another, +23:u06:[RFC4861][RFC4862]., +22:u07:[RFC6775][RFC8505], +11:u00:members, +12:u02:network,, +9:u04:forms, +13:u07:specifies, +8:u10:mesh, +11:u11:another, +23:u14:[rfc4861][rfc4862]., +9:uI1:--(),, +11:u00:aspects, +8:u01:mesh, +11:u02:another, +23:u05:[RFC4861][RFC4862]., +22:u06:[RFC6775][RFC8505], +12:u01:network,, +9:u03:forms, +13:u06:specifies, +9:u08:theft, +11:u10:another, +23:u13:[rfc4861][rfc4862]., +22:u14:[rfc6775][rfc8505], +9:uI0:--(),, +11:uI2:[][].(), +8:u00:mesh, +11:u01:another, +23:u04:[RFC4861][RFC4862]., +22:u05:[RFC6775][RFC8505], +12:u00:network,, +9:u02:forms, +13:u05:specifies, +9:u07:theft, +23:u12:[rfc4861][rfc4862]., +22:u13:[rfc6775][rfc8505], +11:uI1:[][].(), +11:u00:another, +23:u03:[RFC4861][RFC4862]., +22:u04:[RFC6775][RFC8505], +13:u08:addresses, +9:u01:forms, +13:u04:specifies, +9:u06:theft, +23:u11:[rfc4861][rfc4862]., +22:u12:[rfc6775][rfc8505], +11:uI0:[][].(), +23:u02:[RFC4861][RFC4862]., +22:u03:[RFC6775][RFC8505], +11:u08:subnet,, +9:u00:forms, +13:u03:specifies, +9:u05:theft, +23:u10:[rfc4861][rfc4862]., +22:u11:[rfc6775][rfc8505], +23:u01:[RFC4861][RFC4862]., +22:u02:[RFC6775][RFC8505], +13:u07:addresses, +13:u02:specifies, +9:u04:theft, +22:u10:[rfc6775][rfc8505], +23:u00:[RFC4861][RFC4862]., +22:u01:[RFC6775][RFC8505], +13:u06:addresses, +11:u07:subnet,, +10:u08:called, +13:u01:specifies, +9:u03:theft, +13:u14:addresses, +22:u00:[RFC6775][RFC8505], +13:u05:addresses, +11:u06:subnet,, +11:u08:storing, +13:u00:specifies, +9:u02:theft, +9:u08:Route, +13:u13:addresses, +11:u14:subnet,, +13:u04:addresses, +11:u05:subnet,, +10:u07:called, +9:u01:theft, +9:u07:Route, +15:u08:(stateless,, +13:u12:addresses, +11:u13:subnet,, +8:uI2:,..., +13:u03:addresses, +11:u04:subnet,, +10:u06:called, +11:u07:storing, +12:u08:detailed, +9:u00:theft, +9:u06:Route, +15:u07:(stateless,, +13:u11:addresses, +11:u12:subnet,, +10:u14:called, +8:u23:subn, +8:uI1:,..., +8:uI2:,[]-, +13:u02:addresses, +11:u03:subnet,, +10:u05:called, +11:u06:storing, +8:u08:With, +9:u05:Route, +15:u06:(stateless,, +13:u10:addresses, +11:u11:subnet,, +10:u13:called, +11:u14:storing, +8:uI0:,..., +8:uI1:,[]-, +8:uI2:,()-, +13:u01:addresses, +11:u02:subnet,, +10:u04:called, +11:u05:storing, +12:u07:detailed, +9:u04:Route, +15:u05:(stateless,, +9:u08:TSCH,, +11:u10:subnet,, +10:u12:called, +11:u13:storing, +8:uI0:,[]-, +8:uI1:,()-, +9:uI2:(,).,, +13:u00:addresses, +11:u01:subnet,, +10:u03:called, +11:u04:storing, +12:u06:detailed, +8:u07:With, +9:u03:Route, +15:u04:(stateless,, +9:u07:TSCH,, +10:u11:called, +11:u12:storing, +12:u14:detailed, +7:u22:sto, +8:u23:stor, +8:uI0:,()-, +9:uI1:(,).,, +11:u00:subnet,, +10:u02:called, +11:u03:storing, +12:u05:detailed, +8:u06:With, +9:u02:Route, +15:u03:(stateless,, +9:u06:TSCH,, +10:u10:called, +11:u11:storing, +12:u13:detailed, +9:uI0:(,).,, +10:u01:called, +11:u02:storing, +12:u04:detailed, +8:u05:With, +9:u01:Route, +15:u02:(stateless,, +9:u05:TSCH,, +11:u10:storing, +12:u12:detailed, +8:u23:deta, +7:uI2:,-., +10:u00:called, +11:u01:storing, +12:u03:detailed, +8:u04:With, +9:u00:Route, +15:u01:(stateless,, +9:u04:TSCH,, +12:u11:detailed, +7:uI1:,-., +11:u00:storing, +12:u02:detailed, +8:u03:With, +15:u00:(stateless,, +9:u03:TSCH,, +12:u10:detailed, +7:uI0:,-., +8:uI2:...,, +12:u01:detailed, +8:u02:With, +9:u02:TSCH,, +8:uI1:...,, +12:u00:detailed, +8:u01:With, +9:u01:TSCH,, +8:uI0:...,, +8:u00:With, +9:u00:TSCH,, +13:u08:Instances, +13:u07:Instances, +13:u08:Objective, +7:u14:rpl, +6:u08:HC, +13:u06:Instances, +13:u07:Objective, +9:u08:node,, +7:u13:rpl, +13:u05:Instances, +13:u06:Objective, +9:u07:node,, +15:u08:terminator,, +7:u12:rpl, +7:u23:RPL, +6:u07:HC, +13:u04:Instances, +13:u05:Objective, +9:u06:node,, +15:u07:terminator,, +7:u11:rpl, +6:u06:HC, +13:u03:Instances, +13:u04:Objective, +9:u05:node,, +15:u06:terminator,, +7:u08:3.1, +7:u10:rpl, +6:u14:hc, +9:uI2:,(),,, +6:u05:HC, +13:u08:artifacts, +13:u02:Instances, +13:u03:Objective, +9:u04:node,, +15:u05:terminator,, +7:u07:3.1, +11:u08:"3.1.3., +6:u13:hc, +8:u14:6lbr, +9:uI1:,(),,, +6:u04:HC, +13:u01:Instances, +13:u02:Objective, +9:u03:node,, +15:u04:terminator,, +7:u06:3.1, +11:u07:"3.1.3., +6:u12:hc, +8:u13:6lbr, +6:u21:HC, +6:u22:HC, +6:u23:HC, +9:uI0:,(),,, +6:u03:HC, +13:u07:artifacts, +14:u08:Additional, +13:u00:Instances, +13:u01:Objective, +9:u02:node,, +15:u03:terminator,, +7:u05:3.1, +11:u06:"3.1.3., +9:u08:6LoRH, +6:u11:hc, +8:u12:6lbr, +13:uI2:.[],"...", +6:u02:HC, +13:u06:artifacts, +13:u08:establish, +13:u00:Objective, +9:u01:node,, +15:u02:terminator,, +7:u04:3.1, +11:u05:"3.1.3., +9:u07:6LoRH, +6:u10:hc, +8:u11:6lbr, +13:u14:artifacts, +13:uI1:.[],"...", +12:uI2:"...,,"., +6:u01:HC, +13:u05:artifacts, +14:u07:Additional, +19:u08:characteristics, +9:u00:node,, +15:u01:terminator,, +7:u03:3.1, +11:u04:"3.1.3., +9:u06:6LoRH, +13:u08:on-demand, +8:u10:6lbr, +13:u13:artifacts, +12:u14:addition, +13:uI0:.[],"...", +12:uI1:"...,,"., +6:u00:HC, +13:u04:artifacts, +14:u06:Additional, +13:u07:establish, +15:u08:centralized, +15:u00:terminator,, +7:u02:3.1, +11:u03:"3.1.3., +9:u05:6LoRH, +13:u07:on-demand, +10:u08:inside, +13:u12:artifacts, +12:u13:addition, +14:u14:additional, +12:uI0:"...,,"., +13:u03:artifacts, +14:u05:Additional, +13:u06:establish, +19:u07:characteristics, +12:u08:programs, +7:u01:3.1, +11:u02:"3.1.3., +9:u04:6LoRH, +13:u06:on-demand, +10:u07:inside, +11:u08:fashion, +13:u11:artifacts, +12:u12:addition, +14:u13:additional, +13:u14:establish, +13:u02:artifacts, +14:u04:Additional, +13:u05:establish, +19:u06:characteristics, +15:u07:centralized, +7:u00:3.1, +11:u01:"3.1.3., +9:u03:6LoRH, +13:u05:on-demand, +10:u06:inside, +11:u07:fashion, +13:u10:artifacts, +12:u11:addition, +14:u12:additional, +13:u13:establish, +19:u14:characteristics, +8:u23:Addi, +13:u01:artifacts, +14:u03:Additional, +13:u04:establish, +19:u05:characteristics, +15:u06:centralized, +12:u07:programs, +11:u00:"3.1.3., +9:u02:6LoRH, +13:u04:on-demand, +10:u05:inside, +11:u06:fashion, +12:u10:addition, +14:u11:additional, +13:u12:establish, +19:u13:characteristics, +13:u00:artifacts, +14:u02:Additional, +13:u03:establish, +19:u04:characteristics, +15:u05:centralized, +12:u06:programs, +9:u01:6LoRH, +13:u03:on-demand, +10:u04:inside, +11:u05:fashion, +14:u08:Hop-by-Hop, +14:u10:additional, +13:u11:establish, +19:u12:characteristics, +12:u14:programs, +14:u01:Additional, +13:u02:establish, +19:u03:characteristics, +15:u04:centralized, +12:u05:programs, +9:u00:6LoRH, +13:u02:on-demand, +10:u03:inside, +11:u04:fashion, +14:u07:Hop-by-Hop, +13:u10:establish, +19:u11:characteristics, +12:u13:programs, +7:u22:cen, +8:u23:cent, +14:u00:Additional, +13:u01:establish, +19:u02:characteristics, +15:u03:centralized, +12:u04:programs, +13:u01:on-demand, +10:u02:inside, +11:u03:fashion, +14:u06:Hop-by-Hop, +19:u10:characteristics, +12:u12:programs, +13:u00:establish, +19:u01:characteristics, +15:u02:centralized, +12:u03:programs, +13:u00:on-demand, +10:u01:inside, +11:u02:fashion, +14:u05:Hop-by-Hop, +11:u08:connect, +12:u11:programs, +7:uI2:--., +19:u00:characteristics, +15:u01:centralized, +12:u02:programs, +10:u00:inside, +11:u01:fashion, +14:u04:Hop-by-Hop, +11:u07:connect, +12:u10:programs, +7:uI1:--., +15:u00:centralized, +12:u01:programs, +11:u00:fashion, +14:u03:Hop-by-Hop, +11:u06:connect, +7:uI0:--., +12:u00:programs, +14:u02:Hop-by-Hop, +11:u05:connect, +14:u01:Hop-by-Hop, +11:u04:connect, +14:u00:Hop-by-Hop, +11:u03:connect, +11:u14:connect, +11:u02:connect, +11:u13:connect, +8:u08:Root, +11:u01:connect, +13:u08:[RFC8505], +11:u12:connect, +10:u08:campus, +11:u00:connect, +13:u07:[RFC8505], +11:u11:connect, +15:u14:illustrated, +8:u07:Root, +8:u08:haul, +13:u06:[RFC8505], +11:u10:connect, +15:u13:illustrated, +8:u06:Root, +10:u07:campus, +13:u05:[RFC8505], +9:u08:link., +15:u12:illustrated, +8:u14:root, +6:u21:il, +7:u22:ill, +8:u23:illu, +8:u05:Root, +10:u06:campus, +8:u07:haul, +13:u04:[RFC8505], +9:u07:link., +15:u11:illustrated, +8:u13:root, +10:u14:campus, +8:u04:Root, +10:u05:campus, +8:u06:haul, +12:u08:mobility, +13:u03:[RFC8505], +9:u06:link., +15:u10:illustrated, +8:u12:root, +10:u13:campus, +8:u14:haul, +7:u22:Roo, +8:u23:Root, +7:uI2:/--, +8:u03:Root, +10:u04:campus, +8:u05:haul, +14:u08:[RFC6830]., +13:u02:[RFC8505], +9:u05:link., +8:u11:root, +10:u12:campus, +8:u13:haul, +15:u14:operations,, +7:u22:cam, +8:u23:camp, +7:uI1:/--, +8:u02:Root, +10:u03:campus, +8:u04:haul, +12:u07:mobility, +13:u01:[RFC8505], +9:u04:link., +8:u10:root, +10:u11:campus, +8:u12:haul, +15:u13:operations,, +7:u22:hau, +8:u23:haul, +7:uI0:/--, +8:u01:Root, +10:u02:campus, +8:u03:haul, +12:u06:mobility, +14:u07:[RFC6830]., +13:u08:backbone,, +13:u00:[RFC8505], +9:u03:link., +8:u08:LLNs, +10:u10:campus, +8:u11:haul, +15:u12:operations,, +12:u14:mobility, +9:uI2:[][],, +8:u00:Root, +10:u01:campus, +8:u02:haul, +12:u05:mobility, +14:u06:[RFC6830]., +9:u02:link., +8:u07:LLNs, +8:u10:haul, +15:u11:operations,, +12:u13:mobility, +14:u14:[rfc6830]., +9:uI1:[][],, +10:uI2:[],[],, +10:u00:campus, +8:u01:haul, +12:u04:mobility, +14:u05:[RFC6830]., +13:u07:backbone,, +9:u01:link., +8:u06:LLNs, +15:u10:operations,, +12:u12:mobility, +14:u13:[rfc6830]., +9:uI0:[][],, +10:uI1:[],[],, +8:u00:haul, +12:u03:mobility, +14:u04:[RFC6830]., +13:u06:backbone,, +9:u00:link., +8:u05:LLNs, +12:u11:mobility, +14:u12:[rfc6830]., +13:u14:backbone,, +10:uI0:[],[],, +12:u02:mobility, +14:u03:[RFC6830]., +13:u05:backbone,, +8:u04:LLNs, +12:u10:mobility, +14:u11:[rfc6830]., +13:u13:backbone,, +12:u01:mobility, +14:u02:[RFC6830]., +13:u04:backbone,, +8:u03:LLNs, +14:u10:[rfc6830]., +13:u12:backbone,, +12:u00:mobility, +14:u01:[RFC6830]., +13:u03:backbone,, +8:u02:LLNs, +13:u11:backbone,, +16:uI2:[][][-.---]., +14:u00:[RFC6830]., +13:u02:backbone,, +8:u01:LLNs, +13:u10:backbone,, +16:uI1:[][][-.---]., +13:u01:backbone,, +8:u00:LLNs, +16:uI0:[][][-.---]., +13:u00:backbone,, +13:u08:(default), +13:u07:(default), +14:u08:(Optional), +13:u06:(default), +13:u14:(default), +13:u05:(default), +14:u07:(Optional), +13:u13:(default), +13:u04:(default), +14:u06:(Optional), +13:u12:(default), +14:u14:(optional), +6:u21:(d, +7:u22:(de, +8:u23:(def, +13:u03:(default), +14:u05:(Optional), +13:u11:(default), +14:u13:(optional), +13:u02:(default), +14:u04:(Optional), +13:u10:(default), +14:u12:(optional), +6:u21:(O, +7:u22:(Op, +8:u23:(Opt, +13:u01:(default), +14:u03:(Optional), +14:u11:(optional), +13:u00:(default), +14:u02:(Optional), +14:u10:(optional), +14:u01:(Optional), +14:u00:(Optional), +66:u08:--------+---+--------------------+-+---------------+------+---, +66:u07:--------+---+--------------------+-+---------------+------+---, +66:u06:--------+---+--------------------+-+---------------+------+---, +66:u14:--------+---+--------------------+-+---------------+------+---, +66:u05:--------+---+--------------------+-+---------------+------+---, +66:u13:--------+---+--------------------+-+---------------+------+---, +60:uI2:--------------------------------------------------------, +6:uI2:56, +66:u04:--------+---+--------------------+-+---------------+------+---, +66:u12:--------+---+--------------------+-+---------------+------+---, +60:uI1:--------------------------------------------------------, +6:uI1:56, +66:u03:--------+---+--------------------+-+---------------+------+---, +66:u11:--------+---+--------------------+-+---------------+------+---, +60:uI0:--------------------------------------------------------, +6:uI0:56, +66:u02:--------+---+--------------------+-+---------------+------+---, +66:u10:--------+---+--------------------+-+---------------+------+---, +66:u01:--------+---+--------------------+-+---------------+------+---, +66:u00:--------+---+--------------------+-+---------------+------+---, +8:u08:side, +8:u07:side, +8:u06:side, +8:u05:side, +8:u04:side, +8:u03:side, +8:u02:side, +8:u01:side, +8:u00:side, +7:u14:lln, +7:u13:lln, +7:u12:lln, +7:u23:LLN, +7:u11:lln, +7:u10:lln, +12:u08:backbone, +10:u08:(6BBR), +12:u07:backbone, +35:u08:[I-D.ietf-6lo-backbone-router]., +12:u06:backbone, +10:u07:(6BBR), +35:u07:[I-D.ietf-6lo-backbone-router]., +12:u14:backbone, +12:u05:backbone, +10:u06:(6BBR), +35:u06:[I-D.ietf-6lo-backbone-router]., +8:u08:form, +12:u13:backbone, +10:u14:(6bbr), +12:u04:backbone, +10:u05:(6BBR), +35:u05:[I-D.ietf-6lo-backbone-router]., +8:u07:form, +12:u12:backbone, +10:u13:(6bbr), +14:uI2:()[-.---]., +12:u03:backbone, +10:u04:(6BBR), +35:u04:[I-D.ietf-6lo-backbone-router]., +8:u06:form, +12:u11:backbone, +10:u12:(6bbr), +7:u22:(6B, +8:u23:(6BB, +14:uI1:()[-.---]., +12:u02:backbone, +10:u03:(6BBR), +13:u08:registrar, +35:u03:[I-D.ietf-6lo-backbone-router]., +8:u05:form, +12:u10:backbone, +10:u11:(6bbr), +14:uI0:()[-.---]., +12:u01:backbone, +10:u02:(6BBR), +8:u08:well, +35:u02:[I-D.ietf-6lo-backbone-router]., +8:u04:form, +10:u10:(6bbr), +12:u00:backbone, +10:u01:(6BBR), +13:u07:registrar, +37:u08:[I-D.thubert-6man-unicast-lookup], +35:u01:[I-D.ietf-6lo-backbone-router]., +8:u03:form, +10:u00:(6BBR), +13:u06:registrar, +8:u07:well, +35:u00:[I-D.ietf-6lo-backbone-router]., +8:u02:form, +13:u05:registrar, +8:u06:well, +37:u07:[I-D.thubert-6man-unicast-lookup], +14:u08:[RFC8505],, +8:u01:form, +11:u08:example, +8:u14:well, +13:u04:registrar, +8:u05:well, +37:u06:[I-D.thubert-6man-unicast-lookup], +8:u00:form, +11:u07:example, +8:u13:well, +37:u14:[i-d.thubert-6man-unicast-lookup], +13:u03:registrar, +8:u04:well, +37:u05:[I-D.thubert-6man-unicast-lookup], +14:u07:[RFC8505],, +11:u06:example, +8:u12:well, +37:u13:[i-d.thubert-6man-unicast-lookup], +13:u02:registrar, +8:u03:well, +37:u04:[I-D.thubert-6man-unicast-lookup], +14:u06:[RFC8505],, +11:u05:example, +8:u11:well, +37:u12:[i-d.thubert-6man-unicast-lookup], +14:u14:[rfc8505],, +13:u01:registrar, +8:u02:well, +37:u03:[I-D.thubert-6man-unicast-lookup], +14:u05:[RFC8505],, +11:u04:example, +8:u10:well, +37:u11:[i-d.thubert-6man-unicast-lookup], +14:u13:[rfc8505],, +9:uI2:[],-,, +13:u00:registrar, +8:u01:well, +37:u02:[I-D.thubert-6man-unicast-lookup], +14:u04:[RFC8505],, +13:u08:preferred, +11:u03:example, +11:u08:learned, +37:u10:[i-d.thubert-6man-unicast-lookup], +14:u12:[rfc8505],, +9:uI1:[],-,, +8:u00:well, +37:u01:[I-D.thubert-6man-unicast-lookup], +14:u03:[RFC8505],, +12:u08:combined, +11:u02:example, +11:u07:learned, +14:u11:[rfc8505],, +9:uI0:[],-,, +37:u00:[I-D.thubert-6man-unicast-lookup], +14:u02:[RFC8505],, +13:u07:preferred, +11:u01:example, +11:u06:learned, +14:u10:[rfc8505],, +14:u01:[RFC8505],, +13:u06:preferred, +12:u07:combined, +11:u00:example, +11:u05:learned, +12:u08:attached, +13:u14:preferred, +14:u00:[RFC8505],, +13:u05:preferred, +12:u06:combined, +11:u04:learned, +12:u07:attached, +13:u13:preferred, +12:u14:combined, +13:u04:preferred, +12:u05:combined, +11:u03:learned, +12:u06:attached, +13:u12:preferred, +12:u13:combined, +12:u14:directly, +13:u03:preferred, +12:u04:combined, +11:u02:learned, +12:u05:attached, +13:u11:preferred, +12:u12:combined, +12:u13:directly, +12:u14:extended, +13:u02:preferred, +12:u03:combined, +11:u01:learned, +12:u04:attached, +13:u08:backbone., +13:u10:preferred, +12:u11:combined, +12:u12:directly, +12:u13:extended, +13:u01:preferred, +12:u02:combined, +11:u00:learned, +12:u03:attached, +13:u07:backbone., +12:u10:combined, +12:u11:directly, +12:u12:extended, +7:u22:ext, +8:u23:exte, +13:u00:preferred, +12:u01:combined, +12:u02:attached, +13:u06:backbone., +12:u10:directly, +12:u11:extended, +12:u00:combined, +12:u01:attached, +13:u05:backbone., +12:u10:extended, +12:u00:attached, +13:u04:backbone., +13:u03:backbone., +13:u02:backbone., +11:u08:Layer-3, +13:u01:backbone., +8:u08:span, +13:u00:backbone., +11:u07:Layer-3, +9:u08:(such, +11:u06:Layer-3, +8:u07:span, +11:u14:layer-3, +11:u05:Layer-3, +8:u06:span, +9:u07:(such, +12:u08:behavior, +11:u13:layer-3, +8:u14:span, +11:u04:Layer-3, +8:u05:span, +9:u06:(such, +11:u12:layer-3, +8:u13:span, +9:u14:(such, +11:u03:Layer-3, +8:u04:span, +9:u05:(such, +12:u07:behavior, +10:u08:Though, +11:u11:layer-3, +8:u12:span, +9:u13:(such, +7:u22:spa, +8:u23:span, +11:u02:Layer-3, +8:u03:span, +9:u04:(such, +12:u06:behavior, +8:u08:IEEE, +11:u10:layer-3, +8:u11:span, +9:u12:(such, +12:u14:behavior, +6:u21:(s, +7:u22:(su, +8:u23:(suc, +11:u01:Layer-3, +8:u02:span, +9:u03:(such, +12:u05:behavior, +10:u07:Though, +8:u10:span, +9:u11:(such, +12:u13:behavior, +11:u00:Layer-3, +8:u01:span, +9:u02:(such, +12:u04:behavior, +10:u06:Though, +8:u07:IEEE, +9:u10:(such, +12:u12:behavior, +10:u14:though, +7:u22:beh, +8:u23:beha, +7:uI2:..:, +8:u00:span, +9:u01:(such, +12:u03:behavior, +10:u05:Though, +8:u06:IEEE, +12:u11:behavior, +10:u13:though, +8:u14:ieee, +7:uI1:..:, +9:u00:(such, +12:u02:behavior, +10:u04:Though, +8:u05:IEEE, +16:u08:intermediate, +11:u08:precise, +12:u10:behavior, +10:u12:though, +8:u13:ieee, +8:u23:Thou, +7:uI0:..:, +9:uI2:....., +12:u01:behavior, +10:u03:Though, +8:u04:IEEE, +11:u07:precise, +12:u08:stations, +10:u11:though, +8:u12:ieee, +7:u22:IEE, +8:u23:IEEE, +9:uI1:....., +12:u00:behavior, +10:u02:Though, +8:u03:IEEE, +16:u07:intermediate, +11:u06:precise, +12:u07:stations, +10:u10:though, +8:u11:ieee, +8:u23:Dete, +9:uI0:....., +10:u01:Though, +8:u02:IEEE, +16:u06:intermediate, +11:u05:precise, +12:u06:stations, +8:u10:ieee, +16:u14:intermediate, +10:u00:Though, +8:u01:IEEE, +16:u05:intermediate, +15:u08:collisions,, +11:u04:precise, +12:u05:stations, +16:u13:intermediate, +8:u00:IEEE, +16:u04:intermediate, +11:u03:precise, +12:u04:stations, +9:u08:saves, +16:u12:intermediate, +17:u14:communication, +16:u03:intermediate, +15:u07:collisions,, +11:u02:precise, +12:u03:stations, +9:u07:saves, +16:u11:intermediate, +17:u13:communication, +16:u02:intermediate, +15:u06:collisions,, +11:u01:precise, +12:u02:stations, +9:u06:saves, +16:u10:intermediate, +17:u12:communication, +15:u14:collisions,, +16:u01:intermediate, +15:u05:collisions,, +11:u00:precise, +12:u01:stations, +9:u05:saves, +17:u08:interference., +17:u11:communication, +15:u13:collisions,, +16:u00:intermediate, +15:u04:collisions,, +12:u08:advanced, +12:u00:stations, +9:u04:saves, +17:u07:interference., +10:u08:builds, +17:u10:communication, +15:u12:collisions,, +15:u03:collisions,, +9:u03:saves, +17:u06:interference., +10:u07:builds, +15:u11:collisions,, +15:u02:collisions,, +12:u07:advanced, +9:u02:saves, +17:u05:interference., +10:u06:builds, +15:u10:collisions,, +15:u01:collisions,, +12:u06:advanced, +9:u08:route, +9:u01:saves, +17:u04:interference., +10:u05:builds, +12:u14:advanced, +15:u00:collisions,, +12:u05:advanced, +9:u00:saves, +17:u03:interference., +10:u04:builds, +15:u08:computation, +12:u13:advanced, +8:u14:they, +12:u04:advanced, +9:u07:route, +35:u08:[I-D.ietf-detnet-architecture],, +17:u02:interference., +10:u03:builds, +15:u07:computation, +12:u12:advanced, +8:u13:they, +12:u03:advanced, +9:u06:route, +10:u08:[PCE],, +17:u01:interference., +10:u02:builds, +15:u06:computation, +12:u11:advanced, +8:u12:they, +9:u14:route, +8:u23:they, +12:u02:advanced, +9:u05:route, +35:u07:[I-D.ietf-detnet-architecture],, +17:u00:interference., +10:u01:builds, +15:u05:computation, +12:u10:advanced, +8:u11:they, +9:u13:route, +10:u14:relies, +7:u22:Arc, +8:u23:Arch, +12:u01:advanced, +9:u04:route, +35:u06:[I-D.ietf-detnet-architecture],, +10:u07:[PCE],, +10:u00:builds, +15:u04:computation, +8:u10:they, +9:u12:route, +10:u13:relies, +35:u14:[i-d.ietf-detnet-architecture],, +12:u00:advanced, +9:u03:route, +35:u05:[I-D.ietf-detnet-architecture],, +10:u06:[PCE],, +15:u03:computation, +9:u11:route, +10:u12:relies, +35:u13:[i-d.ietf-detnet-architecture],, +10:u14:[pce],, +9:u02:route, +35:u04:[I-D.ietf-detnet-architecture],, +10:u05:[PCE],, +15:u02:computation, +9:u10:route, +10:u11:relies, +35:u12:[i-d.ietf-detnet-architecture],, +10:u13:[pce],, +8:uI2:[],., +9:u01:route, +35:u03:[I-D.ietf-detnet-architecture],, +10:u04:[PCE],, +14:u08:deployment, +15:u01:computation, +10:u10:relies, +35:u11:[i-d.ietf-detnet-architecture],, +10:u12:[pce],, +7:u22:[PC, +8:u23:[PCE, +8:uI1:[],., +9:u00:route, +35:u02:[I-D.ietf-detnet-architecture],, +10:u03:[PCE],, +11:u08:variety, +15:u00:computation, +35:u10:[i-d.ietf-detnet-architecture],, +10:u11:[pce],, +8:uI0:[],., +35:u01:[I-D.ietf-detnet-architecture],, +10:u02:[PCE],, +14:u07:deployment, +10:u10:[pce],, +35:u00:[I-D.ietf-detnet-architecture],, +10:u01:[PCE],, +14:u06:deployment, +11:u07:variety, +14:u14:deployment, +10:u00:[PCE],, +14:u05:deployment, +11:u06:variety, +14:u08:importance, +14:u13:deployment, +11:u14:variety, +14:u04:deployment, +11:u05:variety, +11:u08:workers, +16:u08:measurements, +14:u12:deployment, +11:u13:variety, +12:u14:examples, +7:u22:dep, +8:u23:depl, +14:u03:deployment, +11:u04:variety, +14:u07:importance, +16:u07:measurements, +13:u08:accessing, +14:u11:deployment, +11:u12:variety, +12:u13:examples, +9:u14:setup, +7:u22:var, +8:u23:vari, +14:u02:deployment, +11:u03:variety, +14:u06:importance, +11:u07:workers, +16:u06:measurements, +13:u07:accessing, +14:u10:deployment, +11:u11:variety, +12:u12:examples, +9:u13:setup, +14:u14:importance, +7:u22:Exa, +8:u23:Exam, +14:u01:deployment, +11:u02:variety, +14:u05:importance, +11:u06:workers, +16:u05:measurements, +13:u06:accessing, +11:u10:variety, +12:u11:examples, +9:u12:setup, +14:u13:importance, +11:u14:workers, +8:u23:setu, +14:u00:deployment, +11:u01:variety, +14:u04:importance, +11:u05:workers, +16:u04:measurements, +13:u05:accessing, +12:u10:examples, +9:u11:setup, +14:u12:importance, +11:u13:workers, +11:u00:variety, +14:u03:importance, +11:u04:workers, +16:u03:measurements, +13:u04:accessing, +9:u10:setup, +14:u11:importance, +11:u12:workers, +14:u02:importance, +11:u03:workers, +16:u02:measurements, +13:u03:accessing, +14:u10:importance, +11:u11:workers, +14:u01:importance, +11:u02:workers, +16:u01:measurements, +13:u02:accessing, +11:u10:workers, +14:u00:importance, +11:u01:workers, +16:u00:measurements, +13:u01:accessing, +11:u00:workers, +13:u00:accessing, +9:u08:(TDM), +9:u07:(TDM), +9:u06:(TDM), +16:u14:multiplexing, +9:u05:(TDM), +16:u13:multiplexing, +10:uI2:()/-(), +8:u08:More, +9:u04:(TDM), +16:u12:multiplexing, +17:u14:transmissions, +10:uI1:()/-(), +7:uI2:/(), +8:u08:From, +9:u03:(TDM), +16:u11:multiplexing, +17:u13:transmissions, +10:uI0:()/-(), +7:uI1:/(), +8:u07:More, +9:u02:(TDM), +16:u10:multiplexing, +17:u12:transmissions, +7:uI0:/(), +8:u06:More, +8:u07:From, +9:u01:(TDM), +17:u11:transmissions, +8:u05:More, +8:u06:From, +10:u08:listen, +9:u00:(TDM), +17:u10:transmissions, +8:u04:More, +8:u05:From, +14:u08:slotframes, +6:u21:Mo, +7:u22:Mor, +8:u23:More, +8:u03:More, +8:u04:From, +10:u07:listen, +11:u08:require, +6:u21:Fr, +7:u22:Fro, +8:u23:From, +8:u02:More, +8:u03:From, +10:u06:listen, +14:u07:slotframes, +13:u08:slotframe, +10:u14:listen, +8:u01:More, +8:u02:From, +10:u05:listen, +14:u06:slotframes, +11:u07:require, +10:u13:listen, +14:u14:slotframes, +8:u00:More, +8:u01:From, +10:u04:listen, +14:u05:slotframes, +11:u06:require, +13:u07:slotframe, +10:u12:listen, +14:u13:slotframes, +11:u14:require, +8:u00:From, +10:u03:listen, +14:u04:slotframes, +11:u05:require, +13:u06:slotframe, +10:u11:listen, +14:u12:slotframes, +11:u13:require, +13:u14:slotframe, +10:u02:listen, +14:u03:slotframes, +11:u04:require, +13:u05:slotframe, +12:u08:utilizes, +10:u10:listen, +14:u11:slotframes, +11:u12:require, +13:u13:slotframe, +10:u01:listen, +14:u02:slotframes, +11:u03:require, +13:u04:slotframe, +12:u07:utilizes, +11:u08:receive, +14:u10:slotframes, +11:u11:require, +13:u12:slotframe, +10:u00:listen, +14:u01:slotframes, +11:u02:require, +13:u03:slotframe, +12:u06:utilizes, +11:u07:receive, +11:u10:require, +13:u11:slotframe, +14:u00:slotframes, +11:u01:require, +13:u02:slotframe, +16:u08:interference, +12:u05:utilizes, +11:u06:receive, +13:u10:slotframe, +11:u00:require, +13:u01:slotframe, +12:u04:utilizes, +11:u05:receive, +10:u08:domain, +13:u00:slotframe, +16:u07:interference, +12:u03:utilizes, +11:u04:receive, +10:u07:domain, +14:u14:scheduling, +16:u06:interference, +9:u08:role,, +12:u02:utilizes, +11:u03:receive, +10:u06:domain, +14:u13:scheduling, +16:u14:interference, +16:u05:interference, +12:u01:utilizes, +11:u02:receive, +10:u05:domain, +9:u08:e.g.,, +14:u12:scheduling, +16:u13:interference, +8:u23:Sche, +16:u04:interference, +9:u07:role,, +11:u08:managed, +12:u00:utilizes, +11:u01:receive, +10:u04:domain, +9:u07:e.g.,, +14:u11:scheduling, +16:u12:interference, +16:u03:interference, +9:u06:role,, +15:u08:to-Neighbor, +11:u00:receive, +10:u03:domain, +9:u06:e.g.,, +14:u10:scheduling, +16:u11:interference, +9:u14:role,, +16:u02:interference, +9:u05:role,, +11:u07:managed, +10:u02:domain, +9:u05:e.g.,, +15:u08:Scheduling,, +16:u10:interference, +9:u13:role,, +10:uI2:,..,,., +16:u01:interference, +9:u04:role,, +11:u06:managed, +15:u07:to-Neighbor, +10:u01:domain, +9:u04:e.g.,, +15:u07:Scheduling,, +15:u08:Management,, +9:u12:role,, +11:u14:managed, +10:uI1:,..,,., +16:u00:interference, +9:u03:role,, +11:u05:managed, +15:u06:to-Neighbor, +10:u00:domain, +9:u03:e.g.,, +15:u06:Scheduling,, +15:u07:Management,, +15:u08:Scheduling:, +9:u11:role,, +11:u13:managed, +15:u14:to-neighbor, +10:uI0:,..,,., +7:uI2::,-, +9:u02:role,, +11:u04:managed, +15:u05:to-Neighbor, +9:u02:e.g.,, +15:u05:Scheduling,, +15:u06:Management,, +15:u07:Scheduling:, +9:u10:role,, +11:u12:managed, +15:u13:to-neighbor, +12:u14:schedule, +7:u22:man, +8:u23:mana, +7:uI1::,-, +9:u01:role,, +11:u03:managed, +15:u04:to-Neighbor, +9:u01:e.g.,, +15:u04:Scheduling,, +15:u05:Management,, +15:u06:Scheduling:, +11:u11:managed, +15:u12:to-neighbor, +12:u13:schedule, +10:u14:static, +7:u22:to-, +8:u23:to-N, +7:uI0::,-, +9:u00:role,, +11:u02:managed, +15:u03:to-Neighbor, +9:u00:e.g.,, +15:u03:Scheduling,, +15:u04:Management,, +15:u05:Scheduling:, +11:u08:through, +11:u10:managed, +15:u11:to-neighbor, +12:u12:schedule, +10:u13:static, +11:u01:managed, +15:u02:to-Neighbor, +15:u02:Scheduling,, +15:u03:Management,, +15:u04:Scheduling:, +11:u07:through, +15:u10:to-neighbor, +12:u11:schedule, +10:u12:static, +11:u00:managed, +15:u01:to-Neighbor, +15:u01:Scheduling,, +15:u02:Management,, +15:u03:Scheduling:, +11:u06:through, +12:u10:schedule, +10:u11:static, +15:u00:to-Neighbor, +10:u08:during, +15:u00:Scheduling,, +15:u01:Management,, +15:u02:Scheduling:, +11:u05:through, +10:u10:static, +15:u00:Management,, +15:u01:Scheduling:, +11:u04:through, +10:u07:during, +24:u08:Neighbor-to-Neighbor, +15:u00:Scheduling:, +11:u03:through, +10:u06:during, +11:u02:through, +10:u14:during, +10:u05:during, +24:u07:Neighbor-to-Neighbor, +11:u01:through, +10:u13:during, +10:u04:during, +24:u06:Neighbor-to-Neighbor, +11:u00:through, +10:u12:during, +24:u14:neighbor-to-neighbor, +7:u22:dur, +8:u23:duri, +10:u03:during, +24:u05:Neighbor-to-Neighbor, +10:u11:during, +24:u13:neighbor-to-neighbor, +7:uI2:--:, +10:u02:during, +24:u04:Neighbor-to-Neighbor, +10:u10:during, +24:u12:neighbor-to-neighbor, +7:uI1:--:, +10:u01:during, +24:u03:Neighbor-to-Neighbor, +24:u11:neighbor-to-neighbor, +7:uI0:--:, +10:u00:during, +24:u02:Neighbor-to-Neighbor, +24:u10:neighbor-to-neighbor, +24:u01:Neighbor-to-Neighbor, +24:u00:Neighbor-to-Neighbor, +11:u08:"6TiSCH, +13:u08:influence, +11:u07:"6TiSCH, +11:u06:"6TiSCH, +13:u07:influence, +11:u14:"6tisch, +11:u05:"6TiSCH, +13:u06:influence, +11:u13:"6tisch, +13:u14:influence, +14:uI2:"()"[-.--], +11:u04:"6TiSCH, +13:u05:influence, +10:u08:refers, +11:u12:"6tisch, +13:u13:influence, +6:u21:"6, +7:u22:"6T, +8:u23:"6Ti, +14:uI1:"()"[-.--], +11:u03:"6TiSCH, +13:u04:influence, +11:u11:"6tisch, +13:u12:influence, +8:u23:infl, +14:uI0:"()"[-.--], +9:uI2:,'[],, +11:u02:"6TiSCH, +13:u03:influence, +10:u07:refers, +11:u08:forward, +11:u10:"6tisch, +13:u11:influence, +9:uI1:,'[],, +11:u01:"6TiSCH, +13:u02:influence, +10:u06:refers, +11:u07:forward, +11:u08:related, +13:u10:influence, +10:u14:refers, +9:uI0:,'[],, +11:u00:"6TiSCH, +13:u01:influence, +10:u05:refers, +10:u08:(NME),, +11:u06:forward, +11:u07:related, +10:u13:refers, +13:u00:influence, +10:u04:refers, +15:u08:interaction, +11:u05:forward, +11:u06:related, +10:u12:refers, +10:u03:refers, +10:u07:(NME),, +9:u08:model, +11:u04:forward, +11:u05:related, +10:u11:refers, +10:u02:refers, +10:u06:(NME),, +15:u07:interaction, +11:u03:forward, +11:u04:related, +10:u10:refers, +10:u14:(nme),, +10:u01:refers, +10:u05:(NME),, +15:u06:interaction, +9:u07:model, +11:u02:forward, +11:u03:related, +10:u13:(nme),, +15:u14:interaction, +10:u00:refers, +10:u04:(NME),, +15:u05:interaction, +9:u06:model, +11:u01:forward, +11:u02:related, +10:u12:(nme),, +15:u13:interaction, +9:u14:model, +6:u21:(N, +7:u22:(NM, +8:u23:(NME, +10:u03:(NME),, +15:u04:interaction, +9:u05:model, +11:u00:forward, +11:u01:related, +10:u11:(nme),, +15:u12:interaction, +9:u13:model, +10:u02:(NME),, +15:u03:interaction, +9:u04:model, +14:u08:mechanism., +11:u00:related, +10:u10:(nme),, +15:u11:interaction, +9:u12:model, +10:u01:(NME),, +15:u02:interaction, +9:u03:model, +15:u10:interaction, +9:u11:model, +14:u14:hop-by-hop, +10:u00:(NME),, +15:u01:interaction, +9:u02:model, +14:u07:mechanism., +15:u08:mechanisms., +9:u10:model, +14:u13:hop-by-hop, +15:u00:interaction, +9:u01:model, +14:u06:mechanism., +8:u08:only, +14:u12:hop-by-hop, +14:u14:mechanism., +8:u23:Hop-, +9:u00:model, +14:u05:mechanism., +15:u07:mechanisms., +14:u11:hop-by-hop, +14:u13:mechanism., +14:u04:mechanism., +15:u06:mechanisms., +8:u07:only, +17:u08:distribution., +14:u10:hop-by-hop, +14:u12:mechanism., +15:u14:mechanisms., +14:u03:mechanism., +15:u05:mechanisms., +8:u06:only, +14:u11:mechanism., +15:u13:mechanisms., +8:u14:only, +14:u02:mechanism., +15:u04:mechanisms., +8:u05:only, +17:u07:distribution., +10:u08:deeper, +14:u10:mechanism., +15:u12:mechanisms., +8:u13:only, +14:u01:mechanism., +15:u03:mechanisms., +8:u04:only, +17:u06:distribution., +10:u07:deeper, +15:u11:mechanisms., +8:u12:only, +17:u14:distribution., +7:u22:onl, +8:u23:only, +14:u00:mechanism., +15:u02:mechanisms., +8:u03:only, +17:u05:distribution., +11:u08:routes., +10:u06:deeper, +15:u10:mechanisms., +8:u11:only, +17:u13:distribution., +15:u01:mechanisms., +8:u02:only, +17:u04:distribution., +10:u05:deeper, +8:u10:only, +17:u12:distribution., +15:u00:mechanisms., +8:u01:only, +17:u03:distribution., +11:u07:routes., +10:u04:deeper, +17:u11:distribution., +8:u00:only, +17:u02:distribution., +11:u06:routes., +10:u03:deeper, +17:u08:interoperable, +17:u10:distribution., +11:u14:routes., +17:u01:distribution., +11:u05:routes., +12:u08:routers., +10:u02:deeper, +17:u07:interoperable, +11:u08:methods, +11:u13:routes., +17:u00:distribution., +11:u04:routes., +12:u08:topology, +10:u01:deeper, +17:u06:interoperable, +11:u07:methods, +11:u12:routes., +7:uI2:.[], +11:u03:routes., +12:u07:routers., +10:u00:deeper, +17:u05:interoperable, +11:u06:methods, +11:u11:routes., +7:uI1:.[], +11:u02:routes., +12:u06:routers., +12:u07:topology, +17:u08:RPLInstanceID, +17:u04:interoperable, +11:u05:methods, +11:u10:routes., +12:u14:routers., +7:uI0:.[], +11:u01:routes., +12:u05:routers., +12:u06:topology, +17:u03:interoperable, +11:u04:methods, +12:u13:routers., +12:u14:topology, +6:u21:Bo, +7:u22:Bot, +8:u23:Both, +11:u00:routes., +12:u04:routers., +12:u05:topology, +17:u07:RPLInstanceID, +17:u02:interoperable, +11:u03:methods, +12:u12:routers., +12:u13:topology, +12:u03:routers., +12:u04:topology, +17:u06:RPLInstanceID, +17:u01:interoperable, +11:u02:methods, +15:u08:Scheduling., +12:u11:routers., +12:u12:topology, +17:u14:rplinstanceid, +12:u02:routers., +12:u03:topology, +17:u05:RPLInstanceID, +12:u08:expected, +17:u00:interoperable, +11:u01:methods, +15:u07:Scheduling., +12:u10:routers., +12:u11:topology, +17:u13:rplinstanceid, +12:u01:routers., +12:u02:topology, +17:u04:RPLInstanceID, +11:u00:methods, +15:u06:Scheduling., +12:u10:topology, +17:u12:rplinstanceid, +8:u23:RPLI, +8:uI2:[]--, +12:u00:routers., +12:u01:topology, +17:u03:RPLInstanceID, +12:u07:expected, +15:u05:Scheduling., +17:u11:rplinstanceid, +8:uI1:[]--, +12:u00:topology, +17:u02:RPLInstanceID, +12:u06:expected, +15:u04:Scheduling., +17:u10:rplinstanceid, +12:u14:expected, +8:uI0:[]--, +17:u01:RPLInstanceID, +12:u05:expected, +15:u03:Scheduling., +11:u08:derives, +12:u13:expected, +17:u00:RPLInstanceID, +12:u04:expected, +15:u02:Scheduling., +11:u07:derives, +12:u12:expected, +8:u23:expe, +9:uI2:[],--, +12:u03:expected, +15:u01:Scheduling., +11:u06:derives, +12:u11:expected, +9:uI1:[],--, +16:uI2:-"[-.---]-),, +12:u02:expected, +15:u00:Scheduling., +11:u05:derives, +12:u10:expected, +9:uI0:[],--, +16:uI1:-"[-.---]-),, +12:u01:expected, +11:u04:derives, +16:uI0:-"[-.---]-),, +12:u00:expected, +11:u03:derives, +10:u08:(AODV), +11:u02:derives, +11:u01:derives, +27:u08:[I-D.ietf-manet-aodvv2], +10:u07:(AODV), +11:u00:derives, +27:u07:[I-D.ietf-manet-aodvv2], +10:u06:(AODV), +10:u08:Global, +27:u06:[I-D.ietf-manet-aodvv2], +10:u14:(aodv), +10:u05:(AODV), +27:u05:[I-D.ietf-manet-aodvv2], +10:u13:(aodv), +15:u14:scheduling., +14:uI2:()[-.--]--, +10:u04:(AODV), +10:u07:Global, +27:u04:[I-D.ietf-manet-aodvv2], +10:u12:(aodv), +15:u13:scheduling., +6:u21:(A, +7:u22:(AO, +8:u23:(AOD, +14:uI1:()[-.--]--, +10:u03:(AODV), +10:u06:Global, +27:u03:[I-D.ietf-manet-aodvv2], +13:u08:topology., +10:u11:(aodv), +15:u12:scheduling., +10:u14:global, +14:uI0:()[-.--]--, +10:u02:(AODV), +10:u05:Global, +27:u02:[I-D.ietf-manet-aodvv2], +13:u07:topology., +10:u10:(aodv), +15:u11:scheduling., +10:u13:global, +10:u01:(AODV), +10:u04:Global, +27:u01:[I-D.ietf-manet-aodvv2], +13:u06:topology., +14:u08:precedence, +15:u10:scheduling., +10:u12:global, +6:u21:Gl, +7:u22:Glo, +8:u23:Glob, +10:u00:(AODV), +10:u03:Global, +27:u00:[I-D.ietf-manet-aodvv2], +13:u05:topology., +14:u07:precedence, +15:u08:slotframes., +10:u11:global, +10:u02:Global, +13:u04:topology., +14:u06:precedence, +15:u07:slotframes., +10:u10:global, +10:u01:Global, +13:u03:topology., +14:u05:precedence, +15:u06:slotframes., +10:u00:Global, +12:u08:feasible, +13:u02:topology., +14:u04:precedence, +15:u05:slotframes., +13:u01:topology., +14:u03:precedence, +15:u04:slotframes., +13:u08:successor, +12:u07:feasible, +13:u00:topology., +14:u02:precedence, +15:u03:slotframes., +13:u07:successor, +10:u08:table., +12:u06:feasible, +14:u01:precedence, +15:u02:slotframes., +13:u06:successor, +10:u07:table., +12:u14:feasible, +12:u05:feasible, +10:u08:regard, +14:u00:precedence, +15:u01:slotframes., +13:u05:successor, +10:u06:table., +12:u13:feasible, +12:u04:feasible, +15:u00:slotframes., +13:u04:successor, +10:u05:table., +12:u12:feasible, +6:u21:fe, +7:u22:fea, +8:u23:feas, +9:uI2:.(-)-, +12:u03:feasible, +10:u07:regard, +13:u08:fragments, +13:u03:successor, +10:u04:table., +15:u08:Forwarding,, +12:u11:feasible, +9:uI1:.(-)-, +12:u02:feasible, +10:u06:regard, +13:u02:successor, +10:u03:table., +15:u07:Forwarding,, +12:u10:feasible, +10:u14:regard, +9:uI0:.(-)-, +12:u01:feasible, +10:u05:regard, +13:u07:fragments, +13:u01:successor, +10:u02:table., +15:u06:Forwarding,, +10:u13:regard, +12:u14:fragment, +12:u00:feasible, +10:u04:regard, +13:u06:fragments, +13:u00:successor, +10:u01:table., +15:u05:Forwarding,, +15:u08:Forwarding:, +10:u12:regard, +12:u13:fragment, +13:u14:fragments, +10:u03:regard, +13:u05:fragments, +10:u00:table., +15:u04:Forwarding,, +15:u07:Forwarding:, +10:u11:regard, +12:u12:fragment, +13:u13:fragments, +7:u22:Fra, +8:u23:Frag, +10:u02:regard, +13:u04:fragments, +11:u08:packet., +15:u03:Forwarding,, +15:u06:Forwarding:, +10:u10:regard, +12:u11:fragment, +13:u12:fragments, +8:u14:ipv6, +7:u22:fra, +8:u23:frag, +10:u01:regard, +13:u03:fragments, +9:u08:layer, +15:u02:Forwarding,, +15:u05:Forwarding:, +12:u10:fragment, +13:u11:fragments, +8:u13:ipv6, +10:u00:regard, +13:u02:fragments, +11:u07:packet., +16:u08:transmission, +15:u01:Forwarding,, +15:u04:Forwarding:, +13:u10:fragments, +8:u12:ipv6, +7:u22:IPv, +8:u23:IPv6, +13:u01:fragments, +11:u06:packet., +9:u07:layer, +15:u00:Forwarding,, +15:u03:Forwarding:, +9:u08:based, +8:u11:ipv6, +11:u14:packet., +13:u00:fragments, +11:u05:packet., +9:u06:layer, +16:u07:transmission, +15:u02:Forwarding:, +9:u07:based, +11:u08:applies, +8:u10:ipv6, +11:u13:packet., +11:u04:packet., +9:u05:layer, +16:u06:transmission, +11:u08:models,, +15:u01:Forwarding:, +9:u06:based, +11:u07:applies, +11:u12:packet., +16:u14:transmission, +11:u03:packet., +9:u04:layer, +16:u05:transmission, +10:u08:G-MPLS, +15:u00:Forwarding:, +9:u05:based, +11:u06:applies, +11:u08:Static,, +11:u11:packet., +16:u13:transmission, +8:u14:also, +11:u02:packet., +9:u03:layer, +16:u04:transmission, +11:u07:models,, +14:u08:Monitoring, +9:u04:based, +11:u05:applies, +11:u07:Static,, +11:u10:packet., +16:u12:transmission, +8:u13:also, +11:u01:packet., +9:u02:layer, +16:u03:transmission, +11:u06:models,, +10:u07:G-MPLS, +9:u03:based, +11:u04:applies, +11:u06:Static,, +16:u11:transmission, +8:u12:also, +11:u14:models,, +7:u22:als, +8:u23:also, +11:u00:packet., +9:u01:layer, +16:u02:transmission, +11:u05:models,, +10:u06:G-MPLS, +14:u07:Monitoring, +9:u02:based, +11:u03:applies, +11:u05:Static,, +12:u08:(hosting, +16:u10:transmission, +8:u11:also, +11:u13:models,, +10:u14:g-mpls, +11:uI2:,,----., +9:u00:layer, +16:u01:transmission, +11:u04:models,, +10:u05:G-MPLS, +14:u06:Monitoring, +9:u01:based, +11:u02:applies, +11:u04:Static,, +12:u07:(hosting, +11:u08:devices, +8:u10:also, +11:u12:models,, +10:u13:g-mpls, +14:u14:monitoring, +11:uI1:,,----., +16:u00:transmission, +11:u03:models,, +10:u04:G-MPLS, +14:u05:Monitoring, +9:u00:based, +11:u01:applies, +11:u03:Static,, +12:u06:(hosting, +11:u07:devices, +12:u08:previous, +11:u11:models,, +10:u12:g-mpls, +14:u13:monitoring, +6:u21:G-, +7:u22:G-M, +8:u23:G-MP, +11:uI0:,,----., +11:u02:models,, +10:u03:G-MPLS, +14:u04:Monitoring, +8:u08:PCE., +11:u00:applies, +11:u02:Static,, +12:u05:(hosting, +11:u06:devices, +12:u07:previous, +11:u10:models,, +10:u11:g-mpls, +14:u12:monitoring, +7:u22:Mon, +8:u23:Moni, +11:u01:models,, +10:u02:G-MPLS, +14:u03:Monitoring, +11:u01:Static,, +12:u04:(hosting, +11:u05:devices, +12:u06:previous, +10:u10:g-mpls, +14:u11:monitoring, +8:uI2:.(-), +11:u00:models,, +10:u01:G-MPLS, +14:u02:Monitoring, +8:u07:PCE., +12:u08:sequence, +11:u00:Static,, +12:u03:(hosting, +11:u04:devices, +12:u05:previous, +10:u08:assume, +14:u10:monitoring, +8:uI1:.(-), +7:uI2:(-), +10:u00:G-MPLS, +14:u01:Monitoring, +8:u06:PCE., +12:u02:(hosting, +11:u03:devices, +12:u04:previous, +10:u07:assume, +8:u14:pce., +8:uI0:.(-), +7:uI1:(-), +14:u00:Monitoring, +8:u05:PCE., +12:u07:sequence, +12:u01:(hosting, +11:u02:devices, +12:u03:previous, +10:u06:assume, +8:u13:pce., +7:uI0:(-), +8:u04:PCE., +12:u06:sequence, +12:u00:(hosting, +11:u01:devices, +12:u02:previous, +10:u05:assume, +8:u12:pce., +12:u14:sequence, +8:u23:PCE., +8:u03:PCE., +12:u05:sequence, +11:u00:devices, +12:u01:previous, +10:u04:assume, +8:u11:pce., +12:u13:sequence, +8:u02:PCE., +12:u04:sequence, +12:u00:previous, +10:u03:assume, +8:u10:pce., +12:u12:sequence, +7:u22:seq, +8:u23:sequ, +8:u01:PCE., +12:u03:sequence, +10:u02:assume, +12:u11:sequence, +8:u00:PCE., +12:u02:sequence, +10:u01:assume, +12:u10:sequence, +12:u01:sequence, +10:u00:assume, +12:u00:sequence, +14:u08:forwarding, +11:u08:without, +14:u07:forwarding, +14:u06:forwarding, +11:u07:without, +14:u14:forwarding, +14:u05:forwarding, +11:u06:without, +11:u08:various, +14:u13:forwarding, +11:u14:without, +14:u04:forwarding, +11:u05:without, +73:u08:+-------------------+------------+----------------------------------+, +14:u12:forwarding, +11:u13:without, +8:u23:forw, +14:u03:forwarding, +11:u04:without, +11:u07:various, +14:u11:forwarding, +11:u12:without, +14:u02:forwarding, +11:u03:without, +11:u06:various, +73:u07:+-------------------+------------+----------------------------------+, +14:u10:forwarding, +11:u11:without, +11:u14:various, +14:u01:forwarding, +11:u02:without, +11:u05:various, +73:u06:+-------------------+------------+----------------------------------+, +11:u10:without, +11:u13:various, +73:u14:+-------------------+------------+----------------------------------+, +14:u00:forwarding, +11:u01:without, +11:u04:various, +73:u05:+-------------------+------------+----------------------------------+, +11:u12:various, +73:u13:+-------------------+------------+----------------------------------+, +69:uI2:-----------------------------------------------------------------, +6:uI2:65, +11:u00:without, +11:u03:various, +73:u04:+-------------------+------------+----------------------------------+, +73:u08:+===================+============+==================================+, +11:u11:various, +73:u12:+-------------------+------------+----------------------------------+, +69:uI1:-----------------------------------------------------------------, +6:uI1:65, +11:u02:various, +73:u03:+-------------------+------------+----------------------------------+, +11:u10:various, +73:u11:+-------------------+------------+----------------------------------+, +69:uI0:-----------------------------------------------------------------, +6:uI0:65, +11:u01:various, +73:u02:+-------------------+------------+----------------------------------+, +73:u07:+===================+============+==================================+, +73:u10:+-------------------+------------+----------------------------------+, +11:u00:various, +73:u01:+-------------------+------------+----------------------------------+, +73:u06:+===================+============+==================================+, +73:u14:+===================+============+==================================+, +73:u00:+-------------------+------------+----------------------------------+, +73:u05:+===================+============+==================================+, +73:u13:+===================+============+==================================+, +73:u04:+===================+============+==================================+, +5:u08:+, +12:u08:(Minimal, +73:u12:+===================+============+==================================+, +6:u21:+=, +7:u22:+==, +8:u23:+===, +73:u03:+===================+============+==================================+, +12:u07:(Minimal, +13:u08:classical, +73:u11:+===================+============+==================================+, +73:u02:+===================+============+==================================+, +5:u07:+, +12:u06:(Minimal, +13:u07:classical, +73:u10:+===================+============+==================================+, +73:u01:+===================+============+==================================+, +5:u06:+, +40:u08:+----------------------------------+, +12:u05:(Minimal, +13:u06:classical, +5:u14:+, +73:u00:+===================+============+==================================+, +5:u05:+, +12:u04:(Minimal, +13:u05:classical, +5:u13:+, +5:u04:+, +40:u07:+----------------------------------+, +12:u03:(Minimal, +13:u04:classical, +5:u12:+, +5:u21:+, +5:u22:+, +5:u23:+, +5:u03:+, +40:u06:+----------------------------------+, +12:u02:(Minimal, +13:u03:classical, +5:u11:+, +40:u14:+----------------------------------+, +5:u02:+, +40:u05:+----------------------------------+, +12:u01:(Minimal, +13:u02:classical, +5:u10:+, +40:u13:+----------------------------------+, +38:uI2:----------------------------------, +6:uI2:34, +5:u01:+, +40:u04:+----------------------------------+, +12:u00:(Minimal, +13:u01:classical, +40:u12:+----------------------------------+, +38:uI1:----------------------------------, +6:uI1:34, +5:u00:+, +40:u03:+----------------------------------+, +13:u00:classical, +11:u08:(SF+6P), +40:u11:+----------------------------------+, +38:uI0:----------------------------------, +6:uI0:34, +40:u02:+----------------------------------+, +11:u07:(SF+6P), +40:u10:+----------------------------------+, +40:u01:+----------------------------------+, +11:u06:(SF+6P), +40:u00:+----------------------------------+, +11:u05:(SF+6P), +8:uI2:--(), +11:u04:(SF+6P), +12:u08:Reactive, +8:uI1:--(), +11:u03:(SF+6P), +12:u07:Reactive, +14:u08:(AODV-RPL), +8:uI0:--(), +50:uI2:----------------------------------------------, +11:u02:(SF+6P), +12:u06:Reactive, +14:u07:(AODV-RPL), +50:uI1:----------------------------------------------, +11:u08:|G-MPLS, +11:u01:(SF+6P), +12:u05:Reactive, +14:u06:(AODV-RPL), +50:uI0:----------------------------------------------, +11:u00:(SF+6P), +12:u04:Reactive, +14:u05:(AODV-RPL), +9:uI2:--(-), +11:u07:|G-MPLS, +11:u08:|Remote, +12:u03:Reactive, +14:u04:(AODV-RPL), +9:uI1:--(-), +11:u06:|G-MPLS, +12:u02:Reactive, +14:u03:(AODV-RPL), +11:u14:|g-mpls, +9:uI0:--(-), +11:u05:|G-MPLS, +11:u07:|Remote, +12:u01:Reactive, +14:u02:(AODV-RPL), +11:u13:|g-mpls, +7:u14:pce, +11:u04:|G-MPLS, +11:u06:|Remote, +12:u00:Reactive, +14:u01:(AODV-RPL), +11:u12:|g-mpls, +7:u13:pce, +11:u14:|remote, +6:u21:|G, +7:u22:|G-, +8:u23:|G-M, +11:u03:|G-MPLS, +11:u05:|Remote, +14:u00:(AODV-RPL), +11:u11:|g-mpls, +7:u12:pce, +11:u13:|remote, +7:u23:PCE, +11:u02:|G-MPLS, +11:u04:|Remote, +11:u10:|g-mpls, +7:u11:pce, +11:u12:|remote, +7:u22:|Re, +8:u23:|Rem, +11:u01:|G-MPLS, +11:u03:|Remote, +7:u10:pce, +11:u11:|remote, +11:u00:|G-MPLS, +11:u02:|Remote, +14:u08:recommends, +11:u10:|remote, +11:u14:related, +11:u01:|Remote, +17:u08:interactions,, +14:u07:recommends, +11:u13:related, +11:u00:|Remote, +15:u08:particular,, +14:u06:recommends, +11:u12:related, +8:u23:rela, +17:u07:interactions,, +15:u08:Application, +14:u05:recommends, +11:u11:related, +17:u06:interactions,, +15:u07:particular,, +11:u08:binding, +14:u04:recommends, +11:u10:related, +17:u14:interactions,, +17:u05:interactions,, +15:u06:particular,, +15:u07:Application, +14:u03:recommends, +17:u13:interactions,, +15:u14:particular,, +17:u04:interactions,, +15:u05:particular,, +15:u06:Application, +11:u07:binding, +14:u02:recommends, +9:u08:HTTP., +17:u12:interactions,, +15:u13:particular,, +15:u14:application, +10:uI2:,[],[], +17:u03:interactions,, +15:u04:particular,, +15:u05:Application, +11:u06:binding, +14:u01:recommends, +9:u07:HTTP., +17:u11:interactions,, +15:u12:particular,, +15:u13:application, +11:u14:binding, +10:uI1:,[],[], +9:uI2:[]()/, +17:u02:interactions,, +15:u03:particular,, +15:u04:Application, +11:u05:binding, +14:u00:recommends, +9:u06:HTTP., +17:u10:interactions,, +15:u11:particular,, +15:u12:application, +11:u13:binding, +8:u23:Appl, +10:uI0:,[],[], +9:uI1:[]()/, +17:u01:interactions,, +15:u02:particular,, +15:u03:Application, +11:u04:binding, +9:u05:HTTP., +15:u10:particular,, +15:u11:application, +11:u12:binding, +6:u21:bi, +7:u22:bin, +8:u23:bind, +9:uI0:[]()/, +17:u00:interactions,, +15:u01:particular,, +15:u02:Application, +11:u03:binding, +9:u04:HTTP., +15:u10:application, +11:u11:binding, +15:u00:particular,, +15:u01:Application, +11:u02:binding, +9:u03:HTTP., +11:u10:binding, +15:u00:Application, +11:u01:binding, +9:u02:HTTP., +11:u00:binding, +23:u08:+--------+--------+, +9:u01:HTTP., +9:u00:HTTP., +23:u07:+--------+--------+, +44:u08:+--------+--------+--------------+-----+, +10:u08:Applis, +23:u06:+--------+--------+, +10:u07:Applis, +23:u14:+--------+--------+, +23:u05:+--------+--------+, +44:u07:+--------+--------+--------------+-----+, +10:u06:Applis, +8:u08:CoAP, +23:u13:+--------+--------+, +23:u04:+--------+--------+, +44:u06:+--------+--------+--------------+-----+, +44:u08:+-----------------+--------------+-----+, +10:u05:Applis, +8:u07:CoAP, +23:u12:+--------+--------+, +44:u14:+--------+--------+--------------+-----+, +23:u03:+--------+--------+, +44:u05:+--------+--------+--------------+-----+, +10:u04:Applis, +8:u06:CoAP, +23:u11:+--------+--------+, +44:u13:+--------+--------+--------------+-----+, +39:uI2:-----------------------------------, +23:u02:+--------+--------+, +44:u04:+--------+--------+--------------+-----+, +44:u07:+-----------------+--------------+-----+, +10:u03:Applis, +8:u05:CoAP, +23:u10:+--------+--------+, +44:u12:+--------+--------+--------------+-----+, +39:uI1:-----------------------------------, +23:u01:+--------+--------+, +44:u03:+--------+--------+--------------+-----+, +44:u06:+-----------------+--------------+-----+, +10:u02:Applis, +8:u04:CoAP, +44:u11:+--------+--------+--------------+-----+, +44:u14:+-----------------+--------------+-----+, +39:uI0:-----------------------------------, +23:u00:+--------+--------+, +44:u02:+--------+--------+--------------+-----+, +44:u05:+-----------------+--------------+-----+, +10:u08:ICMPv6, +10:u01:Applis, +8:u03:CoAP, +44:u10:+--------+--------+--------------+-----+, +44:u13:+-----------------+--------------+-----+, +40:uI2:------------------------------------, +6:uI2:36, +44:u01:+--------+--------+--------------+-----+, +44:u04:+-----------------+--------------+-----+, +10:u00:Applis, +8:u02:CoAP, +44:u12:+-----------------+--------------+-----+, +7:u14:udp, +40:uI1:------------------------------------, +6:uI1:36, +44:u00:+--------+--------+--------------+-----+, +44:u03:+-----------------+--------------+-----+, +10:u07:ICMPv6, +44:u08:+-----------------+--------------------+, +8:u01:CoAP, +44:u11:+-----------------+--------------+-----+, +7:u13:udp, +40:uI0:------------------------------------, +6:uI0:36, +44:u02:+-----------------+--------------+-----+, +10:u06:ICMPv6, +8:u00:CoAP, +44:u10:+-----------------+--------------+-----+, +7:u12:udp, +10:u14:icmpv6, +7:u23:UDP, +44:u01:+-----------------+--------------+-----+, +10:u05:ICMPv6, +44:u07:+-----------------+--------------------+, +7:u11:udp, +10:u13:icmpv6, +44:u00:+-----------------+--------------+-----+, +10:u04:ICMPv6, +44:u06:+-----------------+--------------------+, +7:u10:udp, +10:u12:icmpv6, +44:u14:+-----------------+--------------------+, +6:u21:IC, +7:u22:ICM, +8:u23:ICMP, +10:u03:ICMPv6, +44:u05:+-----------------+--------------------+, +67:u08:+--------------------------------------+----------------------+, +10:u11:icmpv6, +44:u13:+-----------------+--------------------+, +41:uI2:-------------------------------------, +6:uI2:37, +10:u02:ICMPv6, +44:u04:+-----------------+--------------------+, +10:u10:icmpv6, +44:u12:+-----------------+--------------------+, +41:uI1:-------------------------------------, +6:uI1:37, +10:u01:ICMPv6, +44:u03:+-----------------+--------------------+, +67:u07:+--------------------------------------+----------------------+, +44:u11:+-----------------+--------------------+, +41:uI0:-------------------------------------, +6:uI0:37, +10:u00:ICMPv6, +44:u02:+-----------------+--------------------+, +67:u06:+--------------------------------------+----------------------+, +44:u10:+-----------------+--------------------+, +67:u14:+--------------------------------------+----------------------+, +44:u01:+-----------------+--------------------+, +67:u05:+--------------------------------------+----------------------+, +67:u13:+--------------------------------------+----------------------+, +64:uI2:------------------------------------------------------------, +6:uI2:60, +44:u00:+-----------------+--------------------+, +67:u04:+--------------------------------------+----------------------+, +67:u12:+--------------------------------------+----------------------+, +64:uI1:------------------------------------------------------------, +6:uI1:60, +67:u03:+--------------------------------------+----------------------+, +67:u11:+--------------------------------------+----------------------+, +64:uI0:------------------------------------------------------------, +6:uI0:60, +67:u02:+--------------------------------------+----------------------+, +67:u10:+--------------------------------------+----------------------+, +9:u14:6lorh, +67:u01:+--------------------------------------+----------------------+, +9:u13:6lorh, +67:u00:+--------------------------------------+----------------------+, +8:u08:inc., +9:u12:6lorh, +8:u23:6LoR, +67:u08:+-------------------------------------------------------------+, +8:u07:inc., +9:u11:6lorh, +8:u06:inc., +9:u10:6lorh, +67:u07:+-------------------------------------------------------------+, +8:u05:inc., +67:u06:+-------------------------------------------------------------+, +8:u04:inc., +67:u14:+-------------------------------------------------------------+, +67:u05:+-------------------------------------------------------------+, +8:u03:inc., +67:u13:+-------------------------------------------------------------+, +65:uI2:-------------------------------------------------------------, +6:uI2:61, +67:u04:+-------------------------------------------------------------+, +8:u02:inc., +67:u12:+-------------------------------------------------------------+, +65:uI1:-------------------------------------------------------------, +6:uI1:61, +67:u03:+-------------------------------------------------------------+, +8:u01:inc., +6:u08:4:, +67:u11:+-------------------------------------------------------------+, +65:uI0:-------------------------------------------------------------, +6:uI0:61, +67:u02:+-------------------------------------------------------------+, +8:u00:inc., +6:u07:4:, +67:u10:+-------------------------------------------------------------+, +67:u01:+-------------------------------------------------------------+, +6:u06:4:, +8:u08:need, +67:u00:+-------------------------------------------------------------+, +6:u05:4:, +8:u07:need, +6:u04:4:, +8:u06:need, +6:u03:4:, +8:u05:need, +6:u02:4:, +8:u04:need, +6:u01:4:, +8:u03:need, +8:uI2:[-],, +6:u00:4:, +8:u02:need, +8:uI1:[-],, +8:u01:need, +8:uI0:[-],, +17:u08:encapsulation, +8:u00:need, +11:u08:to/from, +9:uI2:,()[], +17:u07:encapsulation, +32:u08:[I-D.ietf-roll-useofrplinfo], +11:u07:to/from, +15:u08:non-storing, +9:uI1:,()[], +17:u06:encapsulation, +11:u06:to/from, +15:u07:non-storing, +12:u08:provides, +17:u14:encapsulation, +9:uI0:,()[], +9:uI2:(),--, +17:u05:encapsulation, +32:u07:[I-D.ietf-roll-useofrplinfo], +11:u05:to/from, +15:u06:non-storing, +12:u07:provides, +17:u13:encapsulation, +9:uI1:(),--, +8:uI2:/,(), +17:u04:encapsulation, +32:u06:[I-D.ietf-roll-useofrplinfo], +36:u08:[I-D.ietf-core-object-security],, +11:u04:to/from, +15:u05:non-storing, +12:u06:provides, +10:u08:Object, +17:u12:encapsulation, +32:u14:[i-d.ietf-roll-useofrplinfo], +8:u23:enca, +9:uI0:(),--, +8:uI1:/,(), +11:uI2:-.",--", +17:u03:encapsulation, +32:u05:[I-D.ietf-roll-useofrplinfo], +11:u03:to/from, +15:u04:non-storing, +12:u05:provides, +10:u07:Object, +17:u11:encapsulation, +32:u13:[i-d.ietf-roll-useofrplinfo], +8:uI0:/,(), +11:uI1:-.",--", +17:u02:encapsulation, +32:u04:[I-D.ietf-roll-useofrplinfo], +36:u07:[I-D.ietf-core-object-security],, +11:u02:to/from, +15:u03:non-storing, +12:u04:provides, +10:u06:Object, +17:u10:encapsulation, +32:u12:[i-d.ietf-roll-useofrplinfo], +11:uI0:-.",--", +17:u01:encapsulation, +32:u03:[I-D.ietf-roll-useofrplinfo], +36:u06:[I-D.ietf-core-object-security],, +11:u08:payload, +11:u01:to/from, +15:u02:non-storing, +12:u03:provides, +10:u05:Object, +32:u11:[i-d.ietf-roll-useofrplinfo], +36:u14:[i-d.ietf-core-object-security],, +17:u00:encapsulation, +32:u02:[I-D.ietf-roll-useofrplinfo], +36:u05:[I-D.ietf-core-object-security],, +11:u00:to/from, +15:u01:non-storing, +12:u02:provides, +10:u04:Object, +32:u10:[i-d.ietf-roll-useofrplinfo], +36:u13:[i-d.ietf-core-object-security],, +32:u01:[I-D.ietf-roll-useofrplinfo], +36:u04:[I-D.ietf-core-object-security],, +11:u07:payload, +15:u00:non-storing, +12:u01:provides, +10:u03:Object, +10:u08:(DTLS), +36:u12:[i-d.ietf-core-object-security],, +14:u14:protection, +32:u00:[I-D.ietf-roll-useofrplinfo], +36:u03:[I-D.ietf-core-object-security],, +11:u06:payload, +12:u00:provides, +10:u02:Object, +10:u07:(DTLS), +36:u11:[i-d.ietf-core-object-security],, +14:u13:protection, +11:u14:payload, +36:u02:[I-D.ietf-core-object-security],, +11:u05:payload, +10:u01:Object, +10:u06:(DTLS), +36:u10:[i-d.ietf-core-object-security],, +14:u12:protection, +11:u13:payload, +36:u01:[I-D.ietf-core-object-security],, +11:u04:payload, +7:u08:MAC, +10:u00:Object, +10:u05:(DTLS), +9:u08:(LLC), +14:u11:protection, +11:u12:payload, +7:u22:pay, +8:u23:payl, +36:u00:[I-D.ietf-core-object-security],, +11:u03:payload, +10:u04:(DTLS), +9:u07:(LLC), +14:u10:protection, +11:u11:payload, +11:u02:payload, +7:u07:MAC, +10:u03:(DTLS), +9:u06:(LLC), +11:u10:payload, +11:u01:payload, +7:u06:MAC, +10:u02:(DTLS), +9:u05:(LLC), +7:u14:mac, +11:u00:payload, +7:u05:MAC, +10:u01:(DTLS), +9:u04:(LLC), +7:u13:mac, +7:u04:MAC, +10:u00:(DTLS), +9:u03:(LLC), +7:u12:mac, +6:u21:MA, +7:u22:MAC, +7:u23:MAC, +7:u03:MAC, +9:u02:(LLC), +7:u11:mac, +7:u02:MAC, +9:u01:(LLC), +7:u10:mac, +7:u01:MAC, +9:u00:(LLC), +7:u00:MAC, +18:u08:interop-tested, +13:u08:reference, +13:u07:reference, +18:u07:interop-tested, +10:u08:making, +13:u06:reference, +18:u06:interop-tested, +13:u05:reference, +18:u14:interop-tested, +18:u05:interop-tested, +10:u07:making, +13:u04:reference, +18:u13:interop-tested, +18:u04:interop-tested, +10:u06:making, +12:u08:required, +13:u03:reference, +18:u12:interop-tested, +10:u14:making, +18:u03:interop-tested, +10:u05:making, +13:u02:reference, +18:u11:interop-tested, +10:u13:making, +18:u02:interop-tested, +10:u04:making, +12:u07:required, +13:u01:reference, +18:u10:interop-tested, +10:u12:making, +7:u22:mak, +8:u23:maki, +18:u01:interop-tested, +10:u03:making, +12:u06:required, +13:u00:reference, +10:u11:making, +12:u14:required, +18:u00:interop-tested, +10:u02:making, +12:u05:required, +13:u08:selection, +10:u10:making, +12:u13:required, +10:u01:making, +12:u04:required, +14:u08:components, +12:u12:required, +10:u00:making, +12:u03:required, +13:u07:selection, +12:u11:required, +8:uI2:-()., +12:u02:required, +13:u06:selection, +14:u07:components, +12:u10:required, +13:u14:selection, +8:uI1:-()., +12:u01:required, +13:u05:selection, +14:u06:components, +15:u08:Interaction, +7:u08:2.1, +13:u13:selection, +14:u14:components, +8:uI0:-()., +12:u00:required, +13:u04:selection, +14:u05:components, +7:u07:2.1, +11:u08:Models,, +13:u12:selection, +14:u13:components, +7:u22:sel, +8:u23:sele, +13:u03:selection, +14:u04:components, +15:u07:Interaction, +12:u08:Paradigm, +7:u06:2.1, +11:u07:Models,, +10:u08:Models, +13:u11:selection, +14:u12:components, +13:u02:selection, +14:u03:components, +15:u06:Interaction, +8:u08:come, +7:u05:2.1, +11:u06:Models,, +10:u07:Models, +13:u10:selection, +14:u11:components, +13:u01:selection, +14:u02:components, +15:u05:Interaction, +12:u07:Paradigm, +14:u08:exchanged., +7:u04:2.1, +11:u05:Models,, +10:u06:Models, +14:u10:components, +13:u00:selection, +14:u01:components, +15:u04:Interaction, +12:u06:Paradigm, +8:u07:come, +7:u03:2.1, +11:u04:Models,, +10:u05:Models, +12:u14:paradigm, +14:u00:components, +15:u03:Interaction, +12:u05:Paradigm, +8:u06:come, +14:u07:exchanged., +9:u08:state, +7:u02:2.1, +11:u03:Models,, +10:u04:Models, +12:u13:paradigm, +8:u14:come, +15:u02:Interaction, +12:u04:Paradigm, +8:u05:come, +14:u06:exchanged., +7:u01:2.1, +11:u02:Models,, +10:u03:Models, +12:u08:transfer, +12:u12:paradigm, +8:u13:come, +14:u14:exchanged., +7:u22:Par, +8:u23:Para, +15:u01:Interaction, +12:u03:Paradigm, +8:u04:come, +14:u05:exchanged., +9:u07:state, +7:u00:2.1, +11:u01:Models,, +10:u02:Models, +12:u07:transfer, +12:u11:paradigm, +8:u12:come, +14:u13:exchanged., +8:u23:come, +15:u00:Interaction, +12:u02:Paradigm, +8:u03:come, +14:u04:exchanged., +9:u06:state, +11:u00:Models,, +10:u01:Models, +12:u06:transfer, +9:u08:2.1.3, +12:u10:paradigm, +8:u11:come, +14:u12:exchanged., +9:u14:state, +7:u22:exc, +8:u23:exch, +12:u01:Paradigm, +8:u02:come, +14:u03:exchanged., +9:u05:state, +8:u08:sink, +10:u00:Models, +12:u05:transfer, +9:u07:2.1.3, +8:u10:come, +14:u11:exchanged., +9:u13:state, +8:uI2:()"", +12:u00:Paradigm, +8:u01:come, +14:u02:exchanged., +9:u04:state, +12:u04:transfer, +9:u06:2.1.3, +8:u08:(SS), +14:u10:exchanged., +9:u12:state, +8:u23:stat, +8:uI1:()"", +8:u00:come, +14:u01:exchanged., +9:u03:state, +8:u07:sink, +12:u03:transfer, +9:u05:2.1.3, +8:u07:(SS), +9:u11:state, +8:uI0:()"", +14:uI2:..[-.----], +14:u00:exchanged., +9:u02:state, +8:u06:sink, +21:u08:Peer-to-multipeer, +12:u02:transfer, +9:u04:2.1.3, +8:u06:(SS), +13:u08:typically, +9:u10:state, +8:u14:sink, +14:uI1:..[-.----], +7:uI2:-,-, +9:u01:state, +8:u05:sink, +12:u01:transfer, +9:u03:2.1.3, +8:u05:(SS), +13:u07:typically, +10:u08:(P2MP), +8:u13:sink, +14:uI0:..[-.----], +7:uI1:-,-, +8:uI2:()(), +9:u00:state, +8:u04:sink, +21:u07:Peer-to-multipeer, +14:u08:redundancy, +12:u00:transfer, +9:u02:2.1.3, +8:u04:(SS), +13:u06:typically, +10:u07:(P2MP), +8:u12:sink, +7:u22:sin, +8:u23:sink, +7:uI0:-,-, +8:uI1:()(), +10:uI2:,-(,/), +8:u03:sink, +21:u06:Peer-to-multipeer, +13:u08:paradigms, +9:u01:2.1.3, +8:u03:(SS), +13:u05:typically, +10:u06:(P2MP), +8:u08:-and, +8:u11:sink, +21:u14:peer-to-multipeer, +8:uI0:()(), +10:uI1:,-(,/), +9:uI2:,--(), +8:u02:sink, +21:u05:Peer-to-multipeer, +14:u07:redundancy, +9:u08:major, +9:u00:2.1.3, +8:u02:(SS), +13:u04:typically, +10:u05:(P2MP), +8:u07:-and, +8:u10:sink, +21:u13:peer-to-multipeer, +10:uI0:,-(,/), +9:uI1:,--(), +8:u01:sink, +21:u04:Peer-to-multipeer, +14:u06:redundancy, +13:u07:paradigms, +16:u08:[ISA100.11a], +8:u01:(SS), +13:u03:typically, +10:u04:(P2MP), +8:u06:-and, +21:u12:peer-to-multipeer, +14:u14:redundancy, +7:u22:Pee, +8:u23:Peer, +9:uI0:,--(), +8:u00:sink, +21:u03:Peer-to-multipeer, +14:u05:redundancy, +13:u06:paradigms, +9:u07:major, +10:u08:[HART], +8:u00:(SS), +13:u02:typically, +10:u03:(P2MP), +8:u05:-and, +21:u11:peer-to-multipeer, +14:u13:redundancy, +13:u14:paradigms, +21:u02:Peer-to-multipeer, +14:u04:redundancy, +13:u05:paradigms, +9:u06:major, +16:u07:[ISA100.11a], +13:u01:typically, +10:u02:(P2MP), +8:u04:-and, +21:u10:peer-to-multipeer, +14:u12:redundancy, +13:u13:paradigms, +9:u14:major, +7:u22:red, +8:u23:redu, +21:u01:Peer-to-multipeer, +14:u03:redundancy, +13:u04:paradigms, +9:u05:major, +16:u06:[ISA100.11a], +10:u07:[HART], +13:u00:typically, +10:u01:(P2MP), +8:u03:-and, +14:u11:redundancy, +13:u12:paradigms, +9:u13:major, +16:u14:[isa100.11a], +8:u23:para, +21:u00:Peer-to-multipeer, +14:u02:redundancy, +13:u03:paradigms, +9:u04:major, +16:u05:[ISA100.11a], +10:u06:[HART], +14:u08:Management, +10:u00:(P2MP), +8:u02:-and, +14:u10:redundancy, +13:u11:paradigms, +9:u12:major, +16:u13:[isa100.11a], +10:u14:[hart], +7:u22:maj, +8:u23:majo, +10:uI2:[.][],, +14:u01:redundancy, +13:u02:paradigms, +9:u03:major, +16:u04:[ISA100.11a], +10:u05:[HART], +17:u08:Network-layer, +8:u01:-and, +13:u10:paradigms, +9:u11:major, +16:u12:[isa100.11a], +10:u13:[hart], +7:u22:[IS, +8:u23:[ISA, +10:uI1:[.][],, +14:u00:redundancy, +13:u01:paradigms, +9:u02:major, +16:u03:[ISA100.11a], +10:u04:[HART], +14:u07:Management, +12:u08:control), +8:u00:-and, +13:u08:(multihop, +9:u10:major, +16:u11:[isa100.11a], +10:u12:[hart], +10:u14:models, +6:u21:[H, +7:u22:[HA, +8:u23:[HAR, +10:uI0:[.][],, +13:u00:paradigms, +9:u01:major, +16:u02:[ISA100.11a], +10:u03:[HART], +14:u06:Management, +17:u07:Network-layer, +16:u08:interactions, +13:u07:(multihop, +16:u10:[isa100.11a], +10:u11:[hart], +10:u13:models, +14:u14:management, +9:u00:major, +16:u01:[ISA100.11a], +10:u02:[HART], +14:u05:Management, +17:u06:Network-layer, +12:u07:control), +13:u06:(multihop, +10:u10:[hart], +10:u12:models, +14:u13:management, +17:u14:network-layer, +7:u22:Mod, +8:u23:Mode, +9:uI2:-(-),, +16:u00:[ISA100.11a], +10:u01:[HART], +14:u04:Management, +17:u05:Network-layer, +12:u06:control), +16:u07:interactions, +13:u05:(multihop, +10:u11:models, +14:u12:management, +17:u13:network-layer, +12:u14:control), +8:u23:Mana, +9:uI1:-(-),, +10:uI2:-(),-(, +10:u00:[HART], +14:u03:Management, +17:u04:Network-layer, +12:u05:control), +16:u06:interactions, +13:u04:(multihop, +10:u10:models, +14:u11:management, +17:u12:network-layer, +12:u13:control), +16:u14:interactions, +9:uI0:-(-),, +10:uI1:-(),-(, +8:uI2:)..-, +14:u02:Management, +17:u03:Network-layer, +12:u04:control), +16:u05:interactions, +13:u03:(multihop, +14:u10:management, +17:u11:network-layer, +12:u12:control), +16:u13:interactions, +10:uI0:-(),-(, +8:uI1:)..-, +7:uI2:.,-, +14:u01:Management, +17:u02:Network-layer, +12:u03:control), +16:u04:interactions, +13:u02:(multihop, +17:u10:network-layer, +12:u11:control), +16:u12:interactions, +8:uI0:)..-, +7:uI1:.,-, +14:u00:Management, +17:u01:Network-layer, +12:u02:control), +16:u03:interactions, +13:u01:(multihop, +12:u10:control), +16:u11:interactions, +7:uI0:.,-, +17:u00:Network-layer, +12:u01:control), +16:u02:interactions, +13:u00:(multihop, +16:u10:interactions, +12:u00:control), +16:u01:interactions, +16:u00:interactions, +13:u08:advertise, +7:u08:did, +8:uI2:..(), +7:u07:did, +8:uI1:..(), +13:u07:advertise, +7:u06:did, +8:uI0:..(), +13:u06:advertise, +11:u08:leaves., +7:u05:did, +11:u08:levels,, +13:u14:advertise, +13:u05:advertise, +7:u04:did, +11:u07:levels,, +13:u13:advertise, +13:u04:advertise, +11:u07:leaves., +7:u03:did, +11:u06:levels,, +13:u12:advertise, +8:u23:adve, +13:u03:advertise, +11:u06:leaves., +7:u02:did, +11:u05:levels,, +13:u11:advertise, +11:u14:leaves., +13:u02:advertise, +11:u05:leaves., +17:u08:reachability., +7:u01:did, +11:u04:levels,, +13:u10:advertise, +11:u13:leaves., +13:u01:advertise, +11:u04:leaves., +12:u08:"Routing, +7:u00:did, +11:u03:levels,, +11:u12:leaves., +7:u22:lea, +8:u23:leav, +8:uI2:...-, +13:u00:advertise, +11:u03:leaves., +17:u07:reachability., +11:u02:levels,, +11:u11:leaves., +8:uI1:...-, +11:u02:leaves., +17:u06:reachability., +12:u07:"Routing, +12:u08:supports, +11:u01:levels,, +11:u10:leaves., +17:u14:reachability., +8:uI0:...-, +11:u01:leaves., +17:u05:reachability., +12:u06:"Routing, +11:u00:levels,, +17:u13:reachability., +12:u14:"routing, +11:u00:leaves., +17:u04:reachability., +12:u05:"Routing, +12:u07:supports, +16:u08:reachability, +17:u12:reachability., +12:u13:"routing, +9:u14:basic, +13:uI2:""[-.---], +17:u03:reachability., +12:u04:"Routing, +12:u06:supports, +12:u08:services, +17:u11:reachability., +12:u12:"routing, +9:u13:basic, +12:u14:supports, +6:u21:"R, +7:u22:"Ro, +8:u23:"Rou, +13:uI1:""[-.---], +17:u02:reachability., +12:u03:"Routing, +12:u05:supports, +16:u07:reachability, +10:u08:Option, +12:u07:services, +17:u10:reachability., +12:u11:"routing, +9:u12:basic, +12:u13:supports, +7:u22:bas, +8:u23:basi, +13:uI0:""[-.---], +17:u01:reachability., +12:u02:"Routing, +12:u04:supports, +16:u06:reachability, +12:u06:services, +12:u10:"routing, +9:u11:basic, +12:u12:supports, +16:u14:reachability, +17:u00:reachability., +12:u01:"Routing, +12:u03:supports, +16:u05:reachability, +10:u07:Option, +34:u08:[I-D.ietf-roll-unaware-leaves], +12:u05:services, +9:u10:basic, +12:u11:supports, +16:u13:reachability, +12:u00:"Routing, +12:u02:supports, +16:u04:reachability, +10:u06:Option, +12:u04:services, +12:u10:supports, +16:u12:reachability, +10:u14:option, +12:u01:supports, +16:u03:reachability, +10:u05:Option, +34:u07:[I-D.ietf-roll-unaware-leaves], +12:u03:services, +16:u11:reachability, +10:u13:option, +12:u00:supports, +16:u02:reachability, +10:u04:Option, +34:u06:[I-D.ietf-roll-unaware-leaves], +10:u08:mapped, +12:u02:services, +16:u10:reachability, +10:u12:option, +34:u14:[i-d.ietf-roll-unaware-leaves], +16:u01:reachability, +10:u03:Option, +34:u05:[I-D.ietf-roll-unaware-leaves], +7:u08:LAN, +12:u01:services, +10:u11:option, +34:u13:[i-d.ietf-roll-unaware-leaves], +16:u00:reachability, +10:u02:Option, +34:u04:[I-D.ietf-roll-unaware-leaves], +10:u07:mapped, +12:u00:services, +10:u08:(VLAN), +10:u10:option, +34:u12:[i-d.ietf-roll-unaware-leaves], +10:u01:Option, +34:u03:[I-D.ietf-roll-unaware-leaves], +10:u06:mapped, +7:u07:LAN, +10:u07:(VLAN), +34:u11:[i-d.ietf-roll-unaware-leaves], +10:u14:mapped, +10:u00:Option, +34:u02:[I-D.ietf-roll-unaware-leaves], +10:u05:mapped, +7:u06:LAN, +10:u06:(VLAN), +34:u10:[i-d.ietf-roll-unaware-leaves], +10:u13:mapped, +7:u14:lan, +34:u01:[I-D.ietf-roll-unaware-leaves], +10:u04:mapped, +7:u05:LAN, +10:u05:(VLAN), +13:u08:collocate, +10:u12:mapped, +7:u13:lan, +7:u22:map, +8:u23:mapp, +9:uI2:()()., +34:u00:[I-D.ietf-roll-unaware-leaves], +10:u03:mapped, +7:u04:LAN, +10:u04:(VLAN), +13:u07:collocate, +10:u11:mapped, +7:u12:lan, +6:u21:LA, +7:u22:LAN, +7:u23:LAN, +9:uI1:()()., +10:u02:mapped, +7:u03:LAN, +16:u08:disseminated, +10:u03:(VLAN), +13:u06:collocate, +10:u10:mapped, +7:u11:lan, +9:uI0:()()., +10:u01:mapped, +7:u02:LAN, +13:u08:messages., +10:u02:(VLAN), +13:u05:collocate, +7:u10:lan, +10:u00:mapped, +7:u01:LAN, +16:u07:disseminated, +10:u01:(VLAN), +13:u04:collocate, +7:u00:LAN, +16:u06:disseminated, +13:u07:messages., +10:u00:(VLAN), +13:u03:collocate, +16:u14:disseminated, +16:u05:disseminated, +13:u06:messages., +13:u02:collocate, +16:u13:disseminated, +13:u14:messages., +16:u04:disseminated, +13:u05:messages., +13:u01:collocate, +16:u12:disseminated, +13:u13:messages., +8:u23:diss, +9:uI2:.[][], +16:u03:disseminated, +13:u04:messages., +13:u00:collocate, +11:u08:itself., +16:u11:disseminated, +13:u12:messages., +13:u14:indicated, +9:uI1:.[][], +16:u02:disseminated, +13:u03:messages., +11:u07:itself., +16:u10:disseminated, +13:u11:messages., +13:u13:indicated, +9:uI0:.[][], +16:u01:disseminated, +13:u02:messages., +11:u06:itself., +13:u10:messages., +13:u12:indicated, +13:u14:[rfc6550], +16:u00:disseminated, +13:u01:messages., +11:u05:itself., +13:u11:indicated, +13:u13:[rfc6550], +13:u00:messages., +11:u04:itself., +13:u10:indicated, +13:u12:[rfc6550], +11:u03:itself., +13:u11:[rfc6550], +11:u02:itself., +13:u10:[rfc6550], +19:u08:functionalities, +11:u01:itself., +11:u00:itself., +19:u07:functionalities, +19:u06:functionalities, +8:u08:RPL., +13:u08:EDAR/EDAC, +19:u14:functionalities, +19:u05:functionalities, +13:u07:EDAR/EDAC, +19:u13:functionalities, +19:u04:functionalities, +8:u07:RPL., +13:u06:EDAR/EDAC, +19:u12:functionalities, +6:u21:fu, +7:u22:fun, +8:u23:func, +19:u03:functionalities, +8:u06:RPL., +15:u08:duplication, +13:u05:EDAR/EDAC, +19:u11:functionalities, +8:u14:rpl., +19:u02:functionalities, +8:u05:RPL., +13:u04:EDAR/EDAC, +19:u10:functionalities, +8:u13:rpl., +19:u01:functionalities, +8:u04:RPL., +15:u07:duplication, +13:u03:EDAR/EDAC, +8:u12:rpl., +12:u14:messages, +8:u23:RPL., +19:u00:functionalities, +8:u03:RPL., +15:u06:duplication, +13:u02:EDAR/EDAC, +8:u11:rpl., +12:u13:messages, +15:u14:duplication, +8:u02:RPL., +15:u05:duplication, +8:u08:Even, +13:u01:EDAR/EDAC, +8:u10:rpl., +12:u12:messages, +15:u13:duplication, +6:uI2:/,, +8:u01:RPL., +15:u04:duplication, +13:u00:EDAR/EDAC, +10:u08:though, +12:u11:messages, +15:u12:duplication, +12:u14:provides, +7:u22:dup, +8:u23:dupl, +6:uI1:/,, +12:uI2:.[-.---], +8:u00:RPL., +15:u03:duplication, +8:u07:Even, +10:u07:though, +12:u10:messages, +15:u11:duplication, +12:u13:provides, +6:uI0:/,, +12:uI1:.[-.---], +15:u02:duplication, +8:u06:Even, +10:u06:though, +15:u10:duplication, +12:u12:provides, +12:uI0:.[-.---], +15:u01:duplication, +8:u05:Even, +10:u05:though, +12:u11:provides, +15:u00:duplication, +8:u04:Even, +10:u04:though, +12:u10:provides, +6:u21:Ev, +7:u22:Eve, +8:u23:Even, +8:u03:Even, +21:u08:(proxy-)registers, +10:u03:though, +8:u02:Even, +12:u08:whatever, +10:u02:though, +12:u14:attached, +8:u01:Even, +21:u07:(proxy-)registers, +10:u08:proxy,, +10:u01:though, +13:u08:operation, +12:u13:attached, +8:u00:Even, +21:u06:(proxy-)registers, +12:u07:whatever, +13:u08:extension, +10:u00:though, +13:u07:operation, +12:u12:attached, +21:u14:(proxy-)registers, +8:u23:atta, +21:u05:(proxy-)registers, +12:u06:whatever, +10:u07:proxy,, +13:u06:operation, +12:u11:attached, +21:u13:(proxy-)registers, +12:u14:whatever, +21:u04:(proxy-)registers, +12:u05:whatever, +10:u06:proxy,, +13:u07:extension, +13:u05:operation, +12:u10:attached, +21:u12:(proxy-)registers, +12:u13:whatever, +10:u14:proxy,, +6:u21:(p, +7:u22:(pr, +8:u23:(pro, +21:u03:(proxy-)registers, +12:u04:whatever, +10:u05:proxy,, +13:u06:extension, +13:u04:operation, +21:u11:(proxy-)registers, +12:u12:whatever, +10:u13:proxy,, +13:u14:extension, +7:u22:wha, +8:u23:what, +21:u02:(proxy-)registers, +12:u03:whatever, +10:u04:proxy,, +13:u05:extension, +13:u03:operation, +11:u08:Subnet,, +21:u10:(proxy-)registers, +12:u11:whatever, +10:u12:proxy,, +13:u13:extension, +35:u14:[i-d.ietf-6lo-backbone-router]., +8:u23:prox, +21:u01:(proxy-)registers, +12:u02:whatever, +10:u03:proxy,, +13:u04:extension, +13:u02:operation, +11:u07:Subnet,, +12:u10:whatever, +10:u11:proxy,, +13:u12:extension, +35:u13:[i-d.ietf-6lo-backbone-router]., +21:u00:(proxy-)registers, +12:u01:whatever, +10:u02:proxy,, +13:u03:extension, +6:u08:NS, +13:u01:operation, +11:u06:Subnet,, +14:u08:Registered, +10:u10:proxy,, +13:u11:extension, +35:u12:[i-d.ietf-6lo-backbone-router]., +12:u00:whatever, +10:u01:proxy,, +13:u02:extension, +13:u00:operation, +11:u05:Subnet,, +14:u07:Registered, +13:u10:extension, +35:u11:[i-d.ietf-6lo-backbone-router]., +8:u14:into, +10:u00:proxy,, +13:u01:extension, +6:u07:NS, +11:u04:Subnet,, +14:u06:Registered, +35:u10:[i-d.ietf-6lo-backbone-router]., +8:u13:into, +7:u22:Lin, +8:u23:Link, +8:uI2:/.[], +13:u00:extension, +6:u06:NS, +11:u03:Subnet,, +14:u05:Registered, +8:u12:into, +6:u14:ns, +8:u23:into, +8:uI1:/.[], +6:u05:NS, +11:u02:Subnet,, +14:u04:Registered, +8:u11:into, +6:u13:ns, +8:uI0:/.[], +6:u04:NS, +10:u08:become, +11:u01:Subnet,, +14:u03:Registered, +8:u10:into, +6:u12:ns, +6:u21:NS, +6:u22:NS, +6:u23:NS, +7:uI2:,/., +6:u03:NS, +11:u00:Subnet,, +14:u02:Registered, +6:u11:ns, +7:uI1:,/., +6:u02:NS, +10:u07:become, +14:u01:Registered, +6:u10:ns, +7:uI0:,/., +6:u01:NS, +10:u06:become, +9:u08:Proxy, +14:u00:Registered, +10:u14:become, +6:u00:NS, +10:u05:become, +9:u08:(JP),, +10:u13:become, +10:u04:become, +9:u07:Proxy, +9:u07:(JP),, +10:u12:become, +8:u23:beco, +10:u03:become, +9:u06:Proxy, +14:u08:acceptable, +9:u06:(JP),, +12:u08:possibly, +10:u11:become, +9:u14:proxy, +10:u02:become, +9:u05:Proxy, +17:u08:ineffficient., +9:u05:(JP),, +12:u07:possibly, +12:u08:position, +10:u10:become, +9:u13:proxy, +10:u01:become, +9:u04:Proxy, +14:u07:acceptable, +9:u04:(JP),, +12:u06:possibly, +12:u07:position, +9:u12:proxy, +8:u23:Prox, +10:u00:become, +9:u03:Proxy, +14:u06:acceptable, +17:u07:ineffficient., +9:u03:(JP),, +12:u05:possibly, +12:u06:position, +9:u11:proxy, +14:u14:acceptable, +9:u02:Proxy, +14:u05:acceptable, +17:u06:ineffficient., +9:u02:(JP),, +12:u04:possibly, +12:u05:position, +9:u10:proxy, +14:u13:acceptable, +17:u14:ineffficient., +9:u01:Proxy, +14:u04:acceptable, +17:u05:ineffficient., +9:u01:(JP),, +12:u03:possibly, +12:u04:position, +14:u12:acceptable, +17:u13:ineffficient., +7:u14:new, +7:u22:acc, +8:u23:acce, +13:uI2:.[-.----], +9:u00:Proxy, +14:u03:acceptable, +17:u04:ineffficient., +9:u00:(JP),, +12:u02:possibly, +12:u03:position, +14:u11:acceptable, +17:u12:ineffficient., +7:u13:new, +7:u22:ine, +8:u23:inef, +13:uI1:.[-.----], +14:u02:acceptable, +17:u03:ineffficient., +12:u01:possibly, +12:u02:position, +14:u10:acceptable, +17:u11:ineffficient., +7:u12:new, +7:u22:new, +7:u23:new, +13:uI0:.[-.----], +14:u01:acceptable, +17:u02:ineffficient., +12:u00:possibly, +12:u01:position, +17:u10:ineffficient., +7:u11:new, +14:u00:acceptable, +17:u01:ineffficient., +13:u08:[RFC8137], +12:u00:position, +7:u10:new, +17:u00:ineffficient., +13:u07:[RFC8137], +13:u06:[RFC8137], +13:u14:[rfc8137], +13:u05:[RFC8137], +10:u08:Mutual, +13:u13:[rfc8137], +13:u04:[RFC8137], +10:u07:Mutual, +17:u08:Authorization, +13:u12:[rfc8137], +13:u03:[RFC8137], +10:u06:Mutual, +17:u07:Authorization, +13:u08:Parameter, +13:u11:[rfc8137], +13:u02:[RFC8137], +10:u05:Mutual, +17:u06:Authorization, +13:u07:Parameter, +13:u10:[rfc8137], +13:u01:[RFC8137], +10:u04:Mutual, +17:u05:Authorization, +13:u06:Parameter, +13:u00:[RFC8137], +10:u03:Mutual, +17:u04:Authorization, +13:u05:Parameter, +10:u02:Mutual, +17:u03:Authorization, +13:u04:Parameter, +10:u01:Mutual, +17:u02:Authorization, +13:u03:Parameter, +10:u08:secure, +10:u00:Mutual, +17:u01:Authorization, +13:u02:Parameter, +17:u00:Authorization, +13:u01:Parameter, +10:u07:secure, +10:u08:single, +13:u00:Parameter, +14:u08:pre-shared, +10:u06:secure, +14:u07:pre-shared, +14:u08:round-trip, +10:u14:secure, +10:u05:secure, +10:u07:single, +15:u08:'one-touch', +14:u06:pre-shared, +14:u07:round-trip, +10:u13:secure, +10:u04:secure, +10:u06:single, +10:u08:pledge, +14:u05:pre-shared, +14:u06:round-trip, +17:u08:bootstrapping, +10:u12:secure, +10:u14:single, +8:u23:secu, +8:uI2:-(),, +10:u03:secure, +10:u05:single, +15:u07:'one-touch', +14:u04:pre-shared, +14:u05:round-trip, +17:u07:bootstrapping, +10:u11:secure, +10:u13:single, +8:uI1:-(),, +10:u02:secure, +10:u04:single, +15:u06:'one-touch', +10:u07:pledge, +7:u08:due, +14:u03:pre-shared, +14:u04:round-trip, +17:u06:bootstrapping, +11:u08:certain, +10:u10:secure, +10:u12:single, +15:u14:'one-touch', +8:u23:sing, +8:uI0:-(),, +10:u01:secure, +10:u03:single, +15:u05:'one-touch', +10:u06:pledge, +14:u02:pre-shared, +14:u03:round-trip, +17:u05:bootstrapping, +11:u07:certain, +10:u11:single, +15:u13:'one-touch', +10:u14:pledge, +8:uI2:'-',, +10:u00:secure, +10:u02:single, +15:u04:'one-touch', +10:u05:pledge, +7:u07:due, +16:u08:'zero-touch', +14:u01:pre-shared, +14:u02:round-trip, +17:u04:bootstrapping, +11:u06:certain, +10:u10:single, +15:u12:'one-touch', +10:u13:pledge, +6:u21:'o, +7:u22:'on, +8:u23:'one, +8:uI1:'-',, +10:u01:single, +15:u03:'one-touch', +10:u04:pledge, +7:u06:due, +8:u08:Zero, +14:u00:pre-shared, +14:u01:round-trip, +17:u03:bootstrapping, +11:u05:certain, +15:u11:'one-touch', +10:u12:pledge, +7:u14:due, +8:uI0:'-',, +10:u00:single, +15:u02:'one-touch', +10:u03:pledge, +7:u05:due, +16:u07:'zero-touch', +13:u08:leverages, +14:u00:round-trip, +17:u02:bootstrapping, +11:u04:certain, +9:u08:touch, +15:u10:'one-touch', +10:u11:pledge, +7:u13:due, +15:u01:'one-touch', +10:u02:pledge, +7:u04:due, +16:u06:'zero-touch', +8:u07:Zero, +12:u08:(BRSKI)', +17:u01:bootstrapping, +11:u03:certain, +9:u07:touch, +10:u10:pledge, +7:u12:due, +16:u14:'zero-touch', +7:u23:due, +15:u00:'one-touch', +10:u01:pledge, +7:u03:due, +16:u05:'zero-touch', +8:u06:Zero, +13:u07:leverages, +17:u00:bootstrapping, +11:u02:certain, +9:u06:touch, +44:u08:[[I-D.ietf-anima-bootstrapping-keyinfra], +7:u11:due, +16:u13:'zero-touch', +8:u14:zero, +8:uI2:'-'., +10:u00:pledge, +7:u02:due, +16:u04:'zero-touch', +8:u05:Zero, +13:u06:leverages, +12:u07:(BRSKI)', +8:u08:them, +11:u01:certain, +9:u05:touch, +44:u07:[[I-D.ietf-anima-bootstrapping-keyinfra], +10:u08:secret, +7:u10:due, +16:u12:'zero-touch', +8:u13:zero, +13:u14:leverages, +6:u21:'z, +7:u22:'ze, +8:u23:'zer, +8:uI1:'-'., +7:u01:due, +16:u03:'zero-touch', +8:u04:Zero, +13:u05:leverages, +12:u06:(BRSKI)', +11:u00:certain, +9:u04:touch, +44:u06:[[I-D.ietf-anima-bootstrapping-keyinfra], +10:u07:secret, +10:u08:belong, +16:u11:'zero-touch', +8:u12:zero, +13:u13:leverages, +12:u14:(brski)', +6:u21:Ze, +7:u22:Zer, +8:u23:Zero, +8:uI0:'-'., +7:u00:due, +16:u02:'zero-touch', +8:u03:Zero, +13:u04:leverages, +12:u05:(BRSKI)', +8:u07:them, +9:u03:touch, +44:u05:[[I-D.ietf-anima-bootstrapping-keyinfra], +10:u06:secret, +10:u07:belong, +16:u08:inter-domain, +16:u10:'zero-touch', +8:u11:zero, +13:u12:leverages, +12:u13:(brski)', +15:uI2:()'[[-.---], +16:u01:'zero-touch', +8:u02:Zero, +13:u03:leverages, +12:u04:(BRSKI)', +8:u06:them, +16:u08:Manufacturer, +9:u02:touch, +44:u04:[[I-D.ietf-anima-bootstrapping-keyinfra], +10:u05:secret, +10:u06:belong, +16:u07:inter-domain, +8:u10:zero, +13:u11:leverages, +12:u12:(brski)', +8:u14:them, +6:u21:(B, +7:u22:(BR, +8:u23:(BRS, +15:uI1:()'[[-.---], +16:u00:'zero-touch', +8:u01:Zero, +13:u02:leverages, +12:u03:(BRSKI)', +8:u05:them, +9:u01:touch, +44:u03:[[I-D.ietf-anima-bootstrapping-keyinfra], +10:u04:secret, +10:u05:belong, +16:u06:inter-domain, +14:u08:Authorized, +13:u10:leverages, +12:u11:(brski)', +8:u13:them, +11:u14:through, +15:uI0:()'[[-.---], +8:u00:Zero, +13:u01:leverages, +12:u02:(BRSKI)', +8:u04:them, +16:u07:Manufacturer, +9:u00:touch, +44:u02:[[I-D.ietf-anima-bootstrapping-keyinfra], +10:u03:secret, +10:u04:belong, +16:u05:inter-domain, +14:u07:Authorized, +12:u08:exchange, +12:u10:(brski)', +8:u12:them, +11:u13:through, +8:u23:them, +13:u00:leverages, +12:u01:(BRSKI)', +8:u03:them, +16:u06:Manufacturer, +44:u01:[[I-D.ietf-anima-bootstrapping-keyinfra], +10:u02:secret, +10:u03:belong, +16:u04:inter-domain, +14:u06:Authorized, +12:u07:exchange, +8:u11:them, +11:u12:through, +16:u14:manufacturer, +8:u23:thro, +12:u00:(BRSKI)', +8:u02:them, +16:u05:Manufacturer, +44:u00:[[I-D.ietf-anima-bootstrapping-keyinfra], +10:u01:secret, +10:u02:belong, +16:u03:inter-domain, +14:u05:Authorized, +12:u06:exchange, +8:u10:them, +11:u11:through, +16:u13:manufacturer, +9:u14:touch, +8:uI2:().-, +8:u01:them, +16:u04:Manufacturer, +9:u08:(LLA), +10:u00:secret, +10:u01:belong, +16:u02:inter-domain, +14:u04:Authorized, +12:u05:exchange, +11:u10:through, +16:u12:manufacturer, +9:u13:touch, +8:u23:Manu, +8:uI1:().-, +8:u00:them, +16:u03:Manufacturer, +10:u00:belong, +16:u01:inter-domain, +14:u03:Authorized, +12:u04:exchange, +16:u11:manufacturer, +9:u12:touch, +7:u22:tou, +8:u23:touc, +8:uI0:().-, +16:u02:Manufacturer, +9:u07:(LLA), +16:u00:inter-domain, +14:u02:Authorized, +12:u03:exchange, +16:u10:manufacturer, +9:u11:touch, +16:u01:Manufacturer, +9:u06:(LLA), +14:u01:Authorized, +12:u02:exchange, +9:u10:touch, +9:u14:(lla), +16:u00:Manufacturer, +9:u05:(LLA), +14:u00:Authorized, +12:u01:exchange, +9:u13:(lla), +10:uI2:(),()., +9:u04:(LLA), +12:u00:exchange, +9:u12:(lla), +6:u21:(L, +7:u22:(LL, +8:u23:(LLA, +10:uI1:(),()., +9:u03:(LLA), +9:u11:(lla), +10:uI0:(),()., +9:u02:(LLA), +9:u10:(lla), +9:u01:(LLA), +7:u08:6LR, +9:u00:(LLA), +7:u03:25], +7:u07:6LR, +7:u02:25], +7:u06:6LR, +8:u08:MASA, +7:u01:25], +7:u14:6lr, +7:u05:6LR, +12:u08:(pledge), +7:u00:25], +7:u13:6lr, +7:u04:6LR, +8:u07:MASA, +7:u12:6lr, +7:u23:6LR, +7:u03:6LR, +8:u06:MASA, +12:u07:(pledge), +10:u08:(Root), +10:u08:Proxy), +7:u11:6lr, +8:u14:masa, +7:u02:6LR, +8:u05:MASA, +12:u06:(pledge), +16:u08:/Coordinator, +10:u07:Proxy), +7:u10:6lr, +8:u13:masa, +12:u14:(pledge), +7:u22:Joi, +8:u23:Join, +7:u01:6LR, +8:u04:MASA, +12:u05:(pledge), +10:u07:(Root), +10:u06:Proxy), +9:u08:(JRC), +8:u12:masa, +12:u13:(pledge), +9:u14:(join, +7:u22:MAS, +8:u23:MASA, +7:u00:6LR, +8:u03:MASA, +12:u04:(pledge), +10:u06:(Root), +16:u07:/Coordinator, +10:u05:Proxy), +9:u07:(JRC), +8:u11:masa, +12:u12:(pledge), +9:u13:(join, +10:u14:(root), +7:u22:(pl, +8:u23:(ple, +8:u02:MASA, +12:u03:(pledge), +10:u05:(Root), +16:u06:/Coordinator, +10:u04:Proxy), +9:u06:(JRC), +8:u10:masa, +12:u11:(pledge), +9:u12:(join, +10:u13:(root), +16:u14:/coordinator, +6:u21:(J, +7:u22:(Jo, +8:u23:(Joi, +8:u01:MASA, +12:u02:(pledge), +10:u04:(Root), +16:u05:/Coordinator, +10:u03:Proxy), +9:u05:(JRC), +12:u10:(pledge), +9:u11:(join, +10:u12:(root), +16:u13:/coordinator, +6:u21:(R, +7:u22:(Ro, +8:u23:(Roo, +8:u00:MASA, +12:u01:(pledge), +10:u03:(Root), +16:u04:/Coordinator, +10:u02:Proxy), +9:u04:(JRC), +9:u10:(join, +10:u11:(root), +16:u12:/coordinator, +6:u21:/C, +7:u22:/Co, +8:u23:/Coo, +12:u00:(pledge), +10:u02:(Root), +16:u03:/Coordinator, +10:u01:Proxy), +9:u03:(JRC), +10:u10:(root), +16:u11:/coordinator, +10:u01:(Root), +16:u02:/Coordinator, +12:u08:|6LoWPAN, +10:u00:Proxy), +9:u02:(JRC), +16:u10:/coordinator, +10:u00:(Root), +16:u01:/Coordinator, +9:u01:(JRC), +10:u08:ND+RPL, +16:u00:/Coordinator, +12:u07:|6LoWPAN, +9:u00:(JRC), +10:u07:ND+RPL, +12:u06:|6LoWPAN, +15:u08:|Route-Over, +10:u06:ND+RPL, +12:u14:|6lowpan, +12:u05:|6LoWPAN, +10:u05:ND+RPL, +13:u08:mesh|(the, +12:u13:|6lowpan, +12:u04:|6LoWPAN, +15:u07:|Route-Over, +10:u04:ND+RPL, +13:u07:mesh|(the, +12:u12:|6lowpan, +6:u21:|6, +7:u22:|6L, +8:u23:|6Lo, +12:u03:|6LoWPAN, +15:u06:|Route-Over, +10:u03:ND+RPL, +13:u06:mesh|(the, +12:u11:|6lowpan, +15:u14:|route-over, +12:u02:|6LoWPAN, +15:u05:|Route-Over, +10:u02:ND+RPL, +13:u05:mesh|(the, +12:u10:|6lowpan, +15:u13:|route-over, +9:uI2:-()(), +12:u01:|6LoWPAN, +15:u04:|Route-Over, +10:u01:ND+RPL, +13:u04:mesh|(the, +15:u12:|route-over, +7:u22:|Ro, +8:u23:|Rou, +9:uI1:-()(), +12:u00:|6LoWPAN, +15:u03:|Route-Over, +10:u00:ND+RPL, +13:u03:mesh|(the, +15:u11:|route-over, +9:uI0:-()(), +15:u02:|Route-Over, +13:u02:mesh|(the, +15:u10:|route-over, +15:u01:|Route-Over, +13:u01:mesh|(the, +15:u00:|Route-Over, +13:u00:mesh|(the, +13:u08:|enhanced, +11:u08:beacon|, +13:u07:|enhanced, +11:u07:beacon|, +13:u06:|enhanced, +11:u06:beacon|, +13:u14:|enhanced, +13:u05:|enhanced, +21:u08:|<--------------|, +11:u05:beacon|, +13:u13:|enhanced, +13:u04:|enhanced, +11:u04:beacon|, +13:u12:|enhanced, +6:u21:|e, +7:u22:|en, +8:u23:|enh, +13:u03:|enhanced, +21:u07:|<--------------|, +11:u03:beacon|, +13:u11:|enhanced, +13:u02:|enhanced, +21:u06:|<--------------|, +11:u02:beacon|, +13:u10:|enhanced, +21:u14:|<--------------|, +13:u01:|enhanced, +21:u05:|<--------------|, +11:u01:beacon|, +21:u13:|<--------------|, +13:u00:|enhanced, +21:u04:|<--------------|, +11:u00:beacon|, +21:u12:|<--------------|, +6:u21:|<, +7:u22:|<-, +8:u23:|<--, +21:u03:|<--------------|, +21:u11:|<--------------|, +21:u02:|<--------------|, +21:u10:|<--------------|, +21:u01:|<--------------|, +21:u00:|<--------------|, +10:u08:(EARO), +10:u07:(EARO), +10:u06:(EARO), +10:u05:(EARO), +10:u04:(EARO), +8:u08:(for, +10:u03:(EARO), +8:u07:(for, +10:u02:(EARO), +8:u06:(for, +21:u08:|-------------->|, +10:u01:(EARO), +8:u05:(for, +10:u00:(EARO), +8:u04:(for, +21:u07:|-------------->|, +8:u03:(for, +21:u06:|-------------->|, +8:u02:(for, +21:u14:|-------------->|, +21:u05:|-------------->|, +8:u01:(for, +21:u13:|-------------->|, +21:u04:|-------------->|, +6:u08:NA, +8:u00:(for, +21:u12:|-------------->|, +6:u21:|-, +7:u22:|--, +8:u23:|---, +21:u03:|-------------->|, +21:u11:|-------------->|, +21:u02:|-------------->|, +6:u07:NA, +21:u10:|-------------->|, +21:u01:|-------------->|, +6:u06:NA, +6:u14:na, +21:u00:|-------------->|, +6:u05:NA, +6:u13:na, +6:u04:NA, +6:u12:na, +6:u22:NA, +6:u23:NA, +6:u03:NA, +6:u11:na, +6:u02:NA, +6:u10:na, +6:u01:NA, +6:u00:NA, +15:u08:(Zero-touch, +15:u07:(Zero-touch, +15:u06:(Zero-touch, +15:u05:(Zero-touch, +6:uI2:(-, +14:u08:handshake), +15:u04:(Zero-touch, +6:uI1:(-, +15:u03:(Zero-touch, +6:uI0:(-, +14:u07:handshake), +15:u02:(Zero-touch, +14:u06:handshake), +15:u01:(Zero-touch, +14:u14:handshake), +14:u05:handshake), +15:u00:(Zero-touch, +14:u13:handshake), +15:u14:(zero-touch, +14:u04:handshake), +7:u08:LLA, +14:u12:handshake), +15:u13:(zero-touch, +7:u22:han, +8:u23:hand, +14:u03:handshake), +7:u07:LLA, +14:u11:handshake), +15:u12:(zero-touch, +6:u21:(Z, +7:u22:(Ze, +8:u23:(Zer, +14:u02:handshake), +7:u06:LLA, +7:u08:GUA, +14:u10:handshake), +15:u11:(zero-touch, +9:u14:using, +14:u01:handshake), +67:u08:|<------------->|<---------------------------->|<------------>|, +7:u05:LLA, +7:u07:GUA, +15:u10:(zero-touch, +9:u13:using, +14:u00:handshake), +7:u04:LLA, +7:u06:GUA, +9:u12:using, +7:u22:usi, +8:u23:usin, +67:u07:|<------------->|<---------------------------->|<------------>|, +7:u03:LLA, +7:u05:GUA, +9:u11:using, +67:u06:|<------------->|<---------------------------->|<------------>|, +7:u02:LLA, +7:u04:GUA, +9:u10:using, +67:u14:|<------------->|<---------------------------->|<------------>|, +67:u05:|<------------->|<---------------------------->|<------------>|, +7:u01:LLA, +7:u03:GUA, +67:u13:|<------------->|<---------------------------->|<------------>|, +57:uI2:-----------------------------------------------------, +6:uI2:53, +67:u04:|<------------->|<---------------------------->|<------------>|, +7:u00:LLA, +7:u02:GUA, +67:u12:|<------------->|<---------------------------->|<------------>|, +57:uI1:-----------------------------------------------------, +6:uI1:53, +67:u03:|<------------->|<---------------------------->|<------------>|, +7:u01:GUA, +67:u11:|<------------->|<---------------------------->|<------------>|, +57:uI0:-----------------------------------------------------, +6:uI0:53, +67:u02:|<------------->|<---------------------------->|<------------>|, +7:u00:GUA, +67:u10:|<------------->|<---------------------------->|<------------>|, +67:u01:|<------------->|<---------------------------->|<------------>|, +67:u00:|<------------->|<---------------------------->|<------------>|, +36:u08:|----------------------------->|, +36:u07:|----------------------------->|, +36:u06:|----------------------------->|, +36:u14:|----------------------------->|, +36:u05:|----------------------------->|, +36:u13:|----------------------------->|, +33:uI2:-----------------------------, +6:uI2:29, +36:u04:|----------------------------->|, +36:u12:|----------------------------->|, +33:uI1:-----------------------------, +6:uI1:29, +36:u03:|----------------------------->|, +36:u11:|----------------------------->|, +33:uI0:-----------------------------, +6:uI0:29, +36:u02:|----------------------------->|, +36:u10:|----------------------------->|, +36:u01:|----------------------------->|, +36:u00:|----------------------------->|, +36:u08:|<-----------------------------|, +36:u07:|<-----------------------------|, +9:u08:|CoJP, +36:u06:|<-----------------------------|, +36:u14:|<-----------------------------|, +36:u05:|<-----------------------------|, +9:u07:|CoJP, +36:u13:|<-----------------------------|, +36:u04:|<-----------------------------|, +9:u06:|CoJP, +36:u12:|<-----------------------------|, +9:u14:|cojp, +36:u03:|<-----------------------------|, +9:u05:|CoJP, +36:u11:|<-----------------------------|, +9:u13:|cojp, +36:u02:|<-----------------------------|, +9:u04:|CoJP, +36:u10:|<-----------------------------|, +9:u12:|cojp, +6:u21:|C, +7:u22:|Co, +8:u23:|CoJ, +36:u01:|<-----------------------------|, +9:u03:|CoJP, +9:u11:|cojp, +36:u00:|<-----------------------------|, +9:u02:|CoJP, +9:u10:|cojp, +9:u01:|CoJP, +9:u00:|CoJP, +12:u08:optional, +6:u08:5:, +6:u07:5:, +14:u08:exchanges., +12:u07:optional, +6:u06:5:, +14:u07:exchanges., +12:u06:optional, +6:u05:5:, +14:u06:exchanges., +12:u14:optional, +9:uI2::-.(), +12:u05:optional, +11:u08:routers, +6:u04:5:, +14:u05:exchanges., +12:u13:optional, +9:uI1::-.(), +12:u04:optional, +6:u03:5:, +14:u04:exchanges., +12:u12:optional, +9:uI0::-.(), +12:u03:optional, +11:u07:routers, +9:u08:learn, +6:u02:5:, +14:u03:exchanges., +8:u08:4.1,, +12:u11:optional, +12:u02:optional, +11:u06:routers, +6:u01:5:, +14:u02:exchanges., +8:u07:4.1,, +12:u10:optional, +11:u14:routers, +12:u01:optional, +11:u05:routers, +9:u07:learn, +6:u00:5:, +14:u01:exchanges., +8:u06:4.1,, +11:u08:updated, +11:u13:routers, +12:u00:optional, +11:u04:routers, +9:u06:learn, +14:u00:exchanges., +8:u05:4.1,, +11:u07:updated, +11:u12:routers, +9:u14:learn, +11:u03:routers, +9:u05:learn, +8:u04:4.1,, +11:u06:updated, +11:u11:routers, +9:u13:learn, +11:u02:routers, +9:u04:learn, +8:u03:4.1,, +11:u05:updated, +11:u10:routers, +9:u12:learn, +8:u23:lear, +11:u01:routers, +9:u03:learn, +8:u02:4.1,, +11:u04:updated, +7:u08:26], +9:u11:learn, +11:u00:routers, +9:u02:learn, +8:u01:4.1,, +11:u03:updated, +7:u07:26], +9:u10:learn, +9:u01:learn, +8:u00:4.1,, +11:u02:updated, +7:u06:26], +9:u00:learn, +11:u01:updated, +7:u05:26], +11:u00:updated, +7:u04:26], +7:u03:26], +9:u08:6BBR., +7:u02:26], +9:u08:first, +7:u01:26], +8:u14:form, +9:u07:6BBR., +7:u00:26], +15:u08:registered., +8:u13:form, +9:u06:6BBR., +9:u07:first, +15:u07:registered., +8:u12:form, +9:u14:6bbr., +8:u23:form, +8:uI2:[],,, +9:u05:6BBR., +9:u06:first, +15:u06:registered., +8:u11:form, +9:u13:6bbr., +9:u14:first, +8:uI1:[],,, +9:u04:6BBR., +9:u05:first, +8:u08:6BBR, +15:u05:registered., +8:u10:form, +9:u12:6bbr., +9:u13:first, +8:uI0:[],,, +9:u03:6BBR., +9:u04:first, +8:u08:(RPL, +15:u04:registered., +9:u11:6bbr., +9:u12:first, +7:u22:fir, +8:u23:firs, +9:u02:6BBR., +9:u03:first, +8:u07:6BBR, +12:u08:(router), +15:u03:registered., +9:u08:leaf), +9:u10:6bbr., +9:u11:first, +9:u01:6BBR., +9:u02:first, +8:u06:6BBR, +8:u07:(RPL, +15:u02:registered., +9:u07:leaf), +9:u10:first, +8:u14:6bbr, +9:u00:6BBR., +9:u01:first, +8:u05:6BBR, +8:u06:(RPL, +12:u07:(router), +15:u01:registered., +9:u06:leaf), +8:u13:6bbr, +8:u14:(rpl, +9:u00:first, +8:u04:6BBR, +8:u05:(RPL, +12:u06:(router), +15:u00:registered., +9:u05:leaf), +8:u12:6bbr, +8:u13:(rpl, +12:u14:(router), +8:u03:6BBR, +8:u04:(RPL, +12:u05:(router), +9:u04:leaf), +8:u11:6bbr, +8:u12:(rpl, +12:u13:(router), +7:u22:(RP, +8:u23:(RPL, +8:u02:6BBR, +8:u03:(RPL, +12:u04:(router), +9:u03:leaf), +8:u10:6bbr, +8:u11:(rpl, +12:u12:(router), +7:u22:(ro, +8:u23:(rou, +8:u01:6BBR, +8:u02:(RPL, +12:u03:(router), +9:u02:leaf), +8:u10:(rpl, +12:u11:(router), +8:u00:6BBR, +8:u01:(RPL, +12:u02:(router), +9:u01:leaf), +12:u10:(router), +8:u00:(RPL, +12:u01:(router), +9:u00:leaf), +12:u00:(router), +25:u08:mesh|Ethernet/serial|, +25:u07:mesh|Ethernet/serial|, +25:u06:mesh|Ethernet/serial|, +25:u05:mesh|Ethernet/serial|, +6:uI2:-/, +25:u04:mesh|Ethernet/serial|, +6:uI1:-/, +25:u03:mesh|Ethernet/serial|, +6:u08:RS, +6:uI0:-/, +25:u02:mesh|Ethernet/serial|, +6:u07:RS, +25:u01:mesh|Ethernet/serial|, +6:u06:RS, +25:u00:mesh|Ethernet/serial|, +6:u05:RS, +6:u04:RS, +6:u03:RS, +17:u08:|----------->, +6:u02:RS, +6:u01:RS, +17:u07:|----------->, +6:u00:RS, +17:u06:|----------->, +17:u14:|----------->, +17:u05:|----------->, +24:u08:|------------------>, +17:u13:|----------->, +17:u04:|----------->, +17:u12:|----------->, +17:u03:|----------->, +24:u07:|------------------>, +17:u11:|----------->, +17:u02:|----------->, +24:u06:|------------------>, +17:u10:|----------->, +24:u14:|------------------>, +17:u01:|----------->, +24:u05:|------------------>, +6:u08:RA, +24:u13:|------------------>, +22:uI2:------------------, +17:u00:|----------->, +24:u04:|------------------>, +6:u07:RA, +24:u12:|------------------>, +22:uI1:------------------, +24:u03:|------------------>, +6:u06:RA, +24:u11:|------------------>, +22:uI0:------------------, +24:u02:|------------------>, +6:u05:RA, +24:u10:|------------------>, +24:u01:|------------------>, +6:u04:RA, +24:u00:|------------------>, +6:u03:RA, +6:u02:RA, +6:u01:RA, +6:u00:RA, +12:u08:NS(EARO), +12:u07:NS(EARO), +12:u06:NS(EARO), +12:u05:NS(EARO), +12:u04:NS(EARO), +12:u03:NS(EARO), +12:u02:NS(EARO), +12:u01:NS(EARO), +12:u00:NS(EARO), +12:u08:Extended, +12:u07:Extended, +12:u06:Extended, +12:u05:Extended, +12:u04:Extended, +12:u03:Extended, +12:u02:Extended, +12:u01:Extended, +12:u00:Extended, +10:u08:NS-DAD, +10:u07:NS-DAD, +10:u06:NS-DAD, +12:u08:|------>, +10:u05:NS-DAD, +10:u04:NS-DAD, +12:u07:|------>, +10:u03:NS-DAD, +12:u06:|------>, +10:u02:NS-DAD, +12:u14:|------>, +12:u05:|------>, +10:u01:NS-DAD, +12:u13:|------>, +10:uI2:------, +12:u04:|------>, +10:u00:NS-DAD, +12:u12:|------>, +10:uI1:------, +12:u03:|------>, +12:u11:|------>, +10:uI0:------, +12:u02:|------>, +12:u10:|------>, +12:u01:|------>, +12:u00:|------>, +14:u08:|<timeout>, +12:u08:NA(EARO), +12:u07:NA(EARO), +14:u07:|<timeout>, +12:u06:NA(EARO), +14:u06:|<timeout>, +12:u05:NA(EARO), +14:u14:|<timeout>, +14:u05:|<timeout>, +12:u04:NA(EARO), +14:u13:|<timeout>, +14:u04:|<timeout>, +12:u03:NA(EARO), +14:u12:|<timeout>, +7:u22:|<t, +8:u23:|<ti, +14:u03:|<timeout>, +12:u02:NA(EARO), +14:u11:|<timeout>, +14:u02:|<timeout>, +12:u01:NA(EARO), +14:u10:|<timeout>, +14:u01:|<timeout>, +12:u00:NA(EARO), +14:u00:|<timeout>, +6:u08:6:, +6:u07:6:, +6:u06:6:, +8:u08:keep, +6:u05:6:, +8:u07:keep, +6:u04:6:, +8:u06:keep, +6:u03:6:, +8:u05:keep, +6:u02:6:, +8:u04:keep, +6:u01:6:, +8:u03:keep, +6:u00:6:, +8:u02:keep, +7:u08:27], +8:u01:keep, +7:u07:27], +8:u00:keep, +7:u06:27], +7:u05:27], +7:u04:27], +7:u03:27], +7:u02:27], +7:u01:27], +7:u00:27], +9:u08:mesh|, +9:u07:mesh|, +9:u06:mesh|, +9:u05:mesh|, +9:u04:mesh|, +9:u03:mesh|, +9:u02:mesh|, +9:u01:mesh|, +9:u00:mesh|, +7:u08:DAO, +7:u07:DAO, +7:u06:DAO, +7:u05:DAO, +7:u04:DAO, +7:u03:DAO, +7:u02:DAO, +7:u01:DAO, +11:u08:DAO-ACK, +7:u00:DAO, +11:u07:DAO-ACK, +11:u06:DAO-ACK, +11:u05:DAO-ACK, +11:u04:DAO-ACK, +11:u03:DAO-ACK, +11:u02:DAO-ACK, +11:u01:DAO-ACK, +11:u00:DAO-ACK, +6:u08:7:, +6:u07:7:, +8:u08:6LR,, +6:u06:7:, +6:u05:7:, +8:u07:6LR,, +6:u04:7:, +8:u06:6LR,, +6:u03:7:, +8:u14:6lr,, +8:u05:6LR,, +6:u02:7:, +11:u08:expects, +8:u13:6lr,, +8:u04:6LR,, +9:u08:goal,, +6:u01:7:, +11:u07:expects, +8:u12:6lr,, +8:u23:6LR,, +8:u03:6LR,, +9:u08:reuse, +6:u00:7:, +11:u06:expects, +8:u11:6lr,, +8:u02:6LR,, +9:u07:goal,, +11:u05:expects, +8:u10:6lr,, +8:u01:6LR,, +9:u06:goal,, +9:u07:reuse, +8:u08:good, +11:u04:expects, +9:u14:goal,, +8:u00:6LR,, +9:u05:goal,, +9:u06:reuse, +11:u03:expects, +9:u13:goal,, +9:u14:reuse, +9:u04:goal,, +9:u05:reuse, +8:u07:good, +11:u02:expects, +11:u08:6TiSCH,, +9:u12:goal,, +9:u13:reuse, +5:u20:g, +6:u21:go, +7:u22:goa, +8:u23:goal, +9:u03:goal,, +9:u04:reuse, +8:u06:good, +11:u08:enabled, +11:u01:expects, +11:u07:6TiSCH,, +11:u08:bundles, +9:u11:goal,, +9:u12:reuse, +8:u14:good, +7:u22:reu, +8:u23:reus, +9:u02:goal,, +9:u03:reuse, +8:u05:good, +11:u08:optimal, +11:u00:expects, +11:u06:6TiSCH,, +11:u07:bundles, +9:u10:goal,, +9:u11:reuse, +8:u13:good, +9:u01:goal,, +9:u02:reuse, +8:u04:good, +11:u07:enabled, +11:u05:6TiSCH,, +11:u06:bundles, +9:u10:reuse, +8:u12:good, +7:u22:goo, +8:u23:good, +9:u00:goal,, +9:u01:reuse, +8:u03:good, +11:u06:enabled, +11:u07:optimal, +14:u08:minimized,, +11:u04:6TiSCH,, +11:u05:bundles, +8:u08:idle, +8:u11:good, +11:u14:enabled, +9:u00:reuse, +8:u02:good, +11:u05:enabled, +11:u06:optimal, +11:u03:6TiSCH,, +11:u04:bundles, +8:u07:idle, +9:u08:while, +8:u10:good, +11:u13:enabled, +11:u14:optimal, +8:u01:good, +11:u04:enabled, +11:u05:optimal, +14:u07:minimized,, +11:u02:6TiSCH,, +11:u03:bundles, +8:u06:idle, +9:u07:while, +11:u12:enabled, +11:u13:optimal, +8:u00:good, +11:u03:enabled, +11:u04:optimal, +14:u06:minimized,, +11:u01:6TiSCH,, +11:u02:bundles, +8:u05:idle, +9:u06:while, +11:u11:enabled, +11:u12:optimal, +14:u14:minimized,, +11:u02:enabled, +11:u03:optimal, +14:u05:minimized,, +11:u00:6TiSCH,, +11:u01:bundles, +8:u04:idle, +9:u05:while, +7:u08:28], +11:u10:enabled, +11:u11:optimal, +14:u13:minimized,, +11:u01:enabled, +11:u02:optimal, +14:u04:minimized,, +11:u00:bundles, +8:u03:idle, +9:u04:while, +7:u07:28], +11:u10:optimal, +14:u12:minimized,, +7:u22:min, +8:u23:mini, +11:u00:enabled, +11:u01:optimal, +14:u03:minimized,, +8:u02:idle, +9:u03:while, +7:u06:28], +14:u11:minimized,, +11:u00:optimal, +14:u02:minimized,, +8:u01:idle, +9:u02:while, +7:u05:28], +14:u10:minimized,, +14:u01:minimized,, +15:u08:statistical, +8:u00:idle, +9:u01:while, +7:u04:28], +14:u00:minimized,, +9:u00:while, +7:u03:28], +16:u08:distribution, +15:u07:statistical, +10:u08:remain, +7:u02:28], +16:u07:distribution, +15:u06:statistical, +14:u08:reactivity, +7:u01:28], +16:u06:distribution, +15:u14:statistical, +15:u05:statistical, +10:u07:remain, +7:u00:28], +16:u05:distribution, +15:u13:statistical, +7:u23:Use, +15:u04:statistical, +10:u06:remain, +14:u07:reactivity, +13:u08:children,, +16:u04:distribution, +15:u12:statistical, +10:u14:remain, +15:u03:statistical, +10:u05:remain, +14:u06:reactivity, +16:u03:distribution, +15:u11:statistical, +10:u13:remain, +14:u14:reactivity, +15:u02:statistical, +10:u04:remain, +14:u05:reactivity, +13:u07:children,, +16:u02:distribution, +15:u10:statistical, +10:u12:remain, +14:u13:reactivity, +8:u23:rema, +15:u01:statistical, +10:u03:remain, +14:u04:reactivity, +13:u06:children,, +16:u01:distribution, +10:u11:remain, +14:u12:reactivity, +13:u14:children,, +15:u00:statistical, +10:u02:remain, +14:u03:reactivity, +13:u05:children,, +16:u00:distribution, +10:u10:remain, +14:u11:reactivity, +13:u13:children,, +10:u01:remain, +14:u02:reactivity, +13:u04:children,, +14:u10:reactivity, +13:u12:children,, +7:u22:chi, +8:u23:chil, +10:u00:remain, +14:u01:reactivity, +13:u03:children,, +14:u08:[RFC8480],, +13:u11:children,, +14:u00:reactivity, +13:u02:children,, +13:u10:children,, +13:u01:children,, +14:u07:[RFC8480],, +12:u08:external, +13:u00:children,, +14:u06:[RFC8480],, +10:u08:allows, +14:u14:[rfc8480],, +14:u05:[RFC8480],, +12:u07:external, +14:u13:[rfc8480],, +9:uI2:[],.,, +14:u04:[RFC8480],, +12:u06:external, +10:u07:allows, +12:u08:Function, +14:u12:[rfc8480],, +9:uI1:[],.,, +14:u03:[RFC8480],, +12:u05:external, +10:u06:allows, +12:u08:purpose,, +12:u07:Function, +12:u08:observed, +14:u11:[rfc8480],, +10:u14:allows, +9:uI0:[],.,, +14:u02:[RFC8480],, +12:u04:external, +10:u05:allows, +10:u08:"hard", +12:u06:Function, +12:u07:observed, +14:u10:[rfc8480],, +10:u13:allows, +14:u01:[RFC8480],, +12:u03:external, +10:u04:allows, +12:u07:purpose,, +12:u08:4.3.1.1., +12:u05:Function, +12:u06:observed, +10:u08:cells., +10:u12:allows, +14:u00:[RFC8480],, +12:u02:external, +10:u03:allows, +12:u06:purpose,, +10:u07:"hard", +10:u08:"Hard", +12:u04:Function, +12:u05:observed, +10:u07:cells., +8:u08:Hard, +10:u11:allows, +12:u14:purpose,, +12:u01:external, +10:u02:allows, +12:u05:purpose,, +10:u06:"hard", +12:u07:4.3.1.1., +12:u03:Function, +12:u04:observed, +10:u06:cells., +8:u07:Hard, +10:u10:allows, +12:u13:purpose,, +10:u14:"hard", +7:uI2:,"", +12:u00:external, +10:u01:allows, +12:u04:purpose,, +10:u05:"hard", +12:u06:4.3.1.1., +10:u07:"Hard", +12:u02:Function, +12:u03:observed, +10:u05:cells., +8:u06:Hard, +10:u08:entity, +12:u12:purpose,, +10:u13:"hard", +12:u14:4.3.1.1., +7:u22:pur, +8:u23:purp, +7:uI1:,"", +10:u00:allows, +12:u03:purpose,, +10:u04:"hard", +12:u05:4.3.1.1., +10:u06:"Hard", +12:u01:Function, +12:u02:observed, +10:u04:cells., +8:u05:Hard, +10:u07:entity, +12:u11:purpose,, +10:u12:"hard", +12:u13:4.3.1.1., +7:u22:"ha, +8:u23:"har, +7:uI0:,"", +12:u02:purpose,, +10:u03:"hard", +12:u04:4.3.1.1., +10:u05:"Hard", +12:u00:Function, +12:u01:observed, +10:u03:cells., +8:u04:Hard, +10:u06:entity, +12:u10:purpose,, +10:u11:"hard", +12:u12:4.3.1.1., +12:u01:purpose,, +10:u02:"hard", +12:u03:4.3.1.1., +10:u04:"Hard", +12:u08:4.3.1.2., +12:u00:observed, +10:u02:cells., +8:u03:Hard, +10:u05:entity, +10:u10:"hard", +12:u11:4.3.1.1., +6:u21:"H, +7:u22:"Ha, +8:u23:"Har, +10:uI2:(..,)/, +12:u00:purpose,, +10:u01:"hard", +12:u02:4.3.1.1., +10:u03:"Hard", +10:u01:cells., +8:u02:Hard, +10:u04:entity, +8:u08:Soft, +12:u10:4.3.1.1., +10:uI1:(..,)/, +7:uI2://,, +10:u00:"hard", +12:u01:4.3.1.1., +10:u02:"Hard", +12:u07:4.3.1.2., +10:u00:cells., +8:u01:Hard, +10:u03:entity, +8:u07:Soft, +13:u08:contrast,, +10:uI0:(..,)/, +7:uI1://,, +12:u00:4.3.1.1., +10:u01:"Hard", +12:u06:4.3.1.2., +10:u08:cells,, +8:u00:Hard, +10:u02:entity, +8:u06:Soft, +13:u07:contrast,, +12:u08:contains, +12:u14:4.3.1.2., +7:uI0://,, +10:u00:"Hard", +12:u05:4.3.1.2., +10:u01:entity, +8:u05:Soft, +13:u06:contrast,, +12:u07:contains, +12:u13:4.3.1.2., +12:u04:4.3.1.2., +10:u07:cells,, +11:u08:reserve, +10:u00:entity, +8:u04:Soft, +13:u05:contrast,, +12:u06:contains, +12:u12:4.3.1.2., +8:uI2:,""., +12:u03:4.3.1.2., +10:u06:cells,, +28:u08:slotOffset/channelOffset, +8:u03:Soft, +13:u04:contrast,, +12:u05:contains, +12:u11:4.3.1.2., +10:u14:cells,, +8:uI1:,""., +12:u02:4.3.1.2., +10:u05:cells,, +11:u07:reserve, +8:u02:Soft, +13:u03:contrast,, +12:u04:contains, +12:u10:4.3.1.2., +10:u13:cells,, +8:uI0:,""., +12:u01:4.3.1.2., +10:u04:cells,, +11:u06:reserve, +28:u07:slotOffset/channelOffset, +8:u01:Soft, +13:u02:contrast,, +12:u03:contains, +10:u12:cells,, +11:u14:reserve, +12:u00:4.3.1.2., +10:u03:cells,, +11:u05:reserve, +28:u06:slotOffset/channelOffset, +8:u00:Soft, +13:u01:contrast,, +12:u02:contains, +10:u11:cells,, +11:u13:reserve, +28:u14:slotoffset/channeloffset, +10:u02:cells,, +11:u04:reserve, +28:u05:slotOffset/channelOffset, +13:u00:contrast,, +12:u01:contains, +13:u08:negotiate, +10:u10:cells,, +11:u12:reserve, +28:u13:slotoffset/channeloffset, +8:u23:rese, +10:u01:cells,, +11:u03:reserve, +28:u04:slotOffset/channelOffset, +12:u00:contains, +13:u07:negotiate, +11:u11:reserve, +28:u12:slotoffset/channeloffset, +10:u00:cells,, +11:u02:reserve, +28:u03:slotOffset/channelOffset, +13:u06:negotiate, +11:u10:reserve, +28:u11:slotoffset/channeloffset, +11:u01:reserve, +28:u02:slotOffset/channelOffset, +8:u08:rate, +13:u05:negotiate, +11:u08:dynamic, +28:u10:slotoffset/channeloffset, +11:u00:reserve, +28:u01:slotOffset/channelOffset, +13:u04:negotiate, +11:u07:dynamic, +28:u00:slotOffset/channelOffset, +8:u07:rate, +13:u03:negotiate, +11:u06:dynamic, +8:u06:rate, +13:u02:negotiate, +11:u05:dynamic, +8:u14:rate, +8:u05:rate, +13:u01:negotiate, +11:u04:dynamic, +7:u08:29], +8:u13:rate, +8:u04:rate, +13:u00:negotiate, +11:u03:dynamic, +7:u07:29], +8:u12:rate, +7:u22:rat, +8:u23:rate, +8:u03:rate, +11:u02:dynamic, +7:u06:29], +8:u11:rate, +8:u02:rate, +11:u01:dynamic, +7:u05:29], +8:u10:rate, +8:u01:rate, +11:u00:dynamic, +7:u04:29], +8:u00:rate, +7:u03:29], +12:u08:dynamics, +9:u08:logic, +7:u02:29], +12:u07:dynamics, +7:u01:29], +12:u06:dynamics, +9:u07:logic, +7:u00:29], +12:u05:dynamics, +9:u06:logic, +12:u04:dynamics, +9:u14:logic, +9:u05:logic, +12:u03:dynamics, +8:u08:onto, +9:u13:logic, +10:u14:obtain, +9:u04:logic, +30:u08:+------------------------+, +12:u02:dynamics, +8:u07:onto, +9:u12:logic, +10:u13:obtain, +7:u22:log, +8:u23:logi, +9:u03:logic, +12:u01:dynamics, +8:u06:onto, +9:u11:logic, +10:u12:obtain, +6:u21:ob, +7:u22:obt, +8:u23:obta, +9:u02:logic, +30:u07:+------------------------+, +12:u00:dynamics, +8:u05:onto, +9:u10:logic, +10:u11:obtain, +9:u01:logic, +30:u06:+------------------------+, +8:u04:onto, +10:u10:obtain, +30:u14:+------------------------+, +9:u00:logic, +30:u05:+------------------------+, +8:u03:onto, +30:u13:+------------------------+, +28:uI2:------------------------, +30:u04:+------------------------+, +8:u02:onto, +30:u12:+------------------------+, +28:uI1:------------------------, +30:u03:+------------------------+, +8:u01:onto, +30:u11:+------------------------+, +28:uI0:------------------------, +30:u02:+------------------------+, +8:u00:onto, +13:u08:Bandwidth, +30:u10:+------------------------+, +30:u01:+------------------------+, +13:u07:Bandwidth, +30:u00:+------------------------+, +13:u06:Bandwidth, +13:u05:Bandwidth, +13:u04:Bandwidth, +13:u03:Bandwidth, +13:u02:Bandwidth, +13:u01:Bandwidth, +13:u00:Bandwidth, +10:u08:Device, +10:u07:Device, +5:u08:B, +10:u06:Device, +5:u07:B, +6:u08:8:, +10:u14:device, +10:u05:Device, +13:u08:[RFC8480], +5:u06:B, +6:u07:8:, +10:u13:device, +10:u04:Device, +9:u08:freed, +5:u05:B, +6:u06:8:, +10:u12:device, +7:u22:Dev, +8:u23:Devi, +10:u03:Device, +13:u07:[RFC8480], +5:u04:B, +6:u05:8:, +10:u11:device, +6:uI2::/, +10:u02:Device, +13:u06:[RFC8480], +9:u07:freed, +13:u08:schedule,, +5:u03:B, +6:u04:8:, +8:u08:peer, +10:u10:device, +13:u14:[rfc8480], +6:uI1::/, +10:u01:Device, +13:u05:[RFC8480], +9:u06:freed, +5:u02:B, +6:u03:8:, +8:u07:peer, +7:u08:but, +13:u13:[rfc8480], +9:u14:freed, +6:uI0::/, +10:u00:Device, +13:u04:[RFC8480], +9:u05:freed, +13:u07:schedule,, +5:u01:B, +6:u02:8:, +8:u06:peer, +7:u07:but, +13:u12:[rfc8480], +9:u13:freed, +13:u03:[RFC8480], +9:u04:freed, +13:u06:schedule,, +5:u00:B, +6:u01:8:, +8:u05:peer, +7:u06:but, +13:u11:[rfc8480], +9:u12:freed, +13:u14:schedule,, +8:u23:free, +13:u02:[RFC8480], +9:u03:freed, +13:u05:schedule,, +7:u08:MSF, +6:u00:8:, +8:u04:peer, +7:u05:but, +15:u08:consistency, +13:u10:[rfc8480], +9:u11:freed, +13:u13:schedule,, +13:u01:[RFC8480], +9:u02:freed, +13:u04:schedule,, +14:u08:functions., +8:u03:peer, +7:u04:but, +15:u07:consistency, +25:u08:[I-D.ietf-6tisch-msf], +9:u10:freed, +13:u12:schedule,, +9:u14:peers, +13:u00:[RFC8480], +9:u01:freed, +13:u03:schedule,, +7:u07:MSF, +14:u08:discovery,, +8:u02:peer, +7:u03:but, +15:u06:consistency, +25:u07:[I-D.ietf-6tisch-msf], +13:u11:schedule,, +9:u13:peers, +9:u14:final, +9:u00:freed, +13:u02:schedule,, +7:u06:MSF, +14:u07:functions., +8:u01:peer, +7:u02:but, +15:u05:consistency, +25:u06:[I-D.ietf-6tisch-msf], +13:u10:schedule,, +9:u12:peers, +9:u13:final, +7:u14:msf, +7:u22:pee, +8:u23:peer, +13:u01:schedule,, +7:u05:MSF, +14:u06:functions., +14:u07:discovery,, +8:u00:peer, +7:u01:but, +15:u04:consistency, +25:u05:[I-D.ietf-6tisch-msf], +9:u11:peers, +9:u12:final, +7:u13:msf, +14:u14:functions., +7:u22:fin, +8:u23:fina, +13:u00:schedule,, +7:u04:MSF, +14:u05:functions., +14:u06:discovery,, +8:u08:hash, +7:u00:but, +15:u03:consistency, +25:u04:[I-D.ietf-6tisch-msf], +9:u10:peers, +9:u11:final, +7:u12:msf, +14:u13:functions., +14:u14:discovery,, +6:u21:MS, +7:u22:MSF, +7:u23:MSF, +8:uI2:.-[], +7:u03:MSF, +14:u04:functions., +14:u05:discovery,, +14:u08:installing, +15:u02:consistency, +25:u03:[I-D.ietf-6tisch-msf], +9:u10:final, +7:u11:msf, +14:u12:functions., +14:u13:discovery,, +8:uI1:.-[], +7:u02:MSF, +14:u03:functions., +14:u04:discovery,, +8:u07:hash, +11:u08:derived, +15:u01:consistency, +25:u02:[I-D.ietf-6tisch-msf], +7:u10:msf, +14:u11:functions., +14:u12:discovery,, +11:u14:receive, +8:uI0:.-[], +7:u01:MSF, +14:u02:functions., +14:u03:discovery,, +8:u06:hash, +14:u07:installing, +15:u00:consistency, +25:u01:[I-D.ietf-6tisch-msf], +14:u10:functions., +14:u11:discovery,, +11:u13:receive, +8:u14:hash, +7:uI2:-/,, +7:u00:MSF, +14:u01:functions., +14:u02:discovery,, +8:u05:hash, +14:u06:installing, +11:u07:derived, +11:u08:parents, +25:u00:[I-D.ietf-6tisch-msf], +16:u08:child-parent, +14:u10:discovery,, +11:u12:receive, +8:u13:hash, +14:u14:installing, +7:uI1:-/,, +14:u00:functions., +14:u01:discovery,, +8:u04:hash, +14:u05:installing, +11:u06:derived, +16:u07:child-parent, +11:u11:receive, +8:u12:hash, +14:u13:installing, +11:u14:derived, +8:u23:hash, +7:uI0:-/,, +14:u00:discovery,, +8:u03:hash, +14:u04:installing, +11:u05:derived, +11:u07:parents, +16:u08:provisioned., +16:u06:child-parent, +12:u08:whenever, +11:u10:receive, +8:u11:hash, +14:u12:installing, +11:u13:derived, +8:u02:hash, +14:u03:installing, +11:u04:derived, +11:u06:parents, +16:u05:child-parent, +12:u07:whenever, +8:u10:hash, +14:u11:installing, +11:u12:derived, +11:u14:parents, +7:u22:der, +8:u23:deri, +7:uI2:-,/, +8:u01:hash, +14:u02:installing, +11:u03:derived, +11:u05:parents, +16:u07:provisioned., +16:u04:child-parent, +12:u06:whenever, +14:u10:installing, +11:u11:derived, +11:u13:parents, +7:uI1:-,/, +8:u00:hash, +14:u01:installing, +11:u02:derived, +11:u04:parents, +16:u06:provisioned., +16:u03:child-parent, +12:u05:whenever, +11:u10:derived, +11:u12:parents, +16:u14:provisioned., +8:u23:pare, +7:uI0:-,/, +7:uI2:-/-, +14:u00:installing, +11:u01:derived, +11:u03:parents, +16:u05:provisioned., +16:u02:child-parent, +12:u04:whenever, +7:u08:30], +11:u11:parents, +16:u13:provisioned., +7:uI1:-/-, +11:u00:derived, +11:u02:parents, +16:u04:provisioned., +16:u01:child-parent, +12:u03:whenever, +7:u07:30], +11:u10:parents, +16:u12:provisioned., +7:uI0:-/-, +11:u01:parents, +16:u03:provisioned., +16:u00:child-parent, +12:u02:whenever, +7:u06:30], +16:u11:provisioned., +11:u00:parents, +16:u02:provisioned., +12:u01:whenever, +7:u05:30], +16:u10:provisioned., +16:u01:provisioned., +12:u00:whenever, +7:u04:30], +16:u00:provisioned., +7:u03:30], +7:u02:30], +7:u01:30], +14:u08:maintained, +7:u00:30], +9:uI2:[](),, +9:uI1:[](),, +14:u07:maintained, +16:u08:Transmission, +6:u08:OF, +9:uI0:[](),, +14:u06:maintained, +13:u08:maintains, +6:u07:OF, +9:u08:Count, +14:u14:maintained, +14:u05:maintained, +16:u07:Transmission, +6:u06:OF, +9:u07:Count, +14:u13:maintained, +14:u04:maintained, +16:u06:Transmission, +13:u07:maintains, +9:u08:entry, +6:u05:OF, +9:u06:Count, +8:u08:feed, +14:u12:maintained, +7:u22:mai, +8:u23:main, +14:u03:maintained, +16:u05:Transmission, +13:u06:maintains, +6:u04:OF, +9:u05:Count, +8:u07:feed, +14:u11:maintained, +13:u14:maintains, +14:u02:maintained, +16:u04:Transmission, +13:u05:maintains, +9:u07:entry, +6:u03:OF, +9:u04:Count, +8:u06:feed, +14:u10:maintained, +13:u13:maintains, +14:u01:maintained, +16:u03:Transmission, +13:u04:maintains, +9:u06:entry, +6:u02:OF, +9:u03:Count, +8:u05:feed, +13:u12:maintains, +9:u14:entry, +14:u00:maintained, +16:u02:Transmission, +13:u03:maintains, +9:u05:entry, +6:u01:OF, +9:u02:Count, +8:u04:feed, +13:u11:maintains, +9:u13:entry, +16:u01:Transmission, +13:u02:maintains, +9:u04:entry, +13:u08:indicator, +6:u00:OF, +9:u01:Count, +8:u03:feed, +13:u10:maintains, +9:u12:entry, +16:u00:Transmission, +13:u01:maintains, +9:u03:entry, +9:u00:Count, +8:u02:feed, +10:u08:(LQI),, +9:u11:entry, +13:u00:maintains, +9:u02:entry, +13:u07:indicator, +8:u01:feed, +10:u07:(LQI),, +9:u10:entry, +9:u14:e.g.,, +9:u01:entry, +13:u06:indicator, +11:u08:compute, +8:u00:feed, +10:u06:(LQI),, +9:u13:e.g.,, +13:u14:indicator, +9:uI2:..,(), +9:u00:entry, +13:u05:indicator, +10:u05:(LQI),, +9:u12:e.g.,, +13:u13:indicator, +9:uI1:..,(), +13:u04:indicator, +11:u07:compute, +10:u04:(LQI),, +11:u08:parent., +9:u11:e.g.,, +13:u12:indicator, +9:uI0:..,(), +13:u03:indicator, +11:u06:compute, +9:u08:tuned, +10:u03:(LQI),, +11:u07:parent., +9:u10:e.g.,, +13:u11:indicator, +11:u14:compute, +13:u02:indicator, +11:u05:compute, +10:u02:(LQI),, +11:u06:parent., +13:u10:indicator, +11:u13:compute, +13:u01:indicator, +11:u04:compute, +9:u07:tuned, +15:u08:periodicity, +10:u01:(LQI),, +11:u05:parent., +11:u12:compute, +13:u00:indicator, +11:u03:compute, +9:u06:tuned, +14:u08:augmenting, +10:u00:(LQI),, +11:u04:parent., +11:u11:compute, +9:u14:tuned, +11:u02:compute, +9:u05:tuned, +15:u07:periodicity, +11:u03:parent., +11:u10:compute, +9:u13:tuned, +11:u01:compute, +9:u04:tuned, +15:u06:periodicity, +14:u07:augmenting, +11:u02:parent., +9:u12:tuned, +15:u14:periodicity, +6:u21:tu, +7:u22:tun, +8:u23:tune, +11:u00:compute, +9:u03:tuned, +15:u05:periodicity, +14:u06:augmenting, +11:u01:parent., +9:u11:tuned, +15:u13:periodicity, +14:u14:augmenting, +6:u21:OF, +6:u22:OF, +6:u23:OF, +10:uI2:...()., +9:u02:tuned, +15:u04:periodicity, +14:u05:augmenting, +11:u00:parent., +9:u10:tuned, +15:u12:periodicity, +14:u13:augmenting, +12:u14:dynamics, +8:u23:peri, +10:uI1:...()., +9:u01:tuned, +15:u03:periodicity, +14:u04:augmenting, +15:u11:periodicity, +14:u12:augmenting, +12:u13:dynamics, +7:u22:aug, +8:u23:augm, +10:uI0:...()., +9:u00:tuned, +15:u02:periodicity, +14:u03:augmenting, +15:u08:configuring, +15:u10:periodicity, +14:u11:augmenting, +12:u12:dynamics, +6:u21:dy, +7:u22:dyn, +8:u23:dyna, +15:u01:periodicity, +14:u02:augmenting, +13:u08:instance,, +14:u10:augmenting, +12:u11:dynamics, +7:uI2:,(), +15:u00:periodicity, +14:u01:augmenting, +15:u07:configuring, +10:u08:(EBs),, +16:u08:piggybacking, +12:u10:dynamics, +11:u14:6tisch,, +6:u21:So, +7:u22:Som, +8:u23:Some, +7:uI1:,(), +14:u00:augmenting, +15:u06:configuring, +13:u07:instance,, +16:u07:piggybacking, +11:u13:6tisch,, +15:u14:configuring, +7:uI0:,(), +15:u05:configuring, +13:u06:instance,, +10:u07:(EBs),, +16:u06:piggybacking, +10:u08:issues, +11:u12:6tisch,, +15:u13:configuring, +13:u14:instance,, +15:u04:configuring, +13:u05:instance,, +10:u06:(EBs),, +16:u05:piggybacking, +10:u07:issues, +7:u08:EBs, +11:u11:6tisch,, +15:u12:configuring, +13:u13:instance,, +10:u14:(ebs),, +15:u03:configuring, +13:u04:instance,, +10:u05:(EBs),, +9:u08:Nodes, +16:u04:piggybacking, +10:u06:issues, +7:u07:EBs, +11:u10:6tisch,, +15:u11:configuring, +13:u12:instance,, +10:u13:(ebs),, +8:u14:size, +8:uI2:(),,, +15:u02:configuring, +13:u03:instance,, +10:u04:(EBs),, +16:u08:synchronized, +16:u03:piggybacking, +10:u05:issues, +7:u06:EBs, +15:u10:configuring, +13:u11:instance,, +10:u12:(ebs),, +8:u13:size, +7:u22:(EB, +8:u23:(EBs, +8:uI1:(),,, +15:u01:configuring, +13:u02:instance,, +10:u03:(EBs),, +9:u07:Nodes, +15:u08:frame-based, +16:u02:piggybacking, +10:u04:issues, +7:u05:EBs, +13:u10:instance,, +10:u11:(ebs),, +8:u12:size, +8:uI0:(),,, +15:u00:configuring, +13:u01:instance,, +10:u02:(EBs),, +9:u06:Nodes, +16:u07:synchronized, +11:u08:battery, +16:u01:piggybacking, +10:u03:issues, +7:u04:EBs, +10:u10:(ebs),, +8:u11:size, +13:u00:instance,, +10:u01:(EBs),, +9:u05:Nodes, +16:u06:synchronized, +15:u07:frame-based, +16:u00:piggybacking, +10:u02:issues, +7:u03:EBs, +8:u08:life, +8:u10:size, +16:u14:synchronized, +10:u00:(EBs),, +9:u04:Nodes, +16:u05:synchronized, +15:u06:frame-based, +11:u07:battery, +10:u01:issues, +7:u02:EBs, +8:u07:life, +16:u13:synchronized, +15:u14:frame-based, +9:u03:Nodes, +16:u04:synchronized, +15:u05:frame-based, +11:u06:battery, +10:u00:issues, +7:u01:EBs, +8:u06:life, +16:u12:synchronized, +15:u13:frame-based, +11:u14:battery, +9:u02:Nodes, +16:u03:synchronized, +15:u04:frame-based, +11:u05:battery, +7:u00:EBs, +8:u05:life, +16:u11:synchronized, +15:u12:frame-based, +11:u13:battery, +8:u23:fram, +9:u01:Nodes, +16:u02:synchronized, +15:u03:frame-based, +11:u04:battery, +8:u04:life, +7:u08:31], +16:u10:synchronized, +15:u11:frame-based, +11:u12:battery, +7:u22:bat, +8:u23:batt, +9:u00:Nodes, +16:u01:synchronized, +15:u02:frame-based, +11:u03:battery, +8:u03:life, +7:u07:31], +15:u10:frame-based, +11:u11:battery, +16:u00:synchronized, +15:u01:frame-based, +11:u02:battery, +8:u02:life, +7:u06:31], +11:u10:battery, +15:u00:frame-based, +11:u01:battery, +11:u08:somehow, +8:u01:life, +7:u05:31], +11:u00:battery, +8:u00:life, +7:u04:31], +15:u08:coordinated, +11:u07:somehow, +7:u03:31], +15:u07:coordinated, +11:u06:somehow, +7:u02:31], +15:u06:coordinated, +11:u14:somehow, +11:u05:somehow, +7:u01:31], +15:u05:coordinated, +11:u13:somehow, +11:u04:somehow, +7:u00:31], +15:u04:coordinated, +11:u08:entity., +11:u12:somehow, +11:u03:somehow, +19:u08:synchronization, +15:u03:coordinated, +11:u07:entity., +11:u11:somehow, +11:u02:somehow, +15:u02:coordinated, +11:u06:entity., +8:u08:loop, +11:u10:somehow, +11:u01:somehow, +19:u07:synchronization, +12:u08:Instance, +15:u01:coordinated, +11:u05:entity., +8:u07:loop, +13:u08:isolated., +11:u00:somehow, +19:u06:synchronization, +12:u08:referred, +15:u00:coordinated, +11:u04:entity., +8:u06:loop, +13:u07:isolated., +19:u14:synchronization, +19:u05:synchronization, +12:u07:Instance, +8:u08:TSGI, +11:u03:entity., +8:u05:loop, +13:u06:isolated., +19:u13:synchronization, +19:u04:synchronization, +12:u06:Instance, +12:u07:referred, +11:u02:entity., +8:u04:loop, +13:u05:isolated., +19:u12:synchronization, +19:u03:synchronization, +12:u05:Instance, +12:u06:referred, +8:u07:TSGI, +14:u08:Versions"., +11:u01:entity., +8:u03:loop, +13:u04:isolated., +9:u08:3.1.3, +19:u11:synchronization, +12:u14:referred, +19:u02:synchronization, +12:u04:Instance, +12:u05:referred, +8:u06:TSGI, +11:u00:entity., +8:u02:loop, +13:u03:isolated., +9:u07:3.1.3, +19:u10:synchronization, +12:u13:referred, +8:u14:tsgi, +19:u01:synchronization, +12:u03:Instance, +12:u04:referred, +8:u05:TSGI, +14:u07:Versions"., +8:u01:loop, +13:u02:isolated., +9:u06:3.1.3, +12:u12:referred, +8:u13:tsgi, +19:u00:synchronization, +12:u02:Instance, +12:u03:referred, +8:u04:TSGI, +14:u06:Versions"., +8:u00:loop, +13:u01:isolated., +9:u05:3.1.3, +15:u08:Positioning, +12:u11:referred, +8:u12:tsgi, +14:u14:versions"., +7:u22:TSG, +8:u23:TSGI, +12:uI2:..[],",,, +12:u01:Instance, +12:u02:referred, +8:u03:TSGI, +14:u05:Versions"., +13:u00:isolated., +9:u04:3.1.3, +15:u07:Positioning, +12:u10:referred, +8:u11:tsgi, +14:u13:versions"., +12:uI1:..[],",,, +12:u00:Instance, +12:u01:referred, +8:u02:TSGI, +14:u04:Versions"., +9:u03:3.1.3, +15:u06:Positioning, +8:u10:tsgi, +14:u12:versions"., +8:u23:Vers, +12:uI0:..[],",,, +12:u00:referred, +8:u01:TSGI, +14:u03:Versions"., +9:u02:3.1.3, +15:u05:Positioning, +14:u11:versions"., +8:u00:TSGI, +14:u02:Versions"., +9:u01:3.1.3, +15:u04:Positioning, +14:u10:versions"., +14:u01:Versions"., +9:u00:3.1.3, +15:u03:Positioning, +15:u14:synchronize, +14:u00:Versions"., +15:u02:Positioning, +15:u13:synchronize, +7:u08:get, +15:u01:Positioning, +15:u12:synchronize, +15:u00:Positioning, +7:u08:out, +15:u11:synchronize, +7:u07:get, +12:u08:Priority, +7:u07:out, +15:u10:synchronize, +7:u06:get, +11:u08:serving, +7:u06:out, +7:u14:get, +7:u05:get, +12:u07:Priority, +7:u05:out, +7:u13:get, +7:u04:get, +12:u06:Priority, +11:u07:serving, +13:u08:DAGRank(), +7:u04:out, +7:u12:get, +12:u14:priority, +6:u21:ge, +7:u22:get, +7:u23:get, +7:u03:get, +12:u05:Priority, +11:u06:serving, +9:u08:"Rank, +7:u03:out, +7:u11:get, +12:u13:priority, +11:u14:serving, +7:u02:get, +12:u04:Priority, +11:u05:serving, +13:u07:DAGRank(), +7:u02:out, +16:u08:Comparison"., +7:u10:get, +12:u12:priority, +11:u13:serving, +7:u22:Pri, +8:u23:Prio, +7:u01:get, +12:u03:Priority, +11:u04:serving, +13:u06:DAGRank(), +9:u07:"Rank, +17:u08:Architecture,, +7:u01:out, +16:u07:Comparison"., +16:u08:provisioning, +12:u11:priority, +11:u12:serving, +13:u14:dagrank(), +7:u00:get, +12:u02:Priority, +11:u03:serving, +13:u05:DAGRank(), +9:u06:"Rank, +7:u00:out, +16:u06:Comparison"., +16:u07:provisioning, +11:u08:whereas, +12:u10:priority, +11:u11:serving, +13:u13:dagrank(), +9:u14:"rank, +11:uI2:()..[],, +12:u01:Priority, +11:u02:serving, +13:u04:DAGRank(), +9:u05:"Rank, +17:u07:Architecture,, +16:u05:Comparison"., +16:u06:provisioning, +11:u07:whereas, +8:u08:down, +11:u10:serving, +13:u12:dagrank(), +9:u13:"rank, +7:u22:DAG, +8:u23:DAGR, +11:uI1:()..[],, +12:u00:Priority, +11:u01:serving, +13:u03:DAGRank(), +9:u04:"Rank, +17:u06:Architecture,, +16:u04:Comparison"., +16:u05:provisioning, +11:u06:whereas, +8:u07:down, +14:u08:configured, +13:u11:dagrank(), +9:u12:"rank, +17:u14:architecture,, +7:u22:"Ra, +8:u23:"Ran, +11:uI0:()..[],, +11:u00:serving, +13:u02:DAGRank(), +9:u03:"Rank, +17:u05:Architecture,, +9:u08:TSGI,, +16:u03:Comparison"., +16:u04:provisioning, +11:u05:whereas, +8:u06:down, +14:u07:configured, +13:u10:dagrank(), +9:u11:"rank, +17:u13:architecture,, +13:u01:DAGRank(), +9:u02:"Rank, +17:u04:Architecture,, +16:u02:Comparison"., +16:u03:provisioning, +11:u04:whereas, +8:u05:down, +14:u06:configured, +9:u10:"rank, +17:u12:architecture,, +13:u00:DAGRank(), +9:u01:"Rank, +17:u03:Architecture,, +9:u07:TSGI,, +16:u01:Comparison"., +16:u02:provisioning, +11:u03:whereas, +8:u04:down, +14:u05:configured, +17:u11:architecture,, +9:u00:"Rank, +17:u02:Architecture,, +9:u06:TSGI,, +16:u00:Comparison"., +16:u01:provisioning, +11:u02:whereas, +8:u03:down, +14:u04:configured, +17:u10:architecture,, +9:u14:tsgi,, +17:u01:Architecture,, +9:u05:TSGI,, +16:u00:provisioning, +11:u01:whereas, +8:u02:down, +14:u03:configured, +9:u13:tsgi,, +17:u00:Architecture,, +9:u04:TSGI,, +11:u00:whereas, +8:u01:down, +14:u02:configured, +9:u12:tsgi,, +9:u03:TSGI,, +8:u00:down, +14:u01:configured, +9:u11:tsgi,, +9:u02:TSGI,, +14:u00:configured, +7:u08:own, +9:u10:tsgi,, +9:u01:TSGI,, +7:u07:own, +9:u00:TSGI,, +7:u06:own, +7:u05:own, +7:u08:32], +7:u04:own, +7:u07:32], +7:u03:own, +7:u06:32], +7:u02:own, +7:u05:32], +7:u01:own, +7:u04:32], +7:u00:own, +7:u03:32], +7:u02:32], +7:u01:32], +7:u00:32], +14:u08:contending, +8:u08:free, +8:u07:free, +14:u07:contending, +8:u06:free, +14:u06:contending, +8:u05:free, +14:u14:contending, +14:u05:contending, +13:u08:Evolution, +8:u04:free, +11:u08:adopted, +14:u13:contending, +14:u04:contending, +8:u03:free, +11:u07:adopted, +9:u08:(LTE), +14:u12:contending, +14:u03:contending, +13:u07:Evolution, +8:u02:free, +11:u06:adopted, +9:u07:(LTE), +14:u11:contending, +14:u02:contending, +13:u06:Evolution, +14:u08:formatting, +8:u01:free, +11:u05:adopted, +9:u06:(LTE), +16:u08:Distribution, +14:u10:contending, +13:u14:evolution, +14:u01:contending, +13:u05:Evolution, +8:u00:free, +11:u04:adopted, +9:u05:(LTE), +16:u07:Distribution, +13:u13:evolution, +14:u00:contending, +13:u04:Evolution, +14:u07:formatting, +11:u03:adopted, +9:u04:(LTE), +16:u06:Distribution, +7:u08:CDU, +13:u12:evolution, +7:u22:Evo, +8:u23:Evol, +13:u03:Evolution, +14:u06:formatting, +11:u02:adopted, +9:u03:(LTE), +16:u05:Distribution, +7:u07:CDU, +13:u11:evolution, +14:u14:formatting, +13:u02:Evolution, +14:u05:formatting, +14:u08:timeslots), +11:u01:adopted, +9:u02:(LTE), +16:u04:Distribution, +7:u06:CDU, +12:u08:channels, +13:u10:evolution, +14:u13:formatting, +13:u01:Evolution, +14:u04:formatting, +12:u08:(indexed, +11:u00:adopted, +9:u01:(LTE), +16:u03:Distribution, +7:u05:CDU, +12:u07:channels, +14:u12:formatting, +13:u00:Evolution, +14:u03:formatting, +14:u07:timeslots), +10:u08:models, +9:u00:(LTE), +16:u02:Distribution, +7:u04:CDU, +12:u06:channels, +14:u11:formatting, +14:u02:formatting, +14:u06:timeslots), +12:u07:(indexed, +18:u08:responsibility, +16:u01:Distribution, +7:u03:CDU, +12:u05:channels, +14:u10:formatting, +14:u14:timeslots), +7:uI2:()(, +14:u01:formatting, +14:u05:timeslots), +12:u06:(indexed, +10:u07:models, +16:u00:Distribution, +7:u02:CDU, +12:u04:channels, +14:u13:timeslots), +12:u14:(indexed, +7:uI1:()(, +14:u00:formatting, +14:u04:timeslots), +12:u05:(indexed, +10:u06:models, +18:u07:responsibility, +8:u08:scan, +7:u01:CDU, +12:u03:channels, +14:u12:timeslots), +12:u13:(indexed, +7:uI0:()(, +14:u03:timeslots), +12:u04:(indexed, +10:u05:models, +18:u06:responsibility, +7:u00:CDU, +12:u02:channels, +14:u11:timeslots), +12:u12:(indexed, +18:u14:responsibility, +6:u21:(i, +7:u22:(in, +8:u23:(ind, +14:u02:timeslots), +12:u03:(indexed, +10:u04:models, +18:u05:responsibility, +8:u07:scan, +16:u08:milliseconds, +12:u01:channels, +14:u10:timeslots), +12:u11:(indexed, +18:u13:responsibility, +14:u01:timeslots), +12:u02:(indexed, +10:u03:models, +18:u04:responsibility, +8:u06:scan, +12:u00:channels, +12:u10:(indexed, +18:u12:responsibility, +8:u14:scan, +14:u00:timeslots), +12:u01:(indexed, +10:u02:models, +18:u03:responsibility, +8:u05:scan, +16:u07:milliseconds, +18:u11:responsibility, +8:u13:scan, +12:u00:(indexed, +10:u01:models, +18:u02:responsibility, +8:u04:scan, +16:u06:milliseconds, +10:u08:device, +18:u10:responsibility, +8:u12:scan, +16:u14:milliseconds, +7:u22:sca, +8:u23:scan, +10:u00:models, +18:u01:responsibility, +8:u03:scan, +16:u05:milliseconds, +17:u08:architecture., +8:u11:scan, +16:u13:milliseconds, +18:u00:responsibility, +8:u02:scan, +16:u04:milliseconds, +10:u07:device, +12:u08:rotation, +17:u07:architecture., +8:u10:scan, +16:u12:milliseconds, +7:u22:mil, +8:u23:mill, +8:u01:scan, +16:u03:milliseconds, +10:u06:device, +17:u06:architecture., +16:u11:milliseconds, +8:u00:scan, +16:u02:milliseconds, +10:u05:device, +12:u07:rotation, +17:u05:architecture., +16:u10:milliseconds, +16:u01:milliseconds, +10:u04:device, +12:u06:rotation, +17:u04:architecture., +12:u14:rotation, +16:u00:milliseconds, +10:u03:device, +12:u05:rotation, +17:u03:architecture., +12:u13:rotation, +10:u02:device, +12:u04:rotation, +10:u08:reduce, +17:u02:architecture., +11:u08:operate, +12:u12:rotation, +10:u01:device, +12:u03:rotation, +17:u01:architecture., +11:u07:operate, +12:u11:rotation, +10:u00:device, +12:u02:rotation, +10:u07:reduce, +17:u00:architecture., +11:u06:operate, +12:u10:rotation, +10:u14:domain, +12:u01:rotation, +10:u06:reduce, +11:u05:operate, +10:u13:domain, +10:u14:reduce, +12:u00:rotation, +10:u05:reduce, +11:u04:operate, +10:u12:domain, +10:u13:reduce, +7:u22:dom, +8:u23:doma, +10:u04:reduce, +11:u03:operate, +10:u11:domain, +10:u12:reduce, +10:u03:reduce, +11:u02:operate, +10:u10:domain, +10:u11:reduce, +10:u02:reduce, +11:u01:operate, +10:u08:aligns, +10:u10:reduce, +10:u01:reduce, +11:u00:operate, +10:u07:aligns, +12:u08:duration, +10:u00:reduce, +10:u06:aligns, +12:u07:duration, +10:u05:aligns, +12:u06:duration, +10:u04:aligns, +12:u05:duration, +7:u08:33], +10:u03:aligns, +12:u04:duration, +7:u07:33], +10:u02:aligns, +12:u03:duration, +7:u06:33], +10:u01:aligns, +12:u02:duration, +7:u05:33], +10:u00:aligns, +12:u01:duration, +7:u04:33], +12:u00:duration, +7:u03:33], +7:u02:33], +11:u08:aligned, +7:u01:33], +7:u00:33], +11:u07:aligned, +14:u14:precedence, +11:u06:aligned, +14:u13:precedence, +11:u14:aligned, +11:u05:aligned, +14:u12:precedence, +11:u13:aligned, +8:u23:prec, +11:u04:aligned, +14:u11:precedence, +11:u12:aligned, +11:u14:highest, +7:u22:ali, +8:u23:alig, +11:u03:aligned, +14:u10:precedence, +11:u11:aligned, +11:u13:highest, +11:u02:aligned, +8:u08:best, +11:u10:aligned, +11:u12:highest, +11:u01:aligned, +19:u08:(Differentiated, +11:u11:highest, +11:u00:aligned, +8:u07:best, +12:u08:outgoing, +19:u07:(Differentiated, +11:u10:highest, +8:u06:best, +19:u06:(Differentiated, +10:u08:queues, +8:u14:best, +8:u05:best, +12:u07:outgoing, +19:u05:(Differentiated, +10:u07:queues, +9:u08:given, +8:u13:best, +9:uI2:([])., +8:u04:best, +12:u06:outgoing, +19:u04:(Differentiated, +10:u06:queues, +9:u07:given, +8:u12:best, +12:u14:outgoing, +7:u22:bes, +8:u23:best, +9:uI1:([])., +8:u03:best, +12:u05:outgoing, +19:u03:(Differentiated, +10:u05:queues, +9:u06:given, +8:u11:best, +12:u13:outgoing, +9:uI0:([])., +8:u02:best, +12:u04:outgoing, +9:u08:whole, +19:u02:(Differentiated, +10:u04:queues, +9:u05:given, +8:u08:2.1), +8:u10:best, +12:u12:outgoing, +8:u23:outg, +8:u01:best, +12:u03:outgoing, +19:u01:(Differentiated, +10:u03:queues, +9:u04:given, +8:u07:2.1), +12:u11:outgoing, +8:u00:best, +12:u02:outgoing, +9:u07:whole, +19:u00:(Differentiated, +10:u02:queues, +9:u03:given, +8:u06:2.1), +12:u10:outgoing, +12:u01:outgoing, +9:u06:whole, +10:u01:queues, +9:u02:given, +8:u05:2.1), +9:u14:whole, +12:u00:outgoing, +9:u05:whole, +10:u00:queues, +9:u01:given, +8:u04:2.1), +9:u13:whole, +9:u04:whole, +13:u08:document,, +9:u00:given, +8:u03:2.1), +9:u12:whole, +10:u14:chunks, +7:u22:who, +8:u23:whol, +9:u03:whole, +8:u02:2.1), +9:u11:whole, +10:u13:chunks, +9:u02:whole, +13:u07:document,, +8:u01:2.1), +10:u08:static, +9:u10:whole, +10:u12:chunks, +9:u01:whole, +13:u06:document,, +8:u00:2.1), +10:u07:static, +10:u11:chunks, +13:u14:document,, +9:u00:whole, +13:u05:document,, +47:u08:+-----+-----+-----+-----+-----+-----+-----+, +10:u06:static, +15:u08:formatting., +10:u10:chunks, +13:u13:document,, +13:u04:document,, +10:u05:static, +15:u07:formatting., +13:u12:document,, +13:u03:document,, +47:u07:+-----+-----+-----+-----+-----+-----+-----+, +13:u08:chan.Off., +10:u04:static, +15:u06:formatting., +13:u11:document,, +7:uI2:[]-, +13:u02:document,, +47:u06:+-----+-----+-----+-----+-----+-----+-----+, +10:u03:static, +15:u05:formatting., +13:u10:document,, +47:u14:+-----+-----+-----+-----+-----+-----+-----+, +7:uI1:[]-, +13:u01:document,, +47:u05:+-----+-----+-----+-----+-----+-----+-----+, +13:u07:chan.Off., +10:u02:static, +15:u04:formatting., +47:u13:+-----+-----+-----+-----+-----+-----+-----+, +7:uI0:[]-, +13:u00:document,, +47:u04:+-----+-----+-----+-----+-----+-----+-----+, +13:u06:chan.Off., +10:u01:static, +15:u03:formatting., +47:u12:+-----+-----+-----+-----+-----+-----+-----+, +13:u14:chan.off., +47:u03:+-----+-----+-----+-----+-----+-----+-----+, +13:u05:chan.Off., +10:u00:static, +15:u02:formatting., +47:u11:+-----+-----+-----+-----+-----+-----+-----+, +13:u13:chan.off., +47:u02:+-----+-----+-----+-----+-----+-----+-----+, +13:u04:chan.Off., +15:u01:formatting., +47:u10:+-----+-----+-----+-----+-----+-----+-----+, +13:u12:chan.off., +47:u01:+-----+-----+-----+-----+-----+-----+-----+, +13:u03:chan.Off., +15:u00:formatting., +13:u11:chan.off., +47:u00:+-----+-----+-----+-----+-----+-----+-----+, +13:u02:chan.Off., +13:u10:chan.off., +13:u01:chan.Off., +13:u00:chan.Off., +7:u14:..., +6:u08:15, +7:u13:..., +6:u07:15, +7:u12:..., +6:u21:.., +7:u22:..., +7:u23:..., +6:u06:15, +7:u11:..., +6:u05:15, +7:u10:..., +6:u04:15, +6:u03:15, +6:u02:15, +6:u01:15, +6:u00:15, +6:u08:9:, +13:u08:ownership, +6:u07:9:, +6:u06:9:, +17:u08:appropriation, +13:u07:ownership, +6:u05:9:, +17:u07:appropriation, +13:u06:ownership, +6:u04:9:, +17:u06:appropriation, +13:u14:ownership, +13:u05:ownership, +6:u03:9:, +17:u05:appropriation, +7:u08:34], +13:u13:ownership, +13:u04:ownership, +6:u02:9:, +17:u04:appropriation, +7:u07:34], +13:u12:ownership, +13:u03:ownership, +6:u01:9:, +17:u03:appropriation, +7:u06:34], +13:u11:ownership, +13:u02:ownership, +6:u00:9:, +17:u02:appropriation, +7:u05:34], +13:u10:ownership, +13:u01:ownership, +11:u08:defends, +17:u01:appropriation, +7:u04:34], +13:u00:ownership, +17:u00:appropriation, +7:u03:34], +11:u07:defends, +7:u02:34], +11:u06:defends, +7:u01:34], +11:u14:defends, +11:u05:defends, +10:u08:parent, +7:u00:34], +11:u13:defends, +11:u04:defends, +16:u08:appropriated, +11:u12:defends, +8:u23:defe, +11:u03:defends, +10:u07:parent, +11:u08:domain., +11:u11:defends, +8:u23:whil, +11:u02:defends, +10:u06:parent, +16:u07:appropriated, +10:u08:manage, +11:u10:defends, +10:u14:parent, +11:u01:defends, +10:u05:parent, +16:u06:appropriated, +11:u07:domain., +10:u08:chunk., +10:u13:parent, +16:u14:appropriated, +11:u00:defends, +10:u04:parent, +16:u05:appropriated, +11:u06:domain., +10:u07:manage, +14:u08:Initially,, +10:u12:parent, +16:u13:appropriated, +11:u14:domain., +10:u03:parent, +16:u04:appropriated, +11:u05:domain., +10:u06:manage, +10:u07:chunk., +15:u08:dynamically, +10:u11:parent, +16:u12:appropriated, +11:u13:domain., +10:u14:manage, +8:u23:appr, +10:u02:parent, +16:u03:appropriated, +11:u04:domain., +10:u05:manage, +10:u06:chunk., +14:u07:Initially,, +13:u08:allocated, +10:u08:placed, +10:u10:parent, +16:u11:appropriated, +11:u12:domain., +10:u13:manage, +10:u14:chunk., +10:u01:parent, +16:u02:appropriated, +11:u03:domain., +10:u04:manage, +10:u05:chunk., +14:u06:Initially,, +15:u07:dynamically, +10:u07:placed, +21:u08:opportunistically, +16:u10:appropriated, +11:u11:domain., +10:u12:manage, +10:u13:chunk., +14:u14:initially,, +10:u00:parent, +16:u01:appropriated, +11:u02:domain., +10:u03:manage, +10:u04:chunk., +14:u05:Initially,, +15:u06:dynamically, +13:u07:allocated, +10:u06:placed, +21:u07:opportunistically, +11:u10:domain., +10:u11:manage, +10:u12:chunk., +14:u13:initially,, +15:u14:dynamically, +16:u00:appropriated, +11:u01:domain., +10:u02:manage, +10:u03:chunk., +14:u04:Initially,, +15:u05:dynamically, +13:u06:allocated, +10:u08:in-use, +10:u05:placed, +21:u06:opportunistically, +10:u10:manage, +10:u11:chunk., +14:u12:initially,, +15:u13:dynamically, +13:u14:allocated, +7:u22:Ini, +8:u23:Init, +11:u00:domain., +10:u01:manage, +10:u02:chunk., +14:u03:Initially,, +15:u04:dynamically, +13:u05:allocated, +10:u04:placed, +21:u05:opportunistically, +10:u10:chunk., +14:u11:initially,, +15:u12:dynamically, +13:u13:allocated, +10:u00:manage, +10:u01:chunk., +14:u02:Initially,, +15:u03:dynamically, +13:u04:allocated, +10:u07:in-use, +10:u03:placed, +21:u04:opportunistically, +14:u10:initially,, +15:u11:dynamically, +13:u12:allocated, +10:u00:chunk., +14:u01:Initially,, +15:u02:dynamically, +13:u03:allocated, +10:u06:in-use, +10:u02:placed, +21:u03:opportunistically, +15:u10:dynamically, +13:u11:allocated, +10:u14:in-use, +14:u00:Initially,, +15:u01:dynamically, +13:u02:allocated, +10:u05:in-use, +10:u01:placed, +21:u02:opportunistically, +13:u10:allocated, +10:u13:in-use, +15:u00:dynamically, +13:u01:allocated, +10:u04:in-use, +10:u00:placed, +21:u01:opportunistically, +10:u12:in-use, +7:u22:in-, +8:u23:in-u, +13:u00:allocated, +10:u03:in-use, +21:u00:opportunistically, +10:u11:in-use, +10:u02:in-use, +16:u08:mechanism(s), +10:u10:in-use, +8:uI2:,--,, +10:u01:in-use, +8:uI1:,--,, +10:u00:in-use, +16:u07:mechanism(s), +8:uI0:,--,, +16:u06:mechanism(s), +16:u14:mechanism(s), +16:u05:mechanism(s), +11:u08:shared,, +16:u13:mechanism(s), +16:u04:mechanism(s), +16:u12:mechanism(s), +16:u03:mechanism(s), +11:u07:shared,, +11:u08:initial, +16:u11:mechanism(s), +16:u02:mechanism(s), +11:u06:shared,, +16:u10:mechanism(s), +11:u14:shared,, +16:u01:mechanism(s), +11:u05:shared,, +11:u07:initial, +11:u13:shared,, +16:u00:mechanism(s), +11:u04:shared,, +11:u06:initial, +10:u08:needs., +11:u08:decided, +11:u12:shared,, +11:u14:initial, +11:u03:shared,, +11:u05:initial, +11:u07:decided, +11:u11:shared,, +11:u13:initial, +8:u14:case, +11:u02:shared,, +11:u04:initial, +10:u07:needs., +11:u06:decided, +11:u10:shared,, +11:u12:initial, +8:u13:case, +11:u01:shared,, +11:u03:initial, +10:u06:needs., +13:u08:unchanged, +11:u05:decided, +11:u11:initial, +8:u12:case, +10:u14:needs., +11:u00:shared,, +11:u02:initial, +10:u05:needs., +11:u04:decided, +9:u08:after, +11:u10:initial, +8:u11:case, +10:u13:needs., +11:u14:learned, +9:uI2:.-,,,, +11:u01:initial, +10:u04:needs., +13:u07:unchanged, +14:u08:implements, +11:u03:decided, +9:u07:after, +8:u10:case, +10:u12:needs., +11:u13:learned, +9:uI1:.-,,,, +11:u00:initial, +10:u03:needs., +13:u06:unchanged, +11:u02:decided, +9:u06:after, +10:u11:needs., +11:u12:learned, +13:u14:unchanged, +9:uI0:.-,,,, +10:uI2:..().,, +10:u02:needs., +13:u05:unchanged, +14:u07:implements, +11:u01:decided, +9:u05:after, +10:u10:needs., +11:u11:learned, +13:u13:unchanged, +13:u14:resulting, +10:uI1:..().,, +10:u01:needs., +13:u04:unchanged, +14:u06:implements, +11:u00:decided, +9:u04:after, +11:u10:learned, +13:u12:unchanged, +13:u13:resulting, +14:u14:implements, +7:u22:unc, +8:u23:unch, +10:uI0:..().,, +7:uI2:."", +10:u00:needs., +13:u03:unchanged, +14:u05:implements, +9:u03:after, +7:u08:35], +13:u11:unchanged, +13:u12:resulting, +14:u13:implements, +7:uI1:."", +13:u02:unchanged, +14:u04:implements, +9:u02:after, +7:u07:35], +13:u10:unchanged, +13:u11:resulting, +14:u12:implements, +7:uI0:."", +13:u01:unchanged, +14:u03:implements, +9:u01:after, +7:u06:35], +13:u10:resulting, +14:u11:implements, +13:u00:unchanged, +14:u02:implements, +9:u00:after, +7:u05:35], +14:u10:implements, +14:u01:implements, +7:u04:35], +14:u00:implements, +7:u03:35], +7:u02:35], +10:u08:4.4.1,, +17:u08:instantiation, +7:u01:35], +10:u07:4.4.1,, +9:uI2:...--, +7:u00:35], +10:u06:4.4.1,, +9:uI1:...--, +17:u07:instantiation, +10:u05:4.4.1,, +9:uI0:...--, +7:uI2:..,, +17:u06:instantiation, +10:u04:4.4.1,, +17:u14:instantiation, +7:uI1:..,, +17:u05:instantiation, +13:u08:implement, +10:u03:4.4.1,, +17:u13:instantiation, +7:uI0:..,, +17:u04:instantiation, +10:u02:4.4.1,, +17:u12:instantiation, +17:u03:instantiation, +13:u07:implement, +10:u01:4.4.1,, +17:u11:instantiation, +11:u14:between, +17:u02:instantiation, +13:u06:implement, +14:u08:bandwidth,, +10:u00:4.4.1,, +17:u10:instantiation, +11:u13:between, +13:u14:implement, +17:u01:instantiation, +13:u05:implement, +9:u08:allow, +8:u08:peak, +11:u12:between, +13:u13:implement, +7:u22:bet, +8:u23:betw, +17:u00:instantiation, +13:u04:implement, +14:u07:bandwidth,, +8:u07:peak, +11:u11:between, +13:u12:implement, +13:u03:implement, +14:u06:bandwidth,, +9:u07:allow, +8:u06:peak, +11:u10:between, +13:u11:implement, +14:u14:bandwidth,, +13:u02:implement, +14:u05:bandwidth,, +9:u06:allow, +8:u05:peak, +13:u10:implement, +14:u13:bandwidth,, +9:u14:allow, +13:u01:implement, +14:u04:bandwidth,, +9:u05:allow, +8:u04:peak, +14:u12:bandwidth,, +9:u13:allow, +13:u00:implement, +14:u03:bandwidth,, +9:u04:allow, +10:u08:global, +8:u03:peak, +14:u11:bandwidth,, +9:u12:allow, +14:u02:bandwidth,, +9:u03:allow, +8:u02:peak, +13:u08:knowledge, +14:u10:bandwidth,, +9:u11:allow, +14:u01:bandwidth,, +9:u02:allow, +10:u07:global, +8:u01:peak, +13:u07:knowledge, +14:u08:collisions, +9:u10:allow, +14:u00:bandwidth,, +9:u01:allow, +10:u06:global, +8:u08:(SF), +8:u00:peak, +13:u06:knowledge, +14:u07:collisions, +9:u00:allow, +10:u05:global, +13:u05:knowledge, +14:u06:collisions, +10:u04:global, +8:u07:(SF), +8:u08:part, +13:u04:knowledge, +14:u05:collisions, +6:u21:gl, +7:u22:glo, +8:u23:glob, +10:u03:global, +8:u06:(SF), +13:u03:knowledge, +14:u04:collisions, +8:u14:(sf), +10:u02:global, +8:u05:(SF), +8:u07:part, +13:u02:knowledge, +14:u03:collisions, +8:u13:(sf), +11:u14:dynamic, +7:u22:And, +7:u23:And, +10:u01:global, +8:u04:(SF), +8:u06:part, +13:u01:knowledge, +14:u02:collisions, +8:u12:(sf), +11:u13:dynamic, +8:u14:part, +7:u22:(SF, +8:u23:(SF), +10:u00:global, +8:u03:(SF), +8:u05:part, +13:u00:knowledge, +14:u01:collisions, +8:u11:(sf), +11:u12:dynamic, +8:u13:part, +8:u02:(SF), +8:u04:part, +14:u00:collisions, +8:u10:(sf), +11:u11:dynamic, +8:u12:part, +8:u01:(SF), +8:u03:part, +10:u08:layer,, +11:u10:dynamic, +8:u11:part, +8:u00:(SF), +8:u02:part, +8:u10:part, +11:u14:devices, +8:u01:part, +10:u07:layer,, +11:u08:request, +11:u13:devices, +8:u00:part, +10:u06:layer,, +11:u12:devices, +10:u14:layer,, +10:u05:layer,, +11:u07:request, +11:u11:devices, +10:u13:layer,, +10:u04:layer,, +11:u06:request, +11:u10:devices, +10:u12:layer,, +10:u03:layer,, +11:u05:request, +10:u11:layer,, +10:u02:layer,, +11:u04:request, +14:u08:monitoring, +10:u10:layer,, +10:u01:layer,, +11:u03:request, +10:u08:reside, +14:u07:monitoring, +10:u00:layer,, +11:u02:request, +14:u06:monitoring, +10:u14:remote, +11:u01:request, +10:u07:reside, +13:u08:composite, +14:u05:monitoring, +10:u13:remote, +11:u00:request, +10:u06:reside, +11:u08:buffers, +14:u04:monitoring, +10:u12:remote, +10:u14:reside, +7:u22:Rem, +8:u23:Remo, +10:u05:reside, +13:u07:composite, +14:u03:monitoring, +10:u11:remote, +10:u13:reside, +10:u04:reside, +13:u06:composite, +11:u07:buffers, +14:u02:monitoring, +10:u10:remote, +10:u12:reside, +13:u14:composite, +8:u23:resi, +10:u03:reside, +13:u05:composite, +11:u06:buffers, +14:u01:monitoring, +10:u11:reside, +13:u13:composite, +11:u14:buffers, +10:u02:reside, +13:u04:composite, +11:u05:buffers, +14:u00:monitoring, +10:u10:reside, +13:u12:composite, +11:u13:buffers, +15:u14:reliability, +10:u01:reside, +13:u03:composite, +11:u04:buffers, +7:u08:36], +13:u11:composite, +11:u12:buffers, +15:u13:reliability, +7:u22:buf, +8:u23:buff, +10:u00:reside, +13:u02:composite, +11:u03:buffers, +7:u07:36], +13:u10:composite, +11:u11:buffers, +15:u12:reliability, +13:u01:composite, +11:u02:buffers, +7:u06:36], +11:u10:buffers, +15:u11:reliability, +13:u00:composite, +11:u01:buffers, +7:u05:36], +15:u10:reliability, +11:u00:buffers, +7:u04:36], +8:u08:work, +7:u03:36], +8:u07:work, +7:u02:36], +8:u06:work, +7:u01:36], +8:u05:work, +7:u14:did, +7:u00:36], +8:u04:work, +11:u08:respect, +7:u13:did, +8:u03:work, +11:u07:respect, +7:u12:did, +7:u22:did, +7:u23:did, +8:u02:work, +11:u06:respect, +7:u11:did, +8:u01:work, +11:u05:respect, +7:u10:did, +8:u00:work, +11:u04:respect, +11:u03:respect, +12:u08:domains., +9:u08:(SDN), +11:u02:respect, +12:u07:domains., +12:uI2:[-.--],-, +11:u01:respect, +12:u06:domains., +12:uI1:[-.--],-, +9:u07:(SDN), +11:u00:respect, +12:u05:domains., +10:u08:Plane,, +12:uI0:[-.--],-, +9:u06:(SDN), +20:u08:Software-Defined, +12:u04:domains., +10:u07:Plane,, +9:u08:Plane, +9:u14:(sdn), +9:u05:(SDN), +12:u03:domains., +10:u06:Plane,, +9:u07:Plane, +9:u13:(sdn), +9:uI2:(),(), +9:u04:(SDN), +20:u07:Software-Defined, +12:u02:domains., +10:u05:Plane,, +9:u06:Plane, +13:u08:[RFC7426], +9:u12:(sdn), +8:u23:(SDN, +9:uI1:(),(), +8:uI2:,(),, +9:u03:(SDN), +20:u06:Software-Defined, +12:u01:domains., +10:u04:Plane,, +9:u05:Plane, +13:u07:[RFC7426], +9:u11:(sdn), +20:u14:software-defined, +9:uI0:(),(), +8:uI1:,(),, +9:u02:(SDN), +20:u05:Software-Defined, +12:u00:domains., +10:u03:Plane,, +9:u04:Plane, +13:u06:[RFC7426], +9:u10:(sdn), +20:u13:software-defined, +15:u14:terminology, +8:uI0:,(),, +8:uI2:-():, +9:u01:(SDN), +20:u04:Software-Defined, +10:u02:Plane,, +9:u03:Plane, +13:u05:[RFC7426], +20:u12:software-defined, +15:u13:terminology, +7:u22:Sof, +8:u23:Soft, +8:uI1:-():, +9:u00:(SDN), +20:u03:Software-Defined, +10:u01:Plane,, +9:u02:Plane, +13:u04:[RFC7426], +7:u08:37], +20:u11:software-defined, +15:u12:terminology, +7:u22:Ter, +8:u23:Term, +8:uI0:-():, +20:u02:Software-Defined, +10:u00:Plane,, +9:u01:Plane, +13:u03:[RFC7426], +7:u07:37], +20:u10:software-defined, +15:u11:terminology, +20:u01:Software-Defined, +9:u00:Plane, +13:u02:[RFC7426], +7:u06:37], +15:u10:terminology, +20:u00:Software-Defined, +38:u08:o--------------------------------o, +13:u01:[RFC7426], +7:u05:37], +13:u00:[RFC7426], +7:u04:37], +38:u07:o--------------------------------o, +7:u03:37], +38:u06:o--------------------------------o, +7:u02:37], +38:u14:o--------------------------------o, +38:u05:o--------------------------------o, +16:u08:+----------+, +7:u01:37], +19:u08:+-------------+, +38:u13:o--------------------------------o, +38:u04:o--------------------------------o, +7:u00:37], +19:u07:+-------------+, +38:u12:o--------------------------------o, +6:u21:o-, +7:u22:o--, +8:u23:o---, +38:u03:o--------------------------------o, +16:u07:+----------+, +19:u06:+-------------+, +38:u11:o--------------------------------o, +38:u02:o--------------------------------o, +16:u06:+----------+, +19:u05:+-------------+, +11:u08:Service, +38:u10:o--------------------------------o, +16:u14:+----------+, +17:uI2:-------------, +38:u01:o--------------------------------o, +16:u05:+----------+, +19:u04:+-------------+, +11:u07:Service, +16:u13:+----------+, +17:uI1:-------------, +14:uI2:----------, +38:u00:o--------------------------------o, +16:u04:+----------+, +19:u03:+-------------+, +11:u06:Service, +16:u12:+----------+, +17:uI0:-------------, +14:uI1:----------, +16:u03:+----------+, +19:u02:+-------------+, +11:u05:Service, +16:u11:+----------+, +14:uI0:----------, +16:u02:+----------+, +19:u01:+-------------+, +11:u04:Service, +16:u10:+----------+, +16:u01:+----------+, +38:u08:o---------------Y----------------o, +19:u00:+-------------+, +11:u03:Service, +16:u00:+----------+, +11:u02:Service, +38:u07:o---------------Y----------------o, +69:u08:*-----------------------------Y---------------------------------*, +11:u01:Service, +38:u06:o---------------Y----------------o, +11:u00:Service, +38:u14:o---------------y----------------o, +38:u05:o---------------Y----------------o, +69:u07:*-----------------------------Y---------------------------------*, +38:u13:o---------------y----------------o, +35:uI2:-------------------------------, +6:uI2:31, +38:u04:o---------------Y----------------o, +69:u06:*-----------------------------Y---------------------------------*, +12:u08:Services, +38:u12:o---------------y----------------o, +69:u14:*-----------------------------y---------------------------------*, +35:uI1:-------------------------------, +6:uI1:31, +38:u03:o---------------Y----------------o, +69:u05:*-----------------------------Y---------------------------------*, +69:u08:*------Y------------------------------------------------Y-------*, +12:u07:Services, +38:u11:o---------------y----------------o, +69:u13:*-----------------------------y---------------------------------*, +35:uI0:-------------------------------, +68:uI2:*--------------------------------------------------------------*, +6:uI0:31, +38:u02:o---------------Y----------------o, +69:u04:*-----------------------------Y---------------------------------*, +12:u06:Services, +38:u10:o---------------y----------------o, +69:u12:*-----------------------------y---------------------------------*, +5:u20:*, +6:u21:*-, +7:u22:*--, +8:u23:*---, +68:uI1:*--------------------------------------------------------------*, +38:u01:o---------------Y----------------o, +69:u03:*-----------------------------Y---------------------------------*, +69:u07:*------Y------------------------------------------------Y-------*, +12:u05:Services, +69:u11:*-----------------------------y---------------------------------*, +68:uI0:*--------------------------------------------------------------*, +38:u00:o---------------Y----------------o, +69:u02:*-----------------------------Y---------------------------------*, +69:u06:*------Y------------------------------------------------Y-------*, +12:u04:Services, +69:u10:*-----------------------------y---------------------------------*, +69:u14:*------y------------------------------------------------y-------*, +69:u01:*-----------------------------Y---------------------------------*, +69:u05:*------Y------------------------------------------------Y-------*, +12:u03:Services, +69:u13:*------y------------------------------------------------y-------*, +67:uI2:*-------------------------------------------------------------*, +6:uI2:63, +69:u00:*-----------------------------Y---------------------------------*, +69:u04:*------Y------------------------------------------------Y-------*, +12:u02:Services, +13:u08:Interface, +69:u12:*------y------------------------------------------------y-------*, +67:uI1:*-------------------------------------------------------------*, +6:uI1:63, +69:u03:*------Y------------------------------------------------Y-------*, +12:u01:Services, +13:u07:Interface, +69:u11:*------y------------------------------------------------y-------*, +67:uI0:*-------------------------------------------------------------*, +6:uI0:63, +69:u02:*------Y------------------------------------------------Y-------*, +12:u00:Services, +13:u06:Interface, +69:u10:*------y------------------------------------------------y-------*, +11:u14:service, +69:u01:*------Y------------------------------------------------Y-------*, +31:u08:o------Y------------------o, +13:u05:Interface, +11:u13:service, +69:u00:*------Y------------------------------------------------Y-------*, +34:u08:o---------------------Y------o, +13:u04:Interface, +11:u12:service, +7:u22:Ser, +8:u23:Serv, +31:u07:o------Y------------------o, +13:u03:Interface, +11:u11:service, +31:u06:o------Y------------------o, +34:u07:o---------------------Y------o, +13:u02:Interface, +11:u10:service, +31:u14:o------y------------------o, +31:u05:o------Y------------------o, +34:u06:o---------------------Y------o, +13:u01:Interface, +31:u13:o------y------------------o, +34:u14:o---------------------y------o, +31:u04:o------Y------------------o, +34:u05:o---------------------Y------o, +13:u00:Interface, +31:u12:o------y------------------o, +34:u13:o---------------------y------o, +31:u03:o------Y------------------o, +34:u04:o---------------------Y------o, +31:u11:o------y------------------o, +34:u12:o---------------------y------o, +31:u02:o------Y------------------o, +34:u03:o---------------------Y------o, +31:u10:o------y------------------o, +34:u11:o---------------------y------o, +31:u01:o------Y------------------o, +34:u02:o---------------------Y------o, +34:u10:o---------------------y------o, +31:u00:o------Y------------------o, +34:u01:o---------------------Y------o, +15:u08:+----Y----+, +34:u00:o---------------------Y------o, +15:u07:+----Y----+, +15:u06:+----Y----+, +15:u05:+----Y----+, +12:uI2:--------, +15:u04:+----Y----+, +12:uI1:--------, +15:u03:+----Y----+, +12:uI0:--------, +15:u02:+----Y----+, +7:u08:App, +15:u14:+----y----+, +15:u01:+----Y----+, +7:u07:App, +15:u13:+----y----+, +15:u00:+----Y----+, +7:u06:App, +15:u12:+----y----+, +7:u05:App, +15:u11:+----y----+, +11:u08:+--Y--+, +7:u04:App, +15:u10:+----y----+, +7:u03:App, +11:u07:+--Y--+, +7:u02:App, +11:u06:+--Y--+, +7:u01:App, +11:u14:+--y--+, +11:u05:+--Y--+, +7:u00:App, +11:u13:+--y--+, +11:u04:+--Y--+, +11:u12:+--y--+, +8:u23:+--Y, +11:u03:+--Y--+, +11:u11:+--y--+, +11:u02:+--Y--+, +11:u10:+--y--+, +11:u01:+--Y--+, +11:u00:+--Y--+, +27:u08:*----Y-----------Y----*, +27:u07:*----Y-----------Y----*, +30:u08:*---Y---------------Y----*, +27:u06:*----Y-----------Y----*, +30:u07:*---Y---------------Y----*, +27:u05:*----Y-----------Y----*, +30:u06:*---Y---------------Y----*, +25:uI2:*-------------------*, +27:u04:*----Y-----------Y----*, +30:u05:*---Y---------------Y----*, +25:uI1:*-------------------*, +28:uI2:*----------------------*, +27:u03:*----Y-----------Y----*, +30:u04:*---Y---------------Y----*, +9:u08:(CAL), +25:uI0:*-------------------*, +28:uI1:*----------------------*, +27:u02:*----Y-----------Y----*, +30:u03:*---Y---------------Y----*, +9:u07:(CAL), +28:uI0:*----------------------*, +27:u01:*----Y-----------Y----*, +30:u02:*---Y---------------Y----*, +9:u06:(CAL), +27:u00:*----Y-----------Y----*, +30:u01:*---Y---------------Y----*, +9:u05:(CAL), +9:u08:(MAL), +30:u00:*---Y---------------Y----*, +9:u04:(CAL), +9:u07:(MAL), +9:u03:(CAL), +9:u06:(MAL), +27:u08:*----------Y----------*, +9:u02:(CAL), +9:u05:(MAL), +27:u07:*----------Y----------*, +30:u08:*----------Y-------------*, +9:u01:(CAL), +9:u04:(MAL), +27:u06:*----------Y----------*, +30:u07:*----------Y-------------*, +9:u00:(CAL), +9:u03:(MAL), +27:u05:*----------Y----------*, +30:u06:*----------Y-------------*, +26:uI2:*--------------------*, +9:u02:(MAL), +27:u04:*----------Y----------*, +30:u05:*----------Y-------------*, +26:uI1:*--------------------*, +29:uI2:*-----------------------*, +9:u01:(MAL), +27:u03:*----------Y----------*, +30:u04:*----------Y-------------*, +26:uI0:*--------------------*, +29:uI1:*-----------------------*, +9:u00:(MAL), +27:u02:*----------Y----------*, +30:u03:*----------Y-------------*, +29:uI0:*-----------------------*, +31:u08:o------------|------------o, +27:u01:*----------Y----------*, +30:u02:*----------Y-------------*, +34:u08:o------------|---------------o, +27:u00:*----------Y----------*, +30:u01:*----------Y-------------*, +31:u07:o------------|------------o, +30:u00:*----------Y-------------*, +31:u06:o------------|------------o, +34:u07:o------------|---------------o, +31:u14:o------------|------------o, +31:u05:o------------|------------o, +34:u06:o------------|---------------o, +31:u13:o------------|------------o, +34:u14:o------------|---------------o, +31:u04:o------------|------------o, +34:u05:o------------|---------------o, +6:u08:CP, +31:u12:o------------|------------o, +34:u13:o------------|---------------o, +31:u03:o------------|------------o, +34:u04:o------------|---------------o, +6:u07:CP, +6:u08:MP, +31:u11:o------------|------------o, +34:u12:o------------|---------------o, +31:u02:o------------|------------o, +34:u03:o------------|---------------o, +6:u06:CP, +6:u07:MP, +14:u08:Southbound, +31:u10:o------------|------------o, +34:u11:o------------|---------------o, +31:u01:o------------|------------o, +34:u02:o------------|---------------o, +6:u05:CP, +6:u06:MP, +14:u07:Southbound, +34:u10:o------------|---------------o, +31:u00:o------------|------------o, +34:u01:o------------|---------------o, +6:u04:CP, +6:u05:MP, +14:u06:Southbound, +34:u00:o------------|---------------o, +6:u03:CP, +6:u04:MP, +14:u05:Southbound, +6:u02:CP, +6:u03:MP, +14:u04:Southbound, +69:u08:*------------Y---------------------------------Y----------------*, +6:u01:CP, +6:u02:MP, +14:u03:Southbound, +6:u00:CP, +6:u01:MP, +14:u02:Southbound, +69:u07:*------------Y---------------------------------Y----------------*, +6:u00:MP, +14:u01:Southbound, +69:u06:*------------Y---------------------------------Y----------------*, +14:u00:Southbound, +69:u14:*------------y---------------------------------y----------------*, +69:u05:*------------Y---------------------------------Y----------------*, +69:u13:*------------y---------------------------------y----------------*, +69:u04:*------------Y---------------------------------Y----------------*, +69:u12:*------------y---------------------------------y----------------*, +69:u03:*------------Y---------------------------------Y----------------*, +69:u11:*------------y---------------------------------y----------------*, +69:u02:*------------Y---------------------------------Y----------------*, +69:u10:*------------y---------------------------------y----------------*, +69:u01:*------------Y---------------------------------Y----------------*, +69:u00:*------------Y---------------------------------Y----------------*, +24:u08:o-------Y----------o, +24:u07:o-------Y----------o, +25:u08:o--------Y----------o, +24:u06:o-------Y----------o, +24:u14:o-------y----------o, +24:u05:o-------Y----------o, +25:u07:o--------Y----------o, +24:u13:o-------y----------o, +21:uI2:-----------------, +24:u04:o-------Y----------o, +25:u06:o--------Y----------o, +24:u12:o-------y----------o, +25:u14:o--------y----------o, +21:uI1:-----------------, +24:u03:o-------Y----------o, +25:u05:o--------Y----------o, +24:u11:o-------y----------o, +25:u13:o--------y----------o, +21:uI0:-----------------, +24:u02:o-------Y----------o, +25:u04:o--------Y----------o, +24:u10:o-------y----------o, +25:u12:o--------y----------o, +24:u01:o-------Y----------o, +25:u03:o--------Y----------o, +25:u11:o--------y----------o, +24:u00:o-------Y----------o, +25:u02:o--------Y----------o, +25:u10:o--------y----------o, +25:u01:o--------Y----------o, +24:u08:o------------------o, +25:u00:o--------Y----------o, +24:u07:o------------------o, +25:u08:o-------------------o, +24:u06:o------------------o, +24:u14:o------------------o, +24:u05:o------------------o, +25:u07:o-------------------o, +24:u13:o------------------o, +24:u04:o------------------o, +25:u06:o-------------------o, +24:u12:o------------------o, +25:u14:o-------------------o, +24:u03:o------------------o, +25:u05:o-------------------o, +24:u11:o------------------o, +25:u13:o-------------------o, +24:u02:o------------------o, +25:u04:o-------------------o, +69:u08:+---------------------------------------------------------------+, +24:u10:o------------------o, +25:u12:o-------------------o, +24:u01:o------------------o, +25:u03:o-------------------o, +25:u11:o-------------------o, +24:u00:o------------------o, +25:u02:o-------------------o, +69:u07:+---------------------------------------------------------------+, +7:u08:10:, +25:u10:o-------------------o, +25:u01:o-------------------o, +69:u06:+---------------------------------------------------------------+, +7:u07:10:, +69:u14:+---------------------------------------------------------------+, +25:u00:o-------------------o, +69:u05:+---------------------------------------------------------------+, +7:u06:10:, +69:u13:+---------------------------------------------------------------+, +67:uI2:---------------------------------------------------------------, +69:u04:+---------------------------------------------------------------+, +7:u05:10:, +69:u12:+---------------------------------------------------------------+, +67:uI1:---------------------------------------------------------------, +69:u03:+---------------------------------------------------------------+, +7:u04:10:, +69:u11:+---------------------------------------------------------------+, +67:uI0:---------------------------------------------------------------, +69:u02:+---------------------------------------------------------------+, +7:u03:10:, +7:u08:38], +69:u10:+---------------------------------------------------------------+, +69:u01:+---------------------------------------------------------------+, +7:u02:10:, +7:u07:38], +69:u00:+---------------------------------------------------------------+, +7:u01:10:, +7:u06:38], +7:u00:10:, +7:u05:38], +7:u04:38], +7:u03:38], +17:u08:heterogeneous, +7:u02:38], +17:u07:heterogeneous, +13:u08:federates, +7:u01:38], +17:u06:heterogeneous, +7:u00:38], +17:u05:heterogeneous, +13:u07:federates, +17:u04:heterogeneous, +7:u08:be,, +13:u06:federates, +17:u03:heterogeneous, +7:u07:be,, +13:u14:federates, +13:u05:federates, +17:u02:heterogeneous, +7:u06:be,, +13:u13:federates, +13:u04:federates, +17:u01:heterogeneous, +7:u05:be,, +13:u12:federates, +7:u22:fed, +8:u23:fede, +9:uI2:,,-.,, +13:u03:federates, +17:u00:heterogeneous, +7:u04:be,, +13:u11:federates, +9:uI1:,,-.,, +13:u02:federates, +7:u03:be,, +13:u10:federates, +9:uI0:,,-.,, +13:u01:federates, +7:u02:be,, +13:u00:federates, +7:u01:be,, +10:u08:to-end, +7:u00:be,, +9:u08:802.1, +9:u07:802.1, +10:u07:to-end, +9:u06:802.1, +10:u06:to-end, +18:u08:destination(s), +9:u05:802.1, +10:u14:to-end, +8:uI2:..,-, +10:u05:to-end, +9:u04:802.1, +10:u13:to-end, +8:uI1:..,-, +10:u04:to-end, +18:u07:destination(s), +9:u03:802.1, +10:u12:to-end, +8:u23:to-e, +8:uI0:..,-, +10:u03:to-end, +18:u06:destination(s), +9:u02:802.1, +10:u11:to-end, +18:u14:destination(s), +10:u02:to-end, +18:u05:destination(s), +9:u01:802.1, +10:u10:to-end, +18:u13:destination(s), +10:u01:to-end, +18:u04:destination(s), +9:u00:802.1, +11:u08:needed., +18:u12:destination(s), +9:u14:track, +10:u00:to-end, +18:u03:destination(s), +11:u08:essence, +11:u07:needed., +14:u08:hop-by-hop, +18:u11:destination(s), +9:u13:track, +18:u02:destination(s), +11:u06:needed., +14:u07:hop-by-hop, +18:u10:destination(s), +9:u12:track, +18:u01:destination(s), +11:u07:essence, +11:u05:needed., +14:u06:hop-by-hop, +9:u11:track, +18:u00:destination(s), +11:u06:essence, +11:u04:needed., +14:u05:hop-by-hop, +9:u10:track, +11:u14:essence, +11:u05:essence, +12:u08:directed, +11:u03:needed., +14:u04:hop-by-hop, +11:u13:essence, +13:uI2:[]/[]/[]., +11:u04:essence, +11:u02:needed., +14:u03:hop-by-hop, +11:u12:essence, +13:uI1:[]/[]/[]., +11:u03:essence, +12:u07:directed, +11:u01:needed., +14:u02:hop-by-hop, +11:u08:node(s), +11:u11:essence, +13:uI0:[]/[]/[]., +11:u02:essence, +12:u06:directed, +11:u00:needed., +14:u01:hop-by-hop, +11:u07:node(s), +11:u10:essence, +12:u14:directed, +11:u01:essence, +12:u05:directed, +14:u00:hop-by-hop, +11:u06:node(s), +12:u13:directed, +11:u00:essence, +12:u04:directed, +11:u05:node(s), +12:u12:directed, +12:u03:directed, +11:u04:node(s), +12:u11:directed, +12:u02:directed, +10:u08:should, +11:u03:node(s), +12:u10:directed, +12:u01:directed, +11:u02:node(s), +7:u22:Pat, +8:u23:Path, +12:u00:directed, +10:u07:should, +11:u01:node(s), +10:u06:should, +11:u00:node(s), +10:u08:Track., +10:u14:should, +10:u05:should, +10:u07:Track., +10:u13:should, +10:u04:should, +10:u06:Track., +10:u12:should, +8:u23:shou, +10:u03:should, +10:u05:Track., +7:u08:39], +10:u11:should, +10:u02:should, +10:u04:Track., +7:u07:39], +10:u10:should, +10:u01:should, +10:u03:Track., +7:u06:39], +10:u00:should, +10:u02:Track., +7:u05:39], +10:u01:Track., +7:u04:39], +13:u08:schedules, +10:u00:Track., +7:u03:39], +7:u02:39], +13:u07:schedules, +16:u08:destination., +7:u01:39], +13:u06:schedules, +7:u00:39], +13:u14:schedules, +13:u05:schedules, +16:u07:destination., +13:u13:schedules, +13:u04:schedules, +16:u06:destination., +11:u08:packet,, +13:u12:schedules, +16:u14:destination., +13:u03:schedules, +16:u05:destination., +18:u08:acknowledgment, +11:u07:packet,, +13:u08:Automatic, +13:u11:schedules, +16:u13:destination., +13:u02:schedules, +16:u04:destination., +6:u08:no, +11:u06:packet,, +13:u07:Automatic, +13:u10:schedules, +16:u12:destination., +13:u01:schedules, +16:u03:destination., +18:u07:acknowledgment, +11:u05:packet,, +13:u06:Automatic, +16:u11:destination., +13:u00:schedules, +16:u02:destination., +18:u06:acknowledgment, +6:u07:no, +11:u04:packet,, +13:u05:Automatic, +16:u10:destination., +18:u14:acknowledgment, +10:uI2:..-();, +16:u01:destination., +18:u05:acknowledgment, +6:u06:no, +11:u03:packet,, +13:u04:Automatic, +18:u13:acknowledgment, +10:uI1:..-();, +16:u00:destination., +18:u04:acknowledgment, +6:u05:no, +11:u02:packet,, +13:u03:Automatic, +18:u12:acknowledgment, +10:uI0:..-();, +18:u03:acknowledgment, +6:u04:no, +11:u01:packet,, +13:u02:Automatic, +18:u11:acknowledgment, +6:u22:no, +6:u23:no, +18:u02:acknowledgment, +6:u03:no, +11:u08:Devices, +11:u00:packet,, +13:u01:Automatic, +12:u08:overhead, +18:u10:acknowledgment, +18:u01:acknowledgment, +6:u02:no, +13:u00:Automatic, +12:u07:overhead, +9:uI2:.,..,, +18:u00:acknowledgment, +6:u01:no, +11:u07:Devices, +12:u06:overhead, +9:uI1:.,..,, +6:u00:no, +11:u06:Devices, +12:u08:reserved, +12:u05:overhead, +9:uI0:.,..,, +11:u05:Devices, +12:u04:overhead, +11:u04:Devices, +12:u07:reserved, +12:u03:overhead, +10:u08:Track,, +11:u03:Devices, +12:u06:reserved, +12:u02:overhead, +10:u07:Track,, +12:u14:reserved, +10:uI2:.,..,,, +11:u02:Devices, +12:u05:reserved, +12:u01:overhead, +10:u06:Track,, +6:u08:By, +12:u13:reserved, +10:uI1:.,..,,, +11:u01:Devices, +12:u04:reserved, +10:u08:energy, +12:u00:overhead, +10:u05:Track,, +6:u07:By, +14:u08:bundle(s),, +12:u12:reserved, +9:u14:along, +10:uI0:.,..,,, +11:u00:Devices, +12:u03:reserved, +10:u04:Track,, +6:u06:By, +14:u07:bundle(s),, +12:u11:reserved, +9:u13:along, +12:u02:reserved, +10:u07:energy, +10:u03:Track,, +6:u05:By, +14:u06:bundle(s),, +10:u08:Tracks, +12:u10:reserved, +9:u12:along, +7:u22:alo, +8:u23:alon, +7:uI2:.(), +12:u01:reserved, +10:u06:energy, +10:u02:Track,, +6:u04:By, +14:u05:bundle(s),, +10:u07:Tracks, +9:u11:along, +10:u14:energy, +7:uI1:.(), +12:u00:reserved, +10:u05:energy, +10:u01:Track,, +6:u03:By, +14:u04:bundle(s),, +10:u06:Tracks, +11:u08:avoided, +9:u10:along, +10:u13:energy, +7:uI0:.(), +10:u04:energy, +10:u00:Track,, +6:u02:By, +14:u03:bundle(s),, +10:u05:Tracks, +11:u07:avoided, +10:u12:energy, +7:u22:ene, +8:u23:ener, +10:u03:energy, +12:u08:reducing, +6:u01:By, +14:u02:bundle(s),, +10:u04:Tracks, +11:u06:avoided, +8:u08:thus, +10:u11:energy, +10:u02:energy, +6:u00:By, +14:u01:bundle(s),, +10:u03:Tracks, +11:u05:avoided, +8:u07:thus, +10:u10:energy, +10:u01:energy, +12:u07:reducing, +14:u00:bundle(s),, +10:u02:Tracks, +11:u04:avoided, +8:u06:thus, +10:u00:energy, +12:u06:reducing, +10:u01:Tracks, +11:u03:avoided, +8:u05:thus, +12:u14:reducing, +12:u05:reducing, +10:u08:paired, +10:u00:Tracks, +11:u02:avoided, +8:u04:thus, +12:u13:reducing, +12:u04:reducing, +11:u01:avoided, +8:u03:thus, +12:u12:reducing, +12:u03:reducing, +10:u07:paired, +11:u00:avoided, +8:u02:thus, +12:u11:reducing, +12:u02:reducing, +10:u06:paired, +8:u01:thus, +12:u10:reducing, +10:u14:paired, +12:u01:reducing, +10:u05:paired, +8:u00:thus, +10:u13:paired, +12:u00:reducing, +10:u04:paired, +10:u12:paired, +7:u22:pai, +8:u23:pair, +10:u03:paired, +10:u11:paired, +7:uI2:.--, +10:u02:paired, +10:u10:paired, +12:u14:previous, +7:uI1:.--, +10:u01:paired, +7:u08:40], +12:u13:previous, +7:uI0:.--, +10:u00:paired, +7:u07:40], +12:u12:previous, +7:u06:40], +12:u11:previous, +7:u05:40], +12:u10:previous, +7:u04:40], +7:u03:40], +7:u02:40], +17:u08:transmission., +7:u01:40], +11:u08:results, +12:u08:variable, +7:u00:40], +11:u07:results, +17:u07:transmission., +11:u06:results, +9:u08:rates, +17:u06:transmission., +12:u07:variable, +11:u05:results, +9:u07:rates, +17:u14:transmission., +17:u05:transmission., +12:u06:variable, +11:u04:results, +9:u06:rates, +17:u13:transmission., +12:u14:variable, +17:u04:transmission., +12:u05:variable, +11:u03:results, +9:u05:rates, +7:u08:art, +17:u12:transmission., +12:u13:variable, +17:u03:transmission., +12:u04:variable, +11:u02:results, +9:u04:rates, +7:u07:art, +15:u08:Elimination, +17:u11:transmission., +12:u12:variable, +17:u02:transmission., +12:u03:variable, +11:u01:results, +9:u03:rates, +7:u06:art, +15:u07:Elimination, +17:u10:transmission., +12:u11:variable, +17:u01:transmission., +12:u02:variable, +11:u00:results, +9:u02:rates, +7:u05:art, +15:u06:Elimination, +9:u08:(HSR), +12:u10:variable, +17:u00:transmission., +12:u01:variable, +10:u08:shaped, +9:u01:rates, +7:u04:art, +15:u05:Elimination, +9:u07:(HSR), +12:u00:variable, +9:u00:rates, +7:u03:art, +15:u04:Elimination, +9:u06:(HSR), +10:u07:shaped, +7:u02:art, +15:u03:Elimination, +9:u05:(HSR), +7:u22:Red, +8:u23:Redu, +10:uI2:()[].,, +10:u06:shaped, +7:u01:art, +15:u02:Elimination, +9:u04:(HSR), +10:u14:shaped, +10:uI1:()[].,, +10:u05:shaped, +15:u08:reconverges, +7:u00:art, +15:u01:Elimination, +9:u03:(HSR), +10:u13:shaped, +10:uI0:()[].,, +10:u04:shaped, +15:u00:Elimination, +9:u02:(HSR), +9:u08:later, +10:u12:shaped, +8:u23:shap, +10:u03:shaped, +15:u07:reconverges, +11:u08:Detnet., +9:u01:(HSR), +9:u07:later, +10:u11:shaped, +11:u14:purpose, +10:u02:shaped, +15:u06:reconverges, +8:u08:adds, +9:u00:(HSR), +9:u06:later, +10:u10:shaped, +11:u13:purpose, +15:u14:reconverges, +7:uI2:,/,, +10:u01:shaped, +15:u05:reconverges, +11:u07:Detnet., +13:u08:listening, +9:u05:later, +18:u08:radio-specific, +11:u12:purpose, +15:u13:reconverges, +16:u14:replication,, +7:uI1:,/,, +10:u00:shaped, +15:u04:reconverges, +11:u06:Detnet., +8:u07:adds, +9:u04:later, +18:u07:radio-specific, +11:u11:purpose, +15:u12:reconverges, +16:u13:replication,, +11:u14:detnet., +8:u23:reco, +7:uI0:,/,, +15:u03:reconverges, +11:u05:Detnet., +8:u06:adds, +13:u07:listening, +13:u08:Available, +9:u03:later, +18:u06:radio-specific, +11:u10:purpose, +15:u11:reconverges, +16:u12:replication,, +11:u13:detnet., +8:u14:adds, +7:u22:Rep, +8:u23:Repl, +9:uI2:.,,(), +15:u02:reconverges, +11:u04:Detnet., +8:u05:adds, +13:u06:listening, +9:u02:later, +18:u05:radio-specific, +15:u10:reconverges, +16:u11:replication,, +11:u12:detnet., +8:u13:adds, +13:u14:listening, +8:u23:Detn, +9:uI1:.,,(), +15:u01:reconverges, +11:u03:Detnet., +8:u04:adds, +13:u05:listening, +13:u07:Available, +9:u01:later, +18:u04:radio-specific, +10:u08:extend, +16:u10:replication,, +11:u11:detnet., +8:u12:adds, +13:u13:listening, +8:u23:adds, +9:uI0:.,,(), +15:u00:reconverges, +11:u02:Detnet., +8:u03:adds, +13:u04:listening, +13:u06:Available, +10:u08:almost, +9:u00:later, +18:u03:radio-specific, +10:u07:extend, +11:u10:detnet., +8:u11:adds, +13:u12:listening, +11:u01:Detnet., +8:u02:adds, +13:u03:listening, +13:u05:Available, +18:u02:radio-specific, +10:u06:extend, +18:u08:systematically, +8:u10:adds, +13:u11:listening, +11:u00:Detnet., +8:u01:adds, +13:u02:listening, +13:u04:Available, +10:u07:almost, +14:u08:solutions,, +18:u01:radio-specific, +10:u05:extend, +18:u07:systematically, +13:u10:listening, +6:u21:Av, +7:u22:Ava, +8:u23:Avai, +8:u00:adds, +13:u01:listening, +13:u03:Available, +10:u06:almost, +18:u00:radio-specific, +10:u04:extend, +18:u06:systematically, +10:u14:almost, +7:u22:may, +7:u23:may, +13:u00:listening, +13:u02:Available, +10:u05:almost, +14:u07:solutions,, +10:u03:extend, +18:u05:systematically, +10:u13:almost, +13:u01:Available, +10:u04:almost, +14:u06:solutions,, +10:u02:extend, +18:u04:systematically, +8:u08:ARQ., +10:u12:almost, +14:u14:solutions,, +7:u22:alm, +8:u23:almo, +13:u00:Available, +10:u03:almost, +14:u05:solutions,, +10:u01:extend, +18:u03:systematically, +8:u07:ARQ., +10:u11:almost, +14:u13:solutions,, +10:u02:almost, +14:u04:solutions,, +10:u00:extend, +18:u02:systematically, +8:u06:ARQ., +11:u08:retries, +10:u10:almost, +14:u12:solutions,, +7:u22:sol, +8:u23:solu, +10:u01:almost, +14:u03:solutions,, +18:u01:systematically, +8:u05:ARQ., +11:u07:retries, +14:u11:solutions,, +10:u00:almost, +14:u02:solutions,, +15:u08:Ultimately,, +18:u00:systematically, +8:u04:ARQ., +11:u06:retries, +14:u10:solutions,, +14:u01:solutions,, +8:u03:ARQ., +11:u05:retries, +14:u00:solutions,, +15:u07:Ultimately,, +8:u02:ARQ., +11:u04:retries, +15:u06:Ultimately,, +8:u01:ARQ., +11:u03:retries, +15:u14:ultimately,, +15:u05:Ultimately,, +13:u08:Sensitive, +8:u00:ARQ., +11:u02:retries, +15:u13:ultimately,, +10:u14:extend, +11:uI2:,[-.--], +15:u04:Ultimately,, +11:u01:retries, +15:u12:ultimately,, +10:u13:extend, +6:u21:Ul, +7:u22:Ult, +8:u23:Ulti, +11:uI1:,[-.--], +15:u03:Ultimately,, +13:u07:Sensitive, +13:u08:Functions, +11:u00:retries, +11:u08:handles, +15:u11:ultimately,, +10:u12:extend, +11:uI0:,[-.--], +15:u02:Ultimately,, +13:u06:Sensitive, +11:u07:handles, +15:u10:ultimately,, +10:u11:extend, +13:u14:sensitive, +15:u01:Ultimately,, +13:u05:Sensitive, +13:u07:Functions, +11:u06:handles, +10:u10:extend, +13:u13:sensitive, +15:u00:Ultimately,, +13:u04:Sensitive, +13:u06:Functions, +11:u05:handles, +13:u12:sensitive, +13:u14:functions, +8:u23:Sens, +13:u03:Sensitive, +13:u05:Functions, +11:u04:handles, +7:u08:41], +13:u11:sensitive, +13:u13:functions, +13:u02:Sensitive, +13:u04:Functions, +11:u03:handles, +7:u07:41], +13:u10:sensitive, +13:u12:functions, +7:u22:Fun, +8:u23:Func, +13:u01:Sensitive, +13:u03:Functions, +11:u02:handles, +7:u06:41], +13:u11:functions, +13:u00:Sensitive, +13:u02:Functions, +11:u01:handles, +7:u05:41], +13:u10:functions, +13:u01:Functions, +11:u00:handles, +7:u04:41], +15:u08:Replication, +13:u00:Functions, +7:u03:41], +15:u07:Replication, +12:u08:gateway., +7:u02:41], +15:u06:Replication, +12:u08:branches, +7:u01:41], +15:u05:Replication, +12:u07:branches, +12:u07:gateway., +7:u00:41], +15:u04:Replication, +12:u06:branches, +12:u06:gateway., +9:u08:extra, +15:u03:Replication, +12:u05:branches, +7:u08:IoT, +12:u14:gateway., +12:u05:gateway., +11:u08:+-=-=-+, +15:u02:Replication, +12:u04:branches, +7:u07:IoT, +12:u13:gateway., +12:u04:gateway., +9:u07:extra, +15:u01:Replication, +12:u03:branches, +7:u06:IoT, +12:u12:gateway., +6:u21:ga, +7:u22:gat, +8:u23:gate, +12:u03:gateway., +9:u06:extra, +11:u07:+-=-=-+, +15:u00:Replication, +12:u02:branches, +7:u05:IoT, +12:u11:gateway., +9:u14:extra, +12:u02:gateway., +9:u05:extra, +11:u06:+-=-=-+, +12:u01:branches, +7:u04:IoT, +7:u08:G/W, +12:u10:gateway., +9:u13:extra, +11:u14:+-=-=-+, +12:u01:gateway., +9:u04:extra, +11:u05:+-=-=-+, +5:u08:^, +12:u00:branches, +7:u03:IoT, +7:u07:G/W, +9:u12:extra, +11:u13:+-=-=-+, +8:u23:extr, +12:u00:gateway., +9:u03:extra, +11:u04:+-=-=-+, +7:u02:IoT, +7:u06:G/W, +8:u08:<===, +9:u11:extra, +11:u12:+-=-=-+, +7:u22:+-=, +8:u23:+-=-, +9:u02:extra, +11:u03:+-=-=-+, +5:u07:^, +7:u01:IoT, +7:u05:G/W, +8:u07:<===, +10:u08:branch, +9:u10:extra, +11:u11:+-=-=-+, +9:u01:extra, +11:u02:+-=-=-+, +5:u06:^, +13:u08:+-=-=-=-+, +7:u00:IoT, +7:u04:G/W, +8:u06:<===, +10:u07:branch, +11:u10:+-=-=-+, +5:u14:^, +9:u00:extra, +11:u01:+-=-=-+, +5:u05:^, +7:u03:G/W, +8:u05:<===, +10:u06:branch, +14:u08:+-=-=-=-=+, +5:u13:^, +11:u00:+-=-=-+, +5:u04:^, +13:u07:+-=-=-=-+, +7:u02:G/W, +8:u04:<===, +10:u05:branch, +14:u07:+-=-=-=-=+, +5:u12:^, +5:u20:^, +5:u21:^, +5:u22:^, +5:u23:^, +5:u03:^, +13:u06:+-=-=-=-+, +11:u08:+-=|-=+, +7:u01:G/W, +8:u03:<===, +10:u04:branch, +14:u06:+-=-=-=-=+, +5:u11:^, +13:u14:+-=-=-=-+, +5:u02:^, +13:u05:+-=-=-=-+, +7:u00:G/W, +8:u02:<===, +10:u03:branch, +14:u05:+-=-=-=-=+, +5:u10:^, +13:u13:+-=-=-=-+, +5:u01:^, +13:u04:+-=-=-=-+, +11:u07:+-=|-=+, +8:u01:<===, +10:u02:branch, +14:u04:+-=-=-=-=+, +13:u12:+-=-=-=-+, +5:u00:^, +13:u03:+-=-=-=-+, +11:u06:+-=|-=+, +8:u00:<===, +10:u01:branch, +14:u03:+-=-=-=-=+, +13:u11:+-=-=-=-+, +11:u14:+-=|-=+, +13:u02:+-=-=-=-+, +11:u05:+-=|-=+, +10:u00:branch, +14:u02:+-=-=-=-=+, +13:u10:+-=-=-=-+, +11:u13:+-=|-=+, +13:u01:+-=-=-=-+, +11:u04:+-=|-=+, +14:u01:+-=-=-=-=+, +11:u12:+-=|-=+, +8:u23:+-=|, +13:u00:+-=-=-=-+, +11:u03:+-=|-=+, +14:u00:+-=-=-=-=+, +11:u11:+-=|-=+, +11:u02:+-=|-=+, +11:u08:+-=/-=+, +11:u10:+-=|-=+, +11:u01:+-=|-=+, +11:u00:+-=|-=+, +11:u07:+-=/-=+, +11:u06:+-=/-=+, +11:u14:+-=/-=+, +11:u05:+-=/-=+, +11:u13:+-=/-=+, +11:u04:+-=/-=+, +14:u08:o-=-o-=-=/, +11:u12:+-=/-=+, +8:u23:+-=/, +11:u03:+-=/-=+, +11:u11:+-=/-=+, +11:u02:+-=/-=+, +14:u07:o-=-o-=-=/, +11:u10:+-=/-=+, +11:u01:+-=/-=+, +14:u06:o-=-o-=-=/, +12:u08:o-=-o-=/, +14:u14:o-=-o-=-=/, +11:u00:+-=/-=+, +14:u05:o-=-o-=-=/, +14:u13:o-=-o-=-=/, +9:uI2:----/, +14:u04:o-=-o-=-=/, +12:u07:o-=-o-=/, +14:u12:o-=-o-=-=/, +7:u22:o-=, +8:u23:o-=-, +9:uI1:----/, +14:u03:o-=-o-=-=/, +12:u06:o-=-o-=/, +14:u11:o-=-o-=-=/, +12:u14:o-=-o-=/, +9:uI0:----/, +14:u02:o-=-o-=-=/, +12:u05:o-=-o-=/, +14:u10:o-=-o-=-=/, +12:u13:o-=-o-=/, +8:uI2:---/, +14:u01:o-=-o-=-=/, +12:u04:o-=-o-=/, +12:u12:o-=-o-=/, +8:uI1:---/, +14:u00:o-=-o-=-=/, +12:u03:o-=-o-=/, +12:u11:o-=-o-=/, +8:uI0:---/, +12:u02:o-=-o-=/, +12:u10:o-=-o-=/, +12:u01:o-=-o-=/, +12:u00:o-=-o-=/, +7:u08:11:, +7:u07:11:, +7:u06:11:, +7:u05:11:, +7:u04:11:, +11:u08:TX-cell, +7:u03:11:, +11:u07:TX-cell, +16:u08:transmitted,, +7:u02:11:, +11:u06:TX-cell, +9:u08:frame, +9:u08:upper, +7:u01:11:, +11:u05:TX-cell, +9:u07:frame, +21:u14:opportunistically, +16:u07:transmitted,, +7:u00:11:, +11:u04:TX-cell, +9:u06:frame, +21:u13:opportunistically, +16:u06:transmitted,, +9:u07:upper, +15:u08:effectively, +11:u03:TX-cell, +9:u05:frame, +21:u12:opportunistically, +16:u14:transmitted,, +16:u05:transmitted,, +9:u06:upper, +11:u02:TX-cell, +9:u04:frame, +21:u11:opportunistically, +16:u13:transmitted,, +9:u14:upper, +16:u04:transmitted,, +9:u05:upper, +15:u07:effectively, +11:u01:TX-cell, +9:u03:frame, +21:u10:opportunistically, +16:u12:transmitted,, +9:u13:upper, +7:u14:hop, +16:u03:transmitted,, +9:u04:upper, +15:u06:effectively, +11:u00:TX-cell, +9:u02:frame, +16:u11:transmitted,, +9:u12:upper, +7:u13:hop, +15:u14:effectively, +6:u21:up, +7:u22:upp, +8:u23:uppe, +16:u02:transmitted,, +9:u03:upper, +15:u05:effectively, +9:u01:frame, +16:u10:transmitted,, +9:u11:upper, +7:u12:hop, +15:u13:effectively, +7:u23:hop, +16:u01:transmitted,, +9:u02:upper, +15:u04:effectively, +9:u00:frame, +9:u10:upper, +7:u11:hop, +15:u12:effectively, +6:u21:ef, +7:u22:eff, +8:u23:effe, +16:u00:transmitted,, +9:u01:upper, +15:u03:effectively, +10:u08:layer., +7:u10:hop, +15:u11:effectively, +9:u00:upper, +15:u02:effectively, +10:u07:layer., +15:u10:effectively, +15:u01:effectively, +10:u06:layer., +15:u00:effectively, +10:u05:layer., +10:u04:layer., +10:u03:layer., +7:u08:42], +10:u02:layer., +7:u07:42], +10:u01:layer., +7:u06:42], +10:u00:layer., +7:u05:42], +7:u04:42], +7:u03:42], +7:u02:42], +7:u01:42], +7:u00:42], +12:u08:next-hop, +12:u07:next-hop, +12:u06:next-hop, +13:u08:Ethernet,, +8:u08:fact, +12:u14:next-hop, +12:u05:next-hop, +8:u07:fact, +13:u08:off-Track, +12:u13:next-hop, +12:u04:next-hop, +13:u07:Ethernet,, +7:u08:But, +8:u06:fact, +13:u07:off-Track, +12:u12:next-hop, +12:u03:next-hop, +13:u06:Ethernet,, +8:u05:fact, +13:u06:off-Track, +12:u11:next-hop, +13:u14:ethernet,, +12:u02:next-hop, +13:u05:Ethernet,, +7:u07:But, +8:u04:fact, +13:u05:off-Track, +13:u08:failures,, +12:u10:next-hop, +13:u13:ethernet,, +12:u01:next-hop, +13:u04:Ethernet,, +7:u06:But, +15:u08:appropriate, +8:u03:fact, +13:u04:off-Track, +13:u07:failures,, +13:u12:ethernet,, +7:u14:but, +6:u21:Et, +7:u22:Eth, +8:u23:Ethe, +12:u00:next-hop, +13:u03:Ethernet,, +7:u05:But, +8:u02:fact, +13:u03:off-Track, +13:u06:failures,, +13:u11:ethernet,, +7:u13:but, +13:u02:Ethernet,, +7:u04:But, +15:u07:appropriate, +8:u01:fact, +13:u02:off-Track, +13:u05:failures,, +13:u10:ethernet,, +7:u12:but, +9:u14:frame, +6:u21:Bu, +7:u22:But, +7:u23:But, +13:u01:Ethernet,, +7:u03:But, +15:u06:appropriate, +8:u00:fact, +13:u01:off-Track, +13:u04:failures,, +7:u11:but, +9:u13:frame, +15:u14:appropriate, +13:u00:Ethernet,, +7:u02:But, +15:u05:appropriate, +13:u00:off-Track, +13:u03:failures,, +7:u10:but, +9:u12:frame, +15:u13:appropriate, +7:u01:But, +15:u04:appropriate, +13:u02:failures,, +15:u08:forwarding,, +9:u11:frame, +15:u12:appropriate, +7:u00:But, +15:u03:appropriate, +9:u08:node., +13:u01:failures,, +15:u07:forwarding,, +9:u10:frame, +15:u11:appropriate, +15:u02:appropriate, +13:u00:failures,, +15:u06:forwarding,, +15:u10:appropriate, +15:u01:appropriate, +9:u07:node., +15:u05:forwarding,, +15:u00:appropriate, +9:u06:node., +15:u08:(classical), +15:u04:forwarding,, +9:u14:node., +6:u21:By, +6:u22:By, +6:u23:By, +9:u05:node., +15:u03:forwarding,, +9:u13:node., +9:u04:node., +15:u07:(classical), +15:u02:forwarding,, +9:u12:node., +9:u14:three, +9:u03:node., +15:u06:(classical), +9:u08:Label, +15:u01:forwarding,, +9:u11:node., +9:u13:three, +15:u14:(classical), +9:uI2::(-),, +9:u02:node., +15:u05:(classical), +15:u00:forwarding,, +13:u08:Switching, +9:u10:node., +9:u12:three, +15:u13:(classical), +9:uI1::(-),, +9:u01:node., +15:u04:(classical), +9:u07:Label, +14:u08:properties, +13:u07:Switching, +9:u11:three, +15:u12:(classical), +6:u21:(c, +7:u22:(cl, +8:u23:(cla, +9:uI0::(-),, +9:u00:node., +15:u03:(classical), +9:u06:Label, +13:u06:Switching, +9:u10:three, +15:u11:(classical), +15:u02:(classical), +9:u05:Label, +14:u07:properties, +13:u05:Switching, +15:u10:(classical), +10:u14:switch, +8:u23:Forw, +15:u01:(classical), +9:u04:Label, +14:u06:properties, +13:u04:Switching, +13:u08:security), +10:u13:switch, +14:u14:properties, +7:u22:Lab, +8:u23:Labe, +15:u00:(classical), +9:u03:Label, +14:u05:properties, +13:u08:fragment,, +13:u03:Switching, +13:u07:security), +10:u12:switch, +14:u13:properties, +9:u02:Label, +14:u04:properties, +13:u02:Switching, +13:u06:security), +10:u11:switch, +14:u12:properties, +7:uI2:.,(, +9:u01:Label, +14:u03:properties, +13:u07:fragment,, +13:u01:Switching, +13:u05:security), +15:u08:ISA100.11a., +10:u10:switch, +14:u11:properties, +7:uI1:.,(, +7:uI2:-),, +9:u00:Label, +14:u02:properties, +13:u06:fragment,, +13:u00:Switching, +13:u04:security), +15:u07:ISA100.11a., +8:u08:data, +14:u10:properties, +13:u14:fragment,, +7:uI0:.,(, +7:uI1:-),, +14:u01:properties, +13:u05:fragment,, +13:u03:security), +15:u06:ISA100.11a., +8:u07:data, +13:u13:fragment,, +7:uI0:-),, +14:u00:properties, +13:u04:fragment,, +13:u02:security), +15:u05:ISA100.11a., +8:u06:data, +13:u08:depending, +13:u12:fragment,, +13:u03:fragment,, +13:u01:security), +15:u04:ISA100.11a., +8:u05:data, +13:u07:depending, +13:u11:fragment,, +13:u02:fragment,, +13:u00:security), +15:u03:ISA100.11a., +8:u04:data, +13:u06:depending, +13:u08:incurring, +13:u10:fragment,, +13:u01:fragment,, +15:u02:ISA100.11a., +8:u03:data, +13:u05:depending, +13:u07:incurring, +13:u08:802.15.4,, +13:u00:fragment,, +11:u08:0xFFFF., +15:u01:ISA100.11a., +8:u02:data, +13:u04:depending, +13:u06:incurring, +13:u07:802.15.4,, +15:u00:ISA100.11a., +8:u01:data, +13:u03:depending, +13:u05:incurring, +13:u06:802.15.4,, +11:u07:0xFFFF., +8:u00:data, +13:u02:depending, +13:u04:incurring, +13:u05:802.15.4,, +9:uI2:...,,, +11:u06:0xFFFF., +13:u01:depending, +13:u03:incurring, +13:u04:802.15.4,, +11:u14:0xffff., +9:uI1:...,,, +11:u05:0xFFFF., +13:u00:depending, +13:u02:incurring, +13:u03:802.15.4,, +7:u08:43], +11:u13:0xffff., +9:uI0:...,,, +11:u04:0xFFFF., +13:u01:incurring, +13:u02:802.15.4,, +7:u07:43], +11:u12:0xffff., +6:u21:0x, +7:u22:0xF, +8:u23:0xFF, +11:u03:0xFFFF., +13:u00:incurring, +13:u01:802.15.4,, +7:u06:43], +11:u11:0xffff., +11:u02:0xFFFF., +13:u00:802.15.4,, +7:u05:43], +11:u10:0xffff., +11:u01:0xFFFF., +12:u08:4.6.1.1., +7:u04:43], +11:u00:0xFFFF., +7:u03:43], +10:u08:Native, +12:u07:4.6.1.1., +13:u08:dependent, +7:u02:43], +10:u07:Native, +10:u08:native, +12:u06:4.6.1.1., +7:u01:43], +10:u06:Native, +10:u07:native, +13:u08:meta-data, +12:u14:4.6.1.1., +12:u05:4.6.1.1., +13:u07:dependent, +14:u08:ambiguity., +7:u00:43], +10:u05:Native, +10:u06:native, +13:u07:meta-data, +12:u13:4.6.1.1., +12:u04:4.6.1.1., +13:u06:dependent, +10:u04:Native, +10:u05:native, +13:u06:meta-data, +12:u12:4.6.1.1., +13:u14:dependent, +12:u03:4.6.1.1., +13:u05:dependent, +14:u07:ambiguity., +10:u03:Native, +10:u04:native, +13:u05:meta-data, +12:u11:4.6.1.1., +13:u13:dependent, +12:u14:sublayer, +12:u02:4.6.1.1., +13:u04:dependent, +14:u06:ambiguity., +18:u08:identification, +10:u02:Native, +10:u03:native, +13:u04:meta-data, +19:u08:implementations, +12:u10:4.6.1.1., +13:u12:dependent, +12:u13:sublayer, +14:u14:ambiguity., +8:u23:depe, +12:u01:4.6.1.1., +13:u03:dependent, +14:u05:ambiguity., +10:u01:Native, +10:u02:native, +13:u03:meta-data, +19:u07:implementations, +13:u11:dependent, +12:u12:sublayer, +14:u13:ambiguity., +8:u23:subl, +12:u00:4.6.1.1., +13:u02:dependent, +14:u04:ambiguity., +18:u07:identification, +10:u00:Native, +10:u01:native, +13:u02:meta-data, +19:u06:implementations, +8:u08:flow, +13:u10:dependent, +12:u11:sublayer, +14:u12:ambiguity., +6:u21:am, +7:u22:amb, +8:u23:ambi, +13:u01:dependent, +14:u03:ambiguity., +18:u06:identification, +10:u00:native, +13:u01:meta-data, +19:u05:implementations, +8:u07:flow, +8:u08:(see, +12:u10:sublayer, +14:u11:ambiguity., +13:u00:dependent, +14:u02:ambiguity., +18:u05:identification, +13:u00:meta-data, +19:u04:implementations, +8:u06:flow, +8:u07:(see, +9:u08:(more, +14:u10:ambiguity., +14:u01:ambiguity., +18:u04:identification, +19:u03:implementations, +8:u05:flow, +8:u06:(see, +9:u07:(more, +14:u00:ambiguity., +18:u03:identification, +19:u02:implementations, +8:u04:flow, +8:u05:(see, +9:u06:(more, +11:uI2:(..[]),, +18:u02:identification, +19:u01:implementations, +8:u03:flow, +8:u04:(see, +9:u05:(more, +6:u08:12, +11:uI1:(..[]),, +12:uI2:(...[])., +18:u01:identification, +19:u00:implementations, +8:u02:flow, +8:u03:(see, +9:u04:(more, +6:u07:12, +11:uI0:(..[]),, +12:uI1:(...[])., +18:u00:identification, +20:u08:+--------------+, +8:u01:flow, +8:u02:(see, +9:u03:(more, +6:u06:12, +12:uI0:(...[])., +8:u00:flow, +8:u01:(see, +9:u02:(more, +6:u05:12, +20:u07:+--------------+, +8:u00:(see, +9:u01:(more, +6:u04:12, +20:u06:+--------------+, +9:u00:(more, +6:u03:12, +20:u14:+--------------+, +20:u05:+--------------+, +6:u02:12, +20:u13:+--------------+, +20:u04:+--------------+, +6:u01:12, +20:u12:+--------------+, +20:u03:+--------------+, +6:u00:12, +20:u11:+--------------+, +20:u02:+--------------+, +20:u10:+--------------+, +20:u01:+--------------+, +20:u00:+--------------+, +10:u08:egress, +11:u08:ingress, +11:u07:ingress, +10:u07:egress, +11:u06:ingress, +10:u06:egress, +11:u05:ingress, +10:u14:egress, +10:u05:egress, +11:u04:ingress, +10:u13:egress, +10:u04:egress, +10:u08:+----+, +11:u03:ingress, +10:u12:egress, +10:u03:egress, +11:u02:ingress, +10:u11:egress, +10:u02:egress, +10:u07:+----+, +12:u08:restores, +11:u01:ingress, +10:u10:egress, +8:u14:sets, +10:u01:egress, +10:u06:+----+, +11:u00:ingress, +8:u13:sets, +10:u14:+----+, +10:u00:egress, +10:u05:+----+, +12:u07:restores, +8:u08:DMAC, +8:u12:sets, +10:u13:+----+, +8:u23:sets, +10:u04:+----+, +12:u06:restores, +8:u07:DMAC, +8:u11:sets, +10:u12:+----+, +12:u14:restores, +10:u03:+----+, +12:u05:restores, +8:u06:DMAC, +8:u10:sets, +10:u11:+----+, +12:u13:restores, +10:u02:+----+, +12:u04:restores, +8:u05:DMAC, +10:u10:+----+, +12:u12:restores, +8:u23:rest, +10:u01:+----+, +12:u03:restores, +8:u04:DMAC, +12:u11:restores, +10:u00:+----+, +12:u02:restores, +8:u03:DMAC, +12:u10:restores, +12:u01:restores, +8:u02:DMAC, +12:u00:restores, +8:u01:DMAC, +8:u14:dmac, +10:u08:brdcst, +8:u00:DMAC, +8:u13:dmac, +8:u12:dmac, +6:u21:DM, +7:u22:DMA, +8:u23:DMAC, +10:u07:brdcst, +8:u11:dmac, +10:u06:brdcst, +8:u10:dmac, +10:u14:brdcst, +10:u05:brdcst, +10:u13:brdcst, +10:u04:brdcst, +8:u08:dest, +10:u12:brdcst, +7:u22:brd, +8:u23:brdc, +10:u03:brdcst, +10:u11:brdcst, +10:u02:brdcst, +8:u07:dest, +10:u10:brdcst, +10:u01:brdcst, +8:u06:dest, +8:u14:dest, +10:u00:brdcst, +8:u05:dest, +8:u13:dest, +8:u04:dest, +8:u12:dest, +8:u03:dest, +8:u11:dest, +8:u02:dest, +8:u10:dest, +8:u01:dest, +8:u00:dest, +7:u08:PHY, +13:u08:+-------+, +7:u07:PHY, +16:u08:+--...-----+, +7:u06:PHY, +13:u07:+-------+, +7:u05:PHY, +13:u06:+-------+, +16:u07:+--...-----+, +7:u04:PHY, +13:u14:+-------+, +13:u05:+-------+, +16:u06:+--...-----+, +7:u03:PHY, +13:u13:+-------+, +16:u14:+--...-----+, +11:uI2:-------, +13:u04:+-------+, +16:u05:+--...-----+, +9:u08:Relay, +7:u02:PHY, +13:u12:+-------+, +16:u13:+--...-----+, +11:uI1:-------, +14:uI2:--...-----, +13:u03:+-------+, +16:u04:+--...-----+, +7:u01:PHY, +13:u11:+-------+, +16:u12:+--...-----+, +8:u23:+--., +11:uI0:-------, +14:uI1:--...-----, +13:u02:+-------+, +16:u03:+--...-----+, +9:u07:Relay, +7:u00:PHY, +13:u10:+-------+, +16:u11:+--...-----+, +11:u14:ingress, +14:uI0:--...-----, +13:u01:+-------+, +16:u02:+--...-----+, +9:u06:Relay, +9:u08:Stack, +16:u10:+--...-----+, +11:u13:ingress, +9:u14:relay, +13:u00:+-------+, +16:u01:+--...-----+, +9:u05:Relay, +11:u12:ingress, +9:u13:relay, +7:u22:Ing, +8:u23:Ingr, +16:u00:+--...-----+, +9:u04:Relay, +9:u07:Stack, +11:u11:ingress, +9:u12:relay, +8:u23:Rela, +9:u03:Relay, +9:u06:Stack, +11:u10:ingress, +9:u11:relay, +9:u14:stack, +9:u02:Relay, +9:u05:Stack, +9:u10:relay, +9:u13:stack, +6:u21:Eg, +7:u22:Egr, +8:u23:Egre, +9:u01:Relay, +9:u04:Stack, +9:u12:stack, +8:u23:Stac, +9:u00:Relay, +9:u03:Stack, +12:u08:4.6.1.2., +7:u08:12:, +9:u11:stack, +9:u02:Stack, +7:u07:12:, +10:u08:Tunnel, +9:u10:stack, +9:u01:Stack, +12:u07:4.6.1.2., +7:u06:12:, +10:u07:Tunnel, +10:u08:tunnel, +9:u00:Stack, +12:u06:4.6.1.2., +7:u05:12:, +10:u06:Tunnel, +10:u07:tunnel, +14:u08:compatible, +12:u14:4.6.1.2., +12:u05:4.6.1.2., +7:u04:12:, +10:u05:Tunnel, +10:u06:tunnel, +14:u07:compatible, +12:u13:4.6.1.2., +12:u04:4.6.1.2., +7:u03:12:, +10:u04:Tunnel, +10:u05:tunnel, +14:u06:compatible, +11:u08:capable, +12:u12:4.6.1.2., +12:u03:4.6.1.2., +7:u02:12:, +10:u03:Tunnel, +10:u04:tunnel, +14:u05:compatible, +11:u07:capable, +12:u11:4.6.1.2., +12:u02:4.6.1.2., +7:u01:12:, +10:u02:Tunnel, +10:u03:tunnel, +14:u04:compatible, +11:u06:capable, +11:u08:Router,, +12:u10:4.6.1.2., +12:u01:4.6.1.2., +10:u08:System, +7:u00:12:, +10:u01:Tunnel, +10:u02:tunnel, +14:u03:compatible, +11:u05:capable, +11:u07:Router,, +14:u08:coordinate, +12:u00:4.6.1.2., +10:u00:Tunnel, +10:u01:tunnel, +14:u02:compatible, +11:u04:capable, +11:u06:Router,, +14:u07:coordinate, +11:u08:Manager, +10:u07:System, +10:u00:tunnel, +14:u01:compatible, +11:u03:capable, +11:u05:Router,, +14:u06:coordinate, +11:u07:Manager, +12:uI2:,.,(..,), +10:u06:System, +14:u00:compatible, +11:u02:capable, +11:u04:Router,, +14:u05:coordinate, +11:u06:Manager, +10:u14:system, +12:uI1:,.,(..,), +10:u05:System, +11:u01:capable, +11:u03:Router,, +14:u04:coordinate, +11:u05:Manager, +7:u08:44], +10:u13:system, +12:uI0:,.,(..,), +10:u04:System, +11:u00:capable, +11:u02:Router,, +14:u03:coordinate, +11:u04:Manager, +7:u07:44], +10:u12:system, +6:u21:Sy, +7:u22:Sys, +8:u23:Syst, +10:u03:System, +11:u01:Router,, +14:u02:coordinate, +11:u03:Manager, +7:u06:44], +10:u11:system, +10:u02:System, +11:u00:Router,, +14:u01:coordinate, +11:u02:Manager, +7:u05:44], +10:u10:system, +10:u01:System, +14:u00:coordinate, +11:u01:Manager, +7:u04:44], +10:u00:System, +11:u00:Manager, +7:u03:44], +7:u02:44], +7:u01:44], +7:u00:44], +11:u08:restore, +11:u07:restore, +11:u06:restore, +11:u14:restore, +11:u05:restore, +10:u08:+DMAC+, +11:u13:restore, +11:u04:restore, +11:u12:restore, +11:u03:restore, +10:u07:+DMAC+, +11:u11:restore, +11:u02:restore, +10:u06:+DMAC+, +13:u08:to|brdcst, +11:u10:restore, +10:u14:+dmac+, +11:u01:restore, +10:u05:+DMAC+, +14:u08:to|nexthop, +10:u13:+dmac+, +11:u00:restore, +10:u04:+DMAC+, +13:u07:to|brdcst, +10:u12:+dmac+, +6:u21:+D, +7:u22:+DM, +8:u23:+DMA, +10:u03:+DMAC+, +13:u06:to|brdcst, +14:u07:to|nexthop, +10:u11:+dmac+, +13:u14:to|brdcst, +10:u02:+DMAC+, +13:u05:to|brdcst, +14:u06:to|nexthop, +10:u10:+dmac+, +13:u13:to|brdcst, +14:u14:to|nexthop, +10:u01:+DMAC+, +13:u04:to|brdcst, +14:u05:to|nexthop, +13:u12:to|brdcst, +14:u13:to|nexthop, +7:u22:to|, +8:u23:to|b, +10:u00:+DMAC+, +13:u03:to|brdcst, +14:u04:to|nexthop, +13:u11:to|brdcst, +14:u12:to|nexthop, +8:u23:to|n, +13:u02:to|brdcst, +14:u03:to|nexthop, +13:u10:to|brdcst, +14:u11:to|nexthop, +13:u01:to|brdcst, +14:u02:to|nexthop, +14:u10:to|nexthop, +13:u00:to|brdcst, +14:u01:to|nexthop, +14:u00:to|nexthop, +18:u08:|ISA100/WiHART, +18:u07:|ISA100/WiHART, +11:u08:nexthop, +18:u06:|ISA100/WiHART, +11:u07:nexthop, +18:u14:|isa100/wihart, +18:u05:|ISA100/WiHART, +10:u08:Source, +11:u06:nexthop, +18:u13:|isa100/wihart, +18:u04:|ISA100/WiHART, +11:u05:nexthop, +18:u12:|isa100/wihart, +6:u21:|I, +7:u22:|IS, +8:u23:|ISA, +18:u03:|ISA100/WiHART, +10:u07:Source, +11:u04:nexthop, +18:u11:|isa100/wihart, +18:u02:|ISA100/WiHART, +10:u06:Source, +11:u03:nexthop, +18:u10:|isa100/wihart, +10:u14:source, +18:u01:|ISA100/WiHART, +10:u05:Source, +11:u02:nexthop, +10:u13:source, +18:u00:|ISA100/WiHART, +10:u04:Source, +11:u01:nexthop, +10:u12:source, +7:u22:Sou, +8:u23:Sour, +10:u03:Source, +11:u00:nexthop, +10:u11:source, +10:u02:Source, +10:u10:source, +10:u01:Source, +10:u00:Source, +7:u08:13:, +7:u07:13:, +7:u06:13:, +7:u05:13:, +7:u04:13:, +12:u08:tunneled, +7:u03:13:, +12:u07:tunneled, +7:u02:13:, +12:u06:tunneled, +10:u08:passed, +13:u08:tunneling, +7:u01:13:, +12:u05:tunneled, +10:u07:passed, +7:u00:13:, +12:u04:tunneled, +10:u06:passed, +13:u07:tunneling, +12:u03:tunneled, +10:u05:passed, +13:u06:tunneling, +12:u08:4.6.1.3., +12:u02:tunneled, +10:u04:passed, +13:u14:tunneling, +13:u05:tunneling, +13:u08:Tunneling, +12:u01:tunneled, +10:u03:passed, +13:u13:tunneling, +13:u04:tunneling, +12:u07:4.6.1.3., +12:u00:tunneled, +10:u02:passed, +13:u07:Tunneling, +13:u12:tunneling, +8:u23:tunn, +13:u03:tunneling, +12:u06:4.6.1.3., +10:u01:passed, +13:u06:Tunneling, +13:u11:tunneling, +12:u14:4.6.1.3., +13:u02:tunneling, +12:u05:4.6.1.3., +11:u08:service, +10:u00:passed, +13:u05:Tunneling, +13:u10:tunneling, +12:u13:4.6.1.3., +13:u01:tunneling, +12:u04:4.6.1.3., +13:u04:Tunneling, +10:u08:access, +12:u12:4.6.1.3., +13:u00:tunneling, +12:u03:4.6.1.3., +11:u07:service, +13:u03:Tunneling, +10:u07:access, +12:u11:4.6.1.3., +10:u14:tunnel, +12:u02:4.6.1.3., +11:u06:service, +13:u02:Tunneling, +10:u06:access, +18:u08:configuration,, +12:u10:4.6.1.3., +10:u13:tunnel, +12:u01:4.6.1.3., +11:u05:service, +13:u01:Tunneling, +10:u05:access, +18:u07:configuration,, +10:u12:tunnel, +12:u00:4.6.1.3., +11:u04:service, +13:u00:Tunneling, +10:u04:access, +18:u06:configuration,, +10:u11:tunnel, +11:u03:service, +10:u03:access, +18:u05:configuration,, +7:u08:45], +10:u10:tunnel, +11:u02:service, +10:u02:access, +18:u04:configuration,, +7:u07:45], +11:u01:service, +10:u01:access, +18:u03:configuration,, +7:u06:45], +11:u00:service, +10:u00:access, +18:u02:configuration,, +7:u05:45], +18:u01:configuration,, +7:u04:45], +14:u08:compressed, +18:u00:configuration,, +7:u03:45], +13:u08:Restoring, +7:u02:45], +14:u07:compressed, +7:u01:45], +14:u06:compressed, +13:u07:Restoring, +11:u08:reason,, +7:u00:45], +14:u14:compressed, +14:u05:compressed, +13:u06:Restoring, +14:u13:compressed, +13:u14:restoring, +14:u04:compressed, +13:u05:Restoring, +11:u07:reason,, +14:u12:compressed, +13:u13:restoring, +14:u03:compressed, +13:u04:Restoring, +11:u06:reason,, +13:u08:mandatory, +14:u11:compressed, +13:u12:restoring, +11:u14:reason,, +8:u23:Rest, +14:u02:compressed, +13:u03:Restoring, +11:u05:reason,, +13:u07:mandatory, +14:u10:compressed, +13:u11:restoring, +11:u13:reason,, +14:u01:compressed, +13:u02:Restoring, +11:u04:reason,, +13:u06:mandatory, +13:u10:restoring, +11:u12:reason,, +8:u14:thus, +8:u23:reas, +14:u00:compressed, +13:u01:Restoring, +11:u03:reason,, +13:u05:mandatory, +11:u11:reason,, +8:u13:thus, +13:u00:Restoring, +11:u02:reason,, +13:u04:mandatory, +11:u10:reason,, +8:u12:thus, +7:u22:thu, +8:u23:thus, +11:u01:reason,, +13:u03:mandatory, +8:u11:thus, +11:u00:reason,, +9:u08:Queue, +13:u02:mandatory, +8:u10:thus, +13:u01:mandatory, +9:u07:Queue, +13:u00:mandatory, +9:u06:Queue, +9:u14:queue, +9:u05:Queue, +9:u13:queue, +9:u04:Queue, +9:u12:queue, +6:u21:Qu, +7:u22:Que, +8:u23:Queu, +9:u03:Queue, +9:u11:queue, +9:u02:Queue, +9:u10:queue, +9:u01:Queue, +9:u00:Queue, +10:u08:+-QoS+, +10:u07:+-QoS+, +10:u06:+-QoS+, +10:u14:+-qos+, +10:u05:+-QoS+, +10:u13:+-qos+, +10:u04:+-QoS+, +10:u12:+-qos+, +7:u22:+-Q, +8:u23:+-Qo, +10:u03:+-QoS+, +10:u11:+-qos+, +10:u02:+-QoS+, +10:u10:+-qos+, +10:u01:+-QoS+, +10:u00:+-QoS+, +7:u08:14:, +15:u08:Considering, +7:u07:14:, +7:u06:14:, +15:u07:Considering, +7:u05:14:, +15:u06:Considering, +12:u08:headers,, +7:u04:14:, +15:u14:considering, +15:u05:Considering, +7:u03:14:, +15:u13:considering, +15:u04:Considering, +12:u07:headers,, +7:u02:14:, +15:u12:considering, +8:u23:Cons, +8:uI2:(),-, +15:u03:Considering, +12:u06:headers,, +7:u01:14:, +14:u08:fragmented, +15:u11:considering, +12:u14:headers,, +8:uI1:(),-, +15:u02:Considering, +12:u05:headers,, +7:u00:14:, +14:u07:fragmented, +15:u10:considering, +12:u13:headers,, +8:uI0:(),-, +15:u01:Considering, +12:u04:headers,, +14:u06:fragmented, +12:u12:headers,, +6:u21:he, +7:u22:hea, +8:u23:head, +15:u00:Considering, +12:u03:headers,, +14:u05:fragmented, +7:u08:46], +12:u11:headers,, +12:u02:headers,, +14:u04:fragmented, +7:u07:46], +12:u10:headers,, +12:u01:headers,, +14:u03:fragmented, +7:u06:46], +12:u00:headers,, +14:u02:fragmented, +7:u05:46], +15:u08:experienced, +14:u01:fragmented, +7:u04:46], +17:u08:fragmentation, +14:u00:fragmented, +7:u03:46], +15:u07:experienced, +7:u02:46], +15:u06:experienced, +17:u07:fragmentation, +17:u08:recomposition, +7:u01:46], +15:u14:experienced, +15:u05:experienced, +17:u06:fragmentation, +7:u00:46], +10:u08:occurs, +15:u13:experienced, +17:u14:fragmentation, +15:u04:experienced, +17:u05:fragmentation, +17:u07:recomposition, +9:u08:store, +10:u07:occurs, +11:u08:creates, +15:u12:experienced, +17:u13:fragmentation, +15:u03:experienced, +17:u04:fragmentation, +17:u06:recomposition, +10:u06:occurs, +11:u07:creates, +15:u11:experienced, +17:u12:fragmentation, +17:u14:recomposition, +15:u02:experienced, +17:u03:fragmentation, +17:u05:recomposition, +9:u07:store, +35:u08:[I-D.ietf-6lo-minimal-fragment], +10:u05:occurs, +11:u06:creates, +15:u10:experienced, +17:u11:fragmentation, +17:u13:recomposition, +15:u01:experienced, +17:u02:fragmentation, +17:u04:recomposition, +9:u06:store, +10:u04:occurs, +11:u05:creates, +17:u10:fragmentation, +17:u12:recomposition, +9:u14:store, +15:u00:experienced, +17:u01:fragmentation, +17:u03:recomposition, +9:u05:store, +35:u07:[I-D.ietf-6lo-minimal-fragment], +14:u08:framework,, +10:u03:occurs, +11:u04:creates, +14:u08:end-to-end, +17:u11:recomposition, +9:u13:store, +17:u00:fragmentation, +17:u02:recomposition, +9:u04:store, +35:u06:[I-D.ietf-6lo-minimal-fragment], +11:u08:virtual, +10:u02:occurs, +11:u03:creates, +14:u07:end-to-end, +46:u08:[I-D.ietf-lwig-6lowpan-virtual-reassembly], +17:u10:recomposition, +9:u12:store, +35:u14:[i-d.ietf-6lo-minimal-fragment], +17:u01:recomposition, +9:u03:store, +35:u05:[I-D.ietf-6lo-minimal-fragment], +14:u07:framework,, +10:u01:occurs, +11:u02:creates, +14:u06:end-to-end, +46:u07:[I-D.ietf-lwig-6lowpan-virtual-reassembly], +14:u08:reassembly, +9:u11:store, +35:u13:[i-d.ietf-6lo-minimal-fragment], +17:u00:recomposition, +9:u02:store, +35:u04:[I-D.ietf-6lo-minimal-fragment], +14:u06:framework,, +11:u07:virtual, +13:u08:sublayer., +10:u00:occurs, +11:u01:creates, +14:u05:end-to-end, +46:u06:[I-D.ietf-lwig-6lowpan-virtual-reassembly], +14:u07:reassembly, +9:u10:store, +35:u12:[i-d.ietf-6lo-minimal-fragment], +14:u14:framework,, +9:u01:store, +35:u03:[I-D.ietf-6lo-minimal-fragment], +14:u05:framework,, +11:u06:virtual, +12:u08:Building, +11:u00:creates, +14:u04:end-to-end, +46:u05:[I-D.ietf-lwig-6lowpan-virtual-reassembly], +14:u06:reassembly, +35:u11:[i-d.ietf-6lo-minimal-fragment], +14:u13:framework,, +11:u14:virtual, +13:uI2:,[-.----], +9:u00:store, +35:u02:[I-D.ietf-6lo-minimal-fragment], +14:u04:framework,, +11:u05:virtual, +13:u07:sublayer., +14:u08:introduces, +14:u03:end-to-end, +46:u04:[I-D.ietf-lwig-6lowpan-virtual-reassembly], +14:u05:reassembly, +35:u10:[i-d.ietf-6lo-minimal-fragment], +14:u12:framework,, +11:u13:virtual, +13:uI1:,[-.----], +35:u01:[I-D.ietf-6lo-minimal-fragment], +14:u03:framework,, +11:u04:virtual, +13:u06:sublayer., +12:u07:Building, +13:u08:selective, +14:u02:end-to-end, +46:u03:[I-D.ietf-lwig-6lowpan-virtual-reassembly], +14:u04:reassembly, +14:u11:framework,, +11:u12:virtual, +13:u14:sublayer., +6:u21:vi, +7:u22:vir, +8:u23:virt, +13:uI0:,[-.----], +35:u00:[I-D.ietf-6lo-minimal-fragment], +14:u02:framework,, +11:u03:virtual, +13:u05:sublayer., +12:u06:Building, +14:u07:introduces, +14:u01:end-to-end, +46:u02:[I-D.ietf-lwig-6lowpan-virtual-reassembly], +14:u03:reassembly, +12:u08:recovery, +14:u10:framework,, +11:u11:virtual, +13:u13:sublayer., +12:u14:building, +14:u01:framework,, +11:u02:virtual, +13:u04:sublayer., +12:u05:Building, +14:u06:introduces, +13:u07:selective, +14:u00:end-to-end, +46:u01:[I-D.ietf-lwig-6lowpan-virtual-reassembly], +14:u02:reassembly, +12:u07:recovery, +11:u10:virtual, +13:u12:sublayer., +12:u13:building, +14:u14:introduces, +12:uI2:,[-.---], +14:u00:framework,, +11:u01:virtual, +13:u03:sublayer., +12:u04:Building, +14:u05:introduces, +13:u06:selective, +46:u00:[I-D.ietf-lwig-6lowpan-virtual-reassembly], +14:u01:reassembly, +12:u06:recovery, +13:u11:sublayer., +12:u12:building, +14:u13:introduces, +13:u14:selective, +7:u22:Bui, +8:u23:Buil, +12:uI1:,[-.---], +11:u00:virtual, +13:u02:sublayer., +12:u03:Building, +14:u04:introduces, +13:u05:selective, +14:u00:reassembly, +12:u05:recovery, +13:u10:sublayer., +12:u11:building, +14:u12:introduces, +13:u13:selective, +8:u23:intr, +12:uI0:,[-.---], +13:u01:sublayer., +12:u02:Building, +14:u03:introduces, +13:u04:selective, +12:u04:recovery, +12:u10:building, +14:u11:introduces, +13:u12:selective, +13:u00:sublayer., +12:u01:Building, +14:u02:introduces, +13:u03:selective, +12:u03:recovery, +14:u10:introduces, +13:u11:selective, +12:u00:Building, +14:u01:introduces, +13:u02:selective, +12:u02:recovery, +13:u10:selective, +14:u00:introduces, +13:u01:selective, +12:u01:recovery, +13:u00:selective, +12:u00:recovery, +7:u08:15:, +7:u07:15:, +7:u06:15:, +7:u05:15:, +7:u04:15:, +7:u03:15:, +7:u02:15:, +7:u01:15:, +7:u00:15:, +7:u08:47], +7:u07:47], +7:u06:47], +7:u05:47], +7:u04:47], +7:u03:47], +7:u02:47], +7:u01:47], +7:u00:47], +10:u08:replay, +10:u07:replay, +10:u06:replay, +10:u14:replay, +10:u05:replay, +10:u13:replay, +10:u04:replay, +10:u12:replay, +8:u23:repl, +10:u03:replay, +10:u11:replay, +10:u02:replay, +10:u10:replay, +10:u01:replay, +10:u00:replay, +7:u08:16:, +7:u07:16:, +10:u08:bitmap, +12:u08:fragment, +7:u06:16:, +10:u07:bitmap, +7:u05:16:, +10:u06:bitmap, +12:u07:fragment, +7:u04:16:, +10:u05:bitmap, +7:u08:ECN, +12:u06:fragment, +7:u03:16:, +10:u04:bitmap, +7:u07:ECN, +12:u05:fragment, +7:u02:16:, +10:u03:bitmap, +7:u06:ECN, +7:u22:sou, +8:u23:sour, +12:u04:fragment, +7:u01:16:, +10:u02:bitmap, +7:u05:ECN, +12:u03:fragment, +14:u08:identifies, +7:u00:16:, +10:u01:bitmap, +7:u04:ECN, +12:u02:fragment, +10:u00:bitmap, +7:u03:ECN, +12:u01:fragment, +14:u07:identifies, +7:u02:ECN, +12:u00:fragment, +14:u06:identifies, +7:u01:ECN, +14:u14:identifies, +14:u05:identifies, +7:u00:ECN, +14:u13:identifies, +14:u04:identifies, +12:u08:identify, +14:u12:identifies, +14:u03:identifies, +12:u08:uniquely, +14:u11:identifies, +14:u02:identifies, +12:u07:identify, +12:u07:uniquely, +14:u10:identifies, +14:u01:identifies, +12:u06:identify, +12:u06:uniquely, +12:u14:identify, +14:u00:identifies, +12:u05:identify, +15:u08:Detection"., +12:u05:uniquely, +12:u13:identify, +12:u04:identify, +10:u08:By-Hop, +12:u04:uniquely, +12:u12:identify, +12:u03:identify, +15:u07:Detection"., +12:u03:uniquely, +10:u08:Header, +12:u11:identify, +12:u02:identify, +15:u06:Detection"., +10:u07:By-Hop, +12:u02:uniquely, +10:u07:Header, +15:u08:compression, +12:u10:identify, +15:u14:detection"., +9:uI2:.[],", +12:u01:identify, +15:u05:Detection"., +10:u06:By-Hop, +12:u01:uniquely, +10:u06:Header, +15:u07:compression, +15:u13:detection"., +10:u14:by-hop, +9:uI1:.[],", +7:uI2:".-, +12:u00:identify, +15:u04:Detection"., +10:u05:By-Hop, +12:u00:uniquely, +10:u05:Header, +15:u06:compression, +13:u08:[RFC6554], +15:u12:detection"., +10:u13:by-hop, +9:uI0:.[],", +7:uI1:".-, +8:uI2:-[]., +15:u03:Detection"., +10:u04:By-Hop, +10:u04:Header, +15:u05:compression, +13:u07:[RFC6554], +15:u11:detection"., +10:u12:by-hop, +7:u22:By-, +8:u23:By-H, +7:uI0:".-, +8:uI1:-[]., +15:u02:Detection"., +10:u03:By-Hop, +10:u03:Header, +15:u04:compression, +13:u06:[RFC6554], +15:u10:detection"., +10:u11:by-hop, +8:uI0:-[]., +15:u01:Detection"., +10:u02:By-Hop, +10:u02:Header, +15:u03:compression, +13:u05:[RFC6554], +10:u10:by-hop, +7:uI2:[]/, +15:u00:Detection"., +10:u01:By-Hop, +10:u01:Header, +15:u02:compression, +13:u04:[RFC6554], +7:u08:48], +7:uI1:[]/, +9:uI2:[][]., +10:u00:By-Hop, +10:u00:Header, +15:u01:compression, +13:u03:[RFC6554], +7:u07:48], +7:uI0:[]/, +9:uI1:[][]., +15:u00:compression, +13:u02:[RFC6554], +7:u06:48], +9:uI0:[][]., +13:u01:[RFC6554], +7:u05:48], +13:u00:[RFC6554], +7:u04:48], +7:u03:48], +15:u08:generalized, +7:u02:48], +15:u07:generalized, +7:u01:48], +15:u06:generalized, +7:u00:48], +15:u05:generalized, +15:u04:generalized, +15:u03:generalized, +14:u08:correspond, +15:u02:generalized, +15:u01:generalized, +14:u07:correspond, +15:u00:generalized, +14:u06:correspond, +14:u14:correspond, +14:u05:correspond, +14:u13:correspond, +9:u14:avoid, +14:u04:correspond, +14:u08:relations,, +14:u12:correspond, +9:u13:avoid, +14:u03:correspond, +11:u08:groups., +14:u11:correspond, +9:u12:avoid, +7:u22:avo, +8:u23:avoi, +14:u02:correspond, +14:u07:relations,, +12:u08:receive), +14:u10:correspond, +9:u11:avoid, +14:u01:correspond, +14:u06:relations,, +11:u07:groups., +9:u10:avoid, +14:u14:relations,, +8:uI2:()'', +14:u00:correspond, +14:u05:relations,, +11:u06:groups., +12:u07:receive), +14:u13:relations,, +11:u14:groups., +8:uI1:()'', +14:u04:relations,, +11:u05:groups., +12:u06:receive), +9:u08:least, +14:u12:relations,, +11:u13:groups., +12:u14:receive), +8:uI0:()'', +14:u03:relations,, +11:u04:groups., +12:u05:receive), +9:u07:least, +14:u11:relations,, +11:u12:groups., +12:u13:receive), +6:u21:gr, +7:u22:gro, +8:u23:grou, +8:uI2:)'',, +14:u02:relations,, +11:u03:groups., +12:u04:receive), +9:u06:least, +14:u10:relations,, +11:u11:groups., +12:u12:receive), +8:uI1:)'',, +14:u01:relations,, +11:u02:groups., +12:u03:receive), +9:u05:least, +11:u10:groups., +12:u11:receive), +8:uI0:)'',, +14:u00:relations,, +11:u01:groups., +12:u02:receive), +19:u08:retransmissions, +9:u04:least, +12:u10:receive), +11:u00:groups., +12:u01:receive), +9:u03:least, +10:u14:branch, +12:u00:receive), +19:u07:retransmissions, +9:u02:least, +10:u13:branch, +9:uI2:''.'', +19:u06:retransmissions, +10:u08:groups, +9:u01:least, +10:u12:branch, +19:u14:retransmissions, +7:u22:bra, +8:u23:bran, +9:uI1:''.'', +19:u05:retransmissions, +9:u00:least, +10:u11:branch, +19:u13:retransmissions, +9:uI0:''.'', +19:u04:retransmissions, +10:u07:groups, +10:u10:branch, +19:u12:retransmissions, +12:u14:branches, +19:u03:retransmissions, +10:u06:groups, +13:u08:attempted, +19:u11:retransmissions, +12:u13:branches, +10:u14:groups, +19:u02:retransmissions, +10:u05:groups, +11:u08:branch., +19:u10:retransmissions, +12:u12:branches, +10:u13:groups, +19:u01:retransmissions, +10:u04:groups, +13:u07:attempted, +12:u11:branches, +10:u12:groups, +19:u00:retransmissions, +10:u03:groups, +13:u06:attempted, +11:u07:branch., +11:u08:Tracks,, +12:u10:branches, +10:u11:groups, +13:u14:attempted, +10:u02:groups, +13:u05:attempted, +11:u06:branch., +10:u08:trying, +10:u10:groups, +13:u13:attempted, +11:u14:branch., +10:u01:groups, +13:u04:attempted, +11:u05:branch., +11:u07:Tracks,, +10:u07:trying, +10:u08:fails., +13:u12:attempted, +11:u13:branch., +8:u23:atte, +10:u00:groups, +13:u03:attempted, +11:u04:branch., +11:u06:Tracks,, +10:u08:group., +10:u06:trying, +10:u07:fails., +13:u11:attempted, +11:u12:branch., +11:u14:tracks,, +8:uI2:''.-, +13:u02:attempted, +11:u03:branch., +11:u05:Tracks,, +15:u08:elimination, +10:u05:trying, +10:u06:fails., +11:u08:Retries, +13:u10:attempted, +11:u11:branch., +11:u13:tracks,, +8:uI1:''.-, +13:u01:attempted, +11:u02:branch., +11:u04:Tracks,, +10:u07:group., +13:u08:reception, +10:u04:trying, +10:u05:fails., +11:u07:Retries, +11:u10:branch., +11:u12:tracks,, +8:uI0:''.-, +13:u00:attempted, +11:u01:branch., +11:u03:Tracks,, +10:u06:group., +15:u07:elimination, +10:u03:trying, +10:u04:fails., +11:u06:Retries, +11:u11:tracks,, +10:u14:group., +11:u00:branch., +11:u02:Tracks,, +10:u05:group., +15:u06:elimination, +13:u07:reception, +15:u08:transmitted, +10:u02:trying, +10:u03:fails., +11:u05:Retries, +9:u08:'AND', +11:u10:tracks,, +10:u13:group., +15:u14:elimination, +11:u01:Tracks,, +10:u04:group., +15:u05:elimination, +13:u06:reception, +13:u08:respected, +10:u01:trying, +10:u02:fails., +11:u04:Retries, +9:u07:'AND', +10:u12:group., +15:u13:elimination, +13:u14:reception, +11:u00:Tracks,, +10:u03:group., +15:u04:elimination, +13:u05:reception, +15:u07:transmitted, +10:u00:trying, +10:u01:fails., +11:u03:Retries, +9:u06:'AND', +10:u11:group., +15:u12:elimination, +13:u13:reception, +6:u21:el, +7:u22:eli, +8:u23:elim, +10:u02:group., +15:u03:elimination, +13:u04:reception, +15:u06:transmitted, +13:u07:respected, +10:u00:fails., +11:u02:Retries, +9:u05:'AND', +10:u10:group., +15:u11:elimination, +13:u12:reception, +15:u14:transmitted, +10:u01:group., +15:u02:elimination, +13:u03:reception, +15:u05:transmitted, +13:u06:respected, +11:u01:Retries, +9:u04:'AND', +15:u10:elimination, +13:u11:reception, +15:u13:transmitted, +13:u14:respected, +10:u00:group., +15:u01:elimination, +13:u02:reception, +15:u04:transmitted, +13:u05:respected, +11:u00:Retries, +9:u03:'AND', +7:u08:49], +13:u10:reception, +15:u12:transmitted, +13:u13:respected, +15:u00:elimination, +13:u01:reception, +15:u03:transmitted, +13:u04:respected, +9:u02:'AND', +7:u07:49], +15:u11:transmitted, +13:u12:respected, +13:u00:reception, +15:u02:transmitted, +13:u03:respected, +9:u01:'AND', +7:u06:49], +15:u10:transmitted, +13:u11:respected, +15:u01:transmitted, +13:u02:respected, +9:u00:'AND', +7:u05:49], +13:u10:respected, +15:u00:transmitted, +13:u01:respected, +7:u04:49], +13:u00:respected, +7:u03:49], +7:u08:17,, +7:u08:+-+, +7:u02:49], +7:u07:17,, +7:u01:49], +7:u06:17,, +7:u07:+-+, +9:u08:--|A|, +7:u00:49], +7:u05:17,, +7:u06:+-+, +7:u04:17,, +13:u08:------|C|, +7:u14:+-+, +7:u05:+-+, +9:u07:--|A|, +7:u03:17,, +13:u07:------|C|, +7:u13:+-+, +7:u04:+-+, +9:u06:--|A|, +7:u02:17,, +13:u06:------|C|, +7:u12:+-+, +9:u14:--|a|, +7:u23:+-+, +7:u03:+-+, +9:u05:--|A|, +7:u01:17,, +13:u05:------|C|, +7:u11:+-+, +9:u13:--|a|, +7:u02:+-+, +9:u04:--|A|, +7:u00:17,, +13:u04:------|C|, +7:u10:+-+, +9:u12:--|a|, +7:u22:--|, +8:u23:--|A, +7:u01:+-+, +9:u03:--|A|, +13:u03:------|C|, +9:u11:--|a|, +7:u00:+-+, +9:u02:--|A|, +13:u02:------|C|, +9:u10:--|a|, +9:u01:--|A|, +13:u01:------|C|, +9:u00:--|A|, +7:u08:|I|, +13:u00:------|C|, +7:u08:|E|, +7:u07:|I|, +7:u06:|I|, +7:u07:|E|, +7:u14:|i|, +7:u05:|I|, +7:u06:|E|, +7:u13:|i|, +7:u14:|e|, +7:u04:|I|, +7:u05:|E|, +7:u12:|i|, +7:u13:|e|, +7:u22:|I|, +7:u23:|I|, +7:u03:|I|, +7:u04:|E|, +7:u11:|i|, +7:u12:|e|, +6:u21:|E, +7:u22:|E|, +7:u23:|E|, +7:u02:|I|, +7:u03:|E|, +7:u10:|i|, +7:u11:|e|, +7:u01:|I|, +7:u02:|E|, +7:u10:|e|, +7:u00:|I|, +7:u01:|E|, +7:u00:|E|, +9:u08:--|B|, +14:u08:-------|D|, +9:u07:--|B|, +14:u07:-------|D|, +9:u06:--|B|, +14:u06:-------|D|, +9:u14:--|b|, +9:u05:--|B|, +14:u05:-------|D|, +7:u08:17:, +9:u13:--|b|, +9:u04:--|B|, +14:u04:-------|D|, +7:u07:17:, +14:u08:assumption, +9:u12:--|b|, +8:u23:--|B, +9:u03:--|B|, +14:u03:-------|D|, +7:u06:17:, +14:u07:assumption, +9:u11:--|b|, +9:u02:--|B|, +14:u02:-------|D|, +7:u05:17:, +14:u06:assumption, +9:u10:--|b|, +9:u01:--|B|, +14:u01:-------|D|, +7:u04:17:, +14:u05:assumption, +6:u08:we, +9:u00:--|B|, +14:u00:-------|D|, +7:u03:17:, +14:u04:assumption, +6:u07:we, +13:u08:forwarded, +7:u02:17:, +14:u03:assumption, +6:u06:we, +10:u08:other,, +7:u01:17:, +14:u02:assumption, +6:u05:we, +14:u14:slotframe., +13:u07:forwarded, +12:u08:physical, +7:u00:17:, +14:u01:assumption, +6:u04:we, +14:u13:slotframe., +13:u06:forwarded, +10:u07:other,, +14:u08:slotOffset, +14:u00:assumption, +6:u03:we, +14:u12:slotframe., +13:u14:forwarded, +13:u05:forwarded, +10:u06:other,, +12:u07:physical, +6:u02:we, +14:u11:slotframe., +13:u13:forwarded, +10:u14:other,, +13:u04:forwarded, +10:u05:other,, +12:u06:physical, +14:u07:slotOffset, +6:u01:we, +14:u10:slotframe., +13:u12:forwarded, +10:u13:other,, +12:u14:physical, +13:u03:forwarded, +10:u04:other,, +12:u05:physical, +14:u06:slotOffset, +6:u00:we, +13:u11:forwarded, +10:u12:other,, +12:u13:physical, +14:u14:slotoffset, +13:u02:forwarded, +10:u03:other,, +12:u04:physical, +14:u05:slotOffset, +13:u10:forwarded, +10:u11:other,, +12:u12:physical, +14:u13:slotoffset, +7:u22:phy, +8:u23:phys, +13:u01:forwarded, +10:u02:other,, +12:u03:physical, +14:u04:slotOffset, +10:u10:other,, +12:u11:physical, +14:u12:slotoffset, +13:u00:forwarded, +10:u01:other,, +12:u02:physical, +14:u03:slotOffset, +12:u10:physical, +14:u11:slotoffset, +10:u00:other,, +12:u01:physical, +14:u02:slotOffset, +14:u10:slotoffset, +12:u00:physical, +14:u01:slotOffset, +14:u00:slotOffset, +50:u08:+----+----+----+----+----+----+----+----+----+, +50:u07:+----+----+----+----+----+----+----+----+----+, +50:u06:+----+----+----+----+----+----+----+----+----+, +50:u14:+----+----+----+----+----+----+----+----+----+, +50:u05:+----+----+----+----+----+----+----+----+----+, +50:u13:+----+----+----+----+----+----+----+----+----+, +50:u04:+----+----+----+----+----+----+----+----+----+, +50:u12:+----+----+----+----+----+----+----+----+----+, +50:u03:+----+----+----+----+----+----+----+----+----+, +50:u11:+----+----+----+----+----+----+----+----+----+, +50:u02:+----+----+----+----+----+----+----+----+----+, +10:u08:|B->D|, +50:u10:+----+----+----+----+----+----+----+----+----+, +50:u01:+----+----+----+----+----+----+----+----+----+, +50:u00:+----+----+----+----+----+----+----+----+----+, +10:u07:|B->D|, +10:u06:|B->D|, +10:u14:|b->d|, +10:u05:|B->D|, +10:u13:|b->d|, +10:u04:|B->D|, +10:u08:|I->A|, +10:u12:|b->d|, +6:u21:|B, +7:u22:|B-, +8:u23:|B->, +10:u03:|B->D|, +15:u08:|A->C|B->D|, +10:u11:|b->d|, +10:u02:|B->D|, +10:u07:|I->A|, +10:u10:|b->d|, +10:u01:|B->D|, +10:u06:|I->A|, +15:u07:|A->C|B->D|, +10:u14:|i->a|, +10:u00:|B->D|, +10:u05:|I->A|, +15:u06:|A->C|B->D|, +10:u13:|i->a|, +15:u14:|a->c|b->d|, +10:u04:|I->A|, +15:u05:|A->C|B->D|, +10:u12:|i->a|, +15:u13:|a->c|b->d|, +7:u22:|I-, +8:u23:|I->, +10:u03:|I->A|, +15:u04:|A->C|B->D|, +10:u11:|i->a|, +15:u12:|a->c|b->d|, +6:u21:|A, +7:u22:|A-, +8:u23:|A->, +10:u02:|I->A|, +15:u03:|A->C|B->D|, +10:u10:|i->a|, +15:u11:|a->c|b->d|, +10:u01:|I->A|, +15:u02:|A->C|B->D|, +15:u10:|a->c|b->d|, +10:u00:|I->A|, +15:u01:|A->C|B->D|, +10:u08:|I->B|, +15:u00:|A->C|B->D|, +10:u08:|C->E|, +10:u07:|I->B|, +10:u08:|D->E|, +10:u06:|I->B|, +10:u07:|C->E|, +10:u14:|i->b|, +10:u05:|I->B|, +10:u06:|C->E|, +10:u07:|D->E|, +10:u13:|i->b|, +10:u14:|c->e|, +10:u04:|I->B|, +10:u05:|C->E|, +10:u06:|D->E|, +10:u12:|i->b|, +10:u13:|c->e|, +10:u14:|d->e|, +10:u03:|I->B|, +10:u04:|C->E|, +10:u05:|D->E|, +10:u11:|i->b|, +10:u12:|c->e|, +10:u13:|d->e|, +7:u22:|C-, +8:u23:|C->, +10:u02:|I->B|, +10:u03:|C->E|, +10:u04:|D->E|, +10:u10:|i->b|, +10:u11:|c->e|, +10:u12:|d->e|, +6:u21:|D, +7:u22:|D-, +8:u23:|D->, +10:u01:|I->B|, +10:u02:|C->E|, +10:u03:|D->E|, +10:u10:|c->e|, +10:u11:|d->e|, +10:u00:|I->B|, +10:u01:|C->E|, +10:u02:|D->E|, +10:u08:|A->C|, +10:u10:|d->e|, +10:u00:|C->E|, +10:u01:|D->E|, +10:u00:|D->E|, +10:u07:|A->C|, +10:u06:|A->C|, +10:u14:|a->c|, +10:u05:|A->C|, +10:u13:|a->c|, +10:u04:|A->C|, +10:u12:|a->c|, +10:u03:|A->C|, +10:u11:|a->c|, +10:u02:|A->C|, +10:u10:|a->c|, +10:u01:|A->C|, +10:u00:|A->C|, +7:u08:18:, +7:u07:18:, +7:u06:18:, +7:u05:18:, +7:u08:50], +7:u04:18:, +7:u07:50], +7:u03:18:, +7:u06:50], +7:u02:18:, +7:u05:50], +7:u01:18:, +7:u04:50], +10:u08:awake., +7:u00:18:, +7:u03:50], +10:u08:waking, +7:u02:50], +10:u07:waking, +10:u07:awake., +7:u01:50], +10:u06:waking, +10:u06:awake., +7:u00:50], +10:u05:waking, +10:u14:awake., +10:u05:awake., +10:u04:waking, +10:u13:awake., +10:u04:awake., +10:u03:waking, +10:u12:awake., +6:u21:aw, +7:u22:awa, +8:u23:awak, +10:u03:awake., +10:u02:waking, +10:u11:awake., +10:u02:awake., +10:u01:waking, +10:u10:awake., +10:u01:awake., +10:u00:waking, +10:u00:awake., +8:u08:|rcv, +8:u07:|rcv, +13:u14:operation, +8:u06:|rcv, +13:u13:operation, +8:u14:|rcv, +8:u05:|rcv, +13:u12:operation, +8:u13:|rcv, +8:u04:|rcv, +13:u11:operation, +8:u12:|rcv, +6:u21:|r, +7:u22:|rc, +8:u23:|rcv, +8:u03:|rcv, +7:u08:19:, +13:u10:operation, +8:u11:|rcv, +8:u02:|rcv, +7:u07:19:, +11:u08:logical, +8:u10:|rcv, +11:uI2:////..., +8:u01:|rcv, +59:u08:+------+---------------------+------------------------+, +7:u06:19:, +11:u07:logical, +10:u08:table:, +11:uI1:////..., +8:u00:|rcv, +7:u05:19:, +11:u06:logical, +10:u07:table:, +11:uI0:////..., +59:u07:+------+---------------------+------------------------+, +7:u08:rcv, +7:u04:19:, +11:u05:logical, +10:u06:table:, +59:u06:+------+---------------------+------------------------+, +7:u03:19:, +11:u04:logical, +10:u05:table:, +59:u14:+------+---------------------+------------------------+, +59:u05:+------+---------------------+------------------------+, +7:u07:rcv, +8:u08:xmit, +7:u02:19:, +11:u03:logical, +10:u04:table:, +59:u13:+------+---------------------+------------------------+, +55:uI2:---------------------------------------------------, +6:uI2:51, +59:u04:+------+---------------------+------------------------+, +7:u06:rcv, +7:u01:19:, +11:u02:logical, +10:u03:table:, +59:u12:+------+---------------------+------------------------+, +7:u14:rcv, +55:uI1:---------------------------------------------------, +6:uI1:51, +59:u03:+------+---------------------+------------------------+, +7:u05:rcv, +8:u07:xmit, +7:u00:19:, +11:u01:logical, +10:u02:table:, +59:u11:+------+---------------------+------------------------+, +7:u13:rcv, +55:uI0:---------------------------------------------------, +6:uI0:51, +59:u02:+------+---------------------+------------------------+, +7:u04:rcv, +8:u06:xmit, +11:u00:logical, +10:u01:table:, +59:u10:+------+---------------------+------------------------+, +7:u12:rcv, +8:u14:xmit, +6:u21:rc, +7:u22:rcv, +7:u23:rcv, +59:u01:+------+---------------------+------------------------+, +7:u03:rcv, +8:u05:xmit, +10:u00:table:, +5:u08:I, +7:u11:rcv, +8:u13:xmit, +59:u00:+------+---------------------+------------------------+, +7:u02:rcv, +8:u04:xmit, +7:u08:N/A, +5:u07:I, +7:u10:rcv, +8:u12:xmit, +5:u20:x, +6:u21:xm, +7:u22:xmi, +8:u23:xmit, +7:u01:rcv, +8:u03:xmit, +5:u06:I, +8:u11:xmit, +7:u00:rcv, +8:u02:xmit, +7:u07:N/A, +5:u05:I, +6:u08:(0, +8:u10:xmit, +8:u01:xmit, +7:u06:N/A, +5:u04:I, +6:u07:(0, +7:u14:n/a, +8:u00:xmit, +7:u05:N/A, +5:u03:I, +6:u06:(0, +7:u13:n/a, +7:u04:N/A, +5:u02:I, +6:u05:(0, +6:u08:OR, +7:u12:n/a, +6:u21:N/, +7:u22:N/A, +7:u23:N/A, +7:u03:N/A, +6:u08:(2, +5:u01:I, +6:u04:(0, +6:u07:OR, +7:u11:n/a, +7:u02:N/A, +5:u00:I, +6:u03:(0, +6:u06:OR, +7:u10:n/a, +6:u14:(0, +7:u01:N/A, +6:u07:(2, +6:u02:(0, +6:u05:OR, +6:u13:(0, +7:u00:N/A, +6:u06:(2, +6:u01:(0, +6:u04:OR, +6:u12:(0, +6:u14:(2, +6:u21:(0, +6:u22:(0, +6:u23:(0, +6:u05:(2, +6:u00:(0, +6:u03:OR, +6:u11:(0, +6:u13:(2, +6:u04:(2, +6:u02:OR, +6:u10:(0, +6:u12:(2, +6:u21:(2, +6:u22:(2, +6:u23:(2, +6:u03:(2, +6:u08:(4, +6:u01:OR, +6:u11:(2, +6:u02:(2, +6:u00:OR, +6:u10:(2, +6:u01:(2, +6:u07:(4, +6:u00:(2, +6:u06:(4, +5:u08:C, +6:u14:(4, +6:u05:(4, +5:u07:C, +6:u13:(4, +6:u04:(4, +5:u06:C, +6:u12:(4, +6:u21:(4, +6:u22:(4, +6:u23:(4, +6:u03:(4, +6:u08:(5, +5:u05:C, +6:u11:(4, +6:u02:(4, +5:u04:C, +6:u10:(4, +6:u01:(4, +6:u07:(5, +5:u03:C, +6:u00:(4, +6:u06:(5, +5:u02:C, +5:u08:D, +6:u14:(5, +6:u05:(5, +5:u01:C, +5:u07:D, +6:u13:(5, +6:u04:(5, +5:u00:C, +5:u06:D, +6:u12:(5, +6:u21:(5, +6:u22:(5, +6:u23:(5, +6:u03:(5, +6:u08:(7, +5:u05:D, +6:u11:(5, +6:u02:(5, +5:u04:D, +6:u10:(5, +6:u01:(5, +6:u07:(7, +5:u03:D, +6:u00:(5, +6:u06:(7, +5:u02:D, +5:u08:E, +6:u14:(7, +6:u05:(7, +5:u01:D, +5:u07:E, +6:u13:(7, +6:u04:(7, +5:u00:D, +5:u06:E, +6:u12:(7, +6:u21:(7, +6:u22:(7, +6:u23:(7, +6:u03:(7, +5:u05:E, +6:u11:(7, +6:u02:(7, +5:u04:E, +6:u10:(7, +6:u01:(7, +5:u03:E, +6:u00:(7, +5:u02:E, +5:u01:E, +5:u00:E, +12:u08:"Minimal, +12:u07:"Minimal, +7:u08:was, +18:u08:Considerations, +12:u06:"Minimal, +7:u07:was, +12:u05:"Minimal, +7:u06:was, +18:u07:Considerations, +12:u04:"Minimal, +7:u05:was, +12:uI2:[-.---]-, +18:u06:Considerations, +12:u03:"Minimal, +7:u04:was, +18:u14:considerations, +12:uI1:[-.---]-, +18:u05:Considerations, +12:u02:"Minimal, +7:u03:was, +18:u13:considerations, +12:uI0:[-.---]-, +18:u04:Considerations, +35:u08:[I-D.ietf-detnet-architecture]., +12:u01:"Minimal, +7:u02:was, +18:u12:considerations, +18:u03:Considerations, +12:u00:"Minimal, +7:u01:was, +18:u11:considerations, +18:u02:Considerations, +35:u07:[I-D.ietf-detnet-architecture]., +7:u00:was, +18:u10:considerations, +10:u14:detnet, +18:u01:Considerations, +35:u06:[I-D.ietf-detnet-architecture]., +10:u13:detnet, +35:u14:[i-d.ietf-detnet-architecture]., +18:u00:Considerations, +35:u05:[I-D.ietf-detnet-architecture]., +7:u08:51], +10:u12:detnet, +35:u13:[i-d.ietf-detnet-architecture]., +8:u23:DetN, +35:u04:[I-D.ietf-detnet-architecture]., +7:u07:51], +10:u11:detnet, +35:u12:[i-d.ietf-detnet-architecture]., +35:u03:[I-D.ietf-detnet-architecture]., +7:u06:51], +10:u10:detnet, +35:u11:[i-d.ietf-detnet-architecture]., +35:u02:[I-D.ietf-detnet-architecture]., +7:u05:51], +35:u10:[i-d.ietf-detnet-architecture]., +35:u01:[I-D.ietf-detnet-architecture]., +7:u04:51], +35:u00:[I-D.ietf-detnet-architecture]., +7:u03:51], +7:u02:51], +7:u01:51], +7:u00:51], +10:u08:cannot, +14:u08:unreactive, +10:u07:cannot, +18:u08:communication., +10:u06:cannot, +10:u14:tracks, +14:u07:unreactive, +11:u08:jamming, +10:u05:cannot, +10:u13:tracks, +14:u06:unreactive, +18:u07:communication., +10:u04:cannot, +10:u12:tracks, +14:u14:unreactive, +14:u05:unreactive, +18:u06:communication., +11:u07:jamming, +10:u03:cannot, +10:u11:tracks, +14:u13:unreactive, +18:u14:communication., +14:u04:unreactive, +18:u05:communication., +11:u06:jamming, +10:u02:cannot, +10:u10:tracks, +14:u12:unreactive, +18:u13:communication., +11:u14:jamming, +14:u03:unreactive, +18:u04:communication., +11:u05:jamming, +10:u01:cannot, +14:u11:unreactive, +18:u12:communication., +11:u13:jamming, +14:u02:unreactive, +18:u03:communication., +11:u04:jamming, +11:u08:secured, +10:u00:cannot, +14:u10:unreactive, +18:u11:communication., +11:u12:jamming, +6:u21:ja, +7:u22:jam, +8:u23:jamm, +14:u01:unreactive, +18:u02:communication., +11:u03:jamming, +13:u08:injection, +18:u10:communication., +11:u11:jamming, +14:u00:unreactive, +18:u01:communication., +11:u02:jamming, +11:u07:secured, +11:u10:jamming, +18:u00:communication., +11:u01:jamming, +11:u06:secured, +13:u07:injection, +11:u08:Traffic, +11:u14:secured, +11:u00:jamming, +11:u05:secured, +13:u06:injection, +14:u08:Engineered, +11:u13:secured, +13:u14:injection, +11:u04:secured, +13:u05:injection, +11:u07:Traffic, +14:u07:Engineered, +11:u08:equally, +11:u12:secured, +13:u13:injection, +11:u03:secured, +13:u04:injection, +11:u06:Traffic, +11:u08:against, +14:u06:Engineered, +11:u07:equally, +11:u11:secured, +13:u12:injection, +7:u22:inj, +8:u23:inje, +11:u02:secured, +13:u03:injection, +11:u05:Traffic, +14:u05:Engineered, +11:u06:equally, +7:u08:DoS, +11:u10:secured, +13:u11:injection, +11:u14:applies, +9:uI2:()[],, +11:u01:secured, +13:u02:injection, +11:u04:Traffic, +11:u07:against, +14:u04:Engineered, +11:u05:equally, +7:u07:DoS, +13:u10:injection, +11:u13:applies, +8:u23:Traf, +9:uI1:()[],, +11:u00:secured, +13:u01:injection, +11:u03:Traffic, +11:u06:against, +14:u03:Engineered, +11:u04:equally, +7:u06:DoS, +11:u08:Hopping, +11:u12:applies, +11:u14:against, +9:uI0:()[],, +13:u00:injection, +11:u02:Traffic, +11:u05:against, +14:u02:Engineered, +11:u03:equally, +7:u05:DoS, +11:u07:Hopping, +9:u08:rogue, +11:u11:applies, +11:u13:against, +11:u01:Traffic, +11:u04:against, +14:u01:Engineered, +11:u02:equally, +7:u04:DoS, +11:u06:Hopping, +9:u07:rogue, +15:u08:selectively, +11:u10:applies, +11:u12:against, +6:u21:ag, +7:u22:aga, +8:u23:agai, +11:u00:Traffic, +11:u03:against, +14:u00:Engineered, +11:u01:equally, +7:u03:DoS, +11:u05:Hopping, +9:u06:rogue, +15:u07:selectively, +10:u08:attack, +11:u11:against, +11:u02:against, +11:u00:equally, +7:u02:DoS, +11:u04:Hopping, +9:u05:rogue, +15:u06:selectively, +10:u07:attack, +11:u10:against, +11:u01:against, +41:u08:[I-D.tiloca-6tisch-robust-scheduling], +7:u01:DoS, +11:u03:Hopping, +9:u04:rogue, +15:u05:selectively, +10:u06:attack, +11:u00:against, +7:u00:DoS, +11:u02:Hopping, +9:u03:rogue, +15:u04:selectively, +10:u05:attack, +12:u08:proposes, +41:u07:[I-D.tiloca-6tisch-robust-scheduling], +11:u08:attack., +11:u01:Hopping, +9:u02:rogue, +15:u03:selectively, +10:u04:attack, +12:u07:proposes, +41:u06:[I-D.tiloca-6tisch-robust-scheduling], +11:u00:Hopping, +9:u01:rogue, +15:u02:selectively, +10:u03:attack, +12:u06:proposes, +41:u14:[i-d.tiloca-6tisch-robust-scheduling], +41:u05:[I-D.tiloca-6tisch-robust-scheduling], +11:u07:attack., +9:u00:rogue, +15:u01:selectively, +10:u02:attack, +12:u05:proposes, +41:u13:[i-d.tiloca-6tisch-robust-scheduling], +41:u04:[I-D.tiloca-6tisch-robust-scheduling], +11:u06:attack., +14:u08:Link-Layer, +15:u00:selectively, +10:u01:attack, +12:u04:proposes, +41:u12:[i-d.tiloca-6tisch-robust-scheduling], +11:u14:attack., +41:u03:[I-D.tiloca-6tisch-robust-scheduling], +11:u05:attack., +12:u08:devices,, +10:u00:attack, +12:u03:proposes, +41:u11:[i-d.tiloca-6tisch-robust-scheduling], +11:u13:attack., +41:u02:[I-D.tiloca-6tisch-robust-scheduling], +11:u04:attack., +14:u07:Link-Layer, +12:u02:proposes, +10:u08:except, +41:u10:[i-d.tiloca-6tisch-robust-scheduling], +11:u12:attack., +41:u01:[I-D.tiloca-6tisch-robust-scheduling], +11:u03:attack., +14:u06:Link-Layer, +12:u07:devices,, +12:u01:proposes, +10:u07:except, +11:u11:attack., +14:u14:link-layer, +41:u00:[I-D.tiloca-6tisch-robust-scheduling], +11:u02:attack., +14:u05:Link-Layer, +12:u06:devices,, +12:u00:proposes, +10:u06:except, +11:u10:attack., +14:u13:link-layer, +12:u14:devices,, +11:u01:attack., +14:u04:Link-Layer, +12:u05:devices,, +10:u05:except, +14:u12:link-layer, +12:u13:devices,, +11:u00:attack., +14:u03:Link-Layer, +12:u04:devices,, +10:u04:except, +10:u08:6TISCH, +14:u11:link-layer, +12:u12:devices,, +14:u02:Link-Layer, +12:u03:devices,, +10:u03:except, +10:u07:6TISCH, +14:u10:link-layer, +12:u11:devices,, +14:u01:Link-Layer, +12:u02:devices,, +10:u02:except, +10:u06:6TISCH, +9:u08:keys., +12:u10:devices,, +14:u00:Link-Layer, +12:u01:devices,, +10:u01:except, +10:u05:6TISCH, +9:u07:keys., +12:u00:devices,, +10:u00:except, +10:u04:6TISCH, +9:u06:keys., +10:u03:6TISCH, +9:u05:keys., +7:u08:52], +10:u02:6TISCH, +9:u04:keys., +7:u07:52], +10:u01:6TISCH, +9:u03:keys., +7:u06:52], +10:u00:6TISCH, +9:u02:keys., +7:u05:52], +9:u01:keys., +7:u04:52], +13:u08:desirable, +9:u00:keys., +7:u03:52], +16:u08:information., +24:u08:[I-D.ietf-6lo-ap-nd], +7:u02:52], +16:u07:information., +13:u07:desirable, +7:u01:52], +16:u06:information., +13:u06:desirable, +24:u07:[I-D.ietf-6lo-ap-nd], +7:u00:52], +16:u05:information., +13:u14:desirable, +8:uI2:."-", +13:u05:desirable, +24:u06:[I-D.ietf-6lo-ap-nd], +16:u04:information., +12:u08:stealing, +13:u13:desirable, +24:u14:[i-d.ietf-6lo-ap-nd], +8:uI1:."-", +13:u04:desirable, +24:u05:[I-D.ietf-6lo-ap-nd], +16:u03:information., +12:u07:stealing, +13:u12:desirable, +24:u13:[i-d.ietf-6lo-ap-nd], +8:u23:desi, +8:uI0:."-", +13:u03:desirable, +24:u04:[I-D.ietf-6lo-ap-nd], +16:u02:information., +12:u06:stealing, +19:u08:Synchronization, +13:u11:desirable, +24:u12:[i-d.ietf-6lo-ap-nd], +13:u02:desirable, +24:u03:[I-D.ietf-6lo-ap-nd], +16:u01:information., +12:u05:stealing, +19:u07:Synchronization, +13:u10:desirable, +24:u11:[i-d.ietf-6lo-ap-nd], +13:u01:desirable, +24:u02:[I-D.ietf-6lo-ap-nd], +16:u00:information., +12:u04:stealing, +19:u06:Synchronization, +24:u10:[i-d.ietf-6lo-ap-nd], +13:u00:desirable, +24:u01:[I-D.ietf-6lo-ap-nd], +16:u08:synchronizes, +12:u03:stealing, +19:u05:Synchronization, +24:u00:[I-D.ietf-6lo-ap-nd], +12:u02:stealing, +19:u04:Synchronization, +16:u07:synchronizes, +12:u08:discover, +12:u01:stealing, +19:u03:Synchronization, +16:u06:synchronizes, +12:u00:stealing, +19:u02:Synchronization, +16:u14:synchronizes, +16:u05:synchronizes, +12:u07:discover, +9:u08:taken, +19:u01:Synchronization, +16:u13:synchronizes, +16:u04:synchronizes, +12:u06:discover, +19:u00:Synchronization, +16:u12:synchronizes, +12:u14:discover, +16:u03:synchronizes, +12:u05:discover, +9:u07:taken, +12:u08:ensuring, +16:u11:synchronizes, +12:u13:discover, +16:u02:synchronizes, +12:u04:discover, +9:u06:taken, +12:u07:ensuring, +9:u08:sense, +16:u10:synchronizes, +12:u12:discover, +9:u14:taken, +16:u01:synchronizes, +12:u03:discover, +9:u05:taken, +12:u06:ensuring, +9:u07:sense, +12:u11:discover, +9:u13:taken, +12:u14:includes, +16:u00:synchronizes, +12:u02:discover, +9:u04:taken, +12:u05:ensuring, +9:u06:sense, +12:u10:discover, +9:u12:taken, +12:u13:includes, +8:u23:take, +12:u01:discover, +9:u03:taken, +9:u08:nonce, +12:u04:ensuring, +9:u05:sense, +9:u11:taken, +12:u12:includes, +7:uI2:',., +12:u00:discover, +9:u02:taken, +9:u08:(MIC), +12:u03:ensuring, +9:u04:sense, +9:u10:taken, +12:u11:includes, +7:uI1:',., +9:u01:taken, +9:u07:nonce, +12:u02:ensuring, +9:u03:sense, +12:u10:includes, +7:uI0:',., +9:u00:taken, +9:u06:nonce, +9:u07:(MIC), +12:u01:ensuring, +9:u02:sense, +9:u14:nonce, +10:uI2:...[],, +9:u05:nonce, +9:u06:(MIC), +12:u00:ensuring, +9:u01:sense, +9:u13:nonce, +9:u14:(mic), +10:uI1:...[],, +9:u04:nonce, +9:u05:(MIC), +15:u08:anti-replay, +9:u00:sense, +9:u12:nonce, +9:u13:(mic), +8:u23:nonc, +10:uI0:...[],, +9:u03:nonce, +9:u04:(MIC), +9:u11:nonce, +9:u12:(mic), +7:u22:(MI, +8:u23:(MIC, +9:u02:nonce, +9:u03:(MIC), +15:u07:anti-replay, +9:u10:nonce, +9:u11:(mic), +9:u01:nonce, +9:u02:(MIC), +15:u06:anti-replay, +9:u10:(mic), +15:u14:anti-replay, +9:u00:nonce, +9:u01:(MIC), +15:u05:anti-replay, +11:u08:induces, +15:u13:anti-replay, +9:u00:(MIC), +15:u04:anti-replay, +15:u12:anti-replay, +7:u22:ant, +8:u23:anti, +15:u03:anti-replay, +11:u07:induces, +15:u11:anti-replay, +15:u02:anti-replay, +11:u06:induces, +15:u10:anti-replay, +11:u14:induces, +15:u01:anti-replay, +11:u05:induces, +18:u08:authenticated,, +11:u13:induces, +15:u00:anti-replay, +11:u04:induces, +11:u12:induces, +8:u23:indu, +11:u03:induces, +18:u07:authenticated,, +12:u08:attacker, +11:u11:induces, +11:u02:induces, +18:u06:authenticated,, +10:u08:beacon, +12:u07:attacker, +9:u08:past., +11:u10:induces, +18:u14:authenticated,, +11:u01:induces, +18:u05:authenticated,, +12:u08:possible, +12:u06:attacker, +9:u07:past., +18:u13:authenticated,, +11:u00:induces, +18:u04:authenticated,, +10:u07:beacon, +12:u05:attacker, +9:u06:past., +18:u12:authenticated,, +18:u03:authenticated,, +10:u06:beacon, +12:u07:possible, +12:u04:attacker, +9:u05:past., +18:u11:authenticated,, +10:u14:beacon, +18:u02:authenticated,, +10:u05:beacon, +12:u06:possible, +12:u03:attacker, +9:u04:past., +18:u10:authenticated,, +10:u13:beacon, +12:u14:possible, +18:u01:authenticated,, +10:u04:beacon, +12:u05:possible, +12:u02:attacker, +9:u03:past., +7:u08:53], +10:u12:beacon, +12:u13:possible, +7:u22:bea, +8:u23:beac, +18:u00:authenticated,, +10:u03:beacon, +12:u04:possible, +12:u01:attacker, +9:u02:past., +7:u07:53], +10:u11:beacon, +12:u12:possible, +7:u22:pos, +8:u23:poss, +10:u02:beacon, +12:u03:possible, +12:u00:attacker, +9:u01:past., +7:u06:53], +10:u10:beacon, +12:u11:possible, +10:u01:beacon, +12:u02:possible, +9:u00:past., +7:u05:53], +12:u10:possible, +10:u00:beacon, +12:u01:possible, +9:u08:After, +7:u04:53], +12:u00:possible, +7:u03:53], +13:u08:obtaining, +9:u07:After, +7:u02:53], +13:u07:obtaining, +9:u06:After, +11:u08:(CoJP)., +7:u01:53], +13:u06:obtaining, +9:u14:after, +9:u05:After, +39:u08:[I-D.ietf-6tisch-minimal-security],, +7:u00:53], +13:u05:obtaining, +9:u13:after, +9:u04:After, +11:u07:(CoJP)., +13:u04:obtaining, +9:u12:after, +6:u21:Af, +7:u22:Aft, +8:u23:Afte, +9:u03:After, +11:u06:(CoJP)., +39:u07:[I-D.ietf-6tisch-minimal-security],, +13:u03:obtaining, +8:u08:key,, +9:u11:after, +11:u14:(cojp)., +9:u02:After, +11:u05:(CoJP)., +39:u06:[I-D.ietf-6tisch-minimal-security],, +47:u08:[I-D.ietf-6tisch-dtsecurity-zerotouch-join], +13:u02:obtaining, +8:u07:key,, +9:u10:after, +11:u13:(cojp)., +39:u14:[i-d.ietf-6tisch-minimal-security],, +9:u01:After, +11:u04:(CoJP)., +39:u05:[I-D.ietf-6tisch-minimal-security],, +11:u08:joining, +13:u01:obtaining, +8:u06:key,, +11:u12:(cojp)., +39:u13:[i-d.ietf-6tisch-minimal-security],, +14:u14:pre-shared, +9:u00:After, +11:u03:(CoJP)., +39:u04:[I-D.ietf-6tisch-minimal-security],, +47:u07:[I-D.ietf-6tisch-dtsecurity-zerotouch-join], +13:u00:obtaining, +8:u05:key,, +11:u11:(cojp)., +39:u12:[i-d.ietf-6tisch-minimal-security],, +14:u13:pre-shared, +12:u14:exchange, +11:u02:(CoJP)., +39:u03:[I-D.ietf-6tisch-minimal-security],, +47:u06:[I-D.ietf-6tisch-dtsecurity-zerotouch-join], +11:u07:joining, +8:u04:key,, +11:u10:(cojp)., +39:u11:[i-d.ietf-6tisch-minimal-security],, +14:u12:pre-shared, +12:u13:exchange, +47:u14:[i-d.ietf-6tisch-dtsecurity-zerotouch-join], +8:u23:pre-, +11:u01:(CoJP)., +39:u02:[I-D.ietf-6tisch-minimal-security],, +47:u05:[I-D.ietf-6tisch-dtsecurity-zerotouch-join], +11:u06:joining, +8:u03:key,, +39:u10:[i-d.ietf-6tisch-minimal-security],, +14:u11:pre-shared, +12:u12:exchange, +47:u13:[i-d.ietf-6tisch-dtsecurity-zerotouch-join], +11:u14:joining, +11:u00:(CoJP)., +39:u01:[I-D.ietf-6tisch-minimal-security],, +47:u04:[I-D.ietf-6tisch-dtsecurity-zerotouch-join], +11:u05:joining, +16:u08:authenticate, +8:u02:key,, +14:u10:pre-shared, +12:u11:exchange, +47:u12:[i-d.ietf-6tisch-dtsecurity-zerotouch-join], +11:u13:joining, +7:uI2:/-., +39:u00:[I-D.ietf-6tisch-minimal-security],, +47:u03:[I-D.ietf-6tisch-dtsecurity-zerotouch-join], +11:u04:joining, +8:u01:key,, +12:u10:exchange, +47:u11:[i-d.ietf-6tisch-dtsecurity-zerotouch-join], +11:u12:joining, +7:uI1:/-., +47:u02:[I-D.ietf-6tisch-dtsecurity-zerotouch-join], +11:u03:joining, +16:u07:authenticate, +8:u00:key,, +47:u10:[i-d.ietf-6tisch-dtsecurity-zerotouch-join], +11:u11:joining, +6:u14:ip, +7:uI0:/-., +47:u01:[I-D.ietf-6tisch-dtsecurity-zerotouch-join], +11:u02:joining, +16:u06:authenticate, +12:u08:address,, +14:u08:possession, +11:u10:joining, +6:u13:ip, +16:u14:authenticate, +47:u00:[I-D.ietf-6tisch-dtsecurity-zerotouch-join], +11:u01:joining, +16:u05:authenticate, +14:u07:possession, +6:u12:ip, +16:u13:authenticate, +6:u22:IP, +6:u23:IP, +11:u00:joining, +16:u04:authenticate, +12:u07:address,, +14:u06:possession, +6:u11:ip, +16:u12:authenticate, +16:u03:authenticate, +12:u06:address,, +14:u05:possession, +18:u08:authentication, +6:u10:ip, +16:u11:authenticate, +12:u14:address,, +16:u02:authenticate, +12:u05:address,, +10:u08:valid., +14:u04:possession, +18:u07:authentication, +13:u08:attacker,, +16:u10:authenticate, +12:u13:address,, +16:u01:authenticate, +12:u04:address,, +14:u03:possession, +18:u06:authentication, +13:u07:attacker,, +10:u08:During, +12:u12:address,, +9:uI2:*[]-., +16:u00:authenticate, +12:u03:address,, +10:u07:valid., +11:u08:spoofed, +14:u02:possession, +18:u05:authentication, +13:u06:attacker,, +10:u07:During, +11:u08:obtains, +12:u11:address,, +9:uI1:*[]-., +12:u02:address,, +10:u06:valid., +14:u01:possession, +18:u04:authentication, +13:u05:attacker,, +10:u06:During, +11:u07:obtains, +8:u08:ASN., +12:u10:address,, +10:u14:valid., +9:uI0:*[]-., +12:u01:address,, +10:u05:valid., +11:u07:spoofed, +14:u00:possession, +18:u03:authentication, +13:u04:attacker,, +10:u05:During, +11:u06:obtains, +8:u07:ASN., +10:u13:valid., +12:u00:address,, +10:u04:valid., +11:u06:spoofed, +13:u08:replaying, +18:u02:authentication, +13:u03:attacker,, +10:u04:During, +11:u05:obtains, +8:u06:ASN., +10:u12:valid., +11:u14:spoofed, +8:u23:vali, +10:u03:valid., +11:u05:spoofed, +18:u01:authentication, +13:u02:attacker,, +10:u03:During, +11:u04:obtains, +8:u05:ASN., +10:u11:valid., +11:u13:spoofed, +12:u14:network,, +10:u02:valid., +11:u04:spoofed, +13:u07:replaying, +18:u00:authentication, +13:u01:attacker,, +10:u02:During, +11:u03:obtains, +8:u04:ASN., +10:u10:valid., +11:u12:spoofed, +12:u13:network,, +7:u22:spo, +8:u23:spoo, +10:u01:valid., +11:u03:spoofed, +13:u06:replaying, +13:u00:attacker,, +10:u01:During, +11:u02:obtains, +8:u03:ASN., +11:u11:spoofed, +12:u12:network,, +13:u14:replaying, +10:u00:valid., +11:u02:spoofed, +13:u05:replaying, +10:u00:During, +11:u01:obtains, +8:u02:ASN., +11:u10:spoofed, +12:u11:network,, +13:u13:replaying, +11:u01:spoofed, +13:u04:replaying, +10:u08:words,, +11:u00:obtains, +8:u01:ASN., +12:u10:network,, +13:u12:replaying, +11:u14:derives, +11:u00:spoofed, +13:u03:replaying, +14:u08:addresses., +8:u00:ASN., +13:u11:replaying, +11:u13:derives, +13:u02:replaying, +10:u07:words,, +13:u10:replaying, +11:u12:derives, +13:u01:replaying, +10:u06:words,, +14:u07:addresses., +11:u11:derives, +10:u14:words,, +13:u00:replaying, +10:u05:words,, +14:u06:addresses., +9:u08:4.2.1, +11:u10:derives, +10:u13:words,, +14:u14:addresses., +10:u04:words,, +14:u05:addresses., +9:u07:4.2.1, +10:u12:words,, +14:u13:addresses., +8:u23:word, +10:u03:words,, +14:u04:addresses., +9:u06:4.2.1, +10:u11:words,, +14:u12:addresses., +10:u02:words,, +14:u03:addresses., +12:u08:preceeds, +9:u05:4.2.1, +10:u10:words,, +14:u11:addresses., +10:u01:words,, +14:u02:addresses., +40:u08:[I-D.ietf-anima-constrained-voucher], +9:u04:4.2.1, +14:u10:addresses., +10:u00:words,, +14:u01:addresses., +12:u07:preceeds, +43:u08:[I-D.ietf-anima-bootstrapping-keyinfra], +9:u03:4.2.1, +14:u00:addresses., +12:u06:preceeds, +40:u07:[I-D.ietf-anima-constrained-voucher], +12:u08:requires, +9:u02:4.2.1, +12:u08:(BRSKI)., +12:u14:preceeds, +12:u05:preceeds, +40:u06:[I-D.ietf-anima-constrained-voucher], +43:u07:[I-D.ietf-anima-bootstrapping-keyinfra], +12:u08:Exchange, +9:u01:4.2.1, +12:u07:(BRSKI)., +12:u13:preceeds, +40:u14:[i-d.ietf-anima-constrained-voucher], +12:u04:preceeds, +40:u05:[I-D.ietf-anima-constrained-voucher], +43:u06:[I-D.ietf-anima-bootstrapping-keyinfra], +12:u07:requires, +9:u00:4.2.1, +12:u06:(BRSKI)., +12:u12:preceeds, +40:u13:[i-d.ietf-anima-constrained-voucher], +43:u14:[i-d.ietf-anima-bootstrapping-keyinfra], +12:u03:preceeds, +40:u04:[I-D.ietf-anima-constrained-voucher], +43:u05:[I-D.ietf-anima-bootstrapping-keyinfra], +12:u06:requires, +12:u07:Exchange, +12:u05:(BRSKI)., +12:u11:preceeds, +40:u12:[i-d.ietf-anima-constrained-voucher], +43:u13:[i-d.ietf-anima-bootstrapping-keyinfra], +12:u14:requires, +14:uI2:[-.---]()., +12:u02:preceeds, +40:u03:[I-D.ietf-anima-constrained-voucher], +43:u04:[I-D.ietf-anima-bootstrapping-keyinfra], +12:u05:requires, +12:u06:Exchange, +12:u04:(BRSKI)., +12:u10:preceeds, +40:u11:[i-d.ietf-anima-constrained-voucher], +43:u12:[i-d.ietf-anima-bootstrapping-keyinfra], +12:u13:requires, +14:uI1:[-.---]()., +12:u01:preceeds, +40:u02:[I-D.ietf-anima-constrained-voucher], +43:u03:[I-D.ietf-anima-bootstrapping-keyinfra], +12:u04:requires, +12:u05:Exchange, +12:u03:(BRSKI)., +7:u08:54], +40:u10:[i-d.ietf-anima-constrained-voucher], +43:u11:[i-d.ietf-anima-bootstrapping-keyinfra], +12:u12:requires, +14:uI0:[-.---]()., +12:u00:preceeds, +40:u01:[I-D.ietf-anima-constrained-voucher], +43:u02:[I-D.ietf-anima-bootstrapping-keyinfra], +12:u03:requires, +12:u04:Exchange, +12:u02:(BRSKI)., +7:u07:54], +43:u10:[i-d.ietf-anima-bootstrapping-keyinfra], +12:u11:requires, +7:u22:Exc, +8:u23:Exch, +40:u00:[I-D.ietf-anima-constrained-voucher], +43:u01:[I-D.ietf-anima-bootstrapping-keyinfra], +12:u02:requires, +12:u03:Exchange, +12:u01:(BRSKI)., +7:u06:54], +12:u10:requires, +43:u00:[I-D.ietf-anima-bootstrapping-keyinfra], +12:u01:requires, +12:u02:Exchange, +12:u00:(BRSKI)., +7:u05:54], +12:u00:requires, +12:u01:Exchange, +7:u04:54], +12:u00:Exchange, +7:u03:54], +10:u08:9.3.2., +7:u02:54], +7:u01:54], +10:u07:9.3.2., +7:u00:54], +9:u08:BRSKI, +10:u06:9.3.2., +17:u08:Alternatively, +9:u07:BRSKI, +10:u14:9.3.2., +10:u05:9.3.2., +27:u08:[I-D.ietf-ace-coap-est], +9:u06:BRSKI, +10:u13:9.3.2., +10:u04:9.3.2., +17:u07:Alternatively, +9:u05:BRSKI, +10:u12:9.3.2., +7:u22:9.3, +8:u23:9.3., +10:u03:9.3.2., +17:u06:Alternatively, +27:u07:[I-D.ietf-ace-coap-est], +13:u08:agreement, +9:u04:BRSKI, +10:u11:9.3.2., +17:u14:alternatively, +10:u02:9.3.2., +17:u05:Alternatively, +27:u06:[I-D.ietf-ace-coap-est], +16:u08:conceptually, +9:u03:BRSKI, +10:u10:9.3.2., +17:u13:alternatively, +27:u14:[i-d.ietf-ace-coap-est], +10:u01:9.3.2., +17:u04:Alternatively, +27:u05:[I-D.ietf-ace-coap-est], +13:u07:agreement, +11:u08:hurdles, +9:u02:BRSKI, +12:u08:straight, +17:u12:alternatively, +27:u13:[i-d.ietf-ace-coap-est], +8:u23:Alte, +10:u00:9.3.2., +17:u03:Alternatively, +27:u04:[I-D.ietf-ace-coap-est], +13:u06:agreement, +16:u07:conceptually, +9:u01:BRSKI, +12:u07:straight, +17:u11:alternatively, +27:u12:[i-d.ietf-ace-coap-est], +13:u14:agreement, +17:u02:Alternatively, +27:u03:[I-D.ietf-ace-coap-est], +13:u05:agreement, +16:u06:conceptually, +11:u07:hurdles, +9:u00:BRSKI, +12:u06:straight, +17:u10:alternatively, +27:u11:[i-d.ietf-ace-coap-est], +13:u13:agreement, +16:u14:conceptually, +17:u01:Alternatively, +27:u02:[I-D.ietf-ace-coap-est], +13:u04:agreement, +16:u05:conceptually, +11:u06:hurdles, +12:u08:initiate, +12:u05:straight, +10:u08:change, +27:u10:[i-d.ietf-ace-coap-est], +13:u12:agreement, +16:u13:conceptually, +11:u14:hurdles, +7:u22:agr, +8:u23:agre, +17:u00:Alternatively, +27:u01:[I-D.ietf-ace-coap-est], +13:u03:agreement, +16:u04:conceptually, +11:u05:hurdles, +12:u04:straight, +10:u07:change, +13:u11:agreement, +16:u12:conceptually, +11:u13:hurdles, +8:u23:conc, +27:u00:[I-D.ietf-ace-coap-est], +13:u02:agreement, +16:u03:conceptually, +11:u04:hurdles, +12:u07:initiate, +12:u03:straight, +10:u06:change, +13:u10:agreement, +16:u11:conceptually, +11:u12:hurdles, +6:u21:hu, +7:u22:hur, +8:u23:hurd, +13:u01:agreement, +16:u02:conceptually, +11:u03:hurdles, +12:u06:initiate, +16:u08:network-wide, +12:u02:straight, +10:u05:change, +15:u08:algorithms., +16:u10:conceptually, +11:u11:hurdles, +12:u14:initiate, +13:u00:agreement, +16:u01:conceptually, +11:u02:hurdles, +12:u05:initiate, +12:u01:straight, +10:u04:change, +15:u07:algorithms., +11:u10:hurdles, +12:u13:initiate, +8:uI2::(/), +16:u00:conceptually, +11:u01:hurdles, +12:u04:initiate, +16:u07:network-wide, +12:u00:straight, +10:u03:change, +15:u06:algorithms., +12:u08:details:, +12:u12:initiate, +8:uI1::(/), +11:u00:hurdles, +12:u03:initiate, +16:u06:network-wide, +10:u02:change, +15:u05:algorithms., +12:u07:details:, +12:u11:initiate, +16:u14:network-wide, +8:uI0::(/), +12:u02:initiate, +16:u05:network-wide, +9:u08:every, +10:u01:change, +15:u04:algorithms., +12:u06:details:, +7:u08:9.2, +12:u10:initiate, +16:u13:network-wide, +12:u01:initiate, +16:u04:network-wide, +10:u00:change, +15:u03:algorithms., +12:u05:details:, +7:u07:9.2, +16:u12:network-wide, +12:u00:initiate, +16:u03:network-wide, +9:u07:every, +15:u02:algorithms., +12:u04:details:, +7:u06:9.2, +16:u11:network-wide, +16:u02:network-wide, +9:u06:every, +14:u08:bandwidth., +15:u01:algorithms., +12:u03:details:, +7:u05:9.2, +9:u08:time,, +16:u10:network-wide, +9:u14:every, +16:u01:network-wide, +9:u05:every, +15:u00:algorithms., +12:u02:details:, +7:u04:9.2, +9:u07:time,, +9:u13:every, +16:u00:network-wide, +9:u04:every, +14:u07:bandwidth., +9:u08:rekey, +12:u01:details:, +7:u03:9.2, +9:u06:time,, +9:u12:every, +8:u23:ever, +9:u03:every, +14:u06:bandwidth., +12:u00:details:, +7:u02:9.2, +9:u05:time,, +9:u11:every, +14:u14:bandwidth., +9:u02:every, +14:u05:bandwidth., +9:u07:rekey, +14:u08:operation., +7:u01:9.2, +9:u04:time,, +12:u08:updated,, +9:u10:every, +14:u13:bandwidth., +9:u01:every, +14:u04:bandwidth., +9:u06:rekey, +7:u00:9.2, +9:u03:time,, +12:u07:updated,, +14:u12:bandwidth., +9:u14:rekey, +9:u00:every, +14:u03:bandwidth., +9:u05:rekey, +14:u07:operation., +9:u02:time,, +12:u06:updated,, +14:u11:bandwidth., +9:u13:rekey, +14:u02:bandwidth., +9:u04:rekey, +14:u06:operation., +10:u08:2-byte, +9:u01:time,, +12:u05:updated,, +14:u10:bandwidth., +9:u12:rekey, +14:u14:operation., +7:u22:rek, +8:u23:reke, +14:u01:bandwidth., +9:u03:rekey, +14:u05:operation., +9:u00:time,, +12:u04:updated,, +9:u08:short, +9:u11:rekey, +14:u13:operation., +14:u00:bandwidth., +9:u02:rekey, +14:u04:operation., +10:u07:2-byte, +12:u03:updated,, +9:u07:short, +9:u10:rekey, +14:u12:operation., +9:u01:rekey, +14:u03:operation., +10:u06:2-byte, +12:u02:updated,, +9:u06:short, +8:u08:keys, +14:u11:operation., +10:u14:2-byte, +9:u00:rekey, +14:u02:operation., +10:u05:2-byte, +10:u08:nonce., +12:u01:updated,, +9:u05:short, +8:u07:keys, +14:u10:operation., +10:u13:2-byte, +14:u01:operation., +10:u04:2-byte, +10:u08:likely, +12:u00:updated,, +9:u04:short, +8:u06:keys, +10:u12:2-byte, +6:u21:2-, +7:u22:2-b, +8:u23:2-by, +14:u00:operation., +10:u03:2-byte, +10:u07:nonce., +14:u08:addresses,, +9:u03:short, +8:u05:keys, +10:u11:2-byte, +10:u02:2-byte, +10:u06:nonce., +10:u07:likely, +9:u02:short, +8:u04:keys, +10:u10:2-byte, +10:u14:nonce., +10:u01:2-byte, +10:u05:nonce., +10:u06:likely, +14:u07:addresses,, +9:u01:short, +8:u03:keys, +12:u08:planners, +10:u13:nonce., +10:u14:likely, +10:u00:2-byte, +10:u04:nonce., +10:u05:likely, +14:u06:addresses,, +9:u00:short, +8:u02:keys, +12:u07:planners, +12:u08:periodic, +10:u12:nonce., +10:u13:likely, +14:u14:addresses,, +8:uI2:-(-), +10:u03:nonce., +10:u04:likely, +14:u05:addresses,, +8:u01:keys, +12:u06:planners, +12:u07:periodic, +10:u08:update, +10:u11:nonce., +10:u12:likely, +14:u13:addresses,, +7:u22:lik, +8:u23:like, +8:uI1:-(-), +10:u02:nonce., +10:u03:likely, +14:u04:addresses,, +12:u08:changed., +8:u00:keys, +12:u05:planners, +12:u06:periodic, +10:u07:update, +10:u10:nonce., +10:u11:likely, +14:u12:addresses,, +8:uI0:-(-), +10:u01:nonce., +10:u02:likely, +14:u03:addresses,, +12:u04:planners, +12:u05:periodic, +10:u06:update, +10:u10:likely, +14:u11:addresses,, +10:u00:nonce., +10:u01:likely, +14:u02:addresses,, +12:u07:changed., +12:u03:planners, +12:u04:periodic, +10:u05:update, +14:u10:addresses,, +10:u00:likely, +14:u01:addresses,, +12:u06:changed., +12:u02:planners, +12:u03:periodic, +10:u04:update, +12:u14:changed., +14:u00:addresses,, +12:u05:changed., +12:u01:planners, +12:u02:periodic, +10:u03:update, +7:u08:55], +12:u13:changed., +8:u23:ther, +12:u04:changed., +12:u00:planners, +12:u01:periodic, +10:u02:update, +7:u07:55], +12:u12:changed., +12:u03:changed., +12:u00:periodic, +10:u01:update, +7:u06:55], +12:u11:changed., +12:u02:changed., +10:u00:update, +7:u05:55], +12:u10:changed., +12:u01:changed., +9:u08:bytes, +7:u04:55], +12:u00:changed., +9:u08:used., +7:u03:55], +9:u07:bytes, +13:u08:gigabytes, +7:u02:55], +9:u06:bytes, +9:u07:used., +7:u01:55], +9:u14:bytes, +9:u05:bytes, +9:u06:used., +13:u07:gigabytes, +20:u08:kilobits/second,, +7:u00:55], +12:u08:concern., +9:u13:bytes, +9:u14:used., +9:u04:bytes, +9:u05:used., +13:u06:gigabytes, +12:u07:concern., +9:u12:bytes, +9:u13:used., +13:u14:gigabytes, +7:u22:byt, +8:u23:byte, +9:u03:bytes, +9:u04:used., +13:u05:gigabytes, +20:u07:kilobits/second,, +13:u08:operators, +12:u06:concern., +9:u11:bytes, +9:u12:used., +13:u13:gigabytes, +9:u02:bytes, +9:u03:used., +13:u04:gigabytes, +20:u06:kilobits/second,, +10:u08:Except, +12:u05:concern., +9:u10:bytes, +9:u11:used., +13:u12:gigabytes, +20:u14:kilobits/second,, +6:u21:gi, +7:u22:gig, +8:u23:giga, +9:u01:bytes, +9:u02:used., +13:u03:gigabytes, +20:u05:kilobits/second,, +13:u07:operators, +12:u04:concern., +9:u10:used., +13:u11:gigabytes, +20:u13:kilobits/second,, +8:uI2:/,.,, +9:u00:bytes, +9:u01:used., +13:u02:gigabytes, +20:u04:kilobits/second,, +13:u06:operators, +10:u07:Except, +12:u03:concern., +13:u10:gigabytes, +20:u12:kilobits/second,, +6:u21:ki, +7:u22:kil, +8:u23:kilo, +8:uI1:/,.,, +9:u00:used., +13:u01:gigabytes, +20:u03:kilobits/second,, +13:u05:operators, +10:u06:Except, +16:u08:before-break, +12:u02:concern., +20:u11:kilobits/second,, +10:u14:except, +8:uI0:/,.,, +13:u00:gigabytes, +20:u02:kilobits/second,, +13:u04:operators, +10:u05:Except, +12:u08:signaled, +12:u01:concern., +20:u10:kilobits/second,, +10:u13:except, +20:u01:kilobits/second,, +13:u03:operators, +10:u04:Except, +16:u07:before-break, +8:u08:use., +12:u00:concern., +10:u12:except, +8:u23:Exce, +20:u00:kilobits/second,, +13:u02:operators, +10:u03:Except, +16:u06:before-break, +12:u07:signaled, +10:u11:except, +16:u14:before-break, +13:u01:operators, +10:u02:Except, +16:u05:before-break, +12:u06:signaled, +8:u07:use., +10:u10:except, +16:u13:before-break, +12:u14:signaled, +13:u00:operators, +10:u01:Except, +16:u04:before-break, +12:u05:signaled, +8:u06:use., +16:u12:before-break, +12:u13:signaled, +8:u14:use., +7:u22:bef, +8:u23:befo, +10:u00:Except, +16:u03:before-break, +12:u04:signaled, +8:u05:use., +16:u11:before-break, +12:u12:signaled, +8:u13:use., +9:u14:short, +16:u02:before-break, +12:u03:signaled, +8:u04:use., +14:u08:co-authors, +16:u10:before-break, +12:u11:signaled, +8:u12:use., +9:u13:short, +8:u23:use., +16:u01:before-break, +12:u02:signaled, +8:u03:use., +14:u07:co-authors, +12:u08:Watteyne, +12:u10:signaled, +8:u11:use., +9:u12:short, +8:u23:shor, +16:u00:before-break, +12:u01:signaled, +8:u02:use., +13:u08:community, +14:u06:co-authors, +12:u07:Watteyne, +8:u10:use., +9:u11:short, +12:u00:signaled, +8:u01:use., +10:u08:Xavier, +14:u05:co-authors, +12:u06:Watteyne, +9:u10:short, +8:u00:use., +13:u07:community, +14:u04:co-authors, +12:u05:Watteyne, +14:u08:Vilajosana, +13:u06:community, +10:u07:Xavier, +14:u03:co-authors, +12:u04:Watteyne, +14:u07:Vilajosana, +13:u14:community, +13:u05:community, +10:u06:Xavier, +8:u08:Kris, +14:u02:co-authors, +12:u03:Watteyne, +14:u06:Vilajosana, +13:u13:community, +10:u14:xavier, +13:u04:community, +10:u05:Xavier, +14:u01:co-authors, +12:u02:Watteyne, +14:u05:Vilajosana, +10:u08:Pister, +13:u12:community, +10:u13:xavier, +13:u03:community, +10:u04:Xavier, +8:u07:Kris, +10:u08:Malisa, +14:u00:co-authors, +12:u01:Watteyne, +14:u04:Vilajosana, +10:u07:Pister, +15:u08:elaboration, +13:u11:community, +10:u12:xavier, +6:u21:Xa, +7:u22:Xav, +8:u23:Xavi, +13:u02:community, +10:u03:Xavier, +8:u06:Kris, +16:u08:contribution, +12:u00:Watteyne, +14:u03:Vilajosana, +10:u06:Pister, +15:u07:elaboration, +11:u08:Vucinic, +13:u10:community, +10:u11:xavier, +8:u14:kris, +13:u01:community, +10:u02:Xavier, +8:u05:Kris, +10:u07:Malisa, +11:u08:Michael, +14:u02:Vilajosana, +10:u05:Pister, +15:u06:elaboration, +11:u07:Vucinic, +10:u10:xavier, +8:u13:kris, +13:u00:community, +10:u01:Xavier, +8:u04:Kris, +10:u06:Malisa, +16:u07:contribution, +8:u08:Team, +14:u01:Vilajosana, +10:u04:Pister, +15:u05:elaboration, +11:u06:Vucinic, +14:u08:Richardson, +8:u12:kris, +10:u14:malisa, +6:u21:Kr, +7:u22:Kri, +8:u23:Kris, +10:u00:Xavier, +8:u03:Kris, +10:u05:Malisa, +16:u06:contribution, +11:u07:Michael, +8:u08:Tero, +14:u00:Vilajosana, +10:u03:Pister, +15:u04:elaboration, +11:u05:Vucinic, +14:u07:Richardson, +8:u11:kris, +10:u13:malisa, +16:u14:contribution, +8:u02:Kris, +10:u04:Malisa, +16:u05:contribution, +11:u06:Michael, +8:u07:Team, +10:u02:Pister, +15:u03:elaboration, +11:u04:Vucinic, +14:u06:Richardson, +11:u08:Kivinen, +8:u10:kris, +10:u12:malisa, +16:u13:contribution, +11:u14:michael, +7:u22:Mal, +8:u23:Mali, +8:u01:Kris, +10:u03:Malisa, +16:u04:contribution, +11:u05:Michael, +8:u06:Team, +8:u07:Tero, +9:u08:Maria, +10:u01:Pister, +15:u02:elaboration, +11:u03:Vucinic, +14:u05:Richardson, +11:u07:Kivinen, +10:u11:malisa, +16:u12:contribution, +11:u13:michael, +8:u14:team, +8:u00:Kris, +10:u02:Malisa, +16:u03:contribution, +11:u04:Michael, +8:u05:Team, +8:u06:Tero, +10:u00:Pister, +15:u01:elaboration, +11:u02:Vucinic, +14:u04:Richardson, +11:u06:Kivinen, +8:u08:Rita, +10:u10:malisa, +16:u11:contribution, +11:u12:michael, +8:u13:team, +8:u14:tero, +7:u22:Mic, +8:u23:Mich, +10:u01:Malisa, +16:u02:contribution, +11:u03:Michael, +8:u04:Team, +8:u05:Tero, +9:u07:Maria, +15:u00:elaboration, +11:u01:Vucinic, +14:u03:Richardson, +11:u05:Kivinen, +8:u07:Rita, +16:u10:contribution, +11:u11:michael, +8:u12:team, +8:u13:tero, +7:u22:Tea, +8:u23:Team, +10:u00:Malisa, +16:u01:contribution, +11:u02:Michael, +8:u03:Team, +8:u04:Tero, +9:u06:Maria, +11:u00:Vucinic, +14:u02:Richardson, +11:u04:Kivinen, +8:u06:Rita, +11:u10:michael, +8:u11:team, +8:u12:tero, +9:u14:maria, +8:u23:Tero, +16:u00:contribution, +11:u01:Michael, +8:u02:Team, +8:u03:Tero, +9:u05:Maria, +14:u01:Richardson, +11:u03:Kivinen, +8:u05:Rita, +8:u10:team, +8:u11:tero, +9:u13:maria, +11:u00:Michael, +8:u01:Team, +8:u02:Tero, +9:u04:Maria, +14:u00:Richardson, +11:u02:Kivinen, +8:u04:Rita, +7:u08:56], +8:u10:tero, +9:u12:maria, +8:u23:Mari, +8:u00:Team, +8:u01:Tero, +9:u03:Maria, +11:u01:Kivinen, +8:u03:Rita, +7:u07:56], +9:u11:maria, +8:u00:Tero, +9:u02:Maria, +11:u00:Kivinen, +8:u02:Rita, +7:u06:56], +9:u10:maria, +9:u01:Maria, +9:u08:Simon, +8:u01:Rita, +7:u05:56], +9:u00:Maria, +8:u00:Rita, +7:u04:56], +13:u08:Duquennoy, +9:u07:Simon, +7:u03:56], +13:u07:Duquennoy, +9:u06:Simon, +7:u08:Qin, +7:u02:56], +13:u06:Duquennoy, +9:u14:simon, +9:u05:Simon, +7:u01:56], +13:u05:Duquennoy, +8:u08:Wang, +9:u13:simon, +9:u04:Simon, +7:u07:Qin, +8:u08:Rene, +7:u00:56], +13:u04:Duquennoy, +8:u07:Wang, +8:u08:text, +9:u12:simon, +8:u23:Simo, +9:u03:Simon, +7:u06:Qin, +13:u03:Duquennoy, +8:u06:Wang, +8:u07:text, +10:u08:Struik, +9:u11:simon, +7:u14:qin, +9:u02:Simon, +7:u05:Qin, +8:u07:Rene, +10:u08:Robert, +13:u02:Duquennoy, +8:u05:Wang, +8:u06:text, +10:u07:Struik, +10:u08:Design, +9:u10:simon, +7:u13:qin, +9:u01:Simon, +7:u04:Qin, +8:u06:Rene, +13:u01:Duquennoy, +8:u04:Wang, +8:u05:text, +10:u06:Struik, +10:u07:Design, +12:u08:Assimiti, +7:u12:qin, +8:u14:rene, +6:u21:Qi, +7:u22:Qin, +7:u23:Qin, +6:uI2:/;, +9:u00:Simon, +7:u03:Qin, +8:u05:Rene, +10:u07:Robert, +13:u00:Duquennoy, +8:u03:Wang, +8:u04:text, +10:u05:Struik, +10:u06:Design, +12:u07:Assimiti, +7:u11:qin, +8:u13:rene, +6:uI1:/;, +7:u02:Qin, +8:u04:Rene, +10:u06:Robert, +8:u02:Wang, +8:u03:text, +10:u04:Struik, +10:u05:Design, +12:u06:Assimiti, +7:u10:qin, +8:u12:rene, +10:u14:robert, +8:u23:Rene, +6:uI0:/;, +7:u01:Qin, +8:u03:Rene, +10:u05:Robert, +13:u08:Yoshihiro, +8:u01:Wang, +8:u02:text, +10:u03:Struik, +10:u04:Design, +12:u05:Assimiti, +8:u11:rene, +10:u13:robert, +7:u00:Qin, +8:u02:Rene, +10:u04:Robert, +9:u08:work,, +8:u00:Wang, +8:u01:text, +10:u02:Struik, +10:u03:Design, +12:u04:Assimiti, +8:u08:Ohba, +8:u10:rene, +10:u12:robert, +7:u22:Rob, +8:u23:Robe, +8:u01:Rene, +10:u03:Robert, +13:u07:Yoshihiro, +14:u08:simulation, +8:u00:text, +10:u01:Struik, +10:u02:Design, +12:u03:Assimiti, +8:u07:Ohba, +10:u11:robert, +11:u14:special, +8:u00:Rene, +10:u02:Robert, +13:u06:Yoshihiro, +9:u07:work,, +11:u08:Dujovne, +10:u00:Struik, +10:u01:Design, +12:u02:Assimiti, +8:u06:Ohba, +10:u10:robert, +11:u13:special, +13:u14:yoshihiro, +10:u01:Robert, +13:u05:Yoshihiro, +9:u06:work,, +14:u07:simulation, +10:u00:Design, +12:u01:Assimiti, +8:u05:Ohba, +11:u12:special, +13:u13:yoshihiro, +9:u14:work,, +10:u00:Robert, +13:u04:Yoshihiro, +9:u05:work,, +14:u06:simulation, +11:u07:Dujovne, +12:u00:Assimiti, +8:u04:Ohba, +12:u08:evolving, +11:u11:special, +13:u12:yoshihiro, +9:u13:work,, +14:u14:simulation, +5:u20:Y, +6:u21:Yo, +7:u22:Yos, +8:u23:Yosh, +13:u03:Yoshihiro, +9:u04:work,, +14:u05:simulation, +11:u06:Dujovne, +8:u03:Ohba, +12:u07:evolving, +11:u10:special, +13:u11:yoshihiro, +9:u12:work,, +14:u13:simulation, +11:u14:dujovne, +13:u02:Yoshihiro, +9:u03:work,, +14:u04:simulation, +11:u05:Dujovne, +8:u08:line, +8:u02:Ohba, +12:u06:evolving, +13:u10:yoshihiro, +9:u11:work,, +14:u12:simulation, +11:u13:dujovne, +8:u23:simu, +13:u01:Yoshihiro, +9:u02:work,, +14:u03:simulation, +11:u04:Dujovne, +8:u01:Ohba, +12:u05:evolving, +9:u10:work,, +14:u11:simulation, +11:u12:dujovne, +6:u21:Du, +7:u22:Duj, +8:u23:Dujo, +13:u00:Yoshihiro, +9:u01:work,, +14:u02:simulation, +11:u03:Dujovne, +8:u07:line, +8:u00:Ohba, +12:u04:evolving, +14:u10:simulation, +11:u11:dujovne, +9:u00:work,, +14:u01:simulation, +11:u02:Dujovne, +8:u06:line, +12:u03:evolving, +11:u10:dujovne, +8:u14:line, +14:u00:simulation, +11:u01:Dujovne, +8:u05:line, +8:u08:till, +12:u02:evolving, +10:u08:Suresh, +8:u13:line, +11:u00:Dujovne, +8:u04:line, +8:u08:Also, +12:u01:evolving, +10:u07:Suresh, +16:u08:publication., +8:u12:line, +8:u03:line, +8:u07:till, +15:u08:Directorate, +12:u00:evolving, +10:u06:Suresh, +16:u07:publication., +11:u08:special, +8:u11:line, +8:u02:line, +8:u06:till, +8:u07:Also, +10:u05:Suresh, +16:u06:publication., +11:u07:special, +11:u08:review,, +8:u10:line, +8:u14:till, +8:u01:line, +8:u05:till, +8:u06:Also, +15:u07:Directorate, +10:u08:Carlos, +10:u04:Suresh, +16:u05:publication., +11:u06:special, +11:u07:review,, +8:u13:till, +8:u00:line, +8:u04:till, +8:u05:Also, +15:u06:Directorate, +10:u03:Suresh, +16:u04:publication., +11:u05:special, +11:u06:review,, +13:u08:Pignataro, +8:u12:till, +15:u14:directorate, +7:u22:til, +8:u23:till, +8:u03:till, +8:u04:Also, +15:u05:Directorate, +10:u07:Carlos, +11:u08:Francis, +10:u02:Suresh, +16:u03:publication., +11:u04:special, +11:u05:review,, +13:u07:Pignataro, +8:u08:IESG, +8:u11:till, +15:u13:directorate, +8:u02:till, +8:u03:Also, +15:u04:Directorate, +10:u06:Carlos, +9:u08:Kaduk, +10:u01:Suresh, +16:u02:publication., +11:u03:special, +11:u04:review,, +13:u06:Pignataro, +8:u07:IESG, +11:u08:Dupont,, +8:u10:till, +15:u12:directorate, +10:u14:carlos, +6:u21:Di, +7:u22:Dir, +8:u23:Dire, +8:u01:till, +8:u02:Also, +15:u03:Directorate, +10:u05:Carlos, +11:u07:Francis, +10:u00:Suresh, +16:u01:publication., +11:u02:special, +11:u03:review,, +13:u05:Pignataro, +8:u06:IESG, +11:u07:Dupont,, +15:u11:directorate, +10:u13:carlos, +8:u00:till, +8:u01:Also, +15:u02:Directorate, +10:u04:Carlos, +11:u06:Francis, +9:u07:Kaduk, +16:u00:publication., +11:u01:special, +11:u02:review,, +13:u04:Pignataro, +8:u05:IESG, +11:u06:Dupont,, +15:u10:directorate, +10:u12:carlos, +11:u14:francis, +7:u22:Car, +8:u23:Carl, +8:uI2:,,,,, +8:u00:Also, +15:u01:Directorate, +10:u03:Carlos, +11:u05:Francis, +9:u06:Kaduk, +11:u00:special, +11:u01:review,, +13:u03:Pignataro, +8:u04:IESG, +11:u05:Dupont,, +10:u11:carlos, +11:u13:francis, +9:u14:kaduk, +8:uI1:,,,,, +15:u00:Directorate, +10:u02:Carlos, +11:u04:Francis, +9:u05:Kaduk, +11:u00:review,, +13:u02:Pignataro, +8:u03:IESG, +11:u04:Dupont,, +10:u10:carlos, +11:u12:francis, +9:u13:kaduk, +8:u23:Fran, +8:uI0:,,,,, +10:u01:Carlos, +11:u03:Francis, +9:u04:Kaduk, +11:u08:mailing, +13:u01:Pignataro, +8:u02:IESG, +11:u03:Dupont,, +11:u11:francis, +9:u12:kaduk, +7:u22:Kad, +8:u23:Kadu, +10:u00:Carlos, +11:u02:Francis, +9:u03:Kaduk, +13:u00:Pignataro, +8:u01:IESG, +11:u02:Dupont,, +11:u10:francis, +9:u11:kaduk, +11:u01:Francis, +9:u02:Kaduk, +11:u07:mailing, +13:u08:Chonggang, +8:u00:IESG, +11:u01:Dupont,, +9:u10:kaduk, +11:u00:Francis, +9:u01:Kaduk, +11:u06:mailing, +11:u00:Dupont,, +9:u08:Wang,, +11:u14:mailing, +9:u00:Kaduk, +11:u05:mailing, +13:u07:Chonggang, +9:u07:Wang,, +11:u13:mailing, +11:u04:mailing, +13:u06:Chonggang, +9:u06:Wang,, +11:u12:mailing, +13:u14:chonggang, +8:u23:mail, +11:u03:mailing, +13:u05:Chonggang, +9:u05:Wang,, +7:u08:57], +11:u11:mailing, +13:u13:chonggang, +11:u02:mailing, +13:u04:Chonggang, +9:u04:Wang,, +7:u07:57], +11:u10:mailing, +13:u12:chonggang, +7:u22:Cho, +8:u23:Chon, +11:u01:mailing, +13:u03:Chonggang, +9:u03:Wang,, +7:u06:57], +13:u11:chonggang, +11:u00:mailing, +13:u02:Chonggang, +17:u08:Papadopoulos,, +9:u02:Wang,, +7:u05:57], +13:u10:chonggang, +13:u01:Chonggang, +10:u08:Cedric, +9:u01:Wang,, +7:u04:57], +8:u08:Eric, +13:u00:Chonggang, +17:u07:Papadopoulos,, +10:u08:Vogli,, +9:u00:Wang,, +7:u03:57], +8:u07:Eric, +10:u08:Adjih,, +17:u06:Papadopoulos,, +10:u07:Cedric, +12:u08:Muraoka,, +7:u02:57], +8:u06:Eric, +10:u07:Adjih,, +13:u08:Geraldine, +17:u14:papadopoulos,, +17:u05:Papadopoulos,, +10:u06:Cedric, +10:u07:Vogli,, +12:u08:Seewald,, +7:u01:57], +8:u05:Eric, +10:u06:Adjih,, +13:u07:Geraldine, +7:u08:Ken, +17:u13:papadopoulos,, +10:u14:cedric, +9:uI2:,-,,,, +17:u04:Papadopoulos,, +10:u05:Cedric, +10:u06:Vogli,, +12:u07:Muraoka,, +11:u08:Nicolas, +7:u00:57], +8:u04:Eric, +10:u05:Adjih,, +13:u06:Geraldine, +7:u07:Ken, +17:u12:papadopoulos,, +10:u13:cedric, +10:u14:vogli,, +7:u22:Pap, +8:u23:Papa, +9:uI1:,-,,,, +17:u03:Papadopoulos,, +10:u04:Cedric, +10:u05:Vogli,, +12:u06:Muraoka,, +12:u07:Seewald,, +7:u08:van, +8:u03:Eric, +10:u04:Adjih,, +13:u05:Geraldine, +7:u06:Ken, +14:u08:Montavont,, +17:u11:papadopoulos,, +10:u12:cedric, +10:u13:vogli,, +12:u14:muraoka,, +7:u22:Ced, +8:u23:Cedr, +9:uI0:,-,,,, +17:u02:Papadopoulos,, +10:u03:Cedric, +10:u04:Vogli,, +12:u05:Muraoka,, +12:u06:Seewald,, +11:u07:Nicolas, +11:u08:Nabati,, +8:u02:Eric, +10:u03:Adjih,, +13:u04:Geraldine, +7:u05:Ken, +14:u07:Montavont,, +7:u08:der, +17:u10:papadopoulos,, +10:u11:cedric, +10:u12:vogli,, +12:u13:muraoka,, +12:u14:seewald,, +6:u21:Vo, +7:u22:Vog, +8:u23:Vogl, +17:u01:Papadopoulos,, +10:u02:Cedric, +10:u03:Vogli,, +12:u04:Muraoka,, +12:u05:Seewald,, +11:u06:Nicolas, +7:u07:van, +9:u08:Shah,, +8:u01:Eric, +10:u02:Adjih,, +13:u03:Geraldine, +7:u04:Ken, +14:u06:Montavont,, +7:u07:der, +8:u08:Rafa, +10:u10:cedric, +10:u11:vogli,, +12:u12:muraoka,, +12:u13:seewald,, +11:u14:nicolas, +7:u22:Mur, +8:u23:Mura, +17:u00:Papadopoulos,, +10:u01:Cedric, +10:u02:Vogli,, +12:u03:Muraoka,, +12:u04:Seewald,, +11:u05:Nicolas, +7:u06:van, +11:u07:Nabati,, +10:u08:Robles, +8:u00:Eric, +10:u01:Adjih,, +13:u02:Geraldine, +7:u03:Ken, +14:u05:Montavont,, +7:u06:der, +8:u07:Rafa, +9:u08:Steve, +10:u10:vogli,, +12:u11:muraoka,, +12:u12:seewald,, +11:u13:nicolas, +7:u14:van, +7:u22:See, +8:u23:Seew, +10:u00:Cedric, +10:u01:Vogli,, +12:u02:Muraoka,, +12:u03:Seewald,, +11:u04:Nicolas, +7:u05:van, +11:u06:Nabati,, +9:u07:Shah,, +18:u08:contributions., +10:u00:Adjih,, +13:u01:Geraldine, +7:u02:Ken, +14:u04:Montavont,, +7:u05:der, +8:u06:Rafa, +9:u07:Steve, +12:u10:muraoka,, +12:u11:seewald,, +11:u12:nicolas, +7:u13:van, +11:u14:nabati,, +6:u21:Ni, +7:u22:Nic, +8:u23:Nico, +10:u00:Vogli,, +12:u01:Muraoka,, +12:u02:Seewald,, +11:u03:Nicolas, +7:u04:van, +11:u05:Nabati,, +9:u06:Shah,, +10:u07:Robles, +13:u00:Geraldine, +7:u01:Ken, +14:u03:Montavont,, +7:u04:der, +8:u05:Rafa, +9:u06:Steve, +12:u10:seewald,, +11:u11:nicolas, +7:u12:van, +11:u13:nabati,, +9:u14:shah,, +7:u22:van, +7:u23:van, +12:u00:Muraoka,, +12:u01:Seewald,, +11:u02:Nicolas, +7:u03:van, +11:u04:Nabati,, +9:u05:Shah,, +10:u06:Robles, +18:u07:contributions., +7:u00:Ken, +14:u02:Montavont,, +7:u03:der, +8:u04:Rafa, +9:u05:Steve, +11:u10:nicolas, +7:u11:van, +11:u12:nabati,, +9:u13:shah,, +10:u14:robles, +7:u22:Nab, +8:u23:Naba, +12:u00:Seewald,, +11:u01:Nicolas, +7:u02:van, +11:u03:Nabati,, +9:u04:Shah,, +10:u05:Robles, +18:u06:contributions., +14:u01:Montavont,, +7:u02:der, +8:u03:Rafa, +9:u04:Steve, +7:u10:van, +11:u11:nabati,, +9:u12:shah,, +10:u13:robles, +18:u14:contributions., +6:u21:Sh, +7:u22:Sha, +8:u23:Shah, +11:u00:Nicolas, +7:u01:van, +11:u02:Nabati,, +9:u03:Shah,, +10:u04:Robles, +18:u05:contributions., +12:u08:Thubert,, +14:u00:Montavont,, +7:u01:der, +8:u02:Rafa, +9:u03:Steve, +11:u10:nabati,, +9:u11:shah,, +10:u12:robles, +18:u13:contributions., +8:u23:Robl, +7:u00:van, +11:u01:Nabati,, +9:u02:Shah,, +10:u03:Robles, +18:u04:contributions., +12:u08:"Address, +7:u00:der, +8:u01:Rafa, +9:u02:Steve, +7:u08:P.,, +9:u10:shah,, +10:u11:robles, +18:u12:contributions., +11:u00:Nabati,, +9:u01:Shah,, +10:u02:Robles, +18:u03:contributions., +12:u07:Thubert,, +8:u00:Rafa, +9:u01:Steve, +7:u07:P.,, +13:u08:Protected, +10:u10:robles, +18:u11:contributions., +9:u00:Shah,, +10:u01:Robles, +18:u02:contributions., +12:u07:"Address, +9:u00:Steve, +7:u06:P.,, +13:u07:Protected, +14:u08:Networks",, +18:u10:contributions., +12:u14:thubert,, +10:u00:Robles, +18:u01:contributions., +12:u06:"Address, +34:u08:[I-D.ietf-6lo-backbone-router], +7:u05:P.,, +13:u06:Protected, +14:u07:Networks",, +12:u13:thubert,, +12:u14:"address, +15:uI2:,.,,.,,.,.,, +18:u00:contributions., +12:u05:"Address, +7:u04:P.,, +13:u05:Protected, +14:u06:Networks",, +12:u12:thubert,, +12:u13:"address, +15:uI1:,.,,.,,.,.,, +12:u04:"Address, +34:u07:[I-D.ietf-6lo-backbone-router], +7:u03:P.,, +13:u04:Protected, +14:u05:Networks",, +12:u11:thubert,, +12:u12:"address, +7:u22:"Ad, +8:u23:"Add, +15:uI0:,.,,.,,.,.,, +12:uI2:",-----(, +12:u03:"Address, +34:u06:[I-D.ietf-6lo-backbone-router], +7:u02:P.,, +13:u03:Protected, +14:u04:Networks",, +12:u08:Router",, +12:u10:thubert,, +12:u11:"address, +34:u14:[i-d.ietf-6lo-backbone-router], +12:uI1:",-----(, +12:u02:"Address, +34:u05:[I-D.ietf-6lo-backbone-router], +36:u08:[I-D.ietf-6lo-fragment-recovery], +7:u01:P.,, +13:u02:Protected, +14:u03:Networks",, +12:u07:Router",, +12:u10:"address, +34:u13:[i-d.ietf-6lo-backbone-router], +12:uI0:",-----(, +12:u01:"Address, +34:u04:[I-D.ietf-6lo-backbone-router], +7:u00:P.,, +13:u01:Protected, +14:u02:Networks",, +12:u06:Router",, +34:u12:[i-d.ietf-6lo-backbone-router], +14:uI2:,.,,.,.-,", +12:u00:"Address, +34:u03:[I-D.ietf-6lo-backbone-router], +36:u07:[I-D.ietf-6lo-fragment-recovery], +33:u08:ietf-6lo-fragment-recovery-05, +13:u00:Protected, +14:u01:Networks",, +12:u05:Router",, +34:u11:[i-d.ietf-6lo-backbone-router], +14:uI1:,.,,.,.-,", +34:u02:[I-D.ietf-6lo-backbone-router], +36:u06:[I-D.ietf-6lo-fragment-recovery], +14:u00:Networks",, +12:u04:Router",, +34:u10:[i-d.ietf-6lo-backbone-router], +36:u14:[i-d.ietf-6lo-fragment-recovery], +14:uI0:,.,,.,.-,", +34:u01:[I-D.ietf-6lo-backbone-router], +36:u05:[I-D.ietf-6lo-fragment-recovery], +33:u07:ietf-6lo-fragment-recovery-05, +12:u03:Router",, +36:u13:[i-d.ietf-6lo-fragment-recovery], +34:u00:[I-D.ietf-6lo-backbone-router], +36:u04:[I-D.ietf-6lo-fragment-recovery], +33:u06:ietf-6lo-fragment-recovery-05, +13:u08:Watteyne,, +12:u02:Router",, +36:u12:[i-d.ietf-6lo-fragment-recovery], +33:u14:ietf-6lo-fragment-recovery-05, +36:u03:[I-D.ietf-6lo-fragment-recovery], +33:u05:ietf-6lo-fragment-recovery-05, +12:u01:Router",, +36:u11:[i-d.ietf-6lo-fragment-recovery], +33:u13:ietf-6lo-fragment-recovery-05, +36:u02:[I-D.ietf-6lo-fragment-recovery], +33:u04:ietf-6lo-fragment-recovery-05, +13:u07:Watteyne,, +12:u00:Router",, +16:u08:Forwarding",, +36:u10:[i-d.ietf-6lo-fragment-recovery], +33:u12:ietf-6lo-fragment-recovery-05, +36:u01:[I-D.ietf-6lo-fragment-recovery], +33:u03:ietf-6lo-fragment-recovery-05, +13:u06:Watteyne,, +16:u07:Forwarding",, +33:u11:ietf-6lo-fragment-recovery-05, +13:u14:watteyne,, +36:u00:[I-D.ietf-6lo-fragment-recovery], +33:u02:ietf-6lo-fragment-recovery-05, +13:u05:Watteyne,, +12:u08:Dujovne,, +16:u06:Forwarding",, +33:u10:ietf-6lo-fragment-recovery-05, +13:u13:watteyne,, +33:u01:ietf-6lo-fragment-recovery-05, +13:u04:Watteyne,, +16:u05:Forwarding",, +6:u08:D., +13:u12:watteyne,, +6:u21:Wa, +7:u22:Wat, +8:u23:Watt, +33:u00:ietf-6lo-fragment-recovery-05, +13:u03:Watteyne,, +12:u07:Dujovne,, +17:u08:Information",, +16:u04:Forwarding",, +6:u07:D., +13:u11:watteyne,, +13:u02:Watteyne,, +12:u06:Dujovne,, +13:u08:beacon-02, +16:u03:Forwarding",, +6:u06:D., +42:u08:draft-ietf-6tisch-enrollment-enhanced-, +13:u10:watteyne,, +12:u14:dujovne,, +13:u01:Watteyne,, +12:u05:Dujovne,, +17:u07:Information",, +16:u02:Forwarding",, +6:u05:D., +42:u07:draft-ietf-6tisch-enrollment-enhanced-, +12:u13:dujovne,, +11:u14:element, +11:uI2:,..,".., +13:u00:Watteyne,, +12:u04:Dujovne,, +17:u06:Information",, +13:u07:beacon-02, +12:u08:Vucinic,, +16:u01:Forwarding",, +6:u04:D., +42:u06:draft-ietf-6tisch-enrollment-enhanced-, +12:u12:dujovne,, +11:u13:element, +17:u14:information",, +11:uI1:,..,".., +12:u03:Dujovne,, +17:u05:Information",, +13:u06:beacon-02, +16:u00:Forwarding",, +6:u03:D., +42:u05:draft-ietf-6tisch-enrollment-enhanced-, +12:u11:dujovne,, +11:u12:element, +17:u13:information",, +13:u14:beacon-02, +6:u21:El, +7:u22:Ele, +8:u23:Elem, +11:uI0:,..,".., +12:u02:Dujovne,, +17:u04:Information",, +13:u05:beacon-02, +12:u07:Vucinic,, +30:u08:6tisch-minimal-security-12, +6:u02:D., +42:u04:draft-ietf-6tisch-enrollment-enhanced-, +12:u10:dujovne,, +11:u11:element, +17:u12:information",, +13:u13:beacon-02, +12:u01:Dujovne,, +17:u03:Information",, +13:u04:beacon-02, +12:u06:Vucinic,, +6:u01:D., +42:u03:draft-ietf-6tisch-enrollment-enhanced-, +11:u10:element, +17:u11:information",, +13:u12:beacon-02, +12:u14:vucinic,, +12:u00:Dujovne,, +17:u02:Information",, +13:u03:beacon-02, +12:u05:Vucinic,, +30:u07:6tisch-minimal-security-12, +6:u00:D., +42:u02:draft-ietf-6tisch-enrollment-enhanced-, +17:u10:information",, +13:u11:beacon-02, +12:u13:vucinic,, +12:u14:"minimal, +17:u01:Information",, +13:u02:beacon-02, +12:u04:Vucinic,, +30:u06:6tisch-minimal-security-12, +42:u01:draft-ietf-6tisch-enrollment-enhanced-, +13:u10:beacon-02, +12:u12:vucinic,, +12:u13:"minimal, +30:u14:6tisch-minimal-security-12, +6:u21:Vu, +7:u22:Vuc, +8:u23:Vuci, +9:uI2:"",--, +17:u00:Information",, +13:u01:beacon-02, +12:u03:Vucinic,, +30:u05:6tisch-minimal-security-12, +42:u00:draft-ietf-6tisch-enrollment-enhanced-, +7:u08:58], +12:u11:vucinic,, +12:u12:"minimal, +30:u13:6tisch-minimal-security-12, +6:u21:"M, +7:u22:"Mi, +8:u23:"Min, +9:uI1:"",--, +11:uI2:---(),., +13:u00:beacon-02, +12:u02:Vucinic,, +30:u04:6tisch-minimal-security-12, +7:u07:58], +12:u10:vucinic,, +12:u11:"minimal, +30:u12:6tisch-minimal-security-12, +9:uI0:"",--, +11:uI1:---(),., +12:u01:Vucinic,, +30:u03:6tisch-minimal-security-12, +7:u06:58], +12:u10:"minimal, +30:u11:6tisch-minimal-security-12, +11:uI0:---(),., +12:u00:Vucinic,, +30:u02:6tisch-minimal-security-12, +7:u05:58], +30:u10:6tisch-minimal-security-12, +30:u01:6tisch-minimal-security-12, +10:u08:Chang,, +7:u04:58], +30:u00:6tisch-minimal-security-12, +7:u03:58], +10:u07:Chang,, +28:u08:draft-ietf-6tisch-msf-06, +7:u02:58], +25:u14:[i-d.ietf-6tisch-msf], +10:u06:Chang,, +34:u08:[I-D.ietf-detnet-architecture], +7:u01:58], +25:u13:[i-d.ietf-6tisch-msf], +10:u14:chang,, +10:u05:Chang,, +28:u07:draft-ietf-6tisch-msf-06, +9:u08:Finn,, +7:u00:58], +25:u12:[i-d.ietf-6tisch-msf], +10:u13:chang,, +6:u14:d., +10:u04:Chang,, +28:u06:draft-ietf-6tisch-msf-06, +34:u07:[I-D.ietf-detnet-architecture], +18:u08:"Deterministic, +7:u08:N.,, +25:u11:[i-d.ietf-6tisch-msf], +10:u12:chang,, +6:u13:d., +28:u14:draft-ietf-6tisch-msf-06, +11:uI2:.,"()",, +10:u03:Chang,, +28:u05:draft-ietf-6tisch-msf-06, +34:u06:[I-D.ietf-detnet-architecture], +9:u07:Finn,, +26:u08:detnet-architecture-13, +7:u07:N.,, +25:u10:[i-d.ietf-6tisch-msf], +10:u11:chang,, +6:u12:d., +28:u13:draft-ietf-6tisch-msf-06, +34:u14:[i-d.ietf-detnet-architecture], +6:u21:D., +6:u22:D., +6:u23:D., +11:uI1:.,"()",, +12:uI2:----(),., +10:u02:Chang,, +28:u04:draft-ietf-6tisch-msf-06, +34:u05:[I-D.ietf-detnet-architecture], +9:u06:Finn,, +18:u07:"Deterministic, +7:u06:N.,, +10:u10:chang,, +6:u11:d., +28:u12:draft-ietf-6tisch-msf-06, +34:u13:[i-d.ietf-detnet-architecture], +9:u14:finn,, +11:uI0:.,"()",, +12:uI1:----(),., +10:u01:Chang,, +28:u03:draft-ietf-6tisch-msf-06, +34:u04:[I-D.ietf-detnet-architecture], +9:u05:Finn,, +18:u06:"Deterministic, +26:u07:detnet-architecture-13, +7:u05:N.,, +6:u10:d., +28:u11:draft-ietf-6tisch-msf-06, +34:u12:[i-d.ietf-detnet-architecture], +9:u13:finn,, +18:u14:"deterministic, +12:uI0:----(),., +10:u00:Chang,, +28:u02:draft-ietf-6tisch-msf-06, +34:u03:[I-D.ietf-detnet-architecture], +9:u04:Finn,, +18:u05:"Deterministic, +26:u06:detnet-architecture-13, +21:u08:unaware-leaves-02, +7:u04:N.,, +28:u10:draft-ietf-6tisch-msf-06, +34:u11:[i-d.ietf-detnet-architecture], +9:u12:finn,, +18:u13:"deterministic, +26:u14:detnet-architecture-13, +8:u23:Finn, +28:u01:draft-ietf-6tisch-msf-06, +34:u02:[I-D.ietf-detnet-architecture], +9:u03:Finn,, +18:u04:"Deterministic, +26:u05:detnet-architecture-13, +7:u03:N.,, +34:u10:[i-d.ietf-detnet-architecture], +9:u11:finn,, +18:u12:"deterministic, +26:u13:detnet-architecture-13, +6:u21:"D, +7:u22:"De, +8:u23:"Det, +28:u00:draft-ietf-6tisch-msf-06, +34:u01:[I-D.ietf-detnet-architecture], +9:u02:Finn,, +18:u03:"Deterministic, +26:u04:detnet-architecture-13, +21:u07:unaware-leaves-02, +11:u08:Robles,, +7:u02:N.,, +9:u10:finn,, +18:u11:"deterministic, +26:u12:detnet-architecture-13, +8:u23:detn, +34:u00:[I-D.ietf-detnet-architecture], +9:u01:Finn,, +18:u02:"Deterministic, +26:u03:detnet-architecture-13, +21:u06:unaware-leaves-02, +7:u01:N.,, +7:u08:I.,, +18:u10:"deterministic, +26:u11:detnet-architecture-13, +21:u14:unaware-leaves-02, +13:uI2:,.,"",---, +9:u00:Finn,, +18:u01:"Deterministic, +26:u02:detnet-architecture-13, +21:u05:unaware-leaves-02, +11:u07:Robles,, +7:u00:N.,, +7:u07:I.,, +9:u08:Type,, +26:u10:detnet-architecture-13, +21:u13:unaware-leaves-02, +13:uI1:,.,"",---, +18:u00:"Deterministic, +26:u01:detnet-architecture-13, +21:u04:unaware-leaves-02, +11:u06:Robles,, +24:u08:roll-useofrplinfo-31, +7:u06:I.,, +9:u07:Type,, +21:u12:unaware-leaves-02, +11:u14:robles,, +7:u22:una, +8:u23:unaw, +13:uI0:,.,"",---, +26:u00:detnet-architecture-13, +21:u03:unaware-leaves-02, +11:u05:Robles,, +13:u08:[RFC0768], +7:u05:I.,, +9:u06:Type,, +21:u11:unaware-leaves-02, +11:u13:robles,, +21:u02:unaware-leaves-02, +11:u04:Robles,, +24:u07:roll-useofrplinfo-31, +7:u04:I.,, +9:u05:Type,, +11:u08:Postel,, +21:u10:unaware-leaves-02, +11:u12:robles,, +21:u01:unaware-leaves-02, +11:u03:Robles,, +24:u06:roll-useofrplinfo-31, +13:u07:[RFC0768], +45:u08:<https://www.rfc-editor.org/info/rfc768>., +7:u03:I.,, +9:u04:Type,, +11:u07:Postel,, +21:u08:10.17487/RFC0768,, +11:u11:robles,, +24:u14:roll-useofrplinfo-31, +21:u00:unaware-leaves-02, +11:u02:Robles,, +24:u05:roll-useofrplinfo-31, +13:u06:[RFC0768], +7:u02:I.,, +9:u03:Type,, +11:u06:Postel,, +21:u07:10.17487/RFC0768,, +11:u10:robles,, +24:u13:roll-useofrplinfo-31, +13:u14:[rfc0768], +11:u01:Robles,, +24:u04:roll-useofrplinfo-31, +13:u05:[RFC0768], +45:u07:<https://www.rfc-editor.org/info/rfc768>., +7:u01:I.,, +9:u02:Type,, +11:u05:Postel,, +21:u06:10.17487/RFC0768,, +11:u08:Narten,, +24:u12:roll-useofrplinfo-31, +13:u13:[rfc0768], +8:u23:roll, +14:uI2:[],.,"",,,, +11:u00:Robles,, +24:u03:roll-useofrplinfo-31, +13:u04:[RFC0768], +45:u06:<https://www.rfc-editor.org/info/rfc768>., +7:u00:I.,, +9:u01:Type,, +11:u04:Postel,, +21:u05:10.17487/RFC0768,, +11:u07:Narten,, +24:u11:roll-useofrplinfo-31, +13:u12:[rfc0768], +45:u14:<https://www.rfc-editor.org/info/rfc768>., +14:uI1:[],.,"",,,, +24:u02:roll-useofrplinfo-31, +13:u03:[RFC0768], +45:u05:<https://www.rfc-editor.org/info/rfc768>., +46:u08:<https://www.rfc-editor.org/info/rfc4861>., +9:u00:Type,, +11:u03:Postel,, +21:u04:10.17487/RFC0768,, +11:u06:Narten,, +21:u08:10.17487/RFC4861,, +24:u10:roll-useofrplinfo-31, +13:u11:[rfc0768], +45:u13:<https://www.rfc-editor.org/info/rfc768>., +13:u14:[rfc4861], +14:uI0:[],.,"",,,, +24:u01:roll-useofrplinfo-31, +13:u02:[RFC0768], +45:u04:<https://www.rfc-editor.org/info/rfc768>., +13:u08:[RFC4862], +11:u02:Postel,, +21:u03:10.17487/RFC0768,, +11:u05:Narten,, +21:u07:10.17487/RFC4861,, +13:u10:[rfc0768], +45:u12:<https://www.rfc-editor.org/info/rfc768>., +13:u13:[rfc4861], +13:u14:"neighbor, +24:u00:roll-useofrplinfo-31, +13:u01:[RFC0768], +45:u03:<https://www.rfc-editor.org/info/rfc768>., +46:u07:<https://www.rfc-editor.org/info/rfc4861>., +11:u01:Postel,, +21:u02:10.17487/RFC0768,, +11:u04:Narten,, +21:u06:10.17487/RFC4861,, +12:u08:Thomson,, +45:u11:<https://www.rfc-editor.org/info/rfc768>., +13:u12:[rfc4861], +13:u13:"neighbor, +13:u00:[RFC0768], +45:u02:<https://www.rfc-editor.org/info/rfc768>., +46:u06:<https://www.rfc-editor.org/info/rfc4861>., +13:u07:[RFC4862], +11:u00:Postel,, +21:u01:10.17487/RFC0768,, +11:u03:Narten,, +21:u05:10.17487/RFC4861,, +12:u07:Thomson,, +23:u08:Autoconfiguration",, +45:u10:<https://www.rfc-editor.org/info/rfc768>., +13:u11:[rfc4861], +13:u12:"neighbor, +46:u14:<https://www.rfc-editor.org/info/rfc4861>., +8:u23:"Nei, +45:u01:<https://www.rfc-editor.org/info/rfc768>., +46:u05:<https://www.rfc-editor.org/info/rfc4861>., +13:u06:[RFC4862], +46:u08:<https://www.rfc-editor.org/info/rfc4862>., +21:u00:10.17487/RFC0768,, +11:u02:Narten,, +21:u04:10.17487/RFC4861,, +12:u06:Thomson,, +23:u07:Autoconfiguration",, +21:u08:10.17487/RFC4862,, +13:u10:[rfc4861], +13:u11:"neighbor, +46:u13:<https://www.rfc-editor.org/info/rfc4861>., +13:u14:[rfc4862], +45:u00:<https://www.rfc-editor.org/info/rfc768>., +46:u04:<https://www.rfc-editor.org/info/rfc4861>., +13:u05:[RFC4862], +13:u08:[RFC4944], +11:u01:Narten,, +21:u03:10.17487/RFC4861,, +12:u05:Thomson,, +23:u06:Autoconfiguration",, +21:u07:10.17487/RFC4862,, +13:u10:"neighbor, +46:u12:<https://www.rfc-editor.org/info/rfc4861>., +13:u13:[rfc4862], +46:u03:<https://www.rfc-editor.org/info/rfc4861>., +13:u04:[RFC4862], +46:u07:<https://www.rfc-editor.org/info/rfc4862>., +17:u08:"Transmission, +11:u00:Narten,, +21:u02:10.17487/RFC4861,, +12:u04:Thomson,, +23:u05:Autoconfiguration",, +21:u06:10.17487/RFC4862,, +15:u08:Montenegro,, +46:u11:<https://www.rfc-editor.org/info/rfc4861>., +13:u12:[rfc4862], +46:u02:<https://www.rfc-editor.org/info/rfc4861>., +13:u03:[RFC4862], +46:u06:<https://www.rfc-editor.org/info/rfc4862>., +13:u07:[RFC4944], +21:u01:10.17487/RFC4861,, +12:u03:Thomson,, +23:u04:Autoconfiguration",, +21:u05:10.17487/RFC4862,, +15:u07:Montenegro,, +46:u10:<https://www.rfc-editor.org/info/rfc4861>., +13:u11:[rfc4862], +46:u14:<https://www.rfc-editor.org/info/rfc4862>., +46:u01:<https://www.rfc-editor.org/info/rfc4861>., +13:u02:[RFC4862], +46:u05:<https://www.rfc-editor.org/info/rfc4862>., +13:u06:[RFC4944], +17:u07:"Transmission, +46:u08:<https://www.rfc-editor.org/info/rfc4944>., +21:u00:10.17487/RFC4861,, +12:u02:Thomson,, +23:u03:Autoconfiguration",, +21:u04:10.17487/RFC4862,, +15:u06:Montenegro,, +13:u10:[rfc4862], +46:u13:<https://www.rfc-editor.org/info/rfc4862>., +13:u14:[rfc4944], +46:u00:<https://www.rfc-editor.org/info/rfc4861>., +13:u01:[RFC4862], +46:u04:<https://www.rfc-editor.org/info/rfc4862>., +13:u05:[RFC4944], +17:u06:"Transmission, +13:u08:[RFC5889], +12:u01:Thomson,, +23:u02:Autoconfiguration",, +21:u03:10.17487/RFC4862,, +15:u05:Montenegro,, +46:u12:<https://www.rfc-editor.org/info/rfc4862>., +13:u13:[rfc4944], +17:u14:"transmission, +13:u00:[RFC4862], +46:u03:<https://www.rfc-editor.org/info/rfc4862>., +13:u04:[RFC4944], +17:u05:"Transmission, +46:u07:<https://www.rfc-editor.org/info/rfc4944>., +9:u08:Model, +12:u00:Thomson,, +23:u01:Autoconfiguration",, +21:u02:10.17487/RFC4862,, +15:u04:Montenegro,, +13:u08:Baccelli,, +46:u11:<https://www.rfc-editor.org/info/rfc4862>., +13:u12:[rfc4944], +17:u13:"transmission, +14:u14:networks",, +7:uI2:".., +46:u02:<https://www.rfc-editor.org/info/rfc4862>., +13:u03:[RFC4944], +17:u04:"Transmission, +46:u06:<https://www.rfc-editor.org/info/rfc4944>., +13:u07:[RFC5889], +23:u00:Autoconfiguration",, +21:u01:10.17487/RFC4862,, +15:u03:Montenegro,, +13:u07:Baccelli,, +46:u10:<https://www.rfc-editor.org/info/rfc4862>., +13:u11:[rfc4944], +17:u12:"transmission, +14:u13:networks",, +46:u14:<https://www.rfc-editor.org/info/rfc4944>., +7:u22:"Tr, +8:u23:"Tra, +7:uI1:".., +46:u01:<https://www.rfc-editor.org/info/rfc4862>., +13:u02:[RFC4944], +17:u03:"Transmission, +46:u05:<https://www.rfc-editor.org/info/rfc4944>., +13:u06:[RFC5889], +9:u07:Model, +13:u08:[RFC6282], +21:u00:10.17487/RFC4862,, +15:u02:Montenegro,, +13:u06:Baccelli,, +9:u08:2010,, +13:u10:[rfc4944], +17:u11:"transmission, +14:u12:networks",, +46:u13:<https://www.rfc-editor.org/info/rfc4944>., +13:u14:[rfc5889], +7:uI0:".., +46:u00:<https://www.rfc-editor.org/info/rfc4862>., +13:u01:[RFC4944], +17:u02:"Transmission, +46:u04:<https://www.rfc-editor.org/info/rfc4944>., +13:u05:[RFC5889], +9:u06:Model, +13:u08:Datagrams, +15:u01:Montenegro,, +13:u05:Baccelli,, +9:u07:2010,, +8:u08:Hui,, +17:u10:"transmission, +14:u11:networks",, +46:u12:<https://www.rfc-editor.org/info/rfc4944>., +13:u13:[rfc5889], +15:uI2:[],.,..,.,", +13:u00:[RFC4944], +17:u01:"Transmission, +46:u03:<https://www.rfc-editor.org/info/rfc4944>., +13:u04:[RFC5889], +9:u05:Model, +13:u07:[RFC6282], +15:u00:Montenegro,, +13:u04:Baccelli,, +9:u06:2010,, +8:u07:Hui,, +14:u10:networks",, +46:u11:<https://www.rfc-editor.org/info/rfc4944>., +13:u12:[rfc5889], +15:uI1:[],.,..,.,", +17:u00:"Transmission, +46:u02:<https://www.rfc-editor.org/info/rfc4944>., +13:u03:[RFC5889], +9:u04:Model, +13:u06:[RFC6282], +13:u07:Datagrams, +46:u08:<https://www.rfc-editor.org/info/rfc6282>., +13:u03:Baccelli,, +9:u05:2010,, +8:u06:Hui,, +21:u08:10.17487/RFC6282,, +46:u10:<https://www.rfc-editor.org/info/rfc4944>., +13:u11:[rfc5889], +13:u14:[rfc6282], +15:uI0:[],.,..,.,", +46:u01:<https://www.rfc-editor.org/info/rfc4944>., +13:u02:[RFC5889], +9:u03:Model, +13:u05:[RFC6282], +13:u06:Datagrams, +13:u02:Baccelli,, +9:u04:2010,, +8:u05:Hui,, +21:u07:10.17487/RFC6282,, +13:u10:[rfc5889], +13:u13:[rfc6282], +13:u14:datagrams, +46:u00:<https://www.rfc-editor.org/info/rfc4944>., +13:u01:[RFC5889], +9:u02:Model, +13:u04:[RFC6282], +13:u05:Datagrams, +46:u07:<https://www.rfc-editor.org/info/rfc6282>., +13:u01:Baccelli,, +9:u03:2010,, +8:u04:Hui,, +21:u06:10.17487/RFC6282,, +13:u12:[rfc6282], +13:u13:datagrams, +10:uI2:..-",,, +13:u00:[RFC5889], +9:u01:Model, +13:u03:[RFC6282], +13:u04:Datagrams, +46:u06:<https://www.rfc-editor.org/info/rfc6282>., +13:u00:Baccelli,, +9:u02:2010,, +8:u03:Hui,, +21:u05:10.17487/RFC6282,, +13:u11:[rfc6282], +13:u12:datagrams, +46:u14:<https://www.rfc-editor.org/info/rfc6282>., +7:u22:Dat, +8:u23:Data, +10:uI1:..-",,, +9:u00:Model, +13:u02:[RFC6282], +13:u03:Datagrams, +46:u05:<https://www.rfc-editor.org/info/rfc6282>., +9:u01:2010,, +8:u02:Hui,, +21:u04:10.17487/RFC6282,, +7:u08:59], +13:u10:[rfc6282], +13:u11:datagrams, +46:u13:<https://www.rfc-editor.org/info/rfc6282>., +10:uI0:..-",,, +13:u01:[RFC6282], +13:u02:Datagrams, +46:u04:<https://www.rfc-editor.org/info/rfc6282>., +9:u00:2010,, +8:u01:Hui,, +21:u03:10.17487/RFC6282,, +7:u07:59], +13:u10:datagrams, +46:u12:<https://www.rfc-editor.org/info/rfc6282>., +13:u00:[RFC6282], +13:u01:Datagrams, +46:u03:<https://www.rfc-editor.org/info/rfc6282>., +8:u00:Hui,, +21:u02:10.17487/RFC6282,, +7:u06:59], +46:u11:<https://www.rfc-editor.org/info/rfc6282>., +13:u00:Datagrams, +46:u02:<https://www.rfc-editor.org/info/rfc6282>., +21:u01:10.17487/RFC6282,, +7:u05:59], +46:u10:<https://www.rfc-editor.org/info/rfc6282>., +46:u01:<https://www.rfc-editor.org/info/rfc6282>., +11:u08:Kelsey,, +21:u00:10.17487/RFC6282,, +7:u04:59], +11:u08:Winter,, +46:u00:<https://www.rfc-editor.org/info/rfc6282>., +8:u08:JP.,, +7:u03:59], +11:u07:Winter,, +7:u08:R.,, +11:u07:Kelsey,, +7:u02:59], +11:u06:Winter,, +7:u07:R.,, +11:u06:Kelsey,, +8:u07:JP.,, +7:u01:59], +11:u05:Winter,, +7:u06:R.,, +11:u14:kelsey,, +22:uI2:[],.,.,,.,.,,.,,.,, +11:u05:Kelsey,, +8:u06:JP.,, +46:u08:<https://www.rfc-editor.org/info/rfc6550>., +7:u00:59], +11:u04:Winter,, +7:u05:R.,, +21:u08:10.17487/RFC6550,, +11:u13:kelsey,, +8:u14:jp.,, +22:uI1:[],.,.,,.,.,,.,,.,, +17:uI2:,.,,.,,.,,.,,, +11:u04:Kelsey,, +8:u05:JP.,, +13:u08:[RFC6551], +11:u03:Winter,, +7:u04:R.,, +21:u07:10.17487/RFC6550,, +11:u12:kelsey,, +8:u13:jp.,, +13:u14:low-power, +6:u21:Ke, +7:u22:Kel, +8:u23:Kels, +22:uI0:[],.,.,,.,.,,.,,.,, +17:uI1:,.,,.,,.,,.,,, +10:uI2:.,.,":, +11:u03:Kelsey,, +8:u04:JP.,, +46:u07:<https://www.rfc-editor.org/info/rfc6550>., +11:u02:Winter,, +7:u03:R.,, +21:u06:10.17487/RFC6550,, +12:u08:Vasseur,, +11:u11:kelsey,, +8:u12:jp.,, +13:u13:low-power, +7:u22:JP., +8:u23:JP.,, +17:uI0:,.,,.,,.,,.,,, +10:uI1:.,.,":, +8:uI2:-",,, +11:u02:Kelsey,, +8:u03:JP.,, +46:u06:<https://www.rfc-editor.org/info/rfc6550>., +13:u07:[RFC6551], +11:u01:Winter,, +7:u02:R.,, +21:u05:10.17487/RFC6550,, +12:u07:Vasseur,, +11:u10:kelsey,, +8:u11:jp.,, +13:u12:low-power, +46:u14:<https://www.rfc-editor.org/info/rfc6550>., +7:u22:Low, +8:u23:Low-, +10:uI0:.,.,":, +8:uI1:-",,, +11:u01:Kelsey,, +8:u02:JP.,, +46:u05:<https://www.rfc-editor.org/info/rfc6550>., +13:u06:[RFC6551], +11:u00:Winter,, +7:u01:R.,, +21:u04:10.17487/RFC6550,, +12:u06:Vasseur,, +8:u10:jp.,, +13:u11:low-power, +46:u13:<https://www.rfc-editor.org/info/rfc6550>., +13:u14:[rfc6551], +8:uI0:-",,, +11:u00:Kelsey,, +8:u01:JP.,, +46:u04:<https://www.rfc-editor.org/info/rfc6550>., +13:u05:[RFC6551], +46:u08:<https://www.rfc-editor.org/info/rfc6551>., +7:u00:R.,, +21:u03:10.17487/RFC6550,, +12:u05:Vasseur,, +21:u08:10.17487/RFC6551,, +13:u10:low-power, +46:u12:<https://www.rfc-editor.org/info/rfc6550>., +13:u13:[rfc6551], +8:u00:JP.,, +46:u03:<https://www.rfc-editor.org/info/rfc6550>., +13:u04:[RFC6551], +13:u08:[RFC6552], +21:u02:10.17487/RFC6550,, +12:u04:Vasseur,, +21:u07:10.17487/RFC6551,, +46:u11:<https://www.rfc-editor.org/info/rfc6550>., +13:u12:[rfc6551], +46:u02:<https://www.rfc-editor.org/info/rfc6550>., +13:u03:[RFC6551], +46:u07:<https://www.rfc-editor.org/info/rfc6551>., +21:u01:10.17487/RFC6550,, +12:u03:Vasseur,, +21:u06:10.17487/RFC6551,, +46:u10:<https://www.rfc-editor.org/info/rfc6550>., +13:u11:[rfc6551], +46:u01:<https://www.rfc-editor.org/info/rfc6550>., +13:u02:[RFC6551], +46:u06:<https://www.rfc-editor.org/info/rfc6551>., +13:u07:[RFC6552], +21:u00:10.17487/RFC6550,, +12:u02:Vasseur,, +21:u05:10.17487/RFC6551,, +13:u10:[rfc6551], +46:u14:<https://www.rfc-editor.org/info/rfc6551>., +46:u00:<https://www.rfc-editor.org/info/rfc6550>., +13:u01:[RFC6551], +46:u05:<https://www.rfc-editor.org/info/rfc6551>., +13:u06:[RFC6552], +46:u08:<https://www.rfc-editor.org/info/rfc6552>., +12:u01:Vasseur,, +21:u04:10.17487/RFC6551,, +9:u08:6552,, +46:u13:<https://www.rfc-editor.org/info/rfc6551>., +13:u14:[rfc6552], +13:u00:[RFC6551], +46:u04:<https://www.rfc-editor.org/info/rfc6551>., +13:u05:[RFC6552], +13:u08:[RFC6553], +12:u00:Vasseur,, +21:u03:10.17487/RFC6551,, +9:u07:6552,, +46:u12:<https://www.rfc-editor.org/info/rfc6551>., +13:u13:[rfc6552], +12:uI2:[],.,.,", +46:u03:<https://www.rfc-editor.org/info/rfc6551>., +13:u04:[RFC6552], +46:u07:<https://www.rfc-editor.org/info/rfc6552>., +21:u02:10.17487/RFC6551,, +9:u06:6552,, +46:u11:<https://www.rfc-editor.org/info/rfc6551>., +13:u12:[rfc6552], +12:uI1:[],.,.,", +9:uI2:-()",, +46:u02:<https://www.rfc-editor.org/info/rfc6551>., +13:u03:[RFC6552], +46:u06:<https://www.rfc-editor.org/info/rfc6552>., +13:u07:[RFC6553], +21:u01:10.17487/RFC6551,, +9:u05:6552,, +46:u10:<https://www.rfc-editor.org/info/rfc6551>., +13:u11:[rfc6552], +46:u14:<https://www.rfc-editor.org/info/rfc6552>., +12:uI0:[],.,.,", +9:uI1:-()",, +46:u01:<https://www.rfc-editor.org/info/rfc6551>., +13:u02:[RFC6552], +46:u05:<https://www.rfc-editor.org/info/rfc6552>., +13:u06:[RFC6553], +21:u00:10.17487/RFC6551,, +9:u04:6552,, +13:u10:[rfc6552], +46:u13:<https://www.rfc-editor.org/info/rfc6552>., +13:u14:[rfc6553], +9:uI0:-()",, +46:u00:<https://www.rfc-editor.org/info/rfc6551>., +13:u01:[RFC6552], +46:u04:<https://www.rfc-editor.org/info/rfc6552>., +13:u05:[RFC6553], +46:u08:<https://www.rfc-editor.org/info/rfc6553>., +9:u03:6552,, +21:u08:10.17487/RFC6553,, +46:u12:<https://www.rfc-editor.org/info/rfc6552>., +13:u13:[rfc6553], +13:u00:[RFC6552], +46:u03:<https://www.rfc-editor.org/info/rfc6552>., +13:u04:[RFC6553], +9:u02:6552,, +21:u07:10.17487/RFC6553,, +46:u11:<https://www.rfc-editor.org/info/rfc6552>., +13:u12:[rfc6553], +46:u02:<https://www.rfc-editor.org/info/rfc6552>., +13:u03:[RFC6553], +46:u07:<https://www.rfc-editor.org/info/rfc6553>., +9:u01:6552,, +21:u06:10.17487/RFC6553,, +46:u10:<https://www.rfc-editor.org/info/rfc6552>., +13:u11:[rfc6553], +46:u01:<https://www.rfc-editor.org/info/rfc6552>., +13:u02:[RFC6553], +46:u06:<https://www.rfc-editor.org/info/rfc6553>., +9:u00:6552,, +21:u05:10.17487/RFC6553,, +13:u10:[rfc6553], +46:u14:<https://www.rfc-editor.org/info/rfc6553>., +46:u00:<https://www.rfc-editor.org/info/rfc6552>., +13:u01:[RFC6553], +46:u05:<https://www.rfc-editor.org/info/rfc6553>., +21:u04:10.17487/RFC6553,, +46:u13:<https://www.rfc-editor.org/info/rfc6553>., +13:u14:[rfc6554], +13:u00:[RFC6553], +46:u04:<https://www.rfc-editor.org/info/rfc6553>., +46:u08:<https://www.rfc-editor.org/info/rfc6554>., +21:u03:10.17487/RFC6553,, +21:u08:10.17487/RFC6554,, +46:u12:<https://www.rfc-editor.org/info/rfc6553>., +13:u13:[rfc6554], +46:u03:<https://www.rfc-editor.org/info/rfc6553>., +13:u08:[RFC6775], +21:u02:10.17487/RFC6553,, +21:u07:10.17487/RFC6554,, +46:u11:<https://www.rfc-editor.org/info/rfc6553>., +13:u12:[rfc6554], +46:u02:<https://www.rfc-editor.org/info/rfc6553>., +46:u07:<https://www.rfc-editor.org/info/rfc6554>., +12:u08:Bormann,, +21:u01:10.17487/RFC6553,, +21:u06:10.17487/RFC6554,, +11:u08:Shelby,, +46:u10:<https://www.rfc-editor.org/info/rfc6553>., +13:u11:[rfc6554], +10:uI2:-()",,, +46:u01:<https://www.rfc-editor.org/info/rfc6553>., +46:u06:<https://www.rfc-editor.org/info/rfc6554>., +13:u07:[RFC6775], +21:u00:10.17487/RFC6553,, +21:u05:10.17487/RFC6554,, +11:u07:Shelby,, +13:u10:[rfc6554], +46:u14:<https://www.rfc-editor.org/info/rfc6554>., +10:uI1:-()",,, +46:u00:<https://www.rfc-editor.org/info/rfc6553>., +46:u05:<https://www.rfc-editor.org/info/rfc6554>., +13:u06:[RFC6775], +12:u07:Bormann,, +21:u04:10.17487/RFC6554,, +11:u06:Shelby,, +46:u13:<https://www.rfc-editor.org/info/rfc6554>., +13:u14:[rfc6775], +10:uI0:-()",,, +46:u04:<https://www.rfc-editor.org/info/rfc6554>., +13:u05:[RFC6775], +12:u06:Bormann,, +46:u08:<https://www.rfc-editor.org/info/rfc6775>., +21:u03:10.17487/RFC6554,, +11:u05:Shelby,, +9:u08:6775,, +46:u12:<https://www.rfc-editor.org/info/rfc6554>., +13:u13:[rfc6775], +12:u14:bormann,, +18:uI2:[],.,.,,.,,.,., +46:u03:<https://www.rfc-editor.org/info/rfc6554>., +13:u04:[RFC6775], +12:u05:Bormann,, +13:u08:[RFC7102], +21:u02:10.17487/RFC6554,, +11:u04:Shelby,, +9:u07:6775,, +46:u11:<https://www.rfc-editor.org/info/rfc6554>., +13:u12:[rfc6775], +12:u13:bormann,, +18:uI1:[],.,.,,.,,.,., +46:u02:<https://www.rfc-editor.org/info/rfc6554>., +13:u03:[RFC6775], +12:u04:Bormann,, +46:u07:<https://www.rfc-editor.org/info/rfc6775>., +21:u01:10.17487/RFC6554,, +11:u03:Shelby,, +9:u06:6775,, +46:u10:<https://www.rfc-editor.org/info/rfc6554>., +13:u11:[rfc6775], +12:u12:bormann,, +7:u22:Bor, +8:u23:Borm, +18:uI0:[],.,.,,.,,.,., +46:u01:<https://www.rfc-editor.org/info/rfc6554>., +13:u02:[RFC6775], +12:u03:Bormann,, +46:u06:<https://www.rfc-editor.org/info/rfc6775>., +13:u07:[RFC7102], +9:u08:2014,, +21:u00:10.17487/RFC6554,, +11:u02:Shelby,, +9:u05:6775,, +13:u10:[rfc6775], +12:u11:bormann,, +46:u14:<https://www.rfc-editor.org/info/rfc6775>., +46:u00:<https://www.rfc-editor.org/info/rfc6554>., +13:u01:[RFC6775], +12:u02:Bormann,, +46:u05:<https://www.rfc-editor.org/info/rfc6775>., +13:u06:[RFC7102], +13:u08:[RFC7228], +11:u01:Shelby,, +9:u04:6775,, +46:u08:<https://www.rfc-editor.org/info/rfc7102>., +12:u10:bormann,, +46:u13:<https://www.rfc-editor.org/info/rfc6775>., +13:u14:[rfc7102], +13:u00:[RFC6775], +12:u01:Bormann,, +46:u04:<https://www.rfc-editor.org/info/rfc6775>., +13:u05:[RFC7102], +9:u07:2014,, +20:u08:Constrained-Node, +11:u00:Shelby,, +9:u03:6775,, +46:u07:<https://www.rfc-editor.org/info/rfc7102>., +46:u12:<https://www.rfc-editor.org/info/rfc6775>., +13:u13:[rfc7102], +11:uI2:[],.,"-, +12:u00:Bormann,, +46:u03:<https://www.rfc-editor.org/info/rfc6775>., +13:u04:[RFC7102], +9:u06:2014,, +13:u07:[RFC7228], +9:u02:6775,, +46:u06:<https://www.rfc-editor.org/info/rfc7102>., +46:u11:<https://www.rfc-editor.org/info/rfc6775>., +13:u12:[rfc7102], +9:u14:2014,, +11:uI1:[],.,"-, +46:u02:<https://www.rfc-editor.org/info/rfc6775>., +13:u03:[RFC7102], +9:u05:2014,, +13:u06:[RFC7228], +20:u07:Constrained-Node, +46:u08:<https://www.rfc-editor.org/info/rfc7228>., +9:u01:6775,, +46:u05:<https://www.rfc-editor.org/info/rfc7102>., +21:u08:10.17487/RFC7228,, +46:u10:<https://www.rfc-editor.org/info/rfc6775>., +13:u11:[rfc7102], +9:u13:2014,, +13:u14:[rfc7228], +11:uI0:[],.,"-, +46:u01:<https://www.rfc-editor.org/info/rfc6775>., +13:u02:[RFC7102], +9:u04:2014,, +13:u05:[RFC7228], +20:u06:Constrained-Node, +9:u00:6775,, +46:u04:<https://www.rfc-editor.org/info/rfc7102>., +21:u07:10.17487/RFC7228,, +13:u10:[rfc7102], +9:u12:2014,, +13:u13:[rfc7228], +20:u14:constrained-node, +8:u23:2014, +46:u00:<https://www.rfc-editor.org/info/rfc6775>., +13:u01:[RFC7102], +9:u03:2014,, +13:u04:[RFC7228], +20:u05:Constrained-Node, +46:u07:<https://www.rfc-editor.org/info/rfc7228>., +46:u03:<https://www.rfc-editor.org/info/rfc7102>., +21:u06:10.17487/RFC7228,, +9:u11:2014,, +13:u12:[rfc7228], +20:u13:constrained-node, +13:u00:[RFC7102], +9:u02:2014,, +13:u03:[RFC7228], +20:u04:Constrained-Node, +46:u06:<https://www.rfc-editor.org/info/rfc7228>., +46:u02:<https://www.rfc-editor.org/info/rfc7102>., +21:u05:10.17487/RFC7228,, +9:u10:2014,, +13:u11:[rfc7228], +20:u12:constrained-node, +46:u14:<https://www.rfc-editor.org/info/rfc7228>., +9:u01:2014,, +13:u02:[RFC7228], +20:u03:Constrained-Node, +46:u05:<https://www.rfc-editor.org/info/rfc7228>., +46:u01:<https://www.rfc-editor.org/info/rfc7102>., +21:u04:10.17487/RFC7228,, +7:u08:60], +13:u10:[rfc7228], +20:u11:constrained-node, +46:u13:<https://www.rfc-editor.org/info/rfc7228>., +9:u00:2014,, +13:u01:[RFC7228], +20:u02:Constrained-Node, +46:u04:<https://www.rfc-editor.org/info/rfc7228>., +46:u00:<https://www.rfc-editor.org/info/rfc7102>., +21:u03:10.17487/RFC7228,, +7:u07:60], +20:u10:constrained-node, +46:u12:<https://www.rfc-editor.org/info/rfc7228>., +13:u00:[RFC7228], +20:u01:Constrained-Node, +46:u03:<https://www.rfc-editor.org/info/rfc7228>., +21:u02:10.17487/RFC7228,, +7:u06:60], +46:u11:<https://www.rfc-editor.org/info/rfc7228>., +20:u00:Constrained-Node, +46:u02:<https://www.rfc-editor.org/info/rfc7228>., +13:u08:[RFC7252], +21:u01:10.17487/RFC7228,, +7:u05:60], +46:u10:<https://www.rfc-editor.org/info/rfc7228>., +46:u01:<https://www.rfc-editor.org/info/rfc7228>., +21:u00:10.17487/RFC7228,, +7:u04:60], +46:u00:<https://www.rfc-editor.org/info/rfc7228>., +13:u07:[RFC7252], +7:u03:60], +13:u06:[RFC7252], +46:u08:<https://www.rfc-editor.org/info/rfc7252>., +7:u02:60], +21:u08:10.17487/RFC7252,, +13:u14:[rfc7252], +13:u05:[RFC7252], +13:u08:[RFC7554], +7:u01:60], +21:u07:10.17487/RFC7252,, +13:u13:[rfc7252], +13:u04:[RFC7252], +46:u07:<https://www.rfc-editor.org/info/rfc7252>., +7:u00:60], +21:u06:10.17487/RFC7252,, +13:u12:[rfc7252], +13:u03:[RFC7252], +46:u06:<https://www.rfc-editor.org/info/rfc7252>., +13:u07:[RFC7554], +21:u05:10.17487/RFC7252,, +13:u08:802.15.4e, +13:u11:[rfc7252], +46:u14:<https://www.rfc-editor.org/info/rfc7252>., +13:u02:[RFC7252], +46:u05:<https://www.rfc-editor.org/info/rfc7252>., +13:u06:[RFC7554], +21:u04:10.17487/RFC7252,, +13:u07:802.15.4e, +13:u10:[rfc7252], +46:u13:<https://www.rfc-editor.org/info/rfc7252>., +13:u14:[rfc7554], +13:u01:[RFC7252], +46:u04:<https://www.rfc-editor.org/info/rfc7252>., +13:u05:[RFC7554], +46:u08:<https://www.rfc-editor.org/info/rfc7554>., +21:u03:10.17487/RFC7252,, +13:u06:802.15.4e, +21:u08:10.17487/RFC7554,, +46:u12:<https://www.rfc-editor.org/info/rfc7252>., +13:u13:[rfc7554], +17:uI2:[],.,.,,.,.,", +13:u00:[RFC7252], +46:u03:<https://www.rfc-editor.org/info/rfc7252>., +13:u04:[RFC7554], +13:u08:[RFC8025], +21:u02:10.17487/RFC7252,, +13:u05:802.15.4e, +21:u07:10.17487/RFC7554,, +46:u11:<https://www.rfc-editor.org/info/rfc7252>., +13:u12:[rfc7554], +17:uI1:[],.,.,,.,.,", +46:u02:<https://www.rfc-editor.org/info/rfc7252>., +13:u03:[RFC7554], +46:u07:<https://www.rfc-editor.org/info/rfc7554>., +21:u01:10.17487/RFC7252,, +13:u04:802.15.4e, +21:u06:10.17487/RFC7554,, +46:u10:<https://www.rfc-editor.org/info/rfc7252>., +13:u11:[rfc7554], +17:uI0:[],.,.,,.,.,", +10:uI2:():",,, +46:u01:<https://www.rfc-editor.org/info/rfc7252>., +13:u02:[RFC7554], +46:u06:<https://www.rfc-editor.org/info/rfc7554>., +13:u07:[RFC8025], +21:u00:10.17487/RFC7252,, +13:u03:802.15.4e, +21:u05:10.17487/RFC7554,, +13:u10:[rfc7554], +46:u14:<https://www.rfc-editor.org/info/rfc7554>., +10:uI1:():",,, +46:u00:<https://www.rfc-editor.org/info/rfc7252>., +13:u01:[RFC7554], +46:u05:<https://www.rfc-editor.org/info/rfc7554>., +13:u06:[RFC8025], +46:u08:<https://www.rfc-editor.org/info/rfc8025>., +13:u02:802.15.4e, +21:u04:10.17487/RFC7554,, +9:u08:8025,, +46:u13:<https://www.rfc-editor.org/info/rfc7554>., +13:u14:[rfc8025], +10:uI0:():",,, +13:u00:[RFC7554], +46:u04:<https://www.rfc-editor.org/info/rfc7554>., +13:u05:[RFC8025], +13:u01:802.15.4e, +21:u03:10.17487/RFC7554,, +9:u07:8025,, +46:u12:<https://www.rfc-editor.org/info/rfc7554>., +13:u13:[rfc8025], +14:uI2:[],.,..,"-, +46:u03:<https://www.rfc-editor.org/info/rfc7554>., +13:u04:[RFC8025], +46:u07:<https://www.rfc-editor.org/info/rfc8025>., +13:u00:802.15.4e, +21:u02:10.17487/RFC7554,, +9:u06:8025,, +12:u08:Kivinen,, +46:u11:<https://www.rfc-editor.org/info/rfc7554>., +13:u12:[rfc8025], +14:uI1:[],.,..,"-, +46:u02:<https://www.rfc-editor.org/info/rfc7554>., +13:u03:[RFC8025], +46:u06:<https://www.rfc-editor.org/info/rfc8025>., +21:u01:10.17487/RFC7554,, +9:u05:8025,, +12:u07:Kivinen,, +46:u10:<https://www.rfc-editor.org/info/rfc7554>., +13:u11:[rfc8025], +46:u14:<https://www.rfc-editor.org/info/rfc8025>., +14:uI0:[],.,..,"-, +46:u01:<https://www.rfc-editor.org/info/rfc7554>., +13:u02:[RFC8025], +46:u05:<https://www.rfc-editor.org/info/rfc8025>., +13:u08:[RFC8138], +21:u00:10.17487/RFC7554,, +9:u04:8025,, +12:u06:Kivinen,, +46:u08:<https://www.rfc-editor.org/info/rfc8137>., +13:u10:[rfc8025], +46:u13:<https://www.rfc-editor.org/info/rfc8025>., +46:u00:<https://www.rfc-editor.org/info/rfc7554>., +13:u01:[RFC8025], +46:u04:<https://www.rfc-editor.org/info/rfc8025>., +9:u03:8025,, +12:u05:Kivinen,, +46:u07:<https://www.rfc-editor.org/info/rfc8137>., +46:u12:<https://www.rfc-editor.org/info/rfc8025>., +13:uI2:[],..,".., +13:u00:[RFC8025], +46:u03:<https://www.rfc-editor.org/info/rfc8025>., +13:u07:[RFC8138], +13:u08:(6LoWPAN), +9:u02:8025,, +12:u04:Kivinen,, +46:u06:<https://www.rfc-editor.org/info/rfc8137>., +46:u11:<https://www.rfc-editor.org/info/rfc8025>., +9:u14:2017,, +13:uI1:[],..,".., +46:u02:<https://www.rfc-editor.org/info/rfc8025>., +13:u06:[RFC8138], +9:u01:8025,, +12:u03:Kivinen,, +46:u05:<https://www.rfc-editor.org/info/rfc8137>., +46:u10:<https://www.rfc-editor.org/info/rfc8025>., +9:u13:2017,, +13:u14:[rfc8138], +13:uI0:[],..,".., +46:u01:<https://www.rfc-editor.org/info/rfc8025>., +13:u05:[RFC8138], +13:u07:(6LoWPAN), +13:u08:[RFC8180], +9:u00:8025,, +12:u02:Kivinen,, +46:u04:<https://www.rfc-editor.org/info/rfc8137>., +9:u12:2017,, +13:u13:[rfc8138], +9:u14:"ipv6, +19:uI2:[],.,.,,.,,.,.,, +46:u00:<https://www.rfc-editor.org/info/rfc8025>., +13:u04:[RFC8138], +13:u06:(6LoWPAN), +12:u01:Kivinen,, +46:u03:<https://www.rfc-editor.org/info/rfc8137>., +15:u08:Vilajosana,, +9:u11:2017,, +13:u12:[rfc8138], +9:u13:"ipv6, +13:u14:(6lowpan), +19:uI1:[],.,.,,.,,.,.,, +13:u03:[RFC8138], +13:u05:(6LoWPAN), +13:u07:[RFC8180], +19:u08:Configuration",, +12:u00:Kivinen,, +46:u02:<https://www.rfc-editor.org/info/rfc8137>., +15:u07:Vilajosana,, +9:u10:2017,, +13:u11:[rfc8138], +9:u12:"ipv6, +13:u13:(6lowpan), +9:u14:april, +6:u21:"I, +7:u22:"IP, +8:u23:"IPv, +19:uI0:[],.,.,,.,,.,.,, +13:u02:[RFC8138], +13:u04:(6LoWPAN), +13:u06:[RFC8180], +46:u01:<https://www.rfc-editor.org/info/rfc8137>., +15:u06:Vilajosana,, +7:u08:BCP, +13:u10:[rfc8138], +9:u11:"ipv6, +13:u12:(6lowpan), +9:u13:april, +13:u14:[rfc8180], +13:u01:[RFC8138], +13:u03:(6LoWPAN), +13:u05:[RFC8180], +19:u07:Configuration",, +13:u08:[RFC8200], +46:u00:<https://www.rfc-editor.org/info/rfc8137>., +15:u05:Vilajosana,, +7:u07:BCP, +9:u10:"ipv6, +13:u11:(6lowpan), +9:u12:april, +13:u13:[rfc8180], +7:u22:Apr, +8:u23:Apri, +13:u00:[RFC8138], +13:u02:(6LoWPAN), +13:u04:[RFC8180], +19:u06:Configuration",, +10:u08:(IPv6), +15:u04:Vilajosana,, +7:u06:BCP, +12:u08:Deering,, +13:u10:(6lowpan), +9:u11:april, +13:u12:[rfc8180], +19:u14:configuration",, +13:u01:(6LoWPAN), +13:u03:[RFC8180], +19:u05:Configuration",, +13:u07:[RFC8200], +15:u03:Vilajosana,, +7:u05:BCP, +12:u07:Deering,, +9:u10:april, +13:u11:[rfc8180], +19:u13:configuration",, +13:u00:(6LoWPAN), +13:u02:[RFC8180], +19:u04:Configuration",, +13:u06:[RFC8200], +10:u07:(IPv6), +46:u08:<https://www.rfc-editor.org/info/rfc8200>., +15:u02:Vilajosana,, +7:u04:BCP, +12:u06:Deering,, +21:u08:10.17487/RFC8200,, +13:u10:[rfc8180], +19:u12:configuration",, +13:u14:[rfc8200], +8:u23:Conf, +13:u01:[RFC8180], +19:u03:Configuration",, +13:u05:[RFC8200], +10:u06:(IPv6), +13:u08:[RFC8453], +15:u01:Vilajosana,, +7:u03:BCP, +12:u05:Deering,, +21:u07:10.17487/RFC8200,, +19:u11:configuration",, +13:u13:[rfc8200], +10:u14:(ipv6), +12:uI2:[],..,",, +13:u00:[RFC8180], +19:u02:Configuration",, +13:u04:[RFC8200], +10:u05:(IPv6), +46:u07:<https://www.rfc-editor.org/info/rfc8200>., +15:u08:Abstraction, +15:u00:Vilajosana,, +7:u02:BCP, +12:u04:Deering,, +21:u06:10.17487/RFC8200,, +15:u08:Ceccarelli,, +19:u10:configuration",, +13:u12:[rfc8200], +10:u13:(ipv6), +12:uI1:[],..,",, +10:uI2:()",,,, +19:u01:Configuration",, +13:u03:[RFC8200], +10:u04:(IPv6), +46:u06:<https://www.rfc-editor.org/info/rfc8200>., +13:u07:[RFC8453], +7:u01:BCP, +12:u03:Deering,, +21:u05:10.17487/RFC8200,, +15:u07:Ceccarelli,, +13:u11:[rfc8200], +10:u12:(ipv6), +46:u14:<https://www.rfc-editor.org/info/rfc8200>., +7:u22:(IP, +8:u23:(IPv, +12:uI0:[],..,",, +10:uI1:()",,,, +19:u00:Configuration",, +13:u02:[RFC8200], +10:u03:(IPv6), +46:u05:<https://www.rfc-editor.org/info/rfc8200>., +13:u06:[RFC8453], +15:u07:Abstraction, +46:u08:<https://www.rfc-editor.org/info/rfc8453>., +7:u00:BCP, +12:u02:Deering,, +21:u04:10.17487/RFC8200,, +15:u06:Ceccarelli,, +21:u08:10.17487/RFC8453,, +13:u10:[rfc8200], +10:u11:(ipv6), +46:u13:<https://www.rfc-editor.org/info/rfc8200>., +13:u14:[rfc8453], +10:uI0:()",,,, +13:u01:[RFC8200], +10:u02:(IPv6), +46:u04:<https://www.rfc-editor.org/info/rfc8200>., +13:u05:[RFC8453], +15:u06:Abstraction, +12:u01:Deering,, +21:u03:10.17487/RFC8200,, +15:u05:Ceccarelli,, +21:u07:10.17487/RFC8453,, +10:u10:(ipv6), +46:u12:<https://www.rfc-editor.org/info/rfc8200>., +13:u13:[rfc8453], +13:u00:[RFC8200], +10:u01:(IPv6), +46:u03:<https://www.rfc-editor.org/info/rfc8200>., +13:u04:[RFC8453], +15:u05:Abstraction, +46:u07:<https://www.rfc-editor.org/info/rfc8453>., +13:u08:Operation, +12:u00:Deering,, +21:u02:10.17487/RFC8200,, +15:u04:Ceccarelli,, +21:u06:10.17487/RFC8453,, +46:u11:<https://www.rfc-editor.org/info/rfc8200>., +13:u12:[rfc8453], +10:u00:(IPv6), +46:u02:<https://www.rfc-editor.org/info/rfc8200>., +13:u03:[RFC8453], +15:u04:Abstraction, +46:u06:<https://www.rfc-editor.org/info/rfc8453>., +21:u01:10.17487/RFC8200,, +15:u03:Ceccarelli,, +21:u05:10.17487/RFC8453,, +12:u08:Sublayer, +46:u10:<https://www.rfc-editor.org/info/rfc8200>., +13:u11:[rfc8453], +46:u14:<https://www.rfc-editor.org/info/rfc8453>., +46:u01:<https://www.rfc-editor.org/info/rfc8200>., +13:u02:[RFC8453], +15:u03:Abstraction, +46:u05:<https://www.rfc-editor.org/info/rfc8453>., +13:u07:Operation, +46:u08:<https://www.rfc-editor.org/info/rfc8480>., +21:u00:10.17487/RFC8200,, +15:u02:Ceccarelli,, +21:u04:10.17487/RFC8453,, +12:u07:Sublayer, +21:u08:10.17487/RFC8480,, +13:u10:[rfc8453], +46:u13:<https://www.rfc-editor.org/info/rfc8453>., +46:u00:<https://www.rfc-editor.org/info/rfc8200>., +13:u01:[RFC8453], +15:u02:Abstraction, +46:u04:<https://www.rfc-editor.org/info/rfc8453>., +13:u06:Operation, +15:u01:Ceccarelli,, +21:u03:10.17487/RFC8453,, +12:u06:Sublayer, +21:u07:10.17487/RFC8480,, +46:u12:<https://www.rfc-editor.org/info/rfc8453>., +13:u00:[RFC8453], +15:u01:Abstraction, +46:u03:<https://www.rfc-editor.org/info/rfc8453>., +13:u05:Operation, +46:u07:<https://www.rfc-editor.org/info/rfc8480>., +15:u00:Ceccarelli,, +21:u02:10.17487/RFC8453,, +12:u05:Sublayer, +21:u06:10.17487/RFC8480,, +46:u11:<https://www.rfc-editor.org/info/rfc8453>., +11:uI2:()()",,, +15:u00:Abstraction, +46:u02:<https://www.rfc-editor.org/info/rfc8453>., +13:u04:Operation, +46:u06:<https://www.rfc-editor.org/info/rfc8480>., +21:u01:10.17487/RFC8453,, +12:u04:Sublayer, +21:u05:10.17487/RFC8480,, +46:u10:<https://www.rfc-editor.org/info/rfc8453>., +46:u14:<https://www.rfc-editor.org/info/rfc8480>., +11:uI1:()()",,, +46:u01:<https://www.rfc-editor.org/info/rfc8453>., +13:u03:Operation, +46:u05:<https://www.rfc-editor.org/info/rfc8480>., +21:u00:10.17487/RFC8453,, +12:u03:Sublayer, +21:u04:10.17487/RFC8480,, +7:u08:61], +46:u13:<https://www.rfc-editor.org/info/rfc8480>., +11:uI0:()()",,, +46:u00:<https://www.rfc-editor.org/info/rfc8453>., +13:u02:Operation, +46:u04:<https://www.rfc-editor.org/info/rfc8480>., +12:u02:Sublayer, +21:u03:10.17487/RFC8480,, +7:u07:61], +46:u12:<https://www.rfc-editor.org/info/rfc8480>., +13:u01:Operation, +46:u03:<https://www.rfc-editor.org/info/rfc8480>., +12:u01:Sublayer, +21:u02:10.17487/RFC8480,, +7:u06:61], +46:u11:<https://www.rfc-editor.org/info/rfc8480>., +13:u00:Operation, +46:u02:<https://www.rfc-editor.org/info/rfc8480>., +12:u00:Sublayer, +21:u01:10.17487/RFC8480,, +7:u05:61], +46:u10:<https://www.rfc-editor.org/info/rfc8480>., +46:u01:<https://www.rfc-editor.org/info/rfc8480>., +12:u08:Perkins,, +21:u00:10.17487/RFC8480,, +7:u04:61], +46:u00:<https://www.rfc-editor.org/info/rfc8480>., +7:u03:61], +17:u08:"Registration, +12:u07:Perkins,, +15:u08:Discovery",, +7:u02:61], +17:u07:"Registration, +13:u14:[rfc8505], +12:u06:Perkins,, +46:u08:<https://www.rfc-editor.org/info/rfc8505>., +7:u01:61], +17:u06:"Registration, +13:u13:[rfc8505], +12:u14:perkins,, +12:u05:Perkins,, +15:u07:Discovery",, +7:u00:61], +17:u05:"Registration, +13:u12:[rfc8505], +12:u13:perkins,, +7:uI2:,"-, +12:u04:Perkins,, +15:u06:Discovery",, +46:u07:<https://www.rfc-editor.org/info/rfc8505>., +17:u04:"Registration, +13:u11:[rfc8505], +12:u12:perkins,, +15:u14:discovery",, +7:u22:Per, +8:u23:Perk, +7:uI1:,"-, +12:u03:Perkins,, +15:u05:Discovery",, +46:u06:<https://www.rfc-editor.org/info/rfc8505>., +6:u08:US, +17:u03:"Registration, +13:u10:[rfc8505], +12:u11:perkins,, +15:u13:discovery",, +46:u14:<https://www.rfc-editor.org/info/rfc8505>., +7:uI0:,"-, +12:u02:Perkins,, +15:u04:Discovery",, +46:u05:<https://www.rfc-editor.org/info/rfc8505>., +17:u02:"Registration, +14:u08:Department, +12:u10:perkins,, +15:u12:discovery",, +46:u13:<https://www.rfc-editor.org/info/rfc8505>., +7:u22:Dis, +8:u23:Disc, +12:u01:Perkins,, +15:u03:Discovery",, +46:u04:<https://www.rfc-editor.org/info/rfc8505>., +6:u07:US, +57:u08:<https://www.energy.gov/sites/prod/files/2016/12/f34/, +17:u01:"Registration, +14:u07:Department, +12:u08:Customer, +15:u11:discovery",, +46:u12:<https://www.rfc-editor.org/info/rfc8505>., +9:u14:[ami], +12:u00:Perkins,, +15:u02:Discovery",, +46:u03:<https://www.rfc-editor.org/info/rfc8505>., +6:u06:US, +41:u08:AMI%20Summary%20Report_09-26-16.pdf>., +17:u00:"Registration, +14:u06:Department, +12:u07:Customer, +15:u10:discovery",, +46:u11:<https://www.rfc-editor.org/info/rfc8505>., +9:u13:[ami], +6:u14:us, +15:u01:Discovery",, +46:u02:<https://www.rfc-editor.org/info/rfc8505>., +6:u05:US, +57:u07:<https://www.energy.gov/sites/prod/files/2016/12/f34/, +11:u08:[ANIMA], +14:u05:Department, +12:u06:Customer, +46:u10:<https://www.rfc-editor.org/info/rfc8505>., +9:u12:[ami], +6:u13:us, +7:u22:[AM, +8:u23:[AMI, +15:u00:Discovery",, +46:u01:<https://www.rfc-editor.org/info/rfc8505>., +6:u04:US, +57:u06:<https://www.energy.gov/sites/prod/files/2016/12/f34/, +41:u07:AMI%20Summary%20Report_09-26-16.pdf>., +9:u08:IETF,, +14:u04:Department, +12:u05:Customer, +9:u11:[ami], +6:u12:us, +57:u14:<https://www.energy.gov/sites/prod/files/2016/12/f34/, +6:u22:US, +6:u23:US, +46:u00:<https://www.rfc-editor.org/info/rfc8505>., +6:u03:US, +57:u05:<https://www.energy.gov/sites/prod/files/2016/12/f34/, +41:u06:AMI%20Summary%20Report_09-26-16.pdf>., +11:u07:[ANIMA], +14:u08:Approach",, +14:u03:Department, +12:u04:Customer, +14:u08:"Autonomic, +9:u10:[ami], +6:u11:us, +57:u13:<https://www.energy.gov/sites/prod/files/2016/12/f34/, +41:u14:ami%20summary%20report_09-26-16.pdf>., +16:uI2:://..///////, +6:u02:US, +57:u04:<https://www.energy.gov/sites/prod/files/2016/12/f34/, +41:u05:AMI%20Summary%20Report_09-26-16.pdf>., +11:u06:[ANIMA], +9:u07:IETF,, +59:u08:<https://dataTracker.ietf.org/doc/charter-ietf-anima/>., +14:u02:Department, +12:u03:Customer, +14:u07:"Autonomic, +6:u10:us, +57:u12:<https://www.energy.gov/sites/prod/files/2016/12/f34/, +41:u13:ami%20summary%20report_09-26-16.pdf>., +11:u14:[anima], +16:uI1:://..///////, +8:uI2:--.., +6:u01:US, +57:u03:<https://www.energy.gov/sites/prod/files/2016/12/f34/, +41:u04:AMI%20Summary%20Report_09-26-16.pdf>., +11:u05:[ANIMA], +9:u06:IETF,, +14:u07:Approach",, +11:u08:[CCAMP], +14:u01:Department, +12:u02:Customer, +14:u06:"Autonomic, +57:u11:<https://www.energy.gov/sites/prod/files/2016/12/f34/, +41:u12:ami%20summary%20report_09-26-16.pdf>., +11:u13:[anima], +9:u14:ietf,, +6:u21:AM, +7:u22:AMI, +8:u23:AMI%, +16:uI0:://..///////, +8:uI1:--.., +6:u00:US, +57:u02:<https://www.energy.gov/sites/prod/files/2016/12/f34/, +41:u03:AMI%20Summary%20Report_09-26-16.pdf>., +11:u04:[ANIMA], +9:u05:IETF,, +14:u06:Approach",, +59:u07:<https://dataTracker.ietf.org/doc/charter-ietf-anima/>., +14:u00:Department, +12:u01:Customer, +14:u05:"Autonomic, +57:u10:<https://www.energy.gov/sites/prod/files/2016/12/f34/, +41:u11:ami%20summary%20report_09-26-16.pdf>., +11:u12:[anima], +9:u13:ietf,, +14:u14:approach",, +7:u22:[AN, +8:u23:[ANI, +8:uI0:--.., +57:u01:<https://www.energy.gov/sites/prod/files/2016/12/f34/, +41:u02:AMI%20Summary%20Report_09-26-16.pdf>., +11:u03:[ANIMA], +9:u04:IETF,, +14:u05:Approach",, +59:u06:<https://dataTracker.ietf.org/doc/charter-ietf-anima/>., +11:u07:[CCAMP], +59:u08:<https://dataTracker.ietf.org/doc/charter-ietf-ccamp/>., +12:u00:Customer, +14:u04:"Autonomic, +11:u08:"Common, +41:u10:ami%20summary%20report_09-26-16.pdf>., +11:u11:[anima], +9:u12:ietf,, +14:u13:approach",, +59:u14:<https://datatracker.ietf.org/doc/charter-ietf-anima/>., +57:u00:<https://www.energy.gov/sites/prod/files/2016/12/f34/, +41:u01:AMI%20Summary%20Report_09-26-16.pdf>., +11:u02:[ANIMA], +9:u03:IETF,, +14:u04:Approach",, +59:u05:<https://dataTracker.ietf.org/doc/charter-ietf-anima/>., +11:u06:[CCAMP], +13:u08:[CCMstar], +14:u03:"Autonomic, +11:u07:"Common, +11:u10:[anima], +9:u11:ietf,, +14:u12:approach",, +59:u13:<https://datatracker.ietf.org/doc/charter-ietf-anima/>., +11:u14:[ccamp], +8:u23:Appr, +15:uI2:://..//--/., +41:u00:AMI%20Summary%20Report_09-26-16.pdf>., +11:u01:[ANIMA], +9:u02:IETF,, +14:u03:Approach",, +59:u04:<https://dataTracker.ietf.org/doc/charter-ietf-anima/>., +11:u05:[CCAMP], +59:u07:<https://dataTracker.ietf.org/doc/charter-ietf-ccamp/>., +15:u08:Operation",, +14:u02:"Autonomic, +11:u06:"Common, +11:u08:Struik,, +9:u10:ietf,, +14:u11:approach",, +59:u12:<https://datatracker.ietf.org/doc/charter-ietf-anima/>., +11:u13:[ccamp], +15:uI1:://..//--/., +11:u00:[ANIMA], +9:u01:IETF,, +14:u02:Approach",, +59:u03:<https://dataTracker.ietf.org/doc/charter-ietf-anima/>., +11:u04:[CCAMP], +59:u06:<https://dataTracker.ietf.org/doc/charter-ietf-ccamp/>., +13:u07:[CCMstar], +62:u08:pub/2004/15-04-0537-00-004b-formal-specification-ccm-star-, +14:u01:"Autonomic, +11:u05:"Common, +11:u07:Struik,, +14:u10:approach",, +59:u11:<https://datatracker.ietf.org/doc/charter-ietf-anima/>., +11:u12:[ccamp], +59:u14:<https://datatracker.ietf.org/doc/charter-ietf-ccamp/>., +6:u21:[C, +7:u22:[CC, +8:u23:[CCA, +15:uI0:://..//--/., +8:uI2:,"",, +9:u00:IETF,, +14:u01:Approach",, +59:u02:<https://dataTracker.ietf.org/doc/charter-ietf-anima/>., +11:u03:[CCAMP], +59:u05:<https://dataTracker.ietf.org/doc/charter-ietf-ccamp/>., +13:u06:[CCMstar], +15:u07:Operation",, +24:u08:mode-operation.doc>., +14:u00:"Autonomic, +11:u04:"Common, +11:u06:Struik,, +59:u10:<https://datatracker.ietf.org/doc/charter-ietf-anima/>., +11:u11:[ccamp], +59:u13:<https://datatracker.ietf.org/doc/charter-ietf-ccamp/>., +13:u14:[ccmstar], +8:uI1:,"",, +14:u00:Approach",, +59:u01:<https://dataTracker.ietf.org/doc/charter-ietf-anima/>., +11:u02:[CCAMP], +59:u04:<https://dataTracker.ietf.org/doc/charter-ietf-ccamp/>., +13:u05:[CCMstar], +15:u06:Operation",, +62:u07:pub/2004/15-04-0537-00-004b-formal-specification-ccm-star-, +11:u03:"Common, +11:u05:Struik,, +11:u10:[ccamp], +59:u12:<https://datatracker.ietf.org/doc/charter-ietf-ccamp/>., +13:u13:[ccmstar], +15:u14:operation",, +8:uI0:,"",, +11:uI2:[],.,"*, +59:u00:<https://dataTracker.ietf.org/doc/charter-ietf-anima/>., +11:u01:[CCAMP], +59:u03:<https://dataTracker.ietf.org/doc/charter-ietf-ccamp/>., +13:u04:[CCMstar], +15:u05:Operation",, +62:u06:pub/2004/15-04-0537-00-004b-formal-specification-ccm-star-, +24:u07:mode-operation.doc>., +21:u08:www.hartcomm.org,, +11:u02:"Common, +11:u04:Struik,, +59:u11:<https://datatracker.ietf.org/doc/charter-ietf-ccamp/>., +13:u12:[ccmstar], +15:u13:operation",, +62:u14:pub/2004/15-04-0537-00-004b-formal-specification-ccm-star-, +8:u23:[CCM, +11:uI1:[],.,"*, +11:uI2:",,..//, +11:u00:[CCAMP], +59:u02:<https://dataTracker.ietf.org/doc/charter-ietf-ccamp/>., +13:u03:[CCMstar], +15:u04:Operation",, +62:u05:pub/2004/15-04-0537-00-004b-formal-specification-ccm-star-, +24:u06:mode-operation.doc>., +11:u01:"Common, +11:u03:Struik,, +12:u08:"Highway, +59:u10:<https://datatracker.ietf.org/doc/charter-ietf-ccamp/>., +13:u11:[ccmstar], +15:u12:operation",, +62:u13:pub/2004/15-04-0537-00-004b-formal-specification-ccm-star-, +24:u14:mode-operation.doc>., +11:uI0:[],.,"*, +11:uI1:",,..//, +15:uI2://---------, +59:u01:<https://dataTracker.ietf.org/doc/charter-ietf-ccamp/>., +13:u02:[CCMstar], +15:u03:Operation",, +62:u04:pub/2004/15-04-0537-00-004b-formal-specification-ccm-star-, +24:u05:mode-operation.doc>., +21:u07:www.hartcomm.org,, +11:u00:"Common, +11:u02:Struik,, +12:u07:"Highway, +13:u10:[ccmstar], +15:u11:operation",, +62:u12:pub/2004/15-04-0537-00-004b-formal-specification-ccm-star-, +24:u13:mode-operation.doc>., +8:u23:pub/, +11:uI0:",,..//, +15:uI1://---------, +7:uI2:-.., +59:u00:<https://dataTracker.ietf.org/doc/charter-ietf-ccamp/>., +13:u01:[CCMstar], +15:u02:Operation",, +62:u03:pub/2004/15-04-0537-00-004b-formal-specification-ccm-star-, +24:u04:mode-operation.doc>., +21:u06:www.hartcomm.org,, +33:u08:[I-D.bernardos-raw-use-cases], +11:u01:Struik,, +12:u06:"Highway, +15:u10:operation",, +62:u11:pub/2004/15-04-0537-00-004b-formal-specification-ccm-star-, +24:u12:mode-operation.doc>., +21:u14:www.hartcomm.org,, +15:uI0://---------, +7:uI1:-.., +13:u00:[CCMstar], +15:u01:Operation",, +62:u02:pub/2004/15-04-0537-00-004b-formal-specification-ccm-star-, +24:u03:mode-operation.doc>., +21:u05:www.hartcomm.org,, +11:u00:Struik,, +12:u05:"Highway, +62:u10:pub/2004/15-04-0537-00-004b-formal-specification-ccm-star-, +24:u11:mode-operation.doc>., +21:u13:www.hartcomm.org,, +7:uI0:-.., +9:uI2:..,",, +15:u00:Operation",, +62:u01:pub/2004/15-04-0537-00-004b-formal-specification-ccm-star-, +24:u02:mode-operation.doc>., +21:u04:www.hartcomm.org,, +33:u07:[I-D.bernardos-raw-use-cases], +14:u08:Bernardos,, +12:u04:"Highway, +24:u10:mode-operation.doc>., +21:u12:www.hartcomm.org,, +6:u21:ww, +7:u22:www, +8:u23:www., +9:uI1:..,",, +62:u00:pub/2004/15-04-0537-00-004b-formal-specification-ccm-star-, +24:u01:mode-operation.doc>., +21:u03:www.hartcomm.org,, +33:u06:[I-D.bernardos-raw-use-cases], +12:u08:cases-00, +12:u03:"Highway, +8:u08:"RAW, +21:u11:www.hartcomm.org,, +33:u14:[i-d.bernardos-raw-use-cases], +9:uI0:..,",, +24:u00:mode-operation.doc>., +21:u02:www.hartcomm.org,, +33:u05:[I-D.bernardos-raw-use-cases], +14:u07:Bernardos,, +12:u02:"Highway, +8:u07:"RAW, +21:u10:www.hartcomm.org,, +33:u13:[i-d.bernardos-raw-use-cases], +21:u01:www.hartcomm.org,, +33:u04:[I-D.bernardos-raw-use-cases], +14:u06:Bernardos,, +12:u07:cases-00, +15:u08:Richardson,, +12:u01:"Highway, +8:u06:"RAW, +33:u12:[i-d.bernardos-raw-use-cases], +14:u14:bernardos,, +14:uI2:,.,,.,,.,., +21:u00:www.hartcomm.org,, +33:u03:[I-D.bernardos-raw-use-cases], +14:u05:Bernardos,, +12:u06:cases-00, +50:u08:draft-ietf-6tisch-dtsecurity-zerotouch-join-04, +12:u00:"Highway, +8:u05:"RAW, +33:u11:[i-d.bernardos-raw-use-cases], +14:u13:bernardos,, +12:u14:cases-00, +14:uI1:,.,,.,,.,., +12:uI2:,"",----, +33:u02:[I-D.bernardos-raw-use-cases], +14:u04:Bernardos,, +12:u05:cases-00, +15:u07:Richardson,, +8:u04:"RAW, +33:u10:[i-d.bernardos-raw-use-cases], +14:u12:bernardos,, +12:u13:cases-00, +6:u21:Be, +7:u22:Ber, +8:u23:Bern, +14:uI0:,.,,.,,.,., +12:uI1:,"",----, +33:u01:[I-D.bernardos-raw-use-cases], +14:u03:Bernardos,, +12:u04:cases-00, +15:u06:Richardson,, +50:u07:draft-ietf-6tisch-dtsecurity-zerotouch-join-04, +8:u03:"RAW, +14:u11:bernardos,, +12:u12:cases-00, +15:u14:richardson,, +12:uI0:,"",----, +33:u00:[I-D.bernardos-raw-use-cases], +14:u02:Bernardos,, +12:u03:cases-00, +15:u05:Richardson,, +50:u06:draft-ietf-6tisch-dtsecurity-zerotouch-join-04, +9:u08:Stok,, +8:u02:"RAW, +14:u10:bernardos,, +12:u11:cases-00, +15:u13:richardson,, +50:u14:draft-ietf-6tisch-dtsecurity-zerotouch-join-04, +11:uI2:,.,"-",, +14:u01:Bernardos,, +12:u02:cases-00, +15:u04:Richardson,, +50:u05:draft-ietf-6tisch-dtsecurity-zerotouch-join-04, +8:u08:"EST, +8:u01:"RAW, +12:u10:cases-00, +15:u12:richardson,, +50:u13:draft-ietf-6tisch-dtsecurity-zerotouch-join-04, +7:u22:Ric, +8:u23:Rich, +11:uI1:,.,"-",, +11:uI2:------(, +14:u00:Bernardos,, +12:u01:cases-00, +15:u03:Richardson,, +50:u04:draft-ietf-6tisch-dtsecurity-zerotouch-join-04, +9:u07:Stok,, +10:u08:est-12, +8:u00:"RAW, +15:u11:richardson,, +50:u12:draft-ietf-6tisch-dtsecurity-zerotouch-join-04, +11:uI0:,.,"-",, +11:uI1:------(, +12:u00:cases-00, +15:u02:Richardson,, +50:u03:draft-ietf-6tisch-dtsecurity-zerotouch-join-04, +9:u06:Stok,, +8:u07:"EST, +15:u10:richardson,, +50:u11:draft-ietf-6tisch-dtsecurity-zerotouch-join-04, +9:u14:stok,, +11:uI0:------(, +15:u01:Richardson,, +50:u02:draft-ietf-6tisch-dtsecurity-zerotouch-join-04, +9:u05:Stok,, +8:u06:"EST, +10:u07:est-12, +50:u10:draft-ietf-6tisch-dtsecurity-zerotouch-join-04, +9:u13:stok,, +8:u14:"est, +15:u00:Richardson,, +50:u01:draft-ietf-6tisch-dtsecurity-zerotouch-join-04, +9:u04:Stok,, +8:u05:"EST, +10:u06:est-12, +9:u12:stok,, +8:u13:"est, +10:u14:est-12, +7:u22:Sto, +8:u23:Stok, +14:uI2:"(-)",----, +50:u00:draft-ietf-6tisch-dtsecurity-zerotouch-join-04, +9:u03:Stok,, +8:u04:"EST, +10:u05:est-12, +7:u08:62], +9:u11:stok,, +8:u12:"est, +10:u13:est-12, +7:u22:"ES, +8:u23:"EST, +14:uI1:"(-)",----, +9:u02:Stok,, +8:u03:"EST, +10:u04:est-12, +7:u07:62], +9:u10:stok,, +8:u11:"est, +10:u12:est-12, +8:u23:est-, +14:uI0:"(-)",----, +9:u01:Stok,, +8:u02:"EST, +10:u03:est-12, +7:u06:62], +8:u10:"est, +10:u11:est-12, +9:u00:Stok,, +8:u01:"EST, +10:u02:est-12, +7:u05:62], +10:u10:est-12, +8:u00:"EST, +10:u01:est-12, +13:u08:Pritikin,, +7:u04:62], +10:u00:est-12, +7:u03:62], +13:u07:Pritikin,, +19:u08:Infrastructures, +7:u02:62], +6:u08:K., +13:u06:Pritikin,, +15:u08:keyinfra-26, +7:u01:62], +6:u07:K., +13:u08:(BRSKI)",, +13:u14:pritikin,, +13:u05:Pritikin,, +19:u07:Infrastructures, +7:u00:62], +6:u06:K., +13:u07:(BRSKI)",, +13:u13:pritikin,, +13:u04:Pritikin,, +19:u06:Infrastructures, +15:u07:keyinfra-26, +13:u06:(BRSKI)",, +13:u12:pritikin,, +19:u14:infrastructures, +8:u23:Prit, +13:u03:Pritikin,, +19:u05:Infrastructures, +15:u06:keyinfra-26, +11:u08:Voucher, +13:u05:(BRSKI)",, +13:u11:pritikin,, +19:u13:infrastructures, +15:u14:keyinfra-26, +12:uI2:()",----, +13:u02:Pritikin,, +19:u04:Infrastructures, +15:u05:keyinfra-26, +37:u08:ietf-anima-constrained-voucher-05, +13:u04:(BRSKI)",, +13:u08:Artifacts, +13:u10:pritikin,, +19:u12:infrastructures, +15:u13:keyinfra-26, +12:uI1:()",----, +13:u01:Pritikin,, +19:u03:Infrastructures, +15:u04:keyinfra-26, +11:u07:Voucher, +13:u03:(BRSKI)",, +13:u07:Artifacts, +19:u11:infrastructures, +15:u12:keyinfra-26, +6:u21:ke, +7:u22:key, +8:u23:keyi, +12:uI0:()",----, +13:u00:Pritikin,, +19:u02:Infrastructures, +15:u03:keyinfra-26, +11:u06:Voucher, +37:u07:ietf-anima-constrained-voucher-05, +35:u08:[I-D.ietf-core-object-security], +13:u02:(BRSKI)",, +13:u06:Artifacts, +19:u10:infrastructures, +15:u11:keyinfra-26, +11:u14:voucher, +19:u01:Infrastructures, +15:u02:keyinfra-26, +11:u05:Voucher, +37:u06:ietf-anima-constrained-voucher-05, +13:u08:Selander,, +13:u01:(BRSKI)",, +13:u05:Artifacts, +15:u10:keyinfra-26, +11:u13:voucher, +37:u14:ietf-anima-constrained-voucher-05, +7:uI2:",-, +19:u00:Infrastructures, +15:u01:keyinfra-26, +11:u04:Voucher, +37:u05:ietf-anima-constrained-voucher-05, +35:u07:[I-D.ietf-core-object-security], +11:u08:"Object, +13:u00:(BRSKI)",, +13:u04:Artifacts, +11:u12:voucher, +37:u13:ietf-anima-constrained-voucher-05, +7:u22:Vou, +8:u23:Vouc, +7:uI1:",-, +15:u00:keyinfra-26, +11:u03:Voucher, +37:u04:ietf-anima-constrained-voucher-05, +35:u06:[I-D.ietf-core-object-security], +13:u07:Selander,, +14:u08:(OSCORE)",, +13:u03:Artifacts, +11:u11:voucher, +37:u12:ietf-anima-constrained-voucher-05, +35:u14:[i-d.ietf-core-object-security], +7:uI0:",-, +11:u02:Voucher, +37:u03:ietf-anima-constrained-voucher-05, +35:u05:[I-D.ietf-core-object-security], +13:u06:Selander,, +11:u07:"Object, +13:u02:Artifacts, +38:u08:draft-ietf-core-object-security-16, +11:u10:voucher, +37:u11:ietf-anima-constrained-voucher-05, +35:u13:[i-d.ietf-core-object-security], +13:u14:selander,, +11:u01:Voucher, +37:u02:ietf-anima-constrained-voucher-05, +35:u04:[I-D.ietf-core-object-security], +13:u05:Selander,, +11:u06:"Object, +14:u07:(OSCORE)",, +24:u08:[I-D.ietf-detnet-ip], +13:u01:Artifacts, +38:u07:draft-ietf-core-object-security-16, +37:u10:ietf-anima-constrained-voucher-05, +35:u12:[i-d.ietf-core-object-security], +13:u13:selander,, +11:u14:"object, +11:u00:Voucher, +37:u01:ietf-anima-constrained-voucher-05, +35:u03:[I-D.ietf-core-object-security], +13:u04:Selander,, +11:u05:"Object, +14:u06:(OSCORE)",, +10:u08:Varga,, +13:u00:Artifacts, +38:u06:draft-ietf-core-object-security-16, +35:u11:[i-d.ietf-core-object-security], +13:u12:selander,, +11:u13:"object, +14:u14:(oscore)",, +7:u22:Sel, +8:u23:Sela, +37:u00:ietf-anima-constrained-voucher-05, +35:u02:[I-D.ietf-core-object-security], +13:u03:Selander,, +11:u04:"Object, +14:u05:(OSCORE)",, +24:u07:[I-D.ietf-detnet-ip], +11:u08:Bryant,, +38:u05:draft-ietf-core-object-security-16, +35:u10:[i-d.ietf-core-object-security], +13:u11:selander,, +11:u12:"object, +14:u13:(oscore)",, +7:u22:"Ob, +8:u23:"Obj, +14:uI2:()",-----(, +35:u01:[I-D.ietf-core-object-security], +13:u02:Selander,, +11:u03:"Object, +14:u04:(OSCORE)",, +24:u06:[I-D.ietf-detnet-ip], +10:u07:Varga,, +27:u08:draft-ietf-detnet-ip-01, +38:u04:draft-ietf-core-object-security-16, +13:u10:selander,, +11:u11:"object, +14:u12:(oscore)",, +24:u14:[i-d.ietf-detnet-ip], +7:u22:(OS, +8:u23:(OSC, +14:uI1:()",-----(, +35:u00:[I-D.ietf-core-object-security], +13:u01:Selander,, +11:u02:"Object, +14:u03:(OSCORE)",, +24:u05:[I-D.ietf-detnet-ip], +10:u06:Varga,, +11:u07:Bryant,, +31:u08:[I-D.ietf-detnet-use-cases], +38:u03:draft-ietf-core-object-security-16, +11:u10:"object, +14:u11:(oscore)",, +24:u13:[i-d.ietf-detnet-ip], +10:u14:varga,, +14:uI0:()",-----(, +13:u00:Selander,, +11:u01:"Object, +14:u02:(OSCORE)",, +24:u04:[I-D.ietf-detnet-ip], +10:u05:Varga,, +11:u06:Bryant,, +27:u07:draft-ietf-detnet-ip-01, +13:u08:Grossman,, +38:u02:draft-ietf-core-object-security-16, +14:u10:(oscore)",, +24:u12:[i-d.ietf-detnet-ip], +10:u13:varga,, +11:u14:bryant,, +19:uI2:,.,,.,,.,,.,,.,, +11:u00:"Object, +14:u01:(OSCORE)",, +24:u03:[I-D.ietf-detnet-ip], +10:u04:Varga,, +11:u05:Bryant,, +27:u06:draft-ietf-detnet-ip-01, +31:u07:[I-D.ietf-detnet-use-cases], +28:u08:ietf-detnet-use-cases-20, +38:u01:draft-ietf-core-object-security-16, +7:u08:E.,, +24:u11:[i-d.ietf-detnet-ip], +10:u12:varga,, +11:u13:bryant,, +27:u14:draft-ietf-detnet-ip-01, +6:u21:Va, +7:u22:Var, +8:u23:Varg, +19:uI1:,.,,.,,.,,.,,.,, +13:uI2:,.,.,":",, +14:u00:(OSCORE)",, +24:u02:[I-D.ietf-detnet-ip], +10:u03:Varga,, +11:u04:Bryant,, +27:u05:draft-ietf-detnet-ip-01, +31:u06:[I-D.ietf-detnet-use-cases], +13:u07:Grossman,, +9:u08:2018., +38:u00:draft-ietf-core-object-security-16, +7:u07:E.,, +24:u10:[i-d.ietf-detnet-ip], +10:u11:varga,, +11:u12:bryant,, +27:u13:draft-ietf-detnet-ip-01, +31:u14:[i-d.ietf-detnet-use-cases], +6:u21:Br, +7:u22:Bry, +8:u23:Brya, +19:uI0:,.,,.,,.,,.,,.,, +13:uI1:,.,.,":",, +24:u01:[I-D.ietf-detnet-ip], +10:u02:Varga,, +11:u03:Bryant,, +27:u04:draft-ietf-detnet-ip-01, +31:u05:[I-D.ietf-detnet-use-cases], +13:u06:Grossman,, +28:u07:ietf-detnet-use-cases-20, +7:u06:E.,, +10:u10:varga,, +11:u11:bryant,, +27:u12:draft-ietf-detnet-ip-01, +31:u13:[i-d.ietf-detnet-use-cases], +13:u14:grossman,, +13:uI0:,.,.,":",, +24:u00:[I-D.ietf-detnet-ip], +10:u01:Varga,, +11:u02:Bryant,, +27:u03:draft-ietf-detnet-ip-01, +31:u04:[I-D.ietf-detnet-use-cases], +13:u05:Grossman,, +28:u06:ietf-detnet-use-cases-20, +9:u07:2018., +7:u05:E.,, +11:u10:bryant,, +27:u11:draft-ietf-detnet-ip-01, +31:u12:[i-d.ietf-detnet-use-cases], +13:u13:grossman,, +28:u14:ietf-detnet-use-cases-20, +10:u00:Varga,, +11:u01:Bryant,, +27:u02:draft-ietf-detnet-ip-01, +31:u03:[I-D.ietf-detnet-use-cases], +13:u04:Grossman,, +28:u05:ietf-detnet-use-cases-20, +9:u06:2018., +7:u04:E.,, +27:u10:draft-ietf-detnet-ip-01, +31:u11:[i-d.ietf-detnet-use-cases], +13:u12:grossman,, +28:u13:ietf-detnet-use-cases-20, +9:u14:2018., +8:u23:Gros, +11:u00:Bryant,, +27:u01:draft-ietf-detnet-ip-01, +31:u02:[I-D.ietf-detnet-use-cases], +13:u03:Grossman,, +28:u04:ietf-detnet-use-cases-20, +9:u05:2018., +7:u03:E.,, +13:u08:6LoWPAN",, +31:u10:[i-d.ietf-detnet-use-cases], +13:u11:grossman,, +28:u12:ietf-detnet-use-cases-20, +9:u13:2018., +46:u14:[i-d.ietf-lwig-6lowpan-virtual-reassembly], +27:u00:draft-ietf-detnet-ip-01, +31:u01:[I-D.ietf-detnet-use-cases], +13:u02:Grossman,, +28:u03:ietf-detnet-use-cases-20, +9:u04:2018., +7:u02:E.,, +13:u07:6LoWPAN",, +13:u10:grossman,, +28:u11:ietf-detnet-use-cases-20, +9:u12:2018., +46:u13:[i-d.ietf-lwig-6lowpan-virtual-reassembly], +8:u23:2018, +31:u00:[I-D.ietf-detnet-use-cases], +13:u01:Grossman,, +28:u02:ietf-detnet-use-cases-20, +9:u03:2018., +7:u01:E.,, +13:u06:6LoWPAN",, +28:u10:ietf-detnet-use-cases-20, +9:u11:2018., +46:u12:[i-d.ietf-lwig-6lowpan-virtual-reassembly], +13:u00:Grossman,, +28:u01:ietf-detnet-use-cases-20, +9:u02:2018., +6:u08:V., +7:u00:E.,, +13:u05:6LoWPAN",, +9:u10:2018., +46:u11:[i-d.ietf-lwig-6lowpan-virtual-reassembly], +28:u00:ietf-detnet-use-cases-20, +9:u01:2018., +12:u08:(AODVv2), +13:u04:6LoWPAN",, +13:u08:Mercieca,, +46:u10:[i-d.ietf-lwig-6lowpan-virtual-reassembly], +27:u14:[i-d.ietf-manet-aodvv2], +9:u00:2018., +6:u07:V., +13:u03:6LoWPAN",, +13:u07:Mercieca,, +13:u08:Routing",, +27:u13:[i-d.ietf-manet-aodvv2], +6:u06:V., +12:u07:(AODVv2), +28:u08:[I-D.ietf-roll-aodv-rpl], +13:u02:6LoWPAN",, +13:u06:Mercieca,, +13:u07:Routing",, +27:u12:[i-d.ietf-manet-aodvv2], +6:u14:v., +6:u05:V., +12:u06:(AODVv2), +16:u08:Anamalamudi,, +13:u01:6LoWPAN",, +13:u05:Mercieca,, +13:u06:Routing",, +27:u11:[i-d.ietf-manet-aodvv2], +6:u13:v., +12:u14:(aodvv2), +8:uI2:.,"-, +6:u04:V., +12:u05:(AODVv2), +28:u07:[I-D.ietf-roll-aodv-rpl], +8:u08:Liu,, +13:u00:6LoWPAN",, +13:u04:Mercieca,, +13:u05:Routing",, +27:u10:[i-d.ietf-manet-aodvv2], +6:u12:v., +12:u13:(aodvv2), +6:u21:V., +6:u22:V., +6:u23:V., +8:uI1:.,"-, +13:uI2:()",----(, +6:u03:V., +12:u04:(AODVv2), +28:u06:[I-D.ietf-roll-aodv-rpl], +16:u07:Anamalamudi,, +13:u03:Mercieca,, +13:u04:Routing",, +15:u08:"Asymmetric, +6:u11:v., +12:u12:(aodvv2), +28:u14:[i-d.ietf-roll-aodv-rpl], +8:uI0:.,"-, +13:uI1:()",----(, +6:u02:V., +12:u03:(AODVv2), +28:u05:[I-D.ietf-roll-aodv-rpl], +16:u06:Anamalamudi,, +8:u07:Liu,, +13:u02:Mercieca,, +13:u03:Routing",, +15:u07:"Asymmetric, +12:u08:(LLNs)",, +6:u10:v., +12:u11:(aodvv2), +28:u13:[i-d.ietf-roll-aodv-rpl], +16:u14:anamalamudi,, +13:uI0:()",----(, +6:u01:V., +12:u02:(AODVv2), +28:u04:[I-D.ietf-roll-aodv-rpl], +16:u05:Anamalamudi,, +8:u06:Liu,, +13:u01:Mercieca,, +13:u02:Routing",, +15:u06:"Asymmetric, +12:u07:(LLNs)",, +12:u10:(aodvv2), +28:u12:[i-d.ietf-roll-aodv-rpl], +16:u13:anamalamudi,, +8:u14:liu,, +6:u00:V., +12:u01:(AODVv2), +28:u03:[I-D.ietf-roll-aodv-rpl], +16:u04:Anamalamudi,, +8:u05:Liu,, +13:u00:Mercieca,, +13:u01:Routing",, +15:u05:"Asymmetric, +12:u06:(LLNs)",, +28:u11:[i-d.ietf-roll-aodv-rpl], +16:u12:anamalamudi,, +8:u13:liu,, +7:u22:Ana, +8:u23:Anam, +9:uI2:,"---, +12:u00:(AODVv2), +28:u02:[I-D.ietf-roll-aodv-rpl], +16:u03:Anamalamudi,, +8:u04:Liu,, +13:u00:Routing",, +15:u04:"Asymmetric, +12:u05:(LLNs)",, +28:u10:[i-d.ietf-roll-aodv-rpl], +16:u11:anamalamudi,, +8:u12:liu,, +8:u23:Liu,, +9:uI1:,"---, +28:u01:[I-D.ietf-roll-aodv-rpl], +16:u02:Anamalamudi,, +8:u03:Liu,, +15:u03:"Asymmetric, +12:u04:(LLNs)",, +7:u08:63], +16:u10:anamalamudi,, +8:u11:liu,, +9:uI0:,"---, +28:u00:[I-D.ietf-roll-aodv-rpl], +16:u01:Anamalamudi,, +8:u02:Liu,, +15:u02:"Asymmetric, +12:u03:(LLNs)",, +7:u07:63], +8:u10:liu,, +16:u00:Anamalamudi,, +8:u01:Liu,, +15:u01:"Asymmetric, +12:u02:(LLNs)",, +7:u06:63], +8:u00:Liu,, +34:u08:[I-D.ietf-roll-dao-projection], +15:u00:"Asymmetric, +12:u01:(LLNs)",, +7:u05:63], +12:u00:(LLNs)",, +7:u04:63], +34:u07:[I-D.ietf-roll-dao-projection], +9:u08:"Root, +7:u03:63], +34:u06:[I-D.ietf-roll-dao-projection], +21:u08:dao-projection-06, +7:u02:63], +13:u08:initiated, +34:u14:[i-d.ietf-roll-dao-projection], +34:u05:[I-D.ietf-roll-dao-projection], +9:u07:"Root, +48:u08:[I-D.ietf-roll-rpl-industrial-applicability], +7:u01:63], +13:u07:initiated, +34:u13:[i-d.ietf-roll-dao-projection], +34:u04:[I-D.ietf-roll-dao-projection], +9:u06:"Root, +21:u07:dao-projection-06, +12:u08:Phinney,, +7:u00:63], +13:u06:initiated, +34:u12:[i-d.ietf-roll-dao-projection], +9:u14:"root, +34:u03:[I-D.ietf-roll-dao-projection], +9:u05:"Root, +21:u06:dao-projection-06, +48:u07:[I-D.ietf-roll-rpl-industrial-applicability], +17:u08:applicability, +13:u05:initiated, +34:u11:[i-d.ietf-roll-dao-projection], +9:u13:"root, +21:u14:dao-projection-06, +10:uI2:"",---, +34:u02:[I-D.ietf-roll-dao-projection], +9:u04:"Root, +21:u05:dao-projection-06, +48:u06:[I-D.ietf-roll-rpl-industrial-applicability], +12:u07:Phinney,, +35:u08:rpl-industrial-applicability-02, +13:u04:initiated, +34:u10:[i-d.ietf-roll-dao-projection], +9:u12:"root, +21:u13:dao-projection-06, +48:u14:[i-d.ietf-roll-rpl-industrial-applicability], +8:u23:"Roo, +10:uI1:"",---, +34:u01:[I-D.ietf-roll-dao-projection], +9:u03:"Root, +21:u04:dao-projection-06, +48:u05:[I-D.ietf-roll-rpl-industrial-applicability], +12:u06:Phinney,, +17:u07:applicability, +13:u03:initiated, +9:u11:"root, +21:u12:dao-projection-06, +48:u13:[i-d.ietf-roll-rpl-industrial-applicability], +12:u14:phinney,, +6:u21:da, +7:u22:dao, +8:u23:dao-, +10:uI0:"",---, +34:u00:[I-D.ietf-roll-dao-projection], +9:u02:"Root, +21:u03:dao-projection-06, +48:u04:[I-D.ietf-roll-rpl-industrial-applicability], +12:u05:Phinney,, +17:u06:applicability, +35:u07:rpl-industrial-applicability-02, +28:u08:[I-D.rahul-roll-mop-ext], +13:u02:initiated, +9:u08:2013., +9:u10:"root, +21:u11:dao-projection-06, +48:u12:[i-d.ietf-roll-rpl-industrial-applicability], +12:u13:phinney,, +17:u14:applicability, +9:u01:"Root, +21:u02:dao-projection-06, +48:u03:[I-D.ietf-roll-rpl-industrial-applicability], +12:u04:Phinney,, +17:u05:applicability, +35:u06:rpl-industrial-applicability-02, +11:u08:Jadhav,, +13:u01:initiated, +9:u07:2013., +21:u10:dao-projection-06, +48:u11:[i-d.ietf-roll-rpl-industrial-applicability], +12:u12:phinney,, +17:u13:applicability, +35:u14:rpl-industrial-applicability-02, +8:u23:Phin, +9:uI2:",---, +9:u00:"Root, +21:u01:dao-projection-06, +48:u02:[I-D.ietf-roll-rpl-industrial-applicability], +12:u03:Phinney,, +17:u04:applicability, +35:u05:rpl-industrial-applicability-02, +28:u07:[I-D.rahul-roll-mop-ext], +15:u08:extension",, +13:u00:initiated, +9:u06:2013., +6:u08:R., +48:u10:[i-d.ietf-roll-rpl-industrial-applicability], +12:u11:phinney,, +17:u12:applicability, +35:u13:rpl-industrial-applicability-02, +9:uI1:",---, +21:u00:dao-projection-06, +48:u01:[I-D.ietf-roll-rpl-industrial-applicability], +12:u02:Phinney,, +17:u03:applicability, +35:u04:rpl-industrial-applicability-02, +28:u06:[I-D.rahul-roll-mop-ext], +11:u07:Jadhav,, +9:u05:2013., +6:u07:R., +31:u08:draft-rahul-roll-mop-ext-01, +12:u10:phinney,, +17:u11:applicability, +35:u12:rpl-industrial-applicability-02, +28:u14:[i-d.rahul-roll-mop-ext], +6:u21:rp, +7:u22:rpl, +8:u23:rpl-, +9:uI0:",---, +48:u00:[I-D.ietf-roll-rpl-industrial-applicability], +12:u01:Phinney,, +17:u02:applicability, +35:u03:rpl-industrial-applicability-02, +28:u05:[I-D.rahul-roll-mop-ext], +11:u06:Jadhav,, +15:u07:extension",, +33:u08:[I-D.selander-ace-cose-ecdhe], +9:u04:2013., +6:u06:R., +31:u07:draft-rahul-roll-mop-ext-01, +17:u10:applicability, +35:u11:rpl-industrial-applicability-02, +28:u13:[i-d.rahul-roll-mop-ext], +11:u14:jadhav,, +12:u00:Phinney,, +17:u01:applicability, +35:u02:rpl-industrial-applicability-02, +28:u04:[I-D.rahul-roll-mop-ext], +11:u05:Jadhav,, +15:u06:extension",, +9:u03:2013., +6:u05:R., +31:u06:draft-rahul-roll-mop-ext-01, +35:u10:rpl-industrial-applicability-02, +28:u12:[i-d.rahul-roll-mop-ext], +11:u13:jadhav,, +15:u14:extension",, +17:u00:applicability, +35:u01:rpl-industrial-applicability-02, +28:u03:[I-D.rahul-roll-mop-ext], +11:u04:Jadhav,, +15:u05:extension",, +33:u07:[I-D.selander-ace-cose-ecdhe], +18:u08:Diffie-Hellman, +9:u02:2013., +6:u04:R., +31:u05:draft-rahul-roll-mop-ext-01, +28:u11:[i-d.rahul-roll-mop-ext], +11:u12:jadhav,, +15:u13:extension",, +7:u22:Jad, +8:u23:Jadh, +35:u00:rpl-industrial-applicability-02, +28:u02:[I-D.rahul-roll-mop-ext], +11:u03:Jadhav,, +15:u04:extension",, +33:u06:[I-D.selander-ace-cose-ecdhe], +17:u08:cose-ecdhe-13, +9:u01:2013., +6:u03:R., +31:u04:draft-rahul-roll-mop-ext-01, +8:u08:Over, +28:u10:[i-d.rahul-roll-mop-ext], +11:u11:jadhav,, +15:u12:extension",, +33:u14:[i-d.selander-ace-cose-ecdhe], +28:u01:[I-D.rahul-roll-mop-ext], +11:u02:Jadhav,, +15:u03:extension",, +33:u05:[I-D.selander-ace-cose-ecdhe], +18:u07:Diffie-Hellman, +35:u08:[I-D.thubert-6lo-bier-dispatch], +9:u00:2013., +6:u02:R., +31:u03:draft-rahul-roll-mop-ext-01, +8:u07:Over, +11:u10:jadhav,, +15:u11:extension",, +33:u13:[i-d.selander-ace-cose-ecdhe], +28:u00:[I-D.rahul-roll-mop-ext], +11:u01:Jadhav,, +15:u02:extension",, +33:u04:[I-D.selander-ace-cose-ecdhe], +18:u06:Diffie-Hellman, +17:u07:cose-ecdhe-13, +6:u01:R., +31:u02:draft-rahul-roll-mop-ext-01, +8:u06:Over, +15:u10:extension",, +33:u12:[i-d.selander-ace-cose-ecdhe], +18:u14:diffie-hellman, +11:u00:Jadhav,, +15:u01:extension",, +33:u03:[I-D.selander-ace-cose-ecdhe], +18:u05:Diffie-Hellman, +17:u06:cose-ecdhe-13, +35:u07:[I-D.thubert-6lo-bier-dispatch], +9:u08:6loRH, +6:u00:R., +31:u01:draft-rahul-roll-mop-ext-01, +8:u05:Over, +33:u11:[i-d.selander-ace-cose-ecdhe], +18:u13:diffie-hellman, +17:u14:cose-ecdhe-13, +12:uI2:-()",---, +15:u00:extension",, +33:u02:[I-D.selander-ace-cose-ecdhe], +18:u04:Diffie-Hellman, +17:u05:cose-ecdhe-13, +35:u06:[I-D.thubert-6lo-bier-dispatch], +31:u00:draft-rahul-roll-mop-ext-01, +8:u04:Over, +33:u10:[i-d.selander-ace-cose-ecdhe], +18:u12:diffie-hellman, +17:u13:cose-ecdhe-13, +35:u14:[i-d.thubert-6lo-bier-dispatch], +7:u22:Dif, +8:u23:Diff, +12:uI1:-()",---, +33:u01:[I-D.selander-ace-cose-ecdhe], +18:u03:Diffie-Hellman, +17:u04:cose-ecdhe-13, +35:u05:[I-D.thubert-6lo-bier-dispatch], +9:u07:6loRH, +8:u03:Over, +18:u11:diffie-hellman, +17:u12:cose-ecdhe-13, +35:u13:[i-d.thubert-6lo-bier-dispatch], +7:u22:cos, +8:u23:cose, +12:uI0:-()",---, +33:u00:[I-D.selander-ace-cose-ecdhe], +18:u02:Diffie-Hellman, +17:u03:cose-ecdhe-13, +35:u04:[I-D.thubert-6lo-bier-dispatch], +9:u06:6loRH, +8:u02:Over, +18:u10:diffie-hellman, +17:u11:cose-ecdhe-13, +35:u12:[i-d.thubert-6lo-bier-dispatch], +16:uI2:,.,,.,,.,.,", +18:u01:Diffie-Hellman, +17:u02:cose-ecdhe-13, +35:u03:[I-D.thubert-6lo-bier-dispatch], +9:u05:6loRH, +11:u08:Unicast, +8:u01:Over, +6:u08:P., +17:u10:cose-ecdhe-13, +35:u11:[i-d.thubert-6lo-bier-dispatch], +16:uI1:,.,,.,,.,.,", +18:u00:Diffie-Hellman, +17:u01:cose-ecdhe-13, +35:u02:[I-D.thubert-6lo-bier-dispatch], +9:u04:6loRH, +8:u00:Over, +6:u07:P., +12:u08:Lookup",, +35:u10:[i-d.thubert-6lo-bier-dispatch], +6:u21:6l, +7:u22:6lo, +8:u23:6loR, +16:uI0:,.,,.,,.,.,", +17:u00:cose-ecdhe-13, +35:u01:[I-D.thubert-6lo-bier-dispatch], +9:u03:6loRH, +11:u07:Unicast, +46:u08:[I-D.thubert-bier-replication-elimination], +12:u07:Lookup",, +35:u00:[I-D.thubert-6lo-bier-dispatch], +9:u02:6loRH, +11:u06:Unicast, +12:u06:Lookup",, +11:u14:unicast, +10:uI2:,..-,", +9:u01:6loRH, +11:u05:Unicast, +46:u07:[I-D.thubert-bier-replication-elimination], +6:u08:TE, +12:u05:Lookup",, +11:u13:unicast, +10:uI1:,..-,", +9:u00:6loRH, +11:u04:Unicast, +46:u06:[I-D.thubert-bier-replication-elimination], +12:u04:Lookup",, +14:u08:extensions, +11:u12:unicast, +46:u14:[i-d.thubert-bier-replication-elimination], +7:u22:Uni, +8:u23:Unic, +10:uI0:,..-,", +11:u03:Unicast, +46:u05:[I-D.thubert-bier-replication-elimination], +6:u07:TE, +18:u08:elimination-03, +12:u03:Lookup",, +14:u07:extensions, +10:u08:(PREF), +11:u11:unicast, +46:u13:[i-d.thubert-bier-replication-elimination], +11:u02:Unicast, +46:u04:[I-D.thubert-bier-replication-elimination], +6:u06:TE, +34:u08:[I-D.thubert-raw-technologies], +12:u02:Lookup",, +14:u06:extensions, +10:u07:(PREF), +11:u10:unicast, +46:u12:[i-d.thubert-bier-replication-elimination], +6:u14:te, +17:uI2:,.,,.,,.,.,"-, +11:u01:Unicast, +46:u03:[I-D.thubert-bier-replication-elimination], +6:u05:TE, +18:u07:elimination-03, +12:u01:Lookup",, +14:u05:extensions, +10:u06:(PREF), +46:u11:[i-d.thubert-bier-replication-elimination], +6:u13:te, +12:u14:function, +17:uI1:,.,,.,,.,.,"-, +11:u00:Unicast, +46:u02:[I-D.thubert-bier-replication-elimination], +6:u04:TE, +18:u06:elimination-03, +34:u07:[I-D.thubert-raw-technologies], +12:u08:Schmitt,, +12:u00:Lookup",, +14:u04:extensions, +10:u05:(PREF), +46:u10:[i-d.thubert-bier-replication-elimination], +6:u12:te, +12:u13:function, +18:u14:elimination-03, +6:u21:TE, +6:u22:TE, +6:u23:TE, +17:uI0:,.,,.,,.,.,"-, +46:u01:[I-D.thubert-bier-replication-elimination], +6:u03:TE, +18:u05:elimination-03, +34:u06:[I-D.thubert-raw-technologies], +37:u08:draft-thubert-raw-technologies-03, +14:u03:extensions, +10:u04:(PREF), +13:u08:"Reliable, +6:u11:te, +12:u12:function, +18:u13:elimination-03, +34:u14:[i-d.thubert-raw-technologies], +46:u00:[I-D.thubert-bier-replication-elimination], +6:u02:TE, +18:u04:elimination-03, +34:u05:[I-D.thubert-raw-technologies], +12:u07:Schmitt,, +14:u02:extensions, +10:u03:(PREF), +13:u07:"Reliable, +6:u10:te, +12:u11:function, +18:u12:elimination-03, +34:u13:[i-d.thubert-raw-technologies], +6:u01:TE, +18:u03:elimination-03, +34:u04:[I-D.thubert-raw-technologies], +12:u06:Schmitt,, +37:u07:draft-thubert-raw-technologies-03, +27:u08:[I-D.thubert-roll-bier], +14:u01:extensions, +10:u02:(PREF), +13:u06:"Reliable, +12:u10:function, +18:u11:elimination-03, +34:u12:[i-d.thubert-raw-technologies], +12:u14:schmitt,, +6:u00:TE, +18:u02:elimination-03, +34:u03:[I-D.thubert-raw-technologies], +12:u05:Schmitt,, +37:u06:draft-thubert-raw-technologies-03, +14:u00:extensions, +10:u01:(PREF), +13:u05:"Reliable, +18:u10:elimination-03, +34:u11:[i-d.thubert-raw-technologies], +12:u13:schmitt,, +37:u14:draft-thubert-raw-technologies-03, +18:u01:elimination-03, +34:u02:[I-D.thubert-raw-technologies], +12:u04:Schmitt,, +37:u05:draft-thubert-raw-technologies-03, +27:u07:[I-D.thubert-roll-bier], +10:u00:(PREF), +13:u04:"Reliable, +34:u10:[i-d.thubert-raw-technologies], +12:u12:schmitt,, +37:u13:draft-thubert-raw-technologies-03, +8:u23:Schm, +18:u00:elimination-03, +34:u01:[I-D.thubert-raw-technologies], +12:u03:Schmitt,, +37:u04:draft-thubert-raw-technologies-03, +27:u06:[I-D.thubert-roll-bier], +13:u03:"Reliable, +12:u11:schmitt,, +37:u12:draft-thubert-raw-technologies-03, +27:u14:[i-d.thubert-roll-bier], +34:u00:[I-D.thubert-raw-technologies], +12:u02:Schmitt,, +37:u03:draft-thubert-raw-technologies-03, +27:u05:[I-D.thubert-roll-bier], +13:u02:"Reliable, +12:u10:schmitt,, +37:u11:draft-thubert-raw-technologies-03, +27:u13:[i-d.thubert-roll-bier], +12:u01:Schmitt,, +37:u02:draft-thubert-raw-technologies-03, +27:u04:[I-D.thubert-roll-bier], +13:u01:"Reliable, +37:u10:draft-thubert-raw-technologies-03, +27:u12:[i-d.thubert-roll-bier], +16:uI2:,.,"-",----(, +12:u00:Schmitt,, +37:u01:draft-thubert-raw-technologies-03, +27:u03:[I-D.thubert-roll-bier], +13:u00:"Reliable, +7:u08:64], +27:u11:[i-d.thubert-roll-bier], +16:uI1:,.,"-",----(, +37:u00:draft-thubert-raw-technologies-03, +27:u02:[I-D.thubert-roll-bier], +7:u07:64], +27:u10:[i-d.thubert-roll-bier], +16:uI0:,.,"-",----(, +27:u01:[I-D.thubert-roll-bier], +7:u06:64], +27:u00:[I-D.thubert-roll-bier], +7:u05:64], +11:u08:Tiloca,, +7:u04:64], +7:u03:64], +11:u07:Tiloca,, +38:u08:tiloca-6tisch-robust-scheduling-02, +7:u02:64], +11:u06:Tiloca,, +7:u01:64], +11:u14:tiloca,, +11:u05:Tiloca,, +38:u07:tiloca-6tisch-robust-scheduling-02, +14:u08:[IEC62439], +7:u00:64], +11:u13:tiloca,, +11:u04:Tiloca,, +38:u06:tiloca-6tisch-robust-scheduling-02, +8:u08:IEC,, +11:u12:tiloca,, +38:u14:tiloca-6tisch-robust-scheduling-02, +7:u22:Til, +8:u23:Tilo, +11:u03:Tiloca,, +38:u05:tiloca-6tisch-robust-scheduling-02, +14:u07:[IEC62439], +16:u08:availability, +15:u08:"Industrial, +11:u11:tiloca,, +38:u13:tiloca-6tisch-robust-scheduling-02, +8:u14:june, +11:u02:Tiloca,, +38:u04:tiloca-6tisch-robust-scheduling-02, +14:u06:[IEC62439], +8:u07:IEC,, +15:u07:"Industrial, +14:u08:automation, +11:u10:tiloca,, +38:u12:tiloca-6tisch-robust-scheduling-02, +8:u13:june, +14:u14:[iec62439], +8:u23:tilo, +11:u01:Tiloca,, +38:u03:tiloca-6tisch-robust-scheduling-02, +14:u05:[IEC62439], +8:u06:IEC,, +16:u07:availability, +15:u06:"Industrial, +14:u07:automation, +38:u11:tiloca-6tisch-robust-scheduling-02, +8:u12:june, +14:u13:[iec62439], +8:u14:iec,, +8:u23:June, +11:u00:Tiloca,, +38:u02:tiloca-6tisch-robust-scheduling-02, +14:u04:[IEC62439], +8:u05:IEC,, +16:u06:availability, +47:u08:<https://webstore.iec.ch/publication/7018>., +15:u05:"Industrial, +14:u06:automation, +38:u10:tiloca-6tisch-robust-scheduling-02, +8:u11:june, +14:u12:[iec62439], +8:u13:iec,, +16:u14:availability, +8:u23:[IEC, +38:u01:tiloca-6tisch-robust-scheduling-02, +14:u03:[IEC62439], +8:u04:IEC,, +16:u05:availability, +15:u04:"Industrial, +14:u05:automation, +8:u10:june, +14:u11:[iec62439], +8:u12:iec,, +16:u13:availability, +7:u22:IEC, +8:u23:IEC,, +38:u00:tiloca-6tisch-robust-scheduling-02, +14:u02:[IEC62439], +8:u03:IEC,, +16:u04:availability, +47:u07:<https://webstore.iec.ch/publication/7018>., +15:u03:"Industrial, +14:u04:automation, +14:u10:[iec62439], +8:u11:iec,, +16:u12:availability, +14:u01:[IEC62439], +8:u02:IEC,, +16:u03:availability, +47:u06:<https://webstore.iec.ch/publication/7018>., +15:u02:"Industrial, +14:u03:automation, +8:u10:iec,, +16:u11:availability, +47:u14:<https://webstore.iec.ch/publication/7018>., +11:uI2:()--",,, +14:u00:[IEC62439], +8:u01:IEC,, +16:u02:availability, +47:u05:<https://webstore.iec.ch/publication/7018>., +15:u01:"Industrial, +14:u02:automation, +9:u08:Part., +16:u10:availability, +47:u13:<https://webstore.iec.ch/publication/7018>., +11:uI1:()--",,, +12:uI2:://..//., +8:u00:IEC,, +16:u01:availability, +47:u04:<https://webstore.iec.ch/publication/7018>., +15:u00:"Industrial, +14:u01:automation, +9:u07:Part., +12:u08:Physical, +47:u12:<https://webstore.iec.ch/publication/7018>., +11:uI0:()--",,, +12:uI1:://..//., +16:u00:availability, +47:u03:<https://webstore.iec.ch/publication/7018>., +17:u08:[IEEE802154e], +14:u00:automation, +9:u06:Part., +12:u07:Physical, +47:u11:<https://webstore.iec.ch/publication/7018>., +13:u14:802.15.4,, +12:uI0:://..//., +7:uI2:,"., +47:u02:<https://webstore.iec.ch/publication/7018>., +9:u05:Part., +12:u06:Physical, +47:u10:<https://webstore.iec.ch/publication/7018>., +13:u13:802.15.4,, +7:uI1:,"., +12:uI2:..,..:(), +47:u01:<https://webstore.iec.ch/publication/7018>., +17:u07:[IEEE802154e], +9:u04:Part., +12:u05:Physical, +13:u12:802.15.4,, +7:uI0:,"., +12:uI1:..,..:(), +47:u00:<https://webstore.iec.ch/publication/7018>., +17:u06:[IEEE802154e], +9:u08:15.4:, +9:u03:Part., +12:u04:Physical, +13:u11:802.15.4,, +17:u14:[ieee802154e], +12:uI0:..,..:(), +17:u05:[IEEE802154e], +9:u02:Part., +12:u03:Physical, +13:u10:802.15.4,, +17:u13:[ieee802154e], +17:u04:[IEEE802154e], +9:u07:15.4:, +8:u08:Area, +9:u01:Part., +12:u02:Physical, +9:u08:(PHY), +17:u12:[ieee802154e], +17:u03:[IEEE802154e], +9:u06:15.4:, +14:u08:802.15.4e,, +9:u00:Part., +12:u01:Physical, +9:u07:(PHY), +17:u11:[ieee802154e], +9:u14:15.4:, +10:uI2:,...,., +17:u02:[IEEE802154e], +9:u05:15.4:, +8:u07:Area, +12:u00:Physical, +9:u06:(PHY), +17:u10:[ieee802154e], +9:u13:15.4:, +10:uI1:,...,., +8:uI2:.:(), +17:u01:[IEEE802154e], +9:u04:15.4:, +8:u06:Area, +14:u07:802.15.4e,, +9:u08:2012., +9:u05:(PHY), +14:u08:(LR-WPANs), +9:u12:15.4:, +8:u14:area, +8:u23:15.4, +10:uI0:,...,., +8:uI1:.:(), +17:u00:[IEEE802154e], +9:u03:15.4:, +8:u05:Area, +14:u06:802.15.4e,, +12:u08:[ISA100], +9:u04:(PHY), +14:u07:(LR-WPANs), +9:u11:15.4:, +8:u13:area, +14:u14:802.15.4e,, +8:uI0:.:(), +9:u02:15.4:, +8:u04:Area, +14:u05:802.15.4e,, +9:u07:2012., +13:u08:ISA/ANSI,, +9:u03:(PHY), +14:u06:(LR-WPANs), +9:u10:15.4:, +8:u12:area, +14:u13:802.15.4e,, +7:u22:Are, +8:u23:Area, +11:uI2:..,..:-, +9:u01:15.4:, +8:u03:Area, +14:u04:802.15.4e,, +9:u06:2012., +12:u07:[ISA100], +34:u08:<https://www.isa.org/isa100/>., +9:u02:(PHY), +14:u05:(LR-WPANs), +12:u08:"ISA100,, +8:u11:area, +14:u12:802.15.4e,, +9:u14:2012., +11:uI1:..,..:-, +10:uI2:(-):",, +9:u00:15.4:, +8:u02:Area, +14:u03:802.15.4e,, +9:u05:2012., +12:u06:[ISA100], +13:u07:ISA/ANSI,, +9:u01:(PHY), +14:u04:(LR-WPANs), +12:u07:"ISA100,, +8:u10:area, +14:u11:802.15.4e,, +9:u13:2012., +12:u14:[isa100], +11:uI0:..,..:-, +10:uI1:(-):",, +8:u01:Area, +14:u02:802.15.4e,, +9:u04:2012., +12:u05:[ISA100], +13:u06:ISA/ANSI,, +34:u07:<https://www.isa.org/isa100/>., +9:u00:(PHY), +14:u03:(LR-WPANs), +12:u06:"ISA100,, +14:u10:802.15.4e,, +9:u12:2012., +12:u13:[isa100], +13:u14:isa/ansi,, +8:u23:2012, +10:uI0:(-):",, +8:u00:Area, +14:u01:802.15.4e,, +9:u03:2012., +12:u04:[ISA100], +13:u05:ISA/ANSI,, +34:u06:<https://www.isa.org/isa100/>., +11:u08:Process, +14:u02:(LR-WPANs), +12:u05:"ISA100,, +13:u08:"Wireless, +9:u11:2012., +12:u12:[isa100], +13:u13:isa/ansi,, +34:u14:<https://www.isa.org/isa100/>., +10:uI2:/,",",, +14:u00:802.15.4e,, +9:u02:2012., +12:u03:[ISA100], +13:u04:ISA/ANSI,, +34:u05:<https://www.isa.org/isa100/>., +8:u08:-IEC, +14:u01:(LR-WPANs), +12:u04:"ISA100,, +13:u07:"Wireless, +9:u10:2012., +12:u11:[isa100], +13:u12:isa/ansi,, +34:u13:<https://www.isa.org/isa100/>., +7:u22:ISA, +8:u23:ISA/, +10:uI1:/,",",, +9:u01:2012., +12:u02:[ISA100], +13:u03:ISA/ANSI,, +34:u04:<https://www.isa.org/isa100/>., +11:u07:Process, +39:u08:SP100WirelessSystemsforAutomation>., +14:u00:(LR-WPANs), +12:u03:"ISA100,, +13:u06:"Wireless, +11:u08:62734",, +12:u10:[isa100], +13:u11:isa/ansi,, +34:u12:<https://www.isa.org/isa100/>., +10:uI0:/,",",, +7:uI2:[.], +9:u00:2012., +12:u01:[ISA100], +13:u02:ISA/ANSI,, +34:u03:<https://www.isa.org/isa100/>., +11:u06:Process, +8:u07:-IEC, +9:u08:[PCE], +12:u02:"ISA100,, +13:u05:"Wireless, +11:u07:62734",, +13:u10:isa/ansi,, +34:u11:<https://www.isa.org/isa100/>., +7:uI1:[.], +8:uI2:/,":, +12:u00:[ISA100], +13:u01:ISA/ANSI,, +34:u02:<https://www.isa.org/isa100/>., +11:u05:Process, +8:u06:-IEC, +39:u07:SP100WirelessSystemsforAutomation>., +12:u01:"ISA100,, +13:u04:"Wireless, +11:u06:62734",, +34:u10:<https://www.isa.org/isa100/>., +8:u14:-iec, +7:uI0:[.], +8:uI1:/,":, +13:u00:ISA/ANSI,, +34:u01:<https://www.isa.org/isa100/>., +11:u04:Process, +8:u05:-IEC, +39:u06:SP100WirelessSystemsforAutomation>., +9:u07:[PCE], +57:u08:<https://dataTracker.ietf.org/doc/charter-ietf-pce/>., +12:u00:"ISA100,, +13:u03:"Wireless, +11:u05:62734",, +9:u08:"Path, +8:u13:-iec, +39:u14:sp100wirelesssystemsforautomation>., +8:uI0:/,":, +15:uI2:-",,://..//, +34:u00:<https://www.isa.org/isa100/>., +11:u03:Process, +8:u04:-IEC, +39:u05:SP100WirelessSystemsforAutomation>., +9:u06:[PCE], +13:u08:[RFC2474], +13:u02:"Wireless, +11:u04:62734",, +9:u07:"Path, +8:u12:-iec, +39:u13:sp100wirelesssystemsforautomation>., +9:u14:[pce], +7:u22:-IE, +8:u23:-IEC, +15:uI1:-",,://..//, +11:u02:Process, +8:u03:-IEC, +39:u04:SP100WirelessSystemsforAutomation>., +9:u05:[PCE], +57:u07:<https://dataTracker.ietf.org/doc/charter-ietf-pce/>., +15:u08:"Definition, +13:u01:"Wireless, +11:u03:62734",, +9:u06:"Path, +12:u08:Nichols,, +8:u11:-iec, +39:u12:sp100wirelesssystemsforautomation>., +9:u13:[pce], +6:u21:SP, +7:u22:SP1, +8:u23:SP10, +15:uI0:-",,://..//, +11:u01:Process, +8:u02:-IEC, +39:u03:SP100WirelessSystemsforAutomation>., +9:u04:[PCE], +57:u06:<https://dataTracker.ietf.org/doc/charter-ietf-pce/>., +13:u07:[RFC2474], +10:u08:Field), +13:u00:"Wireless, +11:u02:62734",, +9:u05:"Path, +12:u07:Nichols,, +8:u10:-iec, +39:u11:sp100wirelesssystemsforautomation>., +9:u12:[pce], +57:u14:<https://datatracker.ietf.org/doc/charter-ietf-pce/>., +11:u00:Process, +8:u01:-IEC, +39:u02:SP100WirelessSystemsforAutomation>., +9:u03:[PCE], +57:u05:<https://dataTracker.ietf.org/doc/charter-ietf-pce/>., +13:u06:[RFC2474], +15:u07:"Definition, +11:u01:62734",, +9:u04:"Path, +12:u06:Nichols,, +39:u10:sp100wirelesssystemsforautomation>., +9:u11:[pce], +57:u13:<https://datatracker.ietf.org/doc/charter-ietf-pce/>., +13:u14:[rfc2474], +8:u00:-IEC, +39:u01:SP100WirelessSystemsforAutomation>., +9:u02:[PCE], +57:u04:<https://dataTracker.ietf.org/doc/charter-ietf-pce/>., +13:u05:[RFC2474], +15:u06:"Definition, +10:u07:Field), +46:u08:<https://www.rfc-editor.org/info/rfc2474>., +11:u00:62734",, +9:u03:"Path, +12:u05:Nichols,, +21:u08:10.17487/RFC2474,, +9:u10:[pce], +57:u12:<https://datatracker.ietf.org/doc/charter-ietf-pce/>., +13:u13:[rfc2474], +15:u14:"definition, +39:u00:SP100WirelessSystemsforAutomation>., +9:u01:[PCE], +57:u03:<https://dataTracker.ietf.org/doc/charter-ietf-pce/>., +13:u04:[RFC2474], +15:u05:"Definition, +10:u06:Field), +9:u02:"Path, +12:u04:Nichols,, +21:u07:10.17487/RFC2474,, +57:u11:<https://datatracker.ietf.org/doc/charter-ietf-pce/>., +13:u12:[rfc2474], +15:u13:"definition, +10:u14:field), +6:uI2:"(, +9:u00:[PCE], +57:u02:<https://dataTracker.ietf.org/doc/charter-ietf-pce/>., +13:u03:[RFC2474], +15:u04:"Definition, +10:u05:Field), +46:u07:<https://www.rfc-editor.org/info/rfc2474>., +9:u01:"Path, +12:u03:Nichols,, +21:u06:10.17487/RFC2474,, +57:u10:<https://datatracker.ietf.org/doc/charter-ietf-pce/>., +13:u11:[rfc2474], +15:u12:"definition, +10:u13:field), +8:u23:"Def, +6:uI1:"(, +8:uI2:)",,, +57:u01:<https://dataTracker.ietf.org/doc/charter-ietf-pce/>., +13:u02:[RFC2474], +15:u03:"Definition, +10:u04:Field), +46:u06:<https://www.rfc-editor.org/info/rfc2474>., +9:u00:"Path, +12:u02:Nichols,, +21:u05:10.17487/RFC2474,, +13:u10:[rfc2474], +15:u11:"definition, +10:u12:field), +46:u14:<https://www.rfc-editor.org/info/rfc2474>., +7:u22:Fie, +8:u23:Fiel, +6:uI0:"(, +8:uI1:)",,, +57:u00:<https://dataTracker.ietf.org/doc/charter-ietf-pce/>., +13:u01:[RFC2474], +15:u02:"Definition, +10:u03:Field), +46:u05:<https://www.rfc-editor.org/info/rfc2474>., +12:u01:Nichols,, +21:u04:10.17487/RFC2474,, +7:u08:65], +15:u10:"definition, +10:u11:field), +46:u13:<https://www.rfc-editor.org/info/rfc2474>., +8:uI0:)",,, +13:u00:[RFC2474], +15:u01:"Definition, +10:u02:Field), +46:u04:<https://www.rfc-editor.org/info/rfc2474>., +12:u00:Nichols,, +21:u03:10.17487/RFC2474,, +7:u07:65], +10:u10:field), +46:u12:<https://www.rfc-editor.org/info/rfc2474>., +15:u00:"Definition, +10:u01:Field), +46:u03:<https://www.rfc-editor.org/info/rfc2474>., +21:u02:10.17487/RFC2474,, +7:u06:65], +46:u11:<https://www.rfc-editor.org/info/rfc2474>., +10:u00:Field), +46:u02:<https://www.rfc-editor.org/info/rfc2474>., +13:u08:[RFC2545], +21:u01:10.17487/RFC2474,, +7:u05:65], +46:u10:<https://www.rfc-editor.org/info/rfc2474>., +46:u01:<https://www.rfc-editor.org/info/rfc2474>., +21:u00:10.17487/RFC2474,, +7:u04:65], +12:u08:Marques,, +46:u00:<https://www.rfc-editor.org/info/rfc2474>., +13:u07:[RFC2545], +7:u03:65], +12:u07:Marques,, +13:u06:[RFC2545], +46:u08:<https://www.rfc-editor.org/info/rfc2545>., +7:u02:65], +12:u06:Marques,, +21:u08:10.17487/RFC2545,, +13:u14:[rfc2545], +13:u05:[RFC2545], +7:u01:65], +12:u05:Marques,, +21:u07:10.17487/RFC2545,, +13:u13:[rfc2545], +14:u14:extensions, +13:u04:[RFC2545], +46:u07:<https://www.rfc-editor.org/info/rfc2545>., +7:u00:65], +12:u04:Marques,, +21:u06:10.17487/RFC2545,, +13:u12:[rfc2545], +14:u13:extensions, +13:u03:[RFC2545], +46:u06:<https://www.rfc-editor.org/info/rfc2545>., +12:u03:Marques,, +21:u05:10.17487/RFC2545,, +13:u11:[rfc2545], +14:u12:extensions, +46:u14:<https://www.rfc-editor.org/info/rfc2545>., +13:u02:[RFC2545], +46:u05:<https://www.rfc-editor.org/info/rfc2545>., +12:u02:Marques,, +21:u04:10.17487/RFC2545,, +13:u10:[rfc2545], +14:u11:extensions, +46:u13:<https://www.rfc-editor.org/info/rfc2545>., +13:u01:[RFC2545], +46:u04:<https://www.rfc-editor.org/info/rfc2545>., +12:u01:Marques,, +21:u03:10.17487/RFC2545,, +14:u10:extensions, +46:u12:<https://www.rfc-editor.org/info/rfc2545>., +13:u00:[RFC2545], +46:u03:<https://www.rfc-editor.org/info/rfc2545>., +12:u00:Marques,, +21:u02:10.17487/RFC2545,, +9:u08:Pras,, +46:u11:<https://www.rfc-editor.org/info/rfc2545>., +46:u02:<https://www.rfc-editor.org/info/rfc2545>., +21:u01:10.17487/RFC2545,, +9:u07:Pras,, +46:u10:<https://www.rfc-editor.org/info/rfc2545>., +46:u01:<https://www.rfc-editor.org/info/rfc2545>., +46:u08:<https://www.rfc-editor.org/info/rfc3444>., +21:u00:10.17487/RFC2545,, +9:u06:Pras,, +21:u08:10.17487/RFC3444,, +46:u00:<https://www.rfc-editor.org/info/rfc2545>., +13:u08:[RFC3963], +9:u05:Pras,, +21:u07:10.17487/RFC3444,, +46:u07:<https://www.rfc-editor.org/info/rfc3444>., +9:u04:Pras,, +21:u06:10.17487/RFC3444,, +16:u08:Devarapalli,, +46:u06:<https://www.rfc-editor.org/info/rfc3444>., +13:u07:[RFC3963], +9:u03:Pras,, +21:u05:10.17487/RFC3444,, +16:u07:Devarapalli,, +12:u08:"Network, +46:u14:<https://www.rfc-editor.org/info/rfc3444>., +46:u05:<https://www.rfc-editor.org/info/rfc3444>., +13:u06:[RFC3963], +46:u08:<https://www.rfc-editor.org/info/rfc3963>., +9:u02:Pras,, +21:u04:10.17487/RFC3444,, +16:u06:Devarapalli,, +12:u07:"Network, +9:u08:3963,, +46:u13:<https://www.rfc-editor.org/info/rfc3444>., +13:u14:[rfc3963], +46:u04:<https://www.rfc-editor.org/info/rfc3444>., +13:u05:[RFC3963], +13:u08:[RFC4080], +9:u01:Pras,, +21:u03:10.17487/RFC3444,, +16:u05:Devarapalli,, +12:u06:"Network, +9:u07:3963,, +46:u12:<https://www.rfc-editor.org/info/rfc3444>., +13:u13:[rfc3963], +16:uI2:[],.,,.,,.,., +46:u03:<https://www.rfc-editor.org/info/rfc3444>., +13:u04:[RFC3963], +46:u07:<https://www.rfc-editor.org/info/rfc3963>., +10:u08:Bosch,, +9:u00:Pras,, +21:u02:10.17487/RFC3444,, +16:u04:Devarapalli,, +12:u05:"Network, +9:u06:3963,, +12:u08:Hancock,, +46:u11:<https://www.rfc-editor.org/info/rfc3444>., +13:u12:[rfc3963], +16:uI1:[],.,,.,,.,., +10:uI2:,"()",, +46:u02:<https://www.rfc-editor.org/info/rfc3444>., +13:u03:[RFC3963], +46:u06:<https://www.rfc-editor.org/info/rfc3963>., +13:u07:[RFC4080], +21:u01:10.17487/RFC3444,, +16:u03:Devarapalli,, +12:u04:"Network, +9:u05:3963,, +12:u07:Hancock,, +9:u08:"Next, +46:u10:<https://www.rfc-editor.org/info/rfc3444>., +13:u11:[rfc3963], +46:u14:<https://www.rfc-editor.org/info/rfc3963>., +16:uI0:[],.,,.,,.,., +10:uI1:,"()",, +46:u01:<https://www.rfc-editor.org/info/rfc3444>., +13:u02:[RFC3963], +46:u05:<https://www.rfc-editor.org/info/rfc3963>., +13:u06:[RFC4080], +10:u07:Bosch,, +46:u08:<https://www.rfc-editor.org/info/rfc4080>., +21:u00:10.17487/RFC3444,, +16:u02:Devarapalli,, +12:u03:"Network, +9:u04:3963,, +12:u06:Hancock,, +9:u07:"Next, +9:u08:4080,, +13:u10:[rfc3963], +46:u13:<https://www.rfc-editor.org/info/rfc3963>., +13:u14:[rfc4080], +10:uI0:,"()",, +46:u00:<https://www.rfc-editor.org/info/rfc3444>., +13:u01:[RFC3963], +46:u04:<https://www.rfc-editor.org/info/rfc3963>., +13:u05:[RFC4080], +10:u06:Bosch,, +13:u08:[RFC4291], +16:u01:Devarapalli,, +12:u02:"Network, +9:u03:3963,, +12:u05:Hancock,, +9:u06:"Next, +9:u07:4080,, +46:u12:<https://www.rfc-editor.org/info/rfc3963>., +13:u13:[rfc4080], +10:u14:bosch,, +13:u00:[RFC3963], +46:u03:<https://www.rfc-editor.org/info/rfc3963>., +13:u04:[RFC4080], +10:u05:Bosch,, +46:u07:<https://www.rfc-editor.org/info/rfc4080>., +16:u00:Devarapalli,, +12:u01:"Network, +9:u02:3963,, +12:u04:Hancock,, +9:u05:"Next, +9:u06:4080,, +11:u08:Hinden,, +46:u11:<https://www.rfc-editor.org/info/rfc3963>., +13:u12:[rfc4080], +10:u13:bosch,, +11:uI2:,"():",, +46:u02:<https://www.rfc-editor.org/info/rfc3963>., +13:u03:[RFC4080], +10:u04:Bosch,, +46:u06:<https://www.rfc-editor.org/info/rfc4080>., +13:u07:[RFC4291], +12:u00:"Network, +9:u01:3963,, +12:u03:Hancock,, +9:u04:"Next, +9:u05:4080,, +11:u07:Hinden,, +46:u10:<https://www.rfc-editor.org/info/rfc3963>., +13:u11:[rfc4080], +10:u12:bosch,, +46:u14:<https://www.rfc-editor.org/info/rfc4080>., +7:u22:Bos, +8:u23:Bosc, +11:uI1:,"():",, +46:u01:<https://www.rfc-editor.org/info/rfc3963>., +13:u02:[RFC4080], +10:u03:Bosch,, +46:u05:<https://www.rfc-editor.org/info/rfc4080>., +13:u06:[RFC4291], +13:u08:[RFC4903], +9:u00:3963,, +12:u02:Hancock,, +9:u03:"Next, +9:u04:4080,, +11:u06:Hinden,, +46:u08:<https://www.rfc-editor.org/info/rfc4291>., +13:u10:[rfc4080], +10:u11:bosch,, +46:u13:<https://www.rfc-editor.org/info/rfc4080>., +13:u14:[rfc4291], +11:uI0:,"():",, +46:u00:<https://www.rfc-editor.org/info/rfc3963>., +13:u01:[RFC4080], +10:u02:Bosch,, +46:u04:<https://www.rfc-editor.org/info/rfc4080>., +13:u05:[RFC4291], +12:u01:Hancock,, +9:u02:"Next, +9:u03:4080,, +11:u05:Hinden,, +46:u07:<https://www.rfc-editor.org/info/rfc4291>., +11:u08:Thaler,, +10:u10:bosch,, +46:u12:<https://www.rfc-editor.org/info/rfc4080>., +13:u13:[rfc4291], +18:u14:architecture",, +13:u00:[RFC4080], +10:u01:Bosch,, +46:u03:<https://www.rfc-editor.org/info/rfc4080>., +13:u04:[RFC4291], +13:u07:[RFC4903], +46:u08:<https://www.rfc-editor.org/info/rfc4903>., +12:u00:Hancock,, +9:u01:"Next, +9:u02:4080,, +11:u04:Hinden,, +46:u06:<https://www.rfc-editor.org/info/rfc4291>., +11:u07:Thaler,, +21:u08:10.17487/RFC4903,, +46:u11:<https://www.rfc-editor.org/info/rfc4080>., +13:u12:[rfc4291], +18:u13:architecture",, +10:u00:Bosch,, +46:u02:<https://www.rfc-editor.org/info/rfc4080>., +13:u03:[RFC4291], +13:u06:[RFC4903], +13:u08:[RFC4919], +9:u00:"Next, +9:u01:4080,, +11:u03:Hinden,, +46:u05:<https://www.rfc-editor.org/info/rfc4291>., +11:u06:Thaler,, +21:u07:10.17487/RFC4903,, +46:u10:<https://www.rfc-editor.org/info/rfc4080>., +13:u11:[rfc4291], +18:u12:architecture",, +13:u14:[rfc4903], +46:u01:<https://www.rfc-editor.org/info/rfc4080>., +13:u02:[RFC4291], +13:u05:[RFC4903], +46:u07:<https://www.rfc-editor.org/info/rfc4903>., +9:u00:4080,, +11:u02:Hinden,, +46:u04:<https://www.rfc-editor.org/info/rfc4291>., +11:u05:Thaler,, +21:u06:10.17487/RFC4903,, +16:u08:Kushalnagar,, +13:u10:[rfc4291], +18:u11:architecture",, +13:u13:[rfc4903], +46:u00:<https://www.rfc-editor.org/info/rfc4080>., +13:u01:[RFC4291], +13:u04:[RFC4903], +46:u06:<https://www.rfc-editor.org/info/rfc4903>., +13:u07:[RFC4919], +11:u01:Hinden,, +46:u03:<https://www.rfc-editor.org/info/rfc4291>., +11:u04:Thaler,, +21:u05:10.17487/RFC4903,, +16:u07:Kushalnagar,, +18:u10:architecture",, +13:u12:[rfc4903], +46:u14:<https://www.rfc-editor.org/info/rfc4903>., +13:u00:[RFC4291], +13:u03:[RFC4903], +46:u05:<https://www.rfc-editor.org/info/rfc4903>., +13:u06:[RFC4919], +11:u00:Hinden,, +46:u02:<https://www.rfc-editor.org/info/rfc4291>., +11:u03:Thaler,, +21:u04:10.17487/RFC4903,, +16:u06:Kushalnagar,, +13:u11:[rfc4903], +46:u13:<https://www.rfc-editor.org/info/rfc4903>., +13:u14:[rfc4919], +13:u02:[RFC4903], +46:u04:<https://www.rfc-editor.org/info/rfc4903>., +13:u05:[RFC4919], +46:u08:<https://www.rfc-editor.org/info/rfc4919>., +46:u01:<https://www.rfc-editor.org/info/rfc4291>., +11:u02:Thaler,, +21:u03:10.17487/RFC4903,, +16:u05:Kushalnagar,, +9:u08:4919,, +13:u10:[rfc4903], +46:u12:<https://www.rfc-editor.org/info/rfc4903>., +13:u13:[rfc4919], +13:u01:[RFC4903], +46:u03:<https://www.rfc-editor.org/info/rfc4903>., +13:u04:[RFC4919], +13:u08:[RFC5340], +46:u00:<https://www.rfc-editor.org/info/rfc4291>., +11:u01:Thaler,, +21:u02:10.17487/RFC4903,, +16:u04:Kushalnagar,, +9:u07:4919,, +46:u11:<https://www.rfc-editor.org/info/rfc4903>., +13:u12:[rfc4919], +13:u00:[RFC4903], +46:u02:<https://www.rfc-editor.org/info/rfc4903>., +13:u03:[RFC4919], +46:u07:<https://www.rfc-editor.org/info/rfc4919>., +11:u00:Thaler,, +21:u01:10.17487/RFC4903,, +16:u03:Kushalnagar,, +9:u06:4919,, +11:u08:Coltun,, +46:u10:<https://www.rfc-editor.org/info/rfc4903>., +13:u11:[rfc4919], +9:uI2:,,,",, +46:u01:<https://www.rfc-editor.org/info/rfc4903>., +13:u02:[RFC4919], +46:u06:<https://www.rfc-editor.org/info/rfc4919>., +13:u07:[RFC5340], +46:u08:<https://www.rfc-editor.org/info/rfc5340>., +21:u00:10.17487/RFC4903,, +16:u02:Kushalnagar,, +9:u05:4919,, +11:u07:Coltun,, +10:u08:IPv6",, +13:u10:[rfc4919], +46:u14:<https://www.rfc-editor.org/info/rfc4919>., +9:uI1:,,,",, +46:u00:<https://www.rfc-editor.org/info/rfc4903>., +13:u01:[RFC4919], +46:u05:<https://www.rfc-editor.org/info/rfc4919>., +13:u06:[RFC5340], +13:u08:[RFC5974], +16:u01:Kushalnagar,, +9:u04:4919,, +11:u06:Coltun,, +10:u07:IPv6",, +46:u13:<https://www.rfc-editor.org/info/rfc4919>., +13:u14:[rfc5340], +9:uI0:,,,",, +13:u00:[RFC4919], +46:u04:<https://www.rfc-editor.org/info/rfc4919>., +13:u05:[RFC5340], +46:u07:<https://www.rfc-editor.org/info/rfc5340>., +16:u00:Kushalnagar,, +9:u03:4919,, +11:u05:Coltun,, +10:u06:IPv6",, +11:u08:Manner,, +46:u12:<https://www.rfc-editor.org/info/rfc4919>., +13:u13:[rfc5340], +46:u03:<https://www.rfc-editor.org/info/rfc4919>., +13:u04:[RFC5340], +46:u06:<https://www.rfc-editor.org/info/rfc5340>., +13:u07:[RFC5974], +15:u08:Signaling",, +9:u02:4919,, +11:u04:Coltun,, +10:u05:IPv6",, +11:u07:Manner,, +46:u11:<https://www.rfc-editor.org/info/rfc4919>., +13:u12:[rfc5340], +46:u14:<https://www.rfc-editor.org/info/rfc5340>., +46:u02:<https://www.rfc-editor.org/info/rfc4919>., +13:u03:[RFC5340], +46:u05:<https://www.rfc-editor.org/info/rfc5340>., +13:u06:[RFC5974], +46:u08:<https://www.rfc-editor.org/info/rfc5974>., +9:u01:4919,, +11:u03:Coltun,, +10:u04:IPv6",, +11:u06:Manner,, +46:u10:<https://www.rfc-editor.org/info/rfc4919>., +13:u11:[rfc5340], +46:u13:<https://www.rfc-editor.org/info/rfc5340>., +13:u14:[rfc5974], +46:u01:<https://www.rfc-editor.org/info/rfc4919>., +13:u02:[RFC5340], +46:u04:<https://www.rfc-editor.org/info/rfc5340>., +13:u05:[RFC5974], +15:u07:Signaling",, +9:u00:4919,, +11:u02:Coltun,, +10:u03:IPv6",, +11:u05:Manner,, +13:u10:[rfc5340], +46:u12:<https://www.rfc-editor.org/info/rfc5340>., +13:u13:[rfc5974], +46:u00:<https://www.rfc-editor.org/info/rfc4919>., +13:u01:[RFC5340], +46:u03:<https://www.rfc-editor.org/info/rfc5340>., +13:u04:[RFC5974], +15:u06:Signaling",, +46:u07:<https://www.rfc-editor.org/info/rfc5974>., +11:u01:Coltun,, +10:u02:IPv6",, +11:u04:Manner,, +46:u11:<https://www.rfc-editor.org/info/rfc5340>., +13:u12:[rfc5974], +15:u14:signaling",, +8:uI2:()--, +13:u00:[RFC5340], +46:u02:<https://www.rfc-editor.org/info/rfc5340>., +13:u03:[RFC5974], +15:u05:Signaling",, +46:u06:<https://www.rfc-editor.org/info/rfc5974>., +11:u00:Coltun,, +10:u01:IPv6",, +11:u03:Manner,, +46:u10:<https://www.rfc-editor.org/info/rfc5340>., +13:u11:[rfc5974], +15:u13:signaling",, +46:u14:<https://www.rfc-editor.org/info/rfc5974>., +7:u22:Sig, +8:u23:Sign, +8:uI1:()--, +46:u01:<https://www.rfc-editor.org/info/rfc5340>., +13:u02:[RFC5974], +15:u04:Signaling",, +46:u05:<https://www.rfc-editor.org/info/rfc5974>., +10:u00:IPv6",, +11:u02:Manner,, +7:u08:66], +13:u10:[rfc5974], +15:u12:signaling",, +46:u13:<https://www.rfc-editor.org/info/rfc5974>., +8:uI0:()--, +46:u00:<https://www.rfc-editor.org/info/rfc5340>., +13:u01:[RFC5974], +15:u03:Signaling",, +46:u04:<https://www.rfc-editor.org/info/rfc5974>., +11:u01:Manner,, +7:u07:66], +15:u11:signaling",, +46:u12:<https://www.rfc-editor.org/info/rfc5974>., +13:u00:[RFC5974], +15:u02:Signaling",, +46:u03:<https://www.rfc-editor.org/info/rfc5974>., +11:u00:Manner,, +7:u06:66], +15:u10:signaling",, +46:u11:<https://www.rfc-editor.org/info/rfc5974>., +15:u01:Signaling",, +46:u02:<https://www.rfc-editor.org/info/rfc5974>., +13:u08:[RFC6275], +7:u05:66], +46:u10:<https://www.rfc-editor.org/info/rfc5974>., +15:u00:Signaling",, +46:u01:<https://www.rfc-editor.org/info/rfc5974>., +11:u08:Support, +7:u04:66], +46:u00:<https://www.rfc-editor.org/info/rfc5974>., +13:u07:[RFC6275], +9:u08:2011,, +7:u03:66], +13:u06:[RFC6275], +11:u07:Support, +7:u02:66], +46:u08:<https://www.rfc-editor.org/info/rfc6275>., +13:u14:[rfc6275], +13:u05:[RFC6275], +11:u06:Support, +9:u07:2011,, +7:u01:66], +46:u07:<https://www.rfc-editor.org/info/rfc6275>., +13:u13:[rfc6275], +13:u04:[RFC6275], +11:u05:Support, +9:u06:2011,, +7:u00:66], +46:u06:<https://www.rfc-editor.org/info/rfc6275>., +13:u12:[rfc6275], +9:u14:2011,, +13:u03:[RFC6275], +11:u04:Support, +9:u05:2011,, +13:u08:[RFC6606], +46:u05:<https://www.rfc-editor.org/info/rfc6275>., +13:u11:[rfc6275], +9:u13:2011,, +7:u22:Sup, +8:u23:Supp, +13:u02:[RFC6275], +11:u03:Support, +9:u04:2011,, +13:u08:Statement, +46:u04:<https://www.rfc-editor.org/info/rfc6275>., +8:u08:Kim,, +13:u10:[rfc6275], +9:u12:2011,, +8:u23:2011, +13:u01:[RFC6275], +11:u02:Support, +9:u03:2011,, +13:u07:[RFC6606], +46:u03:<https://www.rfc-editor.org/info/rfc6275>., +8:u07:Kim,, +9:u11:2011,, +13:u00:[RFC6275], +11:u01:Support, +9:u02:2011,, +13:u06:[RFC6606], +13:u07:Statement, +46:u02:<https://www.rfc-editor.org/info/rfc6275>., +8:u06:Kim,, +9:u10:2011,, +13:u14:[rfc6606], +11:u00:Support, +9:u01:2011,, +13:u05:[RFC6606], +13:u06:Statement, +46:u08:<https://www.rfc-editor.org/info/rfc6606>., +46:u01:<https://www.rfc-editor.org/info/rfc6275>., +8:u05:Kim,, +9:u08:6606,, +13:u13:[rfc6606], +13:u14:statement, +9:u00:2011,, +13:u04:[RFC6606], +13:u05:Statement, +13:u08:[RFC6830], +46:u00:<https://www.rfc-editor.org/info/rfc6275>., +8:u04:Kim,, +9:u07:6606,, +13:u12:[rfc6606], +13:u13:statement, +13:u03:[RFC6606], +13:u04:Statement, +46:u07:<https://www.rfc-editor.org/info/rfc6606>., +14:u08:Locator/ID, +8:u03:Kim,, +9:u06:6606,, +14:u08:Farinacci,, +13:u11:[rfc6606], +13:u12:statement, +13:u02:[RFC6606], +13:u03:Statement, +46:u06:<https://www.rfc-editor.org/info/rfc6606>., +13:u07:[RFC6830], +8:u02:Kim,, +9:u05:6606,, +14:u07:Farinacci,, +14:u08:Separation, +13:u10:[rfc6606], +13:u11:statement, +46:u14:<https://www.rfc-editor.org/info/rfc6606>., +13:u01:[RFC6606], +13:u02:Statement, +46:u05:<https://www.rfc-editor.org/info/rfc6606>., +13:u06:[RFC6830], +14:u07:Locator/ID, +46:u08:<https://www.rfc-editor.org/info/rfc6830>., +8:u01:Kim,, +9:u04:6606,, +14:u06:Farinacci,, +14:u07:Separation, +21:u08:10.17487/RFC6830,, +13:u10:statement, +46:u13:<https://www.rfc-editor.org/info/rfc6606>., +13:u14:[rfc6830], +13:u00:[RFC6606], +13:u01:Statement, +46:u04:<https://www.rfc-editor.org/info/rfc6606>., +13:u05:[RFC6830], +14:u06:Locator/ID, +8:u00:Kim,, +9:u03:6606,, +14:u05:Farinacci,, +14:u06:Separation, +21:u07:10.17487/RFC6830,, +46:u12:<https://www.rfc-editor.org/info/rfc6606>., +13:u13:[rfc6830], +14:u14:locator/id, +13:u00:Statement, +46:u03:<https://www.rfc-editor.org/info/rfc6606>., +13:u04:[RFC6830], +14:u05:Locator/ID, +46:u07:<https://www.rfc-editor.org/info/rfc6830>., +8:u08:Hadi, +9:u02:6606,, +14:u04:Farinacci,, +14:u05:Separation, +21:u06:10.17487/RFC6830,, +15:u08:Haleplidis,, +46:u11:<https://www.rfc-editor.org/info/rfc6606>., +13:u12:[rfc6830], +14:u13:locator/id, +10:uI2:/()",,, +46:u02:<https://www.rfc-editor.org/info/rfc6606>., +13:u03:[RFC6830], +14:u04:Locator/ID, +46:u06:<https://www.rfc-editor.org/info/rfc6830>., +11:u08:Defined, +9:u01:6606,, +14:u03:Farinacci,, +14:u04:Separation, +21:u05:10.17487/RFC6830,, +15:u07:Haleplidis,, +10:u08:Salim,, +46:u10:<https://www.rfc-editor.org/info/rfc6606>., +13:u11:[rfc6830], +14:u12:locator/id, +46:u14:<https://www.rfc-editor.org/info/rfc6830>., +7:u22:Loc, +8:u23:Loca, +10:uI1:/()",,, +46:u01:<https://www.rfc-editor.org/info/rfc6606>., +13:u02:[RFC6830], +14:u03:Locator/ID, +46:u05:<https://www.rfc-editor.org/info/rfc6830>., +8:u07:Hadi, +17:u08:Terminology",, +9:u00:6606,, +14:u02:Farinacci,, +14:u03:Separation, +21:u04:10.17487/RFC6830,, +15:u06:Haleplidis,, +10:u07:Salim,, +13:u10:[rfc6830], +14:u11:locator/id, +46:u13:<https://www.rfc-editor.org/info/rfc6830>., +13:u14:[rfc7426], +10:uI0:/()",,, +46:u00:<https://www.rfc-editor.org/info/rfc6606>., +13:u01:[RFC6830], +14:u02:Locator/ID, +46:u04:<https://www.rfc-editor.org/info/rfc6830>., +8:u06:Hadi, +11:u07:Defined, +9:u08:2015,, +14:u01:Farinacci,, +14:u02:Separation, +21:u03:10.17487/RFC6830,, +15:u05:Haleplidis,, +10:u06:Salim,, +14:u10:locator/id, +46:u12:<https://www.rfc-editor.org/info/rfc6830>., +13:u13:[rfc7426], +8:u14:hadi, +13:u00:[RFC6830], +14:u01:Locator/ID, +46:u03:<https://www.rfc-editor.org/info/rfc6830>., +8:u05:Hadi, +11:u06:Defined, +17:u07:Terminology",, +13:u08:[S-ALOHA], +14:u00:Farinacci,, +14:u01:Separation, +21:u02:10.17487/RFC6830,, +15:u04:Haleplidis,, +10:u05:Salim,, +46:u08:<https://www.rfc-editor.org/info/rfc7426>., +46:u11:<https://www.rfc-editor.org/info/rfc6830>., +13:u12:[rfc7426], +8:u13:hadi, +14:uI2:,.,,.,.,"-, +14:u00:Locator/ID, +46:u02:<https://www.rfc-editor.org/info/rfc6830>., +8:u04:Hadi, +11:u05:Defined, +17:u06:Terminology",, +9:u07:2015,, +9:u08:Slots, +14:u00:Separation, +21:u01:10.17487/RFC6830,, +15:u03:Haleplidis,, +10:u04:Salim,, +46:u07:<https://www.rfc-editor.org/info/rfc7426>., +12:u08:Roberts,, +46:u10:<https://www.rfc-editor.org/info/rfc6830>., +13:u11:[rfc7426], +8:u12:hadi, +17:u14:terminology",, +7:u22:Had, +8:u23:Hadi, +14:uI1:,.,,.,.,"-, +46:u01:<https://www.rfc-editor.org/info/rfc6830>., +8:u03:Hadi, +11:u04:Defined, +17:u05:Terminology",, +9:u06:2015,, +13:u07:[S-ALOHA], +9:u08:1975,, +21:u00:10.17487/RFC6830,, +15:u02:Haleplidis,, +10:u03:Salim,, +46:u06:<https://www.rfc-editor.org/info/rfc7426>., +12:u07:Roberts,, +13:u10:[rfc7426], +8:u11:hadi, +17:u13:terminology",, +9:u14:2015,, +7:u22:Def, +8:u23:Defi, +14:uI0:,.,,.,.,"-, +46:u00:<https://www.rfc-editor.org/info/rfc6830>., +8:u02:Hadi, +11:u03:Defined, +17:u04:Terminology",, +9:u05:2015,, +13:u06:[S-ALOHA], +9:u07:Slots, +10:u08:[TEAS], +15:u01:Haleplidis,, +10:u02:Salim,, +46:u05:<https://www.rfc-editor.org/info/rfc7426>., +12:u06:Roberts,, +49:u08:<https://dl.acm.org/citation.cfm?id=1024920>., +8:u10:hadi, +17:u12:terminology",, +9:u13:2015,, +13:u14:[s-aloha], +8:u01:Hadi, +11:u02:Defined, +17:u03:Terminology",, +9:u04:2015,, +13:u05:[S-ALOHA], +9:u06:Slots, +9:u07:1975,, +15:u00:Haleplidis,, +10:u01:Salim,, +46:u04:<https://www.rfc-editor.org/info/rfc7426>., +12:u05:Roberts,, +49:u07:<https://dl.acm.org/citation.cfm?id=1024920>., +17:u11:terminology",, +9:u12:2015,, +13:u13:[s-aloha], +9:u14:slots, +12:uI2:[-],..,", +8:u00:Hadi, +11:u01:Defined, +17:u02:Terminology",, +9:u03:2015,, +13:u04:[S-ALOHA], +9:u05:Slots, +9:u06:1975,, +10:u07:[TEAS], +58:u08:<https://dataTracker.ietf.org/doc/charter-ietf-teas/>., +10:u00:Salim,, +46:u03:<https://www.rfc-editor.org/info/rfc7426>., +12:u04:Roberts,, +49:u06:<https://dl.acm.org/citation.cfm?id=1024920>., +12:u08:"Traffic, +17:u10:terminology",, +9:u11:2015,, +13:u12:[s-aloha], +9:u13:slots, +9:u14:1975,, +6:u21:[S, +7:u22:[S-, +8:u23:[S-A, +12:uI1:[-],..,", +10:uI2:",./.,, +11:u00:Defined, +17:u01:Terminology",, +9:u02:2015,, +13:u03:[S-ALOHA], +9:u04:Slots, +9:u05:1975,, +10:u06:[TEAS], +18:u08:[WirelessHART], +46:u02:<https://www.rfc-editor.org/info/rfc7426>., +12:u03:Roberts,, +49:u05:<https://dl.acm.org/citation.cfm?id=1024920>., +12:u07:"Traffic, +9:u10:2015,, +13:u11:[s-aloha], +9:u12:slots, +9:u13:1975,, +10:u14:[teas], +6:u21:Sl, +7:u22:Slo, +8:u23:Slot, +12:uI0:[-],..,", +10:uI1:",./.,, +14:uI2:,://../.?., +17:u00:Terminology",, +9:u01:2015,, +13:u02:[S-ALOHA], +9:u03:Slots, +9:u04:1975,, +10:u05:[TEAS], +58:u07:<https://dataTracker.ietf.org/doc/charter-ietf-teas/>., +46:u01:<https://www.rfc-editor.org/info/rfc7426>., +12:u02:Roberts,, +49:u04:<https://dl.acm.org/citation.cfm?id=1024920>., +12:u06:"Traffic, +13:u10:[s-aloha], +9:u11:slots, +9:u12:1975,, +10:u13:[teas], +7:u22:197, +8:u23:1975, +10:uI0:",./.,, +14:uI1:,://../.?., +9:u00:2015,, +13:u01:[S-ALOHA], +9:u02:Slots, +9:u03:1975,, +10:u04:[TEAS], +58:u06:<https://dataTracker.ietf.org/doc/charter-ietf-teas/>., +18:u07:[WirelessHART], +46:u00:<https://www.rfc-editor.org/info/rfc7426>., +12:u01:Roberts,, +49:u03:<https://dl.acm.org/citation.cfm?id=1024920>., +12:u05:"Traffic, +9:u10:slots, +9:u11:1975,, +10:u12:[teas], +58:u14:<https://datatracker.ietf.org/doc/charter-ietf-teas/>., +6:u21:[T, +7:u22:[TE, +8:u23:[TEA, +14:uI0:,://../.?., +13:u00:[S-ALOHA], +9:u01:Slots, +9:u02:1975,, +10:u03:[TEAS], +58:u05:<https://dataTracker.ietf.org/doc/charter-ietf-teas/>., +18:u06:[WirelessHART], +17:u08:-WirelessHART, +12:u00:Roberts,, +49:u02:<https://dl.acm.org/citation.cfm?id=1024920>., +12:u04:"Traffic, +9:u10:1975,, +10:u11:[teas], +58:u13:<https://datatracker.ietf.org/doc/charter-ietf-teas/>., +18:u14:[wirelesshart], +9:u00:Slots, +9:u01:1975,, +10:u02:[TEAS], +58:u04:<https://dataTracker.ietf.org/doc/charter-ietf-teas/>., +18:u05:[WirelessHART], +49:u01:<https://dl.acm.org/citation.cfm?id=1024920>., +12:u03:"Traffic, +10:u10:[teas], +58:u12:<https://datatracker.ietf.org/doc/charter-ietf-teas/>., +18:u13:[wirelesshart], +9:u00:1975,, +10:u01:[TEAS], +58:u03:<https://dataTracker.ietf.org/doc/charter-ietf-teas/>., +18:u04:[WirelessHART], +17:u07:-WirelessHART, +49:u00:<https://dl.acm.org/citation.cfm?id=1024920>., +12:u02:"Traffic, +58:u11:<https://datatracker.ietf.org/doc/charter-ietf-teas/>., +18:u12:[wirelesshart], +6:u21:[W, +7:u22:[Wi, +8:u23:[Wir, +9:uI2:..,"-, +10:u00:[TEAS], +58:u02:<https://dataTracker.ietf.org/doc/charter-ietf-teas/>., +18:u03:[WirelessHART], +17:u06:-WirelessHART, +12:u01:"Traffic, +58:u10:<https://datatracker.ietf.org/doc/charter-ietf-teas/>., +18:u11:[wirelesshart], +17:u14:-wirelesshart, +9:uI1:..,"-, +58:u01:<https://dataTracker.ietf.org/doc/charter-ietf-teas/>., +18:u02:[WirelessHART], +17:u05:-WirelessHART, +9:u08:work., +12:u00:"Traffic, +13:u08:evolution, +18:u10:[wirelesshart], +17:u13:-wirelesshart, +9:uI0:..,"-, +9:uI2:--",., +58:u00:<https://dataTracker.ietf.org/doc/charter-ietf-teas/>., +18:u01:[WirelessHART], +17:u04:-WirelessHART, +10:u08:items., +13:u07:evolution, +17:u12:-wirelesshart, +6:u21:-W, +7:u22:-Wi, +8:u23:-Wir, +9:uI1:--",., +18:u00:[WirelessHART], +17:u03:-WirelessHART, +9:u07:work., +9:u08:still, +13:u06:evolution, +17:u11:-wirelesshart, +9:uI0:--",., +17:u02:-WirelessHART, +9:u06:work., +10:u07:items., +16:u08:6TiSCH-aware, +13:u05:evolution, +17:u10:-wirelesshart, +9:u14:work., +17:u01:-WirelessHART, +9:u05:work., +10:u06:items., +9:u07:still, +13:u04:evolution, +9:u13:work., +10:u14:items., +17:u00:-WirelessHART, +9:u04:work., +10:u05:items., +9:u06:still, +16:u07:6TiSCH-aware, +13:u03:evolution, +9:u12:work., +10:u13:items., +9:u14:still, +9:u03:work., +10:u04:items., +9:u05:still, +16:u06:6TiSCH-aware, +13:u02:evolution, +9:u11:work., +10:u12:items., +9:u13:still, +16:u14:6tisch-aware, +7:u22:ite, +8:u23:item, +9:u02:work., +10:u03:items., +9:u04:still, +16:u05:6TiSCH-aware, +13:u01:evolution, +7:u08:67], +9:u10:work., +10:u11:items., +9:u12:still, +16:u13:6tisch-aware, +7:u22:sti, +8:u23:stil, +9:u01:work., +10:u02:items., +9:u03:still, +16:u04:6TiSCH-aware, +13:u00:evolution, +7:u07:67], +10:u10:items., +9:u11:still, +16:u12:6tisch-aware, +9:u00:work., +10:u01:items., +9:u02:still, +16:u03:6TiSCH-aware, +7:u06:67], +9:u10:still, +16:u11:6tisch-aware, +10:u00:items., +9:u01:still, +16:u02:6TiSCH-aware, +7:u05:67], +16:u10:6tisch-aware, +9:u00:still, +16:u01:6TiSCH-aware, +7:u04:67], +16:u00:6TiSCH-aware, +7:u03:67], +7:u02:67], +7:u01:67], +11:u08:depends, +7:u00:67], +11:u07:depends, +17:u08:Bootstrapping, +18:u08:provisionning;, +11:u06:depends, +17:u07:Bootstrapping, +11:u05:depends, +17:u06:Bootstrapping, +18:u07:provisionning;, +11:u04:depends, +17:u05:Bootstrapping, +8:uI2:[](), +18:u06:provisionning;, +14:u08:"Ephemeral, +11:u03:depends, +17:u04:Bootstrapping, +18:u14:provisionning;, +8:uI1:[](), +18:u05:provisionning;, +34:u08:[I-D.selander-ace-cose-ecdhe],, +11:u02:depends, +17:u03:Bootstrapping, +18:u13:provisionning;, +8:uI0:[](), +18:u04:provisionning;, +14:u07:"Ephemeral, +11:u01:depends, +17:u02:Bootstrapping, +18:u12:provisionning;, +9:uI2:-().,, +18:u03:provisionning;, +14:u06:"Ephemeral, +34:u07:[I-D.selander-ace-cose-ecdhe],, +11:u00:depends, +17:u01:Bootstrapping, +18:u11:provisionning;, +14:u14:"ephemeral, +9:uI1:-().,, +18:u02:provisionning;, +14:u05:"Ephemeral, +34:u06:[I-D.selander-ace-cose-ecdhe],, +8:u08:ROLL, +17:u00:Bootstrapping, +18:u10:provisionning;, +14:u13:"ephemeral, +34:u14:[i-d.selander-ace-cose-ecdhe],, +9:uI0:-().,, +18:u01:provisionning;, +14:u04:"Ephemeral, +34:u05:[I-D.selander-ace-cose-ecdhe],, +14:u12:"ephemeral, +34:u13:[i-d.selander-ace-cose-ecdhe],, +7:u22:"Ep, +8:u23:"Eph, +18:u00:provisionning;, +14:u03:"Ephemeral, +34:u04:[I-D.selander-ace-cose-ecdhe],, +8:u07:ROLL, +14:u11:"ephemeral, +34:u12:[i-d.selander-ace-cose-ecdhe],, +14:u02:"Ephemeral, +34:u03:[I-D.selander-ace-cose-ecdhe],, +8:u06:ROLL, +14:u10:"ephemeral, +34:u11:[i-d.selander-ace-cose-ecdhe],, +8:u14:roll, +14:u01:"Ephemeral, +34:u02:[I-D.selander-ace-cose-ecdhe],, +8:u05:ROLL, +34:u10:[i-d.selander-ace-cose-ecdhe],, +8:u13:roll, +14:u00:"Ephemeral, +34:u01:[I-D.selander-ace-cose-ecdhe],, +8:u04:ROLL, +13:u08:chartered, +8:u12:roll, +7:u22:ROL, +8:u23:ROLL, +34:u00:[I-D.selander-ace-cose-ecdhe],, +8:u03:ROLL, +13:u07:chartered, +8:u11:roll, +8:u02:ROLL, +15:u08:considered., +13:u06:chartered, +7:u08:RAW, +8:u10:roll, +8:u01:ROLL, +13:u05:chartered, +7:u07:RAW, +8:u00:ROLL, +15:u07:considered., +13:u04:chartered, +7:u06:RAW, +15:u06:considered., +13:u03:chartered, +7:u05:RAW, +15:u14:considered., +15:u05:considered., +9:u08:cover, +13:u02:chartered, +7:u04:RAW, +11:u08:develop, +15:u13:considered., +15:u04:considered., +35:u08:[I-D.thubert-raw-technologies]., +13:u01:chartered, +7:u03:RAW, +11:u07:develop, +15:u12:considered., +15:u03:considered., +9:u07:cover, +13:u00:chartered, +7:u02:RAW, +11:u06:develop, +15:u11:considered., +15:u02:considered., +9:u06:cover, +35:u07:[I-D.thubert-raw-technologies]., +7:u01:RAW, +11:u05:develop, +15:u10:considered., +9:u14:cover, +15:u01:considered., +9:u05:cover, +35:u06:[I-D.thubert-raw-technologies]., +7:u00:RAW, +11:u04:develop, +9:u13:cover, +35:u14:[i-d.thubert-raw-technologies]., +15:u00:considered., +9:u04:cover, +35:u05:[I-D.thubert-raw-technologies]., +9:u08:react, +11:u03:develop, +9:u12:cover, +35:u13:[i-d.thubert-raw-technologies]., +7:u22:cov, +8:u23:cove, +12:uI2:[-.--].,, +9:u03:cover, +35:u04:[I-D.thubert-raw-technologies]., +11:u02:develop, +11:u08:quickly, +9:u11:cover, +35:u12:[i-d.thubert-raw-technologies]., +12:uI1:[-.--].,, +9:u02:cover, +35:u03:[I-D.thubert-raw-technologies]., +9:u07:react, +12:u08:computed, +11:u01:develop, +11:u07:quickly, +9:u10:cover, +35:u11:[i-d.thubert-raw-technologies]., +12:uI0:[-.--].,, +9:u01:cover, +35:u02:[I-D.thubert-raw-technologies]., +9:u06:react, +11:u00:develop, +11:u06:quickly, +10:u08:routes, +35:u10:[i-d.thubert-raw-technologies]., +9:u14:react, +9:u00:cover, +35:u01:[I-D.thubert-raw-technologies]., +9:u05:react, +12:u07:computed, +11:u05:quickly, +10:u07:routes, +9:u13:react, +7:u22:wir, +8:u23:wire, +35:u00:[I-D.thubert-raw-technologies]., +9:u04:react, +12:u06:computed, +11:u04:quickly, +10:u06:routes, +9:u12:react, +12:u14:computed, +9:u03:react, +12:u05:computed, +11:u03:quickly, +10:u05:routes, +9:u11:react, +12:u13:computed, +9:u02:react, +12:u04:computed, +11:u02:quickly, +10:u04:routes, +9:u10:react, +12:u12:computed, +9:u01:react, +12:u03:computed, +8:u08:PCE,, +11:u01:quickly, +10:u03:routes, +10:u08:expose, +12:u11:computed, +9:u00:react, +12:u02:computed, +11:u00:quickly, +10:u02:routes, +10:u07:expose, +12:u10:computed, +17:u14:architecture., +12:u01:computed, +8:u07:PCE,, +10:u01:routes, +10:u06:expose, +17:u13:architecture., +12:u00:computed, +8:u06:PCE,, +10:u00:routes, +10:u05:expose, +11:u08:formats, +17:u12:architecture., +8:u14:pce,, +8:u05:PCE,, +10:u04:expose, +11:u07:formats, +17:u11:architecture., +8:u13:pce,, +13:uI2:,[-.---]., +8:u04:PCE,, +10:u03:expose, +11:u06:formats, +17:u10:architecture., +8:u12:pce,, +8:u23:PCE,, +13:uI1:,[-.---]., +8:u03:PCE,, +10:u02:expose, +11:u05:formats, +7:u08:68], +8:u11:pce,, +13:uI0:,[-.---]., +8:u02:PCE,, +10:u01:expose, +11:u04:formats, +7:u07:68], +8:u10:pce,, +8:u01:PCE,, +10:u00:expose, +11:u03:formats, +7:u06:68], +8:u00:PCE,, +11:u02:formats, +7:u05:68], +11:u01:formats, +7:u04:68], +11:u00:formats, +7:u03:68], +7:u02:68], +7:u01:68], +10:u08:tables, +7:u00:68], +10:u08:method, +8:u08:BIER, +10:u07:method, +10:u07:tables, +17:u08:BIER-TE-based, +10:u06:method, +10:u06:tables, +8:u07:BIER, +10:u05:method, +8:u08:OAM,, +10:u14:tables, +10:u05:tables, +8:u06:BIER, +17:u07:BIER-TE-based, +10:u04:method, +8:u07:OAM,, +10:u13:tables, +8:u14:bier, +10:u04:tables, +8:u05:BIER, +17:u06:BIER-TE-based, +10:u03:method, +8:u06:OAM,, +10:u12:tables, +8:u13:bier, +17:u14:bier-te-based, +7:u22:tab, +8:u23:tabl, +10:u03:tables, +8:u04:BIER, +17:u05:BIER-TE-based, +10:u02:method, +8:u05:OAM,, +10:u11:tables, +8:u12:bier, +17:u13:bier-te-based, +6:u21:BI, +7:u22:BIE, +8:u23:BIER, +10:u02:tables, +8:u03:BIER, +17:u04:BIER-TE-based, +10:u01:method, +8:u04:OAM,, +15:u08:replication, +10:u10:tables, +8:u11:bier, +17:u12:bier-te-based, +10:u01:tables, +8:u02:BIER, +17:u03:BIER-TE-based, +10:u00:method, +8:u03:OAM,, +15:u07:replication, +8:u10:bier, +17:u11:bier-te-based, +10:u00:tables, +8:u01:BIER, +17:u02:BIER-TE-based, +8:u02:OAM,, +15:u06:replication, +17:u10:bier-te-based, +8:u00:BIER, +17:u01:BIER-TE-based, +8:u01:OAM,, +15:u05:replication, +17:u00:BIER-TE-based, +8:u00:OAM,, +15:u04:replication, +14:u08:[RFC8138]., +15:u03:replication, +14:u07:[RFC8138]., +15:u02:replication, +14:u06:[RFC8138]., +11:u08:current, +10:u14:header, +15:u01:replication, +14:u05:[RFC8138]., +11:u07:current, +10:u13:header, +14:u08:evolution., +15:u00:replication, +14:u04:[RFC8138]., +11:u06:current, +10:u12:header, +7:u22:Hea, +8:u23:Head, +9:uI2:..(-), +14:u03:[RFC8138]., +11:u05:current, +10:u11:header, +9:uI1:..(-), +14:u07:evolution., +14:u02:[RFC8138]., +11:u04:current, +11:u08:minimal, +10:u10:header, +9:uI0:..(-), +14:u06:evolution., +14:u01:[RFC8138]., +11:u03:current, +11:u07:minimal, +14:u14:evolution., +14:u05:evolution., +10:u08:demand, +14:u00:[RFC8138]., +11:u02:current, +11:u06:minimal, +14:u13:evolution., +14:u04:evolution., +8:u08:Work, +11:u01:current, +11:u05:minimal, +7:u08:it., +14:u12:evolution., +7:u22:evo, +8:u23:evol, +14:u03:evolution., +10:u07:demand, +13:u08:logically, +11:u00:current, +11:u04:minimal, +7:u07:it., +14:u11:evolution., +14:u02:evolution., +10:u06:demand, +8:u07:Work, +11:u03:minimal, +7:u06:it., +14:u10:evolution., +10:u14:demand, +14:u01:evolution., +10:u05:demand, +8:u06:Work, +13:u07:logically, +7:u08:yet, +11:u02:minimal, +7:u05:it., +10:u13:demand, +8:u14:work, +14:u00:evolution., +10:u04:demand, +8:u05:Work, +13:u06:logically, +10:u08:ISA100, +11:u01:minimal, +7:u04:it., +10:u12:demand, +8:u13:work, +13:u14:logically, +7:u22:dem, +8:u23:dema, +8:uI2:(..), +10:u03:demand, +8:u04:Work, +13:u05:logically, +7:u07:yet, +11:u00:minimal, +7:u03:it., +10:u11:demand, +8:u12:work, +13:u13:logically, +6:u21:Wo, +7:u22:Wor, +8:u23:Work, +8:uI1:(..), +10:u02:demand, +8:u03:Work, +13:u04:logically, +7:u06:yet, +10:u07:ISA100, +7:u02:it., +10:u10:demand, +8:u11:work, +13:u12:logically, +7:u14:yet, +8:uI0:(..), +10:u01:demand, +8:u02:Work, +13:u03:logically, +7:u05:yet, +10:u06:ISA100, +7:u01:it., +8:u10:work, +13:u11:logically, +7:u13:yet, +10:u14:isa100, +10:u00:demand, +8:u01:Work, +13:u02:logically, +7:u04:yet, +10:u05:ISA100, +7:u00:it., +13:u10:logically, +7:u12:yet, +10:u13:isa100, +5:u20:y, +6:u21:ye, +7:u22:yet, +7:u23:yet, +8:u00:Work, +13:u01:logically, +7:u03:yet, +10:u04:ISA100, +19:u08:[WirelessHART],, +7:u11:yet, +10:u12:isa100, +11:u14:defines, +8:u23:ISA1, +8:uI2:.,.,, +13:u00:logically, +7:u02:yet, +10:u03:ISA100, +7:u10:yet, +10:u11:isa100, +11:u13:defines, +8:uI1:.,.,, +7:u01:yet, +10:u02:ISA100, +19:u07:[WirelessHART],, +13:u08:ISA100.20, +10:u10:isa100, +11:u12:defines, +8:uI0:.,.,, +7:u00:yet, +10:u01:ISA100, +19:u06:[WirelessHART],, +11:u11:defines, +19:u14:[wirelesshart],, +9:uI2:.[.],, +10:u00:ISA100, +19:u05:[WirelessHART],, +13:u07:ISA100.20, +11:u10:defines, +19:u13:[wirelesshart],, +9:uI1:.[.],, +19:u04:[WirelessHART],, +13:u06:ISA100.20, +19:u12:[wirelesshart],, +13:u14:isa100.20, +9:uI0:.[.],, +19:u03:[WirelessHART],, +13:u05:ISA100.20, +7:u08:69], +19:u11:[wirelesshart],, +13:u13:isa100.20, +19:u02:[WirelessHART],, +13:u04:ISA100.20, +7:u07:69], +19:u10:[wirelesshart],, +13:u12:isa100.20, +19:u01:[WirelessHART],, +13:u03:ISA100.20, +7:u06:69], +13:u11:isa100.20, +19:u00:[WirelessHART],, +13:u02:ISA100.20, +7:u05:69], +13:u10:isa100.20, +13:u01:ISA100.20, +10:u08:Pascal, +7:u04:69], +13:u00:ISA100.20, +7:u03:69], +10:u07:Pascal, +7:u02:69], +12:u08:Systems,, +10:u06:Pascal, +6:u08:45, +7:u01:69], +12:u07:Systems,, +10:u14:pascal, +10:u05:Pascal, +11:u08:MOUGINS, +7:u00:69], +12:u06:Systems,, +9:u08:Allee, +10:u13:pascal, +10:u04:Pascal, +6:u07:45, +10:u08:FRANCE, +12:u05:Systems,, +9:u07:Allee, +11:u08:-Sophia, +10:u12:pascal, +7:u22:Pas, +8:u23:Pasc, +10:u03:Pascal, +6:u06:45, +11:u07:MOUGINS, +12:u04:Systems,, +9:u06:Allee, +11:u07:-Sophia, +10:u11:pascal, +6:u14:45, +10:u02:Pascal, +6:u05:45, +11:u06:MOUGINS, +10:u07:FRANCE, +12:u03:Systems,, +9:u05:Allee, +11:u06:-Sophia, +7:u08:+33, +10:u10:pascal, +6:u13:45, +11:u14:mougins, +10:u01:Pascal, +6:u04:45, +11:u05:MOUGINS, +10:u06:FRANCE, +12:u02:Systems,, +9:u04:Allee, +11:u05:-Sophia, +7:u07:+33, +22:u08:pthubert@cisco.com, +6:u12:45, +11:u13:mougins, +10:u14:france, +6:u21:45, +6:u22:45, +6:u23:45, +10:u00:Pascal, +6:u03:45, +11:u04:MOUGINS, +10:u05:FRANCE, +12:u01:Systems,, +9:u03:Allee, +11:u04:-Sophia, +7:u06:+33, +22:u07:pthubert@cisco.com, +6:u11:45, +11:u12:mougins, +10:u13:france, +6:u21:MO, +7:u22:MOU, +8:u23:MOUG, +6:u02:45, +11:u03:MOUGINS, +10:u04:FRANCE, +12:u00:Systems,, +9:u02:Allee, +11:u03:-Sophia, +7:u05:+33, +22:u06:pthubert@cisco.com, +6:u10:45, +11:u11:mougins, +10:u12:france, +6:u21:FR, +7:u22:FRA, +8:u23:FRAN, +6:u01:45, +11:u02:MOUGINS, +10:u03:FRANCE, +9:u01:Allee, +11:u02:-Sophia, +7:u04:+33, +22:u05:pthubert@cisco.com, +7:u08:70], +11:u10:mougins, +10:u11:france, +6:u00:45, +11:u01:MOUGINS, +10:u02:FRANCE, +9:u00:Allee, +11:u01:-Sophia, +7:u03:+33, +22:u04:pthubert@cisco.com, +7:u07:70], +10:u10:france, +11:u00:MOUGINS, +10:u01:FRANCE, +11:u00:-Sophia, +7:u02:+33, +22:u03:pthubert@cisco.com, +7:u06:70], +10:u00:FRANCE, +7:u01:+33, +22:u02:pthubert@cisco.com, +7:u05:70], +7:u00:+33, +22:u01:pthubert@cisco.com, +7:u04:70], +9:u05:NFSv4, +10:u08:NetApp, +11:u06:Noveck,, +9:u13:nfsv4, +9:u04:NFSv4, +10:u07:NetApp, +11:u05:Noveck,, +8:u08:5661, +9:u12:nfsv4, +6:u21:NF, +7:u22:NFS, +8:u23:NFSv, +9:u03:NFSv4, +10:u06:NetApp, +11:u04:Noveck,, +8:u07:5661, +9:u08:Lever, +9:u11:nfsv4, +10:u14:netapp, +9:u02:NFSv4, +10:u05:NetApp, +10:u08:ORACLE, +11:u03:Noveck,, +8:u06:5661, +9:u07:Lever, +9:u10:nfsv4, +10:u13:netapp, +9:u01:NFSv4, +10:u04:NetApp, +11:u02:Noveck,, +8:u05:5661, +9:u06:Lever, +10:u12:netapp, +8:u23:NetA, +9:u00:NFSv4, +10:u03:NetApp, +10:u07:ORACLE, +11:u01:Noveck,, +8:u04:5661, +9:u05:Lever, +10:u11:netapp, +10:u02:NetApp, +10:u06:ORACLE, +11:u00:Noveck,, +8:u03:5661, +9:u04:Lever, +6:u08:4,, +10:u10:netapp, +10:u14:oracle, +10:u01:NetApp, +10:u05:ORACLE, +42:u08:draft-ietf-nfsv4-rfc5661sesqui-msns-01, +8:u02:5661, +9:u03:Lever, +6:u07:4,, +8:u08:File, +10:u13:oracle, +10:u00:NetApp, +10:u04:ORACLE, +8:u01:5661, +9:u02:Lever, +6:u06:4,, +8:u07:File, +10:u12:oracle, +6:u21:OR, +7:u22:ORA, +8:u23:ORAC, +10:u03:ORACLE, +42:u07:draft-ietf-nfsv4-rfc5661sesqui-msns-01, +8:u00:5661, +9:u01:Lever, +6:u05:4,, +8:u06:File, +10:u11:oracle, +10:u02:ORACLE, +42:u06:draft-ietf-nfsv4-rfc5661sesqui-msns-01, +9:u00:Lever, +6:u04:4,, +8:u05:File, +10:u10:oracle, +42:u14:draft-ietf-nfsv4-rfc5661sesqui-msns-01, +10:u01:ORACLE, +42:u05:draft-ietf-nfsv4-rfc5661sesqui-msns-01, +6:u03:4,, +8:u04:File, +6:u08:1,, +42:u13:draft-ietf-nfsv4-rfc5661sesqui-msns-01, +10:u00:ORACLE, +42:u04:draft-ietf-nfsv4-rfc5661sesqui-msns-01, +6:u02:4,, +8:u03:File, +6:u07:1,, +42:u12:draft-ietf-nfsv4-rfc5661sesqui-msns-01, +42:u03:draft-ietf-nfsv4-rfc5661sesqui-msns-01, +6:u01:4,, +8:u02:File, +6:u06:1,, +42:u11:draft-ietf-nfsv4-rfc5661sesqui-msns-01, +42:u02:draft-ietf-nfsv4-rfc5661sesqui-msns-01, +6:u00:4,, +8:u01:File, +6:u05:1,, +16:u08:dependencies, +42:u10:draft-ietf-nfsv4-rfc5661sesqui-msns-01, +6:uI2:,(, +42:u01:draft-ietf-nfsv4-rfc5661sesqui-msns-01, +8:u00:File, +6:u04:1,, +16:u07:dependencies, +6:uI1:,(, +6:uI2:,), +42:u00:draft-ietf-nfsv4-rfc5661sesqui-msns-01, +13:u08:treatment, +6:u03:1,, +16:u06:dependencies, +6:uI0:,(, +6:uI1:,), +6:u02:1,, +16:u05:dependencies, +12:u14:separate, +6:uI0:,), +13:u07:treatment, +6:u01:1,, +16:u04:dependencies, +12:u13:separate, +13:u06:treatment, +6:u00:1,, +16:u03:dependencies, +12:u12:separate, +13:u14:treatment, +7:u22:sep, +8:u23:sepa, +13:u05:treatment, +16:u02:dependencies, +12:u11:separate, +13:u13:treatment, +13:u04:treatment, +16:u01:dependencies, +12:u10:separate, +13:u12:treatment, +7:u22:tre, +8:u23:trea, +13:u03:treatment, +16:u00:dependencies, +13:u11:treatment, +13:u02:treatment, +13:u10:treatment, +13:u01:treatment, +13:u00:treatment, +10:u08:Noveck, +10:u07:Noveck, +10:u06:Noveck, +10:u14:noveck, +10:u05:Noveck, +11:u08:NFSv4.1, +10:u13:noveck, +10:u04:Noveck, +10:u12:noveck, +10:u03:Noveck, +11:u07:NFSv4.1, +10:u11:noveck, +10:u02:Noveck, +11:u06:NFSv4.1, +10:u10:noveck, +11:u14:nfsv4.1, +10:u01:Noveck, +11:u05:NFSv4.1, +11:u13:nfsv4.1, +10:u00:Noveck, +11:u04:NFSv4.1, +11:u12:nfsv4.1, +11:u03:NFSv4.1, +11:u11:nfsv4.1, +11:u02:NFSv4.1, +11:u10:nfsv4.1, +11:u01:NFSv4.1, +11:u00:NFSv4.1, +17:u08:Contributions, +13:u08:published, +17:u07:Contributions, +13:u07:published, +9:u08:2008., +17:u06:Contributions, +17:u08:modifications, +13:u06:published, +9:u07:2008., +17:u14:contributions, +17:u05:Contributions, +11:u08:Without, +13:u05:published, +9:u06:2008., +17:u13:contributions, +7:u14:10,, +17:u04:Contributions, +17:u07:modifications, +13:u04:published, +9:u05:2008., +17:u12:contributions, +7:u13:10,, +8:uI2:,.(), +17:u03:Contributions, +17:u06:modifications, +11:u07:Without, +11:u08:outside, +13:u03:published, +9:u04:2008., +13:u08:copyright, +17:u11:contributions, +7:u12:10,, +17:u14:modifications, +7:u22:10,, +7:u23:10,, +8:uI1:,.(), +17:u02:Contributions, +17:u05:modifications, +11:u06:Without, +13:u02:published, +9:u03:2008., +13:u07:copyright, +17:u10:contributions, +7:u11:10,, +17:u13:modifications, +8:uI0:,.(), +17:u01:Contributions, +17:u04:modifications, +11:u05:Without, +11:u07:outside, +13:u01:published, +9:u02:2008., +13:u06:copyright, +7:u10:10,, +17:u12:modifications, +8:u23:modi, +17:u00:Contributions, +17:u03:modifications, +11:u04:Without, +11:u06:outside, +8:u08:than, +13:u00:published, +9:u01:2008., +13:u05:copyright, +17:u11:modifications, +11:u14:outside, +17:u02:modifications, +11:u03:Without, +11:u05:outside, +9:u00:2008., +13:u04:copyright, +12:u08:English., +17:u10:modifications, +11:u13:outside, +17:u01:modifications, +11:u02:Without, +11:u04:outside, +8:u07:than, +13:u03:copyright, +12:u07:English., +11:u12:outside, +8:u23:outs, +17:u00:modifications, +11:u01:Without, +11:u03:outside, +8:u06:than, +13:u02:copyright, +12:u06:English., +11:u11:outside, +8:u14:than, +11:u00:Without, +11:u02:outside, +8:u05:than, +13:u01:copyright, +12:u05:English., +11:u10:outside, +8:u13:than, +11:u01:outside, +8:u04:than, +13:u00:copyright, +12:u04:English., +8:u12:than, +8:u23:than, +11:u00:outside, +8:u03:than, +12:u03:English., +8:u11:than, +8:u02:than, +12:u02:English., +8:u10:than, +8:u01:than, +12:u01:English., +8:u00:than, +12:u00:English., +8:u08:1.4., +8:u07:1.4., +8:u08:1.5., +8:u06:1.4., +9:u08:NFSv4, +8:u14:1.4., +8:u05:1.4., +8:u07:1.5., +8:u08:1.6., +9:u07:NFSv4, +8:u13:1.4., +8:u04:1.4., +8:u06:1.5., +8:u08:1.7., +9:u06:NFSv4, +8:u12:1.4., +8:u14:1.5., +7:u22:1.4, +8:u23:1.4., +8:u03:1.4., +8:u05:1.5., +8:u07:1.6., +8:u08:1.8., +8:u11:1.4., +8:u13:1.5., +8:u02:1.4., +8:u04:1.5., +8:u06:1.6., +8:u07:1.7., +8:u08:1.9., +8:u10:1.4., +8:u12:1.5., +8:u14:1.6., +7:u22:1.5, +8:u23:1.5., +8:u01:1.4., +8:u03:1.5., +8:u05:1.6., +8:u06:1.7., +8:u07:1.8., +15:u08:Differences, +8:u11:1.5., +8:u13:1.6., +8:u14:1.7., +8:u00:1.4., +8:u02:1.5., +8:u04:1.6., +8:u05:1.7., +8:u06:1.8., +8:u07:1.9., +15:u07:Differences, +8:u08:Core, +8:u10:1.5., +8:u12:1.6., +8:u13:1.7., +8:u14:1.8., +7:u22:1.6, +8:u23:1.6., +8:u01:1.5., +8:u03:1.6., +8:u04:1.7., +8:u05:1.8., +8:u06:1.9., +15:u06:Differences, +8:u07:Core, +8:u11:1.6., +8:u12:1.7., +8:u13:1.8., +8:u14:1.9., +7:u22:1.7, +8:u23:1.7., +8:u00:1.5., +8:u02:1.6., +8:u03:1.7., +8:u04:1.8., +8:u05:1.9., +15:u05:Differences, +8:u06:Core, +7:u08:RPC, +8:u10:1.6., +8:u11:1.7., +8:u12:1.8., +8:u13:1.9., +7:u22:1.8, +8:u23:1.8., +8:u01:1.6., +8:u02:1.7., +8:u03:1.8., +8:u04:1.9., +8:u08:2.4., +15:u04:Differences, +8:u05:Core, +7:u07:RPC, +12:u08:COMPOUND, +8:u10:1.7., +8:u11:1.8., +8:u12:1.9., +7:u22:1.9, +8:u23:1.9., +8:u00:1.6., +8:u01:1.7., +8:u02:1.8., +8:u03:1.9., +8:u08:2.5., +15:u03:Differences, +8:u04:Core, +7:u06:RPC, +12:u07:COMPOUND, +10:u08:Client, +8:u10:1.8., +8:u11:1.9., +8:u00:1.7., +8:u01:1.8., +8:u02:1.9., +8:u07:2.4., +8:u08:2.6., +15:u02:Differences, +8:u03:Core, +7:u05:RPC, +12:u06:COMPOUND, +10:u07:Client, +8:u10:1.9., +8:u00:1.8., +8:u01:1.9., +8:u06:2.4., +8:u07:2.5., +8:u08:2.7., +15:u01:Differences, +8:u02:Core, +7:u04:RPC, +12:u05:COMPOUND, +10:u06:Client, +8:u14:2.4., +8:u00:1.9., +8:u05:2.4., +8:u06:2.5., +8:u07:2.6., +8:u08:2.8., +15:u00:Differences, +8:u01:Core, +7:u03:RPC, +12:u04:COMPOUND, +10:u05:Client, +9:u08:Minor, +8:u13:2.4., +8:u14:2.5., +8:u04:2.4., +8:u05:2.5., +8:u06:2.6., +8:u07:2.7., +8:u08:2.9., +8:u00:Core, +7:u02:RPC, +12:u03:COMPOUND, +10:u04:Client, +9:u07:Minor, +17:u08:Non-RPC-Based, +8:u12:2.4., +8:u13:2.5., +8:u14:2.6., +7:u22:2.4, +8:u23:2.4., +8:u03:2.4., +8:u04:2.5., +8:u05:2.6., +8:u06:2.7., +8:u07:2.8., +9:u08:2.10., +7:u01:RPC, +12:u02:COMPOUND, +10:u03:Client, +9:u06:Minor, +17:u07:Non-RPC-Based, +8:u11:2.4., +8:u12:2.5., +8:u13:2.6., +8:u14:2.7., +7:u22:2.5, +8:u23:2.5., +8:u02:2.4., +8:u03:2.5., +8:u04:2.6., +8:u05:2.7., +8:u06:2.8., +8:u07:2.9., +7:u00:RPC, +12:u01:COMPOUND, +10:u02:Client, +9:u05:Minor, +17:u06:Non-RPC-Based, +8:u10:2.4., +8:u11:2.5., +8:u12:2.6., +8:u13:2.7., +8:u14:2.8., +7:u22:2.6, +8:u23:2.6., +8:u01:2.4., +8:u02:2.5., +8:u03:2.6., +8:u04:2.7., +8:u05:2.8., +8:u06:2.9., +9:u07:2.10., +12:u00:COMPOUND, +10:u01:Client, +9:u04:Minor, +17:u05:Non-RPC-Based, +8:u10:2.5., +8:u11:2.6., +8:u12:2.7., +8:u13:2.8., +8:u14:2.9., +7:u22:2.7, +8:u23:2.7., +21:uI2:..--............., +8:u00:2.4., +8:u01:2.5., +8:u02:2.6., +8:u03:2.7., +8:u04:2.8., +8:u05:2.9., +9:u06:2.10., +10:u00:Client, +9:u03:Minor, +17:u04:Non-RPC-Based, +9:u08:Basic, +8:u10:2.6., +8:u11:2.7., +8:u12:2.8., +8:u13:2.9., +9:u14:2.10., +7:u22:2.8, +8:u23:2.8., +21:uI1:..--............., +8:u00:2.5., +8:u01:2.6., +8:u02:2.7., +8:u03:2.8., +8:u04:2.9., +9:u05:2.10., +9:u02:Minor, +17:u03:Non-RPC-Based, +9:u07:Basic, +8:u10:2.7., +8:u11:2.8., +8:u12:2.9., +9:u13:2.10., +7:u22:2.9, +8:u23:2.9., +21:uI0:..--............., +8:u00:2.6., +8:u01:2.7., +8:u02:2.8., +8:u03:2.9., +9:u04:2.10., +9:u01:Minor, +17:u02:Non-RPC-Based, +9:u06:Basic, +14:u08:Structured, +8:u10:2.8., +8:u11:2.9., +9:u12:2.10., +8:u23:2.10, +8:u00:2.7., +8:u01:2.8., +8:u02:2.9., +9:u03:2.10., +9:u00:Minor, +17:u01:Non-RPC-Based, +9:u05:Basic, +14:u07:Structured, +15:u08:Filehandles, +8:u10:2.9., +9:u11:2.10., +8:u00:2.8., +8:u01:2.9., +9:u02:2.10., +17:u00:Non-RPC-Based, +9:u04:Basic, +14:u06:Structured, +15:u07:Filehandles, +13:u08:Obtaining, +9:u10:2.10., +8:u00:2.9., +9:u01:2.10., +9:u03:Basic, +14:u05:Structured, +15:u06:Filehandles, +13:u07:Obtaining, +9:u00:2.10., +9:u02:Basic, +14:u04:Structured, +15:u05:Filehandles, +13:u06:Obtaining, +9:u01:Basic, +14:u03:Structured, +15:u04:Filehandles, +13:u05:Obtaining, +9:u00:Basic, +14:u02:Structured, +15:u03:Filehandles, +13:u04:Obtaining, +14:u01:Structured, +15:u02:Filehandles, +13:u03:Obtaining, +14:u00:Structured, +15:u01:Filehandles, +13:u02:Obtaining, +15:u00:Filehandles, +13:u01:Obtaining, +14:u08:Filehandle, +13:u00:Obtaining, +14:u07:Filehandle, +14:u06:Filehandle, +14:u05:Filehandle, +14:u04:Filehandle, +12:u08:REQUIRED, +14:u03:Filehandle, +12:u07:REQUIRED, +14:u02:Filehandle, +12:u06:REQUIRED, +9:u08:Named, +14:u01:Filehandle, +12:u05:REQUIRED, +9:u07:Named, +18:u08:Classification, +8:u08:5.6., +14:u00:Filehandle, +12:u04:REQUIRED, +9:u06:Named, +18:u07:Classification, +12:u08:Set-Only, +8:u08:5.7., +12:u03:REQUIRED, +9:u05:Named, +18:u06:Classification, +12:u07:Set-Only, +8:u07:5.6., +8:u08:5.8., +12:u02:REQUIRED, +9:u04:Named, +18:u05:Classification, +12:u06:Set-Only, +8:u06:5.6., +8:u07:5.7., +12:u01:REQUIRED, +9:u03:Named, +18:u04:Classification, +12:u05:Set-Only, +8:u14:5.6., +20:uI2:..--............, +8:u05:5.6., +8:u06:5.7., +8:u07:5.8., +8:u08:5.9., +12:u00:REQUIRED, +9:u02:Named, +18:u03:Classification, +12:u04:Set-Only, +8:u13:5.6., +8:u14:5.7., +20:uI1:..--............, +9:uI2:..-.., +8:u04:5.6., +8:u05:5.7., +8:u06:5.8., +9:u08:5.10., +9:u01:Named, +18:u02:Classification, +12:u03:Set-Only, +16:u08:Interpreting, +8:u12:5.6., +8:u13:5.7., +8:u14:5.8., +7:u22:5.6, +8:u23:5.6., +20:uI0:..--............, +9:uI1:..-.., +8:uI2:..-., +8:u03:5.6., +8:u04:5.7., +8:u05:5.8., +8:u07:5.9., +9:u08:5.11., +9:u00:Named, +18:u01:Classification, +12:u02:Set-Only, +16:u07:Interpreting, +13:u08:Character, +8:u11:5.6., +8:u12:5.7., +8:u13:5.8., +15:u14:definitions, +7:u22:5.7, +8:u23:5.7., +9:uI0:..-.., +8:uI1:..-., +8:u02:5.6., +8:u03:5.7., +8:u04:5.8., +8:u06:5.9., +9:u07:5.10., +9:u08:5.12., +18:u00:Classification, +12:u01:Set-Only, +16:u06:Interpreting, +13:u07:Character, +13:u08:Directory, +8:u10:5.6., +8:u11:5.7., +8:u12:5.8., +15:u13:definitions, +8:u14:5.9., +7:u22:5.8, +8:u23:5.8., +8:uI0:..-., +8:u01:5.6., +8:u02:5.7., +8:u03:5.8., +8:u05:5.9., +9:u06:5.10., +9:u07:5.11., +9:u08:5.13., +12:u00:Set-Only, +16:u05:Interpreting, +13:u06:Character, +13:u07:Directory, +8:u08:pNFS, +8:u10:5.7., +8:u11:5.8., +15:u12:definitions, +8:u13:5.9., +9:u14:5.10., +17:uI2:............., +8:u00:5.6., +8:u01:5.7., +8:u02:5.8., +8:u04:5.9., +9:u05:5.10., +9:u06:5.11., +9:u07:5.12., +16:u04:Interpreting, +13:u05:Character, +13:u06:Directory, +8:u07:pNFS, +13:u08:Retention, +8:u10:5.8., +15:u11:definitions, +8:u12:5.9., +9:u13:5.10., +9:u14:5.11., +7:u22:5.9, +8:u23:5.9., +17:uI1:............., +8:u00:5.7., +8:u01:5.8., +8:u03:5.9., +9:u04:5.10., +9:u05:5.11., +9:u06:5.12., +9:u07:5.13., +16:u03:Interpreting, +13:u04:Character, +13:u05:Directory, +8:u06:pNFS, +13:u07:Retention, +10:u08:Access, +15:u10:definitions, +8:u11:5.9., +9:u12:5.10., +9:u13:5.11., +9:u14:5.12., +8:u23:5.10, +17:uI0:............., +8:u00:5.8., +8:u02:5.9., +9:u03:5.10., +9:u04:5.11., +9:u05:5.12., +9:u06:5.13., +16:u02:Interpreting, +13:u03:Character, +13:u04:Directory, +8:u05:pNFS, +13:u06:Retention, +10:u07:Access, +9:u08:Goals, +8:u10:5.9., +9:u11:5.10., +9:u12:5.11., +9:u13:5.12., +9:u14:5.13., +8:u23:5.11, +8:u01:5.9., +9:u02:5.10., +9:u03:5.11., +9:u04:5.12., +9:u05:5.13., +16:u01:Interpreting, +13:u02:Character, +13:u03:Directory, +8:u04:pNFS, +13:u05:Retention, +10:u06:Access, +9:u07:Goals, +9:u10:5.10., +9:u11:5.11., +9:u12:5.12., +9:u13:5.13., +8:u23:5.12, +8:u00:5.9., +9:u01:5.10., +9:u02:5.11., +9:u03:5.12., +9:u04:5.13., +16:u00:Interpreting, +13:u01:Character, +13:u02:Directory, +8:u03:pNFS, +13:u04:Retention, +10:u05:Access, +9:u06:Goals, +10:u08:Common, +9:u10:5.11., +9:u11:5.12., +9:u12:5.13., +8:u23:5.13, +9:u00:5.10., +9:u01:5.11., +9:u02:5.12., +9:u03:5.13., +13:u00:Character, +13:u01:Directory, +8:u02:pNFS, +13:u03:Retention, +10:u04:Access, +9:u05:Goals, +10:u07:Common, +9:u10:5.12., +9:u11:5.13., +9:u00:5.11., +9:u01:5.12., +9:u02:5.13., +13:u00:Directory, +8:u01:pNFS, +13:u02:Retention, +10:u03:Access, +9:u04:Goals, +10:u06:Common, +17:u08:Single-Server, +9:u10:5.13., +9:u00:5.12., +9:u01:5.13., +8:u00:pNFS, +13:u01:Retention, +10:u02:Access, +9:u03:Goals, +10:u05:Common, +17:u07:Single-Server, +9:u00:5.13., +13:u00:Retention, +10:u01:Access, +9:u02:Goals, +10:u04:Common, +17:u06:Single-Server, +12:u08:Browsing, +8:u08:7.4., +10:u00:Access, +9:u01:Goals, +10:u03:Common, +17:u05:Single-Server, +12:u07:Browsing, +25:uI2:.-..................., +8:u08:7.5., +9:u00:Goals, +10:u02:Common, +17:u04:Single-Server, +12:u06:Browsing, +25:uI1:.-..................., +8:u07:7.4., +8:u08:7.6., +10:u01:Common, +17:u03:Single-Server, +12:u05:Browsing, +25:uI0:.-..................., +8:u06:7.4., +8:u07:7.5., +8:u08:7.7., +10:u00:Common, +17:u02:Single-Server, +12:u04:Browsing, +12:u08:Exported, +8:u14:7.4., +8:u05:7.4., +8:u06:7.5., +8:u07:7.6., +8:u08:7.8., +17:u01:Single-Server, +12:u03:Browsing, +12:u07:Exported, +9:u08:Mount, +8:u13:7.4., +8:u14:7.5., +8:u04:7.4., +8:u05:7.5., +8:u06:7.6., +8:u07:7.7., +17:u00:Single-Server, +12:u02:Browsing, +12:u06:Exported, +9:u07:Mount, +8:u12:7.4., +8:u13:7.5., +8:u14:7.6., +7:u22:7.4, +8:u23:7.4., +8:u03:7.4., +8:u04:7.5., +8:u05:7.6., +8:u06:7.7., +8:u07:7.8., +12:u01:Browsing, +12:u05:Exported, +9:u06:Mount, +9:u08:State, +8:u11:7.4., +8:u12:7.5., +8:u13:7.6., +8:u14:7.7., +7:u22:7.5, +8:u23:7.5., +8:u02:7.4., +8:u03:7.5., +8:u04:7.6., +8:u05:7.7., +8:u06:7.8., +12:u00:Browsing, +12:u04:Exported, +9:u05:Mount, +9:u07:State, +8:u10:7.4., +8:u11:7.5., +8:u12:7.6., +8:u13:7.7., +8:u14:7.8., +7:u22:7.6, +8:u23:7.6., +8:u01:7.4., +8:u02:7.5., +8:u03:7.6., +8:u04:7.7., +8:u05:7.8., +8:u08:8.3., +12:u03:Exported, +9:u04:Mount, +9:u06:State, +11:u08:Stateid, +8:u10:7.5., +8:u11:7.6., +8:u12:7.7., +8:u13:7.8., +7:u22:7.7, +8:u23:7.7., +8:u00:7.4., +8:u01:7.5., +8:u02:7.6., +8:u03:7.7., +8:u04:7.8., +8:u08:8.4., +12:u02:Exported, +9:u03:Mount, +9:u05:State, +11:u07:Stateid, +9:u08:Lease, +8:u10:7.6., +8:u11:7.7., +8:u12:7.8., +7:u22:7.8, +8:u23:7.8., +8:u00:7.5., +8:u01:7.6., +8:u02:7.7., +8:u03:7.8., +8:u07:8.3., +8:u08:8.5., +12:u01:Exported, +9:u02:Mount, +9:u04:State, +11:u06:Stateid, +9:u07:Lease, +9:u08:Crash, +8:u10:7.7., +8:u11:7.8., +8:u00:7.6., +8:u01:7.7., +8:u02:7.8., +8:u06:8.3., +8:u07:8.4., +8:u08:8.6., +12:u00:Exported, +9:u01:Mount, +9:u03:State, +11:u05:Stateid, +9:u06:Lease, +9:u07:Crash, +8:u10:7.8., +8:u14:8.3., +8:u00:7.7., +8:u01:7.8., +8:u05:8.3., +8:u06:8.4., +8:u07:8.5., +8:u08:8.7., +9:u00:Mount, +9:u02:State, +11:u04:Stateid, +9:u05:Lease, +9:u06:Crash, +9:u08:Short, +8:u13:8.3., +8:u14:8.4., +8:u00:7.8., +8:u04:8.3., +8:u05:8.4., +8:u06:8.5., +8:u07:8.6., +14:u08:Expiration, +9:u01:State, +11:u03:Stateid, +9:u04:Lease, +9:u05:Crash, +9:u07:Short, +11:u08:Clocks,, +8:u12:8.3., +8:u13:8.4., +8:u14:8.5., +7:u22:8.3, +8:u23:8.3., +8:u03:8.3., +8:u04:8.4., +8:u05:8.5., +8:u06:8.6., +8:u07:8.7., +8:u08:8.8., +9:u00:State, +11:u02:Stateid, +9:u03:Lease, +9:u04:Crash, +9:u06:Short, +11:u07:Clocks,, +8:u11:8.3., +8:u12:8.4., +8:u13:8.5., +8:u14:8.6., +7:u22:8.4, +8:u23:8.4., +8:u02:8.3., +8:u03:8.4., +8:u04:8.5., +8:u05:8.6., +8:u06:8.7., +14:u07:Expiration, +11:u01:Stateid, +9:u02:Lease, +9:u03:Crash, +9:u05:Short, +11:u06:Clocks,, +12:u08:Obsolete, +8:u10:8.3., +8:u11:8.4., +8:u12:8.5., +8:u13:8.6., +8:u14:8.7., +7:u22:8.5, +8:u23:8.5., +8:u01:8.3., +8:u02:8.4., +8:u03:8.5., +8:u04:8.6., +8:u05:8.7., +14:u06:Expiration, +8:u07:8.8., +11:u00:Stateid, +9:u01:Lease, +9:u02:Crash, +9:u04:Short, +11:u05:Clocks,, +12:u07:Obsolete, +8:u10:8.4., +8:u11:8.5., +8:u12:8.6., +8:u13:8.7., +14:u14:expiration, +7:u22:8.6, +8:u23:8.6., +8:uI2:..,,, +8:u00:8.3., +8:u01:8.4., +8:u02:8.5., +8:u03:8.6., +8:u04:8.7., +14:u05:Expiration, +8:u06:8.8., +9:u00:Lease, +9:u01:Crash, +9:u03:Short, +11:u04:Clocks,, +12:u06:Obsolete, +9:u08:Opens, +8:u10:8.5., +8:u11:8.6., +8:u12:8.7., +14:u13:expiration, +8:u14:8.8., +7:u22:8.7, +8:u23:8.7., +8:uI1:..,,, +8:u00:8.4., +8:u01:8.5., +8:u02:8.6., +8:u03:8.7., +14:u04:Expiration, +8:u05:8.8., +8:u08:9.3., +9:u00:Crash, +9:u02:Short, +11:u03:Clocks,, +12:u05:Obsolete, +9:u07:Opens, +8:u08:Lock, +8:u10:8.6., +8:u11:8.7., +14:u12:expiration, +8:u13:8.8., +8:uI0:..,,, +8:u00:8.5., +8:u01:8.6., +8:u02:8.7., +14:u03:Expiration, +8:u04:8.8., +8:u08:9.4., +9:u01:Short, +11:u02:Clocks,, +12:u04:Obsolete, +9:u06:Opens, +8:u07:Lock, +13:u08:Upgrading, +8:u10:8.7., +14:u11:expiration, +8:u12:8.8., +7:u22:8.8, +8:u23:8.8., +8:u00:8.6., +8:u01:8.7., +14:u02:Expiration, +8:u03:8.8., +8:u07:9.3., +8:u08:9.5., +9:u00:Short, +11:u01:Clocks,, +12:u03:Obsolete, +9:u05:Opens, +8:u06:Lock, +13:u07:Upgrading, +14:u10:expiration, +8:u11:8.8., +22:uI2:..-..............., +8:u00:8.7., +14:u01:Expiration, +8:u02:8.8., +8:u06:9.3., +8:u07:9.4., +8:u08:9.6., +11:u00:Clocks,, +12:u02:Obsolete, +9:u04:Opens, +8:u05:Lock, +13:u06:Upgrading, +10:u08:Issues, +8:u10:8.8., +8:u14:9.3., +22:uI1:..-..............., +14:u00:Expiration, +8:u01:8.8., +8:u05:9.3., +8:u06:9.4., +8:u07:9.5., +12:u01:Obsolete, +9:u03:Opens, +8:u04:Lock, +13:u05:Upgrading, +10:u07:Issues, +12:u08:Blocking, +8:u13:9.3., +8:u14:9.4., +22:uI0:..-..............., +8:u00:8.8., +8:u04:9.3., +8:u05:9.4., +8:u06:9.5., +8:u07:9.6., +12:u00:Obsolete, +9:u02:Opens, +8:u03:Lock, +13:u04:Upgrading, +10:u06:Issues, +12:u07:Blocking, +8:u12:9.3., +8:u13:9.4., +8:u14:9.5., +15:uI2:..-........, +8:u03:9.3., +8:u04:9.4., +8:u05:9.5., +8:u06:9.6., +9:u01:Opens, +8:u02:Lock, +13:u03:Upgrading, +10:u05:Issues, +12:u06:Blocking, +8:u11:9.3., +8:u12:9.4., +8:u13:9.5., +8:u14:9.6., +7:u22:9.4, +8:u23:9.4., +15:uI1:..-........, +19:uI2:..-............, +8:u02:9.3., +8:u03:9.4., +8:u04:9.5., +8:u05:9.6., +9:u00:Opens, +8:u01:Lock, +13:u02:Upgrading, +10:u04:Issues, +12:u05:Blocking, +8:u10:9.3., +8:u11:9.4., +8:u12:9.5., +8:u13:9.6., +7:u22:9.5, +8:u23:9.5., +15:uI0:..-........, +19:uI1:..-............, +8:u01:9.3., +8:u02:9.4., +8:u03:9.5., +8:u04:9.6., +8:u00:Lock, +13:u01:Upgrading, +10:u03:Issues, +12:u04:Blocking, +8:u10:9.4., +8:u11:9.5., +8:u12:9.6., +7:u22:9.6, +8:u23:9.6., +19:uI0:..-............, +8:u00:9.3., +8:u01:9.4., +8:u02:9.5., +8:u03:9.6., +13:u00:Upgrading, +10:u02:Issues, +12:u03:Blocking, +8:u10:9.5., +8:u11:9.6., +8:u00:9.4., +8:u01:9.5., +8:u02:9.6., +8:u08:9.7., +10:u01:Issues, +12:u02:Blocking, +8:u10:9.6., +8:u00:9.5., +8:u01:9.6., +8:u08:9.8., +10:u00:Issues, +12:u01:Blocking, +9:u08:Share, +8:u00:9.6., +8:u07:9.7., +8:u08:9.9., +12:u00:Blocking, +9:u07:Share, +14:u08:OPEN/CLOSE, +8:u06:9.7., +8:u07:9.8., +9:u08:9.10., +9:u06:Share, +14:u07:OPEN/CLOSE, +8:u08:Open, +8:u14:9.7., +8:u05:9.7., +8:u06:9.8., +8:u07:9.9., +9:u08:9.11., +9:u05:Share, +14:u06:OPEN/CLOSE, +8:u07:Open, +12:u08:Parallel, +8:u13:9.7., +8:u14:9.8., +8:u04:9.7., +8:u05:9.8., +8:u06:9.9., +9:u07:9.10., +9:u04:Share, +14:u05:OPEN/CLOSE, +8:u06:Open, +12:u07:Parallel, +11:u08:Reclaim, +8:u12:9.7., +8:u13:9.8., +8:u14:9.9., +7:u22:9.7, +8:u23:9.7., +25:uI2:../.................., +8:u03:9.7., +8:u04:9.8., +8:u05:9.9., +9:u06:9.10., +9:u07:9.11., +9:u03:Share, +14:u04:OPEN/CLOSE, +8:u05:Open, +12:u06:Parallel, +11:u07:Reclaim, +15:u08:Client-Side, +8:u11:9.7., +8:u12:9.8., +8:u13:9.9., +9:u14:9.10., +7:u22:9.8, +8:u23:9.8., +25:uI1:../.................., +8:u02:9.7., +8:u03:9.8., +8:u04:9.9., +9:u05:9.10., +9:u06:9.11., +9:u02:Share, +14:u03:OPEN/CLOSE, +8:u04:Open, +12:u05:Parallel, +11:u06:Reclaim, +15:u07:Client-Side, +15:u08:Performance, +8:u10:9.7., +8:u11:9.8., +8:u12:9.9., +9:u13:9.10., +9:u14:9.11., +7:u22:9.9, +8:u23:9.9., +25:uI0:../.................., +8:u01:9.7., +8:u02:9.8., +8:u03:9.9., +9:u04:9.10., +9:u05:9.11., +9:u01:Share, +14:u02:OPEN/CLOSE, +8:u03:Open, +12:u04:Parallel, +11:u05:Reclaim, +15:u06:Client-Side, +15:u07:Performance, +14:u08:Delegation, +8:u10:9.8., +8:u11:9.9., +9:u12:9.10., +9:u13:9.11., +8:u23:9.10, +17:uI2:..-.........., +8:u00:9.7., +8:u01:9.8., +8:u02:9.9., +9:u03:9.10., +9:u04:9.11., +9:u00:Share, +14:u01:OPEN/CLOSE, +8:u02:Open, +12:u03:Parallel, +11:u04:Reclaim, +15:u05:Client-Side, +15:u06:Performance, +14:u07:Delegation, +8:u08:Data, +8:u10:9.9., +9:u11:9.10., +9:u12:9.11., +8:u23:9.11, +17:uI1:..-.........., +27:uI2:.-....................., +8:u00:9.8., +8:u01:9.9., +9:u02:9.10., +9:u03:9.11., +9:u08:10.5., +14:u00:OPEN/CLOSE, +8:u01:Open, +12:u02:Parallel, +11:u03:Reclaim, +15:u04:Client-Side, +15:u05:Performance, +14:u06:Delegation, +8:u07:Data, +9:u10:9.10., +9:u11:9.11., +17:uI0:..-.........., +27:uI1:.-....................., +12:uI2:..-....., +8:u00:9.9., +9:u01:9.10., +9:u02:9.11., +9:u08:10.6., +8:u00:Open, +12:u01:Parallel, +11:u02:Reclaim, +15:u03:Client-Side, +15:u04:Performance, +14:u05:Delegation, +8:u06:Data, +9:u10:9.11., +27:uI0:.-....................., +12:uI1:..-....., +9:u00:9.10., +9:u01:9.11., +9:u07:10.5., +9:u08:10.7., +12:u00:Parallel, +11:u01:Reclaim, +15:u02:Client-Side, +15:u03:Performance, +14:u04:Delegation, +8:u05:Data, +12:uI0:..-....., +9:u00:9.11., +9:u06:10.5., +9:u07:10.6., +9:u08:10.8., +11:u00:Reclaim, +15:u01:Client-Side, +15:u02:Performance, +14:u03:Delegation, +8:u04:Data, +9:u14:10.5., +9:u05:10.5., +9:u06:10.6., +9:u07:10.7., +9:u08:10.9., +15:u00:Client-Side, +15:u01:Performance, +14:u02:Delegation, +8:u03:Data, +9:u13:10.5., +9:u14:10.6., +9:u04:10.5., +9:u05:10.6., +9:u06:10.7., +9:u07:10.8., +15:u00:Performance, +14:u01:Delegation, +8:u02:Data, +9:u12:10.5., +9:u13:10.6., +9:u14:10.7., +8:u23:10.5, +9:u03:10.5., +9:u04:10.6., +9:u05:10.7., +9:u06:10.8., +9:u07:10.9., +9:u08:11.1., +14:u00:Delegation, +8:u01:Data, +16:u08:Multi-Server, +9:u11:10.5., +9:u12:10.6., +9:u13:10.7., +9:u14:10.8., +8:u23:10.6, +9:u02:10.5., +9:u03:10.6., +9:u04:10.7., +9:u05:10.8., +9:u06:10.9., +9:u08:11.2., +8:u00:Data, +16:u07:Multi-Server, +9:u10:10.5., +9:u11:10.6., +9:u12:10.7., +9:u13:10.8., +9:u14:10.9., +8:u23:10.7, +9:u01:10.5., +9:u02:10.6., +9:u03:10.7., +9:u04:10.8., +9:u05:10.9., +9:u07:11.1., +9:u08:11.3., +16:u06:Multi-Server, +9:u10:10.6., +9:u11:10.7., +9:u12:10.8., +9:u13:10.9., +8:u23:10.8, +9:u00:10.5., +9:u01:10.6., +9:u02:10.7., +9:u03:10.8., +9:u04:10.9., +9:u06:11.1., +9:u07:11.2., +9:u08:11.4., +16:u05:Multi-Server, +9:u10:10.7., +9:u11:10.8., +9:u12:10.9., +9:u14:11.1., +8:u23:10.9, +9:u00:10.6., +9:u01:10.7., +9:u02:10.8., +9:u03:10.9., +9:u05:11.1., +9:u06:11.2., +9:u07:11.3., +9:u08:11.5., +16:u04:Multi-Server, +11:u08:Getting, +9:u10:10.8., +9:u11:10.9., +9:u13:11.1., +9:u14:11.2., +9:u00:10.7., +9:u01:10.8., +9:u02:10.9., +9:u04:11.1., +9:u05:11.2., +9:u06:11.3., +9:u07:11.4., +9:u08:11.6., +16:u03:Multi-Server, +11:u07:Getting, +8:u08:Uses, +9:u10:10.9., +9:u12:11.1., +9:u13:11.2., +9:u14:11.3., +8:u23:11.1, +9:u00:10.8., +9:u01:10.9., +9:u03:11.1., +9:u04:11.2., +9:u05:11.3., +9:u06:11.4., +9:u07:11.5., +9:u08:11.7., +16:u02:Multi-Server, +11:u06:Getting, +8:u07:Uses, +9:u08:Users, +9:u11:11.1., +9:u12:11.2., +9:u13:11.3., +9:u14:11.4., +8:u23:11.2, +9:u00:10.9., +9:u02:11.1., +9:u03:11.2., +9:u04:11.3., +9:u05:11.4., +9:u06:11.5., +9:u07:11.6., +9:u08:11.8., +16:u01:Multi-Server, +11:u05:Getting, +8:u06:Uses, +9:u07:Users, +9:u10:11.1., +9:u11:11.2., +9:u12:11.3., +9:u13:11.4., +9:u14:11.5., +8:u23:11.3, +9:u01:11.1., +9:u02:11.2., +9:u03:11.3., +9:u04:11.4., +9:u05:11.5., +9:u06:11.6., +9:u07:11.7., +9:u08:11.9., +16:u00:Multi-Server, +11:u04:Getting, +8:u05:Uses, +9:u06:Users, +9:u10:11.2., +9:u11:11.3., +9:u12:11.4., +9:u13:11.5., +9:u14:11.6., +8:u23:11.4, +14:uI2:.........., +9:u00:11.1., +9:u01:11.2., +9:u02:11.3., +9:u03:11.4., +9:u04:11.5., +9:u05:11.6., +9:u06:11.7., +9:u07:11.8., +10:u08:11.10., +11:u03:Getting, +8:u04:Uses, +9:u05:Users, +13:u08:Effecting, +9:u10:11.3., +9:u11:11.4., +9:u12:11.5., +9:u13:11.6., +9:u14:11.7., +8:u23:11.5, +14:uI1:.........., +13:uI2:..-......, +9:u00:11.2., +9:u01:11.3., +9:u02:11.4., +9:u03:11.5., +9:u04:11.6., +9:u05:11.7., +9:u06:11.8., +9:u07:11.9., +10:u08:11.11., +11:u02:Getting, +8:u03:Uses, +9:u04:Users, +13:u07:Effecting, +9:u10:11.4., +9:u11:11.5., +9:u12:11.6., +9:u13:11.7., +9:u14:11.8., +8:u23:11.6, +14:uI0:.........., +13:uI1:..-......, +16:uI2:..-........., +9:u00:11.3., +9:u01:11.4., +9:u02:11.5., +9:u03:11.6., +9:u04:11.7., +9:u05:11.8., +9:u06:11.9., +10:u07:11.10., +10:u08:11.12., +11:u01:Getting, +8:u02:Uses, +9:u03:Users, +13:u06:Effecting, +16:u08:Transferring, +9:u10:11.5., +9:u11:11.6., +9:u12:11.7., +9:u13:11.8., +9:u14:11.9., +8:u23:11.7, +13:uI0:..-......, +16:uI1:..-........., +9:u00:11.4., +9:u01:11.5., +9:u02:11.6., +9:u03:11.7., +9:u04:11.8., +9:u05:11.9., +10:u06:11.10., +10:u07:11.11., +10:u08:11.13., +11:u00:Getting, +8:u01:Uses, +9:u02:Users, +13:u05:Effecting, +16:u07:Transferring, +9:u10:11.6., +9:u11:11.7., +9:u12:11.8., +9:u13:11.9., +10:u14:11.10., +8:u23:11.8, +16:uI0:..-........., +9:u00:11.5., +9:u01:11.6., +9:u02:11.7., +9:u03:11.8., +9:u04:11.9., +10:u05:11.10., +10:u06:11.11., +10:u07:11.12., +10:u08:11.14., +8:u00:Uses, +9:u01:Users, +13:u04:Effecting, +16:u06:Transferring, +9:u10:11.7., +9:u11:11.8., +9:u12:11.9., +10:u13:11.10., +10:u14:11.11., +8:u23:11.9, +9:u00:11.6., +9:u01:11.7., +9:u02:11.8., +9:u03:11.9., +10:u04:11.10., +10:u05:11.11., +10:u06:11.12., +10:u07:11.13., +10:u08:11.15., +9:u00:Users, +13:u03:Effecting, +16:u05:Transferring, +9:u10:11.8., +9:u11:11.9., +10:u12:11.10., +10:u13:11.11., +10:u14:11.12., +9:u00:11.7., +9:u01:11.8., +9:u02:11.9., +10:u03:11.10., +10:u04:11.11., +10:u05:11.12., +10:u06:11.13., +10:u07:11.14., +10:u08:11.16., +13:u02:Effecting, +16:u04:Transferring, +9:u10:11.9., +10:u11:11.10., +10:u12:11.11., +10:u13:11.12., +10:u14:11.13., +9:u00:11.8., +9:u01:11.9., +10:u02:11.10., +10:u03:11.11., +10:u04:11.12., +10:u05:11.13., +10:u06:11.14., +10:u07:11.15., +10:u08:11.17., +13:u01:Effecting, +16:u03:Transferring, +10:u10:11.10., +10:u11:11.11., +10:u12:11.12., +10:u13:11.13., +10:u14:11.14., +9:u00:11.9., +10:u01:11.10., +10:u02:11.11., +10:u03:11.12., +10:u04:11.13., +10:u05:11.14., +10:u06:11.15., +10:u07:11.16., +13:u00:Effecting, +16:u02:Transferring, +10:u10:11.11., +10:u11:11.12., +10:u12:11.13., +10:u13:11.14., +10:u14:11.15., +10:u00:11.10., +10:u01:11.11., +10:u02:11.12., +10:u03:11.13., +10:u04:11.14., +10:u05:11.15., +10:u06:11.16., +10:u07:11.17., +9:u08:12.1., +16:u01:Transferring, +10:u10:11.12., +10:u11:11.13., +10:u12:11.14., +10:u13:11.15., +10:u14:11.16., +10:u00:11.11., +10:u01:11.12., +10:u02:11.13., +10:u03:11.14., +10:u04:11.15., +10:u05:11.16., +10:u06:11.17., +9:u08:12.2., +16:u00:Transferring, +10:u10:11.13., +10:u11:11.14., +10:u12:11.15., +10:u13:11.16., +10:u14:11.17., +10:u00:11.12., +10:u01:11.13., +10:u02:11.14., +10:u03:11.15., +10:u04:11.16., +10:u05:11.17., +9:u07:12.1., +9:u08:12.3., +10:u10:11.14., +10:u11:11.15., +10:u12:11.16., +10:u13:11.17., +10:u00:11.13., +10:u01:11.14., +10:u02:11.15., +10:u03:11.16., +10:u04:11.17., +9:u06:12.1., +9:u07:12.2., +9:u08:12.4., +10:u10:11.15., +10:u11:11.16., +10:u12:11.17., +9:u14:12.1., +28:uI2:.()....................., +10:u00:11.14., +10:u01:11.15., +10:u02:11.16., +10:u03:11.17., +9:u05:12.1., +9:u06:12.2., +9:u07:12.3., +9:u08:12.5., +10:u10:11.16., +10:u11:11.17., +9:u13:12.1., +9:u14:12.2., +28:uI1:.()....................., +10:u00:11.15., +10:u01:11.16., +10:u02:11.17., +9:u04:12.1., +9:u05:12.2., +9:u06:12.3., +9:u07:12.4., +9:u08:12.6., +10:u08:Layout, +10:u10:11.17., +9:u12:12.1., +9:u13:12.2., +9:u14:12.3., +8:u23:12.1, +28:uI0:.()....................., +10:u00:11.16., +10:u01:11.17., +9:u03:12.1., +9:u04:12.2., +9:u05:12.3., +9:u06:12.4., +9:u07:12.5., +9:u08:12.7., +10:u07:Layout, +9:u11:12.1., +9:u12:12.2., +9:u13:12.3., +9:u14:12.4., +8:u23:12.2, +10:u00:11.17., +9:u02:12.1., +9:u03:12.2., +9:u04:12.3., +9:u05:12.4., +9:u06:12.5., +9:u07:12.6., +9:u08:12.8., +10:u06:Layout, +12:u08:Recovery, +9:u10:12.1., +9:u11:12.2., +9:u12:12.3., +9:u13:12.4., +9:u14:12.5., +8:u23:12.3, +9:u01:12.1., +9:u02:12.2., +9:u03:12.3., +9:u04:12.4., +9:u05:12.5., +9:u06:12.6., +9:u07:12.7., +9:u08:12.9., +10:u05:Layout, +12:u07:Recovery, +12:u08:Metadata, +9:u10:12.2., +9:u11:12.3., +9:u12:12.4., +9:u13:12.5., +9:u14:12.6., +8:u23:12.4, +9:u00:12.1., +9:u01:12.2., +9:u02:12.3., +9:u03:12.4., +9:u04:12.5., +9:u05:12.6., +9:u06:12.7., +9:u07:12.8., +10:u04:Layout, +12:u06:Recovery, +12:u07:Metadata, +9:u10:12.3., +9:u11:12.4., +9:u12:12.5., +9:u13:12.6., +9:u14:12.7., +8:u23:12.5, +9:u00:12.2., +9:u01:12.3., +9:u02:12.4., +9:u03:12.5., +9:u04:12.6., +9:u05:12.7., +9:u06:12.8., +9:u07:12.9., +10:u03:Layout, +12:u05:Recovery, +12:u06:Metadata, +9:u10:12.4., +9:u11:12.5., +9:u12:12.6., +9:u13:12.7., +9:u14:12.8., +8:u23:12.6, +9:u00:12.3., +9:u01:12.4., +9:u02:12.5., +9:u03:12.6., +9:u04:12.7., +9:u05:12.8., +9:u06:12.9., +10:u02:Layout, +12:u04:Recovery, +12:u05:Metadata, +9:u10:12.5., +9:u11:12.6., +9:u12:12.7., +9:u13:12.8., +9:u14:12.9., +8:u23:12.7, +9:u00:12.4., +9:u01:12.5., +9:u02:12.6., +9:u03:12.7., +9:u04:12.8., +9:u05:12.9., +10:u01:Layout, +12:u03:Recovery, +12:u04:Metadata, +9:u10:12.6., +9:u11:12.7., +9:u12:12.8., +9:u13:12.9., +8:u23:12.8, +9:u00:12.5., +9:u01:12.6., +9:u02:12.7., +9:u03:12.8., +9:u04:12.9., +10:u00:Layout, +12:u02:Recovery, +12:u03:Metadata, +9:u10:12.7., +9:u11:12.8., +9:u12:12.9., +8:u23:12.9, +8:uI2:..:., +9:u00:12.6., +9:u01:12.7., +9:u02:12.8., +9:u03:12.9., +12:u01:Recovery, +12:u02:Metadata, +9:u10:12.8., +9:u11:12.9., +8:uI1:..:., +9:u00:12.7., +9:u01:12.8., +9:u02:12.9., +12:u00:Recovery, +12:u01:Metadata, +9:u10:12.9., +8:uI0:..:., +9:u00:12.8., +9:u01:12.9., +12:u00:Metadata, +9:u00:12.9., +9:u08:13.7., +14:u08:Operations, +9:u08:13.8., +14:u07:Operations, +10:u08:COMMIT, +9:u07:13.7., +9:u08:13.9., +14:u06:Operations, +10:u07:COMMIT, +9:u06:13.7., +9:u07:13.8., +10:u08:13.10., +14:u05:Operations, +10:u06:COMMIT, +9:u14:13.7., +9:u05:13.7., +9:u06:13.8., +9:u07:13.9., +10:u08:13.11., +14:u04:Operations, +10:u05:COMMIT, +9:u13:13.7., +9:u14:13.8., +9:u04:13.7., +9:u05:13.8., +9:u06:13.9., +10:u07:13.10., +10:u08:13.12., +14:u03:Operations, +10:u04:COMMIT, +9:u12:13.7., +9:u13:13.8., +9:u14:13.9., +8:u23:13.7, +9:u03:13.7., +9:u04:13.8., +9:u05:13.9., +10:u06:13.10., +10:u07:13.11., +14:u02:Operations, +10:u03:COMMIT, +9:u11:13.7., +9:u12:13.8., +9:u13:13.9., +10:u14:13.10., +8:u23:13.8, +9:u02:13.7., +9:u03:13.8., +9:u04:13.9., +10:u05:13.10., +10:u06:13.11., +10:u07:13.12., +9:u08:14.1., +14:u01:Operations, +10:u02:COMMIT, +24:u08:Internationalization, +9:u10:13.7., +9:u11:13.8., +9:u12:13.9., +10:u13:13.10., +10:u14:13.11., +8:u23:13.9, +9:u01:13.7., +9:u02:13.8., +9:u03:13.9., +10:u04:13.10., +10:u05:13.11., +10:u06:13.12., +9:u08:14.2., +14:u00:Operations, +10:u01:COMMIT, +24:u07:Internationalization, +14:u08:Stringprep, +9:u10:13.8., +9:u11:13.9., +10:u12:13.10., +10:u13:13.11., +10:u14:13.12., +9:u00:13.7., +9:u01:13.8., +9:u02:13.9., +10:u03:13.10., +10:u04:13.11., +10:u05:13.12., +9:u07:14.1., +9:u08:14.3., +10:u00:COMMIT, +24:u06:Internationalization, +14:u07:Stringprep, +9:u10:13.9., +10:u11:13.10., +10:u12:13.11., +10:u13:13.12., +9:u00:13.8., +9:u01:13.9., +10:u02:13.10., +10:u03:13.11., +10:u04:13.12., +9:u06:14.1., +9:u07:14.2., +9:u08:14.4., +24:u05:Internationalization, +14:u06:Stringprep, +10:u10:13.10., +10:u11:13.11., +10:u12:13.12., +9:u14:14.1., +9:u00:13.9., +10:u01:13.10., +10:u02:13.11., +10:u03:13.12., +9:u05:14.1., +9:u06:14.2., +9:u07:14.3., +9:u08:14.5., +24:u04:Internationalization, +14:u05:Stringprep, +9:u08:UTF-8, +10:u10:13.11., +10:u11:13.12., +9:u13:14.1., +9:u14:14.2., +10:u00:13.10., +10:u01:13.11., +10:u02:13.12., +9:u04:14.1., +9:u05:14.2., +9:u06:14.3., +9:u07:14.4., +24:u03:Internationalization, +14:u04:Stringprep, +9:u07:UTF-8, +10:u10:13.12., +9:u12:14.1., +9:u13:14.2., +9:u14:14.3., +8:u23:14.1, +10:u00:13.11., +10:u01:13.12., +9:u03:14.1., +9:u04:14.2., +9:u05:14.3., +9:u06:14.4., +9:u07:14.5., +9:u08:15.1., +24:u02:Internationalization, +14:u03:Stringprep, +9:u06:UTF-8, +9:u08:Error, +9:u11:14.1., +9:u12:14.2., +9:u13:14.3., +9:u14:14.4., +8:u23:14.2, +10:u00:13.12., +9:u02:14.1., +9:u03:14.2., +9:u04:14.3., +9:u05:14.4., +9:u06:14.5., +9:u08:15.2., +24:u01:Internationalization, +14:u02:Stringprep, +9:u05:UTF-8, +9:u07:Error, +9:u10:14.1., +9:u11:14.2., +9:u12:14.3., +9:u13:14.4., +9:u14:14.5., +8:u23:14.3, +9:u01:14.1., +9:u02:14.2., +9:u03:14.3., +9:u04:14.4., +9:u05:14.5., +9:u07:15.1., +9:u08:15.3., +24:u00:Internationalization, +14:u01:Stringprep, +9:u04:UTF-8, +9:u06:Error, +9:u10:14.2., +9:u11:14.3., +9:u12:14.4., +9:u13:14.5., +8:u23:14.4, +25:uI2:..-.................., +9:u00:14.1., +9:u01:14.2., +9:u02:14.3., +9:u03:14.4., +9:u04:14.5., +9:u06:15.1., +9:u07:15.2., +9:u08:15.4., +14:u00:Stringprep, +9:u03:UTF-8, +9:u05:Error, +12:u08:Callback, +9:u10:14.3., +9:u11:14.4., +9:u12:14.5., +9:u14:15.1., +8:u23:14.5, +25:uI1:..-.................., +9:u00:14.2., +9:u01:14.3., +9:u02:14.4., +9:u03:14.5., +9:u05:15.1., +9:u06:15.2., +9:u07:15.3., +9:u02:UTF-8, +9:u04:Error, +12:u07:Callback, +10:u08:Errors, +9:u10:14.4., +9:u11:14.5., +9:u13:15.1., +9:u14:15.2., +25:uI0:..-.................., +9:u00:14.3., +9:u01:14.4., +9:u02:14.5., +9:u04:15.1., +9:u05:15.2., +9:u06:15.3., +9:u07:15.4., +9:u01:UTF-8, +9:u03:Error, +12:u06:Callback, +10:u07:Errors, +9:u10:14.5., +9:u12:15.1., +9:u13:15.2., +9:u14:15.3., +8:u23:15.1, +9:u00:14.4., +9:u01:14.5., +9:u03:15.1., +9:u04:15.2., +9:u05:15.3., +9:u06:15.4., +9:u00:UTF-8, +9:u02:Error, +12:u05:Callback, +10:u06:Errors, +13:u08:Procedure, +9:u11:15.1., +9:u12:15.2., +9:u13:15.3., +9:u14:15.4., +8:u23:15.2, +9:u00:14.5., +9:u02:15.1., +9:u03:15.2., +9:u04:15.3., +9:u05:15.4., +7:u08:17., +9:u01:Error, +12:u04:Callback, +10:u05:Errors, +13:u07:Procedure, +9:u10:15.1., +9:u11:15.2., +9:u12:15.3., +9:u13:15.4., +8:u23:15.3, +9:u01:15.1., +9:u02:15.2., +9:u03:15.3., +9:u04:15.4., +7:u08:18., +9:u00:Error, +12:u03:Callback, +10:u04:Errors, +13:u06:Procedure, +15:u08:Operations:, +9:u10:15.2., +9:u11:15.3., +9:u12:15.4., +9:u00:15.1., +9:u01:15.2., +9:u02:15.3., +9:u03:15.4., +7:u07:17., +9:u08:18.1., +12:u02:Callback, +10:u03:Errors, +13:u05:Procedure, +15:u07:Operations:, +9:u10:15.3., +9:u11:15.4., +20:uI2:..:-............, +9:u00:15.2., +9:u01:15.3., +9:u02:15.4., +7:u06:17., +7:u07:18., +9:u08:18.2., +12:u01:Callback, +10:u02:Errors, +13:u04:Procedure, +15:u06:Operations:, +9:u10:15.4., +7:u14:17., +20:uI1:..:-............, +14:uI2:..:-......, +9:u00:15.3., +9:u01:15.4., +7:u05:17., +7:u06:18., +9:u07:18.1., +9:u08:18.3., +12:u00:Callback, +10:u01:Errors, +13:u03:Procedure, +15:u05:Operations:, +7:u13:17., +7:u14:18., +20:uI0:..:-............, +14:uI1:..:-......, +15:uI2:.:,,......., +9:u00:15.4., +7:u04:17., +7:u05:18., +9:u06:18.1., +9:u07:18.2., +9:u08:18.4., +10:u00:Errors, +13:u02:Procedure, +15:u04:Operations:, +7:u12:17., +7:u13:18., +9:u14:18.1., +6:u21:17, +7:u22:17., +7:u23:17., +14:uI0:..:-......, +15:uI1:.:,,......., +7:u03:17., +7:u04:18., +9:u05:18.1., +9:u06:18.2., +9:u07:18.3., +9:u08:18.5., +13:u01:Procedure, +15:u03:Operations:, +7:u11:17., +7:u12:18., +9:u13:18.1., +9:u14:18.2., +6:u21:18, +7:u22:18., +7:u23:18., +15:uI0:.:,,......., +15:uI2:..:-......., +7:u02:17., +7:u03:18., +9:u04:18.1., +9:u05:18.2., +9:u06:18.3., +9:u07:18.4., +13:u00:Procedure, +15:u02:Operations:, +7:u10:17., +7:u11:18., +9:u12:18.1., +9:u13:18.2., +9:u14:18.3., +8:u23:18.1, +15:uI1:..:-......., +7:u01:17., +7:u02:18., +9:u03:18.1., +9:u04:18.2., +9:u05:18.3., +9:u06:18.4., +9:u07:18.5., +9:u08:18.6., +15:u01:Operations:, +7:u10:18., +9:u11:18.1., +9:u12:18.2., +9:u13:18.3., +9:u14:18.4., +8:u23:18.2, +15:uI0:..:-......., +16:uI2:..:-........, +7:u00:17., +7:u01:18., +9:u02:18.1., +9:u03:18.2., +9:u04:18.3., +9:u05:18.4., +9:u06:18.5., +9:u08:18.7., +15:u00:Operations:, +9:u10:18.1., +9:u11:18.2., +9:u12:18.3., +9:u13:18.4., +9:u14:18.5., +8:u23:18.3, +16:uI1:..:-........, +10:uI2:..:--., +7:u00:18., +9:u01:18.1., +9:u02:18.2., +9:u03:18.3., +9:u04:18.4., +9:u05:18.5., +9:u07:18.6., +9:u08:18.8., +9:u10:18.2., +9:u11:18.3., +9:u12:18.4., +9:u13:18.5., +12:u14:recovery, +8:u23:18.4, +16:uI0:..:-........, +10:uI1:..:--., +8:uI2:..:-, +9:u00:18.1., +9:u01:18.2., +9:u02:18.3., +9:u03:18.4., +9:u04:18.5., +9:u06:18.6., +9:u07:18.7., +9:u08:18.9., +9:u10:18.3., +9:u11:18.4., +9:u12:18.5., +12:u13:recovery, +9:u14:18.6., +8:u23:18.5, +10:uI0:..:--., +8:uI1:..:-, +9:u00:18.2., +9:u01:18.3., +9:u02:18.4., +9:u03:18.5., +9:u05:18.6., +9:u06:18.7., +9:u07:18.8., +10:u08:18.10., +9:u10:18.4., +9:u11:18.5., +12:u12:recovery, +9:u13:18.6., +9:u14:18.7., +8:u23:Reco, +8:uI0:..:-, +9:u00:18.3., +9:u01:18.4., +9:u02:18.5., +9:u04:18.6., +9:u05:18.7., +9:u06:18.8., +9:u07:18.9., +10:u08:18.11., +9:u10:18.5., +12:u11:recovery, +9:u12:18.6., +9:u13:18.7., +9:u14:18.8., +8:u23:18.6, +17:uI2:..:-........., +9:u00:18.4., +9:u01:18.5., +9:u03:18.6., +9:u04:18.7., +9:u05:18.8., +9:u06:18.9., +10:u07:18.10., +10:u08:18.12., +12:u10:recovery, +9:u11:18.6., +9:u12:18.7., +9:u13:18.8., +9:u14:18.9., +8:u23:18.7, +17:uI1:..:-........., +9:u00:18.5., +9:u02:18.6., +9:u03:18.7., +9:u04:18.8., +9:u05:18.9., +10:u06:18.10., +10:u07:18.11., +10:u08:18.13., +9:u10:18.6., +9:u11:18.7., +9:u12:18.8., +9:u13:18.9., +10:u14:18.10., +8:u23:18.8, +17:uI0:..:-........., +9:u01:18.6., +9:u02:18.7., +9:u03:18.8., +9:u04:18.9., +10:u05:18.10., +10:u06:18.11., +10:u07:18.12., +10:u08:18.14., +9:u10:18.7., +9:u11:18.8., +9:u12:18.9., +10:u13:18.10., +10:u14:18.11., +8:u23:18.9, +9:u00:18.6., +9:u01:18.7., +9:u02:18.8., +9:u03:18.9., +10:u04:18.10., +10:u05:18.11., +10:u06:18.12., +10:u07:18.13., +10:u08:18.15., +9:u10:18.8., +9:u11:18.9., +10:u12:18.10., +10:u13:18.11., +10:u14:18.12., +18:uI2:..:-.........., +9:u00:18.7., +9:u01:18.8., +9:u02:18.9., +10:u03:18.10., +10:u04:18.11., +10:u05:18.12., +10:u06:18.13., +10:u07:18.14., +10:u08:18.16., +9:u10:18.9., +10:u11:18.10., +10:u12:18.11., +10:u13:18.12., +10:u14:18.13., +18:uI1:..:-.........., +19:uI2:..:-..........., +9:u00:18.8., +9:u01:18.9., +10:u02:18.10., +10:u03:18.11., +10:u04:18.12., +10:u05:18.13., +10:u06:18.14., +10:u07:18.15., +10:u08:18.17., +10:u10:18.10., +10:u11:18.11., +10:u12:18.12., +10:u13:18.13., +10:u14:18.14., +18:uI0:..:-.........., +19:uI1:..:-..........., +9:u00:18.9., +10:u01:18.10., +10:u02:18.11., +10:u03:18.12., +10:u04:18.13., +10:u05:18.14., +10:u06:18.15., +10:u07:18.16., +10:u08:18.18., +10:u10:18.11., +10:u11:18.12., +10:u12:18.13., +10:u13:18.14., +10:u14:18.15., +19:uI0:..:-..........., +12:uI2:..:-...., +10:u00:18.10., +10:u01:18.11., +10:u02:18.12., +10:u03:18.13., +10:u04:18.14., +10:u05:18.15., +10:u06:18.16., +10:u07:18.17., +10:u08:18.19., +10:u10:18.12., +10:u11:18.13., +10:u12:18.14., +10:u13:18.15., +10:u14:18.16., +12:uI1:..:-...., +10:u00:18.11., +10:u01:18.12., +10:u02:18.13., +10:u03:18.14., +10:u04:18.15., +10:u05:18.16., +10:u06:18.17., +10:u07:18.18., +10:u08:18.20., +10:u10:18.13., +10:u11:18.14., +10:u12:18.15., +10:u13:18.16., +10:u14:18.17., +12:uI0:..:-...., +10:u00:18.12., +10:u01:18.13., +10:u02:18.14., +10:u03:18.15., +10:u04:18.16., +10:u05:18.17., +10:u06:18.18., +10:u07:18.19., +10:u08:Public, +10:u10:18.14., +10:u11:18.15., +10:u12:18.16., +10:u13:18.17., +10:u14:18.18., +10:u00:18.13., +10:u01:18.14., +10:u02:18.15., +10:u03:18.16., +10:u04:18.17., +10:u05:18.18., +10:u06:18.19., +10:u07:18.20., +10:u08:18.21., +10:u10:18.15., +10:u11:18.16., +10:u12:18.17., +10:u13:18.18., +10:u14:18.19., +9:uI2:..:-., +10:u00:18.14., +10:u01:18.15., +10:u02:18.16., +10:u03:18.17., +10:u04:18.18., +10:u05:18.19., +10:u06:18.20., +10:u07:Public, +10:u08:18.22., +10:u10:18.16., +10:u11:18.17., +10:u12:18.18., +10:u13:18.19., +10:u14:18.20., +9:uI1:..:-., +10:u00:18.15., +10:u01:18.16., +10:u02:18.17., +10:u03:18.18., +10:u04:18.19., +10:u05:18.20., +10:u06:Public, +10:u07:18.21., +10:u08:18.23., +10:u10:18.17., +10:u11:18.18., +10:u12:18.19., +10:u13:18.20., +10:u14:public, +9:uI0:..:-., +10:u00:18.16., +10:u01:18.17., +10:u02:18.18., +10:u03:18.19., +10:u04:18.20., +10:u05:Public, +10:u06:18.21., +10:u07:18.22., +10:u10:18.18., +10:u11:18.19., +10:u12:18.20., +10:u13:public, +10:u14:18.21., +10:u00:18.17., +10:u01:18.18., +10:u02:18.19., +10:u03:18.20., +10:u04:Public, +10:u05:18.21., +10:u06:18.22., +10:u07:18.23., +10:u10:18.19., +10:u11:18.20., +10:u12:public, +10:u13:18.21., +10:u14:18.22., +6:u21:Pu, +7:u22:Pub, +8:u23:Publ, +13:uI2:..:-....., +10:u00:18.18., +10:u01:18.19., +10:u02:18.20., +10:u03:Public, +10:u04:18.21., +10:u05:18.22., +10:u06:18.23., +10:u10:18.20., +10:u11:public, +10:u12:18.21., +10:u13:18.22., +10:u14:18.23., +13:uI1:..:-....., +10:u00:18.19., +10:u01:18.20., +10:u02:Public, +10:u03:18.21., +10:u04:18.22., +10:u05:18.23., +10:u10:public, +10:u11:18.21., +10:u12:18.22., +10:u13:18.23., +13:uI0:..:-....., +10:u00:18.20., +10:u01:Public, +10:u02:18.21., +10:u03:18.22., +10:u04:18.23., +10:u10:18.21., +10:u11:18.22., +10:u12:18.23., +10:u00:Public, +10:u01:18.21., +10:u02:18.22., +10:u03:18.23., +10:u10:18.22., +10:u11:18.23., +10:u00:18.21., +10:u01:18.22., +10:u02:18.23., +10:u08:18.24., +10:u10:18.23., +10:u00:18.22., +10:u01:18.23., +10:u08:18.25., +10:u00:18.23., +10:u07:18.24., +10:u08:18.26., +10:u06:18.24., +10:u07:18.25., +10:u08:18.27., +10:u14:18.24., +10:u05:18.24., +10:u06:18.25., +10:u07:18.26., +10:u08:18.28., +10:u13:18.24., +10:u14:18.25., +10:u04:18.24., +10:u05:18.25., +10:u06:18.26., +10:u07:18.27., +10:u08:18.29., +10:u12:18.24., +10:u13:18.25., +10:u14:18.26., +10:u03:18.24., +10:u04:18.25., +10:u05:18.26., +10:u06:18.27., +10:u07:18.28., +10:u08:18.30., +10:u11:18.24., +10:u12:18.25., +10:u13:18.26., +10:u14:18.27., +10:u02:18.24., +10:u03:18.25., +10:u04:18.26., +10:u05:18.27., +10:u06:18.28., +10:u07:18.29., +10:u08:18.31., +10:u10:18.24., +10:u11:18.25., +10:u12:18.26., +10:u13:18.27., +10:u14:18.28., +11:uI2:..:-..., +10:u01:18.24., +10:u02:18.25., +10:u03:18.26., +10:u04:18.27., +10:u05:18.28., +10:u06:18.29., +10:u07:18.30., +10:u08:18.32., +10:u10:18.25., +10:u11:18.26., +10:u12:18.27., +10:u13:18.28., +10:u14:18.29., +11:uI1:..:-..., +10:u00:18.24., +10:u01:18.25., +10:u02:18.26., +10:u03:18.27., +10:u04:18.28., +10:u05:18.29., +10:u06:18.30., +10:u07:18.31., +10:u08:18.33., +10:u10:18.26., +10:u11:18.27., +10:u12:18.28., +10:u13:18.29., +10:u14:18.30., +11:uI0:..:-..., +10:u00:18.25., +10:u01:18.26., +10:u02:18.27., +10:u03:18.28., +10:u04:18.29., +10:u05:18.30., +10:u06:18.31., +10:u07:18.32., +10:u08:18.34., +10:u10:18.27., +10:u11:18.28., +10:u12:18.29., +10:u13:18.30., +10:u14:18.31., +10:u00:18.26., +10:u01:18.27., +10:u02:18.28., +10:u03:18.29., +10:u04:18.30., +10:u05:18.31., +10:u06:18.32., +10:u07:18.33., +14:u08:Connection, +10:u10:18.28., +10:u11:18.29., +10:u12:18.30., +10:u13:18.31., +10:u14:18.32., +10:u00:18.27., +10:u01:18.28., +10:u02:18.29., +10:u03:18.30., +10:u04:18.31., +10:u05:18.32., +10:u06:18.33., +10:u07:18.34., +10:u08:18.35., +10:u10:18.29., +10:u11:18.30., +10:u12:18.31., +10:u13:18.32., +10:u14:18.33., +10:u00:18.28., +10:u01:18.29., +10:u02:18.30., +10:u03:18.31., +10:u04:18.32., +10:u05:18.33., +10:u06:18.34., +14:u07:Connection, +10:u08:18.36., +10:u10:18.30., +10:u11:18.31., +10:u12:18.32., +10:u13:18.33., +10:u14:18.34., +10:uI2:..:-.., +10:u00:18.29., +10:u01:18.30., +10:u02:18.31., +10:u03:18.32., +10:u04:18.33., +10:u05:18.34., +14:u06:Connection, +10:u07:18.35., +11:u08:Confirm, +10:u10:18.31., +10:u11:18.32., +10:u12:18.33., +10:u13:18.34., +10:uI1:..:-.., +10:u00:18.30., +10:u01:18.31., +10:u02:18.32., +10:u03:18.33., +10:u04:18.34., +14:u05:Connection, +10:u06:18.35., +10:u07:18.36., +10:u08:18.37., +10:u10:18.32., +10:u11:18.33., +10:u12:18.34., +10:u14:18.35., +10:uI0:..:-.., +10:u00:18.31., +10:u01:18.32., +10:u02:18.33., +10:u03:18.34., +14:u04:Connection, +10:u05:18.35., +10:u06:18.36., +11:u07:Confirm, +10:u08:18.38., +10:u10:18.33., +10:u11:18.34., +10:u13:18.35., +10:u14:18.36., +10:u00:18.32., +10:u01:18.33., +10:u02:18.34., +14:u03:Connection, +10:u04:18.35., +10:u05:18.36., +11:u06:Confirm, +10:u07:18.37., +10:u08:18.39., +10:u10:18.34., +10:u12:18.35., +10:u13:18.36., +11:u14:confirm, +10:u00:18.33., +10:u01:18.34., +14:u02:Connection, +10:u03:18.35., +10:u04:18.36., +11:u05:Confirm, +10:u06:18.37., +10:u07:18.38., +10:u11:18.35., +10:u12:18.36., +11:u13:confirm, +10:u14:18.37., +10:u00:18.34., +14:u01:Connection, +10:u02:18.35., +10:u03:18.36., +11:u04:Confirm, +10:u05:18.37., +10:u06:18.38., +10:u07:18.39., +10:u08:18.40., +10:u10:18.35., +10:u11:18.36., +11:u12:confirm, +10:u13:18.37., +10:u14:18.38., +14:u00:Connection, +10:u01:18.35., +10:u02:18.36., +11:u03:Confirm, +10:u04:18.37., +10:u05:18.38., +10:u06:18.39., +10:u08:18.41., +10:u10:18.36., +11:u11:confirm, +10:u12:18.37., +10:u13:18.38., +10:u14:18.39., +10:u00:18.35., +10:u01:18.36., +11:u02:Confirm, +10:u03:18.37., +10:u04:18.38., +10:u05:18.39., +10:u07:18.40., +11:u10:confirm, +10:u11:18.37., +10:u12:18.38., +10:u13:18.39., +14:u14:delegation, +10:u00:18.36., +11:u01:Confirm, +10:u02:18.37., +10:u03:18.38., +10:u04:18.39., +10:u06:18.40., +10:u07:18.41., +10:u08:18.42., +10:u10:18.37., +10:u11:18.38., +10:u12:18.39., +14:u13:delegation, +10:u14:18.40., +11:u00:Confirm, +10:u01:18.37., +10:u02:18.38., +10:u03:18.39., +10:u05:18.40., +10:u06:18.41., +10:u10:18.38., +10:u11:18.39., +14:u12:delegation, +10:u13:18.40., +10:u14:18.41., +7:u22:Del, +8:u23:Dele, +10:u00:18.37., +10:u01:18.38., +10:u02:18.39., +10:u04:18.40., +10:u05:18.41., +10:u07:18.42., +10:u08:18.43., +10:u10:18.39., +14:u11:delegation, +10:u12:18.40., +10:u13:18.41., +10:u00:18.38., +10:u01:18.39., +10:u03:18.40., +10:u04:18.41., +10:u06:18.42., +10:u08:18.44., +14:u10:delegation, +10:u11:18.40., +10:u12:18.41., +10:u14:18.42., +10:u00:18.39., +10:u02:18.40., +10:u03:18.41., +10:u05:18.42., +10:u07:18.43., +10:u08:18.45., +10:u10:18.40., +10:u11:18.41., +10:u13:18.42., +10:u14:layout, +10:u01:18.40., +10:u02:18.41., +10:u04:18.42., +10:u06:18.43., +10:u07:18.44., +10:u10:18.41., +10:u12:18.42., +10:u13:layout, +10:u14:18.43., +10:u00:18.40., +10:u01:18.41., +10:u03:18.42., +10:u05:18.43., +10:u06:18.44., +10:u07:18.45., +10:u08:18.46., +10:u11:18.42., +10:u12:layout, +10:u13:18.43., +10:u14:18.44., +8:u23:Layo, +10:u00:18.41., +10:u02:18.42., +10:u04:18.43., +10:u05:18.44., +10:u06:18.45., +10:u10:18.42., +10:u11:layout, +10:u12:18.43., +10:u13:18.44., +10:u14:18.45., +10:u01:18.42., +10:u03:18.43., +10:u04:18.44., +10:u05:18.45., +10:u07:18.46., +10:u08:18.47., +10:u10:layout, +10:u11:18.43., +10:u12:18.44., +10:u13:18.45., +10:u14:object, +10:u00:18.42., +10:u02:18.43., +10:u03:18.44., +10:u04:18.45., +10:u06:18.46., +10:u08:18.48., +10:u10:18.43., +10:u11:18.44., +10:u12:18.45., +10:u13:object, +10:u14:18.46., +10:u01:18.43., +10:u02:18.44., +10:u03:18.45., +10:u05:18.46., +10:u07:18.47., +10:u08:18.49., +10:u10:18.44., +10:u11:18.45., +10:u12:object, +10:u13:18.46., +7:u22:Obj, +8:u23:Obje, +9:uI2:..:--, +10:u00:18.43., +10:u01:18.44., +10:u02:18.45., +10:u04:18.46., +10:u06:18.47., +10:u07:18.48., +10:u08:18.50., +10:u10:18.45., +10:u11:object, +10:u12:18.46., +10:u14:18.47., +9:uI1:..:--, +10:u00:18.44., +10:u01:18.45., +10:u03:18.46., +10:u05:18.47., +10:u06:18.48., +10:u07:18.49., +10:u08:18.51., +10:u10:object, +10:u11:18.46., +10:u13:18.47., +10:u14:18.48., +9:uI0:..:--, +10:u00:18.45., +10:u02:18.46., +10:u04:18.47., +10:u05:18.48., +10:u06:18.49., +10:u07:18.50., +12:u08:Finished, +10:u10:18.46., +10:u12:18.47., +10:u13:18.48., +10:u14:18.49., +10:u01:18.46., +10:u03:18.47., +10:u04:18.48., +10:u05:18.49., +10:u06:18.50., +10:u07:18.51., +10:u08:18.52., +10:u11:18.47., +10:u12:18.48., +10:u13:18.49., +10:u14:18.50., +10:u00:18.46., +10:u02:18.47., +10:u03:18.48., +10:u04:18.49., +10:u05:18.50., +10:u06:18.51., +12:u07:Finished, +7:u08:19., +10:u10:18.47., +10:u11:18.48., +10:u12:18.49., +10:u13:18.50., +10:u14:18.51., +10:u01:18.47., +10:u02:18.48., +10:u03:18.49., +10:u04:18.50., +10:u05:18.51., +12:u06:Finished, +10:u07:18.52., +9:u08:19.1., +10:u10:18.48., +10:u11:18.49., +10:u12:18.50., +10:u13:18.51., +12:u14:finished, +10:u00:18.47., +10:u01:18.48., +10:u02:18.49., +10:u03:18.50., +10:u04:18.51., +12:u05:Finished, +10:u06:18.52., +7:u07:19., +9:u08:19.2., +10:u10:18.49., +10:u11:18.50., +10:u12:18.51., +12:u13:finished, +10:u14:18.52., +10:u00:18.48., +10:u01:18.49., +10:u02:18.50., +10:u03:18.51., +12:u04:Finished, +10:u05:18.52., +7:u06:19., +9:u07:19.1., +7:u08:20., +10:u10:18.50., +10:u11:18.51., +12:u12:finished, +10:u13:18.52., +7:u14:19., +8:u23:Fini, +10:u00:18.49., +10:u01:18.50., +10:u02:18.51., +12:u03:Finished, +10:u04:18.52., +7:u05:19., +9:u06:19.1., +9:u07:19.2., +9:u08:20.1., +10:u10:18.51., +12:u11:finished, +10:u12:18.52., +7:u13:19., +9:u14:19.1., +10:u00:18.50., +10:u01:18.51., +12:u02:Finished, +10:u03:18.52., +7:u04:19., +9:u05:19.1., +9:u06:19.2., +7:u07:20., +9:u08:20.2., +12:u10:finished, +10:u11:18.52., +7:u12:19., +9:u13:19.1., +9:u14:19.2., +7:u22:19., +7:u23:19., +10:u00:18.51., +12:u01:Finished, +10:u02:18.52., +7:u03:19., +9:u04:19.1., +9:u05:19.2., +7:u06:20., +9:u07:20.1., +9:u08:20.3., +10:u10:18.52., +7:u11:19., +9:u12:19.1., +9:u13:19.2., +7:u14:20., +8:u23:19.1, +12:u00:Finished, +10:u01:18.52., +7:u02:19., +9:u03:19.1., +9:u04:19.2., +7:u05:20., +9:u06:20.1., +9:u07:20.2., +9:u08:20.4., +7:u10:19., +9:u11:19.1., +9:u12:19.2., +7:u13:20., +9:u14:20.1., +8:u23:19.2, +10:u00:18.52., +7:u01:19., +9:u02:19.1., +9:u03:19.2., +7:u04:20., +9:u05:20.1., +9:u06:20.2., +9:u07:20.3., +9:u10:19.1., +9:u11:19.2., +7:u12:20., +9:u13:20.1., +9:u14:20.2., +7:u22:20., +7:u23:20., +7:u00:19., +9:u01:19.1., +9:u02:19.2., +7:u03:20., +9:u04:20.1., +9:u05:20.2., +9:u06:20.3., +9:u07:20.4., +9:u08:20.5., +9:u10:19.2., +7:u11:20., +9:u12:20.1., +9:u13:20.2., +9:u14:20.3., +8:u23:20.1, +9:u00:19.1., +9:u01:19.2., +7:u02:20., +9:u03:20.1., +9:u04:20.2., +9:u05:20.3., +9:u06:20.4., +7:u10:20., +9:u11:20.1., +9:u12:20.2., +9:u13:20.3., +9:u14:20.4., +8:u23:20.2, +9:u00:19.2., +7:u01:20., +9:u02:20.1., +9:u03:20.2., +9:u04:20.3., +9:u05:20.4., +9:u07:20.5., +9:u10:20.1., +9:u11:20.2., +9:u12:20.3., +9:u13:20.4., +11:u14:changes, +8:u23:20.3, +7:u00:20., +9:u01:20.1., +9:u02:20.2., +9:u03:20.3., +9:u04:20.4., +9:u06:20.5., +9:u10:20.2., +9:u11:20.3., +9:u12:20.4., +11:u13:changes, +9:u14:20.5., +8:u23:20.4, +9:u00:20.1., +9:u01:20.2., +9:u02:20.3., +9:u03:20.4., +9:u05:20.5., +9:u10:20.3., +9:u11:20.4., +11:u12:changes, +9:u13:20.5., +9:u00:20.2., +9:u01:20.3., +9:u02:20.4., +9:u04:20.5., +9:u10:20.4., +11:u11:changes, +9:u12:20.5., +8:u23:20.5, +9:u00:20.3., +9:u01:20.4., +9:u03:20.5., +11:u10:changes, +9:u11:20.5., +9:u00:20.4., +9:u02:20.5., +9:u10:20.5., +9:u01:20.5., +9:u08:20.6., +9:u00:20.5., +11:u08:Objects, +9:u07:20.6., +9:u08:20.7., +9:u06:20.6., +11:u07:Objects, +9:u14:20.6., +9:u05:20.6., +11:u06:Objects, +9:u07:20.7., +9:u08:20.8., +14:u08:Recallable, +9:u13:20.6., +11:u14:objects, +9:u04:20.6., +11:u05:Objects, +9:u06:20.7., +10:u08:Limits, +14:u07:Recallable, +9:u12:20.6., +11:u13:objects, +9:u14:20.7., +8:u23:20.6, +9:u03:20.6., +11:u04:Objects, +9:u05:20.7., +9:u07:20.8., +9:u08:20.9., +14:u06:Recallable, +9:u11:20.6., +11:u12:objects, +9:u13:20.7., +9:u02:20.6., +11:u03:Objects, +9:u04:20.7., +9:u06:20.8., +10:u07:Limits, +14:u08:Sequencing, +14:u05:Recallable, +9:u10:20.6., +11:u11:objects, +9:u12:20.7., +9:u14:20.8., +8:u23:20.7, +9:u01:20.6., +11:u02:Objects, +9:u03:20.7., +9:u05:20.8., +10:u06:Limits, +9:u07:20.9., +10:u08:20.10., +14:u04:Recallable, +11:u10:objects, +9:u11:20.7., +9:u13:20.8., +10:u14:limits, +9:u00:20.6., +11:u01:Objects, +9:u02:20.7., +9:u04:20.8., +10:u05:Limits, +9:u06:20.9., +14:u07:Sequencing, +14:u03:Recallable, +9:u10:20.7., +9:u12:20.8., +10:u13:limits, +9:u14:20.9., +8:u23:20.8, +11:u00:Objects, +9:u01:20.7., +9:u03:20.8., +10:u04:Limits, +9:u05:20.9., +14:u06:Sequencing, +10:u07:20.10., +10:u08:20.11., +14:u02:Recallable, +9:u08:Wants, +9:u11:20.8., +10:u12:limits, +9:u13:20.9., +14:u14:sequencing, +7:u22:Lim, +8:u23:Limi, +9:u00:20.7., +9:u02:20.8., +10:u03:Limits, +9:u04:20.9., +14:u05:Sequencing, +10:u06:20.10., +14:u01:Recallable, +9:u07:Wants, +9:u10:20.8., +10:u11:limits, +9:u12:20.9., +14:u13:sequencing, +10:u14:20.10., +8:u23:20.9, +9:u01:20.8., +10:u02:Limits, +9:u03:20.9., +14:u04:Sequencing, +10:u05:20.10., +10:u07:20.11., +10:u08:20.12., +14:u00:Recallable, +9:u06:Wants, +10:u10:limits, +9:u11:20.9., +14:u12:sequencing, +10:u13:20.10., +7:u22:Seq, +8:u23:Sequ, +9:u00:20.8., +10:u01:Limits, +9:u02:20.9., +14:u03:Sequencing, +10:u04:20.10., +10:u06:20.11., +9:u05:Wants, +9:u10:20.9., +14:u11:sequencing, +10:u12:20.10., +10:u14:20.11., +10:u00:Limits, +9:u01:20.9., +14:u02:Sequencing, +10:u03:20.10., +10:u05:20.11., +10:u07:20.12., +10:u08:20.13., +9:u04:Wants, +14:u10:sequencing, +10:u11:20.10., +10:u13:20.11., +8:u14:lock, +9:u00:20.9., +14:u01:Sequencing, +10:u02:20.10., +10:u04:20.11., +10:u06:20.12., +7:u08:21., +9:u03:Wants, +10:u10:20.10., +10:u12:20.11., +8:u13:lock, +10:u14:20.12., +14:u00:Sequencing, +10:u01:20.10., +10:u03:20.11., +10:u05:20.12., +10:u07:20.13., +7:u08:22., +9:u02:Wants, +10:u11:20.11., +8:u12:lock, +10:u13:20.12., +8:u23:Lock, +10:u00:20.10., +10:u02:20.11., +10:u04:20.12., +10:u06:20.13., +7:u07:21., +9:u08:22.1., +9:u01:Wants, +10:u10:20.11., +8:u11:lock, +10:u12:20.12., +10:u14:20.13., +10:u01:20.11., +10:u03:20.12., +10:u05:20.13., +7:u06:21., +7:u07:22., +9:u08:22.2., +9:u00:Wants, +8:u10:lock, +10:u11:20.12., +10:u13:20.13., +7:u14:21., +10:u00:20.11., +10:u02:20.12., +10:u04:20.13., +7:u05:21., +7:u06:22., +9:u07:22.1., +9:u08:22.3., +10:u10:20.12., +10:u12:20.13., +7:u13:21., +7:u14:22., +10:u01:20.12., +10:u03:20.13., +7:u04:21., +7:u05:22., +9:u06:22.1., +9:u07:22.2., +9:u08:22.4., +10:u11:20.13., +7:u12:21., +7:u13:22., +9:u14:22.1., +7:u22:21., +7:u23:21., +10:u00:20.12., +10:u02:20.13., +7:u03:21., +7:u04:22., +9:u05:22.1., +9:u06:22.2., +9:u07:22.3., +9:u08:22.5., +10:u10:20.13., +7:u11:21., +7:u12:22., +9:u13:22.1., +9:u14:22.2., +6:u21:22, +7:u22:22., +7:u23:22., +10:u01:20.13., +7:u02:21., +7:u03:22., +9:u04:22.1., +9:u05:22.2., +9:u06:22.3., +9:u07:22.4., +9:u08:22.6., +7:u10:21., +7:u11:22., +9:u12:22.1., +9:u13:22.2., +9:u14:22.3., +8:u23:22.1, +10:u00:20.13., +7:u01:21., +7:u02:22., +9:u03:22.1., +9:u04:22.2., +9:u05:22.3., +9:u06:22.4., +9:u07:22.5., +7:u08:23., +7:u10:22., +9:u11:22.1., +9:u12:22.2., +9:u13:22.3., +9:u14:22.4., +8:u23:22.2, +7:u00:21., +7:u01:22., +9:u02:22.1., +9:u03:22.2., +9:u04:22.3., +9:u05:22.4., +9:u06:22.5., +9:u07:22.6., +9:u08:23.1., +9:u10:22.1., +9:u11:22.2., +9:u12:22.3., +9:u13:22.4., +9:u14:22.5., +8:u23:22.3, +7:u00:22., +9:u01:22.1., +9:u02:22.2., +9:u03:22.3., +9:u04:22.4., +9:u05:22.5., +9:u06:22.6., +7:u07:23., +9:u08:23.2., +9:u10:22.2., +9:u11:22.3., +9:u12:22.4., +9:u13:22.5., +9:u14:22.6., +8:u23:22.4, +9:u00:22.1., +9:u01:22.2., +9:u02:22.3., +9:u03:22.4., +9:u04:22.5., +9:u05:22.6., +7:u06:23., +9:u07:23.1., +9:u10:22.3., +9:u11:22.4., +9:u12:22.5., +9:u13:22.6., +7:u14:23., +8:u23:22.5, +9:u00:22.2., +9:u01:22.3., +9:u02:22.4., +9:u03:22.5., +9:u04:22.6., +7:u05:23., +9:u06:23.1., +9:u07:23.2., +9:u10:22.4., +9:u11:22.5., +9:u12:22.6., +7:u13:23., +9:u14:23.1., +8:u23:22.6, +9:u00:22.3., +9:u01:22.4., +9:u02:22.5., +9:u03:22.6., +7:u04:23., +9:u05:23.1., +9:u06:23.2., +8:u08:B.1., +6:u08:B., +9:u10:22.5., +9:u11:22.6., +7:u12:23., +9:u13:23.1., +9:u14:23.2., +6:u21:23, +7:u22:23., +7:u23:23., +9:u00:22.4., +9:u01:22.5., +9:u02:22.6., +7:u03:23., +9:u04:23.1., +9:u05:23.2., +8:u08:B.2., +6:u07:B., +13:u08:Revisions, +9:u10:22.6., +7:u11:23., +9:u12:23.1., +9:u13:23.2., +8:u23:23.1, +9:u00:22.5., +9:u01:22.6., +7:u02:23., +9:u03:23.1., +9:u04:23.2., +8:u07:B.1., +8:u08:B.3., +13:u07:Revisions, +7:u10:23., +9:u11:23.1., +9:u12:23.2., +8:u23:23.2, +9:u00:22.6., +7:u01:23., +9:u02:23.1., +9:u03:23.2., +8:u06:B.1., +8:u07:B.2., +8:u08:B.4., +13:u06:Revisions, +9:u10:23.1., +9:u11:23.2., +8:u14:b.1., +7:u00:23., +9:u01:23.1., +9:u02:23.2., +8:u05:B.1., +8:u06:B.2., +8:u07:B.3., +13:u05:Revisions, +9:u10:23.2., +8:u13:b.1., +8:u14:b.2., +16:uI2:..[]........, +9:u00:23.1., +9:u01:23.2., +8:u04:B.1., +8:u05:B.2., +8:u06:B.3., +8:u07:B.4., +13:u04:Revisions, +8:u12:b.1., +8:u13:b.2., +8:u14:b.3., +7:u22:B.1, +8:u23:B.1., +16:uI1:..[]........, +9:u00:23.2., +8:u03:B.1., +8:u04:B.2., +8:u05:B.3., +8:u06:B.4., +13:u03:Revisions, +8:u11:b.1., +8:u12:b.2., +8:u13:b.3., +8:u14:b.4., +7:u22:B.2, +8:u23:B.2., +16:uI0:..[]........, +12:uI2:..[]...., +8:u02:B.1., +8:u03:B.2., +8:u04:B.3., +8:u05:B.4., +13:u02:Revisions, +8:u10:b.1., +8:u11:b.2., +8:u12:b.3., +8:u13:b.4., +7:u22:B.3, +8:u23:B.3., +12:uI1:..[]...., +20:uI2:..[]............, +8:u01:B.1., +8:u02:B.2., +8:u03:B.3., +8:u04:B.4., +13:u01:Revisions, +8:u10:b.2., +8:u11:b.3., +8:u12:b.4., +7:u22:B.4, +8:u23:B.4., +12:uI0:..[]...., +20:uI1:..[]............, +8:u00:B.1., +8:u01:B.2., +8:u02:B.3., +8:u03:B.4., +13:u00:Revisions, +8:u10:b.3., +8:u11:b.4., +20:uI0:..[]............, +8:u00:B.2., +8:u01:B.3., +8:u02:B.4., +13:u08:(NFSv4.1), +11:u08:revised, +8:u10:b.4., +8:u00:B.3., +8:u01:B.4., +8:u08:full, +11:u07:revised, +8:u00:B.4., +13:u07:(NFSv4.1), +12:u08:features, +11:u06:revised, +13:u06:(NFSv4.1), +8:u07:full, +11:u05:revised, +13:u14:(nfsv4.1), +13:u05:(NFSv4.1), +8:u06:full, +12:u07:features, +11:u04:revised, +13:u13:(nfsv4.1), +8:u14:full, +13:u04:(NFSv4.1), +8:u05:full, +12:u06:features, +12:u08:specific, +11:u03:revised, +13:u12:(nfsv4.1), +8:u13:full, +12:u14:features, +7:u22:(NF, +8:u23:(NFS, +13:u03:(NFSv4.1), +8:u04:full, +12:u05:features, +11:u02:revised, +11:u08:changes, +13:u11:(nfsv4.1), +8:u12:full, +12:u13:features, +7:u22:ful, +8:u23:full, +13:u02:(NFSv4.1), +8:u03:full, +12:u04:features, +12:u07:specific, +11:u01:revised, +11:u07:changes, +13:u10:(nfsv4.1), +8:u11:full, +12:u12:features, +8:u23:feat, +13:u01:(NFSv4.1), +8:u02:full, +12:u03:features, +12:u06:specific, +11:u00:revised, +11:u06:changes, +8:u10:full, +12:u11:features, +12:u14:specific, +13:u00:(NFSv4.1), +8:u01:full, +12:u02:features, +12:u05:specific, +11:u05:changes, +12:u10:features, +12:u13:specific, +8:u00:full, +12:u01:features, +12:u04:specific, +11:u04:changes, +12:u12:specific, +12:u00:features, +12:u03:specific, +11:u03:changes, +12:u11:specific, +12:u02:specific, +11:u02:changes, +12:u10:specific, +12:u01:specific, +13:u08:protocol,, +11:u01:changes, +12:u00:specific, +8:u08:not,, +11:u00:changes, +10:u08:rather, +13:u07:protocol,, +10:u07:rather, +13:u06:protocol,, +8:u07:not,, +10:u06:rather, +13:u14:protocol,, +13:u05:protocol,, +8:u06:not,, +10:u05:rather, +13:u13:protocol,, +8:u14:not,, +13:u04:protocol,, +8:u05:not,, +10:u04:rather, +13:u12:protocol,, +8:u13:not,, +13:u03:protocol,, +8:u04:not,, +10:u03:rather, +13:u11:protocol,, +8:u12:not,, +8:u23:not,, +13:u02:protocol,, +8:u03:not,, +10:u02:rather, +11:u08:RFC5661, +13:u10:protocol,, +8:u11:not,, +13:u01:protocol,, +8:u02:not,, +10:u01:rather, +11:u07:RFC5661, +8:u10:not,, +13:u00:protocol,, +8:u01:not,, +10:u00:rather, +11:u06:RFC5661, +8:u00:not,, +11:u05:RFC5661, +13:u14:addition,, +11:u04:RFC5661, +8:u08:[60], +13:u13:addition,, +7:u22:upd, +8:u23:upda, +11:u03:RFC5661, +8:u07:[60], +13:u12:addition,, +11:u02:RFC5661, +8:u06:[60], +13:u11:addition,, +11:u14:rfc5661, +12:u08:curently, +11:u01:RFC5661, +8:u05:[60], +13:u10:addition,, +11:u13:rfc5661, +11:u00:RFC5661, +8:u04:[60], +11:u08:updates, +11:u12:rfc5661, +8:u23:RFC5, +12:u07:curently, +12:u08:obsolete, +8:u03:[60], +11:u07:updates, +11:u11:rfc5661, +12:u06:curently, +8:u02:[60], +11:u06:updates, +11:u08:RFC8434, +11:u10:rfc5661, +12:u14:curently, +12:u05:curently, +12:u07:obsolete, +24:u08:internationalization, +8:u01:[60], +11:u05:updates, +11:u07:RFC8434, +12:u13:curently, +12:u04:curently, +12:u06:obsolete, +8:u00:[60], +11:u04:updates, +11:u06:RFC8434, +12:u12:curently, +12:u14:obsolete, +6:u21:cu, +7:u22:cur, +8:u23:cure, +12:u03:curently, +12:u05:obsolete, +24:u07:internationalization, +11:u03:updates, +11:u05:RFC8434, +12:u11:curently, +12:u13:obsolete, +12:u02:curently, +12:u04:obsolete, +24:u06:internationalization, +11:u02:updates, +11:u04:RFC8434, +12:u10:curently, +12:u12:obsolete, +24:u14:internationalization, +7:u22:obs, +8:u23:obso, +12:u01:curently, +12:u03:obsolete, +24:u05:internationalization, +11:u01:updates, +11:u03:RFC8434, +12:u11:obsolete, +24:u13:internationalization, +12:u00:curently, +12:u02:obsolete, +24:u04:internationalization, +11:u00:updates, +11:u02:RFC8434, +12:u10:obsolete, +24:u12:internationalization, +12:u01:obsolete, +24:u03:internationalization, +12:u08:defining, +11:u01:RFC8434, +9:u08:minor, +24:u11:internationalization, +12:u00:obsolete, +24:u02:internationalization, +11:u00:RFC8434, +9:u07:minor, +24:u10:internationalization, +10:u14:create, +24:u01:internationalization, +12:u07:defining, +9:u06:minor, +10:u13:create, +9:u14:nfsv4, +24:u00:internationalization, +12:u06:defining, +9:u05:minor, +10:u12:create, +12:u14:defining, +7:u22:cre, +8:u23:crea, +12:u05:defining, +9:u08:Until, +9:u04:minor, +10:u11:create, +12:u13:defining, +12:u04:defining, +9:u03:minor, +10:u10:create, +12:u12:defining, +12:u03:defining, +9:u07:Until, +9:u02:minor, +12:u11:defining, +12:u02:defining, +9:u06:Until, +9:u01:minor, +12:u10:defining, +9:u14:until, +12:u01:defining, +9:u05:Until, +9:u00:minor, +9:u13:until, +12:u00:defining, +9:u04:Until, +9:u12:until, +7:u22:Unt, +8:u23:Unti, +9:u03:Until, +7:u08:NFS, +9:u11:until, +9:u02:Until, +7:u07:NFS, +9:u10:until, +9:u01:Until, +11:u08:follows, +7:u06:NFS, +12:u08:NFSv4.0,, +9:u00:Until, +7:u05:NFS, +12:u07:NFSv4.0,, +9:u14:minor, +11:u07:follows, +7:u04:NFS, +12:u06:NFSv4.0,, +9:u13:minor, +11:u06:follows, +7:u03:NFS, +12:u05:NFSv4.0,, +9:u12:minor, +11:u14:follows, +8:u23:mino, +10:uI2:,.,[]., +11:u05:follows, +7:u02:NFS, +12:u04:NFSv4.0,, +9:u11:minor, +11:u13:follows, +10:uI1:,.,[]., +11:u04:follows, +7:u01:NFS, +12:u03:NFSv4.0,, +9:u10:minor, +11:u12:follows, +10:uI0:,.,[]., +8:uI2:.,(", +11:u03:follows, +7:u00:NFS, +12:u02:NFSv4.0,, +11:u11:follows, +8:uI1:.,(", +11:u02:follows, +12:u01:NFSv4.0,, +11:u10:follows, +8:uI0:.,(", +9:uI2:-")(", +11:u01:follows, +12:u00:NFSv4.0,, +9:uI1:-")(", +11:u00:follows, +9:uI0:-")(", +16:u08:introduction, +16:u07:introduction, +16:u06:introduction, +12:u08:existing, +16:u14:introduction, +7:uI2:")., +16:u05:introduction, +16:u13:introduction, +7:uI1:")., +16:u04:introduction, +12:u07:existing, +7:u08:add, +16:u12:introduction, +7:uI0:")., +16:u03:introduction, +12:u06:existing, +7:u07:add, +15:u08:accordingly, +16:u11:introduction, +12:u14:existing, +16:u02:introduction, +12:u05:existing, +7:u06:add, +15:u07:accordingly, +9:u08:2.7)., +16:u10:introduction, +12:u13:existing, +16:u01:introduction, +12:u04:existing, +10:u08:NFSv4,, +7:u05:add, +15:u06:accordingly, +9:u07:2.7)., +12:u12:existing, +7:u22:exi, +8:u23:exis, +16:u00:introduction, +12:u03:existing, +7:u04:add, +15:u05:accordingly, +9:u06:2.7)., +12:u11:existing, +12:u02:existing, +10:u07:NFSv4,, +7:u03:add, +15:u04:accordingly, +9:u05:2.7)., +12:u10:existing, +12:u01:existing, +10:u06:NFSv4,, +12:u08:NFSv4.1., +7:u02:add, +15:u03:accordingly, +9:u04:2.7)., +14:u08:additional, +10:u14:nfsv4,, +12:u00:existing, +10:u05:NFSv4,, +7:u01:add, +15:u02:accordingly, +9:u03:2.7)., +14:u07:additional, +10:u13:nfsv4,, +10:u04:NFSv4,, +12:u07:NFSv4.1., +7:u00:add, +15:u01:accordingly, +9:u02:2.7)., +14:u06:additional, +10:u12:nfsv4,, +8:uI2:..,., +10:u03:NFSv4,, +12:u06:NFSv4.1., +15:u00:accordingly, +9:u01:2.7)., +14:u05:additional, +10:u11:nfsv4,, +12:u14:nfsv4.1., +8:u23:base, +8:uI1:..,., +10:u02:NFSv4,, +12:u05:NFSv4.1., +9:u00:2.7)., +14:u04:additional, +10:u10:nfsv4,, +12:u13:nfsv4.1., +8:uI0:..,., +10:u01:NFSv4,, +12:u04:NFSv4.1., +14:u03:additional, +12:u12:nfsv4.1., +10:u00:NFSv4,, +12:u03:NFSv4.1., +14:u02:additional, +12:u11:nfsv4.1., +12:u02:NFSv4.1., +14:u01:additional, +12:u10:nfsv4.1., +12:u01:NFSv4.1., +14:u00:additional, +12:u00:NFSv4.1., +12:u14:nfsv4.0,, +10:u08:modify, +12:u13:nfsv4.0,, +10:u07:modify, +11:u08:clarify, +12:u12:nfsv4.0,, +10:u06:modify, +11:u07:clarify, +12:u11:nfsv4.0,, +10:u05:modify, +11:u06:clarify, +12:u10:nfsv4.0,, +10:u04:modify, +11:u05:clarify, +10:u03:modify, +11:u04:clarify, +13:u08:versions:, +16:u08:performance., +10:u02:modify, +11:u03:clarify, +13:u07:versions:, +13:u08:operating, +10:u01:modify, +11:u02:clarify, +13:u06:versions:, +13:u07:operating, +16:u07:performance., +10:u00:modify, +11:u01:clarify, +13:u05:versions:, +13:u06:operating, +12:u08:Improved, +14:u14:protocols,, +6:uI2::;, +16:u06:performance., +11:u00:clarify, +13:u04:versions:, +13:u05:operating, +12:u07:Improved, +14:u13:protocols,, +16:u14:performance., +6:uI1::;, +8:uI2:,,;;, +16:u05:performance., +13:u03:versions:, +13:u04:operating, +12:u06:Improved, +11:u08:latency, +14:u12:protocols,, +16:u13:performance., +6:uI0::;, +8:uI1:,,;;, +16:u04:performance., +13:u02:versions:, +13:u03:operating, +12:u05:Improved, +11:u07:latency, +11:u08:numbers, +14:u11:protocols,, +16:u12:performance., +8:uI0:,,;;, +16:u03:performance., +13:u01:versions:, +13:u02:operating, +12:u04:Improved, +11:u06:latency, +11:u07:numbers, +10:u08:Strong, +14:u10:protocols,, +16:u11:performance., +16:u02:performance., +13:u00:versions:, +13:u01:operating, +12:u03:Improved, +11:u05:latency, +11:u06:numbers, +10:u07:Strong, +16:u10:performance., +16:u01:performance., +13:u00:operating, +12:u02:Improved, +11:u04:latency, +11:u05:numbers, +10:u06:Strong, +16:u00:performance., +12:u01:Improved, +11:u03:latency, +11:u04:numbers, +10:u05:Strong, +12:u00:Improved, +11:u02:latency, +11:u03:numbers, +10:u04:Strong, +11:u01:latency, +11:u02:numbers, +10:u03:Strong, +11:u00:latency, +11:u01:numbers, +10:u02:Strong, +14:u08:supporting, +11:u00:numbers, +10:u01:Strong, +10:u00:Strong, +14:u07:supporting, +11:u08:ability, +14:u06:supporting, +14:u14:supporting, +14:u05:supporting, +11:u07:ability, +14:u13:supporting, +14:u04:supporting, +11:u06:ability, +8:u08:Good, +14:u12:supporting, +11:u14:ability, +14:u03:supporting, +11:u05:ability, +10:u08:common, +8:u07:Good, +14:u11:supporting, +11:u13:ability, +14:u02:supporting, +11:u04:ability, +8:u06:Good, +14:u10:supporting, +11:u12:ability, +7:u22:abi, +8:u23:abil, +14:u01:supporting, +11:u03:ability, +10:u07:common, +8:u05:Good, +11:u11:ability, +14:u00:supporting, +11:u02:ability, +10:u06:common, +8:u04:Good, +12:u08:Designed, +11:u10:ability, +10:u14:common, +11:u01:ability, +10:u05:common, +13:u08:framework, +8:u03:Good, +12:u07:Designed, +10:u13:common, +11:u00:ability, +10:u04:common, +8:u02:Good, +12:u06:Designed, +10:u12:common, +10:u03:common, +13:u07:framework, +8:u01:Good, +12:u05:Designed, +10:u11:common, +10:u02:common, +13:u06:framework, +8:u00:Good, +12:u04:Designed, +10:u10:common, +13:u14:framework, +10:u01:common, +13:u05:framework, +12:u03:Designed, +11:u08:overall, +13:u13:framework, +10:u00:common, +13:u04:framework, +12:u02:Designed, +11:u07:overall, +13:u12:framework, +13:u03:framework, +12:u01:Designed, +11:u06:overall, +13:u11:framework, +13:u02:framework, +12:u00:Designed, +11:u05:overall, +13:u10:framework, +13:u01:framework, +11:u04:overall, +13:u00:framework, +11:u03:overall, +11:u02:overall, +11:u01:overall, +10:u14:stated, +11:u00:overall, +10:u13:stated, +15:u08:deployments, +10:u12:stated, +10:u11:stated, +15:u07:deployments, +10:u10:stated, +15:u06:deployments, +15:u14:deployments, +15:u05:deployments, +11:u08:reader., +15:u13:deployments, +10:u14:access, +15:u04:deployments, +9:u08:Byte:, +15:u12:deployments, +10:u13:access, +15:u03:deployments, +11:u07:reader., +8:u08:bits, +15:u11:deployments, +10:u12:access, +15:u02:deployments, +11:u06:reader., +9:u07:Byte:, +11:u08:Client:, +15:u10:deployments, +10:u11:access, +11:u14:reader., +15:u01:deployments, +11:u05:reader., +9:u06:Byte:, +8:u07:bits, +14:u08:resources., +10:u10:access, +11:u13:reader., +9:u14:byte:, +15:u00:deployments, +11:u04:reader., +9:u05:Byte:, +8:u06:bits, +11:u07:Client:, +11:u12:reader., +9:u13:byte:, +8:u14:bits, +10:uI2::,,..,, +11:u03:reader., +9:u04:Byte:, +8:u05:bits, +11:u06:Client:, +14:u07:resources., +11:u11:reader., +9:u12:byte:, +8:u13:bits, +11:u14:client:, +7:u22:Byt, +8:u23:Byte, +10:uI1::,,..,, +11:u02:reader., +9:u03:Byte:, +8:u04:bits, +11:u05:Client:, +14:u06:resources., +11:u10:reader., +9:u11:byte:, +8:u12:bits, +11:u13:client:, +14:u14:resources., +7:u22:bit, +8:u23:bits, +10:uI0::,,..,, +6:uI2::', +11:u01:reader., +9:u02:Byte:, +8:u03:bits, +11:u04:Client:, +14:u05:resources., +9:u10:byte:, +8:u11:bits, +11:u12:client:, +14:u13:resources., +7:u22:Cli, +8:u23:Clie, +6:uI1::', +11:u00:reader., +9:u01:Byte:, +8:u02:bits, +11:u03:Client:, +14:u04:resources., +8:u10:bits, +11:u11:client:, +14:u12:resources., +6:uI0::', +9:u00:Byte:, +8:u01:bits, +11:u02:Client:, +14:u03:resources., +11:u10:client:, +14:u11:resources., +8:u00:bits, +11:u01:Client:, +14:u02:resources., +14:u10:resources., +11:u00:Client:, +14:u01:resources., +14:u00:resources., +10:u08:system, +15:u08:traditional, +15:u07:traditional, +10:u07:system, +15:u06:traditional, +10:u06:system, +15:u05:traditional, +10:u05:system, +17:u08:applications., +15:u04:traditional, +10:u04:system, +15:u03:traditional, +7:u22:sys, +8:u23:syst, +10:u03:system, +17:u07:applications., +15:u02:traditional, +10:u14:entity, +10:u02:system, +17:u06:applications., +15:u01:traditional, +10:u13:entity, +17:u14:applications., +10:u01:system, +17:u05:applications., +15:u00:traditional, +10:u12:entity, +17:u13:applications., +8:u23:enti, +10:u00:system, +17:u04:applications., +10:u11:entity, +17:u12:applications., +17:u03:applications., +14:u08:short-hand, +7:u08:ID:, +10:u10:entity, +17:u11:applications., +17:u02:applications., +10:u08:owner., +7:u07:ID:, +17:u10:applications., +17:u01:applications., +14:u07:short-hand, +7:u06:ID:, +17:u00:applications., +14:u06:short-hand, +10:u07:owner., +7:u05:ID:, +10:u08:Owner:, +14:u14:short-hand, +14:u05:short-hand, +10:u06:owner., +7:u04:ID:, +10:u07:Owner:, +14:u13:short-hand, +10:u14:owner., +14:u04:short-hand, +10:u05:owner., +7:u03:ID:, +10:u06:Owner:, +14:u12:short-hand, +10:u13:owner., +14:u03:short-hand, +10:u04:owner., +12:u08:requests, +7:u02:ID:, +10:u05:Owner:, +9:u08:share, +14:u11:short-hand, +10:u12:owner., +11:u14:server,, +14:u02:short-hand, +10:u03:owner., +7:u01:ID:, +10:u04:Owner:, +9:u07:share, +14:u10:short-hand, +10:u11:owner., +11:u13:server,, +14:u01:short-hand, +10:u02:owner., +12:u07:requests, +7:u00:ID:, +10:u03:Owner:, +9:u06:share, +10:u10:owner., +11:u12:server,, +14:u00:short-hand, +10:u01:owner., +12:u06:requests, +10:u02:Owner:, +9:u05:share, +11:u08:System:, +11:u11:server,, +12:u14:requests, +10:u00:owner., +12:u05:requests, +10:u01:Owner:, +9:u04:share, +11:u07:System:, +11:u10:server,, +12:u13:requests, +12:u04:requests, +10:u00:Owner:, +9:u03:share, +11:u06:System:, +12:u12:requests, +8:u14:file, +12:u03:requests, +10:u08:Lease:, +9:u02:share, +11:u05:System:, +12:u11:requests, +8:u13:file, +10:u14:server, +12:u02:requests, +9:u01:share, +11:u04:System:, +12:u10:requests, +8:u12:file, +10:u13:server, +7:u22:Fil, +8:u23:File, +12:u01:requests, +10:u07:Lease:, +9:u08:lease, +9:u00:share, +11:u03:System:, +8:u11:file, +12:u00:requests, +10:u06:Lease:, +13:u08:extended., +11:u02:System:, +11:u08:period,, +8:u10:file, +10:u14:lease:, +10:uI2:(...)., +10:u05:Lease:, +9:u07:lease, +11:u08:granted, +11:u01:System:, +11:u07:period,, +10:u13:lease:, +10:uI1:(...)., +10:u04:Lease:, +9:u06:lease, +13:u07:extended., +11:u00:System:, +11:u06:period,, +10:u12:lease:, +9:u14:lease, +7:u22:Lea, +8:u23:Leas, +10:uI0:(...)., +10:u03:Lease:, +9:u05:lease, +13:u06:extended., +11:u07:granted, +9:u08:Lock:, +11:u05:period,, +10:u11:lease:, +9:u13:lease, +13:u14:extended., +10:u02:Lease:, +9:u04:lease, +13:u05:extended., +11:u06:granted, +17:u08:environments,, +11:u04:period,, +10:u10:lease:, +9:u12:lease, +13:u13:extended., +11:u14:granted, +8:u23:leas, +10:u01:Lease:, +9:u03:lease, +13:u04:extended., +11:u05:granted, +9:u07:Lock:, +16:u08:delegations,, +11:u03:period,, +9:u11:lease, +13:u12:extended., +11:u13:granted, +10:u00:Lease:, +9:u02:lease, +13:u03:extended., +11:u04:granted, +9:u06:Lock:, +17:u07:environments,, +10:u08:Secret, +11:u02:period,, +9:u10:lease, +13:u11:extended., +11:u12:granted, +9:u14:lock:, +7:u22:gra, +8:u23:gran, +9:u01:lease, +13:u02:extended., +11:u03:granted, +9:u05:Lock:, +17:u06:environments,, +16:u07:delegations,, +11:u01:period,, +13:u10:extended., +11:u11:granted, +9:u13:lock:, +17:u14:environments,, +9:uI2::""-(, +9:u00:lease, +13:u01:extended., +11:u02:granted, +9:u04:Lock:, +17:u05:environments,, +16:u06:delegations,, +10:u07:Secret, +11:u00:period,, +11:u10:granted, +9:u12:lock:, +17:u13:environments,, +16:u14:delegations,, +9:uI1::""-(, +8:uI2:,),,, +13:u00:extended., +11:u01:granted, +9:u03:Lock:, +17:u04:environments,, +16:u05:delegations,, +10:u06:Secret, +12:u08:internal, +9:u11:lock:, +17:u12:environments,, +16:u13:delegations,, +10:u14:secret, +7:u22:env, +8:u23:envi, +9:uI0::""-(, +8:uI1:,),,, +11:u00:granted, +9:u02:Lock:, +17:u03:environments,, +16:u04:delegations,, +10:u05:Secret, +12:u07:internal, +9:u08:(GSS), +9:u10:lock:, +17:u11:environments,, +16:u12:delegations,, +10:u13:secret, +8:u23:dele, +8:uI0:,),,, +9:u01:Lock:, +17:u02:environments,, +16:u03:delegations,, +10:u04:Secret, +12:u06:internal, +9:u07:(GSS), +12:u08:2.10.9)., +17:u10:environments,, +16:u11:delegations,, +10:u12:secret, +8:u23:Secr, +9:u00:Lock:, +17:u01:environments,, +16:u02:delegations,, +10:u03:Secret, +12:u05:internal, +9:u06:(GSS), +12:u07:2.10.9)., +13:u08:integrity, +16:u10:delegations,, +10:u11:secret, +12:u14:services, +8:uI2:(,.), +17:u00:environments,, +16:u01:delegations,, +10:u02:Secret, +12:u04:internal, +9:u05:(GSS), +12:u06:2.10.9)., +13:u07:integrity, +10:u10:secret, +12:u13:services, +8:uI1:(,.), +8:uI2:()(;, +16:u00:delegations,, +10:u01:Secret, +12:u03:internal, +9:u04:(GSS), +12:u05:2.10.9)., +13:u06:integrity, +12:u12:services, +8:uI0:(,.), +8:uI1:()(;, +8:uI2:..)., +10:u00:Secret, +12:u02:internal, +9:u03:(GSS), +12:u04:2.10.9)., +13:u05:integrity, +12:u11:services, +8:uI0:()(;, +8:uI1:..)., +12:u01:internal, +9:u02:(GSS), +12:u03:2.10.9)., +13:u04:integrity, +12:u10:services, +8:uI0:..)., +12:u00:internal, +9:u01:(GSS), +12:u02:2.10.9)., +13:u03:integrity, +9:u00:(GSS), +12:u01:2.10.9)., +13:u02:integrity, +12:u00:2.10.9)., +13:u01:integrity, +12:u08:2.10.8.3, +11:u08:Server:, +13:u00:integrity, +12:u07:2.10.8.3, +7:u08:SSV, +12:u06:2.10.8.3, +7:u07:SSV, +11:u07:Server:, +12:u05:2.10.8.3, +7:u06:SSV, +11:u06:Server:, +12:u04:2.10.8.3, +7:u05:SSV, +11:u14:server:, +11:u05:Server:, +12:u03:2.10.8.3, +7:u04:SSV, +11:u13:server:, +11:u04:Server:, +15:u08:identifier., +12:u02:2.10.8.3, +7:u03:SSV, +11:u12:server:, +11:u03:Server:, +12:u01:2.10.8.3, +7:u02:SSV, +11:u11:server:, +11:u02:Server:, +15:u07:identifier., +12:u00:2.10.8.3, +7:u01:SSV, +11:u10:server:, +11:u01:Server:, +15:u06:identifier., +15:u08:connection), +7:u00:SSV, +15:u14:identifier., +11:u00:Server:, +15:u05:identifier., +16:u08:connections., +15:u13:identifier., +15:u04:identifier., +15:u07:connection), +16:u08:identifiers,, +15:u12:identifier., +15:u03:identifier., +15:u06:connection), +16:u07:connections., +14:u08:associable, +15:u11:identifier., +15:u14:connection), +15:u02:identifier., +15:u05:connection), +16:u06:connections., +16:u07:identifiers,, +10:u08:Stable, +15:u10:identifier., +15:u13:connection), +16:u14:connections., +15:u01:identifier., +15:u04:connection), +16:u05:connections., +16:u06:identifiers,, +14:u07:associable, +12:u08:Storage:, +15:u12:connection), +16:u13:connections., +16:u14:identifiers,, +15:u00:identifier., +15:u03:connection), +16:u04:connections., +16:u05:identifiers,, +14:u06:associable, +10:u07:Stable, +9:u08:power, +12:u07:Storage:, +15:u11:connection), +16:u12:connections., +16:u13:identifiers,, +14:u14:associable, +15:u02:connection), +16:u03:connections., +16:u04:identifiers,, +14:u05:associable, +10:u06:Stable, +12:u06:Storage:, +12:u08:failures, +15:u10:connection), +16:u11:connections., +16:u12:identifiers,, +14:u13:associable, +10:u14:stable, +15:u01:connection), +16:u02:connections., +16:u03:identifiers,, +14:u04:associable, +10:u05:Stable, +9:u07:power, +12:u05:Storage:, +12:u07:failures, +16:u10:connections., +16:u11:identifiers,, +14:u12:associable, +10:u13:stable, +15:u00:connection), +16:u01:connections., +16:u02:identifiers,, +14:u03:associable, +10:u04:Stable, +9:u06:power, +11:u08:storage, +12:u04:Storage:, +12:u06:failures, +10:u08:and/or, +16:u10:identifiers,, +14:u11:associable, +10:u12:stable, +8:u23:Stab, +16:u00:connections., +16:u01:identifiers,, +14:u02:associable, +10:u03:Stable, +9:u05:power, +11:u08:memory,, +12:u03:Storage:, +12:u05:failures, +10:u07:and/or, +14:u10:associable, +10:u11:stable, +7:uI2:(,,, +16:u00:identifiers,, +14:u01:associable, +10:u02:Stable, +9:u04:power, +11:u07:storage, +12:u02:Storage:, +12:u04:failures, +10:u06:and/or, +10:u08:etc.)., +10:u10:stable, +13:u14:failures,, +7:u22:pow, +8:u23:powe, +7:uI1:(,,, +14:u00:associable, +10:u01:Stable, +9:u03:power, +11:u06:storage, +11:u07:memory,, +12:u01:Storage:, +12:u03:failures, +10:u05:and/or, +10:u07:etc.)., +12:u08:examples, +13:u13:failures,, +11:u14:storage, +7:uI0:(,,, +10:u00:Stable, +9:u02:power, +11:u05:storage, +11:u06:memory,, +12:u00:Storage:, +12:u02:failures, +10:u04:and/or, +10:u06:etc.)., +12:u07:examples, +12:u08:include:, +13:u12:failures,, +11:u13:storage, +11:u14:memory,, +9:u01:power, +11:u04:storage, +11:u05:memory,, +16:u08:successfully, +12:u01:failures, +10:u03:and/or, +10:u05:etc.)., +12:u06:examples, +12:u07:include:, +13:u11:failures,, +11:u12:storage, +11:u13:memory,, +8:uI2:,.)., +9:u00:power, +11:u03:storage, +11:u04:memory,, +12:u08:platter., +12:u00:failures, +10:u02:and/or, +10:u04:etc.)., +12:u05:examples, +12:u06:include:, +11:u08:written, +13:u10:failures,, +11:u11:storage, +11:u12:memory,, +7:u22:mem, +8:u23:memo, +8:uI1:,.)., +11:u02:storage, +11:u03:memory,, +16:u07:successfully, +10:u01:and/or, +10:u03:etc.)., +12:u04:examples, +12:u05:include:, +11:u07:written, +11:u10:storage, +11:u11:memory,, +8:uI0:,.)., +11:u01:storage, +11:u02:memory,, +16:u06:successfully, +12:u07:platter., +10:u00:and/or, +10:u02:etc.)., +12:u03:examples, +12:u04:include:, +11:u06:written, +11:u10:memory,, +16:u14:successfully, +7:uI2:.;,, +11:u00:storage, +11:u01:memory,, +16:u05:successfully, +12:u06:platter., +10:u01:etc.)., +12:u02:examples, +12:u03:include:, +11:u05:written, +16:u13:successfully, +12:u14:platter., +7:uI1:.;,, +11:u00:memory,, +16:u04:successfully, +12:u05:platter., +10:u00:etc.)., +12:u01:examples, +12:u02:include:, +11:u04:written, +16:u12:successfully, +12:u13:platter., +8:u23:succ, +7:uI0:.;,, +16:u03:successfully, +12:u04:platter., +12:u00:examples, +12:u01:include:, +11:u03:written, +16:u11:successfully, +12:u12:platter., +8:u23:plat, +8:uI2:.-,-, +16:u02:successfully, +12:u03:platter., +12:u00:include:, +11:u02:written, +9:u08:Cache, +16:u10:successfully, +12:u11:platter., +8:uI1:.-,-, +16:u01:successfully, +12:u02:platter., +12:u08:Stateid:, +11:u01:written, +9:u07:Cache, +13:u08:software., +12:u10:platter., +8:uI0:.-,-, +16:u00:successfully, +12:u01:platter., +11:u00:written, +9:u06:Cache, +13:u07:software., +12:u00:platter., +12:u07:Stateid:, +9:u05:Cache, +13:u06:software., +12:u06:Stateid:, +9:u04:Cache, +13:u05:software., +12:u14:stateid:, +12:u05:Stateid:, +9:u03:Cache, +13:u04:software., +12:u13:stateid:, +12:u14:uniquely, +12:u04:Stateid:, +9:u02:Cache, +13:u03:software., +12:u12:stateid:, +12:u13:uniquely, +12:u03:Stateid:, +9:u01:Cache, +13:u02:software., +12:u11:stateid:, +12:u12:uniquely, +7:u22:uni, +8:u23:uniq, +8:uI2:--/-, +12:u02:Stateid:, +9:u00:Cache, +13:u01:software., +12:u10:stateid:, +12:u11:uniquely, +8:uI1:--/-, +12:u01:Stateid:, +13:u00:software., +12:u10:uniquely, +8:uI0:--/-, +12:u00:Stateid:, +13:u08:Verifier:, +13:u07:Verifier:, +13:u06:Verifier:, +8:u08:lost, +13:u14:verifier:, +13:u05:Verifier:, +8:u07:lost, +13:u13:verifier:, +13:u04:Verifier:, +8:u06:lost, +13:u12:verifier:, +8:u23:Veri, +13:u03:Verifier:, +10:u08:reader, +8:u05:lost, +13:u11:verifier:, +13:u02:Verifier:, +8:u04:lost, +7:u08:who, +13:u10:verifier:, +13:u01:Verifier:, +10:u07:reader, +8:u03:lost, +7:u07:who, +13:u00:Verifier:, +10:u06:reader, +8:u02:lost, +7:u06:who, +10:u14:reader, +10:u05:reader, +8:u01:lost, +7:u05:who, +10:u13:reader, +10:u04:reader, +8:u00:lost, +7:u04:who, +18:u08:Representation, +10:u12:reader, +10:u03:reader, +7:u03:who, +18:u07:Representation, +10:u11:reader, +10:u02:reader, +7:u02:who, +18:u06:Representation, +8:u08:file, +10:u10:reader, +8:u14:data, +10:u01:reader, +7:u01:who, +18:u05:Representation, +8:u07:file, +12:u08:general,, +8:u13:data, +10:u00:reader, +7:u00:who, +18:u04:Representation, +8:u06:file, +12:u07:general,, +9:u08:added, +8:u12:data, +18:u03:Representation, +8:u05:file, +12:u06:general,, +9:u07:added, +8:u11:data, +10:u08:1.8.1., +18:u02:Representation, +8:u04:file, +12:u05:general,, +9:u06:added, +8:u10:data, +18:u01:Representation, +8:u03:file, +12:u04:general,, +9:u05:added, +10:u07:1.8.1., +9:u08:(XDR), +18:u00:Representation, +8:u02:file, +12:u03:general,, +9:u04:added, +10:u06:1.8.1., +8:u01:file, +12:u02:general,, +9:u03:added, +10:u14:1.8.1., +10:u05:1.8.1., +9:u07:(XDR), +8:u00:file, +12:u01:general,, +9:u02:added, +10:u13:1.8.1., +10:u04:1.8.1., +9:u06:(XDR), +12:u00:general,, +9:u01:added, +17:u08:requirements,, +10:u12:1.8.1., +9:u14:(xdr), +10:u03:1.8.1., +9:u05:(XDR), +9:u00:added, +17:u07:requirements,, +10:u11:1.8.1., +9:u13:(xdr), +10:u02:1.8.1., +9:u04:(XDR), +11:u08:privacy, +17:u06:requirements,, +10:u10:1.8.1., +9:u12:(xdr), +6:u21:(X, +7:u22:(XD, +8:u23:(XDR, +11:uI2:[][].--, +10:u01:1.8.1., +9:u03:(XDR), +7:u08:[5], +17:u05:requirements,, +9:u11:(xdr), +11:uI1:[][].--, +10:u00:1.8.1., +9:u02:(XDR), +11:u07:privacy, +17:u04:requirements,, +9:u10:(xdr), +11:uI0:[][].--, +9:u01:(XDR), +11:u06:privacy, +7:u07:[5], +17:u03:requirements,, +11:u14:privacy, +9:u00:(XDR), +11:u05:privacy, +7:u06:[5], +17:u02:requirements,, +11:u13:privacy, +7:u14:[5], +11:u04:privacy, +7:u05:[5], +17:u01:requirements,, +11:u12:privacy, +7:u13:[5], +8:u23:priv, +8:uI2:[].,, +11:u03:privacy, +7:u04:[5], +17:u00:requirements,, +11:u11:privacy, +7:u12:[5], +6:u21:[5, +7:u22:[5], +7:u23:[5], +8:uI1:[].,, +11:u02:privacy, +7:u03:[5], +11:u10:privacy, +7:u11:[5], +8:uI0:[].,, +11:u01:privacy, +7:u02:[5], +12:u08:policies, +7:u10:[5], +9:u14:about, +11:u00:privacy, +7:u01:[5], +9:u13:about, +7:u00:[5], +12:u07:policies, +9:u12:about, +7:u22:abo, +8:u23:abou, +7:uI2:'.,, +12:u06:policies, +17:u08:significantly, +9:u08:pNFS., +9:u11:about, +12:u14:policies, +7:uI1:'.,, +12:u05:policies, +9:u07:pNFS., +12:u08:modified, +9:u10:about, +12:u13:policies, +7:uI0:'.,, +12:u04:policies, +17:u07:significantly, +9:u06:pNFS., +12:u07:modified, +10:u08:12.9),, +12:u12:policies, +7:u22:pol, +8:u23:poli, +11:uI2:.(...),, +12:u03:policies, +17:u06:significantly, +9:u05:pNFS., +12:u06:modified, +10:u07:12.9),, +12:u11:policies, +17:u14:significantly, +11:uI1:.(...),, +12:u02:policies, +17:u05:significantly, +9:u04:pNFS., +12:u05:modified, +10:u06:12.9),, +11:u08:12.2.5), +12:u10:policies, +17:u13:significantly, +11:uI0:.(...),, +12:u01:policies, +17:u04:significantly, +9:u03:pNFS., +12:u04:modified, +10:u05:12.9),, +11:u07:12.2.5), +17:u12:significantly, +8:uI2:.),., +12:u00:policies, +17:u03:significantly, +9:u02:pNFS., +12:u03:modified, +10:u04:12.9),, +11:u06:12.2.5), +17:u11:significantly, +8:uI1:.),., +17:u02:significantly, +9:u01:pNFS., +12:u02:modified, +10:u03:12.9),, +11:u05:12.2.5), +17:u10:significantly, +8:uI0:.),., +11:uI2:..)(.)., +17:u01:significantly, +9:u00:pNFS., +12:u01:modified, +10:u02:12.9),, +11:u04:12.2.5), +11:uI1:..)(.)., +17:u00:significantly, +12:u00:modified, +10:u01:12.9),, +11:u03:12.2.5), +11:uI0:..)(.)., +10:u08:1.8.2., +10:u00:12.9),, +11:u02:12.2.5), +12:u08:1.8.2.1., +11:u01:12.2.5), +10:u07:1.8.2., +10:u08:Unlike, +11:u00:12.2.5), +10:u06:1.8.2., +12:u07:1.8.2.1., +7:u08:NSM, +10:u08:NFSv3,, +10:u14:1.8.2., +10:u05:1.8.2., +12:u06:1.8.2.1., +10:u07:Unlike, +10:u07:NFSv3,, +12:u08:(Network, +10:u13:1.8.2., +12:u14:1.8.2.1., +10:u04:1.8.2., +12:u05:1.8.2.1., +10:u06:Unlike, +7:u07:NSM, +14:u08:Facilities, +10:u06:NFSv3,, +12:u07:(Network, +10:u12:1.8.2., +12:u13:1.8.2.1., +10:u14:unlike, +10:u03:1.8.2., +12:u04:1.8.2.1., +10:u05:Unlike, +7:u06:NSM, +14:u08:integrated, +10:u05:NFSv3,, +12:u06:(Network, +10:u11:1.8.2., +12:u12:1.8.2.1., +10:u13:unlike, +7:u14:nsm, +10:uI2:,(..,,, +10:u02:1.8.2., +12:u03:1.8.2.1., +10:u04:Unlike, +7:u05:NSM, +14:u07:Facilities, +12:u08:1.8.2.2., +10:u04:NFSv3,, +12:u05:(Network, +10:u10:1.8.2., +12:u11:1.8.2.1., +10:u12:unlike, +7:u13:nsm, +7:u22:Unl, +8:u23:Unli, +10:uI1:,(..,,, +9:uI2:(),),, +10:u01:1.8.2., +12:u02:1.8.2.1., +10:u03:Unlike, +7:u04:NSM, +14:u06:Facilities, +14:u07:integrated, +10:u03:NFSv3,, +12:u04:(Network, +12:u10:1.8.2.1., +10:u11:unlike, +7:u12:nsm, +14:u14:facilities, +7:u22:NSM, +7:u23:NSM, +10:uI0:,(..,,, +9:uI1:(),),, +10:u00:1.8.2., +12:u01:1.8.2.1., +10:u02:Unlike, +7:u03:NSM, +14:u05:Facilities, +14:u06:integrated, +12:u07:1.8.2.2., +10:u02:NFSv3,, +12:u03:(Network, +10:u10:unlike, +7:u11:nsm, +14:u13:facilities, +14:u14:integrated, +9:uI0:(),),, +12:u00:1.8.2.1., +10:u01:Unlike, +7:u02:NSM, +14:u04:Facilities, +14:u05:integrated, +12:u06:1.8.2.2., +10:u01:NFSv3,, +12:u02:(Network, +7:u10:nsm, +14:u12:facilities, +14:u13:integrated, +12:u14:1.8.2.2., +7:u22:Fac, +8:u23:Faci, +10:u00:Unlike, +7:u01:NSM, +14:u03:Facilities, +14:u04:integrated, +12:u05:1.8.2.2., +8:u08:Such, +10:u00:NFSv3,, +12:u01:(Network, +11:u08:access,, +14:u11:facilities, +14:u12:integrated, +12:u13:1.8.2.2., +7:u00:NSM, +14:u02:Facilities, +14:u03:integrated, +12:u04:1.8.2.2., +12:u00:(Network, +11:u07:access,, +12:u08:parallel, +14:u10:facilities, +14:u11:integrated, +12:u12:1.8.2.2., +14:u01:Facilities, +14:u02:integrated, +12:u03:1.8.2.2., +8:u07:Such, +11:u08:Clients, +11:u06:access,, +12:u07:parallel, +14:u08:"layouts",, +14:u10:integrated, +12:u11:1.8.2.2., +8:u23:Mino, +14:u00:Facilities, +14:u01:integrated, +12:u02:1.8.2.2., +8:u06:Such, +11:u05:access,, +12:u06:parallel, +14:u07:"layouts",, +10:u08:direct, +12:u10:1.8.2.2., +14:u00:integrated, +12:u01:1.8.2.2., +8:u05:Such, +11:u07:Clients, +11:u04:access,, +12:u05:parallel, +14:u06:"layouts",, +10:u07:direct, +7:u22:dat, +8:u23:data, +12:u00:1.8.2.2., +8:u04:Such, +11:u06:Clients, +11:u08:Because, +11:u03:access,, +12:u04:parallel, +14:u05:"layouts",, +10:u06:direct, +11:u14:clients, +7:u22:Suc, +8:u23:Such, +8:uI2:"",., +8:u03:Such, +11:u05:Clients, +15:u08:necessarily, +11:u02:access,, +12:u03:parallel, +14:u04:"layouts",, +10:u05:direct, +11:u13:clients, +8:uI1:"",., +8:u02:Such, +11:u04:Clients, +11:u07:Because, +11:u01:access,, +12:u02:parallel, +14:u03:"layouts",, +10:u04:direct, +14:u08:RPC-based,, +11:u12:clients, +8:uI0:"",., +8:u01:Such, +11:u03:Clients, +11:u06:Because, +15:u07:necessarily, +10:u08:varies, +11:u00:access,, +12:u01:parallel, +14:u02:"layouts",, +10:u03:direct, +14:u07:RPC-based,, +13:u08:obviously, +11:u11:clients, +8:u00:Such, +11:u02:Clients, +11:u05:Because, +15:u06:necessarily, +12:u00:parallel, +14:u01:"layouts",, +10:u02:direct, +14:u06:RPC-based,, +13:u07:obviously, +11:u10:clients, +15:u14:necessarily, +11:u01:Clients, +11:u04:Because, +15:u05:necessarily, +10:u07:varies, +10:u08:1.8.3., +14:u00:"layouts",, +10:u01:direct, +14:u05:RPC-based,, +13:u06:obviously, +15:u13:necessarily, +7:u22:Bec, +8:u23:Beca, +11:uI2:-,-(..), +11:u00:Clients, +11:u03:Because, +15:u04:necessarily, +10:u06:varies, +10:u00:direct, +14:u04:RPC-based,, +13:u05:obviously, +15:u12:necessarily, +10:u14:varies, +7:u22:nec, +8:u23:nece, +11:uI1:-,-(..), +11:u02:Because, +15:u03:necessarily, +10:u05:varies, +10:u07:1.8.3., +14:u03:RPC-based,, +13:u04:obviously, +11:u08:general, +15:u11:necessarily, +10:u13:varies, +11:u14:access,, +11:uI0:-,-(..), +11:u01:Because, +15:u02:necessarily, +10:u04:varies, +10:u06:1.8.3., +14:u02:RPC-based,, +13:u03:obviously, +11:u07:general, +15:u10:necessarily, +10:u12:varies, +11:u13:access,, +10:u14:1.8.3., +9:uI2:,(.)., +11:u00:Because, +15:u01:necessarily, +10:u03:varies, +10:u05:1.8.3., +14:u01:RPC-based,, +13:u02:obviously, +11:u06:general, +10:u11:varies, +11:u12:access,, +10:u13:1.8.3., +9:uI1:,(.)., +15:u00:necessarily, +10:u02:varies, +10:u04:1.8.3., +14:u00:RPC-based,, +13:u01:obviously, +11:u05:general, +10:u10:varies, +11:u11:access,, +10:u12:1.8.3., +9:uI0:,(.)., +10:u01:varies, +10:u03:1.8.3., +13:u00:obviously, +11:u04:general, +11:u10:access,, +10:u11:1.8.3., +10:u00:varies, +10:u02:1.8.3., +11:u03:general, +10:u10:1.8.3., +10:u01:1.8.3., +11:u08:systems, +11:u02:general, +10:u00:1.8.3., +11:u01:general, +12:u08:exported, +11:u07:systems, +15:u08:filehandle., +11:u00:general, +12:u07:exported, +11:u06:systems, +13:u08:functions, +12:u06:exported, +11:u14:systems, +11:u05:systems, +15:u07:filehandle., +12:u05:exported, +11:u13:systems, +11:u04:systems, +15:u06:filehandle., +13:u07:functions, +9:u08:arise, +12:u04:exported, +11:u12:systems, +15:u14:filehandle., +11:u03:systems, +15:u05:filehandle., +13:u06:functions, +12:u03:exported, +11:u11:systems, +15:u13:filehandle., +11:u02:systems, +15:u04:filehandle., +13:u05:functions, +9:u07:arise, +12:u02:exported, +11:u10:systems, +15:u12:filehandle., +7:u22:fil, +8:u23:file, +11:u01:systems, +15:u03:filehandle., +13:u04:functions, +9:u06:arise, +12:u01:exported, +15:u11:filehandle., +9:u14:arise, +11:u00:systems, +15:u02:filehandle., +13:u03:functions, +9:u05:arise, +12:u00:exported, +15:u10:filehandle., +9:u13:arise, +15:u01:filehandle., +13:u02:functions, +9:u04:arise, +9:u12:arise, +7:u22:ari, +8:u23:aris, +15:u00:filehandle., +13:u01:functions, +9:u03:arise, +9:u11:arise, +13:u00:functions, +9:u02:arise, +12:u08:1.8.3.1., +9:u10:arise, +9:u01:arise, +9:u00:arise, +12:u07:1.8.3.1., +12:u06:1.8.3.1., +12:u14:1.8.3.1., +12:u05:1.8.3.1., +12:u13:1.8.3.1., +12:u04:1.8.3.1., +12:u12:1.8.3.1., +12:u03:1.8.3.1., +14:u08:guaranteed, +12:u11:1.8.3.1., +12:u02:1.8.3.1., +15:u08:designated., +12:u10:1.8.3.1., +12:u01:1.8.3.1., +14:u07:guaranteed, +15:u08:filehandles, +12:u00:1.8.3.1., +14:u06:guaranteed, +15:u07:designated., +16:u08:filehandles., +14:u14:guaranteed, +14:u05:guaranteed, +15:u06:designated., +15:u07:filehandles, +12:u08:1.8.3.2., +14:u13:guaranteed, +15:u14:designated., +14:u04:guaranteed, +15:u05:designated., +15:u06:filehandles, +16:u07:filehandles., +14:u12:guaranteed, +15:u13:designated., +15:u14:filehandles, +6:u21:gu, +7:u22:gua, +8:u23:guar, +14:u03:guaranteed, +15:u04:designated., +15:u05:filehandles, +16:u06:filehandles., +12:u07:1.8.3.2., +14:u08:structure,, +14:u11:guaranteed, +15:u12:designated., +15:u13:filehandles, +16:u14:filehandles., +14:u02:guaranteed, +15:u03:designated., +15:u04:filehandles, +16:u05:filehandles., +12:u06:1.8.3.2., +14:u10:guaranteed, +15:u11:designated., +15:u12:filehandles, +16:u13:filehandles., +12:u14:1.8.3.2., +14:u01:guaranteed, +15:u02:designated., +15:u03:filehandles, +16:u04:filehandles., +12:u05:1.8.3.2., +14:u07:structure,, +11:u08:Several, +15:u10:designated., +15:u11:filehandles, +16:u12:filehandles., +12:u13:1.8.3.2., +14:u00:guaranteed, +15:u01:designated., +15:u02:filehandles, +16:u03:filehandles., +12:u04:1.8.3.2., +14:u06:structure,, +8:u08:(but, +15:u10:filehandles, +16:u11:filehandles., +12:u12:1.8.3.2., +14:u14:structure,, +15:u00:designated., +15:u01:filehandles, +16:u02:filehandles., +12:u03:1.8.3.2., +14:u05:structure,, +11:u07:Several, +10:u08:[34])., +8:u07:(but, +16:u10:filehandles., +12:u11:1.8.3.2., +14:u13:structure,, +15:u00:filehandles, +16:u01:filehandles., +12:u02:1.8.3.2., +14:u04:structure,, +11:u06:Several, +8:u06:(but, +12:u10:1.8.3.2., +14:u12:structure,, +8:u23:stru, +16:u00:filehandles., +12:u01:1.8.3.2., +14:u03:structure,, +11:u05:Several, +10:u07:[34])., +15:u08:directories, +8:u05:(but, +12:u08:5.8.1.2), +14:u11:structure,, +12:u00:1.8.3.2., +14:u02:structure,, +11:u04:Several, +10:u06:[34])., +8:u04:(but, +12:u07:5.8.1.2), +9:u08:(also, +14:u10:structure,, +10:u14:[34])., +7:u22:Sev, +8:u23:Seve, +14:u01:structure,, +11:u03:Several, +10:u05:[34])., +15:u07:directories, +8:u03:(but, +12:u06:5.8.1.2), +9:u07:(also, +10:u13:[34])., +9:uI2:[]).', +14:u00:structure,, +11:u02:Several, +10:u04:[34])., +15:u06:directories, +8:u02:(but, +12:u05:5.8.1.2), +9:u06:(also, +10:u12:[34])., +15:u14:directories, +6:u21:[3, +7:u22:[34, +8:u23:[34], +9:uI1:[]).', +9:uI2:(...), +11:u01:Several, +10:u03:[34])., +15:u05:directories, +8:u01:(but, +12:u04:5.8.1.2), +9:u05:(also, +10:u11:[34])., +15:u13:directories, +9:uI0:[]).', +9:uI1:(...), +11:u00:Several, +10:u02:[34])., +15:u04:directories, +8:u00:(but, +12:u03:5.8.1.2), +9:u04:(also, +10:u10:[34])., +15:u12:directories, +9:uI0:(...), +10:u01:[34])., +15:u03:directories, +10:u08:beyond, +12:u02:5.8.1.2), +9:u03:(also, +7:u08:6)., +15:u11:directories, +10:u00:[34])., +15:u02:directories, +12:u01:5.8.1.2), +9:u02:(also, +7:u07:6)., +15:u10:directories, +15:u01:directories, +10:u07:beyond, +12:u00:5.8.1.2), +9:u01:(also, +7:u06:6)., +15:u00:directories, +10:u06:beyond, +9:u00:(also, +7:u05:6)., +10:u14:beyond, +10:u05:beyond, +7:u04:6)., +15:u08:permissions, +10:u13:beyond, +10:u04:beyond, +7:u03:6)., +15:u07:permissions, +11:u08:objects, +10:u12:beyond, +7:u22:bey, +8:u23:beyo, +10:u03:beyond, +7:u02:6)., +15:u06:permissions, +11:u07:objects, +10:u11:beyond, +10:u02:beyond, +13:u08:directory, +7:u01:6)., +15:u05:permissions, +11:u06:objects, +9:u08:named, +10:u10:beyond, +10:u01:beyond, +7:u00:6)., +15:u04:permissions, +11:u05:objects, +9:u07:named, +10:u00:beyond, +13:u07:directory, +24:u08:application-specific, +15:u03:permissions, +11:u04:objects, +9:u06:named, +13:u06:directory, +12:u08:modifies, +15:u02:permissions, +11:u03:objects, +9:u05:named, +13:u14:directory, +13:u05:directory, +24:u07:application-specific, +15:u01:permissions, +11:u02:objects, +9:u04:named, +13:u13:directory, +13:u04:directory, +24:u06:application-specific, +12:u07:modifies, +15:u00:permissions, +11:u01:objects, +9:u03:named, +13:u12:directory, +24:u14:application-specific, +13:u03:directory, +24:u05:application-specific, +12:u06:modifies, +11:u00:objects, +9:u02:named, +20:u08:implementations., +13:u11:directory, +24:u13:application-specific, +12:u14:modifies, +13:u02:directory, +24:u04:application-specific, +12:u05:modifies, +9:u01:named, +20:u07:implementations., +13:u10:directory, +24:u12:application-specific, +12:u13:modifies, +13:u01:directory, +24:u03:application-specific, +12:u04:modifies, +9:u00:named, +20:u06:implementations., +24:u11:application-specific, +12:u12:modifies, +17:u14:interoperable, +13:u00:directory, +24:u02:application-specific, +12:u03:modifies, +20:u05:implementations., +24:u10:application-specific, +12:u11:modifies, +17:u13:interoperable, +24:u01:application-specific, +12:u02:modifies, +20:u04:implementations., +12:u10:modifies, +17:u12:interoperable, +24:u00:application-specific, +12:u01:modifies, +20:u03:implementations., +17:u11:interoperable, +12:u00:modifies, +20:u02:implementations., +17:u10:interoperable, +12:u08:1.8.3.3., +20:u01:implementations., +20:u00:implementations., +12:u07:1.8.3.3., +14:u08:namespaces, +12:u06:1.8.3.3., +12:u14:1.8.3.3., +12:u05:1.8.3.3., +14:u07:namespaces, +18:u08:non-disruptive, +12:u13:1.8.3.3., +9:uI2:....-, +12:u04:1.8.3.3., +14:u06:namespaces, +18:u07:non-disruptive, +12:u08:servers., +12:u12:1.8.3.3., +14:u14:namespaces, +9:uI1:....-, +12:u03:1.8.3.3., +14:u05:namespaces, +18:u06:non-disruptive, +12:u07:servers., +12:u11:1.8.3.3., +14:u13:namespaces, +9:uI0:....-, +12:u02:1.8.3.3., +14:u04:namespaces, +11:u08:system., +18:u05:non-disruptive, +12:u06:servers., +12:u10:1.8.3.3., +14:u12:namespaces, +7:u22:nam, +8:u23:name, +12:u01:1.8.3.3., +14:u03:namespaces, +18:u04:non-disruptive, +12:u05:servers., +14:u11:namespaces, +12:u00:1.8.3.3., +14:u02:namespaces, +11:u07:system., +12:u08:systems:, +18:u03:non-disruptive, +12:u04:servers., +14:u10:namespaces, +14:u01:namespaces, +11:u06:system., +18:u02:non-disruptive, +12:u03:servers., +11:u14:system., +14:u00:namespaces, +11:u05:system., +12:u07:systems:, +13:u08:instance., +18:u01:non-disruptive, +12:u02:servers., +13:u08:Alternate, +11:u13:system., +11:u04:system., +12:u06:systems:, +18:u00:non-disruptive, +12:u01:servers., +13:u07:Alternate, +11:u12:system., +12:u14:systems:, +11:u03:system., +12:u05:systems:, +13:u07:instance., +12:u00:servers., +13:u06:Alternate, +11:u11:system., +12:u13:systems:, +11:u02:system., +12:u04:systems:, +13:u06:instance., +16:u08:unavailable., +13:u05:Alternate, +11:u10:system., +12:u12:systems:, +13:u14:instance., +11:u01:system., +12:u03:systems:, +13:u05:instance., +13:u04:Alternate, +12:u11:systems:, +13:u13:instance., +11:u00:system., +12:u02:systems:, +13:u04:instance., +16:u07:unavailable., +11:u08:concept, +13:u03:Alternate, +12:u10:systems:, +13:u12:instance., +12:u01:systems:, +13:u03:instance., +16:u06:unavailable., +13:u08:namespace, +13:u02:Alternate, +13:u11:instance., +16:u14:unavailable., +12:u00:systems:, +13:u02:instance., +16:u05:unavailable., +11:u07:concept, +9:u08:being, +13:u01:Alternate, +13:u10:instance., +16:u13:unavailable., +13:u01:instance., +16:u04:unavailable., +11:u06:concept, +13:u07:namespace, +13:u00:Alternate, +16:u12:unavailable., +11:u14:concept, +8:u23:unav, +13:u00:instance., +16:u03:unavailable., +11:u05:concept, +13:u06:namespace, +9:u07:being, +16:u11:unavailable., +11:u13:concept, +13:u14:namespace, +16:u02:unavailable., +11:u04:concept, +13:u05:namespace, +9:u06:being, +13:u08:referrals, +16:u10:unavailable., +11:u12:concept, +13:u13:namespace, +9:u14:being, +16:u01:unavailable., +11:u03:concept, +13:u04:namespace, +9:u05:being, +11:u11:concept, +13:u12:namespace, +9:u13:being, +16:u00:unavailable., +11:u02:concept, +13:u03:namespace, +9:u04:being, +13:u07:referrals, +12:u08:provided, +11:u10:concept, +13:u11:namespace, +9:u12:being, +7:u22:bei, +8:u23:bein, +11:u01:concept, +13:u02:namespace, +9:u03:being, +13:u06:referrals, +12:u07:provided, +13:u10:namespace, +9:u11:being, +13:u14:referrals, +11:u00:concept, +13:u01:namespace, +9:u02:being, +13:u05:referrals, +12:u06:provided, +9:u10:being, +13:u13:referrals, +13:u00:namespace, +9:u01:being, +13:u04:referrals, +12:u05:provided, +11:u08:becomes, +13:u12:referrals, +9:u00:being, +13:u03:referrals, +10:u08:1.8.4., +12:u04:provided, +11:u07:becomes, +13:u11:referrals, +13:u02:referrals, +12:u03:provided, +11:u06:becomes, +11:u08:Locking, +13:u10:referrals, +13:u01:referrals, +10:u07:1.8.4., +11:u08:locking, +12:u02:provided, +11:u05:becomes, +11:u07:Locking, +13:u08:mentioned, +13:u00:referrals, +10:u06:1.8.4., +12:u01:provided, +11:u04:becomes, +11:u06:Locking, +13:u07:mentioned, +15:u08:facilities., +10:u14:1.8.4., +10:u05:1.8.4., +11:u07:locking, +12:u00:provided, +11:u03:becomes, +11:u05:Locking, +13:u06:mentioned, +15:u07:facilities., +9:u08:types, +10:u13:1.8.4., +10:u04:1.8.4., +11:u06:locking, +11:u02:becomes, +11:u04:Locking, +13:u05:mentioned, +15:u06:facilities., +9:u07:types, +9:u08:locks, +10:u12:1.8.4., +11:u14:locking, +10:u03:1.8.4., +11:u05:locking, +11:u01:becomes, +11:u03:Locking, +13:u04:mentioned, +15:u05:facilities., +9:u06:types, +9:u07:locks, +10:u11:1.8.4., +11:u13:locking, +10:u02:1.8.4., +11:u04:locking, +12:u08:request., +11:u00:becomes, +11:u02:Locking, +13:u03:mentioned, +15:u04:facilities., +9:u05:types, +9:u06:locks, +17:u08:circumstances, +10:u10:1.8.4., +11:u12:locking, +14:u14:recallable, +8:u23:lock, +10:u01:1.8.4., +11:u03:locking, +11:u08:caching, +11:u01:Locking, +13:u02:mentioned, +15:u03:facilities., +9:u04:types, +9:u05:locks, +17:u07:circumstances, +11:u11:locking, +14:u13:recallable, +8:u23:many, +10:u00:1.8.4., +11:u02:locking, +12:u07:request., +11:u00:Locking, +13:u01:mentioned, +15:u02:facilities., +9:u03:types, +9:u04:locks, +17:u06:circumstances, +11:u10:locking, +14:u12:recallable, +8:u23:Reca, +11:u01:locking, +12:u06:request., +11:u07:caching, +13:u00:mentioned, +15:u01:facilities., +9:u02:types, +9:u03:locks, +17:u05:circumstances, +14:u11:recallable, +12:u14:request., +11:u00:locking, +12:u05:request., +11:u06:caching, +15:u00:facilities., +9:u01:types, +9:u02:locks, +17:u04:circumstances, +14:u10:recallable, +12:u13:request., +11:u14:caching, +12:u04:request., +11:u05:caching, +9:u00:types, +9:u01:locks, +17:u03:circumstances, +12:u12:request., +11:u13:caching, +12:u03:request., +11:u04:caching, +9:u00:locks, +17:u02:circumstances, +12:u11:request., +11:u12:caching, +7:u22:cac, +8:u23:cach, +12:u02:request., +11:u03:caching, +17:u01:circumstances, +12:u10:request., +11:u11:caching, +12:u01:request., +11:u02:caching, +17:u00:circumstances, +11:u10:caching, +12:u00:request., +11:u01:caching, +11:u00:caching, +14:u08:Byte-range, +10:u08:holder, +14:u07:Byte-range, +8:u08:long, +14:u06:Byte-range, +10:u07:holder, +14:u05:Byte-range, +10:u06:holder, +8:u07:long, +14:u04:Byte-range, +10:u14:holder, +10:u05:holder, +8:u06:long, +14:u03:Byte-range, +10:u13:holder, +8:u14:long, +10:u04:holder, +8:u05:long, +14:u02:Byte-range, +10:u12:holder, +8:u13:long, +7:u22:hol, +8:u23:hold, +10:u03:holder, +8:u04:long, +14:u01:Byte-range, +12:u08:Layouts,, +10:u11:holder, +8:u12:long, +7:u22:lon, +8:u23:long, +10:u02:holder, +8:u03:long, +14:u00:Byte-range, +12:u07:Layouts,, +10:u10:holder, +8:u11:long, +10:u01:holder, +8:u02:long, +16:u08:inconsistent, +12:u06:Layouts,, +8:u10:long, +10:u00:holder, +8:u01:long, +9:u08:held., +12:u05:Layouts,, +10:u14:direct, +8:u00:long, +16:u07:inconsistent, +12:u04:Layouts,, +10:u13:direct, +16:u06:inconsistent, +9:u07:held., +8:u08:wide, +12:u03:Layouts,, +10:u12:direct, +16:u14:inconsistent, +16:u05:inconsistent, +9:u06:held., +9:u08:renew, +12:u02:Layouts,, +10:u08:lease., +10:u11:direct, +16:u13:inconsistent, +9:u14:held., +16:u04:inconsistent, +9:u05:held., +8:u07:wide, +12:u01:Layouts,, +10:u07:lease., +10:u10:direct, +16:u12:inconsistent, +9:u13:held., +16:u03:inconsistent, +9:u04:held., +8:u06:wide, +9:u07:renew, +12:u08:restart,, +12:u00:Layouts,, +10:u06:lease., +12:u08:client's, +16:u11:inconsistent, +9:u12:held., +8:u14:wide, +7:u22:hel, +8:u23:held, +16:u02:inconsistent, +9:u03:held., +8:u05:wide, +9:u06:renew, +10:u05:lease., +12:u07:client's, +11:u08:clients, +16:u10:inconsistent, +9:u11:held., +8:u13:wide, +9:u14:renew, +16:u01:inconsistent, +9:u02:held., +8:u04:wide, +9:u05:renew, +12:u07:restart,, +10:u04:lease., +12:u06:client's, +11:u07:clients, +9:u10:held., +8:u12:wide, +9:u13:renew, +7:u22:wid, +8:u23:wide, +7:uI2:.',, +16:u00:inconsistent, +9:u01:held., +8:u03:wide, +9:u04:renew, +12:u06:restart,, +10:u03:lease., +12:u05:client's, +11:u06:clients, +8:u11:wide, +9:u12:renew, +12:u14:restart,, +7:u22:ren, +8:u23:rene, +7:uI1:.',, +9:u00:held., +8:u02:wide, +9:u03:renew, +12:u05:restart,, +10:u02:lease., +12:u04:client's, +11:u05:clients, +8:u10:wide, +9:u11:renew, +12:u13:restart,, +7:uI0:.',, +8:u01:wide, +9:u02:renew, +12:u04:restart,, +10:u01:lease., +12:u03:client's, +11:u04:clients, +9:u10:renew, +12:u12:restart,, +8:u00:wide, +9:u01:renew, +12:u03:restart,, +10:u00:lease., +12:u02:client's, +11:u03:clients, +12:u11:restart,, +9:u00:renew, +12:u02:restart,, +12:u01:client's, +11:u02:clients, +12:u10:restart,, +12:u01:restart,, +8:u08:lock, +12:u00:client's, +11:u01:clients, +12:u08:Addition, +12:u00:restart,, +11:u00:clients, +12:u07:Addition, +15:u08:reclamation, +8:u07:lock, +5:u08:*, +12:u06:Addition, +15:u07:reclamation, +12:u08:Enhanced, +8:u06:lock, +11:u08:regular, +12:u05:Addition, +15:u06:reclamation, +12:u07:Enhanced, +15:u08:Delegations, +8:u05:lock, +5:u07:*, +12:u04:Addition, +15:u05:reclamation, +12:u06:Enhanced, +15:u07:Delegations, +9:u08:files, +8:u04:lock, +5:u06:*, +11:u07:regular, +15:u08:delegations, +12:u03:Addition, +15:u04:reclamation, +12:u05:Enhanced, +15:u06:Delegations, +9:u07:files, +5:u14:*, +8:u03:lock, +5:u05:*, +11:u06:regular, +12:u02:Addition, +15:u03:reclamation, +12:u04:Enhanced, +15:u05:Delegations, +9:u06:files, +5:u13:*, +11:u14:regular, +8:u02:lock, +5:u04:*, +11:u05:regular, +15:u07:delegations, +12:u01:Addition, +15:u02:reclamation, +12:u03:Enhanced, +15:u04:Delegations, +9:u05:files, +17:u08:Notifications, +5:u12:*, +11:u13:regular, +5:u21:*, +5:u22:*, +5:u23:*, +10:uI2:(.,.)., +8:u01:lock, +5:u03:*, +11:u04:regular, +15:u06:delegations, +12:u00:Addition, +15:u01:reclamation, +12:u02:Enhanced, +15:u03:Delegations, +9:u04:files, +17:u07:Notifications, +10:u08:18.39,, +5:u11:*, +11:u12:regular, +15:u14:delegations, +10:uI1:(.,.)., +8:u00:lock, +5:u02:*, +11:u03:regular, +15:u05:delegations, +15:u00:reclamation, +12:u01:Enhanced, +15:u02:Delegations, +9:u03:files, +17:u06:Notifications, +10:u07:18.39,, +5:u10:*, +11:u11:regular, +15:u13:delegations, +10:uI0:(.,.)., +12:uI2:(.,.,.)., +5:u01:*, +11:u02:regular, +15:u04:delegations, +12:u00:Enhanced, +15:u01:Delegations, +9:u02:files, +17:u05:Notifications, +10:u06:18.39,, +11:u10:regular, +15:u12:delegations, +12:uI1:(.,.,.)., +5:u00:*, +11:u01:regular, +15:u03:delegations, +15:u00:Delegations, +9:u01:files, +17:u04:Notifications, +10:u05:18.39,, +15:u11:delegations, +12:uI0:(.,.,.)., +11:u00:regular, +15:u02:delegations, +9:u00:files, +17:u03:Notifications, +10:u04:18.39,, +15:u10:delegations, +15:u01:delegations, +17:u02:Notifications, +10:u03:18.39,, +15:u00:delegations, +17:u01:Notifications, +10:u02:18.39,, +17:u00:Notifications, +10:u01:18.39,, +10:u00:18.39,, +10:u08:20.6)., +10:u07:20.6)., +10:u14:method, +10:u06:20.6)., +8:u08:OPEN, +10:u13:method, +10:u05:20.6)., +8:u07:OPEN, +11:u08:18.16)., +10:u12:method, +7:u22:met, +8:u23:meth, +10:u08:("hard, +10:u04:20.6)., +8:u06:OPEN, +11:u07:18.16)., +10:u11:method, +9:u08:zero,, +10:u03:20.6)., +8:u05:OPEN, +11:u06:18.16)., +9:u08:link", +10:u10:method, +10:u07:("hard, +10:u02:20.6)., +8:u04:OPEN, +11:u05:18.16)., +9:u07:link", +7:uI2:.)., +10:u06:("hard, +9:u07:zero,, +10:u01:20.6)., +8:u03:OPEN, +11:u04:18.16)., +9:u06:link", +13:u08:partially, +10:u14:("hard, +7:uI1:.)., +10:u05:("hard, +9:u06:zero,, +10:u00:20.6)., +8:u02:OPEN, +11:u03:18.16)., +9:u05:link", +13:u07:partially, +10:u13:("hard, +9:u14:zero,, +7:uI0:.)., +10:uI2:(""[]), +10:u04:("hard, +9:u05:zero,, +8:u01:OPEN, +11:u02:18.16)., +9:u04:link", +13:u06:partially, +10:u12:("hard, +9:u13:zero,, +6:u21:(", +7:u22:("h, +8:u23:("ha, +10:uI1:(""[]), +10:u03:("hard, +9:u04:zero,, +9:u08:Lists, +8:u00:OPEN, +11:u01:18.16)., +9:u03:link", +13:u05:partially, +10:u11:("hard, +9:u12:zero,, +8:u14:(see, +5:u20:z, +6:u21:ze, +7:u22:zer, +8:u23:zero, +10:uI0:(""[]), +8:uI2:--"", +10:u02:("hard, +9:u03:zero,, +11:u00:18.16)., +9:u02:link", +13:u04:partially, +10:u10:("hard, +9:u11:zero,, +8:u13:(see, +8:uI1:--"", +10:u01:("hard, +9:u02:zero,, +9:u07:Lists, +9:u01:link", +13:u03:partially, +9:u10:zero,, +8:u12:(see, +7:u22:(se, +8:u23:(see, +8:uI0:--"", +10:u00:("hard, +9:u01:zero,, +9:u06:Lists, +9:u00:link", +13:u02:partially, +8:u11:(see, +9:u14:lists, +9:u00:zero,, +9:u05:Lists, +13:u01:partially, +11:u08:18.35)., +8:u10:(see, +9:u13:lists, +16:uI2:(..,..,...)., +9:u04:Lists, +13:u00:partially, +11:u07:18.35)., +9:u12:lists, +7:u22:Lis, +8:u23:List, +16:uI1:(..,..,...)., +9:u03:Lists, +11:u06:18.35)., +9:u11:lists, +16:uI0:(..,..,...)., +9:u02:Lists, +11:u05:18.35)., +9:u08:18.16, +9:u10:lists, +9:u01:Lists, +9:u08:[35]., +11:u04:18.35)., +9:u07:18.16, +9:u00:Lists, +11:u03:18.35)., +9:u06:18.16, +9:u07:[35]., +11:u02:18.35)., +9:u05:18.16, +9:u06:[35]., +11:u01:18.35)., +9:u04:18.16, +9:u14:[35]., +9:u05:[35]., +11:u00:18.35)., +9:u03:18.16, +9:u13:[35]., +9:u04:[35]., +9:u02:18.16, +9:u12:[35]., +7:u22:[35, +8:u23:[35], +9:u03:[35]., +9:u01:18.16, +9:u11:[35]., +9:u02:[35]., +9:u00:18.16, +9:u10:[35]., +9:u01:[35]., +9:u00:[35]., +18:u14:representation, +18:u13:representation, +11:uI2:()[][]., +18:u12:representation, +8:u23:Repr, +11:uI1:()[][]., +18:u11:representation, +11:uI0:()[][]., +18:u10:representation, +12:u08:Previous, +13:u08:RPC-Based, +13:u07:RPC-Based, +12:u07:Previous, +11:u08:client,, +13:u06:RPC-Based, +10:u08:model,, +12:u06:Previous, +13:u05:RPC-Based, +10:u07:model,, +12:u05:Previous, +11:u07:client,, +13:u04:RPC-Based, +10:u06:model,, +18:u14:authentication, +12:u04:Previous, +11:u06:client,, +13:u03:RPC-Based, +10:u05:model,, +18:u13:authentication, +11:u14:client,, +7:u22:Pre, +8:u23:Prev, +12:u03:Previous, +11:u05:client,, +13:u02:RPC-Based, +10:u04:model,, +18:u12:authentication, +11:u13:client,, +7:u14:nfs, +12:u02:Previous, +11:u04:client,, +13:u01:RPC-Based, +10:u03:model,, +18:u11:authentication, +11:u12:client,, +7:u13:nfs, +9:u14:forms, +12:u01:Previous, +11:u03:client,, +13:u00:RPC-Based, +10:u02:model,, +18:u10:authentication, +11:u11:client,, +7:u12:nfs, +9:u13:forms, +7:u23:NFS, +12:u00:Previous, +11:u02:client,, +10:u01:model,, +11:u10:client,, +7:u11:nfs, +9:u12:forms, +11:u14:depends, +11:u01:client,, +10:u00:model,, +17:u08:authenticated, +7:u10:nfs, +9:u11:forms, +11:u13:depends, +11:u00:client,, +12:u08:2.2.1.1., +17:u07:authenticated, +9:u10:forms, +11:u12:depends, +17:u06:authenticated, +11:u11:depends, +12:u07:2.2.1.1., +17:u05:authenticated, +11:u10:depends, +12:u06:2.2.1.1., +11:u08:flavor,, +17:u04:authenticated, +16:u08:encapsulated, +12:u14:2.2.1.1., +12:u05:2.2.1.1., +9:u08:Every, +17:u03:authenticated, +16:u07:encapsulated, +12:u13:2.2.1.1., +12:u04:2.2.1.1., +11:u07:flavor,, +17:u02:authenticated, +16:u06:encapsulated, +12:u12:2.2.1.1., +12:uI2:.("")[],, +12:u03:2.2.1.1., +11:u06:flavor,, +9:u07:Every, +17:u01:authenticated, +16:u05:encapsulated, +12:u11:2.2.1.1., +11:u14:flavor,, +12:uI1:.("")[],, +12:u02:2.2.1.1., +11:u05:flavor,, +9:u06:Every, +17:u00:authenticated, +16:u04:encapsulated, +12:u10:2.2.1.1., +11:u13:flavor,, +12:uI0:.("")[],, +12:u01:2.2.1.1., +11:u04:flavor,, +9:u05:Every, +15:u08:requirement, +16:u03:encapsulated, +11:u12:flavor,, +7:u22:fla, +8:u23:flav, +12:u00:2.2.1.1., +11:u03:flavor,, +9:u04:Every, +12:u08:flavors,, +16:u02:encapsulated, +11:u11:flavor,, +8:u23:Ever, +10:uI2:.....,, +11:u02:flavor,, +9:u03:Every, +15:u07:requirement, +14:u08:2.2.1.1.1., +16:u01:encapsulated, +11:u10:flavor,, +10:uI1:.....,, +11:u01:flavor,, +9:u02:Every, +15:u06:requirement, +12:u07:flavors,, +14:u08:RPCSEC_GSS, +16:u00:encapsulated, +10:uI0:.....,, +7:uI2:..(, +11:u00:flavor,, +9:u01:Every, +15:u05:requirement, +12:u06:flavors,, +14:u07:2.2.1.1.1., +14:u07:RPCSEC_GSS, +7:u08:[4], +12:u14:flavors,, +7:uI1:..(, +9:u00:Every, +15:u04:requirement, +12:u05:flavors,, +14:u06:2.2.1.1.1., +14:u06:RPCSEC_GSS, +7:u07:[4], +12:u13:flavors,, +14:u14:2.2.1.1.1., +7:uI0:..(, +15:u03:requirement, +12:u04:flavors,, +14:u05:2.2.1.1.1., +12:u08:flavors., +14:u05:RPCSEC_GSS, +7:u06:[4], +12:u12:flavors,, +14:u13:2.2.1.1.1., +14:u14:rpcsec_gss, +15:u02:requirement, +12:u03:flavors,, +14:u04:2.2.1.1.1., +16:u08:2.2.1.1.1.1., +14:u04:RPCSEC_GSS, +7:u05:[4], +12:u11:flavors,, +14:u12:2.2.1.1.1., +14:u13:rpcsec_gss, +10:uI2:[]-[]., +15:u01:requirement, +12:u02:flavors,, +14:u03:2.2.1.1.1., +12:u07:flavors., +7:u08:Via, +14:u03:RPCSEC_GSS, +7:u04:[4], +19:u08:Identification,, +12:u10:flavors,, +14:u11:2.2.1.1.1., +14:u12:rpcsec_gss, +7:u22:RPC, +8:u23:RPCS, +10:uI1:[]-[]., +15:u00:requirement, +12:u01:flavors,, +14:u02:2.2.1.1.1., +12:u06:flavors., +16:u07:2.2.1.1.1.1., +9:u08:users, +14:u02:RPCSEC_GSS, +7:u03:[4], +19:u07:Identification,, +14:u10:2.2.1.1.1., +14:u11:rpcsec_gss, +12:u14:flavors., +10:uI0:[]-[]., +12:u00:flavors,, +14:u01:2.2.1.1.1., +12:u05:flavors., +16:u06:2.2.1.1.1.1., +7:u07:Via, +11:u08:perform, +14:u01:RPCSEC_GSS, +7:u02:[4], +19:u06:Identification,, +14:u10:rpcsec_gss, +12:u13:flavors., +16:u14:2.2.1.1.1.1., +14:u00:2.2.1.1.1., +12:u04:flavors., +16:u05:2.2.1.1.1.1., +7:u06:Via, +9:u07:users, +14:u00:RPCSEC_GSS, +7:u01:[4], +19:u05:Identification,, +12:u12:flavors., +16:u13:2.2.1.1.1.1., +7:u14:via, +13:uI2:......,,,, +12:u03:flavors., +16:u04:2.2.1.1.1.1., +7:u05:Via, +9:u06:users, +11:u07:perform, +11:u08:usually, +7:u00:[4], +19:u04:Identification,, +11:u08:header,, +12:u11:flavors., +16:u12:2.2.1.1.1.1., +7:u13:via, +9:u14:users, +13:uI1:......,,,, +12:u02:flavors., +16:u03:2.2.1.1.1.1., +7:u04:Via, +9:u05:users, +11:u06:perform, +11:u08:Privacy, +19:u03:Identification,, +11:u07:header,, +12:u10:flavors., +16:u11:2.2.1.1.1.1., +7:u12:via, +9:u13:users, +11:u14:perform, +6:u21:Vi, +7:u22:Via, +7:u23:Via, +13:uI0:......,,,, +12:u01:flavors., +16:u02:2.2.1.1.1.1., +7:u03:Via, +9:u04:users, +11:u05:perform, +11:u07:usually, +19:u02:Identification,, +11:u06:header,, +16:u10:2.2.1.1.1.1., +7:u11:via, +9:u12:users, +11:u13:perform, +7:u14:rpc, +12:u00:flavors., +16:u01:2.2.1.1.1.1., +7:u02:Via, +9:u03:users, +11:u04:perform, +11:u06:usually, +11:u07:Privacy, +19:u01:Identification,, +11:u05:header,, +7:u10:via, +9:u11:users, +11:u12:perform, +7:u13:rpc, +11:u14:usually, +8:uI2:,.,,, +16:u00:2.2.1.1.1.1., +7:u01:Via, +9:u02:users, +11:u03:perform, +11:u05:usually, +11:u06:Privacy, +19:u00:Identification,, +11:u04:header,, +12:u08:enabled., +9:u10:users, +11:u11:perform, +7:u12:rpc, +11:u13:usually, +7:u23:RPC, +8:uI1:,.,,, +7:u00:Via, +9:u01:users, +11:u02:perform, +11:u04:usually, +11:u05:Privacy, +11:u03:header,, +12:u07:enabled., +11:u10:perform, +7:u11:rpc, +11:u12:usually, +7:u22:usu, +8:u23:usua, +8:uI0:,.,,, +9:u00:users, +11:u01:perform, +11:u03:usually, +11:u04:Privacy, +11:u02:header,, +12:u06:enabled., +7:u10:rpc, +11:u11:usually, +8:u23:Priv, +11:u00:perform, +11:u02:usually, +11:u03:Privacy, +11:u01:header,, +12:u05:enabled., +11:u10:usually, +11:u01:usually, +11:u02:Privacy, +11:u00:header,, +12:u04:enabled., +11:u00:usually, +11:u01:Privacy, +12:u03:enabled., +11:u00:Privacy, +12:u02:enabled., +12:u01:enabled., +12:u00:enabled., +11:u08:GSS-API, +11:u07:GSS-API, +11:u06:GSS-API, +11:u05:GSS-API, +11:u04:GSS-API, +12:u08:service,, +7:uI2:,-', +11:u03:GSS-API, +12:u07:service,, +7:uI1:,-', +11:u02:GSS-API, +12:u06:service,, +13:u14:integrity, +7:uI0:,-', +11:u01:GSS-API, +12:u05:service,, +12:u08:service., +13:u13:integrity, +11:u00:GSS-API, +12:u04:service,, +12:u07:service., +13:u12:integrity, +8:uI2:.[]., +16:u08:2.2.1.1.1.2., +12:u03:service,, +12:u06:service., +13:u11:integrity, +8:uI1:.[]., +15:u08:RPCSEC_GSS,, +12:u02:service,, +12:u05:service., +13:u10:integrity, +8:uI0:.[]., +7:uI2:..', +16:u07:2.2.1.1.1.2., +12:u01:service,, +12:u04:service., +12:u14:service., +7:uI1:..', +16:u06:2.2.1.1.1.2., +15:u07:RPCSEC_GSS,, +12:u00:service,, +12:u03:service., +13:u08:services., +12:u13:service., +16:u14:2.2.1.1.1.2., +7:uI0:..', +16:u05:2.2.1.1.1.2., +15:u06:RPCSEC_GSS,, +12:u02:service., +13:u07:services., +12:u12:service., +16:u13:2.2.1.1.1.2., +15:u14:rpcsec_gss,, +16:u04:2.2.1.1.1.2., +15:u05:RPCSEC_GSS,, +12:u01:service., +13:u06:services., +12:u11:service., +16:u12:2.2.1.1.1.2., +15:u13:rpcsec_gss,, +16:u03:2.2.1.1.1.2., +15:u04:RPCSEC_GSS,, +12:u00:service., +13:u05:services., +10:u08:(QOP),, +12:u10:service., +16:u11:2.2.1.1.1.2., +15:u12:rpcsec_gss,, +16:u02:2.2.1.1.1.2., +15:u03:RPCSEC_GSS,, +8:u08:zero, +13:u04:services., +10:u07:(QOP),, +16:u10:2.2.1.1.1.2., +15:u11:rpcsec_gss,, +16:u01:2.2.1.1.1.2., +15:u02:RPCSEC_GSS,, +13:u03:services., +10:u06:(QOP),, +15:u10:rpcsec_gss,, +16:u00:2.2.1.1.1.2., +15:u01:RPCSEC_GSS,, +8:u07:zero, +13:u02:services., +10:u05:(QOP),, +12:uI2:(),(,,)., +15:u00:RPCSEC_GSS,, +8:u06:zero, +14:u08:algorithms, +13:u01:services., +10:u04:(QOP),, +12:u08:mandated, +12:uI1:(),(,,)., +8:u05:zero, +13:u00:services., +10:u03:(QOP),, +12:u07:mandated, +12:uI0:(),(,,)., +6:uI2:,', +8:u04:zero, +14:u07:algorithms, +10:u02:(QOP),, +12:u06:mandated, +6:uI1:,', +8:u03:zero, +14:u06:algorithms, +10:u01:(QOP),, +12:u05:mandated, +14:u14:algorithms, +6:uI0:,', +8:u02:zero, +14:u05:algorithms, +18:u08:2.2.1.1.1.2.1., +10:u00:(QOP),, +12:u04:mandated, +14:u13:algorithms, +8:u01:zero, +14:u04:algorithms, +12:u03:mandated, +12:u08:Kerberos, +14:u12:algorithms, +7:u22:alg, +8:u23:algo, +8:u00:zero, +14:u03:algorithms, +18:u07:2.2.1.1.1.2.1., +15:u08:implemented, +12:u02:mandated, +12:u07:Kerberos, +14:u11:algorithms, +14:u02:algorithms, +18:u06:2.2.1.1.1.2.1., +12:u01:mandated, +12:u06:Kerberos, +14:u10:algorithms, +18:u14:2.2.1.1.1.2.1., +14:u01:algorithms, +18:u05:2.2.1.1.1.2.1., +15:u07:implemented, +10:u08:column, +12:u00:mandated, +12:u05:Kerberos, +18:u13:2.2.1.1.1.2.1., +14:u00:algorithms, +18:u04:2.2.1.1.1.2.1., +15:u06:implemented, +12:u04:Kerberos, +17:u08:descriptions:, +18:u12:2.2.1.1.1.2.1., +15:u14:implemented, +7:uI2:-[], +18:u03:2.2.1.1.1.2.1., +15:u05:implemented, +10:u07:column, +12:u03:Kerberos, +17:u07:descriptions:, +6:u08:==, +18:u11:2.2.1.1.1.2.1., +15:u13:implemented, +7:uI1:-[], +18:u02:2.2.1.1.1.2.1., +15:u04:implemented, +10:u06:column, +12:u02:Kerberos, +17:u06:descriptions:, +6:u07:==, +18:u10:2.2.1.1.1.2.1., +15:u12:implemented, +10:u14:column, +7:uI0:-[], +18:u01:2.2.1.1.1.2.1., +15:u03:implemented, +10:u05:column, +12:u01:Kerberos, +17:u05:descriptions:, +6:u06:==, +15:u11:implemented, +10:u13:column, +18:u00:2.2.1.1.1.2.1., +15:u02:implemented, +10:u04:column, +12:u00:Kerberos, +17:u04:descriptions:, +6:u05:==, +15:u10:implemented, +10:u12:column, +8:u23:colu, +15:u01:implemented, +10:u03:column, +17:u03:descriptions:, +6:u04:==, +10:u11:column, +15:u00:implemented, +10:u02:column, +17:u02:descriptions:, +6:u03:==, +10:u10:column, +10:u01:column, +17:u01:descriptions:, +6:u02:==, +10:u00:column, +17:u00:descriptions:, +6:u01:==, +6:u00:==, +70:u08:------------------------------------------------------------------, +10:u08:390003, +70:u07:------------------------------------------------------------------, +24:u08:1.2.840.113554.1.2.2, +8:u08:krb5, +70:u06:------------------------------------------------------------------, +10:u07:390003, +7:u08:yes, +8:u07:krb5, +20:u08:rpc_gss_svc_none, +70:u14:------------------------------------------------------------------, +70:u05:------------------------------------------------------------------, +10:u06:390003, +24:u07:1.2.840.113554.1.2.2, +10:u08:390004, +8:u06:krb5, +20:u07:rpc_gss_svc_none, +70:u13:------------------------------------------------------------------, +10:u14:390003, +70:uI2:------------------------------------------------------------------, +6:uI2:66, +70:u04:------------------------------------------------------------------, +10:u05:390003, +24:u06:1.2.840.113554.1.2.2, +7:u07:yes, +8:u05:krb5, +20:u06:rpc_gss_svc_none, +9:u08:krb5i, +70:u12:------------------------------------------------------------------, +10:u13:390003, +24:u14:1.2.840.113554.1.2.2, +70:uI1:------------------------------------------------------------------, +6:uI1:66, +70:u03:------------------------------------------------------------------, +10:u04:390003, +24:u05:1.2.840.113554.1.2.2, +7:u06:yes, +10:u07:390004, +10:u08:390005, +8:u04:krb5, +20:u05:rpc_gss_svc_none, +9:u07:krb5i, +25:u08:rpc_gss_svc_integrity, +70:u11:------------------------------------------------------------------, +10:u12:390003, +24:u13:1.2.840.113554.1.2.2, +7:u14:yes, +6:u21:39, +7:u22:390, +8:u23:3900, +70:uI0:------------------------------------------------------------------, +6:uI0:66, +70:u02:------------------------------------------------------------------, +10:u03:390003, +24:u04:1.2.840.113554.1.2.2, +7:u05:yes, +10:u06:390004, +8:u03:krb5, +20:u04:rpc_gss_svc_none, +9:u06:krb5i, +25:u07:rpc_gss_svc_integrity, +9:u08:krb5p, +70:u10:------------------------------------------------------------------, +10:u11:390003, +24:u12:1.2.840.113554.1.2.2, +7:u13:yes, +10:u14:390004, +70:u01:------------------------------------------------------------------, +10:u02:390003, +24:u03:1.2.840.113554.1.2.2, +7:u04:yes, +10:u05:390004, +10:u07:390005, +8:u02:krb5, +20:u03:rpc_gss_svc_none, +9:u05:krb5i, +25:u06:rpc_gss_svc_integrity, +9:u07:krb5p, +23:u08:rpc_gss_svc_privacy, +10:u10:390003, +24:u11:1.2.840.113554.1.2.2, +7:u12:yes, +10:u13:390004, +7:u22:yes, +7:u23:yes, +70:u00:------------------------------------------------------------------, +10:u01:390003, +24:u02:1.2.840.113554.1.2.2, +7:u03:yes, +10:u04:390004, +10:u06:390005, +8:u01:krb5, +20:u02:rpc_gss_svc_none, +9:u04:krb5i, +25:u05:rpc_gss_svc_integrity, +9:u06:krb5p, +23:u07:rpc_gss_svc_privacy, +24:u10:1.2.840.113554.1.2.2, +7:u11:yes, +10:u12:390004, +10:u14:390005, +10:u00:390003, +24:u01:1.2.840.113554.1.2.2, +7:u02:yes, +10:u03:390004, +10:u05:390005, +8:u00:krb5, +20:u01:rpc_gss_svc_none, +9:u03:krb5i, +25:u04:rpc_gss_svc_integrity, +9:u05:krb5p, +23:u06:rpc_gss_svc_privacy, +7:u10:yes, +10:u11:390004, +10:u13:390005, +24:u00:1.2.840.113554.1.2.2, +7:u01:yes, +10:u02:390004, +10:u04:390005, +20:u00:rpc_gss_svc_none, +9:u02:krb5i, +25:u03:rpc_gss_svc_integrity, +9:u04:krb5p, +23:u05:rpc_gss_svc_privacy, +10:u10:390004, +10:u12:390005, +7:u00:yes, +10:u01:390004, +10:u03:390005, +9:u01:krb5i, +25:u02:rpc_gss_svc_integrity, +9:u03:krb5p, +23:u04:rpc_gss_svc_privacy, +10:u11:390005, +10:u00:390004, +10:u02:390005, +9:u00:krb5i, +25:u01:rpc_gss_svc_integrity, +9:u02:krb5p, +23:u03:rpc_gss_svc_privacy, +10:u10:390005, +10:u01:390005, +25:u00:rpc_gss_svc_integrity, +9:u01:krb5p, +23:u02:rpc_gss_svc_privacy, +10:u00:390005, +9:u00:krb5p, +23:u01:rpc_gss_svc_privacy, +23:u00:rpc_gss_svc_privacy, +7:u08:API, +10:u08:needed, +14:u08:mechanism,, +7:u07:API, +9:u08:MOUNT, +14:u07:mechanism,, +7:u06:API, +10:u07:needed, +14:u06:mechanism,, +7:u14:api, +7:u05:API, +10:u06:needed, +9:u07:MOUNT, +9:u08:(AES), +14:u05:mechanism,, +7:u13:api, +10:u14:needed, +7:u04:API, +10:u05:needed, +9:u06:MOUNT, +14:u04:mechanism,, +7:u12:api, +10:u13:needed, +9:u14:mount, +6:u21:AP, +7:u22:API, +7:u23:API, +7:u03:API, +10:u04:needed, +9:u05:MOUNT, +9:u07:(AES), +14:u03:mechanism,, +7:u11:api, +10:u12:needed, +9:u13:mount, +7:u02:API, +10:u03:needed, +9:u04:MOUNT, +9:u06:(AES), +18:u08:specification,, +14:u02:mechanism,, +7:u10:api, +10:u11:needed, +9:u12:mount, +9:u14:(aes), +8:u23:MOUN, +7:u01:API, +10:u02:needed, +9:u03:MOUNT, +9:u05:(AES), +14:u01:mechanism,, +10:u10:needed, +9:u11:mount, +9:u13:(aes), +7:u00:API, +10:u01:needed, +9:u02:MOUNT, +9:u04:(AES), +18:u07:specification,, +11:u08:specify, +14:u00:mechanism,, +9:u10:mount, +9:u12:(aes), +7:u22:(AE, +8:u23:(AES, +10:u00:needed, +9:u01:MOUNT, +9:u03:(AES), +18:u06:specification,, +15:u08:implementor, +11:u07:specify, +9:u11:(aes), +18:u14:specification,, +9:u00:MOUNT, +9:u02:(AES), +18:u05:specification,, +11:u06:specify, +9:u10:(aes), +18:u13:specification,, +7:u22:REQ, +8:u23:REQU, +9:u01:(AES), +18:u04:specification,, +15:u07:implementor, +20:u08:2.2.1.1.1.2.1.1., +11:u05:specify, +18:u12:specification,, +11:u14:specify, +9:u00:(AES), +18:u03:specification,, +15:u06:implementor, +11:u04:specify, +18:u11:specification,, +11:u13:specify, +15:u14:implementor, +18:u02:specification,, +15:u05:implementor, +20:u07:2.2.1.1.1.2.1.1., +11:u03:specify, +18:u10:specification,, +11:u12:specify, +15:u13:implementor, +12:u14:standard, +18:u01:specification,, +15:u04:implementor, +20:u06:2.2.1.1.1.2.1.1., +11:u02:specify, +13:u08:deploying, +11:u11:specify, +15:u12:implementor, +12:u13:standard, +20:u14:2.2.1.1.1.2.1.1., +18:u00:specification,, +15:u03:implementor, +20:u05:2.2.1.1.1.2.1.1., +11:u01:specify, +13:u07:deploying, +11:u10:specify, +15:u11:implementor, +12:u12:standard, +20:u13:2.2.1.1.1.2.1.1., +15:u02:implementor, +20:u04:2.2.1.1.1.2.1.1., +11:u00:specify, +13:u06:deploying, +6:u08:V5, +15:u10:implementor, +12:u11:standard, +20:u12:2.2.1.1.1.2.1.1., +15:u01:implementor, +20:u03:2.2.1.1.1.2.1.1., +13:u05:deploying, +6:u07:V5, +12:u10:standard, +20:u11:2.2.1.1.1.2.1.1., +15:u00:implementor, +20:u02:2.2.1.1.1.2.1.1., +16:u08:2.2.1.1.1.3., +13:u04:deploying, +6:u06:V5, +20:u10:2.2.1.1.1.2.1.1., +12:u14:kerberos, +20:u01:2.2.1.1.1.2.1.1., +14:u08:Regardless, +13:u03:deploying, +6:u05:V5, +7:u08:GSS, +12:u13:kerberos, +20:u00:2.2.1.1.1.2.1.1., +16:u07:2.2.1.1.1.3., +13:u02:deploying, +6:u04:V5, +7:u07:GSS, +12:u12:kerberos, +7:u22:Ker, +8:u23:Kerb, +16:u06:2.2.1.1.1.3., +14:u07:Regardless, +30:u08:GSS_C_NT_HOSTBASED_SERVICE, +13:u01:deploying, +6:u03:V5, +7:u06:GSS, +12:u11:kerberos, +16:u14:2.2.1.1.1.3., +16:u05:2.2.1.1.1.3., +14:u06:Regardless, +9:u08:names, +13:u00:deploying, +6:u02:V5, +7:u05:GSS, +8:u08:name, +12:u10:kerberos, +16:u13:2.2.1.1.1.3., +16:u04:2.2.1.1.1.3., +14:u05:Regardless, +30:u07:GSS_C_NT_HOSTBASED_SERVICE, +20:u08:service@hostname, +6:u01:V5, +7:u04:GSS, +8:u07:name, +16:u12:2.2.1.1.1.3., +16:u03:2.2.1.1.1.3., +14:u04:Regardless, +30:u06:GSS_C_NT_HOSTBASED_SERVICE, +9:u07:names, +6:u00:V5, +7:u03:GSS, +8:u06:name, +16:u11:2.2.1.1.1.3., +30:u14:gss_c_nt_hostbased_service, +8:u23:Rega, +16:u02:2.2.1.1.1.3., +14:u03:Regardless, +30:u05:GSS_C_NT_HOSTBASED_SERVICE, +9:u06:names, +20:u07:service@hostname, +7:u08:nfs, +7:u02:GSS, +8:u05:name, +8:u08:NFS,, +16:u10:2.2.1.1.1.3., +30:u13:gss_c_nt_hostbased_service, +9:u14:names, +16:u01:2.2.1.1.1.3., +14:u02:Regardless, +30:u04:GSS_C_NT_HOSTBASED_SERVICE, +9:u05:names, +20:u06:service@hostname, +19:u08:Implementations, +7:u01:GSS, +8:u04:name, +8:u07:NFS,, +30:u12:gss_c_nt_hostbased_service, +9:u13:names, +20:u14:service@hostname, +6:u21:GS, +7:u22:GSS, +8:u23:GSS_, +16:u00:2.2.1.1.1.3., +14:u01:Regardless, +30:u03:GSS_C_NT_HOSTBASED_SERVICE, +9:u04:names, +20:u05:service@hostname, +7:u07:nfs, +7:u00:GSS, +8:u03:name, +8:u06:NFS,, +30:u11:gss_c_nt_hostbased_service, +9:u12:names, +20:u13:service@hostname, +14:u00:Regardless, +30:u02:GSS_C_NT_HOSTBASED_SERVICE, +9:u03:names, +20:u04:service@hostname, +7:u06:nfs, +19:u07:Implementations, +16:u08:RECOMMENDED:, +8:u02:name, +8:u05:NFS,, +30:u10:gss_c_nt_hostbased_service, +9:u11:names, +20:u12:service@hostname, +30:u01:GSS_C_NT_HOSTBASED_SERVICE, +9:u02:names, +20:u03:service@hostname, +7:u05:nfs, +19:u06:Implementations, +16:u08:nfs/hostname, +8:u01:name, +8:u04:NFS,, +9:u10:names, +20:u11:service@hostname, +19:u14:implementations, +30:u00:GSS_C_NT_HOSTBASED_SERVICE, +9:u01:names, +20:u02:service@hostname, +7:u04:nfs, +19:u05:Implementations, +16:u07:RECOMMENDED:, +8:u00:name, +8:u03:NFS,, +20:u10:service@hostname, +19:u13:implementations, +6:u21:nf, +7:u22:nfs, +7:u23:nfs, +9:u00:names, +20:u01:service@hostname, +7:u03:nfs, +19:u04:Implementations, +16:u06:RECOMMENDED:, +16:u07:nfs/hostname, +8:u02:NFS,, +19:u12:implementations, +16:u14:recommended:, +7:u22:Imp, +8:u23:Impl, +20:u00:service@hostname, +7:u02:nfs, +19:u03:Implementations, +16:u05:RECOMMENDED:, +16:u06:nfs/hostname, +8:u01:NFS,, +19:u11:implementations, +16:u13:recommended:, +16:u14:nfs/hostname, +7:u01:nfs, +19:u02:Implementations, +16:u04:RECOMMENDED:, +16:u05:nfs/hostname, +8:u00:NFS,, +19:u10:implementations, +16:u12:recommended:, +16:u13:nfs/hostname, +7:u00:nfs, +19:u01:Implementations, +16:u03:RECOMMENDED:, +16:u04:nfs/hostname, +16:u11:recommended:, +16:u12:nfs/hostname, +8:u23:nfs/, +19:u00:Implementations, +16:u02:RECOMMENDED:, +16:u03:nfs/hostname, +16:u10:recommended:, +16:u11:nfs/hostname, +16:u01:RECOMMENDED:, +16:u02:nfs/hostname, +16:u10:nfs/hostname, +16:u00:RECOMMENDED:, +16:u01:nfs/hostname, +16:u00:nfs/hostname, +15:u08:significant, +15:u07:significant, +15:u08:procedures,, +15:u06:significant, +15:u05:significant, +8:u08:NULL, +15:u07:procedures,, +9:u08:sorts, +15:u04:significant, +8:u07:NULL, +10:u08:series, +15:u06:procedures,, +15:u03:significant, +8:u06:NULL, +10:u07:series, +15:u14:procedures,, +15:u05:procedures,, +9:u07:sorts, +15:u02:significant, +8:u05:NULL, +10:u06:series, +15:u13:procedures,, +15:u04:procedures,, +9:u06:sorts, +15:u01:significant, +8:u04:NULL, +10:u05:series, +15:u12:procedures,, +9:u14:sorts, +15:u03:procedures,, +9:u05:sorts, +15:u00:significant, +8:u03:NULL, +10:u04:series, +14:u08:facilities, +15:u11:procedures,, +9:u13:sorts, +15:u02:procedures,, +9:u04:sorts, +8:u02:NULL, +10:u03:series, +14:u07:facilities, +15:u10:procedures,, +9:u12:sorts, +7:u22:sor, +8:u23:sort, +15:u01:procedures,, +9:u03:sorts, +8:u01:NULL, +10:u02:series, +14:u06:facilities, +9:u11:sorts, +15:u00:procedures,, +9:u02:sorts, +8:u00:NULL, +10:u01:series, +14:u05:facilities, +9:u10:sorts, +9:u01:sorts, +13:u08:reduction, +10:u00:series, +14:u04:facilities, +9:u00:sorts, +14:u03:facilities, +13:u07:reduction, +15:u08:constructed, +14:u02:facilities, +13:u06:reduction, +14:u01:facilities, +13:u14:reduction, +13:u05:reduction, +15:u07:constructed, +8:u08:plus, +14:u00:facilities, +13:u13:reduction, +13:u04:reduction, +15:u06:constructed, +8:u08:READ, +13:u12:reduction, +15:u14:constructed, +13:u03:reduction, +15:u05:constructed, +8:u07:plus, +8:u07:READ, +12:u08:latency., +13:u11:reduction, +15:u13:constructed, +11:u14:further, +13:u02:reduction, +15:u04:constructed, +8:u06:plus, +8:u06:READ, +12:u07:latency., +13:u10:reduction, +15:u12:constructed, +11:u13:further, +8:u14:plus, +13:u01:reduction, +15:u03:constructed, +8:u05:plus, +8:u05:READ, +12:u06:latency., +15:u11:constructed, +11:u12:further, +8:u13:plus, +7:u22:fur, +8:u23:furt, +13:u00:reduction, +15:u02:constructed, +8:u04:plus, +8:u04:READ, +12:u05:latency., +15:u10:constructed, +11:u11:further, +8:u12:plus, +7:u22:plu, +8:u23:plus, +15:u01:constructed, +8:u03:plus, +15:u08:procedures:, +8:u03:READ, +12:u04:latency., +11:u10:further, +8:u11:plus, +15:u00:constructed, +8:u02:plus, +8:u02:READ, +12:u03:latency., +11:u08:CB_NULL, +8:u10:plus, +8:u01:plus, +15:u07:procedures:, +8:u01:READ, +12:u02:latency., +11:u07:CB_NULL, +8:u00:plus, +15:u06:procedures:, +8:u00:READ, +12:u01:latency., +11:u06:CB_NULL, +12:u08:callback, +15:u14:procedures:, +15:u05:procedures:, +12:u00:latency., +11:u05:CB_NULL, +12:u07:callback, +15:u13:procedures:, +15:u04:procedures:, +13:u08:extending, +11:u04:CB_NULL, +12:u06:callback, +15:u12:procedures:, +15:u03:procedures:, +11:u03:CB_NULL, +12:u05:callback, +15:u11:procedures:, +15:u02:procedures:, +13:u07:extending, +11:u02:CB_NULL, +12:u04:callback, +15:u10:procedures:, +12:u14:compound, +15:u01:procedures:, +13:u06:extending, +11:u08:context, +11:u01:CB_NULL, +12:u03:callback, +12:u13:compound, +13:u14:extending, +15:u00:procedures:, +13:u05:extending, +11:u00:CB_NULL, +12:u02:callback, +12:u12:compound, +13:u13:extending, +8:u23:COMP, +13:u04:extending, +11:u07:context, +13:u08:requests., +12:u01:callback, +12:u11:compound, +13:u12:extending, +13:u03:extending, +11:u06:context, +12:u00:callback, +12:u10:compound, +13:u11:extending, +11:u14:context, +13:u02:extending, +11:u05:context, +13:u07:requests., +13:u10:extending, +11:u13:context, +13:u01:extending, +11:u04:context, +13:u06:requests., +11:u12:context, +13:u14:requests., +13:u00:extending, +11:u03:context, +13:u05:requests., +11:u11:context, +13:u13:requests., +11:u02:context, +13:u04:requests., +11:u10:context, +13:u12:requests., +11:u01:context, +13:u03:requests., +13:u11:requests., +11:u00:context, +13:u02:requests., +13:u10:requests., +13:u01:requests., +13:u00:requests., +16:u08:initializes,, +7:u08:IDs, +16:u07:initializes,, +9:u14:given, +16:u06:initializes,, +7:u07:IDs, +10:u08:steady, +9:u13:given, +16:u14:initializes,, +16:u05:initializes,, +7:u06:IDs, +10:u07:steady, +9:u12:given, +16:u13:initializes,, +7:u14:ids, +7:u22:giv, +8:u23:give, +16:u04:initializes,, +7:u05:IDs, +11:u08:session, +10:u06:steady, +9:u11:given, +16:u12:initializes,, +7:u13:ids, +16:u03:initializes,, +7:u04:IDs, +10:u05:steady, +9:u10:given, +16:u11:initializes,, +7:u12:ids, +7:u22:IDs, +7:u23:IDs, +16:u02:initializes,, +7:u03:IDs, +11:u07:session, +10:u04:steady, +16:u10:initializes,, +7:u11:ids, +7:u22:Dur, +8:u23:Duri, +16:u01:initializes,, +7:u02:IDs, +11:u06:session, +10:u03:steady, +7:u10:ids, +16:u00:initializes,, +7:u01:IDs, +11:u05:session, +10:u02:steady, +7:u00:IDs, +11:u04:session, +16:u08:EXCHANGE_ID), +10:u01:steady, +7:u22:ses, +8:u23:sess, +11:u03:session, +10:u00:steady, +11:u02:session, +16:u07:EXCHANGE_ID), +11:u08:server., +11:u01:session, +16:u06:EXCHANGE_ID), +11:u07:server., +16:u14:exchange_id), +11:u00:session, +16:u05:EXCHANGE_ID), +11:u06:server., +16:u13:exchange_id), +16:u04:EXCHANGE_ID), +9:u08:lock,, +11:u05:server., +16:u12:exchange_id), +7:u22:EXC, +8:u23:EXCH, +16:u03:EXCHANGE_ID), +11:u04:server., +16:u11:exchange_id), +16:u02:EXCHANGE_ID), +9:u07:lock,, +11:u03:server., +11:u08:neither, +16:u10:exchange_id), +16:u01:EXCHANGE_ID), +9:u06:lock,, +11:u02:server., +11:u07:neither, +9:u08:--all, +9:u14:lock,, +16:u00:EXCHANGE_ID), +9:u05:lock,, +11:u01:server., +11:u06:neither, +9:u07:--all, +9:u13:lock,, +9:uI2:,,,--, +9:u04:lock,, +11:u00:server., +11:u05:neither, +9:u06:--all, +11:u08:10.2.1., +9:u12:lock,, +9:u14:types, +9:uI1:,,,--, +9:u03:lock,, +13:u08:Releasing, +11:u04:neither, +9:u05:--all, +11:u07:10.2.1., +11:u08:12.7.1., +9:u11:lock,, +9:u13:types, +9:uI0:,,,--, +9:u02:lock,, +11:u03:neither, +9:u04:--all, +11:u06:10.2.1., +11:u07:12.7.1., +9:u10:lock,, +9:u12:types, +6:u21:ty, +7:u22:typ, +8:u23:type, +9:u01:lock,, +13:u07:Releasing, +11:u02:neither, +9:u03:--all, +11:u05:10.2.1., +11:u06:12.7.1., +9:u11:types, +9:u00:lock,, +13:u06:Releasing, +11:u01:neither, +9:u02:--all, +11:u04:10.2.1., +11:u05:12.7.1., +9:u10:types, +13:u14:releasing, +13:u05:Releasing, +11:u00:neither, +9:u01:--all, +11:u03:10.2.1., +11:u04:12.7.1., +13:u13:releasing, +13:u04:Releasing, +9:u00:--all, +11:u02:10.2.1., +11:u03:12.7.1., +13:u12:releasing, +10:u14:cannot, +8:u23:Rele, +13:u03:Releasing, +11:u01:10.2.1., +11:u02:12.7.1., +9:u08:makes, +13:u11:releasing, +10:u13:cannot, +13:u02:Releasing, +11:u00:10.2.1., +11:u01:12.7.1., +9:u07:makes, +13:u10:releasing, +10:u12:cannot, +8:u23:cann, +13:u01:Releasing, +10:u08:struct, +11:u00:12.7.1., +9:u06:makes, +9:u08:type:, +10:u11:cannot, +13:u00:Releasing, +13:u08:verifier4, +9:u05:makes, +9:u07:type:, +17:u08:client_owner4, +10:u10:cannot, +10:u07:struct, +16:u08:co_verifier;, +9:u04:makes, +9:u06:type:, +17:u07:client_owner4, +10:u06:struct, +13:u07:verifier4, +10:u08:opaque, +9:u03:makes, +9:u05:type:, +17:u06:client_owner4, +10:u14:struct, +10:u05:struct, +13:u06:verifier4, +16:u07:co_verifier;, +34:u08:co_ownerid<NFS4_OPAQUE_LIMIT>;, +9:u02:makes, +9:u04:type:, +17:u05:client_owner4, +10:u13:struct, +13:u14:verifier4, +10:u04:struct, +13:u05:verifier4, +16:u06:co_verifier;, +10:u07:opaque, +6:u08:};, +9:u01:makes, +9:u03:type:, +17:u04:client_owner4, +10:u12:struct, +13:u13:verifier4, +16:u14:co_verifier;, +10:u03:struct, +13:u04:verifier4, +16:u05:co_verifier;, +10:u06:opaque, +34:u07:co_ownerid<NFS4_OPAQUE_LIMIT>;, +9:u00:makes, +9:u02:type:, +17:u03:client_owner4, +10:u11:struct, +13:u12:verifier4, +16:u13:co_verifier;, +10:u14:opaque, +8:u23:veri, +10:u02:struct, +13:u03:verifier4, +16:u04:co_verifier;, +10:u05:opaque, +34:u06:co_ownerid<NFS4_OPAQUE_LIMIT>;, +6:u07:};, +9:u01:type:, +17:u02:client_owner4, +10:u10:struct, +13:u11:verifier4, +16:u12:co_verifier;, +10:u13:opaque, +34:u14:co_ownerid<nfs4_opaque_limit>;, +7:u22:co_, +8:u23:co_v, +10:u01:struct, +13:u02:verifier4, +16:u03:co_verifier;, +10:u04:opaque, +34:u05:co_ownerid<NFS4_OPAQUE_LIMIT>;, +6:u06:};, +9:u00:type:, +17:u01:client_owner4, +13:u10:verifier4, +16:u11:co_verifier;, +10:u12:opaque, +34:u13:co_ownerid<nfs4_opaque_limit>;, +6:u14:};, +7:u22:opa, +8:u23:opaq, +10:u00:struct, +13:u01:verifier4, +16:u02:co_verifier;, +10:u03:opaque, +34:u04:co_ownerid<NFS4_OPAQUE_LIMIT>;, +6:u05:};, +12:u08:recorded, +17:u00:client_owner4, +15:u08:co_verifier, +16:u10:co_verifier;, +10:u11:opaque, +34:u12:co_ownerid<nfs4_opaque_limit>;, +6:u13:};, +8:u23:co_o, +13:u00:verifier4, +16:u01:co_verifier;, +10:u02:opaque, +34:u03:co_ownerid<NFS4_OPAQUE_LIMIT>;, +6:u04:};, +11:u08:field)., +15:u07:co_verifier, +10:u10:opaque, +34:u11:co_ownerid<nfs4_opaque_limit>;, +6:u12:};, +5:u20:}, +6:u21:};, +6:u22:};, +6:u23:};, +16:u00:co_verifier;, +10:u01:opaque, +34:u02:co_ownerid<NFS4_OPAQUE_LIMIT>;, +6:u03:};, +12:u07:recorded, +15:u06:co_verifier, +34:u10:co_ownerid<nfs4_opaque_limit>;, +6:u11:};, +10:u00:opaque, +34:u01:co_ownerid<NFS4_OPAQUE_LIMIT>;, +6:u02:};, +12:u06:recorded, +11:u07:field)., +15:u05:co_verifier, +6:u10:};, +12:u14:recorded, +34:u00:co_ownerid<NFS4_OPAQUE_LIMIT>;, +6:u01:};, +12:u05:recorded, +11:u06:field)., +15:u04:co_verifier, +12:u13:recorded, +11:u14:field)., +6:u00:};, +12:u04:recorded, +11:u05:field)., +15:u03:co_verifier, +12:u12:recorded, +11:u13:field)., +12:u03:recorded, +11:u04:field)., +15:u02:co_verifier, +12:u11:recorded, +11:u12:field)., +12:u02:recorded, +11:u03:field)., +15:u01:co_verifier, +12:u10:recorded, +11:u11:field)., +12:u01:recorded, +11:u02:field)., +15:u00:co_verifier, +11:u10:field)., +12:u00:recorded, +11:u01:field)., +11:u00:field)., +8:u08:bear, +14:u08:co_ownerid, +8:u07:bear, +8:u06:bear, +11:u08:string:, +14:u07:co_ownerid, +11:u08:present, +8:u05:bear, +11:u07:string:, +14:u06:co_ownerid, +14:u08:presenting, +8:u04:bear, +11:u06:string:, +14:u14:co_ownerid, +14:u05:co_ownerid, +11:u07:present, +8:u03:bear, +11:u05:string:, +14:u13:co_ownerid, +14:u04:co_ownerid, +11:u06:present, +14:u07:presenting, +14:u08:cancelled., +8:u02:bear, +11:u04:string:, +14:u12:co_ownerid, +11:u14:present, +14:u03:co_ownerid, +11:u05:present, +14:u06:presenting, +8:u01:bear, +11:u03:string:, +14:u11:co_ownerid, +11:u13:present, +14:u14:presenting, +14:u02:co_ownerid, +11:u04:present, +14:u05:presenting, +14:u07:cancelled., +10:u08:(e.g.,, +8:u00:bear, +11:u02:string:, +14:u10:co_ownerid, +11:u12:present, +14:u13:presenting, +14:u01:co_ownerid, +11:u03:present, +14:u04:presenting, +14:u06:cancelled., +11:u01:string:, +13:u08:restarts), +11:u11:present, +14:u12:presenting, +14:u14:cancelled., +14:u00:co_ownerid, +11:u02:present, +14:u03:presenting, +14:u05:cancelled., +10:u07:(e.g.,, +11:u00:string:, +13:u07:restarts), +11:u10:present, +14:u11:presenting, +14:u13:cancelled., +11:u01:present, +14:u02:presenting, +14:u04:cancelled., +10:u06:(e.g.,, +13:u06:restarts), +14:u10:presenting, +14:u12:cancelled., +10:u14:(e.g.,, +8:u23:canc, +11:u00:present, +14:u01:presenting, +14:u03:cancelled., +10:u05:(e.g.,, +13:u05:restarts), +13:u08:precludes, +14:u11:cancelled., +10:u13:(e.g.,, +14:u00:presenting, +14:u02:cancelled., +10:u04:(e.g.,, +13:u04:restarts), +13:u07:precludes, +14:u10:cancelled., +10:u12:(e.g.,, +7:u22:(e., +8:u23:(e.g, +14:u01:cancelled., +10:u03:(e.g.,, +13:u03:restarts), +13:u06:precludes, +10:u11:(e.g.,, +14:u00:cancelled., +10:u02:(e.g.,, +13:u02:restarts), +13:u05:precludes, +10:u10:(e.g.,, +10:u01:(e.g.,, +15:u08:interfaces,, +13:u01:restarts), +13:u04:precludes, +10:u00:(e.g.,, +9:u08:paths, +13:u00:restarts), +13:u03:precludes, +15:u07:interfaces,, +13:u02:precludes, +15:u06:interfaces,, +9:u07:paths, +13:u01:precludes, +11:u08:advised, +15:u14:interfaces,, +15:u05:interfaces,, +9:u06:paths, +13:u00:precludes, +11:u07:advised, +15:u13:interfaces,, +9:u14:paths, +15:u04:interfaces,, +9:u05:paths, +11:u06:advised, +15:u12:interfaces,, +9:u13:paths, +7:u14:was, +9:uI2:...(:, +15:u03:interfaces,, +9:u04:paths, +11:u05:advised, +15:u11:interfaces,, +9:u12:paths, +7:u13:was, +9:uI1:...(:, +9:uI2:.[].), +15:u02:interfaces,, +9:u03:paths, +11:u04:advised, +15:u10:interfaces,, +9:u11:paths, +7:u12:was, +12:u14:client's, +7:u23:was, +9:uI0:...(:, +9:uI1:.[].), +15:u01:interfaces,, +9:u02:paths, +16:u08:incarnation., +11:u03:advised, +9:u10:paths, +7:u11:was, +12:u13:client's, +9:uI0:.[].), +15:u00:interfaces,, +9:u01:paths, +11:u02:advised, +7:u10:was, +12:u12:client's, +9:u00:paths, +16:u07:incarnation., +11:u08:string,, +11:u01:advised, +12:u11:client's, +16:u06:incarnation., +11:u00:advised, +12:u10:client's, +16:u14:incarnation., +16:u05:incarnation., +11:u07:string,, +14:u08:generating, +16:u13:incarnation., +16:u04:incarnation., +11:u06:string,, +16:u12:incarnation., +11:u14:string,, +8:u23:inca, +16:u03:incarnation., +11:u05:string,, +14:u07:generating, +9:u08:Given, +11:u08:string., +16:u11:incarnation., +11:u13:string,, +16:u02:incarnation., +11:u04:string,, +14:u06:generating, +11:u07:string., +16:u10:incarnation., +11:u12:string,, +14:u14:generating, +8:u23:stri, +16:u01:incarnation., +11:u03:string,, +14:u05:generating, +9:u07:Given, +11:u06:string., +10:u08:string, +11:u11:string,, +14:u13:generating, +16:u00:incarnation., +11:u02:string,, +14:u04:generating, +9:u06:Given, +11:u05:string., +10:u07:string, +11:u10:string,, +14:u12:generating, +7:u22:gen, +8:u23:gene, +11:u01:string,, +14:u03:generating, +9:u05:Given, +11:u04:string., +10:u06:string, +14:u11:generating, +11:u00:string,, +14:u02:generating, +9:u04:Given, +11:u03:string., +10:u05:string, +7:u08:of:, +14:u10:generating, +6:u21:Gi, +7:u22:Giv, +8:u23:Give, +14:u01:generating, +9:u03:Given, +11:u02:string., +10:u04:string, +7:u07:of:, +7:uI2:,'., +14:u00:generating, +9:u02:Given, +11:u01:string., +10:u03:string, +7:u06:of:, +7:uI1:,'., +9:u01:Given, +11:u00:string., +10:u02:string, +7:u05:of:, +7:uI0:,'., +9:u00:Given, +10:u01:string, +7:u04:of:, +10:u00:string, +7:u03:of:, +7:u02:of:, +7:u01:of:, +7:u00:of:, +8:uI2:*'(,, +8:uI1:*'(,, +7:uI2:-)., +8:uI0:*'(,, +7:uI1:-)., +10:uI2:*()(,-, +9:u08:file,, +11:u08:caution, +7:uI0:-)., +10:uI1:*()(,-, +11:u07:caution, +10:uI0:*()(,-, +6:uI2:*., +9:u07:file,, +11:u06:caution, +13:u14:mentioned, +6:uI1:*., +9:u06:file,, +11:u05:caution, +13:u13:mentioned, +9:u14:file,, +6:uI0:*., +9:u05:file,, +17:u08:installation., +11:u04:caution, +13:u12:mentioned, +9:u13:file,, +7:u22:men, +8:u23:ment, +9:u04:file,, +11:u03:caution, +13:u11:mentioned, +9:u12:file,, +7:uI2:*.,, +9:u03:file,, +17:u07:installation., +11:u02:caution, +13:u10:mentioned, +9:u11:file,, +11:u14:problem, +7:uI1:*.,, +9:u02:file,, +17:u06:installation., +11:u01:caution, +9:u10:file,, +11:u13:problem, +17:u14:installation., +7:uI0:*.,, +9:u01:file,, +17:u05:installation., +11:u00:caution, +11:u12:problem, +17:u13:installation., +8:u23:prob, +9:u00:file,, +17:u04:installation., +10:u08:unique, +11:u11:problem, +17:u12:installation., +17:u03:installation., +10:u07:unique, +11:u10:problem, +17:u11:installation., +17:u02:installation., +10:u06:unique, +17:u10:installation., +17:u01:installation., +10:u05:unique, +17:u00:installation., +10:u04:unique, +13:u08:restarts., +10:u03:unique, +13:u07:restarts., +26:u08:NFS4ERR_STALE_CLIENTID, +10:u02:unique, +13:u06:restarts., +10:u01:unique, +13:u05:restarts., +10:u08:error., +26:u07:NFS4ERR_STALE_CLIENTID, +10:u00:unique, +13:u04:restarts., +10:u07:error., +11:u14:current, +26:u06:NFS4ERR_STALE_CLIENTID, +13:u03:restarts., +10:u06:error., +11:u13:current, +26:u14:nfs4err_stale_clientid, +26:u05:NFS4ERR_STALE_CLIENTID, +13:u02:restarts., +10:u05:error., +11:u12:current, +26:u13:nfs4err_stale_clientid, +8:u23:curr, +26:u04:NFS4ERR_STALE_CLIENTID, +27:u08:NFS4ERR_STALE_CLIENTID,, +13:u01:restarts., +10:u04:error., +11:u11:current, +26:u12:nfs4err_stale_clientid, +8:u23:NFS4, +26:u03:NFS4ERR_STALE_CLIENTID, +12:u08:obtained, +13:u00:restarts., +10:u03:error., +14:u08:indicating, +11:u10:current, +26:u11:nfs4err_stale_clientid, +10:uI2:(...),, +26:u02:NFS4ERR_STALE_CLIENTID, +27:u07:NFS4ERR_STALE_CLIENTID,, +10:u02:error., +14:u07:indicating, +26:u10:nfs4err_stale_clientid, +10:uI1:(...),, +26:u01:NFS4ERR_STALE_CLIENTID, +27:u06:NFS4ERR_STALE_CLIENTID,, +12:u07:obtained, +10:u01:error., +14:u06:indicating, +7:u08:ID., +27:u14:nfs4err_stale_clientid,, +10:uI0:(...),, +26:u00:NFS4ERR_STALE_CLIENTID, +27:u05:NFS4ERR_STALE_CLIENTID,, +12:u06:obtained, +10:u00:error., +14:u05:indicating, +7:u07:ID., +27:u13:nfs4err_stale_clientid,, +12:u14:obtained, +27:u04:NFS4ERR_STALE_CLIENTID,, +12:u05:obtained, +23:u08:NFS4ERR_BADSESSION,, +14:u04:indicating, +7:u06:ID., +27:u12:nfs4err_stale_clientid,, +12:u13:obtained, +27:u03:NFS4ERR_STALE_CLIENTID,, +12:u04:obtained, +14:u03:indicating, +7:u05:ID., +27:u11:nfs4err_stale_clientid,, +12:u12:obtained, +27:u02:NFS4ERR_STALE_CLIENTID,, +12:u03:obtained, +23:u07:NFS4ERR_BADSESSION,, +14:u02:indicating, +7:u04:ID., +27:u10:nfs4err_stale_clientid,, +12:u11:obtained, +27:u01:NFS4ERR_STALE_CLIENTID,, +12:u02:obtained, +23:u06:NFS4ERR_BADSESSION,, +15:u08:recognized,, +14:u01:indicating, +7:u03:ID., +12:u10:obtained, +23:u14:nfs4err_badsession,, +27:u00:NFS4ERR_STALE_CLIENTID,, +12:u01:obtained, +23:u05:NFS4ERR_BADSESSION,, +10:u08:reject, +14:u00:indicating, +7:u02:ID., +23:u13:nfs4err_badsession,, +12:u00:obtained, +23:u04:NFS4ERR_BADSESSION,, +15:u07:recognized,, +7:u01:ID., +23:u12:nfs4err_badsession,, +23:u03:NFS4ERR_BADSESSION,, +15:u06:recognized,, +10:u07:reject, +7:u00:ID., +23:u11:nfs4err_badsession,, +15:u14:recognized,, +23:u02:NFS4ERR_BADSESSION,, +15:u05:recognized,, +10:u06:reject, +23:u10:nfs4err_badsession,, +15:u13:recognized,, +10:u14:reject, +23:u01:NFS4ERR_BADSESSION,, +15:u04:recognized,, +10:u05:reject, +15:u12:recognized,, +10:u13:reject, +23:u00:NFS4ERR_BADSESSION,, +15:u03:recognized,, +10:u04:reject, +15:u11:recognized,, +10:u12:reject, +7:u22:rej, +8:u23:reje, +15:u02:recognized,, +10:u03:reject, +15:u10:recognized,, +10:u11:reject, +15:u01:recognized,, +10:u02:reject, +10:u10:reject, +15:u00:recognized,, +10:u01:reject, +10:u00:reject, +14:u08:otherwise,, +23:u08:NFS4ERR_DEADSESSION, +14:u07:otherwise,, +23:u07:NFS4ERR_DEADSESSION, +14:u06:otherwise,, +23:u06:NFS4ERR_DEADSESSION, +14:u14:otherwise,, +14:u05:otherwise,, +23:u05:NFS4ERR_DEADSESSION, +14:u13:otherwise,, +14:u04:otherwise,, +27:u08:NFS4ERR_STALE_CLIENTID., +23:u04:NFS4ERR_DEADSESSION, +7:u08:ID,, +14:u12:otherwise,, +8:uI2:"".,, +14:u03:otherwise,, +23:u03:NFS4ERR_DEADSESSION, +7:u07:ID,, +14:u11:otherwise,, +8:uI1:"".,, +14:u02:otherwise,, +27:u07:NFS4ERR_STALE_CLIENTID., +15:u08:situations,, +23:u02:NFS4ERR_DEADSESSION, +7:u06:ID,, +14:u10:otherwise,, +8:uI0:"".,, +14:u01:otherwise,, +27:u06:NFS4ERR_STALE_CLIENTID., +15:u08:EXCHANGE_ID, +23:u01:NFS4ERR_DEADSESSION, +7:u05:ID,, +27:u14:nfs4err_stale_clientid., +14:u00:otherwise,, +27:u05:NFS4ERR_STALE_CLIENTID., +15:u07:situations,, +12:u08:session,, +23:u00:NFS4ERR_DEADSESSION, +7:u04:ID,, +14:u08:operation,, +27:u13:nfs4err_stale_clientid., +27:u04:NFS4ERR_STALE_CLIENTID., +15:u06:situations,, +15:u07:EXCHANGE_ID, +7:u03:ID,, +14:u07:operation,, +27:u12:nfs4err_stale_clientid., +15:u14:situations,, +27:u03:NFS4ERR_STALE_CLIENTID., +15:u05:situations,, +15:u06:EXCHANGE_ID, +12:u07:session,, +7:u08:See, +7:u02:ID,, +14:u06:operation,, +11:u08:restart, +27:u11:nfs4err_stale_clientid., +15:u13:situations,, +15:u14:exchange_id, +27:u02:NFS4ERR_STALE_CLIENTID., +15:u04:situations,, +15:u05:EXCHANGE_ID, +12:u06:session,, +18:u08:CREATE_SESSION, +7:u01:ID,, +14:u05:operation,, +11:u07:restart, +27:u10:nfs4err_stale_clientid., +15:u12:situations,, +15:u13:exchange_id, +12:u14:session,, +27:u01:NFS4ERR_STALE_CLIENTID., +15:u03:situations,, +15:u04:EXCHANGE_ID, +12:u05:session,, +7:u07:See, +7:u00:ID,, +14:u04:operation,, +11:u06:restart, +15:u11:situations,, +15:u12:exchange_id, +12:u13:session,, +27:u00:NFS4ERR_STALE_CLIENTID., +15:u02:situations,, +15:u03:EXCHANGE_ID, +12:u04:session,, +7:u06:See, +18:u07:CREATE_SESSION, +10:u08:2.4.1., +14:u03:operation,, +11:u05:restart, +15:u10:situations,, +15:u11:exchange_id, +12:u12:session,, +7:u14:see, +15:u01:situations,, +15:u02:EXCHANGE_ID, +12:u03:session,, +7:u05:See, +18:u06:CREATE_SESSION, +14:u02:operation,, +11:u04:restart, +11:u08:Upgrade, +15:u10:exchange_id, +12:u11:session,, +7:u13:see, +18:u14:create_session, +15:u00:situations,, +15:u01:EXCHANGE_ID, +12:u02:session,, +7:u04:See, +18:u05:CREATE_SESSION, +10:u07:2.4.1., +14:u01:operation,, +11:u03:restart, +11:u07:Upgrade, +14:u08:facilitate, +12:u10:session,, +7:u12:see, +18:u13:create_session, +7:u23:See, +15:u00:EXCHANGE_ID, +12:u01:session,, +7:u03:See, +18:u04:CREATE_SESSION, +10:u06:2.4.1., +14:u00:operation,, +11:u02:restart, +11:u06:Upgrade, +14:u07:facilitate, +7:u11:see, +18:u12:create_session, +10:u14:2.4.1., +6:u21:CR, +7:u22:CRE, +8:u23:CREA, +12:u00:session,, +7:u02:See, +18:u03:CREATE_SESSION, +10:u05:2.4.1., +11:u01:restart, +11:u05:Upgrade, +14:u06:facilitate, +8:u08:type, +7:u10:see, +18:u11:create_session, +10:u13:2.4.1., +7:u01:See, +18:u02:CREATE_SESSION, +10:u04:2.4.1., +11:u00:restart, +11:u04:Upgrade, +14:u05:facilitate, +8:u07:type, +18:u10:create_session, +10:u12:2.4.1., +7:u00:See, +18:u01:CREATE_SESSION, +10:u03:2.4.1., +11:u03:Upgrade, +14:u04:facilitate, +8:u06:type, +10:u11:2.4.1., +18:u00:CREATE_SESSION, +10:u02:2.4.1., +11:u02:Upgrade, +14:u03:facilitate, +8:u05:type, +10:u10:2.4.1., +10:u01:2.4.1., +11:u01:Upgrade, +14:u02:facilitate, +8:u04:type, +10:u00:2.4.1., +11:u00:Upgrade, +14:u01:facilitate, +8:u03:type, +14:u00:facilitate, +8:u02:type, +12:u08:server's, +8:u01:type, +12:u07:server's, +10:u08:[33]),, +8:u00:type, +12:u06:server's, +10:u07:[33]),, +12:u05:server's, +10:u06:[33]),, +7:uI2:'(., +11:u08:client., +12:u04:server's, +10:u05:[33]),, +19:u08:nfs_client_id4., +7:uI1:'(., +9:uI2:[]),., +12:u08:address., +12:u03:server's, +10:u04:[33]),, +19:u07:nfs_client_id4., +7:uI0:'(., +9:uI1:[]),., +11:u07:client., +12:u02:server's, +10:u03:[33]),, +19:u06:nfs_client_id4., +9:uI0:[]),., +11:u06:client., +12:u07:address., +11:u08:expire., +12:u01:server's, +10:u02:[33]),, +19:u05:nfs_client_id4., +8:u08:wait, +11:u14:client., +11:u05:client., +12:u06:address., +10:u08:2.4.2., +12:u00:server's, +10:u01:[33]),, +19:u04:nfs_client_id4., +8:u07:wait, +11:u13:client., +12:u14:address., +11:u04:client., +12:u05:address., +11:u07:expire., +10:u00:[33]),, +19:u03:nfs_client_id4., +8:u06:wait, +11:u12:client., +12:u13:address., +11:u03:client., +12:u04:address., +11:u06:expire., +10:u07:2.4.2., +19:u02:nfs_client_id4., +8:u05:wait, +11:u11:client., +12:u12:address., +11:u14:expire., +11:u02:client., +12:u03:address., +11:u05:expire., +10:u06:2.4.2., +19:u01:nfs_client_id4., +8:u04:wait, +11:u08:18.50),, +11:u10:client., +12:u11:address., +11:u13:expire., +10:u14:2.4.2., +11:u01:client., +12:u02:address., +11:u04:expire., +10:u05:2.4.2., +19:u00:nfs_client_id4., +8:u03:wait, +11:u07:18.50),, +12:u10:address., +11:u12:expire., +10:u13:2.4.2., +8:u23:expi, +11:u00:client., +12:u01:address., +11:u03:expire., +10:u04:2.4.2., +8:u02:wait, +11:u06:18.50),, +11:u11:expire., +10:u12:2.4.2., +12:u00:address., +11:u02:expire., +10:u03:2.4.2., +8:u01:wait, +11:u05:18.50),, +11:u10:expire., +10:u11:2.4.2., +11:u01:expire., +10:u02:2.4.2., +8:u00:wait, +11:u04:18.50),, +10:u10:2.4.2., +11:u00:expire., +10:u01:2.4.2., +11:u03:18.50),, +10:u00:2.4.2., +11:u02:18.50),, +11:u01:18.50),, +11:u00:18.50),, +10:u08:opens,, +10:u08:locks,, +10:u07:opens,, +10:u07:locks,, +16:u08:unilaterally, +10:u06:opens,, +10:u08:ensure, +10:u06:locks,, +16:u07:unilaterally, +10:u14:opens,, +10:u05:opens,, +10:u05:locks,, +16:u06:unilaterally, +10:u13:opens,, +10:uI2:,,,,),, +10:u04:opens,, +10:u07:ensure, +10:u04:locks,, +16:u05:unilaterally, +10:u12:opens,, +8:u23:open, +10:uI1:,,,,),, +10:u03:opens,, +10:u06:ensure, +10:u03:locks,, +16:u04:unilaterally, +10:u11:opens,, +10:u14:ensure, +10:uI0:,,,,),, +10:u02:opens,, +10:u05:ensure, +10:u02:locks,, +16:u03:unilaterally, +10:u10:opens,, +10:u13:ensure, +10:u01:opens,, +10:u04:ensure, +14:u08:Typically,, +10:u01:locks,, +16:u02:unilaterally, +10:u12:ensure, +7:u14:id., +7:u22:ens, +8:u23:ensu, +10:u00:opens,, +10:u03:ensure, +10:u00:locks,, +16:u01:unilaterally, +10:u11:ensure, +7:u13:id., +10:u02:ensure, +14:u07:Typically,, +16:u00:unilaterally, +10:u10:ensure, +7:u12:id., +7:u22:ID., +7:u23:ID., +10:u01:ensure, +14:u06:Typically,, +13:u08:sessions,, +7:u11:id., +14:u14:typically,, +8:u23:sinc, +10:u00:ensure, +14:u05:Typically,, +14:u08:discussion, +13:u07:sessions,, +7:u10:id., +14:u13:typically,, +14:u04:Typically,, +10:u08:2.4.3., +13:u06:sessions,, +14:u12:typically,, +8:u23:Typi, +14:u03:Typically,, +14:u07:discussion, +13:u05:sessions,, +13:u08:Resolving, +14:u11:typically,, +10:uI2:,,,,,,, +14:u02:Typically,, +14:u06:discussion, +10:u07:2.4.3., +13:u04:sessions,, +13:u07:Resolving, +14:u10:typically,, +14:u14:discussion, +10:uI1:,,,,,,, +14:u01:Typically,, +14:u05:discussion, +10:u06:2.4.3., +13:u03:sessions,, +13:u06:Resolving, +14:u13:discussion, +10:u14:2.4.3., +10:uI0:,,,,,,, +14:u00:Typically,, +14:u04:discussion, +10:u05:2.4.3., +13:u02:sessions,, +13:u05:Resolving, +14:u12:discussion, +10:u13:2.4.3., +14:u03:discussion, +10:u04:2.4.3., +13:u01:sessions,, +13:u04:Resolving, +14:u11:discussion, +10:u12:2.4.3., +14:u02:discussion, +10:u03:2.4.3., +13:u00:sessions,, +13:u03:Resolving, +14:u10:discussion, +10:u11:2.4.3., +14:u01:discussion, +10:u02:2.4.3., +13:u08:unexpired, +13:u02:Resolving, +10:u10:2.4.3., +14:u00:discussion, +10:u01:2.4.3., +13:u01:Resolving, +10:u08:lease,, +10:u00:2.4.3., +13:u07:unexpired, +9:u08:true:, +13:u00:Resolving, +10:u07:lease,, +15:u08:incarnation, +13:u06:unexpired, +10:u06:lease,, +15:u07:incarnation, +13:u14:unexpired, +13:u05:unexpired, +9:u07:true:, +10:u05:lease,, +15:u06:incarnation, +13:u13:unexpired, +13:u04:unexpired, +9:u06:true:, +10:u04:lease,, +15:u05:incarnation, +13:u12:unexpired, +9:u14:true:, +7:u22:une, +8:u23:unex, +13:u03:unexpired, +9:u05:true:, +17:u08:SP4_MACH_CRED, +10:u03:lease,, +15:u04:incarnation, +13:u11:unexpired, +9:u13:true:, +13:u02:unexpired, +9:u04:true:, +10:u02:lease,, +15:u03:incarnation, +13:u10:unexpired, +9:u12:true:, +7:u22:tru, +8:u23:true, +13:u01:unexpired, +9:u03:true:, +17:u07:SP4_MACH_CRED, +10:u01:lease,, +15:u02:incarnation, +9:u11:true:, +13:u00:unexpired, +9:u02:true:, +17:u06:SP4_MACH_CRED, +13:u08:principal, +10:u00:lease,, +15:u01:incarnation, +9:u10:true:, +17:u14:sp4_mach_cred, +9:u01:true:, +17:u05:SP4_MACH_CRED, +12:u08:created., +15:u00:incarnation, +17:u13:sp4_mach_cred, +9:u00:true:, +17:u04:SP4_MACH_CRED, +13:u07:principal, +17:u12:sp4_mach_cred, +7:u22:SP4, +8:u23:SP4_, +17:u03:SP4_MACH_CRED, +13:u06:principal, +12:u07:created., +17:u11:sp4_mach_cred, +13:u14:principal, +17:u02:SP4_MACH_CRED, +13:u05:principal, +12:u06:created., +10:u08:18.35,, +17:u10:sp4_mach_cred, +13:u13:principal, +12:u14:created., +17:u01:SP4_MACH_CRED, +13:u04:principal, +12:u05:created., +10:u07:18.35,, +13:u12:principal, +12:u13:created., +8:u23:prin, +17:u00:SP4_MACH_CRED, +13:u03:principal, +12:u04:created., +10:u06:18.35,, +13:u11:principal, +12:u12:created., +13:u02:principal, +12:u03:created., +10:u05:18.35,, +13:u10:principal, +12:u11:created., +11:uI2:(.,...), +13:u01:principal, +12:u02:created., +10:u04:18.35,, +14:u08:conditions, +12:u10:created., +7:u14:gss, +11:uI1:(.,...), +13:u00:principal, +12:u01:created., +10:u03:18.35,, +14:u07:conditions, +7:u13:gss, +11:uI0:(.,...), +12:u00:created., +10:u02:18.35,, +14:u06:conditions, +7:u12:gss, +7:u23:GSS, +10:u01:18.35,, +14:u05:conditions, +9:u08:sends, +7:u11:gss, +10:u00:18.35,, +14:u04:conditions, +9:u07:sends, +7:u10:gss, +14:u03:conditions, +9:u06:sends, +14:u02:conditions, +9:u05:sends, +14:u01:conditions, +9:u04:sends, +14:u00:conditions, +9:u03:sends, +9:u02:sends, +9:u01:sends, +7:u08:MAY, +9:u00:sends, +7:u07:MAY, +11:u08:handle., +7:u06:MAY, +11:u07:handle., +7:u05:MAY, +11:u06:handle., +7:u04:MAY, +11:u05:handle., +7:u03:MAY, +11:u04:handle., +23:u08:NFS4ERR_CLID_INUSE., +7:u02:MAY, +11:u03:handle., +8:u08:none, +7:u01:MAY, +11:u02:handle., +8:u07:none, +23:u07:NFS4ERR_CLID_INUSE., +7:u00:MAY, +11:u01:handle., +8:u06:none, +23:u06:NFS4ERR_CLID_INUSE., +11:u08:differs, +11:u00:handle., +8:u05:none, +11:u08:created, +23:u14:nfs4err_clid_inuse., +23:u05:NFS4ERR_CLID_INUSE., +8:u04:none, +11:u07:created, +23:u13:nfs4err_clid_inuse., +23:u04:NFS4ERR_CLID_INUSE., +11:u07:differs, +8:u03:none, +11:u06:created, +23:u12:nfs4err_clid_inuse., +23:u03:NFS4ERR_CLID_INUSE., +11:u06:differs, +8:u02:none, +11:u05:created, +23:u11:nfs4err_clid_inuse., +11:u14:differs, +23:u02:NFS4ERR_CLID_INUSE., +11:u05:differs, +8:u01:none, +11:u04:created, +23:u10:nfs4err_clid_inuse., +11:u13:differs, +23:u01:NFS4ERR_CLID_INUSE., +11:u04:differs, +8:u00:none, +11:u03:created, +11:u12:differs, +23:u00:NFS4ERR_CLID_INUSE., +11:u03:differs, +11:u02:created, +11:u11:differs, +11:u02:differs, +11:u01:created, +11:u10:differs, +11:u01:differs, +10:u08:unlike, +11:u00:created, +12:uI2:(.)(..),, +11:u00:differs, +12:uI1:(.)(..),, +10:u07:unlike, +12:uI0:(.)(..),, +10:u06:unlike, +12:u08:uint64_t, +17:u08:server_owner4, +10:u05:unlike, +16:u08:so_minor_id;, +17:u07:server_owner4, +10:u04:unlike, +12:u07:uint64_t, +17:u06:server_owner4, +7:u22:unl, +8:u23:unli, +10:u03:unlike, +12:u06:uint64_t, +16:u07:so_minor_id;, +35:u08:so_major_id<NFS4_OPAQUE_LIMIT>;, +17:u05:server_owner4, +12:u14:uint64_t, +10:u02:unlike, +12:u05:uint64_t, +16:u06:so_minor_id;, +17:u04:server_owner4, +12:u13:uint64_t, +16:u14:so_minor_id;, +10:u01:unlike, +12:u04:uint64_t, +16:u05:so_minor_id;, +35:u07:so_major_id<NFS4_OPAQUE_LIMIT>;, +17:u03:server_owner4, +12:u12:uint64_t, +16:u13:so_minor_id;, +6:u21:ui, +7:u22:uin, +8:u23:uint, +10:u00:unlike, +12:u03:uint64_t, +16:u04:so_minor_id;, +35:u06:so_major_id<NFS4_OPAQUE_LIMIT>;, +10:u08:fields, +17:u02:server_owner4, +12:u11:uint64_t, +16:u12:so_minor_id;, +35:u14:so_major_id<nfs4_opaque_limit>;, +7:u22:so_, +8:u23:so_m, +12:u02:uint64_t, +16:u03:so_minor_id;, +35:u05:so_major_id<NFS4_OPAQUE_LIMIT>;, +17:u01:server_owner4, +12:u10:uint64_t, +16:u11:so_minor_id;, +35:u13:so_major_id<nfs4_opaque_limit>;, +12:u01:uint64_t, +16:u02:so_minor_id;, +35:u04:so_major_id<NFS4_OPAQUE_LIMIT>;, +10:u07:fields, +17:u00:server_owner4, +16:u10:so_minor_id;, +35:u12:so_major_id<nfs4_opaque_limit>;, +12:u00:uint64_t, +16:u01:so_minor_id;, +35:u03:so_major_id<NFS4_OPAQUE_LIMIT>;, +10:u06:fields, +35:u11:so_major_id<nfs4_opaque_limit>;, +10:u14:fields, +16:u00:so_minor_id;, +35:u02:so_major_id<NFS4_OPAQUE_LIMIT>;, +10:u05:fields, +35:u10:so_major_id<nfs4_opaque_limit>;, +10:u13:fields, +35:u01:so_major_id<NFS4_OPAQUE_LIMIT>;, +10:u04:fields, +10:u12:fields, +35:u00:so_major_id<NFS4_OPAQUE_LIMIT>;, +10:u03:fields, +16:u08:accidentally, +10:u11:fields, +10:u02:fields, +9:u08:claim, +10:u10:fields, +10:u01:fields, +16:u07:accidentally, +9:u07:claim, +10:u00:fields, +16:u06:accidentally, +9:u06:claim, +16:u14:accidentally, +16:u05:accidentally, +9:u05:claim, +16:u13:accidentally, +16:u04:accidentally, +16:u08:consequences, +9:u04:claim, +16:u12:accidentally, +8:u23:acci, +8:uI2:;..., +16:u03:accidentally, +9:u03:claim, +16:u11:accidentally, +8:uI1:;..., +16:u02:accidentally, +16:u07:consequences, +9:u02:claim, +16:u10:accidentally, +8:uI0:;..., +16:u01:accidentally, +16:u06:consequences, +9:u01:claim, +16:u14:consequences, +16:u00:accidentally, +16:u05:consequences, +9:u00:claim, +16:u13:consequences, +16:u04:consequences, +16:u12:consequences, +16:u03:consequences, +16:u11:consequences, +16:u02:consequences, +16:u10:consequences, +16:u01:consequences, +16:u00:consequences, +15:u08:mechanisms,, +15:u07:mechanisms,, +15:u06:mechanisms,, +15:u14:mechanisms,, +15:u05:mechanisms,, +15:u13:mechanisms,, +15:u04:mechanisms,, +20:u08:implementations,, +15:u12:mechanisms,, +15:u03:mechanisms,, +15:u11:mechanisms,, +15:u02:mechanisms,, +20:u07:implementations,, +14:u08:boundaries, +15:u10:mechanisms,, +15:u01:mechanisms,, +20:u06:implementations,, +20:u14:implementations,, +15:u00:mechanisms,, +20:u05:implementations,, +14:u07:boundaries, +20:u13:implementations,, +20:u04:implementations,, +14:u06:boundaries, +16:u08:intercepting, +20:u12:implementations,, +14:u14:boundaries, +20:u03:implementations,, +14:u05:boundaries, +20:u11:implementations,, +14:u13:boundaries, +20:u02:implementations,, +14:u04:boundaries, +16:u07:intercepting, +20:u10:implementations,, +14:u12:boundaries, +7:u22:bou, +8:u23:boun, +20:u01:implementations,, +14:u03:boundaries, +16:u06:intercepting, +10:u08:2.6.1., +14:u11:boundaries, +16:u14:intercepting, +20:u00:implementations,, +14:u02:boundaries, +16:u05:intercepting, +14:u10:boundaries, +16:u13:intercepting, +14:u01:boundaries, +16:u04:intercepting, +10:u07:2.6.1., +16:u12:intercepting, +14:u00:boundaries, +16:u03:intercepting, +10:u06:2.6.1., +10:u08:policy, +16:u11:intercepting, +10:u14:2.6.1., +16:u02:intercepting, +10:u05:2.6.1., +10:u08:flavor, +10:u07:policy, +16:u10:intercepting, +10:u13:2.6.1., +16:u01:intercepting, +10:u04:2.6.1., +10:u06:policy, +10:u12:2.6.1., +16:u00:intercepting, +10:u03:2.6.1., +10:u07:flavor, +10:u08:2.6.2., +10:u05:policy, +10:u11:2.6.1., +10:u02:2.6.1., +10:u06:flavor, +10:u04:policy, +11:u08:SECINFO, +10:u10:2.6.1., +10:u14:flavor, +10:u01:2.6.1., +10:u05:flavor, +10:u07:2.6.2., +14:u08:determine,, +10:u03:policy, +11:u07:SECINFO, +10:u13:flavor, +11:u14:gss-api, +9:uI2:,-(),, +10:u00:2.6.1., +10:u04:flavor, +10:u06:2.6.2., +10:u02:policy, +11:u06:SECINFO, +10:u12:flavor, +11:u13:gss-api, +10:u14:2.6.2., +9:uI1:,-(),, +10:u03:flavor, +10:u05:2.6.2., +14:u07:determine,, +10:u01:policy, +11:u05:SECINFO, +10:u11:flavor, +11:u12:gss-api, +10:u13:2.6.2., +8:u23:GSS-, +9:uI0:,-(),, +10:u02:flavor, +10:u04:2.6.2., +14:u06:determine,, +10:u00:policy, +11:u04:SECINFO, +10:u10:flavor, +11:u11:gss-api, +10:u12:2.6.2., +14:u14:determine,, +10:u01:flavor, +10:u03:2.6.2., +14:u05:determine,, +11:u03:SECINFO, +11:u10:gss-api, +10:u11:2.6.2., +14:u13:determine,, +10:u00:flavor, +10:u02:2.6.2., +14:u04:determine,, +11:u02:SECINFO, +10:u10:2.6.2., +14:u12:determine,, +10:u01:2.6.2., +14:u03:determine,, +9:u08:Where, +11:u01:SECINFO, +14:u11:determine,, +10:u00:2.6.2., +14:u02:determine,, +11:u00:SECINFO, +14:u10:determine,, +14:u01:determine,, +9:u07:Where, +14:u00:determine,, +9:u06:Where, +13:u08:read-only, +9:u05:Where, +9:u04:Where, +13:u07:read-only, +8:u23:Wher, +9:u03:Where, +13:u06:read-only, +14:u08:principals, +13:u14:read-only, +9:u02:Where, +13:u05:read-only, +15:u08:disallowing, +9:u08:whose, +13:u13:read-only, +9:uI2:-.-),, +9:u01:Where, +13:u04:read-only, +14:u07:principals, +9:u07:whose, +8:u08:root, +13:u12:read-only, +9:uI1:-.-),, +9:u00:Where, +13:u03:read-only, +14:u06:principals, +15:u07:disallowing, +9:u06:whose, +8:u07:root, +13:u11:read-only, +14:u14:principals, +9:uI0:-.-),, +13:u02:read-only, +14:u05:principals, +15:u06:disallowing, +9:u05:whose, +8:u06:root, +13:u10:read-only, +14:u13:principals, +15:u14:disallowing, +13:u01:read-only, +14:u04:principals, +15:u05:disallowing, +9:u04:whose, +8:u05:root, +14:u12:principals, +15:u13:disallowing, +13:u00:read-only, +14:u03:principals, +15:u04:disallowing, +9:u03:whose, +8:u04:root, +14:u11:principals, +15:u12:disallowing, +8:u23:disa, +14:u02:principals, +15:u03:disallowing, +9:u02:whose, +8:u03:root, +14:u10:principals, +15:u11:disallowing, +14:u01:principals, +15:u02:disallowing, +9:u01:whose, +8:u02:root, +15:u10:disallowing, +14:u00:principals, +15:u01:disallowing, +10:u08:2.6.3., +9:u00:whose, +8:u01:root, +15:u00:disallowing, +8:u00:root, +10:u07:2.6.3., +10:u06:2.6.3., +16:u08:RPCSEC_GSS),, +10:u14:2.6.3., +10:u05:2.6.3., +10:u13:2.6.3., +10:u04:2.6.3., +16:u07:RPCSEC_GSS),, +10:u12:2.6.3., +10:u03:2.6.3., +16:u06:RPCSEC_GSS),, +10:u11:2.6.3., +16:u14:rpcsec_gss),, +10:u02:2.6.3., +16:u05:RPCSEC_GSS),, +9:u08:tuple, +9:u08:error, +10:u10:2.6.3., +16:u13:rpcsec_gss),, +10:u01:2.6.3., +16:u04:RPCSEC_GSS),, +9:u07:error, +13:u08:currently, +16:u12:rpcsec_gss),, +10:u00:2.6.3., +16:u03:RPCSEC_GSS),, +9:u07:tuple, +9:u06:error, +13:u07:currently, +16:u11:rpcsec_gss),, +16:u02:RPCSEC_GSS),, +9:u06:tuple, +9:u05:error, +13:u06:currently, +16:u10:rpcsec_gss),, +9:u14:tuple, +16:u01:RPCSEC_GSS),, +9:u05:tuple, +12:u08:2.6.3.1., +9:u04:error, +13:u05:currently, +9:u13:tuple, +16:u00:RPCSEC_GSS),, +9:u04:tuple, +9:u03:error, +13:u04:currently, +9:u12:tuple, +8:u14:what, +7:u22:tup, +8:u23:tupl, +9:u03:tuple, +12:u07:2.6.3.1., +14:u08:2.6.3.1.1., +9:u02:error, +13:u03:currently, +9:u11:tuple, +8:u13:what, +9:u02:tuple, +12:u06:2.6.3.1., +9:u01:error, +13:u02:currently, +7:u08:Put, +9:u10:tuple, +8:u12:what, +12:u14:2.6.3.1., +9:u01:tuple, +12:u05:2.6.3.1., +14:u07:2.6.3.1.1., +10:u08:PUTFH,, +9:u00:error, +13:u01:currently, +7:u07:Put, +8:u08:term, +8:u11:what, +12:u13:2.6.3.1., +10:uI2:....,,, +9:u00:tuple, +12:u04:2.6.3.1., +14:u06:2.6.3.1.1., +13:u00:currently, +7:u06:Put, +8:u07:term, +8:u10:what, +12:u12:2.6.3.1., +14:u14:2.6.3.1.1., +10:uI1:....,,, +12:u03:2.6.3.1., +14:u05:2.6.3.1.1., +10:u07:PUTFH,, +14:u08:filehandle, +7:u05:Put, +8:u06:term, +12:u11:2.6.3.1., +14:u13:2.6.3.1.1., +10:uI0:....,,, +12:u02:2.6.3.1., +14:u04:2.6.3.1.1., +10:u06:PUTFH,, +16:u08:2.6.3.1.1.1., +7:u04:Put, +8:u05:term, +12:u10:2.6.3.1., +14:u12:2.6.3.1.1., +10:u14:putfh,, +8:uI2:"",,, +12:u01:2.6.3.1., +14:u03:2.6.3.1.1., +10:u05:PUTFH,, +14:u07:filehandle, +7:u03:Put, +8:u04:term, +14:u11:2.6.3.1.1., +10:u13:putfh,, +8:uI1:"",,, +12:u00:2.6.3.1., +14:u02:2.6.3.1.1., +10:u04:PUTFH,, +14:u06:filehandle, +16:u07:2.6.3.1.1.1., +11:u08:RENAME., +7:u02:Put, +8:u03:term, +14:u10:2.6.3.1.1., +10:u12:putfh,, +14:u14:filehandle, +6:u21:PU, +7:u22:PUT, +8:u23:PUTF, +8:uI0:"",,, +14:u01:2.6.3.1.1., +10:u03:PUTFH,, +14:u05:filehandle, +16:u06:2.6.3.1.1.1., +11:u08:whether, +7:u01:Put, +8:u02:term, +10:u08:SAVEFH, +10:u11:putfh,, +14:u13:filehandle, +16:u14:2.6.3.1.1.1., +14:u00:2.6.3.1.1., +10:u02:PUTFH,, +14:u04:filehandle, +16:u05:2.6.3.1.1.1., +11:u07:RENAME., +7:u00:Put, +8:u01:term, +10:u07:SAVEFH, +10:u10:putfh,, +14:u12:filehandle, +16:u13:2.6.3.1.1.1., +10:u01:PUTFH,, +14:u03:filehandle, +16:u04:2.6.3.1.1.1., +11:u06:RENAME., +11:u07:whether, +8:u00:term, +10:u06:SAVEFH, +14:u11:filehandle, +16:u12:2.6.3.1.1.1., +11:u14:rename., +10:u00:PUTFH,, +14:u02:filehandle, +16:u03:2.6.3.1.1.1., +11:u05:RENAME., +11:u06:whether, +10:u05:SAVEFH, +14:u10:filehandle, +16:u11:2.6.3.1.1.1., +11:u13:rename., +11:u14:whether, +14:u01:filehandle, +16:u02:2.6.3.1.1.1., +11:u04:RENAME., +11:u05:whether, +16:u08:2.6.3.1.1.2., +10:u04:SAVEFH, +15:u08:subsections, +16:u10:2.6.3.1.1.1., +11:u12:rename., +11:u13:whether, +7:u22:REN, +8:u23:RENA, +14:u00:filehandle, +16:u01:2.6.3.1.1.1., +11:u03:RENAME., +11:u04:whether, +10:u03:SAVEFH, +15:u07:subsections, +7:u08:Two, +11:u11:rename., +11:u12:whether, +8:u23:whet, +16:u00:2.6.3.1.1.1., +11:u02:RENAME., +11:u03:whether, +16:u07:2.6.3.1.1.2., +10:u08:return, +10:u02:SAVEFH, +15:u06:subsections, +7:u07:Two, +11:u10:rename., +11:u11:whether, +11:u01:RENAME., +11:u02:whether, +16:u06:2.6.3.1.1.2., +10:u01:SAVEFH, +15:u05:subsections, +7:u06:Two, +20:u08:NFS4ERR_WRONGSEC, +11:u10:whether, +16:u14:2.6.3.1.1.2., +11:u00:RENAME., +11:u01:whether, +16:u05:2.6.3.1.1.2., +10:u07:return, +10:u00:SAVEFH, +15:u04:subsections, +7:u05:Two, +20:u07:NFS4ERR_WRONGSEC, +7:u08:Nth, +16:u13:2.6.3.1.1.2., +11:u00:whether, +16:u04:2.6.3.1.1.2., +10:u06:return, +15:u03:subsections, +7:u04:Two, +20:u06:NFS4ERR_WRONGSEC, +7:u07:Nth, +13:u08:subseries, +16:u12:2.6.3.1.1.2., +10:u14:return, +16:u03:2.6.3.1.1.2., +10:u05:return, +10:u08:LOOKUP, +15:u02:subsections, +7:u03:Two, +20:u05:NFS4ERR_WRONGSEC, +7:u06:Nth, +13:u07:subseries, +16:u11:2.6.3.1.1.2., +10:u13:return, +16:u02:2.6.3.1.1.2., +10:u04:return, +13:u08:purposes,, +15:u01:subsections, +7:u02:Two, +20:u04:NFS4ERR_WRONGSEC, +7:u05:Nth, +13:u06:subseries, +10:u08:--then, +16:u10:2.6.3.1.1.2., +10:u12:return, +8:u23:retu, +16:u01:2.6.3.1.1.2., +10:u03:return, +10:u07:LOOKUP, +15:u00:subsections, +7:u01:Two, +20:u03:NFS4ERR_WRONGSEC, +7:u04:Nth, +13:u05:subseries, +10:u07:--then, +10:u11:return, +16:u00:2.6.3.1.1.2., +10:u02:return, +10:u06:LOOKUP, +13:u07:purposes,, +7:u00:Two, +20:u02:NFS4ERR_WRONGSEC, +7:u03:Nth, +13:u04:subseries, +10:u06:--then, +10:u10:return, +10:u14:lookup, +8:uI2:--,,, +10:u01:return, +10:u05:LOOKUP, +13:u06:purposes,, +20:u01:NFS4ERR_WRONGSEC, +7:u02:Nth, +13:u03:subseries, +10:u05:--then, +10:u13:lookup, +13:u14:purposes,, +8:uI1:--,,, +10:u00:return, +10:u04:LOOKUP, +13:u05:purposes,, +20:u00:NFS4ERR_WRONGSEC, +7:u01:Nth, +13:u02:subseries, +10:u04:--then, +10:u12:lookup, +13:u13:purposes,, +6:u21:LO, +7:u22:LOO, +8:u23:LOOK, +8:uI0:--,,, +10:u03:LOOKUP, +13:u04:purposes,, +7:u00:Nth, +13:u01:subseries, +10:u03:--then, +10:u11:lookup, +13:u12:purposes,, +10:u02:LOOKUP, +13:u03:purposes,, +13:u00:subseries, +10:u02:--then, +10:u10:lookup, +13:u11:purposes,, +8:u23:acco, +10:u01:LOOKUP, +13:u02:purposes,, +10:u01:--then, +13:u10:purposes,, +10:u00:LOOKUP, +13:u01:purposes,, +16:u08:2.6.3.1.1.3., +10:u00:--then, +13:u00:purposes,, +9:u08:Name), +16:u07:2.6.3.1.1.3., +16:u06:2.6.3.1.1.3., +9:u07:Name), +16:u14:2.6.3.1.1.3., +16:u05:2.6.3.1.1.3., +9:u06:Name), +9:u08:name., +16:u13:2.6.3.1.1.3., +9:u14:name), +11:uI2:......(, +16:u04:2.6.3.1.1.3., +9:u05:Name), +16:u12:2.6.3.1.1.3., +9:u13:name), +11:uI1:......(, +16:u03:2.6.3.1.1.3., +9:u04:Name), +9:u07:name., +16:u11:2.6.3.1.1.3., +9:u12:name), +7:u22:Nam, +8:u23:Name, +11:uI0:......(, +16:u02:2.6.3.1.1.3., +9:u03:Name), +9:u06:name., +13:u08:boundary,, +16:u10:2.6.3.1.1.3., +9:u11:name), +9:u14:name., +16:u01:2.6.3.1.1.3., +9:u02:Name), +9:u05:name., +13:u07:boundary,, +9:u10:name), +9:u13:name., +16:u00:2.6.3.1.1.3., +9:u01:Name), +9:u04:name., +13:u06:boundary,, +9:u12:name., +9:u00:Name), +9:u03:name., +21:u08:(sec_policy_child, +13:u05:boundary,, +9:u11:name., +9:u02:name., +21:u08:sec_policy_parent, +13:u04:boundary,, +9:u10:name., +9:u01:name., +21:u07:(sec_policy_child, +7:u08:(a), +13:u03:boundary,, +9:u00:name., +21:u06:(sec_policy_child, +21:u07:sec_policy_parent, +13:u02:boundary,, +20:u08:sec_policy_child, +21:u14:(sec_policy_child, +21:u05:(sec_policy_child, +21:u06:sec_policy_parent, +7:u07:(a), +13:u01:boundary,, +20:u07:sec_policy_child, +21:u13:(sec_policy_child, +21:u14:sec_policy_parent, +21:u04:(sec_policy_child, +21:u05:sec_policy_parent, +7:u06:(a), +14:u08:directory., +13:u00:boundary,, +20:u06:sec_policy_child, +21:u12:(sec_policy_child, +21:u13:sec_policy_parent, +7:u14:(a), +8:u23:(sec, +21:u03:(sec_policy_child, +21:u04:sec_policy_parent, +7:u05:(a), +7:u08:(b), +20:u05:sec_policy_child, +21:u11:(sec_policy_child, +21:u12:sec_policy_parent, +7:u13:(a), +9:u14:means, +8:u23:sec_, +21:u02:(sec_policy_child, +21:u03:sec_policy_parent, +7:u04:(a), +14:u07:directory., +6:u08:{}, +20:u04:sec_policy_child, +21:u10:(sec_policy_child, +21:u11:sec_policy_parent, +7:u12:(a), +9:u13:means, +7:u22:(a), +7:u23:(a), +21:u01:(sec_policy_child, +21:u02:sec_policy_parent, +7:u03:(a), +14:u06:directory., +7:u07:(b), +10:u08:tuples, +20:u03:sec_policy_child, +21:u10:sec_policy_parent, +7:u11:(a), +9:u12:means, +14:u14:directory., +21:u00:(sec_policy_child, +21:u01:sec_policy_parent, +7:u02:(a), +14:u05:directory., +7:u06:(b), +6:u07:{}, +10:u08:always, +20:u02:sec_policy_child, +7:u10:(a), +9:u11:means, +14:u13:directory., +7:u14:(b), +21:u00:sec_policy_parent, +7:u01:(a), +14:u04:directory., +7:u05:(b), +6:u06:{}, +10:u07:tuples, +20:u01:sec_policy_child, +9:u10:means, +14:u12:directory., +7:u13:(b), +6:u14:{}, +9:uI2:()!(,, +7:u00:(a), +14:u03:directory., +7:u04:(b), +6:u05:{}, +10:u06:tuples, +10:u07:always, +20:u00:sec_policy_child, +14:u11:directory., +7:u12:(b), +6:u13:{}, +10:u14:tuples, +7:u22:(b), +7:u23:(b), +9:uI1:()!(,, +14:u02:directory., +7:u03:(b), +6:u04:{}, +10:u05:tuples, +10:u06:always, +9:u08:child, +14:u10:directory., +7:u11:(b), +6:u12:{}, +10:u13:tuples, +10:u14:always, +6:u21:{}, +6:u22:{}, +6:u23:{}, +9:uI0:()!(,, +14:u01:directory., +7:u02:(b), +6:u03:{}, +10:u04:tuples, +10:u05:always, +7:u10:(b), +6:u11:{}, +10:u12:tuples, +10:u13:always, +7:u14:(c), +14:u00:directory., +7:u01:(b), +6:u02:{}, +10:u03:tuples, +10:u04:always, +9:u07:child, +17:u08:administrator, +6:u10:{}, +10:u11:tuples, +10:u12:always, +7:u13:(c), +7:u22:alw, +8:u23:alwa, +7:u00:(b), +6:u01:{}, +10:u02:tuples, +10:u03:always, +9:u06:child, +10:u10:tuples, +10:u11:always, +7:u12:(c), +9:u14:child, +7:u22:(c), +7:u23:(c), +6:u00:{}, +10:u01:tuples, +10:u02:always, +9:u05:child, +17:u07:administrator, +10:u10:always, +7:u11:(c), +9:u13:child, +10:u00:tuples, +10:u01:always, +9:u04:child, +17:u06:administrator, +11:u08:chooses, +7:u10:(c), +9:u12:child, +17:u14:administrator, +10:u00:always, +9:u03:child, +17:u05:administrator, +11:u07:chooses, +8:u08:(c),, +9:u11:child, +17:u13:administrator, +9:u02:child, +17:u04:administrator, +12:u08:returned, +11:u06:chooses, +8:u07:(c),, +9:u10:child, +17:u12:administrator, +9:u01:child, +17:u03:administrator, +11:u05:chooses, +8:u06:(c),, +17:u11:administrator, +9:u00:child, +17:u02:administrator, +12:u07:returned, +11:u04:chooses, +8:u05:(c),, +17:u10:administrator, +17:u01:administrator, +12:u06:returned, +11:u03:chooses, +8:u04:(c),, +12:u14:returned, +17:u00:administrator, +12:u05:returned, +11:u02:chooses, +8:u03:(c),, +12:u08:followed, +12:u13:returned, +12:u04:returned, +11:u01:chooses, +8:u02:(c),, +12:u07:followed, +12:u12:returned, +12:u03:returned, +11:u00:chooses, +8:u01:(c),, +12:u06:followed, +12:u11:returned, +12:u02:returned, +13:u08:PUTPUBFH,, +8:u00:(c),, +12:u05:followed, +12:u10:returned, +12:u01:returned, +12:u04:followed, +12:u00:returned, +13:u07:PUTPUBFH,, +12:u03:followed, +13:u06:PUTPUBFH,, +12:u02:followed, +13:u14:putpubfh,, +13:u05:PUTPUBFH,, +12:u01:followed, +13:u13:putpubfh,, +13:u04:PUTPUBFH,, +12:u00:followed, +13:u12:putpubfh,, +8:u23:PUTP, +13:u03:PUTPUBFH,, +13:u11:putpubfh,, +7:u22:roo, +8:u23:root, +13:u02:PUTPUBFH,, +13:u10:putpubfh,, +13:u01:PUTPUBFH,, +13:u00:PUTPUBFH,, +12:u08:response, +15:u08:immediately, +12:u07:response, +16:u08:2.6.3.1.1.4., +14:u14:therefore,, +12:u06:response, +15:u07:immediately, +14:u13:therefore,, +12:u05:response, +15:u06:immediately, +16:u07:2.6.3.1.1.4., +14:u12:therefore,, +15:u14:immediately, +12:u04:response, +15:u05:immediately, +16:u06:2.6.3.1.1.4., +10:u08:solves, +14:u11:therefore,, +15:u13:immediately, +16:u14:2.6.3.1.1.4., +12:u03:response, +15:u04:immediately, +16:u05:2.6.3.1.1.4., +12:u08:opposite, +14:u10:therefore,, +15:u12:immediately, +16:u13:2.6.3.1.1.4., +12:u02:response, +15:u03:immediately, +16:u04:2.6.3.1.1.4., +10:u07:solves, +13:u08:direction, +15:u11:immediately, +16:u12:2.6.3.1.1.4., +12:u01:response, +15:u02:immediately, +16:u03:2.6.3.1.1.4., +10:u06:solves, +12:u07:opposite, +21:u08:NFS4ERR_WRONGSEC., +13:u07:direction, +15:u10:immediately, +16:u11:2.6.3.1.1.4., +10:u14:solves, +12:u00:response, +15:u01:immediately, +16:u02:2.6.3.1.1.4., +10:u05:solves, +12:u06:opposite, +13:u06:direction, +16:u10:2.6.3.1.1.4., +10:u13:solves, +12:u14:opposite, +15:u00:immediately, +16:u01:2.6.3.1.1.4., +10:u04:solves, +12:u05:opposite, +21:u07:NFS4ERR_WRONGSEC., +12:u08:LOOKUPP,, +13:u05:direction, +10:u12:solves, +12:u13:opposite, +8:u23:solv, +11:uI2:......,, +16:u00:2.6.3.1.1.4., +10:u03:solves, +12:u04:opposite, +21:u06:NFS4ERR_WRONGSEC., +13:u08:supports., +13:u04:direction, +9:u08:GETFH, +10:u11:solves, +12:u12:opposite, +21:u14:nfs4err_wrongsec., +11:uI1:......,, +10:u02:solves, +12:u03:opposite, +21:u05:NFS4ERR_WRONGSEC., +12:u07:LOOKUPP,, +13:u03:direction, +9:u07:GETFH, +10:u10:solves, +12:u11:opposite, +21:u13:nfs4err_wrongsec., +11:uI0:......,, +10:u01:solves, +12:u02:opposite, +21:u04:NFS4ERR_WRONGSEC., +12:u06:LOOKUPP,, +13:u07:supports., +13:u02:direction, +9:u06:GETFH, +12:u10:opposite, +21:u12:nfs4err_wrongsec., +12:u14:lookupp,, +10:u00:solves, +12:u01:opposite, +21:u03:NFS4ERR_WRONGSEC., +12:u05:LOOKUPP,, +13:u06:supports., +13:u01:direction, +9:u05:GETFH, +21:u11:nfs4err_wrongsec., +12:u13:lookupp,, +13:u14:supports., +12:u00:opposite, +21:u02:NFS4ERR_WRONGSEC., +12:u04:LOOKUPP,, +13:u05:supports., +16:u08:2.6.3.1.1.5., +13:u00:direction, +9:u04:GETFH, +21:u10:nfs4err_wrongsec., +12:u12:lookupp,, +13:u13:supports., +21:u01:NFS4ERR_WRONGSEC., +12:u03:LOOKUPP,, +13:u04:supports., +9:u03:GETFH, +12:u11:lookupp,, +13:u12:supports., +21:u00:NFS4ERR_WRONGSEC., +12:u02:LOOKUPP,, +13:u03:supports., +16:u07:2.6.3.1.1.5., +9:u02:GETFH, +22:u08:security-sensitive, +12:u10:lookupp,, +13:u11:supports., +12:u01:LOOKUPP,, +13:u02:supports., +16:u06:2.6.3.1.1.5., +9:u01:GETFH, +22:u07:security-sensitive, +13:u10:supports., +16:u14:2.6.3.1.1.5., +12:u00:LOOKUPP,, +13:u01:supports., +16:u05:2.6.3.1.1.5., +9:u00:GETFH, +22:u06:security-sensitive, +11:u08:tuples., +16:u13:2.6.3.1.1.5., +11:uI2:....../, +13:u00:supports., +16:u04:2.6.3.1.1.5., +22:u05:security-sensitive, +11:u07:tuples., +16:u12:2.6.3.1.1.5., +11:uI1:....../, +16:u03:2.6.3.1.1.5., +22:u04:security-sensitive, +11:u06:tuples., +16:u11:2.6.3.1.1.5., +11:uI0:....../, +16:u02:2.6.3.1.1.5., +22:u03:security-sensitive, +11:u05:tuples., +16:u10:2.6.3.1.1.5., +16:u01:2.6.3.1.1.5., +22:u02:security-sensitive, +11:u04:tuples., +16:u00:2.6.3.1.1.5., +22:u01:security-sensitive, +11:u03:tuples., +22:u00:security-sensitive, +11:u02:tuples., +11:u01:tuples., +11:u00:tuples., +11:u08:theory,, +11:u08:policy., +11:u07:theory,, +11:u08:flavors, +11:u06:theory,, +11:u07:policy., +11:u05:theory,, +11:u14:secinfo, +11:u06:policy., +11:u07:flavors, +11:u04:theory,, +11:u13:secinfo, +11:u14:policy., +11:u05:policy., +11:u06:flavors, +11:u03:theory,, +11:u12:secinfo, +11:u13:policy., +11:u14:flavors, +7:u22:SEC, +8:u23:SECI, +11:u04:policy., +11:u05:flavors, +20:u08:SECINFO_NO_NAME., +11:u02:theory,, +11:u11:secinfo, +11:u12:policy., +11:u13:flavors, +11:u03:policy., +11:u04:flavors, +11:u01:theory,, +11:u10:secinfo, +11:u11:policy., +11:u12:flavors, +11:u02:policy., +11:u03:flavors, +20:u07:SECINFO_NO_NAME., +11:u00:theory,, +11:u10:policy., +11:u11:flavors, +11:u01:policy., +11:u02:flavors, +20:u06:SECINFO_NO_NAME., +11:u10:flavors, +20:u14:secinfo_no_name., +11:u00:policy., +11:u01:flavors, +20:u05:SECINFO_NO_NAME., +20:u13:secinfo_no_name., +11:u00:flavors, +20:u04:SECINFO_NO_NAME., +20:u12:secinfo_no_name., +20:u03:SECINFO_NO_NAME., +20:u11:secinfo_no_name., +20:u02:SECINFO_NO_NAME., +20:u10:secinfo_no_name., +20:u01:SECINFO_NO_NAME., +16:u08:2.6.3.1.1.6., +20:u00:SECINFO_NO_NAME., +16:u07:2.6.3.1.1.6., +16:u08:2.6.3.1.1.7., +16:u06:2.6.3.1.1.6., +13:u08:"Anything, +16:u14:2.6.3.1.1.6., +16:u05:2.6.3.1.1.6., +16:u07:2.6.3.1.1.7., +9:u08:Else", +16:u13:2.6.3.1.1.6., +16:u04:2.6.3.1.1.6., +16:u06:2.6.3.1.1.7., +13:u07:"Anything, +9:u07:Else", +16:u12:2.6.3.1.1.6., +16:u14:2.6.3.1.1.7., +16:u03:2.6.3.1.1.6., +16:u05:2.6.3.1.1.7., +13:u06:"Anything, +9:u06:Else", +16:u11:2.6.3.1.1.6., +16:u13:2.6.3.1.1.7., +13:u14:"anything, +16:u02:2.6.3.1.1.6., +16:u04:2.6.3.1.1.7., +13:u05:"Anything, +13:u08:mismatch., +9:u05:Else", +16:u10:2.6.3.1.1.6., +16:u12:2.6.3.1.1.7., +13:u13:"anything, +16:u01:2.6.3.1.1.6., +16:u03:2.6.3.1.1.7., +13:u04:"Anything, +9:u04:Else", +16:u11:2.6.3.1.1.7., +13:u12:"anything, +7:u22:"An, +8:u23:"Any, +16:u00:2.6.3.1.1.6., +16:u02:2.6.3.1.1.7., +13:u03:"Anything, +13:u07:mismatch., +9:u03:Else", +13:u08:allowable, +16:u10:2.6.3.1.1.7., +13:u11:"anything, +16:u01:2.6.3.1.1.7., +13:u02:"Anything, +13:u06:mismatch., +19:u08:SECINFO_NO_NAME, +9:u02:Else", +13:u07:allowable, +13:u10:"anything, +13:u14:mismatch., +16:u00:2.6.3.1.1.7., +13:u01:"Anything, +13:u05:mismatch., +9:u01:Else", +13:u06:allowable, +10:u08:(style, +13:u13:mismatch., +13:u00:"Anything, +13:u04:mismatch., +19:u07:SECINFO_NO_NAME, +9:u00:Else", +13:u05:allowable, +10:u07:(style, +13:u12:mismatch., +7:u22:mis, +8:u23:mism, +13:u03:mismatch., +19:u06:SECINFO_NO_NAME, +13:u04:allowable, +10:u06:(style, +13:u11:mismatch., +19:u14:secinfo_no_name, +13:u02:mismatch., +19:u05:SECINFO_NO_NAME, +13:u08:component, +13:u03:allowable, +10:u05:(style, +13:u10:mismatch., +19:u13:secinfo_no_name, +13:u01:mismatch., +19:u04:SECINFO_NO_NAME, +16:u08:2.6.3.1.1.8., +13:u02:allowable, +10:u04:(style, +10:u08:name)., +19:u12:secinfo_no_name, +13:u00:mismatch., +19:u03:SECINFO_NO_NAME, +13:u07:component, +11:u08:Suppose, +13:u01:allowable, +10:u03:(style, +10:u07:name)., +19:u11:secinfo_no_name, +19:u02:SECINFO_NO_NAME, +13:u06:component, +16:u07:2.6.3.1.1.8., +13:u08:SEQUENCE,, +13:u00:allowable, +10:u02:(style, +10:u06:name)., +19:u10:secinfo_no_name, +13:u14:component, +8:uI2:,,,(, +19:u01:SECINFO_NO_NAME, +13:u05:component, +16:u06:2.6.3.1.1.8., +11:u07:Suppose, +10:u01:(style, +10:u05:name)., +13:u13:component, +16:u14:2.6.3.1.1.8., +8:uI1:,,,(, +19:u00:SECINFO_NO_NAME, +13:u04:component, +16:u05:2.6.3.1.1.8., +11:u06:Suppose, +13:u07:SEQUENCE,, +10:u00:(style, +10:u04:name)., +13:u12:component, +16:u13:2.6.3.1.1.8., +11:u14:suppose, +8:uI0:,,,(, +13:u03:component, +16:u04:2.6.3.1.1.8., +11:u05:Suppose, +13:u06:SEQUENCE,, +10:u03:name)., +17:u08:2.6.3.1.1.5),, +13:u11:component, +16:u12:2.6.3.1.1.8., +11:u13:suppose, +13:u14:sequence,, +13:u02:component, +16:u03:2.6.3.1.1.8., +11:u04:Suppose, +13:u05:SEQUENCE,, +10:u02:name)., +17:u07:2.6.3.1.1.5),, +13:u10:component, +16:u11:2.6.3.1.1.8., +11:u12:suppose, +13:u13:sequence,, +13:u01:component, +16:u02:2.6.3.1.1.8., +11:u03:Suppose, +13:u04:SEQUENCE,, +10:u01:name)., +17:u06:2.6.3.1.1.5),, +16:u10:2.6.3.1.1.8., +11:u11:suppose, +13:u12:sequence,, +7:u22:SEQ, +8:u23:SEQU, +13:u00:component, +16:u01:2.6.3.1.1.8., +11:u02:Suppose, +13:u03:SEQUENCE,, +10:u00:name)., +17:u05:2.6.3.1.1.5),, +11:u10:suppose, +13:u11:sequence,, +11:uI2:.....),, +16:u00:2.6.3.1.1.8., +11:u01:Suppose, +13:u02:SEQUENCE,, +17:u04:2.6.3.1.1.5),, +13:u10:sequence,, +11:uI1:.....),, +13:uI2:.(.....),, +11:u00:Suppose, +13:u01:SEQUENCE,, +14:u08:2.6.3.1.2., +17:u03:2.6.3.1.1.5),, +11:uI0:.....),, +13:uI1:.(.....),, +13:u00:SEQUENCE,, +17:u02:2.6.3.1.1.5),, +8:u08:LINK, +13:uI0:.(.....),, +14:u07:2.6.3.1.2., +17:u01:2.6.3.1.1.5),, +8:u07:LINK, +14:u06:2.6.3.1.2., +17:u00:2.6.3.1.1.5),, +8:u06:LINK, +16:u08:Technically,, +14:u14:2.6.3.1.2., +14:u05:2.6.3.1.2., +11:u08:rejects, +8:u05:LINK, +16:u07:Technically,, +14:u13:2.6.3.1.2., +14:u04:2.6.3.1.2., +16:u08:credentials., +8:u04:LINK, +16:u06:Technically,, +14:u12:2.6.3.1.2., +14:u03:2.6.3.1.2., +11:u07:rejects, +8:u03:LINK, +16:u05:Technically,, +14:u11:2.6.3.1.2., +14:u02:2.6.3.1.2., +11:u06:rejects, +16:u07:credentials., +8:u02:LINK, +16:u04:Technically,, +14:u10:2.6.3.1.2., +11:u14:rejects, +14:u01:2.6.3.1.2., +11:u05:rejects, +16:u06:credentials., +12:u08:intended, +8:u01:LINK, +16:u03:Technically,, +11:u13:rejects, +16:u14:credentials., +14:u00:2.6.3.1.2., +11:u04:rejects, +16:u05:credentials., +8:u00:LINK, +16:u02:Technically,, +11:u12:rejects, +16:u13:credentials., +11:u03:rejects, +16:u04:credentials., +12:u07:intended, +16:u01:Technically,, +11:u11:rejects, +16:u12:credentials., +8:u23:cred, +11:u02:rejects, +16:u03:credentials., +12:u06:intended, +16:u00:Technically,, +9:u08:PUTFH, +11:u10:rejects, +16:u11:credentials., +11:u01:rejects, +16:u02:credentials., +12:u05:intended, +9:u07:PUTFH, +7:u08:bFH, +16:u10:credentials., +11:u00:rejects, +16:u01:credentials., +12:u04:intended, +9:u06:PUTFH, +7:u07:bFH, +16:u00:credentials., +12:u03:intended, +9:u05:PUTFH, +7:u06:bFH, +13:uI2:,,,,"""",, +12:u02:intended, +9:u04:PUTFH, +7:u05:bFH, +13:uI1:,,,,"""",, +12:u01:intended, +9:u03:PUTFH, +7:u04:bFH, +13:uI0:,,,,"""",, +12:u00:intended, +9:u02:PUTFH, +7:u03:bFH, +9:u01:PUTFH, +7:u02:bFH, +8:u08:bFH., +9:u00:PUTFH, +7:u01:bFH, +9:u08:bFH's, +7:u00:bFH, +8:u07:bFH., +8:u06:bFH., +9:u07:bFH's, +12:u08:request,, +8:u14:bfh., +8:u05:bFH., +9:u06:bFH's, +10:u08:RENAME, +8:u13:bfh., +9:u14:bfh's, +8:u04:bFH., +9:u05:bFH's, +12:u07:request,, +7:u08:"c", +8:u12:bfh., +9:u13:bfh's, +6:u21:bF, +7:u22:bFH, +8:u23:bFH., +8:u03:bFH., +9:u04:bFH's, +12:u06:request,, +10:u07:RENAME, +7:u07:"c", +8:u11:bfh., +9:u12:bfh's, +12:u14:request,, +8:u23:bFH', +8:u02:bFH., +9:u03:bFH's, +12:u05:request,, +10:u06:RENAME, +7:u06:"c", +8:u10:bfh., +9:u11:bfh's, +12:u13:request,, +10:u14:rename, +8:u01:bFH., +9:u02:bFH's, +12:u04:request,, +10:u05:RENAME, +7:u05:"c", +11:u08:prevent, +9:u10:bfh's, +12:u12:request,, +10:u13:rename, +10:uI2:"""",', +8:u00:bFH., +9:u01:bFH's, +12:u03:request,, +10:u04:RENAME, +12:u08:SECINFO,, +7:u04:"c", +11:u07:prevent, +12:u11:request,, +10:u12:rename, +10:uI1:"""",', +9:u00:bFH's, +12:u02:request,, +10:u03:RENAME, +7:u03:"c", +11:u06:prevent, +12:u10:request,, +10:u11:rename, +7:u22:but, +7:u23:but, +10:uI0:"""",', +12:u01:request,, +10:u02:RENAME, +12:u07:SECINFO,, +10:u08:tuple,, +7:u02:"c", +11:u05:prevent, +10:u10:rename, +12:u00:request,, +10:u01:RENAME, +12:u06:SECINFO,, +7:u01:"c", +11:u04:prevent, +12:u14:secinfo,, +10:u00:RENAME, +12:u05:SECINFO,, +10:u07:tuple,, +7:u00:"c", +11:u03:prevent, +14:u08:situation., +12:u13:secinfo,, +6:u21:LI, +7:u22:LIN, +8:u23:LINK, +12:u04:SECINFO,, +10:u06:tuple,, +11:u02:prevent, +14:u07:situation., +12:u12:secinfo,, +10:u14:tuple,, +12:u03:SECINFO,, +10:u05:tuple,, +11:u01:prevent, +14:u06:situation., +12:u11:secinfo,, +10:u13:tuple,, +12:u02:SECINFO,, +10:u04:tuple,, +11:u00:prevent, +14:u05:situation., +12:u08:override, +12:u10:secinfo,, +10:u12:tuple,, +12:u01:SECINFO,, +10:u03:tuple,, +14:u04:situation., +12:u07:override, +10:u11:tuple,, +12:u00:SECINFO,, +10:u02:tuple,, +14:u03:situation., +12:u06:override, +10:u10:tuple,, +10:u01:tuple,, +14:u02:situation., +12:u05:override, +11:u08:arises,, +10:u00:tuple,, +14:u01:situation., +12:u04:override, +11:u07:arises,, +10:u08:future, +14:u00:situation., +12:u03:override, +11:u06:arises,, +8:u08:base, +8:u14:need, +12:u02:override, +11:u05:arises,, +8:u07:base, +12:u08:accepted, +8:u13:need, +10:u07:future, +15:u08:represented, +12:u01:override, +11:u04:arises,, +8:u06:base, +12:u07:accepted, +8:u12:need, +10:u06:future, +12:u00:override, +11:u03:arises,, +8:u05:base, +12:u06:accepted, +8:u11:need, +10:u14:future, +10:u05:future, +15:u07:represented, +11:u02:arises,, +8:u04:base, +12:u05:accepted, +8:u10:need, +10:u13:future, +10:u04:future, +15:u06:represented, +11:u01:arises,, +8:u03:base, +12:u04:accepted, +10:u12:future, +15:u14:represented, +7:u22:fut, +8:u23:futu, +10:u03:future, +15:u05:represented, +11:u00:arises,, +8:u02:base, +12:u03:accepted, +10:u11:future, +15:u13:represented, +10:u02:future, +15:u04:represented, +8:u01:base, +12:u02:accepted, +13:u08:versions., +10:u10:future, +15:u12:represented, +10:u01:future, +15:u03:represented, +8:u00:base, +12:u01:accepted, +13:u07:versions., +15:u11:represented, +10:u00:future, +15:u02:represented, +14:u08:Procedures, +12:u00:accepted, +13:u06:versions., +15:u10:represented, +15:u01:represented, +13:u05:versions., +15:u00:represented, +14:u07:Procedures, +13:u04:versions., +12:u08:maintain, +14:u06:Procedures, +13:u03:versions., +12:u07:maintain, +14:u05:Procedures, +13:u02:versions., +12:u06:maintain, +14:u04:Procedures, +15:u08:CB_COMPOUND, +13:u01:versions., +12:u05:maintain, +7:u14:add, +14:u03:Procedures, +13:u00:versions., +12:u04:maintain, +15:u08:procedures., +7:u13:add, +14:u02:Procedures, +15:u07:CB_COMPOUND, +12:u03:maintain, +15:u07:procedures., +7:u12:add, +7:u23:add, +14:u01:Procedures, +15:u06:CB_COMPOUND, +12:u02:maintain, +15:u06:procedures., +7:u11:add, +15:u14:cb_compound, +14:u00:Procedures, +15:u05:CB_COMPOUND, +12:u01:maintain, +15:u05:procedures., +7:u10:add, +15:u13:cb_compound, +15:u04:CB_COMPOUND, +12:u00:maintain, +15:u04:procedures., +15:u12:cb_compound, +6:u21:CB, +7:u22:CB_, +8:u23:CB_C, +15:u03:CB_COMPOUND, +15:u03:procedures., +15:u11:cb_compound, +15:u02:CB_COMPOUND, +15:u02:procedures., +15:u10:cb_compound, +15:u01:CB_COMPOUND, +15:u01:procedures., +15:u00:CB_COMPOUND, +15:u00:procedures., +14:u08:represents, +14:u07:represents, +14:u06:represents, +14:u14:represents, +14:u05:represents, +14:u13:represents, +14:u04:represents, +14:u08:documented, +14:u12:represents, +14:u03:represents, +14:u11:represents, +14:u02:represents, +14:u07:documented, +18:u08:per-attribute,, +14:u10:represents, +14:u01:represents, +14:u06:documented, +15:u08:XDR-encoded, +14:u14:documented, +14:u00:represents, +14:u05:documented, +18:u07:per-attribute,, +15:u07:XDR-encoded, +14:u13:documented, +14:u04:documented, +18:u06:per-attribute,, +15:u06:XDR-encoded, +7:u08:too, +14:u12:documented, +18:u14:per-attribute,, +14:u03:documented, +18:u05:per-attribute,, +15:u05:XDR-encoded, +7:u07:too, +14:u11:documented, +18:u13:per-attribute,, +8:uI2:-,-,, +14:u02:documented, +18:u04:per-attribute,, +15:u08:operation's, +15:u04:XDR-encoded, +7:u06:too, +14:u10:documented, +18:u12:per-attribute,, +8:u23:per-, +8:uI1:-,-,, +14:u01:documented, +18:u03:per-attribute,, +10:u08:Again,, +15:u03:XDR-encoded, +7:u05:too, +13:u08:arguments, +18:u11:per-attribute,, +8:uI0:-,-,, +14:u00:documented, +18:u02:per-attribute,, +15:u07:operation's, +15:u02:XDR-encoded, +7:u04:too, +13:u07:arguments, +18:u10:per-attribute,, +18:u01:per-attribute,, +15:u06:operation's, +10:u07:Again,, +15:u01:XDR-encoded, +7:u03:too, +13:u06:arguments, +15:u14:operation's, +18:u00:per-attribute,, +15:u05:operation's, +10:u06:Again,, +12:u08:version., +15:u00:XDR-encoded, +7:u02:too, +13:u05:arguments, +15:u13:operation's, +10:u14:again,, +15:u04:operation's, +10:u05:Again,, +7:u01:too, +13:u04:arguments, +15:u12:operation's, +10:u13:again,, +15:u03:operation's, +10:u04:Again,, +12:u07:version., +12:u08:version:, +7:u00:too, +13:u03:arguments, +8:u08:rule, +15:u11:operation's, +10:u12:again,, +6:u21:Ag, +7:u22:Aga, +8:u23:Agai, +15:u02:operation's, +10:u03:Again,, +12:u06:version., +13:u02:arguments, +8:u07:rule, +15:u10:operation's, +10:u11:again,, +12:u14:version., +15:u01:operation's, +10:u02:Again,, +12:u05:version., +12:u07:version:, +13:u08:GETATTR's, +13:u01:arguments, +8:u06:rule, +10:u10:again,, +12:u13:version., +15:u00:operation's, +10:u01:Again,, +12:u04:version., +12:u06:version:, +12:u08:variants, +13:u00:arguments, +8:u05:rule, +11:u08:bitmap4, +12:u12:version., +12:u14:version:, +10:u00:Again,, +12:u03:version., +12:u05:version:, +13:u07:GETATTR's, +8:u04:rule, +11:u07:bitmap4, +12:u11:version., +12:u13:version:, +12:u02:version., +12:u04:version:, +13:u06:GETATTR's, +12:u07:variants, +8:u03:rule, +11:u06:bitmap4, +12:u10:version., +12:u12:version:, +13:u14:getattr's, +6:uI2:*,, +12:u01:version., +12:u03:version:, +13:u05:GETATTR's, +12:u06:variants, +9:u08:words, +8:u02:rule, +11:u05:bitmap4, +12:u11:version:, +13:u13:getattr's, +12:u14:variants, +6:uI1:*,, +12:u00:version., +12:u02:version:, +13:u04:GETATTR's, +12:u05:variants, +8:u01:rule, +11:u04:bitmap4, +12:u10:version:, +13:u12:getattr's, +12:u13:variants, +6:u21:GE, +7:u22:GET, +8:u23:GETA, +6:uI0:*,, +12:u01:version:, +13:u03:GETATTR's, +12:u04:variants, +9:u07:words, +8:u00:rule, +11:u03:bitmap4, +13:u11:getattr's, +12:u12:variants, +12:u00:version:, +13:u02:GETATTR's, +12:u03:variants, +9:u06:words, +11:u02:bitmap4, +13:u10:getattr's, +12:u11:variants, +9:u14:words, +13:u01:GETATTR's, +12:u02:variants, +9:u05:words, +11:u01:bitmap4, +12:u10:variants, +9:u13:words, +13:u00:GETATTR's, +12:u01:variants, +9:u04:words, +11:u00:bitmap4, +9:u12:words, +10:u14:values, +8:uI2:*(*), +12:u00:variants, +9:u03:words, +15:u08:attributes., +9:u11:words, +10:u13:values, +8:uI1:*(*), +9:u02:words, +9:u10:words, +10:u12:values, +8:uI0:*(*), +9:u01:words, +15:u07:attributes., +10:u11:values, +9:u00:words, +15:u06:attributes., +10:u10:values, +15:u14:attributes., +15:u05:attributes., +10:u08:"slot", +12:u08:prevents, +15:u13:attributes., +15:u04:attributes., +12:u07:prevents, +15:u12:attributes., +15:u03:attributes., +10:u07:"slot", +12:u06:prevents, +15:u11:attributes., +15:u02:attributes., +10:u06:"slot", +12:u05:prevents, +15:u10:attributes., +10:u14:"slot", +15:u01:attributes., +10:u05:"slot", +12:u04:prevents, +10:u13:"slot", +15:u00:attributes., +10:u04:"slot", +12:u03:prevents, +10:u12:"slot", +6:u21:"s, +7:u22:"sl, +8:u23:"slo, +10:u03:"slot", +12:u02:prevents, +10:u11:"slot", +10:u02:"slot", +12:u01:prevents, +10:u10:"slot", +10:u01:"slot", +12:u00:prevents, +10:u00:"slot", +14:u08:Specifying, +14:u08:equivalent, +14:u07:Specifying, +14:u06:Specifying, +14:u07:equivalent, +14:u14:specifying, +14:u05:Specifying, +14:u06:equivalent, +14:u13:specifying, +14:u14:equivalent, +14:u04:Specifying, +14:u05:equivalent, +14:u12:specifying, +14:u13:equivalent, +14:u03:Specifying, +14:u04:equivalent, +16:u08:obsolescence, +14:u11:specifying, +14:u12:equivalent, +6:u21:eq, +7:u22:equ, +8:u23:equi, +14:u02:Specifying, +14:u03:equivalent, +16:u07:obsolescence, +14:u10:specifying, +14:u11:equivalent, +14:u01:Specifying, +14:u02:equivalent, +16:u08:implemented., +16:u06:obsolescence, +14:u10:equivalent, +14:u00:Specifying, +14:u01:equivalent, +16:u05:obsolescence, +6:u14:so, +14:u00:equivalent, +16:u07:implemented., +16:u04:obsolescence, +6:u13:so, +16:u06:implemented., +16:u03:obsolescence, +6:u12:so, +16:u14:implemented., +6:u22:so, +6:u23:so, +16:u05:implemented., +16:u02:obsolescence, +6:u11:so, +16:u13:implemented., +16:u04:implemented., +16:u08:RECOMMENDED,, +16:u01:obsolescence, +6:u10:so, +16:u12:implemented., +16:u03:implemented., +16:u00:obsolescence, +16:u11:implemented., +16:u02:implemented., +16:u07:RECOMMENDED,, +16:u10:implemented., +16:u01:implemented., +16:u06:RECOMMENDED,, +16:u14:recommended,, +16:u00:implemented., +16:u05:RECOMMENDED,, +16:u13:recommended,, +16:u04:RECOMMENDED,, +16:u12:recommended,, +16:u03:RECOMMENDED,, +13:u08:introduce, +16:u11:recommended,, +16:u02:RECOMMENDED,, +16:u10:recommended,, +16:u01:RECOMMENDED,, +13:u07:introduce, +10:u08:forces, +16:u00:RECOMMENDED,, +13:u06:introduce, +13:u14:introduce, +13:u05:introduce, +10:u07:forces, +13:u13:introduce, +13:u04:introduce, +10:u06:forces, +19:u08:infrastructural, +13:u12:introduce, +10:u14:forces, +13:u03:introduce, +10:u05:forces, +15:u08:complicates, +13:u11:introduce, +10:u13:forces, +11:u14:feature, +13:u02:introduce, +10:u04:forces, +19:u07:infrastructural, +13:u10:introduce, +10:u12:forces, +11:u13:feature, +8:u23:forc, +13:u01:introduce, +10:u03:forces, +19:u06:infrastructural, +15:u07:complicates, +10:u11:forces, +11:u12:feature, +19:u14:infrastructural, +13:u00:introduce, +10:u02:forces, +19:u05:infrastructural, +15:u06:complicates, +10:u10:forces, +11:u11:feature, +19:u13:infrastructural, +15:u14:complicates, +10:u01:forces, +19:u04:infrastructural, +15:u05:complicates, +5:u08:X, +11:u10:feature, +19:u12:infrastructural, +15:u13:complicates, +8:u23:infr, +10:u00:forces, +19:u03:infrastructural, +15:u04:complicates, +5:u07:X, +19:u11:infrastructural, +15:u12:complicates, +11:u14:similar, +19:u02:infrastructural, +15:u03:complicates, +5:u06:X, +19:u10:infrastructural, +15:u11:complicates, +11:u13:similar, +19:u01:infrastructural, +15:u02:complicates, +19:u08:identification,, +5:u05:X, +15:u10:complicates, +11:u12:similar, +8:u23:simi, +19:u00:infrastructural, +15:u01:complicates, +10:u08:itself, +5:u04:X, +11:u11:similar, +6:uI2:!., +15:u00:complicates, +19:u07:identification,, +5:u03:X, +11:u10:similar, +6:uI1:!., +19:u06:identification,, +10:u07:itself, +5:u02:X, +19:u14:identification,, +6:uI0:!., +11:uI2:.....,., +19:u05:identification,, +10:u06:itself, +5:u01:X, +19:u13:identification,, +10:u14:itself, +11:uI1:.....,., +9:uI2:,,,.., +19:u04:identification,, +10:u05:itself, +5:u00:X, +19:u12:identification,, +10:u13:itself, +11:uI0:.....,., +9:uI1:,,,.., +19:u03:identification,, +10:u04:itself, +19:u11:identification,, +10:u12:itself, +8:u23:itse, +9:uI0:,,,.., +19:u02:identification,, +10:u03:itself, +19:u10:identification,, +10:u11:itself, +19:u01:identification,, +10:u02:itself, +10:u10:itself, +19:u00:identification,, +10:u01:itself, +10:u08:2.8.1., +10:u00:itself, +10:u07:2.8.1., +14:u08:ultimately, +10:u06:2.8.1., +16:u08:predetermine, +14:u08:determined, +10:u14:2.8.1., +10:u05:2.8.1., +14:u07:ultimately, +14:u07:determined, +10:u13:2.8.1., +10:u04:2.8.1., +14:u06:ultimately, +16:u07:predetermine, +14:u08:Principals, +14:u06:determined, +10:u12:2.8.1., +14:u14:ultimately, +10:u03:2.8.1., +14:u05:ultimately, +16:u06:predetermine, +14:u05:determined, +10:u11:2.8.1., +14:u13:ultimately, +16:u14:predetermine, +10:u02:2.8.1., +14:u04:ultimately, +16:u05:predetermine, +14:u07:Principals, +14:u04:determined, +10:u10:2.8.1., +14:u12:ultimately, +16:u13:predetermine, +6:u21:ul, +7:u22:ult, +8:u23:ulti, +10:u01:2.8.1., +14:u03:ultimately, +16:u04:predetermine, +14:u06:Principals, +16:u08:owner_group,, +14:u03:determined, +14:u11:ultimately, +16:u12:predetermine, +8:u23:pred, +10:u00:2.8.1., +14:u02:ultimately, +16:u03:predetermine, +14:u05:Principals, +10:u08:2.8.2., +14:u02:determined, +8:u08:acl,, +14:u10:ultimately, +16:u11:predetermine, +14:u01:ultimately, +16:u02:predetermine, +14:u04:Principals, +16:u07:owner_group,, +14:u01:determined, +8:u07:acl,, +12:u08:Auditing, +16:u10:predetermine, +8:u23:Prin, +14:u00:ultimately, +16:u01:predetermine, +14:u03:Principals, +16:u06:owner_group,, +10:u07:2.8.2., +8:u08:sacl, +14:u00:determined, +8:u06:acl,, +12:u07:Auditing, +16:u14:owner_group,, +16:u00:predetermine, +14:u02:Principals, +16:u05:owner_group,, +10:u06:2.8.2., +8:u05:acl,, +12:u06:Auditing, +16:u13:owner_group,, +10:u14:2.8.2., +14:u01:Principals, +16:u04:owner_group,, +10:u05:2.8.2., +8:u07:sacl, +13:u08:policies., +8:u04:acl,, +12:u05:Auditing, +16:u12:owner_group,, +10:u13:2.8.2., +14:u00:Principals, +16:u03:owner_group,, +10:u04:2.8.2., +8:u06:sacl, +10:u08:2.8.3., +8:u03:acl,, +12:u04:Auditing, +16:u11:owner_group,, +10:u12:2.8.2., +8:u14:sacl, +16:u02:owner_group,, +10:u03:2.8.2., +8:u05:sacl, +13:u07:policies., +8:u02:acl,, +12:u03:Auditing, +13:u08:Intrusion, +16:u10:owner_group,, +10:u11:2.8.2., +8:u13:sacl, +16:u01:owner_group,, +10:u02:2.8.2., +8:u04:sacl, +13:u06:policies., +10:u07:2.8.3., +7:u08:acl, +8:u01:acl,, +12:u02:Auditing, +13:u07:Intrusion, +10:u10:2.8.2., +8:u12:sacl, +13:u14:policies., +7:u22:sac, +8:u23:sacl, +16:u00:owner_group,, +10:u01:2.8.2., +8:u03:sacl, +13:u05:policies., +10:u06:2.8.3., +8:u00:acl,, +12:u01:Auditing, +13:u06:Intrusion, +8:u11:sacl, +13:u13:policies., +10:u14:2.8.3., +10:u00:2.8.2., +8:u02:sacl, +13:u04:policies., +10:u05:2.8.3., +7:u07:acl, +12:u00:Auditing, +13:u05:Intrusion, +8:u10:sacl, +13:u12:policies., +10:u13:2.8.3., +8:u01:sacl, +13:u03:policies., +10:u04:2.8.3., +7:u06:acl, +11:u08:alarms., +13:u04:Intrusion, +13:u11:policies., +10:u12:2.8.3., +7:u14:acl, +8:u00:sacl, +13:u02:policies., +10:u03:2.8.3., +7:u05:acl, +13:u03:Intrusion, +13:u10:policies., +10:u11:2.8.3., +7:u13:acl, +13:u01:policies., +10:u02:2.8.3., +7:u04:acl, +11:u07:alarms., +10:u08:2.9.1., +13:u02:Intrusion, +10:u10:2.8.3., +7:u12:acl, +7:u22:acl, +7:u23:acl, +13:u00:policies., +10:u01:2.8.3., +7:u03:acl, +11:u06:alarms., +13:u01:Intrusion, +7:u11:acl, +11:u14:alarms., +10:u00:2.8.3., +7:u02:acl, +11:u05:alarms., +10:u07:2.9.1., +13:u00:Intrusion, +7:u10:acl, +11:u13:alarms., +7:u01:acl, +11:u04:alarms., +10:u06:2.9.1., +14:u08:transports, +11:u12:alarms., +10:u14:2.9.1., +7:u22:ala, +8:u23:alar, +7:u00:acl, +11:u03:alarms., +10:u05:2.9.1., +14:u07:transports, +11:u11:alarms., +10:u13:2.9.1., +11:u02:alarms., +10:u04:2.9.1., +9:u08:[37]., +14:u06:transports, +11:u10:alarms., +10:u12:2.9.1., +9:uI2:.()--, +11:u01:alarms., +10:u03:2.9.1., +14:u05:transports, +10:u11:2.9.1., +9:uI1:.()--, +11:u00:alarms., +10:u02:2.9.1., +9:u07:[37]., +14:u04:transports, +10:u10:2.9.1., +9:uI0:.()--, +10:u01:2.9.1., +9:u06:[37]., +14:u03:transports, +14:u08:simplifies, +9:u14:[37]., +10:u00:2.9.1., +9:u05:[37]., +10:u08:record, +14:u02:transports, +14:u07:simplifies, +9:u13:[37]., +9:u04:[37]., +14:u01:transports, +14:u06:simplifies, +11:u08:marking, +9:u12:[37]., +7:u22:[37, +8:u23:[37], +9:u03:[37]., +10:u07:record, +14:u00:transports, +14:u05:simplifies, +11:u07:marking, +9:u11:[37]., +9:u02:[37]., +10:u06:record, +14:u04:simplifies, +11:u06:marking, +9:u10:[37]., +10:u14:record, +9:u01:[37]., +10:u05:record, +14:u03:simplifies, +11:u05:marking, +17:u08:IETF-approved, +10:u13:record, +9:u00:[37]., +10:u04:record, +14:u02:simplifies, +11:u04:marking, +17:u07:IETF-approved, +10:u12:record, +10:u03:record, +14:u01:simplifies, +11:u03:marking, +17:u06:IETF-approved, +10:u11:record, +10:u02:record, +14:u00:simplifies, +11:u02:marking, +17:u05:IETF-approved, +10:u10:record, +10:u01:record, +11:u01:marking, +17:u04:IETF-approved, +9:u14:above, +10:u00:record, +11:u00:marking, +17:u03:IETF-approved, +9:u13:above, +17:u02:IETF-approved, +9:u12:above, +8:u23:abov, +17:u01:IETF-approved, +9:u11:above, +17:u00:IETF-approved, +9:u10:above, +11:u08:(SCTP)., +11:u07:(SCTP)., +11:u06:(SCTP)., +11:u05:(SCTP)., +11:u04:(SCTP)., +12:u08:NFSv4.1;, +11:u03:(SCTP)., +11:u02:(SCTP)., +12:u07:NFSv4.1;, +11:u01:(SCTP)., +12:u06:NFSv4.1;, +14:u08:transport., +11:u00:(SCTP)., +12:u14:nfsv4.1;, +12:u05:NFSv4.1;, +12:u13:nfsv4.1;, +8:uI2:.;,-, +12:u04:NFSv4.1;, +14:u07:transport., +14:u08:constitute, +12:u12:nfsv4.1;, +8:uI1:.;,-, +12:u03:NFSv4.1;, +14:u06:transport., +12:u11:nfsv4.1;, +14:u14:transport., +8:uI0:.;,-, +12:u02:NFSv4.1;, +14:u05:transport., +14:u07:constitute, +10:u08:2.9.2., +12:u10:nfsv4.1;, +14:u13:transport., +12:u01:NFSv4.1;, +14:u04:transport., +14:u06:constitute, +14:u12:transport., +14:u14:constitute, +12:u00:NFSv4.1;, +14:u03:transport., +14:u05:constitute, +10:u07:2.9.2., +14:u11:transport., +14:u13:constitute, +14:u02:transport., +14:u04:constitute, +10:u06:2.9.2., +12:u08:reasons:, +14:u10:transport., +14:u12:constitute, +10:u14:2.9.2., +14:u01:transport., +14:u03:constitute, +10:u05:2.9.2., +14:u11:constitute, +10:u13:2.9.2., +14:u00:transport., +14:u02:constitute, +10:u04:2.9.2., +12:u07:reasons:, +14:u10:constitute, +10:u12:2.9.2., +11:uI2:-(..,),, +14:u01:constitute, +10:u03:2.9.2., +12:u06:reasons:, +10:u11:2.9.2., +12:u14:reasons:, +11:uI1:-(..,),, +14:u00:constitute, +10:u02:2.9.2., +12:u05:reasons:, +15:u08:eliminating, +10:u10:2.9.2., +12:u13:reasons:, +11:uI0:-(..,),, +10:u01:2.9.2., +12:u04:reasons:, +12:u12:reasons:, +10:u00:2.9.2., +12:u03:reasons:, +15:u07:eliminating, +12:u11:reasons:, +12:u02:reasons:, +15:u06:eliminating, +12:u10:reasons:, +15:u14:eliminating, +12:u01:reasons:, +15:u05:eliminating, +13:u08:2.10.3.1), +15:u13:eliminating, +12:u00:reasons:, +15:u04:eliminating, +9:u08:used,, +13:u07:2.10.3.1), +15:u12:eliminating, +15:u03:eliminating, +13:u06:2.10.3.1), +15:u11:eliminating, +15:u02:eliminating, +9:u07:used,, +13:u05:2.10.3.1), +15:u10:eliminating, +9:uI2:...)., +15:u01:eliminating, +9:u06:used,, +13:u04:2.10.3.1), +9:u14:used,, +9:uI1:...)., +15:u00:eliminating, +9:u05:used,, +13:u03:2.10.3.1), +9:u13:used,, +9:uI0:...)., +9:u04:used,, +13:u02:2.10.3.1), +10:u08:retry., +9:u12:used,, +9:u03:used,, +9:u08:lower, +13:u01:2.10.3.1), +10:u07:retry., +9:u11:used,, +9:u02:used,, +13:u00:2.10.3.1), +10:u06:retry., +9:u10:used,, +9:u01:used,, +9:u07:lower, +10:u05:retry., +8:uI2:.([], +9:u00:used,, +9:u06:lower, +10:u04:retry., +14:u08:disconnect, +9:u14:lower, +8:uI1:.([], +9:u05:lower, +10:u03:retry., +14:u07:disconnect, +9:u13:lower, +8:uI0:.([], +7:uI2:.),, +9:u04:lower, +10:u02:retry., +14:u06:disconnect, +9:u12:lower, +7:u22:low, +8:u23:lowe, +7:uI1:.),, +9:u03:lower, +10:u01:retry., +14:u05:disconnect, +9:u11:lower, +6:u21:SH, +7:u22:SHO, +8:u23:SHOU, +7:uI0:.),, +9:u02:lower, +10:u00:retry., +14:u04:disconnect, +9:u10:lower, +7:u22:MAY, +7:u23:MAY, +9:u01:lower, +14:u03:disconnect, +10:uI2:(..,-,, +9:u00:lower, +14:u02:disconnect, +10:uI1:(..,-,, +14:u01:disconnect, +10:uI0:(..,-,, +14:u00:disconnect, +12:u08:oriented, +12:u07:oriented, +12:u06:oriented, +10:u08:before, +12:u05:oriented, +10:u08:reply., +12:u04:oriented, +10:u07:before, +7:u22:ori, +8:u23:orie, +12:u03:oriented, +10:u06:before, +10:u07:reply., +11:u08:replier, +10:u14:before, +12:u02:oriented, +10:u05:before, +10:u06:reply., +10:u13:before, +10:u14:reply., +12:u01:oriented, +10:u04:before, +10:u05:reply., +11:u07:replier, +9:u08:retry, +10:u12:before, +10:u13:reply., +12:u00:oriented, +10:u03:before, +10:u04:reply., +11:u06:replier, +10:u11:before, +10:u12:reply., +11:u14:replier, +10:u02:before, +10:u03:reply., +11:u05:replier, +9:u07:retry, +10:u10:before, +10:u11:reply., +11:u13:replier, +10:u01:before, +10:u02:reply., +11:u04:replier, +9:u06:retry, +14:u08:tolerating, +10:u10:reply., +11:u12:replier, +9:u14:retry, +10:u00:before, +10:u01:reply., +11:u03:replier, +9:u05:retry, +11:u11:replier, +9:u13:retry, +10:u00:reply., +11:u02:replier, +9:u04:retry, +14:u07:tolerating, +10:u08:credit, +8:u08:RDMA, +11:u10:replier, +9:u12:retry, +7:uI2:')., +11:u01:replier, +9:u03:retry, +14:u06:tolerating, +8:u08:were, +8:u07:RDMA, +9:u11:retry, +14:u14:tolerating, +7:uI1:')., +11:u00:replier, +9:u02:retry, +14:u05:tolerating, +10:u07:credit, +8:u06:RDMA, +9:u10:retry, +14:u13:tolerating, +7:uI0:')., +9:u01:retry, +14:u04:tolerating, +10:u06:credit, +8:u07:were, +13:u08:certainly, +8:u05:RDMA, +11:u08:credit., +14:u12:tolerating, +10:u14:credit, +7:u22:tol, +8:u23:tole, +9:u00:retry, +14:u03:tolerating, +10:u05:credit, +8:u06:were, +8:u04:RDMA, +11:u07:credit., +14:u11:tolerating, +10:u13:credit, +8:u14:were, +14:u02:tolerating, +10:u04:credit, +8:u05:were, +13:u07:certainly, +8:u03:RDMA, +11:u06:credit., +14:u10:tolerating, +10:u12:credit, +8:u13:were, +14:u01:tolerating, +10:u03:credit, +8:u04:were, +13:u06:certainly, +8:u02:RDMA, +11:u05:credit., +10:u11:credit, +8:u12:were, +13:u14:certainly, +7:u22:wer, +8:u23:were, +14:u00:tolerating, +10:u02:credit, +8:u03:were, +13:u05:certainly, +8:u01:RDMA, +11:u04:credit., +12:u08:consumed, +10:u10:credit, +8:u11:were, +13:u13:certainly, +10:u01:credit, +8:u02:were, +13:u04:certainly, +8:u00:RDMA, +11:u03:credit., +12:u07:consumed, +10:u08:unless, +8:u10:were, +13:u12:certainly, +7:u22:cer, +8:u23:cert, +10:u00:credit, +8:u01:were, +13:u03:certainly, +11:u02:credit., +12:u06:consumed, +10:u07:unless, +11:u08:credit,, +13:u11:certainly, +8:u00:were, +13:u02:certainly, +11:u01:credit., +12:u05:consumed, +10:u06:unless, +11:u07:credit,, +13:u10:certainly, +13:u01:certainly, +9:u08:lost,, +11:u00:credit., +12:u04:consumed, +10:u05:unless, +11:u06:credit,, +9:u08:reply, +13:u00:certainly, +12:u03:consumed, +10:u04:unless, +11:u05:credit,, +9:u07:reply, +9:u07:lost,, +12:u02:consumed, +10:u03:unless, +11:u04:credit,, +9:u06:reply, +9:u06:lost,, +12:u08:contents, +12:u01:consumed, +10:u02:unless, +11:u03:credit,, +9:u05:reply, +9:u14:lost,, +9:u05:lost,, +12:u00:consumed, +10:u01:unless, +11:u02:credit,, +9:u04:reply, +9:u13:lost,, +9:u04:lost,, +12:u07:contents, +13:u08:refreshed, +10:u00:unless, +11:u01:credit,, +9:u03:reply, +9:u12:lost,, +7:u22:los, +8:u23:lost, +9:u03:lost,, +12:u06:contents, +11:u00:credit,, +9:u02:reply, +9:u11:lost,, +12:u14:contents, +9:u02:lost,, +12:u05:contents, +13:u07:refreshed, +11:u08:active,, +9:u01:reply, +9:u10:lost,, +12:u13:contents, +9:u01:lost,, +12:u04:contents, +13:u06:refreshed, +10:u08:2.9.3., +9:u00:reply, +12:u12:contents, +13:u14:refreshed, +9:u00:lost,, +12:u03:contents, +13:u05:refreshed, +11:u07:active,, +17:u08:Historically,, +9:u08:Ports, +12:u11:contents, +13:u13:refreshed, +12:u02:contents, +13:u04:refreshed, +11:u06:active,, +10:u07:2.9.3., +14:u08:registered, +9:u07:Ports, +9:u08:NFSv3, +12:u10:contents, +13:u12:refreshed, +11:u14:active,, +8:u23:refr, +9:uI2:,...,, +12:u01:contents, +13:u03:refreshed, +11:u05:active,, +10:u06:2.9.3., +17:u07:Historically,, +9:u06:Ports, +9:u07:NFSv3, +13:u11:refreshed, +11:u13:active,, +10:u14:2.9.3., +9:uI1:,...,, +12:u00:contents, +13:u02:refreshed, +11:u04:active,, +10:u05:2.9.3., +17:u06:Historically,, +14:u07:registered, +9:u05:Ports, +9:u06:NFSv3, +13:u10:refreshed, +11:u12:active,, +10:u13:2.9.3., +17:u14:historically,, +9:uI0:,...,, +13:u01:refreshed, +11:u03:active,, +10:u04:2.9.3., +17:u05:Historically,, +14:u06:registered, +9:u04:Ports, +9:u05:NFSv3, +11:u11:active,, +10:u12:2.9.3., +17:u13:historically,, +14:u14:registered, +13:u00:refreshed, +11:u02:active,, +10:u03:2.9.3., +17:u04:Historically,, +14:u05:registered, +9:u03:Ports, +9:u04:NFSv3, +11:u10:active,, +10:u11:2.9.3., +17:u12:historically,, +14:u13:registered, +7:u22:His, +8:u23:Hist, +11:u01:active,, +10:u02:2.9.3., +17:u03:Historically,, +14:u04:registered, +9:u02:Ports, +9:u03:NFSv3, +10:u10:2.9.3., +17:u11:historically,, +14:u12:registered, +11:u00:active,, +10:u01:2.9.3., +17:u02:Historically,, +14:u03:registered, +9:u01:Ports, +9:u02:NFSv3, +17:u10:historically,, +14:u11:registered, +10:u00:2.9.3., +17:u01:Historically,, +14:u02:registered, +9:u00:Ports, +9:u01:NFSv3, +14:u10:registered, +17:u00:Historically,, +14:u01:registered, +9:u00:NFSv3, +14:u00:registered, +11:u08:2.10.1., +11:u07:2.10.1., +11:u06:2.10.1., +11:u14:2.10.1., +11:u05:2.10.1., +8:u08:lack, +8:u08:Lack, +11:u13:2.10.1., +11:u04:2.10.1., +8:u07:Lack, +11:u12:2.10.1., +14:u14:following:, +11:u03:2.10.1., +8:u07:lack, +13:u08:callbacks, +8:u06:Lack, +11:u08:Limited, +11:u11:2.10.1., +14:u13:following:, +11:u02:2.10.1., +8:u06:lack, +8:u05:Lack, +11:u07:Limited, +11:u10:2.10.1., +14:u12:following:, +8:u14:lack, +11:u01:2.10.1., +8:u05:lack, +13:u07:callbacks, +8:u04:Lack, +11:u06:Limited, +14:u11:following:, +8:u13:lack, +11:u00:2.10.1., +8:u04:lack, +13:u06:callbacks, +8:u03:Lack, +11:u05:Limited, +14:u10:following:, +8:u12:lack, +13:u14:callbacks, +7:u22:lac, +8:u23:lack, +8:u03:lack, +13:u05:callbacks, +11:u08:Through, +8:u02:Lack, +11:u04:Limited, +13:u08:Requiring, +8:u11:lack, +13:u13:callbacks, +8:u02:lack, +13:u04:callbacks, +14:u08:shortfalls, +8:u01:Lack, +11:u03:Limited, +13:u07:Requiring, +8:u10:lack, +13:u12:callbacks, +8:u01:lack, +13:u03:callbacks, +11:u07:Through, +8:u00:Lack, +11:u02:Limited, +13:u06:Requiring, +13:u11:callbacks, +8:u00:lack, +13:u02:callbacks, +11:u06:Through, +14:u07:shortfalls, +11:u01:Limited, +13:u05:Requiring, +7:u08:EOS, +13:u10:callbacks, +13:u01:callbacks, +11:u05:Through, +14:u06:shortfalls, +11:u00:Limited, +13:u04:Requiring, +7:u07:EOS, +14:u14:shortfalls, +13:u00:callbacks, +11:u04:Through, +14:u05:shortfalls, +13:u08:revisions, +13:u03:Requiring, +7:u06:EOS, +14:u13:shortfalls, +7:u22:Thr, +8:u23:Thro, +11:u03:Through, +14:u04:shortfalls, +14:u08:approaches, +13:u02:Requiring, +7:u05:EOS, +14:u12:shortfalls, +11:u02:Through, +14:u03:shortfalls, +13:u07:revisions, +13:u01:Requiring, +7:u04:EOS, +14:u11:shortfalls, +11:u01:Through, +14:u02:shortfalls, +13:u06:revisions, +14:u07:approaches, +16:u08:parallelism., +13:u00:Requiring, +7:u03:EOS, +11:u08:2.10.6,, +14:u10:shortfalls, +13:u14:revisions, +11:u00:Through, +14:u01:shortfalls, +13:u05:revisions, +14:u06:approaches, +7:u02:EOS, +11:u07:2.10.6,, +13:u13:revisions, +14:u14:approaches, +14:u00:shortfalls, +13:u04:revisions, +14:u05:approaches, +16:u07:parallelism., +7:u01:EOS, +11:u06:2.10.6,, +13:u12:revisions, +14:u13:approaches, +7:u22:rev, +8:u23:revi, +13:u03:revisions, +14:u04:approaches, +16:u06:parallelism., +7:u00:EOS, +11:u05:2.10.6,, +13:u11:revisions, +14:u12:approaches, +16:u14:parallelism., +13:u02:revisions, +14:u03:approaches, +16:u05:parallelism., +11:u04:2.10.6,, +13:u10:revisions, +14:u11:approaches, +16:u13:parallelism., +13:u01:revisions, +14:u02:approaches, +16:u04:parallelism., +11:u03:2.10.6,, +11:u08:18.34)., +14:u10:approaches, +16:u12:parallelism., +9:uI2:.(.,), +13:u00:revisions, +14:u01:approaches, +16:u03:parallelism., +14:u08:sequencing, +11:u02:2.10.6,, +11:u07:18.34)., +10:u08:caused, +16:u11:parallelism., +9:uI1:.(.,), +14:u00:approaches, +16:u02:parallelism., +11:u01:2.10.6,, +11:u06:18.34)., +10:u07:caused, +16:u10:parallelism., +9:uI0:.(.,), +16:u01:parallelism., +14:u07:sequencing, +11:u00:2.10.6,, +11:u05:18.34)., +10:u06:caused, +14:u08:2.10.6.3)., +16:u00:parallelism., +14:u06:sequencing, +11:u04:18.34)., +10:u05:caused, +14:u07:2.10.6.3)., +14:u05:sequencing, +11:u03:18.34)., +10:u04:caused, +14:u06:2.10.6.3)., +14:u04:sequencing, +11:u02:18.34)., +10:u03:caused, +14:u05:2.10.6.3)., +12:u08:2.10.5)., +14:u03:sequencing, +11:u01:18.34)., +10:u02:caused, +14:u04:2.10.6.3)., +12:u07:2.10.5)., +14:u02:sequencing, +11:u00:18.34)., +10:u01:caused, +14:u03:2.10.6.3)., +12:u06:2.10.5)., +14:u01:sequencing, +10:u00:caused, +14:u02:2.10.6.3)., +12:u05:2.10.5)., +14:u00:sequencing, +14:u01:2.10.6.3)., +12:u04:2.10.5)., +14:u00:2.10.6.3)., +12:u03:2.10.5)., +12:u02:2.10.5)., +12:u01:2.10.5)., +12:u00:2.10.5)., +7:u08:Its, +12:u08:entirely, +7:u07:Its, +10:u08:exists, +7:u06:Its, +15:u08:independent, +12:u07:entirely, +7:u05:Its, +15:u07:independent, +12:u06:entirely, +10:u07:exists, +7:u04:Its, +15:u06:independent, +12:u14:entirely, +12:u05:entirely, +10:u06:exists, +7:u03:Its, +15:u05:independent, +12:u13:entirely, +10:u14:exists, +12:u04:entirely, +10:u05:exists, +13:u08:sessions., +7:u02:Its, +15:u04:independent, +12:u12:entirely, +10:u13:exists, +12:u03:entirely, +10:u04:exists, +8:u08:ID's, +7:u01:Its, +15:u03:independent, +12:u11:entirely, +10:u12:exists, +12:u02:entirely, +10:u03:exists, +13:u07:sessions., +7:u00:Its, +15:u02:independent, +12:u08:sessions, +12:u10:entirely, +10:u11:exists, +12:u01:entirely, +10:u02:exists, +13:u06:sessions., +8:u07:ID's, +10:u08:serves, +15:u01:independent, +12:u07:sessions, +12:u08:layouts,, +10:u10:exists, +13:u14:sessions., +12:u00:entirely, +10:u01:exists, +13:u05:sessions., +8:u06:ID's, +15:u00:independent, +12:u06:sessions, +12:u07:layouts,, +13:u13:sessions., +8:u14:id's, +10:u00:exists, +13:u04:sessions., +8:u05:ID's, +10:u07:serves, +12:u05:sessions, +12:u06:layouts,, +13:u12:sessions., +8:u13:id's, +8:uI2:',,,, +13:u03:sessions., +8:u04:ID's, +10:u06:serves, +12:u04:sessions, +12:u05:layouts,, +13:u11:sessions., +8:u12:id's, +10:u14:serves, +7:u22:ID', +8:u23:ID's, +8:uI1:',,,, +8:uI2:,,.., +13:u02:sessions., +8:u03:ID's, +10:u05:serves, +12:u03:sessions, +12:u04:layouts,, +13:u10:sessions., +8:u11:id's, +10:u13:serves, +8:uI0:',,,, +8:uI1:,,.., +13:u01:sessions., +8:u02:ID's, +10:u04:serves, +11:u08:2.10.2., +12:u02:sessions, +12:u03:layouts,, +9:u08:serve, +8:u10:id's, +10:u12:serves, +8:uI0:,,.., +13:u00:sessions., +8:u01:ID's, +10:u03:serves, +12:u08:Sessions, +12:u01:sessions, +12:u02:layouts,, +9:u07:serve, +10:u11:serves, +8:u00:ID's, +10:u02:serves, +11:u07:2.10.2., +18:u08:infrastructure, +12:u00:sessions, +12:u01:layouts,, +9:u06:serve, +10:u10:serves, +10:u01:serves, +11:u06:2.10.2., +12:u07:Sessions, +12:u00:layouts,, +9:u05:serve, +11:u14:2.10.2., +10:u00:serves, +11:u05:2.10.2., +12:u06:Sessions, +18:u07:infrastructure, +8:u08:NFS., +9:u04:serve, +11:u13:2.10.2., +12:u14:sessions, +7:u22:NOT, +7:u23:NOT, +11:u04:2.10.2., +12:u05:Sessions, +18:u06:infrastructure, +9:u03:serve, +11:u12:2.10.2., +12:u13:sessions, +11:u03:2.10.2., +12:u04:Sessions, +18:u05:infrastructure, +8:u07:NFS., +13:u08:arbitrary, +9:u02:serve, +14:u08:procedure,, +11:u11:2.10.2., +12:u12:sessions, +11:u02:2.10.2., +12:u03:Sessions, +18:u04:infrastructure, +8:u06:NFS., +9:u01:serve, +14:u07:procedure,, +11:u10:2.10.2., +12:u11:sessions, +8:u14:nfs., +11:u01:2.10.2., +12:u02:Sessions, +18:u03:infrastructure, +8:u05:NFS., +13:u07:arbitrary, +10:u08:field,, +9:u00:serve, +14:u06:procedure,, +10:u08:little, +12:u10:sessions, +8:u13:nfs., +11:u00:2.10.2., +12:u01:Sessions, +18:u02:infrastructure, +8:u04:NFS., +13:u06:arbitrary, +14:u05:procedure,, +10:u07:little, +8:u12:nfs., +13:u14:arbitrary, +8:u23:NFS., +12:u00:Sessions, +18:u01:infrastructure, +8:u03:NFS., +13:u05:arbitrary, +10:u07:field,, +14:u04:procedure,, +10:u06:little, +8:u11:nfs., +13:u13:arbitrary, +18:u00:infrastructure, +8:u02:NFS., +13:u04:arbitrary, +10:u06:field,, +14:u03:procedure,, +10:u05:little, +8:u10:nfs., +13:u12:arbitrary, +10:u14:field,, +7:u22:arb, +8:u23:arbi, +8:u01:NFS., +13:u03:arbitrary, +10:u05:field,, +14:u02:procedure,, +10:u04:little, +13:u11:arbitrary, +10:u13:field,, +8:u00:NFS., +13:u02:arbitrary, +10:u04:field,, +13:u08:exception, +14:u01:procedure,, +10:u03:little, +13:u10:arbitrary, +10:u12:field,, +11:u14:expects, +13:u01:arbitrary, +10:u03:field,, +19:u08:DESTROY_SESSION, +14:u00:procedure,, +10:u02:little, +10:u11:field,, +11:u13:expects, +13:u00:arbitrary, +10:u02:field,, +13:u07:exception, +13:u08:2.10.2.1., +10:u01:little, +10:u10:field,, +11:u12:expects, +10:u01:field,, +13:u06:exception, +19:u07:DESTROY_SESSION, +10:u00:little, +12:u08:SEQUENCE, +11:u11:expects, +13:u14:exception, +10:u00:field,, +13:u05:exception, +19:u06:DESTROY_SESSION, +13:u07:2.10.2.1., +12:u07:SEQUENCE, +12:u08:NFSv4.1,, +11:u10:expects, +13:u13:exception, +19:u14:destroy_session, +13:u04:exception, +19:u05:DESTROY_SESSION, +13:u06:2.10.2.1., +12:u06:SEQUENCE, +12:u07:NFSv4.1,, +13:u12:exception, +19:u13:destroy_session, +13:u14:2.10.2.1., +8:u23:exce, +13:u03:exception, +19:u04:DESTROY_SESSION, +13:u05:2.10.2.1., +14:u08:associates, +12:u05:SEQUENCE, +12:u06:NFSv4.1,, +13:u11:exception, +19:u12:destroy_session, +13:u13:2.10.2.1., +6:u21:DE, +7:u22:DES, +8:u23:DEST, +13:u02:exception, +19:u03:DESTROY_SESSION, +13:u04:2.10.2.1., +12:u04:SEQUENCE, +12:u05:NFSv4.1,, +13:u10:exception, +19:u11:destroy_session, +13:u12:2.10.2.1., +13:u01:exception, +19:u02:DESTROY_SESSION, +13:u03:2.10.2.1., +14:u07:associates, +12:u03:SEQUENCE, +12:u04:NFSv4.1,, +12:u08:session., +19:u10:destroy_session, +13:u11:2.10.2.1., +13:u00:exception, +19:u01:DESTROY_SESSION, +13:u02:2.10.2.1., +14:u06:associates, +12:u02:SEQUENCE, +12:u03:NFSv4.1,, +12:u07:session., +13:u10:2.10.2.1., +14:u14:associates, +19:u00:DESTROY_SESSION, +13:u01:2.10.2.1., +14:u05:associates, +12:u01:SEQUENCE, +12:u02:NFSv4.1,, +12:u06:session., +14:u13:associates, +13:u00:2.10.2.1., +14:u04:associates, +12:u00:SEQUENCE, +12:u01:NFSv4.1,, +12:u05:session., +14:u12:associates, +14:u03:associates, +12:u00:NFSv4.1,, +12:u04:session., +14:u11:associates, +14:u02:associates, +12:u03:session., +14:u10:associates, +14:u01:associates, +15:u08:maintaining, +12:u02:session., +14:u00:associates, +12:u01:session., +15:u07:maintaining, +67:u08:+-----+--------------+-----------+------------+-----------+----, +12:u00:session., +15:u06:maintaining, +15:u14:maintaining, +15:u05:maintaining, +67:u07:+-----+--------------+-----------+------------+-----------+----, +13:u08:|SEQUENCE, +7:u08:tag, +15:u13:maintaining, +11:uI2:(..).-., +15:u04:maintaining, +67:u06:+-----+--------------+-----------+------------+-----------+----, +7:u07:tag, +6:u08:op, +15:u12:maintaining, +67:u14:+-----+--------------+-----------+------------+-----------+----, +11:uI1:(..).-., +15:u03:maintaining, +67:u05:+-----+--------------+-----------+------------+-----------+----, +13:u07:|SEQUENCE, +7:u06:tag, +6:u07:op, +15:u11:maintaining, +67:u13:+-----+--------------+-----------+------------+-----------+----, +11:uI0:(..).-., +61:uI2:---------------------------------------------------------, +6:uI2:57, +15:u02:maintaining, +67:u04:+-----+--------------+-----------+------------+-----------+----, +13:u06:|SEQUENCE, +7:u08:(==, +7:u05:tag, +6:u06:op, +15:u10:maintaining, +67:u12:+-----+--------------+-----------+------------+-----------+----, +13:u14:|sequence, +61:uI1:---------------------------------------------------------, +6:uI1:57, +15:u01:maintaining, +67:u03:+-----+--------------+-----------+------------+-----------+----, +13:u05:|SEQUENCE, +7:u04:tag, +6:u05:op, +6:u08:1), +67:u11:+-----+--------------+-----------+------------+-----------+----, +13:u13:|sequence, +61:uI0:---------------------------------------------------------, +6:uI0:57, +15:u00:maintaining, +67:u02:+-----+--------------+-----------+------------+-----------+----, +13:u04:|SEQUENCE, +7:u07:(==, +7:u03:tag, +6:u04:op, +6:u07:1), +13:u08:(limited), +67:u10:+-----+--------------+-----------+------------+-----------+----, +13:u12:|sequence, +7:u22:|SE, +8:u23:|SEQ, +67:u01:+-----+--------------+-----------+------------+-----------+----, +13:u03:|SEQUENCE, +7:u06:(==, +7:u02:tag, +6:u03:op, +6:u06:1), +13:u07:(limited), +13:u11:|sequence, +7:u14:(==, +67:u00:+-----+--------------+-----------+------------+-----------+----, +13:u02:|SEQUENCE, +7:u05:(==, +7:u01:tag, +6:u02:op, +6:u05:1), +13:u06:(limited), +13:u10:|sequence, +7:u13:(==, +13:u01:|SEQUENCE, +7:u04:(==, +7:u00:tag, +6:u01:op, +6:u04:1), +13:u05:(limited), +7:u12:(==, +6:u21:(=, +7:u22:(==, +7:u23:(==, +13:u00:|SEQUENCE, +7:u03:(==, +69:u08:+------------+-----+--------+-------------------------------+--//, +6:u00:op, +6:u03:1), +13:u04:(limited), +7:u11:(==, +7:u02:(==, +9:u08:|last, +6:u02:1), +13:u03:(limited), +7:u10:(==, +7:u01:(==, +69:u07:+------------+-----+--------+-------------------------------+--//, +6:u01:1), +13:u02:(limited), +10:u08:status, +7:u00:(==, +69:u06:+------------+-----+--------+-------------------------------+--//, +9:u07:|last, +34:u08://-----------------------+----, +6:u00:1), +13:u01:(limited), +10:u07:status, +69:u14:+------------+-----+--------+-------------------------------+--//, +69:u05:+------------+-----+--------+-------------------------------+--//, +9:u06:|last, +6:u08://, +13:u00:(limited), +10:u06:status, +69:u13:+------------+-----+--------+-------------------------------+--//, +9:u14:|last, +64:uI2:----------------------------------------------------------//, +69:u04:+------------+-----+--------+-------------------------------+--//, +9:u05:|last, +34:u07://-----------------------+----, +10:u05:status, +69:u12:+------------+-----+--------+-------------------------------+--//, +9:u13:|last, +64:uI1:----------------------------------------------------------//, +69:u03:+------------+-----+--------+-------------------------------+--//, +9:u04:|last, +34:u06://-----------------------+----, +6:u07://, +10:u04:status, +69:u11:+------------+-----+--------+-------------------------------+--//, +9:u12:|last, +34:u14://-----------------------+----, +6:u21:|l, +7:u22:|la, +8:u23:|las, +64:uI0:----------------------------------------------------------//, +69:u02:+------------+-----+--------+-------------------------------+--//, +9:u03:|last, +34:u05://-----------------------+----, +6:u06://, +13:u08:COMPOUND,, +10:u03:status, +69:u10:+------------+-----+--------+-------------------------------+--//, +9:u11:|last, +34:u13://-----------------------+----, +6:u14://, +33:uI2://---------------------------, +69:u01:+------------+-----+--------+-------------------------------+--//, +9:u02:|last, +34:u04://-----------------------+----, +6:u05://, +10:u02:status, +9:u10:|last, +34:u12://-----------------------+----, +6:u13://, +6:u21://, +7:u22://-, +8:u23://--, +33:uI1://---------------------------, +9:uI2://..., +69:u00:+------------+-----+--------+-------------------------------+--//, +9:u01:|last, +34:u03://-----------------------+----, +6:u04://, +13:u07:COMPOUND,, +21:u08:"callback_ident",, +10:u01:status, +34:u11://-----------------------+----, +6:u12://, +6:u22://, +6:u23://, +33:uI0://---------------------------, +9:uI1://..., +9:u00:|last, +34:u02://-----------------------+----, +6:u03://, +13:u06:COMPOUND,, +10:u00:status, +34:u10://-----------------------+----, +6:u11://, +13:u14:compound,, +9:uI0://..., +34:u01://-----------------------+----, +6:u02://, +13:u05:COMPOUND,, +21:u07:"callback_ident",, +6:u10://, +13:u13:compound,, +34:u00://-----------------------+----, +6:u01://, +13:u04:COMPOUND,, +21:u06:"callback_ident",, +13:u12:compound,, +21:u14:"callback_ident",, +6:u00://, +13:u03:COMPOUND,, +21:u05:"callback_ident",, +13:u08:2.10.2.2., +13:u11:compound,, +21:u13:"callback_ident",, +13:u02:COMPOUND,, +21:u04:"callback_ident",, +13:u10:compound,, +21:u12:"callback_ident",, +7:u22:"ca, +8:u23:"cal, +13:u01:COMPOUND,, +21:u03:"callback_ident",, +13:u07:2.10.2.2., +21:u11:"callback_ident",, +13:u00:COMPOUND,, +21:u02:"callback_ident",, +13:u06:2.10.2.2., +21:u10:"callback_ident",, +13:u14:2.10.2.2., +21:u01:"callback_ident",, +13:u05:2.10.2.2., +13:u13:2.10.2.2., +21:u00:"callback_ident",, +13:u04:2.10.2.2., +13:u12:2.10.2.2., +13:u03:2.10.2.2., +13:u11:2.10.2.2., +13:u02:2.10.2.2., +13:u10:2.10.2.2., +13:u01:2.10.2.2., +10:u08:(which, +13:u00:2.10.2.2., +10:u07:(which, +11:u08:layouts, +10:u06:(which, +11:u07:layouts, +10:u05:(which, +11:u06:layouts, +8:uI2:(,,,, +10:u04:(which, +11:u05:layouts, +8:uI1:(,,,, +10:uI2:(..))., +10:u03:(which, +11:u04:layouts, +8:uI0:(,,,, +10:uI1:(..))., +10:u02:(which, +11:u03:layouts, +14:u08:originally, +12:u14:provided, +10:uI0:(..))., +10:u08:recall, +10:u01:(which, +11:u02:layouts, +14:u07:originally, +12:u13:provided, +12:u14:callback, +10:u00:(which, +11:u01:layouts, +14:u06:originally, +12:u12:provided, +12:u13:callback, +10:u07:recall, +11:u08:discuss, +11:u00:layouts, +14:u05:originally, +12:u11:provided, +12:u12:callback, +10:u06:recall, +14:u04:originally, +12:u10:provided, +12:u11:callback, +10:u14:recall, +10:u05:recall, +11:u07:discuss, +14:u03:originally, +12:u10:callback, +10:u13:recall, +10:u04:recall, +11:u06:discuss, +14:u02:originally, +10:u12:recall, +11:u14:discuss, +8:u23:reca, +10:u03:recall, +11:u05:discuss, +14:u01:originally, +10:u11:recall, +11:u13:discuss, +10:u02:recall, +11:u04:discuss, +14:u00:originally, +10:u10:recall, +11:u12:discuss, +10:u01:recall, +11:u03:discuss, +11:u11:discuss, +10:u00:recall, +11:u02:discuss, +11:u08:2.10.3., +11:u10:discuss, +11:u01:discuss, +12:u08:Channels, +11:u00:discuss, +11:u07:2.10.3., +7:u08:ONC, +12:u07:Channels, +11:u06:2.10.3., +12:u06:Channels, +11:u14:2.10.3., +11:u05:2.10.3., +7:u07:ONC, +16:u08:backchannel., +12:u05:Channels, +11:u13:2.10.3., +11:u04:2.10.3., +7:u06:ONC, +12:u04:Channels, +11:u12:2.10.3., +7:u14:onc, +11:u03:2.10.3., +7:u05:ONC, +16:u07:backchannel., +12:u08:assigned, +12:u03:Channels, +11:u11:2.10.3., +7:u13:onc, +11:u02:2.10.3., +7:u04:ONC, +16:u06:backchannel., +12:u02:Channels, +16:u08:identifiers., +11:u10:2.10.3., +7:u12:onc, +16:u14:backchannel., +6:u21:ON, +7:u22:ONC, +7:u23:ONC, +11:u01:2.10.3., +7:u03:ONC, +16:u05:backchannel., +12:u07:assigned, +12:u01:Channels, +16:u07:identifiers., +8:u08:fore, +7:u11:onc, +16:u13:backchannel., +11:u00:2.10.3., +7:u02:ONC, +16:u04:backchannel., +12:u06:assigned, +12:u00:Channels, +16:u06:identifiers., +8:u07:fore, +7:u10:onc, +16:u12:backchannel., +12:u14:assigned, +7:u01:ONC, +16:u03:backchannel., +12:u05:assigned, +16:u05:identifiers., +8:u06:fore, +16:u11:backchannel., +12:u13:assigned, +7:u00:ONC, +16:u02:backchannel., +12:u04:assigned, +16:u04:identifiers., +8:u05:fore, +15:u08:backchannel, +16:u10:backchannel., +12:u12:assigned, +16:u01:backchannel., +12:u03:assigned, +16:u03:identifiers., +8:u04:fore, +15:u07:backchannel, +11:u08:carries, +12:u11:assigned, +16:u00:backchannel., +12:u02:assigned, +16:u02:identifiers., +8:u03:fore, +15:u06:backchannel, +11:u07:carries, +12:u10:assigned, +12:u01:assigned, +16:u01:identifiers., +8:u02:fore, +15:u05:backchannel, +11:u06:carries, +12:u00:assigned, +16:u00:identifiers., +8:u01:fore, +15:u04:backchannel, +11:u05:carries, +17:u08:backchannels., +10:u08:caches, +8:u00:fore, +15:u03:backchannel, +11:u04:carries, +17:u07:backchannels., +15:u02:backchannel, +11:u03:carries, +17:u06:backchannels., +10:u07:caches, +12:u08:retries), +15:u01:backchannel, +11:u02:carries, +17:u05:backchannels., +10:u06:caches, +13:u08:2.10.3.1., +15:u00:backchannel, +11:u01:carries, +17:u04:backchannels., +10:u14:caches, +10:u05:caches, +12:u07:retries), +11:u00:carries, +17:u03:backchannels., +15:u08:Association, +10:u13:caches, +10:u04:caches, +12:u06:retries), +13:u07:2.10.3.1., +12:u08:(whether, +17:u02:backchannels., +15:u07:Association, +10:u12:caches, +12:u14:retries), +10:u03:caches, +12:u05:retries), +13:u06:2.10.3.1., +15:u08:protocols)., +17:u01:backchannels., +15:u06:Association, +10:u11:caches, +12:u13:retries), +13:u14:2.10.3.1., +10:u02:caches, +12:u04:retries), +13:u05:2.10.3.1., +12:u07:(whether, +17:u00:backchannels., +15:u05:Association, +10:u10:caches, +12:u12:retries), +13:u13:2.10.3.1., +10:u01:caches, +12:u03:retries), +13:u04:2.10.3.1., +12:u06:(whether, +15:u07:protocols)., +15:u04:Association, +12:u11:retries), +13:u12:2.10.3.1., +12:u14:(whether, +10:u00:caches, +12:u02:retries), +13:u03:2.10.3.1., +12:u05:(whether, +15:u06:protocols)., +15:u03:Association, +12:u10:retries), +13:u11:2.10.3.1., +12:u13:(whether, +15:u14:protocols)., +12:u01:retries), +13:u02:2.10.3.1., +12:u04:(whether, +15:u05:protocols)., +15:u02:Association, +13:u10:2.10.3.1., +12:u12:(whether, +15:u13:protocols)., +12:u14:channels, +7:u22:(wh, +8:u23:(whe, +12:u00:retries), +13:u01:2.10.3.1., +12:u03:(whether, +15:u04:protocols)., +19:u08:CREATE_SESSION,, +15:u01:Association, +10:u08:18.34), +12:u11:(whether, +15:u12:protocols)., +12:u13:channels, +13:u00:2.10.3.1., +12:u02:(whether, +15:u03:protocols)., +15:u00:Association, +10:u07:18.34), +12:u10:(whether, +15:u11:protocols)., +12:u12:channels, +12:u01:(whether, +15:u02:protocols)., +19:u07:CREATE_SESSION,, +14:u08:optionally, +10:u06:18.34), +15:u10:protocols)., +12:u11:channels, +12:u00:(whether, +15:u01:protocols)., +19:u06:CREATE_SESSION,, +10:u05:18.34), +12:u10:channels, +19:u14:create_session,, +15:u00:protocols)., +19:u05:CREATE_SESSION,, +14:u07:optionally, +10:u04:18.34), +19:u13:create_session,, +19:u04:CREATE_SESSION,, +14:u06:optionally, +17:u08:automatically, +10:u03:18.34), +19:u12:create_session,, +14:u14:optionally, +19:u03:CREATE_SESSION,, +14:u05:optionally, +10:u02:18.34), +19:u11:create_session,, +14:u13:optionally, +19:u02:CREATE_SESSION,, +14:u04:optionally, +17:u07:automatically, +10:u01:18.34), +19:u10:create_session,, +14:u12:optionally, +19:u01:CREATE_SESSION,, +14:u03:optionally, +17:u06:automatically, +10:u00:18.34), +16:u08:connection's, +14:u11:optionally, +17:u14:automatically, +19:u00:CREATE_SESSION,, +14:u02:optionally, +17:u05:automatically, +18:u08:simultaneously, +16:u07:connection's, +14:u10:optionally, +17:u13:automatically, +14:u01:optionally, +17:u04:automatically, +16:u06:connection's, +17:u12:automatically, +14:u00:optionally, +17:u03:automatically, +18:u07:simultaneously, +16:u05:connection's, +17:u11:automatically, +17:u02:automatically, +18:u06:simultaneously, +16:u04:connection's, +17:u10:automatically, +18:u14:simultaneously, +17:u01:automatically, +18:u05:simultaneously, +16:u03:connection's, +18:u13:simultaneously, +17:u00:automatically, +18:u04:simultaneously, +16:u02:connection's, +18:u12:simultaneously, +18:u03:simultaneously, +16:u01:connection's, +18:u11:simultaneously, +18:u02:simultaneously, +16:u00:connection's, +18:u10:simultaneously, +18:u01:simultaneously, +18:u00:simultaneously, +8:u14:rdma, +15:u08:outstanding, +11:u08:credits, +8:u13:rdma, +11:u07:credits, +8:u12:rdma, +7:u22:RDM, +8:u23:RDMA, +15:u07:outstanding, +11:u06:credits, +8:u11:rdma, +11:uI2:(...).,, +15:u06:outstanding, +11:u05:credits, +8:u10:rdma, +15:u14:outstanding, +11:uI1:(...).,, +15:u05:outstanding, +11:u04:credits, +15:u13:outstanding, +11:uI0:(...).,, +15:u04:outstanding, +11:u03:credits, +15:u12:outstanding, +15:u03:outstanding, +11:u08:2.10.4., +11:u02:credits, +15:u11:outstanding, +15:u02:outstanding, +11:u08:Servers, +11:u01:credits, +15:u10:outstanding, +15:u01:outstanding, +11:u07:2.10.4., +11:u00:credits, +15:u00:outstanding, +11:u06:2.10.4., +11:u07:Servers, +20:u08:eir_server_scope, +11:u14:2.10.4., +11:u05:2.10.4., +11:u06:Servers, +20:u07:eir_server_scope, +11:u13:2.10.4., +11:u04:2.10.4., +11:u05:Servers, +20:u06:eir_server_scope, +11:u12:2.10.4., +10:u14:string, +11:u03:2.10.4., +11:u04:Servers, +20:u05:eir_server_scope, +11:u11:2.10.4., +10:u13:string, +11:u02:2.10.4., +11:u03:Servers, +20:u04:eir_server_scope, +11:u10:2.10.4., +10:u12:string, +9:u14:group, +11:u01:2.10.4., +11:u02:Servers, +10:u08:cases,, +20:u03:eir_server_scope, +10:u11:string, +9:u13:group, +11:u00:2.10.4., +11:u01:Servers, +13:u08:presented, +20:u02:eir_server_scope, +15:u08:identifiers, +10:u10:string, +9:u12:group, +11:u00:Servers, +10:u07:cases,, +20:u01:eir_server_scope, +15:u07:identifiers, +9:u11:group, +10:u06:cases,, +13:u07:presented, +13:u08:generated, +20:u00:eir_server_scope, +15:u06:identifiers, +9:u10:group, +10:u14:cases,, +10:u05:cases,, +13:u06:presented, +15:u05:identifiers, +10:u13:cases,, +13:u14:presented, +10:u04:cases,, +13:u05:presented, +13:u07:generated, +15:u04:identifiers, +10:u12:cases,, +13:u13:presented, +10:u03:cases,, +13:u04:presented, +13:u06:generated, +15:u03:identifiers, +10:u11:cases,, +13:u12:presented, +13:u14:generated, +10:u02:cases,, +13:u03:presented, +13:u05:generated, +15:u02:identifiers, +10:u10:cases,, +13:u11:presented, +13:u13:generated, +10:u01:cases,, +13:u02:presented, +13:u04:generated, +15:u01:identifiers, +13:u10:presented, +13:u12:generated, +10:u00:cases,, +13:u01:presented, +13:u03:generated, +15:u00:identifiers, +13:u11:generated, +13:u00:presented, +13:u02:generated, +13:u10:generated, +13:u01:generated, +13:u00:generated, +8:u08:sent, +10:u08:other., +8:u07:sent, +8:u06:sent, +10:u07:other., +8:u14:sent, +8:u05:sent, +10:u06:other., +8:u13:sent, +10:u14:other., +8:u04:sent, +10:u05:other., +9:u08:scope, +8:u12:sent, +10:u13:other., +8:u23:sent, +8:u03:sent, +10:u04:other., +9:u07:scope, +8:u11:sent, +10:u12:other., +8:u02:sent, +10:u03:other., +9:u06:scope, +8:u10:sent, +10:u11:other., +8:u01:sent, +10:u02:other., +9:u05:scope, +10:u10:other., +8:u00:sent, +10:u01:other., +9:u04:scope, +10:u00:other., +9:u03:scope, +9:u02:scope, +9:u01:scope, +9:u00:scope, +16:u08:coordination, +10:u08:space., +16:u07:coordination, +19:u08:implementation,, +16:u06:coordination, +10:u07:space., +16:u05:coordination, +10:u06:space., +19:u07:implementation,, +16:u04:coordination, +10:u14:space., +10:u05:space., +19:u06:implementation,, +16:u03:coordination, +10:u13:space., +19:u14:implementation,, +10:u04:space., +19:u05:implementation,, +16:u02:coordination, +10:u12:space., +19:u13:implementation,, +8:u23:spac, +10:u03:space., +19:u04:implementation,, +16:u01:coordination, +10:u11:space., +19:u12:implementation,, +10:u02:space., +19:u03:implementation,, +16:u00:coordination, +10:u10:space., +19:u11:implementation,, +10:u01:space., +19:u02:implementation,, +19:u10:implementation,, +10:u00:space., +19:u01:implementation,, +19:u00:implementation,, +13:u08:necessity, +14:u08:attempted,, +13:u07:necessity, +13:u06:necessity, +14:u07:attempted,, +13:u14:necessity, +13:u05:necessity, +14:u06:attempted,, +8:u08:ways, +13:u13:necessity, +14:u14:attempted,, +13:u04:necessity, +14:u05:attempted,, +13:u12:necessity, +14:u13:attempted,, +9:uI2:,...., +13:u03:necessity, +14:u04:attempted,, +8:u07:ways, +15:u08:cooperating, +13:u11:necessity, +14:u12:attempted,, +9:uI1:,...., +13:u02:necessity, +14:u03:attempted,, +8:u06:ways, +9:u08:[27]), +15:u07:cooperating, +13:u10:necessity, +14:u11:attempted,, +8:u14:ways, +9:uI0:,...., +13:u01:necessity, +14:u02:attempted,, +8:u05:ways, +12:u08:targets,, +15:u06:cooperating, +14:u10:attempted,, +8:u13:ways, +13:u00:necessity, +14:u01:attempted,, +8:u04:ways, +9:u07:[27]), +15:u05:cooperating, +8:u12:ways, +7:u22:way, +8:u23:ways, +14:u00:attempted,, +8:u03:ways, +9:u06:[27]), +12:u07:targets,, +15:u04:cooperating, +8:u11:ways, +9:u14:[27]), +11:uI2:([],[],, +8:u02:ways, +9:u05:[27]), +12:u06:targets,, +15:u03:cooperating, +8:u10:ways, +9:u13:[27]), +12:u14:targets,, +11:uI1:([],[],, +7:uI2:[]), +8:u01:ways, +9:u04:[27]), +12:u05:targets,, +14:u08:validating, +15:u02:cooperating, +9:u12:[27]), +12:u13:targets,, +6:u21:[2, +7:u22:[27, +8:u23:[27], +11:uI0:([],[],, +7:uI1:[]), +8:u00:ways, +9:u03:[27]), +12:u04:targets,, +15:u01:cooperating, +9:u11:[27]), +12:u12:targets,, +9:u14:scope, +7:u22:tar, +8:u23:targ, +7:uI0:[]), +9:u02:[27]), +12:u03:targets,, +14:u07:validating, +16:u08:fs_locations, +15:u00:cooperating, +9:u10:[27]), +12:u11:targets,, +9:u13:scope, +9:u01:[27]), +12:u02:targets,, +14:u06:validating, +12:u10:targets,, +9:u12:scope, +14:u14:validating, +7:u22:sco, +8:u23:scop, +9:u00:[27]), +12:u01:targets,, +14:u05:validating, +16:u07:fs_locations, +9:u11:scope, +14:u13:validating, +12:u00:targets,, +14:u04:validating, +16:u06:fs_locations, +9:u10:scope, +14:u12:validating, +16:u14:fs_locations, +14:u03:validating, +16:u05:fs_locations, +14:u11:validating, +16:u13:fs_locations, +14:u02:validating, +16:u04:fs_locations, +14:u10:validating, +16:u12:fs_locations, +6:u21:fs, +7:u22:fs_, +8:u23:fs_l, +14:u01:validating, +16:u03:fs_locations, +16:u11:fs_locations, +14:u00:validating, +16:u02:fs_locations, +16:u10:fs_locations, +16:u01:fs_locations, +16:u00:fs_locations, +17:u08:authenticates, +17:u07:authenticates, +17:u06:authenticates, +17:u05:authenticates, +17:u04:authenticates, +17:u03:authenticates, +12:u08:involved, +17:u02:authenticates, +12:u07:involved, +17:u01:authenticates, +12:u06:involved, +17:u00:authenticates, +12:u05:involved, +12:u04:involved, +12:u03:involved, +11:u08:2.10.5., +12:u02:involved, +12:u08:Trunking, +12:u01:involved, +11:u07:2.10.5., +12:u00:involved, +12:u07:Trunking, +11:u06:2.10.5., +12:u06:Trunking, +11:u14:2.10.5., +11:u05:2.10.5., +13:u08:trunking., +12:u05:Trunking, +11:u13:2.10.5., +12:u14:trunking, +11:u04:2.10.5., +12:u04:Trunking, +11:u12:2.10.5., +12:u13:trunking, +11:u03:2.10.5., +13:u07:trunking., +12:u03:Trunking, +11:u11:2.10.5., +12:u12:trunking, +7:u22:Tru, +8:u23:Trun, +11:u02:2.10.5., +13:u06:trunking., +12:u02:Trunking, +11:u10:2.10.5., +12:u11:trunking, +13:u14:trunking., +11:u01:2.10.5., +13:u05:trunking., +12:u01:Trunking, +12:u10:trunking, +13:u13:trunking., +11:u00:2.10.5., +13:u04:trunking., +12:u00:Trunking, +13:u12:trunking., +8:u23:trun, +13:u03:trunking., +13:u08:clustered, +13:u11:trunking., +13:u02:trunking., +13:u10:trunking., +13:u01:trunking., +13:u07:clustered, +13:u00:trunking., +13:u06:clustered, +12:u08:trunking, +13:u14:clustered, +13:u05:clustered, +12:u08:servers', +13:u13:clustered, +13:u04:clustered, +12:u07:trunking, +11:u08:below)., +12:u08:mandates, +13:u12:clustered, +7:u22:clu, +8:u23:clus, +13:u03:clustered, +12:u06:trunking, +12:u07:servers', +12:u07:mandates, +13:u11:clustered, +13:u02:clustered, +12:u05:trunking, +12:u06:servers', +11:u07:below)., +12:u06:mandates, +13:u10:clustered, +12:u14:servers', +13:u01:clustered, +12:u04:trunking, +12:u05:servers', +11:u06:below)., +12:u05:mandates, +12:u13:servers', +11:u14:below)., +6:uI2:'(, +13:u00:clustered, +12:u03:trunking, +12:u04:servers', +11:u05:below)., +14:u08:callbacks., +12:u04:mandates, +12:u12:servers', +11:u13:below)., +6:uI1:'(, +12:u02:trunking, +12:u03:servers', +11:u04:below)., +12:u03:mandates, +12:u11:servers', +11:u12:below)., +6:uI0:'(, +12:u01:trunking, +12:u02:servers', +11:u03:below)., +14:u07:callbacks., +16:u08:connections,, +12:u02:mandates, +12:u10:servers', +11:u11:below)., +15:u14:backchannel, +12:u00:trunking, +12:u01:servers', +11:u02:below)., +14:u06:callbacks., +12:u01:mandates, +11:u10:below)., +15:u13:backchannel, +14:u14:callbacks., +12:u00:servers', +11:u01:below)., +14:u05:callbacks., +16:u07:connections,, +12:u00:mandates, +15:u12:backchannel, +14:u13:callbacks., +11:u00:below)., +14:u04:callbacks., +16:u06:connections,, +11:u08:(server, +15:u11:backchannel, +14:u12:callbacks., +16:u14:connections,, +14:u03:callbacks., +16:u05:connections,, +11:u07:(server, +15:u10:backchannel, +14:u11:callbacks., +16:u13:connections,, +14:u02:callbacks., +16:u04:connections,, +11:u06:(server, +14:u10:callbacks., +16:u12:connections,, +14:u01:callbacks., +16:u03:connections,, +11:u05:(server, +16:u11:connections,, +14:u00:callbacks., +16:u02:connections,, +11:u04:(server, +16:u10:connections,, +16:u01:connections,, +10:u08:target, +11:u03:(server, +16:u00:connections,, +11:u02:(server, +10:u07:target, +11:u01:(server, +10:u06:target, +11:u00:(server, +10:u14:target, +10:u05:target, +10:u13:target, +10:u04:target, +10:u12:target, +10:u03:target, +10:u08:scope,, +10:u11:target, +10:u02:target, +10:u07:scope,, +10:u10:target, +9:uI2:(..),, +10:u01:target, +18:u08:Distinguishing, +10:u06:scope,, +9:uI1:(..),, +10:u00:target, +10:u05:scope,, +9:uI0:(..),, +18:u07:Distinguishing, +10:u04:scope,, +18:u06:Distinguishing, +16:u08:EXCHANGE_IDs, +10:u03:scope,, +10:u08:18.35), +18:u14:distinguishing, +18:u05:Distinguishing, +10:u02:scope,, +10:u07:18.35), +18:u13:distinguishing, +18:u04:Distinguishing, +16:u07:EXCHANGE_IDs, +10:u01:scope,, +10:u06:18.35), +18:u12:distinguishing, +8:u23:Dist, +18:u03:Distinguishing, +16:u06:EXCHANGE_IDs, +10:u00:scope,, +10:u05:18.35), +18:u11:distinguishing, +16:u14:exchange_ids, +18:u02:Distinguishing, +16:u05:EXCHANGE_IDs, +10:u04:18.35), +18:u10:distinguishing, +16:u13:exchange_ids, +18:u01:Distinguishing, +16:u04:EXCHANGE_IDs, +10:u03:18.35), +16:u12:exchange_ids, +18:u00:Distinguishing, +16:u03:EXCHANGE_IDs, +10:u02:18.35), +16:u11:exchange_ids, +16:u02:EXCHANGE_IDs, +10:u01:18.35), +16:u10:exchange_ids, +16:u01:EXCHANGE_IDs, +10:u00:18.35), +16:u00:EXCHANGE_IDs, +33:u08:eir_server_owner.so_major_id,, +33:u07:eir_server_owner.so_major_id,, +33:u06:eir_server_owner.so_major_id,, +17:u08:verification;, +33:u14:eir_server_owner.so_major_id,, +33:u05:eir_server_owner.so_major_id,, +17:u07:verification;, +33:u13:eir_server_owner.so_major_id,, +33:u04:eir_server_owner.so_major_id,, +17:u06:verification;, +33:u12:eir_server_owner.so_major_id,, +7:u22:eir, +8:u23:eir_, +33:u03:eir_server_owner.so_major_id,, +17:u05:verification;, +13:u08:Trunking., +33:u11:eir_server_owner.so_major_id,, +10:uI2:;...),, +33:u02:eir_server_owner.so_major_id,, +17:u04:verification;, +13:u07:Trunking., +33:u10:eir_server_owner.so_major_id,, +10:uI1:;...),, +33:u01:eir_server_owner.so_major_id,, +17:u03:verification;, +13:u06:Trunking., +33:u08:eir_server_owner.so_minor_id,, +10:uI0:;...),, +33:u00:eir_server_owner.so_major_id,, +17:u02:verification;, +13:u05:Trunking., +33:u07:eir_server_owner.so_minor_id,, +17:u01:verification;, +13:u04:Trunking., +33:u06:eir_server_owner.so_minor_id,, +17:u00:verification;, +13:u03:Trunking., +33:u05:eir_server_owner.so_minor_id,, +20:u14:eir_server_scope, +13:u02:Trunking., +33:u04:eir_server_owner.so_minor_id,, +21:u08:eir_server_scope,, +20:u13:eir_server_scope, +13:u01:Trunking., +33:u03:eir_server_owner.so_minor_id,, +21:u07:eir_server_scope,, +20:u12:eir_server_scope, +13:u00:Trunking., +33:u02:eir_server_owner.so_minor_id,, +21:u06:eir_server_scope,, +20:u11:eir_server_scope, +33:u01:eir_server_owner.so_minor_id,, +21:u05:eir_server_scope,, +20:u10:eir_server_scope, +33:u14:eir_server_owner.so_minor_id,, +13:u08:associate, +33:u00:eir_server_owner.so_minor_id,, +21:u04:eir_server_scope,, +33:u13:eir_server_owner.so_minor_id,, +6:u08:Of, +21:u03:eir_server_scope,, +33:u12:eir_server_owner.so_minor_id,, +13:u07:associate, +21:u02:eir_server_scope,, +11:u08:course,, +33:u11:eir_server_owner.so_minor_id,, +13:u06:associate, +6:u07:Of, +21:u01:eir_server_scope,, +11:u07:course,, +33:u10:eir_server_owner.so_minor_id,, +13:u14:associate, +13:u05:associate, +6:u06:Of, +21:u00:eir_server_scope,, +11:u06:course,, +13:u13:associate, +13:u04:associate, +6:u05:Of, +10:u08:choose, +11:u05:course,, +13:u12:associate, +13:u03:associate, +6:u04:Of, +11:u04:course,, +13:u11:associate, +6:u21:Of, +6:u22:Of, +6:u23:Of, +13:u02:associate, +6:u03:Of, +10:u07:choose, +11:u03:course,, +13:u10:associate, +10:u14:below., +13:u01:associate, +6:u02:Of, +10:u06:choose, +11:u02:course,, +10:u13:below., +10:u14:choose, +13:u00:associate, +6:u01:Of, +10:u05:choose, +11:u01:course,, +10:u12:below., +10:u13:choose, +6:u00:Of, +10:u04:choose, +11:u00:course,, +10:u11:below., +10:u12:choose, +8:u23:choo, +10:u03:choose, +32:u08:eir_server_owner.so_minor_id, +10:u10:below., +10:u11:choose, +10:u02:choose, +10:u10:choose, +10:u01:choose, +32:u07:eir_server_owner.so_minor_id, +10:u00:choose, +32:u06:eir_server_owner.so_minor_id, +32:u14:eir_server_owner.so_minor_id, +32:u05:eir_server_owner.so_minor_id, +32:u13:eir_server_owner.so_minor_id, +32:u04:eir_server_owner.so_minor_id, +32:u12:eir_server_owner.so_minor_id, +32:u03:eir_server_owner.so_minor_id, +32:u11:eir_server_owner.so_minor_id, +32:u02:eir_server_owner.so_minor_id, +32:u10:eir_server_owner.so_minor_id, +32:u01:eir_server_owner.so_minor_id, +32:u00:eir_server_owner.so_minor_id, +10:u08:simply, +10:u07:simply, +9:u08:doing, +12:u14:session., +10:u06:simply, +9:u07:doing, +12:u13:session., +10:u05:simply, +9:u06:doing, +12:u12:session., +10:u04:simply, +9:u05:doing, +12:u11:session., +10:u03:simply, +9:u04:doing, +12:u10:session., +10:u02:simply, +9:u03:doing, +10:u01:simply, +9:u02:doing, +10:u00:simply, +9:u01:doing, +9:u00:doing, +19:u08:reconfiguration, +11:u08:events,, +19:u07:reconfiguration, +11:u07:events,, +19:u06:reconfiguration, +11:u06:events,, +19:u14:reconfiguration, +19:u05:reconfiguration, +12:u08:indicate, +11:u05:events,, +19:u13:reconfiguration, +19:u04:reconfiguration, +11:u04:events,, +19:u12:reconfiguration, +19:u03:reconfiguration, +12:u07:indicate, +11:u03:events,, +19:u11:reconfiguration, +19:u02:reconfiguration, +12:u06:indicate, +11:u02:events,, +14:u08:guidelines, +19:u10:reconfiguration, +12:u14:indicate, +19:u01:reconfiguration, +12:u05:indicate, +11:u01:events,, +14:u07:guidelines, +12:u13:indicate, +19:u00:reconfiguration, +12:u04:indicate, +11:u00:events,, +14:u06:guidelines, +8:u08:id's, +12:u12:indicate, +12:u03:indicate, +14:u05:guidelines, +8:u07:id's, +8:u08:ids), +12:u11:indicate, +12:u02:indicate, +14:u04:guidelines, +8:u06:id's, +8:u07:ids), +12:u10:indicate, +7:u14:any, +12:u01:indicate, +14:u08:lost/stale, +14:u03:guidelines, +8:u05:id's, +8:u06:ids), +7:u13:any, +10:uI2:'(..,,, +12:u00:indicate, +15:u08:inadvertent, +14:u02:guidelines, +8:u04:id's, +8:u05:ids), +12:u08:although, +7:u12:any, +7:u22:any, +7:u23:any, +10:uI1:'(..,,, +7:uI2:),,, +14:u07:lost/stale, +14:u01:guidelines, +8:u03:id's, +8:u04:ids), +12:u07:although, +14:u08:acceptance, +7:u11:any, +10:uI0:'(..,,, +7:uI1:),,, +14:u06:lost/stale, +15:u07:inadvertent, +14:u00:guidelines, +8:u02:id's, +8:u03:ids), +12:u06:although, +14:u07:acceptance, +7:u10:any, +14:u14:lost/stale, +7:uI0:),,, +14:u05:lost/stale, +15:u06:inadvertent, +32:u08:eir_server_owner.so_major_id, +8:u01:id's, +8:u02:ids), +12:u05:although, +14:u06:acceptance, +14:u13:lost/stale, +15:u14:inadvertent, +14:u04:lost/stale, +15:u05:inadvertent, +8:u00:id's, +8:u01:ids), +12:u04:although, +14:u05:acceptance, +12:u08:changes,, +14:u12:lost/stale, +15:u13:inadvertent, +14:u03:lost/stale, +15:u04:inadvertent, +32:u07:eir_server_owner.so_major_id, +8:u00:ids), +12:u03:although, +14:u04:acceptance, +12:u07:changes,, +14:u11:lost/stale, +15:u12:inadvertent, +7:u22:ina, +8:u23:inad, +14:u02:lost/stale, +15:u03:inadvertent, +32:u06:eir_server_owner.so_major_id, +12:u02:although, +14:u03:acceptance, +12:u06:changes,, +11:u08:reclaim, +14:u10:lost/stale, +15:u11:inadvertent, +32:u14:eir_server_owner.so_major_id, +14:u01:lost/stale, +15:u02:inadvertent, +32:u05:eir_server_owner.so_major_id, +12:u01:although, +14:u02:acceptance, +12:u05:changes,, +11:u07:reclaim, +10:u08:handle, +15:u10:inadvertent, +32:u13:eir_server_owner.so_major_id, +14:u00:lost/stale, +15:u01:inadvertent, +32:u04:eir_server_owner.so_major_id, +10:u08:state., +12:u00:although, +14:u01:acceptance, +12:u04:changes,, +11:u06:reclaim, +10:u07:handle, +11:u08:proceed, +32:u12:eir_server_owner.so_major_id, +15:u00:inadvertent, +32:u03:eir_server_owner.so_major_id, +14:u00:acceptance, +12:u03:changes,, +11:u05:reclaim, +10:u06:handle, +11:u07:proceed, +32:u11:eir_server_owner.so_major_id, +32:u02:eir_server_owner.so_major_id, +10:u07:state., +9:u08:same,, +12:u02:changes,, +11:u04:reclaim, +10:u05:handle, +11:u06:proceed, +32:u10:eir_server_owner.so_major_id, +32:u01:eir_server_owner.so_major_id, +10:u06:state., +12:u01:changes,, +11:u03:reclaim, +10:u04:handle, +11:u05:proceed, +10:u14:state., +32:u00:eir_server_owner.so_major_id, +10:u05:state., +9:u07:same,, +12:u00:changes,, +11:u02:reclaim, +10:u03:handle, +11:u04:proceed, +10:u13:state., +10:u04:state., +9:u06:same,, +11:u01:reclaim, +10:u02:handle, +11:u03:proceed, +10:u12:state., +9:u14:same,, +10:u03:state., +9:u05:same,, +13:u08:2.10.5.1., +11:u00:reclaim, +10:u01:handle, +11:u02:proceed, +10:u11:state., +9:u13:same,, +10:u02:state., +9:u04:same,, +10:u00:handle, +11:u01:proceed, +13:u08:Verifying, +10:u10:state., +9:u12:same,, +10:u01:state., +9:u03:same,, +13:u07:2.10.5.1., +12:u08:matching, +11:u00:proceed, +13:u07:Verifying, +9:u11:same,, +10:u00:state., +9:u02:same,, +13:u06:2.10.5.1., +13:u06:Verifying, +9:u10:same,, +13:u14:2.10.5.1., +9:u01:same,, +13:u05:2.10.5.1., +12:u07:matching, +13:u05:Verifying, +16:u08:eir_clientid, +13:u13:2.10.5.1., +9:u00:same,, +13:u04:2.10.5.1., +12:u06:matching, +13:u04:Verifying, +16:u07:eir_clientid, +11:u08:claims., +13:u12:2.10.5.1., +12:u14:matching, +13:u03:2.10.5.1., +12:u05:matching, +13:u03:Verifying, +16:u06:eir_clientid, +11:u07:claims., +13:u11:2.10.5.1., +12:u13:matching, +13:u02:2.10.5.1., +12:u04:matching, +13:u02:Verifying, +16:u05:eir_clientid, +11:u06:claims., +13:u10:2.10.5.1., +12:u12:matching, +8:u23:matc, +13:u01:2.10.5.1., +12:u03:matching, +13:u01:Verifying, +16:u04:eir_clientid, +11:u05:claims., +12:u11:matching, +13:u00:2.10.5.1., +12:u02:matching, +13:u00:Verifying, +16:u03:eir_clientid, +11:u04:claims., +12:u10:matching, +12:u01:matching, +16:u02:eir_clientid, +11:u03:claims., +12:u00:matching, +16:u01:eir_clientid, +11:u02:claims., +16:u00:eir_clientid, +11:u01:claims., +11:u00:claims., +24:u08:BIND_CONN_TO_SESSION, +24:u07:BIND_CONN_TO_SESSION, +12:u08:SP4_SSV,, +24:u06:BIND_CONN_TO_SESSION, +8:u08:SSV), +24:u14:bind_conn_to_session, +24:u05:BIND_CONN_TO_SESSION, +12:u07:SP4_SSV,, +24:u13:bind_conn_to_session, +24:u04:BIND_CONN_TO_SESSION, +12:u06:SP4_SSV,, +8:u07:SSV), +24:u12:bind_conn_to_session, +12:u14:sp4_ssv,, +7:u22:BIN, +8:u23:BIND, +24:u03:BIND_CONN_TO_SESSION, +12:u05:SP4_SSV,, +8:u06:SSV), +24:u11:bind_conn_to_session, +12:u13:sp4_ssv,, +8:u14:ssv), +24:u02:BIND_CONN_TO_SESSION, +12:u04:SP4_SSV,, +8:u05:SSV), +24:u10:bind_conn_to_session, +12:u12:sp4_ssv,, +8:u13:ssv), +8:uI2:)(.), +24:u01:BIND_CONN_TO_SESSION, +12:u03:SP4_SSV,, +8:u04:SSV), +11:u08:SP4_SSV, +12:u11:sp4_ssv,, +8:u12:ssv), +7:u22:SSV, +8:u23:SSV), +8:uI1:)(.), +24:u00:BIND_CONN_TO_SESSION, +12:u02:SP4_SSV,, +8:u03:SSV), +11:u07:SP4_SSV, +12:u10:sp4_ssv,, +8:u11:ssv), +8:uI0:)(.), +12:u01:SP4_SSV,, +8:u02:SSV), +11:u06:SP4_SSV, +15:u08:protection,, +8:u10:ssv), +8:uI2:,.),, +12:u00:SP4_SSV,, +8:u01:SSV), +11:u05:SP4_SSV, +15:u07:protection,, +14:u14:operation,, +8:uI1:,.),, +8:u00:SSV), +11:u04:SP4_SSV, +15:u06:protection,, +14:u13:operation,, +8:uI0:,.),, +11:u03:SP4_SSV, +15:u05:protection,, +14:u12:operation,, +11:u08:attempt, +11:u02:SP4_SSV, +15:u04:protection,, +14:u11:operation,, +11:u01:SP4_SSV, +15:u03:protection,, +14:u10:operation,, +11:u07:attempt, +11:u00:SP4_SSV, +15:u02:protection,, +14:u08:arguments,, +11:u06:attempt, +14:u08:mistakenly, +15:u01:protection,, +14:u07:arguments,, +11:u14:attempt, +11:u05:attempt, +12:u08:attempt,, +15:u00:protection,, +14:u06:arguments,, +11:u13:attempt, +11:u04:attempt, +14:u07:mistakenly, +14:u05:arguments,, +11:u12:attempt, +11:u03:attempt, +14:u06:mistakenly, +12:u07:attempt,, +14:u04:arguments,, +11:u11:attempt, +14:u14:mistakenly, +11:u02:attempt, +14:u05:mistakenly, +12:u06:attempt,, +14:u03:arguments,, +11:u10:attempt, +14:u13:mistakenly, +12:u14:attempt,, +11:u01:attempt, +14:u04:mistakenly, +12:u05:attempt,, +14:u02:arguments,, +14:u12:mistakenly, +12:u13:attempt,, +8:u23:mist, +11:u00:attempt, +14:u03:mistakenly, +12:u04:attempt,, +12:u08:privacy,, +14:u01:arguments,, +14:u11:mistakenly, +12:u12:attempt,, +14:u02:mistakenly, +12:u03:attempt,, +14:u00:arguments,, +14:u10:mistakenly, +12:u11:attempt,, +14:u01:mistakenly, +12:u02:attempt,, +12:u07:privacy,, +12:u10:attempt,, +14:u00:mistakenly, +12:u01:attempt,, +12:u06:privacy,, +12:u14:privacy,, +12:u00:attempt,, +12:u05:privacy,, +12:u13:privacy,, +12:u04:privacy,, +13:u08:verifying, +12:u12:privacy,, +12:u03:privacy,, +12:u11:privacy,, +12:u02:privacy,, +13:u07:verifying, +10:u08:option, +12:u10:privacy,, +12:u01:privacy,, +13:u06:verifying, +13:u14:verifying, +12:u00:privacy,, +13:u05:verifying, +10:u07:option, +13:u13:verifying, +13:u04:verifying, +10:u06:option, +13:u12:verifying, +13:u03:verifying, +10:u05:option, +13:u11:verifying, +13:u02:verifying, +10:u04:option, +13:u10:verifying, +13:u01:verifying, +10:u03:option, +12:u08:allowed., +13:u00:verifying, +10:u02:option, +10:u01:option, +12:u07:allowed., +10:u00:option, +12:u06:allowed., +12:u14:allowed., +12:u05:allowed., +12:u13:allowed., +12:u04:allowed., +12:u12:allowed., +12:u03:allowed., +12:u11:allowed., +12:u02:allowed., +12:u10:allowed., +12:u01:allowed., +12:u00:allowed., +12:u08:SET_SSV., +13:u08:confirmed, +13:u07:confirmed, +10:u08:Later,, +12:u07:SET_SSV., +13:u06:confirmed, +10:u07:Later,, +12:u06:SET_SSV., +13:u05:confirmed, +10:u06:Later,, +12:u14:set_ssv., +12:u05:SET_SSV., +21:u08:eir_server_scope., +13:u04:confirmed, +10:u05:Later,, +12:u13:set_ssv., +12:u04:SET_SSV., +13:u03:confirmed, +10:u04:Later,, +12:u12:set_ssv., +7:u22:SET, +8:u23:SET_, +12:u03:SET_SSV., +21:u07:eir_server_scope., +13:u08:protected, +13:u02:confirmed, +10:u03:Later,, +12:u11:set_ssv., +9:u14:reply, +12:u02:SET_SSV., +21:u06:eir_server_scope., +13:u01:confirmed, +10:u02:Later,, +12:u10:set_ssv., +9:u13:reply, +21:u14:eir_server_scope., +12:u01:SET_SSV., +21:u05:eir_server_scope., +13:u07:protected, +13:u00:confirmed, +10:u01:Later,, +9:u12:reply, +21:u13:eir_server_scope., +12:u00:SET_SSV., +21:u04:eir_server_scope., +13:u06:protected, +12:u08:verifier, +10:u00:Later,, +9:u11:reply, +21:u12:eir_server_scope., +13:u14:protected, +21:u03:eir_server_scope., +13:u05:protected, +9:u10:reply, +21:u11:eir_server_scope., +13:u13:protected, +21:u02:eir_server_scope., +13:u04:protected, +12:u07:verifier, +21:u10:eir_server_scope., +13:u12:protected, +21:u01:eir_server_scope., +13:u03:protected, +12:u06:verifier, +11:u08:2.10.6., +12:u08:purposes, +13:u11:protected, +12:u14:verifier, +21:u00:eir_server_scope., +13:u02:protected, +12:u05:verifier, +12:u07:purposes, +11:u08:Exactly, +13:u10:protected, +12:u13:verifier, +13:u01:protected, +12:u04:verifier, +11:u07:2.10.6., +12:u06:purposes, +11:u07:Exactly, +12:u12:verifier, +13:u00:protected, +12:u03:verifier, +11:u06:2.10.6., +12:u05:purposes, +11:u06:Exactly, +12:u11:verifier, +11:u14:2.10.6., +12:u02:verifier, +11:u05:2.10.6., +12:u04:purposes, +11:u05:Exactly, +12:u10:verifier, +11:u13:2.10.6., +12:u01:verifier, +11:u04:2.10.6., +12:u03:purposes, +11:u04:Exactly, +11:u12:2.10.6., +12:u00:verifier, +11:u03:2.10.6., +12:u02:purposes, +11:u03:Exactly, +11:u11:2.10.6., +11:u02:2.10.6., +12:u01:purposes, +11:u02:Exactly, +9:u08:once., +11:u10:2.10.6., +11:u01:2.10.6., +12:u00:purposes, +11:u01:Exactly, +9:u07:once., +11:u00:2.10.6., +11:u00:Exactly, +9:u06:once., +16:u08:2.10.6.1.3)., +9:u05:once., +16:u07:2.10.6.1.3)., +16:u08:requirement,, +9:u04:once., +16:u06:2.10.6.1.3)., +9:u03:once., +16:u05:2.10.6.1.3)., +10:u08:divide, +10:uI2:....)., +16:u07:requirement,, +9:u02:once., +16:u04:2.10.6.1.3)., +10:u07:divide, +18:u08:Non-idempotent, +10:uI1:....)., +16:u06:requirement,, +9:u01:once., +16:u03:2.10.6.1.3)., +10:u06:divide, +18:u07:Non-idempotent, +14:u08:Idempotent, +16:u14:requirement,, +10:uI0:....)., +16:u05:requirement,, +9:u00:once., +16:u02:2.10.6.1.3)., +10:u05:divide, +18:u06:Non-idempotent, +14:u07:Idempotent, +16:u13:requirement,, +16:u04:requirement,, +16:u01:2.10.6.1.3)., +10:u04:divide, +18:u05:Non-idempotent, +14:u06:Idempotent, +16:u12:requirement,, +16:u03:requirement,, +13:u08:execution, +16:u00:2.10.6.1.3)., +10:u03:divide, +18:u04:Non-idempotent, +14:u05:Idempotent, +12:u08:executes, +16:u11:requirement,, +16:u02:requirement,, +11:u08:returns, +10:u02:divide, +18:u03:Non-idempotent, +14:u04:Idempotent, +12:u07:executes, +13:u08:succeeds,, +16:u10:requirement,, +16:u01:requirement,, +13:u07:execution, +10:u01:divide, +18:u02:Non-idempotent, +14:u03:Idempotent, +12:u06:executes, +13:u07:succeeds,, +16:u00:requirement,, +13:u06:execution, +11:u07:returns, +10:u00:divide, +18:u01:Non-idempotent, +14:u02:Idempotent, +12:u05:executes, +13:u06:succeeds,, +13:u14:execution, +13:u05:execution, +11:u06:returns, +14:u08:containing, +18:u00:Non-idempotent, +14:u01:Idempotent, +12:u04:executes, +13:u05:succeeds,, +13:u13:execution, +11:u14:returns, +13:u04:execution, +11:u05:returns, +14:u00:Idempotent, +12:u03:executes, +13:u04:succeeds,, +13:u12:execution, +11:u13:returns, +7:u22:exe, +8:u23:exec, +13:u03:execution, +11:u04:returns, +14:u07:containing, +17:u08:Nevertheless,, +12:u02:executes, +13:u03:succeeds,, +13:u11:execution, +11:u12:returns, +13:u02:execution, +11:u03:returns, +14:u06:containing, +12:u01:executes, +13:u02:succeeds,, +13:u08:enforcing, +13:u10:execution, +11:u11:returns, +14:u14:containing, +13:u01:execution, +11:u02:returns, +14:u05:containing, +17:u07:Nevertheless,, +12:u00:executes, +13:u01:succeeds,, +13:u07:enforcing, +11:u10:returns, +14:u13:containing, +13:u00:execution, +11:u01:returns, +14:u04:containing, +17:u06:Nevertheless,, +13:u00:succeeds,, +13:u06:enforcing, +14:u12:containing, +17:u14:nevertheless,, +11:u00:returns, +14:u03:containing, +17:u05:Nevertheless,, +13:u05:enforcing, +14:u11:containing, +17:u13:nevertheless,, +14:u02:containing, +17:u04:Nevertheless,, +13:u04:enforcing, +14:u10:containing, +17:u12:nevertheless,, +7:u22:Nev, +8:u23:Neve, +14:u01:containing, +17:u03:Nevertheless,, +13:u03:enforcing, +17:u11:nevertheless,, +14:u00:containing, +17:u02:Nevertheless,, +13:u02:enforcing, +17:u10:nevertheless,, +17:u01:Nevertheless,, +13:u01:enforcing, +17:u00:Nevertheless,, +11:u08:enforce, +13:u00:enforcing, +14:u08:partition., +8:u08:EOS,, +11:u07:enforce, +8:u08:Now,, +8:u07:EOS,, +11:u06:enforce, +14:u07:partition., +8:u06:EOS,, +11:u14:enforce, +11:u05:enforce, +14:u06:partition., +8:u07:Now,, +8:u05:EOS,, +11:u13:enforce, +14:u14:partition., +11:u04:enforce, +14:u05:partition., +8:u06:Now,, +8:u04:EOS,, +11:u12:enforce, +14:u13:partition., +8:u14:now,, +7:u22:enf, +8:u23:enfo, +11:u03:enforce, +14:u04:partition., +8:u05:Now,, +8:u03:EOS,, +11:u11:enforce, +14:u12:partition., +8:u13:now,, +11:u02:enforce, +14:u03:partition., +8:u04:Now,, +8:u02:EOS,, +11:u10:enforce, +14:u11:partition., +8:u12:now,, +7:u22:Now, +8:u23:Now,, +11:u01:enforce, +14:u02:partition., +8:u03:Now,, +12:u08:original, +8:u01:EOS,, +14:u10:partition., +8:u11:now,, +6:uI2:'/, +11:u00:enforce, +14:u01:partition., +8:u02:Now,, +9:u08:(thus, +8:u00:EOS,, +8:u10:now,, +6:uI1:'/, +14:u00:partition., +8:u01:Now,, +12:u07:original, +8:u14:free, +6:uI0:'/, +8:u00:Now,, +12:u06:original, +9:u07:(thus, +8:u13:free, +12:u14:original, +12:u05:original, +9:u06:(thus, +8:u12:free, +12:u13:original, +9:u14:(thus, +12:u04:original, +9:u05:(thus, +8:u11:free, +12:u12:original, +9:u13:(thus, +11:u14:written, +8:u23:orig, +12:u03:original, +9:u04:(thus, +8:u10:free, +12:u11:original, +9:u12:(thus, +11:u13:written, +7:u22:(th, +8:u23:(thu, +12:u02:original, +9:u03:(thus, +13:u08:incorrect, +12:u10:original, +9:u11:(thus, +11:u12:written, +6:u21:wr, +7:u22:wri, +8:u23:writ, +12:u01:original, +9:u02:(thus, +14:u08:idempotent, +13:u07:incorrect, +9:u10:(thus, +11:u11:written, +9:uI2:,,,.-, +12:u00:original, +9:u01:(thus, +13:u06:incorrect, +11:u10:written, +9:uI1:,,,.-, +9:u00:(thus, +14:u07:idempotent, +12:u08:persists, +13:u05:incorrect, +9:uI0:,,,.-, +14:u06:idempotent, +13:u04:incorrect, +14:u14:idempotent, +14:u05:idempotent, +12:u07:persists, +13:u03:incorrect, +14:u13:idempotent, +14:u04:idempotent, +12:u06:persists, +13:u02:incorrect, +11:u08:exists,, +14:u12:idempotent, +12:u14:persists, +8:u23:idem, +14:u03:idempotent, +12:u05:persists, +13:u01:incorrect, +11:u07:exists,, +10:u08:versus, +14:u11:idempotent, +12:u13:persists, +14:u02:idempotent, +12:u04:persists, +15:u08:Regardless,, +13:u00:incorrect, +11:u06:exists,, +10:u07:versus, +12:u08:2.10.6.5, +14:u10:idempotent, +12:u12:persists, +8:u23:pers, +14:u01:idempotent, +12:u03:persists, +12:u08:improves, +11:u05:exists,, +10:u06:versus, +12:u07:2.10.6.5, +12:u11:persists, +14:u00:idempotent, +12:u02:persists, +15:u07:Regardless,, +11:u04:exists,, +10:u05:versus, +12:u06:2.10.6.5, +14:u08:robustness, +12:u10:persists, +12:u01:persists, +15:u06:Regardless,, +12:u07:improves, +11:u03:exists,, +10:u04:versus, +12:u05:2.10.6.5, +14:u07:robustness, +15:u14:regardless,, +12:u00:persists, +15:u05:Regardless,, +12:u06:improves, +16:u08:shortcomings, +11:u02:exists,, +10:u03:versus, +12:u04:2.10.6.5, +14:u06:robustness, +15:u13:regardless,, +12:u14:improves, +15:u04:Regardless,, +12:u05:improves, +11:u01:exists,, +10:u02:versus, +12:u03:2.10.6.5, +14:u05:robustness, +15:u12:regardless,, +12:u13:improves, +15:u03:Regardless,, +12:u04:improves, +16:u07:shortcomings, +13:u08:2.10.6.1., +11:u00:exists,, +10:u01:versus, +12:u02:2.10.6.5, +14:u04:robustness, +15:u11:regardless,, +12:u12:improves, +8:u23:impr, +15:u02:Regardless,, +12:u03:improves, +16:u06:shortcomings, +10:u00:versus, +12:u01:2.10.6.5, +14:u03:robustness, +8:u08:Slot, +15:u10:regardless,, +12:u11:improves, +16:u14:shortcomings, +10:uI2:()...., +15:u01:Regardless,, +12:u02:improves, +16:u05:shortcomings, +13:u07:2.10.6.1., +12:u00:2.10.6.5, +14:u02:robustness, +8:u07:Slot, +12:u10:improves, +16:u13:shortcomings, +7:u14:how, +10:uI1:()...., +15:u00:Regardless,, +12:u01:improves, +16:u04:shortcomings, +13:u06:2.10.6.1., +12:u08:reasons., +14:u01:robustness, +8:u06:Slot, +16:u12:shortcomings, +7:u13:how, +13:u14:2.10.6.1., +10:uI0:()...., +12:u00:improves, +16:u03:shortcomings, +13:u05:2.10.6.1., +14:u00:robustness, +8:u05:Slot, +10:u08:First,, +16:u11:shortcomings, +7:u12:how, +13:u13:2.10.6.1., +7:u22:how, +7:u23:how, +16:u02:shortcomings, +13:u04:2.10.6.1., +12:u07:reasons., +8:u04:Slot, +10:u07:First,, +16:u10:shortcomings, +7:u11:how, +13:u12:2.10.6.1., +16:u01:shortcomings, +13:u03:2.10.6.1., +12:u06:reasons., +8:u03:Slot, +10:u06:First,, +7:u10:how, +13:u11:2.10.6.1., +12:u14:reasons., +16:u00:shortcomings, +13:u02:2.10.6.1., +12:u05:reasons., +13:u08:expensive, +8:u02:Slot, +10:u05:First,, +10:u08:cache,, +13:u10:2.10.6.1., +12:u13:reasons., +7:uI2:.,;, +13:u01:2.10.6.1., +12:u04:reasons., +13:u08:address)., +8:u01:Slot, +10:u04:First,, +10:u07:cache,, +8:u08:look, +12:u12:reasons., +7:uI1:.,;, +13:u00:2.10.6.1., +12:u03:reasons., +13:u07:expensive, +9:u08:index, +8:u00:Slot, +10:u03:First,, +10:u06:cache,, +8:u07:look, +12:u11:reasons., +7:uI0:.,;, +12:u02:reasons., +13:u06:expensive, +13:u07:address)., +10:u02:First,, +10:u05:cache,, +8:u06:look, +12:u10:reasons., +13:u14:expensive, +12:u01:reasons., +13:u05:expensive, +13:u06:address)., +9:u07:index, +10:u01:First,, +10:u04:cache,, +8:u05:look, +13:u13:expensive, +13:u14:address)., +12:u00:reasons., +13:u04:expensive, +13:u05:address)., +9:u06:index, +10:u00:First,, +10:u03:cache,, +8:u04:look, +13:u12:expensive, +13:u13:address)., +9:u14:index, +9:uI2:)..-,, +13:u03:expensive, +13:u04:address)., +9:u05:index, +10:u02:cache,, +8:u03:look, +13:u11:expensive, +13:u12:address)., +9:u13:index, +9:uI1:)..-,, +13:u02:expensive, +13:u03:address)., +9:u04:index, +10:u01:cache,, +8:u02:look, +13:u10:expensive, +13:u11:address)., +9:u12:index, +9:uI0:)..-,, +13:u01:expensive, +13:u02:address)., +9:u03:index, +10:u00:cache,, +8:u01:look, +13:u10:address)., +9:u11:index, +13:u00:expensive, +13:u01:address)., +9:u02:index, +8:u00:look, +9:u10:index, +13:u00:address)., +9:u01:index, +9:u00:index, +8:u08:four, +8:u07:four, +13:u08:practice,, +9:u08:(LRU), +8:u06:four, +13:u07:practice,, +9:u08:cache, +8:u05:four, +13:u06:practice,, +12:u08:approach, +9:u07:(LRU), +11:u08:bounded, +8:u04:four, +13:u05:practice,, +12:u07:approach, +9:u06:(LRU), +9:u07:cache, +8:u03:four, +13:u04:practice,, +12:u06:approach, +9:u14:(lru), +9:u05:(LRU), +9:u06:cache, +11:u07:bounded, +8:u02:four, +13:u03:practice,, +12:u05:approach, +9:u13:(lru), +9:u14:cache, +9:u04:(LRU), +9:u05:cache, +11:u06:bounded, +8:u01:four, +13:u02:practice,, +12:u04:approach, +9:u12:(lru), +9:u13:cache, +11:u14:bounded, +7:u22:(LR, +8:u23:(LRU, +9:u03:(LRU), +9:u04:cache, +11:u05:bounded, +8:u00:four, +13:u01:practice,, +12:u03:approach, +11:u08:selects, +9:u11:(lru), +9:u12:cache, +11:u13:bounded, +9:u02:(LRU), +9:u03:cache, +11:u04:bounded, +13:u00:practice,, +12:u02:approach, +11:u07:selects, +9:u10:(lru), +9:u11:cache, +11:u12:bounded, +9:u01:(LRU), +9:u02:cache, +11:u03:bounded, +12:u01:approach, +11:u06:selects, +9:u10:cache, +11:u11:bounded, +9:u00:(LRU), +9:u01:cache, +11:u02:bounded, +12:u00:approach, +11:u05:selects, +18:u08:ca_maxrequests, +11:u10:bounded, +8:uI2:..,', +9:u00:cache, +11:u01:bounded, +11:u04:selects, +18:u07:ca_maxrequests, +8:uI1:..,', +11:u00:bounded, +13:u08:requester, +11:u03:selects, +18:u06:ca_maxrequests, +8:uI0:..,', +11:u02:selects, +18:u05:ca_maxrequests, +9:uI2:-(.),, +13:u07:requester, +11:u01:selects, +18:u04:ca_maxrequests, +9:uI1:-(.),, +13:u06:requester, +11:u00:selects, +18:u03:ca_maxrequests, +8:u08:slot, +13:u14:requester, +9:uI0:-(.),, +13:u05:requester, +12:u08:unsigned, +18:u02:ca_maxrequests, +8:u07:slot, +13:u13:requester, +13:u04:requester, +7:u08:1)., +18:u01:ca_maxrequests, +8:u06:slot, +10:u08:value,, +13:u12:requester, +13:u03:requester, +12:u07:unsigned, +18:u00:ca_maxrequests, +8:u05:slot, +10:u07:value,, +13:u11:requester, +13:u02:requester, +12:u06:unsigned, +7:u07:1)., +8:u04:slot, +10:u06:value,, +13:u10:requester, +12:u14:unsigned, +13:u01:requester, +12:u05:unsigned, +7:u06:1)., +8:u03:slot, +10:u05:value,, +12:u13:unsigned, +7:u14:1)., +9:uI2:,..(-, +13:u00:requester, +12:u04:unsigned, +7:u05:1)., +15:u08:0xFFFFFFFF,, +8:u02:slot, +10:u04:value,, +12:u12:unsigned, +7:u13:1)., +7:u22:uns, +8:u23:unsi, +9:uI1:,..(-, +12:u03:unsigned, +7:u04:1)., +8:u01:slot, +10:u03:value,, +12:u11:unsigned, +7:u12:1)., +6:u21:1), +7:u22:1)., +7:u23:1)., +9:uI0:,..(-, +9:uI2:(.).,, +12:u02:unsigned, +7:u03:1)., +15:u07:0xFFFFFFFF,, +8:u00:slot, +10:u02:value,, +12:u10:unsigned, +7:u11:1)., +9:uI1:(.).,, +12:u01:unsigned, +7:u02:1)., +15:u06:0xFFFFFFFF,, +10:u01:value,, +7:u10:1)., +15:u14:0xffffffff,, +9:uI0:(.).,, +12:u00:unsigned, +7:u01:1)., +15:u05:0xFFFFFFFF,, +10:u00:value,, +15:u13:0xffffffff,, +7:u00:1)., +15:u04:0xFFFFFFFF,, +21:u08:never-before-seen, +15:u12:0xffffffff,, +13:uI2:(..,(-))., +15:u03:0xFFFFFFFF,, +10:u08:assert, +15:u11:0xffffffff,, +13:uI1:(..,(-))., +15:u02:0xFFFFFFFF,, +21:u07:never-before-seen, +15:u10:0xffffffff,, +13:uI0:(..,(-))., +15:u01:0xFFFFFFFF,, +21:u06:never-before-seen, +10:u07:assert, +21:u14:never-before-seen, +15:u00:0xFFFFFFFF,, +21:u05:never-before-seen, +10:u06:assert, +21:u13:never-before-seen, +10:u14:assert, +21:u04:never-before-seen, +10:u05:assert, +8:u08:seen, +21:u12:never-before-seen, +10:u13:assert, +7:u22:nev, +8:u23:neve, +21:u03:never-before-seen, +10:u04:assert, +8:u08:last, +8:u07:seen, +21:u11:never-before-seen, +10:u12:assert, +8:u23:asse, +21:u02:never-before-seen, +10:u03:assert, +8:u06:seen, +21:u10:never-before-seen, +10:u11:assert, +21:u01:never-before-seen, +10:u02:assert, +8:u07:last, +8:u05:seen, +7:u08:is:, +10:u10:assert, +21:u00:never-before-seen, +10:u01:assert, +8:u06:last, +8:u04:seen, +7:u07:is:, +8:u14:last, +10:u00:assert, +8:u05:last, +8:u03:seen, +7:u06:is:, +8:u13:last, +8:u04:last, +8:u02:seen, +7:u05:is:, +8:u12:last, +7:u22:las, +8:u23:last, +8:u03:last, +8:u01:seen, +7:u04:is:, +12:u08:increase, +8:u11:last, +8:u02:last, +8:u00:seen, +7:u03:is:, +12:u07:increase, +8:u10:last, +8:u01:last, +7:u02:is:, +12:u06:increase, +8:u00:last, +7:u01:is:, +12:u05:increase, +7:u00:is:, +12:u04:increase, +13:u14:currently, +12:u03:increase, +13:u13:currently, +12:u02:increase, +13:u12:currently, +12:u01:increase, +13:u11:currently, +12:u08:executed, +12:u00:increase, +13:u10:currently, +12:u07:executed, +12:u08:2.10.6.2, +12:u06:executed, +12:u07:2.10.6.2, +12:u14:executed, +12:u05:executed, +15:u08:(accounting, +12:u06:2.10.6.2, +12:u13:executed, +12:u04:executed, +9:u08:slot., +12:u05:2.10.6.2, +12:u12:executed, +11:u14:retries, +12:u03:executed, +15:u07:(accounting, +12:u04:2.10.6.2, +12:u11:executed, +11:u13:retries, +12:u02:executed, +15:u06:(accounting, +9:u07:slot., +12:u03:2.10.6.2, +12:u10:executed, +11:u12:retries, +15:u14:(accounting, +12:u01:executed, +15:u05:(accounting, +9:u06:slot., +12:u02:2.10.6.2, +11:u11:retries, +15:u13:(accounting, +9:u14:slot., +12:u00:executed, +15:u04:(accounting, +9:u05:slot., +12:u01:2.10.6.2, +11:u10:retries, +15:u12:(accounting, +9:u13:slot., +7:u22:(ac, +8:u23:(acc, +15:u03:(accounting, +9:u04:slot., +12:u00:2.10.6.2, +15:u11:(accounting, +9:u12:slot., +15:u02:(accounting, +9:u03:slot., +14:u08:misordered, +8:u08:once, +15:u10:(accounting, +9:u11:slot., +15:u01:(accounting, +9:u02:slot., +8:u07:once, +9:u10:slot., +15:u00:(accounting, +9:u01:slot., +14:u07:misordered, +17:u08:CB_SEQUENCE)., +8:u06:once, +26:u08:NFS4ERR_SEQ_MISORDERED, +9:u00:slot., +14:u06:misordered, +8:u05:once, +26:u07:NFS4ERR_SEQ_MISORDERED, +14:u14:misordered, +14:u05:misordered, +17:u07:CB_SEQUENCE)., +8:u04:once, +26:u06:NFS4ERR_SEQ_MISORDERED, +14:u13:misordered, +14:u04:misordered, +17:u06:CB_SEQUENCE)., +8:u03:once, +26:u05:NFS4ERR_SEQ_MISORDERED, +14:u12:misordered, +17:u14:cb_sequence)., +8:u23:miso, +14:u03:misordered, +17:u05:CB_SEQUENCE)., +8:u02:once, +26:u04:NFS4ERR_SEQ_MISORDERED, +14:u11:misordered, +17:u13:cb_sequence)., +14:u02:misordered, +17:u04:CB_SEQUENCE)., +8:u01:once, +26:u03:NFS4ERR_SEQ_MISORDERED, +14:u10:misordered, +17:u12:cb_sequence)., +8:u23:CB_S, +14:u01:misordered, +17:u03:CB_SEQUENCE)., +13:u08:duplicate, +8:u00:once, +26:u02:NFS4ERR_SEQ_MISORDERED, +17:u11:cb_sequence)., +14:u00:misordered, +17:u02:CB_SEQUENCE)., +26:u01:NFS4ERR_SEQ_MISORDERED, +17:u10:cb_sequence)., +17:u01:CB_SEQUENCE)., +13:u07:duplicate, +17:u08:retransmitted, +26:u00:NFS4ERR_SEQ_MISORDERED, +17:u00:CB_SEQUENCE)., +13:u06:duplicate, +13:u08:requests,, +13:u14:duplicate, +13:u05:duplicate, +17:u07:retransmitted, +13:u07:requests,, +13:u13:duplicate, +8:uI2:-),-, +13:u04:duplicate, +17:u06:retransmitted, +13:u06:requests,, +12:u08:further., +13:u12:duplicate, +17:u14:retransmitted, +8:uI1:-),-, +13:u03:duplicate, +17:u05:retransmitted, +13:u05:requests,, +12:u07:further., +13:u11:duplicate, +17:u13:retransmitted, +8:uI0:-),-, +13:u02:duplicate, +17:u04:retransmitted, +13:u04:requests,, +12:u06:further., +13:u10:duplicate, +17:u12:retransmitted, +13:u01:duplicate, +17:u03:retransmitted, +13:u08:replier's, +13:u03:requests,, +12:u05:further., +17:u11:retransmitted, +13:u00:duplicate, +17:u02:retransmitted, +13:u02:requests,, +12:u04:further., +17:u10:retransmitted, +17:u01:retransmitted, +13:u07:replier's, +16:u08:reassignment, +13:u01:requests,, +12:u03:further., +12:u08:portable, +17:u00:retransmitted, +13:u06:replier's, +13:u00:requests,, +12:u02:further., +12:u07:portable, +13:u14:replier's, +13:u05:replier's, +16:u07:reassignment, +12:u01:further., +12:u06:portable, +13:u13:replier's, +8:u23:trad, +13:u04:replier's, +16:u06:reassignment, +14:u08:requester., +12:u00:further., +12:u05:portable, +13:u12:replier's, +16:u14:reassignment, +13:u03:replier's, +16:u05:reassignment, +12:u04:portable, +13:u11:replier's, +16:u13:reassignment, +13:u02:replier's, +16:u04:reassignment, +14:u07:requester., +12:u03:portable, +13:u10:replier's, +16:u12:reassignment, +14:u14:robustness, +13:u01:replier's, +16:u03:reassignment, +14:u06:requester., +12:u02:portable, +7:u08:XID, +16:u11:reassignment, +14:u13:robustness, +14:u14:requester., +13:u00:replier's, +16:u02:reassignment, +14:u05:requester., +12:u01:portable, +7:u07:XID, +16:u10:reassignment, +14:u12:robustness, +14:u13:requester., +12:u14:purposes, +7:u22:rob, +8:u23:robu, +16:u01:reassignment, +14:u04:requester., +12:u00:portable, +7:u06:XID, +14:u11:robustness, +14:u12:requester., +12:u13:purposes, +16:u00:reassignment, +14:u03:requester., +7:u05:XID, +14:u10:robustness, +14:u11:requester., +12:u12:purposes, +14:u02:requester., +7:u04:XID, +14:u10:requester., +12:u11:purposes, +14:u01:requester., +7:u03:XID, +12:u10:purposes, +14:u00:requester., +7:u02:XID, +7:u01:XID, +7:u00:XID, +15:u08:CB_SEQUENCE, +15:u07:CB_SEQUENCE, +15:u06:CB_SEQUENCE, +15:u14:cb_sequence, +15:u05:CB_SEQUENCE, +15:u13:cb_sequence, +15:u04:CB_SEQUENCE, +7:u08:so,, +15:u12:cb_sequence, +15:u03:CB_SEQUENCE, +15:u11:cb_sequence, +10:uI2:(..,),, +15:u02:CB_SEQUENCE, +7:u07:so,, +15:u10:cb_sequence, +10:uI1:(..,),, +15:u01:CB_SEQUENCE, +7:u06:so,, +7:u14:so,, +10:uI0:(..,),, +15:u00:CB_SEQUENCE, +7:u05:so,, +7:u13:so,, +9:uI2:,,,(), +7:u04:so,, +13:u08:question:, +7:u12:so,, +7:u22:so,, +7:u23:so,, +9:uI1:,,,(), +7:u03:so,, +13:u07:question:, +7:u11:so,, +9:uI0:,,,(), +7:u02:so,, +13:u06:question:, +7:u10:so,, +7:u01:so,, +13:u05:question:, +7:u14:id,, +7:u00:so,, +13:u04:question:, +7:u13:id,, +7:uI2:,,?, +13:u03:question:, +7:u12:id,, +7:u22:ID,, +7:u23:ID,, +7:uI1:,,?, +13:u02:question:, +7:u11:id,, +7:uI0:,,?, +13:u01:question:, +7:u10:id,, +13:u00:question:, +11:u08:belongs, +11:u07:belongs, +20:u08:"highest_slotid", +9:uI2:[];,,, +11:u06:belongs, +11:u14:belongs, +9:uI1:[];,,, +11:u05:belongs, +20:u07:"highest_slotid", +11:u13:belongs, +9:uI0:[];,,, +11:u04:belongs, +20:u06:"highest_slotid", +11:u12:belongs, +20:u14:"highest_slotid", +11:u03:belongs, +20:u05:"highest_slotid", +16:u08:conservative, +11:u11:belongs, +20:u13:"highest_slotid", +16:u14:information., +11:u02:belongs, +20:u04:"highest_slotid", +11:u10:belongs, +20:u12:"highest_slotid", +16:u13:information., +7:u22:"hi, +8:u23:"hig, +11:u01:belongs, +20:u03:"highest_slotid", +16:u07:conservative, +20:u11:"highest_slotid", +16:u12:information., +11:u00:belongs, +20:u02:"highest_slotid", +16:u06:conservative, +10:u08:level., +20:u10:"highest_slotid", +16:u11:information., +16:u14:conservative, +20:u01:"highest_slotid", +16:u05:conservative, +10:u07:level., +9:u08:slots, +16:u10:information., +16:u13:conservative, +20:u00:"highest_slotid", +16:u04:conservative, +10:u06:level., +9:u07:slots, +16:u12:conservative, +16:u03:conservative, +12:u08:enforced, +10:u05:level., +9:u06:slots, +16:u11:conservative, +16:u02:conservative, +10:u04:level., +9:u05:slots, +19:u08:highest_slotid,, +16:u10:conservative, +16:u01:conservative, +12:u07:enforced, +18:u08:highest_slotid, +10:u03:level., +9:u04:slots, +19:u07:highest_slotid,, +16:u00:conservative, +12:u06:enforced, +11:u08:permits, +10:u02:level., +9:u03:slots, +19:u06:highest_slotid,, +12:u14:enforced, +12:u05:enforced, +18:u07:highest_slotid, +10:u01:level., +9:u02:slots, +19:u05:highest_slotid,, +12:u13:enforced, +12:u04:enforced, +18:u06:highest_slotid, +11:u07:permits, +10:u00:level., +9:u01:slots, +19:u04:highest_slotid,, +12:u12:enforced, +18:u14:highest_slotid, +12:u03:enforced, +18:u05:highest_slotid, +11:u06:permits, +9:u00:slots, +19:u03:highest_slotid,, +10:u08:fairly, +12:u11:enforced, +18:u13:highest_slotid, +11:u14:permits, +12:u02:enforced, +18:u04:highest_slotid, +11:u05:permits, +19:u02:highest_slotid,, +10:u07:fairly, +15:u08:requesters., +12:u10:enforced, +18:u12:highest_slotid, +11:u13:permits, +12:u01:enforced, +18:u03:highest_slotid, +11:u04:permits, +19:u01:highest_slotid,, +10:u06:fairly, +15:u07:requesters., +18:u11:highest_slotid, +11:u12:permits, +12:u00:enforced, +18:u02:highest_slotid, +11:u03:permits, +19:u00:highest_slotid,, +10:u05:fairly, +15:u06:requesters., +10:u08:limits, +18:u10:highest_slotid, +11:u11:permits, +18:u01:highest_slotid, +11:u02:permits, +10:u04:fairly, +15:u05:requesters., +10:u07:limits, +11:u10:permits, +18:u00:highest_slotid, +11:u01:permits, +10:u03:fairly, +15:u04:requesters., +10:u06:limits, +11:u00:permits, +10:u02:fairly, +15:u03:requesters., +10:u05:limits, +10:u01:fairly, +15:u02:requesters., +10:u04:limits, +10:u00:fairly, +15:u01:requesters., +10:u03:limits, +15:u00:requesters., +10:u02:limits, +10:u08:active, +10:u01:limits, +10:u00:limits, +10:u07:active, +10:u06:active, +10:u14:active, +10:u05:active, +10:u13:active, +10:u04:active, +10:u12:active, +10:u03:active, +10:u11:active, +10:u02:active, +10:u10:active, +10:u01:active, +10:u00:active, +12:u08:argument, +12:u07:argument, +13:u08:continues, +12:u06:argument, +13:u07:continues, +19:u08:highest_slotid., +12:u05:argument, +13:u06:continues, +12:u04:argument, +13:u05:continues, +19:u07:highest_slotid., +12:u03:argument, +13:u04:continues, +19:u06:highest_slotid., +12:u02:argument, +13:u03:continues, +19:u14:highest_slotid., +19:u05:highest_slotid., +11:u08:action,, +12:u01:argument, +13:u02:continues, +19:u13:highest_slotid., +19:u04:highest_slotid., +12:u00:argument, +13:u01:continues, +19:u12:highest_slotid., +19:u03:highest_slotid., +11:u07:action,, +13:u00:continues, +19:u11:highest_slotid., +19:u02:highest_slotid., +11:u06:action,, +19:u10:highest_slotid., +11:u14:action,, +19:u01:highest_slotid., +11:u05:action,, +11:u13:action,, +8:u14:less, +19:u00:highest_slotid., +11:u04:action,, +11:u12:action,, +8:u13:less, +11:u03:action,, +11:u11:action,, +8:u12:less, +7:u22:les, +8:u23:less, +11:u02:action,, +11:u10:action,, +8:u11:less, +11:u01:action,, +8:u10:less, +11:u00:action,, +13:u08:non-retry, +13:u07:non-retry, +13:u06:non-retry, +13:u14:non-retry, +13:u05:non-retry, +13:u13:non-retry, +6:uI2:-', +13:u04:non-retry, +13:u12:non-retry, +6:uI1:-', +13:u03:non-retry, +13:u11:non-retry, +6:uI0:-', +13:u02:non-retry, +13:u10:non-retry, +13:u01:non-retry, +13:u00:non-retry, +8:u14:slot, +8:u13:slot, +14:u14:indicating, +8:u12:slot, +14:u13:indicating, +8:u11:slot, +14:u12:indicating, +8:u10:slot, +14:u11:indicating, +14:u10:indicating, +11:u08:faster., +11:u08:receipt, +11:u07:faster., +11:u06:faster., +11:u07:receipt, +11:u05:faster., +11:u06:receipt, +11:u04:faster., +11:u14:receipt, +11:u05:receipt, +11:u03:faster., +11:u13:receipt, +11:u04:receipt, +11:u02:faster., +11:u12:receipt, +11:u03:receipt, +11:u01:faster., +11:u11:receipt, +11:u02:receipt, +16:u08:outstanding,, +11:u00:faster., +11:u10:receipt, +11:u01:receipt, +11:u00:receipt, +16:u07:outstanding,, +9:u08:infer, +16:u06:outstanding,, +16:u14:outstanding,, +16:u05:outstanding,, +9:u07:infer, +16:u13:outstanding,, +16:u04:outstanding,, +9:u06:infer, +15:u08:2.10.6.1.1., +16:u12:outstanding,, +9:u14:infer, +16:u03:outstanding,, +9:u05:infer, +11:u08:Caching, +16:u11:outstanding,, +9:u13:infer, +16:u02:outstanding,, +9:u04:infer, +15:u07:2.10.6.1.1., +11:u07:Caching, +16:u10:outstanding,, +9:u12:infer, +8:u23:infe, +16:u01:outstanding,, +9:u03:infer, +15:u06:2.10.6.1.1., +11:u06:Caching, +9:u11:infer, +15:u14:2.10.6.1.1., +16:u00:outstanding,, +9:u02:infer, +15:u05:2.10.6.1.1., +11:u05:Caching, +9:u10:infer, +15:u13:2.10.6.1.1., +9:u01:infer, +15:u04:2.10.6.1.1., +11:u04:Caching, +15:u12:2.10.6.1.1., +9:u00:infer, +15:u03:2.10.6.1.1., +14:u08:re-compute, +11:u03:Caching, +15:u11:2.10.6.1.1., +15:u02:2.10.6.1.1., +11:u02:Caching, +15:u10:2.10.6.1.1., +15:u01:2.10.6.1.1., +14:u07:re-compute, +11:u01:Caching, +15:u00:2.10.6.1.1., +14:u06:re-compute, +11:u00:Caching, +14:u14:re-compute, +14:u05:re-compute, +14:u13:re-compute, +14:u04:re-compute, +14:u12:re-compute, +8:u23:re-c, +8:uI2:,/.,, +14:u03:re-compute, +14:u11:re-compute, +8:uI1:,/.,, +14:u02:re-compute, +14:u10:re-compute, +8:uI0:,/.,, +14:u01:re-compute, +14:u00:re-compute, +11:u08:knowing, +11:u07:knowing, +11:u06:knowing, +11:u14:knowing, +11:u05:knowing, +11:u13:knowing, +11:u04:knowing, +11:u12:knowing, +11:u03:knowing, +12:u08:unneeded, +11:u11:knowing, +11:u02:knowing, +11:u10:knowing, +11:u01:knowing, +12:u07:unneeded, +11:u00:knowing, +12:u06:unneeded, +12:u14:unneeded, +12:u05:unneeded, +12:u13:unneeded, +12:u04:unneeded, +12:u12:unneeded, +7:u22:unn, +8:u23:unne, +12:u03:unneeded, +12:u11:unneeded, +12:u02:unneeded, +12:u10:unneeded, +12:u01:unneeded, +12:u00:unneeded, +15:u08:2.10.6.1.2., +7:u08:Any, +15:u07:2.10.6.1.2., +15:u06:2.10.6.1.2., +7:u07:Any, +15:u14:2.10.6.1.2., +15:u05:2.10.6.1.2., +7:u06:Any, +15:u13:2.10.6.1.2., +15:u04:2.10.6.1.2., +7:u05:Any, +15:u08:2.10.6.1.3., +16:u08:CB_SEQUENCE., +15:u12:2.10.6.1.2., +15:u03:2.10.6.1.2., +7:u04:Any, +16:u07:CB_SEQUENCE., +12:u08:Optional, +15:u11:2.10.6.1.2., +7:u22:Any, +7:u23:Any, +15:u02:2.10.6.1.2., +7:u03:Any, +15:u07:2.10.6.1.3., +16:u06:CB_SEQUENCE., +12:u07:Optional, +15:u10:2.10.6.1.2., +15:u01:2.10.6.1.2., +7:u02:Any, +15:u06:2.10.6.1.3., +16:u05:CB_SEQUENCE., +12:u06:Optional, +15:u14:2.10.6.1.3., +15:u00:2.10.6.1.2., +7:u01:Any, +15:u05:2.10.6.1.3., +17:u08:csa_cachethis, +16:u04:CB_SEQUENCE., +12:u05:Optional, +13:u08:(SEQUENCE, +15:u13:2.10.6.1.3., +7:u00:Any, +15:u04:2.10.6.1.3., +16:u03:CB_SEQUENCE., +12:u04:Optional, +13:u07:(SEQUENCE, +15:u12:2.10.6.1.3., +15:u03:2.10.6.1.3., +17:u07:csa_cachethis, +16:u02:CB_SEQUENCE., +12:u03:Optional, +13:u06:(SEQUENCE, +10:u08:reason, +15:u11:2.10.6.1.3., +15:u02:2.10.6.1.3., +17:u06:csa_cachethis, +16:u01:CB_SEQUENCE., +12:u02:Optional, +13:u05:(SEQUENCE, +10:u07:reason, +15:u10:2.10.6.1.3., +17:u14:csa_cachethis, +15:u01:2.10.6.1.3., +17:u05:csa_cachethis, +16:u00:CB_SEQUENCE., +12:u01:Optional, +13:u04:(SEQUENCE, +10:u06:reason, +17:u13:csa_cachethis, +15:u00:2.10.6.1.3., +17:u04:csa_cachethis, +12:u00:Optional, +13:u03:(SEQUENCE, +10:u05:reason, +17:u12:csa_cachethis, +6:u21:cs, +7:u22:csa, +8:u23:csa_, +17:u03:csa_cachethis, +17:u08:unnecessarily, +13:u02:(SEQUENCE, +10:u04:reason, +17:u11:csa_cachethis, +17:u02:csa_cachethis, +13:u01:(SEQUENCE, +10:u03:reason, +17:u10:csa_cachethis, +17:u01:csa_cachethis, +17:u07:unnecessarily, +11:u08:Whether, +13:u00:(SEQUENCE, +10:u02:reason, +7:u22:Cac, +8:u23:Cach, +11:uI2:(...),., +17:u00:csa_cachethis, +17:u06:unnecessarily, +10:u08:effect, +10:u01:reason, +17:u14:unnecessarily, +11:uI1:(...),., +17:u05:unnecessarily, +11:u07:Whether, +10:u00:reason, +17:u13:unnecessarily, +11:uI0:(...),., +17:u04:unnecessarily, +11:u06:Whether, +10:u07:effect, +15:u08:incremented, +17:u12:unnecessarily, +17:u03:unnecessarily, +11:u05:Whether, +10:u06:effect, +17:u11:unnecessarily, +10:u14:effect, +17:u02:unnecessarily, +11:u04:Whether, +10:u05:effect, +15:u07:incremented, +17:u10:unnecessarily, +10:u13:effect, +8:u23:Whet, +17:u01:unnecessarily, +11:u03:Whether, +10:u04:effect, +15:u06:incremented, +16:u08:sa_cachethis, +10:u12:effect, +15:u14:incremented, +17:u00:unnecessarily, +11:u02:Whether, +10:u03:effect, +15:u05:incremented, +10:u11:effect, +15:u13:incremented, +11:u01:Whether, +10:u02:effect, +15:u04:incremented, +16:u07:sa_cachethis, +10:u08:cache., +10:u10:effect, +15:u12:incremented, +11:u00:Whether, +10:u01:effect, +15:u03:incremented, +16:u06:sa_cachethis, +10:u07:cache., +15:u11:incremented, +16:u14:sa_cachethis, +10:u00:effect, +15:u02:incremented, +16:u05:sa_cachethis, +10:u06:cache., +15:u10:incremented, +16:u13:sa_cachethis, +15:u01:incremented, +16:u04:sa_cachethis, +10:u05:cache., +16:u12:sa_cachethis, +19:u14:implementation., +7:u22:sa_, +8:u23:sa_c, +15:u00:incremented, +16:u03:sa_cachethis, +10:u04:cache., +16:u11:sa_cachethis, +19:u13:implementation., +16:u02:sa_cachethis, +10:u03:cache., +31:u08:NFS4ERR_RETRY_UNCACHED_REP., +16:u10:sa_cachethis, +19:u12:implementation., +16:u01:sa_cachethis, +10:u02:cache., +31:u07:NFS4ERR_RETRY_UNCACHED_REP., +19:u11:implementation., +16:u00:sa_cachethis, +10:u01:cache., +31:u06:NFS4ERR_RETRY_UNCACHED_REP., +19:u10:implementation., +9:u14:error, +10:u00:cache., +31:u05:NFS4ERR_RETRY_UNCACHED_REP., +9:u13:error, +31:u04:NFS4ERR_RETRY_UNCACHED_REP., +9:u12:error, +6:u21:er, +7:u22:err, +8:u23:erro, +13:u08:(granted,, +31:u03:NFS4ERR_RETRY_UNCACHED_REP., +9:u11:error, +31:u02:NFS4ERR_RETRY_UNCACHED_REP., +9:u10:error, +13:u07:(granted,, +31:u01:NFS4ERR_RETRY_UNCACHED_REP., +14:u08:protocol)., +13:u06:(granted,, +12:u08:Sequence, +31:u00:NFS4ERR_RETRY_UNCACHED_REP., +14:u07:protocol)., +13:u14:(granted,, +13:u05:(granted,, +14:u06:protocol)., +13:u13:(granted,, +13:u04:(granted,, +12:u07:Sequence, +14:u05:protocol)., +13:u12:(granted,, +6:u21:(g, +7:u22:(gr, +8:u23:(gra, +13:u03:(granted,, +12:u06:Sequence, +14:u04:protocol)., +13:u11:(granted,, +13:u02:(granted,, +12:u05:Sequence, +14:u03:protocol)., +13:u10:(granted,, +13:u01:(granted,, +12:u04:Sequence, +14:u02:protocol)., +13:u00:(granted,, +12:u03:Sequence, +14:u01:protocol)., +12:u02:Sequence, +14:u00:protocol)., +12:u01:Sequence, +12:u00:Sequence, +19:u08:NFS4ERR_NOTSUPP, +19:u07:NFS4ERR_NOTSUPP, +19:u06:NFS4ERR_NOTSUPP, +19:u14:nfs4err_notsupp, +19:u05:NFS4ERR_NOTSUPP, +19:u13:nfs4err_notsupp, +19:u04:NFS4ERR_NOTSUPP, +19:u12:nfs4err_notsupp, +19:u03:NFS4ERR_NOTSUPP, +19:u11:nfs4err_notsupp, +19:u02:NFS4ERR_NOTSUPP, +19:u10:nfs4err_notsupp, +19:u01:NFS4ERR_NOTSUPP, +24:u08:NFS4ERR_REQ_TOO_BIG., +12:u14:include:, +19:u00:NFS4ERR_NOTSUPP, +12:u13:include:, +24:u07:NFS4ERR_REQ_TOO_BIG., +12:u12:include:, +13:u14:supported, +24:u06:NFS4ERR_REQ_TOO_BIG., +7:u08:do,, +8:u08:one., +12:u11:include:, +13:u13:supported, +24:u14:nfs4err_req_too_big., +6:uI2:;;, +24:u05:NFS4ERR_REQ_TOO_BIG., +8:u07:one., +12:u10:include:, +13:u12:supported, +24:u13:nfs4err_req_too_big., +6:uI1:;;, +24:u04:NFS4ERR_REQ_TOO_BIG., +7:u07:do,, +8:u06:one., +13:u11:supported, +24:u12:nfs4err_req_too_big., +6:uI0:;;, +24:u03:NFS4ERR_REQ_TOO_BIG., +7:u06:do,, +10:u08:retry,, +8:u05:one., +13:u10:supported, +24:u11:nfs4err_req_too_big., +7:u14:do,, +24:u02:NFS4ERR_REQ_TOO_BIG., +7:u05:do,, +14:u08:responses:, +8:u04:one., +24:u10:nfs4err_req_too_big., +7:u13:do,, +24:u01:NFS4ERR_REQ_TOO_BIG., +7:u04:do,, +10:u07:retry,, +8:u03:one., +7:u12:do,, +7:u22:do,, +7:u23:do,, +24:u00:NFS4ERR_REQ_TOO_BIG., +7:u03:do,, +10:u06:retry,, +14:u07:responses:, +10:u08:cached, +8:u02:one., +7:u11:do,, +10:u14:retry,, +7:u02:do,, +10:u05:retry,, +14:u06:responses:, +8:u01:one., +7:u10:do,, +10:u13:retry,, +14:u14:responses:, +7:u01:do,, +10:u04:retry,, +14:u05:responses:, +10:u07:cached, +8:u00:one., +10:u12:retry,, +14:u13:responses:, +7:u00:do,, +10:u03:retry,, +14:u04:responses:, +10:u06:cached, +10:u11:retry,, +14:u12:responses:, +10:u14:cached, +10:u02:retry,, +14:u03:responses:, +10:u05:cached, +24:u08:NFS4ERR_FALSE_RETRY., +10:u10:retry,, +14:u11:responses:, +10:u13:cached, +10:u01:retry,, +14:u02:responses:, +10:u04:cached, +12:u08:NFS4_OK,, +24:u07:NFS4ERR_FALSE_RETRY., +14:u10:responses:, +10:u12:cached, +10:u00:retry,, +14:u01:responses:, +10:u03:cached, +11:u08:retried, +24:u06:NFS4ERR_FALSE_RETRY., +12:u08:together, +10:u11:cached, +14:u00:responses:, +10:u02:cached, +12:u07:NFS4_OK,, +24:u05:NFS4ERR_FALSE_RETRY., +12:u07:together, +10:u10:cached, +10:u01:cached, +12:u06:NFS4_OK,, +11:u07:retried, +24:u04:NFS4ERR_FALSE_RETRY., +12:u06:together, +12:u14:nfs4_ok,, +10:u00:cached, +12:u05:NFS4_OK,, +11:u06:retried, +24:u03:NFS4ERR_FALSE_RETRY., +12:u05:together, +12:u13:nfs4_ok,, +11:u14:retried, +12:u04:NFS4_OK,, +11:u05:retried, +24:u02:NFS4ERR_FALSE_RETRY., +12:u04:together, +12:u12:nfs4_ok,, +11:u13:retried, +12:u03:NFS4_OK,, +11:u04:retried, +24:u01:NFS4ERR_FALSE_RETRY., +12:u03:together, +12:u11:nfs4_ok,, +11:u12:retried, +12:u02:NFS4_OK,, +11:u03:retried, +17:u08:2.10.6.1.3.1., +24:u00:NFS4ERR_FALSE_RETRY., +12:u02:together, +12:u10:nfs4_ok,, +11:u11:retried, +12:u01:NFS4_OK,, +11:u02:retried, +12:u01:together, +9:u08:False, +11:u10:retried, +12:u00:NFS4_OK,, +11:u01:retried, +17:u07:2.10.6.1.3.1., +12:u00:together, +9:u07:False, +11:u00:retried, +17:u06:2.10.6.1.3.1., +9:u06:False, +17:u14:2.10.6.1.3.1., +17:u05:2.10.6.1.3.1., +9:u05:False, +17:u13:2.10.6.1.3.1., +17:u04:2.10.6.1.3.1., +9:u04:False, +17:u12:2.10.6.1.3.1., +17:u03:2.10.6.1.3.1., +9:u03:False, +17:u11:2.10.6.1.3.1., +17:u02:2.10.6.1.3.1., +9:u02:False, +17:u10:2.10.6.1.3.1., +17:u01:2.10.6.1.3.1., +9:u01:False, +17:u00:2.10.6.1.3.1., +9:u00:False, +9:u08:user,, +23:u08:NFS4ERR_FALSE_RETRY, +9:u07:user,, +9:u08:false, +11:u08:detects, +9:u06:user,, +9:u07:false, +23:u07:NFS4ERR_FALSE_RETRY, +16:u08:Translations, +9:u05:user,, +9:u06:false, +23:u06:NFS4ERR_FALSE_RETRY, +11:u07:detects, +9:u04:user,, +9:u05:false, +23:u14:nfs4err_false_retry, +23:u05:NFS4ERR_FALSE_RETRY, +11:u06:detects, +16:u07:Translations, +9:u03:user,, +9:u04:false, +23:u13:nfs4err_false_retry, +11:u14:detects, +23:u04:NFS4ERR_FALSE_RETRY, +11:u05:detects, +16:u06:Translations, +9:u02:user,, +9:u03:false, +12:u08:replier,, +23:u12:nfs4err_false_retry, +11:u13:detects, +16:u14:translations, +23:u03:NFS4ERR_FALSE_RETRY, +11:u04:detects, +16:u05:Translations, +9:u01:user,, +9:u02:false, +12:u07:replier,, +23:u11:nfs4err_false_retry, +11:u12:detects, +16:u13:translations, +23:u02:NFS4ERR_FALSE_RETRY, +11:u03:detects, +16:u04:Translations, +9:u00:user,, +9:u01:false, +12:u06:replier,, +23:u10:nfs4err_false_retry, +11:u11:detects, +16:u12:translations, +23:u01:NFS4ERR_FALSE_RETRY, +11:u02:detects, +16:u03:Translations, +9:u00:false, +12:u05:replier,, +11:u10:detects, +16:u11:translations, +23:u00:NFS4ERR_FALSE_RETRY, +11:u01:detects, +16:u02:Translations, +12:u04:replier,, +16:u10:translations, +11:u00:detects, +16:u01:Translations, +12:u03:replier,, +16:u00:Translations, +12:u02:replier,, +12:u01:replier,, +12:u00:replier,, +16:u08:appropriate., +16:u07:appropriate., +14:u08:difference, +9:u08:deals, +16:u06:appropriate., +9:u07:deals, +16:u14:appropriate., +16:u05:appropriate., +14:u07:difference, +9:u06:deals, +16:u13:appropriate., +16:u04:appropriate., +14:u06:difference, +9:u05:deals, +16:u12:appropriate., +14:u14:difference, +16:u03:appropriate., +14:u05:difference, +13:u08:2.10.6.2., +9:u04:deals, +16:u11:appropriate., +14:u13:difference, +16:u02:appropriate., +14:u04:difference, +9:u03:deals, +9:u08:Retry, +16:u10:appropriate., +14:u12:difference, +16:u01:appropriate., +14:u03:difference, +13:u07:2.10.6.2., +9:u02:deals, +9:u07:Retry, +14:u11:difference, +16:u00:appropriate., +14:u02:difference, +13:u06:2.10.6.2., +9:u01:deals, +9:u06:Retry, +14:u10:difference, +13:u14:2.10.6.2., +14:u01:difference, +13:u05:2.10.6.2., +9:u00:deals, +9:u05:Retry, +11:u08:re-send, +13:u13:2.10.6.2., +14:u00:difference, +13:u04:2.10.6.2., +9:u04:Retry, +11:u07:re-send, +13:u12:2.10.6.2., +13:u03:2.10.6.2., +9:u03:Retry, +11:u06:re-send, +13:u11:2.10.6.2., +13:u02:2.10.6.2., +13:u08:reconnect, +9:u02:Retry, +11:u05:re-send, +13:u10:2.10.6.2., +13:u01:2.10.6.2., +9:u01:Retry, +11:u04:re-send, +13:u00:2.10.6.2., +13:u07:reconnect, +9:u00:Retry, +11:u03:re-send, +13:u06:reconnect, +11:u02:re-send, +13:u14:reconnect, +13:u05:reconnect, +11:u01:re-send, +13:u13:reconnect, +13:u04:reconnect, +7:u08:bit, +11:u00:re-send, +13:u12:reconnect, +13:u03:reconnect, +13:u11:reconnect, +13:u02:reconnect, +7:u07:bit, +11:u08:destroy, +13:u10:reconnect, +13:u01:reconnect, +7:u06:bit, +7:u14:bit, +13:u00:reconnect, +7:u05:bit, +11:u07:destroy, +7:u13:bit, +7:u04:bit, +11:u06:destroy, +11:u08:consume, +7:u12:bit, +11:u14:destroy, +7:u23:bit, +7:u03:bit, +11:u05:destroy, +14:u08:resources,, +7:u11:bit, +11:u13:destroy, +7:u02:bit, +11:u04:destroy, +11:u07:consume, +14:u07:resources,, +12:u08:consumes, +7:u10:bit, +11:u12:destroy, +14:u14:disconnect, +7:u01:bit, +11:u03:destroy, +11:u06:consume, +14:u06:resources,, +12:u07:consumes, +11:u11:destroy, +14:u13:disconnect, +11:u14:consume, +7:u00:bit, +11:u02:destroy, +11:u05:consume, +14:u05:resources,, +12:u06:consumes, +11:u10:destroy, +14:u12:disconnect, +11:u13:consume, +11:u01:destroy, +11:u04:consume, +14:u04:resources,, +12:u05:consumes, +14:u11:disconnect, +11:u12:consume, +11:u00:destroy, +11:u03:consume, +14:u03:resources,, +12:u04:consumes, +14:u10:disconnect, +11:u11:consume, +11:u02:consume, +14:u02:resources,, +12:u03:consumes, +11:u10:consume, +11:u01:consume, +14:u01:resources,, +12:u02:consumes, +11:u00:consume, +14:u00:resources,, +12:u01:consumes, +11:u08:shortly, +12:u00:consumes, +11:u07:shortly, +11:u06:shortly, +11:u05:shortly, +11:u04:shortly, +11:u03:shortly, +11:u02:shortly, +11:u01:shortly, +11:u00:shortly, +8:u14:uses, +8:u13:uses, +8:u12:uses, +8:u23:uses, +11:u08:fabrics, +8:u11:uses, +11:u07:fabrics, +8:u10:uses, +11:u06:fabrics, +11:u05:fabrics, +11:u04:fabrics, +9:uI2:/""[], +11:u03:fabrics, +9:uI1:/""[], +11:u02:fabrics, +9:uI0:/""[], +17:u08:NFS4ERR_DELAY, +11:u01:fabrics, +11:u00:fabrics, +17:u07:NFS4ERR_DELAY, +17:u06:NFS4ERR_DELAY, +17:u14:nfs4err_delay, +17:u05:NFS4ERR_DELAY, +17:u13:nfs4err_delay, +17:u04:NFS4ERR_DELAY, +17:u12:nfs4err_delay, +17:u03:NFS4ERR_DELAY, +13:u08:2.10.6.3., +17:u11:nfs4err_delay, +12:u14:approach, +17:u02:NFS4ERR_DELAY, +17:u10:nfs4err_delay, +12:u13:approach, +17:u01:NFS4ERR_DELAY, +13:u07:2.10.6.3., +12:u12:approach, +17:u00:NFS4ERR_DELAY, +13:u06:2.10.6.3., +12:u11:approach, +13:u14:2.10.6.3., +13:u05:2.10.6.3., +12:u10:approach, +13:u13:2.10.6.3., +13:u04:2.10.6.3., +13:u12:2.10.6.3., +13:u03:2.10.6.3., +15:u08:delegation), +13:u11:2.10.6.3., +13:u02:2.10.6.3., +15:u07:delegation), +11:u08:arrives, +13:u10:2.10.6.3., +13:u01:2.10.6.3., +15:u06:delegation), +11:u07:arrives, +16:u08:backchannel,, +13:u00:2.10.6.3., +15:u05:delegation), +11:u06:arrives, +16:u07:backchannel,, +15:u04:delegation), +11:u05:arrives, +16:u06:backchannel,, +15:u03:delegation), +11:u04:arrives, +16:u05:backchannel,, +15:u02:delegation), +11:u03:arrives, +16:u04:backchannel,, +10:u08:issue., +11:u08:triple., +15:u01:delegation), +11:u02:arrives, +16:u03:backchannel,, +10:u07:issue., +15:u00:delegation), +11:u01:arrives, +16:u02:backchannel,, +10:u06:issue., +11:u07:triple., +11:u00:arrives, +16:u01:backchannel,, +10:u05:issue., +12:u08:retired,, +11:u06:triple., +16:u00:backchannel,, +10:u04:issue., +12:u07:retired,, +11:u14:triple., +11:u05:triple., +10:u03:issue., +12:u06:retired,, +11:u13:triple., +11:u04:triple., +10:u02:issue., +12:u05:retired,, +11:u12:triple., +8:u23:trip, +11:u03:triple., +10:u01:issue., +12:u04:retired,, +11:u11:triple., +11:u02:triple., +10:u00:issue., +12:u03:retired,, +11:u10:triple., +11:u01:triple., +12:u02:retired,, +11:u00:triple., +14:u08:sufficient, +12:u01:retired,, +12:u00:retired,, +14:u07:sufficient, +14:u06:sufficient, +13:u08:callback,, +14:u14:sufficient, +14:u05:sufficient, +14:u13:sufficient, +14:u04:sufficient, +13:u07:callback,, +14:u08:retirement, +14:u12:sufficient, +7:u22:suf, +8:u23:suff, +14:u03:sufficient, +13:u06:callback,, +14:u11:sufficient, +13:u14:callback,, +14:u02:sufficient, +13:u05:callback,, +14:u07:retirement, +9:u08:fact,, +14:u10:sufficient, +13:u13:callback,, +9:uI2:,"",,, +14:u01:sufficient, +13:u04:callback,, +14:u06:retirement, +9:u07:fact,, +13:u12:callback,, +14:u14:retirement, +9:uI1:,"",,, +14:u00:sufficient, +13:u03:callback,, +14:u05:retirement, +9:u06:fact,, +13:u11:callback,, +14:u13:retirement, +9:uI0:,"",,, +13:u02:callback,, +14:u04:retirement, +11:u08:benefit, +9:u05:fact,, +7:u08:(in, +13:u10:callback,, +14:u12:retirement, +8:u23:reti, +8:uI2:,'.,, +13:u01:callback,, +14:u03:retirement, +9:u04:fact,, +7:u07:(in, +14:u11:retirement, +8:uI1:,'.,, +13:u00:callback,, +14:u02:retirement, +11:u07:benefit, +9:u03:fact,, +7:u06:(in, +14:u10:retirement, +15:u14:identifiers, +8:uI0:,'.,, +14:u01:retirement, +11:u06:benefit, +9:u02:fact,, +7:u05:(in, +15:u13:identifiers, +11:u14:benefit, +8:uI2:('),, +14:u00:retirement, +11:u05:benefit, +9:u01:fact,, +7:u04:(in, +15:u12:identifiers, +11:u13:benefit, +8:uI1:('),, +11:u04:benefit, +9:u00:fact,, +7:u03:(in, +15:u11:identifiers, +11:u12:benefit, +11:u14:certain, +7:u22:ben, +8:u23:bene, +8:uI0:('),, +11:u03:benefit, +7:u02:(in, +15:u10:identifiers, +11:u11:benefit, +11:u13:certain, +11:u02:benefit, +7:u01:(in, +11:u10:benefit, +11:u12:certain, +11:u01:benefit, +7:u00:(in, +11:u11:certain, +9:uI2:"",,., +11:u00:benefit, +11:u10:certain, +9:uI1:"",,., +10:u08:triple, +12:u14:server's, +9:uI0:"",,., +10:uI2:,,(..,, +13:u08:referring, +12:u13:server's, +10:uI1:,,(..,, +7:uI2:'),, +10:u07:triple, +12:u12:server's, +10:uI0:,,(..,, +7:uI1:'),, +10:u06:triple, +13:u07:referring, +12:u11:server's, +10:u14:triple, +7:uI0:'),, +10:u05:triple, +13:u06:referring, +12:u10:server's, +10:u13:triple, +13:u14:referring, +10:u04:triple, +13:u05:referring, +10:u12:triple, +13:u13:referring, +10:u03:triple, +13:u04:referring, +10:u11:triple, +13:u12:referring, +10:u02:triple, +13:u03:referring, +10:u08:arrive, +10:u10:triple, +13:u11:referring, +10:u01:triple, +13:u02:referring, +10:u07:arrive, +13:u10:referring, +10:u00:triple, +13:u01:referring, +10:u06:arrive, +13:u00:referring, +10:u05:arrive, +12:u08:expires,, +10:u04:arrive, +10:u03:arrive, +12:u07:expires,, +10:u02:arrive, +12:u06:expires,, +13:u08:2.10.6.4., +10:u01:arrive, +12:u14:expires,, +12:u05:expires,, +10:u00:arrive, +12:u13:expires,, +12:u04:expires,, +13:u07:2.10.6.4., +12:u12:expires,, +12:u03:expires,, +13:u06:2.10.6.4., +12:u11:expires,, +13:u14:2.10.6.4., +12:u02:expires,, +13:u05:2.10.6.4., +12:u10:expires,, +13:u13:2.10.6.4., +12:u01:expires,, +13:u04:2.10.6.4., +13:u12:2.10.6.4., +10:u14:issues, +12:u00:expires,, +13:u03:2.10.6.4., +13:u11:2.10.6.4., +10:u13:issues, +13:u02:2.10.6.4., +13:u10:2.10.6.4., +10:u12:issues, +7:u22:iss, +8:u23:issu, +11:uI2:(.),(),, +13:u01:2.10.6.4., +10:u11:issues, +11:uI1:(.),(),, +13:u00:2.10.6.4., +10:u10:issues, +11:uI0:(.),(),, +24:u08:NFS4ERR_REP_TOO_BIG., +24:u07:NFS4ERR_REP_TOO_BIG., +24:u06:NFS4ERR_REP_TOO_BIG., +24:u14:nfs4err_rep_too_big., +24:u05:NFS4ERR_REP_TOO_BIG., +23:u08:NFS4ERR_REP_TOO_BIG, +24:u13:nfs4err_rep_too_big., +24:u04:NFS4ERR_REP_TOO_BIG., +24:u12:nfs4err_rep_too_big., +24:u03:NFS4ERR_REP_TOO_BIG., +23:u07:NFS4ERR_REP_TOO_BIG, +24:u11:nfs4err_rep_too_big., +24:u02:NFS4ERR_REP_TOO_BIG., +23:u06:NFS4ERR_REP_TOO_BIG, +24:u10:nfs4err_rep_too_big., +23:u14:nfs4err_rep_too_big, +24:u01:NFS4ERR_REP_TOO_BIG., +23:u05:NFS4ERR_REP_TOO_BIG, +23:u13:nfs4err_rep_too_big, +24:u00:NFS4ERR_REP_TOO_BIG., +23:u04:NFS4ERR_REP_TOO_BIG, +29:u08:ca_maxresponsesize_cached, +23:u12:nfs4err_rep_too_big, +23:u03:NFS4ERR_REP_TOO_BIG, +10:u08:TRUE),, +23:u11:nfs4err_rep_too_big, +23:u02:NFS4ERR_REP_TOO_BIG, +29:u07:ca_maxresponsesize_cached, +23:u10:nfs4err_rep_too_big, +23:u01:NFS4ERR_REP_TOO_BIG, +29:u06:ca_maxresponsesize_cached, +10:u07:TRUE),, +11:u08:matter), +29:u14:ca_maxresponsesize_cached, +11:uI2:(....)., +23:u00:NFS4ERR_REP_TOO_BIG, +29:u05:ca_maxresponsesize_cached, +10:u06:TRUE),, +29:u13:ca_maxresponsesize_cached, +10:u14:true),, +11:uI1:(....)., +29:u04:ca_maxresponsesize_cached, +10:u05:TRUE),, +11:u07:matter), +29:u12:ca_maxresponsesize_cached, +10:u13:true),, +7:u22:ca_, +8:u23:ca_m, +11:uI0:(....)., +29:u03:ca_maxresponsesize_cached, +10:u04:TRUE),, +11:u06:matter), +29:u11:ca_maxresponsesize_cached, +10:u12:true),, +11:u14:matter), +7:u22:TRU, +8:u23:TRUE, +29:u02:ca_maxresponsesize_cached, +10:u03:TRUE),, +11:u05:matter), +11:u08:RENAME,, +10:u08:eleven, +29:u10:ca_maxresponsesize_cached, +10:u11:true),, +11:u13:matter), +13:u14:(sequence, +29:u01:ca_maxresponsesize_cached, +10:u02:TRUE),, +11:u04:matter), +10:u07:eleven, +10:u10:true),, +11:u12:matter), +13:u13:(sequence, +8:u23:matt, +29:u00:ca_maxresponsesize_cached, +10:u01:TRUE),, +11:u03:matter), +11:u07:RENAME,, +10:u06:eleven, +11:u11:matter), +13:u12:(sequence, +7:u22:(SE, +8:u23:(SEQ, +10:u00:TRUE),, +11:u02:matter), +11:u06:RENAME,, +10:u05:eleven, +11:u10:matter), +13:u11:(sequence, +11:u14:rename,, +11:u01:matter), +11:u05:RENAME,, +10:u04:eleven, +18:u08:non-idempotent, +13:u10:(sequence, +11:u13:rename,, +11:u00:matter), +11:u04:RENAME,, +10:u03:eleven, +18:u07:non-idempotent, +11:u12:rename,, +11:u03:RENAME,, +10:u02:eleven, +18:u06:non-idempotent, +14:u08:semantics., +11:u11:rename,, +11:u02:RENAME,, +13:u08:requested, +10:u01:eleven, +18:u05:non-idempotent, +14:u07:semantics., +11:u10:rename,, +7:uI2:-,', +11:u01:RENAME,, +33:u08:NFS4ERR_REP_TOO_BIG_TO_CACHE., +10:u00:eleven, +18:u04:non-idempotent, +14:u06:semantics., +7:uI1:-,', +11:u00:RENAME,, +13:u07:requested, +18:u03:non-idempotent, +14:u05:semantics., +7:uI0:-,', +13:u06:requested, +33:u07:NFS4ERR_REP_TOO_BIG_TO_CACHE., +18:u02:non-idempotent, +14:u04:semantics., +13:u14:requested, +7:u22:onc, +8:u23:once, +13:u05:requested, +33:u06:NFS4ERR_REP_TOO_BIG_TO_CACHE., +15:u08:RESTOREFH),, +18:u01:non-idempotent, +14:u03:semantics., +13:u13:requested, +33:u14:nfs4err_rep_too_big_to_cache., +13:u04:requested, +33:u05:NFS4ERR_REP_TOO_BIG_TO_CACHE., +18:u00:non-idempotent, +14:u02:semantics., +13:u12:requested, +33:u13:nfs4err_rep_too_big_to_cache., +13:u03:requested, +33:u04:NFS4ERR_REP_TOO_BIG_TO_CACHE., +15:u07:RESTOREFH),, +14:u01:semantics., +14:u08:Otherwise,, +13:u11:requested, +33:u12:nfs4err_rep_too_big_to_cache., +13:u02:requested, +33:u03:NFS4ERR_REP_TOO_BIG_TO_CACHE., +15:u06:RESTOREFH),, +14:u00:semantics., +14:u07:Otherwise,, +13:u10:requested, +33:u11:nfs4err_rep_too_big_to_cache., +15:u14:restorefh),, +13:u01:requested, +33:u02:NFS4ERR_REP_TOO_BIG_TO_CACHE., +15:u05:RESTOREFH),, +14:u06:Otherwise,, +33:u10:nfs4err_rep_too_big_to_cache., +15:u13:restorefh),, +13:u00:requested, +33:u01:NFS4ERR_REP_TOO_BIG_TO_CACHE., +15:u04:RESTOREFH),, +12:u08:handling, +14:u05:Otherwise,, +15:u12:restorefh),, +7:u22:RES, +8:u23:REST, +33:u00:NFS4ERR_REP_TOO_BIG_TO_CACHE., +15:u03:RESTOREFH),, +14:u04:Otherwise,, +15:u11:restorefh),, +15:u02:RESTOREFH),, +12:u07:handling, +14:u03:Otherwise,, +15:u10:restorefh),, +9:uI2:.(.),, +15:u01:RESTOREFH),, +12:u06:handling, +14:u02:Otherwise,, +9:uI1:.(.),, +15:u00:RESTOREFH),, +12:u05:handling, +14:u01:Otherwise,, +9:uI0:.(.),, +12:u04:handling, +14:u00:Otherwise,, +12:u03:handling, +12:u02:handling, +12:u01:handling, +12:u00:handling, +12:u08:produced, +14:u08:originated, +10:u14:unless, +12:u07:produced, +14:u07:originated, +10:u13:unless, +12:u06:produced, +14:u06:originated, +10:u08:origin, +10:u12:unless, +12:u14:produced, +8:u23:unle, +12:u05:produced, +13:u08:RESTOREFH, +14:u05:originated, +10:u07:origin, +10:u11:unless, +12:u13:produced, +12:u04:produced, +14:u04:originated, +10:u06:origin, +10:u10:unless, +12:u12:produced, +8:u23:prod, +19:uI2:(..,,),-(..,,)., +12:u03:produced, +13:u07:RESTOREFH, +32:u08:NFS4ERR_REP_TOO_BIG_TO_CACHE, +14:u03:originated, +10:u05:origin, +12:u11:produced, +9:u14:getfh, +19:uI1:(..,,),-(..,,)., +12:u02:produced, +13:u06:RESTOREFH, +23:u08:filehandle-changing, +14:u02:originated, +10:u04:origin, +7:u08:(if, +12:u10:produced, +9:u13:getfh, +13:u14:restorefh, +19:uI0:(..,,),-(..,,)., +12:u01:produced, +13:u05:RESTOREFH, +32:u07:NFS4ERR_REP_TOO_BIG_TO_CACHE, +14:u01:originated, +10:u03:origin, +7:u07:(if, +9:u12:getfh, +13:u13:restorefh, +8:u23:GETF, +12:u00:produced, +13:u04:RESTOREFH, +32:u06:NFS4ERR_REP_TOO_BIG_TO_CACHE, +23:u07:filehandle-changing, +14:u00:originated, +10:u02:origin, +7:u06:(if, +9:u11:getfh, +13:u12:restorefh, +32:u14:nfs4err_rep_too_big_to_cache, +13:u03:RESTOREFH, +32:u05:NFS4ERR_REP_TOO_BIG_TO_CACHE, +23:u06:filehandle-changing, +10:u01:origin, +7:u05:(if, +9:u10:getfh, +13:u11:restorefh, +32:u13:nfs4err_rep_too_big_to_cache, +23:u14:filehandle-changing, +13:u02:RESTOREFH, +32:u04:NFS4ERR_REP_TOO_BIG_TO_CACHE, +23:u05:filehandle-changing, +24:u08:filehandle-changing,, +10:u00:origin, +7:u04:(if, +13:u10:restorefh, +32:u12:nfs4err_rep_too_big_to_cache, +23:u13:filehandle-changing, +13:u01:RESTOREFH, +32:u03:NFS4ERR_REP_TOO_BIG_TO_CACHE, +23:u04:filehandle-changing, +7:u03:(if, +32:u11:nfs4err_rep_too_big_to_cache, +23:u12:filehandle-changing, +13:u00:RESTOREFH, +32:u02:NFS4ERR_REP_TOO_BIG_TO_CACHE, +23:u03:filehandle-changing, +24:u07:filehandle-changing,, +9:u08:OPEN., +7:u02:(if, +32:u10:nfs4err_rep_too_big_to_cache, +23:u11:filehandle-changing, +32:u01:NFS4ERR_REP_TOO_BIG_TO_CACHE, +23:u02:filehandle-changing, +24:u06:filehandle-changing,, +7:u01:(if, +23:u10:filehandle-changing, +24:u14:filehandle-changing,, +32:u00:NFS4ERR_REP_TOO_BIG_TO_CACHE, +23:u01:filehandle-changing, +24:u05:filehandle-changing,, +9:u07:OPEN., +7:u00:(if, +24:u13:filehandle-changing,, +23:u00:filehandle-changing, +24:u04:filehandle-changing,, +9:u06:OPEN., +24:u12:filehandle-changing,, +9:u14:open., +24:u03:filehandle-changing,, +9:u05:OPEN., +10:u08:GETFH., +24:u11:filehandle-changing,, +9:u13:open., +24:u02:filehandle-changing,, +9:u04:OPEN., +11:u08:advance, +24:u10:filehandle-changing,, +9:u12:open., +6:u21:OP, +7:u22:OPE, +8:u23:OPEN, +24:u01:filehandle-changing,, +9:u03:OPEN., +10:u07:GETFH., +9:u11:open., +24:u00:filehandle-changing,, +9:u02:OPEN., +10:u06:GETFH., +11:u07:advance, +13:u08:2.10.6.5., +9:u10:open., +10:u14:getfh., +9:u01:OPEN., +10:u05:GETFH., +11:u06:advance, +15:u08:Persistence, +10:u13:getfh., +11:u14:advance, +9:u00:OPEN., +10:u04:GETFH., +11:u05:advance, +13:u07:2.10.6.5., +15:u07:Persistence, +10:u12:getfh., +11:u13:advance, +10:u03:GETFH., +11:u04:advance, +13:u06:2.10.6.5., +15:u06:Persistence, +11:u08:persist, +10:u11:getfh., +11:u12:advance, +13:u14:2.10.6.5., +10:u02:GETFH., +11:u03:advance, +13:u05:2.10.6.5., +15:u05:Persistence, +11:u07:persist, +10:u10:getfh., +11:u11:advance, +13:u13:2.10.6.5., +10:u01:GETFH., +11:u02:advance, +13:u04:2.10.6.5., +15:u04:Persistence, +11:u06:persist, +11:u10:advance, +13:u12:2.10.6.5., +10:u00:GETFH., +11:u01:advance, +13:u03:2.10.6.5., +15:u03:Persistence, +11:u05:persist, +13:u11:2.10.6.5., +11:u00:advance, +13:u02:2.10.6.5., +15:u02:Persistence, +11:u04:persist, +13:u10:2.10.6.5., +13:u01:2.10.6.5., +15:u01:Persistence, +11:u03:persist, +8:uI2:;.):, +13:u00:2.10.6.5., +15:u00:Persistence, +11:u02:persist, +8:uI1:;.):, +11:u01:persist, +8:uI0:;.):, +11:u00:persist, +17:u08:NFSv4.1-level, +17:u07:NFSv4.1-level, +17:u06:NFSv4.1-level, +17:u05:NFSv4.1-level, +17:u04:NFSv4.1-level, +17:u03:NFSv4.1-level, +17:u02:NFSv4.1-level, +15:u08:persisting,, +17:u01:NFSv4.1-level, +17:u00:NFSv4.1-level, +15:u07:persisting,, +15:u06:persisting,, +15:u14:persisting,, +15:u05:persisting,, +14:u08:SEQUENCE)., +7:u08:ID), +15:u13:persisting,, +15:u04:persisting,, +11:u08:animate, +7:u07:ID), +15:u12:persisting,, +15:u03:persisting,, +14:u07:SEQUENCE)., +10:u08:accept, +7:u06:ID), +15:u11:persisting,, +9:uI2:(..,', +15:u02:persisting,, +14:u06:SEQUENCE)., +11:u07:animate, +7:u05:ID), +15:u10:persisting,, +14:u14:sequence)., +9:uI1:(..,', +6:uI2:)(, +15:u01:persisting,, +14:u05:SEQUENCE)., +11:u06:animate, +10:u07:accept, +12:u08:restart:, +7:u04:ID), +14:u13:sequence)., +11:u14:animate, +9:uI0:(..,', +6:uI1:)(, +15:u00:persisting,, +14:u04:SEQUENCE)., +11:u05:animate, +10:u06:accept, +7:u03:ID), +14:u12:sequence)., +11:u13:animate, +10:u14:accept, +6:uI0:)(, +14:u03:SEQUENCE)., +11:u04:animate, +10:u05:accept, +12:u07:restart:, +7:u02:ID), +14:u11:sequence)., +11:u12:animate, +10:u13:accept, +7:u22:ani, +8:u23:anim, +14:u02:SEQUENCE)., +11:u03:animate, +10:u04:accept, +12:u06:restart:, +12:u08:animated, +7:u01:ID), +14:u10:sequence)., +11:u11:animate, +10:u12:accept, +12:u14:restart:, +14:u01:SEQUENCE)., +11:u02:animate, +10:u03:accept, +12:u05:restart:, +7:u00:ID), +11:u10:animate, +10:u11:accept, +12:u13:restart:, +14:u00:SEQUENCE)., +11:u01:animate, +10:u02:accept, +12:u04:restart:, +12:u07:animated, +10:u10:accept, +12:u12:restart:, +11:u00:animate, +10:u01:accept, +12:u03:restart:, +12:u06:animated, +12:u08:Sections, +12:u11:restart:, +12:u14:animated, +10:u00:accept, +12:u02:restart:, +12:u05:animated, +12:u07:Sections, +12:u10:restart:, +12:u13:animated, +12:u01:restart:, +12:u04:animated, +12:u06:Sections, +12:u12:animated, +12:u00:restart:, +12:u03:animated, +12:u05:Sections, +12:u11:animated, +12:u02:animated, +12:u04:Sections, +12:u10:animated, +12:u01:animated, +12:u03:Sections, +12:u00:animated, +12:u02:Sections, +12:u01:Sections, +12:u00:Sections, +14:u08:persistent, +13:u08:placement, +14:u07:persistent, +14:u06:persistent, +13:u07:placement, +14:u05:persistent, +13:u06:placement, +14:u04:persistent, +13:u14:placement, +13:u05:placement, +14:u03:persistent, +13:u13:placement, +13:u04:placement, +14:u02:persistent, +13:u12:placement, +8:u23:plac, +13:u03:placement, +14:u01:persistent, +13:u11:placement, +13:u02:placement, +14:u00:persistent, +13:u10:placement, +13:u01:placement, +13:u00:placement, +8:u08:view, +8:u07:view, +8:u06:view, +12:u08:storage,, +8:u14:view, +8:u05:view, +8:u08:back, +12:u07:storage,, +8:u13:view, +8:u04:view, +12:u06:storage,, +8:u12:view, +14:u14:persistent, +7:u22:vie, +8:u23:view, +8:u03:view, +8:u07:back, +12:u05:storage,, +8:u11:view, +14:u13:persistent, +8:u02:view, +8:u06:back, +12:u04:storage,, +8:u10:view, +14:u12:persistent, +8:u14:back, +8:u01:view, +8:u05:back, +12:u03:storage,, +14:u11:persistent, +8:u13:back, +8:u00:view, +8:u04:back, +12:u02:storage,, +14:u10:persistent, +8:u12:back, +8:u03:back, +12:u01:storage,, +8:u11:back, +8:u02:back, +13:u08:restarts,, +12:u00:storage,, +8:u10:back, +8:u01:back, +12:u08:starting, +8:u00:back, +13:u07:restarts,, +13:u06:restarts,, +12:u07:starting, +13:u14:restarts,, +13:u05:restarts,, +12:u06:starting, +13:u13:restarts,, +12:u14:starting, +13:u04:restarts,, +12:u05:starting, +9:u08:[42]., +13:u12:restarts,, +12:u13:starting, +13:u03:restarts,, +12:u04:starting, +11:u08:2.10.7., +13:u11:restarts,, +12:u12:starting, +8:u23:star, +13:u02:restarts,, +12:u03:starting, +9:u07:[42]., +13:u10:restarts,, +12:u11:starting, +13:u01:restarts,, +12:u02:starting, +9:u06:[42]., +11:u07:2.10.7., +12:u08:complete, +12:u10:starting, +9:u14:[42]., +13:u00:restarts,, +12:u01:starting, +9:u05:[42]., +11:u06:2.10.7., +12:u07:complete, +9:u13:[42]., +11:u14:2.10.7., +12:u00:starting, +9:u04:[42]., +11:u05:2.10.7., +12:u06:complete, +9:u12:[42]., +11:u13:2.10.7., +6:u21:[4, +7:u22:[42, +8:u23:[42], +9:u03:[42]., +11:u04:2.10.7., +12:u05:complete, +9:u11:[42]., +11:u12:2.10.7., +9:u02:[42]., +11:u03:2.10.7., +13:u08:2.10.7.1., +12:u04:complete, +9:u10:[42]., +11:u11:2.10.7., +9:u01:[42]., +11:u02:2.10.7., +12:u03:complete, +11:u10:2.10.7., +10:uI2:.,[].,, +9:u00:[42]., +11:u01:2.10.7., +13:u07:2.10.7.1., +12:u02:complete, +10:uI1:.,[].,, +11:u00:2.10.7., +13:u06:2.10.7.1., +12:u01:complete, +13:u14:2.10.7.1., +10:uI0:.,[].,, +13:u05:2.10.7.1., +12:u00:complete, +13:u13:2.10.7.1., +13:u04:2.10.7.1., +23:u08:readable/writable),, +13:u12:2.10.7.1., +13:u03:2.10.7.1., +19:u08:Preregistration, +13:u11:2.10.7.1., +13:u02:2.10.7.1., +23:u07:readable/writable),, +13:u10:2.10.7.1., +13:u01:2.10.7.1., +23:u06:readable/writable),, +19:u07:Preregistration, +14:u08:endpoints;, +23:u14:readable/writable),, +13:u00:2.10.7.1., +23:u05:readable/writable),, +19:u06:Preregistration, +14:u08:therefore,, +23:u13:readable/writable),, +19:u14:preregistration, +8:uI2:/),., +23:u04:readable/writable),, +19:u05:Preregistration, +14:u07:endpoints;, +14:u07:therefore,, +23:u12:readable/writable),, +19:u13:preregistration, +8:uI1:/),., +23:u03:readable/writable),, +19:u04:Preregistration, +14:u06:endpoints;, +14:u06:therefore,, +23:u11:readable/writable),, +19:u12:preregistration, +14:u14:endpoints;, +8:u23:Prer, +8:uI0:/),., +23:u02:readable/writable),, +19:u03:Preregistration, +14:u05:endpoints;, +14:u05:therefore,, +23:u10:readable/writable),, +19:u11:preregistration, +14:u13:endpoints;, +23:u01:readable/writable),, +19:u02:Preregistration, +14:u04:endpoints;, +14:u04:therefore,, +19:u08:implementation;, +19:u10:preregistration, +14:u12:endpoints;, +23:u00:readable/writable),, +19:u01:Preregistration, +14:u03:endpoints;, +9:u08:fatal, +14:u03:therefore,, +19:u07:implementation;, +14:u11:endpoints;, +19:u00:Preregistration, +14:u02:endpoints;, +14:u02:therefore,, +19:u06:implementation;, +14:u10:endpoints;, +14:u01:endpoints;, +9:u07:fatal, +14:u01:therefore,, +19:u05:implementation;, +11:u08:manages, +14:u00:endpoints;, +9:u06:fatal, +14:u00:therefore,, +19:u04:implementation;, +11:u07:manages, +10:u08:2.10),, +9:u14:fatal, +9:u05:fatal, +19:u03:implementation;, +11:u06:manages, +10:u07:2.10),, +10:u08:basis., +9:u13:fatal, +9:u04:fatal, +19:u02:implementation;, +11:u05:manages, +10:u06:2.10),, +10:u07:basis., +9:u12:fatal, +7:u22:fat, +8:u23:fata, +9:u03:fatal, +19:u01:implementation;, +11:u04:manages, +10:u05:2.10),, +10:u06:basis., +9:u11:fatal, +8:uI2:.),-, +9:u02:fatal, +19:u00:implementation;, +11:u03:manages, +10:u04:2.10),, +10:u05:basis., +9:u10:fatal, +8:uI1:.),-, +9:u01:fatal, +11:u02:manages, +10:u03:2.10),, +10:u04:basis., +8:uI0:.),-, +9:u00:fatal, +11:u01:manages, +10:u02:2.10),, +10:u03:basis., +11:u00:manages, +10:u01:2.10),, +10:u02:basis., +10:u00:2.10),, +10:u01:basis., +10:u00:basis., +13:u08:2.10.7.2., +13:u07:2.10.7.2., +8:u08:rely, +13:u06:2.10.7.2., +13:u14:2.10.7.2., +13:u05:2.10.7.2., +8:u07:rely, +13:u13:2.10.7.2., +13:u04:2.10.7.2., +8:u06:rely, +13:u08:exceeded., +13:u12:2.10.7.2., +8:u14:rely, +13:u03:2.10.7.2., +8:u05:rely, +13:u08:therefore, +13:u11:2.10.7.2., +8:u13:rely, +13:u02:2.10.7.2., +8:u04:rely, +13:u07:exceeded., +13:u10:2.10.7.2., +8:u12:rely, +8:u14:flow, +8:u23:rely, +13:u01:2.10.7.2., +8:u03:rely, +13:u06:exceeded., +13:u07:therefore, +8:u11:rely, +8:u13:flow, +13:u14:exceeded., +13:u00:2.10.7.2., +8:u02:rely, +13:u05:exceeded., +13:u06:therefore, +14:u08:channel(s), +10:u08:maxima, +8:u10:rely, +8:u12:flow, +13:u13:exceeded., +13:u14:therefore, +8:u01:rely, +13:u04:exceeded., +13:u05:therefore, +10:u07:maxima, +8:u11:flow, +13:u12:exceeded., +13:u13:therefore, +18:u14:ca_maxrequests, +8:u00:rely, +13:u03:exceeded., +13:u04:therefore, +14:u07:channel(s), +10:u06:maxima, +8:u10:flow, +13:u11:exceeded., +13:u12:therefore, +18:u13:ca_maxrequests, +13:u02:exceeded., +13:u03:therefore, +14:u06:channel(s), +10:u05:maxima, +13:u10:exceeded., +13:u11:therefore, +18:u12:ca_maxrequests, +14:u14:channel(s), +13:u01:exceeded., +13:u02:therefore, +14:u05:channel(s), +8:u08:onus, +10:u04:maxima, +13:u10:therefore, +18:u11:ca_maxrequests, +14:u13:channel(s), +13:u00:exceeded., +13:u01:therefore, +14:u04:channel(s), +10:u03:maxima, +18:u10:ca_maxrequests, +14:u12:channel(s), +8:uI2:.[];, +13:u00:therefore, +14:u03:channel(s), +8:u07:onus, +10:u02:maxima, +14:u11:channel(s), +7:u22:lim, +8:u23:limi, +8:uI1:.[];, +14:u02:channel(s), +8:u06:onus, +10:u01:maxima, +10:u08:exceed, +14:u10:channel(s), +8:u14:onus, +8:uI0:.[];, +14:u01:channel(s), +8:u05:onus, +10:u00:maxima, +10:u07:exceed, +8:u13:onus, +11:u14:credits, +14:u00:channel(s), +8:u04:onus, +10:u06:exceed, +16:u08:manipulating, +8:u12:onus, +11:u13:credits, +7:u22:onu, +8:u23:onus, +8:u03:onus, +10:u05:exceed, +16:u07:manipulating, +8:u11:onus, +11:u12:credits, +8:u02:onus, +10:u04:exceed, +16:u06:manipulating, +8:u10:onus, +11:u11:credits, +8:u01:onus, +10:u03:exceed, +16:u05:manipulating, +11:u08:thereby, +11:u10:credits, +8:u00:onus, +13:u08:2.10.7.3., +10:u02:exceed, +16:u04:manipulating, +11:u07:thereby, +8:uI2:,(.), +10:u01:exceed, +16:u03:manipulating, +11:u06:thereby, +11:u08:Padding, +8:uI1:,(.), +13:u07:2.10.7.3., +10:u00:exceed, +16:u02:manipulating, +11:u05:thereby, +11:u07:Padding, +11:u08:padding, +8:uI0:,(.), +13:u06:2.10.7.3., +16:u01:manipulating, +11:u04:thereby, +11:u06:Padding, +11:u07:padding, +20:u08:ca_headerpadsize, +13:u14:2.10.7.3., +13:u05:2.10.7.3., +16:u00:manipulating, +11:u03:thereby, +11:u05:Padding, +11:u06:padding, +20:u07:ca_headerpadsize, +16:u08:subsequently, +13:u13:2.10.7.3., +13:u04:2.10.7.3., +11:u02:thereby, +11:u04:Padding, +11:u05:padding, +20:u06:ca_headerpadsize, +16:u07:subsequently, +13:u12:2.10.7.3., +13:u03:2.10.7.3., +9:u08:data,, +11:u01:thereby, +11:u03:Padding, +11:u04:padding, +20:u05:ca_headerpadsize, +16:u06:subsequently, +13:u11:2.10.7.3., +13:u02:2.10.7.3., +11:u00:thereby, +11:u02:Padding, +11:u03:padding, +20:u04:ca_headerpadsize, +16:u05:subsequently, +13:u10:2.10.7.3., +8:uI2:,[]., +13:u01:2.10.7.3., +9:u07:data,, +11:u01:Padding, +11:u02:padding, +20:u03:ca_headerpadsize, +16:u04:subsequently, +14:u08:requested,, +11:u14:padding, +8:uI1:,[]., +13:u00:2.10.7.3., +9:u06:data,, +13:u08:boundary., +11:u00:Padding, +11:u01:padding, +20:u02:ca_headerpadsize, +16:u03:subsequently, +14:u07:requested,, +11:u13:padding, +9:u14:data,, +8:uI0:,[]., +9:u05:data,, +11:u00:padding, +20:u01:ca_headerpadsize, +16:u02:subsequently, +14:u06:requested,, +11:u12:padding, +9:u13:data,, +7:u22:Pad, +8:u23:Padd, +8:uI2:,()., +9:u04:data,, +13:u07:boundary., +20:u00:ca_headerpadsize, +16:u01:subsequently, +14:u05:requested,, +11:u11:padding, +9:u12:data,, +8:uI1:,()., +9:u03:data,, +13:u06:boundary., +16:u00:subsequently, +14:u04:requested,, +12:u08:aligned., +11:u10:padding, +9:u11:data,, +13:u14:boundary., +8:uI0:,()., +9:u02:data,, +13:u05:boundary., +11:u08:carried, +14:u03:requested,, +12:u07:aligned., +9:u10:data,, +13:u13:boundary., +9:u01:data,, +13:u04:boundary., +14:u02:requested,, +12:u06:aligned., +13:u12:boundary., +7:uI2:)"", +9:u00:data,, +13:u03:boundary., +11:u07:carried, +14:u01:requested,, +12:u05:aligned., +13:u11:boundary., +7:uI1:)"", +13:u02:boundary., +11:u06:carried, +14:u00:requested,, +12:u04:aligned., +14:u08:encounters, +13:u10:boundary., +11:u14:carried, +7:uI0:)"", +13:u01:boundary., +11:u05:carried, +12:u03:aligned., +14:u07:encounters, +11:u08:layer's, +11:u13:carried, +13:u00:boundary., +11:u04:carried, +12:u02:aligned., +14:u06:encounters, +11:u07:layer's, +11:u12:carried, +8:u23:carr, +7:uI2:,.', +11:u03:carried, +12:u01:aligned., +14:u05:encounters, +11:u06:layer's, +11:u11:carried, +7:uI1:,.', +11:u02:carried, +12:u00:aligned., +14:u04:encounters, +11:u05:layer's, +10:u08:writes, +11:u10:carried, +7:uI0:,.', +11:u01:carried, +14:u03:encounters, +11:u04:layer's, +10:u07:writes, +11:u00:carried, +14:u02:encounters, +11:u03:layer's, +10:u06:writes, +7:u22:pad, +8:u23:padd, +14:u01:encounters, +11:u02:layer's, +10:u05:writes, +14:u00:encounters, +11:u01:layer's, +10:u04:writes, +11:u00:layer's, +10:u03:writes, +10:u02:writes, +10:u01:writes, +9:u08:round, +10:u00:writes, +9:u07:round, +9:u06:round, +9:u05:round, +11:u08:primary, +11:u14:latency, +9:u04:round, +11:u07:primary, +16:u08:information,, +11:u13:latency, +14:u08:COMPOUNDs,, +9:u03:round, +11:u06:primary, +16:u07:information,, +11:u12:latency, +6:u08:go, +9:u02:round, +11:u05:primary, +16:u06:information,, +9:u08:sizes, +11:u11:latency, +14:u07:COMPOUNDs,, +9:u01:round, +11:u04:primary, +16:u05:information,, +9:u07:sizes, +11:u10:latency, +12:u14:possibly, +14:u06:COMPOUNDs,, +6:u07:go, +9:u00:round, +11:u03:primary, +16:u04:information,, +9:u06:sizes, +12:u13:possibly, +14:u14:compounds,, +14:u05:COMPOUNDs,, +6:u06:go, +10:u08:versa., +11:u02:primary, +16:u03:information,, +9:u05:sizes, +12:u12:possibly, +14:u13:compounds,, +6:u14:go, +14:u04:COMPOUNDs,, +6:u05:go, +11:u01:primary, +16:u02:information,, +9:u04:sizes, +12:u11:possibly, +14:u12:compounds,, +6:u13:go, +14:u03:COMPOUNDs,, +6:u04:go, +10:u07:versa., +10:u08:Sender, +11:u00:primary, +16:u01:information,, +9:u03:sizes, +12:u10:possibly, +14:u11:compounds,, +6:u12:go, +6:u22:go, +6:u23:go, +14:u02:COMPOUNDs,, +6:u03:go, +10:u06:versa., +8:u08:|RPC, +16:u00:information,, +9:u02:sizes, +11:u08:gather:, +14:u10:compounds,, +6:u11:go, +10:u14:versa., +14:u01:COMPOUNDs,, +6:u02:go, +10:u05:versa., +10:u07:Sender, +35:u08:\------+----------------------/, +9:u01:sizes, +11:u07:gather:, +15:u08:Request|Pad, +6:u10:go, +10:u13:versa., +14:u00:COMPOUNDs,, +6:u01:go, +10:u04:versa., +10:u06:Sender, +8:u07:|RPC, +9:u00:sizes, +11:u06:gather:, +15:u07:Request|Pad, +10:u12:versa., +10:u14:sender, +6:u00:go, +10:u03:versa., +10:u05:Sender, +8:u06:|RPC, +35:u07:\------+----------------------/, +11:u05:gather:, +15:u06:Request|Pad, +10:u11:versa., +10:u13:sender, +8:u14:|rpc, +10:u02:versa., +10:u04:Sender, +8:u05:|RPC, +35:u06:\------+----------------------/, +11:u04:gather:, +15:u05:Request|Pad, +10:u10:versa., +10:u12:sender, +8:u13:|rpc, +35:u14:\------+----------------------/, +10:u01:versa., +10:u03:Sender, +8:u04:|RPC, +35:u05:\------+----------------------/, +11:u03:gather:, +15:u04:Request|Pad, +10:u11:sender, +8:u12:|rpc, +35:u13:\------+----------------------/, +7:u22:|RP, +8:u23:|RPC, +33:uI2:----------------------------/, +10:u00:versa., +10:u02:Sender, +8:u03:|RPC, +35:u04:\------+----------------------/, +12:u08:Receiver, +11:u02:gather:, +15:u03:Request|Pad, +10:u10:sender, +8:u11:|rpc, +35:u12:\------+----------------------/, +6:u21:\-, +7:u22:\--, +8:u23:\---, +33:uI1:----------------------------/, +10:u01:Sender, +8:u02:|RPC, +35:u03:\------+----------------------/, +21:u08:\-----------+-..., +11:u01:gather:, +15:u02:Request|Pad, +12:u08:scatter:, +8:u10:|rpc, +35:u11:\------+----------------------/, +33:uI0:----------------------------/, +10:u00:Sender, +8:u01:|RPC, +35:u02:\------+----------------------/, +12:u07:Receiver, +28:u08:/-----+----------------\, +11:u00:gather:, +15:u01:Request|Pad, +12:u07:scatter:, +35:u10:\------+----------------------/, +8:u00:|RPC, +35:u01:\------+----------------------/, +12:u06:Receiver, +21:u07:\-----------+-..., +15:u00:Request|Pad, +12:u06:scatter:, +12:u14:receiver, +35:u00:\------+----------------------/, +12:u05:Receiver, +21:u06:\-----------+-..., +28:u07:/-----+----------------\, +12:u05:scatter:, +12:u13:receiver, +21:u14:\-----------+-..., +12:u04:Receiver, +21:u05:\-----------+-..., +28:u06:/-----+----------------\, +12:u04:scatter:, +12:u12:receiver, +21:u13:\-----------+-..., +28:u14:/-----+----------------\, +19:uI2:------------..., +12:u03:Receiver, +21:u04:\-----------+-..., +28:u05:/-----+----------------\, +6:u08:->, +12:u03:scatter:, +23:u08:Request|Pad|Length|, +12:u11:receiver, +21:u12:\-----------+-..., +28:u13:/-----+----------------\, +19:uI1:------------..., +26:uI2:/---------------------, +12:u02:Receiver, +21:u03:\-----------+-..., +28:u04:/-----+----------------\, +12:u02:scatter:, +23:u07:Request|Pad|Length|, +7:u08:|FS, +12:u10:receiver, +21:u11:\-----------+-..., +28:u12:/-----+----------------\, +6:u21:/-, +7:u22:/--, +8:u23:/---, +19:uI0:------------..., +26:uI1:/---------------------, +12:u01:Receiver, +21:u02:\-----------+-..., +28:u03:/-----+----------------\, +6:u07:->, +10:u08:posted, +12:u01:scatter:, +23:u06:Request|Pad|Length|, +7:u07:|FS, +21:u10:\-----------+-..., +28:u11:/-----+----------------\, +26:uI0:/---------------------, +12:u00:Receiver, +21:u01:\-----------+-..., +28:u02:/-----+----------------\, +6:u06:->, +12:u00:scatter:, +23:u05:Request|Pad|Length|, +7:u06:|FS, +28:u10:/-----+----------------\, +6:u14:->, +21:u00:\-----------+-..., +28:u01:/-----+----------------\, +6:u05:->, +10:u07:posted, +23:u04:Request|Pad|Length|, +7:u05:|FS, +16:u08:now-complete, +6:u13:->, +10:uI2:---..., +28:u00:/-----+----------------\, +6:u04:->, +10:u06:posted, +10:u08:copies, +23:u03:Request|Pad|Length|, +7:u04:|FS, +16:u07:now-complete, +6:u12:->, +10:u14:posted, +6:u21:->, +6:u22:->, +6:u23:->, +10:uI1:---..., +6:u03:->, +10:u05:posted, +10:u08:buffer, +23:u02:Request|Pad|Length|, +7:u03:|FS, +16:u06:now-complete, +6:u11:->, +10:u13:posted, +10:uI0:---..., +6:u02:->, +10:u04:posted, +10:u07:copies, +23:u01:Request|Pad|Length|, +7:u02:|FS, +16:u05:now-complete, +17:u08:advertisement, +6:u10:->, +10:u12:posted, +8:u23:post, +6:u01:->, +10:u03:posted, +10:u06:copies, +10:u07:buffer, +23:u00:Request|Pad|Length|, +7:u01:|FS, +16:u04:now-complete, +17:u07:advertisement, +10:u11:posted, +10:u14:copies, +6:u00:->, +10:u02:posted, +10:u05:copies, +10:u06:buffer, +13:u08:2.10.7.4., +7:u00:|FS, +16:u03:now-complete, +17:u06:advertisement, +10:u10:posted, +10:u13:copies, +10:u14:buffer, +10:u01:posted, +10:u04:copies, +10:u05:buffer, +16:u02:now-complete, +17:u05:advertisement, +8:u08:Dual, +10:u12:copies, +10:u13:buffer, +7:u22:cop, +8:u23:copi, +10:u00:posted, +10:u03:copies, +10:u04:buffer, +13:u07:2.10.7.4., +9:u08:RDMA), +16:u01:now-complete, +17:u04:advertisement, +8:u07:Dual, +10:u11:copies, +10:u12:buffer, +10:u02:copies, +10:u03:buffer, +13:u06:2.10.7.4., +16:u00:now-complete, +17:u03:advertisement, +8:u06:Dual, +10:u10:copies, +10:u11:buffer, +13:u14:2.10.7.4., +10:u01:copies, +10:u02:buffer, +13:u05:2.10.7.4., +9:u07:RDMA), +17:u02:advertisement, +8:u05:Dual, +10:u10:buffer, +13:u13:2.10.7.4., +10:u00:copies, +10:u01:buffer, +13:u04:2.10.7.4., +9:u06:RDMA), +11:u08:assume,, +17:u01:advertisement, +8:u04:Dual, +13:u12:2.10.7.4., +9:u14:rdma), +15:uI2:(..,[])""(-, +10:u00:buffer, +13:u03:2.10.7.4., +9:u05:RDMA), +17:u00:advertisement, +8:u03:Dual, +13:u11:2.10.7.4., +9:u13:rdma), +15:uI1:(..,[])""(-, +8:uI2:),"", +13:u02:2.10.7.4., +9:u04:RDMA), +11:u07:assume,, +8:u02:Dual, +13:u10:2.10.7.4., +9:u12:rdma), +15:uI0:(..,[])""(-, +8:uI1:),"", +13:u01:2.10.7.4., +9:u03:RDMA), +11:u06:assume,, +8:u01:Dual, +9:u11:rdma), +11:u14:assume,, +8:uI0:),"", +13:u00:2.10.7.4., +9:u02:RDMA), +11:u05:assume,, +11:u08:2.10.8., +8:u00:Dual, +9:u10:rdma), +11:u13:assume,, +9:u01:RDMA), +11:u04:assume,, +11:u12:assume,, +8:u23:assu, +9:u00:RDMA), +11:u03:assume,, +11:u07:2.10.8., +11:u11:assume,, +7:uI2:-(., +11:u02:assume,, +11:u06:2.10.8., +11:u10:assume,, +11:u14:2.10.8., +7:uI1:-(., +11:u01:assume,, +11:u05:2.10.8., +11:u13:2.10.8., +7:uI0:-(., +11:u00:assume,, +11:u04:2.10.8., +11:u12:2.10.8., +11:u03:2.10.8., +11:u11:2.10.8., +11:u02:2.10.8., +13:u08:2.10.8.1., +11:u10:2.10.8., +11:u01:2.10.8., +11:u00:2.10.8., +13:u07:2.10.8.1., +22:u08:session/connection, +13:u06:2.10.8.1., +20:u08:client-initiated, +22:u07:session/connection, +13:u14:2.10.8.1., +13:u05:2.10.8.1., +22:u06:session/connection, +13:u13:2.10.8.1., +13:u04:2.10.8.1., +20:u07:client-initiated, +22:u05:session/connection, +13:u12:2.10.8.1., +7:uI2:/,., +13:u03:2.10.8.1., +20:u06:client-initiated, +22:u04:session/connection, +11:u08:18.35),, +13:u11:2.10.8.1., +20:u14:client-initiated, +7:uI1:/,., +13:u02:2.10.8.1., +20:u05:client-initiated, +22:u03:session/connection, +11:u07:18.35),, +13:u08:activated, +13:u10:2.10.8.1., +20:u13:client-initiated, +7:uI0:/,., +8:uI2:-(.), +13:u01:2.10.8.1., +20:u04:client-initiated, +22:u02:session/connection, +11:u06:18.35),, +13:u07:activated, +20:u12:client-initiated, +8:uI1:-(.), +7:uI2:.'(, +13:u00:2.10.8.1., +20:u03:client-initiated, +13:u08:2.10.8.2., +22:u01:session/connection, +11:u05:18.35),, +13:u06:activated, +14:u08:2.10.8.2)., +20:u11:client-initiated, +8:uI0:-(.), +7:uI1:.'(, +20:u02:client-initiated, +22:u00:session/connection, +11:u04:18.35),, +13:u05:activated, +14:u07:2.10.8.2)., +15:u08:Backchannel, +20:u10:client-initiated, +7:uI0:.'(, +20:u01:client-initiated, +13:u07:2.10.8.2., +11:u03:18.35),, +13:u04:activated, +14:u06:2.10.8.2)., +15:u07:Backchannel, +20:u00:client-initiated, +13:u06:2.10.8.2., +11:u02:18.35),, +13:u03:activated, +14:u05:2.10.8.2)., +15:u06:Backchannel, +13:u14:2.10.8.2., +13:u05:2.10.8.2., +11:u01:18.35),, +13:u02:activated, +14:u04:2.10.8.2)., +15:u05:Backchannel, +13:u13:2.10.8.2., +13:u04:2.10.8.2., +11:u00:18.35),, +13:u01:activated, +14:u03:2.10.8.2)., +15:u04:Backchannel, +13:u12:2.10.8.2., +13:u03:2.10.8.2., +13:u00:activated, +14:u02:2.10.8.2)., +15:u03:Backchannel, +13:u11:2.10.8.2., +13:u02:2.10.8.2., +14:u01:2.10.8.2)., +15:u02:Backchannel, +11:u08:offers,, +13:u10:2.10.8.2., +13:u01:2.10.8.2., +14:u00:2.10.8.2)., +15:u01:Backchannel, +11:u07:offers,, +13:u00:2.10.8.2., +15:u00:Backchannel, +11:u06:offers,, +11:u05:offers,, +11:u04:offers,, +11:u03:offers,, +10:u08:18.33), +11:u02:offers,, +10:u07:18.33), +17:u08:combinations., +11:u01:offers,, +10:u06:18.33), +17:u07:combinations., +8:u08:note, +11:u00:offers,, +10:u05:18.33), +17:u06:combinations., +8:u07:note, +13:u08:2.10.8.3), +8:uI2:(.)/, +13:u08:2.10.8.3., +10:u04:18.33), +17:u05:combinations., +8:u06:note, +13:u07:2.10.8.3), +12:u08:contexts, +8:uI1:(.)/, +10:u03:18.33), +17:u04:combinations., +8:u05:note, +13:u06:2.10.8.3), +12:u07:contexts, +8:uI0:(.)/, +6:uI2:(., +13:u07:2.10.8.3., +10:u02:18.33), +17:u03:combinations., +8:u04:note, +13:u05:2.10.8.3), +12:u06:contexts, +6:uI1:(., +9:uI2:...)-, +13:u06:2.10.8.3., +10:u01:18.33), +17:u02:combinations., +8:u03:note, +13:u04:2.10.8.3), +12:u05:contexts, +13:u14:2.10.8.3., +6:uI0:(., +9:uI1:...)-, +13:u05:2.10.8.3., +14:u08:legitimate, +10:u00:18.33), +17:u01:combinations., +8:u02:note, +13:u03:2.10.8.3), +12:u04:contexts, +13:u13:2.10.8.3., +9:uI0:...)-, +13:u04:2.10.8.3., +17:u00:combinations., +8:u01:note, +13:u02:2.10.8.3), +12:u03:contexts, +13:u12:2.10.8.3., +13:u03:2.10.8.3., +14:u07:legitimate, +14:u08:attacker's, +8:u00:note, +13:u01:2.10.8.3), +12:u02:contexts, +13:u11:2.10.8.3., +13:u02:2.10.8.3., +14:u06:legitimate, +13:u00:2.10.8.3), +12:u01:contexts, +13:u10:2.10.8.3., +14:u14:legitimate, +13:u01:2.10.8.3., +14:u05:legitimate, +14:u07:attacker's, +12:u00:contexts, +14:u13:legitimate, +13:u00:2.10.8.3., +14:u04:legitimate, +14:u06:attacker's, +14:u12:legitimate, +14:u14:attacker's, +7:u22:leg, +8:u23:legi, +14:u03:legitimate, +14:u05:attacker's, +14:u11:legitimate, +14:u13:attacker's, +14:u02:legitimate, +14:u04:attacker's, +14:u10:legitimate, +14:u12:attacker's, +14:u01:legitimate, +14:u03:attacker's, +11:u08:Setting, +14:u11:attacker's, +14:u00:legitimate, +14:u02:attacker's, +15:u08:credentials, +14:u10:attacker's, +14:u01:attacker's, +11:u07:Setting, +11:u08:around,, +14:u00:attacker's, +11:u06:Setting, +15:u07:credentials, +11:u14:setting, +11:u05:Setting, +15:u06:credentials, +11:u07:around,, +13:u08:releasing, +11:u13:setting, +15:u14:credentials, +11:u04:Setting, +15:u05:credentials, +11:u06:around,, +13:u07:releasing, +11:u12:setting, +15:u13:credentials, +11:u14:around,, +7:u22:Set, +8:u23:Sett, +11:u03:Setting, +15:u04:credentials, +11:u05:around,, +13:u06:releasing, +11:u11:setting, +15:u12:credentials, +11:u13:around,, +11:u02:Setting, +15:u03:credentials, +11:u04:around,, +13:u05:releasing, +11:u10:setting, +15:u11:credentials, +11:u12:around,, +7:u22:aro, +8:u23:arou, +11:u01:Setting, +15:u02:credentials, +11:u03:around,, +13:u04:releasing, +15:u10:credentials, +11:u11:around,, +11:u00:Setting, +15:u01:credentials, +11:u02:around,, +13:u03:releasing, +11:u10:around,, +15:u00:credentials, +11:u01:around,, +13:u02:releasing, +11:u00:around,, +13:u01:releasing, +13:u00:releasing, +12:u08:client)., +12:u07:client)., +12:u06:client)., +12:u05:client)., +12:u04:client)., +11:u08:traits:, +12:u03:client)., +12:u02:client)., +11:u07:traits:, +12:u01:client)., +11:u06:traits:, +14:u08:destroying, +12:u00:client)., +11:u14:traits:, +11:u05:traits:, +11:u13:traits:, +11:u04:traits:, +14:u07:destroying, +11:u12:traits:, +8:u23:trai, +11:u03:traits:, +14:u06:destroying, +16:u08:maintenance,, +11:u11:traits:, +14:u14:destroying, +11:u02:traits:, +14:u05:destroying, +11:u10:traits:, +14:u13:destroying, +11:u01:traits:, +14:u04:destroying, +16:u07:maintenance,, +14:u12:destroying, +11:u00:traits:, +14:u03:destroying, +16:u06:maintenance,, +14:u11:destroying, +16:u14:maintenance,, +14:u02:destroying, +16:u05:maintenance,, +14:u10:destroying, +16:u13:maintenance,, +14:u01:destroying, +16:u04:maintenance,, +16:u12:maintenance,, +14:u00:destroying, +16:u03:maintenance,, +16:u11:maintenance,, +16:u02:maintenance,, +10:u08:LOCKU,, +16:u10:maintenance,, +9:uI2:,,,,., +16:u01:maintenance,, +10:u08:CLOSE,, +9:uI1:,,,,., +16:u00:maintenance,, +10:u07:LOCKU,, +10:u07:CLOSE,, +11:u08:removes, +9:uI0:,,,,., +10:u06:LOCKU,, +10:u06:CLOSE,, +11:u07:removes, +10:u14:locku,, +9:uI2:-(..,, +10:u05:LOCKU,, +10:u05:CLOSE,, +11:u06:removes, +10:u13:locku,, +9:uI1:-(..,, +9:uI2:,,.)., +10:u04:LOCKU,, +12:u08:(perhaps, +10:u04:CLOSE,, +11:u05:removes, +14:u08:principal,, +10:u12:locku,, +7:u22:LOC, +8:u23:LOCK, +9:uI0:-(..,, +9:uI1:,,.)., +10:u03:LOCKU,, +15:u08:establishes, +10:u03:CLOSE,, +11:u04:removes, +14:u07:principal,, +10:u11:locku,, +9:uI0:,,.)., +10:u02:LOCKU,, +12:u07:(perhaps, +10:u02:CLOSE,, +11:u03:removes, +14:u06:principal,, +10:u10:locku,, +10:u01:LOCKU,, +12:u06:(perhaps, +15:u07:establishes, +14:u08:credential, +10:u01:CLOSE,, +11:u02:removes, +14:u05:principal,, +12:u14:(perhaps, +10:u00:LOCKU,, +12:u05:(perhaps, +15:u06:establishes, +10:u00:CLOSE,, +11:u01:removes, +14:u04:principal,, +12:u13:(perhaps, +15:u14:establishes, +12:u04:(perhaps, +15:u05:establishes, +14:u07:credential, +11:u00:removes, +14:u03:principal,, +12:u12:(perhaps, +15:u13:establishes, +7:u22:(pe, +8:u23:(per, +12:u03:(perhaps, +15:u04:establishes, +14:u06:credential, +14:u02:principal,, +12:u11:(perhaps, +15:u12:establishes, +14:u14:credential, +12:u02:(perhaps, +15:u03:establishes, +14:u05:credential, +14:u01:principal,, +12:u10:(perhaps, +15:u11:establishes, +14:u13:credential, +11:u14:sp4_ssv, +12:u01:(perhaps, +15:u02:establishes, +14:u04:credential, +14:u00:principal,, +15:u10:establishes, +14:u12:credential, +11:u13:sp4_ssv, +12:u00:(perhaps, +15:u01:establishes, +14:u03:credential, +14:u11:credential, +11:u12:sp4_ssv, +15:u00:establishes, +14:u02:credential, +12:u08:Assuming, +14:u10:credential, +11:u11:sp4_ssv, +14:u01:credential, +11:u10:sp4_ssv, +14:u00:credential, +12:u07:Assuming, +20:u08:DESTROY_SESSION,, +8:u08:like, +12:u06:Assuming, +15:u08:associating, +8:u07:like, +12:u14:assuming, +12:u05:Assuming, +20:u07:DESTROY_SESSION,, +8:u06:like, +12:u13:assuming, +12:u04:Assuming, +20:u06:DESTROY_SESSION,, +15:u07:associating, +8:u05:like, +12:u12:assuming, +20:u14:destroy_session,, +7:u22:Ass, +8:u23:Assu, +12:u03:Assuming, +20:u05:DESTROY_SESSION,, +15:u06:associating, +8:u04:like, +12:u11:assuming, +20:u13:destroy_session,, +15:u14:associating, +12:u02:Assuming, +20:u04:DESTROY_SESSION,, +15:u05:associating, +8:u03:like, +12:u10:assuming, +20:u12:destroy_session,, +15:u13:associating, +12:u01:Assuming, +20:u03:DESTROY_SESSION,, +15:u04:associating, +8:u02:like, +20:u11:destroy_session,, +15:u12:associating, +12:u00:Assuming, +20:u02:DESTROY_SESSION,, +15:u03:associating, +8:u01:like, +20:u10:destroy_session,, +15:u11:associating, +20:u01:DESTROY_SESSION,, +15:u02:associating, +8:u00:like, +15:u10:associating, +20:u00:DESTROY_SESSION,, +15:u01:associating, +15:u00:associating, +11:u08:machine, +11:u07:machine, +11:u06:machine, +11:u14:machine, +11:u05:machine, +11:u13:machine, +11:u04:machine, +11:u12:machine, +7:u22:mac, +8:u23:mach, +11:u03:machine, +11:u11:machine, +11:u02:machine, +19:u08:inconvenienced., +11:u10:machine, +11:u01:machine, +11:u00:machine, +19:u07:inconvenienced., +19:u06:inconvenienced., +19:u14:inconvenienced., +19:u05:inconvenienced., +19:u13:inconvenienced., +19:u04:inconvenienced., +9:u08:each,, +19:u12:inconvenienced., +19:u03:inconvenienced., +19:u11:inconvenienced., +19:u02:inconvenienced., +9:u07:each,, +19:u10:inconvenienced., +19:u01:inconvenienced., +9:u06:each,, +9:u14:each,, +19:u00:inconvenienced., +9:u05:each,, +9:u13:each,, +9:u04:each,, +13:u08:comprised, +9:u12:each,, +9:u03:each,, +13:u08:permanent, +13:u07:comprised, +9:u11:each,, +9:u02:each,, +13:u06:comprised, +9:u10:each,, +9:u01:each,, +13:u07:permanent, +13:u05:comprised, +9:u00:each,, +13:u06:permanent, +13:u04:comprised, +18:u08:eavesdropping,, +13:u14:permanent, +13:u05:permanent, +15:u08:intractable, +13:u03:comprised, +18:u07:eavesdropping,, +13:u13:permanent, +13:u04:permanent, +13:u02:comprised, +18:u06:eavesdropping,, +13:u12:permanent, +11:u14:prevent, +13:u03:permanent, +15:u07:intractable, +13:u01:comprised, +18:u05:eavesdropping,, +13:u11:permanent, +11:u13:prevent, +13:u02:permanent, +15:u06:intractable, +13:u00:comprised, +18:u04:eavesdropping,, +13:u10:permanent, +11:u12:prevent, +15:u14:intractable, +13:u01:permanent, +15:u05:intractable, +18:u03:eavesdropping,, +11:u11:prevent, +15:u13:intractable, +9:u14:rogue, +13:u00:permanent, +15:u04:intractable, +18:u02:eavesdropping,, +11:u10:prevent, +15:u12:intractable, +9:u13:rogue, +7:u14:id:, +15:u03:intractable, +18:u01:eavesdropping,, +15:u11:intractable, +9:u12:rogue, +7:u13:id:, +7:u22:rog, +8:u23:rogu, +15:u02:intractable, +18:u00:eavesdropping,, +15:u10:intractable, +9:u11:rogue, +7:u12:id:, +7:u22:ID:, +7:u23:ID:, +15:u01:intractable, +9:u10:rogue, +7:u11:id:, +15:u00:intractable, +7:u10:id:, +10:u08:tokens, +9:u14:least, +9:u13:least, +10:u07:tokens, +9:u12:least, +10:u06:tokens, +9:u11:least, +10:u14:tokens, +10:u05:tokens, +13:u08:exclusive, +12:u08:Instead,, +9:u10:least, +10:u13:tokens, +10:u04:tokens, +12:u07:Instead,, +8:u08:ORed, +10:u12:tokens, +10:u03:tokens, +13:u07:exclusive, +12:u06:Instead,, +8:u07:ORed, +10:u11:tokens, +10:u02:tokens, +13:u06:exclusive, +12:u05:Instead,, +8:u06:ORed, +10:u10:tokens, +13:u14:exclusive, +10:u01:tokens, +13:u05:exclusive, +12:u04:Instead,, +8:u05:ORed, +13:u13:exclusive, +10:u00:tokens, +13:u04:exclusive, +12:u03:Instead,, +8:u04:ORed, +13:u12:exclusive, +8:u23:excl, +13:u03:exclusive, +12:u02:Instead,, +8:u03:ORed, +13:u11:exclusive, +13:u02:exclusive, +12:u01:Instead,, +8:u02:ORed, +13:u10:exclusive, +13:u01:exclusive, +12:u00:Instead,, +8:u01:ORed, +13:u00:exclusive, +16:u08:credentials,, +8:u00:ORed, +8:u08:Here, +7:u03:70], +16:u07:credentials,, +7:u02:70], +16:u06:credentials,, +8:u07:Here, +7:u01:70], +7:u08:Eve, +16:u14:credentials,, +16:u05:credentials,, +8:u06:Here, +7:u00:70], +7:u07:Eve, +11:u08:attack:, +16:u13:credentials,, +8:u14:here, +16:u04:credentials,, +8:u05:Here, +9:u08:Eve's, +7:u06:Eve, +11:u07:attack:, +16:u12:credentials,, +8:u13:here, +9:u14:named, +16:u03:credentials,, +8:u04:Here, +7:u05:Eve, +11:u06:attack:, +16:u11:credentials,, +8:u12:here, +9:u13:named, +16:u02:credentials,, +8:u03:Here, +9:u07:Eve's, +7:u04:Eve, +11:u05:attack:, +16:u10:credentials,, +8:u11:here, +9:u12:named, +16:u01:credentials,, +8:u02:Here, +9:u06:Eve's, +15:u08:credential., +7:u03:Eve, +11:u04:attack:, +8:u10:here, +9:u11:named, +9:u14:eve's, +16:u00:credentials,, +8:u01:Here, +9:u05:Eve's, +7:u02:Eve, +11:u03:attack:, +9:u10:named, +9:u13:eve's, +8:u00:Here, +9:u04:Eve's, +15:u07:credential., +7:u01:Eve, +11:u02:attack:, +9:u12:eve's, +8:u23:Eve', +9:u03:Eve's, +15:u06:credential., +7:u00:Eve, +11:u01:attack:, +9:u11:eve's, +15:u14:credential., +9:u02:Eve's, +15:u05:credential., +13:u08:eavesdrop, +11:u00:attack:, +9:u10:eve's, +15:u13:credential., +9:u01:Eve's, +15:u04:credential., +15:u12:credential., +9:u00:Eve's, +15:u03:credential., +13:u07:eavesdrop, +15:u11:credential., +15:u02:credential., +13:u06:eavesdrop, +15:u10:credential., +13:u14:eavesdrop, +15:u01:credential., +13:u05:eavesdrop, +7:u08:her, +13:u13:eavesdrop, +15:u00:credential., +13:u04:eavesdrop, +11:u08:accept,, +7:u07:her, +13:u12:eavesdrop, +7:u22:eav, +8:u23:eave, +13:u03:eavesdrop, +7:u06:her, +13:u11:eavesdrop, +13:u02:eavesdrop, +11:u07:accept,, +7:u05:her, +13:u10:eavesdrop, +13:u01:eavesdrop, +11:u06:accept,, +7:u08:Bob, +7:u04:her, +11:u14:accept,, +13:u00:eavesdrop, +11:u05:accept,, +7:u03:her, +12:u08:accesses, +11:u13:accept,, +11:u04:accept,, +7:u07:Bob, +7:u02:her, +12:u07:accesses, +11:u12:accept,, +11:u03:accept,, +7:u06:Bob, +8:u08:use,, +7:u01:her, +12:u06:accesses, +11:u11:accept,, +7:u14:bob, +11:u02:accept,, +7:u05:Bob, +7:u00:her, +12:u05:accesses, +11:u10:accept,, +7:u13:bob, +11:u01:accept,, +7:u04:Bob, +8:u07:use,, +12:u04:accesses, +10:u08:unable, +7:u12:bob, +7:u22:Bob, +7:u23:Bob, +11:u00:accept,, +7:u03:Bob, +8:u06:use,, +12:u03:accesses, +10:u07:unable, +7:u08:old, +7:u11:bob, +8:u14:use,, +7:u02:Bob, +8:u05:use,, +12:u02:accesses, +10:u06:unable, +7:u07:old, +7:u10:bob, +8:u13:use,, +7:u01:Bob, +8:u04:use,, +12:u01:accesses, +10:u05:unable, +7:u06:old, +9:u08:Bob's, +8:u12:use,, +8:u23:use,, +7:u00:Bob, +8:u03:use,, +12:u00:accesses, +10:u04:unable, +7:u05:old, +9:u07:Bob's, +8:u11:use,, +8:u02:use,, +10:u03:unable, +7:u04:old, +9:u06:Bob's, +8:u10:use,, +8:u01:use,, +10:u02:unable, +7:u03:old, +9:u05:Bob's, +8:u00:use,, +10:u01:unable, +7:u02:old, +9:u04:Bob's, +12:u08:hijacked, +10:u00:unable, +7:u01:old, +9:u03:Bob's, +12:u08:question, +7:u00:old, +9:u02:Bob's, +12:u07:question, +12:u07:hijacked, +12:u08:SET_SSV,, +9:u01:Bob's, +12:u06:question, +8:u08:Bob,, +12:u06:hijacked, +9:u00:Bob's, +12:u05:question, +8:u07:Bob,, +12:u14:hijacked, +12:u05:hijacked, +12:u07:SET_SSV,, +11:u08:SET_SSV, +12:u04:question, +8:u06:Bob,, +7:u08:Let, +12:u13:hijacked, +14:u14:principal,, +5:uI2:?, +12:u04:hijacked, +12:u06:SET_SSV,, +12:u03:question, +8:u05:Bob,, +7:u07:Let, +12:u12:hijacked, +14:u13:principal,, +12:u14:set_ssv,, +7:u22:hij, +8:u23:hija, +5:uI1:?, +12:u03:hijacked, +12:u05:SET_SSV,, +11:u07:SET_SSV, +12:u02:question, +8:u04:Bob,, +7:u06:Let, +12:u11:hijacked, +14:u12:principal,, +12:u13:set_ssv,, +5:uI0:?, +7:uI2:,-:, +12:u02:hijacked, +12:u04:SET_SSV,, +11:u06:SET_SSV, +12:u01:question, +8:u03:Bob,, +7:u05:Let, +12:u10:hijacked, +14:u11:principal,, +12:u12:set_ssv,, +11:u14:set_ssv, +7:uI1:,-:, +12:u01:hijacked, +12:u03:SET_SSV,, +11:u05:SET_SSV, +12:u00:question, +8:u02:Bob,, +7:u04:Let, +14:u10:principal,, +12:u11:set_ssv,, +11:u13:set_ssv, +7:uI0:,-:, +12:u00:hijacked, +12:u02:SET_SSV,, +11:u04:SET_SSV, +8:u01:Bob,, +7:u03:Let, +7:u08:71], +12:u10:set_ssv,, +11:u12:set_ssv, +12:u01:SET_SSV,, +11:u03:SET_SSV, +8:u00:Bob,, +7:u02:Let, +7:u07:71], +11:u11:set_ssv, +12:u00:SET_SSV,, +11:u02:SET_SSV, +7:u01:Let, +7:u06:71], +11:u10:set_ssv, +11:u01:SET_SSV, +7:u00:Let, +7:u05:71], +11:u00:SET_SSV, +7:u04:71], +7:u03:71], +7:u02:71], +9:u08:fail., +7:u01:71], +10:u08:digest, +14:u08:apparently, +7:u00:71], +10:u07:digest, +8:u08:That, +7:u14:eve, +9:u07:fail., +10:u06:digest, +8:u07:That, +7:u13:eve, +9:u06:fail., +14:u07:apparently, +10:u05:digest, +8:u06:That, +18:u08:Alternatively,, +7:u12:eve, +9:u14:fail., +7:u23:Eve, +9:u05:fail., +14:u06:apparently, +16:u08:verification, +10:u04:digest, +8:u05:That, +18:u07:Alternatively,, +7:u11:eve, +9:u13:fail., +14:u14:apparently, +9:u04:fail., +14:u05:apparently, +10:u03:digest, +8:u04:That, +18:u06:Alternatively,, +7:u10:eve, +9:u12:fail., +14:u13:apparently, +9:u03:fail., +14:u04:apparently, +16:u07:verification, +12:u08:apparent, +10:u02:digest, +8:u03:That, +18:u05:Alternatively,, +9:u11:fail., +14:u12:apparently, +8:u23:appa, +9:u02:fail., +14:u03:apparently, +16:u06:verification, +10:u01:digest, +8:u02:That, +18:u04:Alternatively,, +9:u10:fail., +14:u11:apparently, +16:u14:verification, +9:u01:fail., +14:u02:apparently, +16:u05:verification, +12:u07:apparent, +10:u00:digest, +8:u01:That, +18:u03:Alternatively,, +14:u10:apparently, +16:u13:verification, +9:u00:fail., +14:u01:apparently, +16:u04:verification, +12:u06:apparent, +8:u00:That, +18:u02:Alternatively,, +16:u12:verification, +12:u14:apparent, +14:u00:apparently, +16:u03:verification, +12:u05:apparent, +18:u01:Alternatively,, +16:u11:verification, +12:u13:apparent, +16:u02:verification, +12:u04:apparent, +18:u00:Alternatively,, +16:u10:verification, +12:u12:apparent, +7:uI2:*,,, +16:u01:verification, +12:u03:apparent, +12:u11:apparent, +7:uI1:*,,, +16:u00:verification, +12:u02:apparent, +12:u08:destroys, +12:u10:apparent, +7:uI0:*,,, +12:u01:apparent, +12:u00:apparent, +12:u07:destroys, +12:u06:destroys, +12:u14:destroys, +12:u05:destroys, +12:u13:destroys, +12:u04:destroys, +12:u12:destroys, +12:u03:destroys, +12:u11:destroys, +12:u02:destroys, +12:u10:destroys, +12:u01:destroys, +13:u08:hijacked., +12:u00:destroys, +13:u07:hijacked., +13:u06:hijacked., +13:u14:hijacked., +13:u05:hijacked., +13:u13:hijacked., +13:u04:hijacked., +13:u12:hijacked., +13:u03:hijacked., +13:u11:hijacked., +13:u02:hijacked., +13:u10:hijacked., +10:u14:digest, +13:u01:hijacked., +10:u13:digest, +13:u00:hijacked., +10:u12:digest, +7:u22:dig, +8:u23:dige, +7:u08:72], +10:u11:digest, +7:u07:72], +10:u10:digest, +7:u06:72], +7:u05:72], +7:u04:72], +12:u08:summary,, +7:u03:72], +12:u07:summary,, +13:u08:malicious, +7:u02:72], +12:u06:summary,, +10:u08:hijack, +7:u01:72], +12:u05:summary,, +8:u08:user, +13:u07:malicious, +7:u00:72], +12:u04:summary,, +8:u07:user, +13:u06:malicious, +10:u07:hijack, +12:u03:summary,, +8:u06:user, +13:u14:malicious, +7:uI2:,.-, +13:u05:malicious, +10:u06:hijack, +12:u02:summary,, +8:u05:user, +13:u13:malicious, +10:u14:hijack, +7:uI1:,.-, +13:u04:malicious, +10:u05:hijack, +12:u01:summary,, +8:u04:user, +13:u12:malicious, +10:u13:hijack, +7:u22:mal, +8:u23:mali, +7:uI0:,.-, +13:u03:malicious, +10:u04:hijack, +12:u00:summary,, +8:u03:user, +13:u08:hijacking, +13:u11:malicious, +10:u12:hijack, +13:u02:malicious, +10:u03:hijack, +8:u02:user, +13:u07:hijacking, +13:u10:malicious, +10:u11:hijack, +13:u01:malicious, +10:u02:hijack, +8:u01:user, +13:u06:hijacking, +10:u10:hijack, +13:u00:malicious, +10:u01:hijack, +8:u00:user, +13:u05:hijacking, +10:u00:hijack, +12:u08:clients., +13:u04:hijacking, +13:u03:hijacking, +12:u07:clients., +13:u02:hijacking, +12:u06:clients., +13:u01:hijacking, +12:u14:clients., +12:u05:clients., +13:u00:hijacking, +10:u08:force,, +12:u13:clients., +12:u04:clients., +11:u08:2.10.9., +10:u07:force,, +12:u12:clients., +12:u03:clients., +10:u06:force,, +12:u11:clients., +12:u02:clients., +11:u07:2.10.9., +10:u05:force,, +12:u10:clients., +12:u01:clients., +11:u06:2.10.9., +10:u04:force,, +11:u14:2.10.9., +12:u00:clients., +11:u05:2.10.9., +10:u03:force,, +11:u13:2.10.9., +9:uI2:...(), +11:u04:2.10.9., +10:u02:force,, +11:u12:2.10.9., +9:uI1:...(), +11:u03:2.10.9., +12:u08:(emitted, +10:u01:force,, +11:u11:2.10.9., +9:uI0:...(), +11:u02:2.10.9., +14:u08:GSS_Wrap)., +10:u00:force,, +11:u10:2.10.9., +11:u01:2.10.9., +12:u07:(emitted, +11:u00:2.10.9., +12:u06:(emitted, +14:u07:GSS_Wrap)., +51:u08:iso.org.dod.internet.private.enterprise.Michael, +12:u14:(emitted, +12:u05:(emitted, +14:u06:GSS_Wrap)., +28:u08:(1.3.6.1.4.1.28882.1.1)., +23:u08:Eisler.nfs.ssv_mech, +12:u13:(emitted, +14:u14:gss_wrap)., +12:u04:(emitted, +14:u05:GSS_Wrap)., +51:u07:iso.org.dod.internet.private.enterprise.Michael, +23:u07:Eisler.nfs.ssv_mech, +12:u12:(emitted, +14:u13:gss_wrap)., +7:u22:(em, +8:u23:(emi, +12:u03:(emitted, +14:u04:GSS_Wrap)., +51:u06:iso.org.dod.internet.private.enterprise.Michael, +28:u07:(1.3.6.1.4.1.28882.1.1)., +23:u06:Eisler.nfs.ssv_mech, +12:u11:(emitted, +14:u12:gss_wrap)., +51:u14:iso.org.dod.internet.private.enterprise.michael, +12:u02:(emitted, +14:u03:GSS_Wrap)., +51:u05:iso.org.dod.internet.private.enterprise.Michael, +28:u06:(1.3.6.1.4.1.28882.1.1)., +23:u05:Eisler.nfs.ssv_mech, +12:u10:(emitted, +14:u11:gss_wrap)., +51:u13:iso.org.dod.internet.private.enterprise.michael, +28:u14:(1.3.6.1.4.1.28882.1.1)., +12:u01:(emitted, +14:u02:GSS_Wrap)., +51:u04:iso.org.dod.internet.private.enterprise.Michael, +28:u05:(1.3.6.1.4.1.28882.1.1)., +23:u04:Eisler.nfs.ssv_mech, +14:u10:gss_wrap)., +51:u12:iso.org.dod.internet.private.enterprise.michael, +28:u13:(1.3.6.1.4.1.28882.1.1)., +7:u22:iso, +8:u23:iso., +15:uI2:(........)., +12:u00:(emitted, +14:u01:GSS_Wrap)., +51:u03:iso.org.dod.internet.private.enterprise.Michael, +28:u04:(1.3.6.1.4.1.28882.1.1)., +23:u03:Eisler.nfs.ssv_mech, +51:u11:iso.org.dod.internet.private.enterprise.michael, +28:u12:(1.3.6.1.4.1.28882.1.1)., +7:u22:(1., +8:u23:(1.3, +15:uI1:(........)., +14:u00:GSS_Wrap)., +51:u02:iso.org.dod.internet.private.enterprise.Michael, +28:u03:(1.3.6.1.4.1.28882.1.1)., +23:u02:Eisler.nfs.ssv_mech, +51:u10:iso.org.dod.internet.private.enterprise.michael, +28:u11:(1.3.6.1.4.1.28882.1.1)., +15:uI0:(........)., +51:u01:iso.org.dod.internet.private.enterprise.Michael, +28:u02:(1.3.6.1.4.1.28882.1.1)., +23:u01:Eisler.nfs.ssv_mech, +28:u10:(1.3.6.1.4.1.28882.1.1)., +51:u00:iso.org.dod.internet.private.enterprise.Michael, +28:u01:(1.3.6.1.4.1.28882.1.1)., +23:u00:Eisler.nfs.ssv_mech, +28:u00:(1.3.6.1.4.1.28882.1.1)., +15:u08:calculation, +15:u07:calculation, +15:u06:calculation, +10:u08:output, +15:u05:calculation, +15:u04:calculation, +10:u07:output, +15:u03:calculation, +13:u08:algorithm, +10:u06:output, +15:u02:calculation, +13:u07:algorithm, +10:u14:output, +10:u05:output, +15:u01:calculation, +13:u06:algorithm, +10:u13:output, +10:u04:output, +15:u00:calculation, +13:u05:algorithm, +7:u08:73], +10:u12:output, +8:u23:outp, +10:u03:output, +13:u04:algorithm, +7:u07:73], +10:u11:output, +10:u02:output, +13:u03:algorithm, +7:u06:73], +10:u10:output, +10:u01:output, +13:u02:algorithm, +7:u05:73], +10:u00:output, +10:u08:subkey, +13:u01:algorithm, +7:u04:73], +13:u00:algorithm, +7:u03:73], +10:u07:subkey, +7:u02:73], +10:u06:subkey, +7:u01:73], +10:u05:subkey, +10:u14:subkey, +7:u00:73], +10:u04:subkey, +10:u13:subkey, +6:u08:/*, +10:u03:subkey, +10:u12:subkey, +8:u23:subk, +8:u08:enum, +10:u02:subkey, +9:u08:Input, +10:u11:subkey, +6:u07:/*, +23:u08:SSV4_SUBKEY_MIC_I2T, +10:u01:subkey, +9:u07:Input, +15:u08:ssv_subkey4, +10:u10:subkey, +6:u06:/*, +8:u07:enum, +10:u00:subkey, +9:u06:Input, +15:u07:ssv_subkey4, +6:u14:/*, +6:u05:/*, +8:u06:enum, +23:u07:SSV4_SUBKEY_MIC_I2T, +23:u08:SSV4_SUBKEY_MIC_T2I, +9:u05:Input, +15:u06:ssv_subkey4, +6:u13:/*, +8:u14:enum, +8:uI2:/**/, +6:u04:/*, +8:u05:enum, +23:u06:SSV4_SUBKEY_MIC_I2T, +9:u04:Input, +15:u05:ssv_subkey4, +6:u12:/*, +8:u13:enum, +23:u14:ssv4_subkey_mic_i2t, +6:u21:/*, +6:u22:/*, +6:u23:/*, +8:uI1:/**/, +6:u03:/*, +8:u04:enum, +23:u05:SSV4_SUBKEY_MIC_I2T, +23:u07:SSV4_SUBKEY_MIC_T2I, +24:u08:SSV4_SUBKEY_SEAL_I2T, +9:u03:Input, +15:u04:ssv_subkey4, +6:u08:2,, +6:u11:/*, +8:u12:enum, +23:u13:ssv4_subkey_mic_i2t, +7:u22:enu, +8:u23:enum, +8:uI0:/**/, +6:u02:/*, +8:u03:enum, +23:u04:SSV4_SUBKEY_MIC_I2T, +23:u06:SSV4_SUBKEY_MIC_T2I, +9:u02:Input, +15:u03:ssv_subkey4, +6:u07:2,, +6:u10:/*, +8:u11:enum, +23:u12:ssv4_subkey_mic_i2t, +23:u14:ssv4_subkey_mic_t2i, +8:u23:SSV4, +6:u01:/*, +8:u02:enum, +23:u03:SSV4_SUBKEY_MIC_I2T, +23:u05:SSV4_SUBKEY_MIC_T2I, +24:u07:SSV4_SUBKEY_SEAL_I2T, +24:u08:SSV4_SUBKEY_SEAL_T2I, +9:u01:Input, +15:u02:ssv_subkey4, +6:u06:2,, +6:u08:3,, +8:u10:enum, +23:u11:ssv4_subkey_mic_i2t, +23:u13:ssv4_subkey_mic_t2i, +6:u00:/*, +8:u01:enum, +23:u02:SSV4_SUBKEY_MIC_I2T, +23:u04:SSV4_SUBKEY_MIC_T2I, +24:u06:SSV4_SUBKEY_SEAL_I2T, +9:u00:Input, +15:u01:ssv_subkey4, +6:u05:2,, +6:u07:3,, +23:u10:ssv4_subkey_mic_i2t, +23:u12:ssv4_subkey_mic_t2i, +24:u14:ssv4_subkey_seal_i2t, +8:u00:enum, +23:u01:SSV4_SUBKEY_MIC_I2T, +23:u03:SSV4_SUBKEY_MIC_T2I, +24:u05:SSV4_SUBKEY_SEAL_I2T, +24:u07:SSV4_SUBKEY_SEAL_T2I, +15:u00:ssv_subkey4, +6:u04:2,, +6:u06:3,, +23:u11:ssv4_subkey_mic_t2i, +24:u13:ssv4_subkey_seal_i2t, +23:u00:SSV4_SUBKEY_MIC_I2T, +23:u02:SSV4_SUBKEY_MIC_T2I, +24:u04:SSV4_SUBKEY_SEAL_I2T, +24:u06:SSV4_SUBKEY_SEAL_T2I, +6:u03:2,, +6:u05:3,, +23:u10:ssv4_subkey_mic_t2i, +24:u12:ssv4_subkey_seal_i2t, +24:u14:ssv4_subkey_seal_t2i, +23:u01:SSV4_SUBKEY_MIC_T2I, +24:u03:SSV4_SUBKEY_SEAL_I2T, +24:u05:SSV4_SUBKEY_SEAL_T2I, +6:u02:2,, +6:u04:3,, +24:u11:ssv4_subkey_seal_i2t, +24:u13:ssv4_subkey_seal_t2i, +23:u00:SSV4_SUBKEY_MIC_T2I, +24:u02:SSV4_SUBKEY_SEAL_I2T, +24:u04:SSV4_SUBKEY_SEAL_T2I, +6:u01:2,, +6:u03:3,, +24:u10:ssv4_subkey_seal_i2t, +24:u12:ssv4_subkey_seal_t2i, +24:u01:SSV4_SUBKEY_SEAL_I2T, +24:u03:SSV4_SUBKEY_SEAL_T2I, +6:u00:2,, +6:u02:3,, +24:u11:ssv4_subkey_seal_t2i, +24:u00:SSV4_SUBKEY_SEAL_I2T, +24:u02:SSV4_SUBKEY_SEAL_T2I, +6:u01:3,, +24:u10:ssv4_subkey_seal_t2i, +24:u01:SSV4_SUBKEY_SEAL_T2I, +6:u00:3,, +24:u00:SSV4_SUBKEY_SEAL_T2I, +15:u08:originating, +11:u14:server., +11:u13:server., +15:u07:originating, +15:u08:PerMsgToken, +11:u12:server., +15:u06:originating, +15:u07:PerMsgToken, +11:u11:server., +15:u14:originating, +15:u05:originating, +12:u08:uint32_t, +15:u06:PerMsgToken, +22:u08:ssv_mic_plain_tkn4, +11:u10:server., +15:u13:originating, +15:u04:originating, +17:u08:smpt_ssv_seq;, +15:u05:PerMsgToken, +22:u07:ssv_mic_plain_tkn4, +15:u12:originating, +15:u03:originating, +12:u07:uint32_t, +15:u04:PerMsgToken, +22:u06:ssv_mic_plain_tkn4, +15:u11:originating, +15:u02:originating, +12:u06:uint32_t, +17:u07:smpt_ssv_seq;, +22:u08:smpt_orig_plain<>;, +15:u03:PerMsgToken, +22:u05:ssv_mic_plain_tkn4, +15:u10:originating, +12:u14:uint32_t, +15:u01:originating, +12:u05:uint32_t, +17:u06:smpt_ssv_seq;, +15:u02:PerMsgToken, +22:u04:ssv_mic_plain_tkn4, +12:u13:uint32_t, +17:u14:smpt_ssv_seq;, +15:u00:originating, +12:u04:uint32_t, +17:u05:smpt_ssv_seq;, +22:u07:smpt_orig_plain<>;, +15:u01:PerMsgToken, +22:u03:ssv_mic_plain_tkn4, +12:u12:uint32_t, +17:u13:smpt_ssv_seq;, +12:u03:uint32_t, +17:u04:smpt_ssv_seq;, +22:u06:smpt_orig_plain<>;, +15:u00:PerMsgToken, +22:u02:ssv_mic_plain_tkn4, +12:u11:uint32_t, +17:u12:smpt_ssv_seq;, +22:u14:smpt_orig_plain<>;, +6:u21:sm, +7:u22:smp, +8:u23:smpt, +12:u02:uint32_t, +17:u03:smpt_ssv_seq;, +22:u05:smpt_orig_plain<>;, +22:u01:ssv_mic_plain_tkn4, +16:u08:ssv_mic_tkn4, +12:u10:uint32_t, +17:u11:smpt_ssv_seq;, +22:u13:smpt_orig_plain<>;, +12:u01:uint32_t, +17:u02:smpt_ssv_seq;, +22:u04:smpt_orig_plain<>;, +16:u08:smt_ssv_seq;, +22:u00:ssv_mic_plain_tkn4, +16:u07:ssv_mic_tkn4, +17:u10:smpt_ssv_seq;, +22:u12:smpt_orig_plain<>;, +12:u00:uint32_t, +17:u01:smpt_ssv_seq;, +22:u03:smpt_orig_plain<>;, +16:u06:ssv_mic_tkn4, +22:u11:smpt_orig_plain<>;, +17:u00:smpt_ssv_seq;, +22:u02:smpt_orig_plain<>;, +16:u07:smt_ssv_seq;, +15:u08:smt_hmac<>;, +16:u05:ssv_mic_tkn4, +22:u10:smpt_orig_plain<>;, +22:u01:smpt_orig_plain<>;, +16:u06:smt_ssv_seq;, +16:u04:ssv_mic_tkn4, +16:u14:smt_ssv_seq;, +22:u00:smpt_orig_plain<>;, +16:u05:smt_ssv_seq;, +15:u07:smt_hmac<>;, +16:u03:ssv_mic_tkn4, +16:u13:smt_ssv_seq;, +16:u04:smt_ssv_seq;, +15:u06:smt_hmac<>;, +16:u02:ssv_mic_tkn4, +16:u12:smt_ssv_seq;, +15:u14:smt_hmac<>;, +7:u22:smt, +8:u23:smt_, +16:u03:smt_ssv_seq;, +15:u05:smt_hmac<>;, +16:u01:ssv_mic_tkn4, +16:u11:smt_ssv_seq;, +15:u13:smt_hmac<>;, +16:u02:smt_ssv_seq;, +15:u04:smt_hmac<>;, +16:u00:ssv_mic_tkn4, +16:u10:smt_ssv_seq;, +15:u12:smt_hmac<>;, +16:u01:smt_ssv_seq;, +15:u03:smt_hmac<>;, +15:u11:smt_hmac<>;, +16:u00:smt_ssv_seq;, +15:u02:smt_hmac<>;, +15:u10:smt_hmac<>;, +7:u14:way, +15:u01:smt_hmac<>;, +7:u08:74], +7:u13:way, +15:u00:smt_hmac<>;, +7:u07:74], +7:u12:way, +7:u23:way, +7:u06:74], +7:u11:way, +7:u05:74], +7:u10:way, +16:u08:smpt_ssv_seq, +7:u04:74], +7:u03:74], +16:u07:smpt_ssv_seq, +9:u08:[7])., +7:u02:74], +16:u06:smpt_ssv_seq, +7:u01:74], +16:u14:smpt_ssv_seq, +16:u05:smpt_ssv_seq, +9:u07:[7])., +16:u08:GSS_GetMIC(), +7:u00:74], +16:u13:smpt_ssv_seq, +16:u04:smpt_ssv_seq, +9:u06:[7])., +11:u08:encodes, +16:u12:smpt_ssv_seq, +9:u14:[7])., +11:uI2:""()(.., +16:u03:smpt_ssv_seq, +9:u05:[7])., +16:u07:GSS_GetMIC(), +13:u08:Prepended, +11:u07:encodes, +16:u11:smpt_ssv_seq, +9:u13:[7])., +11:uI1:""()(.., +10:uI2:[]).(), +16:u02:smpt_ssv_seq, +9:u04:[7])., +16:u06:GSS_GetMIC(), +11:u06:encodes, +16:u10:smpt_ssv_seq, +9:u12:[7])., +16:u14:gss_getmic(), +6:u21:[7, +7:u22:[7], +8:u23:[7]), +11:uI0:""()(.., +10:uI1:[]).(), +16:u01:smpt_ssv_seq, +9:u03:[7])., +16:u05:GSS_GetMIC(), +13:u07:Prepended, +11:u05:encodes, +9:u11:[7])., +16:u13:gss_getmic(), +10:uI0:[]).(), +16:u00:smpt_ssv_seq, +9:u02:[7])., +16:u04:GSS_GetMIC(), +13:u06:Prepended, +11:u04:encodes, +9:u10:[7])., +16:u12:gss_getmic(), +13:u14:prepended, +9:u01:[7])., +16:u03:GSS_GetMIC(), +13:u05:Prepended, +17:u08:ssv_mic_tkn4., +11:u03:encodes, +16:u11:gss_getmic(), +13:u13:prepended, +9:u00:[7])., +16:u02:GSS_GetMIC(), +13:u04:Prepended, +11:u08:number,, +11:u02:encodes, +16:u10:gss_getmic(), +13:u12:prepended, +8:u23:Prep, +16:u01:GSS_GetMIC(), +13:u03:Prepended, +17:u07:ssv_mic_tkn4., +11:u01:encodes, +13:u11:prepended, +16:u00:GSS_GetMIC(), +13:u02:Prepended, +17:u06:ssv_mic_tkn4., +11:u07:number,, +11:u00:encodes, +13:u10:prepended, +17:u14:ssv_mic_tkn4., +13:u01:Prepended, +17:u05:ssv_mic_tkn4., +11:u06:number,, +17:u13:ssv_mic_tkn4., +11:u14:number,, +13:u00:Prepended, +17:u04:ssv_mic_tkn4., +11:u05:number,, +17:u12:ssv_mic_tkn4., +11:u13:number,, +6:u21:ss, +7:u22:ssv, +8:u23:ssv_, +17:u03:ssv_mic_tkn4., +11:u04:number,, +17:u11:ssv_mic_tkn4., +11:u12:number,, +17:u02:ssv_mic_tkn4., +11:u03:number,, +15:u08:serializing, +17:u10:ssv_mic_tkn4., +11:u11:number,, +17:u01:ssv_mic_tkn4., +11:u02:number,, +11:u10:number,, +17:u00:ssv_mic_tkn4., +11:u01:number,, +15:u07:serializing, +13:u08:smt_hmac,, +11:u00:number,, +15:u06:serializing, +13:u08:necessary, +15:u14:serializing, +15:u05:serializing, +13:u07:smt_hmac,, +12:u08:padding., +15:u13:serializing, +15:u04:serializing, +13:u06:smt_hmac,, +13:u07:necessary, +12:u07:padding., +16:u08:smt_ssv_seq., +15:u12:serializing, +13:u14:smt_hmac,, +8:u23:seri, +15:u03:serializing, +13:u05:smt_hmac,, +13:u06:necessary, +12:u06:padding., +16:u07:smt_ssv_seq., +17:u08:SealedMessage, +15:u11:serializing, +13:u13:smt_hmac,, +13:u14:necessary, +15:u02:serializing, +13:u04:smt_hmac,, +13:u05:necessary, +12:u05:padding., +16:u06:smt_ssv_seq., +17:u07:SealedMessage, +15:u10:serializing, +13:u12:smt_hmac,, +13:u13:necessary, +15:u01:serializing, +13:u03:smt_hmac,, +13:u04:necessary, +12:u04:padding., +16:u05:smt_ssv_seq., +17:u06:SealedMessage, +23:u08:ssv_seal_plain_tkn4, +13:u11:smt_hmac,, +13:u12:necessary, +15:u00:serializing, +13:u02:smt_hmac,, +13:u03:necessary, +22:u08:sspt_confounder<>;, +12:u03:padding., +16:u04:smt_ssv_seq., +17:u05:SealedMessage, +23:u07:ssv_seal_plain_tkn4, +13:u10:smt_hmac,, +13:u11:necessary, +13:u01:smt_hmac,, +13:u02:necessary, +12:u02:padding., +16:u03:smt_ssv_seq., +17:u04:SealedMessage, +23:u06:ssv_seal_plain_tkn4, +13:u10:necessary, +13:u00:smt_hmac,, +13:u01:necessary, +22:u07:sspt_confounder<>;, +17:u08:sspt_ssv_seq;, +12:u01:padding., +16:u02:smt_ssv_seq., +17:u03:SealedMessage, +23:u05:ssv_seal_plain_tkn4, +13:u00:necessary, +22:u06:sspt_confounder<>;, +12:u00:padding., +16:u01:smt_ssv_seq., +17:u02:SealedMessage, +23:u04:ssv_seal_plain_tkn4, +22:u14:sspt_confounder<>;, +22:u05:sspt_confounder<>;, +17:u07:sspt_ssv_seq;, +22:u08:sspt_orig_plain<>;, +16:u00:smt_ssv_seq., +17:u01:SealedMessage, +23:u03:ssv_seal_plain_tkn4, +22:u13:sspt_confounder<>;, +22:u04:sspt_confounder<>;, +17:u06:sspt_ssv_seq;, +17:u00:SealedMessage, +23:u02:ssv_seal_plain_tkn4, +22:u12:sspt_confounder<>;, +17:u14:sspt_ssv_seq;, +7:u22:ssp, +8:u23:sspt, +22:u03:sspt_confounder<>;, +17:u05:sspt_ssv_seq;, +22:u07:sspt_orig_plain<>;, +15:u08:sspt_pad<>;, +23:u01:ssv_seal_plain_tkn4, +22:u11:sspt_confounder<>;, +17:u13:sspt_ssv_seq;, +22:u02:sspt_confounder<>;, +17:u04:sspt_ssv_seq;, +22:u06:sspt_orig_plain<>;, +23:u00:ssv_seal_plain_tkn4, +22:u10:sspt_confounder<>;, +17:u12:sspt_ssv_seq;, +22:u14:sspt_orig_plain<>;, +22:u01:sspt_confounder<>;, +17:u03:sspt_ssv_seq;, +22:u05:sspt_orig_plain<>;, +15:u07:sspt_pad<>;, +17:u11:sspt_ssv_seq;, +22:u13:sspt_orig_plain<>;, +22:u00:sspt_confounder<>;, +17:u02:sspt_ssv_seq;, +22:u04:sspt_orig_plain<>;, +15:u06:sspt_pad<>;, +17:u10:sspt_ssv_seq;, +22:u12:sspt_orig_plain<>;, +15:u14:sspt_pad<>;, +17:u01:sspt_ssv_seq;, +22:u03:sspt_orig_plain<>;, +15:u05:sspt_pad<>;, +24:u08:ssv_seal_cipher_tkn4, +22:u11:sspt_orig_plain<>;, +15:u13:sspt_pad<>;, +17:u00:sspt_ssv_seq;, +22:u02:sspt_orig_plain<>;, +15:u04:sspt_pad<>;, +17:u08:ssct_ssv_seq;, +24:u07:ssv_seal_cipher_tkn4, +22:u10:sspt_orig_plain<>;, +15:u12:sspt_pad<>;, +22:u01:sspt_orig_plain<>;, +15:u03:sspt_pad<>;, +24:u06:ssv_seal_cipher_tkn4, +15:u11:sspt_pad<>;, +22:u00:sspt_orig_plain<>;, +15:u02:sspt_pad<>;, +17:u07:ssct_ssv_seq;, +14:u08:ssct_iv<>;, +24:u05:ssv_seal_cipher_tkn4, +15:u10:sspt_pad<>;, +15:u01:sspt_pad<>;, +17:u06:ssct_ssv_seq;, +24:u04:ssv_seal_cipher_tkn4, +17:u14:ssct_ssv_seq;, +15:u00:sspt_pad<>;, +17:u05:ssct_ssv_seq;, +14:u07:ssct_iv<>;, +21:u08:ssct_encr_data<>;, +24:u03:ssv_seal_cipher_tkn4, +17:u13:ssct_ssv_seq;, +17:u04:ssct_ssv_seq;, +14:u06:ssct_iv<>;, +24:u02:ssv_seal_cipher_tkn4, +17:u12:ssct_ssv_seq;, +14:u14:ssct_iv<>;, +7:u22:ssc, +8:u23:ssct, +17:u03:ssct_ssv_seq;, +14:u05:ssct_iv<>;, +21:u07:ssct_encr_data<>;, +16:u08:ssct_hmac<>;, +24:u01:ssv_seal_cipher_tkn4, +17:u11:ssct_ssv_seq;, +14:u13:ssct_iv<>;, +17:u02:ssct_ssv_seq;, +14:u04:ssct_iv<>;, +21:u06:ssct_encr_data<>;, +24:u00:ssv_seal_cipher_tkn4, +17:u10:ssct_ssv_seq;, +14:u12:ssct_iv<>;, +21:u14:ssct_encr_data<>;, +17:u01:ssct_ssv_seq;, +14:u03:ssct_iv<>;, +21:u05:ssct_encr_data<>;, +16:u07:ssct_hmac<>;, +14:u11:ssct_iv<>;, +21:u13:ssct_encr_data<>;, +17:u00:ssct_ssv_seq;, +14:u02:ssct_iv<>;, +21:u04:ssct_encr_data<>;, +16:u06:ssct_hmac<>;, +14:u10:ssct_iv<>;, +21:u12:ssct_encr_data<>;, +16:u14:ssct_hmac<>;, +14:u01:ssct_iv<>;, +21:u03:ssct_encr_data<>;, +16:u05:ssct_hmac<>;, +21:u11:ssct_encr_data<>;, +16:u13:ssct_hmac<>;, +14:u00:ssct_iv<>;, +21:u02:ssct_encr_data<>;, +16:u04:ssct_hmac<>;, +7:u08:75], +21:u10:ssct_encr_data<>;, +16:u12:ssct_hmac<>;, +21:u01:ssct_encr_data<>;, +16:u03:ssct_hmac<>;, +7:u07:75], +16:u11:ssct_hmac<>;, +21:u00:ssct_encr_data<>;, +16:u02:ssct_hmac<>;, +7:u06:75], +16:u10:ssct_hmac<>;, +16:u01:ssct_hmac<>;, +7:u05:75], +16:u00:ssct_hmac<>;, +25:u08:ssv_seal_cipher_tkn4., +7:u04:75], +7:u03:75], +25:u07:ssv_seal_cipher_tkn4., +7:u02:75], +16:u08:ssct_ssv_seq, +25:u06:ssv_seal_cipher_tkn4., +7:u08:XDR, +7:u01:75], +16:u07:ssct_ssv_seq, +18:u08:ssct_encr_data, +25:u14:ssv_seal_cipher_tkn4., +25:u05:ssv_seal_cipher_tkn4., +7:u00:75], +16:u06:ssct_ssv_seq, +18:u07:ssct_encr_data, +11:u08:encoded, +25:u13:ssv_seal_cipher_tkn4., +25:u04:ssv_seal_cipher_tkn4., +7:u07:XDR, +16:u05:ssct_ssv_seq, +18:u06:ssct_encr_data, +11:u07:encoded, +25:u12:ssv_seal_cipher_tkn4., +25:u03:ssv_seal_cipher_tkn4., +7:u06:XDR, +16:u04:ssct_ssv_seq, +18:u05:ssct_encr_data, +11:u06:encoded, +25:u11:ssv_seal_cipher_tkn4., +7:u14:xdr, +25:u02:ssv_seal_cipher_tkn4., +7:u05:XDR, +16:u03:ssct_ssv_seq, +18:u04:ssct_encr_data, +11:u05:encoded, +11:u08:ssct_iv, +25:u10:ssv_seal_cipher_tkn4., +7:u13:xdr, +25:u01:ssv_seal_cipher_tkn4., +7:u04:XDR, +16:u02:ssct_ssv_seq, +18:u03:ssct_encr_data, +11:u04:encoded, +11:u07:ssct_iv, +7:u12:xdr, +6:u21:XD, +7:u22:XDR, +7:u23:XDR, +25:u00:ssv_seal_cipher_tkn4., +7:u03:XDR, +16:u01:ssct_ssv_seq, +18:u02:ssct_encr_data, +11:u03:encoded, +11:u06:ssct_iv, +7:u11:xdr, +7:u02:XDR, +16:u00:ssct_ssv_seq, +18:u01:ssct_encr_data, +11:u02:encoded, +11:u05:ssct_iv, +14:u08:algorithm., +7:u10:xdr, +7:u01:XDR, +18:u00:ssct_encr_data, +11:u01:encoded, +11:u04:ssct_iv, +14:u07:algorithm., +11:u14:content, +7:u00:XDR, +13:u08:encrypted, +11:u00:encoded, +11:u03:ssct_iv, +14:u06:algorithm., +11:u13:content, +11:u02:ssct_iv, +14:u05:algorithm., +11:u12:content, +8:uI2:.,--, +13:u07:encrypted, +11:u01:ssct_iv, +14:u04:algorithm., +13:u08:ssct_hmac, +11:u11:content, +8:uI1:.,--, +13:u06:encrypted, +9:u08:text., +11:u00:ssct_iv, +14:u03:algorithm., +13:u07:ssct_hmac, +11:u10:content, +13:u14:encrypted, +8:uI0:.,--, +13:u05:encrypted, +24:u08:SSV4_SUBKEY_MIC_T2I,, +14:u02:algorithm., +13:u06:ssct_hmac, +13:u13:encrypted, +13:u04:encrypted, +9:u07:text., +14:u01:algorithm., +13:u05:ssct_hmac, +13:u12:encrypted, +13:u03:encrypted, +9:u06:text., +24:u07:SSV4_SUBKEY_MIC_T2I,, +14:u00:algorithm., +13:u04:ssct_hmac, +13:u11:encrypted, +9:u14:text., +13:u02:encrypted, +9:u05:text., +24:u06:SSV4_SUBKEY_MIC_T2I,, +13:u03:ssct_hmac, +19:u08:sspt_confounder, +13:u10:encrypted, +9:u13:text., +24:u14:ssv4_subkey_mic_t2i,, +13:u01:encrypted, +9:u04:text., +24:u05:SSV4_SUBKEY_MIC_T2I,, +13:u02:ssct_hmac, +19:u07:sspt_confounder, +16:u08:sspt_ssv_seq, +9:u12:text., +24:u13:ssv4_subkey_mic_t2i,, +14:u14:negotiated, +7:u22:tex, +8:u23:text, +13:u00:encrypted, +9:u03:text., +24:u04:SSV4_SUBKEY_MIC_T2I,, +19:u08:"input_message", +13:u01:ssct_hmac, +19:u06:sspt_confounder, +16:u07:sspt_ssv_seq, +9:u11:text., +24:u12:ssv4_subkey_mic_t2i,, +14:u13:negotiated, +9:u02:text., +24:u03:SSV4_SUBKEY_MIC_T2I,, +13:u00:ssct_hmac, +19:u05:sspt_confounder, +16:u06:sspt_ssv_seq, +9:u08:input, +9:u10:text., +24:u11:ssv4_subkey_mic_t2i,, +14:u12:negotiated, +9:u01:text., +24:u02:SSV4_SUBKEY_MIC_T2I,, +19:u07:"input_message", +19:u04:sspt_confounder, +16:u05:sspt_ssv_seq, +9:u07:input, +24:u10:ssv4_subkey_mic_t2i,, +14:u11:negotiated, +9:u00:text., +24:u01:SSV4_SUBKEY_MIC_T2I,, +19:u06:"input_message", +11:u08:pointer, +19:u03:sspt_confounder, +16:u04:sspt_ssv_seq, +9:u06:input, +14:u10:negotiated, +19:u14:"input_message", +24:u00:SSV4_SUBKEY_MIC_T2I,, +19:u05:"input_message", +19:u08:sspt_orig_plain, +19:u02:sspt_confounder, +16:u03:sspt_ssv_seq, +9:u05:input, +19:u13:"input_message", +19:u04:"input_message", +11:u07:pointer, +19:u01:sspt_confounder, +16:u02:sspt_ssv_seq, +9:u04:input, +19:u12:"input_message", +6:u21:"i, +7:u22:"in, +8:u23:"inp, +19:u03:"input_message", +11:u06:pointer, +19:u07:sspt_orig_plain, +19:u00:sspt_confounder, +16:u01:sspt_ssv_seq, +9:u03:input, +19:u11:"input_message", +11:u14:pointer, +19:u02:"input_message", +11:u05:pointer, +19:u06:sspt_orig_plain, +16:u00:sspt_ssv_seq, +9:u02:input, +12:u08:sspt_pad, +19:u10:"input_message", +11:u13:pointer, +19:u14:sspt_orig_plain, +19:u01:"input_message", +11:u04:pointer, +19:u05:sspt_orig_plain, +9:u01:input, +12:u07:sspt_pad, +10:u08:inputs, +11:u12:pointer, +19:u13:sspt_orig_plain, +19:u00:"input_message", +11:u03:pointer, +19:u04:sspt_orig_plain, +9:u00:input, +12:u06:sspt_pad, +10:u07:inputs, +11:u11:pointer, +19:u12:sspt_orig_plain, +11:u02:pointer, +19:u03:sspt_orig_plain, +12:u05:sspt_pad, +10:u06:inputs, +11:u10:pointer, +19:u11:sspt_orig_plain, +11:u01:pointer, +19:u02:sspt_orig_plain, +12:u04:sspt_pad, +10:u05:inputs, +9:u08:array, +19:u10:sspt_orig_plain, +11:u00:pointer, +19:u01:sspt_orig_plain, +7:u08:per, +12:u03:sspt_pad, +10:u04:inputs, +9:u07:array, +19:u00:sspt_orig_plain, +12:u02:sspt_pad, +10:u03:inputs, +9:u06:array, +7:u07:per, +12:u01:sspt_pad, +10:u02:inputs, +9:u05:array, +7:u06:per, +12:u00:sspt_pad, +10:u01:inputs, +9:u04:array, +7:u14:per, +7:u05:per, +9:u08:eight, +10:u00:inputs, +9:u03:array, +7:u13:per, +7:u04:per, +9:u02:array, +7:u12:per, +7:u23:per, +7:u03:per, +9:u07:eight, +9:u01:array, +7:u11:per, +7:u02:per, +9:u06:eight, +9:u00:array, +7:u10:per, +9:u14:eight, +7:u01:per, +9:u05:eight, +7:u08:76], +9:u13:eight, +7:u00:per, +9:u04:eight, +7:u07:76], +9:u12:eight, +7:u22:eig, +8:u23:eigh, +9:u03:eight, +7:u06:76], +9:u11:eight, +9:u02:eight, +7:u05:76], +9:u10:eight, +9:u01:eight, +7:u04:76], +9:u00:eight, +7:u03:76], +7:u02:76], +10:u08:bytes,, +7:u01:76], +7:u08:48;, +7:u00:76], +7:u07:48;, +10:u07:bytes,, +14:u08:GSS_Wrap(), +7:u06:48;, +10:u06:bytes,, +7:u05:48;, +9:u08:emits, +10:u14:bytes,, +10:u05:bytes,, +14:u07:GSS_Wrap(), +7:u04:48;, +9:u07:emits, +10:u13:bytes,, +11:u14:encoded, +10:u04:bytes,, +14:u06:GSS_Wrap(), +7:u03:48;, +9:u06:emits, +10:u08:caller, +10:u12:bytes,, +11:u13:encoded, +14:u14:gss_wrap(), +10:u03:bytes,, +14:u05:GSS_Wrap(), +7:u02:48;, +9:u05:emits, +10:u07:caller, +20:u08:confidentiality., +10:u11:bytes,, +11:u12:encoded, +14:u13:gss_wrap(), +10:u02:bytes,, +14:u04:GSS_Wrap(), +7:u01:48;, +9:u04:emits, +10:u06:caller, +20:u07:confidentiality., +10:u10:bytes,, +11:u11:encoded, +14:u12:gss_wrap(), +10:u01:bytes,, +14:u03:GSS_Wrap(), +7:u00:48;, +9:u03:emits, +10:u05:caller, +20:u06:confidentiality., +11:u10:encoded, +14:u11:gss_wrap(), +10:u00:bytes,, +14:u02:GSS_Wrap(), +9:u02:emits, +10:u04:caller, +20:u05:confidentiality., +14:u10:gss_wrap(), +14:u01:GSS_Wrap(), +9:u01:emits, +10:u03:caller, +20:u04:confidentiality., +20:u14:confidentiality., +14:u00:GSS_Wrap(), +9:u00:emits, +10:u02:caller, +20:u03:confidentiality., +20:u13:confidentiality., +10:u01:caller, +20:u02:confidentiality., +10:u08:expire, +20:u12:confidentiality., +10:u00:caller, +20:u01:confidentiality., +10:u07:expire, +20:u11:confidentiality., +10:u08:long",, +20:u00:confidentiality., +10:u06:expire, +14:u08:expiration, +20:u10:confidentiality., +10:u05:expire, +14:u07:expiration, +9:u08:hence, +10:u07:long",, +10:u04:expire, +14:u06:expiration, +9:u07:hence, +10:u06:long",, +10:u03:expire, +14:u05:expiration, +9:u06:hence, +10:u14:long",, +10:u05:long",, +10:u02:expire, +14:u04:expiration, +9:u05:hence, +10:u13:long",, +10:u04:long",, +10:u01:expire, +14:u03:expiration, +9:u04:hence, +10:u12:long",, +10:u03:long",, +10:u00:expire, +14:u02:expiration, +9:u03:hence, +10:u11:long",, +10:u02:long",, +14:u01:expiration, +9:u02:hence, +10:u10:long",, +10:u01:long",, +9:u08:imply, +14:u00:expiration, +9:u01:hence, +12:u08:handles., +7:u14:ssv, +10:u00:long",, +9:u00:hence, +12:u07:handles., +7:u13:ssv, +9:u14:time,, +9:u07:imply, +12:u06:handles., +7:u12:ssv, +9:u13:time,, +7:u23:SSV, +9:u06:imply, +12:u05:handles., +7:u11:ssv, +9:u12:time,, +9:u14:imply, +9:u05:imply, +12:u04:handles., +7:u10:ssv, +9:u11:time,, +9:u13:imply, +9:u04:imply, +12:u03:handles., +9:u10:time,, +9:u12:imply, +9:u03:imply, +12:u02:handles., +9:u11:imply, +9:u02:imply, +12:u01:handles., +9:u10:imply, +9:u01:imply, +12:u00:handles., +10:u08:5.2.2,, +9:u00:imply, +10:u07:5.2.2,, +11:u08:2.10.10, +12:u08:2.10.10., +10:u06:5.2.2,, +11:u07:2.10.10, +13:u08:Mechanism, +10:u05:5.2.2,, +11:u06:2.10.10, +15:uI2:..,"",[]).,, +12:u07:2.10.10., +10:u04:5.2.2,, +11:u05:2.10.10, +15:uI1:..,"",[]).,, +12:u06:2.10.10., +13:u07:Mechanism, +10:u03:5.2.2,, +11:u04:2.10.10, +12:u14:2.10.10., +15:uI0:..,"",[]).,, +12:u05:2.10.10., +13:u06:Mechanism, +10:u02:5.2.2,, +11:u03:2.10.10, +12:u13:2.10.10., +12:u04:2.10.10., +13:u05:Mechanism, +10:u01:5.2.2,, +11:u02:2.10.10, +12:u12:2.10.10., +12:u03:2.10.10., +13:u04:Mechanism, +10:u00:5.2.2,, +11:u01:2.10.10, +12:u11:2.10.10., +7:u22:Mec, +8:u23:Mech, +12:u02:2.10.10., +13:u03:Mechanism, +11:u00:2.10.10, +12:u10:2.10.10., +12:u01:2.10.10., +13:u02:Mechanism, +7:u08:77], +12:u00:2.10.10., +13:u01:Mechanism, +7:u07:77], +13:u00:Mechanism, +7:u06:77], +7:u05:77], +7:u04:77], +7:u03:77], +7:u02:77], +8:u08:care, +7:u01:77], +8:u07:care, +9:uI2:..).(, +7:u00:77], +8:u06:care, +9:uI1:..).(, +11:uI2:,[][]),, +25:u08:rpc_gss_cred_ver_1_t), +8:u05:care, +9:uI0:..).(, +11:uI1:,[][]),, +8:u04:care, +11:uI0:,[][]),, +25:u07:rpc_gss_cred_ver_1_t), +8:u03:care, +25:u06:rpc_gss_cred_ver_1_t), +8:u02:care, +25:u14:rpc_gss_cred_ver_1_t), +25:u05:rpc_gss_cred_ver_1_t), +8:u01:care, +25:u13:rpc_gss_cred_ver_1_t), +13:uI2:)(...[])., +25:u04:rpc_gss_cred_ver_1_t), +8:u00:care, +25:u12:rpc_gss_cred_ver_1_t), +7:u22:rpc, +8:u23:rpc_, +13:uI1:)(...[])., +25:u03:rpc_gss_cred_ver_1_t), +25:u11:rpc_gss_cred_ver_1_t), +13:uI0:)(...[])., +25:u02:rpc_gss_cred_ver_1_t), +25:u10:rpc_gss_cred_ver_1_t), +25:u01:rpc_gss_cred_ver_1_t), +16:u08:EXCHANGE_ID,, +25:u00:rpc_gss_cred_ver_1_t), +16:u07:EXCHANGE_ID,, +8:u08:SSV., +16:u06:EXCHANGE_ID,, +8:u07:SSV., +10:u08:re-use, +16:u14:exchange_id,, +16:u05:EXCHANGE_ID,, +8:u06:SSV., +10:u07:re-use, +16:u13:exchange_id,, +16:u04:EXCHANGE_ID,, +8:u05:SSV., +10:u06:re-use, +16:u12:exchange_id,, +16:u03:EXCHANGE_ID,, +9:u08:equal, +8:u04:SSV., +10:u05:re-use, +16:u11:exchange_id,, +16:u02:EXCHANGE_ID,, +12:u08:MAXSEQ)., +8:u03:SSV., +10:u04:re-use, +16:u10:exchange_id,, +16:u01:EXCHANGE_ID,, +9:u07:equal, +8:u02:SSV., +10:u03:re-use, +16:u00:EXCHANGE_ID,, +9:u06:equal, +12:u07:MAXSEQ)., +8:u01:SSV., +10:u02:re-use, +9:u08:force, +9:u14:equal, +9:u05:equal, +12:u06:MAXSEQ)., +9:u08:[4])., +8:u00:SSV., +10:u01:re-use, +9:u07:force, +9:u13:equal, +12:u14:maxseq)., +8:uI2:/([], +9:u04:equal, +12:u05:MAXSEQ)., +10:u00:re-use, +9:u06:force, +9:u12:equal, +12:u13:maxseq)., +8:u23:equa, +8:uI1:/([], +9:u03:equal, +12:u04:MAXSEQ)., +9:u07:[4])., +9:u05:force, +9:u11:equal, +12:u12:maxseq)., +7:u22:MAX, +8:u23:MAXS, +8:uI0:/([], +9:u02:equal, +12:u03:MAXSEQ)., +9:u06:[4])., +9:u04:force, +9:u10:equal, +12:u11:maxseq)., +9:u14:[4])., +8:uI2:(..., +9:u01:equal, +12:u02:MAXSEQ)., +9:u05:[4])., +9:u03:force, +12:u10:maxseq)., +9:u13:[4])., +8:uI1:(..., +8:uI2:[])., +9:u00:equal, +12:u01:MAXSEQ)., +9:u04:[4])., +9:u02:force, +9:u12:[4])., +9:u14:force, +7:u22:[4], +8:u23:[4]), +8:uI0:(..., +8:uI1:[])., +12:u00:MAXSEQ)., +9:u03:[4])., +9:u01:force, +9:u11:[4])., +9:u13:force, +8:uI0:[])., +9:u02:[4])., +9:u00:force, +9:u10:[4])., +9:u12:force, +9:u01:[4])., +9:u11:force, +9:u00:[4])., +9:u10:force, +11:u14:handle., +12:u08:handles,, +11:u13:handle., +11:u12:handle., +12:u07:handles,, +10:u08:exist., +11:u11:handle., +12:u06:handles,, +11:u10:handle., +12:u14:handles,, +12:u05:handles,, +10:u07:exist., +11:u08:seq_num, +12:u13:handles,, +8:uI2:,---, +12:u04:handles,, +10:u06:exist., +12:u12:handles,, +10:u14:exist., +8:uI1:,---, +12:u03:handles,, +10:u05:exist., +11:u07:seq_num, +12:u11:handles,, +10:u13:exist., +8:uI0:,---, +12:u02:handles,, +10:u04:exist., +11:u06:seq_num, +12:u10:handles,, +10:u12:exist., +11:u14:seq_num, +12:u01:handles,, +10:u03:exist., +11:u05:seq_num, +10:u11:exist., +11:u13:seq_num, +11:uI2:(..[])., +12:u00:handles,, +10:u02:exist., +11:u04:seq_num, +10:u10:exist., +11:u12:seq_num, +8:u23:seq_, +11:uI1:(..[])., +10:u01:exist., +11:u03:seq_num, +7:u08:78], +11:u11:seq_num, +11:uI0:(..[])., +10:u00:exist., +11:u02:seq_num, +7:u07:78], +11:u10:seq_num, +11:u01:seq_num, +7:u06:78], +11:u00:seq_num, +14:u08:the-middle, +7:u05:78], +7:u04:78], +14:u07:the-middle, +12:u08:2.10.11., +7:u03:78], +14:u06:the-middle, +14:u08:2.10.11.1., +7:u02:78], +14:u14:the-middle, +14:u05:the-middle, +12:u07:2.10.11., +7:u01:78], +15:u08:Obligations, +14:u13:the-middle, +14:u04:the-middle, +12:u06:2.10.11., +14:u07:2.10.11.1., +7:u00:78], +15:u07:Obligations, +14:u12:the-middle, +12:u14:2.10.11., +8:u23:the-, +14:u03:the-middle, +12:u05:2.10.11., +14:u06:2.10.11.1., +15:u08:(RPCSEC_GSS, +15:u06:Obligations, +14:u11:the-middle, +12:u13:2.10.11., +14:u14:2.10.11.1., +14:u02:the-middle, +12:u04:2.10.11., +14:u05:2.10.11.1., +15:u05:Obligations, +14:u10:the-middle, +12:u12:2.10.11., +14:u13:2.10.11.1., +14:u01:the-middle, +12:u03:2.10.11., +14:u04:2.10.11.1., +15:u07:(RPCSEC_GSS, +15:u04:Obligations, +11:u08:vanish,, +12:u11:2.10.11., +14:u12:2.10.11.1., +14:u00:the-middle, +12:u02:2.10.11., +14:u03:2.10.11.1., +15:u06:(RPCSEC_GSS, +14:u08:2.10.11.2., +15:u03:Obligations, +11:u07:vanish,, +14:u08:2.10.13.2., +12:u10:2.10.11., +14:u11:2.10.11.1., +15:u14:(rpcsec_gss, +12:u01:2.10.11., +14:u02:2.10.11.1., +15:u05:(RPCSEC_GSS, +15:u02:Obligations, +11:u06:vanish,, +14:u07:2.10.13.2., +14:u10:2.10.11.1., +15:u13:(rpcsec_gss, +12:u00:2.10.11., +14:u01:2.10.11.1., +15:u04:(RPCSEC_GSS, +14:u07:2.10.11.2., +15:u01:Obligations, +11:u05:vanish,, +14:u06:2.10.13.2., +15:u12:(rpcsec_gss, +8:u23:(RPC, +14:u00:2.10.11.1., +15:u03:(RPCSEC_GSS, +14:u06:2.10.11.2., +15:u00:Obligations, +11:u04:vanish,, +14:u05:2.10.13.2., +12:u08:session:, +15:u11:(rpcsec_gss, +14:u14:2.10.11.2., +15:u02:(RPCSEC_GSS, +14:u05:2.10.11.2., +11:u03:vanish,, +14:u04:2.10.13.2., +12:u07:session:, +8:u08:Keep, +15:u10:(rpcsec_gss, +14:u13:2.10.11.2., +15:u01:(RPCSEC_GSS, +14:u04:2.10.11.2., +9:u08:risks, +11:u02:vanish,, +14:u03:2.10.13.2., +12:u06:session:, +8:u07:Keep, +14:u12:2.10.11.2., +15:u00:(RPCSEC_GSS, +14:u03:2.10.11.2., +11:u01:vanish,, +14:u02:2.10.13.2., +12:u05:session:, +8:u06:Keep, +10:u08:having, +14:u11:2.10.11.2., +14:u02:2.10.11.2., +9:u07:risks, +11:u00:vanish,, +14:u01:2.10.13.2., +12:u04:session:, +8:u05:Keep, +10:u07:having, +14:u10:2.10.11.2., +14:u01:2.10.11.2., +9:u06:risks, +12:u08:consider, +14:u00:2.10.13.2., +12:u03:session:, +8:u04:Keep, +10:u06:having, +9:u14:risks, +14:u00:2.10.11.2., +9:u05:risks, +12:u02:session:, +8:u03:Keep, +10:u05:having, +9:u13:risks, +9:u04:risks, +12:u07:consider, +12:u08:expired., +12:u01:session:, +8:u02:Keep, +10:u04:having, +9:u12:risks, +7:u22:ris, +8:u23:risk, +9:u03:risks, +12:u06:consider, +12:u00:session:, +8:u01:Keep, +10:u03:having, +9:u11:risks, +12:u14:consider, +9:u02:risks, +12:u05:consider, +12:u07:expired., +8:u00:Keep, +10:u02:having, +11:u08:Destroy, +9:u10:risks, +12:u13:consider, +9:u01:risks, +12:u04:consider, +12:u06:expired., +10:u01:having, +11:u07:Destroy, +12:u12:consider, +12:u14:expired., +9:u00:risks, +12:u03:consider, +12:u05:expired., +10:u00:having, +11:u06:Destroy, +12:u11:consider, +12:u13:expired., +12:u02:consider, +12:u04:expired., +11:u05:Destroy, +12:u10:consider, +12:u12:expired., +13:u14:sessions,, +12:u01:consider, +12:u03:expired., +11:u04:Destroy, +12:u08:Maintain, +12:u11:expired., +13:u13:sessions,, +12:u00:consider, +12:u02:expired., +11:u03:Destroy, +12:u07:Maintain, +12:u10:expired., +13:u12:sessions,, +12:u01:expired., +11:u02:Destroy, +12:u06:Maintain, +13:u11:sessions,, +12:u00:expired., +11:u01:Destroy, +12:u05:Maintain, +13:u10:sessions,, +11:u00:Destroy, +12:u04:Maintain, +19:u08:BACKCHANNEL_CTL, +12:u03:Maintain, +19:u07:BACKCHANNEL_CTL, +12:u08:Preserve, +11:u14:handles, +10:u08:notify, +12:u02:Maintain, +19:u06:BACKCHANNEL_CTL, +12:u07:Preserve, +11:u13:handles, +12:u01:Maintain, +19:u05:BACKCHANNEL_CTL, +12:u06:Preserve, +11:u12:handles, +10:u07:notify, +12:u00:Maintain, +19:u04:BACKCHANNEL_CTL, +12:u05:Preserve, +11:u11:handles, +7:u22:via, +7:u23:via, +10:u06:notify, +13:u08:restarted, +19:u03:BACKCHANNEL_CTL, +12:u04:Preserve, +11:u10:handles, +10:u14:notify, +10:u05:notify, +19:u02:BACKCHANNEL_CTL, +12:u03:Preserve, +10:u13:notify, +10:u04:notify, +13:u07:restarted, +19:u01:BACKCHANNEL_CTL, +12:u02:Preserve, +10:u12:notify, +10:u03:notify, +13:u06:restarted, +19:u00:BACKCHANNEL_CTL, +12:u01:Preserve, +10:u11:notify, +13:u14:restarted, +10:u02:notify, +13:u05:restarted, +12:u00:Preserve, +10:u10:notify, +13:u13:restarted, +10:u01:notify, +13:u04:restarted, +13:u12:restarted, +10:u00:notify, +13:u03:restarted, +13:u11:restarted, +13:u02:restarted, +13:u10:restarted, +13:u01:restarted, +7:u08:79], +13:u00:restarted, +7:u07:79], +7:u06:79], +14:u08:2.10.11.3., +7:u05:79], +7:u04:79], +9:u08:Steps, +14:u07:2.10.11.3., +7:u03:79], +9:u07:Steps, +14:u06:2.10.11.3., +7:u02:79], +9:u06:Steps, +14:u14:2.10.11.3., +14:u05:2.10.11.3., +11:u08:minimum, +7:u01:79], +9:u05:Steps, +14:u13:2.10.11.3., +14:u04:2.10.11.3., +25:u08:BIND_CONN_TO_SESSION,, +7:u00:79], +9:u04:Steps, +14:u12:2.10.11.3., +14:u03:2.10.11.3., +11:u07:minimum, +8:u08:opts, +9:u03:Steps, +20:u08:BACKCHANNEL_CTL,, +14:u11:2.10.11.3., +15:u14:protection,, +14:u02:2.10.11.3., +11:u06:minimum, +25:u07:BIND_CONN_TO_SESSION,, +9:u02:Steps, +20:u07:BACKCHANNEL_CTL,, +14:u10:2.10.11.3., +15:u13:protection,, +11:u14:minimum, +14:u01:2.10.11.3., +11:u05:minimum, +25:u06:BIND_CONN_TO_SESSION,, +8:u07:opts, +9:u01:Steps, +20:u06:BACKCHANNEL_CTL,, +15:u12:protection,, +11:u13:minimum, +25:u14:bind_conn_to_session,, +14:u00:2.10.11.3., +11:u04:minimum, +25:u05:BIND_CONN_TO_SESSION,, +8:u06:opts, +9:u00:Steps, +20:u05:BACKCHANNEL_CTL,, +15:u11:protection,, +11:u12:minimum, +25:u13:bind_conn_to_session,, +8:u14:opts, +11:u03:minimum, +25:u04:BIND_CONN_TO_SESSION,, +8:u05:opts, +20:u04:BACKCHANNEL_CTL,, +15:u10:protection,, +11:u11:minimum, +25:u12:bind_conn_to_session,, +8:u13:opts, +11:u02:minimum, +25:u03:BIND_CONN_TO_SESSION,, +8:u04:opts, +20:u03:BACKCHANNEL_CTL,, +11:u10:minimum, +25:u11:bind_conn_to_session,, +8:u12:opts, +8:u23:opts, +11:u01:minimum, +25:u02:BIND_CONN_TO_SESSION,, +8:u03:opts, +20:u02:BACKCHANNEL_CTL,, +25:u10:bind_conn_to_session,, +8:u11:opts, +11:u00:minimum, +25:u01:BIND_CONN_TO_SESSION,, +8:u02:opts, +20:u01:BACKCHANNEL_CTL,, +14:u08:reference., +8:u10:opts, +25:u00:BIND_CONN_TO_SESSION,, +8:u01:opts, +20:u00:BACKCHANNEL_CTL,, +14:u07:reference., +8:u00:opts, +14:u06:reference., +12:u08:created,, +14:u05:reference., +12:u07:created,, +14:u04:reference., +12:u06:created,, +18:u08:notifications,, +14:u03:reference., +12:u05:created,, +14:u02:reference., +12:u04:created,, +18:u07:notifications,, +14:u01:reference., +12:u03:created,, +18:u06:notifications,, +14:u00:reference., +12:u02:created,, +18:u14:notifications,, +18:u05:notifications,, +12:u01:created,, +18:u13:notifications,, +18:u04:notifications,, +12:u00:created,, +13:u08:session's, +18:u12:notifications,, +18:u03:notifications,, +13:u07:session's, +18:u11:notifications,, +18:u02:notifications,, +20:u08:BACKCHANNEL_CTL., +13:u06:session's, +18:u10:notifications,, +18:u01:notifications,, +13:u05:session's, +18:u00:notifications,, +20:u07:BACKCHANNEL_CTL., +13:u04:session's, +20:u06:BACKCHANNEL_CTL., +13:u03:session's, +20:u14:backchannel_ctl., +20:u05:BACKCHANNEL_CTL., +13:u02:session's, +20:u13:backchannel_ctl., +20:u04:BACKCHANNEL_CTL., +13:u01:session's, +20:u12:backchannel_ctl., +6:u21:BA, +7:u22:BAC, +8:u23:BACK, +20:u03:BACKCHANNEL_CTL., +13:u00:session's, +20:u11:backchannel_ctl., +20:u02:BACKCHANNEL_CTL., +20:u10:backchannel_ctl., +16:u14:backchannel,, +20:u01:BACKCHANNEL_CTL., +16:u13:backchannel,, +20:u00:BACKCHANNEL_CTL., +16:u12:backchannel,, +12:u08:2.10.12., +16:u11:backchannel,, +16:u10:backchannel,, +12:u07:2.10.12., +12:u06:2.10.12., +12:u14:2.10.12., +12:u05:2.10.12., +12:u13:2.10.12., +12:u04:2.10.12., +12:u12:2.10.12., +12:u03:2.10.12., +12:u11:2.10.12., +12:u02:2.10.12., +12:u10:2.10.12., +12:u01:2.10.12., +7:u08:80], +12:u00:2.10.12., +7:u07:80], +7:u06:80], +14:u08:inactivity, +7:u05:80], +7:u04:80], +14:u07:inactivity, +7:u03:80], +14:u08:5.8.1.11)., +14:u06:inactivity, +7:u02:80], +14:u07:5.8.1.11)., +14:u14:inactivity, +14:u05:inactivity, +8:u08:rest, +7:u01:80], +14:u06:5.8.1.11)., +10:u08:timer,, +14:u13:inactivity, +14:u04:inactivity, +14:u08:executing., +7:u00:80], +14:u05:5.8.1.11)., +10:u07:timer,, +14:u12:inactivity, +8:u23:inac, +14:uI2:(...).(.),, +14:u03:inactivity, +8:u07:rest, +14:u04:5.8.1.11)., +10:u06:timer,, +14:u11:inactivity, +14:uI1:(...).(.),, +14:u02:inactivity, +8:u06:rest, +14:u07:executing., +14:u03:5.8.1.11)., +10:u05:timer,, +14:u10:inactivity, +8:u14:rest, +14:uI0:(...).(.),, +14:u01:inactivity, +8:u05:rest, +14:u06:executing., +12:u08:2.10.13., +14:u02:5.8.1.11)., +10:u04:timer,, +8:u13:rest, +14:u14:executing., +14:u00:inactivity, +8:u04:rest, +14:u05:executing., +14:u08:2.10.13.1., +14:u01:5.8.1.11)., +10:u03:timer,, +8:u12:rest, +14:u13:executing., +8:u03:rest, +14:u04:executing., +12:u07:2.10.13., +14:u00:5.8.1.11)., +10:u02:timer,, +10:u08:Events, +8:u11:rest, +14:u12:executing., +8:u02:rest, +14:u03:executing., +12:u06:2.10.13., +14:u07:2.10.13.1., +16:u08:2.10.13.1.1., +10:u01:timer,, +10:u07:Events, +8:u10:rest, +14:u11:executing., +12:u14:2.10.13., +8:u01:rest, +14:u02:executing., +12:u05:2.10.13., +14:u06:2.10.13.1., +10:u00:timer,, +10:u06:Events, +14:u10:executing., +12:u13:2.10.13., +14:u14:2.10.13.1., +8:u00:rest, +14:u01:executing., +12:u04:2.10.13., +14:u05:2.10.13.1., +16:u07:2.10.13.1.1., +10:u05:Events, +12:u12:2.10.13., +14:u13:2.10.13.1., +14:u00:executing., +12:u03:2.10.13., +14:u04:2.10.13.1., +16:u06:2.10.13.1.1., +10:u04:Events, +12:u11:2.10.13., +14:u12:2.10.13.1., +16:u14:2.10.13.1.1., +12:u02:2.10.13., +14:u03:2.10.13.1., +16:u05:2.10.13.1.1., +10:u03:Events, +12:u10:2.10.13., +14:u11:2.10.13.1., +16:u13:2.10.13.1.1., +12:u01:2.10.13., +14:u02:2.10.13.1., +16:u04:2.10.13.1.1., +10:u02:Events, +14:u10:2.10.13.1., +16:u12:2.10.13.1.1., +12:u00:2.10.13., +14:u01:2.10.13.1., +16:u03:2.10.13.1.1., +16:u08:2.10.13.1.2., +10:u01:Events, +16:u11:2.10.13.1.1., +14:u00:2.10.13.1., +16:u02:2.10.13.1.1., +10:u00:Events, +16:u10:2.10.13.1.1., +16:u01:2.10.13.1.1., +16:u07:2.10.13.1.2., +10:u08:retain, +16:u00:2.10.13.1.1., +16:u06:2.10.13.1.2., +16:u14:2.10.13.1.2., +16:u05:2.10.13.1.2., +10:u07:retain, +16:u13:2.10.13.1.2., +16:u04:2.10.13.1.2., +10:u06:retain, +20:u08:spo_must_enforce, +16:u12:2.10.13.1.2., +10:u14:retain, +16:u03:2.10.13.1.2., +10:u05:retain, +20:u07:spo_must_enforce, +16:u11:2.10.13.1.2., +10:u13:retain, +16:u02:2.10.13.1.2., +10:u04:retain, +20:u06:spo_must_enforce, +16:u10:2.10.13.1.2., +10:u12:retain, +8:u23:reta, +16:u01:2.10.13.1.2., +10:u03:retain, +20:u05:spo_must_enforce, +10:u11:retain, +16:u00:2.10.13.1.2., +10:u02:retain, +20:u04:spo_must_enforce, +10:u10:retain, +10:u01:retain, +20:u03:spo_must_enforce, +10:u00:retain, +20:u02:spo_must_enforce, +20:u01:spo_must_enforce, +13:u08:recognize, +20:u00:spo_must_enforce, +15:u08:disconnect., +8:u14:lost, +13:u07:recognize, +8:u13:lost, +13:u06:recognize, +15:u07:disconnect., +8:u12:lost, +13:u14:recognize, +13:u05:recognize, +15:u06:disconnect., +8:u11:lost, +13:u13:recognize, +15:u14:disconnect., +13:u04:recognize, +15:u05:disconnect., +14:u08:reconnect,, +14:u08:revocation, +8:u10:lost, +13:u12:recognize, +15:u13:disconnect., +13:u03:recognize, +15:u04:disconnect., +14:u07:revocation, +13:u11:recognize, +15:u12:disconnect., +13:u02:recognize, +15:u03:disconnect., +14:u07:reconnect,, +14:u06:revocation, +13:u10:recognize, +15:u11:disconnect., +13:u01:recognize, +15:u02:disconnect., +14:u06:reconnect,, +14:u05:revocation, +15:u10:disconnect., +14:u14:reconnect,, +13:u00:recognize, +15:u01:disconnect., +14:u05:reconnect,, +14:u04:revocation, +14:u13:reconnect,, +15:u00:disconnect., +14:u04:reconnect,, +14:u03:revocation, +14:u12:reconnect,, +14:u03:reconnect,, +14:u02:revocation, +14:u11:reconnect,, +14:u02:reconnect,, +14:u01:revocation, +7:u08:81], +14:u10:reconnect,, +14:u01:reconnect,, +14:u00:revocation, +7:u07:81], +14:u00:reconnect,, +7:u06:81], +16:u08:2.10.13.1.3., +7:u05:81], +7:u04:81], +16:u07:2.10.13.1.3., +10:u08:means,, +7:u03:81], +16:u06:2.10.13.1.3., +7:u02:81], +16:u14:2.10.13.1.3., +16:u05:2.10.13.1.3., +10:u07:means,, +7:u01:81], +16:u13:2.10.13.1.3., +16:u04:2.10.13.1.3., +10:u06:means,, +7:u00:81], +9:u08:wants, +16:u12:2.10.13.1.3., +10:u14:means,, +16:u03:2.10.13.1.3., +10:u05:means,, +9:u07:wants, +11:u08:subject, +16:u11:2.10.13.1.3., +10:u13:means,, +12:u14:contexts, +16:u02:2.10.13.1.3., +10:u04:means,, +16:u08:2.10.13.1.4., +9:u06:wants, +11:u07:subject, +16:u10:2.10.13.1.3., +10:u12:means,, +12:u13:contexts, +16:u01:2.10.13.1.3., +10:u03:means,, +9:u05:wants, +11:u06:subject, +8:u08:Loss, +10:u11:means,, +12:u12:contexts, +16:u00:2.10.13.1.3., +10:u02:means,, +16:u07:2.10.13.1.4., +9:u04:wants, +11:u05:subject, +8:u07:Loss, +10:u10:means,, +12:u11:contexts, +10:u01:means,, +16:u06:2.10.13.1.4., +9:u03:wants, +11:u04:subject, +8:u06:Loss, +11:u08:Replier, +12:u10:contexts, +16:u14:2.10.13.1.4., +10:u00:means,, +16:u05:2.10.13.1.4., +9:u02:wants, +11:u03:subject, +8:u05:Loss, +11:u07:Replier, +16:u13:2.10.13.1.4., +16:u04:2.10.13.1.4., +9:u01:wants, +11:u02:subject, +8:u04:Loss, +11:u06:Replier, +16:u12:2.10.13.1.4., +16:u03:2.10.13.1.4., +9:u00:wants, +11:u01:subject, +8:u03:Loss, +11:u05:Replier, +16:u11:2.10.13.1.4., +16:u02:2.10.13.1.4., +11:u00:subject, +8:u02:Loss, +11:u04:Replier, +16:u10:2.10.13.1.4., +16:u01:2.10.13.1.4., +8:u01:Loss, +11:u03:Replier, +16:u00:2.10.13.1.4., +8:u00:Loss, +11:u02:Replier, +11:u14:persist, +12:u08:servers,, +11:u01:Replier, +11:u13:persist, +11:u00:Replier, +11:u12:persist, +12:u07:servers,, +11:u11:persist, +12:u06:servers,, +13:u08:generally, +11:u10:persist, +12:u14:servers,, +12:u05:servers,, +12:u13:servers,, +11:u14:becomes, +12:u04:servers,, +13:u07:generally, +12:u12:servers,, +11:u13:becomes, +12:u03:servers,, +13:u06:generally, +12:u11:servers,, +11:u12:becomes, +13:u14:generally, +12:u02:servers,, +13:u05:generally, +22:u08:NFS4ERR_BADSESSION, +8:u08:loss, +12:u10:servers,, +11:u11:becomes, +13:u13:generally, +12:u01:servers,, +13:u04:generally, +8:u07:loss, +11:u10:becomes, +13:u12:generally, +8:u14:loss, +12:u00:servers,, +13:u03:generally, +22:u07:NFS4ERR_BADSESSION, +8:u06:loss, +13:u11:generally, +8:u13:loss, +13:u02:generally, +22:u06:NFS4ERR_BADSESSION, +8:u05:loss, +13:u10:generally, +8:u12:loss, +22:u14:nfs4err_badsession, +13:u01:generally, +22:u05:NFS4ERR_BADSESSION, +8:u04:loss, +8:u11:loss, +22:u13:nfs4err_badsession, +13:u00:generally, +22:u04:NFS4ERR_BADSESSION, +15:u08:association, +8:u03:loss, +8:u10:loss, +22:u12:nfs4err_badsession, +22:u03:NFS4ERR_BADSESSION, +8:u02:loss, +15:u08:enforcement, +22:u11:nfs4err_badsession, +22:u02:NFS4ERR_BADSESSION, +15:u07:association, +13:u08:SEQUENCE., +8:u01:loss, +15:u07:enforcement, +22:u10:nfs4err_badsession, +22:u01:NFS4ERR_BADSESSION, +15:u06:association, +8:u00:loss, +15:u06:enforcement, +15:u14:association, +22:u00:NFS4ERR_BADSESSION, +15:u05:association, +13:u07:SEQUENCE., +15:u05:enforcement, +15:u13:association, +15:u04:association, +13:u06:SEQUENCE., +12:u08:survives, +15:u04:enforcement, +15:u12:association, +13:u14:sequence., +15:u03:association, +13:u05:SEQUENCE., +15:u03:enforcement, +15:u11:association, +13:u13:sequence., +15:u02:association, +13:u04:SEQUENCE., +12:u07:survives, +15:u02:enforcement, +15:u10:association, +13:u12:sequence., +15:u01:association, +13:u03:SEQUENCE., +12:u06:survives, +15:u01:enforcement, +9:u08:again, +13:u11:sequence., +12:u14:survives, +15:u00:association, +13:u02:SEQUENCE., +12:u05:survives, +15:u00:enforcement, +9:u07:again, +13:u10:sequence., +12:u13:survives, +9:u14:sends, +13:u01:SEQUENCE., +12:u04:survives, +9:u06:again, +12:u12:survives, +9:u13:sends, +7:u22:sur, +8:u23:surv, +13:u00:SEQUENCE., +12:u03:survives, +9:u05:again, +7:u08:82], +12:u11:survives, +9:u12:sends, +12:u02:survives, +9:u04:again, +7:u07:82], +12:u10:survives, +9:u11:sends, +12:u01:survives, +9:u03:again, +7:u06:82], +9:u10:sends, +12:u00:survives, +9:u02:again, +7:u05:82], +23:u08:NFS4ERR_BADSESSION., +9:u01:again, +7:u04:82], +9:u00:again, +7:u03:82], +23:u07:NFS4ERR_BADSESSION., +9:u08:parts, +7:u02:82], +8:u08:want, +23:u06:NFS4ERR_BADSESSION., +7:u01:82], +8:u07:want, +23:u14:nfs4err_badsession., +23:u05:NFS4ERR_BADSESSION., +9:u07:parts, +7:u00:82], +8:u06:want, +23:u13:nfs4err_badsession., +23:u04:NFS4ERR_BADSESSION., +9:u06:parts, +8:u05:want, +23:u12:nfs4err_badsession., +9:u14:parts, +23:u03:NFS4ERR_BADSESSION., +9:u05:parts, +8:u04:want, +23:u11:nfs4err_badsession., +9:u13:parts, +23:u02:NFS4ERR_BADSESSION., +9:u04:parts, +8:u03:want, +23:u10:nfs4err_badsession., +9:u12:parts, +23:u01:NFS4ERR_BADSESSION., +9:u03:parts, +8:u02:want, +9:u11:parts, +23:u00:NFS4ERR_BADSESSION., +9:u02:parts, +8:u01:want, +9:u10:parts, +9:u01:parts, +8:u00:want, +10:u08:strong, +9:u00:parts, +10:u07:strong, +10:u06:strong, +14:u08:returned)., +10:u05:strong, +10:u04:strong, +14:u07:returned)., +10:u03:strong, +14:u06:returned)., +10:u02:strong, +12:u08:benefits, +14:u14:returned)., +14:u05:returned)., +10:u01:strong, +12:u07:benefits, +14:u13:returned)., +14:u04:returned)., +10:u00:strong, +12:u06:benefits, +14:u12:returned)., +14:u03:returned)., +12:u05:benefits, +14:u11:returned)., +14:u02:returned)., +12:u04:benefits, +14:u10:returned)., +14:u01:returned)., +12:u03:benefits, +14:u00:returned)., +12:u02:benefits, +12:u01:benefits, +12:u00:benefits, +12:u08:restart., +12:u07:restart., +13:u08:returned,, +12:u06:restart., +13:u07:returned,, +10:u08:delete, +12:u05:restart., +13:u06:returned,, +10:u07:delete, +12:u04:restart., +13:u05:returned,, +10:u06:delete, +12:u03:restart., +13:u04:returned,, +10:u05:delete, +8:u08:find, +12:u02:restart., +13:u03:returned,, +10:u04:delete, +8:u07:find, +12:u01:restart., +13:u02:returned,, +10:u03:delete, +8:u06:find, +12:u00:restart., +13:u01:returned,, +10:u02:delete, +8:u05:find, +13:u00:returned,, +10:u01:delete, +8:u04:find, +10:u00:delete, +8:u03:find, +8:u02:find, +8:u01:find, +8:u00:find, +8:u14:find, +8:u13:find, +8:u12:find, +10:u14:unable, +8:u23:find, +8:u11:find, +10:u13:unable, +8:u10:find, +10:u12:unable, +8:u23:unab, +7:u08:83], +10:u11:unable, +7:u07:83], +10:u10:unable, +7:u06:83], +7:u05:83], +7:u04:83], +14:u08:different,, +7:u03:83], +7:u02:83], +14:u07:different,, +12:u08:managing, +7:u01:83], +14:u06:different,, +7:u00:83], +14:u14:different,, +14:u05:different,, +12:u07:managing, +16:u08:disconnected, +14:u13:different,, +14:u04:different,, +12:u06:managing, +20:u08:reconfiguration., +14:u12:different,, +12:u14:managing, +14:u03:different,, +12:u05:managing, +16:u07:disconnected, +16:u08:Nonetheless,, +14:u11:different,, +12:u13:managing, +14:u02:different,, +12:u04:managing, +16:u06:disconnected, +20:u07:reconfiguration., +8:u08:deal, +16:u07:Nonetheless,, +14:u10:different,, +12:u12:managing, +16:u14:disconnected, +14:u01:different,, +12:u03:managing, +16:u05:disconnected, +20:u06:reconfiguration., +16:u06:Nonetheless,, +12:u11:managing, +16:u13:disconnected, +20:u14:reconfiguration., +14:u00:different,, +12:u02:managing, +16:u04:disconnected, +20:u05:reconfiguration., +8:u07:deal, +16:u05:Nonetheless,, +12:u10:managing, +16:u12:disconnected, +20:u13:reconfiguration., +12:u01:managing, +16:u03:disconnected, +20:u04:reconfiguration., +8:u06:deal, +16:u04:Nonetheless,, +16:u11:disconnected, +20:u12:reconfiguration., +8:u14:deal, +12:u00:managing, +16:u02:disconnected, +20:u03:reconfiguration., +8:u05:deal, +16:u03:Nonetheless,, +16:u10:disconnected, +20:u11:reconfiguration., +8:u13:deal, +16:u01:disconnected, +20:u02:reconfiguration., +8:u04:deal, +16:u02:Nonetheless,, +20:u10:reconfiguration., +8:u12:deal, +7:u22:dea, +8:u23:deal, +16:u00:disconnected, +20:u01:reconfiguration., +8:u03:deal, +16:u08:RECOMMENDED., +16:u01:Nonetheless,, +8:u11:deal, +20:u00:reconfiguration., +8:u02:deal, +16:u00:Nonetheless,, +8:u10:deal, +8:u01:deal, +16:u07:RECOMMENDED., +10:u08:moves,, +13:u08:variation, +8:u00:deal, +16:u06:RECOMMENDED., +13:u07:variation, +16:u14:recommended., +16:u05:RECOMMENDED., +10:u07:moves,, +13:u06:variation, +9:u08:2049., +16:u13:recommended., +16:u04:RECOMMENDED., +10:u06:moves,, +17:u08:PROG_MISMATCH, +13:u05:variation, +9:u07:2049., +16:u12:recommended., +10:u14:moves,, +16:u03:RECOMMENDED., +10:u05:moves,, +12:u08:attempts, +13:u04:variation, +9:u06:2049., +10:u08:error,, +16:u11:recommended., +10:u13:moves,, +10:uI2:,.,..,, +16:u02:RECOMMENDED., +10:u04:moves,, +17:u07:PROG_MISMATCH, +13:u03:variation, +9:u05:2049., +10:u07:error,, +16:u10:recommended., +10:u12:moves,, +7:u22:mov, +8:u23:move, +10:uI1:,.,..,, +16:u01:RECOMMENDED., +10:u03:moves,, +17:u06:PROG_MISMATCH, +12:u07:attempts, +13:u02:variation, +9:u04:2049., +10:u06:error,, +11:u08:treated, +10:u11:moves,, +17:u14:prog_mismatch, +10:uI0:,.,..,, +16:u00:RECOMMENDED., +10:u02:moves,, +17:u05:PROG_MISMATCH, +12:u06:attempts, +13:u01:variation, +9:u03:2049., +10:u05:error,, +11:u07:treated, +13:u08:purposes., +10:u10:moves,, +17:u13:prog_mismatch, +12:u14:attempts, +10:u01:moves,, +17:u04:PROG_MISMATCH, +12:u05:attempts, +13:u00:variation, +9:u02:2049., +10:u04:error,, +11:u06:treated, +13:u07:purposes., +17:u12:prog_mismatch, +12:u13:attempts, +6:u21:PR, +7:u22:PRO, +8:u23:PROG, +10:u00:moves,, +17:u03:PROG_MISMATCH, +12:u04:attempts, +9:u01:2049., +10:u03:error,, +11:u05:treated, +13:u06:purposes., +12:u08:recover., +17:u11:prog_mismatch, +12:u12:attempts, +17:u02:PROG_MISMATCH, +12:u03:attempts, +9:u00:2049., +10:u02:error,, +11:u04:treated, +13:u05:purposes., +12:u07:recover., +17:u10:prog_mismatch, +12:u11:attempts, +17:u01:PROG_MISMATCH, +12:u02:attempts, +10:u01:error,, +11:u03:treated, +13:u04:purposes., +12:u06:recover., +12:u10:attempts, +8:u23:thes, +17:u00:PROG_MISMATCH, +12:u01:attempts, +9:u08:open,, +10:u00:error,, +11:u02:treated, +13:u03:purposes., +12:u05:recover., +12:u00:attempts, +11:u01:treated, +13:u02:purposes., +12:u04:recover., +15:u08:delegation,, +9:u07:open,, +11:u00:treated, +13:u01:purposes., +12:u03:recover., +15:u07:delegation,, +9:u06:open,, +13:u00:purposes., +12:u02:recover., +15:u06:delegation,, +9:u14:open,, +9:u05:open,, +12:u01:recover., +15:u05:delegation,, +10:u08:layout, +9:u13:open,, +9:u04:open,, +12:u00:recover., +15:u04:delegation,, +10:u07:layout, +9:u12:open,, +9:u03:open,, +15:u03:delegation,, +10:u06:layout, +9:u11:open,, +9:u02:open,, +15:u02:delegation,, +10:u05:layout, +10:u08:8.4.2., +9:u10:open,, +9:u01:open,, +15:u01:delegation,, +10:u04:layout, +10:u07:8.4.2., +9:u00:open,, +15:u00:delegation,, +10:u03:layout, +10:u06:8.4.2., +10:uI2:,-,,,., +12:u08:preserve, +10:u02:layout, +10:u05:8.4.2., +10:uI1:,-,,,., +10:u01:layout, +10:u04:8.4.2., +10:uI0:,-,,,., +12:u07:preserve, +10:u00:layout, +10:u03:8.4.2., +12:u06:preserve, +10:u02:8.4.2., +12:u14:preserve, +12:u05:preserve, +10:u01:8.4.2., +12:u13:preserve, +12:u04:preserve, +10:u00:8.4.2., +7:u08:84], +12:u12:preserve, +12:u03:preserve, +7:u07:84], +12:u11:preserve, +12:u02:preserve, +7:u06:84], +12:u10:preserve, +12:u01:preserve, +7:u05:84], +12:u00:preserve, +7:u04:84], +16:u08:2.10.13.2.1., +7:u03:84], +7:u02:84], +14:u14:2.10.13.2., +16:u07:2.10.13.2.1., +7:u01:84], +14:u13:2.10.13.2., +16:u06:2.10.13.2.1., +8:u08:had., +7:u00:84], +14:u12:2.10.13.2., +16:u14:2.10.13.2.1., +16:u05:2.10.13.2.1., +16:u08:2.10.13.2.2., +14:u11:2.10.13.2., +16:u13:2.10.13.2.1., +16:u04:2.10.13.2.1., +8:u07:had., +14:u10:2.10.13.2., +16:u12:2.10.13.2.1., +16:u03:2.10.13.2.1., +8:u06:had., +16:u07:2.10.13.2.2., +16:u11:2.10.13.2.1., +8:u14:had., +16:u02:2.10.13.2.1., +8:u05:had., +16:u06:2.10.13.2.2., +16:u10:2.10.13.2.1., +8:u13:had., +16:u14:2.10.13.2.2., +16:u01:2.10.13.2.1., +8:u04:had., +16:u05:2.10.13.2.2., +8:u12:had., +16:u13:2.10.13.2.2., +7:u22:had, +8:u23:had., +16:u00:2.10.13.2.1., +8:u03:had., +16:u04:2.10.13.2.2., +8:u11:had., +16:u12:2.10.13.2.2., +8:u02:had., +16:u03:2.10.13.2.2., +16:u08:2.10.13.2.3., +8:u10:had., +16:u11:2.10.13.2.2., +8:u01:had., +16:u02:2.10.13.2.2., +16:u10:2.10.13.2.2., +8:u00:had., +16:u01:2.10.13.2.2., +16:u07:2.10.13.2.3., +7:u14:old, +16:u00:2.10.13.2.2., +16:u06:2.10.13.2.3., +10:u08:Unless, +7:u13:old, +16:u14:2.10.13.2.3., +16:u05:2.10.13.2.3., +7:u12:old, +16:u13:2.10.13.2.3., +6:u21:ol, +7:u22:old, +7:u23:old, +16:u04:2.10.13.2.3., +10:u07:Unless, +16:u08:permanently., +7:u11:old, +16:u12:2.10.13.2.3., +16:u03:2.10.13.2.3., +10:u06:Unless, +16:u08:2.10.13.2.4., +7:u10:old, +16:u11:2.10.13.2.3., +16:u02:2.10.13.2.3., +10:u05:Unless, +16:u07:permanently., +16:u10:2.10.13.2.3., +16:u01:2.10.13.2.3., +10:u04:Unless, +16:u06:permanently., +16:u07:2.10.13.2.4., +16:u14:permanently., +8:u23:Unle, +16:u00:2.10.13.2.3., +10:u03:Unless, +16:u05:permanently., +16:u06:2.10.13.2.4., +9:u08:loss,, +16:u13:permanently., +16:u14:2.10.13.2.4., +10:u02:Unless, +16:u04:permanently., +16:u05:2.10.13.2.4., +9:u07:loss,, +16:u12:permanently., +16:u13:2.10.13.2.4., +10:u01:Unless, +16:u03:permanently., +16:u04:2.10.13.2.4., +9:u06:loss,, +16:u11:permanently., +16:u12:2.10.13.2.4., +10:u00:Unless, +16:u02:permanently., +16:u03:2.10.13.2.4., +9:u05:loss,, +16:u10:permanently., +16:u11:2.10.13.2.4., +16:u01:permanently., +16:u02:2.10.13.2.4., +9:u04:loss,, +16:u10:2.10.13.2.4., +16:u00:permanently., +16:u01:2.10.13.2.4., +9:u03:loss,, +16:u00:2.10.13.2.4., +9:u02:loss,, +9:u01:loss,, +9:u00:loss,, +19:u08:sr_status_flags, +19:u07:sr_status_flags, +19:u08:re-established., +19:u06:sr_status_flags, +19:u07:re-established., +19:u14:sr_status_flags, +19:u05:sr_status_flags, +19:u06:re-established., +19:u13:sr_status_flags, +19:u04:sr_status_flags, +20:u08:sr_status_flags., +19:u05:re-established., +9:u08:18.46, +19:u12:sr_status_flags, +6:u21:sr, +7:u22:sr_, +8:u23:sr_s, +19:u03:sr_status_flags, +19:u04:re-established., +9:u07:18.46, +19:u11:sr_status_flags, +19:u02:sr_status_flags, +20:u07:sr_status_flags., +19:u03:re-established., +9:u06:18.46, +19:u10:sr_status_flags, +19:u01:sr_status_flags, +20:u06:sr_status_flags., +19:u02:re-established., +9:u05:18.46, +20:u14:sr_status_flags., +19:u00:sr_status_flags, +20:u05:sr_status_flags., +19:u01:re-established., +9:u04:18.46, +7:u08:85], +20:u13:sr_status_flags., +20:u04:sr_status_flags., +19:u00:re-established., +9:u03:18.46, +7:u07:85], +20:u12:sr_status_flags., +20:u03:sr_status_flags., +9:u02:18.46, +7:u06:85], +20:u11:sr_status_flags., +20:u02:sr_status_flags., +16:u08:2.10.13.2.5., +9:u01:18.46, +7:u05:85], +20:u10:sr_status_flags., +20:u01:sr_status_flags., +9:u00:18.46, +7:u04:85], +20:u00:sr_status_flags., +16:u07:2.10.13.2.5., +7:u03:85], +16:u06:2.10.13.2.5., +8:u08:near, +7:u02:85], +16:u14:2.10.13.2.5., +16:u05:2.10.13.2.5., +7:u01:85], +10:u08:expiry, +16:u13:2.10.13.2.5., +16:u04:2.10.13.2.5., +8:u07:near, +7:u00:85], +10:u07:expiry, +16:u12:2.10.13.2.5., +16:u03:2.10.13.2.5., +8:u06:near, +10:u06:expiry, +16:u11:2.10.13.2.5., +8:u14:near, +16:u02:2.10.13.2.5., +8:u05:near, +10:u05:expiry, +16:u10:2.10.13.2.5., +8:u13:near, +16:u01:2.10.13.2.5., +8:u04:near, +12:u08:2.10.14., +10:u04:expiry, +12:u08:replies., +8:u12:near, +16:u00:2.10.13.2.5., +8:u03:near, +10:u03:expiry, +12:u07:replies., +8:u11:near, +8:u02:near, +12:u07:2.10.14., +12:u08:metadata, +10:u02:expiry, +12:u06:replies., +8:u10:near, +8:u01:near, +12:u06:2.10.14., +10:u01:expiry, +12:u05:replies., +12:u14:2.10.14., +8:u00:near, +12:u05:2.10.14., +12:u07:metadata, +31:u08:EXCHGID4_FLAG_USE_PNFS_MDS,, +10:u00:expiry, +12:u04:replies., +12:u13:2.10.14., +12:u04:2.10.14., +12:u06:metadata, +12:u08:mutually, +12:u03:replies., +12:u12:2.10.14., +12:u14:metadata, +12:u03:2.10.14., +12:u05:metadata, +31:u07:EXCHGID4_FLAG_USE_PNFS_MDS,, +12:u02:replies., +14:u08:exclusive), +12:u11:2.10.14., +12:u13:metadata, +12:u02:2.10.14., +12:u04:metadata, +31:u06:EXCHGID4_FLAG_USE_PNFS_MDS,, +12:u07:mutually, +12:u01:replies., +14:u07:exclusive), +12:u10:2.10.14., +12:u12:metadata, +31:u14:exchgid4_flag_use_pnfs_mds,, +8:u23:meta, +12:u01:2.10.14., +12:u03:metadata, +31:u05:EXCHGID4_FLAG_USE_PNFS_MDS,, +12:u06:mutually, +12:u00:replies., +14:u06:exclusive), +9:u08:under, +12:u11:metadata, +31:u13:exchgid4_flag_use_pnfs_mds,, +12:u14:mutually, +12:u00:2.10.14., +12:u02:metadata, +31:u04:EXCHGID4_FLAG_USE_PNFS_MDS,, +12:u05:mutually, +14:u05:exclusive), +9:u07:under, +12:u10:metadata, +31:u12:exchgid4_flag_use_pnfs_mds,, +12:u13:mutually, +11:u14:results, +12:u01:metadata, +31:u03:EXCHGID4_FLAG_USE_PNFS_MDS,, +12:u04:mutually, +14:u04:exclusive), +9:u06:under, +19:u08:considerations., +31:u11:exchgid4_flag_use_pnfs_mds,, +12:u12:mutually, +11:u13:results, +11:u14:created, +7:u22:mut, +8:u23:mutu, +12:u00:metadata, +31:u02:EXCHGID4_FLAG_USE_PNFS_MDS,, +12:u03:mutually, +14:u03:exclusive), +9:u05:under, +19:u07:considerations., +31:u10:exchgid4_flag_use_pnfs_mds,, +12:u11:mutually, +11:u12:results, +11:u13:created, +31:u01:EXCHGID4_FLAG_USE_PNFS_MDS,, +12:u02:mutually, +14:u02:exclusive), +9:u04:under, +19:u06:considerations., +10:u08:syntax, +12:u10:mutually, +11:u11:results, +11:u12:created, +31:u00:EXCHGID4_FLAG_USE_PNFS_MDS,, +12:u01:mutually, +14:u08:documents., +14:u01:exclusive), +9:u03:under, +19:u05:considerations., +10:u07:syntax, +11:u10:results, +11:u11:created, +12:u00:mutually, +14:u08:constants,, +14:u00:exclusive), +9:u02:under, +19:u04:considerations., +10:u06:syntax, +11:u10:created, +14:u07:documents., +9:u01:under, +19:u03:considerations., +10:u05:syntax, +10:u08:types,, +14:u06:documents., +14:u07:constants,, +9:u00:under, +19:u02:considerations., +10:u04:syntax, +10:u07:types,, +14:u14:documents., +14:u05:documents., +14:u06:constants,, +9:u08:const, +19:u01:considerations., +10:u03:syntax, +10:u06:types,, +14:u13:documents., +14:u14:constants,, +14:u04:documents., +14:u05:constants,, +19:u00:considerations., +10:u02:syntax, +10:u05:types,, +15:u08:NFS4_FHSIZE, +14:u12:documents., +14:u13:constants,, +14:u03:documents., +14:u04:constants,, +9:u07:const, +10:u01:syntax, +10:u04:types,, +15:u07:NFS4_FHSIZE, +8:u08:128;, +14:u11:documents., +14:u12:constants,, +14:u02:documents., +14:u03:constants,, +9:u06:const, +10:u00:syntax, +10:u03:types,, +15:u06:NFS4_FHSIZE, +8:u07:128;, +22:u08:NFS4_VERIFIER_SIZE, +14:u10:documents., +14:u11:constants,, +9:u14:const, +14:u01:documents., +14:u02:constants,, +9:u05:const, +10:u02:types,, +15:u05:NFS4_FHSIZE, +8:u06:128;, +22:u07:NFS4_VERIFIER_SIZE, +6:u08:8;, +14:u10:constants,, +9:u13:const, +14:u00:documents., +14:u01:constants,, +9:u04:const, +10:u01:types,, +15:u04:NFS4_FHSIZE, +8:u05:128;, +22:u06:NFS4_VERIFIER_SIZE, +6:u07:8;, +21:u08:NFS4_OPAQUE_LIMIT, +9:u12:const, +14:u00:constants,, +9:u03:const, +10:u00:types,, +15:u03:NFS4_FHSIZE, +8:u04:128;, +22:u05:NFS4_VERIFIER_SIZE, +6:u06:8;, +21:u07:NFS4_OPAQUE_LIMIT, +9:u08:1024;, +9:u11:const, +9:u02:const, +15:u02:NFS4_FHSIZE, +8:u03:128;, +22:u04:NFS4_VERIFIER_SIZE, +6:u05:8;, +21:u06:NFS4_OPAQUE_LIMIT, +9:u07:1024;, +23:u08:NFS4_SESSIONID_SIZE, +9:u10:const, +9:u01:const, +15:u01:NFS4_FHSIZE, +8:u02:128;, +22:u03:NFS4_VERIFIER_SIZE, +6:u04:8;, +21:u05:NFS4_OPAQUE_LIMIT, +9:u06:1024;, +23:u07:NFS4_SESSIONID_SIZE, +7:u08:16;, +9:u00:const, +15:u00:NFS4_FHSIZE, +8:u01:128;, +22:u02:NFS4_VERIFIER_SIZE, +6:u03:8;, +21:u04:NFS4_OPAQUE_LIMIT, +9:u05:1024;, +23:u06:NFS4_SESSIONID_SIZE, +7:u07:16;, +18:u08:NFS4_INT64_MAX, +8:u00:128;, +22:u01:NFS4_VERIFIER_SIZE, +6:u02:8;, +21:u03:NFS4_OPAQUE_LIMIT, +9:u04:1024;, +23:u05:NFS4_SESSIONID_SIZE, +7:u06:16;, +18:u07:NFS4_INT64_MAX, +23:u08:0x7fffffffffffffff;, +22:u00:NFS4_VERIFIER_SIZE, +6:u01:8;, +21:u02:NFS4_OPAQUE_LIMIT, +9:u03:1024;, +23:u04:NFS4_SESSIONID_SIZE, +7:u05:16;, +18:u06:NFS4_INT64_MAX, +23:u07:0x7fffffffffffffff;, +19:u08:NFS4_UINT64_MAX, +6:u00:8;, +21:u01:NFS4_OPAQUE_LIMIT, +9:u02:1024;, +23:u03:NFS4_SESSIONID_SIZE, +7:u04:16;, +18:u05:NFS4_INT64_MAX, +23:u06:0x7fffffffffffffff;, +19:u07:NFS4_UINT64_MAX, +23:u08:0xffffffffffffffff;, +21:u00:NFS4_OPAQUE_LIMIT, +9:u01:1024;, +23:u02:NFS4_SESSIONID_SIZE, +7:u03:16;, +18:u04:NFS4_INT64_MAX, +23:u05:0x7fffffffffffffff;, +19:u06:NFS4_UINT64_MAX, +23:u07:0xffffffffffffffff;, +18:u08:NFS4_INT32_MAX, +9:u00:1024;, +23:u01:NFS4_SESSIONID_SIZE, +7:u02:16;, +18:u03:NFS4_INT64_MAX, +23:u04:0x7fffffffffffffff;, +19:u05:NFS4_UINT64_MAX, +23:u06:0xffffffffffffffff;, +18:u07:NFS4_INT32_MAX, +15:u08:0x7fffffff;, +23:u00:NFS4_SESSIONID_SIZE, +7:u01:16;, +18:u02:NFS4_INT64_MAX, +23:u03:0x7fffffffffffffff;, +19:u04:NFS4_UINT64_MAX, +23:u05:0xffffffffffffffff;, +18:u06:NFS4_INT32_MAX, +15:u07:0x7fffffff;, +19:u08:NFS4_UINT32_MAX, +7:u00:16;, +18:u01:NFS4_INT64_MAX, +23:u02:0x7fffffffffffffff;, +19:u03:NFS4_UINT64_MAX, +23:u04:0xffffffffffffffff;, +18:u05:NFS4_INT32_MAX, +15:u06:0x7fffffff;, +19:u07:NFS4_UINT32_MAX, +15:u08:0xffffffff;, +18:u00:NFS4_INT64_MAX, +23:u01:0x7fffffffffffffff;, +19:u02:NFS4_UINT64_MAX, +23:u03:0xffffffffffffffff;, +18:u04:NFS4_INT32_MAX, +15:u05:0x7fffffff;, +19:u06:NFS4_UINT32_MAX, +15:u07:0xffffffff;, +19:u08:NFS4_MAXFILELEN, +23:u00:0x7fffffffffffffff;, +19:u01:NFS4_UINT64_MAX, +23:u02:0xffffffffffffffff;, +18:u03:NFS4_INT32_MAX, +15:u04:0x7fffffff;, +19:u05:NFS4_UINT32_MAX, +15:u06:0xffffffff;, +19:u07:NFS4_MAXFILELEN, +19:u00:NFS4_UINT64_MAX, +23:u01:0xffffffffffffffff;, +18:u02:NFS4_INT32_MAX, +15:u03:0x7fffffff;, +19:u04:NFS4_UINT32_MAX, +15:u05:0xffffffff;, +19:u06:NFS4_MAXFILELEN, +19:u08:NFS4_MAXFILEOFF, +23:u00:0xffffffffffffffff;, +18:u01:NFS4_INT32_MAX, +15:u02:0x7fffffff;, +19:u03:NFS4_UINT32_MAX, +15:u04:0xffffffff;, +19:u05:NFS4_MAXFILELEN, +19:u07:NFS4_MAXFILEOFF, +23:u08:0xfffffffffffffffe;, +18:u00:NFS4_INT32_MAX, +15:u01:0x7fffffff;, +19:u02:NFS4_UINT32_MAX, +15:u03:0xffffffff;, +19:u04:NFS4_MAXFILELEN, +19:u06:NFS4_MAXFILEOFF, +23:u07:0xfffffffffffffffe;, +15:u00:0x7fffffff;, +19:u01:NFS4_UINT32_MAX, +15:u02:0xffffffff;, +19:u03:NFS4_MAXFILELEN, +19:u05:NFS4_MAXFILEOFF, +23:u06:0xfffffffffffffffe;, +19:u00:NFS4_UINT32_MAX, +15:u01:0xffffffff;, +19:u02:NFS4_MAXFILELEN, +19:u04:NFS4_MAXFILEOFF, +23:u05:0xfffffffffffffffe;, +15:u00:0xffffffff;, +19:u01:NFS4_MAXFILELEN, +19:u03:NFS4_MAXFILEOFF, +23:u04:0xfffffffffffffffe;, +19:u00:NFS4_MAXFILELEN, +19:u02:NFS4_MAXFILEOFF, +23:u03:0xfffffffffffffffe;, +7:u08:86], +19:u01:NFS4_MAXFILEOFF, +23:u02:0xfffffffffffffffe;, +7:u07:86], +19:u00:NFS4_MAXFILEOFF, +23:u01:0xfffffffffffffffe;, +7:u06:86], +23:u00:0xfffffffffffffffe;, +7:u05:86], +7:u04:86], +7:u03:86], +7:u02:86], +7:u01:86], +7:u00:86], +12:u08:integer., +12:u07:integer., +12:u06:integer., +12:u14:integer., +12:u05:integer., +12:u13:integer., +12:u04:integer., +12:u12:integer., +12:u03:integer., +12:u11:integer., +12:u02:integer., +12:u10:integer., +12:u01:integer., +73:u08:+---------------+---------------------------------------------------+, +12:u00:integer., +73:u07:+---------------+---------------------------------------------------+, +73:u06:+---------------+---------------------------------------------------+, +73:u14:+---------------+---------------------------------------------------+, +73:u05:+---------------+---------------------------------------------------+, +73:u13:+---------------+---------------------------------------------------+, +73:u04:+---------------+---------------------------------------------------+, +73:u12:+---------------+---------------------------------------------------+, +73:u03:+---------------+---------------------------------------------------+, +11:u08:int32_t, +73:u11:+---------------+---------------------------------------------------+, +73:u02:+---------------+---------------------------------------------------+, +11:u07:int32_t, +11:u08:typedef, +73:u10:+---------------+---------------------------------------------------+, +73:u01:+---------------+---------------------------------------------------+, +11:u06:int32_t, +11:u07:typedef, +73:u00:+---------------+---------------------------------------------------+, +11:u05:int32_t, +11:u06:typedef, +11:u04:int32_t, +11:u05:typedef, +11:u03:int32_t, +11:u04:typedef, +11:u02:int32_t, +11:u03:typedef, +11:u08:int64_t, +11:u01:int32_t, +11:u02:typedef, +11:u07:int64_t, +11:u00:int32_t, +11:u01:typedef, +11:u06:int64_t, +11:u00:typedef, +11:u05:int64_t, +11:u04:int64_t, +11:u03:int64_t, +11:u02:int64_t, +13:u08:attrlist4, +11:u01:int64_t, +13:u07:attrlist4, +11:u00:int64_t, +13:u06:attrlist4, +13:u05:attrlist4, +13:u04:attrlist4, +13:u03:attrlist4, +13:u02:attrlist4, +13:u01:attrlist4, +13:u00:attrlist4, +13:u08:changeid4, +13:u07:changeid4, +13:u06:changeid4, +13:u05:changeid4, +13:u04:changeid4, +13:u03:changeid4, +13:u02:changeid4, +13:u08:clientid4, +13:u01:changeid4, +13:u07:clientid4, +13:u00:changeid4, +13:u06:clientid4, +13:u05:clientid4, +13:u04:clientid4, +13:u08:Shorthand, +13:u03:clientid4, +13:u07:Shorthand, +13:u02:clientid4, +13:u06:Shorthand, +10:u08:count4, +13:u01:clientid4, +13:u05:Shorthand, +10:u07:count4, +13:u00:clientid4, +13:u04:Shorthand, +10:u06:count4, +13:u03:Shorthand, +10:u05:count4, +13:u02:Shorthand, +10:u04:count4, +11:u08:Various, +13:u01:Shorthand, +10:u03:count4, +11:u07:Various, +13:u00:Shorthand, +10:u02:count4, +11:u06:Various, +11:u08:length4, +10:u01:count4, +11:u05:Various, +11:u07:length4, +9:uI2:(,,)., +10:u00:count4, +11:u04:Various, +11:u06:length4, +9:uI1:(,,)., +11:u03:Various, +11:u05:length4, +9:uI0:(,,)., +11:u02:Various, +11:u04:length4, +11:u01:Various, +11:u03:length4, +11:u00:Various, +11:u02:length4, +9:u08:mode4, +11:u01:length4, +9:u07:mode4, +11:u00:length4, +9:u06:mode4, +9:u05:mode4, +9:u04:mode4, +8:u08:Mode, +9:u03:mode4, +8:u07:Mode, +9:u02:mode4, +8:u06:Mode, +15:u08:nfs_cookie4, +9:u01:mode4, +8:u05:Mode, +15:u07:nfs_cookie4, +9:u00:mode4, +8:u04:Mode, +15:u06:nfs_cookie4, +8:u03:Mode, +15:u05:nfs_cookie4, +8:u02:Mode, +15:u04:nfs_cookie4, +10:u08:Opaque, +8:u01:Mode, +15:u03:nfs_cookie4, +10:u07:Opaque, +8:u00:Mode, +15:u02:nfs_cookie4, +10:u06:Opaque, +15:u01:nfs_cookie4, +10:u05:Opaque, +15:u00:nfs_cookie4, +10:u04:Opaque, +7:u08:87], +10:u03:Opaque, +7:u07:87], +10:u02:Opaque, +7:u06:87], +10:u01:Opaque, +7:u05:87], +10:u00:Opaque, +7:u04:87], +11:u08:nfs_fh4, +7:u03:87], +11:u07:nfs_fh4, +7:u02:87], +11:u06:nfs_fh4, +7:u01:87], +11:u05:nfs_fh4, +7:u00:87], +11:u04:nfs_fh4, +11:u03:nfs_fh4, +11:u02:nfs_fh4, +14:u08:nfs_ftype4, +11:u01:nfs_fh4, +14:u07:nfs_ftype4, +11:u00:nfs_fh4, +14:u06:nfs_ftype4, +14:u05:nfs_ftype4, +14:u04:nfs_ftype4, +14:u03:nfs_ftype4, +14:u02:nfs_ftype4, +12:u08:nfsstat4, +14:u01:nfs_ftype4, +12:u07:nfsstat4, +14:u00:nfs_ftype4, +12:u06:nfsstat4, +12:u05:nfsstat4, +12:u04:nfsstat4, +10:u08:Return, +12:u03:nfsstat4, +10:u07:Return, +12:u02:nfsstat4, +10:u06:Return, +11:u08:offset4, +12:u01:nfsstat4, +10:u05:Return, +11:u07:offset4, +12:u00:nfsstat4, +10:u04:Return, +11:u06:offset4, +10:u03:Return, +11:u05:offset4, +10:u02:Return, +11:u04:offset4, +10:u01:Return, +11:u03:offset4, +10:u00:Return, +11:u02:offset4, +11:u01:offset4, +12:u08:COMMIT)., +11:u00:offset4, +12:u07:COMMIT)., +12:u06:COMMIT)., +8:u08:qop4, +12:u05:COMMIT)., +8:u07:qop4, +12:u04:COMMIT)., +8:u06:qop4, +12:u03:COMMIT)., +8:u05:qop4, +12:u02:COMMIT)., +8:u04:qop4, +12:u01:COMMIT)., +8:u03:qop4, +12:u00:COMMIT)., +8:u02:qop4, +12:u08:sec_oid4, +8:u01:qop4, +12:u07:sec_oid4, +8:u00:qop4, +12:u06:sec_oid4, +12:u05:sec_oid4, +12:u04:sec_oid4, +12:u03:sec_oid4, +12:u02:sec_oid4, +12:u01:sec_oid4, +12:u00:sec_oid4, +15:u08:sequenceid4, +15:u07:sequenceid4, +15:u06:sequenceid4, +15:u05:sequenceid4, +15:u04:sequenceid4, +15:u03:sequenceid4, +15:u02:sequenceid4, +15:u01:sequenceid4, +15:u00:sequenceid4, +10:u08:seqid4, +10:u07:seqid4, +10:u06:seqid4, +10:u05:seqid4, +10:u04:seqid4, +10:u03:seqid4, +10:u02:seqid4, +14:u08:sessionid4, +10:u01:seqid4, +14:u07:sessionid4, +10:u00:seqid4, +14:u06:sessionid4, +14:u05:sessionid4, +14:u04:sessionid4, +14:u03:sessionid4, +14:u02:sessionid4, +11:u08:slotid4, +14:u01:sessionid4, +11:u07:slotid4, +14:u00:sessionid4, +11:u06:slotid4, +11:u05:slotid4, +11:u04:slotid4, +11:u03:slotid4, +11:u02:slotid4, +11:u01:slotid4, +11:u00:slotid4, +14:u08:utf8string, +14:u07:utf8string, +8:uI2:(,)., +14:u06:utf8string, +8:uI1:(,)., +14:u05:utf8string, +8:uI0:(,)., +14:u04:utf8string, +14:u03:utf8string, +14:u02:utf8string, +15:u08:utf8str_cis, +14:u01:utf8string, +15:u07:utf8str_cis, +14:u00:utf8string, +15:u06:utf8str_cis, +15:u05:utf8str_cis, +15:u04:utf8str_cis, +20:u08:Case-insensitive, +15:u03:utf8str_cis, +20:u07:Case-insensitive, +15:u02:utf8str_cis, +20:u06:Case-insensitive, +14:u08:utf8str_cs, +15:u01:utf8str_cis, +20:u05:Case-insensitive, +14:u07:utf8str_cs, +15:u00:utf8str_cis, +20:u04:Case-insensitive, +14:u06:utf8str_cs, +20:u03:Case-insensitive, +14:u05:utf8str_cs, +20:u02:Case-insensitive, +14:u04:utf8str_cs, +18:u08:Case-sensitive, +20:u01:Case-insensitive, +14:u03:utf8str_cs, +18:u07:Case-sensitive, +20:u00:Case-insensitive, +14:u02:utf8str_cs, +18:u06:Case-sensitive, +17:u08:utf8str_mixed, +14:u01:utf8str_cs, +18:u05:Case-sensitive, +17:u07:utf8str_mixed, +14:u00:utf8str_cs, +18:u04:Case-sensitive, +17:u06:utf8str_mixed, +18:u03:Case-sensitive, +17:u05:utf8str_mixed, +18:u02:Case-sensitive, +17:u04:utf8str_mixed, +18:u01:Case-sensitive, +17:u03:utf8str_mixed, +20:u08:case-insensitive, +18:u00:Case-sensitive, +17:u02:utf8str_mixed, +20:u07:case-insensitive, +17:u01:utf8str_mixed, +20:u06:case-insensitive, +14:u08:component4, +17:u00:utf8str_mixed, +20:u05:case-insensitive, +14:u07:component4, +20:u04:case-insensitive, +14:u06:component4, +20:u03:case-insensitive, +14:u05:component4, +20:u02:case-insensitive, +14:u04:component4, +14:u08:Represents, +20:u01:case-insensitive, +14:u03:component4, +14:u07:Represents, +20:u00:case-insensitive, +14:u02:component4, +14:u06:Represents, +13:u08:linktext4, +14:u01:component4, +14:u05:Represents, +13:u07:linktext4, +14:u00:component4, +14:u04:Represents, +13:u06:linktext4, +14:u03:Represents, +13:u05:linktext4, +14:u02:Represents, +13:u04:linktext4, +12:u08:Symbolic, +14:u01:Represents, +13:u03:linktext4, +12:u07:Symbolic, +14:u00:Represents, +13:u02:linktext4, +12:u06:Symbolic, +13:u01:linktext4, +12:u05:Symbolic, +13:u00:linktext4, +12:u04:Symbolic, +12:u03:Symbolic, +13:u08:pathname4, +12:u02:Symbolic, +13:u07:pathname4, +12:u01:Symbolic, +13:u06:pathname4, +12:u00:Symbolic, +13:u05:pathname4, +13:u04:pathname4, +13:u03:pathname4, +13:u02:pathname4, +13:u01:pathname4, +13:u00:pathname4, +12:u08:Verifier, +12:u07:Verifier, +12:u06:Verifier, +12:u05:Verifier, +11:u08:CREATE,, +12:u04:Verifier, +11:u07:CREATE,, +12:u03:Verifier, +11:u06:CREATE,, +12:u02:Verifier, +11:u05:CREATE,, +9:uI2:,,,,), +12:u01:Verifier, +11:u04:CREATE,, +9:uI1:,,,,), +12:u00:Verifier, +11:u03:CREATE,, +9:uI0:,,,,), +11:u02:CREATE,, +11:u01:CREATE,, +7:u08:88], +11:u00:CREATE,, +7:u07:88], +7:u06:88], +7:u05:88], +7:u08:End, +7:u04:88], +7:u03:88], +7:u07:End, +7:u02:88], +7:u06:End, +7:u01:88], +7:u05:End, +7:u00:88], +12:u08:nfstime4, +7:u04:End, +12:u07:nfstime4, +7:u23:End, +7:u03:End, +12:u08:seconds;, +12:u06:nfstime4, +7:u02:End, +12:u05:nfstime4, +7:u01:End, +12:u07:seconds;, +13:u08:nseconds;, +12:u04:nfstime4, +11:u14:int64_t, +7:u00:End, +12:u06:seconds;, +12:u03:nfstime4, +11:u13:int64_t, +12:u14:seconds;, +12:u05:seconds;, +13:u07:nseconds;, +12:u02:nfstime4, +11:u12:int64_t, +12:u13:seconds;, +8:u23:int6, +12:u04:seconds;, +13:u06:nseconds;, +12:u01:nfstime4, +11:u11:int64_t, +12:u12:seconds;, +13:u14:nseconds;, +12:u03:seconds;, +13:u05:nseconds;, +12:u00:nfstime4, +12:u08:midnight, +11:u10:int64_t, +12:u11:seconds;, +13:u13:nseconds;, +12:u02:seconds;, +13:u04:nseconds;, +9:u08:dates, +12:u07:midnight, +10:u08:(UTC)., +12:u10:seconds;, +13:u12:nseconds;, +6:u21:ns, +7:u22:nse, +8:u23:nsec, +12:u01:seconds;, +13:u03:nseconds;, +12:u06:midnight, +10:u07:(UTC)., +13:u11:nseconds;, +12:u00:seconds;, +13:u02:nseconds;, +9:u07:dates, +12:u05:midnight, +10:u06:(UTC)., +11:u08:seconds, +13:u10:nseconds;, +13:u01:nseconds;, +9:u06:dates, +12:u04:midnight, +10:u05:(UTC)., +11:u07:seconds, +9:u14:dates, +13:u00:nseconds;, +9:u05:dates, +12:u03:midnight, +10:u04:(UTC)., +11:u06:seconds, +9:u13:dates, +9:u04:dates, +12:u02:midnight, +10:u03:(UTC)., +11:u05:seconds, +9:u12:dates, +8:u23:date, +9:u03:dates, +12:u08:nseconds, +12:u01:midnight, +10:u02:(UTC)., +11:u04:seconds, +9:u11:dates, +9:u02:dates, +10:u08:Values, +12:u00:midnight, +10:u01:(UTC)., +11:u03:seconds, +9:u10:dates, +9:u01:dates, +12:u07:nseconds, +10:u00:(UTC)., +11:u02:seconds, +11:u08:greater, +11:u14:seconds, +7:uI2:-,,, +9:u00:dates, +12:u06:nseconds, +10:u07:Values, +12:u08:converts, +11:u01:seconds, +11:u07:greater, +11:u13:seconds, +12:u14:nseconds, +7:uI1:-,,, +12:u05:nseconds, +10:u06:Values, +11:u00:seconds, +11:u06:greater, +11:u12:seconds, +12:u13:nseconds, +7:uI0:-,,, +12:u04:nseconds, +10:u05:Values, +12:u07:converts, +13:u08:precision, +11:u05:greater, +11:u11:seconds, +12:u12:nseconds, +12:u03:nseconds, +10:u04:Values, +12:u06:converts, +12:u08:defined,, +11:u04:greater, +11:u10:seconds, +12:u11:nseconds, +12:u14:converts, +7:u22:Val, +8:u23:Valu, +12:u02:nseconds, +10:u03:Values, +12:u05:converts, +13:u07:precision, +11:u03:greater, +12:u10:nseconds, +12:u13:converts, +12:u01:nseconds, +10:u02:Values, +12:u04:converts, +13:u06:precision, +12:u07:defined,, +10:u08:3.3.2., +11:u02:greater, +12:u12:converts, +13:u14:precision, +12:u00:nseconds, +10:u01:Values, +12:u03:converts, +13:u05:precision, +12:u06:defined,, +11:u01:greater, +13:u08:time_how4, +12:u11:converts, +13:u13:precision, +12:u14:defined,, +10:u00:Values, +12:u02:converts, +13:u04:precision, +12:u05:defined,, +10:u07:3.3.2., +23:u08:SET_TO_SERVER_TIME4, +11:u00:greater, +13:u07:time_how4, +12:u10:converts, +13:u12:precision, +12:u13:defined,, +12:u01:converts, +13:u03:precision, +12:u04:defined,, +10:u06:3.3.2., +23:u08:SET_TO_CLIENT_TIME4, +13:u06:time_how4, +13:u11:precision, +12:u12:defined,, +10:u14:3.3.2., +12:u00:converts, +13:u02:precision, +12:u03:defined,, +10:u05:3.3.2., +23:u07:SET_TO_SERVER_TIME4, +13:u05:time_how4, +13:u10:precision, +12:u11:defined,, +10:u13:3.3.2., +13:u01:precision, +12:u02:defined,, +10:u04:3.3.2., +23:u06:SET_TO_SERVER_TIME4, +23:u07:SET_TO_CLIENT_TIME4, +10:u08:3.3.3., +13:u04:time_how4, +12:u10:defined,, +10:u12:3.3.2., +23:u14:set_to_server_time4, +13:u00:precision, +12:u01:defined,, +10:u03:3.3.2., +23:u05:SET_TO_SERVER_TIME4, +23:u06:SET_TO_CLIENT_TIME4, +13:u03:time_how4, +12:u08:settime4, +10:u11:3.3.2., +23:u13:set_to_server_time4, +23:u14:set_to_client_time4, +12:u00:defined,, +10:u02:3.3.2., +23:u04:SET_TO_SERVER_TIME4, +23:u05:SET_TO_CLIENT_TIME4, +10:u07:3.3.3., +13:u02:time_how4, +12:u07:settime4, +10:u10:3.3.2., +23:u12:set_to_server_time4, +23:u13:set_to_client_time4, +10:u01:3.3.2., +23:u03:SET_TO_SERVER_TIME4, +23:u04:SET_TO_CLIENT_TIME4, +10:u06:3.3.3., +13:u01:time_how4, +12:u06:settime4, +23:u11:set_to_server_time4, +23:u12:set_to_client_time4, +10:u14:3.3.3., +10:u00:3.3.2., +23:u02:SET_TO_SERVER_TIME4, +23:u03:SET_TO_CLIENT_TIME4, +10:u05:3.3.3., +13:u00:time_how4, +12:u05:settime4, +7:u08:89], +23:u10:set_to_server_time4, +23:u11:set_to_client_time4, +10:u13:3.3.3., +23:u01:SET_TO_SERVER_TIME4, +23:u02:SET_TO_CLIENT_TIME4, +10:u04:3.3.3., +12:u04:settime4, +7:u07:89], +23:u10:set_to_client_time4, +10:u12:3.3.3., +23:u00:SET_TO_SERVER_TIME4, +23:u01:SET_TO_CLIENT_TIME4, +10:u03:3.3.3., +12:u03:settime4, +7:u06:89], +10:u11:3.3.3., +23:u00:SET_TO_CLIENT_TIME4, +10:u02:3.3.3., +9:u08:union, +12:u02:settime4, +7:u05:89], +10:u10:3.3.3., +10:u01:3.3.3., +12:u01:settime4, +7:u04:89], +10:u00:3.3.3., +9:u07:union, +12:u00:settime4, +7:u03:89], +24:u08:SET_TO_CLIENT_TIME4:, +9:u06:union, +9:u08:time;, +7:u02:89], +24:u07:SET_TO_CLIENT_TIME4:, +9:u14:union, +9:u05:union, +12:u08:default:, +7:u01:89], +24:u06:SET_TO_CLIENT_TIME4:, +9:u13:union, +9:u04:union, +9:u07:time;, +9:u08:void;, +7:u00:89], +24:u05:SET_TO_CLIENT_TIME4:, +9:u12:union, +12:u14:nfstime4, +8:u23:unio, +9:u03:union, +9:u06:time;, +12:u07:default:, +24:u04:SET_TO_CLIENT_TIME4:, +9:u11:union, +12:u13:nfstime4, +9:u14:time;, +9:u02:union, +9:u05:time;, +12:u06:default:, +9:u07:void;, +24:u03:SET_TO_CLIENT_TIME4:, +9:u10:union, +12:u12:nfstime4, +9:u13:time;, +12:u14:default:, +8:u23:nfst, +9:u01:union, +9:u04:time;, +12:u05:default:, +9:u06:void;, +24:u02:SET_TO_CLIENT_TIME4:, +12:u11:nfstime4, +9:u12:time;, +12:u13:default:, +9:u14:void;, +9:u00:union, +9:u03:time;, +12:u04:default:, +9:u05:void;, +24:u01:SET_TO_CLIENT_TIME4:, +12:u10:nfstime4, +9:u11:time;, +12:u12:default:, +9:u13:void;, +9:u02:time;, +12:u03:default:, +9:u04:void;, +10:u08:3.3.4., +24:u00:SET_TO_CLIENT_TIME4:, +9:u10:time;, +12:u11:default:, +9:u12:void;, +6:u21:vo, +7:u22:voi, +8:u23:void, +9:u01:time;, +12:u02:default:, +9:u03:void;, +13:u08:specdata4, +12:u10:default:, +9:u11:void;, +9:u00:time;, +12:u01:default:, +9:u02:void;, +10:u07:3.3.4., +13:u07:specdata4, +9:u10:void;, +12:u00:default:, +9:u01:void;, +10:u06:3.3.4., +13:u06:specdata4, +14:u08:specdata1;, +10:u14:3.3.4., +9:u00:void;, +10:u05:3.3.4., +13:u05:specdata4, +14:u07:specdata1;, +14:u08:specdata2;, +10:u13:3.3.4., +10:u04:3.3.4., +13:u04:specdata4, +14:u06:specdata1;, +14:u07:specdata2;, +10:u12:3.3.4., +10:u03:3.3.4., +13:u03:specdata4, +14:u05:specdata1;, +14:u06:specdata2;, +10:u11:3.3.4., +9:uI2:;/**/, +10:u02:3.3.4., +10:u08:3.3.5., +13:u02:specdata4, +14:u04:specdata1;, +14:u05:specdata2;, +10:u08:NF4CHR, +10:u10:3.3.4., +9:uI1:;/**/, +10:u01:3.3.4., +13:u01:specdata4, +14:u03:specdata1;, +14:u04:specdata2;, +10:u07:NF4CHR, +9:u08:fsid4, +9:uI0:;/**/, +10:u00:3.3.4., +10:u07:3.3.5., +13:u00:specdata4, +14:u02:specdata1;, +14:u03:specdata2;, +10:u06:NF4CHR, +9:u07:fsid4, +10:u06:3.3.5., +10:u08:major;, +14:u01:specdata1;, +14:u02:specdata2;, +10:u05:NF4CHR, +9:u06:fsid4, +10:u14:3.3.5., +10:u05:3.3.5., +14:u00:specdata1;, +14:u01:specdata2;, +10:u04:NF4CHR, +9:u05:fsid4, +10:u13:3.3.5., +10:u04:3.3.5., +10:u07:major;, +10:u08:minor;, +14:u00:specdata2;, +10:u03:NF4CHR, +9:u04:fsid4, +10:u12:3.3.5., +10:u03:3.3.5., +10:u06:major;, +10:u02:NF4CHR, +9:u03:fsid4, +10:u11:3.3.5., +10:u14:major;, +10:u02:3.3.5., +10:u05:major;, +10:u07:minor;, +10:u08:3.3.6., +10:u01:NF4CHR, +9:u02:fsid4, +10:u10:3.3.5., +10:u13:major;, +10:u01:3.3.5., +10:u04:major;, +10:u06:minor;, +10:u00:NF4CHR, +9:u01:fsid4, +18:u08:change_policy4, +10:u12:major;, +10:u14:minor;, +10:u00:3.3.5., +10:u03:major;, +10:u05:minor;, +10:u07:3.3.6., +9:u00:fsid4, +18:u07:change_policy4, +10:u11:major;, +10:u13:minor;, +10:u02:major;, +10:u04:minor;, +10:u06:3.3.6., +13:u08:cp_major;, +18:u06:change_policy4, +10:u10:major;, +10:u12:minor;, +10:u14:3.3.6., +10:u01:major;, +10:u03:minor;, +10:u05:3.3.6., +18:u05:change_policy4, +10:u11:minor;, +10:u13:3.3.6., +10:u00:major;, +10:u02:minor;, +10:u04:3.3.6., +13:u07:cp_major;, +13:u08:cp_minor;, +18:u04:change_policy4, +10:u10:minor;, +10:u12:3.3.6., +10:u01:minor;, +10:u03:3.3.6., +13:u06:cp_major;, +18:u03:change_policy4, +10:u11:3.3.6., +13:u14:cp_major;, +10:u00:minor;, +10:u02:3.3.6., +13:u05:cp_major;, +13:u07:cp_minor;, +18:u02:change_policy4, +10:u10:3.3.6., +13:u13:cp_major;, +10:u01:3.3.6., +13:u04:cp_major;, +13:u06:cp_minor;, +18:u01:change_policy4, +13:u12:cp_major;, +13:u14:cp_minor;, +6:u21:cp, +7:u22:cp_, +8:u23:cp_m, +10:u00:3.3.6., +13:u03:cp_major;, +13:u05:cp_minor;, +13:u08:analogous, +18:u00:change_policy4, +13:u11:cp_major;, +13:u13:cp_minor;, +13:u02:cp_major;, +13:u04:cp_minor;, +13:u10:cp_major;, +13:u12:cp_minor;, +13:u01:cp_major;, +13:u03:cp_minor;, +13:u07:analogous, +9:u08:valid, +13:u11:cp_minor;, +13:u00:cp_major;, +13:u02:cp_minor;, +13:u06:analogous, +9:u07:valid, +13:u10:cp_minor;, +13:u14:analogous, +13:u01:cp_minor;, +13:u05:analogous, +17:u08:persistently,, +9:u06:valid, +13:u13:analogous, +13:u00:cp_minor;, +13:u04:analogous, +10:u08:3.3.7., +9:u05:valid, +13:u12:analogous, +7:u22:ana, +8:u23:anal, +13:u03:analogous, +17:u07:persistently,, +9:u04:valid, +10:u08:fattr4, +13:u11:analogous, +13:u02:analogous, +17:u06:persistently,, +10:u07:3.3.7., +9:u03:valid, +10:u07:fattr4, +13:u10:analogous, +17:u14:persistently,, +13:u01:analogous, +17:u05:persistently,, +10:u06:3.3.7., +9:u02:valid, +10:u06:fattr4, +17:u13:persistently,, +10:u14:3.3.7., +13:u00:analogous, +17:u04:persistently,, +10:u05:3.3.7., +9:u01:valid, +10:u05:fattr4, +7:u08:90], +17:u12:persistently,, +10:u13:3.3.7., +17:u03:persistently,, +10:u04:3.3.7., +9:u00:valid, +10:u04:fattr4, +7:u07:90], +17:u11:persistently,, +10:u12:3.3.7., +17:u02:persistently,, +10:u03:3.3.7., +10:u03:fattr4, +7:u06:90], +17:u10:persistently,, +10:u11:3.3.7., +17:u01:persistently,, +10:u02:3.3.7., +10:u02:fattr4, +7:u05:90], +10:u10:3.3.7., +17:u00:persistently,, +10:u01:3.3.7., +10:u01:fattr4, +7:u04:90], +10:u00:3.3.7., +13:u08:attrmask;, +10:u00:fattr4, +7:u03:90], +7:u02:90], +13:u07:attrmask;, +14:u08:attr_vals;, +7:u01:90], +11:u14:bitmap4, +13:u06:attrmask;, +7:u00:90], +11:u13:bitmap4, +13:u14:attrmask;, +13:u05:attrmask;, +14:u07:attr_vals;, +11:u12:bitmap4, +13:u13:attrmask;, +13:u14:attrlist4, +8:u23:bitm, +13:u04:attrmask;, +14:u06:attr_vals;, +11:u11:bitmap4, +13:u12:attrmask;, +13:u13:attrlist4, +14:u14:attr_vals;, +13:u03:attrmask;, +14:u05:attr_vals;, +11:u10:bitmap4, +13:u11:attrmask;, +13:u12:attrlist4, +14:u13:attr_vals;, +13:u02:attrmask;, +14:u04:attr_vals;, +11:u08:values., +13:u10:attrmask;, +13:u11:attrlist4, +14:u12:attr_vals;, +13:u01:attrmask;, +14:u03:attr_vals;, +13:u10:attrlist4, +14:u11:attr_vals;, +13:u00:attrmask;, +14:u02:attr_vals;, +11:u07:values., +14:u10:attr_vals;, +14:u01:attr_vals;, +11:u06:values., +11:u14:values., +14:u00:attr_vals;, +11:u05:values., +11:u13:values., +11:u04:values., +43:u08:+-----------+-----------+-----------+--, +11:u12:values., +8:uI2:(/),, +11:u03:values., +11:u11:values., +8:uI1:(/),, +11:u02:values., +43:u07:+-----------+-----------+-----------+--, +9:u08:count, +11:u10:values., +8:uI0:(/),, +11:u01:values., +43:u06:+-----------+-----------+-----------+--, +9:u07:count, +6:u08:31, +43:u14:+-----------+-----------+-----------+--, +11:u00:values., +43:u05:+-----------+-----------+-----------+--, +10:u08:3.3.8., +9:u06:count, +6:u07:31, +43:u13:+-----------+-----------+-----------+--, +43:u04:+-----------+-----------+-----------+--, +9:u05:count, +6:u06:31, +16:u08:change_info4, +43:u12:+-----------+-----------+-----------+--, +43:u03:+-----------+-----------+-----------+--, +10:u07:3.3.8., +8:u08:bool, +9:u04:count, +6:u05:31, +16:u07:change_info4, +43:u11:+-----------+-----------+-----------+--, +43:u02:+-----------+-----------+-----------+--, +10:u06:3.3.8., +11:u08:atomic;, +9:u03:count, +6:u04:31, +16:u06:change_info4, +43:u10:+-----------+-----------+-----------+--, +10:u14:3.3.8., +43:u01:+-----------+-----------+-----------+--, +10:u05:3.3.8., +8:u07:bool, +9:u02:count, +6:u03:31, +16:u05:change_info4, +10:u13:3.3.8., +43:u00:+-----------+-----------+-----------+--, +10:u04:3.3.8., +8:u06:bool, +11:u07:atomic;, +11:u08:before;, +9:u01:count, +6:u02:31, +16:u04:change_info4, +10:u12:3.3.8., +8:u14:bool, +10:u03:3.3.8., +8:u05:bool, +11:u06:atomic;, +9:u00:count, +6:u01:31, +16:u03:change_info4, +10:u11:3.3.8., +8:u13:bool, +11:u14:atomic;, +10:u02:3.3.8., +8:u04:bool, +11:u05:atomic;, +11:u07:before;, +10:u08:after;, +6:u00:31, +16:u02:change_info4, +10:u10:3.3.8., +8:u12:bool, +11:u13:atomic;, +13:u14:changeid4, +7:u22:boo, +8:u23:bool, +10:u01:3.3.8., +8:u03:bool, +11:u04:atomic;, +11:u06:before;, +16:u01:change_info4, +8:u11:bool, +11:u12:atomic;, +13:u13:changeid4, +11:u14:before;, +7:u22:ato, +8:u23:atom, +10:u00:3.3.8., +8:u02:bool, +11:u03:atomic;, +11:u05:before;, +10:u07:after;, +16:u00:change_info4, +8:u10:bool, +11:u11:atomic;, +13:u12:changeid4, +11:u13:before;, +8:u01:bool, +11:u02:atomic;, +11:u04:before;, +10:u06:after;, +11:u10:atomic;, +13:u11:changeid4, +11:u12:before;, +10:u14:after;, +8:u00:bool, +11:u01:atomic;, +11:u03:before;, +10:u05:after;, +13:u10:changeid4, +11:u11:before;, +10:u13:after;, +11:u00:atomic;, +11:u02:before;, +10:u04:after;, +12:u08:resides., +11:u10:before;, +10:u12:after;, +6:u21:af, +7:u22:aft, +8:u23:afte, +11:u01:before;, +10:u03:after;, +10:u08:3.3.9., +10:u11:after;, +11:u00:before;, +10:u02:after;, +12:u07:resides., +12:u08:netaddr4, +10:u10:after;, +10:u01:after;, +12:u06:resides., +10:u07:3.3.9., +12:u07:netaddr4, +12:u14:resides., +10:u00:after;, +12:u05:resides., +10:u06:3.3.9., +12:u06:netaddr4, +7:u08:see, +12:u13:resides., +10:u14:3.3.9., +12:u04:resides., +10:u05:3.3.9., +12:u05:netaddr4, +7:u07:see, +17:u08:na_r_netid<>;, +12:u12:resides., +10:u13:3.3.9., +12:u03:resides., +10:u04:3.3.9., +12:u04:netaddr4, +7:u06:see, +17:u07:na_r_netid<>;, +16:u08:na_r_addr<>;, +12:u11:resides., +10:u12:3.3.9., +12:u02:resides., +10:u03:3.3.9., +12:u03:netaddr4, +7:u05:see, +17:u06:na_r_netid<>;, +16:u07:na_r_addr<>;, +12:u10:resides., +10:u11:3.3.9., +12:u01:resides., +10:u02:3.3.9., +12:u02:netaddr4, +7:u04:see, +17:u05:na_r_netid<>;, +16:u06:na_r_addr<>;, +10:u10:3.3.9., +12:u00:resides., +10:u01:3.3.9., +9:u08:netid, +12:u01:netaddr4, +7:u03:see, +17:u04:na_r_netid<>;, +16:u05:na_r_addr<>;, +10:u00:3.3.9., +12:u00:netaddr4, +7:u02:see, +17:u03:na_r_netid<>;, +16:u04:na_r_addr<>;, +9:u07:netid, +7:u01:see, +17:u02:na_r_netid<>;, +16:u03:na_r_addr<>;, +9:u06:netid, +12:u08:5.2.3.4., +7:u00:see, +17:u01:na_r_netid<>;, +16:u02:na_r_addr<>;, +9:u14:netid, +9:u05:netid, +17:u00:na_r_netid<>;, +16:u01:na_r_addr<>;, +9:u13:netid, +9:u04:netid, +12:u07:5.2.3.4., +16:u00:na_r_addr<>;, +9:u12:netid, +8:u23:neti, +9:u03:netid, +12:u06:5.2.3.4., +9:u11:netid, +12:u14:5.2.3.4., +10:uI2:[],..., +9:u02:netid, +12:u05:5.2.3.4., +7:u08:91], +9:u10:netid, +12:u13:5.2.3.4., +10:uI1:[],..., +9:u01:netid, +12:u04:5.2.3.4., +7:u07:91], +12:u12:5.2.3.4., +10:uI0:[],..., +9:u00:netid, +12:u03:5.2.3.4., +7:u06:91], +12:u11:5.2.3.4., +12:u02:5.2.3.4., +11:u08:3.3.10., +7:u05:91], +12:u10:5.2.3.4., +12:u01:5.2.3.4., +7:u04:91], +16:u08:state_owner4, +12:u00:5.2.3.4., +11:u07:3.3.10., +7:u03:91], +16:u07:state_owner4, +11:u06:3.3.10., +13:u08:clientid;, +7:u02:91], +16:u06:state_owner4, +11:u14:3.3.10., +11:u05:3.3.10., +7:u01:91], +16:u05:state_owner4, +11:u13:3.3.10., +11:u04:3.3.10., +13:u07:clientid;, +29:u08:owner<NFS4_OPAQUE_LIMIT>;, +7:u00:91], +16:u04:state_owner4, +11:u12:3.3.10., +13:u14:clientid4, +11:u03:3.3.10., +13:u06:clientid;, +16:u03:state_owner4, +11:u11:3.3.10., +13:u13:clientid4, +13:u14:clientid;, +11:u02:3.3.10., +13:u05:clientid;, +29:u07:owner<NFS4_OPAQUE_LIMIT>;, +16:u02:state_owner4, +11:u10:3.3.10., +13:u12:clientid4, +13:u13:clientid;, +11:u01:3.3.10., +13:u04:clientid;, +29:u06:owner<NFS4_OPAQUE_LIMIT>;, +16:u01:state_owner4, +13:u11:clientid4, +13:u12:clientid;, +29:u14:owner<nfs4_opaque_limit>;, +11:u00:3.3.10., +13:u03:clientid;, +29:u05:owner<NFS4_OPAQUE_LIMIT>;, +16:u00:state_owner4, +13:u10:clientid4, +13:u11:clientid;, +29:u13:owner<nfs4_opaque_limit>;, +13:u02:clientid;, +29:u04:owner<NFS4_OPAQUE_LIMIT>;, +13:u10:clientid;, +29:u12:owner<nfs4_opaque_limit>;, +11:u14:typedef, +13:u01:clientid;, +29:u03:owner<NFS4_OPAQUE_LIMIT>;, +13:u08:3.3.10.1., +13:u08:3.3.10.1), +29:u11:owner<nfs4_opaque_limit>;, +11:u13:typedef, +13:u00:clientid;, +29:u02:owner<NFS4_OPAQUE_LIMIT>;, +13:u07:3.3.10.1), +15:u08:open_owner4, +29:u10:owner<nfs4_opaque_limit>;, +11:u12:typedef, +29:u01:owner<NFS4_OPAQUE_LIMIT>;, +13:u07:3.3.10.1., +13:u08:3.3.10.2., +13:u06:3.3.10.1), +15:u07:open_owner4, +11:u11:typedef, +29:u00:owner<NFS4_OPAQUE_LIMIT>;, +13:u06:3.3.10.1., +13:u05:3.3.10.1), +15:u06:open_owner4, +15:u08:lock_owner4, +11:u10:typedef, +13:u14:3.3.10.1., +15:uI2:(...)(...)., +13:u05:3.3.10.1., +13:u07:3.3.10.2., +13:u04:3.3.10.1), +15:u05:open_owner4, +15:u07:lock_owner4, +13:u08:structure, +13:u13:3.3.10.1., +15:uI1:(...)(...)., +13:u04:3.3.10.1., +13:u06:3.3.10.2., +11:u08:3.3.11., +13:u03:3.3.10.1), +15:u04:open_owner4, +15:u06:lock_owner4, +13:u07:structure, +13:u12:3.3.10.1., +13:u14:3.3.10.2., +15:uI0:(...)(...)., +13:u03:3.3.10.1., +13:u05:3.3.10.2., +13:u02:3.3.10.1), +15:u03:open_owner4, +15:u05:lock_owner4, +13:u06:structure, +23:u08:open_to_lock_owner4, +13:u11:3.3.10.1., +13:u13:3.3.10.2., +13:u02:3.3.10.1., +13:u04:3.3.10.2., +11:u07:3.3.11., +13:u01:3.3.10.1), +15:u02:open_owner4, +15:u04:lock_owner4, +13:u05:structure, +23:u07:open_to_lock_owner4, +13:u10:3.3.10.1., +13:u12:3.3.10.2., +13:u01:3.3.10.1., +13:u03:3.3.10.2., +11:u06:3.3.11., +15:u08:open_seqid;, +13:u00:3.3.10.1), +15:u01:open_owner4, +15:u03:lock_owner4, +13:u04:structure, +23:u06:open_to_lock_owner4, +13:u11:3.3.10.2., +11:u14:3.3.11., +13:u00:3.3.10.1., +13:u02:3.3.10.2., +11:u05:3.3.11., +12:u08:stateid4, +15:u00:open_owner4, +15:u02:lock_owner4, +13:u03:structure, +23:u05:open_to_lock_owner4, +13:u10:3.3.10.2., +11:u13:3.3.11., +13:u01:3.3.10.2., +11:u04:3.3.11., +15:u07:open_seqid;, +17:u08:open_stateid;, +15:u01:lock_owner4, +13:u02:structure, +23:u04:open_to_lock_owner4, +11:u12:3.3.11., +10:u14:seqid4, +13:u00:3.3.10.2., +11:u03:3.3.11., +15:u06:open_seqid;, +12:u07:stateid4, +15:u00:lock_owner4, +13:u01:structure, +23:u03:open_to_lock_owner4, +11:u11:3.3.11., +10:u13:seqid4, +15:u14:open_seqid;, +11:u02:3.3.11., +15:u05:open_seqid;, +12:u06:stateid4, +17:u07:open_stateid;, +15:u08:lock_seqid;, +13:u00:structure, +23:u02:open_to_lock_owner4, +11:u10:3.3.11., +10:u12:seqid4, +15:u13:open_seqid;, +12:u14:stateid4, +8:u23:seqi, +11:u01:3.3.11., +15:u04:open_seqid;, +12:u05:stateid4, +17:u06:open_stateid;, +23:u01:open_to_lock_owner4, +10:u11:seqid4, +15:u12:open_seqid;, +12:u13:stateid4, +17:u14:open_stateid;, +11:u00:3.3.11., +15:u03:open_seqid;, +12:u04:stateid4, +17:u05:open_stateid;, +15:u07:lock_seqid;, +15:u08:lock_owner;, +23:u00:open_to_lock_owner4, +10:u10:seqid4, +15:u11:open_seqid;, +12:u12:stateid4, +17:u13:open_stateid;, +15:u02:open_seqid;, +12:u03:stateid4, +17:u04:open_stateid;, +15:u06:lock_seqid;, +15:u10:open_seqid;, +12:u11:stateid4, +17:u12:open_stateid;, +15:u14:lock_seqid;, +15:u01:open_seqid;, +12:u02:stateid4, +17:u03:open_stateid;, +15:u05:lock_seqid;, +15:u07:lock_owner;, +12:u10:stateid4, +17:u11:open_stateid;, +15:u13:lock_seqid;, +15:u14:lock_owner4, +15:u00:open_seqid;, +12:u01:stateid4, +17:u02:open_stateid;, +15:u04:lock_seqid;, +15:u06:lock_owner;, +16:u08:open_owner4., +17:u10:open_stateid;, +15:u12:lock_seqid;, +15:u13:lock_owner4, +15:u14:lock_owner;, +12:u00:stateid4, +17:u01:open_stateid;, +15:u03:lock_seqid;, +15:u05:lock_owner;, +15:u11:lock_seqid;, +15:u12:lock_owner4, +15:u13:lock_owner;, +17:u00:open_stateid;, +15:u02:lock_seqid;, +15:u04:lock_owner;, +16:u07:open_owner4., +15:u10:lock_seqid;, +15:u11:lock_owner4, +15:u12:lock_owner;, +15:u01:lock_seqid;, +15:u03:lock_owner;, +16:u06:open_owner4., +15:u10:lock_owner4, +15:u11:lock_owner;, +16:u14:open_owner4., +15:u00:lock_seqid;, +15:u02:lock_owner;, +16:u05:open_owner4., +16:u08:confirmation, +15:u10:lock_owner;, +16:u13:open_owner4., +15:u01:lock_owner;, +16:u04:open_owner4., +11:u08:3.3.12., +16:u07:confirmation, +16:u12:open_owner4., +15:u00:lock_owner;, +16:u03:open_owner4., +16:u06:confirmation, +16:u11:open_owner4., +16:u02:open_owner4., +11:u07:3.3.12., +16:u05:confirmation, +16:u10:open_owner4., +16:u01:open_owner4., +11:u06:3.3.12., +10:u08:seqid;, +16:u04:confirmation, +11:u14:3.3.12., +16:u00:open_owner4., +11:u05:3.3.12., +16:u03:confirmation, +11:u13:3.3.12., +11:u04:3.3.12., +10:u07:seqid;, +14:u08:other[12];, +16:u02:confirmation, +11:u12:3.3.12., +11:u03:3.3.12., +10:u06:seqid;, +16:u01:confirmation, +11:u11:3.3.12., +10:u14:seqid;, +11:u02:3.3.12., +10:u05:seqid;, +14:u07:other[12];, +16:u00:confirmation, +11:u10:3.3.12., +10:u13:seqid;, +11:u01:3.3.12., +10:u04:seqid;, +14:u06:other[12];, +10:u12:seqid;, +14:u14:other[12];, +11:u00:3.3.12., +10:u03:seqid;, +14:u05:other[12];, +10:u11:seqid;, +14:u13:other[12];, +10:u02:seqid;, +14:u04:other[12];, +10:u10:seqid;, +14:u12:other[12];, +10:u01:seqid;, +14:u03:other[12];, +14:u11:other[12];, +10:u00:seqid;, +14:u02:other[12];, +14:u10:other[12];, +14:u01:other[12];, +7:u08:92], +14:u00:other[12];, +7:u07:92], +7:u06:92], +14:u08:undefined., +7:u05:92], +7:u04:92], +14:u07:undefined., +7:u03:92], +14:u06:undefined., +7:u02:92], +14:u14:undefined., +14:u05:undefined., +11:u08:3.3.13., +7:u01:92], +14:u13:undefined., +14:u04:undefined., +7:u00:92], +15:u08:layouttype4, +14:u12:undefined., +7:u22:und, +8:u23:unde, +14:u03:undefined., +11:u07:3.3.13., +25:u08:LAYOUT4_NFSV4_1_FILES, +15:u07:layouttype4, +14:u11:undefined., +14:u02:undefined., +11:u06:3.3.13., +15:u06:layouttype4, +14:u10:undefined., +11:u14:3.3.13., +14:u01:undefined., +11:u05:3.3.13., +25:u07:LAYOUT4_NFSV4_1_FILES, +24:u08:LAYOUT4_OSD2_OBJECTS, +15:u05:layouttype4, +8:u08:0x1,, +11:u13:3.3.13., +14:u00:undefined., +11:u04:3.3.13., +25:u06:LAYOUT4_NFSV4_1_FILES, +15:u04:layouttype4, +8:u07:0x1,, +11:u12:3.3.13., +25:u14:layout4_nfsv4_1_files, +11:u03:3.3.13., +25:u05:LAYOUT4_NFSV4_1_FILES, +24:u07:LAYOUT4_OSD2_OBJECTS, +24:u08:LAYOUT4_BLOCK_VOLUME, +15:u03:layouttype4, +8:u06:0x1,, +8:u08:0x2,, +11:u11:3.3.13., +25:u13:layout4_nfsv4_1_files, +11:u02:3.3.13., +25:u04:LAYOUT4_NFSV4_1_FILES, +24:u06:LAYOUT4_OSD2_OBJECTS, +15:u02:layouttype4, +8:u05:0x1,, +8:u07:0x2,, +11:u10:3.3.13., +25:u12:layout4_nfsv4_1_files, +24:u14:layout4_osd2_objects, +7:u22:LAY, +8:u23:LAYO, +11:u01:3.3.13., +25:u03:LAYOUT4_NFSV4_1_FILES, +24:u05:LAYOUT4_OSD2_OBJECTS, +24:u07:LAYOUT4_BLOCK_VOLUME, +15:u01:layouttype4, +8:u04:0x1,, +8:u06:0x2,, +7:u08:0x3, +25:u11:layout4_nfsv4_1_files, +24:u13:layout4_osd2_objects, +11:u00:3.3.13., +25:u02:LAYOUT4_NFSV4_1_FILES, +24:u04:LAYOUT4_OSD2_OBJECTS, +24:u06:LAYOUT4_BLOCK_VOLUME, +15:u00:layouttype4, +8:u03:0x1,, +8:u05:0x2,, +7:u07:0x3, +25:u10:layout4_nfsv4_1_files, +24:u12:layout4_osd2_objects, +24:u14:layout4_block_volume, +25:u01:LAYOUT4_NFSV4_1_FILES, +24:u03:LAYOUT4_OSD2_OBJECTS, +24:u05:LAYOUT4_BLOCK_VOLUME, +8:u02:0x1,, +8:u04:0x2,, +7:u06:0x3, +24:u11:layout4_osd2_objects, +24:u13:layout4_block_volume, +25:u00:LAYOUT4_NFSV4_1_FILES, +24:u02:LAYOUT4_OSD2_OBJECTS, +24:u04:LAYOUT4_BLOCK_VOLUME, +18:u08:fs_layout_type, +8:u01:0x1,, +8:u03:0x2,, +7:u05:0x3, +14:u08:advertises, +24:u10:layout4_osd2_objects, +24:u12:layout4_block_volume, +24:u01:LAYOUT4_OSD2_OBJECTS, +24:u03:LAYOUT4_BLOCK_VOLUME, +8:u00:0x1,, +8:u02:0x2,, +7:u04:0x3, +14:u07:advertises, +24:u11:layout4_block_volume, +24:u00:LAYOUT4_OSD2_OBJECTS, +24:u02:LAYOUT4_BLOCK_VOLUME, +18:u07:fs_layout_type, +8:u01:0x2,, +7:u03:0x3, +14:u06:advertises, +24:u10:layout4_block_volume, +24:u01:LAYOUT4_BLOCK_VOLUME, +18:u06:fs_layout_type, +8:u00:0x2,, +7:u02:0x3, +14:u05:advertises, +18:u14:fs_layout_type, +24:u00:LAYOUT4_BLOCK_VOLUME, +18:u05:fs_layout_type, +7:u01:0x3, +14:u04:advertises, +18:u13:fs_layout_type, +18:u04:fs_layout_type, +7:u00:0x3, +14:u03:advertises, +18:u12:fs_layout_type, +11:u14:layouts, +18:u03:fs_layout_type, +12:u08:globally, +14:u02:advertises, +13:u08:reserved., +18:u11:fs_layout_type, +11:u13:layouts, +18:u02:fs_layout_type, +14:u01:advertises, +13:u07:reserved., +18:u10:fs_layout_type, +11:u12:layouts, +8:u23:layo, +18:u01:fs_layout_type, +12:u07:globally, +25:u08:0x80000000-0xFFFFFFFF, +14:u00:advertises, +13:u06:reserved., +9:u08:22.5;, +11:u11:layouts, +18:u00:fs_layout_type, +12:u06:globally, +13:u05:reserved., +9:u07:22.5;, +11:u10:layouts, +12:u14:globally, +12:u05:globally, +25:u07:0x80000000-0xFFFFFFFF, +13:u04:reserved., +9:u06:22.5;, +12:u13:globally, +12:u04:globally, +25:u06:0x80000000-0xFFFFFFFF, +13:u03:reserved., +9:u05:22.5;, +9:u08:type,, +12:u12:globally, +25:u14:0x80000000-0xffffffff, +7:uI2:.;., +12:u03:globally, +25:u05:0x80000000-0xFFFFFFFF, +13:u02:reserved., +9:u04:22.5;, +9:u07:type,, +15:u08:enumeration, +12:u11:globally, +25:u13:0x80000000-0xffffffff, +7:uI1:.;., +12:u02:globally, +25:u04:0x80000000-0xFFFFFFFF, +13:u01:reserved., +9:u03:22.5;, +9:u06:type,, +15:u07:enumeration, +12:u10:globally, +25:u12:0x80000000-0xffffffff, +7:u22:0x8, +8:u23:0x80, +7:uI0:.;., +12:u01:globally, +25:u03:0x80000000-0xFFFFFFFF, +9:u08:[44],, +13:u00:reserved., +9:u02:22.5;, +9:u05:type,, +15:u06:enumeration, +25:u11:0x80000000-0xffffffff, +12:u00:globally, +25:u02:0x80000000-0xFFFFFFFF, +11:u08:3.3.14., +9:u01:22.5;, +9:u04:type,, +15:u05:enumeration, +25:u10:0x80000000-0xffffffff, +25:u01:0x80000000-0xFFFFFFFF, +9:u07:[44],, +9:u00:22.5;, +9:u03:type,, +15:u04:enumeration, +13:u08:deviceid4, +15:u14:enumeration, +25:u00:0x80000000-0xFFFFFFFF, +9:u06:[44],, +11:u07:3.3.14., +9:u02:type,, +15:u03:enumeration, +13:u07:deviceid4, +23:u08:NFS4_DEVICEID4_SIZE, +15:u13:enumeration, +9:u14:[44],, +9:u05:[44],, +11:u06:3.3.14., +9:u01:type,, +15:u02:enumeration, +13:u06:deviceid4, +23:u07:NFS4_DEVICEID4_SIZE, +15:u12:enumeration, +9:u13:[44],, +11:u14:3.3.14., +9:u04:[44],, +11:u05:3.3.14., +9:u00:type,, +15:u01:enumeration, +13:u05:deviceid4, +23:u06:NFS4_DEVICEID4_SIZE, +15:u11:enumeration, +9:u12:[44],, +11:u13:3.3.14., +7:u22:[44, +8:u23:[44], +9:u03:[44],, +11:u04:3.3.14., +15:u00:enumeration, +13:u04:deviceid4, +23:u05:NFS4_DEVICEID4_SIZE, +15:u10:enumeration, +9:u11:[44],, +11:u12:3.3.14., +9:u02:[44],, +11:u03:3.3.14., +13:u03:deviceid4, +23:u04:NFS4_DEVICEID4_SIZE, +9:u10:[44],, +11:u11:3.3.14., +9:u01:[44],, +11:u02:3.3.14., +13:u02:deviceid4, +23:u03:NFS4_DEVICEID4_SIZE, +11:u10:3.3.14., +9:u00:[44],, +11:u01:3.3.14., +13:u01:deviceid4, +23:u02:NFS4_DEVICEID4_SIZE, +11:u00:3.3.14., +13:u00:deviceid4, +23:u01:NFS4_DEVICEID4_SIZE, +12:u08:details., +23:u00:NFS4_DEVICEID4_SIZE, +12:u07:details., +12:u06:details., +12:u05:details., +7:u08:93], +12:u04:details., +7:u07:93], +12:u03:details., +7:u06:93], +11:u08:3.3.15., +12:u02:details., +7:u05:93], +12:u01:details., +7:u04:93], +16:u08:device_addr4, +11:u07:3.3.15., +12:u00:details., +7:u03:93], +16:u07:device_addr4, +11:u06:3.3.15., +19:u08:da_layout_type;, +7:u02:93], +16:u06:device_addr4, +11:u14:3.3.15., +11:u05:3.3.15., +7:u01:93], +16:u05:device_addr4, +11:u13:3.3.15., +11:u04:3.3.15., +19:u07:da_layout_type;, +19:u08:da_addr_body<>;, +7:u00:93], +16:u04:device_addr4, +11:u12:3.3.15., +15:u14:layouttype4, +11:u03:3.3.15., +19:u06:da_layout_type;, +16:u03:device_addr4, +11:u11:3.3.15., +15:u13:layouttype4, +19:u14:da_layout_type;, +11:u02:3.3.15., +19:u05:da_layout_type;, +19:u07:da_addr_body<>;, +16:u02:device_addr4, +11:u10:3.3.15., +15:u12:layouttype4, +19:u13:da_layout_type;, +11:u01:3.3.15., +19:u04:da_layout_type;, +19:u06:da_addr_body<>;, +16:u01:device_addr4, +15:u11:layouttype4, +19:u12:da_layout_type;, +19:u14:da_addr_body<>;, +7:u22:da_, +8:u23:da_l, +11:u00:3.3.15., +19:u03:da_layout_type;, +19:u05:da_addr_body<>;, +16:u00:device_addr4, +11:u08:device., +15:u10:layouttype4, +19:u11:da_layout_type;, +19:u13:da_addr_body<>;, +19:u02:da_layout_type;, +19:u04:da_addr_body<>;, +11:u07:device., +19:u10:da_layout_type;, +19:u12:da_addr_body<>;, +8:u23:da_a, +19:u01:da_layout_type;, +19:u03:da_addr_body<>;, +18:u08:da_layout_type, +11:u06:device., +16:u08:da_addr_body, +19:u11:da_addr_body<>;, +19:u00:da_layout_type;, +19:u02:da_addr_body<>;, +11:u05:device., +16:u07:da_addr_body, +19:u10:da_addr_body<>;, +19:u01:da_addr_body<>;, +18:u07:da_layout_type, +11:u04:device., +16:u06:da_addr_body, +19:u00:da_addr_body<>;, +18:u06:da_layout_type, +11:u03:device., +16:u05:da_addr_body, +18:u14:da_layout_type, +18:u05:da_layout_type, +11:u02:device., +16:u04:da_addr_body, +18:u13:da_layout_type, +18:u04:da_layout_type, +11:u01:device., +16:u03:da_addr_body, +18:u12:da_layout_type, +18:u03:da_layout_type, +11:u00:device., +16:u02:da_addr_body, +18:u11:da_layout_type, +18:u02:da_layout_type, +16:u01:da_addr_body, +18:u10:da_layout_type, +18:u01:da_layout_type, +16:u00:da_addr_body, +18:u00:da_layout_type, +11:u08:3.3.16., +19:u08:layout_content4, +11:u07:3.3.16., +19:u07:layout_content4, +14:u14:respective, +7:uI2:()), +11:u06:3.3.16., +19:u06:layout_content4, +13:u08:loc_type;, +14:u13:respective, +11:u14:3.3.16., +7:uI1:()), +11:u05:3.3.16., +15:u08:loc_body<>;, +19:u05:layout_content4, +13:u07:loc_type;, +14:u12:respective, +11:u13:3.3.16., +7:uI0:()), +11:u04:3.3.16., +19:u04:layout_content4, +13:u06:loc_type;, +14:u11:respective, +11:u12:3.3.16., +11:u03:3.3.16., +15:u07:loc_body<>;, +19:u03:layout_content4, +13:u05:loc_type;, +14:u10:respective, +11:u11:3.3.16., +11:u02:3.3.16., +15:u06:loc_body<>;, +15:u08:(loc_type)., +19:u02:layout_content4, +13:u04:loc_type;, +12:u08:loc_body, +11:u10:3.3.16., +15:u14:loc_body<>;, +11:u01:3.3.16., +15:u05:loc_body<>;, +19:u01:layout_content4, +13:u03:loc_type;, +12:u07:loc_body, +15:u13:loc_body<>;, +11:u00:3.3.16., +15:u04:loc_body<>;, +15:u07:(loc_type)., +11:u08:3.3.17., +19:u00:layout_content4, +13:u02:loc_type;, +12:u06:loc_body, +9:u08:type;, +15:u12:loc_body<>;, +8:u23:loc_, +15:u03:loc_body<>;, +15:u06:(loc_type)., +13:u01:loc_type;, +12:u05:loc_body, +9:u07:type;, +11:u08:layout4, +15:u11:loc_body<>;, +15:u14:(loc_type)., +15:u02:loc_body<>;, +15:u05:(loc_type)., +11:u07:3.3.17., +13:u00:loc_type;, +12:u04:loc_body, +9:u06:type;, +11:u07:layout4, +15:u10:loc_body<>;, +15:u13:(loc_type)., +15:u01:loc_body<>;, +15:u04:(loc_type)., +11:u06:3.3.17., +14:u08:lo_offset;, +12:u03:loc_body, +9:u05:type;, +11:u06:layout4, +15:u12:(loc_type)., +11:u14:3.3.17., +6:u21:(l, +7:u22:(lo, +8:u23:(loc, +7:uI2:;.., +15:u00:loc_body<>;, +15:u03:(loc_type)., +11:u05:3.3.17., +12:u02:loc_body, +9:u04:type;, +11:u05:layout4, +15:u11:(loc_type)., +11:u13:3.3.17., +7:uI1:;.., +15:u02:(loc_type)., +11:u04:3.3.17., +14:u07:lo_offset;, +14:u08:lo_length;, +12:u01:loc_body, +9:u03:type;, +11:u04:layout4, +15:u10:(loc_type)., +11:u12:3.3.17., +11:u14:offset4, +7:uI0:;.., +15:u01:(loc_type)., +11:u03:3.3.17., +14:u06:lo_offset;, +17:u08:layoutiomode4, +12:u00:loc_body, +9:u02:type;, +11:u03:layout4, +11:u11:3.3.17., +11:u13:offset4, +14:u14:lo_offset;, +15:u00:(loc_type)., +11:u02:3.3.17., +14:u05:lo_offset;, +14:u07:lo_length;, +14:u08:lo_iomode;, +9:u01:type;, +11:u02:layout4, +11:u10:3.3.17., +11:u12:offset4, +14:u13:lo_offset;, +11:u14:length4, +8:u23:offs, +11:u01:3.3.17., +14:u04:lo_offset;, +14:u06:lo_length;, +17:u07:layoutiomode4, +9:u00:type;, +11:u01:layout4, +11:u11:offset4, +14:u12:lo_offset;, +11:u13:length4, +14:u14:lo_length;, +7:u22:lo_, +8:u23:lo_o, +11:u00:3.3.17., +14:u03:lo_offset;, +14:u05:lo_length;, +17:u06:layoutiomode4, +14:u07:lo_iomode;, +15:u08:lo_content;, +11:u00:layout4, +11:u10:offset4, +14:u11:lo_offset;, +11:u12:length4, +14:u13:lo_length;, +17:u14:layoutiomode4, +14:u02:lo_offset;, +14:u04:lo_length;, +17:u05:layoutiomode4, +14:u06:lo_iomode;, +14:u10:lo_offset;, +11:u11:length4, +14:u12:lo_length;, +17:u13:layoutiomode4, +14:u14:lo_iomode;, +8:u23:lo_l, +14:u01:lo_offset;, +14:u03:lo_length;, +17:u04:layoutiomode4, +14:u05:lo_iomode;, +15:u07:lo_content;, +11:u10:length4, +14:u11:lo_length;, +17:u12:layoutiomode4, +14:u13:lo_iomode;, +19:u14:layout_content4, +14:u00:lo_offset;, +14:u02:lo_length;, +17:u03:layoutiomode4, +14:u04:lo_iomode;, +15:u06:lo_content;, +14:u10:lo_length;, +17:u11:layoutiomode4, +14:u12:lo_iomode;, +19:u13:layout_content4, +15:u14:lo_content;, +8:u23:lo_i, +14:u01:lo_length;, +17:u02:layoutiomode4, +14:u03:lo_iomode;, +15:u05:lo_content;, +14:u08:dividable,, +17:u10:layoutiomode4, +14:u11:lo_iomode;, +19:u12:layout_content4, +15:u13:lo_content;, +14:u00:lo_length;, +17:u01:layoutiomode4, +14:u02:lo_iomode;, +15:u04:lo_content;, +14:u10:lo_iomode;, +19:u11:layout_content4, +15:u12:lo_content;, +8:u23:lo_c, +17:u00:layoutiomode4, +14:u01:lo_iomode;, +15:u03:lo_content;, +14:u07:dividable,, +19:u10:layout_content4, +15:u11:lo_content;, +14:u00:lo_iomode;, +15:u02:lo_content;, +14:u06:dividable,, +15:u10:lo_content;, +14:u14:dividable,, +15:u01:lo_content;, +14:u05:dividable,, +14:u13:dividable,, +7:uI2:,',, +15:u00:lo_content;, +14:u04:dividable,, +7:u08:94], +14:u12:dividable,, +7:u22:div, +8:u23:divi, +7:uI1:,',, +14:u03:dividable,, +7:u07:94], +14:u11:dividable,, +7:uI0:,',, +14:u02:dividable,, +7:u06:94], +14:u10:dividable,, +14:u01:dividable,, +11:u08:3.3.18., +7:u05:94], +14:u00:dividable,, +7:u04:94], +17:u08:layoutupdate4, +11:u07:3.3.18., +7:u03:94], +17:u07:layoutupdate4, +11:u06:3.3.18., +13:u08:lou_type;, +7:u02:94], +17:u06:layoutupdate4, +11:u14:3.3.18., +11:u05:3.3.18., +7:u01:94], +17:u05:layoutupdate4, +11:u13:3.3.18., +11:u04:3.3.18., +13:u07:lou_type;, +15:u08:lou_body<>;, +7:u00:94], +17:u04:layoutupdate4, +11:u12:3.3.18., +11:u03:3.3.18., +13:u06:lou_type;, +17:u03:layoutupdate4, +11:u11:3.3.18., +13:u14:lou_type;, +11:u02:3.3.18., +13:u05:lou_type;, +15:u07:lou_body<>;, +17:u02:layoutupdate4, +11:u10:3.3.18., +13:u13:lou_type;, +11:u01:3.3.18., +13:u04:lou_type;, +15:u06:lou_body<>;, +17:u01:layoutupdate4, +13:u12:lou_type;, +15:u14:lou_body<>;, +7:u22:lou, +8:u23:lou_, +11:u00:3.3.18., +13:u03:lou_type;, +15:u05:lou_body<>;, +17:u00:layoutupdate4, +13:u11:lou_type;, +15:u13:lou_body<>;, +13:u02:lou_type;, +15:u04:lou_body<>;, +10:u08:18.42), +13:u10:lou_type;, +15:u12:lou_body<>;, +13:u01:lou_type;, +15:u03:lou_body<>;, +10:u07:18.42), +15:u11:lou_body<>;, +13:u00:lou_type;, +15:u02:lou_body<>;, +10:u06:18.42), +15:u10:lou_body<>;, +15:u01:lou_body<>;, +10:u05:18.42), +15:u00:lou_body<>;, +9:u08:type., +10:u04:18.42), +12:u08:lou_type, +10:u03:18.42), +8:uI2:.,/,, +9:u07:type., +10:u02:18.42), +8:uI1:.,/,, +9:u06:type., +12:u07:lou_type, +11:u08:3.3.19., +10:u01:18.42), +11:u08:length., +9:u14:type., +8:uI0:.,/,, +9:u05:type., +12:u06:lou_type, +10:u00:18.42), +11:u07:length., +15:u08:layouthint4, +9:u13:type., +12:u14:lou_type, +8:uI2:..-;, +9:u04:type., +12:u05:lou_type, +11:u07:3.3.19., +11:u06:length., +15:u07:layouthint4, +9:u12:type., +12:u13:lou_type, +8:uI1:..-;, +9:u03:type., +12:u04:lou_type, +11:u06:3.3.19., +13:u08:loh_type;, +11:u05:length., +15:u06:layouthint4, +9:u11:type., +12:u12:lou_type, +11:u14:3.3.19., +8:uI0:..-;, +9:u02:type., +12:u03:lou_type, +11:u05:3.3.19., +11:u04:length., +15:u05:layouthint4, +9:u10:type., +12:u11:lou_type, +11:u13:3.3.19., +9:u01:type., +12:u02:lou_type, +11:u04:3.3.19., +13:u07:loh_type;, +15:u08:loh_body<>;, +11:u03:length., +15:u04:layouthint4, +12:u10:lou_type, +11:u12:3.3.19., +9:u00:type., +12:u01:lou_type, +11:u03:3.3.19., +13:u06:loh_type;, +11:u02:length., +15:u03:layouthint4, +11:u11:3.3.19., +13:u14:loh_type;, +12:u00:lou_type, +11:u02:3.3.19., +13:u05:loh_type;, +15:u07:loh_body<>;, +11:u01:length., +15:u02:layouthint4, +11:u10:3.3.19., +13:u13:loh_type;, +11:u01:3.3.19., +13:u04:loh_type;, +15:u06:loh_body<>;, +11:u00:length., +15:u01:layouthint4, +13:u12:loh_type;, +15:u14:loh_body<>;, +7:u22:loh, +8:u23:loh_, +11:u00:3.3.19., +13:u03:loh_type;, +15:u05:loh_body<>;, +15:u00:layouthint4, +13:u11:loh_type;, +15:u13:loh_body<>;, +13:u02:loh_type;, +15:u04:loh_body<>;, +13:u10:loh_type;, +15:u12:loh_body<>;, +13:u01:loh_type;, +15:u03:loh_body<>;, +15:u11:loh_body<>;, +13:u00:loh_type;, +15:u02:loh_body<>;, +10:u08:ignore, +15:u10:loh_body<>;, +15:u01:loh_body<>;, +10:u07:ignore, +15:u00:loh_body<>;, +15:u08:(loh_type)., +10:u06:ignore, +15:u14:selectively, +28:u08:nfsv4_1_file_layouthint4, +10:u05:ignore, +15:u13:selectively, +15:u07:(loh_type)., +11:u08:3.3.20., +10:u04:ignore, +15:u12:selectively, +15:u06:(loh_type)., +28:u07:nfsv4_1_file_layouthint4, +10:u03:ignore, +15:u11:selectively, +15:u14:(loh_type)., +15:u05:(loh_type)., +28:u06:nfsv4_1_file_layouthint4, +11:u07:3.3.20., +22:u08:LAYOUTIOMODE4_READ, +10:u02:ignore, +15:u10:selectively, +15:u13:(loh_type)., +28:u14:nfsv4_1_file_layouthint4, +9:uI2:()..-, +15:u04:(loh_type)., +28:u05:nfsv4_1_file_layouthint4, +11:u06:3.3.20., +10:u01:ignore, +15:u12:(loh_type)., +28:u13:nfsv4_1_file_layouthint4, +11:u14:3.3.20., +8:u23:(loh, +9:uI1:()..-, +15:u03:(loh_type)., +28:u04:nfsv4_1_file_layouthint4, +11:u05:3.3.20., +22:u07:LAYOUTIOMODE4_READ, +20:u08:LAYOUTIOMODE4_RW, +10:u00:ignore, +15:u11:(loh_type)., +28:u12:nfsv4_1_file_layouthint4, +11:u13:3.3.20., +8:u23:nfsv, +9:uI0:()..-, +15:u02:(loh_type)., +28:u03:nfsv4_1_file_layouthint4, +11:u04:3.3.20., +22:u06:LAYOUTIOMODE4_READ, +15:u10:(loh_type)., +28:u11:nfsv4_1_file_layouthint4, +11:u12:3.3.20., +22:u14:layoutiomode4_read, +15:u01:(loh_type)., +28:u02:nfsv4_1_file_layouthint4, +11:u03:3.3.20., +22:u05:LAYOUTIOMODE4_READ, +20:u07:LAYOUTIOMODE4_RW, +21:u08:LAYOUTIOMODE4_ANY, +28:u10:nfsv4_1_file_layouthint4, +11:u11:3.3.20., +22:u13:layoutiomode4_read, +15:u00:(loh_type)., +28:u01:nfsv4_1_file_layouthint4, +11:u02:3.3.20., +22:u04:LAYOUTIOMODE4_READ, +20:u06:LAYOUTIOMODE4_RW, +11:u10:3.3.20., +22:u12:layoutiomode4_read, +20:u14:layoutiomode4_rw, +28:u00:nfsv4_1_file_layouthint4, +11:u01:3.3.20., +22:u03:LAYOUTIOMODE4_READ, +20:u05:LAYOUTIOMODE4_RW, +21:u07:LAYOUTIOMODE4_ANY, +22:u11:layoutiomode4_read, +20:u13:layoutiomode4_rw, +11:u00:3.3.20., +22:u02:LAYOUTIOMODE4_READ, +20:u04:LAYOUTIOMODE4_RW, +21:u06:LAYOUTIOMODE4_ANY, +22:u10:layoutiomode4_read, +20:u12:layoutiomode4_rw, +21:u14:layoutiomode4_any, +22:u01:LAYOUTIOMODE4_READ, +20:u03:LAYOUTIOMODE4_RW, +21:u05:LAYOUTIOMODE4_ANY, +8:u08:read, +10:u08:iomode, +20:u11:layoutiomode4_rw, +21:u13:layoutiomode4_any, +22:u00:LAYOUTIOMODE4_READ, +20:u02:LAYOUTIOMODE4_RW, +21:u04:LAYOUTIOMODE4_ANY, +10:u07:iomode, +20:u10:layoutiomode4_rw, +21:u12:layoutiomode4_any, +20:u01:LAYOUTIOMODE4_RW, +21:u03:LAYOUTIOMODE4_ANY, +8:u07:read, +13:u08:LAYOUTGET, +10:u06:iomode, +21:u11:layoutiomode4_any, +20:u00:LAYOUTIOMODE4_RW, +21:u02:LAYOUTIOMODE4_ANY, +8:u06:read, +16:u08:LAYOUTRETURN, +10:u05:iomode, +21:u10:layoutiomode4_any, +8:u14:read, +21:u01:LAYOUTIOMODE4_ANY, +8:u05:read, +13:u07:LAYOUTGET, +10:u04:iomode, +8:u13:read, +21:u00:LAYOUTIOMODE4_ANY, +8:u04:read, +13:u06:LAYOUTGET, +16:u07:LAYOUTRETURN, +10:u03:iomode, +8:u12:read, +13:u14:layoutget, +8:u03:read, +13:u05:LAYOUTGET, +16:u06:LAYOUTRETURN, +10:u02:iomode, +8:u11:read, +13:u13:layoutget, +16:u14:layoutreturn, +8:u02:read, +13:u04:LAYOUTGET, +16:u05:LAYOUTRETURN, +10:u01:iomode, +7:u08:95], +8:u10:read, +13:u12:layoutget, +16:u13:layoutreturn, +8:u01:read, +13:u03:LAYOUTGET, +16:u04:LAYOUTRETURN, +10:u00:iomode, +7:u07:95], +13:u11:layoutget, +16:u12:layoutreturn, +8:u00:read, +13:u02:LAYOUTGET, +16:u03:LAYOUTRETURN, +7:u06:95], +13:u10:layoutget, +16:u11:layoutreturn, +13:u01:LAYOUTGET, +16:u02:LAYOUTRETURN, +7:u05:95], +16:u10:layoutreturn, +13:u00:LAYOUTGET, +16:u01:LAYOUTRETURN, +7:u04:95], +16:u00:LAYOUTRETURN, +17:u08:respectively., +7:u03:95], +7:u02:95], +10:u14:iomode, +17:u07:respectively., +7:u01:95], +10:u13:iomode, +17:u06:respectively., +11:u08:3.3.21., +7:u00:95], +10:u12:iomode, +17:u14:respectively., +6:u21:io, +7:u22:iom, +8:u23:iomo, +17:u05:respectively., +16:u08:nfs_impl_id4, +10:u11:iomode, +17:u13:respectively., +17:u04:respectively., +11:u07:3.3.21., +16:u07:nfs_impl_id4, +10:u10:iomode, +17:u12:respectively., +12:u14:accesses, +17:u03:respectively., +11:u06:3.3.21., +15:u08:nii_domain;, +16:u06:nfs_impl_id4, +17:u11:respectively., +12:u13:accesses, +11:u14:3.3.21., +17:u02:respectively., +11:u05:3.3.21., +16:u05:nfs_impl_id4, +17:u10:respectively., +12:u12:accesses, +11:u13:3.3.21., +17:u01:respectively., +11:u04:3.3.21., +15:u07:nii_domain;, +13:u08:nii_name;, +16:u04:nfs_impl_id4, +12:u11:accesses, +11:u12:3.3.21., +15:u14:utf8str_cis, +17:u00:respectively., +11:u03:3.3.21., +15:u06:nii_domain;, +16:u03:nfs_impl_id4, +12:u10:accesses, +11:u11:3.3.21., +15:u13:utf8str_cis, +15:u14:nii_domain;, +11:u02:3.3.21., +15:u05:nii_domain;, +13:u07:nii_name;, +13:u08:nii_date;, +16:u02:nfs_impl_id4, +11:u10:3.3.21., +15:u12:utf8str_cis, +15:u13:nii_domain;, +14:u14:utf8str_cs, +6:u21:ut, +7:u22:utf, +8:u23:utf8, +11:u01:3.3.21., +15:u04:nii_domain;, +13:u06:nii_name;, +16:u01:nfs_impl_id4, +15:u11:utf8str_cis, +15:u12:nii_domain;, +14:u13:utf8str_cs, +13:u14:nii_name;, +6:u21:ni, +7:u22:nii, +8:u23:nii_, +11:u00:3.3.21., +15:u03:nii_domain;, +13:u05:nii_name;, +13:u07:nii_date;, +16:u00:nfs_impl_id4, +15:u10:utf8str_cis, +15:u11:nii_domain;, +14:u12:utf8str_cs, +13:u13:nii_name;, +15:u02:nii_domain;, +13:u04:nii_name;, +13:u06:nii_date;, +15:u10:nii_domain;, +14:u11:utf8str_cs, +13:u12:nii_name;, +13:u14:nii_date;, +15:u01:nii_domain;, +13:u03:nii_name;, +13:u05:nii_date;, +14:u10:utf8str_cs, +13:u11:nii_name;, +13:u13:nii_date;, +15:u00:nii_domain;, +13:u02:nii_name;, +13:u04:nii_date;, +13:u10:nii_name;, +13:u12:nii_date;, +13:u01:nii_name;, +13:u03:nii_date;, +13:u11:nii_date;, +12:u14:details., +13:u00:nii_name;, +13:u02:nii_date;, +13:u10:nii_date;, +12:u13:details., +13:u01:nii_date;, +12:u08:nii_date, +14:u08:platforms,, +12:u12:details., +13:u00:nii_date;, +14:u07:platforms,, +12:u11:details., +12:u07:nii_date, +11:u08:3.3.22., +14:u06:platforms,, +12:u10:details., +12:u06:nii_date, +14:u05:platforms,, +19:u08:threshold_item4, +12:u14:nii_date, +8:uI2:,,,., +12:u05:nii_date, +11:u07:3.3.22., +14:u04:platforms,, +19:u07:threshold_item4, +12:u13:nii_date, +13:u14:published, +8:uI1:,,,., +12:u04:nii_date, +11:u06:3.3.22., +20:u08:thi_layout_type;, +14:u03:platforms,, +19:u06:threshold_item4, +12:u12:nii_date, +13:u13:published, +11:u14:3.3.22., +8:uI0:,,,., +12:u03:nii_date, +11:u05:3.3.22., +14:u02:platforms,, +19:u05:threshold_item4, +12:u11:nii_date, +13:u12:published, +11:u13:3.3.22., +12:u02:nii_date, +11:u04:3.3.22., +20:u07:thi_layout_type;, +16:u08:thi_hintset;, +14:u01:platforms,, +19:u04:threshold_item4, +12:u10:nii_date, +13:u11:published, +11:u12:3.3.22., +12:u01:nii_date, +11:u03:3.3.22., +20:u06:thi_layout_type;, +14:u00:platforms,, +19:u03:threshold_item4, +13:u10:published, +11:u11:3.3.22., +20:u14:thi_layout_type;, +12:u00:nii_date, +11:u02:3.3.22., +20:u05:thi_layout_type;, +16:u07:thi_hintset;, +19:u08:thi_hintlist<>;, +19:u02:threshold_item4, +11:u10:3.3.22., +20:u13:thi_layout_type;, +11:u01:3.3.22., +20:u04:thi_layout_type;, +16:u06:thi_hintset;, +19:u01:threshold_item4, +20:u12:thi_layout_type;, +16:u14:thi_hintset;, +8:u23:thi_, +11:u00:3.3.22., +20:u03:thi_layout_type;, +16:u05:thi_hintset;, +19:u07:thi_hintlist<>;, +19:u00:threshold_item4, +20:u11:thi_layout_type;, +16:u13:thi_hintset;, +20:u02:thi_layout_type;, +16:u04:thi_hintset;, +19:u06:thi_hintlist<>;, +11:u08:helping, +20:u10:thi_layout_type;, +16:u12:thi_hintset;, +19:u14:thi_hintlist<>;, +20:u01:thi_layout_type;, +16:u03:thi_hintset;, +19:u05:thi_hintlist<>;, +16:u11:thi_hintset;, +19:u13:thi_hintlist<>;, +20:u00:thi_layout_type;, +16:u02:thi_hintset;, +19:u04:thi_hintlist<>;, +11:u07:helping, +16:u10:thi_hintset;, +19:u12:thi_hintlist<>;, +16:u01:thi_hintset;, +19:u03:thi_hintlist<>;, +11:u06:helping, +19:u11:thi_hintlist<>;, +11:u14:helping, +16:u00:thi_hintset;, +19:u02:thi_hintlist<>;, +11:u05:helping, +19:u10:thi_hintlist<>;, +11:u13:helping, +19:u01:thi_hintlist<>;, +11:u04:helping, +11:u12:helping, +8:u23:help, +19:u00:thi_hintlist<>;, +11:u03:helping, +11:u11:helping, +11:u02:helping, +11:u10:helping, +11:u01:helping, +15:u08:thi_hintset, +8:uI2:),(), +11:u00:helping, +15:u07:thi_hintset, +8:uI1:),(), +15:u06:thi_hintset, +8:uI0:),(), +15:u05:thi_hintset, +7:u08:96], +15:u04:thi_hintset, +7:u07:96], +15:u03:thi_hintset, +7:u06:96], +73:u08:+-------------------------+---+---------+---------------------------+, +15:u02:thi_hintset, +7:u05:96], +15:u01:thi_hintset, +7:u04:96], +73:u07:+-------------------------+---+---------+---------------------------+, +15:u00:thi_hintset, +7:u03:96], +73:u06:+-------------------------+---+---------+---------------------------+, +7:u02:96], +5:u08:#, +73:u14:+-------------------------+---+---------+---------------------------+, +73:u05:+-------------------------+---+---------+---------------------------+, +7:u01:96], +5:u07:#, +73:u13:+-------------------------+---+---------+---------------------------+, +73:u04:+-------------------------+---+---------+---------------------------+, +7:u00:96], +5:u06:#, +73:u12:+-------------------------+---+---------+---------------------------+, +73:u03:+-------------------------+---+---------+---------------------------+, +5:u05:#, +73:u11:+-------------------------+---+---------+---------------------------+, +5:uI2:#, +73:u02:+-------------------------+---+---------+---------------------------+, +5:u04:#, +73:u10:+-------------------------+---+---------+---------------------------+, +5:uI1:#, +73:u01:+-------------------------+---+---------+---------------------------+, +5:u03:#, +5:uI0:#, +73:u00:+-------------------------+---+---------+---------------------------+, +5:u02:#, +5:u01:#, +5:u00:#, +24:u08:threshold4_read_size, +24:u07:threshold4_read_size, +24:u06:threshold4_read_size, +24:u05:threshold4_read_size, +24:u04:threshold4_read_size, +24:u03:threshold4_read_size, +24:u02:threshold4_read_size, +24:u01:threshold4_read_size, +24:u00:threshold4_read_size, +25:u08:threshold4_read_size,, +25:u07:threshold4_read_size,, +25:u06:threshold4_read_size,, +25:u05:threshold4_read_size,, +25:u04:threshold4_read_size,, +25:u03:threshold4_read_size,, +25:u02:threshold4_read_size,, +25:u01:threshold4_read_size,, +25:u00:threshold4_read_size,, +25:u08:threshold4_write_size, +25:u07:threshold4_write_size, +25:u06:threshold4_write_size, +25:u05:threshold4_write_size, +25:u04:threshold4_write_size, +25:u03:threshold4_write_size, +25:u02:threshold4_write_size, +25:u01:threshold4_write_size, +25:u00:threshold4_write_size, +26:u08:threshold4_write_size,, +26:u07:threshold4_write_size,, +26:u06:threshold4_write_size,, +26:u05:threshold4_write_size,, +26:u04:threshold4_write_size,, +26:u03:threshold4_write_size,, +26:u02:threshold4_write_size,, +26:u01:threshold4_write_size,, +26:u00:threshold4_write_size,, +26:u08:threshold4_read_iosize, +26:u07:threshold4_read_iosize, +26:u06:threshold4_read_iosize, +26:u05:threshold4_read_iosize, +26:u04:threshold4_read_iosize, +26:u03:threshold4_read_iosize, +26:u02:threshold4_read_iosize, +26:u01:threshold4_read_iosize, +26:u00:threshold4_read_iosize, +27:u08:threshold4_write_iosize, +27:u07:threshold4_write_iosize, +27:u06:threshold4_write_iosize, +27:u05:threshold4_write_iosize, +27:u04:threshold4_write_iosize, +27:u03:threshold4_write_iosize, +27:u02:threshold4_write_iosize, +27:u01:threshold4_write_iosize, +27:u00:threshold4_write_iosize, +11:u08:3.3.23., +17:u08:mdsthreshold4, +11:u07:3.3.23., +17:u07:mdsthreshold4, +11:u06:3.3.23., +17:u06:mdsthreshold4, +16:u08:mth_hints<>;, +11:u14:3.3.23., +11:u05:3.3.23., +17:u05:mdsthreshold4, +16:u07:mth_hints<>;, +11:u13:3.3.23., +11:u04:3.3.23., +20:u08:threshold_item4,, +17:u04:mdsthreshold4, +16:u06:mth_hints<>;, +11:u12:3.3.23., +19:u14:threshold_item4, +11:u03:3.3.23., +17:u03:mdsthreshold4, +16:u05:mth_hints<>;, +11:u11:3.3.23., +19:u13:threshold_item4, +11:u02:3.3.23., +20:u07:threshold_item4,, +17:u02:mdsthreshold4, +16:u04:mth_hints<>;, +11:u10:3.3.23., +19:u12:threshold_item4, +11:u01:3.3.23., +20:u06:threshold_item4,, +17:u01:mdsthreshold4, +16:u03:mth_hints<>;, +19:u11:threshold_item4, +20:u14:threshold_item4,, +11:u00:3.3.23., +20:u05:threshold_item4,, +17:u00:mdsthreshold4, +16:u02:mth_hints<>;, +19:u10:threshold_item4, +20:u13:threshold_item4,, +20:u04:threshold_item4,, +16:u01:mth_hints<>;, +20:u12:threshold_item4,, +20:u03:threshold_item4,, +16:u00:mth_hints<>;, +20:u11:threshold_item4,, +20:u02:threshold_item4,, +20:u10:threshold_item4,, +20:u01:threshold_item4,, +11:u08:object., +20:u00:threshold_item4,, +11:u07:object., +11:u06:object., +11:u14:object., +11:u05:object., +7:u08:97], +11:u13:object., +11:u04:object., +7:u07:97], +11:u12:object., +7:u22:obj, +8:u23:obje, +11:u03:object., +7:u06:97], +11:u11:object., +11:u02:object., +7:u05:97], +11:u10:object., +11:u01:object., +7:u04:97], +11:u00:object., +7:u03:97], +7:u02:97], +8:u08:1813, +7:u01:97], +7:u00:97], +10:u08:[34]),, +8:u07:1813, +10:u07:[34]),, +8:u06:1813, +15:u08:filehandle,, +10:u06:[34]),, +8:u14:1813, +8:u05:1813, +10:u05:[34]),, +8:u13:1813, +8:u04:1813, +15:u07:filehandle,, +10:u04:[34]),, +8:u12:1813, +7:u22:181, +8:u23:1813, +8:u03:1813, +15:u06:filehandle,, +10:u03:[34]),, +14:u08:firewalls., +8:u11:1813, +15:u14:filehandle,, +8:u02:1813, +15:u05:filehandle,, +10:u02:[34]),, +14:u07:firewalls., +8:u10:1813, +15:u13:filehandle,, +8:u01:1813, +15:u04:filehandle,, +10:u01:[34]),, +14:u06:firewalls., +15:u12:filehandle,, +8:u00:1813, +15:u03:filehandle,, +10:u00:[34]),, +14:u05:firewalls., +15:u11:filehandle,, +15:u02:filehandle,, +14:u04:firewalls., +15:u10:filehandle,, +15:u01:filehandle,, +14:u03:firewalls., +15:u00:filehandle,, +14:u02:firewalls., +14:u01:firewalls., +15:u08:translation, +14:u00:firewalls., +15:u07:translation, +15:u06:translation, +15:u05:translation, +8:u08:ROOT, +15:u04:translation, +15:u03:translation, +8:u07:ROOT, +15:u02:translation, +8:u06:ROOT, +15:u01:translation, +8:u05:ROOT, +15:u00:translation, +13:u08:instructs, +8:u04:ROOT, +13:u07:instructs, +7:u22:ROO, +8:u23:ROOT, +8:u03:ROOT, +8:u08:tree, +13:u06:instructs, +8:u02:ROOT, +13:u05:instructs, +8:u01:ROOT, +8:u07:tree, +13:u04:instructs, +8:u00:ROOT, +8:u06:tree, +13:u03:instructs, +8:u14:tree, +8:u05:tree, +13:u02:instructs, +8:u13:tree, +8:u04:tree, +13:u01:instructs, +8:u12:tree, +8:u23:tree, +8:u03:tree, +13:u00:instructs, +8:u11:tree, +8:u02:tree, +8:u10:tree, +8:u01:tree, +8:u00:tree, +10:u08:PUBLIC, +8:u08:make, +10:u07:PUBLIC, +10:u06:PUBLIC, +8:u07:make, +10:u05:PUBLIC, +8:u06:make, +8:u14:make, +10:u04:PUBLIC, +8:u05:make, +8:u13:make, +7:u22:PUB, +8:u23:PUBL, +10:u03:PUBLIC, +8:u04:make, +7:u08:98], +8:u12:make, +8:u23:make, +10:u02:PUBLIC, +8:u03:make, +7:u07:98], +8:u11:make, +10:u01:PUBLIC, +8:u02:make, +7:u06:98], +8:u10:make, +10:u00:PUBLIC, +8:u01:make, +7:u05:98], +8:u00:make, +7:u04:98], +7:u03:98], +7:u02:98], +11:u08:before., +7:u01:98], +14:u08:"volatile", +7:u00:98], +11:u07:before., +17:u08:environments., +11:u06:before., +14:u07:"volatile", +11:u14:before., +11:u05:before., +14:u06:"volatile", +17:u07:environments., +17:u08:functionality, +12:u08:volatile, +11:u13:before., +14:u14:"volatile", +11:u04:before., +14:u05:"volatile", +17:u06:environments., +12:u07:volatile, +11:u12:before., +14:u13:"volatile", +17:u14:environments., +11:u03:before., +14:u04:"volatile", +17:u05:environments., +17:u07:functionality, +16:u08:environments, +12:u06:volatile, +11:u11:before., +14:u12:"volatile", +17:u13:environments., +6:u21:"v, +7:u22:"vo, +8:u23:"vol, +11:u02:before., +14:u03:"volatile", +17:u04:environments., +17:u06:functionality, +12:u05:volatile, +11:u10:before., +14:u11:"volatile", +17:u12:environments., +17:u14:functionality, +11:u01:before., +14:u02:"volatile", +17:u03:environments., +17:u05:functionality, +16:u07:environments, +12:u04:volatile, +14:u10:"volatile", +17:u11:environments., +17:u13:functionality, +11:u00:before., +14:u01:"volatile", +17:u02:environments., +17:u04:functionality, +16:u06:environments, +15:u08:programming, +12:u03:volatile, +17:u10:environments., +17:u12:functionality, +16:u14:environments, +14:u00:"volatile", +17:u01:environments., +17:u03:functionality, +16:u05:environments, +14:u08:invariant., +12:u02:volatile, +14:u08:interfaces, +17:u11:functionality, +16:u13:environments, +17:u00:environments., +17:u02:functionality, +16:u04:environments, +15:u07:programming, +12:u01:volatile, +14:u07:interfaces, +12:u08:Volatile, +17:u10:functionality, +16:u12:environments, +17:u01:functionality, +16:u03:environments, +15:u06:programming, +14:u07:invariant., +12:u00:volatile, +14:u06:interfaces, +12:u07:Volatile, +16:u11:environments, +15:u14:programming, +17:u00:functionality, +16:u02:environments, +15:u05:programming, +14:u06:invariant., +14:u05:interfaces, +12:u06:Volatile, +18:u08:reorganization, +16:u10:environments, +15:u13:programming, +14:u14:invariant., +16:u01:environments, +15:u04:programming, +14:u05:invariant., +14:u04:interfaces, +12:u05:Volatile, +18:u07:reorganization, +15:u12:programming, +14:u13:invariant., +16:u00:environments, +15:u03:programming, +14:u04:invariant., +14:u03:interfaces, +12:u04:Volatile, +18:u06:reorganization, +15:u11:programming, +14:u12:invariant., +7:u22:inv, +8:u23:inva, +15:u02:programming, +14:u03:invariant., +14:u02:interfaces, +12:u03:Volatile, +18:u05:reorganization, +16:u08:differently,, +15:u10:programming, +14:u11:invariant., +15:u01:programming, +14:u02:invariant., +14:u01:interfaces, +12:u02:Volatile, +18:u04:reorganization, +16:u07:differently,, +14:u10:invariant., +15:u00:programming, +14:u01:invariant., +14:u00:interfaces, +12:u01:Volatile, +18:u03:reorganization, +16:u06:differently,, +14:u00:invariant., +12:u00:Volatile, +18:u02:reorganization, +16:u05:differently,, +15:u08:distinguish, +18:u01:reorganization, +16:u04:differently,, +11:u08:opaque., +18:u00:reorganization, +16:u03:differently,, +15:u07:distinguish, +16:u02:differently,, +15:u06:distinguish, +11:u07:opaque., +16:u01:differently,, +11:u08:compare, +15:u14:distinguish, +15:u05:distinguish, +11:u06:opaque., +16:u00:differently,, +11:u07:compare, +15:u13:distinguish, +11:u14:opaque., +15:u04:distinguish, +11:u05:opaque., +11:u06:compare, +13:u08:interpret, +15:u12:distinguish, +11:u13:opaque., +15:u03:distinguish, +11:u04:opaque., +11:u05:compare, +13:u07:interpret, +15:u11:distinguish, +11:u12:opaque., +9:u14:doing, +15:u02:distinguish, +11:u03:opaque., +11:u04:compare, +13:u06:interpret, +15:u10:distinguish, +11:u11:opaque., +9:u13:doing, +8:uI2:--.,, +15:u01:distinguish, +11:u02:opaque., +11:u03:compare, +13:u05:interpret, +11:u10:opaque., +9:u12:doing, +7:u22:doi, +8:u23:doin, +8:uI1:--.,, +15:u00:distinguish, +11:u01:opaque., +13:u08:behavior., +11:u02:compare, +13:u04:interpret, +15:u08:comparisons, +9:u11:doing, +8:uI0:--.,, +11:u00:opaque., +11:u01:compare, +13:u03:interpret, +15:u07:comparisons, +9:u10:doing, +13:u07:behavior., +11:u00:compare, +13:u02:interpret, +15:u06:comparisons, +13:u06:behavior., +13:u01:interpret, +15:u05:comparisons, +13:u14:behavior., +13:u05:behavior., +14:u08:comparison, +13:u00:interpret, +15:u04:comparisons, +13:u13:behavior., +13:u04:behavior., +15:u03:comparisons, +13:u12:behavior., +13:u03:behavior., +14:u07:comparison, +15:u02:comparisons, +11:u08:10.3.4., +13:u11:behavior., +13:u14:incorrect, +13:u02:behavior., +14:u06:comparison, +13:u08:traversed, +15:u01:comparisons, +11:u07:10.3.4., +13:u10:behavior., +13:u13:incorrect, +14:u14:comparison, +13:u01:behavior., +14:u05:comparison, +15:u00:comparisons, +11:u06:10.3.4., +13:u12:incorrect, +14:u13:comparison, +13:u00:behavior., +14:u04:comparison, +13:u07:traversed, +11:u05:10.3.4., +13:u11:incorrect, +14:u12:comparison, +14:u03:comparison, +13:u06:traversed, +11:u04:10.3.4., +13:u10:incorrect, +14:u11:comparison, +13:u14:traversed, +14:u02:comparison, +13:u05:traversed, +11:u03:10.3.4., +14:u10:comparison, +13:u13:traversed, +14:u01:comparison, +13:u04:traversed, +11:u02:10.3.4., +7:u08:99], +13:u12:traversed, +8:u23:trav, +14:u00:comparison, +13:u03:traversed, +11:u01:10.3.4., +7:u07:99], +13:u11:traversed, +13:u02:traversed, +11:u00:10.3.4., +7:u06:99], +13:u10:traversed, +13:u01:traversed, +9:u08:occur, +7:u05:99], +13:u00:traversed, +9:u08:refer, +7:u04:99], +9:u07:occur, +7:u03:99], +9:u06:occur, +9:u07:refer, +7:u02:99], +9:u14:occur, +9:u05:occur, +9:u06:refer, +15:u08:traversals., +7:u01:99], +9:u13:occur, +9:u14:refer, +8:uI2:([]), +9:u04:occur, +9:u05:refer, +7:u00:99], +9:u12:occur, +9:u13:refer, +6:u21:oc, +7:u22:occ, +8:u23:occu, +8:uI1:([]), +9:u03:occur, +9:u04:refer, +15:u07:traversals., +14:u08:Persistent, +9:u11:occur, +9:u12:refer, +8:uI0:([]), +12:uI2:,//////,, +9:u02:occur, +9:u03:refer, +15:u06:traversals., +12:u08:lifetime, +14:u07:Persistent, +9:u10:occur, +9:u11:refer, +15:u14:traversals., +12:uI1:,//////,, +9:u01:occur, +9:u02:refer, +15:u05:traversals., +14:u06:Persistent, +9:u10:refer, +15:u13:traversals., +12:uI0:,//////,, +9:u00:occur, +9:u01:refer, +15:u04:traversals., +12:u07:lifetime, +14:u05:Persistent, +15:u12:traversals., +9:u00:refer, +15:u03:traversals., +12:u06:lifetime, +14:u04:Persistent, +15:u11:traversals., +12:u14:lifetime, +15:u02:traversals., +12:u05:lifetime, +14:u03:Persistent, +15:u10:traversals., +12:u13:lifetime, +15:u01:traversals., +12:u04:lifetime, +18:u08:instantiation., +14:u02:Persistent, +12:u12:lifetime, +7:u22:lif, +8:u23:life, +15:u00:traversals., +12:u03:lifetime, +14:u01:Persistent, +14:u08:Similarly,, +12:u11:lifetime, +12:u02:lifetime, +18:u07:instantiation., +14:u00:Persistent, +14:u07:Similarly,, +12:u10:lifetime, +12:u01:lifetime, +18:u06:instantiation., +14:u06:Similarly,, +18:u14:instantiation., +12:u00:lifetime, +18:u05:instantiation., +14:u05:Similarly,, +18:u13:instantiation., +18:u04:instantiation., +14:u04:Similarly,, +18:u12:instantiation., +18:u03:instantiation., +14:u03:Similarly,, +18:u11:instantiation., +18:u02:instantiation., +14:u02:Similarly,, +18:u10:instantiation., +18:u01:instantiation., +14:u01:Similarly,, +18:u00:instantiation., +14:u00:Similarly,, +10:u08:4.2.3., +10:u07:4.2.3., +10:u06:4.2.3., +10:u14:4.2.3., +11:uI2:'(..,)., +10:u05:4.2.3., +10:u08:points, +10:u13:4.2.3., +11:uI1:'(..,)., +10:u04:4.2.3., +10:u12:4.2.3., +11:uI0:'(..,)., +10:u03:4.2.3., +10:u07:points, +10:u11:4.2.3., +10:u02:4.2.3., +10:u06:points, +10:u10:4.2.3., +10:u14:points, +10:u01:4.2.3., +10:u05:points, +14:u08:determines, +17:u08:filehandles)., +10:u13:points, +12:u14:volatile, +10:u00:4.2.3., +10:u04:points, +17:u07:filehandles)., +10:u12:points, +12:u13:volatile, +10:u03:points, +14:u07:determines, +17:u06:filehandles)., +10:u11:points, +12:u12:volatile, +7:u22:vol, +8:u23:vola, +10:u02:points, +14:u06:determines, +13:u08:determine, +17:u05:filehandles)., +10:u10:points, +12:u11:volatile, +14:u14:determines, +10:u01:points, +14:u05:determines, +17:u04:filehandles)., +12:u10:volatile, +14:u13:determines, +10:u00:points, +14:u04:determines, +13:u07:determine, +17:u03:filehandles)., +14:u12:determines, +14:u03:determines, +13:u06:determine, +18:u08:FH4_PERSISTENT, +17:u02:filehandles)., +11:u08:values:, +14:u11:determines, +13:u14:determine, +14:u02:determines, +13:u05:determine, +17:u01:filehandles)., +11:u07:values:, +14:u10:determines, +13:u13:determine, +14:u01:determines, +13:u04:determine, +18:u07:FH4_PERSISTENT, +17:u00:filehandles)., +11:u06:values:, +13:u12:determine, +14:u00:determines, +13:u03:determine, +18:u06:FH4_PERSISTENT, +11:u05:values:, +13:u11:determine, +18:u14:fh4_persistent, +13:u02:determine, +18:u05:FH4_PERSISTENT, +11:u04:values:, +13:u10:determine, +18:u13:fh4_persistent, +13:u01:determine, +18:u04:FH4_PERSISTENT, +11:u03:values:, +18:u12:fh4_persistent, +6:u21:FH, +7:u22:FH4, +8:u23:FH4_, +13:u00:determine, +18:u03:FH4_PERSISTENT, +11:u02:values:, +8:u08:100], +18:u11:fh4_persistent, +18:u02:FH4_PERSISTENT, +11:u01:values:, +8:u07:100], +18:u10:fh4_persistent, +18:u01:FH4_PERSISTENT, +11:u00:values:, +8:u06:100], +18:u00:FH4_PERSISTENT, +21:u08:NFS4ERR_FHEXPIRED, +8:u05:100], +8:u04:100], +21:u07:NFS4ERR_FHEXPIRED, +20:u08:FH4_VOLATILE_ANY, +8:u03:100], +21:u06:NFS4ERR_FHEXPIRED, +16:u08:specifically, +8:u02:100], +21:u14:nfs4err_fhexpired, +21:u05:NFS4ERR_FHEXPIRED, +20:u07:FH4_VOLATILE_ANY, +26:u08:FH4_NOEXPIRE_WITH_OPEN, +8:u01:100], +12:u08:excluded, +21:u13:nfs4err_fhexpired, +21:u04:NFS4ERR_FHEXPIRED, +20:u06:FH4_VOLATILE_ANY, +16:u07:specifically, +8:u00:100], +12:u07:excluded, +21:u12:nfs4err_fhexpired, +20:u14:fh4_volatile_any, +21:u03:NFS4ERR_FHEXPIRED, +20:u05:FH4_VOLATILE_ANY, +16:u06:specifically, +26:u07:FH4_NOEXPIRE_WITH_OPEN, +13:u08:qualified, +12:u06:excluded, +21:u11:nfs4err_fhexpired, +20:u13:fh4_volatile_any, +16:u14:specifically, +21:u02:NFS4ERR_FHEXPIRED, +20:u04:FH4_VOLATILE_ANY, +16:u05:specifically, +26:u06:FH4_NOEXPIRE_WITH_OPEN, +9:u08:open., +12:u05:excluded, +21:u10:nfs4err_fhexpired, +20:u12:fh4_volatile_any, +16:u13:specifically, +26:u14:fh4_noexpire_with_open, +10:uI2:(..,)., +21:u01:NFS4ERR_FHEXPIRED, +20:u03:FH4_VOLATILE_ANY, +16:u04:specifically, +26:u05:FH4_NOEXPIRE_WITH_OPEN, +13:u07:qualified, +21:u08:FH4_VOL_MIGRATION, +12:u04:excluded, +20:u11:fh4_volatile_any, +16:u12:specifically, +26:u13:fh4_noexpire_with_open, +10:uI1:(..,)., +21:u00:NFS4ERR_FHEXPIRED, +20:u02:FH4_VOLATILE_ANY, +16:u03:specifically, +26:u04:FH4_NOEXPIRE_WITH_OPEN, +13:u06:qualified, +9:u07:open., +12:u03:excluded, +20:u10:fh4_volatile_any, +16:u11:specifically, +26:u12:fh4_noexpire_with_open, +13:u14:qualified, +10:uI0:(..,)., +20:u01:FH4_VOLATILE_ANY, +16:u02:specifically, +26:u03:FH4_NOEXPIRE_WITH_OPEN, +13:u05:qualified, +9:u06:open., +21:u07:FH4_VOL_MIGRATION, +12:u02:excluded, +14:u08:transition, +16:u10:specifically, +26:u11:fh4_noexpire_with_open, +13:u13:qualified, +20:u00:FH4_VOLATILE_ANY, +16:u01:specifically, +26:u02:FH4_NOEXPIRE_WITH_OPEN, +13:u04:qualified, +9:u05:open., +21:u06:FH4_VOL_MIGRATION, +9:u08:class, +12:u01:excluded, +14:u07:transition, +26:u10:fh4_noexpire_with_open, +13:u12:qualified, +21:u14:fh4_vol_migration, +16:u00:specifically, +26:u01:FH4_NOEXPIRE_WITH_OPEN, +13:u03:qualified, +9:u04:open., +21:u05:FH4_VOL_MIGRATION, +12:u00:excluded, +14:u06:transition, +13:u11:qualified, +21:u13:fh4_vol_migration, +26:u00:FH4_NOEXPIRE_WITH_OPEN, +13:u02:qualified, +9:u03:open., +21:u04:FH4_VOL_MIGRATION, +9:u07:class, +14:u05:transition, +13:u10:qualified, +21:u12:fh4_vol_migration, +13:u01:qualified, +9:u02:open., +21:u03:FH4_VOL_MIGRATION, +9:u06:class, +14:u04:transition, +21:u11:fh4_vol_migration, +9:u14:class, +13:u00:qualified, +9:u01:open., +21:u02:FH4_VOL_MIGRATION, +9:u05:class, +18:u08:FH4_VOL_RENAME, +14:u03:transition, +16:u08:transitions., +21:u10:fh4_vol_migration, +9:u13:class, +9:u00:open., +21:u01:FH4_VOL_MIGRATION, +9:u04:class, +14:u02:transition, +16:u07:transitions., +9:u12:class, +7:u22:cla, +8:u23:clas, +21:u00:FH4_VOL_MIGRATION, +9:u03:class, +18:u07:FH4_VOL_RENAME, +14:u01:transition, +16:u06:transitions., +9:u11:class, +9:u02:class, +18:u06:FH4_VOL_RENAME, +14:u00:transition, +16:u05:transitions., +9:u10:class, +18:u14:fh4_vol_rename, +9:u01:class, +18:u05:FH4_VOL_RENAME, +16:u04:transitions., +18:u13:fh4_vol_rename, +9:u00:class, +18:u04:FH4_VOL_RENAME, +16:u03:transitions., +18:u12:fh4_vol_rename, +18:u03:FH4_VOL_RENAME, +16:u02:transitions., +18:u11:fh4_vol_rename, +18:u02:FH4_VOL_RENAME, +16:u01:transitions., +18:u10:fh4_vol_rename, +18:u01:FH4_VOL_RENAME, +16:u00:transitions., +18:u00:FH4_VOL_RENAME, +8:u14:set,, +8:u13:set,, +8:u08:deny, +11:u08:leading, +8:u12:set,, +8:u23:set,, +11:u07:leading, +8:u11:set,, +8:u07:deny, +11:u08:expired, +11:u06:leading, +8:u10:set,, +8:u06:deny, +11:u05:leading, +8:u14:deny, +8:u05:deny, +11:u07:expired, +11:u04:leading, +8:u13:deny, +8:u04:deny, +11:u06:expired, +11:u03:leading, +10:u08:pseudo, +8:u12:deny, +11:u14:expired, +8:u23:deny, +8:u03:deny, +11:u05:expired, +11:u02:leading, +10:u07:pseudo, +8:u11:deny, +11:u13:expired, +8:u02:deny, +11:u04:expired, +11:u01:leading, +10:u06:pseudo, +8:u10:deny, +11:u12:expired, +8:u01:deny, +11:u03:expired, +11:u00:leading, +10:u05:pseudo, +11:u11:expired, +7:u22:Vol, +8:u23:Vola, +8:u00:deny, +11:u02:expired, +10:u04:pseudo, +11:u10:expired, +11:u01:expired, +10:u03:pseudo, +11:u00:expired, +10:u02:pseudo, +8:u08:101], +7:uI2:,,:, +10:u01:pseudo, +8:u07:101], +7:uI1:,,:, +10:u00:pseudo, +8:u06:101], +7:uI0:,,:, +13:u08:[volatile, +8:u05:101], +8:u04:101], +13:u07:[volatile, +8:u03:101], +13:u06:[volatile, +8:u02:101], +14:u08:generation, +13:u14:[volatile, +13:u05:[volatile, +8:u01:101], +14:u07:generation, +13:u13:[volatile, +13:u04:[volatile, +8:u00:101], +14:u06:generation, +13:u12:[volatile, +6:u21:[v, +7:u22:[vo, +8:u23:[vol, +13:u03:[volatile, +14:u05:generation, +11:u08:checks,, +13:u11:[volatile, +13:u02:[volatile, +8:u08:boot, +14:u04:generation, +11:u07:checks,, +11:u08:passed., +13:u10:[volatile, +13:u01:[volatile, +22:u08:NFS4ERR_BADHANDLE., +14:u03:generation, +11:u06:checks,, +11:u07:passed., +13:u00:[volatile, +8:u07:boot, +22:u08:NFS4ERR_FHEXPIRED., +14:u02:generation, +11:u05:checks,, +11:u06:passed., +8:u06:boot, +22:u07:NFS4ERR_BADHANDLE., +14:u01:generation, +11:u04:checks,, +11:u05:passed., +8:u14:boot, +8:u05:boot, +22:u06:NFS4ERR_BADHANDLE., +22:u07:NFS4ERR_FHEXPIRED., +14:u00:generation, +11:u03:checks,, +11:u04:passed., +8:u13:boot, +22:u14:nfs4err_badhandle., +8:u04:boot, +22:u05:NFS4ERR_BADHANDLE., +22:u06:NFS4ERR_FHEXPIRED., +11:u02:checks,, +11:u03:passed., +8:u12:boot, +22:u13:nfs4err_badhandle., +22:u14:nfs4err_fhexpired., +8:u23:boot, +8:u03:boot, +22:u04:NFS4ERR_BADHANDLE., +22:u05:NFS4ERR_FHEXPIRED., +11:u01:checks,, +11:u02:passed., +8:u11:boot, +22:u12:nfs4err_badhandle., +22:u13:nfs4err_fhexpired., +8:u02:boot, +22:u03:NFS4ERR_BADHANDLE., +22:u04:NFS4ERR_FHEXPIRED., +11:u00:checks,, +11:u01:passed., +8:u10:boot, +22:u11:nfs4err_badhandle., +22:u12:nfs4err_fhexpired., +8:u01:boot, +22:u02:NFS4ERR_BADHANDLE., +22:u03:NFS4ERR_FHEXPIRED., +11:u00:passed., +13:u08:possible,, +22:u10:nfs4err_badhandle., +22:u11:nfs4err_fhexpired., +8:u00:boot, +22:u01:NFS4ERR_BADHANDLE., +22:u02:NFS4ERR_FHEXPIRED., +13:u07:possible,, +22:u10:nfs4err_fhexpired., +22:u00:NFS4ERR_BADHANDLE., +22:u01:NFS4ERR_FHEXPIRED., +13:u06:possible,, +22:u00:NFS4ERR_FHEXPIRED., +13:u05:possible,, +10:u08:steps., +13:u04:possible,, +16:u08:filehandles,, +13:u03:possible,, +16:u07:filehandles,, +10:u07:steps., +13:u02:possible,, +16:u06:filehandles,, +10:u06:steps., +10:u08:object, +13:u01:possible,, +16:u05:filehandles,, +10:u14:steps., +10:u05:steps., +11:u08:recover, +13:u00:possible,, +16:u04:filehandles,, +10:u13:steps., +10:u04:steps., +10:u07:object, +16:u03:filehandles,, +10:u12:steps., +7:u22:ste, +8:u23:step, +10:u03:steps., +10:u06:object, +11:u07:recover, +14:u08:namespace., +16:u02:filehandles,, +10:u11:steps., +10:u02:steps., +10:u05:object, +11:u06:recover, +16:u01:filehandles,, +10:u10:steps., +11:u14:recover, +10:u01:steps., +10:u04:object, +11:u05:recover, +14:u07:namespace., +16:u00:filehandles,, +11:u13:recover, +10:u00:steps., +10:u03:object, +11:u04:recover, +14:u06:namespace., +11:u12:recover, +14:u14:namespace., +10:u02:object, +11:u03:recover, +14:u05:namespace., +11:u11:recover, +14:u13:namespace., +10:u01:object, +11:u02:recover, +14:u04:namespace., +11:u10:recover, +14:u12:namespace., +10:u00:object, +11:u01:recover, +14:u03:namespace., +14:u11:namespace., +11:u00:recover, +14:u02:namespace., +14:u10:namespace., +14:u01:namespace., +14:u00:namespace., +14:u08:processing, +14:u07:processing, +12:u14:recover., +14:u06:processing, +12:u13:recover., +14:u14:processing, +14:u05:processing, +12:u12:recover., +14:u13:processing, +14:u04:processing, +12:u11:recover., +14:u12:processing, +14:u03:processing, +8:u08:102], +12:u10:recover., +14:u11:processing, +14:u02:processing, +8:u07:102], +14:u10:processing, +14:u01:processing, +8:u06:102], +14:u00:processing, +8:u05:102], +8:u04:102], +8:u03:102], +8:u02:102], +8:u01:102], +8:u00:102], +11:u14:example, +20:u08:interoperability, +8:u08:meet, +11:u13:example, +11:u08:handled, +8:u07:meet, +11:u12:example, +20:u07:interoperability, +9:u08:fixed, +8:u06:meet, +11:u11:example, +20:u06:interoperability, +11:u07:handled, +8:u05:meet, +11:u10:example, +20:u14:interoperability, +20:u05:interoperability, +11:u06:handled, +9:u07:fixed, +8:u04:meet, +20:u13:interoperability, +11:u14:handled, +20:u04:interoperability, +11:u05:handled, +9:u06:fixed, +8:u03:meet, +20:u12:interoperability, +11:u13:handled, +9:u14:fixed, +20:u03:interoperability, +11:u04:handled, +9:u05:fixed, +8:u02:meet, +20:u11:interoperability, +11:u12:handled, +9:u13:fixed, +20:u02:interoperability, +11:u03:handled, +9:u04:fixed, +8:u01:meet, +20:u10:interoperability, +11:u11:handled, +9:u12:fixed, +7:u22:fix, +8:u23:fixe, +20:u01:interoperability, +11:u02:handled, +9:u03:fixed, +8:u00:meet, +11:u10:handled, +9:u11:fixed, +20:u00:interoperability, +11:u01:handled, +9:u02:fixed, +9:u10:fixed, +11:u00:handled, +9:u01:fixed, +9:u00:fixed, +12:u08:encoding, +7:uI2:,:,, +12:u07:encoding, +7:uI1:,:,, +12:u06:encoding, +12:u14:encoding, +7:uI0:,:,, +12:u05:encoding, +12:u13:encoding, +12:u04:encoding, +12:u12:encoding, +12:u03:encoding, +12:u11:encoding, +12:u02:encoding, +15:u08:discussion., +12:u10:encoding, +12:u01:encoding, +12:u00:encoding, +15:u07:discussion., +15:u06:discussion., +15:u14:discussion., +15:u05:discussion., +15:u13:discussion., +15:u04:discussion., +15:u12:discussion., +15:u03:discussion., +15:u11:discussion., +15:u02:discussion., +11:u08:READDIR, +15:u10:discussion., +15:u01:discussion., +12:u08:example:, +11:u07:READDIR, +15:u00:discussion., +62:u08:+----------+-----------+---------------------------------+, +11:u06:READDIR, +12:u07:example:, +11:u05:READDIR, +12:u06:example:, +62:u07:+----------+-----------+---------------------------------+, +11:u04:READDIR, +12:u14:example:, +12:u05:example:, +62:u06:+----------+-----------+---------------------------------+, +11:u03:READDIR, +9:u08:"foo", +12:u13:example:, +62:u14:+----------+-----------+---------------------------------+, +12:u04:example:, +62:u05:+----------+-----------+---------------------------------+, +11:u02:READDIR, +9:u07:"foo", +5:u08:;, +12:u12:example:, +62:u13:+----------+-----------+---------------------------------+, +58:uI2:------------------------------------------------------, +6:uI2:54, +12:u03:example:, +62:u04:+----------+-----------+---------------------------------+, +11:u01:READDIR, +9:u06:"foo", +5:u07:;, +12:u11:example:, +62:u12:+----------+-----------+---------------------------------+, +58:uI1:------------------------------------------------------, +6:uI1:54, +12:u02:example:, +62:u03:+----------+-----------+---------------------------------+, +11:u00:READDIR, +9:u05:"foo", +5:u06:;, +11:u08:GETATTR, +12:u10:example:, +62:u11:+----------+-----------+---------------------------------+, +58:uI0:------------------------------------------------------, +6:uI0:54, +12:u01:example:, +62:u02:+----------+-----------+---------------------------------+, +9:u04:"foo", +5:u05:;, +11:u07:GETATTR, +62:u10:+----------+-----------+---------------------------------+, +12:u00:example:, +62:u01:+----------+-----------+---------------------------------+, +9:u03:"foo", +5:u04:;, +11:u06:GETATTR, +12:u08:OPENATTR, +62:u00:+----------+-----------+---------------------------------+, +9:u02:"foo", +5:u03:;, +11:u05:GETATTR, +12:u07:OPENATTR, +9:u01:"foo", +5:u02:;, +11:u04:GETATTR, +12:u06:OPENATTR, +9:u00:"foo", +5:u01:;, +11:u03:GETATTR, +12:u05:OPENATTR, +13:u08:"x11icon", +5:u00:;, +11:u02:GETATTR, +12:u04:OPENATTR, +13:u07:"x11icon", +6:uI2:;', +11:u01:GETATTR, +12:u03:OPENATTR, +13:u06:"x11icon", +6:uI1:;', +11:u00:GETATTR, +12:u02:OPENATTR, +13:u05:"x11icon", +10:u08:0,4096, +6:uI0:;', +7:uI2:"";, +12:u01:OPENATTR, +13:u04:"x11icon", +10:u07:0,4096, +7:uI1:"";, +12:u00:OPENATTR, +13:u03:"x11icon", +10:u06:0,4096, +7:uI0:"";, +13:u02:"x11icon", +10:u05:0,4096, +13:u01:"x11icon", +10:u04:0,4096, +13:u00:"x11icon", +10:u03:0,4096, +10:u02:0,4096, +8:u08:103], +10:u01:0,4096, +8:u07:103], +10:u00:0,4096, +8:u06:103], +8:u05:103], +8:u04:103], +14:u08:encouraged, +8:u03:103], +8:u02:103], +14:u07:encouraged, +8:u01:103], +12:u08:bringing, +14:u06:encouraged, +9:u08:small, +8:u00:103], +12:u07:bringing, +14:u14:encouraged, +14:u05:encouraged, +12:u06:bringing, +14:u13:encouraged, +14:u04:encouraged, +9:u07:small, +12:u05:bringing, +14:u12:encouraged, +14:u03:encouraged, +9:u06:small, +12:u04:bringing, +8:u08:but,, +14:u11:encouraged, +9:u14:small, +14:u02:encouraged, +9:u05:small, +12:u03:bringing, +8:u07:but,, +14:u10:encouraged, +9:u13:small, +14:u01:encouraged, +9:u04:small, +14:u08:reasonably, +12:u02:bringing, +8:u06:but,, +9:u12:small, +7:u22:sma, +8:u23:smal, +14:u00:encouraged, +9:u03:small, +12:u01:bringing, +8:u05:but,, +14:u08:computable, +9:u11:small, +9:u02:small, +14:u07:reasonably, +12:u00:bringing, +8:u04:but,, +14:u07:computable, +9:u10:small, +9:u01:small, +14:u06:reasonably, +8:u03:but,, +14:u06:computable, +14:u14:reasonably, +9:u00:small, +14:u05:reasonably, +8:u02:but,, +14:u05:computable, +14:u13:reasonably, +14:u04:reasonably, +8:u01:but,, +14:u04:computable, +14:u12:reasonably, +14:u03:reasonably, +8:u00:but,, +14:u03:computable, +14:u11:reasonably, +14:u02:reasonably, +14:u02:computable, +14:u10:reasonably, +14:u01:reasonably, +14:u01:computable, +14:u00:reasonably, +14:u00:computable, +11:u08:limited, +11:u07:limited, +11:u06:limited, +11:u14:limited, +11:u05:limited, +11:u13:limited, +11:u04:limited, +11:u12:limited, +11:u03:limited, +11:u11:limited, +11:u02:limited, +11:u10:limited, +11:u01:limited, +11:u00:limited, +8:u08:fail, +10:u14:rather, +8:u07:fail, +10:u13:rather, +8:u06:fail, +16:u08:modification, +9:u08:don't, +10:u12:rather, +8:u14:fail, +8:u23:rath, +8:u05:fail, +9:u07:don't, +10:u11:rather, +8:u13:fail, +13:u14:operating, +8:u04:fail, +16:u07:modification, +9:u06:don't, +10:u10:rather, +8:u12:fail, +13:u13:operating, +8:u03:fail, +16:u06:modification, +9:u05:don't, +8:u11:fail, +13:u12:operating, +16:u14:modification, +9:uI2:'"".,, +8:u02:fail, +16:u05:modification, +9:u04:don't, +8:u08:104], +8:u10:fail, +13:u11:operating, +16:u13:modification, +9:uI1:'"".,, +8:u01:fail, +16:u04:modification, +9:u03:don't, +8:u07:104], +13:u10:operating, +16:u12:modification, +9:uI0:'"".,, +8:u00:fail, +16:u03:modification, +9:u02:don't, +8:u06:104], +16:u11:modification, +16:u02:modification, +9:u01:don't, +8:u05:104], +16:u10:modification, +16:u01:modification, +12:u08:clients,, +9:u00:don't, +8:u04:104], +16:u00:modification, +8:u03:104], +12:u07:clients,, +8:u02:104], +13:u08:fabricate, +12:u06:clients,, +8:u01:104], +13:u07:fabricate, +12:u14:clients,, +12:u05:clients,, +8:u00:104], +13:u06:fabricate, +12:u13:clients,, +12:u04:clients,, +13:u05:fabricate, +12:u12:clients,, +14:u14:attribute., +12:u03:clients,, +13:u04:fabricate, +12:u11:clients,, +14:u13:attribute., +12:u02:clients,, +13:u03:fabricate, +12:u10:clients,, +14:u12:attribute., +12:u01:clients,, +12:u08:accessed, +13:u02:fabricate, +14:u11:attribute., +12:u00:clients,, +13:u01:fabricate, +14:u10:attribute., +12:u07:accessed, +13:u00:fabricate, +12:u06:accessed, +11:u08:perusal, +12:u14:accessed, +12:u05:accessed, +11:u07:perusal, +12:u13:accessed, +12:u04:accessed, +11:u06:perusal, +12:u12:accessed, +12:u03:accessed, +11:u05:perusal, +12:u11:accessed, +12:u02:accessed, +13:u08:creation., +11:u04:perusal, +12:u10:accessed, +11:u14:readdir, +12:u01:accessed, +11:u03:perusal, +11:u13:readdir, +12:u00:accessed, +13:u07:creation., +10:u08:normal, +11:u02:perusal, +11:u12:readdir, +7:u22:REA, +8:u23:READ, +13:u06:creation., +11:u01:perusal, +11:u11:readdir, +13:u14:creation., +13:u05:creation., +10:u07:normal, +11:u00:perusal, +11:u10:readdir, +13:u13:creation., +13:u04:creation., +10:u06:normal, +15:u08:(non-named), +13:u12:creation., +10:u14:normal, +13:u03:creation., +10:u05:normal, +13:u11:creation., +10:u13:normal, +13:u02:creation., +10:u04:normal, +15:u07:(non-named), +13:u10:creation., +10:u12:normal, +13:u01:creation., +10:u03:normal, +15:u06:(non-named), +10:u11:normal, +15:u14:(non-named), +13:u00:creation., +10:u02:normal, +15:u05:(non-named), +10:u10:normal, +15:u13:(non-named), +10:u01:normal, +15:u04:(non-named), +15:u12:(non-named), +6:u21:(n, +7:u22:(no, +8:u23:(non, +10:u00:normal, +15:u03:(non-named), +15:u11:(non-named), +15:u02:(non-named), +15:u10:(non-named), +15:u01:(non-named), +15:u00:(non-named), +15:u08:attributes,, +15:u07:attributes,, +8:u08:copy, +15:u06:attributes,, +8:u07:copy, +12:u08:location, +15:u14:attributes,, +15:u05:attributes,, +9:u08:well., +8:u06:copy, +12:u07:location, +15:u13:attributes,, +15:u04:attributes,, +8:u05:copy, +12:u06:location, +15:u12:attributes,, +15:u03:attributes,, +9:u07:well., +14:u08:restricted, +8:u04:copy, +12:u05:location, +15:u11:attributes,, +15:u02:attributes,, +9:u06:well., +8:u03:copy, +12:u04:location, +15:u10:attributes,, +9:u14:well., +15:u01:attributes,, +9:u05:well., +14:u07:restricted, +8:u02:copy, +12:u03:location, +9:u13:well., +15:u00:attributes,, +9:u04:well., +14:u06:restricted, +8:u01:copy, +12:u02:location, +9:u12:well., +14:u14:restricted, +9:u03:well., +14:u05:restricted, +8:u00:copy, +12:u01:location, +8:u08:105], +9:u11:well., +14:u13:restricted, +9:u02:well., +14:u04:restricted, +12:u00:location, +8:u07:105], +9:u10:well., +14:u12:restricted, +9:u01:well., +14:u03:restricted, +8:u06:105], +14:u11:restricted, +9:u00:well., +14:u02:restricted, +8:u05:105], +14:u10:restricted, +14:u01:restricted, +9:u08:fully, +8:u04:105], +21:u08:non-interoperable, +14:u00:restricted, +8:u03:105], +21:u07:non-interoperable, +9:u07:fully, +8:u02:105], +21:u06:non-interoperable, +10:u08:others, +9:u06:fully, +8:u01:105], +21:u05:non-interoperable, +10:u07:others, +9:u14:fully, +9:u05:fully, +8:u00:105], +21:u04:non-interoperable, +10:u06:others, +9:u13:fully, +9:u04:fully, +21:u03:non-interoperable, +10:u05:others, +10:u08:CREATE, +9:u12:fully, +9:u03:fully, +21:u02:non-interoperable, +10:u04:others, +10:u07:CREATE, +9:u11:fully, +9:u02:fully, +21:u01:non-interoperable, +10:u03:others, +10:u06:CREATE, +9:u10:fully, +9:u01:fully, +21:u00:non-interoperable, +10:u02:others, +10:u05:CREATE, +9:u00:fully, +10:u01:others, +10:u04:CREATE, +14:u08:attribute,, +10:u00:others, +10:u03:CREATE, +10:u02:CREATE, +14:u07:attribute,, +10:u01:CREATE, +9:u08:Doing, +14:u06:attribute,, +10:u00:CREATE, +9:u07:Doing, +14:u14:attribute,, +14:u05:attribute,, +9:u06:Doing, +14:u13:attribute,, +14:u04:attribute,, +9:u05:Doing, +12:u08:Creating, +14:u12:attribute,, +14:u03:attribute,, +9:u04:Doing, +12:u07:Creating, +14:u11:attribute,, +11:uI2:(..,--), +14:u02:attribute,, +9:u08:Names, +9:u03:Doing, +12:u06:Creating, +14:u10:attribute,, +11:uI1:(..,--), +14:u01:attribute,, +9:u02:Doing, +12:u05:Creating, +11:uI0:(..,--), +14:u00:attribute,, +9:u07:Names, +9:u01:Doing, +12:u04:Creating, +9:u06:Names, +9:u00:Doing, +12:u03:Creating, +9:u05:Names, +12:u02:Creating, +9:u04:Names, +12:u01:Creating, +9:u03:Names, +12:u00:Creating, +9:u02:Names, +10:u08:owner;, +9:u01:Names, +9:u00:Names, +10:u07:owner;, +9:uI2::(..,, +10:u06:owner;, +10:u14:owner;, +9:uI1::(..,, +10:u05:owner;, +10:u13:owner;, +9:uI0::(..,, +8:uI2:;.),, +10:u04:owner;, +10:u12:owner;, +8:uI1:;.),, +10:u03:owner;, +11:u08:system,, +10:u11:owner;, +8:uI0:;.),, +10:u02:owner;, +19:u08:time_access_set, +11:u07:system,, +13:u08:5.8.2.16), +10:u10:owner;, +10:u01:owner;, +11:u06:system,, +13:u07:5.8.2.16), +10:u00:owner;, +19:u07:time_access_set, +11:u05:system,, +13:u06:5.8.2.16), +19:u06:time_access_set, +11:u04:system,, +13:u05:5.8.2.16), +16:u08:time_modify,, +19:u14:time_access_set, +19:u05:time_access_set, +14:u08:lease_time, +11:u03:system,, +13:u04:5.8.2.16), +16:u07:time_modify,, +19:u13:time_access_set, +19:u04:time_access_set, +11:u02:system,, +13:u03:5.8.2.16), +16:u06:time_modify,, +19:u12:time_access_set, +19:u03:time_access_set, +14:u07:lease_time, +11:u01:system,, +13:u02:5.8.2.16), +16:u05:time_modify,, +19:u11:time_access_set, +19:u02:time_access_set, +14:u06:lease_time, +11:u00:system,, +13:u01:5.8.2.16), +16:u04:time_modify,, +19:u10:time_access_set, +14:u14:lease_time, +19:u01:time_access_set, +14:u05:lease_time, +13:u00:5.8.2.16), +16:u03:time_modify,, +14:u13:lease_time, +19:u00:time_access_set, +14:u04:lease_time, +16:u02:time_modify,, +8:u08:106], +14:u12:lease_time, +14:u03:lease_time, +16:u01:time_modify,, +8:u07:106], +14:u11:lease_time, +14:u02:lease_time, +16:u00:time_modify,, +8:u06:106], +14:u10:lease_time, +14:u01:lease_time, +20:u08:supported_attrs,, +8:u05:106], +14:u00:lease_time, +17:u08:link_support,, +8:u04:106], +23:u08:suppattr_exclcreat,, +20:u07:supported_attrs,, +15:u08:cansettime,, +8:u03:106], +23:u07:suppattr_exclcreat,, +20:u08:symlink_support,, +20:u06:supported_attrs,, +17:u07:link_support,, +21:u08:chown_restricted,, +8:u02:106], +23:u06:suppattr_exclcreat,, +20:u07:symlink_support,, +21:u08:case_insensitive,, +20:u14:supported_attrs,, +20:u05:supported_attrs,, +17:u06:link_support,, +15:u07:cansettime,, +17:u08:fs_locations,, +8:u01:106], +23:u05:suppattr_exclcreat,, +20:u06:symlink_support,, +21:u07:case_insensitive,, +16:u08:files_avail,, +20:u13:supported_attrs,, +17:u14:link_support,, +20:u04:supported_attrs,, +17:u05:link_support,, +15:u06:cansettime,, +21:u07:chown_restricted,, +13:u08:maxwrite,, +8:u00:106], +23:u04:suppattr_exclcreat,, +20:u05:symlink_support,, +21:u06:case_insensitive,, +16:u07:files_avail,, +16:u08:homogeneous,, +20:u12:supported_attrs,, +17:u13:link_support,, +15:u14:cansettime,, +20:u03:supported_attrs,, +17:u04:link_support,, +15:u05:cansettime,, +21:u06:chown_restricted,, +17:u07:fs_locations,, +15:u08:time_delta,, +23:u03:suppattr_exclcreat,, +20:u04:symlink_support,, +21:u05:case_insensitive,, +16:u06:files_avail,, +16:u07:homogeneous,, +13:u08:no_trunc,, +20:u11:supported_attrs,, +17:u12:link_support,, +15:u13:cansettime,, +21:u14:chown_restricted,, +20:u02:supported_attrs,, +17:u03:link_support,, +15:u04:cansettime,, +21:u05:chown_restricted,, +17:u06:fs_locations,, +13:u07:maxwrite,, +22:u08:fs_locations_info,, +23:u02:suppattr_exclcreat,, +20:u03:symlink_support,, +21:u04:case_insensitive,, +16:u05:files_avail,, +16:u06:homogeneous,, +13:u07:no_trunc,, +18:u08:change_policy,, +20:u10:supported_attrs,, +17:u11:link_support,, +15:u12:cansettime,, +21:u13:chown_restricted,, +17:u14:fs_locations,, +8:u23:cans, +20:u01:supported_attrs,, +17:u02:link_support,, +15:u03:cansettime,, +21:u04:chown_restricted,, +17:u05:fs_locations,, +13:u06:maxwrite,, +15:u07:time_delta,, +23:u01:suppattr_exclcreat,, +20:u02:symlink_support,, +21:u03:case_insensitive,, +16:u04:files_avail,, +16:u05:homogeneous,, +13:u06:no_trunc,, +18:u07:change_policy,, +18:u08:fs_charset_cap, +17:u10:link_support,, +15:u11:cansettime,, +21:u12:chown_restricted,, +17:u13:fs_locations,, +13:u14:maxwrite,, +8:u23:chow, +20:u00:supported_attrs,, +17:u01:link_support,, +15:u02:cansettime,, +21:u03:chown_restricted,, +17:u04:fs_locations,, +13:u05:maxwrite,, +15:u06:time_delta,, +22:u07:fs_locations_info,, +23:u00:suppattr_exclcreat,, +20:u01:symlink_support,, +21:u02:case_insensitive,, +16:u03:files_avail,, +16:u04:homogeneous,, +13:u05:no_trunc,, +18:u06:change_policy,, +18:u07:fs_charset_cap, +15:u10:cansettime,, +21:u11:chown_restricted,, +17:u12:fs_locations,, +13:u13:maxwrite,, +15:u14:time_delta,, +17:u00:link_support,, +15:u01:cansettime,, +21:u02:chown_restricted,, +17:u03:fs_locations,, +13:u04:maxwrite,, +15:u05:time_delta,, +22:u06:fs_locations_info,, +20:u00:symlink_support,, +21:u01:case_insensitive,, +16:u02:files_avail,, +16:u03:homogeneous,, +13:u04:no_trunc,, +18:u05:change_policy,, +18:u06:fs_charset_cap, +11:u08:change,, +21:u10:chown_restricted,, +17:u11:fs_locations,, +13:u12:maxwrite,, +15:u13:time_delta,, +22:u14:fs_locations_info,, +7:u22:max, +8:u23:maxw, +15:u00:cansettime,, +21:u01:chown_restricted,, +17:u02:fs_locations,, +13:u03:maxwrite,, +15:u04:time_delta,, +22:u05:fs_locations_info,, +13:u08:numlinks,, +21:u00:case_insensitive,, +16:u01:files_avail,, +16:u02:homogeneous,, +13:u03:no_trunc,, +18:u04:change_policy,, +18:u05:fs_charset_cap, +11:u07:change,, +12:u08:archive,, +17:u10:fs_locations,, +13:u11:maxwrite,, +15:u12:time_delta,, +22:u13:fs_locations_info,, +21:u00:chown_restricted,, +17:u01:fs_locations,, +13:u02:maxwrite,, +15:u03:time_delta,, +22:u04:fs_locations_info,, +16:u08:time_access,, +16:u00:files_avail,, +16:u01:homogeneous,, +13:u02:no_trunc,, +18:u03:change_policy,, +18:u04:fs_charset_cap, +11:u06:change,, +12:u07:archive,, +10:u08:owner,, +13:u10:maxwrite,, +15:u11:time_delta,, +22:u12:fs_locations_info,, +9:u14:type,, +17:u00:fs_locations,, +13:u01:maxwrite,, +15:u02:time_delta,, +22:u03:fs_locations_info,, +13:u07:numlinks,, +16:u00:homogeneous,, +13:u01:no_trunc,, +18:u02:change_policy,, +18:u03:fs_charset_cap, +11:u05:change,, +12:u06:archive,, +10:u07:owner,, +16:u08:time_backup,, +15:u10:time_delta,, +22:u11:fs_locations_info,, +9:u13:type,, +8:u14:acl,, +11:uI2:,,,,,,,, +13:u00:maxwrite,, +15:u01:time_delta,, +22:u02:fs_locations_info,, +13:u06:numlinks,, +16:u07:time_access,, +23:u08:dirent_notif_delay,, +13:u00:no_trunc,, +18:u01:change_policy,, +18:u02:fs_charset_cap, +11:u04:change,, +12:u05:archive,, +10:u06:owner,, +16:u07:time_backup,, +22:u08:mounted_on_fileid,, +22:u10:fs_locations_info,, +9:u12:type,, +8:u13:acl,, +13:u14:numlinks,, +11:uI1:,,,,,,,, +15:u00:time_delta,, +22:u01:fs_locations_info,, +13:u05:numlinks,, +16:u06:time_access,, +19:u08:layout_blksize,, +18:u00:change_policy,, +18:u01:fs_charset_cap, +11:u03:change,, +12:u04:archive,, +10:u05:owner,, +16:u06:time_backup,, +22:u07:mounted_on_fileid,, +9:u08:dacl,, +9:u11:type,, +8:u12:acl,, +13:u13:numlinks,, +16:u14:time_access,, +8:u23:acl,, +11:uI0:,,,,,,,, +22:u00:fs_locations_info,, +13:u04:numlinks,, +16:u05:time_access,, +23:u07:dirent_notif_delay,, +18:u08:retention_set,, +18:u00:fs_charset_cap, +11:u02:change,, +12:u03:archive,, +10:u04:owner,, +16:u05:time_backup,, +22:u06:mounted_on_fileid,, +9:u07:dacl,, +21:u08:layout_alignment,, +9:u10:type,, +8:u11:acl,, +13:u12:numlinks,, +16:u13:time_access,, +16:u14:time_modify,, +8:u23:numl, +13:u03:numlinks,, +16:u04:time_access,, +23:u06:dirent_notif_delay,, +19:u07:layout_blksize,, +19:u08:mode_set_masked, +11:u01:change,, +12:u02:archive,, +10:u03:owner,, +16:u04:time_backup,, +22:u05:mounted_on_fileid,, +9:u06:dacl,, +21:u07:layout_alignment,, +18:u08:retentevt_get,, +8:u10:acl,, +13:u11:numlinks,, +16:u12:time_access,, +16:u13:time_modify,, +23:u14:dirent_notif_delay,, +13:u02:numlinks,, +16:u03:time_access,, +23:u05:dirent_notif_delay,, +19:u06:layout_blksize,, +18:u07:retention_set,, +11:u00:change,, +12:u01:archive,, +10:u02:owner,, +16:u03:time_backup,, +22:u04:mounted_on_fileid,, +9:u05:dacl,, +21:u06:layout_alignment,, +18:u07:retentevt_get,, +13:u10:numlinks,, +16:u11:time_access,, +16:u12:time_modify,, +23:u13:dirent_notif_delay,, +19:u14:layout_blksize,, +13:u01:numlinks,, +16:u02:time_access,, +23:u04:dirent_notif_delay,, +19:u05:layout_blksize,, +18:u06:retention_set,, +19:u07:mode_set_masked, +15:u08:definitions, +12:u00:archive,, +10:u01:owner,, +16:u02:time_backup,, +22:u03:mounted_on_fileid,, +9:u04:dacl,, +21:u05:layout_alignment,, +18:u06:retentevt_get,, +21:u08:quota_avail_hard,, +16:u10:time_access,, +16:u11:time_modify,, +23:u12:dirent_notif_delay,, +19:u13:layout_blksize,, +18:u14:retention_set,, +13:u00:numlinks,, +16:u01:time_access,, +23:u03:dirent_notif_delay,, +19:u04:layout_blksize,, +18:u05:retention_set,, +19:u06:mode_set_masked, +10:u00:owner,, +16:u01:time_backup,, +22:u02:mounted_on_fileid,, +9:u03:dacl,, +21:u04:layout_alignment,, +18:u05:retentevt_get,, +21:u07:quota_avail_hard,, +16:u10:time_modify,, +23:u11:dirent_notif_delay,, +19:u12:layout_blksize,, +18:u13:retention_set,, +19:u14:mode_set_masked, +16:u00:time_access,, +23:u02:dirent_notif_delay,, +19:u03:layout_blksize,, +18:u04:retention_set,, +19:u05:mode_set_masked, +15:u07:definitions, +16:u00:time_backup,, +22:u01:mounted_on_fileid,, +9:u02:dacl,, +21:u03:layout_alignment,, +18:u04:retentevt_get,, +21:u06:quota_avail_hard,, +23:u10:dirent_notif_delay,, +19:u11:layout_blksize,, +18:u12:retention_set,, +19:u13:mode_set_masked, +8:u23:rete, +23:u01:dirent_notif_delay,, +19:u02:layout_blksize,, +18:u03:retention_set,, +19:u04:mode_set_masked, +15:u06:definitions, +22:u00:mounted_on_fileid,, +9:u01:dacl,, +21:u02:layout_alignment,, +18:u03:retentevt_get,, +21:u05:quota_avail_hard,, +19:u10:layout_blksize,, +18:u11:retention_set,, +19:u12:mode_set_masked, +23:u00:dirent_notif_delay,, +19:u01:layout_blksize,, +18:u02:retention_set,, +19:u03:mode_set_masked, +15:u05:definitions, +9:u00:dacl,, +21:u01:layout_alignment,, +18:u02:retentevt_get,, +21:u04:quota_avail_hard,, +18:u10:retention_set,, +19:u11:mode_set_masked, +19:u00:layout_blksize,, +18:u01:retention_set,, +19:u02:mode_set_masked, +15:u04:definitions, +13:u08:retrieved, +21:u00:layout_alignment,, +18:u01:retentevt_get,, +21:u03:quota_avail_hard,, +19:u10:mode_set_masked, +18:u00:retention_set,, +19:u01:mode_set_masked, +15:u03:definitions, +18:u00:retentevt_get,, +21:u02:quota_avail_hard,, +9:uI2:-;..,, +19:u00:mode_set_masked, +15:u02:definitions, +13:u07:retrieved, +21:u01:quota_avail_hard,, +9:uI1:-;..,, +15:u01:definitions, +13:u06:retrieved, +21:u00:quota_avail_hard,, +13:u14:retrieved, +9:uI0:-;..,, +15:u00:definitions, +13:u05:retrieved, +13:u13:retrieved, +13:u04:retrieved, +13:u12:retrieved, +13:u03:retrieved, +11:u08:columns, +13:u11:retrieved, +13:u02:retrieved, +11:u07:columns, +13:u10:retrieved, +13:u01:retrieved, +13:u08:conflicts, +11:u06:columns, +7:u08:Id:, +13:u00:retrieved, +11:u05:columns, +7:u07:Id:, +13:u07:conflicts, +11:u04:columns, +7:u06:Id:, +18:u08:authoritative,, +13:u06:conflicts, +11:u03:columns, +7:u05:Id:, +18:u07:authoritative,, +13:u14:conflicts, +13:u05:conflicts, +11:u02:columns, +7:u04:Id:, +18:u06:authoritative,, +13:u13:conflicts, +13:u04:conflicts, +11:u01:columns, +7:u03:Id:, +18:u05:authoritative,, +13:u12:conflicts, +13:u03:conflicts, +11:u00:columns, +7:u02:Id:, +18:u04:authoritative,, +13:u11:conflicts, +11:uI2:/[].[]., +13:u02:conflicts, +7:u01:Id:, +18:u03:authoritative,, +8:u08:107], +13:u10:conflicts, +11:uI1:/[].[]., +13:u01:conflicts, +7:u00:Id:, +18:u02:authoritative,, +8:u07:107], +11:uI0:/[].[]., +13:u00:conflicts, +18:u01:authoritative,, +8:u06:107], +18:u00:authoritative,, +8:u05:107], +8:u04:107], +8:u08:Acc:, +8:u03:107], +8:u07:Acc:, +13:u08:retrieve,, +8:u02:107], +8:u06:Acc:, +13:u07:retrieve,, +8:u01:107], +8:u05:Acc:, +13:u06:retrieve,, +8:uI2::.-(, +8:u00:107], +8:u04:Acc:, +13:u05:retrieve,, +8:uI1::.-(, +9:uI2:,).-(, +70:u08:+--------------------+----+------------+-----+-------------------+, +8:u03:Acc:, +13:u04:retrieve,, +8:uI0::.-(, +9:uI1:,).-(, +9:uI2:,)./(, +8:u02:Acc:, +13:u03:retrieve,, +9:uI0:,).-(, +9:uI1:,)./(, +70:u07:+--------------------+----+------------+-----+-------------------+, +8:u01:Acc:, +13:u02:retrieve,, +9:uI0:,)./(, +70:u06:+--------------------+----+------------+-----+-------------------+, +8:u00:Acc:, +13:u01:retrieve,, +6:u08:Id, +70:u14:+--------------------+----+------------+-----+-------------------+, +70:u05:+--------------------+----+------------+-----+-------------------+, +13:u00:retrieve,, +6:u07:Id, +70:u13:+--------------------+----+------------+-----+-------------------+, +70:u04:+--------------------+----+------------+-----+-------------------+, +6:u06:Id, +70:u12:+--------------------+----+------------+-----+-------------------+, +70:u03:+--------------------+----+------------+-----+-------------------+, +6:u05:Id, +19:u08:supported_attrs, +70:u11:+--------------------+----+------------+-----+-------------------+, +70:u02:+--------------------+----+------------+-----+-------------------+, +6:u04:Id, +19:u07:supported_attrs, +70:u10:+--------------------+----+------------+-----+-------------------+, +70:u01:+--------------------+----+------------+-----+-------------------+, +6:u03:Id, +19:u06:supported_attrs, +5:u08:R, +70:u00:+--------------------+----+------------+-----+-------------------+, +6:u02:Id, +19:u05:supported_attrs, +5:u07:R, +6:u01:Id, +19:u04:supported_attrs, +5:u06:R, +6:u00:Id, +19:u03:supported_attrs, +5:u05:R, +19:u02:supported_attrs, +5:u04:R, +19:u01:supported_attrs, +5:u03:R, +19:u00:supported_attrs, +5:u02:R, +5:u01:R, +18:u08:fh_expire_type, +5:u00:R, +18:u07:fh_expire_type, +18:u06:fh_expire_type, +18:u05:fh_expire_type, +18:u04:fh_expire_type, +18:u03:fh_expire_type, +18:u02:fh_expire_type, +18:u01:fh_expire_type, +18:u00:fh_expire_type, +16:u08:link_support, +16:u07:link_support, +16:u06:link_support, +16:u05:link_support, +16:u04:link_support, +16:u03:link_support, +19:u08:symlink_support, +16:u02:link_support, +19:u07:symlink_support, +16:u01:link_support, +19:u06:symlink_support, +16:u00:link_support, +19:u05:symlink_support, +19:u04:symlink_support, +19:u03:symlink_support, +14:u08:named_attr, +19:u02:symlink_support, +14:u07:named_attr, +19:u01:symlink_support, +14:u06:named_attr, +19:u00:symlink_support, +14:u05:named_attr, +14:u04:named_attr, +14:u03:named_attr, +8:u08:fsid, +14:u02:named_attr, +8:u07:fsid, +14:u01:named_attr, +8:u06:fsid, +14:u00:named_attr, +8:u05:fsid, +8:u04:fsid, +8:u03:fsid, +18:u08:unique_handles, +8:u02:fsid, +18:u07:unique_handles, +8:u01:fsid, +18:u06:unique_handles, +8:u00:fsid, +18:u05:unique_handles, +18:u04:unique_handles, +18:u03:unique_handles, +18:u02:unique_handles, +18:u01:unique_handles, +16:u08:rdattr_error, +18:u00:unique_handles, +16:u07:rdattr_error, +16:u06:rdattr_error, +16:u05:rdattr_error, +16:u04:rdattr_error, +16:u03:rdattr_error, +6:u08:19, +16:u02:rdattr_error, +6:u07:19, +16:u01:rdattr_error, +6:u06:19, +16:u00:rdattr_error, +6:u05:19, +22:u08:suppattr_exclcreat, +6:u04:19, +22:u07:suppattr_exclcreat, +6:u03:19, +22:u06:suppattr_exclcreat, +6:u02:19, +22:u05:suppattr_exclcreat, +6:u01:19, +22:u04:suppattr_exclcreat, +6:u00:19, +22:u03:suppattr_exclcreat, +22:u02:suppattr_exclcreat, +13:u08:meanings., +22:u01:suppattr_exclcreat, +73:u08:+--------------------+----+----------------+-----+------------------+, +22:u00:suppattr_exclcreat, +13:u07:meanings., +13:u06:meanings., +73:u07:+--------------------+----+----------------+-----+------------------+, +13:u14:meanings., +13:u05:meanings., +73:u06:+--------------------+----+----------------+-----+------------------+, +13:u13:meanings., +73:u14:+--------------------+----+----------------+-----+------------------+, +13:u04:meanings., +73:u05:+--------------------+----+----------------+-----+------------------+, +7:u08:Acc, +13:u12:meanings., +73:u13:+--------------------+----+----------------+-----+------------------+, +13:u03:meanings., +73:u04:+--------------------+----+----------------+-----+------------------+, +7:u07:Acc, +13:u11:meanings., +73:u12:+--------------------+----+----------------+-----+------------------+, +13:u02:meanings., +73:u03:+--------------------+----+----------------+-----+------------------+, +7:u06:Acc, +13:u10:meanings., +73:u11:+--------------------+----+----------------+-----+------------------+, +13:u01:meanings., +73:u02:+--------------------+----+----------------+-----+------------------+, +7:u05:Acc, +73:u10:+--------------------+----+----------------+-----+------------------+, +13:u00:meanings., +73:u01:+--------------------+----+----------------+-----+------------------+, +7:u04:Acc, +73:u00:+--------------------+----+----------------+-----+------------------+, +7:u03:Acc, +7:u02:Acc, +7:u01:Acc, +14:u08:aclsupport, +7:u00:Acc, +14:u07:aclsupport, +6:u08:13, +14:u06:aclsupport, +6:u07:13, +14:u05:aclsupport, +6:u06:13, +14:u04:aclsupport, +6:u05:13, +11:u08:archive, +14:u03:aclsupport, +6:u04:13, +11:u07:archive, +14:u02:aclsupport, +6:u03:13, +11:u06:archive, +14:u01:aclsupport, +6:u02:13, +11:u05:archive, +14:u08:cansettime, +14:u00:aclsupport, +6:u01:13, +11:u04:archive, +14:u07:cansettime, +6:u00:13, +11:u03:archive, +14:u06:cansettime, +11:u02:archive, +14:u05:cansettime, +11:u01:archive, +14:u04:cansettime, +20:u08:case_insensitive, +11:u00:archive, +14:u03:cansettime, +20:u07:case_insensitive, +6:u08:16, +14:u02:cansettime, +20:u06:case_insensitive, +6:u07:16, +14:u01:cansettime, +20:u05:case_insensitive, +6:u06:16, +14:u00:cansettime, +20:u04:case_insensitive, +6:u05:16, +19:u08:case_preserving, +20:u03:case_insensitive, +6:u04:16, +19:u07:case_preserving, +6:u08:17, +20:u02:case_insensitive, +6:u03:16, +19:u06:case_preserving, +6:u07:17, +20:u01:case_insensitive, +6:u02:16, +19:u05:case_preserving, +6:u06:17, +20:u00:case_insensitive, +6:u01:16, +19:u04:case_preserving, +6:u05:17, +17:u08:change_policy, +6:u00:16, +19:u03:case_preserving, +6:u04:17, +17:u07:change_policy, +6:u08:60, +19:u02:case_preserving, +6:u03:17, +17:u06:change_policy, +6:u07:60, +19:u01:case_preserving, +6:u02:17, +17:u05:change_policy, +6:u06:60, +19:u00:case_preserving, +6:u01:17, +17:u04:change_policy, +6:u05:60, +20:u08:chown_restricted, +6:u00:17, +17:u03:change_policy, +6:u04:60, +20:u07:chown_restricted, +6:u08:18, +17:u02:change_policy, +6:u03:60, +20:u06:chown_restricted, +6:u07:18, +17:u01:change_policy, +6:u02:60, +20:u05:chown_restricted, +6:u06:18, +17:u00:change_policy, +6:u01:60, +20:u04:chown_restricted, +6:u05:18, +8:u08:dacl, +6:u00:60, +20:u03:chown_restricted, +6:u04:18, +8:u07:dacl, +6:u08:58, +20:u02:chown_restricted, +6:u03:18, +8:u06:dacl, +6:u07:58, +20:u01:chown_restricted, +6:u02:18, +8:u05:dacl, +6:u06:58, +20:u00:chown_restricted, +6:u01:18, +8:u04:dacl, +6:u05:58, +19:u08:dir_notif_delay, +6:u00:18, +8:u03:dacl, +6:u04:58, +19:u07:dir_notif_delay, +6:u08:56, +8:u02:dacl, +6:u03:58, +19:u06:dir_notif_delay, +6:u07:56, +8:u01:dacl, +6:u02:58, +19:u05:dir_notif_delay, +6:u06:56, +8:u00:dacl, +6:u01:58, +19:u04:dir_notif_delay, +6:u05:56, +6:u00:58, +19:u03:dir_notif_delay, +6:u04:56, +19:u02:dir_notif_delay, +6:u03:56, +19:u01:dir_notif_delay, +6:u02:56, +8:u08:108], +19:u00:dir_notif_delay, +6:u01:56, +8:u07:108], +6:u00:56, +8:u06:108], +8:u05:108], +8:u04:108], +22:u08:dirent_notif_delay, +8:u03:108], +22:u07:dirent_notif_delay, +8:u02:108], +22:u06:dirent_notif_delay, +8:u01:108], +22:u05:dirent_notif_delay, +8:u00:108], +22:u04:dirent_notif_delay, +10:u08:fileid, +22:u03:dirent_notif_delay, +10:u07:fileid, +6:u08:20, +22:u02:dirent_notif_delay, +10:u06:fileid, +6:u07:20, +22:u01:dirent_notif_delay, +10:u05:fileid, +6:u06:20, +22:u00:dirent_notif_delay, +10:u04:fileid, +6:u05:20, +15:u08:files_avail, +10:u03:fileid, +6:u04:20, +15:u07:files_avail, +6:u08:21, +10:u02:fileid, +6:u03:20, +15:u06:files_avail, +6:u07:21, +10:u01:fileid, +6:u02:20, +15:u05:files_avail, +6:u06:21, +10:u00:fileid, +6:u01:20, +15:u04:files_avail, +6:u05:21, +14:u08:files_free, +6:u00:20, +15:u03:files_avail, +6:u04:21, +14:u07:files_free, +6:u08:22, +15:u02:files_avail, +6:u03:21, +14:u06:files_free, +6:u07:22, +15:u01:files_avail, +6:u02:21, +14:u05:files_free, +6:u06:22, +15:u00:files_avail, +6:u01:21, +14:u04:files_free, +6:u05:22, +15:u08:files_total, +6:u00:21, +14:u03:files_free, +6:u04:22, +15:u07:files_total, +6:u08:23, +14:u02:files_free, +6:u03:22, +15:u06:files_total, +6:u07:23, +14:u01:files_free, +6:u02:22, +15:u05:files_total, +6:u06:23, +14:u00:files_free, +6:u01:22, +15:u04:files_total, +6:u05:23, +6:u00:22, +15:u03:files_total, +6:u04:23, +6:u08:76, +15:u02:files_total, +6:u03:23, +6:u07:76, +15:u01:files_total, +6:u02:23, +6:u06:76, +15:u00:files_total, +6:u01:23, +6:u05:76, +6:u00:23, +6:u04:76, +6:u08:62, +6:u03:76, +6:u07:62, +6:u02:76, +6:u06:62, +6:u01:76, +6:u05:62, +6:u00:76, +6:u04:62, +6:u08:24, +6:u03:62, +6:u07:24, +6:u02:62, +6:u06:24, +6:u01:62, +6:u05:24, +21:u08:fs_locations_info, +6:u00:62, +6:u04:24, +21:u07:fs_locations_info, +6:u03:24, +21:u06:fs_locations_info, +6:u02:24, +21:u05:fs_locations_info, +13:u08:fs_status, +6:u01:24, +21:u04:fs_locations_info, +13:u07:fs_status, +6:u08:61, +6:u00:24, +21:u03:fs_locations_info, +13:u06:fs_status, +6:u07:61, +21:u02:fs_locations_info, +13:u05:fs_status, +6:u06:61, +21:u01:fs_locations_info, +13:u04:fs_status, +6:u05:61, +10:u08:hidden, +21:u00:fs_locations_info, +13:u03:fs_status, +6:u04:61, +10:u07:hidden, +6:u08:25, +13:u02:fs_status, +6:u03:61, +10:u06:hidden, +6:u07:25, +13:u01:fs_status, +6:u02:61, +10:u05:hidden, +6:u06:25, +15:u08:homogeneous, +13:u00:fs_status, +6:u01:61, +10:u04:hidden, +6:u05:25, +15:u07:homogeneous, +6:u08:26, +6:u00:61, +10:u03:hidden, +6:u04:25, +15:u06:homogeneous, +6:u07:26, +10:u02:hidden, +6:u03:25, +15:u05:homogeneous, +6:u06:26, +10:u01:hidden, +6:u02:25, +15:u04:homogeneous, +6:u05:26, +20:u08:layout_alignment, +10:u00:hidden, +6:u01:25, +15:u03:homogeneous, +6:u04:26, +20:u07:layout_alignment, +6:u08:66, +6:u00:25, +15:u02:homogeneous, +6:u03:26, +20:u06:layout_alignment, +6:u07:66, +15:u01:homogeneous, +6:u02:26, +20:u05:layout_alignment, +6:u06:66, +15:u00:homogeneous, +6:u01:26, +20:u04:layout_alignment, +6:u05:66, +6:u00:26, +20:u03:layout_alignment, +6:u04:66, +18:u08:layout_blksize, +20:u02:layout_alignment, +6:u03:66, +18:u07:layout_blksize, +6:u08:65, +20:u01:layout_alignment, +6:u02:66, +18:u06:layout_blksize, +6:u07:65, +20:u00:layout_alignment, +6:u01:66, +18:u05:layout_blksize, +6:u06:65, +6:u00:66, +18:u04:layout_blksize, +6:u05:65, +18:u03:layout_blksize, +6:u04:65, +15:u08:layout_hint, +18:u02:layout_blksize, +6:u03:65, +15:u07:layout_hint, +6:u08:63, +18:u01:layout_blksize, +6:u02:65, +15:u06:layout_hint, +6:u07:63, +5:u08:W, +18:u00:layout_blksize, +6:u01:65, +15:u05:layout_hint, +6:u06:63, +5:u07:W, +6:u00:65, +15:u04:layout_hint, +6:u05:63, +5:u06:W, +15:u03:layout_hint, +6:u04:63, +5:u05:W, +15:u08:layout_type, +15:u02:layout_hint, +6:u03:63, +5:u04:W, +15:u07:layout_type, +6:u08:64, +15:u01:layout_hint, +6:u02:63, +5:u03:W, +15:u06:layout_type, +6:u07:64, +15:u00:layout_hint, +6:u01:63, +5:u02:W, +15:u05:layout_type, +6:u06:64, +6:u00:63, +5:u01:W, +15:u04:layout_type, +6:u05:64, +15:u08:maxfilesize, +5:u00:W, +15:u03:layout_type, +6:u04:64, +15:u07:maxfilesize, +6:u08:27, +15:u02:layout_type, +6:u03:64, +15:u06:maxfilesize, +6:u07:27, +15:u01:layout_type, +6:u02:64, +15:u05:maxfilesize, +6:u06:27, +15:u00:layout_type, +6:u01:64, +15:u04:maxfilesize, +6:u05:27, +11:u08:maxlink, +6:u00:64, +15:u03:maxfilesize, +6:u04:27, +11:u07:maxlink, +6:u08:28, +15:u02:maxfilesize, +6:u03:27, +11:u06:maxlink, +6:u07:28, +15:u01:maxfilesize, +6:u02:27, +11:u05:maxlink, +6:u06:28, +15:u00:maxfilesize, +6:u01:27, +11:u04:maxlink, +6:u05:28, +11:u08:maxname, +6:u00:27, +11:u03:maxlink, +6:u04:28, +11:u07:maxname, +6:u08:29, +11:u02:maxlink, +6:u03:28, +11:u06:maxname, +6:u07:29, +11:u01:maxlink, +6:u02:28, +11:u05:maxname, +6:u06:29, +11:u00:maxlink, +6:u01:28, +11:u04:maxname, +6:u05:29, +11:u08:maxread, +6:u00:28, +11:u03:maxname, +6:u04:29, +11:u07:maxread, +6:u08:30, +11:u02:maxname, +6:u03:29, +11:u06:maxread, +6:u07:30, +11:u01:maxname, +6:u02:29, +11:u05:maxread, +6:u06:30, +11:u00:maxname, +6:u01:29, +11:u04:maxread, +6:u05:30, +12:u08:maxwrite, +6:u00:29, +11:u03:maxread, +6:u04:30, +12:u07:maxwrite, +11:u02:maxread, +6:u03:30, +12:u06:maxwrite, +11:u01:maxread, +6:u02:30, +12:u05:maxwrite, +11:u00:maxread, +6:u01:30, +12:u04:maxwrite, +16:u08:mdsthreshold, +6:u00:30, +12:u03:maxwrite, +16:u07:mdsthreshold, +6:u08:68, +12:u02:maxwrite, +16:u06:mdsthreshold, +6:u07:68, +12:u01:maxwrite, +16:u05:mdsthreshold, +6:u06:68, +12:u00:maxwrite, +16:u04:mdsthreshold, +6:u05:68, +12:u08:mimetype, +16:u03:mdsthreshold, +6:u04:68, +12:u07:mimetype, +6:u08:32, +16:u02:mdsthreshold, +6:u03:68, +12:u06:mimetype, +6:u07:32, +16:u01:mdsthreshold, +6:u02:68, +12:u05:mimetype, +6:u06:32, +16:u00:mdsthreshold, +6:u01:68, +12:u04:mimetype, +6:u05:32, +6:u08:33, +6:u00:68, +12:u03:mimetype, +6:u04:32, +6:u07:33, +12:u02:mimetype, +6:u03:32, +6:u06:33, +12:u01:mimetype, +6:u02:32, +6:u05:33, +12:u00:mimetype, +6:u01:32, +6:u04:33, +6:u08:74, +6:u00:32, +6:u03:33, +6:u07:74, +6:u02:33, +6:u06:74, +6:u01:33, +6:u05:74, +6:u00:33, +6:u04:74, +21:u08:mounted_on_fileid, +6:u03:74, +21:u07:mounted_on_fileid, +6:u02:74, +21:u06:mounted_on_fileid, +6:u01:74, +21:u05:mounted_on_fileid, +12:u08:no_trunc, +6:u00:74, +21:u04:mounted_on_fileid, +12:u07:no_trunc, +6:u08:34, +21:u03:mounted_on_fileid, +12:u06:no_trunc, +6:u07:34, +21:u02:mounted_on_fileid, +12:u05:no_trunc, +6:u06:34, +21:u01:mounted_on_fileid, +12:u04:no_trunc, +6:u05:34, +12:u08:numlinks, +21:u00:mounted_on_fileid, +12:u03:no_trunc, +6:u04:34, +12:u07:numlinks, +6:u08:35, +12:u02:no_trunc, +6:u03:34, +12:u06:numlinks, +6:u07:35, +12:u01:no_trunc, +6:u02:34, +12:u05:numlinks, +6:u06:35, +12:u00:no_trunc, +6:u01:34, +12:u04:numlinks, +6:u05:35, +6:u00:34, +12:u03:numlinks, +6:u04:35, +6:u08:36, +12:u02:numlinks, +6:u03:35, +6:u07:36, +15:u08:owner_group, +12:u01:numlinks, +6:u02:35, +6:u06:36, +15:u07:owner_group, +6:u08:37, +12:u00:numlinks, +6:u01:35, +6:u05:36, +15:u06:owner_group, +6:u07:37, +20:u08:quota_avail_hard, +6:u00:35, +6:u04:36, +15:u05:owner_group, +6:u06:37, +20:u07:quota_avail_hard, +6:u08:38, +6:u03:36, +15:u04:owner_group, +6:u05:37, +20:u06:quota_avail_hard, +6:u07:38, +6:u02:36, +15:u03:owner_group, +6:u04:37, +20:u05:quota_avail_hard, +6:u06:38, +6:u01:36, +15:u02:owner_group, +6:u03:37, +20:u04:quota_avail_hard, +6:u05:38, +20:u08:quota_avail_soft, +6:u00:36, +15:u01:owner_group, +6:u02:37, +20:u03:quota_avail_hard, +6:u04:38, +20:u07:quota_avail_soft, +6:u08:39, +15:u00:owner_group, +6:u01:37, +20:u02:quota_avail_hard, +6:u03:38, +20:u06:quota_avail_soft, +6:u07:39, +6:u00:37, +20:u01:quota_avail_hard, +6:u02:38, +20:u05:quota_avail_soft, +6:u06:39, +20:u00:quota_avail_hard, +6:u01:38, +20:u04:quota_avail_soft, +6:u05:39, +14:u08:quota_used, +6:u00:38, +20:u03:quota_avail_soft, +6:u04:39, +14:u07:quota_used, +6:u08:40, +20:u02:quota_avail_soft, +6:u03:39, +14:u06:quota_used, +6:u07:40, +20:u01:quota_avail_soft, +6:u02:39, +14:u05:quota_used, +6:u06:40, +20:u00:quota_avail_soft, +6:u01:39, +14:u04:quota_used, +6:u05:40, +10:u08:rawdev, +6:u00:39, +14:u03:quota_used, +6:u04:40, +10:u07:rawdev, +6:u08:41, +14:u02:quota_used, +6:u03:40, +10:u06:rawdev, +6:u07:41, +14:u01:quota_used, +6:u02:40, +10:u05:rawdev, +6:u06:41, +14:u00:quota_used, +6:u01:40, +10:u04:rawdev, +6:u05:41, +17:u08:retentevt_get, +6:u00:40, +10:u03:rawdev, +6:u04:41, +17:u07:retentevt_get, +6:u08:71, +10:u02:rawdev, +6:u03:41, +17:u06:retentevt_get, +6:u07:71, +10:u01:rawdev, +6:u02:41, +17:u05:retentevt_get, +6:u06:71, +10:u00:rawdev, +6:u01:41, +17:u04:retentevt_get, +6:u05:71, +17:u08:retentevt_set, +6:u00:41, +17:u03:retentevt_get, +6:u04:71, +17:u07:retentevt_set, +6:u08:72, +17:u02:retentevt_get, +6:u03:71, +17:u06:retentevt_set, +6:u07:72, +17:u01:retentevt_get, +6:u02:71, +17:u05:retentevt_set, +6:u06:72, +17:u00:retentevt_get, +6:u01:71, +17:u04:retentevt_set, +6:u05:72, +17:u08:retention_get, +6:u00:71, +17:u03:retentevt_set, +6:u04:72, +17:u07:retention_get, +6:u08:69, +17:u02:retentevt_set, +6:u03:72, +17:u06:retention_get, +6:u07:69, +17:u01:retentevt_set, +6:u02:72, +17:u05:retention_get, +6:u06:69, +17:u00:retentevt_set, +6:u01:72, +17:u04:retention_get, +6:u05:69, +18:u08:retention_hold, +6:u00:72, +17:u03:retention_get, +6:u04:69, +18:u07:retention_hold, +6:u08:73, +17:u02:retention_get, +6:u03:69, +18:u06:retention_hold, +6:u07:73, +17:u01:retention_get, +6:u02:69, +18:u05:retention_hold, +6:u06:73, +17:u00:retention_get, +6:u01:69, +18:u04:retention_hold, +6:u05:73, +17:u08:retention_set, +6:u00:69, +18:u03:retention_hold, +6:u04:73, +17:u07:retention_set, +6:u08:70, +18:u02:retention_hold, +6:u03:73, +17:u06:retention_set, +6:u07:70, +18:u01:retention_hold, +6:u02:73, +17:u05:retention_set, +6:u06:70, +18:u00:retention_hold, +6:u01:73, +17:u04:retention_set, +6:u05:70, +6:u00:73, +17:u03:retention_set, +6:u04:70, +6:u08:59, +17:u02:retention_set, +6:u03:70, +6:u07:59, +17:u01:retention_set, +6:u02:70, +6:u06:59, +17:u00:retention_set, +6:u01:70, +6:u05:59, +15:u08:space_avail, +6:u00:70, +6:u04:59, +15:u07:space_avail, +6:u08:42, +6:u03:59, +15:u06:space_avail, +6:u07:42, +6:u02:59, +15:u05:space_avail, +6:u06:42, +6:u01:59, +15:u04:space_avail, +6:u05:42, +14:u08:space_free, +6:u00:59, +15:u03:space_avail, +6:u04:42, +14:u07:space_free, +6:u08:43, +15:u02:space_avail, +6:u03:42, +14:u06:space_free, +6:u07:43, +15:u01:space_avail, +6:u02:42, +14:u05:space_free, +6:u06:43, +15:u00:space_avail, +6:u01:42, +14:u04:space_free, +6:u05:43, +15:u08:space_total, +6:u00:42, +14:u03:space_free, +6:u04:43, +15:u07:space_total, +6:u08:44, +14:u02:space_free, +6:u03:43, +15:u06:space_total, +6:u07:44, +14:u01:space_free, +6:u02:43, +15:u05:space_total, +6:u06:44, +14:u00:space_free, +6:u01:43, +15:u04:space_total, +6:u05:44, +14:u08:space_used, +6:u00:43, +15:u03:space_total, +6:u04:44, +14:u07:space_used, +15:u02:space_total, +6:u03:44, +14:u06:space_used, +15:u01:space_total, +6:u02:44, +14:u05:space_used, +15:u00:space_total, +6:u01:44, +14:u04:space_used, +6:u00:44, +14:u03:space_used, +6:u08:46, +14:u02:space_used, +6:u07:46, +14:u01:space_used, +6:u06:46, +15:u08:time_access, +14:u00:space_used, +6:u05:46, +15:u07:time_access, +6:u08:47, +6:u04:46, +15:u06:time_access, +6:u07:47, +6:u03:46, +15:u05:time_access, +6:u06:47, +6:u02:46, +15:u04:time_access, +6:u05:47, +6:u01:46, +15:u03:time_access, +6:u04:47, +6:u08:48, +6:u00:46, +15:u02:time_access, +6:u03:47, +6:u07:48, +15:u01:time_access, +6:u02:47, +6:u06:48, +15:u00:time_access, +6:u01:47, +6:u05:48, +15:u08:time_backup, +6:u00:47, +6:u04:48, +15:u07:time_backup, +6:u08:49, +6:u03:48, +15:u06:time_backup, +6:u07:49, +6:u02:48, +15:u05:time_backup, +6:u06:49, +6:u01:48, +15:u04:time_backup, +6:u05:49, +6:u00:48, +15:u03:time_backup, +6:u04:49, +8:u08:109], +15:u02:time_backup, +6:u03:49, +8:u07:109], +15:u01:time_backup, +6:u02:49, +8:u06:109], +15:u00:time_backup, +6:u01:49, +8:u05:109], +6:u00:49, +8:u04:109], +15:u08:time_create, +8:u03:109], +15:u07:time_create, +6:u08:50, +8:u02:109], +15:u06:time_create, +6:u07:50, +8:u01:109], +15:u05:time_create, +6:u06:50, +14:u08:time_delta, +8:u00:109], +15:u04:time_create, +6:u05:50, +14:u07:time_delta, +6:u08:51, +15:u03:time_create, +6:u04:50, +14:u06:time_delta, +6:u07:51, +15:u02:time_create, +6:u03:50, +14:u05:time_delta, +6:u06:51, +15:u01:time_create, +6:u02:50, +14:u04:time_delta, +6:u05:51, +17:u08:time_metadata, +15:u00:time_create, +6:u01:50, +14:u03:time_delta, +6:u04:51, +17:u07:time_metadata, +6:u00:50, +14:u02:time_delta, +6:u03:51, +17:u06:time_metadata, +14:u01:time_delta, +6:u02:51, +17:u05:time_metadata, +14:u00:time_delta, +6:u01:51, +17:u04:time_metadata, +15:u08:time_modify, +6:u00:51, +17:u03:time_metadata, +15:u07:time_modify, +6:u08:53, +17:u02:time_metadata, +15:u06:time_modify, +6:u07:53, +17:u01:time_metadata, +15:u05:time_modify, +6:u06:53, +17:u00:time_metadata, +15:u04:time_modify, +6:u05:53, +19:u08:time_modify_set, +15:u03:time_modify, +6:u04:53, +19:u07:time_modify_set, +6:u08:54, +15:u02:time_modify, +6:u03:53, +19:u06:time_modify_set, +6:u07:54, +15:u01:time_modify, +6:u02:53, +19:u05:time_modify_set, +6:u06:54, +15:u00:time_modify, +6:u01:53, +19:u04:time_modify_set, +6:u05:54, +6:u00:53, +19:u03:time_modify_set, +6:u04:54, +19:u02:time_modify_set, +6:u03:54, +22:u08:fs_locations_info4, +10:u08:5.8.1., +19:u01:time_modify_set, +6:u02:54, +22:u07:fs_locations_info4, +12:u08:5.8.1.1., +19:u00:time_modify_set, +6:u01:54, +22:u06:fs_locations_info4, +10:u07:5.8.1., +6:u00:54, +22:u05:fs_locations_info4, +10:u06:5.8.1., +12:u07:5.8.1.1., +22:u04:fs_locations_info4, +10:u14:5.8.1., +10:u05:5.8.1., +12:u06:5.8.1.1., +22:u03:fs_locations_info4, +10:u13:5.8.1., +12:u14:5.8.1.1., +10:u04:5.8.1., +12:u05:5.8.1.1., +12:u08:5.8.1.2., +22:u02:fs_locations_info4, +10:u12:5.8.1., +12:u13:5.8.1.1., +9:uI2:....:, +10:u03:5.8.1., +12:u04:5.8.1.1., +14:u08:Designates, +22:u01:fs_locations_info4, +10:u11:5.8.1., +12:u12:5.8.1.1., +9:uI1:....:, +10:u02:5.8.1., +12:u03:5.8.1.1., +12:u07:5.8.1.2., +22:u00:fs_locations_info4, +10:u10:5.8.1., +12:u11:5.8.1.1., +9:uI0:....:, +10:u01:5.8.1., +12:u02:5.8.1.1., +12:u06:5.8.1.2., +14:u07:Designates, +14:u08:constants:, +12:u10:5.8.1.1., +12:u14:5.8.1.2., +10:u00:5.8.1., +12:u01:5.8.1.1., +12:u05:5.8.1.2., +14:u06:Designates, +14:u07:constants:, +10:u08:NF4REG, +12:u13:5.8.1.2., +14:u14:designates, +12:u00:5.8.1.1., +12:u04:5.8.1.2., +14:u05:Designates, +14:u06:constants:, +10:u07:NF4REG, +10:u08:NF4DIR, +12:u12:5.8.1.2., +14:u13:designates, +12:u03:5.8.1.2., +14:u04:Designates, +14:u05:constants:, +10:u06:NF4REG, +10:u07:NF4DIR, +10:u08:NF4BLK, +12:u11:5.8.1.2., +14:u12:designates, +8:u23:Desi, +12:u02:5.8.1.2., +14:u03:Designates, +14:u04:constants:, +10:u05:NF4REG, +10:u06:NF4DIR, +10:u07:NF4BLK, +12:u10:5.8.1.2., +14:u11:designates, +12:u01:5.8.1.2., +14:u02:Designates, +14:u03:constants:, +10:u04:NF4REG, +10:u05:NF4DIR, +10:u06:NF4BLK, +10:u08:NF4LNK, +14:u10:designates, +12:u00:5.8.1.2., +14:u01:Designates, +14:u02:constants:, +10:u03:NF4REG, +10:u04:NF4DIR, +10:u05:NF4BLK, +10:u07:NF4LNK, +11:u08:NF4SOCK, +14:u00:Designates, +14:u01:constants:, +10:u02:NF4REG, +10:u03:NF4DIR, +10:u04:NF4BLK, +10:u06:NF4LNK, +11:u07:NF4SOCK, +11:u08:NF4FIFO, +14:u00:constants:, +10:u01:NF4REG, +10:u02:NF4DIR, +10:u03:NF4BLK, +10:u05:NF4LNK, +11:u06:NF4SOCK, +11:u07:NF4FIFO, +14:u08:NF4ATTRDIR, +10:u00:NF4REG, +10:u01:NF4DIR, +10:u02:NF4BLK, +10:u04:NF4LNK, +11:u05:NF4SOCK, +11:u06:NF4FIFO, +14:u07:NF4ATTRDIR, +16:u08:NF4NAMEDATTR, +11:u08:phrases, +10:u00:NF4DIR, +10:u01:NF4BLK, +10:u03:NF4LNK, +11:u04:NF4SOCK, +11:u05:NF4FIFO, +14:u06:NF4ATTRDIR, +16:u07:NF4NAMEDATTR, +10:u00:NF4BLK, +10:u02:NF4LNK, +11:u03:NF4SOCK, +11:u04:NF4FIFO, +14:u05:NF4ATTRDIR, +16:u06:NF4NAMEDATTR, +11:u07:phrases, +10:u01:NF4LNK, +11:u02:NF4SOCK, +11:u03:NF4FIFO, +14:u04:NF4ATTRDIR, +16:u05:NF4NAMEDATTR, +11:u06:phrases, +10:u00:NF4LNK, +11:u01:NF4SOCK, +11:u02:NF4FIFO, +14:u03:NF4ATTRDIR, +16:u04:NF4NAMEDATTR, +11:u14:phrases, +11:u05:phrases, +11:u00:NF4SOCK, +11:u01:NF4FIFO, +14:u02:NF4ATTRDIR, +16:u03:NF4NAMEDATTR, +8:u08:110], +11:u13:phrases, +11:u04:phrases, +11:u00:NF4FIFO, +14:u01:NF4ATTRDIR, +16:u02:NF4NAMEDATTR, +8:u07:110], +11:u12:phrases, +7:u22:phr, +8:u23:phra, +11:u03:phrases, +14:u00:NF4ATTRDIR, +16:u01:NF4NAMEDATTR, +8:u06:110], +11:u11:phrases, +11:u02:phrases, +16:u00:NF4NAMEDATTR, +8:u05:110], +11:u10:phrases, +11:u01:phrases, +8:u04:110], +11:u00:phrases, +8:u03:110], +8:u02:110], +8:u01:110], +7:uI2:""', +8:u00:110], +7:uI1:""', +12:u08:5.8.1.3., +7:uI0:""', +12:u07:5.8.1.3., +8:uI2:"""", +12:u06:5.8.1.3., +12:u08:5.8.1.4., +12:u14:5.8.1.3., +8:uI1:"""", +12:u05:5.8.1.3., +12:u13:5.8.1.3., +8:uI0:"""", +12:u04:5.8.1.3., +12:u07:5.8.1.4., +12:u12:5.8.1.3., +12:u03:5.8.1.3., +12:u06:5.8.1.4., +13:u08:modified., +12:u11:5.8.1.3., +12:u14:5.8.1.4., +12:u02:5.8.1.3., +12:u05:5.8.1.4., +12:u10:5.8.1.3., +12:u13:5.8.1.4., +12:u01:5.8.1.3., +12:u04:5.8.1.4., +13:u07:modified., +12:u12:5.8.1.4., +12:u00:5.8.1.3., +12:u03:5.8.1.4., +13:u06:modified., +12:u08:5.8.1.5., +12:u11:5.8.1.4., +13:u14:modified., +12:u02:5.8.1.4., +13:u05:modified., +12:u10:5.8.1.4., +13:u13:modified., +12:u01:5.8.1.4., +13:u04:modified., +12:u07:5.8.1.5., +12:u08:5.8.1.6., +13:u12:modified., +12:u00:5.8.1.4., +13:u03:modified., +12:u06:5.8.1.5., +9:u08:TRUE,, +13:u11:modified., +12:u14:5.8.1.5., +13:u02:modified., +12:u05:5.8.1.5., +12:u07:5.8.1.6., +12:u08:5.8.1.7., +13:u10:modified., +12:u13:5.8.1.5., +13:u01:modified., +12:u04:5.8.1.5., +12:u06:5.8.1.6., +9:u07:TRUE,, +12:u12:5.8.1.5., +12:u14:5.8.1.6., +13:u00:modified., +12:u03:5.8.1.5., +12:u05:5.8.1.6., +9:u06:TRUE,, +12:u07:5.8.1.7., +12:u08:5.8.1.8., +12:u11:5.8.1.5., +12:u13:5.8.1.6., +9:u14:true,, +12:u02:5.8.1.5., +12:u04:5.8.1.6., +9:u05:TRUE,, +12:u06:5.8.1.7., +12:u10:5.8.1.5., +12:u12:5.8.1.6., +9:u13:true,, +12:u14:5.8.1.7., +12:u01:5.8.1.5., +12:u03:5.8.1.6., +9:u04:TRUE,, +12:u05:5.8.1.7., +12:u07:5.8.1.8., +12:u11:5.8.1.6., +9:u12:true,, +12:u13:5.8.1.7., +12:u00:5.8.1.5., +12:u02:5.8.1.6., +9:u03:TRUE,, +12:u04:5.8.1.7., +12:u06:5.8.1.8., +12:u08:5.8.1.9., +12:u10:5.8.1.6., +9:u11:true,, +12:u12:5.8.1.7., +12:u14:5.8.1.8., +12:u01:5.8.1.6., +9:u02:TRUE,, +12:u03:5.8.1.7., +12:u05:5.8.1.8., +10:u08:Unique, +9:u10:true,, +12:u11:5.8.1.7., +12:u13:5.8.1.8., +12:u00:5.8.1.6., +9:u01:TRUE,, +12:u02:5.8.1.7., +12:u04:5.8.1.8., +12:u07:5.8.1.9., +12:u10:5.8.1.7., +12:u12:5.8.1.8., +9:u00:TRUE,, +12:u01:5.8.1.7., +12:u03:5.8.1.8., +12:u06:5.8.1.9., +10:u07:Unique, +12:u11:5.8.1.8., +12:u14:5.8.1.9., +12:u00:5.8.1.7., +12:u02:5.8.1.8., +12:u05:5.8.1.9., +10:u06:Unique, +12:u10:5.8.1.8., +12:u13:5.8.1.9., +10:u14:unique, +12:u01:5.8.1.8., +12:u04:5.8.1.9., +10:u05:Unique, +12:u12:5.8.1.9., +10:u13:unique, +12:u00:5.8.1.8., +12:u03:5.8.1.9., +10:u04:Unique, +12:u11:5.8.1.9., +10:u12:unique, +8:u23:Uniq, +12:u02:5.8.1.9., +10:u03:Unique, +8:u08:111], +12:u10:5.8.1.9., +10:u11:unique, +12:u01:5.8.1.9., +10:u02:Unique, +8:u07:111], +10:u10:unique, +12:u00:5.8.1.9., +10:u01:Unique, +8:u06:111], +10:u00:Unique, +13:u08:5.8.1.10., +8:u05:111], +8:u04:111], +13:u07:5.8.1.10., +8:u03:111], +13:u06:5.8.1.10., +13:u08:5.8.1.11., +8:u02:111], +13:u14:5.8.1.10., +13:u05:5.8.1.10., +12:u08:Duration, +8:u01:111], +13:u13:5.8.1.10., +13:u04:5.8.1.10., +13:u07:5.8.1.11., +13:u08:5.8.1.12., +8:u00:111], +13:u12:5.8.1.10., +13:u03:5.8.1.10., +13:u06:5.8.1.11., +12:u07:Duration, +13:u11:5.8.1.10., +13:u14:5.8.1.11., +13:u02:5.8.1.10., +13:u05:5.8.1.11., +12:u06:Duration, +13:u07:5.8.1.12., +13:u10:5.8.1.10., +13:u13:5.8.1.11., +12:u14:duration, +13:u01:5.8.1.10., +13:u04:5.8.1.11., +12:u05:Duration, +13:u06:5.8.1.12., +13:u08:5.8.1.13., +13:u12:5.8.1.11., +12:u13:duration, +13:u14:5.8.1.12., +13:u00:5.8.1.10., +13:u03:5.8.1.11., +12:u04:Duration, +13:u05:5.8.1.12., +13:u11:5.8.1.11., +12:u12:duration, +13:u13:5.8.1.12., +8:u23:Dura, +13:u02:5.8.1.11., +12:u03:Duration, +13:u04:5.8.1.12., +13:u07:5.8.1.13., +13:u08:5.8.1.14., +13:u10:5.8.1.11., +12:u11:duration, +13:u12:5.8.1.12., +13:u01:5.8.1.11., +12:u02:Duration, +13:u03:5.8.1.12., +13:u06:5.8.1.13., +12:u10:duration, +13:u11:5.8.1.12., +13:u14:5.8.1.13., +7:u22:Err, +8:u23:Erro, +13:u00:5.8.1.11., +12:u01:Duration, +13:u02:5.8.1.12., +13:u05:5.8.1.13., +13:u07:5.8.1.14., +13:u10:5.8.1.12., +13:u13:5.8.1.13., +12:u00:Duration, +13:u01:5.8.1.12., +13:u04:5.8.1.13., +13:u06:5.8.1.14., +13:u12:5.8.1.13., +13:u14:5.8.1.14., +13:u00:5.8.1.12., +13:u03:5.8.1.13., +13:u05:5.8.1.14., +13:u11:5.8.1.13., +13:u13:5.8.1.14., +13:u02:5.8.1.13., +13:u04:5.8.1.14., +10:u08:5.8.2., +13:u10:5.8.1.13., +13:u12:5.8.1.14., +13:u01:5.8.1.13., +13:u03:5.8.1.14., +13:u11:5.8.1.14., +13:u00:5.8.1.13., +13:u02:5.8.1.14., +10:u07:5.8.2., +15:u08:Collections, +13:u10:5.8.1.14., +13:u01:5.8.1.14., +10:u06:5.8.2., +13:u08:sections., +10:u14:5.8.2., +13:u00:5.8.1.14., +10:u05:5.8.2., +15:u07:Collections, +12:u08:5.8.2.1., +10:u13:5.8.2., +10:u04:5.8.2., +15:u06:Collections, +13:u07:sections., +10:u12:5.8.2., +15:u14:collections, +10:u03:5.8.2., +15:u05:Collections, +13:u06:sections., +12:u07:5.8.2.1., +10:u11:5.8.2., +15:u13:collections, +13:u14:sections., +10:u02:5.8.2., +15:u04:Collections, +13:u05:sections., +12:u06:5.8.2.1., +12:u08:5.8.2.2., +15:u08:(deprecated, +10:u10:5.8.2., +15:u12:collections, +13:u13:sections., +12:u14:5.8.2.1., +7:u22:Col, +8:u23:Coll, +10:u01:5.8.2., +15:u03:Collections, +13:u04:sections., +12:u05:5.8.2.1., +15:u07:(deprecated, +15:u11:collections, +13:u12:sections., +12:u13:5.8.2.1., +10:u00:5.8.2., +15:u02:Collections, +13:u03:sections., +12:u04:5.8.2.1., +12:u07:5.8.2.2., +15:u06:(deprecated, +15:u10:collections, +13:u11:sections., +12:u12:5.8.2.1., +15:u01:Collections, +13:u02:sections., +12:u03:5.8.2.1., +12:u06:5.8.2.2., +12:u08:5.8.2.3., +15:u05:(deprecated, +13:u10:sections., +12:u11:5.8.2.1., +12:u14:5.8.2.2., +15:u00:Collections, +13:u01:sections., +12:u02:5.8.2.1., +12:u05:5.8.2.2., +15:u04:(deprecated, +12:u10:5.8.2.1., +12:u13:5.8.2.2., +13:u00:sections., +12:u01:5.8.2.1., +12:u04:5.8.2.2., +12:u07:5.8.2.3., +16:u08:insensitive., +15:u03:(deprecated, +12:u12:5.8.2.2., +12:u00:5.8.2.1., +12:u03:5.8.2.2., +12:u06:5.8.2.3., +15:u02:(deprecated, +12:u11:5.8.2.2., +12:u14:5.8.2.3., +12:u02:5.8.2.2., +12:u05:5.8.2.3., +16:u07:insensitive., +15:u01:(deprecated, +12:u10:5.8.2.2., +12:u13:5.8.2.3., +12:u01:5.8.2.2., +12:u04:5.8.2.3., +16:u06:insensitive., +15:u00:(deprecated, +12:u12:5.8.2.3., +16:u14:insensitive., +12:u00:5.8.2.2., +12:u03:5.8.2.3., +16:u05:insensitive., +8:u08:112], +12:u11:5.8.2.3., +16:u13:insensitive., +12:u02:5.8.2.3., +16:u04:insensitive., +8:u07:112], +12:u10:5.8.2.3., +16:u12:insensitive., +12:u01:5.8.2.3., +16:u03:insensitive., +8:u06:112], +16:u11:insensitive., +12:u00:5.8.2.3., +16:u02:insensitive., +12:u08:5.8.2.4., +8:u05:112], +16:u10:insensitive., +16:u01:insensitive., +8:u04:112], +16:u00:insensitive., +12:u07:5.8.2.4., +12:u08:5.8.2.5., +8:u03:112], +12:u06:5.8.2.4., +8:u02:112], +12:u14:5.8.2.4., +12:u05:5.8.2.4., +12:u07:5.8.2.5., +8:u01:112], +12:u13:5.8.2.4., +12:u04:5.8.2.4., +12:u06:5.8.2.5., +8:u00:112], +12:u12:5.8.2.4., +12:u14:5.8.2.5., +12:u03:5.8.2.4., +12:u05:5.8.2.5., +12:u11:5.8.2.4., +12:u13:5.8.2.5., +12:u02:5.8.2.4., +12:u04:5.8.2.5., +12:u10:5.8.2.4., +12:u12:5.8.2.5., +12:u01:5.8.2.4., +12:u03:5.8.2.5., +12:u11:5.8.2.5., +11:u14:subject, +12:u00:5.8.2.4., +12:u02:5.8.2.5., +12:u10:5.8.2.5., +11:u13:subject, +12:u01:5.8.2.5., +11:u12:subject, +8:u23:subj, +12:u00:5.8.2.5., +11:u11:subject, +9:u08:3.3.6, +11:u10:subject, +10:u14:change, +9:u07:3.3.6, +10:u13:change, +9:u06:3.3.6, +10:u12:change, +9:u05:3.3.6, +8:u08:goes, +10:u11:change, +11:u08:thereof, +9:u04:3.3.6, +8:u07:goes, +10:u10:change, +12:u08:5.8.2.6., +9:u03:3.3.6, +8:u06:goes, +11:u07:thereof, +9:u02:3.3.6, +8:u05:goes, +13:u14:allowable, +11:u06:thereof, +12:u07:5.8.2.6., +9:u01:3.3.6, +8:u04:goes, +13:u13:allowable, +11:u14:thereof, +11:u05:thereof, +12:u06:5.8.2.6., +14:u08:privileged, +9:u00:3.3.6, +8:u03:goes, +13:u12:allowable, +11:u13:thereof, +12:u14:5.8.2.6., +11:u04:thereof, +12:u05:5.8.2.6., +7:u08:or,, +8:u02:goes, +13:u11:allowable, +11:u12:thereof, +12:u13:5.8.2.6., +11:u03:thereof, +12:u04:5.8.2.6., +14:u07:privileged, +12:u08:5.8.2.7., +8:u01:goes, +13:u10:allowable, +11:u11:thereof, +12:u12:5.8.2.6., +11:u02:thereof, +12:u03:5.8.2.6., +14:u06:privileged, +7:u07:or,, +8:u00:goes, +11:u10:thereof, +12:u11:5.8.2.6., +14:u14:privileged, +11:u01:thereof, +12:u02:5.8.2.6., +14:u05:privileged, +7:u06:or,, +12:u07:5.8.2.7., +12:u08:5.8.2.8., +12:u10:5.8.2.6., +14:u13:privileged, +7:u14:or,, +8:uI2:(,"", +11:u00:thereof, +12:u01:5.8.2.6., +14:u04:privileged, +7:u05:or,, +12:u06:5.8.2.7., +14:u12:privileged, +7:u13:or,, +12:u14:5.8.2.7., +8:uI1:(,"", +10:uI2:,,"")., +12:u00:5.8.2.6., +14:u03:privileged, +7:u04:or,, +12:u05:5.8.2.7., +12:u07:5.8.2.8., +14:u11:privileged, +7:u12:or,, +12:u13:5.8.2.7., +7:u22:or,, +7:u23:or,, +8:uI0:(,"", +10:uI1:,,"")., +14:u02:privileged, +7:u03:or,, +12:u04:5.8.2.7., +12:u06:5.8.2.8., +12:u08:5.8.2.9., +10:u08:--this, +14:u10:privileged, +7:u11:or,, +12:u12:5.8.2.7., +12:u14:5.8.2.8., +10:uI0:,,"")., +14:u01:privileged, +7:u02:or,, +12:u03:5.8.2.7., +12:u05:5.8.2.8., +8:u08:Free, +10:u07:--this, +7:u10:or,, +12:u11:5.8.2.7., +12:u13:5.8.2.8., +14:u00:privileged, +7:u01:or,, +12:u02:5.8.2.7., +12:u04:5.8.2.8., +12:u07:5.8.2.9., +10:u06:--this, +12:u10:5.8.2.7., +12:u12:5.8.2.8., +7:u00:or,, +12:u01:5.8.2.7., +12:u03:5.8.2.8., +12:u06:5.8.2.9., +8:u07:Free, +13:u08:5.8.2.10., +10:u05:--this, +12:u11:5.8.2.8., +12:u14:5.8.2.9., +12:u00:5.8.2.7., +12:u02:5.8.2.8., +12:u05:5.8.2.9., +8:u06:Free, +9:u08:Total, +10:u04:--this, +12:u10:5.8.2.8., +12:u13:5.8.2.9., +12:u01:5.8.2.8., +12:u04:5.8.2.9., +8:u05:Free, +13:u07:5.8.2.10., +10:u03:--this, +12:u12:5.8.2.9., +12:u00:5.8.2.8., +12:u03:5.8.2.9., +8:u04:Free, +13:u06:5.8.2.10., +9:u07:Total, +10:u02:--this, +12:u11:5.8.2.9., +13:u14:5.8.2.10., +7:u22:Fre, +8:u23:Free, +12:u02:5.8.2.9., +8:u03:Free, +13:u05:5.8.2.10., +9:u06:Total, +10:u01:--this, +12:u10:5.8.2.9., +13:u13:5.8.2.10., +12:u01:5.8.2.9., +8:u02:Free, +13:u04:5.8.2.10., +9:u05:Total, +10:u00:--this, +8:u08:113], +13:u12:5.8.2.10., +12:u00:5.8.2.9., +8:u01:Free, +13:u03:5.8.2.10., +9:u04:Total, +8:u07:113], +13:u11:5.8.2.10., +7:u22:Tot, +8:u23:Tota, +8:u00:Free, +13:u02:5.8.2.10., +9:u03:Total, +8:u06:113], +13:u10:5.8.2.10., +13:u01:5.8.2.10., +9:u02:Total, +13:u08:5.8.2.11., +8:u05:113], +13:u00:5.8.2.10., +9:u01:Total, +8:u04:113], +9:u00:Total, +13:u07:5.8.2.11., +13:u08:5.8.2.12., +8:u03:113], +13:u06:5.8.2.11., +13:u08:Locations, +8:u02:113], +13:u14:5.8.2.11., +13:u05:5.8.2.11., +13:u07:5.8.2.12., +17:u08:NFS4ERR_MOVED, +8:u01:113], +13:u13:5.8.2.11., +13:u04:5.8.2.11., +13:u06:5.8.2.12., +13:u07:Locations, +8:u00:113], +13:u12:5.8.2.11., +13:u14:5.8.2.12., +13:u03:5.8.2.11., +13:u05:5.8.2.12., +13:u06:Locations, +17:u07:NFS4ERR_MOVED, +13:u08:5.8.2.13., +9:u08:11.15, +13:u11:5.8.2.11., +13:u13:5.8.2.12., +13:u14:locations, +13:u02:5.8.2.11., +13:u04:5.8.2.12., +13:u05:Locations, +17:u06:NFS4ERR_MOVED, +8:u08:Full, +9:u07:11.15, +13:u10:5.8.2.11., +13:u12:5.8.2.12., +13:u13:locations, +17:u14:nfs4err_moved, +13:u01:5.8.2.11., +13:u03:5.8.2.12., +13:u04:Locations, +17:u05:NFS4ERR_MOVED, +13:u07:5.8.2.13., +9:u06:11.15, +12:u08:function, +13:u11:5.8.2.12., +13:u12:locations, +17:u13:nfs4err_moved, +13:u00:5.8.2.11., +13:u02:5.8.2.12., +13:u03:Locations, +17:u04:NFS4ERR_MOVED, +13:u06:5.8.2.13., +8:u07:Full, +13:u08:5.8.2.14., +9:u05:11.15, +12:u07:function, +13:u10:5.8.2.12., +13:u11:locations, +17:u12:nfs4err_moved, +13:u14:5.8.2.13., +13:u01:5.8.2.12., +13:u02:Locations, +17:u03:NFS4ERR_MOVED, +13:u05:5.8.2.13., +8:u06:Full, +9:u04:11.15, +12:u06:function, +13:u10:locations, +17:u11:nfs4err_moved, +13:u13:5.8.2.13., +13:u00:5.8.2.12., +13:u01:Locations, +17:u02:NFS4ERR_MOVED, +13:u04:5.8.2.13., +8:u05:Full, +13:u07:5.8.2.14., +9:u03:11.15, +12:u05:function, +17:u10:nfs4err_moved, +13:u12:5.8.2.13., +13:u00:Locations, +17:u01:NFS4ERR_MOVED, +13:u03:5.8.2.13., +8:u04:Full, +13:u06:5.8.2.14., +13:u08:5.8.2.15., +9:u02:11.15, +12:u04:function, +13:u11:5.8.2.13., +13:u14:5.8.2.14., +7:u22:Ful, +8:u23:Full, +17:u00:NFS4ERR_MOVED, +13:u02:5.8.2.13., +8:u03:Full, +13:u05:5.8.2.14., +9:u01:11.15, +12:u03:function, +13:u10:5.8.2.13., +13:u13:5.8.2.14., +13:u01:5.8.2.13., +8:u02:Full, +13:u04:5.8.2.14., +13:u07:5.8.2.15., +8:u08:API., +9:u00:11.15, +12:u02:function, +13:u12:5.8.2.14., +13:u00:5.8.2.13., +8:u01:Full, +13:u03:5.8.2.14., +13:u06:5.8.2.15., +13:u08:5.8.2.16., +12:u01:function, +13:u11:5.8.2.14., +13:u14:5.8.2.15., +8:u00:Full, +13:u02:5.8.2.14., +13:u05:5.8.2.15., +8:u07:API., +12:u00:function, +13:u10:5.8.2.14., +13:u13:5.8.2.15., +13:u01:5.8.2.14., +13:u04:5.8.2.15., +8:u06:API., +13:u07:5.8.2.16., +13:u12:5.8.2.15., +8:u14:api., +13:u00:5.8.2.14., +13:u03:5.8.2.15., +8:u05:API., +13:u06:5.8.2.16., +13:u11:5.8.2.15., +8:u13:api., +13:u14:5.8.2.16., +13:u02:5.8.2.15., +8:u04:API., +13:u05:5.8.2.16., +13:u08:5.8.2.17., +13:u10:5.8.2.15., +8:u12:api., +13:u13:5.8.2.16., +8:u23:API., +13:u01:5.8.2.15., +8:u03:API., +13:u04:5.8.2.16., +11:u08:Maximum, +8:u11:api., +13:u12:5.8.2.16., +10:uI2:,';..,, +13:u00:5.8.2.15., +8:u02:API., +13:u03:5.8.2.16., +13:u07:5.8.2.17., +13:u08:5.8.2.18., +8:u10:api., +13:u11:5.8.2.16., +10:uI1:,';..,, +8:u01:API., +13:u02:5.8.2.16., +13:u06:5.8.2.17., +11:u07:Maximum, +13:u10:5.8.2.16., +13:u14:5.8.2.17., +10:uI0:,';..,, +8:u00:API., +13:u01:5.8.2.16., +13:u05:5.8.2.17., +11:u06:Maximum, +13:u07:5.8.2.18., +13:u08:5.8.2.19., +13:u13:5.8.2.17., +11:u14:maximum, +13:u00:5.8.2.16., +13:u04:5.8.2.17., +11:u05:Maximum, +13:u06:5.8.2.18., +13:u12:5.8.2.17., +11:u13:maximum, +13:u14:5.8.2.18., +13:u03:5.8.2.17., +11:u04:Maximum, +13:u05:5.8.2.18., +13:u07:5.8.2.19., +13:u08:5.8.2.20., +13:u11:5.8.2.17., +11:u12:maximum, +13:u13:5.8.2.18., +7:u22:Max, +8:u23:Maxi, +13:u02:5.8.2.17., +11:u03:Maximum, +13:u04:5.8.2.18., +13:u06:5.8.2.19., +13:u10:5.8.2.17., +11:u11:maximum, +13:u12:5.8.2.18., +13:u14:5.8.2.19., +13:u01:5.8.2.17., +11:u02:Maximum, +13:u03:5.8.2.18., +13:u05:5.8.2.19., +13:u07:5.8.2.20., +10:u08:amount, +11:u10:maximum, +13:u11:5.8.2.18., +13:u13:5.8.2.19., +13:u00:5.8.2.17., +11:u01:Maximum, +13:u02:5.8.2.18., +13:u04:5.8.2.19., +13:u06:5.8.2.20., +10:u07:amount, +13:u10:5.8.2.18., +13:u12:5.8.2.19., +13:u14:5.8.2.20., +11:u00:Maximum, +13:u01:5.8.2.18., +13:u03:5.8.2.19., +13:u05:5.8.2.20., +10:u06:amount, +13:u11:5.8.2.19., +13:u13:5.8.2.20., +13:u00:5.8.2.18., +13:u02:5.8.2.19., +13:u04:5.8.2.20., +10:u05:amount, +13:u10:5.8.2.19., +13:u12:5.8.2.20., +13:u01:5.8.2.19., +13:u03:5.8.2.20., +10:u04:amount, +8:u08:114], +13:u11:5.8.2.20., +13:u00:5.8.2.19., +13:u02:5.8.2.20., +10:u03:amount, +8:u07:114], +13:u10:5.8.2.20., +13:u01:5.8.2.20., +10:u02:amount, +8:u06:114], +13:u00:5.8.2.20., +13:u08:5.8.2.21., +10:u01:amount, +8:u05:114], +10:u00:amount, +8:u04:114], +13:u07:5.8.2.21., +8:u03:114], +13:u06:5.8.2.21., +8:u02:114], +13:u14:5.8.2.21., +13:u05:5.8.2.21., +8:u01:114], +13:u13:5.8.2.21., +13:u04:5.8.2.21., +13:u08:5.8.2.22., +8:u00:114], +13:u12:5.8.2.21., +13:u03:5.8.2.21., +8:u08:MIME, +13:u11:5.8.2.21., +13:u02:5.8.2.21., +13:u07:5.8.2.22., +13:u08:5.8.2.23., +8:u08:body, +13:u10:5.8.2.21., +13:u01:5.8.2.21., +13:u06:5.8.2.22., +8:u07:MIME, +8:u08:Like, +8:u07:body, +13:u14:5.8.2.22., +7:u22:Lac, +8:u23:Lack, +13:u00:5.8.2.21., +13:u05:5.8.2.22., +8:u06:MIME, +13:u07:5.8.2.23., +8:u06:body, +11:u08:fileid,, +13:u13:5.8.2.22., +8:u14:mime, +13:u04:5.8.2.22., +8:u05:MIME, +13:u06:5.8.2.23., +8:u07:Like, +8:u05:body, +11:u07:fileid,, +13:u12:5.8.2.22., +8:u13:mime, +13:u14:5.8.2.23., +13:u03:5.8.2.22., +8:u04:MIME, +13:u05:5.8.2.23., +8:u06:Like, +14:u08:UNIX-based, +8:u04:body, +11:u06:fileid,, +13:u11:5.8.2.22., +8:u12:mime, +13:u13:5.8.2.23., +8:u14:like, +6:u21:MI, +7:u22:MIM, +8:u23:MIME, +13:u02:5.8.2.22., +8:u03:MIME, +13:u04:5.8.2.23., +8:u05:Like, +8:u03:body, +11:u05:fileid,, +13:u10:5.8.2.22., +8:u11:mime, +13:u12:5.8.2.23., +8:u13:like, +11:u14:system,, +13:u01:5.8.2.22., +8:u02:MIME, +13:u03:5.8.2.23., +8:u04:Like, +14:u07:UNIX-based, +8:u02:body, +11:u04:fileid,, +8:u10:mime, +13:u11:5.8.2.23., +8:u12:like, +11:u13:system,, +7:u22:Lik, +8:u23:Like, +13:u00:5.8.2.22., +8:u01:MIME, +13:u02:5.8.2.23., +8:u03:Like, +14:u06:UNIX-based, +8:u01:body, +11:u03:fileid,, +13:u10:5.8.2.23., +8:u11:like, +11:u12:system,, +14:u14:unix-based, +8:u00:MIME, +13:u01:5.8.2.23., +8:u02:Like, +14:u05:UNIX-based, +8:u00:body, +11:u02:fileid,, +8:u10:like, +11:u11:system,, +14:u13:unix-based, +13:u00:5.8.2.23., +8:u01:Like, +14:u04:UNIX-based, +11:u01:fileid,, +11:u10:system,, +14:u12:unix-based, +7:u22:UNI, +8:u23:UNIX, +8:u00:Like, +14:u03:UNIX-based, +11:u00:fileid,, +14:u11:unix-based, +7:uI2:(,), +14:u02:UNIX-based, +14:u10:unix-based, +7:uI1:(,), +14:u01:UNIX-based, +7:uI0:(,), +14:u00:UNIX-based, +13:u08:returning, +13:u07:returning, +13:u06:returning, +13:u14:returning, +13:u05:returning, +12:u08:systems., +13:u13:returning, +13:u04:returning, +12:u07:systems., +13:u12:returning, +13:u03:returning, +12:u06:systems., +13:u11:returning, +13:u02:returning, +10:u08:scheme, +12:u05:systems., +13:u10:returning, +13:u01:returning, +12:u04:systems., +13:u00:returning, +10:u07:scheme, +10:u08:stat(), +12:u03:systems., +10:u06:scheme, +12:u02:systems., +10:u14:scheme, +10:u05:scheme, +10:u07:stat(), +13:u08:readdir(), +12:u01:systems., +10:u13:scheme, +10:u04:scheme, +10:u06:stat(), +12:u00:systems., +10:u12:scheme, +10:u14:stat(), +8:uI2:.()', +10:u03:scheme, +10:u05:stat(), +13:u07:readdir(), +10:u11:scheme, +10:u13:stat(), +8:uI1:.()', +10:u02:scheme, +10:u04:stat(), +13:u06:readdir(), +10:u10:scheme, +10:u12:stat(), +13:u14:readdir(), +8:uI0:.()', +10:u01:scheme, +10:u03:stat(), +13:u05:readdir(), +10:u11:stat(), +13:u13:readdir(), +10:u00:scheme, +10:u02:stat(), +13:u04:readdir(), +10:u10:stat(), +13:u12:readdir(), +10:u01:stat(), +13:u03:readdir(), +13:u11:readdir(), +10:u00:stat(), +13:u02:readdir(), +13:u08:potential, +13:u10:readdir(), +7:uI2:,),, +13:u01:readdir(), +7:uI1:,),, +13:u00:readdir(), +13:u07:potential, +12:u14:instead,, +7:uI0:,),, +13:u06:potential, +12:u13:instead,, +13:u14:potential, +13:u05:potential, +8:u08:115], +12:u12:instead,, +13:u13:potential, +13:u04:potential, +8:u07:115], +12:u11:instead,, +13:u12:potential, +7:u22:pot, +8:u23:pote, +13:u03:potential, +8:u06:115], +12:u10:instead,, +13:u11:potential, +13:u02:potential, +8:u05:115], +13:u10:potential, +13:u01:potential, +8:u04:115], +13:u00:potential, +8:u03:115], +11:u08:object,, +8:u02:115], +11:u07:object,, +8:u01:115], +11:u06:object,, +20:u08:straightforward., +8:u00:115], +11:u05:object,, +11:u04:object,, +12:u08:Usually,, +20:u07:straightforward., +11:u03:object,, +12:u07:Usually,, +20:u06:straightforward., +11:u02:object,, +12:u06:Usually,, +12:u08:servers), +20:u14:straightforward., +20:u05:straightforward., +11:u01:object,, +12:u05:Usually,, +12:u07:servers), +20:u13:straightforward., +20:u04:straightforward., +11:u00:object,, +12:u04:Usually,, +12:u06:servers), +20:u12:straightforward., +8:u23:stra, +7:uI2:,(-, +20:u03:straightforward., +12:u03:Usually,, +12:u05:servers), +8:u08:obey, +20:u11:straightforward., +10:u14:fileid, +7:uI1:,(-, +20:u02:straightforward., +12:u02:Usually,, +12:u04:servers), +8:u07:obey, +20:u10:straightforward., +10:u13:fileid, +21:u14:mounted_on_fileid, +7:uI0:,(-, +20:u01:straightforward., +12:u01:Usually,, +12:u03:servers), +8:u06:obey, +10:u12:fileid, +21:u13:mounted_on_fileid, +20:u00:straightforward., +12:u00:Usually,, +12:u02:servers), +8:u05:obey, +10:u11:fileid, +21:u12:mounted_on_fileid, +7:u22:mou, +8:u23:moun, +18:u08:aforementioned, +12:u01:servers), +8:u04:obey, +9:u08:mount, +10:u10:fileid, +21:u11:mounted_on_fileid, +10:uI2:'',..,, +12:u00:servers), +8:u03:obey, +9:u07:mount, +14:u08:invariant,, +21:u10:mounted_on_fileid, +10:uI1:'',..,, +18:u07:aforementioned, +13:u08:5.8.2.24., +8:u02:obey, +9:u06:mount, +14:u07:invariant,, +10:uI0:'',..,, +18:u06:aforementioned, +8:u01:obey, +9:u05:mount, +14:u06:invariant,, +18:u14:aforementioned, +18:u05:aforementioned, +13:u07:5.8.2.24., +8:u00:obey, +9:u04:mount, +14:u05:invariant,, +18:u13:aforementioned, +18:u04:aforementioned, +13:u06:5.8.2.24., +14:u08:truncated., +9:u03:mount, +14:u04:invariant,, +13:u08:name_max,, +18:u12:aforementioned, +13:u14:5.8.2.24., +7:u22:afo, +8:u23:afor, +18:u03:aforementioned, +13:u05:5.8.2.24., +13:u08:5.8.2.25., +9:u02:mount, +14:u03:invariant,, +13:u07:name_max,, +18:u11:aforementioned, +13:u13:5.8.2.24., +18:u02:aforementioned, +13:u04:5.8.2.24., +14:u07:truncated., +10:u08:Number, +9:u01:mount, +14:u02:invariant,, +13:u06:name_max,, +18:u10:aforementioned, +13:u12:5.8.2.24., +18:u01:aforementioned, +13:u03:5.8.2.24., +14:u06:truncated., +13:u07:5.8.2.25., +13:u08:5.8.2.26., +9:u00:mount, +14:u01:invariant,, +13:u05:name_max,, +13:u11:5.8.2.24., +14:u14:truncated., +18:u00:aforementioned, +13:u02:5.8.2.24., +14:u05:truncated., +13:u06:5.8.2.25., +10:u07:Number, +14:u00:invariant,, +13:u04:name_max,, +13:u10:5.8.2.24., +14:u13:truncated., +13:u14:5.8.2.25., +13:u01:5.8.2.24., +14:u04:truncated., +13:u05:5.8.2.25., +10:u06:Number, +13:u07:5.8.2.26., +13:u08:5.8.2.27., +13:u03:name_max,, +14:u12:truncated., +13:u13:5.8.2.25., +13:u00:5.8.2.24., +14:u03:truncated., +13:u04:5.8.2.25., +10:u05:Number, +13:u06:5.8.2.26., +13:u02:name_max,, +14:u11:truncated., +13:u12:5.8.2.25., +13:u14:5.8.2.26., +14:u02:truncated., +13:u03:5.8.2.25., +10:u04:Number, +13:u05:5.8.2.26., +13:u07:5.8.2.27., +13:u08:5.8.2.28., +13:u01:name_max,, +14:u10:truncated., +13:u11:5.8.2.25., +13:u13:5.8.2.26., +6:u21:Nu, +7:u22:Num, +8:u23:Numb, +14:u01:truncated., +13:u02:5.8.2.25., +10:u03:Number, +13:u04:5.8.2.26., +13:u06:5.8.2.27., +13:u00:name_max,, +13:u10:5.8.2.25., +13:u12:5.8.2.26., +13:u14:5.8.2.27., +14:u00:truncated., +13:u01:5.8.2.25., +10:u02:Number, +13:u03:5.8.2.26., +13:u05:5.8.2.27., +13:u07:5.8.2.28., +9:u08:space, +13:u11:5.8.2.26., +13:u13:5.8.2.27., +13:u00:5.8.2.25., +10:u01:Number, +13:u02:5.8.2.26., +13:u04:5.8.2.27., +13:u06:5.8.2.28., +13:u10:5.8.2.26., +13:u12:5.8.2.27., +13:u14:5.8.2.28., +10:u00:Number, +13:u01:5.8.2.26., +13:u03:5.8.2.27., +13:u05:5.8.2.28., +9:u07:space, +14:u08:understood, +13:u11:5.8.2.27., +13:u13:5.8.2.28., +13:u00:5.8.2.26., +13:u02:5.8.2.27., +13:u04:5.8.2.28., +9:u06:space, +13:u10:5.8.2.27., +13:u12:5.8.2.28., +9:u14:space, +13:u01:5.8.2.27., +13:u03:5.8.2.28., +9:u05:space, +14:u07:understood, +13:u11:5.8.2.28., +9:u13:space, +13:u00:5.8.2.27., +13:u02:5.8.2.28., +9:u04:space, +14:u06:understood, +13:u10:5.8.2.28., +9:u12:space, +14:u14:understood, +13:u01:5.8.2.28., +9:u03:space, +14:u05:understood, +9:u11:space, +14:u13:understood, +9:u14:files, +13:u00:5.8.2.28., +9:u02:space, +14:u04:understood, +8:u08:116], +9:u10:space, +14:u12:understood, +9:u13:files, +9:u01:space, +14:u03:understood, +8:u07:116], +14:u11:understood, +9:u12:files, +9:u00:space, +14:u02:understood, +8:u06:116], +14:u10:understood, +9:u11:files, +14:u01:understood, +13:u08:5.8.2.29., +8:u05:116], +9:u10:files, +14:u00:understood, +8:u04:116], +13:u07:5.8.2.29., +8:u03:116], +13:u06:5.8.2.29., +8:u02:116], +13:u14:5.8.2.29., +13:u05:5.8.2.29., +8:u01:116], +13:u13:5.8.2.29., +13:u04:5.8.2.29., +8:u00:116], +13:u12:5.8.2.29., +13:u03:5.8.2.29., +13:u08:5.8.2.30., +13:u11:5.8.2.29., +13:u02:5.8.2.29., +13:u10:5.8.2.29., +12:u14:consumed, +13:u01:5.8.2.29., +13:u07:5.8.2.30., +12:u13:consumed, +13:u00:5.8.2.29., +13:u06:5.8.2.30., +12:u12:consumed, +13:u14:5.8.2.30., +13:u05:5.8.2.30., +13:u08:criterion, +16:u08:directories,, +12:u11:consumed, +13:u13:5.8.2.30., +13:u04:5.8.2.30., +16:u07:directories,, +12:u10:consumed, +13:u12:5.8.2.30., +13:u03:5.8.2.30., +13:u07:criterion, +16:u06:directories,, +13:u11:5.8.2.30., +13:u02:5.8.2.30., +13:u06:criterion, +16:u05:directories,, +13:u10:5.8.2.30., +13:u14:criterion, +13:u01:5.8.2.30., +13:u05:criterion, +16:u04:directories,, +13:u13:criterion, +13:u00:5.8.2.30., +13:u04:criterion, +16:u03:directories,, +13:u12:criterion, +13:u03:criterion, +11:u08:owner",, +16:u02:directories,, +8:u08:"all, +13:u11:criterion, +13:u02:criterion, +16:u01:directories,, +8:u07:"all, +8:u08:etc., +13:u10:criterion, +13:u01:criterion, +11:u07:owner",, +16:u00:directories,, +8:u06:"all, +8:u07:etc., +13:u00:criterion, +11:u06:owner",, +8:u05:"all, +8:u06:etc., +11:u14:owner",, +11:uI2:..,"",", +11:u05:owner",, +13:u08:5.8.2.31., +8:u04:"all, +8:u05:etc., +11:u13:owner",, +11:uI1:..,"",", +7:uI2:",., +11:u04:owner",, +7:u08:Raw, +8:u03:"all, +8:u04:etc., +11:u12:owner",, +11:uI0:..,"",", +7:uI1:",., +11:u03:owner",, +13:u07:5.8.2.31., +8:u02:"all, +8:u03:etc., +11:u11:owner",, +7:uI0:",., +11:u02:owner",, +13:u06:5.8.2.31., +7:u07:Raw, +8:u01:"all, +8:u02:etc., +11:u10:owner",, +13:u14:5.8.2.31., +11:u01:owner",, +13:u05:5.8.2.31., +7:u06:Raw, +8:u00:"all, +8:u01:etc., +13:u13:5.8.2.31., +7:u14:raw, +11:u00:owner",, +13:u04:5.8.2.31., +7:u05:Raw, +13:u08:5.8.2.32., +8:u00:etc., +11:u08:useful., +13:u12:5.8.2.31., +7:u13:raw, +13:u03:5.8.2.31., +7:u04:Raw, +8:u08:Disk, +11:u07:useful., +13:u11:5.8.2.31., +7:u12:raw, +6:u21:Ra, +7:u22:Raw, +7:u23:Raw, +13:u02:5.8.2.31., +7:u03:Raw, +13:u07:5.8.2.32., +11:u06:useful., +13:u10:5.8.2.31., +7:u11:raw, +13:u01:5.8.2.31., +7:u02:Raw, +13:u06:5.8.2.32., +8:u07:Disk, +13:u08:5.8.2.33., +11:u05:useful., +7:u10:raw, +13:u14:5.8.2.32., +13:u00:5.8.2.31., +7:u01:Raw, +13:u05:5.8.2.32., +8:u06:Disk, +11:u04:useful., +13:u13:5.8.2.32., +8:u14:disk, +7:u00:Raw, +13:u04:5.8.2.32., +8:u05:Disk, +13:u07:5.8.2.33., +11:u03:useful., +8:u08:disk, +13:u12:5.8.2.32., +8:u13:disk, +13:u03:5.8.2.32., +8:u04:Disk, +13:u06:5.8.2.33., +13:u08:5.8.2.34., +11:u02:useful., +8:u07:disk, +13:u11:5.8.2.32., +8:u12:disk, +13:u14:5.8.2.33., +8:u23:Disk, +13:u02:5.8.2.32., +8:u03:Disk, +13:u05:5.8.2.33., +11:u01:useful., +8:u06:disk, +13:u10:5.8.2.32., +8:u11:disk, +13:u13:5.8.2.33., +13:u01:5.8.2.32., +8:u02:Disk, +13:u04:5.8.2.33., +13:u07:5.8.2.34., +11:u00:useful., +8:u05:disk, +8:u10:disk, +13:u12:5.8.2.33., +13:u00:5.8.2.32., +8:u01:Disk, +13:u03:5.8.2.33., +13:u06:5.8.2.34., +8:u04:disk, +13:u11:5.8.2.33., +13:u14:5.8.2.34., +8:u00:Disk, +13:u02:5.8.2.33., +13:u05:5.8.2.34., +8:u03:disk, +13:u10:5.8.2.33., +13:u13:5.8.2.34., +13:u01:5.8.2.33., +13:u04:5.8.2.34., +8:u02:disk, +8:u08:117], +13:u12:5.8.2.34., +13:u00:5.8.2.33., +13:u03:5.8.2.34., +8:u01:disk, +8:u07:117], +13:u11:5.8.2.34., +13:u02:5.8.2.34., +8:u00:disk, +8:u06:117], +13:u10:5.8.2.34., +13:u01:5.8.2.34., +13:u08:5.8.2.35., +8:u05:117], +13:u00:5.8.2.34., +8:u04:117], +13:u07:5.8.2.35., +13:u08:5.8.2.36., +8:u03:117], +13:u06:5.8.2.35., +8:u02:117], +13:u14:5.8.2.35., +13:u05:5.8.2.35., +13:u07:5.8.2.36., +8:u01:117], +13:u13:5.8.2.35., +13:u04:5.8.2.35., +13:u06:5.8.2.36., +13:u08:5.8.2.37., +8:u00:117], +13:u12:5.8.2.35., +13:u14:5.8.2.36., +13:u03:5.8.2.35., +13:u05:5.8.2.36., +13:u11:5.8.2.35., +13:u13:5.8.2.36., +13:u02:5.8.2.35., +13:u04:5.8.2.36., +13:u07:5.8.2.37., +13:u10:5.8.2.35., +13:u12:5.8.2.36., +13:u01:5.8.2.35., +13:u03:5.8.2.36., +13:u06:5.8.2.37., +13:u11:5.8.2.36., +13:u14:5.8.2.37., +13:u00:5.8.2.35., +13:u02:5.8.2.36., +13:u05:5.8.2.37., +12:u08:"access", +13:u10:5.8.2.36., +13:u13:5.8.2.37., +13:u01:5.8.2.36., +13:u04:5.8.2.37., +12:u08:Portable, +12:u07:"access", +13:u12:5.8.2.37., +13:u00:5.8.2.36., +13:u03:5.8.2.37., +12:u06:"access", +13:u08:Operating, +13:u11:5.8.2.37., +13:u02:5.8.2.37., +12:u07:Portable, +12:u05:"access", +13:u07:Operating, +13:u10:5.8.2.37., +8:uI2:""'/, +13:u01:5.8.2.37., +12:u06:Portable, +9:u08:[15]., +12:u04:"access", +13:u06:Operating, +12:u14:portable, +8:uI1:""'/, +13:u00:5.8.2.37., +12:u05:Portable, +12:u03:"access", +13:u05:Operating, +12:u13:portable, +8:uI0:""'/, +12:u04:Portable, +9:u07:[15]., +12:u08:Whenever, +12:u02:"access", +13:u04:Operating, +12:u12:portable, +7:u22:Por, +8:u23:Port, +12:u03:Portable, +9:u06:[15]., +12:u01:"access", +13:u03:Operating, +12:u11:portable, +9:u14:[15]., +12:u02:Portable, +9:u05:[15]., +12:u07:Whenever, +12:u08:storage., +12:u00:"access", +13:u02:Operating, +12:u10:portable, +9:u13:[15]., +12:u01:Portable, +9:u04:[15]., +12:u06:Whenever, +13:u01:Operating, +9:u12:[15]., +12:u14:whenever, +6:u21:[1, +7:u22:[15, +8:u23:[15], +12:u00:Portable, +9:u03:[15]., +12:u05:Whenever, +12:u07:storage., +12:u08:object's, +13:u00:Operating, +9:u11:[15]., +12:u13:whenever, +9:u02:[15]., +12:u04:Whenever, +12:u06:storage., +9:u10:[15]., +12:u12:whenever, +12:u14:storage., +9:u01:[15]., +12:u03:Whenever, +12:u05:storage., +12:u07:object's, +12:u11:whenever, +12:u13:storage., +9:u00:[15]., +12:u02:Whenever, +12:u04:storage., +12:u06:object's, +12:u10:whenever, +12:u12:storage., +12:u14:object's, +12:u01:Whenever, +12:u03:storage., +12:u05:object's, +13:u08:5.8.2.38., +12:u08:updates., +12:u11:storage., +12:u13:object's, +11:u14:updates, +12:u00:Whenever, +12:u02:storage., +12:u04:object's, +8:u08:Sets, +12:u07:updates., +12:u10:storage., +12:u12:object's, +11:u13:updates, +12:u01:storage., +12:u03:object's, +13:u07:5.8.2.38., +13:u08:5.8.2.39., +12:u06:updates., +12:u11:object's, +11:u12:updates, +15:u14:time_access, +12:u00:storage., +12:u02:object's, +13:u06:5.8.2.38., +8:u07:Sets, +12:u05:updates., +12:u10:object's, +11:u11:updates, +15:u13:time_access, +13:u14:5.8.2.38., +12:u01:object's, +13:u05:5.8.2.38., +8:u06:Sets, +13:u07:5.8.2.39., +13:u08:5.8.2.40., +12:u04:updates., +11:u10:updates, +15:u12:time_access, +13:u13:5.8.2.38., +12:u00:object's, +13:u04:5.8.2.38., +8:u05:Sets, +13:u06:5.8.2.39., +12:u03:updates., +15:u11:time_access, +13:u12:5.8.2.38., +13:u14:5.8.2.39., +13:u03:5.8.2.38., +8:u04:Sets, +13:u05:5.8.2.39., +13:u07:5.8.2.40., +12:u08:relation, +12:u02:updates., +15:u10:time_access, +13:u11:5.8.2.38., +13:u13:5.8.2.39., +8:u23:Sets, +13:u02:5.8.2.38., +8:u03:Sets, +13:u04:5.8.2.39., +13:u06:5.8.2.40., +10:u08:time"., +12:u01:updates., +13:u10:5.8.2.38., +13:u12:5.8.2.39., +13:u14:5.8.2.40., +13:u01:5.8.2.38., +8:u02:Sets, +13:u03:5.8.2.39., +13:u05:5.8.2.40., +12:u07:relation, +12:u00:updates., +13:u11:5.8.2.39., +13:u13:5.8.2.40., +13:u00:5.8.2.38., +8:u01:Sets, +13:u02:5.8.2.39., +13:u04:5.8.2.40., +12:u06:relation, +10:u07:time"., +13:u10:5.8.2.39., +13:u12:5.8.2.40., +12:u14:relation, +8:u00:Sets, +13:u01:5.8.2.39., +13:u03:5.8.2.40., +12:u05:relation, +10:u06:time"., +13:u11:5.8.2.40., +12:u13:relation, +10:u14:time"., +7:uI2:""", +13:u00:5.8.2.39., +13:u02:5.8.2.40., +12:u04:relation, +10:u05:time"., +8:u08:118], +13:u10:5.8.2.40., +12:u12:relation, +10:u13:time"., +7:uI1:""", +13:u01:5.8.2.40., +12:u03:relation, +10:u04:time"., +8:u07:118], +12:u11:relation, +10:u12:time"., +7:uI0:""", +13:u00:5.8.2.40., +12:u02:relation, +10:u03:time"., +8:u06:118], +12:u10:relation, +10:u11:time"., +12:u01:relation, +10:u02:time"., +13:u08:5.8.2.41., +8:u05:118], +10:u10:time"., +12:u00:relation, +10:u01:time"., +12:u08:Smallest, +8:u04:118], +10:u00:time"., +13:u07:5.8.2.41., +13:u08:5.8.2.42., +8:u03:118], +13:u06:5.8.2.41., +12:u07:Smallest, +8:u02:118], +13:u14:5.8.2.41., +13:u05:5.8.2.41., +12:u06:Smallest, +13:u07:5.8.2.42., +13:u08:5.8.2.43., +8:u01:118], +13:u13:5.8.2.41., +12:u14:smallest, +13:u04:5.8.2.41., +12:u05:Smallest, +13:u06:5.8.2.42., +8:u00:118], +13:u12:5.8.2.41., +12:u13:smallest, +13:u14:5.8.2.42., +13:u03:5.8.2.41., +12:u04:Smallest, +13:u05:5.8.2.42., +13:u07:5.8.2.43., +13:u08:5.8.2.44., +13:u11:5.8.2.41., +12:u12:smallest, +13:u13:5.8.2.42., +6:u21:Sm, +7:u22:Sma, +8:u23:Smal, +13:u02:5.8.2.41., +12:u03:Smallest, +13:u04:5.8.2.42., +13:u06:5.8.2.43., +13:u10:5.8.2.41., +12:u11:smallest, +13:u12:5.8.2.42., +13:u14:5.8.2.43., +13:u01:5.8.2.41., +12:u02:Smallest, +13:u03:5.8.2.42., +13:u05:5.8.2.43., +13:u07:5.8.2.44., +12:u10:smallest, +13:u11:5.8.2.42., +13:u13:5.8.2.43., +13:u00:5.8.2.41., +12:u01:Smallest, +13:u02:5.8.2.42., +13:u04:5.8.2.43., +13:u06:5.8.2.44., +13:u10:5.8.2.42., +13:u12:5.8.2.43., +13:u14:5.8.2.44., +12:u00:Smallest, +13:u01:5.8.2.42., +13:u03:5.8.2.43., +13:u05:5.8.2.44., +13:u11:5.8.2.43., +13:u13:5.8.2.44., +13:u00:5.8.2.42., +13:u02:5.8.2.43., +13:u04:5.8.2.44., +13:u10:5.8.2.43., +13:u12:5.8.2.44., +13:u01:5.8.2.43., +13:u03:5.8.2.44., +14:u08:underlying, +13:u11:5.8.2.44., +13:u00:5.8.2.43., +13:u02:5.8.2.44., +13:u10:5.8.2.44., +9:uI2:""""(, +13:u01:5.8.2.44., +14:u07:underlying, +9:u14:utf-8, +9:uI1:""""(, +7:uI2:""), +13:u00:5.8.2.44., +14:u06:underlying, +9:u13:utf-8, +14:u14:underlying, +9:uI0:""""(, +7:uI1:""), +14:u05:underlying, +9:u12:utf-8, +14:u13:underlying, +6:u21:UT, +7:u22:UTF, +8:u23:UTF-, +7:uI0:""), +14:u04:underlying, +9:u08:user., +9:u11:utf-8, +14:u12:underlying, +9:uI2:-..[], +14:u03:underlying, +15:u08:transferred, +9:u10:utf-8, +14:u11:underlying, +9:uI1:-..[], +14:u02:underlying, +9:u07:user., +14:u10:underlying, +15:u14:owner_group, +9:uI0:-..[], +14:u01:underlying, +9:u06:user., +15:u07:transferred, +14:u08:translated, +15:u13:owner_group, +9:u14:user., +14:u00:underlying, +9:u05:user., +15:u06:transferred, +18:u08:representation, +14:u07:translated, +15:u12:owner_group, +9:u13:user., +15:u14:transferred, +9:u04:user., +15:u05:transferred, +14:u06:translated, +15:u11:owner_group, +9:u12:user., +15:u13:transferred, +9:u03:user., +15:u04:transferred, +18:u07:representation, +14:u05:translated, +15:u08:interpreted, +15:u10:owner_group, +9:u11:user., +15:u12:transferred, +9:u02:user., +15:u03:transferred, +18:u06:representation, +14:u04:translated, +15:u07:interpreted, +9:u10:user., +15:u11:transferred, +9:u01:user., +15:u02:transferred, +18:u05:representation, +19:u08:representations, +14:u03:translated, +15:u06:interpreted, +15:u10:transferred, +9:u00:user., +15:u01:transferred, +18:u04:representation, +14:u02:translated, +15:u05:interpreted, +14:u14:similarly,, +15:u00:transferred, +18:u03:representation, +19:u07:representations, +14:u01:translated, +15:u04:interpreted, +14:u13:similarly,, +18:u02:representation, +19:u06:representations, +14:u00:translated, +15:u03:interpreted, +14:u12:similarly,, +19:u14:representations, +8:u23:Simi, +18:u01:representation, +19:u05:representations, +15:u02:interpreted, +14:u11:similarly,, +19:u13:representations, +12:u14:storage,, +18:u00:representation, +19:u04:representations, +15:u01:interpreted, +14:u10:similarly,, +19:u12:representations, +12:u13:storage,, +19:u03:representations, +15:u00:interpreted, +19:u11:representations, +12:u12:storage,, +14:u14:translated, +19:u02:representations, +19:u10:representations, +12:u11:storage,, +14:u13:translated, +19:u01:representations, +12:u10:storage,, +14:u12:translated, +19:u00:representations, +13:u08:employed., +14:u11:translated, +13:u07:employed., +14:u10:translated, +13:u06:employed., +13:u05:employed., +13:u04:employed., +13:u03:employed., +13:u02:employed., +8:u08:119], +13:u01:employed., +8:u07:119], +13:u00:employed., +8:u06:119], +8:u05:119], +12:u08:strings), +8:u04:119], +8:u03:119], +12:u07:strings), +8:u02:119], +15:u14:translation, +12:u06:strings), +8:u01:119], +15:u13:translation, +12:u14:strings), +12:u05:strings), +8:u00:119], +15:u12:translation, +12:u13:strings), +12:u04:strings), +15:u11:translation, +12:u12:strings), +12:u03:strings), +15:u10:translation, +12:u11:strings), +12:u02:strings), +22:u08:(NFS4ERR_BADOWNER), +12:u10:strings), +12:u01:strings), +16:u08:translation,, +12:u00:strings), +22:u07:(NFS4ERR_BADOWNER), +22:u06:(NFS4ERR_BADOWNER), +16:u07:translation,, +22:u14:(nfs4err_badowner), +22:u05:(NFS4ERR_BADOWNER), +16:u06:translation,, +22:u13:(nfs4err_badowner), +16:u14:translation,, +22:u04:(NFS4ERR_BADOWNER), +16:u05:translation,, +22:u12:(nfs4err_badowner), +16:u13:translation,, +22:u03:(NFS4ERR_BADOWNER), +16:u04:translation,, +22:u11:(nfs4err_badowner), +16:u12:translation,, +22:u02:(NFS4ERR_BADOWNER), +16:u03:translation,, +14:u08:(including, +22:u10:(nfs4err_badowner), +16:u11:translation,, +22:u01:(NFS4ERR_BADOWNER), +16:u02:translation,, +14:u07:(including, +19:u08:representation), +16:u10:translation,, +22:u00:(NFS4ERR_BADOWNER), +16:u01:translation,, +14:u06:(including, +19:u07:representation), +16:u00:translation,, +14:u05:(including, +19:u06:representation), +14:u04:(including, +19:u05:representation), +7:uI2:)-(, +14:u03:(including, +19:u04:representation), +7:uI1:)-(, +14:u02:(including, +19:u03:representation), +16:u08:"dns_domain", +7:uI0:)-(, +14:u01:(including, +19:u02:representation), +16:u07:"dns_domain", +9:u08:name,, +14:u00:(including, +19:u01:representation), +16:u06:"dns_domain", +9:u07:name,, +19:u00:representation), +16:u05:"dns_domain", +9:u06:name,, +11:u08:domains, +16:u04:"dns_domain", +9:u05:name,, +11:u07:domains, +9:u14:valid, +16:u08:constraints., +16:u03:"dns_domain", +9:u04:name,, +11:u06:domains, +12:u08:domains,, +9:u13:valid, +16:u02:"dns_domain", +9:u03:name,, +11:u05:domains, +12:u07:domains,, +9:u12:valid, +16:u07:constraints., +16:u01:"dns_domain", +9:u02:name,, +11:u04:domains, +12:u06:domains,, +9:u11:valid, +16:u06:constraints., +16:u00:"dns_domain", +9:u01:name,, +11:u03:domains, +12:u05:domains,, +9:u10:valid, +16:u14:constraints., +16:u05:constraints., +9:u00:name,, +11:u02:domains, +12:u04:domains,, +16:u13:constraints., +16:u04:constraints., +11:u01:domains, +12:u03:domains,, +13:u08:signifies, +16:u12:constraints., +16:u03:constraints., +11:u00:domains, +12:u02:domains,, +13:u07:signifies, +16:u11:constraints., +16:u02:constraints., +12:u01:domains,, +13:u06:signifies, +9:u08:basis, +16:u10:constraints., +16:u01:constraints., +12:u00:domains,, +13:u05:signifies, +9:u07:basis, +16:u00:constraints., +11:u08:display, +13:u04:signifies, +9:u06:basis, +13:u03:signifies, +9:u05:basis, +11:u07:display, +13:u02:signifies, +9:u04:basis, +11:u06:display, +13:u01:signifies, +9:u03:basis, +11:u14:display, +11:u05:display, +11:u08:numeric, +13:u00:signifies, +9:u02:basis, +11:u13:display, +11:u04:display, +18:u08:interpretation, +9:u01:basis, +11:u12:display, +8:u23:disp, +11:u03:display, +11:u07:numeric, +12:u08:support., +9:u00:basis, +11:u11:display, +11:u02:display, +11:u06:numeric, +18:u07:interpretation, +11:u10:display, +11:u14:numeric, +11:u01:display, +11:u05:numeric, +18:u06:interpretation, +12:u07:support., +7:u08:gid, +11:u13:numeric, +18:u14:interpretation, +11:u00:display, +11:u04:numeric, +18:u05:interpretation, +12:u06:support., +11:u12:numeric, +18:u13:interpretation, +12:u14:support., +8:u23:nume, +11:u03:numeric, +18:u04:interpretation, +12:u05:support., +7:u07:gid, +11:u11:numeric, +18:u12:interpretation, +12:u13:support., +11:u02:numeric, +18:u03:interpretation, +12:u04:support., +7:u06:gid, +11:u10:numeric, +18:u11:interpretation, +12:u12:support., +7:u14:gid, +11:u01:numeric, +18:u02:interpretation, +12:u03:support., +7:u05:gid, +8:u08:120], +18:u10:interpretation, +12:u11:support., +7:u13:gid, +11:u00:numeric, +18:u01:interpretation, +12:u02:support., +7:u04:gid, +8:u07:120], +12:u10:support., +7:u12:gid, +7:u22:gid, +7:u23:gid, +18:u00:interpretation, +12:u01:support., +7:u03:gid, +8:u06:120], +7:u11:gid, +12:u00:support., +7:u02:gid, +13:u08:obligated, +8:u05:120], +7:u10:gid, +7:u01:gid, +12:u08:instead., +8:u04:120], +7:u00:gid, +13:u07:obligated, +8:u03:120], +13:u06:obligated, +12:u07:instead., +8:u02:120], +13:u14:obligated, +13:u05:obligated, +12:u06:instead., +8:u01:120], +13:u13:obligated, +12:u14:instead., +13:u04:obligated, +12:u05:instead., +14:u08:designated, +8:u00:120], +13:u12:obligated, +12:u13:instead., +7:u22:obl, +8:u23:obli, +13:u03:obligated, +12:u04:instead., +13:u11:obligated, +12:u12:instead., +13:u02:obligated, +12:u03:instead., +14:u07:designated, +18:u08:compatibility., +15:u08:name@domain, +13:u10:obligated, +12:u11:instead., +13:u01:obligated, +12:u02:instead., +14:u06:designated, +15:u07:name@domain, +12:u10:instead., +14:u14:designated, +13:u00:obligated, +12:u01:instead., +14:u05:designated, +18:u07:compatibility., +15:u06:name@domain, +14:u13:designated, +12:u00:instead., +14:u04:designated, +18:u06:compatibility., +15:u05:name@domain, +14:u12:designated, +18:u14:compatibility., +14:u03:designated, +18:u05:compatibility., +15:u04:name@domain, +14:u11:designated, +18:u13:compatibility., +14:u02:designated, +18:u04:compatibility., +13:u08:designate, +15:u03:name@domain, +14:u10:designated, +18:u12:compatibility., +14:u01:designated, +18:u03:compatibility., +15:u02:name@domain, +18:u11:compatibility., +14:u00:designated, +18:u02:compatibility., +13:u07:designate, +15:u01:name@domain, +18:u10:compatibility., +18:u01:compatibility., +13:u06:designate, +15:u00:name@domain, +13:u14:designate, +18:u00:compatibility., +13:u05:designate, +9:u08:UCS-4, +13:u13:designate, +13:u04:designate, +9:u07:UCS-4, +7:u08:B.2, +13:u12:designate, +13:u03:designate, +9:u06:UCS-4, +7:u07:B.2, +11:u08:issues,, +13:u11:designate, +13:u02:designate, +9:u05:UCS-4, +7:u06:B.2, +11:u07:issues,, +13:u10:designate, +13:u01:designate, +9:u04:UCS-4, +7:u05:B.2, +11:u06:issues,, +13:u00:designate, +9:u03:UCS-4, +7:u04:B.2, +11:u05:issues,, +17:u08:notifications, +9:u02:UCS-4, +7:u03:B.2, +11:u04:issues,, +17:u07:notifications, +9:u01:UCS-4, +7:u02:B.2, +11:u03:issues,, +17:u06:notifications, +16:u08:notification, +9:u00:UCS-4, +7:u01:B.2, +11:u02:issues,, +17:u05:notifications, +16:u07:notification, +10:u14:ignore, +7:u00:B.2, +11:u01:issues,, +17:u04:notifications, +16:u06:notification, +10:u13:ignore, +11:u00:issues,, +17:u03:notifications, +16:u05:notification, +8:u08:asks, +10:u12:ignore, +6:u21:ig, +7:u22:ign, +8:u23:igno, +17:u02:notifications, +16:u04:notification, +8:u07:asks, +10:u08:delays, +10:u11:ignore, +11:u08:5.11.1., +17:u01:notifications, +16:u03:notification, +8:u06:asks, +10:u07:delays, +10:u10:ignore, +17:u00:notifications, +16:u02:notification, +8:u05:asks, +10:u06:delays, +16:u14:notification, +11:u07:5.11.1., +16:u01:notification, +8:u04:asks, +10:u05:delays, +16:u13:notification, +11:u06:5.11.1., +15:u08:directory's, +16:u00:notification, +8:u03:asks, +10:u04:delays, +16:u12:notification, +11:u14:5.11.1., +11:u05:5.11.1., +11:u08:5.11.2., +8:u02:asks, +10:u03:delays, +16:u11:notification, +11:u13:5.11.1., +8:uI2:...:, +11:u04:5.11.1., +15:u07:directory's, +8:u01:asks, +10:u02:delays, +16:u10:notification, +11:u12:5.11.1., +8:uI1:...:, +11:u03:5.11.1., +15:u06:directory's, +11:u07:5.11.2., +8:u00:asks, +10:u01:delays, +11:u11:5.11.1., +15:u14:directory's, +8:uI0:...:, +11:u02:5.11.1., +15:u05:directory's, +11:u06:5.11.2., +10:u00:delays, +11:u10:5.11.1., +15:u13:directory's, +11:u14:5.11.2., +11:u01:5.11.1., +15:u04:directory's, +11:u05:5.11.2., +15:u12:directory's, +11:u13:5.11.2., +11:u00:5.11.1., +15:u03:directory's, +11:u04:5.11.2., +15:u11:directory's, +11:u12:5.11.2., +15:u02:directory's, +11:u03:5.11.2., +15:u10:directory's, +11:u11:5.11.2., +15:u01:directory's, +11:u02:5.11.2., +8:u08:121], +11:u10:5.11.2., +15:u00:directory's, +11:u01:5.11.2., +8:u07:121], +11:u00:5.11.2., +8:u06:121], +8:u05:121], +11:u08:5.12.1., +8:u04:121], +8:u03:121], +11:u07:5.12.1., +8:u02:121], +11:u06:5.12.1., +8:u01:121], +11:u14:5.12.1., +11:u05:5.12.1., +8:u00:121], +11:u13:5.12.1., +11:u04:5.12.1., +11:u12:5.12.1., +11:u03:5.12.1., +11:u11:5.12.1., +11:u02:5.12.1., +11:u10:5.12.1., +11:u01:5.12.1., +11:u08:5.12.2., +11:u00:5.12.1., +11:u07:5.12.2., +11:u06:5.12.2., +11:u14:5.12.2., +11:u05:5.12.2., +11:u13:5.12.2., +11:u04:5.12.2., +11:u12:5.12.2., +20:u14:layout_alignment, +11:u03:5.12.2., +11:u08:5.12.3., +11:u11:5.12.2., +20:u13:layout_alignment, +11:u02:5.12.2., +11:u10:5.12.2., +20:u12:layout_alignment, +11:u01:5.12.2., +11:u07:5.12.3., +20:u11:layout_alignment, +11:u00:5.12.2., +11:u06:5.12.3., +20:u10:layout_alignment, +11:u14:5.12.3., +11:u05:5.12.3., +11:u13:5.12.3., +11:u04:5.12.3., +11:u12:5.12.3., +18:u14:layout_blksize, +11:u03:5.12.3., +11:u11:5.12.3., +18:u13:layout_blksize, +11:u02:5.12.3., +11:u08:5.12.4., +11:u10:5.12.3., +18:u12:layout_blksize, +11:u01:5.12.3., +18:u11:layout_blksize, +11:u00:5.12.3., +11:u07:5.12.4., +18:u10:layout_blksize, +11:u06:5.12.4., +10:u08:file's, +11:u14:5.12.4., +11:u05:5.12.4., +11:u08:layout., +11:u13:5.12.4., +11:u04:5.12.4., +10:u07:file's, +11:u07:layout., +11:u12:5.12.4., +11:u03:5.12.4., +10:u06:file's, +11:u06:layout., +11:u11:5.12.4., +10:u14:file's, +11:u02:5.12.4., +10:u05:file's, +11:u05:layout., +11:u10:5.12.4., +10:u13:file's, +11:u01:5.12.4., +10:u04:file's, +11:u04:layout., +10:u12:file's, +11:u00:5.12.4., +10:u03:file's, +11:u03:layout., +10:u11:file's, +10:u02:file's, +11:u02:layout., +10:u10:file's, +10:u01:file's, +11:u08:5.12.5., +11:u01:layout., +10:u00:file's, +11:u00:layout., +11:u07:5.12.5., +11:u06:5.12.5., +11:u14:5.12.5., +11:u05:5.12.5., +11:u13:5.12.5., +11:u04:5.12.5., +11:u12:5.12.5., +11:u03:5.12.5., +11:u11:5.12.5., +11:u02:5.12.5., +8:u08:122], +11:u10:5.12.5., +11:u01:5.12.5., +8:u07:122], +11:u00:5.12.5., +8:u06:122], +8:u05:122], +8:u04:122], +11:u08:5.12.6., +8:u03:122], +8:u02:122], +11:u07:5.12.6., +8:u01:122], +7:uI2:/,,, +11:u06:5.12.6., +8:u00:122], +11:u14:5.12.6., +7:uI1:/,,, +11:u05:5.12.6., +11:u13:5.12.6., +7:uI0:/,,, +11:u04:5.12.6., +11:u12:5.12.6., +11:u03:5.12.6., +11:u11:5.12.6., +11:u02:5.12.6., +11:u10:5.12.6., +11:u01:5.12.6., +11:u00:5.12.6., +7:uI2:/,/, +7:uI1:/,/, +7:uI0:/,/, +14:u08:thresholds, +10:u14:exceed, +14:u07:thresholds, +10:u13:exceed, +14:u06:thresholds, +10:u12:exceed, +14:u14:thresholds, +14:u05:thresholds, +10:u11:exceed, +14:u13:thresholds, +14:u04:thresholds, +10:u10:exceed, +14:u12:thresholds, +14:u03:thresholds, +14:u11:thresholds, +14:u02:thresholds, +14:u10:thresholds, +14:u01:thresholds, +14:u00:thresholds, +16:u08:filehandle's, +11:u08:queried, +16:u07:filehandle's, +16:u06:filehandle's, +11:u07:queried, +12:u08:constant, +16:u14:filehandle's, +16:u05:filehandle's, +11:u06:queried, +16:u08:periodically, +16:u13:filehandle's, +11:u14:queried, +16:u04:filehandle's, +11:u05:queried, +12:u07:constant, +14:u08:refreshed., +16:u12:filehandle's, +11:u13:queried, +12:u14:changes,, +16:u03:filehandle's, +11:u04:queried, +12:u06:constant, +16:u07:periodically, +14:u07:refreshed., +16:u11:filehandle's, +11:u12:queried, +12:u13:changes,, +12:u14:constant, +7:u22:que, +8:u23:quer, +16:u02:filehandle's, +11:u03:queried, +12:u05:constant, +16:u06:periodically, +14:u08:immutable,, +14:u06:refreshed., +16:u10:filehandle's, +11:u11:queried, +12:u12:changes,, +12:u13:constant, +16:u14:periodically, +16:u01:filehandle's, +11:u02:queried, +12:u04:constant, +16:u05:periodically, +14:u05:refreshed., +16:u08:undeletable,, +11:u10:queried, +12:u11:changes,, +12:u12:constant, +16:u13:periodically, +16:u00:filehandle's, +11:u01:queried, +12:u03:constant, +16:u04:periodically, +14:u07:immutable,, +9:u08:moved, +14:u04:refreshed., +16:u07:undeletable,, +12:u10:changes,, +12:u11:constant, +16:u12:periodically, +13:u14:retention, +11:u00:queried, +12:u02:constant, +16:u03:periodically, +14:u06:immutable,, +12:u08:reached., +14:u03:refreshed., +16:u06:undeletable,, +12:u10:constant, +16:u11:periodically, +13:u13:retention, +14:u14:immutable,, +12:u01:constant, +16:u02:periodically, +14:u05:immutable,, +9:u07:moved, +14:u02:refreshed., +16:u05:undeletable,, +16:u10:periodically, +13:u12:retention, +14:u13:immutable,, +7:u22:Ret, +8:u23:Rete, +12:u00:constant, +16:u01:periodically, +14:u04:immutable,, +9:u06:moved, +12:u07:reached., +14:u01:refreshed., +16:u04:undeletable,, +13:u08:retention, +13:u11:retention, +14:u12:immutable,, +9:u14:moved, +8:u23:immu, +16:u00:periodically, +14:u03:immutable,, +9:u05:moved, +12:u06:reached., +14:u00:refreshed., +16:u03:undeletable,, +13:u07:retention, +13:u10:retention, +14:u11:immutable,, +9:u13:moved, +12:u14:reached., +8:u23:dura, +14:u02:immutable,, +9:u04:moved, +12:u05:reached., +16:u02:undeletable,, +13:u06:retention, +12:u08:property, +14:u10:immutable,, +9:u12:moved, +12:u13:reached., +14:u01:immutable,, +9:u03:moved, +12:u04:reached., +16:u01:undeletable,, +13:u05:retention, +12:u07:property, +9:u11:moved, +12:u12:reached., +14:u00:immutable,, +9:u02:moved, +12:u03:reached., +16:u00:undeletable,, +13:u04:retention, +12:u06:property, +9:u10:moved, +12:u11:reached., +9:u01:moved, +12:u02:reached., +13:u03:retention, +12:u05:property, +8:u08:123], +12:u10:reached., +9:u00:moved, +12:u01:reached., +13:u02:retention, +12:u04:property, +8:u07:123], +12:u00:reached., +13:u01:retention, +12:u03:property, +8:u06:123], +13:u00:retention, +12:u02:property, +8:u05:123], +12:u01:property, +8:u04:123], +12:u00:property, +8:u03:123], +8:u02:123], +11:u08:5.13.1., +8:u01:123], +8:u08:five, +8:u00:123], +8:u07:five, +11:u07:5.13.1., +8:u06:five, +11:u06:5.13.1., +15:u08:attribute's, +8:u05:five, +11:u14:5.13.1., +11:u05:5.13.1., +8:u04:five, +11:u13:5.13.1., +11:u04:5.13.1., +15:u07:attribute's, +8:u03:five, +11:u12:5.13.1., +11:u03:5.13.1., +15:u06:attribute's, +8:u02:five, +11:u11:5.13.1., +15:u14:attribute's, +11:u02:5.13.1., +15:u05:attribute's, +8:u01:five, +26:u08:RET4_DURATION_INFINITE, +11:u10:5.13.1., +15:u13:attribute's, +11:u01:5.13.1., +15:u04:attribute's, +8:u00:five, +26:u07:RET4_DURATION_INFINITE, +15:u12:attribute's, +11:u00:5.13.1., +15:u03:attribute's, +26:u06:RET4_DURATION_INFINITE, +18:u08:retention_get4, +15:u11:attribute's, +15:u02:attribute's, +16:u08:rg_duration;, +26:u05:RET4_DURATION_INFINITE, +18:u07:retention_get4, +15:u10:attribute's, +15:u01:attribute's, +26:u04:RET4_DURATION_INFINITE, +18:u06:retention_get4, +15:u00:attribute's, +16:u07:rg_duration;, +21:u08:rg_begin_time<1>;, +26:u03:RET4_DURATION_INFINITE, +18:u05:retention_get4, +16:u06:rg_duration;, +26:u02:RET4_DURATION_INFINITE, +18:u04:retention_get4, +16:u14:rg_duration;, +16:u05:rg_duration;, +21:u07:rg_begin_time<1>;, +26:u01:RET4_DURATION_INFINITE, +18:u03:retention_get4, +16:u13:rg_duration;, +16:u04:rg_duration;, +21:u06:rg_begin_time<1>;, +26:u00:RET4_DURATION_INFINITE, +18:u02:retention_get4, +16:u12:rg_duration;, +21:u14:rg_begin_time<1>;, +6:u21:rg, +7:u22:rg_, +8:u23:rg_d, +16:u03:rg_duration;, +21:u05:rg_begin_time<1>;, +17:u08:rg_begin_time, +18:u01:retention_get4, +16:u11:rg_duration;, +21:u13:rg_begin_time<1>;, +16:u02:rg_duration;, +21:u04:rg_begin_time<1>;, +18:u00:retention_get4, +16:u10:rg_duration;, +21:u12:rg_begin_time<1>;, +8:u23:rg_b, +16:u01:rg_duration;, +21:u03:rg_begin_time<1>;, +17:u07:rg_begin_time, +21:u11:rg_begin_time<1>;, +16:u00:rg_duration;, +21:u02:rg_begin_time<1>;, +17:u06:rg_begin_time, +21:u10:rg_begin_time<1>;, +17:u14:rg_begin_time, +21:u01:rg_begin_time<1>;, +17:u05:rg_begin_time, +27:u08:RET4_DURATION_INFINITE,, +17:u13:rg_begin_time, +9:u14:array, +21:u00:rg_begin_time<1>;, +17:u04:rg_begin_time, +27:u07:RET4_DURATION_INFINITE,, +12:u08:retained, +17:u12:rg_begin_time, +9:u13:array, +17:u03:rg_begin_time, +27:u06:RET4_DURATION_INFINITE,, +12:u07:retained, +17:u11:rg_begin_time, +9:u12:array, +7:u22:arr, +8:u23:arra, +17:u02:rg_begin_time, +11:u08:5.13.2., +27:u05:RET4_DURATION_INFINITE,, +12:u06:retained, +11:u08:length,, +17:u10:rg_begin_time, +9:u11:array, +17:u01:rg_begin_time, +27:u04:RET4_DURATION_INFINITE,, +12:u05:retained, +11:u07:length,, +9:u10:array, +17:u00:rg_begin_time, +11:u07:5.13.2., +27:u03:RET4_DURATION_INFINITE,, +12:u04:retained, +11:u06:length,, +11:u06:5.13.2., +27:u02:RET4_DURATION_INFINITE,, +12:u03:retained, +11:u05:length,, +11:u14:5.13.2., +9:uI2:,,()., +11:u05:5.13.2., +27:u01:RET4_DURATION_INFINITE,, +12:u02:retained, +11:u04:length,, +14:u08:modifiable, +11:u13:5.13.2., +9:uI1:,,()., +11:u04:5.13.2., +27:u00:RET4_DURATION_INFINITE,, +12:u01:retained, +11:u03:length,, +14:u07:modifiable, +11:u12:5.13.2., +9:uI0:,,()., +11:u03:5.13.2., +12:u00:retained, +11:u02:length,, +14:u06:modifiable, +18:u08:retention_get., +11:u11:5.13.2., +11:u02:5.13.2., +11:u01:length,, +14:u05:modifiable, +18:u07:retention_get., +18:u08:retention_set4, +11:u10:5.13.2., +11:u01:5.13.2., +14:u08:rs_enable;, +11:u00:length,, +14:u04:modifiable, +18:u06:retention_get., +18:u07:retention_set4, +11:u00:5.13.2., +14:u03:modifiable, +18:u05:retention_get., +18:u06:retention_set4, +14:u07:rs_enable;, +19:u08:rs_duration<1>;, +14:u02:modifiable, +18:u04:retention_get., +18:u05:retention_set4, +14:u06:rs_enable;, +14:u01:modifiable, +18:u03:retention_get., +18:u04:retention_set4, +14:u14:rs_enable;, +14:u05:rs_enable;, +19:u07:rs_duration<1>;, +14:u00:modifiable, +18:u02:retention_get., +18:u03:retention_set4, +14:u13:rs_enable;, +14:u04:rs_enable;, +19:u06:rs_duration<1>;, +18:u01:retention_get., +18:u02:retention_set4, +14:u12:rs_enable;, +19:u14:rs_duration<1>;, +7:u22:rs_, +8:u23:rs_e, +14:u03:rs_enable;, +19:u05:rs_duration<1>;, +18:u00:retention_get., +18:u01:retention_set4, +14:u11:rs_enable;, +19:u13:rs_duration<1>;, +14:u02:rs_enable;, +19:u04:rs_duration<1>;, +18:u00:retention_set4, +14:u10:rs_enable;, +19:u12:rs_duration<1>;, +8:u23:rs_d, +14:u01:rs_enable;, +19:u03:rs_duration<1>;, +19:u11:rs_duration<1>;, +14:u00:rs_enable;, +19:u02:rs_duration<1>;, +19:u10:rs_duration<1>;, +19:u01:rs_duration<1>;, +8:u08:124], +19:u00:rs_duration<1>;, +8:u07:124], +8:u06:124], +8:u05:124], +8:u04:124], +8:u03:124], +8:u02:124], +11:u08:SETATTR, +8:u01:124], +8:u00:124], +11:u07:SETATTR, +11:u06:SETATTR, +11:u14:setattr, +11:u05:SETATTR, +12:u08:enabling, +11:u13:setattr, +11:u04:SETATTR, +12:u07:enabling, +11:u12:setattr, +8:u23:SETA, +11:u03:SETATTR, +12:u06:enabling, +11:u11:setattr, +11:u02:SETATTR, +12:u05:enabling, +11:u10:setattr, +11:u01:SETATTR, +12:u08:decrease, +12:u04:enabling, +11:u00:SETATTR, +12:u03:enabling, +12:u07:decrease, +12:u02:enabling, +12:u06:decrease, +12:u01:enabling, +12:u14:decrease, +12:u05:decrease, +15:u08:attributes;, +12:u00:enabling, +12:u13:decrease, +12:u04:decrease, +12:u08:counting, +12:u12:decrease, +7:u22:dec, +8:u23:decr, +12:u03:decrease, +15:u07:attributes;, +12:u11:decrease, +12:u02:decrease, +15:u06:attributes;, +12:u07:counting, +12:u10:decrease, +15:u14:attributes;, +12:u01:decrease, +15:u05:attributes;, +12:u06:counting, +15:u13:attributes;, +12:u14:counting, +10:uI2:;....), +12:u00:decrease, +15:u04:attributes;, +12:u05:counting, +15:u12:attributes;, +12:u13:counting, +10:uI1:;....), +15:u03:attributes;, +12:u04:counting, +15:u11:attributes;, +12:u12:counting, +8:u23:coun, +10:uI0:;....), +15:u02:attributes;, +12:u03:counting, +18:u08:NFS4ERR_INVAL., +15:u10:attributes;, +12:u11:counting, +15:u01:attributes;, +12:u02:counting, +12:u10:counting, +15:u00:attributes;, +12:u01:counting, +18:u07:NFS4ERR_INVAL., +12:u00:counting, +18:u06:NFS4ERR_INVAL., +18:u14:nfs4err_inval., +18:u05:NFS4ERR_INVAL., +11:u08:5.13.3., +18:u13:nfs4err_inval., +18:u04:NFS4ERR_INVAL., +8:u08:Gets, +18:u12:nfs4err_inval., +17:u14:retentevt_set, +18:u03:NFS4ERR_INVAL., +11:u07:5.13.3., +18:u11:nfs4err_inval., +17:u13:retentevt_set, +18:u02:NFS4ERR_INVAL., +11:u06:5.13.3., +8:u07:Gets, +18:u10:nfs4err_inval., +17:u12:retentevt_set, +11:u14:5.13.3., +18:u01:NFS4ERR_INVAL., +11:u05:5.13.3., +8:u06:Gets, +18:u08:retention_get,, +17:u11:retentevt_set, +11:u13:5.13.3., +8:u14:gets, +18:u00:NFS4ERR_INVAL., +11:u04:5.13.3., +8:u05:Gets, +18:u08:specification., +18:u07:retention_get,, +12:u08:triggers, +17:u10:retentevt_set, +11:u12:5.13.3., +8:u13:gets, +8:uI2:-,,-, +11:u03:5.13.3., +8:u04:Gets, +11:u08:5.13.4., +18:u06:retention_get,, +12:u07:triggers, +11:u11:5.13.3., +8:u12:gets, +7:u22:Get, +8:u23:Gets, +8:uI1:-,,-, +11:u02:5.13.3., +8:u03:Gets, +18:u07:specification., +18:u05:retention_get,, +12:u06:triggers, +11:u10:5.13.3., +8:u11:gets, +8:uI0:-,,-, +11:u01:5.13.3., +8:u02:Gets, +18:u06:specification., +11:u07:5.13.4., +15:u08:event-based, +18:u04:retention_get,, +12:u05:triggers, +8:u10:gets, +18:u14:specification., +11:u00:5.13.3., +8:u01:Gets, +18:u05:specification., +11:u06:5.13.4., +18:u03:retention_get,, +12:u04:triggers, +18:u13:specification., +11:u14:5.13.4., +8:u00:Gets, +18:u04:specification., +11:u05:5.13.4., +15:u07:event-based, +14:u08:retention., +18:u02:retention_get,, +12:u03:triggers, +18:u12:specification., +11:u13:5.13.4., +18:u03:specification., +11:u04:5.13.4., +15:u06:event-based, +18:u01:retention_get,, +12:u02:triggers, +18:u11:specification., +11:u12:5.13.4., +15:u14:event-based, +18:u02:specification., +11:u03:5.13.4., +15:u05:event-based, +14:u07:retention., +18:u00:retention_get,, +12:u01:triggers, +18:u10:specification., +11:u11:5.13.4., +15:u13:event-based, +18:u01:specification., +11:u02:5.13.4., +15:u04:event-based, +14:u06:retention., +12:u00:triggers, +11:u10:5.13.4., +15:u12:event-based, +14:u14:retention., +18:u00:specification., +11:u01:5.13.4., +15:u03:event-based, +14:u05:retention., +15:u11:event-based, +14:u13:retention., +12:u14:retained, +11:u00:5.13.4., +15:u02:event-based, +14:u04:retention., +8:u08:125], +15:u10:event-based, +14:u12:retention., +12:u13:retained, +15:u01:event-based, +14:u03:retention., +8:u07:125], +14:u11:retention., +12:u12:retained, +15:u00:event-based, +14:u02:retention., +8:u06:125], +14:u10:retention., +12:u11:retained, +14:u01:retention., +8:u05:125], +12:u10:retained, +14:u00:retention., +8:u04:125], +8:u03:125], +19:u08:non-event-based, +8:u02:125], +19:u07:non-event-based, +8:u01:125], +19:u06:non-event-based, +8:u00:125], +19:u05:non-event-based, +19:u04:non-event-based, +19:u03:non-event-based, +19:u02:non-event-based, +11:u08:5.13.5., +19:u01:non-event-based, +19:u00:non-event-based, +11:u07:5.13.5., +13:u08:position., +18:u14:retention_hold, +11:u06:5.13.5., +18:u13:retention_hold, +11:u14:5.13.5., +11:u05:5.13.5., +13:u07:position., +18:u12:retention_hold, +11:u13:5.13.5., +11:u04:5.13.5., +13:u06:position., +18:u11:retention_hold, +11:u12:5.13.5., +13:u14:position., +11:u03:5.13.5., +13:u05:position., +18:u10:retention_hold, +11:u11:5.13.5., +13:u13:position., +11:u02:5.13.5., +13:u04:position., +9:u08:event, +11:u10:5.13.5., +13:u12:position., +8:u23:posi, +11:u01:5.13.5., +13:u03:position., +9:u07:event, +13:u11:position., +11:u00:5.13.5., +13:u02:position., +18:u08:administration, +9:u06:event, +13:u10:position., +13:u01:position., +9:u05:event, +13:u00:position., +18:u07:administration, +9:u04:event, +18:u06:administration, +29:u08:ACE4_WRITE_RETENTION_HOLD, +9:u03:event, +18:u14:administration, +18:u05:administration, +19:u08:NFS4ERR_ACCESS., +9:u02:event, +16:u08:permissions,, +18:u13:administration, +18:u04:administration, +29:u07:ACE4_WRITE_RETENTION_HOLD, +9:u01:event, +16:u07:permissions,, +18:u12:administration, +18:u03:administration, +29:u06:ACE4_WRITE_RETENTION_HOLD, +19:u07:NFS4ERR_ACCESS., +9:u00:event, +16:u06:permissions,, +18:u11:administration, +29:u14:ace4_write_retention_hold, +18:u02:administration, +29:u05:ACE4_WRITE_RETENTION_HOLD, +19:u06:NFS4ERR_ACCESS., +11:u08:grained, +16:u05:permissions,, +18:u10:administration, +29:u13:ace4_write_retention_hold, +19:u14:nfs4err_access., +18:u01:administration, +29:u04:ACE4_WRITE_RETENTION_HOLD, +19:u05:NFS4ERR_ACCESS., +11:u08:"sacl",, +16:u04:permissions,, +29:u12:ace4_write_retention_hold, +19:u13:nfs4err_access., +7:u22:ACE, +8:u23:ACE4, +18:u00:administration, +29:u03:ACE4_WRITE_RETENTION_HOLD, +19:u04:NFS4ERR_ACCESS., +11:u07:grained, +16:u03:permissions,, +17:u08:"aclsupport",, +29:u11:ace4_write_retention_hold, +19:u12:nfs4err_access., +29:u02:ACE4_WRITE_RETENTION_HOLD, +19:u03:NFS4ERR_ACCESS., +11:u06:grained, +11:u07:"sacl",, +16:u02:permissions,, +17:u07:"aclsupport",, +29:u10:ace4_write_retention_hold, +19:u11:nfs4err_access., +11:u14:grained, +29:u01:ACE4_WRITE_RETENTION_HOLD, +19:u02:NFS4ERR_ACCESS., +11:u05:grained, +11:u06:"sacl",, +16:u01:permissions,, +17:u06:"aclsupport",, +19:u10:nfs4err_access., +11:u13:grained, +11:u14:"sacl",, +8:u23:Acce, +11:uI2:."","",, +29:u00:ACE4_WRITE_RETENTION_HOLD, +19:u01:NFS4ERR_ACCESS., +11:u04:grained, +11:u05:"sacl",, +8:u08:ACLs, +16:u00:permissions,, +17:u05:"aclsupport",, +11:u12:grained, +11:u13:"sacl",, +8:u23:grai, +11:uI1:."","",, +15:uI2:"","","","", +19:u00:NFS4ERR_ACCESS., +11:u03:grained, +11:u04:"sacl",, +16:u08:permissions., +17:u04:"aclsupport",, +11:u11:grained, +11:u12:"sacl",, +7:u22:"sa, +8:u23:"sac, +11:uI0:."","",, +15:uI1:"","","","", +11:u02:grained, +11:u03:"sacl",, +8:u07:ACLs, +17:u03:"aclsupport",, +11:u10:grained, +11:u11:"sacl",, +15:uI0:"","","","", +11:u01:grained, +11:u02:"sacl",, +8:u06:ACLs, +16:u07:permissions., +17:u02:"aclsupport",, +11:u10:"sacl",, +8:u14:acls, +11:u00:grained, +11:u01:"sacl",, +8:u05:ACLs, +16:u06:permissions., +14:u08:reasonable, +17:u01:"aclsupport",, +8:u13:acls, +16:u14:permissions., +11:u00:"sacl",, +8:u04:ACLs, +16:u05:permissions., +17:u00:"aclsupport",, +8:u12:acls, +16:u13:permissions., +8:u14:meet, +7:u22:ACL, +8:u23:ACLs, +8:u03:ACLs, +16:u04:permissions., +14:u07:reasonable, +8:u11:acls, +16:u12:permissions., +8:u13:meet, +8:u02:ACLs, +16:u03:permissions., +14:u06:reasonable, +8:u10:acls, +16:u11:permissions., +8:u12:meet, +14:u14:reasonable, +7:u22:mee, +8:u23:meet, +8:u01:ACLs, +16:u02:permissions., +14:u05:reasonable, +16:u10:permissions., +8:u11:meet, +14:u13:reasonable, +8:u00:ACLs, +16:u01:permissions., +14:u04:reasonable, +8:u10:meet, +14:u12:reasonable, +16:u00:permissions., +14:u03:reasonable, +14:u11:reasonable, +14:u02:reasonable, +8:u08:126], +14:u10:reasonable, +14:u01:reasonable, +8:u07:126], +14:u00:reasonable, +8:u06:126], +8:u05:126], +9:u08:never, +8:u04:126], +8:u03:126], +9:u07:never, +8:u02:126], +9:u06:never, +8:u01:126], +9:u14:never, +9:u05:never, +16:u08:inheritance:, +8:u00:126], +9:u13:never, +9:u04:never, +9:u12:never, +9:u03:never, +16:u07:inheritance:, +9:u11:never, +9:u02:never, +16:u06:inheritance:, +13:u08:UNIX-like, +9:u10:never, +16:u14:inheritance:, +9:u01:never, +16:u05:inheritance:, +13:u07:UNIX-like, +16:u13:inheritance:, +9:u00:never, +16:u04:inheritance:, +13:u08:security., +13:u06:UNIX-like, +16:u12:inheritance:, +7:u22:inh, +8:u23:inhe, +16:u03:inheritance:, +13:u05:UNIX-like, +16:u11:inheritance:, +16:u02:inheritance:, +13:u07:security., +27:u08:OPEN4_SHARE_ACCESS_READ, +13:u04:UNIX-like, +16:u10:inheritance:, +16:u01:inheritance:, +13:u06:security., +13:u03:UNIX-like, +13:u14:security., +16:u00:inheritance:, +13:u05:security., +27:u07:OPEN4_SHARE_ACCESS_READ, +13:u08:inherited, +13:u02:UNIX-like, +13:u13:security., +13:u04:security., +27:u06:OPEN4_SHARE_ACCESS_READ, +13:u01:UNIX-like, +8:u08:ACL., +13:u12:security., +27:u14:open4_share_access_read, +13:u03:security., +27:u05:OPEN4_SHARE_ACCESS_READ, +13:u07:inherited, +7:u08:ACL, +13:u00:UNIX-like, +8:u07:ACL., +13:u11:security., +27:u13:open4_share_access_read, +13:u02:security., +27:u04:OPEN4_SHARE_ACCESS_READ, +13:u06:inherited, +8:u06:ACL., +13:u10:security., +27:u12:open4_share_access_read, +13:u14:inherited, +13:u01:security., +27:u03:OPEN4_SHARE_ACCESS_READ, +13:u05:inherited, +7:u07:ACL, +8:u05:ACL., +27:u11:open4_share_access_read, +13:u13:inherited, +13:u00:security., +27:u02:OPEN4_SHARE_ACCESS_READ, +13:u04:inherited, +7:u06:ACL, +8:u04:ACL., +27:u10:open4_share_access_read, +13:u12:inherited, +27:u01:OPEN4_SHARE_ACCESS_READ, +13:u03:inherited, +7:u05:ACL, +8:u03:ACL., +9:u08:them., +13:u11:inherited, +27:u00:OPEN4_SHARE_ACCESS_READ, +13:u02:inherited, +7:u04:ACL, +8:u02:ACL., +9:u07:them., +13:u10:inherited, +18:u14:clarifications, +7:u23:ACL, +13:u01:inherited, +7:u03:ACL, +8:u01:ACL., +9:u06:them., +18:u13:clarifications, +10:u14:around, +13:u00:inherited, +7:u02:ACL, +8:u00:ACL., +9:u05:them., +18:u12:clarifications, +10:u13:around, +8:u23:clar, +7:u01:ACL, +9:u04:them., +14:u08:high-order, +18:u11:clarifications, +10:u12:around, +7:u00:ACL, +9:u03:them., +14:u07:high-order, +18:u10:clarifications, +10:u11:around, +9:u02:them., +14:u06:high-order, +10:u10:around, +9:u01:them., +14:u05:high-order, +9:u08:bits., +14:u14:determined, +8:uI2:-..), +9:u00:them., +14:u04:high-order, +9:u07:bits., +14:u13:determined, +8:uI1:-..), +14:u03:high-order, +9:u06:bits., +14:u12:determined, +14:u14:high-order, +8:uI0:-..), +14:u02:high-order, +9:u05:bits., +14:u11:determined, +14:u13:high-order, +9:uI2:-...., +16:u08:inheritance,, +14:u01:high-order, +9:u04:bits., +14:u10:determined, +14:u12:high-order, +9:uI1:-...., +10:u08:denied, +14:u00:high-order, +9:u03:bits., +9:u08:AUDIT, +14:u11:high-order, +9:uI0:-...., +16:u07:inheritance,, +9:u02:bits., +9:u07:AUDIT, +14:u10:high-order, +16:u06:inheritance,, +10:u07:denied, +10:u08:6.2.1., +9:u01:bits., +9:u06:AUDIT, +16:u14:inheritance,, +16:u05:inheritance,, +10:u06:denied, +9:u00:bits., +9:u05:AUDIT, +16:u13:inheritance,, +10:u14:denied, +16:u04:inheritance,, +10:u05:denied, +10:u07:6.2.1., +10:u08:(ACEs), +9:u04:AUDIT, +16:u12:inheritance,, +10:u13:denied, +16:u03:inheritance,, +10:u04:denied, +10:u06:6.2.1., +9:u03:AUDIT, +16:u11:inheritance,, +10:u12:denied, +10:u14:6.2.1., +8:u23:deni, +16:u02:inheritance,, +10:u03:denied, +10:u05:6.2.1., +10:u07:(ACEs), +9:u02:AUDIT, +16:u10:inheritance,, +10:u11:denied, +10:u13:6.2.1., +16:u01:inheritance,, +10:u02:denied, +10:u04:6.2.1., +10:u06:(ACEs), +9:u01:AUDIT, +10:u10:denied, +10:u12:6.2.1., +10:u14:(aces), +16:u00:inheritance,, +10:u01:denied, +10:u03:6.2.1., +10:u05:(ACEs), +9:u00:AUDIT, +10:u11:6.2.1., +10:u13:(aces), +10:u00:denied, +10:u02:6.2.1., +10:u04:(ACEs), +10:u10:6.2.1., +10:u12:(aces), +7:u22:(AC, +8:u23:(ACE, +10:u01:6.2.1., +10:u03:(ACEs), +8:u08:127], +10:u11:(aces), +10:u00:6.2.1., +10:u02:(ACEs), +8:u07:127], +10:u10:(aces), +10:u01:(ACEs), +8:u06:127], +10:u00:(ACEs), +8:u05:127], +11:u08:reading, +8:u04:127], +8:u03:127], +11:u07:reading, +8:u02:127], +8:u14:open, +11:u06:reading, +13:u08:acetype4;, +8:u01:127], +8:u13:open, +11:u14:reading, +11:u05:reading, +8:u00:127], +8:u12:open, +11:u13:reading, +11:u04:reading, +13:u07:acetype4;, +8:u11:open, +11:u12:reading, +11:u03:reading, +13:u06:acetype4;, +13:u08:acemask4;, +8:u10:open, +11:u11:reading, +13:u14:acetype4;, +11:u02:reading, +13:u05:acetype4;, +11:u10:reading, +13:u13:acetype4;, +11:u01:reading, +13:u04:acetype4;, +13:u07:acemask4;, +12:u08:acetype4, +11:u08:nfsace4, +13:u12:acetype4;, +7:u22:ace, +8:u23:acet, +11:u00:reading, +13:u03:acetype4;, +13:u06:acemask4;, +11:u07:nfsace4, +13:u11:acetype4;, +13:u14:acemask4;, +13:u02:acetype4;, +13:u05:acemask4;, +12:u07:acetype4, +12:u08:aceflag4, +11:u06:nfsace4, +13:u10:acetype4;, +13:u13:acemask4;, +13:u01:acetype4;, +13:u04:acemask4;, +12:u06:acetype4, +9:u08:flag;, +11:u05:nfsace4, +13:u12:acemask4;, +12:u14:acetype4, +8:u23:acem, +13:u00:acetype4;, +13:u03:acemask4;, +12:u05:acetype4, +12:u07:aceflag4, +12:u08:acemask4, +11:u04:nfsace4, +13:u11:acemask4;, +12:u13:acetype4, +9:u14:type;, +13:u02:acemask4;, +12:u04:acetype4, +12:u06:aceflag4, +9:u07:flag;, +16:u08:access_mask;, +11:u03:nfsace4, +13:u10:acemask4;, +12:u12:acetype4, +9:u13:type;, +12:u14:aceflag4, +13:u01:acemask4;, +12:u03:acetype4, +12:u05:aceflag4, +9:u06:flag;, +12:u07:acemask4, +11:u02:nfsace4, +12:u11:acetype4, +9:u12:type;, +12:u13:aceflag4, +9:u14:flag;, +13:u00:acemask4;, +12:u02:acetype4, +12:u04:aceflag4, +9:u05:flag;, +12:u06:acemask4, +16:u07:access_mask;, +8:u08:who;, +11:u01:nfsace4, +12:u10:acetype4, +9:u11:type;, +12:u12:aceflag4, +9:u13:flag;, +12:u14:acemask4, +8:u23:acef, +12:u01:acetype4, +12:u03:aceflag4, +9:u04:flag;, +12:u05:acemask4, +16:u06:access_mask;, +11:u00:nfsace4, +9:u10:type;, +12:u11:aceflag4, +9:u12:flag;, +12:u13:acemask4, +16:u14:access_mask;, +8:u23:flag, +12:u00:acetype4, +12:u02:aceflag4, +9:u03:flag;, +12:u04:acemask4, +16:u05:access_mask;, +8:u07:who;, +12:u10:aceflag4, +9:u11:flag;, +12:u12:acemask4, +16:u13:access_mask;, +17:u14:utf8str_mixed, +12:u01:aceflag4, +9:u02:flag;, +12:u03:acemask4, +16:u04:access_mask;, +8:u06:who;, +9:u10:flag;, +12:u11:acemask4, +16:u12:access_mask;, +17:u13:utf8str_mixed, +8:u14:who;, +12:u00:aceflag4, +9:u01:flag;, +12:u02:acemask4, +16:u03:access_mask;, +8:u05:who;, +12:u10:acemask4, +16:u11:access_mask;, +17:u12:utf8str_mixed, +8:u13:who;, +9:u00:flag;, +12:u01:acemask4, +16:u02:access_mask;, +8:u04:who;, +16:u10:access_mask;, +17:u11:utf8str_mixed, +8:u12:who;, +8:u23:who;, +12:u00:acemask4, +16:u01:access_mask;, +8:u03:who;, +10:u08:below), +17:u10:utf8str_mixed, +8:u11:who;, +16:u00:access_mask;, +8:u02:who;, +8:u10:who;, +8:u01:who;, +10:u07:below), +8:u00:who;, +10:u06:below), +15:u08:encountered, +10:u14:below), +7:uI2:'.(, +10:u05:below), +15:u07:encountered, +10:u13:below), +7:uI1:'.(, +10:u04:below), +8:u08:mask, +15:u06:encountered, +10:u12:below), +7:uI0:'.(, +10:u03:below), +15:u05:encountered, +10:u11:below), +10:u02:below), +8:u07:mask, +15:u04:encountered, +10:u10:below), +10:u01:below), +8:u06:mask, +10:u08:events, +15:u03:encountered, +10:u08:affect, +8:u14:mask, +10:u00:below), +8:u05:mask, +15:u02:encountered, +10:u07:affect, +8:u13:mask, +8:u04:mask, +10:u07:events, +9:u08:ACEs., +15:u01:encountered, +10:u06:affect, +9:u08:ALARM, +8:u12:mask, +8:u23:mask, +8:u03:mask, +10:u06:events, +15:u00:encountered, +10:u05:affect, +9:u07:ALARM, +8:u11:mask, +10:u14:events, +8:u02:mask, +10:u05:events, +9:u07:ACEs., +10:u04:affect, +9:u06:ALARM, +8:u10:mask, +10:u13:events, +8:u01:mask, +10:u04:events, +9:u06:ACEs., +10:u03:affect, +9:u05:ALARM, +18:u08:access-control, +10:u12:events, +9:u14:aces., +8:u00:mask, +10:u03:events, +9:u05:ACEs., +10:u02:affect, +9:u04:ALARM, +18:u07:access-control, +10:u11:events, +9:u13:aces., +10:u02:events, +9:u04:ACEs., +10:u01:affect, +9:u03:ALARM, +18:u06:access-control, +10:u10:events, +9:u12:aces., +8:u23:ACEs, +10:u01:events, +9:u03:ACEs., +10:u00:affect, +9:u02:ALARM, +18:u05:access-control, +9:u11:aces., +10:u00:events, +9:u02:ACEs., +9:u01:ALARM, +18:u04:access-control, +9:u10:aces., +9:u01:ACEs., +9:u00:ALARM, +18:u03:access-control, +12:u08:actually, +9:u00:ACEs., +18:u02:access-control, +12:u07:actually, +18:u01:access-control, +12:u06:actually, +9:u08:falls, +15:u08:client-side, +18:u00:access-control, +12:u05:actually, +9:u07:falls, +12:u04:actually, +9:u06:falls, +15:u07:client-side, +12:u03:actually, +9:u05:falls, +15:u06:client-side, +12:u02:actually, +9:u04:falls, +15:u14:client-side, +15:u05:client-side, +12:u01:actually, +9:u03:falls, +15:u13:client-side, +7:uI2:-',, +15:u04:client-side, +12:u00:actually, +9:u02:falls, +15:u12:client-side, +7:uI1:-',, +15:u03:client-side, +9:u01:falls, +8:u08:128], +15:u11:client-side, +7:uI0:-',, +15:u02:client-side, +9:u00:falls, +8:u07:128], +15:u10:client-side, +15:u01:client-side, +8:u06:128], +15:u00:client-side, +8:u05:128], +8:u04:128], +8:u08:help, +11:u08:ALLOWED, +8:u03:128], +8:u07:help, +9:u08:style, +8:u02:128], +8:u06:help, +11:u07:ALLOWED, +8:u01:128], +8:u05:help, +11:u06:ALLOWED, +9:u07:style, +8:u00:128], +8:u04:help, +11:u05:ALLOWED, +9:u06:style, +8:u03:help, +7:u08:(An, +9:u14:style, +11:u04:ALLOWED, +9:u05:style, +8:u02:help, +7:u07:(An, +9:u13:style, +15:u14:permissions, +7:u22:ALL, +8:u23:ALLO, +11:u03:ALLOWED, +9:u04:style, +8:u01:help, +7:u06:(An, +9:u12:style, +15:u13:permissions, +7:u22:sty, +8:u23:styl, +11:u02:ALLOWED, +9:u03:style, +8:u00:help, +7:u05:(An, +11:u08:modules, +9:u11:style, +15:u12:permissions, +11:u01:ALLOWED, +9:u02:style, +7:u04:(An, +11:u07:modules, +9:u10:style, +15:u11:permissions, +11:u00:ALLOWED, +9:u01:style, +7:u03:(An, +11:u06:modules, +15:u10:permissions, +9:u00:style, +7:u02:(An, +11:u05:modules, +7:u01:(An, +11:u04:modules, +11:u08:Block)., +15:u14:enforcement, +7:u00:(An, +11:u03:modules, +11:u07:Block)., +15:u13:enforcement, +11:u02:modules, +11:u06:Block)., +11:u08:guiding, +15:u12:enforcement, +15:u08:restrictive, +11:u01:modules, +11:u05:Block)., +11:u07:guiding, +15:u11:enforcement, +12:u08:6.2.1.1., +11:u00:modules, +11:u04:Block)., +11:u06:guiding, +15:u10:enforcement, +15:u07:restrictive, +11:u03:Block)., +11:u05:guiding, +7:u08:ACE, +15:u06:restrictive, +12:u07:6.2.1.1., +11:u02:Block)., +11:u04:guiding, +7:u07:ACE, +13:u08:constants, +15:u14:restrictive, +15:u05:restrictive, +12:u06:6.2.1.1., +11:u01:Block)., +11:u03:guiding, +7:u06:ACE, +13:u07:constants, +32:u08:ACE4_ACCESS_ALLOWED_ACE_TYPE, +15:u13:restrictive, +12:u14:6.2.1.1., +7:u22:mus, +8:u23:must, +15:u04:restrictive, +12:u05:6.2.1.1., +11:u00:Block)., +11:u02:guiding, +7:u05:ACE, +13:u06:constants, +32:u07:ACE4_ACCESS_ALLOWED_ACE_TYPE, +15:u08:0x00000000;, +15:u12:restrictive, +12:u13:6.2.1.1., +15:u03:restrictive, +12:u04:6.2.1.1., +11:u01:guiding, +7:u04:ACE, +13:u05:constants, +32:u06:ACE4_ACCESS_ALLOWED_ACE_TYPE, +15:u07:0x00000000;, +31:u08:ACE4_ACCESS_DENIED_ACE_TYPE, +15:u11:restrictive, +12:u12:6.2.1.1., +15:u02:restrictive, +12:u03:6.2.1.1., +11:u00:guiding, +7:u03:ACE, +13:u04:constants, +32:u05:ACE4_ACCESS_ALLOWED_ACE_TYPE, +15:u06:0x00000000;, +31:u07:ACE4_ACCESS_DENIED_ACE_TYPE, +15:u08:0x00000001;, +15:u10:restrictive, +12:u11:6.2.1.1., +15:u01:restrictive, +12:u02:6.2.1.1., +7:u02:ACE, +13:u03:constants, +32:u04:ACE4_ACCESS_ALLOWED_ACE_TYPE, +15:u05:0x00000000;, +31:u06:ACE4_ACCESS_DENIED_ACE_TYPE, +15:u07:0x00000001;, +30:u08:ACE4_SYSTEM_AUDIT_ACE_TYPE, +12:u10:6.2.1.1., +15:u00:restrictive, +12:u01:6.2.1.1., +7:u01:ACE, +13:u02:constants, +32:u03:ACE4_ACCESS_ALLOWED_ACE_TYPE, +15:u04:0x00000000;, +31:u05:ACE4_ACCESS_DENIED_ACE_TYPE, +15:u06:0x00000001;, +30:u07:ACE4_SYSTEM_AUDIT_ACE_TYPE, +15:u08:0x00000002;, +12:u00:6.2.1.1., +7:u00:ACE, +13:u01:constants, +32:u02:ACE4_ACCESS_ALLOWED_ACE_TYPE, +15:u03:0x00000000;, +31:u04:ACE4_ACCESS_DENIED_ACE_TYPE, +15:u05:0x00000001;, +30:u06:ACE4_SYSTEM_AUDIT_ACE_TYPE, +15:u07:0x00000002;, +30:u08:ACE4_SYSTEM_ALARM_ACE_TYPE, +8:u08:Only, +13:u00:constants, +32:u01:ACE4_ACCESS_ALLOWED_ACE_TYPE, +15:u02:0x00000000;, +31:u03:ACE4_ACCESS_DENIED_ACE_TYPE, +15:u04:0x00000001;, +30:u05:ACE4_SYSTEM_AUDIT_ACE_TYPE, +15:u06:0x00000002;, +30:u07:ACE4_SYSTEM_ALARM_ACE_TYPE, +15:u08:0x00000003;, +32:u00:ACE4_ACCESS_ALLOWED_ACE_TYPE, +15:u01:0x00000000;, +31:u02:ACE4_ACCESS_DENIED_ACE_TYPE, +15:u03:0x00000001;, +30:u04:ACE4_SYSTEM_AUDIT_ACE_TYPE, +15:u05:0x00000002;, +30:u06:ACE4_SYSTEM_ALARM_ACE_TYPE, +15:u07:0x00000003;, +8:u07:Only, +15:u00:0x00000000;, +31:u01:ACE4_ACCESS_DENIED_ACE_TYPE, +15:u02:0x00000001;, +30:u03:ACE4_SYSTEM_AUDIT_ACE_TYPE, +15:u04:0x00000002;, +30:u05:ACE4_SYSTEM_ALARM_ACE_TYPE, +15:u06:0x00000003;, +8:u06:Only, +31:u00:ACE4_ACCESS_DENIED_ACE_TYPE, +15:u01:0x00000001;, +30:u02:ACE4_SYSTEM_AUDIT_ACE_TYPE, +15:u03:0x00000002;, +30:u04:ACE4_SYSTEM_ALARM_ACE_TYPE, +15:u05:0x00000003;, +8:u05:Only, +15:u00:0x00000001;, +30:u01:ACE4_SYSTEM_AUDIT_ACE_TYPE, +15:u02:0x00000002;, +30:u03:ACE4_SYSTEM_ALARM_ACE_TYPE, +15:u04:0x00000003;, +8:u04:Only, +30:u00:ACE4_SYSTEM_AUDIT_ACE_TYPE, +15:u01:0x00000002;, +30:u02:ACE4_SYSTEM_ALARM_ACE_TYPE, +15:u03:0x00000003;, +8:u23:Only, +8:u03:Only, +15:u00:0x00000002;, +30:u01:ACE4_SYSTEM_ALARM_ACE_TYPE, +15:u02:0x00000003;, +8:u08:129], +8:u02:Only, +30:u00:ACE4_SYSTEM_ALARM_ACE_TYPE, +15:u01:0x00000003;, +8:u07:129], +8:u01:Only, +15:u00:0x00000003;, +8:u06:129], +8:u00:Only, +73:u08:+------------------------------+--------------+---------------------+, +8:u05:129], +8:u04:129], +73:u07:+------------------------------+--------------+---------------------+, +8:u03:129], +73:u06:+------------------------------+--------------+---------------------+, +8:u02:129], +16:u08:Abbreviation, +73:u14:+------------------------------+--------------+---------------------+, +73:u05:+------------------------------+--------------+---------------------+, +8:u01:129], +16:u07:Abbreviation, +73:u13:+------------------------------+--------------+---------------------+, +73:u04:+------------------------------+--------------+---------------------+, +8:u00:129], +16:u06:Abbreviation, +73:u12:+------------------------------+--------------+---------------------+, +73:u03:+------------------------------+--------------+---------------------+, +16:u05:Abbreviation, +73:u11:+------------------------------+--------------+---------------------+, +73:u02:+------------------------------+--------------+---------------------+, +16:u04:Abbreviation, +14:u08:Explicitly, +73:u10:+------------------------------+--------------+---------------------+, +73:u01:+------------------------------+--------------+---------------------+, +16:u03:Abbreviation, +14:u07:Explicitly, +73:u00:+------------------------------+--------------+---------------------+, +16:u02:Abbreviation, +14:u06:Explicitly, +16:u01:Abbreviation, +14:u05:Explicitly, +16:u00:Abbreviation, +14:u04:Explicitly, +14:u03:Explicitly, +14:u02:Explicitly, +14:u01:Explicitly, +14:u00:Explicitly, +7:u08:Log, +7:u07:Log, +7:u06:Log, +7:u05:Log, +7:u04:Log, +7:u03:Log, +7:u02:Log, +7:u01:Log, +7:u00:Log, +13:u08:acemask4., +13:u07:acemask4., +13:u06:acemask4., +13:u05:acemask4., +13:u04:acemask4., +12:u08:Generate, +13:u03:acemask4., +12:u07:Generate, +13:u02:acemask4., +12:u06:Generate, +13:u01:acemask4., +12:u05:Generate, +13:u00:acemask4., +12:u04:Generate, +12:u03:Generate, +12:u02:Generate, +12:u01:Generate, +12:u00:Generate, +14:u08:throughout, +18:u08:"Abbreviation", +12:u08:6.2.1.2., +18:u07:"Abbreviation", +14:u07:throughout, +18:u06:"Abbreviation", +14:u06:throughout, +12:u07:6.2.1.2., +18:u05:"Abbreviation", +14:u14:throughout, +14:u05:throughout, +12:u06:6.2.1.2., +18:u04:"Abbreviation", +14:u13:throughout, +12:u14:6.2.1.2., +14:u04:throughout, +12:u05:6.2.1.2., +18:u03:"Abbreviation", +11:u08:bitmask, +14:u12:throughout, +12:u13:6.2.1.2., +14:u03:throughout, +12:u04:6.2.1.2., +18:u02:"Abbreviation", +11:u07:bitmask, +14:u11:throughout, +12:u12:6.2.1.2., +14:u02:throughout, +12:u03:6.2.1.2., +18:u01:"Abbreviation", +11:u06:bitmask, +26:u08:ACL4_SUPPORT_ALLOW_ACL, +14:u10:throughout, +12:u11:6.2.1.2., +14:u01:throughout, +12:u02:6.2.1.2., +18:u00:"Abbreviation", +11:u05:bitmask, +26:u07:ACL4_SUPPORT_ALLOW_ACL, +12:u10:6.2.1.2., +14:u00:throughout, +12:u01:6.2.1.2., +11:u04:bitmask, +26:u06:ACL4_SUPPORT_ALLOW_ACL, +25:u08:ACL4_SUPPORT_DENY_ACL, +12:u00:6.2.1.2., +11:u03:bitmask, +26:u05:ACL4_SUPPORT_ALLOW_ACL, +25:u07:ACL4_SUPPORT_DENY_ACL, +11:u02:bitmask, +26:u04:ACL4_SUPPORT_ALLOW_ACL, +25:u06:ACL4_SUPPORT_DENY_ACL, +26:u08:ACL4_SUPPORT_AUDIT_ACL, +11:u01:bitmask, +26:u03:ACL4_SUPPORT_ALLOW_ACL, +25:u05:ACL4_SUPPORT_DENY_ACL, +26:u07:ACL4_SUPPORT_AUDIT_ACL, +15:u08:0x00000004;, +11:u00:bitmask, +26:u02:ACL4_SUPPORT_ALLOW_ACL, +25:u04:ACL4_SUPPORT_DENY_ACL, +26:u06:ACL4_SUPPORT_AUDIT_ACL, +15:u07:0x00000004;, +26:u08:ACL4_SUPPORT_ALARM_ACL, +26:u01:ACL4_SUPPORT_ALLOW_ACL, +25:u03:ACL4_SUPPORT_DENY_ACL, +26:u05:ACL4_SUPPORT_AUDIT_ACL, +15:u06:0x00000004;, +26:u07:ACL4_SUPPORT_ALARM_ACL, +15:u08:0x00000008;, +26:u00:ACL4_SUPPORT_ALLOW_ACL, +25:u02:ACL4_SUPPORT_DENY_ACL, +26:u04:ACL4_SUPPORT_AUDIT_ACL, +15:u05:0x00000004;, +26:u06:ACL4_SUPPORT_ALARM_ACL, +15:u07:0x00000008;, +25:u01:ACL4_SUPPORT_DENY_ACL, +26:u03:ACL4_SUPPORT_AUDIT_ACL, +15:u04:0x00000004;, +26:u05:ACL4_SUPPORT_ALARM_ACL, +15:u06:0x00000008;, +9:u08:ALLOW, +25:u00:ACL4_SUPPORT_DENY_ACL, +26:u02:ACL4_SUPPORT_AUDIT_ACL, +15:u03:0x00000004;, +26:u04:ACL4_SUPPORT_ALARM_ACL, +15:u05:0x00000008;, +9:u07:ALLOW, +26:u01:ACL4_SUPPORT_AUDIT_ACL, +15:u02:0x00000004;, +26:u03:ACL4_SUPPORT_ALARM_ACL, +15:u04:0x00000008;, +9:u06:ALLOW, +26:u00:ACL4_SUPPORT_AUDIT_ACL, +15:u01:0x00000004;, +26:u02:ACL4_SUPPORT_ALARM_ACL, +15:u03:0x00000008;, +9:u05:ALLOW, +8:u08:130], +15:u00:0x00000004;, +26:u01:ACL4_SUPPORT_ALARM_ACL, +15:u02:0x00000008;, +9:u04:ALLOW, +8:u07:130], +26:u00:ACL4_SUPPORT_ALARM_ACL, +15:u01:0x00000008;, +9:u03:ALLOW, +8:u06:130], +15:u00:0x00000008;, +9:u02:ALLOW, +8:u05:130], +9:u01:ALLOW, +8:u04:130], +9:u00:ALLOW, +8:u03:130], +24:u08:NFS4ERR_ATTRNOTSUPP., +8:u02:130], +8:u01:130], +24:u07:NFS4ERR_ATTRNOTSUPP., +8:u00:130], +24:u06:NFS4ERR_ATTRNOTSUPP., +24:u14:nfs4err_attrnotsupp., +24:u05:NFS4ERR_ATTRNOTSUPP., +17:u08:RECOMMENDED)., +24:u13:nfs4err_attrnotsupp., +24:u04:NFS4ERR_ATTRNOTSUPP., +24:u12:nfs4err_attrnotsupp., +24:u03:NFS4ERR_ATTRNOTSUPP., +17:u07:RECOMMENDED)., +9:u08:(dacl, +24:u11:nfs4err_attrnotsupp., +24:u02:NFS4ERR_ATTRNOTSUPP., +17:u06:RECOMMENDED)., +9:u07:(dacl, +24:u10:nfs4err_attrnotsupp., +17:u14:recommended)., +24:u01:NFS4ERR_ATTRNOTSUPP., +17:u05:RECOMMENDED)., +9:u06:(dacl, +17:u13:recommended)., +24:u00:NFS4ERR_ATTRNOTSUPP., +17:u04:RECOMMENDED)., +9:u05:(dacl, +17:u12:recommended)., +17:u03:RECOMMENDED)., +12:u08:6.2.1.3., +9:u04:(dacl, +17:u11:recommended)., +17:u02:RECOMMENDED)., +9:u03:(dacl, +17:u10:recommended)., +8:u14:dacl, +17:u01:RECOMMENDED)., +12:u07:6.2.1.3., +9:u02:(dacl, +8:u13:dacl, +17:u00:RECOMMENDED)., +12:u06:6.2.1.3., +9:u01:(dacl, +18:u08:ACE4_READ_DATA, +8:u12:dacl, +12:u14:6.2.1.3., +7:u22:dac, +8:u23:dacl, +12:u05:6.2.1.3., +9:u00:(dacl, +18:u07:ACE4_READ_DATA, +8:u11:dacl, +12:u13:6.2.1.3., +12:u04:6.2.1.3., +18:u06:ACE4_READ_DATA, +23:u08:ACE4_LIST_DIRECTORY, +8:u10:dacl, +12:u12:6.2.1.3., +12:u03:6.2.1.3., +18:u05:ACE4_READ_DATA, +23:u07:ACE4_LIST_DIRECTORY, +12:u11:6.2.1.3., +12:u02:6.2.1.3., +18:u04:ACE4_READ_DATA, +23:u06:ACE4_LIST_DIRECTORY, +19:u08:ACE4_WRITE_DATA, +12:u10:6.2.1.3., +12:u01:6.2.1.3., +18:u03:ACE4_READ_DATA, +23:u05:ACE4_LIST_DIRECTORY, +19:u07:ACE4_WRITE_DATA, +12:u00:6.2.1.3., +18:u02:ACE4_READ_DATA, +23:u04:ACE4_LIST_DIRECTORY, +19:u06:ACE4_WRITE_DATA, +17:u08:ACE4_ADD_FILE, +18:u01:ACE4_READ_DATA, +23:u03:ACE4_LIST_DIRECTORY, +19:u05:ACE4_WRITE_DATA, +17:u07:ACE4_ADD_FILE, +18:u00:ACE4_READ_DATA, +23:u02:ACE4_LIST_DIRECTORY, +19:u04:ACE4_WRITE_DATA, +17:u06:ACE4_ADD_FILE, +20:u08:ACE4_APPEND_DATA, +23:u01:ACE4_LIST_DIRECTORY, +19:u03:ACE4_WRITE_DATA, +17:u05:ACE4_ADD_FILE, +20:u07:ACE4_APPEND_DATA, +23:u00:ACE4_LIST_DIRECTORY, +19:u02:ACE4_WRITE_DATA, +17:u04:ACE4_ADD_FILE, +20:u06:ACE4_APPEND_DATA, +25:u08:ACE4_ADD_SUBDIRECTORY, +19:u01:ACE4_WRITE_DATA, +17:u03:ACE4_ADD_FILE, +20:u05:ACE4_APPEND_DATA, +25:u07:ACE4_ADD_SUBDIRECTORY, +19:u00:ACE4_WRITE_DATA, +17:u02:ACE4_ADD_FILE, +20:u04:ACE4_APPEND_DATA, +25:u06:ACE4_ADD_SUBDIRECTORY, +25:u08:ACE4_READ_NAMED_ATTRS, +17:u01:ACE4_ADD_FILE, +20:u03:ACE4_APPEND_DATA, +25:u05:ACE4_ADD_SUBDIRECTORY, +25:u07:ACE4_READ_NAMED_ATTRS, +17:u00:ACE4_ADD_FILE, +20:u02:ACE4_APPEND_DATA, +25:u04:ACE4_ADD_SUBDIRECTORY, +25:u06:ACE4_READ_NAMED_ATTRS, +26:u08:ACE4_WRITE_NAMED_ATTRS, +20:u01:ACE4_APPEND_DATA, +25:u03:ACE4_ADD_SUBDIRECTORY, +25:u05:ACE4_READ_NAMED_ATTRS, +26:u07:ACE4_WRITE_NAMED_ATTRS, +15:u08:0x00000010;, +20:u00:ACE4_APPEND_DATA, +25:u02:ACE4_ADD_SUBDIRECTORY, +25:u04:ACE4_READ_NAMED_ATTRS, +26:u06:ACE4_WRITE_NAMED_ATTRS, +15:u07:0x00000010;, +16:u08:ACE4_EXECUTE, +25:u01:ACE4_ADD_SUBDIRECTORY, +25:u03:ACE4_READ_NAMED_ATTRS, +26:u05:ACE4_WRITE_NAMED_ATTRS, +15:u06:0x00000010;, +16:u07:ACE4_EXECUTE, +15:u08:0x00000020;, +25:u00:ACE4_ADD_SUBDIRECTORY, +25:u02:ACE4_READ_NAMED_ATTRS, +26:u04:ACE4_WRITE_NAMED_ATTRS, +15:u05:0x00000010;, +16:u06:ACE4_EXECUTE, +15:u07:0x00000020;, +21:u08:ACE4_DELETE_CHILD, +25:u01:ACE4_READ_NAMED_ATTRS, +26:u03:ACE4_WRITE_NAMED_ATTRS, +15:u04:0x00000010;, +16:u05:ACE4_EXECUTE, +15:u06:0x00000020;, +21:u07:ACE4_DELETE_CHILD, +15:u08:0x00000040;, +25:u00:ACE4_READ_NAMED_ATTRS, +26:u02:ACE4_WRITE_NAMED_ATTRS, +15:u03:0x00000010;, +16:u04:ACE4_EXECUTE, +15:u05:0x00000020;, +21:u06:ACE4_DELETE_CHILD, +15:u07:0x00000040;, +24:u08:ACE4_READ_ATTRIBUTES, +26:u01:ACE4_WRITE_NAMED_ATTRS, +15:u02:0x00000010;, +16:u03:ACE4_EXECUTE, +15:u04:0x00000020;, +21:u05:ACE4_DELETE_CHILD, +15:u06:0x00000040;, +24:u07:ACE4_READ_ATTRIBUTES, +15:u08:0x00000080;, +26:u00:ACE4_WRITE_NAMED_ATTRS, +15:u01:0x00000010;, +16:u02:ACE4_EXECUTE, +15:u03:0x00000020;, +21:u04:ACE4_DELETE_CHILD, +15:u05:0x00000040;, +24:u06:ACE4_READ_ATTRIBUTES, +15:u07:0x00000080;, +25:u08:ACE4_WRITE_ATTRIBUTES, +15:u00:0x00000010;, +16:u01:ACE4_EXECUTE, +15:u02:0x00000020;, +21:u03:ACE4_DELETE_CHILD, +15:u04:0x00000040;, +24:u05:ACE4_READ_ATTRIBUTES, +15:u06:0x00000080;, +25:u07:ACE4_WRITE_ATTRIBUTES, +15:u08:0x00000100;, +16:u00:ACE4_EXECUTE, +15:u01:0x00000020;, +21:u02:ACE4_DELETE_CHILD, +15:u03:0x00000040;, +24:u04:ACE4_READ_ATTRIBUTES, +15:u05:0x00000080;, +25:u06:ACE4_WRITE_ATTRIBUTES, +15:u07:0x00000100;, +24:u08:ACE4_WRITE_RETENTION, +15:u00:0x00000020;, +21:u01:ACE4_DELETE_CHILD, +15:u02:0x00000040;, +24:u03:ACE4_READ_ATTRIBUTES, +15:u04:0x00000080;, +25:u05:ACE4_WRITE_ATTRIBUTES, +15:u06:0x00000100;, +24:u07:ACE4_WRITE_RETENTION, +15:u08:0x00000200;, +21:u00:ACE4_DELETE_CHILD, +15:u01:0x00000040;, +24:u02:ACE4_READ_ATTRIBUTES, +15:u03:0x00000080;, +25:u04:ACE4_WRITE_ATTRIBUTES, +15:u05:0x00000100;, +24:u06:ACE4_WRITE_RETENTION, +15:u07:0x00000200;, +15:u00:0x00000040;, +24:u01:ACE4_READ_ATTRIBUTES, +15:u02:0x00000080;, +25:u03:ACE4_WRITE_ATTRIBUTES, +15:u04:0x00000100;, +24:u05:ACE4_WRITE_RETENTION, +15:u06:0x00000200;, +15:u08:ACE4_DELETE, +24:u00:ACE4_READ_ATTRIBUTES, +15:u01:0x00000080;, +25:u02:ACE4_WRITE_ATTRIBUTES, +15:u03:0x00000100;, +24:u04:ACE4_WRITE_RETENTION, +15:u05:0x00000200;, +15:u07:ACE4_DELETE, +15:u08:0x00010000;, +15:u00:0x00000080;, +25:u01:ACE4_WRITE_ATTRIBUTES, +15:u02:0x00000100;, +24:u03:ACE4_WRITE_RETENTION, +15:u04:0x00000200;, +15:u06:ACE4_DELETE, +15:u07:0x00010000;, +17:u08:ACE4_READ_ACL, +25:u00:ACE4_WRITE_ATTRIBUTES, +15:u01:0x00000100;, +24:u02:ACE4_WRITE_RETENTION, +15:u03:0x00000200;, +15:u05:ACE4_DELETE, +15:u06:0x00010000;, +17:u07:ACE4_READ_ACL, +15:u08:0x00020000;, +15:u00:0x00000100;, +24:u01:ACE4_WRITE_RETENTION, +15:u02:0x00000200;, +15:u04:ACE4_DELETE, +15:u05:0x00010000;, +17:u06:ACE4_READ_ACL, +15:u07:0x00020000;, +18:u08:ACE4_WRITE_ACL, +24:u00:ACE4_WRITE_RETENTION, +15:u01:0x00000200;, +15:u03:ACE4_DELETE, +15:u04:0x00010000;, +17:u05:ACE4_READ_ACL, +15:u06:0x00020000;, +18:u07:ACE4_WRITE_ACL, +15:u08:0x00040000;, +15:u00:0x00000200;, +15:u02:ACE4_DELETE, +15:u03:0x00010000;, +17:u04:ACE4_READ_ACL, +15:u05:0x00020000;, +18:u06:ACE4_WRITE_ACL, +15:u07:0x00040000;, +20:u08:ACE4_WRITE_OWNER, +15:u01:ACE4_DELETE, +15:u02:0x00010000;, +17:u03:ACE4_READ_ACL, +15:u04:0x00020000;, +18:u05:ACE4_WRITE_ACL, +15:u06:0x00040000;, +20:u07:ACE4_WRITE_OWNER, +15:u08:0x00080000;, +15:u00:ACE4_DELETE, +15:u01:0x00010000;, +17:u02:ACE4_READ_ACL, +15:u03:0x00020000;, +18:u04:ACE4_WRITE_ACL, +15:u05:0x00040000;, +20:u06:ACE4_WRITE_OWNER, +15:u07:0x00080000;, +20:u08:ACE4_SYNCHRONIZE, +15:u00:0x00010000;, +17:u01:ACE4_READ_ACL, +15:u02:0x00020000;, +18:u03:ACE4_WRITE_ACL, +15:u04:0x00040000;, +20:u05:ACE4_WRITE_OWNER, +15:u06:0x00080000;, +20:u07:ACE4_SYNCHRONIZE, +15:u08:0x00100000;, +17:u00:ACE4_READ_ACL, +15:u01:0x00020000;, +18:u02:ACE4_WRITE_ACL, +15:u03:0x00040000;, +20:u04:ACE4_WRITE_OWNER, +15:u05:0x00080000;, +20:u06:ACE4_SYNCHRONIZE, +15:u07:0x00100000;, +24:u08:ACE4_LIST_DIRECTORY,, +15:u00:0x00020000;, +18:u01:ACE4_WRITE_ACL, +15:u02:0x00040000;, +20:u03:ACE4_WRITE_OWNER, +15:u04:0x00080000;, +20:u05:ACE4_SYNCHRONIZE, +15:u06:0x00100000;, +18:u00:ACE4_WRITE_ACL, +15:u01:0x00040000;, +20:u02:ACE4_WRITE_OWNER, +15:u03:0x00080000;, +20:u04:ACE4_SYNCHRONIZE, +15:u05:0x00100000;, +18:u08:ACE4_ADD_FILE,, +24:u07:ACE4_LIST_DIRECTORY,, +20:u08:ACE4_WRITE_DATA,, +15:u00:0x00040000;, +20:u01:ACE4_WRITE_OWNER, +15:u02:0x00080000;, +20:u03:ACE4_SYNCHRONIZE, +15:u04:0x00100000;, +18:u07:ACE4_ADD_FILE,, +18:u14:ace4_read_data, +24:u06:ACE4_LIST_DIRECTORY,, +17:u08:non-directory, +20:u00:ACE4_WRITE_OWNER, +15:u01:0x00080000;, +20:u02:ACE4_SYNCHRONIZE, +15:u03:0x00100000;, +18:u06:ACE4_ADD_FILE,, +18:u13:ace4_read_data, +24:u14:ace4_list_directory,, +24:u05:ACE4_LIST_DIRECTORY,, +20:u07:ACE4_WRITE_DATA,, +15:u00:0x00080000;, +20:u01:ACE4_SYNCHRONIZE, +15:u02:0x00100000;, +18:u05:ACE4_ADD_FILE,, +12:u08:objects., +18:u12:ace4_read_data, +24:u13:ace4_list_directory,, +24:u04:ACE4_LIST_DIRECTORY,, +20:u06:ACE4_WRITE_DATA,, +17:u07:non-directory, +20:u00:ACE4_SYNCHRONIZE, +15:u01:0x00100000;, +18:u04:ACE4_ADD_FILE,, +12:u07:objects., +18:u11:ace4_read_data, +24:u12:ace4_list_directory,, +20:u14:ace4_write_data,, +24:u03:ACE4_LIST_DIRECTORY,, +20:u05:ACE4_WRITE_DATA,, +17:u06:non-directory, +15:u00:0x00100000;, +18:u03:ACE4_ADD_FILE,, +12:u06:objects., +18:u10:ace4_read_data, +24:u11:ace4_list_directory,, +20:u13:ace4_write_data,, +17:u14:non-directory, +24:u02:ACE4_LIST_DIRECTORY,, +20:u04:ACE4_WRITE_DATA,, +17:u05:non-directory, +18:u02:ACE4_ADD_FILE,, +12:u05:objects., +8:u08:131], +24:u10:ace4_list_directory,, +20:u12:ace4_write_data,, +17:u13:non-directory, +24:u01:ACE4_LIST_DIRECTORY,, +20:u03:ACE4_WRITE_DATA,, +17:u04:non-directory, +18:u01:ACE4_ADD_FILE,, +12:u04:objects., +8:u07:131], +20:u11:ace4_write_data,, +17:u12:non-directory, +24:u00:ACE4_LIST_DIRECTORY,, +20:u02:ACE4_WRITE_DATA,, +17:u03:non-directory, +18:u00:ACE4_ADD_FILE,, +12:u03:objects., +8:u06:131], +20:u10:ace4_write_data,, +17:u11:non-directory, +20:u01:ACE4_WRITE_DATA,, +17:u02:non-directory, +14:u08:6.2.1.3.1., +12:u02:objects., +8:u05:131], +17:u10:non-directory, +20:u00:ACE4_WRITE_DATA,, +17:u01:non-directory, +12:u01:objects., +8:u04:131], +14:u08:Discussion, +17:u00:non-directory, +14:u07:6.2.1.3.1., +16:u08:Operation(s), +12:u00:objects., +8:u03:131], +14:u07:Discussion, +14:u06:6.2.1.3.1., +8:u02:131], +14:u06:Discussion, +13:u08:affected:, +14:u14:6.2.1.3.1., +14:u05:6.2.1.3.1., +16:u07:Operation(s), +8:u01:131], +14:u05:Discussion, +13:u07:affected:, +14:u13:6.2.1.3.1., +14:u04:6.2.1.3.1., +16:u06:Operation(s), +15:u08:Discussion:, +8:u00:131], +14:u04:Discussion, +13:u06:affected:, +14:u12:6.2.1.3.1., +16:u14:operation(s), +14:u03:6.2.1.3.1., +16:u05:Operation(s), +14:u08:Permission, +14:u03:Discussion, +13:u05:affected:, +14:u11:6.2.1.3.1., +16:u13:operation(s), +14:u02:6.2.1.3.1., +16:u04:Operation(s), +15:u07:Discussion:, +14:u02:Discussion, +13:u04:affected:, +14:u10:6.2.1.3.1., +16:u12:operation(s), +14:u01:6.2.1.3.1., +16:u03:Operation(s), +15:u06:Discussion:, +14:u07:Permission, +14:u01:Discussion, +13:u03:affected:, +16:u11:operation(s), +15:u14:discussion:, +14:u00:6.2.1.3.1., +16:u02:Operation(s), +15:u05:Discussion:, +14:u06:Permission, +14:u00:Discussion, +13:u02:affected:, +16:u10:operation(s), +15:u13:discussion:, +14:u14:permission, +16:u01:Operation(s), +15:u04:Discussion:, +14:u05:Permission, +13:u01:affected:, +15:u12:discussion:, +14:u13:permission, +16:u00:Operation(s), +15:u03:Discussion:, +14:u04:Permission, +13:u00:affected:, +15:u11:discussion:, +14:u12:permission, +8:u23:Perm, +15:u02:Discussion:, +14:u03:Permission, +15:u10:discussion:, +14:u11:permission, +23:u14:ace4_list_directory, +15:u01:Discussion:, +14:u02:Permission, +14:u10:permission, +23:u13:ace4_list_directory, +15:u00:Discussion:, +14:u01:Permission, +23:u12:ace4_list_directory, +14:u00:Permission, +23:u11:ace4_list_directory, +9:u08:WRITE, +23:u10:ace4_list_directory, +19:u14:ace4_write_data, +9:u07:WRITE, +19:u13:ace4_write_data, +9:u06:WRITE, +19:u12:ace4_write_data, +9:u14:write, +9:u05:WRITE, +19:u11:ace4_write_data, +9:u13:write, +9:u04:WRITE, +19:u10:ace4_write_data, +9:u12:write, +6:u21:WR, +7:u22:WRI, +8:u23:WRIT, +9:u03:WRITE, +9:u11:write, +9:u02:WRITE, +9:u10:write, +9:u01:WRITE, +17:u14:ace4_add_file, +9:u00:WRITE, +17:u13:ace4_add_file, +17:u12:ace4_add_file, +17:u11:ace4_add_file, +8:u08:132], +17:u10:ace4_add_file, +8:u07:132], +8:u06:132], +8:u05:132], +8:u04:132], +8:u03:132], +8:u02:132], +8:u01:132], +11:u08:NF4CHR,, +8:u00:132], +12:u08:NF4SOCK,, +11:u07:NF4CHR,, +12:u07:NF4SOCK,, +11:u08:covered, +11:u06:NF4CHR,, +13:u08:affected., +12:u06:NF4SOCK,, +11:u07:covered, +11:u14:nf4chr,, +11:u05:NF4CHR,, +12:u05:NF4SOCK,, +11:u06:covered, +11:u13:nf4chr,, +8:uI2:,,.(, +11:u04:NF4CHR,, +13:u07:affected., +12:u04:NF4SOCK,, +11:u05:covered, +11:u12:nf4chr,, +7:u22:NF4, +8:u23:NF4C, +8:uI1:,,.(, +11:u03:NF4CHR,, +13:u06:affected., +12:u03:NF4SOCK,, +11:u04:covered, +11:u11:nf4chr,, +13:u14:affected., +8:uI0:,,.(, +11:u02:NF4CHR,, +13:u05:affected., +12:u02:NF4SOCK,, +11:u03:covered, +11:u10:nf4chr,, +13:u13:affected., +20:u14:ace4_append_data, +11:u01:NF4CHR,, +13:u04:affected., +12:u01:NF4SOCK,, +11:u02:covered, +13:u12:affected., +20:u13:ace4_append_data, +7:u22:aff, +8:u23:affe, +11:u00:NF4CHR,, +13:u03:affected., +12:u00:NF4SOCK,, +11:u01:covered, +13:u11:affected., +20:u12:ace4_append_data, +13:u02:affected., +11:u00:covered, +13:u10:affected., +20:u11:ace4_append_data, +13:u01:affected., +20:u10:ace4_append_data, +13:u00:affected., +25:u14:ace4_add_subdirectory, +25:u13:ace4_add_subdirectory, +25:u12:ace4_add_subdirectory, +25:u11:ace4_add_subdirectory, +25:u10:ace4_add_subdirectory, +25:u14:ace4_read_named_attrs, +8:u08:133], +25:u13:ace4_read_named_attrs, +8:u07:133], +25:u12:ace4_read_named_attrs, +8:u06:133], +25:u11:ace4_read_named_attrs, +8:u05:133], +25:u10:ace4_read_named_attrs, +8:u04:133], +8:u03:133], +8:u02:133], +8:u01:133], +12:u14:openattr, +8:u00:133], +12:u13:openattr, +12:u12:openattr, +13:u08:createdir, +12:u11:openattr, +13:u07:createdir, +12:u10:openattr, +13:u06:createdir, +6:u14:1), +13:u05:createdir, +6:u13:1), +11:u14:exists,, +13:u04:createdir, +6:u12:1), +11:u13:exists,, +26:u14:ace4_write_named_attrs, +6:u22:1), +6:u23:1), +13:u03:createdir, +6:u11:1), +11:u12:exists,, +26:u13:ace4_write_named_attrs, +13:u02:createdir, +6:u10:1), +11:u11:exists,, +26:u12:ace4_write_named_attrs, +13:u01:createdir, +11:u10:exists,, +26:u11:ace4_write_named_attrs, +13:u00:createdir, +26:u10:ace4_write_named_attrs, +13:u14:createdir, +13:u13:createdir, +13:u12:createdir, +13:u11:createdir, +13:u10:createdir, +16:u14:ace4_execute, +10:u08:REMOVE, +16:u13:ace4_execute, +16:u12:ace4_execute, +10:u07:REMOVE, +16:u11:ace4_execute, +10:u06:REMOVE, +16:u10:ace4_execute, +10:u14:remove, +10:u05:REMOVE, +10:u13:remove, +10:u04:REMOVE, +10:u12:remove, +7:u22:REM, +8:u23:REMO, +10:u03:REMOVE, +10:u11:remove, +10:u02:REMOVE, +10:u10:remove, +10:u01:REMOVE, +8:u08:134], +10:u00:REMOVE, +8:u07:134], +8:u06:134], +8:u05:134], +8:u04:134], +8:u03:134], +8:u02:134], +8:u01:134], +8:u00:134], +12:u08:replying, +12:u07:replying, +12:u08:silently, +12:u06:replying, +12:u07:silently, +12:u14:replying, +12:u05:replying, +12:u06:silently, +12:u13:replying, +12:u04:replying, +30:u08:nfsuser:ACE4_EXECUTE:ALLOW, +12:u05:silently, +12:u12:replying, +12:u03:replying, +12:u04:silently, +12:u11:replying, +12:u02:replying, +30:u07:nfsuser:ACE4_EXECUTE:ALLOW, +12:u03:silently, +12:u10:replying, +12:u01:replying, +30:u06:nfsuser:ACE4_EXECUTE:ALLOW, +10:u08:Rather, +12:u02:silently, +30:u14:nfsuser:ace4_execute:allow, +12:u00:replying, +30:u05:nfsuser:ACE4_EXECUTE:ALLOW, +45:u08:nfsuser:ACE4_EXECUTE/ACE4_READ_DATA:ALLOW, +12:u01:silently, +9:u08:than:, +30:u13:nfsuser:ace4_execute:allow, +30:u04:nfsuser:ACE4_EXECUTE:ALLOW, +10:u07:Rather, +12:u00:silently, +9:u07:than:, +30:u12:nfsuser:ace4_execute:allow, +8:u23:nfsu, +30:u03:nfsuser:ACE4_EXECUTE:ALLOW, +10:u06:Rather, +45:u07:nfsuser:ACE4_EXECUTE/ACE4_READ_DATA:ALLOW, +9:u06:than:, +30:u11:nfsuser:ace4_execute:allow, +30:u02:nfsuser:ACE4_EXECUTE:ALLOW, +10:u05:Rather, +45:u06:nfsuser:ACE4_EXECUTE/ACE4_READ_DATA:ALLOW, +9:u05:than:, +30:u10:nfsuser:ace4_execute:allow, +45:u14:nfsuser:ace4_execute/ace4_read_data:allow, +30:u01:nfsuser:ACE4_EXECUTE:ALLOW, +10:u04:Rather, +45:u05:nfsuser:ACE4_EXECUTE/ACE4_READ_DATA:ALLOW, +9:u04:than:, +45:u13:nfsuser:ace4_execute/ace4_read_data:allow, +7:u22:Rat, +8:u23:Rath, +7:uI2::/:, +30:u00:nfsuser:ACE4_EXECUTE:ALLOW, +10:u03:Rather, +45:u04:nfsuser:ACE4_EXECUTE/ACE4_READ_DATA:ALLOW, +9:u03:than:, +45:u12:nfsuser:ace4_execute/ace4_read_data:allow, +7:uI1::/:, +10:u02:Rather, +45:u03:nfsuser:ACE4_EXECUTE/ACE4_READ_DATA:ALLOW, +9:u02:than:, +45:u11:nfsuser:ace4_execute/ace4_read_data:allow, +7:uI0::/:, +10:u01:Rather, +45:u02:nfsuser:ACE4_EXECUTE/ACE4_READ_DATA:ALLOW, +9:u01:than:, +45:u10:nfsuser:ace4_execute/ace4_read_data:allow, +10:u00:Rather, +45:u01:nfsuser:ACE4_EXECUTE/ACE4_READ_DATA:ALLOW, +9:u00:than:, +45:u00:nfsuser:ACE4_EXECUTE/ACE4_READ_DATA:ALLOW, +21:u14:ace4_delete_child, +21:u13:ace4_delete_child, +21:u12:ace4_delete_child, +21:u11:ace4_delete_child, +21:u10:ace4_delete_child, +8:u08:135], +8:u07:135], +8:u06:135], +8:u05:135], +8:u04:135], +8:u03:135], +8:u02:135], +13:u08:interact., +8:u01:135], +13:u07:interact., +8:u00:135], +13:u06:interact., +10:u08:VERIFY, +13:u05:interact., +24:u14:ace4_read_attributes, +11:u08:NVERIFY, +13:u04:interact., +24:u13:ace4_read_attributes, +10:u07:VERIFY, +13:u03:interact., +24:u12:ace4_read_attributes, +11:u14:getattr, +10:u06:VERIFY, +11:u07:NVERIFY, +13:u02:interact., +24:u11:ace4_read_attributes, +11:u13:getattr, +10:u14:verify, +10:u05:VERIFY, +11:u06:NVERIFY, +13:u01:interact., +24:u10:ace4_read_attributes, +11:u12:getattr, +10:u13:verify, +11:u14:nverify, +10:u04:VERIFY, +11:u05:NVERIFY, +13:u00:interact., +11:u11:getattr, +10:u12:verify, +11:u13:nverify, +6:u21:VE, +7:u22:VER, +8:u23:VERI, +10:u03:VERIFY, +11:u04:NVERIFY, +8:u08:UNIX, +11:u10:getattr, +10:u11:verify, +11:u12:nverify, +6:u21:NV, +7:u22:NVE, +8:u23:NVER, +10:u02:VERIFY, +11:u03:NVERIFY, +8:u07:UNIX, +10:u10:verify, +11:u11:nverify, +10:u01:VERIFY, +11:u02:NVERIFY, +8:u06:UNIX, +11:u10:nverify, +10:u00:VERIFY, +11:u01:NVERIFY, +8:u05:UNIX, +11:u00:NVERIFY, +8:u04:UNIX, +8:u03:UNIX, +8:uI2:"-"., +8:u02:UNIX, +8:uI1:"-"., +16:u08:time_create,, +8:u01:UNIX, +25:u14:ace4_write_attributes, +8:uI0:"-"., +8:u00:UNIX, +20:u08:time_modify_set,, +25:u13:ace4_write_attributes, +16:u07:time_create,, +20:u07:time_modify_set,, +25:u12:ace4_write_attributes, +16:u06:time_create,, +20:u06:time_modify_set,, +25:u11:ace4_write_attributes, +16:u14:time_create,, +16:u05:time_create,, +13:u08:mimetype,, +20:u05:time_modify_set,, +25:u10:ace4_write_attributes, +16:u13:time_create,, +16:u04:time_create,, +20:u04:time_modify_set,, +11:u08:hidden,, +16:u12:time_create,, +16:u03:time_create,, +13:u07:mimetype,, +20:u03:time_modify_set,, +11:u07:hidden,, +16:u11:time_create,, +16:u02:time_create,, +13:u06:mimetype,, +20:u02:time_modify_set,, +11:u06:hidden,, +16:u10:time_create,, +13:u14:mimetype,, +16:u01:time_create,, +13:u05:mimetype,, +20:u01:time_modify_set,, +11:u05:hidden,, +13:u13:mimetype,, +16:u00:time_create,, +13:u04:mimetype,, +20:u00:time_modify_set,, +11:u04:hidden,, +13:u12:mimetype,, +7:u22:mim, +8:u23:mime, +13:u03:mimetype,, +11:u03:hidden,, +13:u11:mimetype,, +24:u14:ace4_write_retention, +13:u02:mimetype,, +11:u02:hidden,, +13:u10:mimetype,, +24:u13:ace4_write_retention, +13:u01:mimetype,, +11:u01:hidden,, +24:u12:ace4_write_retention, +13:u00:mimetype,, +11:u00:hidden,, +24:u11:ace4_write_retention, +8:u08:136], +24:u10:ace4_write_retention, +8:u07:136], +8:u06:136], +8:u05:136], +8:u04:136], +8:u03:136], +8:u02:136], +8:u01:136], +8:u00:136], +29:u08:ACE_WRITE_RETENTION_HOLD., +29:u07:ACE_WRITE_RETENTION_HOLD., +29:u06:ACE_WRITE_RETENTION_HOLD., +29:u14:ace_write_retention_hold., +29:u05:ACE_WRITE_RETENTION_HOLD., +29:u13:ace_write_retention_hold., +15:u14:ace4_delete, +29:u04:ACE_WRITE_RETENTION_HOLD., +29:u12:ace_write_retention_hold., +15:u13:ace4_delete, +8:u23:ACE_, +29:u03:ACE_WRITE_RETENTION_HOLD., +29:u11:ace_write_retention_hold., +15:u12:ace4_delete, +29:u02:ACE_WRITE_RETENTION_HOLD., +13:u08:6.2.1.3.2, +29:u10:ace_write_retention_hold., +15:u11:ace4_delete, +29:u01:ACE_WRITE_RETENTION_HOLD., +13:u07:6.2.1.3.2, +15:u10:ace4_delete, +29:u00:ACE_WRITE_RETENTION_HOLD., +13:u06:6.2.1.3.2, +13:u05:6.2.1.3.2, +13:u04:6.2.1.3.2, +17:u14:ace4_read_acl, +13:u03:6.2.1.3.2, +17:u13:ace4_read_acl, +13:u02:6.2.1.3.2, +17:u12:ace4_read_acl, +13:u01:6.2.1.3.2, +17:u11:ace4_read_acl, +13:u00:6.2.1.3.2, +17:u10:ace4_read_acl, +18:u14:ace4_write_acl, +18:u13:ace4_write_acl, +18:u12:ace4_write_acl, +8:u08:137], +18:u11:ace4_write_acl, +8:u07:137], +18:u10:ace4_write_acl, +8:u06:137], +8:u05:137], +8:u04:137], +8:u03:137], +8:u02:137], +8:u01:137], +8:u00:137], +20:u14:ace4_write_owner, +20:u13:ace4_write_owner, +20:u12:ace4_write_owner, +12:u08:chgrp()., +12:u08:systems,, +20:u11:ace4_write_owner, +12:u07:systems,, +20:u10:ace4_write_owner, +12:u07:chgrp()., +12:u06:systems,, +8:u14:unix, +12:u06:chgrp()., +8:u08:NONE, +12:u05:systems,, +8:u13:unix, +12:u14:chgrp()., +12:u05:chgrp()., +12:u04:systems,, +8:u12:unix, +12:u13:chgrp()., +20:u14:ace4_synchronize, +12:u04:chgrp()., +8:u07:NONE, +12:u03:systems,, +8:u11:unix, +12:u12:chgrp()., +20:u13:ace4_synchronize, +7:u22:chg, +8:u23:chgr, +12:u03:chgrp()., +8:u06:NONE, +13:u08:primitive, +12:u02:systems,, +8:u10:unix, +12:u11:chgrp()., +20:u12:ace4_synchronize, +8:u14:none, +12:u02:chgrp()., +8:u05:NONE, +12:u01:systems,, +12:u10:chgrp()., +20:u11:ace4_synchronize, +8:u13:none, +12:u01:chgrp()., +8:u04:NONE, +13:u07:primitive, +12:u00:systems,, +20:u10:ace4_synchronize, +8:u12:none, +7:u22:NON, +8:u23:NONE, +12:u00:chgrp()., +8:u03:NONE, +13:u06:primitive, +8:u11:none, +13:u14:primitive, +8:u02:NONE, +13:u05:primitive, +8:u10:none, +13:u13:primitive, +8:u01:NONE, +13:u04:primitive, +13:u12:primitive, +8:u23:prim, +8:u00:NONE, +13:u03:primitive, +13:u11:primitive, +13:u02:primitive, +21:u08:ACE4_SYNCHRONIZE., +13:u10:primitive, +13:u01:primitive, +13:u00:primitive, +21:u07:ACE4_SYNCHRONIZE., +21:u06:ACE4_SYNCHRONIZE., +21:u14:ace4_synchronize., +21:u05:ACE4_SYNCHRONIZE., +21:u13:ace4_synchronize., +21:u04:ACE4_SYNCHRONIZE., +21:u12:ace4_synchronize., +21:u03:ACE4_SYNCHRONIZE., +21:u11:ace4_synchronize., +21:u02:ACE4_SYNCHRONIZE., +21:u10:ace4_synchronize., +21:u01:ACE4_SYNCHRONIZE., +21:u00:ACE4_SYNCHRONIZE., +14:u08:permission, +8:u08:bit., +12:u08:retrieve, +8:u07:bit., +14:u07:permission, +8:u06:bit., +14:u06:permission, +12:u07:retrieve, +8:u05:bit., +14:u05:permission, +12:u06:retrieve, +8:u04:bit., +12:u14:retrieve, +14:u04:permission, +12:u05:retrieve, +8:u03:bit., +12:u13:retrieve, +14:u03:permission, +12:u04:retrieve, +8:u02:bit., +12:u12:retrieve, +14:u02:permission, +12:u03:retrieve, +8:u01:bit., +8:u08:138], +12:u11:retrieve, +14:u01:permission, +12:u02:retrieve, +8:u00:bit., +8:u07:138], +12:u10:retrieve, +14:u00:permission, +12:u01:retrieve, +8:u06:138], +12:u00:retrieve, +8:u05:138], +8:u04:138], +14:u08:contents);, +8:u03:138], +9:u08:[17]., +8:u02:138], +14:u07:contents);, +8:u08:show, +8:u01:138], +14:u06:contents);, +9:u07:[17]., +9:u08:write, +8:u00:138], +14:u14:contents);, +14:u05:contents);, +9:u06:[17]., +8:u07:show, +14:u13:contents);, +9:u14:[17]., +8:uI2:);"", +14:u04:contents);, +9:u05:[17]., +8:u06:show, +9:u07:write, +14:u08:implement,, +14:u12:contents);, +9:u13:[17]., +8:u14:show, +8:uI1:);"", +14:u03:contents);, +9:u04:[17]., +8:u05:show, +9:u06:write, +14:u11:contents);, +9:u12:[17]., +8:u13:show, +7:u22:[17, +8:u23:[17], +8:uI0:);"", +14:u02:contents);, +9:u03:[17]., +8:u04:show, +9:u05:write, +14:u07:implement,, +14:u10:contents);, +9:u11:[17]., +8:u12:show, +14:u01:contents);, +9:u02:[17]., +8:u03:show, +9:u04:write, +14:u06:implement,, +13:u08:appending, +11:u08:suppose, +9:u10:[17]., +8:u11:show, +14:u14:implement,, +14:u00:contents);, +9:u01:[17]., +8:u02:show, +9:u03:write, +14:u05:implement,, +11:u07:suppose, +8:u10:show, +14:u13:implement,, +9:u00:[17]., +8:u01:show, +9:u02:write, +14:u04:implement,, +13:u07:appending, +11:u06:suppose, +11:u08:submits, +14:u12:implement,, +8:u00:show, +9:u01:write, +14:u03:implement,, +13:u06:appending, +7:u08:off, +11:u05:suppose, +11:u07:submits, +14:u11:implement,, +13:u14:appending, +9:u00:write, +14:u02:implement,, +13:u05:appending, +14:u08:6.2.1.3.2., +11:u04:suppose, +11:u06:submits, +14:u10:implement,, +13:u13:appending, +14:u01:implement,, +13:u04:appending, +7:u07:off, +11:u03:suppose, +11:u05:submits, +13:u12:appending, +8:u23:appe, +14:u00:implement,, +13:u03:appending, +7:u06:off, +14:u07:6.2.1.3.2., +11:u02:suppose, +11:u04:submits, +13:u11:appending, +7:u14:off, +13:u02:appending, +7:u05:off, +14:u06:6.2.1.3.2., +11:u01:suppose, +11:u03:submits, +13:u10:appending, +7:u13:off, +14:u14:6.2.1.3.2., +13:u01:appending, +7:u04:off, +14:u05:6.2.1.3.2., +11:u00:suppose, +11:u02:submits, +7:u12:off, +14:u13:6.2.1.3.2., +7:u23:off, +13:u00:appending, +7:u03:off, +14:u04:6.2.1.3.2., +11:u01:submits, +7:u11:off, +14:u12:6.2.1.3.2., +7:u02:off, +14:u03:6.2.1.3.2., +11:u08:parent;, +11:u00:submits, +7:u10:off, +14:u11:6.2.1.3.2., +6:u21:Tw, +7:u22:Two, +7:u23:Two, +8:uI2:(""), +7:u01:off, +14:u02:6.2.1.3.2., +14:u10:6.2.1.3.2., +8:uI1:(""), +9:uI2:("")., +7:u00:off, +14:u01:6.2.1.3.2., +11:u07:parent;, +8:uI0:(""), +9:uI1:("")., +8:uI2:""(), +14:u00:6.2.1.3.2., +11:u06:parent;, +11:u08:target,, +11:u14:parent;, +9:uI0:("")., +8:uI1:""(), +11:u05:parent;, +11:u13:parent;, +8:uI0:""(), +11:u04:parent;, +11:u07:target,, +11:u12:parent;, +11:u03:parent;, +11:u06:target,, +17:u08:permissions.), +11:u11:parent;, +11:u14:target,, +11:u02:parent;, +11:u05:target,, +17:u07:permissions.), +11:u10:parent;, +11:u13:target,, +7:uI2:,.(, +11:u01:parent;, +11:u04:target,, +17:u06:permissions.), +10:u08:above,, +11:u12:target,, +7:uI1:,.(, +11:u00:parent;, +11:u03:target,, +14:u08:permitted., +17:u05:permissions.), +10:u07:above,, +11:u11:target,, +7:uI0:,.(, +11:u02:target,, +17:u04:permissions.), +10:u06:above,, +11:u10:target,, +11:u01:target,, +14:u07:permitted., +17:u03:permissions.), +10:u05:above,, +11:u00:target,, +14:u06:permitted., +17:u02:permissions.), +10:u04:above,, +14:u14:permitted., +14:u05:permitted., +17:u01:permissions.), +10:u03:above,, +14:u13:permitted., +14:u04:permitted., +12:u08:6.2.1.4., +17:u00:permissions.), +10:u02:above,, +14:u08:semantics,, +14:u12:permitted., +14:u03:permitted., +10:u01:above,, +14:u07:semantics,, +14:u11:permitted., +14:u02:permitted., +12:u07:6.2.1.4., +10:u00:above,, +14:u06:semantics,, +14:u10:permitted., +14:u01:permitted., +12:u06:6.2.1.4., +14:u05:semantics,, +12:u14:6.2.1.4., +14:u00:permitted., +12:u05:6.2.1.4., +14:u04:semantics,, +12:u13:6.2.1.4., +12:u04:6.2.1.4., +14:u03:semantics,, +8:u08:139], +12:u12:6.2.1.4., +12:u03:6.2.1.4., +14:u02:semantics,, +8:u07:139], +12:u11:6.2.1.4., +12:u02:6.2.1.4., +14:u01:semantics,, +8:u06:139], +12:u10:6.2.1.4., +12:u01:6.2.1.4., +14:u00:semantics,, +8:u05:139], +12:u00:6.2.1.4., +8:u04:139], +25:u08:ACE4_FILE_INHERIT_ACE, +8:u03:139], +25:u07:ACE4_FILE_INHERIT_ACE, +8:u02:139], +25:u06:ACE4_FILE_INHERIT_ACE, +30:u08:ACE4_DIRECTORY_INHERIT_ACE, +8:u01:139], +25:u05:ACE4_FILE_INHERIT_ACE, +30:u07:ACE4_DIRECTORY_INHERIT_ACE, +8:u00:139], +25:u04:ACE4_FILE_INHERIT_ACE, +30:u06:ACE4_DIRECTORY_INHERIT_ACE, +33:u08:ACE4_NO_PROPAGATE_INHERIT_ACE, +25:u03:ACE4_FILE_INHERIT_ACE, +30:u05:ACE4_DIRECTORY_INHERIT_ACE, +33:u07:ACE4_NO_PROPAGATE_INHERIT_ACE, +25:u02:ACE4_FILE_INHERIT_ACE, +30:u04:ACE4_DIRECTORY_INHERIT_ACE, +33:u06:ACE4_NO_PROPAGATE_INHERIT_ACE, +25:u08:ACE4_INHERIT_ONLY_ACE, +25:u01:ACE4_FILE_INHERIT_ACE, +30:u03:ACE4_DIRECTORY_INHERIT_ACE, +33:u05:ACE4_NO_PROPAGATE_INHERIT_ACE, +25:u07:ACE4_INHERIT_ONLY_ACE, +25:u00:ACE4_FILE_INHERIT_ACE, +30:u02:ACE4_DIRECTORY_INHERIT_ACE, +33:u04:ACE4_NO_PROPAGATE_INHERIT_ACE, +25:u06:ACE4_INHERIT_ONLY_ACE, +35:u08:ACE4_SUCCESSFUL_ACCESS_ACE_FLAG, +30:u01:ACE4_DIRECTORY_INHERIT_ACE, +33:u03:ACE4_NO_PROPAGATE_INHERIT_ACE, +25:u05:ACE4_INHERIT_ONLY_ACE, +35:u07:ACE4_SUCCESSFUL_ACCESS_ACE_FLAG, +30:u00:ACE4_DIRECTORY_INHERIT_ACE, +33:u02:ACE4_NO_PROPAGATE_INHERIT_ACE, +25:u04:ACE4_INHERIT_ONLY_ACE, +35:u06:ACE4_SUCCESSFUL_ACCESS_ACE_FLAG, +31:u08:ACE4_FAILED_ACCESS_ACE_FLAG, +33:u01:ACE4_NO_PROPAGATE_INHERIT_ACE, +25:u03:ACE4_INHERIT_ONLY_ACE, +35:u05:ACE4_SUCCESSFUL_ACCESS_ACE_FLAG, +31:u07:ACE4_FAILED_ACCESS_ACE_FLAG, +33:u00:ACE4_NO_PROPAGATE_INHERIT_ACE, +25:u02:ACE4_INHERIT_ONLY_ACE, +35:u04:ACE4_SUCCESSFUL_ACCESS_ACE_FLAG, +31:u06:ACE4_FAILED_ACCESS_ACE_FLAG, +25:u08:ACE4_IDENTIFIER_GROUP, +25:u01:ACE4_INHERIT_ONLY_ACE, +35:u03:ACE4_SUCCESSFUL_ACCESS_ACE_FLAG, +31:u05:ACE4_FAILED_ACCESS_ACE_FLAG, +25:u07:ACE4_IDENTIFIER_GROUP, +25:u00:ACE4_INHERIT_ONLY_ACE, +35:u02:ACE4_SUCCESSFUL_ACCESS_ACE_FLAG, +31:u04:ACE4_FAILED_ACCESS_ACE_FLAG, +25:u06:ACE4_IDENTIFIER_GROUP, +22:u08:ACE4_INHERITED_ACE, +35:u01:ACE4_SUCCESSFUL_ACCESS_ACE_FLAG, +31:u03:ACE4_FAILED_ACCESS_ACE_FLAG, +25:u05:ACE4_IDENTIFIER_GROUP, +22:u07:ACE4_INHERITED_ACE, +9:u08:flags, +35:u00:ACE4_SUCCESSFUL_ACCESS_ACE_FLAG, +31:u02:ACE4_FAILED_ACCESS_ACE_FLAG, +25:u04:ACE4_IDENTIFIER_GROUP, +22:u06:ACE4_INHERITED_ACE, +31:u01:ACE4_FAILED_ACCESS_ACE_FLAG, +25:u03:ACE4_IDENTIFIER_GROUP, +22:u05:ACE4_INHERITED_ACE, +9:u07:flags, +31:u00:ACE4_FAILED_ACCESS_ACE_FLAG, +25:u02:ACE4_IDENTIFIER_GROUP, +22:u04:ACE4_INHERITED_ACE, +9:u06:flags, +25:u01:ACE4_IDENTIFIER_GROUP, +22:u03:ACE4_INHERITED_ACE, +9:u05:flags, +25:u00:ACE4_IDENTIFIER_GROUP, +22:u02:ACE4_INHERITED_ACE, +9:u04:flags, +22:u01:ACE4_INHERITED_ACE, +9:u03:flags, +22:u00:ACE4_INHERITED_ACE, +9:u02:flags, +25:u14:ace4_file_inherit_ace, +9:u01:flags, +25:u13:ace4_file_inherit_ace, +9:u00:flags, +25:u12:ace4_file_inherit_ace, +25:u11:ace4_file_inherit_ace, +25:u10:ace4_file_inherit_ace, +16:u14:directories,, +14:u08:6.2.1.4.1., +9:u08:flag., +16:u13:directories,, +9:u07:flag., +16:u12:directories,, +14:u07:6.2.1.4.1., +9:u06:flag., +16:u11:directories,, +30:u14:ace4_directory_inherit_ace, +14:u06:6.2.1.4.1., +14:u08:inherited., +9:u05:flag., +16:u10:directories,, +30:u13:ace4_directory_inherit_ace, +14:u14:6.2.1.4.1., +14:u05:6.2.1.4.1., +9:u04:flag., +30:u12:ace4_directory_inherit_ace, +14:u13:6.2.1.4.1., +14:u04:6.2.1.4.1., +14:u07:inherited., +7:u08:Can, +9:u03:flag., +30:u11:ace4_directory_inherit_ace, +14:u12:6.2.1.4.1., +14:u03:6.2.1.4.1., +14:u06:inherited., +9:u02:flag., +30:u10:ace4_directory_inherit_ace, +14:u11:6.2.1.4.1., +14:u14:inherited., +14:u02:6.2.1.4.1., +14:u05:inherited., +7:u07:Can, +9:u01:flag., +14:u10:6.2.1.4.1., +14:u13:inherited., +14:u01:6.2.1.4.1., +14:u04:inherited., +7:u06:Can, +9:u00:flag., +14:u12:inherited., +14:u00:6.2.1.4.1., +14:u03:inherited., +7:u05:Can, +14:u11:inherited., +9:u14:added, +14:u02:inherited., +7:u04:Can, +14:u10:inherited., +9:u13:added, +7:u22:Can, +7:u23:Can, +14:u01:inherited., +7:u03:Can, +9:u12:added, +14:u00:inherited., +7:u02:Can, +15:u08:inheritance, +9:u11:added, +7:u01:Can, +16:u08:directories., +9:u10:added, +33:u14:ace4_no_propagate_inherit_ace, +7:u00:Can, +15:u07:inheritance, +33:u13:ace4_no_propagate_inherit_ace, +15:u06:inheritance, +16:u07:directories., +33:u12:ace4_no_propagate_inherit_ace, +15:u14:inheritance, +15:u05:inheritance, +16:u06:directories., +33:u11:ace4_no_propagate_inherit_ace, +15:u13:inheritance, +16:u14:directories., +15:u04:inheritance, +16:u05:directories., +14:u08:directory,, +33:u10:ace4_no_propagate_inherit_ace, +15:u12:inheritance, +16:u13:directories., +25:u14:ace4_inherit_only_ace, +15:u03:inheritance, +16:u04:directories., +11:u08:trigger, +15:u11:inheritance, +16:u12:directories., +25:u13:ace4_inherit_only_ace, +15:u02:inheritance, +16:u03:directories., +14:u07:directory,, +7:u08:log, +15:u10:inheritance, +16:u11:directories., +25:u12:ace4_inherit_only_ace, +15:u01:inheritance, +16:u02:directories., +14:u06:directory,, +11:u07:trigger, +7:u07:log, +16:u10:directories., +25:u11:ace4_inherit_only_ace, +14:u14:directory,, +15:u00:inheritance, +16:u01:directories., +14:u05:directory,, +11:u06:trigger, +7:u06:log, +25:u10:ace4_inherit_only_ace, +14:u13:directory,, +11:u14:trigger, +16:u00:directories., +14:u04:directory,, +11:u05:trigger, +7:u05:log, +14:u12:directory,, +11:u13:trigger, +14:u03:directory,, +11:u04:trigger, +7:u04:log, +8:u08:140], +14:u11:directory,, +11:u12:trigger, +8:u23:trig, +14:u02:directory,, +11:u03:trigger, +7:u03:log, +8:u07:140], +14:u10:directory,, +11:u11:trigger, +14:u01:directory,, +11:u02:trigger, +7:u02:log, +8:u06:140], +11:u10:trigger, +14:u00:directory,, +11:u01:trigger, +7:u01:log, +8:u05:140], +11:u00:trigger, +7:u00:log, +8:u04:140], +8:u03:140], +10:u08:flags., +8:u02:140], +10:u07:flags., +8:u01:140], +10:u06:flags., +8:u00:140], +10:u05:flags., +10:u04:flags., +10:u03:flags., +10:u02:flags., +10:u01:flags., +35:u14:ace4_successful_access_ace_flag, +10:u00:flags., +12:u08:(FAILED), +35:u13:ace4_successful_access_ace_flag, +31:u14:ace4_failed_access_ace_flag, +11:u08:(ALARM), +12:u07:(FAILED), +11:u08:(AUDIT), +35:u12:ace4_successful_access_ace_flag, +31:u13:ace4_failed_access_ace_flag, +12:u06:(FAILED), +11:u07:(AUDIT), +35:u11:ace4_successful_access_ace_flag, +31:u12:ace4_failed_access_ace_flag, +11:u07:(ALARM), +12:u05:(FAILED), +11:u06:(AUDIT), +35:u10:ace4_successful_access_ace_flag, +31:u11:ace4_failed_access_ace_flag, +30:u14:ace4_system_audit_ace_type, +11:u06:(ALARM), +13:u08:presence,, +12:u04:(FAILED), +11:u05:(AUDIT), +14:u08:attempting, +31:u10:ace4_failed_access_ace_flag, +30:u13:ace4_system_audit_ace_type, +11:u14:(alarm), +11:u05:(ALARM), +12:u03:(FAILED), +11:u04:(AUDIT), +14:u07:attempting, +30:u12:ace4_system_audit_ace_type, +11:u13:(alarm), +9:uI2:().',, +11:u04:(ALARM), +13:u07:presence,, +15:u08:processing,, +12:u02:(FAILED), +11:u03:(AUDIT), +14:u06:attempting, +30:u11:ace4_system_audit_ace_type, +11:u12:(alarm), +7:u22:(AL, +8:u23:(ALA, +9:uI1:().',, +11:u03:(ALARM), +13:u06:presence,, +12:u01:(FAILED), +11:u02:(AUDIT), +14:u05:attempting, +30:u10:ace4_system_audit_ace_type, +11:u11:(alarm), +13:u14:presence,, +9:uI0:().',, +11:u02:(ALARM), +13:u05:presence,, +15:u07:processing,, +12:u00:(FAILED), +11:u01:(AUDIT), +14:u04:attempting, +11:u10:(alarm), +13:u13:presence,, +11:u01:(ALARM), +13:u04:presence,, +15:u06:processing,, +11:u00:(AUDIT), +14:u03:attempting, +13:u12:presence,, +15:u14:processing,, +11:u00:(ALARM), +13:u03:presence,, +15:u05:processing,, +14:u02:attempting, +11:u08:occurs., +13:u11:presence,, +15:u13:processing,, +13:u02:presence,, +15:u04:processing,, +14:u01:attempting, +11:u07:occurs., +13:u10:presence,, +15:u12:processing,, +13:u01:presence,, +15:u03:processing,, +10:u08:FAILED, +14:u00:attempting, +11:u06:occurs., +15:u11:processing,, +9:u14:event, +13:u00:presence,, +15:u02:processing,, +11:u05:occurs., +15:u10:processing,, +9:u13:event, +15:u01:processing,, +10:u07:FAILED, +11:u04:occurs., +9:u12:event, +9:u14:audit, +15:u00:processing,, +10:u06:FAILED, +11:u03:occurs., +9:u11:event, +9:u13:audit, +10:u14:failed, +10:u05:FAILED, +10:u08:ALARM,, +11:u02:occurs., +9:u10:event, +9:u12:audit, +10:u13:failed, +6:u21:AU, +7:u22:AUD, +8:u23:AUDI, +10:u04:FAILED, +9:u08:fails, +11:u01:occurs., +9:u11:audit, +10:u12:failed, +6:u21:FA, +7:u22:FAI, +8:u23:FAIL, +10:u03:FAILED, +10:u07:ALARM,, +11:u00:occurs., +9:u10:audit, +10:u11:failed, +10:u02:FAILED, +10:u06:ALARM,, +9:u07:fails, +13:u08:Indicates, +10:u10:failed, +10:u14:alarm,, +10:u01:FAILED, +10:u05:ALARM,, +9:u06:fails, +10:u13:alarm,, +9:u14:fails, +10:u00:FAILED, +10:u04:ALARM,, +9:u05:fails, +13:u07:Indicates, +10:u12:alarm,, +9:u13:fails, +25:u14:ace4_identifier_group, +7:u22:ALA, +8:u23:ALAR, +10:u03:ALARM,, +9:u04:fails, +13:u06:Indicates, +10:u11:alarm,, +9:u12:fails, +25:u13:ace4_identifier_group, +10:u02:ALARM,, +9:u03:fails, +13:u05:Indicates, +10:u10:alarm,, +9:u11:fails, +25:u12:ace4_identifier_group, +10:u01:ALARM,, +9:u02:fails, +13:u04:Indicates, +12:u08:6.2.1.5., +9:u10:fails, +25:u11:ace4_identifier_group, +8:u23:Indi, +10:u00:ALARM,, +9:u01:fails, +13:u03:Indicates, +12:u07:6.2.1.5., +25:u10:ace4_identifier_group, +9:u00:fails, +13:u02:Indicates, +12:u06:6.2.1.5., +13:u01:Indicates, +12:u05:6.2.1.5., +22:u14:ace4_inherited_ace, +13:u00:Indicates, +12:u04:6.2.1.5., +8:u08:ACEs, +22:u13:ace4_inherited_ace, +16:u08:inheritance., +12:u03:6.2.1.5., +8:u07:ACEs, +22:u12:ace4_inherited_ace, +14:u08:attribute;, +12:u02:6.2.1.5., +8:u06:ACEs, +22:u11:ace4_inherited_ace, +16:u07:inheritance., +12:u01:6.2.1.5., +8:u05:ACEs, +22:u10:ace4_inherited_ace, +16:u06:inheritance., +14:u07:attribute;, +12:u00:6.2.1.5., +8:u04:ACEs, +16:u14:inheritance., +16:u05:inheritance., +14:u06:attribute;, +8:u03:ACEs, +16:u13:inheritance., +14:u14:attribute;, +16:u04:inheritance., +14:u05:attribute;, +8:u02:ACEs, +8:u08:141], +16:u12:inheritance., +14:u13:attribute;, +16:u03:inheritance., +14:u04:attribute;, +8:u01:ACEs, +8:u07:141], +16:u11:inheritance., +14:u12:attribute;, +16:u02:inheritance., +14:u03:attribute;, +8:u00:ACEs, +8:u06:141], +16:u10:inheritance., +14:u11:attribute;, +16:u01:inheritance., +14:u02:attribute;, +8:u05:141], +14:u10:attribute;, +16:u00:inheritance., +14:u01:attribute;, +8:u04:141], +14:u00:attribute;, +8:u03:141], +9:u08:"who", +8:u02:141], +9:u07:"who", +12:u14:6.2.1.5., +10:u08:which., +8:u01:141], +9:u06:"who", +12:u13:6.2.1.5., +8:u00:141], +9:u05:"who", +12:u12:6.2.1.5., +10:u07:which., +16:u08:universally,, +9:u04:"who", +12:u11:6.2.1.5., +10:u06:which., +9:u03:"who", +12:u10:6.2.1.5., +10:u14:which., +10:u05:which., +16:u07:universally,, +9:u02:"who", +10:u13:which., +10:u04:which., +16:u06:universally,, +9:u01:"who", +10:u12:which., +16:u14:universally,, +10:u03:which., +16:u05:universally,, +13:u08:permitted, +9:u00:"who", +9:u08:file., +10:u11:which., +16:u13:universally,, +10:u02:which., +16:u04:universally,, +15:u08:understands, +9:u07:file., +10:u10:which., +16:u12:universally,, +8:u23:univ, +10:u01:which., +16:u03:universally,, +13:u07:permitted, +9:u06:file., +16:u11:universally,, +10:u00:which., +16:u02:universally,, +13:u06:permitted, +15:u07:understands, +9:u05:file., +16:u10:universally,, +13:u14:permitted, +16:u01:universally,, +13:u05:permitted, +15:u06:understands, +9:u04:file., +7:u08:Who, +13:u13:permitted, +15:u14:understands, +16:u00:universally,, +13:u04:permitted, +15:u05:understands, +9:u03:file., +7:u07:Who, +13:u12:permitted, +15:u13:understands, +13:u03:permitted, +15:u04:understands, +9:u02:file., +7:u06:Who, +13:u11:permitted, +15:u12:understands, +13:u02:permitted, +15:u03:understands, +9:u01:file., +7:u05:Who, +13:u10:permitted, +15:u11:understands, +13:u01:permitted, +15:u02:understands, +9:u00:file., +7:u04:Who, +9:u08:OWNER, +15:u10:understands, +13:u00:permitted, +15:u01:understands, +7:u03:Who, +9:u07:OWNER, +15:u00:understands, +7:u02:Who, +9:u06:OWNER, +7:u01:Who, +9:u05:OWNER, +9:u08:GROUP, +7:u00:Who, +9:u04:OWNER, +9:u07:GROUP, +9:u03:OWNER, +9:u06:GROUP, +9:u02:OWNER, +9:u05:GROUP, +12:u08:EVERYONE, +9:u01:OWNER, +9:u04:GROUP, +12:u07:EVERYONE, +9:u00:OWNER, +9:u03:GROUP, +12:u06:EVERYONE, +15:u08:INTERACTIVE, +9:u02:GROUP, +12:u05:EVERYONE, +15:u07:INTERACTIVE, +12:u08:Accessed, +9:u01:GROUP, +12:u04:EVERYONE, +15:u06:INTERACTIVE, +12:u07:Accessed, +9:u00:GROUP, +12:u03:EVERYONE, +15:u05:INTERACTIVE, +12:u06:Accessed, +11:u08:NETWORK, +12:u02:EVERYONE, +15:u04:INTERACTIVE, +12:u05:Accessed, +11:u07:NETWORK, +12:u01:EVERYONE, +15:u03:INTERACTIVE, +12:u04:Accessed, +11:u06:NETWORK, +12:u00:EVERYONE, +15:u02:INTERACTIVE, +12:u03:Accessed, +11:u05:NETWORK, +10:u08:DIALUP, +15:u01:INTERACTIVE, +12:u02:Accessed, +11:u04:NETWORK, +10:u07:DIALUP, +15:u00:INTERACTIVE, +12:u01:Accessed, +11:u03:NETWORK, +10:u06:DIALUP, +12:u00:Accessed, +11:u02:NETWORK, +10:u05:DIALUP, +9:u08:BATCH, +11:u01:NETWORK, +10:u04:DIALUP, +9:u07:BATCH, +11:u00:NETWORK, +10:u03:DIALUP, +9:u06:BATCH, +10:u02:DIALUP, +9:u05:BATCH, +13:u08:ANONYMOUS, +10:u01:DIALUP, +9:u04:BATCH, +13:u07:ANONYMOUS, +10:u00:DIALUP, +9:u03:BATCH, +13:u06:ANONYMOUS, +9:u02:BATCH, +13:u05:ANONYMOUS, +17:u08:AUTHENTICATED, +9:u01:BATCH, +13:u04:ANONYMOUS, +17:u07:AUTHENTICATED, +9:u00:BATCH, +13:u03:ANONYMOUS, +17:u06:AUTHENTICATED, +11:u08:SERVICE, +13:u02:ANONYMOUS, +17:u05:AUTHENTICATED, +11:u07:SERVICE, +13:u01:ANONYMOUS, +17:u04:AUTHENTICATED, +11:u06:SERVICE, +13:u00:ANONYMOUS, +17:u03:AUTHENTICATED, +11:u05:SERVICE, +17:u02:AUTHENTICATED, +11:u04:SERVICE, +12:u08:appended, +17:u01:AUTHENTICATED, +11:u03:SERVICE, +17:u00:AUTHENTICATED, +11:u02:SERVICE, +7:u08:"@", +12:u07:appended, +11:u01:SERVICE, +7:u07:"@", +12:u06:appended, +11:u00:SERVICE, +7:u06:"@", +12:u14:appended, +12:u05:appended, +7:u05:"@", +12:u13:appended, +8:u14:name, +12:u04:appended, +14:u08:6.2.1.5.1., +7:u04:"@", +12:u12:appended, +8:u13:name, +10:uI2:""),,., +12:u03:appended, +7:u03:"@", +12:u11:appended, +8:u12:name, +10:uI1:""),,., +12:u02:appended, +14:u07:6.2.1.5.1., +7:u02:"@", +12:u10:appended, +8:u11:name, +10:uI0:""),,., +12:u01:appended, +14:u06:6.2.1.5.1., +7:u01:"@", +11:u08:"other", +8:u10:name, +14:u14:6.2.1.5.1., +12:u00:appended, +14:u05:6.2.1.5.1., +7:u00:"@", +11:u07:"other", +14:u13:6.2.1.5.1., +14:u04:6.2.1.5.1., +11:u06:"other", +13:u08:literally, +14:u12:6.2.1.5.1., +14:u03:6.2.1.5.1., +11:u05:"other", +13:u07:literally, +14:u11:6.2.1.5.1., +11:uI2:"".,,"", +14:u02:6.2.1.5.1., +11:u04:"other", +13:u06:literally, +14:u10:6.2.1.5.1., +11:uI1:"".,,"", +14:u01:6.2.1.5.1., +11:u03:"other", +13:u05:literally, +8:u08:142], +11:uI0:"".,,"", +14:u00:6.2.1.5.1., +11:u02:"other", +13:u04:literally, +8:u07:142], +11:u01:"other", +13:u03:literally, +8:u06:142], +10:u08:6.2.2., +11:u00:"other", +13:u02:literally, +8:u05:142], +13:u01:literally, +8:u04:142], +10:u07:6.2.2., +13:u00:literally, +8:u03:142], +10:u06:6.2.2., +8:u02:142], +10:u14:6.2.2., +10:u05:6.2.2., +10:u08:6.2.3., +8:u01:142], +10:u13:6.2.2., +10:u04:6.2.2., +8:u00:142], +10:u12:6.2.2., +10:u03:6.2.2., +10:u07:6.2.3., +10:u11:6.2.2., +10:u02:6.2.2., +10:u06:6.2.3., +10:u10:6.2.2., +10:u14:6.2.3., +10:u01:6.2.2., +10:u05:6.2.3., +10:u08:6.2.4., +10:u13:6.2.3., +10:u00:6.2.2., +10:u04:6.2.3., +10:u12:6.2.3., +10:u03:6.2.3., +10:u07:6.2.4., +10:u11:6.2.3., +10:u02:6.2.3., +10:u06:6.2.4., +10:u10:6.2.3., +10:u14:6.2.4., +10:u01:6.2.3., +10:u05:6.2.4., +14:u08:MODE4_SUID, +10:u13:6.2.4., +10:u00:6.2.3., +10:u04:6.2.4., +14:u07:MODE4_SUID, +14:u08:MODE4_SGID, +10:u12:6.2.4., +10:u03:6.2.4., +14:u06:MODE4_SUID, +14:u07:MODE4_SGID, +14:u08:MODE4_SVTX, +10:u11:6.2.4., +10:u02:6.2.4., +14:u05:MODE4_SUID, +14:u06:MODE4_SGID, +14:u07:MODE4_SVTX, +14:u08:MODE4_RUSR, +10:u10:6.2.4., +10:u01:6.2.4., +14:u04:MODE4_SUID, +14:u05:MODE4_SGID, +14:u06:MODE4_SVTX, +14:u07:MODE4_RUSR, +14:u08:MODE4_WUSR, +10:u00:6.2.4., +14:u03:MODE4_SUID, +14:u04:MODE4_SGID, +14:u05:MODE4_SVTX, +14:u06:MODE4_RUSR, +14:u07:MODE4_WUSR, +14:u08:MODE4_XUSR, +14:u02:MODE4_SUID, +14:u03:MODE4_SGID, +14:u04:MODE4_SVTX, +14:u05:MODE4_RUSR, +14:u06:MODE4_WUSR, +14:u07:MODE4_XUSR, +14:u08:MODE4_RGRP, +10:uI2:;/*:*/, +14:u01:MODE4_SUID, +14:u02:MODE4_SGID, +14:u03:MODE4_SVTX, +14:u04:MODE4_RUSR, +14:u05:MODE4_WUSR, +14:u06:MODE4_XUSR, +14:u07:MODE4_RGRP, +14:u08:MODE4_WGRP, +10:uI1:;/*:*/, +14:u00:MODE4_SUID, +14:u01:MODE4_SGID, +14:u02:MODE4_SVTX, +14:u03:MODE4_RUSR, +14:u04:MODE4_WUSR, +14:u05:MODE4_XUSR, +14:u06:MODE4_RGRP, +14:u07:MODE4_WGRP, +14:u08:MODE4_XGRP, +10:uI0:;/*:*/, +14:u00:MODE4_SGID, +14:u01:MODE4_SVTX, +14:u02:MODE4_RUSR, +14:u03:MODE4_WUSR, +14:u04:MODE4_XUSR, +14:u05:MODE4_RGRP, +14:u06:MODE4_WGRP, +14:u07:MODE4_XGRP, +14:u08:MODE4_ROTH, +14:u00:MODE4_SVTX, +14:u01:MODE4_RUSR, +14:u02:MODE4_WUSR, +14:u03:MODE4_XUSR, +14:u04:MODE4_RGRP, +14:u05:MODE4_WGRP, +14:u06:MODE4_XGRP, +14:u07:MODE4_ROTH, +14:u08:MODE4_WOTH, +8:u08:Bits, +14:u00:MODE4_RUSR, +14:u01:MODE4_WUSR, +14:u02:MODE4_XUSR, +14:u03:MODE4_RGRP, +14:u04:MODE4_WGRP, +14:u05:MODE4_XGRP, +14:u06:MODE4_ROTH, +14:u07:MODE4_WOTH, +14:u08:MODE4_XOTH, +14:u00:MODE4_WUSR, +14:u01:MODE4_XUSR, +14:u02:MODE4_RGRP, +14:u03:MODE4_WGRP, +14:u04:MODE4_XGRP, +14:u05:MODE4_ROTH, +14:u06:MODE4_WOTH, +14:u07:MODE4_XOTH, +15:u08:MODE4_RUSR,, +8:u07:Bits, +14:u00:MODE4_XUSR, +14:u01:MODE4_RGRP, +14:u02:MODE4_WGRP, +14:u03:MODE4_XGRP, +14:u04:MODE4_ROTH, +14:u05:MODE4_WOTH, +14:u06:MODE4_XOTH, +15:u07:MODE4_RUSR,, +8:u06:Bits, +14:u00:MODE4_RGRP, +14:u01:MODE4_WGRP, +14:u02:MODE4_XGRP, +14:u03:MODE4_ROTH, +14:u04:MODE4_WOTH, +14:u05:MODE4_XOTH, +15:u06:MODE4_RUSR,, +8:u05:Bits, +15:u08:MODE4_ROTH,, +14:u00:MODE4_WGRP, +14:u01:MODE4_XGRP, +14:u02:MODE4_ROTH, +14:u03:MODE4_WOTH, +14:u04:MODE4_XOTH, +15:u05:MODE4_RUSR,, +8:u04:Bits, +14:u00:MODE4_XGRP, +14:u01:MODE4_ROTH, +14:u02:MODE4_WOTH, +14:u03:MODE4_XOTH, +15:u04:MODE4_RUSR,, +15:u08:MODE4_WOTH,, +14:u14:mode4_xgrp, +7:u22:Bit, +8:u23:Bits, +8:u03:Bits, +15:u07:MODE4_ROTH,, +14:u00:MODE4_ROTH, +14:u01:MODE4_WOTH, +14:u02:MODE4_XOTH, +15:u03:MODE4_RUSR,, +15:u07:MODE4_WOTH,, +14:u13:mode4_xgrp, +8:u02:Bits, +15:u06:MODE4_ROTH,, +14:u00:MODE4_WOTH, +14:u01:MODE4_XOTH, +15:u02:MODE4_RUSR,, +15:u06:MODE4_WOTH,, +14:u12:mode4_xgrp, +15:u14:mode4_roth,, +7:u22:MOD, +8:u23:MODE, +8:u01:Bits, +15:u05:MODE4_ROTH,, +14:u00:MODE4_XOTH, +15:u01:MODE4_RUSR,, +15:u05:MODE4_WOTH,, +14:u11:mode4_xgrp, +15:u13:mode4_roth,, +8:u00:Bits, +15:u04:MODE4_ROTH,, +15:u00:MODE4_RUSR,, +15:u04:MODE4_WOTH,, +14:u10:mode4_xgrp, +15:u12:mode4_roth,, +15:u03:MODE4_ROTH,, +17:u08:NFS4ERR_INVAL, +15:u03:MODE4_WOTH,, +15:u11:mode4_roth,, +15:u02:MODE4_ROTH,, +12:u08:SETATTR,, +15:u02:MODE4_WOTH,, +15:u10:mode4_roth,, +15:u01:MODE4_ROTH,, +17:u07:NFS4ERR_INVAL, +15:u01:MODE4_WOTH,, +15:u00:MODE4_ROTH,, +17:u06:NFS4ERR_INVAL, +12:u07:SETATTR,, +15:u00:MODE4_WOTH,, +17:u14:nfs4err_inval, +17:u05:NFS4ERR_INVAL, +12:u06:SETATTR,, +17:u13:nfs4err_inval, +12:u14:setattr,, +17:u04:NFS4ERR_INVAL, +12:u05:SETATTR,, +8:u08:143], +17:u12:nfs4err_inval, +12:u13:setattr,, +17:u03:NFS4ERR_INVAL, +12:u04:SETATTR,, +8:u07:143], +17:u11:nfs4err_inval, +12:u12:setattr,, +17:u02:NFS4ERR_INVAL, +12:u03:SETATTR,, +8:u06:143], +17:u10:nfs4err_inval, +12:u11:setattr,, +17:u01:NFS4ERR_INVAL, +12:u02:SETATTR,, +10:u08:6.2.5., +8:u05:143], +12:u10:setattr,, +17:u00:NFS4ERR_INVAL, +12:u01:SETATTR,, +8:u04:143], +12:u00:SETATTR,, +10:u07:6.2.5., +8:u03:143], +10:u06:6.2.5., +8:u02:143], +10:u14:6.2.5., +10:u05:6.2.5., +15:u08:MODE4_SGID,, +8:u01:143], +11:u08:others., +10:u13:6.2.5., +10:u04:6.2.5., +8:u00:143], +11:u07:others., +10:u12:6.2.5., +10:u03:6.2.5., +15:u07:MODE4_SGID,, +11:u06:others., +10:u11:6.2.5., +10:u02:6.2.5., +15:u06:MODE4_SGID,, +11:u05:others., +10:u10:6.2.5., +15:u14:mode4_sgid,, +8:uI2:.,,,, +10:u01:6.2.5., +15:u05:MODE4_SGID,, +11:u04:others., +15:u13:mode4_sgid,, +8:uI1:.,,,, +10:u00:6.2.5., +15:u04:MODE4_SGID,, +11:u03:others., +15:u12:mode4_sgid,, +8:uI0:.,,,, +15:u03:MODE4_SGID,, +11:u02:others., +15:u11:mode4_sgid,, +15:u02:MODE4_SGID,, +11:u01:others., +15:u10:mode4_sgid,, +12:u14:modified, +15:u01:MODE4_SGID,, +11:u00:others., +12:u13:modified, +15:u00:MODE4_SGID,, +12:u12:modified, +12:u11:modified, +13:u08:undefined, +12:u10:modified, +8:uI2:()'., +13:u07:undefined, +8:uI1:()'., +13:u06:undefined, +13:u14:undefined, +8:uI0:()'., +13:u05:undefined, +13:u13:undefined, +13:u04:undefined, +13:u12:undefined, +13:u03:undefined, +13:u11:undefined, +13:u02:undefined, +8:u08:word, +13:u10:undefined, +13:u01:undefined, +8:u07:word, +13:u00:undefined, +8:u06:word, +8:u05:word, +8:u04:word, +13:u08:sections,, +8:u03:word, +10:u08:6.3.1., +8:u02:word, +14:u08:especially, +13:u07:sections,, +12:u08:6.3.1.1., +8:u01:word, +14:u07:especially, +13:u06:sections,, +10:u07:6.3.1., +8:u00:word, +14:u06:especially, +13:u14:sections,, +13:u05:sections,, +10:u06:6.3.1., +12:u07:6.3.1.1., +14:u05:especially, +13:u13:sections,, +10:u14:6.3.1., +13:u04:sections,, +10:u05:6.3.1., +12:u06:6.3.1.1., +14:u04:especially, +13:u12:sections,, +10:u13:6.3.1., +12:u14:6.3.1.1., +13:u03:sections,, +10:u04:6.3.1., +12:u05:6.3.1.1., +14:u03:especially, +13:u11:sections,, +10:u12:6.3.1., +12:u13:6.3.1.1., +13:u02:sections,, +10:u03:6.3.1., +12:u04:6.3.1.1., +14:u02:especially, +13:u10:sections,, +10:u11:6.3.1., +12:u12:6.3.1.1., +13:u01:sections,, +10:u02:6.3.1., +12:u03:6.3.1.1., +14:u01:especially, +10:u10:6.3.1., +12:u11:6.3.1.1., +13:u00:sections,, +10:u01:6.3.1., +12:u02:6.3.1.1., +14:u00:especially, +12:u10:6.3.1.1., +10:u00:6.3.1., +12:u01:6.3.1.1., +12:u00:6.3.1.1., +8:u08:144], +8:u07:144], +8:u06:144], +8:u05:144], +8:u04:144], +8:u03:144], +8:u02:144], +8:u01:144], +10:u08:denies, +8:u00:144], +17:u08:ACE4_EXECUTE,, +10:u07:denies, +10:u06:denies, +17:u07:ACE4_EXECUTE,, +10:u08:file)., +10:u14:denies, +10:u05:denies, +17:u06:ACE4_EXECUTE,, +10:u07:file)., +10:u13:denies, +17:u14:ace4_execute,, +10:u04:denies, +17:u05:ACE4_EXECUTE,, +10:u06:file)., +10:u12:denies, +17:u13:ace4_execute,, +10:u03:denies, +17:u04:ACE4_EXECUTE,, +13:u08:continued, +10:u05:file)., +10:u11:denies, +17:u12:ace4_execute,, +10:u02:denies, +17:u03:ACE4_EXECUTE,, +10:u04:file)., +10:u10:denies, +17:u11:ace4_execute,, +10:u01:denies, +17:u02:ACE4_EXECUTE,, +13:u07:continued, +10:u03:file)., +17:u10:ace4_execute,, +10:u00:denies, +17:u01:ACE4_EXECUTE,, +13:u06:continued, +10:u02:file)., +13:u14:continued, +17:u00:ACE4_EXECUTE,, +13:u05:continued, +10:u01:file)., +13:u13:continued, +13:u04:continued, +10:u00:file)., +13:u12:continued, +13:u03:continued, +13:u11:continued, +13:u02:continued, +13:u10:continued, +13:u01:continued, +12:u08:6.3.1.2., +8:u14:acl., +13:u00:continued, +8:u13:acl., +12:u07:6.3.1.2., +8:u12:acl., +8:u23:ACL., +12:u06:6.3.1.2., +8:u11:acl., +12:u14:6.3.1.2., +12:u05:6.3.1.2., +8:u10:acl., +12:u13:6.3.1.2., +12:u04:6.3.1.2., +12:u12:6.3.1.2., +12:u03:6.3.1.2., +12:u11:6.3.1.2., +12:u02:6.3.1.2., +12:u10:6.3.1.2., +12:u01:6.3.1.2., +12:u00:6.3.1.2., +10:u14:define, +9:u08:this,, +10:u13:define, +9:u07:this,, +13:u08:servicing, +10:u12:define, +9:u06:this,, +13:u07:servicing, +10:u11:define, +9:u05:this,, +13:u06:servicing, +14:u08:requested., +10:u10:define, +10:u08:6.3.2., +9:u04:this,, +13:u05:servicing, +14:u07:requested., +9:u03:this,, +13:u04:servicing, +14:u06:requested., +13:u08:Computing, +10:u07:6.3.2., +9:u02:this,, +13:u03:servicing, +14:u05:requested., +13:u07:Computing, +10:u06:6.3.2., +9:u01:this,, +13:u02:servicing, +14:u04:requested., +13:u06:Computing, +12:u08:MODE4_X*, +10:u14:6.3.2., +10:uI2:',...., +10:u05:6.3.2., +9:u00:this,, +13:u01:servicing, +14:u03:requested., +13:u05:Computing, +12:u07:MODE4_X*, +10:u13:6.3.2., +10:uI1:',...., +10:u04:6.3.2., +13:u00:servicing, +14:u02:requested., +13:u04:Computing, +12:u06:MODE4_X*, +10:u12:6.3.2., +10:uI0:',...., +8:uI2:*,*,, +10:u03:6.3.2., +14:u01:requested., +13:u03:Computing, +12:u05:MODE4_X*, +8:u08:145], +10:u11:6.3.2., +8:uI1:*,*,, +10:u02:6.3.2., +14:u00:requested., +13:u02:Computing, +12:u04:MODE4_X*, +8:u07:145], +10:u10:6.3.2., +8:uI0:*,*,, +10:u01:6.3.2., +13:u01:Computing, +12:u03:MODE4_X*, +8:u06:145], +10:u00:6.3.2., +13:u00:Computing, +12:u02:MODE4_X*, +8:u05:145], +14:u08:EVERYONE@,, +12:u01:MODE4_X*, +8:u04:145], +12:u00:MODE4_X*, +8:u03:145], +12:u08:evaluate, +14:u07:EVERYONE@,, +18:u08:consideration., +8:u02:145], +12:u07:evaluate, +10:u14:first,, +14:u06:EVERYONE@,, +8:u01:145], +12:u06:evaluate, +10:u13:first,, +14:u14:everyone@,, +14:u05:EVERYONE@,, +18:u07:consideration., +8:u08:Then, +8:u00:145], +12:u05:evaluate, +11:u08:showing, +10:u12:first,, +14:u13:everyone@,, +8:u14:aces, +7:u22:Fir, +8:u23:Firs, +14:u04:EVERYONE@,, +18:u06:consideration., +12:u04:evaluate, +11:u07:showing, +13:u08:translate, +10:u11:first,, +14:u12:everyone@,, +8:u13:aces, +18:u14:consideration., +6:u21:EV, +7:u22:EVE, +8:u23:EVER, +14:u03:EVERYONE@,, +18:u05:consideration., +8:u07:Then, +12:u08:follows:, +12:u03:evaluate, +11:u06:showing, +13:u07:translate, +10:u10:first,, +14:u11:everyone@,, +8:u12:aces, +18:u13:consideration., +14:u02:EVERYONE@,, +18:u04:consideration., +8:u06:Then, +12:u02:evaluate, +11:u05:showing, +13:u06:translate, +14:u10:everyone@,, +8:u11:aces, +18:u12:consideration., +14:u01:EVERYONE@,, +18:u03:consideration., +8:u05:Then, +12:u07:follows:, +12:u01:evaluate, +11:u04:showing, +13:u05:translate, +7:u08:Set, +8:u10:aces, +18:u11:consideration., +14:u00:EVERYONE@,, +18:u02:consideration., +8:u04:Then, +12:u06:follows:, +12:u00:evaluate, +11:u03:showing, +13:u04:translate, +7:u07:Set, +18:u10:consideration., +12:u14:follows:, +8:u23:Then, +18:u01:consideration., +8:u03:Then, +12:u05:follows:, +11:u02:showing, +13:u03:translate, +7:u06:Set, +12:u13:follows:, +18:u00:consideration., +8:u02:Then, +12:u04:follows:, +11:u01:showing, +13:u02:translate, +7:u05:Set, +12:u12:follows:, +9:uI2:.(,,), +8:u01:Then, +12:u03:follows:, +11:u00:showing, +13:u01:translate, +7:u04:Set, +9:u08:mask., +12:u11:follows:, +9:uI1:.(,,), +8:u00:Then, +12:u02:follows:, +13:u00:translate, +7:u03:Set, +9:u07:mask., +12:u10:follows:, +9:uI0:.(,,), +12:u01:follows:, +12:u08:6.3.2.1., +7:u02:Set, +9:u06:mask., +12:u00:follows:, +7:u01:Set, +9:u05:mask., +12:u07:6.3.2.1., +7:u00:Set, +9:u04:mask., +10:uI2:.(,,),, +12:u06:6.3.2.1., +16:u08:MODE4_XGRP)., +9:u03:mask., +12:u14:6.3.2.1., +10:uI1:.(,,),, +12:u05:6.3.2.1., +9:u02:mask., +12:u13:6.3.2.1., +10:uI0:.(,,),, +12:u04:6.3.2.1., +16:u07:MODE4_XGRP)., +9:u08:found, +9:u01:mask., +12:u12:6.3.2.1., +12:u03:6.3.2.1., +16:u06:MODE4_XGRP)., +9:u00:mask., +12:u11:6.3.2.1., +16:u14:mode4_xgrp)., +12:u02:6.3.2.1., +16:u05:MODE4_XGRP)., +9:u07:found, +8:u08:DENY, +12:u10:6.3.2.1., +16:u13:mode4_xgrp)., +12:u01:6.3.2.1., +16:u04:MODE4_XGRP)., +9:u06:found, +16:u12:mode4_xgrp)., +9:u14:found, +12:u00:6.3.2.1., +16:u03:MODE4_XGRP)., +9:u05:found, +8:u07:DENY, +16:u11:mode4_xgrp)., +9:u13:found, +16:u02:MODE4_XGRP)., +9:u04:found, +8:u06:DENY, +16:u10:mode4_xgrp)., +9:u12:found, +7:u22:fou, +8:u23:foun, +16:u01:MODE4_XGRP)., +9:u03:found, +8:u05:DENY, +9:u11:found, +16:u00:MODE4_XGRP)., +9:u02:found, +8:u04:DENY, +10:u08:group,, +9:u10:found, +7:u22:DEN, +8:u23:DENY, +9:u01:found, +8:u03:DENY, +10:u07:group,, +9:u00:found, +8:u02:DENY, +10:u06:group,, +10:u14:owner,, +8:u01:DENY, +10:u05:group,, +10:u13:owner,, +8:u23:sett, +7:uI2:,,;, +8:u00:DENY, +10:u04:group,, +10:u12:owner,, +7:uI1:,,;, +16:u08:"EVERYONE@"., +10:u03:group,, +10:u11:owner,, +7:uI0:,,;, +10:u02:group,, +10:u10:owner,, +16:u07:"EVERYONE@"., +10:u01:group,, +9:uI2:*,*,*, +16:u06:"EVERYONE@"., +10:u00:group,, +16:u14:"everyone@"., +9:uI1:*,*,*, +10:uI2:"","",, +16:u05:"EVERYONE@"., +16:u13:"everyone@"., +9:uI0:*,*,*, +10:uI1:"","",, +16:u04:"EVERYONE@"., +16:u12:"everyone@"., +7:u22:"EV, +8:u23:"EVE, +10:uI0:"","",, +16:u03:"EVERYONE@"., +16:u11:"everyone@"., +16:u02:"EVERYONE@"., +16:u10:"everyone@"., +16:u01:"EVERYONE@"., +8:u08:146], +16:u00:"EVERYONE@"., +8:u07:146], +8:u06:146], +13:u08:behaviors, +8:u05:146], +16:u08:invalidating, +8:u04:146], +13:u07:behaviors, +8:u03:146], +13:u06:behaviors, +16:u07:invalidating, +8:u02:146], +13:u14:behaviors, +13:u05:behaviors, +16:u06:invalidating, +10:u08:6.4.1., +8:u01:146], +13:u13:behaviors, +16:u14:invalidating, +13:u04:behaviors, +16:u05:invalidating, +8:u00:146], +13:u12:behaviors, +16:u13:invalidating, +13:u03:behaviors, +16:u04:invalidating, +10:u07:6.4.1., +13:u11:behaviors, +16:u12:invalidating, +13:u02:behaviors, +16:u03:invalidating, +10:u06:6.4.1., +13:u10:behaviors, +16:u11:invalidating, +10:u14:6.4.1., +13:u01:behaviors, +16:u02:invalidating, +10:u05:6.4.1., +16:u10:invalidating, +10:u13:6.4.1., +8:uI2:.../, +13:u00:behaviors, +16:u01:invalidating, +10:u04:6.4.1., +12:u08:6.4.1.1., +10:u12:6.4.1., +8:uI1:.../, +16:u00:invalidating, +10:u03:6.4.1., +10:u11:6.4.1., +8:uI0:.../, +10:u02:6.4.1., +12:u07:6.4.1.1., +10:u10:6.4.1., +10:u01:6.4.1., +12:u06:6.4.1.1., +12:u14:6.4.1.1., +10:u00:6.4.1., +12:u05:6.4.1.1., +12:u13:6.4.1.1., +12:u04:6.4.1.1., +12:u12:6.4.1.1., +12:u03:6.4.1.1., +14:u08:accordance, +12:u11:6.4.1.1., +12:u02:6.4.1.1., +12:u10:6.4.1.1., +12:u01:6.4.1.1., +14:u07:accordance, +12:u00:6.4.1.1., +14:u06:accordance, +14:u14:accordance, +14:u05:accordance, +14:u08:attribute), +14:u13:accordance, +14:u04:accordance, +14:u12:accordance, +14:u03:accordance, +14:u07:attribute), +14:u11:accordance, +14:u02:accordance, +14:u06:attribute), +14:u10:accordance, +14:u14:attribute), +14:u01:accordance, +14:u05:attribute), +13:u08:MODE4_W*,, +14:u13:attribute), +14:u00:accordance, +14:u04:attribute), +13:u08:MODE4_X*), +14:u12:attribute), +14:u03:attribute), +13:u07:MODE4_W*,, +9:u08:that:, +13:u07:MODE4_X*), +14:u11:attribute), +14:u02:attribute), +13:u06:MODE4_W*,, +13:u06:MODE4_X*), +14:u10:attribute), +13:u14:mode4_w*,, +10:uI2:..-(*,, +14:u01:attribute), +13:u05:MODE4_W*,, +9:u07:that:, +13:u05:MODE4_X*), +13:u13:mode4_w*,, +10:uI1:..-(*,, +8:uI2:*,*), +14:u00:attribute), +13:u04:MODE4_W*,, +9:u06:that:, +19:u08:ACE4_READ_DATA., +13:u04:MODE4_X*), +13:u12:mode4_w*,, +9:u14:that:, +10:uI0:..-(*,, +8:uI1:*,*), +13:u03:MODE4_W*,, +9:u05:that:, +13:u03:MODE4_X*), +13:u11:mode4_w*,, +9:u13:that:, +8:uI0:*,*), +13:u02:MODE4_W*,, +9:u04:that:, +19:u07:ACE4_READ_DATA., +13:u02:MODE4_X*), +13:u10:mode4_w*,, +9:u12:that:, +13:u01:MODE4_W*,, +9:u03:that:, +19:u06:ACE4_READ_DATA., +13:u01:MODE4_X*), +9:u11:that:, +19:u14:ace4_read_data., +13:u00:MODE4_W*,, +9:u02:that:, +19:u05:ACE4_READ_DATA., +13:u00:MODE4_X*), +9:u10:that:, +19:u13:ace4_read_data., +9:u01:that:, +19:u04:ACE4_READ_DATA., +19:u12:ace4_read_data., +9:u00:that:, +19:u03:ACE4_READ_DATA., +17:u08:ACE4_EXECUTE., +19:u11:ace4_read_data., +19:u02:ACE4_READ_DATA., +19:u10:ace4_read_data., +19:u01:ACE4_READ_DATA., +17:u07:ACE4_EXECUTE., +9:u08:ACEs,, +19:u00:ACE4_READ_DATA., +17:u06:ACE4_EXECUTE., +17:u14:ace4_execute., +17:u05:ACE4_EXECUTE., +9:u07:ACEs,, +17:u13:ace4_execute., +17:u04:ACE4_EXECUTE., +9:u06:ACEs,, +17:u12:ace4_execute., +9:u14:aces,, +17:u03:ACE4_EXECUTE., +9:u05:ACEs,, +8:u08:147], +17:u11:ace4_execute., +9:u13:aces,, +17:u02:ACE4_EXECUTE., +9:u04:ACEs,, +8:u07:147], +17:u10:ace4_execute., +9:u12:aces,, +17:u01:ACE4_EXECUTE., +9:u03:ACEs,, +8:u06:147], +9:u11:aces,, +17:u00:ACE4_EXECUTE., +9:u02:ACEs,, +8:u05:147], +9:u10:aces,, +9:u01:ACEs,, +8:u04:147], +9:u00:ACEs,, +10:u08:ALARM., +8:u03:147], +13:u08:modifying, +8:u02:147], +10:u07:ALARM., +8:u01:147], +10:u06:ALARM., +13:u07:modifying, +8:u00:147], +10:u14:alarm., +10:u05:ALARM., +13:u06:modifying, +10:u13:alarm., +13:u14:modifying, +10:u04:ALARM., +13:u05:modifying, +8:u08:much, +10:u12:alarm., +13:u13:modifying, +10:u03:ALARM., +13:u04:modifying, +14:u08:Discarding, +10:u11:alarm., +13:u12:modifying, +9:u14:dacl,, +10:u02:ALARM., +13:u03:modifying, +8:u07:much, +10:u10:alarm., +13:u11:modifying, +9:u13:dacl,, +10:u01:ALARM., +13:u02:modifying, +8:u06:much, +14:u07:Discarding, +12:u08:6.4.1.2., +13:u10:modifying, +9:u12:dacl,, +8:u14:much, +10:u00:ALARM., +13:u01:modifying, +8:u05:much, +14:u06:Discarding, +9:u11:dacl,, +8:u13:much, +14:u14:discarding, +13:u00:modifying, +8:u04:much, +14:u05:Discarding, +12:u07:6.4.1.2., +9:u10:dacl,, +8:u12:much, +14:u13:discarding, +7:u22:muc, +8:u23:much, +8:u03:much, +14:u04:Discarding, +12:u06:6.4.1.2., +8:u11:much, +14:u12:discarding, +12:u14:6.4.1.2., +8:u02:much, +14:u03:Discarding, +12:u05:6.4.1.2., +8:u10:much, +14:u11:discarding, +12:u13:6.4.1.2., +8:u01:much, +14:u02:Discarding, +12:u04:6.4.1.2., +14:u08:(MODE4_R*,, +14:u10:discarding, +12:u12:6.4.1.2., +8:u00:much, +14:u01:Discarding, +12:u03:6.4.1.2., +12:u11:6.4.1.2., +14:u00:Discarding, +12:u02:6.4.1.2., +14:u07:(MODE4_R*,, +12:u10:6.4.1.2., +12:u01:6.4.1.2., +14:u06:(MODE4_R*,, +12:u08:6.4.1.3., +16:u08:(MODE4_SUID,, +14:u14:(mode4_r*,, +12:u00:6.4.1.2., +14:u05:(MODE4_R*,, +16:u07:(MODE4_SUID,, +14:u13:(mode4_r*,, +11:uI2:(*,*,*), +14:u04:(MODE4_R*,, +12:u07:6.4.1.3., +16:u06:(MODE4_SUID,, +14:u12:(mode4_r*,, +7:u22:(MO, +8:u23:(MOD, +11:uI1:(*,*,*), +14:u03:(MODE4_R*,, +12:u06:6.4.1.3., +16:u05:(MODE4_SUID,, +14:u11:(mode4_r*,, +12:u14:6.4.1.3., +11:uI0:(*,*,*), +14:u02:(MODE4_R*,, +12:u05:6.4.1.3., +16:u04:(MODE4_SUID,, +14:u10:(mode4_r*,, +12:u13:6.4.1.3., +14:u01:(MODE4_R*,, +12:u04:6.4.1.3., +16:u03:(MODE4_SUID,, +12:u12:6.4.1.3., +14:u00:(MODE4_R*,, +12:u03:6.4.1.3., +16:u02:(MODE4_SUID,, +12:u11:6.4.1.3., +12:u02:6.4.1.3., +10:u08:6.4.2., +16:u01:(MODE4_SUID,, +12:u10:6.4.1.3., +12:u01:6.4.1.3., +16:u00:(MODE4_SUID,, +14:u08:Retrieving, +9:uI2:(),.-, +12:u00:6.4.1.3., +10:u07:6.4.2., +14:u07:Retrieving, +9:uI1:(),.-, +10:u06:6.4.2., +14:u06:Retrieving, +10:u14:6.4.2., +9:uI0:(),.-, +10:u05:6.4.2., +10:u08:ACLs",, +14:u05:Retrieving, +10:u13:6.4.2., +10:u04:6.4.2., +14:u04:Retrieving, +10:u12:6.4.2., +10:u03:6.4.2., +10:u07:ACLs",, +14:u03:Retrieving, +10:u11:6.4.2., +10:u02:6.4.2., +10:u06:ACLs",, +14:u02:Retrieving, +10:u10:6.4.2., +10:u14:acls",, +10:u01:6.4.2., +10:u05:ACLs",, +14:u01:Retrieving, +10:u13:acls",, +10:u00:6.4.2., +10:u04:ACLs",, +14:u00:Retrieving, +10:u12:acls",, +10:u03:ACLs",, +10:u11:acls",, +10:u02:ACLs",, +10:u10:acls",, +10:u01:ACLs",, +10:u00:ACLs",, +8:u08:148], +8:u07:148], +8:u06:148], +16:u08:MODE4_SVTX)., +8:u05:148], +8:u04:148], +16:u07:MODE4_SVTX)., +8:u03:148], +16:u06:MODE4_SVTX)., +8:u02:148], +16:u14:mode4_svtx)., +16:u05:MODE4_SVTX)., +10:u08:6.4.3., +8:u01:148], +9:u08:6.3.2, +16:u13:mode4_svtx)., +14:u14:requested,, +16:u04:MODE4_SVTX)., +8:u00:148], +9:u07:6.3.2, +16:u12:mode4_svtx)., +14:u13:requested,, +9:uI2:,-(*,, +16:u03:MODE4_SVTX)., +10:u07:6.4.3., +9:u06:6.3.2, +16:u11:mode4_svtx)., +14:u12:requested,, +9:uI1:,-(*,, +16:u02:MODE4_SVTX)., +10:u06:6.4.3., +9:u05:6.3.2, +16:u10:mode4_svtx)., +14:u11:requested,, +10:u14:6.4.3., +9:uI0:,-(*,, +16:u01:MODE4_SVTX)., +10:u05:6.4.3., +9:u04:6.3.2, +14:u10:requested,, +10:u13:6.4.3., +16:u00:MODE4_SVTX)., +10:u04:6.4.3., +9:u03:6.3.2, +10:u12:6.4.3., +10:u03:6.4.3., +9:u02:6.3.2, +10:u11:6.4.3., +10:u02:6.4.3., +9:u01:6.3.2, +10:u10:6.4.3., +10:u01:6.4.3., +16:u08:Implementors, +9:u00:6.3.2, +10:u00:6.4.3., +16:u07:Implementors, +16:u06:Implementors, +16:u14:implementors, +16:u05:Implementors, +16:u13:implementors, +16:u04:Implementors, +16:u12:implementors, +16:u03:Implementors, +16:u11:implementors, +16:u02:Implementors, +16:u10:implementors, +16:u01:Implementors, +16:u00:Implementors, +11:u14:thereby, +11:u13:thereby, +11:u12:thereby, +11:u11:thereby, +11:u10:thereby, +16:u08:OPEN4_CREATE, +16:u07:OPEN4_CREATE, +16:u08:createmode4,, +8:u08:take, +16:u06:OPEN4_CREATE, +8:u07:take, +16:u14:open4_create, +16:u05:OPEN4_CREATE, +16:u07:createmode4,, +8:u06:take, +16:u13:open4_create, +16:u04:OPEN4_CREATE, +16:u06:createmode4,, +8:u05:take, +16:u12:open4_create, +16:u14:createmode4,, +16:u03:OPEN4_CREATE, +16:u05:createmode4,, +8:u04:take, +16:u11:open4_create, +16:u13:createmode4,, +8:uI2:,).,, +16:u02:OPEN4_CREATE, +16:u04:createmode4,, +8:u03:take, +16:u10:open4_create, +16:u12:createmode4,, +8:uI1:,).,, +16:u01:OPEN4_CREATE, +16:u03:createmode4,, +8:u02:take, +16:u11:createmode4,, +8:uI0:,).,, +16:u00:OPEN4_CREATE, +16:u02:createmode4,, +8:u01:take, +16:u10:createmode4,, +16:u01:createmode4,, +8:u00:take, +16:u00:createmode4,, +8:u08:149], +8:u07:149], +8:u06:149], +9:u08:empty, +8:u05:149], +11:u08:owner's, +8:u04:149], +9:u07:empty, +11:u08:denied., +8:u03:149], +9:u06:empty, +11:u07:owner's, +8:u02:149], +9:u14:empty, +9:u05:empty, +11:u06:owner's, +11:u07:denied., +8:u01:149], +9:u13:empty, +11:u14:owner's, +9:u04:empty, +11:u05:owner's, +11:u06:denied., +14:u08:supported,, +8:u00:149], +9:u12:empty, +11:u13:owner's, +11:u14:denied., +6:u21:em, +7:u22:emp, +8:u23:empt, +9:u03:empty, +11:u04:owner's, +11:u05:denied., +15:u08:MODE4_SUID,, +9:u11:empty, +11:u12:owner's, +11:u13:denied., +9:u02:empty, +11:u03:owner's, +11:u04:denied., +14:u07:supported,, +15:u08:inheritable, +9:u10:empty, +11:u11:owner's, +11:u12:denied., +9:u01:empty, +11:u02:owner's, +11:u03:denied., +14:u06:supported,, +15:u07:MODE4_SUID,, +12:u08:creating, +11:u10:owner's, +11:u11:denied., +14:u14:supported,, +9:u00:empty, +11:u01:owner's, +11:u02:denied., +14:u05:supported,, +15:u06:MODE4_SUID,, +15:u07:inheritable, +12:u08:defined., +11:u10:denied., +14:u13:supported,, +15:u14:mode4_suid,, +11:u00:owner's, +11:u01:denied., +14:u04:supported,, +15:u05:MODE4_SUID,, +15:u06:inheritable, +12:u07:creating, +14:u12:supported,, +15:u13:mode4_suid,, +15:u14:inheritable, +11:u00:denied., +14:u03:supported,, +15:u04:MODE4_SUID,, +15:u05:inheritable, +12:u06:creating, +12:u07:defined., +18:u08:ACL4_DEFAULTED, +14:u11:supported,, +15:u12:mode4_suid,, +15:u13:inheritable, +12:u14:creating, +14:u02:supported,, +15:u03:MODE4_SUID,, +15:u04:inheritable, +12:u05:creating, +12:u06:defined., +12:u08:6.4.3.1., +18:u07:ACL4_DEFAULTED, +14:u10:supported,, +15:u11:mode4_suid,, +15:u12:inheritable, +12:u13:creating, +12:u14:defined., +14:u01:supported,, +15:u02:MODE4_SUID,, +15:u03:inheritable, +12:u04:creating, +12:u05:defined., +18:u06:ACL4_DEFAULTED, +15:u10:mode4_suid,, +15:u11:inheritable, +12:u12:creating, +12:u13:defined., +14:u00:supported,, +15:u01:MODE4_SUID,, +15:u02:inheritable, +12:u03:creating, +12:u04:defined., +12:u07:6.4.3.1., +18:u05:ACL4_DEFAULTED, +15:u10:inheritable, +12:u11:creating, +12:u12:defined., +15:u00:MODE4_SUID,, +15:u01:inheritable, +12:u02:creating, +12:u03:defined., +12:u06:6.4.3.1., +26:u08:ACE4_FILE_INHERIT_FLAG, +18:u04:ACL4_DEFAULTED, +12:u10:creating, +12:u11:defined., +12:u14:6.4.3.1., +15:u00:inheritable, +12:u01:creating, +12:u02:defined., +12:u05:6.4.3.1., +18:u03:ACL4_DEFAULTED, +12:u10:defined., +12:u13:6.4.3.1., +12:u00:creating, +12:u01:defined., +12:u04:6.4.3.1., +26:u07:ACE4_FILE_INHERIT_FLAG, +11:u08:inherit, +18:u02:ACL4_DEFAULTED, +12:u12:6.4.3.1., +12:u00:defined., +12:u03:6.4.3.1., +26:u06:ACE4_FILE_INHERIT_FLAG, +18:u01:ACL4_DEFAULTED, +12:u11:6.4.3.1., +26:u14:ace4_file_inherit_flag, +12:u02:6.4.3.1., +26:u05:ACE4_FILE_INHERIT_FLAG, +11:u07:inherit, +18:u00:ACL4_DEFAULTED, +12:u10:6.4.3.1., +26:u13:ace4_file_inherit_flag, +12:u01:6.4.3.1., +26:u04:ACE4_FILE_INHERIT_FLAG, +11:u06:inherit, +8:u08:flag, +26:u12:ace4_file_inherit_flag, +11:u14:inherit, +12:u00:6.4.3.1., +26:u03:ACE4_FILE_INHERIT_FLAG, +11:u05:inherit, +8:u07:flag, +26:u11:ace4_file_inherit_flag, +11:u13:inherit, +26:u02:ACE4_FILE_INHERIT_FLAG, +11:u04:inherit, +8:u06:flag, +26:u10:ace4_file_inherit_flag, +11:u12:inherit, +26:u01:ACE4_FILE_INHERIT_FLAG, +11:u03:inherit, +12:u08:affected, +8:u05:flag, +11:u11:inherit, +26:u00:ACE4_FILE_INHERIT_FLAG, +11:u02:inherit, +8:u04:flag, +11:u10:inherit, +11:u01:inherit, +12:u07:affected, +8:u03:flag, +11:u00:inherit, +12:u06:affected, +8:u02:flag, +12:u14:affected, +12:u05:affected, +8:u01:flag, +12:u13:affected, +12:u04:affected, +8:u00:flag, +12:u12:affected, +7:u14:ace, +12:u03:affected, +8:u08:set., +12:u11:affected, +7:u13:ace, +11:u14:neither, +12:u02:affected, +8:u07:set., +12:u10:affected, +7:u12:ace, +11:u13:neither, +7:u23:ACE, +12:u01:affected, +8:u06:set., +7:u11:ace, +11:u12:neither, +8:u23:neit, +12:u00:affected, +8:u05:set., +7:u10:ace, +11:u11:neither, +7:uI2:.(,, +12:u08:6.4.3.2., +8:u04:set., +11:u10:neither, +7:uI1:.(,, +8:u03:set., +7:uI0:.(,, +12:u07:6.4.3.2., +8:u02:set., +12:u06:6.4.3.2., +8:u01:set., +10:u08:6.2.3), +12:u14:6.4.3.2., +12:u05:6.4.3.2., +8:u00:set., +10:u07:6.2.3), +12:u13:6.4.3.2., +12:u04:6.4.3.2., +10:u06:6.2.3), +12:u12:6.4.3.2., +12:u03:6.4.3.2., +10:u05:6.2.3), +12:u11:6.4.3.2., +12:uI2:(..)(..), +12:u02:6.4.3.2., +10:u04:6.2.3), +8:u08:150], +12:u10:6.4.3.2., +12:uI1:(..)(..), +12:u01:6.4.3.2., +10:u03:6.2.3), +8:u07:150], +12:uI0:(..)(..), +12:u00:6.4.3.2., +10:u02:6.2.3), +8:u06:150], +10:u01:6.2.3), +8:u05:150], +12:u08:aclflag4, +10:u00:6.2.3), +8:u04:150], +12:u08:nfsacl41, +14:u08:na41_flag;, +8:u03:150], +12:u07:nfsacl41, +12:u07:aclflag4, +8:u02:150], +12:u06:nfsacl41, +12:u06:aclflag4, +14:u07:na41_flag;, +16:u08:na41_aces<>;, +8:u01:150], +12:u05:nfsacl41, +12:u14:aclflag4, +12:u05:aclflag4, +14:u06:na41_flag;, +8:u00:150], +12:u04:nfsacl41, +12:u13:aclflag4, +14:u14:na41_flag;, +12:u04:aclflag4, +14:u05:na41_flag;, +16:u07:na41_aces<>;, +12:u03:nfsacl41, +12:u12:aclflag4, +14:u13:na41_flag;, +11:u14:nfsace4, +8:u23:aclf, +12:u03:aclflag4, +14:u04:na41_flag;, +16:u06:na41_aces<>;, +12:u02:nfsacl41, +12:u11:aclflag4, +14:u12:na41_flag;, +11:u13:nfsace4, +16:u14:na41_aces<>;, +7:u22:na4, +8:u23:na41, +12:u02:aclflag4, +14:u03:na41_flag;, +16:u05:na41_aces<>;, +12:u01:nfsacl41, +12:u08:defined:, +12:u10:aclflag4, +14:u11:na41_flag;, +11:u12:nfsace4, +16:u13:na41_aces<>;, +8:u23:nfsa, +12:u01:aclflag4, +14:u02:na41_flag;, +16:u04:na41_aces<>;, +12:u00:nfsacl41, +12:u07:defined:, +21:u08:ACL4_AUTO_INHERIT, +14:u10:na41_flag;, +11:u11:nfsace4, +16:u12:na41_aces<>;, +12:u00:aclflag4, +14:u01:na41_flag;, +16:u03:na41_aces<>;, +12:u06:defined:, +21:u07:ACL4_AUTO_INHERIT, +11:u10:nfsace4, +16:u11:na41_aces<>;, +14:u00:na41_flag;, +16:u02:na41_aces<>;, +12:u05:defined:, +21:u06:ACL4_AUTO_INHERIT, +18:u08:ACL4_PROTECTED, +16:u10:na41_aces<>;, +16:u01:na41_aces<>;, +12:u04:defined:, +21:u05:ACL4_AUTO_INHERIT, +18:u07:ACL4_PROTECTED, +16:u00:na41_aces<>;, +12:u03:defined:, +21:u04:ACL4_AUTO_INHERIT, +18:u06:ACL4_PROTECTED, +12:u02:defined:, +21:u03:ACL4_AUTO_INHERIT, +18:u05:ACL4_PROTECTED, +12:u01:defined:, +21:u02:ACL4_AUTO_INHERIT, +18:u04:ACL4_PROTECTED, +11:u08:cleared, +12:u00:defined:, +21:u01:ACL4_AUTO_INHERIT, +18:u03:ACL4_PROTECTED, +12:u08:Together, +21:u00:ACL4_AUTO_INHERIT, +18:u02:ACL4_PROTECTED, +11:u07:cleared, +18:u01:ACL4_PROTECTED, +11:u06:cleared, +12:u07:Together, +15:u08:Inheritable, +18:u00:ACL4_PROTECTED, +11:u14:cleared, +11:u05:cleared, +12:u06:Together, +11:u13:cleared, +12:u14:together, +11:u04:cleared, +12:u05:Together, +15:u07:Inheritable, +11:u12:cleared, +12:u13:together, +11:u03:cleared, +12:u04:Together, +15:u06:Inheritable, +16:u08:descendants., +11:u11:cleared, +12:u12:together, +7:u22:Tog, +8:u23:Toge, +11:u02:cleared, +12:u03:Together, +15:u05:Inheritable, +11:u10:cleared, +12:u11:together, +11:u01:cleared, +12:u02:Together, +15:u04:Inheritable, +16:u07:descendants., +12:u10:together, +7:u22:Inh, +8:u23:Inhe, +11:u00:cleared, +12:u01:Together, +15:u03:Inheritable, +16:u06:descendants., +10:u08:entire, +16:u14:descendants., +12:u00:Together, +15:u02:Inheritable, +16:u05:descendants., +16:u13:descendants., +15:u01:Inheritable, +16:u04:descendants., +10:u07:entire, +16:u12:descendants., +15:u00:Inheritable, +16:u03:descendants., +10:u06:entire, +16:u11:descendants., +10:u14:entire, +16:u02:descendants., +10:u05:entire, +16:u10:descendants., +10:u13:entire, +16:u01:descendants., +10:u04:entire, +10:u12:entire, +16:u00:descendants., +10:u03:entire, +10:u11:entire, +10:u02:entire, +15:u08:descendants, +10:u10:entire, +10:u01:entire, +15:u07:descendants, +10:u00:entire, +15:u06:descendants, +15:u05:descendants, +15:u04:descendants, +15:u03:descendants, +15:u02:descendants, +15:u01:descendants, +13:u08:automatic, +15:u00:descendants, +13:u07:automatic, +13:u06:automatic, +9:u08:stops, +13:u14:automatic, +13:u05:automatic, +9:u07:stops, +13:u13:automatic, +13:u04:automatic, +9:u06:stops, +13:u12:automatic, +13:u03:automatic, +9:u05:stops, +8:u08:151], +13:u11:automatic, +13:u02:automatic, +9:u04:stops, +8:u07:151], +13:u10:automatic, +13:u01:automatic, +9:u03:stops, +8:u06:151], +13:u00:automatic, +9:u02:stops, +8:u05:151], +9:u01:stops, +8:u04:151], +14:u08:preventing, +9:u00:stops, +8:u03:151], +14:u07:preventing, +8:u02:151], +14:u06:preventing, +15:u08:propagation, +8:u01:151], +14:u05:preventing, +15:u07:propagation, +9:u08:thus,, +8:u00:151], +14:u04:preventing, +15:u06:propagation, +9:u07:thus,, +7:uI2:)'., +14:u03:preventing, +15:u05:propagation, +9:u06:thus,, +7:uI1:)'., +14:u02:preventing, +15:u04:propagation, +9:u05:thus,, +7:uI0:)'., +14:u01:preventing, +15:u03:propagation, +9:u04:thus,, +14:u00:preventing, +15:u02:propagation, +9:u03:thus,, +15:u01:propagation, +9:u02:thus,, +15:u00:propagation, +9:u01:thus,, +9:u00:thus,, +7:u22:New, +7:u23:New, +12:u08:reported, +12:u07:reported, +12:u06:reported, +12:u14:reported, +12:u05:reported, +12:u13:reported, +12:u04:reported, +12:u12:reported, +8:u23:repo, +12:u03:reported, +12:u11:reported, +12:u02:reported, +9:u08:dacl., +12:u10:reported, +12:u01:reported, +12:u00:reported, +9:u07:dacl., +9:u06:dacl., +9:u14:dacl., +9:u05:dacl., +9:u13:dacl., +9:u04:dacl., +10:u08:again,, +9:u12:dacl., +9:u03:dacl., +14:u08:unchanged,, +9:u11:dacl., +9:u02:dacl., +10:u07:again,, +15:u08:application, +9:u10:dacl., +9:u01:dacl., +10:u06:again,, +14:u07:unchanged,, +9:u00:dacl., +10:u05:again,, +14:u06:unchanged,, +15:u07:application, +14:u14:unchanged,, +10:u04:again,, +14:u05:unchanged,, +15:u06:application, +14:u13:unchanged,, +10:u03:again,, +14:u04:unchanged,, +15:u05:application, +14:u12:unchanged,, +9:u14:flag., +10:u02:again,, +14:u03:unchanged,, +15:u04:application, +14:u11:unchanged,, +9:u13:flag., +10:u01:again,, +14:u02:unchanged,, +15:u03:application, +10:u08:order,, +14:u10:unchanged,, +9:u12:flag., +10:u00:again,, +14:u01:unchanged,, +15:u02:application, +9:u11:flag., +14:u00:unchanged,, +15:u01:application, +10:u07:order,, +12:u08:Finally,, +9:u10:flag., +15:u00:application, +10:u06:order,, +10:u14:order,, +10:u05:order,, +12:u07:Finally,, +10:u13:order,, +10:u04:order,, +12:u06:Finally,, +10:u12:order,, +12:u14:finally,, +10:u03:order,, +12:u05:Finally,, +10:u11:order,, +12:u13:finally,, +10:u02:order,, +12:u04:Finally,, +8:u08:152], +10:u10:order,, +12:u12:finally,, +8:u23:Fina, +10:u01:order,, +12:u03:Finally,, +8:u07:152], +12:u11:finally,, +10:u00:order,, +12:u02:Finally,, +8:u06:152], +12:u10:finally,, +12:u01:Finally,, +8:u05:152], +12:u00:Finally,, +8:u04:152], +14:u08:dependent., +8:u03:152], +8:u02:152], +14:u07:dependent., +14:u08:performing, +8:u01:152], +14:u06:dependent., +8:u08:sign, +8:u00:152], +14:u14:dependent., +6:uI2:'-, +14:u05:dependent., +14:u07:performing, +14:u13:dependent., +8:u14:flag, +6:uI1:'-, +14:u04:dependent., +14:u06:performing, +8:u07:sign, +14:u12:dependent., +8:u13:flag, +14:u14:performing, +6:uI0:'-, +14:u03:dependent., +14:u05:performing, +8:u06:sign, +14:u11:dependent., +8:u12:flag, +14:u13:performing, +8:u14:sign, +14:u02:dependent., +14:u04:performing, +8:u05:sign, +14:u10:dependent., +8:u11:flag, +14:u12:performing, +8:u13:sign, +14:u01:dependent., +14:u03:performing, +8:u04:sign, +8:u10:flag, +14:u11:performing, +8:u12:sign, +14:u00:dependent., +14:u02:performing, +8:u03:sign, +13:u08:site-wide, +14:u10:performing, +8:u11:sign, +14:u01:performing, +8:u02:sign, +8:u10:sign, +14:u00:performing, +8:u01:sign, +13:u07:site-wide, +8:u00:sign, +13:u06:site-wide, +13:u14:site-wide, +13:u05:site-wide, +13:u08:pathnames, +13:u13:site-wide, +8:uI2:--),, +13:u04:site-wide, +13:u12:site-wide, +8:u23:site, +8:uI1:--),, +13:u03:site-wide, +13:u07:pathnames, +12:u08:letters., +15:u08:constitutes, +13:u11:site-wide, +8:uI0:--),, +13:u02:site-wide, +13:u06:pathnames, +15:u07:constitutes, +13:u10:site-wide, +13:u14:pathnames, +13:u01:site-wide, +13:u05:pathnames, +12:u07:letters., +15:u06:constitutes, +13:u13:pathnames, +9:uI2:"/".,, +13:u00:site-wide, +13:u04:pathnames, +12:u06:letters., +15:u05:constitutes, +13:u12:pathnames, +12:u14:letters., +9:uI1:"/".,, +13:u03:pathnames, +12:u05:letters., +10:u08:export, +15:u04:constitutes, +13:u11:pathnames, +12:u13:letters., +9:uI0:"/".,, +13:u02:pathnames, +12:u04:letters., +15:u03:constitutes, +13:u10:pathnames, +12:u12:letters., +7:u22:let, +8:u23:lett, +13:u01:pathnames, +12:u03:letters., +10:u07:export, +15:u02:constitutes, +12:u11:letters., +13:u00:pathnames, +12:u02:letters., +10:u06:export, +15:u01:constitutes, +12:u10:letters., +10:u14:export, +12:u01:letters., +10:u05:export, +15:u00:constitutes, +10:u13:export, +12:u00:letters., +10:u04:export, +12:u08:exports., +10:u12:export, +8:u23:expo, +10:u03:export, +12:u07:exports., +10:u11:export, +10:u02:export, +12:u06:exports., +10:u10:export, +10:u01:export, +12:u05:exports., +10:u00:export, +12:u04:exports., +12:u03:exports., +12:u02:exports., +10:u14:series, +12:u01:exports., +10:u13:series, +12:u00:exports., +10:u12:series, +10:u11:series, +10:u10:series, +8:u08:153], +8:u07:153], +8:u06:153], +8:u05:153], +12:u08:snapshot, +8:u04:153], +8:u03:153], +12:u07:snapshot, +8:u02:153], +12:u06:snapshot, +8:u01:153], +12:u14:snapshot, +12:u05:snapshot, +8:u00:153], +12:u13:snapshot, +12:u04:snapshot, +11:u08:"pseudo, +12:u12:snapshot, +6:u21:sn, +7:u22:sna, +8:u23:snap, +12:u03:snapshot, +12:u11:snapshot, +12:u02:snapshot, +11:u07:"pseudo, +12:u10:snapshot, +12:u01:snapshot, +11:u06:"pseudo, +11:u14:"pseudo, +12:u00:snapshot, +11:u05:"pseudo, +11:u08:unaware, +11:u13:"pseudo, +9:uI2:""(.), +11:u04:"pseudo, +11:u12:"pseudo, +7:u22:"ps, +8:u23:"pse, +9:uI1:""(.), +11:u03:"pseudo, +11:u07:unaware, +11:u11:"pseudo, +9:uI0:""(.), +7:uI2:':., +11:u02:"pseudo, +11:u06:unaware, +11:u10:"pseudo, +11:u14:unaware, +7:uI1:':., +11:u01:"pseudo, +11:u05:unaware, +11:u08:exports, +11:u13:unaware, +7:uI0:':., +11:u00:"pseudo, +11:u04:unaware, +11:u07:exports, +11:u12:unaware, +11:u03:unaware, +11:u06:exports, +11:u11:unaware, +11:u02:unaware, +13:u08:exported,, +11:u05:exports, +11:u10:unaware, +11:u01:unaware, +11:u04:exports, +11:u00:unaware, +13:u07:exported,, +11:u03:exports, +13:u06:exported,, +11:u02:exports, +13:u14:exported,, +13:u05:exported,, +11:u01:exports, +13:u13:exported,, +13:u04:exported,, +11:u00:exports, +9:u08:only., +13:u12:exported,, +13:u03:exported,, +9:u07:only., +13:u11:exported,, +13:u02:exported,, +9:u06:only., +13:u10:exported,, +13:u01:exported,, +6:u08:/a, +9:u05:only., +13:u00:exported,, +9:u04:only., +6:u07:/a, +8:u08:/a/b, +9:u03:only., +6:u06:/a, +9:u02:only., +6:u14:/a, +6:u05:/a, +8:u07:/a/b, +10:u08:/a/b/c, +9:u01:only., +6:u13:/a, +10:u14:pseudo, +6:u04:/a, +8:u06:/a/b, +9:u00:only., +6:u12:/a, +10:u13:pseudo, +8:u14:/a/b, +6:u21:/a, +6:u22:/a, +6:u23:/a, +6:u03:/a, +8:u05:/a/b, +10:u07:/a/b/c, +12:u08:/a/b/c/d, +6:u11:/a, +10:u12:pseudo, +8:u13:/a/b, +6:u21:ps, +7:u22:pse, +8:u23:pseu, +6:u02:/a, +8:u04:/a/b, +10:u06:/a/b/c, +6:u10:/a, +10:u11:pseudo, +8:u12:/a/b, +10:u14:/a/b/c, +7:u22:/a/, +8:u23:/a/b, +6:u01:/a, +8:u03:/a/b, +10:u05:/a/b/c, +12:u07:/a/b/c/d, +10:u10:pseudo, +8:u11:/a/b, +10:u13:/a/b/c, +7:uI2:///, +6:u00:/a, +8:u02:/a/b, +10:u04:/a/b/c, +12:u06:/a/b/c/d, +8:u10:/a/b, +10:u12:/a/b/c, +12:u14:/a/b/c/d, +7:uI1:///, +8:u01:/a/b, +10:u03:/a/b/c, +12:u05:/a/b/c/d, +10:u11:/a/b/c, +12:u13:/a/b/c/d, +7:uI0:///, +8:u00:/a/b, +10:u02:/a/b/c, +12:u04:/a/b/c/d, +10:u10:/a/b/c, +12:u12:/a/b/c/d, +10:u01:/a/b/c, +12:u03:/a/b/c/d, +11:u08:Certain, +12:u11:/a/b/c/d, +10:u00:/a/b/c, +12:u02:/a/b/c/d, +13:u08:"multiple, +12:u10:/a/b/c/d, +12:u01:/a/b/c/d, +11:u07:Certain, +12:u08:commonly, +11:u08:roots"., +12:u00:/a/b/c/d, +11:u06:Certain, +13:u07:"multiple, +11:u07:roots"., +11:u05:Certain, +13:u06:"multiple, +12:u07:commonly, +11:u06:roots"., +13:u08:platforms, +13:u14:"multiple, +11:u04:Certain, +13:u05:"multiple, +12:u06:commonly, +11:u05:roots"., +13:u07:platforms, +13:u13:"multiple, +12:u14:commonly, +7:u22:Cer, +8:u23:Cert, +11:u03:Certain, +13:u04:"multiple, +12:u05:commonly, +11:u04:roots"., +13:u06:platforms, +13:u12:"multiple, +12:u13:commonly, +11:u02:Certain, +13:u03:"multiple, +12:u04:commonly, +11:u03:roots"., +13:u05:platforms, +13:u11:"multiple, +12:u12:commonly, +11:u01:Certain, +13:u02:"multiple, +12:u03:commonly, +11:u02:roots"., +13:u04:platforms, +13:u10:"multiple, +12:u11:commonly, +11:u00:Certain, +13:u01:"multiple, +12:u02:commonly, +11:u01:roots"., +13:u03:platforms, +8:u08:154], +12:u10:commonly, +13:u00:"multiple, +12:u01:commonly, +11:u00:roots"., +13:u02:platforms, +8:u07:154], +12:u00:commonly, +13:u01:platforms, +8:u06:154], +13:u00:platforms, +8:u05:154], +8:u04:154], +8:u03:154], +10:u08:nature, +8:u02:154], +10:u07:nature, +8:u01:154], +10:u06:nature, +8:u00:154], +10:u05:nature, +10:u04:nature, +14:u08:preferable, +10:u03:nature, +10:u02:nature, +14:u07:preferable, +10:u01:nature, +14:u06:preferable, +10:u00:nature, +14:u14:preferable, +14:u05:preferable, +13:u08:question., +14:u13:preferable, +14:u04:preferable, +12:u08:prepared, +14:u12:preferable, +14:u03:preferable, +13:u07:question., +15:u08:operations), +14:u11:preferable, +14:u02:preferable, +13:u06:question., +12:u07:prepared, +14:u10:preferable, +13:u14:question., +14:u01:preferable, +13:u05:question., +12:u06:prepared, +15:u07:operations), +13:u13:question., +12:u14:prepared, +14:u00:preferable, +13:u04:question., +12:u05:prepared, +15:u06:operations), +9:u08:them,, +13:u12:question., +12:u13:prepared, +15:u14:operations), +8:u23:ques, +13:u03:question., +12:u04:prepared, +15:u05:operations), +13:u11:question., +12:u12:prepared, +15:u13:operations), +8:u23:prep, +13:u02:question., +12:u03:prepared, +15:u04:operations), +9:u07:them,, +13:u10:question., +12:u11:prepared, +15:u12:operations), +13:u01:question., +12:u02:prepared, +15:u03:operations), +9:u06:them,, +12:u10:prepared, +15:u11:operations), +9:u14:them,, +13:u00:question., +12:u01:prepared, +15:u02:operations), +9:u05:them,, +10:u08:Assume, +15:u10:operations), +9:u13:them,, +12:u00:prepared, +15:u01:operations), +9:u04:them,, +9:u12:them,, +15:u00:operations), +9:u03:them,, +10:u07:Assume, +7:u08:fs1, +9:u11:them,, +9:u02:them,, +10:u06:Assume, +14:u08:(exported), +9:u10:them,, +10:u14:assume, +9:u01:them,, +10:u05:Assume, +7:u07:fs1, +7:u08:fs2, +14:u07:(exported), +10:u13:assume, +9:u00:them,, +10:u04:Assume, +7:u06:fs1, +14:u06:(exported), +8:u08:(not, +10:u12:assume, +7:u14:fs1, +10:u03:Assume, +7:u05:fs1, +7:u07:fs2, +7:u08:fs3, +14:u05:(exported), +8:u07:(not, +10:u11:assume, +7:u13:fs1, +10:u02:Assume, +7:u04:fs1, +7:u06:fs2, +14:u04:(exported), +8:u06:(not, +10:u10:assume, +7:u12:fs1, +7:u14:fs2, +7:u22:fs1, +7:u23:fs1, +10:u01:Assume, +7:u03:fs1, +7:u05:fs2, +7:u07:fs3, +12:u08:LOOKUPs., +14:u03:(exported), +8:u05:(not, +7:u11:fs1, +7:u13:fs2, +10:u00:Assume, +7:u02:fs1, +7:u04:fs2, +7:u06:fs3, +14:u02:(exported), +8:u04:(not, +7:u10:fs1, +7:u12:fs2, +7:u14:fs3, +7:u22:fs2, +7:u23:fs2, +7:u01:fs1, +7:u03:fs2, +7:u05:fs3, +12:u07:LOOKUPs., +14:u01:(exported), +8:u03:(not, +7:u11:fs2, +7:u13:fs3, +7:u00:fs1, +7:u02:fs2, +7:u04:fs3, +12:u06:LOOKUPs., +14:u00:(exported), +8:u02:(not, +7:u10:fs2, +7:u12:fs3, +12:u14:lookups., +7:u22:fs3, +7:u23:fs3, +7:u01:fs2, +7:u03:fs3, +12:u05:LOOKUPs., +11:u08:mounted, +8:u01:(not, +7:u11:fs3, +12:u13:lookups., +7:u00:fs2, +7:u02:fs3, +12:u04:LOOKUPs., +8:u00:(not, +8:u08:upon, +7:u10:fs3, +12:u12:lookups., +7:u01:fs3, +12:u03:LOOKUPs., +11:u07:mounted, +9:u08:(file, +8:u07:upon, +12:u11:lookups., +7:u00:fs3, +12:u02:LOOKUPs., +11:u06:mounted, +8:u06:upon, +12:u10:lookups., +11:u14:mounted, +12:u01:LOOKUPs., +11:u05:mounted, +9:u07:(file, +8:u05:upon, +11:u13:mounted, +12:u00:LOOKUPs., +11:u04:mounted, +9:u06:(file, +8:u04:upon, +11:u12:mounted, +9:u14:(file, +11:u03:mounted, +9:u05:(file, +9:u08:like:, +8:u03:upon, +11:u11:mounted, +9:u13:(file, +11:u02:mounted, +9:u04:(file, +8:u02:upon, +11:u10:mounted, +9:u12:(file, +6:u21:(f, +7:u22:(fi, +8:u23:(fil, +11:u01:mounted, +9:u03:(file, +9:u07:like:, +10:u08:(place, +8:u01:upon, +9:u11:(file, +11:u00:mounted, +9:u02:(file, +9:u06:like:, +8:u00:upon, +14:u08:holder/not, +9:u10:(file, +9:u14:like:, +9:u01:(file, +9:u05:like:, +10:u07:(place, +14:u07:holder/not, +9:u13:like:, +9:u00:(file, +9:u04:like:, +10:u06:(place, +14:u06:holder/not, +9:u12:like:, +10:u14:(place, +9:u03:like:, +10:u05:(place, +14:u05:holder/not, +9:u11:like:, +10:u13:(place, +7:uI2:(/), +9:u02:like:, +10:u04:(place, +14:u04:holder/not, +9:u10:like:, +10:u12:(place, +8:u23:(pla, +7:uI1:(/), +9:u01:like:, +10:u03:(place, +14:u03:holder/not, +10:u11:(place, +7:uI0:(/), +9:u00:like:, +10:u02:(place, +14:u02:holder/not, +10:u10:(place, +10:u01:(place, +14:u01:holder/not, +8:u08:155], +10:u00:(place, +14:u00:holder/not, +8:u07:155], +8:u06:155], +8:u05:155], +8:u04:155], +8:u03:155], +8:u02:155], +8:u01:155], +8:u00:155], +10:uI2:////,', +10:uI1:////,', +9:uI2:////., +10:uI0:////,', +9:uI1:////., +9:uI0:////., +11:uI2://////., +11:uI1://////., +11:uI0://////., +19:u08:SECINFO_NONAME,, +19:u07:SECINFO_NONAME,, +19:u06:SECINFO_NONAME,, +17:u08:inappropriate, +19:u05:SECINFO_NONAME,, +19:u04:SECINFO_NONAME,, +17:u07:inappropriate, +19:u03:SECINFO_NONAME,, +20:u14:nfs4err_wrongsec, +17:u06:inappropriate, +19:u02:SECINFO_NONAME,, +20:u13:nfs4err_wrongsec, +17:u14:inappropriate, +17:u05:inappropriate, +19:u01:SECINFO_NONAME,, +20:u12:nfs4err_wrongsec, +17:u13:inappropriate, +17:u04:inappropriate, +19:u00:SECINFO_NONAME,, +20:u11:nfs4err_wrongsec, +17:u12:inappropriate, +8:u23:inap, +17:u03:inappropriate, +20:u10:nfs4err_wrongsec, +17:u11:inappropriate, +17:u02:inappropriate, +17:u10:inappropriate, +17:u01:inappropriate, +17:u00:inappropriate, +24:u08:/a/b/MySecretProject, +24:u07:/a/b/MySecretProject, +24:u06:/a/b/MySecretProject, +24:u14:/a/b/mysecretproject, +24:u05:/a/b/MySecretProject, +19:u08:MySecretProject, +13:u08:resource., +24:u13:/a/b/mysecretproject, +24:u04:/a/b/MySecretProject, +13:u07:resource., +24:u12:/a/b/mysecretproject, +24:u03:/a/b/MySecretProject, +19:u07:MySecretProject, +13:u06:resource., +24:u11:/a/b/mysecretproject, +24:u02:/a/b/MySecretProject, +19:u06:MySecretProject, +13:u05:resource., +24:u10:/a/b/mysecretproject, +19:u14:mysecretproject, +24:u01:/a/b/MySecretProject, +19:u05:MySecretProject, +14:u08:desirable., +13:u04:resource., +19:u13:mysecretproject, +13:u14:knowledge, +24:u00:/a/b/MySecretProject, +19:u04:MySecretProject, +13:u03:resource., +19:u12:mysecretproject, +13:u13:knowledge, +6:u21:My, +7:u22:MyS, +8:u23:MySe, +19:u03:MySecretProject, +14:u07:desirable., +13:u02:resource., +19:u11:mysecretproject, +13:u12:knowledge, +19:u02:MySecretProject, +14:u06:desirable., +13:u01:resource., +19:u10:mysecretproject, +13:u11:knowledge, +14:u14:desirable., +19:u01:MySecretProject, +14:u05:desirable., +11:u08:flavor., +13:u00:resource., +16:u08:higher-level, +13:u10:knowledge, +14:u13:desirable., +19:u00:MySecretProject, +14:u04:desirable., +10:u08:hiding, +16:u07:higher-level, +14:u12:desirable., +14:u03:desirable., +11:u07:flavor., +16:u06:higher-level, +14:u11:desirable., +14:u02:desirable., +11:u06:flavor., +10:u07:hiding, +16:u05:higher-level, +12:u08:disjoint, +14:u10:desirable., +11:u14:flavor., +14:u01:desirable., +11:u05:flavor., +10:u06:hiding, +16:u04:higher-level, +12:u07:disjoint, +11:u13:flavor., +10:u14:hiding, +14:u00:desirable., +11:u04:flavor., +10:u05:hiding, +16:u03:higher-level, +12:u06:disjoint, +11:u12:flavor., +10:u13:hiding, +11:u03:flavor., +10:u04:hiding, +16:u02:higher-level, +12:u05:disjoint, +11:u11:flavor., +10:u12:hiding, +7:u22:hid, +8:u23:hidi, +11:u02:flavor., +10:u03:hiding, +16:u01:higher-level, +12:u04:disjoint, +11:u10:flavor., +10:u11:hiding, +11:u01:flavor., +10:u02:hiding, +16:u00:higher-level, +12:u03:disjoint, +8:u08:156], +10:u10:hiding, +11:u00:flavor., +10:u01:hiding, +12:u02:disjoint, +8:u07:156], +10:u00:hiding, +12:u01:disjoint, +8:u06:156], +12:u00:disjoint, +8:u05:156], +14:u08:convenient, +8:u04:156], +8:u03:156], +14:u07:convenient, +8:u02:156], +14:u06:convenient, +8:u01:156], +14:u14:convenient, +14:u05:convenient, +8:u00:156], +14:u13:convenient, +14:u04:convenient, +14:u12:convenient, +14:u03:convenient, +14:u11:convenient, +14:u02:convenient, +15:u08:Integrating, +14:u10:convenient, +14:u01:convenient, +13:u08:stateful., +14:u00:convenient, +15:u07:Integrating, +15:u06:Integrating, +13:u07:stateful., +15:u14:integrating, +15:u05:Integrating, +13:u06:stateful., +14:u08:byte-range, +15:u13:integrating, +13:u14:stateful., +15:u04:Integrating, +13:u05:stateful., +15:u08:combination, +14:u07:byte-range, +15:u12:integrating, +13:u13:stateful., +15:u03:Integrating, +13:u04:stateful., +14:u06:byte-range, +15:u11:integrating, +13:u12:stateful., +13:u14:mandatory, +15:u02:Integrating, +13:u03:stateful., +15:u07:combination, +11:u08:measure, +14:u05:byte-range, +15:u10:integrating, +13:u11:stateful., +13:u13:mandatory, +15:u01:Integrating, +13:u02:stateful., +15:u06:combination, +14:u04:byte-range, +13:u10:stateful., +13:u12:mandatory, +15:u14:combination, +8:u23:mand, +15:u00:Integrating, +13:u01:stateful., +15:u05:combination, +11:u07:measure, +14:u03:byte-range, +11:u08:readily, +13:u11:mandatory, +15:u13:combination, +13:u00:stateful., +15:u04:combination, +11:u06:measure, +14:u02:byte-range, +11:u07:readily, +13:u10:mandatory, +15:u12:combination, +11:u14:measure, +15:u03:combination, +11:u05:measure, +14:u01:byte-range, +11:u06:readily, +9:u08:clear, +15:u11:combination, +11:u13:measure, +15:u02:combination, +11:u04:measure, +14:u00:byte-range, +11:u05:readily, +9:u07:clear, +15:u10:combination, +11:u12:measure, +15:u01:combination, +11:u03:measure, +11:u04:readily, +9:u06:clear, +11:u11:measure, +15:u00:combination, +11:u02:measure, +11:u03:readily, +9:u05:clear, +11:u10:measure, +11:u01:measure, +11:u02:readily, +9:u04:clear, +11:u00:measure, +9:u08:made., +11:u01:readily, +9:u03:clear, +11:u00:readily, +9:u02:clear, +24:u08:Non-client-initiated, +9:u07:made., +10:u08:adjust, +9:u01:clear, +24:u07:Non-client-initiated, +9:u06:made., +14:u08:Individual, +9:u00:clear, +24:u06:Non-client-initiated, +9:u14:made., +9:u05:made., +10:u07:adjust, +24:u05:Non-client-initiated, +10:u08:pieces, +9:u13:made., +8:uI2:.--., +9:u04:made., +10:u06:adjust, +14:u07:Individual, +12:u08:stateids, +24:u04:Non-client-initiated, +10:u07:pieces, +9:u12:made., +10:u14:adjust, +7:u22:mad, +8:u23:made, +8:uI1:.--., +9:u03:made., +10:u05:adjust, +14:u06:Individual, +24:u03:Non-client-initiated, +10:u06:pieces, +9:u11:made., +10:u13:adjust, +8:uI0:.--., +9:u02:made., +10:u04:adjust, +14:u05:Individual, +12:u07:stateids, +14:u08:privileges, +24:u02:Non-client-initiated, +10:u05:pieces, +8:u08:held, +9:u10:made., +10:u12:adjust, +7:u22:adj, +8:u23:adju, +9:u01:made., +10:u03:adjust, +14:u04:Individual, +12:u06:stateids, +13:u08:location., +24:u01:Non-client-initiated, +10:u04:pieces, +8:u07:held, +10:u11:adjust, +12:u14:stateids, +9:u00:made., +10:u02:adjust, +14:u03:Individual, +12:u05:stateids, +14:u07:privileges, +24:u00:Non-client-initiated, +10:u03:pieces, +8:u06:held, +10:u10:adjust, +12:u13:stateids, +9:u14:locks, +10:u01:adjust, +14:u02:Individual, +12:u04:stateids, +14:u06:privileges, +13:u07:location., +10:u02:pieces, +8:u05:held, +12:u12:stateids, +9:u13:locks, +14:u14:privileges, +10:u00:adjust, +14:u01:Individual, +12:u03:stateids, +14:u05:privileges, +13:u06:location., +11:u08:stateid, +10:u01:pieces, +8:u04:held, +12:u11:stateids, +9:u12:locks, +14:u13:privileges, +13:u14:location., +14:u00:Individual, +12:u02:stateids, +14:u04:privileges, +13:u05:location., +11:u08:details, +10:u00:pieces, +8:u03:held, +12:u10:stateids, +9:u11:locks, +14:u12:privileges, +13:u13:location., +12:u01:stateids, +14:u03:privileges, +13:u04:location., +11:u07:stateid, +8:u02:held, +9:u10:locks, +14:u11:privileges, +13:u12:location., +12:u00:stateids, +14:u02:privileges, +13:u03:location., +11:u06:stateid, +11:u07:details, +8:u01:held, +10:u08:starts, +14:u10:privileges, +13:u11:location., +11:u14:stateid, +14:u01:privileges, +13:u02:location., +11:u05:stateid, +11:u06:details, +8:u00:held, +10:u07:starts, +13:u10:location., +11:u13:stateid, +14:u00:privileges, +13:u01:location., +11:u04:stateid, +11:u05:details, +10:u06:starts, +11:u12:stateid, +13:u00:location., +11:u03:stateid, +11:u04:details, +10:u05:starts, +8:u08:157], +11:u11:stateid, +11:u02:stateid, +11:u03:details, +10:u04:starts, +8:u07:157], +11:u10:stateid, +11:u01:stateid, +11:u02:details, +10:u03:starts, +8:u06:157], +11:u00:stateid, +11:u01:details, +10:u02:starts, +8:u05:157], +11:u00:details, +10:u01:starts, +8:u04:157], +10:u00:starts, +8:u03:157], +8:u02:157], +14:u08:sessionids, +8:u01:157], +14:u07:sessionids, +8:u00:157], +14:u06:sessionids, +14:u05:sessionids, +14:u04:sessionids, +8:uI2:,-,,, +12:u08:normally, +14:u03:sessionids, +8:uI1:,-,,, +14:u02:sessionids, +8:uI0:,-,,, +12:u07:normally, +14:u01:sessionids, +12:u06:normally, +14:u00:sessionids, +12:u14:normally, +12:u05:normally, +12:u13:normally, +12:u04:normally, +12:u12:normally, +12:u03:normally, +12:u11:normally, +12:u02:normally, +9:u08:range, +12:u10:normally, +12:u01:normally, +12:u00:normally, +9:u07:range, +9:u06:range, +20:u08:characteristics., +9:u14:range, +7:uI2:(,-, +9:u05:range, +10:u08:owners, +9:u13:range, +7:uI1:(,-, +8:uI2:,,),, +9:u04:range, +20:u07:characteristics., +9:u12:range, +7:uI0:(,-, +8:uI1:,,),, +9:u03:range, +20:u06:characteristics., +10:u07:owners, +9:u11:range, +20:u14:characteristics., +8:uI0:,,),, +9:u02:range, +20:u05:characteristics., +10:u06:owners, +12:u08:stateid., +9:u10:range, +20:u13:characteristics., +10:u14:owners, +9:u01:range, +20:u04:characteristics., +10:u05:owners, +13:u08:shorthand, +12:u07:stateid., +20:u12:characteristics., +10:u13:owners, +14:u14:byte-range, +9:u00:range, +20:u03:characteristics., +10:u04:owners, +12:u06:stateid., +20:u11:characteristics., +10:u12:owners, +14:u13:byte-range, +20:u02:characteristics., +10:u03:owners, +13:u07:shorthand, +12:u05:stateid., +20:u10:characteristics., +10:u11:owners, +14:u12:byte-range, +20:u01:characteristics., +10:u02:owners, +13:u06:shorthand, +12:u04:stateid., +10:u10:owners, +14:u11:byte-range, +13:u14:shorthand, +20:u00:characteristics., +10:u01:owners, +13:u05:shorthand, +12:u03:stateid., +14:u10:byte-range, +13:u13:shorthand, +10:u00:owners, +13:u04:shorthand, +12:u02:stateid., +13:u12:shorthand, +7:u14:(in, +13:u03:shorthand, +12:u01:stateid., +13:u11:shorthand, +7:u13:(in, +9:uI2:(-/-), +13:u02:shorthand, +12:u00:stateid., +13:u10:shorthand, +7:u12:(in, +7:u23:(in, +9:uI1:(-/-), +13:u01:shorthand, +7:u11:(in, +9:uI0:(-/-), +13:u00:shorthand, +7:u08:8.3, +7:u10:(in, +7:u07:8.3, +7:u06:8.3, +7:u05:8.3, +7:u04:8.3, +7:u03:8.3, +7:u02:8.3, +7:u01:8.3, +7:u00:8.3, +8:u08:158], +8:u07:158], +8:u06:158], +10:u08:8.2.1., +8:u05:158], +8:u04:158], +10:u07:8.2.1., +8:u03:158], +10:u06:8.2.1., +8:u02:158], +10:u14:8.2.1., +10:u05:8.2.1., +9:u08:speak, +8:u01:158], +10:u13:8.2.1., +10:u04:8.2.1., +8:u00:158], +10:u12:8.2.1., +10:u03:8.2.1., +9:u07:speak, +11:u08:voided., +10:u11:8.2.1., +10:u02:8.2.1., +9:u06:speak, +10:u10:8.2.1., +9:u14:speak, +10:u01:8.2.1., +9:u05:speak, +11:u07:voided., +12:u08:Stateids, +9:u13:speak, +10:u00:8.2.1., +9:u04:speak, +11:u06:voided., +12:u07:Stateids, +9:u12:speak, +11:u14:voided., +8:u23:spea, +9:u03:speak, +11:u05:voided., +12:u06:Stateids, +28:u08:ID/open-owner/filehandle, +9:u11:speak, +11:u13:voided., +9:u02:speak, +11:u04:voided., +12:u05:Stateids, +28:u07:ID/open-owner/filehandle, +9:u10:speak, +11:u12:voided., +9:u01:speak, +11:u03:voided., +12:u04:Stateids, +28:u06:ID/open-owner/filehandle, +11:u11:voided., +9:u00:speak, +11:u02:voided., +12:u03:Stateids, +28:u05:ID/open-owner/filehandle, +11:u10:voided., +8:uI2:/-/., +11:u01:voided., +12:u02:Stateids, +28:u04:ID/open-owner/filehandle, +8:uI1:/-/., +7:uI2:('), +11:u00:voided., +10:u08:gotten, +12:u01:Stateids, +28:u03:ID/open-owner/filehandle, +8:uI0:/-/., +7:uI1:('), +12:u00:Stateids, +28:u02:ID/open-owner/filehandle, +7:uI0:('), +10:u07:gotten, +8:u08:LOCK, +28:u01:ID/open-owner/filehandle, +10:u06:gotten, +28:u00:ID/open-owner/filehandle, +10:u14:gotten, +10:u05:gotten, +8:u07:LOCK, +10:u13:gotten, +10:u04:gotten, +8:u06:LOCK, +10:u12:gotten, +7:u22:got, +8:u23:gott, +10:u03:gotten, +8:u05:LOCK, +13:u08:returned., +10:u11:gotten, +10:u02:gotten, +8:u04:LOCK, +10:u10:gotten, +14:u14:guarantees, +10:u01:gotten, +8:u03:LOCK, +13:u07:returned., +14:u13:guarantees, +13:u14:reference, +10:u00:gotten, +8:u02:LOCK, +13:u06:returned., +14:u12:guarantees, +13:u13:reference, +13:u14:returned., +8:u01:LOCK, +13:u05:returned., +14:u11:guarantees, +13:u12:reference, +13:u13:returned., +8:u00:LOCK, +13:u04:returned., +14:u10:guarantees, +13:u11:reference, +13:u12:returned., +13:u03:returned., +13:u10:reference, +13:u11:returned., +13:u02:returned., +13:u10:returned., +13:u01:returned., +13:u00:returned., +10:u14:modify, +10:u13:modify, +10:u12:modify, +13:u08:alternate, +10:u11:modify, +13:u07:alternate, +10:u10:modify, +13:u06:alternate, +13:u05:alternate, +13:u04:alternate, +11:u14:proceed, +13:u03:alternate, +11:u13:proceed, +13:u02:alternate, +8:u08:159], +11:u12:proceed, +13:u01:alternate, +8:u07:159], +11:u11:proceed, +13:u00:alternate, +8:u06:159], +11:u10:proceed, +8:u05:159], +8:u04:159], +9:u08:seqid, +8:u03:159], +8:u02:159], +9:u07:seqid, +17:u08:LAYOUTRETURN., +8:u01:159], +9:u06:seqid, +10:u08:8.2.2., +8:u00:159], +9:u14:seqid, +9:u05:seqid, +17:u07:LAYOUTRETURN., +9:u13:seqid, +9:u04:seqid, +17:u06:LAYOUTRETURN., +10:u07:8.2.2., +9:u12:seqid, +17:u14:layoutreturn., +9:u03:seqid, +17:u05:LAYOUTRETURN., +10:u06:8.2.2., +9:u11:seqid, +17:u13:layoutreturn., +10:u14:8.2.2., +9:u02:seqid, +17:u04:LAYOUTRETURN., +10:u05:8.2.2., +9:u10:seqid, +17:u12:layoutreturn., +10:u13:8.2.2., +9:u01:seqid, +17:u03:LAYOUTRETURN., +10:u04:8.2.2., +17:u11:layoutreturn., +10:u12:8.2.2., +8:uI2:,-"", +9:u00:seqid, +17:u02:LAYOUTRETURN., +10:u03:8.2.2., +13:u08:layouts),, +17:u10:layoutreturn., +10:u11:8.2.2., +8:uI1:,-"", +7:uI2:-"", +17:u01:LAYOUTRETURN., +10:u02:8.2.2., +10:u10:8.2.2., +8:uI0:,-"", +7:uI1:-"", +10:uI2:.(..),, +17:u00:LAYOUTRETURN., +10:u01:8.2.2., +13:u07:layouts),, +7:uI0:-"", +10:uI1:.(..),, +10:u00:8.2.2., +13:u06:layouts),, +13:u14:layouts),, +10:uI0:.(..),, +10:uI2:(,-,,,, +13:u05:layouts),, +13:u13:layouts),, +10:uI1:(,-,,,, +13:u04:layouts),, +13:u08:downgrade, +13:u12:layouts),, +10:uI0:(,-,,,, +13:u03:layouts),, +13:u11:layouts),, +13:u02:layouts),, +13:u07:downgrade, +13:u10:layouts),, +13:u01:layouts),, +13:u06:downgrade, +13:u14:downgrade, +13:u00:layouts),, +13:u05:downgrade, +11:u08:"seqid", +13:u13:downgrade, +13:u04:downgrade, +25:u08:state-owner/file/type, +13:u12:downgrade, +13:u03:downgrade, +11:u07:"seqid", +13:u11:downgrade, +13:u02:downgrade, +11:u06:"seqid", +25:u07:state-owner/file/type, +13:u10:downgrade, +11:u14:"seqid", +13:u01:downgrade, +11:u05:"seqid", +25:u06:state-owner/file/type, +11:u13:"seqid", +25:u14:state-owner/file/type, +13:u00:downgrade, +11:u04:"seqid", +25:u05:state-owner/file/type, +16:u08:combination,, +11:u12:"seqid", +25:u13:state-owner/file/type, +7:u22:"se, +8:u23:"seq, +7:uI2:-//, +11:u03:"seqid", +25:u04:state-owner/file/type, +20:u08:NFS4_UINT32_MAX,, +16:u07:combination,, +11:u08:pattern, +11:u11:"seqid", +25:u12:state-owner/file/type, +7:uI1:-//, +11:u02:"seqid", +25:u03:state-owner/file/type, +16:u06:combination,, +11:u07:pattern, +11:u10:"seqid", +25:u11:state-owner/file/type, +7:uI0:-//, +11:u01:"seqid", +25:u02:state-owner/file/type, +20:u07:NFS4_UINT32_MAX,, +16:u05:combination,, +11:u06:pattern, +25:u10:state-owner/file/type, +11:uI2:-//,""., +11:u00:"seqid", +25:u01:state-owner/file/type, +20:u06:NFS4_UINT32_MAX,, +16:u04:combination,, +11:u05:pattern, +20:u14:nfs4_uint32_max,, +11:uI1:-//,""., +25:u00:state-owner/file/type, +20:u05:NFS4_UINT32_MAX,, +16:u03:combination,, +11:u04:pattern, +20:u13:nfs4_uint32_max,, +11:uI0:-//,""., +20:u04:NFS4_UINT32_MAX,, +15:u08:conditional, +16:u02:combination,, +11:u03:pattern, +20:u12:nfs4_uint32_max,, +20:u03:NFS4_UINT32_MAX,, +16:u01:combination,, +11:u02:pattern, +20:u11:nfs4_uint32_max,, +20:u02:NFS4_UINT32_MAX,, +15:u07:conditional, +16:u00:combination,, +11:u01:pattern, +20:u10:nfs4_uint32_max,, +20:u01:NFS4_UINT32_MAX,, +15:u06:conditional, +11:u00:pattern, +15:u14:conditional, +20:u00:NFS4_UINT32_MAX,, +15:u05:conditional, +9:u08:sent., +15:u13:conditional, +15:u04:conditional, +10:u08:wishes, +15:u12:conditional, +8:u23:cond, +15:u03:conditional, +9:u07:sent., +15:u11:conditional, +15:u02:conditional, +9:u06:sent., +10:u07:wishes, +15:u10:conditional, +9:u14:sent., +15:u01:conditional, +9:u05:sent., +10:u06:wishes, +9:u13:sent., +10:u14:wishes, +15:u00:conditional, +9:u04:sent., +10:u05:wishes, +9:u12:sent., +10:u13:wishes, +9:uI2:--'"", +9:u03:sent., +10:u04:wishes, +23:u08:NFS4ERR_OLD_STATEID, +9:u11:sent., +10:u12:wishes, +7:u22:wis, +8:u23:wish, +9:uI1:--'"", +9:u02:sent., +10:u03:wishes, +9:u10:sent., +10:u11:wishes, +10:u14:value,, +9:uI0:--'"", +9:u01:sent., +10:u02:wishes, +23:u07:NFS4ERR_OLD_STATEID, +23:u08:NFS4ERR_BAD_STATEID, +10:u10:wishes, +10:u13:value,, +8:u14:one., +9:u00:sent., +10:u01:wishes, +23:u06:NFS4ERR_OLD_STATEID, +23:u07:NFS4ERR_BAD_STATEID, +10:u12:value,, +8:u13:one., +23:u14:nfs4err_old_stateid, +10:u00:wishes, +23:u05:NFS4ERR_OLD_STATEID, +23:u06:NFS4ERR_BAD_STATEID, +10:u11:value,, +8:u12:one., +23:u13:nfs4err_old_stateid, +8:u23:one., +23:u04:NFS4ERR_OLD_STATEID, +23:u05:NFS4ERR_BAD_STATEID, +8:u08:160], +10:u10:value,, +8:u11:one., +23:u12:nfs4err_old_stateid, +23:u03:NFS4ERR_OLD_STATEID, +23:u04:NFS4ERR_BAD_STATEID, +8:u07:160], +8:u10:one., +23:u11:nfs4err_old_stateid, +23:u02:NFS4ERR_OLD_STATEID, +23:u03:NFS4ERR_BAD_STATEID, +8:u06:160], +23:u10:nfs4err_old_stateid, +23:u01:NFS4ERR_OLD_STATEID, +23:u02:NFS4ERR_BAD_STATEID, +8:u05:160], +23:u00:NFS4ERR_OLD_STATEID, +23:u01:NFS4ERR_BAD_STATEID, +8:u04:160], +23:u00:NFS4ERR_BAD_STATEID, +8:u03:160], +8:u02:160], +8:u01:160], +11:u08:upgrade, +8:u00:160], +12:u14:parallel, +14:u08:indication, +12:u13:parallel, +11:u07:upgrade, +12:u12:parallel, +11:u06:upgrade, +14:u07:indication, +12:u11:parallel, +11:u14:upgrade, +11:u05:upgrade, +14:u06:indication, +12:u10:parallel, +11:u13:upgrade, +14:u14:indication, +11:u04:upgrade, +14:u05:indication, +11:u12:upgrade, +14:u13:indication, +7:u22:upg, +8:u23:upgr, +11:u03:upgrade, +14:u04:indication, +10:u08:verify, +11:u11:upgrade, +14:u12:indication, +11:u02:upgrade, +14:u03:indication, +11:u10:upgrade, +14:u11:indication, +11:u01:upgrade, +14:u02:indication, +10:u07:verify, +14:u10:indication, +11:u00:upgrade, +14:u01:indication, +10:u06:verify, +14:u00:indication, +10:u05:verify, +15:u08:determining, +10:u04:verify, +10:u03:verify, +15:u07:determining, +10:u02:verify, +15:u06:determining, +15:u14:determining, +10:u01:verify, +15:u05:determining, +15:u13:determining, +10:u00:verify, +15:u04:determining, +15:u12:determining, +15:u03:determining, +15:u11:determining, +15:u02:determining, +15:u10:determining, +15:u01:determining, +9:u08:minus, +15:u00:determining, +15:u08:numerically, +9:u07:minus, +10:u08:8.2.3., +9:u06:minus, +12:u08:greater., +19:u14:nfs4_uint32_max, +15:u07:numerically, +9:u05:minus, +12:u07:greater., +19:u13:nfs4_uint32_max, +11:u14:treated, +15:u06:numerically, +10:u07:8.2.3., +9:u04:minus, +12:u06:greater., +19:u12:nfs4_uint32_max, +11:u13:treated, +15:u14:numerically, +15:u05:numerically, +10:u06:8.2.3., +9:u03:minus, +12:u05:greater., +19:u11:nfs4_uint32_max, +11:u12:treated, +15:u13:numerically, +10:u14:8.2.3., +15:u04:numerically, +10:u05:8.2.3., +9:u02:minus, +12:u04:greater., +12:u08:meanings, +19:u10:nfs4_uint32_max, +11:u11:treated, +15:u12:numerically, +10:u13:8.2.3., +15:u03:numerically, +10:u04:8.2.3., +9:u01:minus, +12:u03:greater., +12:u07:meanings, +11:u10:treated, +15:u11:numerically, +10:u12:8.2.3., +15:u02:numerically, +10:u03:8.2.3., +9:u00:minus, +12:u02:greater., +12:u06:meanings, +15:u10:numerically, +10:u11:8.2.3., +15:u01:numerically, +10:u02:8.2.3., +12:u08:NFSv4.1:, +12:u01:greater., +12:u05:meanings, +10:u10:8.2.3., +15:u00:numerically, +10:u01:8.2.3., +12:u00:greater., +12:u04:meanings, +10:u00:8.2.3., +12:u07:NFSv4.1:, +12:u03:meanings, +12:u06:NFSv4.1:, +12:u02:meanings, +12:u14:nfsv4.1:, +12:u05:NFSv4.1:, +12:u01:meanings, +12:u13:nfsv4.1:, +12:u04:NFSv4.1:, +12:u00:meanings, +12:u12:nfsv4.1:, +9:uI2:"""",, +12:u03:NFSv4.1:, +12:u11:nfsv4.1:, +9:uI1:"""",, +12:u02:NFSv4.1:, +12:u10:nfsv4.1:, +9:uI0:"""",, +12:u01:NFSv4.1:, +12:u00:NFSv4.1:, +8:u08:161], +8:u07:161], +8:u06:161], +8:u05:161], +8:u04:161], +8:u03:161], +9:u08:READ,, +8:u02:161], +8:u01:161], +9:u07:READ,, +8:u00:161], +9:u06:READ,, +9:u14:read,, +9:u05:READ,, +9:u13:read,, +9:u04:READ,, +9:u12:read,, +9:u03:READ,, +9:u08:OPEN,, +9:u11:read,, +9:u02:READ,, +14:u08:delegation, +9:u10:read,, +9:u01:READ,, +9:u07:OPEN,, +9:u00:READ,, +9:u06:OPEN,, +14:u07:delegation, +9:u05:OPEN,, +14:u06:delegation, +19:u08:OPEN_DOWNGRADE., +9:u04:OPEN,, +14:u05:delegation, +9:u03:OPEN,, +14:u04:delegation, +19:u07:OPEN_DOWNGRADE., +24:u08:NFS4ERR_BAD_STATEID., +9:u02:OPEN,, +14:u03:delegation, +19:u06:OPEN_DOWNGRADE., +19:u14:open_downgrade., +9:u01:OPEN,, +14:u02:delegation, +19:u05:OPEN_DOWNGRADE., +24:u07:NFS4ERR_BAD_STATEID., +19:u13:open_downgrade., +9:u00:OPEN,, +14:u01:delegation, +19:u04:OPEN_DOWNGRADE., +24:u06:NFS4ERR_BAD_STATEID., +8:u08:one,, +19:u12:open_downgrade., +24:u14:nfs4err_bad_stateid., +14:u00:delegation, +19:u03:OPEN_DOWNGRADE., +24:u05:NFS4ERR_BAD_STATEID., +19:u11:open_downgrade., +24:u13:nfs4err_bad_stateid., +19:u02:OPEN_DOWNGRADE., +24:u04:NFS4ERR_BAD_STATEID., +8:u07:one,, +19:u10:open_downgrade., +24:u12:nfs4err_bad_stateid., +19:u01:OPEN_DOWNGRADE., +24:u03:NFS4ERR_BAD_STATEID., +8:u06:one,, +24:u11:nfs4err_bad_stateid., +8:u14:one,, +9:uI2:'"""", +19:u00:OPEN_DOWNGRADE., +24:u02:NFS4ERR_BAD_STATEID., +8:u05:one,, +24:u10:nfs4err_bad_stateid., +8:u13:one,, +9:uI1:'"""", +24:u01:NFS4ERR_BAD_STATEID., +8:u04:one,, +8:u12:one,, +8:u23:one,, +9:uI0:'"""", +24:u00:NFS4ERR_BAD_STATEID., +8:u03:one,, +8:u11:one,, +8:u02:one,, +8:u10:one,, +8:u01:one,, +8:u00:one,, +13:u08:stateids,, +11:u14:"other", +13:u07:stateids,, +11:u13:"other", +15:u08:designating, +13:u06:stateids,, +11:u12:"other", +6:u21:"o, +7:u22:"ot, +8:u23:"oth, +15:u08:substituted, +13:u05:stateids,, +11:u11:"other", +15:u07:designating, +13:u04:stateids,, +11:u10:"other", +15:u06:designating, +15:u07:substituted, +13:u03:stateids,, +15:u14:designating, +15:u05:designating, +15:u06:substituted, +13:u02:stateids,, +15:u13:designating, +15:u14:substituted, +15:u04:designating, +15:u05:substituted, +13:u01:stateids,, +15:u12:designating, +15:u13:substituted, +15:u03:designating, +15:u04:substituted, +10:u08:8.2.4., +13:u00:stateids,, +15:u11:designating, +15:u12:substituted, +8:u23:subs, +15:u02:designating, +15:u03:substituted, +15:u10:designating, +15:u11:substituted, +15:u01:designating, +15:u02:substituted, +10:u07:8.2.4., +15:u10:substituted, +15:u00:designating, +15:u01:substituted, +10:u06:8.2.4., +10:u14:8.2.4., +15:u00:substituted, +10:u05:8.2.4., +10:u13:8.2.4., +10:u04:8.2.4., +10:u08:valid,, +10:u12:8.2.4., +11:u14:restart, +10:u03:8.2.4., +10:u11:8.2.4., +11:u13:restart, +10:u02:8.2.4., +10:u07:valid,, +10:u10:8.2.4., +11:u12:restart, +10:u01:8.2.4., +10:u06:valid,, +11:u11:restart, +10:u14:valid,, +10:u00:8.2.4., +10:u05:valid,, +11:u10:restart, +10:u13:valid,, +10:u04:valid,, +8:u08:162], +10:u12:valid,, +10:u03:valid,, +8:u07:162], +10:u11:valid,, +7:u22:unt, +8:u23:unti, +10:u02:valid,, +8:u06:162], +10:u10:valid,, +10:u01:valid,, +8:u05:162], +10:u00:valid,, +9:u08:LOCKU, +8:u04:162], +8:u03:162], +9:u08:frees, +9:u07:LOCKU, +8:u02:162], +9:u07:frees, +9:u06:LOCKU, +8:u01:162], +9:u06:frees, +9:u14:locku, +9:u05:LOCKU, +8:u00:162], +9:u05:frees, +9:u13:locku, +9:u04:LOCKU, +9:u04:frees, +9:u12:locku, +9:u03:LOCKU, +9:u03:frees, +9:u11:locku, +9:u02:LOCKU, +9:u02:frees, +9:u10:locku, +9:u01:LOCKU, +9:u01:frees, +9:u00:LOCKU, +9:u00:frees, +14:u14:revocation, +14:u13:revocation, +14:u12:revocation, +8:u23:revo, +14:u11:revocation, +14:u10:revocation, +10:uI2:""(..,, +10:uI1:""(..,, +7:uI2:,,), +10:uI0:""(..,, +7:uI1:,,), +7:uI0:,,), +9:u08:table, +9:u07:table, +9:u06:table, +9:u05:table, +11:u08:sharing, +9:u04:table, +9:u03:table, +11:u07:sharing, +9:u02:table, +11:u06:sharing, +11:u14:sharing, +9:u01:table, +11:u05:sharing, +11:u13:sharing, +9:u00:table, +11:u04:sharing, +11:u12:sharing, +11:u03:sharing, +11:u11:sharing, +15:u14:delegation,, +8:uI2:(,-,, +11:u02:sharing, +11:u10:sharing, +15:u13:delegation,, +8:uI1:(,-,, +8:uI2:,,)., +11:u01:sharing, +12:u08:stateid,, +15:u12:delegation,, +8:uI0:(,-,, +8:uI1:,,)., +11:u00:sharing, +12:u07:stateid,, +15:u11:delegation,, +8:uI0:,,)., +12:u06:stateid,, +15:u10:delegation,, +12:u05:stateid,, +12:u04:stateid,, +12:u03:stateid,, +12:u02:stateid,, +8:u08:163], +12:u01:stateid,, +8:u07:163], +12:u00:stateid,, +8:u06:163], +8:u05:163], +8:u04:163], +8:u03:163], +8:u02:163], +9:u08:Note,, +8:u01:163], +8:uI2:.(.., +8:u00:163], +8:uI1:.(.., +9:u07:Note,, +8:uI0:.(.., +9:u06:Note,, +12:u08:analyzed, +9:u14:note,, +9:u05:Note,, +12:u07:analyzed, +9:u13:note,, +9:u04:Note,, +12:u06:analyzed, +9:u12:note,, +9:u03:Note,, +12:u05:analyzed, +9:u08:takes, +9:u11:note,, +9:u02:Note,, +12:u04:analyzed, +9:u07:takes, +9:u10:note,, +9:u01:Note,, +12:u03:analyzed, +9:u06:takes, +9:u00:Note,, +12:u02:analyzed, +9:u05:takes, +9:u08:will,, +24:u08:NFS4ERR_DEADSESSION,, +12:u01:analyzed, +9:u04:takes, +9:u07:will,, +13:u08:satisfied, +12:u00:analyzed, +9:u03:takes, +9:u06:will,, +13:u07:satisfied, +12:u14:question, +24:u07:NFS4ERR_DEADSESSION,, +9:u02:takes, +9:u05:will,, +13:u06:satisfied, +12:u13:question, +24:u06:NFS4ERR_DEADSESSION,, +9:u01:takes, +9:u04:will,, +13:u05:satisfied, +9:u08:ones,, +12:u12:question, +24:u14:nfs4err_deadsession,, +24:u05:NFS4ERR_DEADSESSION,, +9:u00:takes, +9:u03:will,, +13:u04:satisfied, +9:u07:ones,, +12:u11:question, +24:u13:nfs4err_deadsession,, +24:u04:NFS4ERR_DEADSESSION,, +9:u02:will,, +13:u03:satisfied, +9:u06:ones,, +12:u10:question, +24:u12:nfs4err_deadsession,, +24:u03:NFS4ERR_DEADSESSION,, +9:u01:will,, +13:u02:satisfied, +9:u05:ones,, +24:u11:nfs4err_deadsession,, +9:uI2:,"""", +24:u02:NFS4ERR_DEADSESSION,, +9:u00:will,, +13:u01:satisfied, +9:u04:ones,, +24:u10:nfs4err_deadsession,, +9:uI1:,"""", +24:u01:NFS4ERR_DEADSESSION,, +13:u00:satisfied, +9:u03:ones,, +9:uI0:,"""", +24:u00:NFS4ERR_DEADSESSION,, +9:u02:ones,, +9:u01:ones,, +23:u14:nfs4err_bad_stateid, +15:u08:non-special, +9:u00:ones,, +23:u13:nfs4err_bad_stateid, +23:u12:nfs4err_bad_stateid, +15:u07:non-special, +23:u11:nfs4err_bad_stateid, +15:u06:non-special, +23:u10:nfs4err_bad_stateid, +15:u14:non-special, +15:u05:non-special, +15:u08:operation),, +15:u13:non-special, +15:u04:non-special, +15:u12:non-special, +15:u03:non-special, +15:u07:operation),, +15:u11:non-special, +9:uI2:(..,-, +15:u02:non-special, +15:u06:operation),, +15:u10:non-special, +15:u14:operation),, +9:uI1:(..,-, +15:u01:non-special, +15:u05:operation),, +9:u08:zeros, +15:u13:operation),, +9:uI0:(..,-, +15:u00:non-special, +15:u04:operation),, +15:u12:operation),, +12:u14:accepted, +15:u03:operation),, +9:u07:zeros, +12:u08:assuming, +15:u11:operation),, +12:u13:accepted, +15:u02:operation),, +9:u06:zeros, +15:u10:operation),, +12:u12:accepted, +9:u14:zeros, +15:u01:operation),, +9:u05:zeros, +12:u07:assuming, +12:u11:accepted, +9:u13:zeros, +15:u00:operation),, +9:u04:zeros, +12:u06:assuming, +12:u10:accepted, +9:u12:zeros, +9:u03:zeros, +12:u05:assuming, +9:u11:zeros, +9:u02:zeros, +12:u04:assuming, +8:u08:164], +9:u10:zeros, +9:u01:zeros, +12:u03:assuming, +8:u07:164], +9:u00:zeros, +12:u02:assuming, +8:u06:164], +12:u01:assuming, +8:u05:164], +12:u00:assuming, +10:u08:table,, +8:u04:164], +8:u03:164], +10:u07:table,, +8:u02:164], +10:u06:table,, +8:u01:164], +10:u14:table,, +10:u05:table,, +8:u00:164], +10:u13:table,, +10:u04:table,, +10:u12:table,, +10:u03:table,, +10:u11:table,, +10:u02:table,, +10:u10:table,, +10:u01:table,, +20:u08:NFS4ERR_EXPIRED,, +10:u00:table,, +26:u08:NFS4ERR_ADMIN_REVOKED,, +20:u07:NFS4ERR_EXPIRED,, +26:u07:NFS4ERR_ADMIN_REVOKED,, +20:u06:NFS4ERR_EXPIRED,, +26:u06:NFS4ERR_ADMIN_REVOKED,, +20:u14:nfs4err_expired,, +20:u05:NFS4ERR_EXPIRED,, +26:u05:NFS4ERR_ADMIN_REVOKED,, +12:u08:appears,, +20:u13:nfs4err_expired,, +20:u04:NFS4ERR_EXPIRED,, +26:u04:NFS4ERR_ADMIN_REVOKED,, +12:u07:appears,, +20:u12:nfs4err_expired,, +20:u03:NFS4ERR_EXPIRED,, +26:u03:NFS4ERR_ADMIN_REVOKED,, +12:u06:appears,, +20:u11:nfs4err_expired,, +20:u02:NFS4ERR_EXPIRED,, +26:u02:NFS4ERR_ADMIN_REVOKED,, +12:u05:appears,, +20:u10:nfs4err_expired,, +20:u01:NFS4ERR_EXPIRED,, +26:u01:NFS4ERR_ADMIN_REVOKED,, +12:u04:appears,, +20:u00:NFS4ERR_EXPIRED,, +26:u00:NFS4ERR_ADMIN_REVOKED,, +12:u03:appears,, +12:u02:appears,, +10:u14:passed, +7:uI2:,'-, +12:u01:appears,, +10:u13:passed, +7:uI1:,'-, +12:u00:appears,, +10:u12:passed, +7:uI0:,'-, +10:u11:passed, +10:u10:passed, +24:u08:NFS4ERR_OLD_STATEID., +24:u07:NFS4ERR_OLD_STATEID., +24:u06:NFS4ERR_OLD_STATEID., +24:u14:nfs4err_old_stateid., +24:u05:NFS4ERR_OLD_STATEID., +24:u13:nfs4err_old_stateid., +24:u04:NFS4ERR_OLD_STATEID., +24:u12:nfs4err_old_stateid., +24:u03:NFS4ERR_OLD_STATEID., +8:u08:open, +24:u11:nfs4err_old_stateid., +24:u02:NFS4ERR_OLD_STATEID., +10:u08:8.2.5., +9:u08:modes, +24:u10:nfs4err_old_stateid., +24:u01:NFS4ERR_OLD_STATEID., +8:u07:open, +9:u07:modes, +16:u14:information,, +10:uI2:,..,--, +24:u00:NFS4ERR_OLD_STATEID., +8:u06:open, +10:u07:8.2.5., +9:u06:modes, +16:u13:information,, +10:uI1:,..,--, +9:uI2:,,..,, +8:u05:open, +10:u06:8.2.5., +9:u05:modes, +16:u12:information,, +10:u14:8.2.5., +10:uI0:,..,--, +9:uI1:,,..,, +8:u04:open, +10:u05:8.2.5., +9:u04:modes, +16:u11:information,, +10:u13:8.2.5., +9:uI0:,,..,, +8:u03:open, +10:u04:8.2.5., +9:u03:modes, +16:u10:information,, +10:u12:8.2.5., +8:u02:open, +10:u03:8.2.5., +9:u02:modes, +7:u08:I/O, +10:u11:8.2.5., +8:u01:open, +10:u02:8.2.5., +9:u01:modes, +7:u07:I/O, +10:u10:8.2.5., +8:u00:open, +10:u01:8.2.5., +9:u00:modes, +7:u06:I/O, +10:u00:8.2.5., +7:u05:I/O, +8:u08:165], +7:u04:I/O, +8:u07:165], +7:u03:I/O, +8:u06:165], +7:u02:I/O, +8:u05:165], +7:u01:I/O, +8:u04:165], +7:u00:I/O, +8:u03:165], +8:u02:165], +8:u01:165], +8:u00:165], +12:u08:process), +12:u07:process), +14:u08:lock-owner, +12:u06:process), +12:u14:process), +10:uI2:,-(..,, +12:u05:process), +14:u07:lock-owner, +12:u13:process), +10:uI1:,-(..,, +7:uI2:)/-, +12:u04:process), +14:u06:lock-owner, +12:u12:process), +14:u14:lock-owner, +10:uI0:,-(..,, +7:uI1:)/-, +12:u03:process), +14:u05:lock-owner, +12:u11:process), +14:u13:lock-owner, +7:uI0:)/-, +12:u02:process), +14:u04:lock-owner, +12:u08:Ignoring, +12:u10:process), +14:u12:lock-owner, +12:u01:process), +14:u03:lock-owner, +14:u11:lock-owner, +12:u00:process), +14:u02:lock-owner, +12:u07:Ignoring, +14:u10:lock-owner, +14:u01:lock-owner, +12:u06:Ignoring, +12:u14:ignoring, +14:u00:lock-owner, +12:u05:Ignoring, +12:u13:ignoring, +12:u04:Ignoring, +12:u12:ignoring, +6:u21:Ig, +7:u22:Ign, +8:u23:Igno, +12:u03:Ignoring, +12:u11:ignoring, +12:u02:Ignoring, +12:u10:ignoring, +12:u01:Ignoring, +12:u00:Ignoring, +10:u08:8.2.6., +10:u07:8.2.6., +10:u06:8.2.6., +12:u08:clientid, +10:u14:8.2.6., +10:u05:8.2.6., +9:u08:cause, +12:u07:clientid, +10:u13:8.2.6., +10:u04:8.2.6., +12:u06:clientid, +10:u12:8.2.6., +10:u03:8.2.6., +9:u07:cause, +12:u05:clientid, +10:u11:8.2.6., +10:u02:8.2.6., +9:u06:cause, +12:u04:clientid, +10:u10:8.2.6., +9:u14:cause, +10:u01:8.2.6., +9:u05:cause, +12:u03:clientid, +9:u13:cause, +10:u00:8.2.6., +9:u04:cause, +13:u08:question,, +12:u02:clientid, +9:u12:cause, +7:u22:cau, +8:u23:caus, +9:u03:cause, +12:u01:clientid, +9:u11:cause, +9:u02:cause, +13:u07:question,, +12:u00:clientid, +9:u10:cause, +9:u01:cause, +13:u06:question,, +13:u14:question,, +9:u00:cause, +13:u05:question,, +13:u13:question,, +13:u04:question,, +13:u12:question,, +13:u03:question,, +8:u08:166], +13:u11:question,, +13:u02:question,, +8:u07:166], +13:u10:question,, +13:u01:question,, +8:u06:166], +13:u00:question,, +8:u05:166], +8:u04:166], +8:u03:166], +8:u02:166], +8:u01:166], +17:u08:client/server, +8:u00:166], +17:u07:client/server, +17:u06:client/server, +17:u05:client/server, +10:u14:lease., +17:u04:client/server, +10:u13:lease., +17:u03:client/server, +10:u12:lease., +17:u02:client/server, +12:u08:relevant, +10:u11:lease., +12:u08:inactive, +17:u01:client/server, +12:u07:relevant, +15:u08:conflicting, +10:u10:lease., +8:u14:held, +17:u00:client/server, +12:u06:relevant, +15:u07:conflicting, +8:u13:held, +12:u07:inactive, +12:u08:interval, +12:u05:relevant, +15:u06:conflicting, +8:u12:held, +12:u06:inactive, +12:u04:relevant, +15:u05:conflicting, +8:u11:held, +12:u14:inactive, +12:u05:inactive, +12:u07:interval, +12:u03:relevant, +15:u04:conflicting, +8:u10:held, +12:u13:inactive, +15:u14:consistency, +12:u04:inactive, +12:u06:interval, +12:u02:relevant, +15:u03:conflicting, +12:u12:inactive, +15:u13:consistency, +12:u14:interval, +12:u03:inactive, +12:u05:interval, +12:u01:relevant, +15:u02:conflicting, +12:u11:inactive, +15:u12:consistency, +12:u13:interval, +12:u02:inactive, +12:u04:interval, +12:u00:relevant, +15:u01:conflicting, +12:u10:inactive, +15:u11:consistency, +12:u12:interval, +12:u01:inactive, +12:u03:interval, +15:u00:conflicting, +15:u10:consistency, +12:u11:interval, +12:u00:inactive, +12:u02:interval, +14:u08:implicitly, +10:u08:cache), +12:u10:interval, +12:u01:interval, +10:u07:cache), +12:u08:renewed,, +12:u00:interval, +14:u07:implicitly, +10:u06:cache), +12:u07:renewed,, +15:u08:attribute)., +14:u06:implicitly, +10:u05:cache), +12:u06:renewed,, +15:u07:attribute)., +14:u14:implicitly, +14:u05:implicitly, +10:u04:cache), +12:u05:renewed,, +15:u06:attribute)., +14:u13:implicitly, +14:u04:implicitly, +10:u03:cache), +12:u04:renewed,, +15:u05:attribute)., +14:u12:implicitly, +14:u03:implicitly, +10:u02:cache), +12:u03:renewed,, +15:u04:attribute)., +14:u11:implicitly, +14:u02:implicitly, +10:u01:cache), +12:u02:renewed,, +15:u03:attribute)., +14:u10:implicitly, +14:u01:implicitly, +10:u08:Absent, +10:u00:cache), +12:u01:renewed,, +15:u02:attribute)., +14:u00:implicitly, +14:u08:consisting, +12:u00:renewed,, +15:u01:attribute)., +10:u07:Absent, +15:u00:attribute)., +10:u06:Absent, +14:u07:consisting, +9:u08:steps, +10:u14:absent, +10:u05:Absent, +14:u06:consisting, +10:u13:absent, +14:u14:consisting, +10:u04:Absent, +14:u05:consisting, +9:u07:steps, +10:u12:absent, +14:u13:consisting, +8:u23:Abse, +10:u03:Absent, +14:u04:consisting, +9:u06:steps, +10:u11:absent, +14:u12:consisting, +9:u14:steps, +10:u02:Absent, +14:u03:consisting, +9:u05:steps, +10:u10:absent, +14:u11:consisting, +9:u13:steps, +10:u01:Absent, +14:u02:consisting, +9:u04:steps, +11:u08:renewal, +14:u10:consisting, +9:u12:steps, +10:u00:Absent, +14:u01:consisting, +9:u03:steps, +11:u07:renewal, +9:u11:steps, +14:u00:consisting, +9:u02:steps, +11:u06:renewal, +9:u10:steps, +9:u01:steps, +11:u05:renewal, +9:u00:steps, +12:u08:restart;, +11:u04:renewal, +11:u03:renewal, +12:u07:restart;, +11:u02:renewal, +12:u06:restart;, +11:u01:renewal, +12:u14:restart;, +12:u05:restart;, +11:u00:renewal, +8:u08:167], +12:u13:restart;, +9:uI2:;...., +12:u04:restart;, +8:u07:167], +12:u12:restart;, +9:uI1:;...., +12:u03:restart;, +8:u06:167], +12:u11:restart;, +9:uI0:;...., +12:u02:restart;, +12:u08:careful,, +8:u05:167], +12:u10:restart;, +12:u01:restart;, +11:u08:failing, +8:u04:167], +12:u00:restart;, +12:u07:careful,, +8:u03:167], +12:u06:careful,, +11:u07:failing, +15:u08:exponential, +8:u02:167], +12:u08:scenario, +12:u14:careful,, +12:u05:careful,, +11:u06:failing, +11:u08:exceeds, +8:u01:167], +12:u07:scenario, +12:u08:backoff,, +12:u13:careful,, +11:u14:failing, +12:u04:careful,, +11:u05:failing, +15:u07:exponential, +8:u00:167], +12:u06:scenario, +12:u07:backoff,, +12:u12:careful,, +11:u13:failing, +12:u03:careful,, +11:u04:failing, +15:u06:exponential, +11:u07:exceeds, +12:u05:scenario, +12:u06:backoff,, +13:u08:partition, +12:u11:careful,, +11:u12:failing, +15:u14:exponential, +12:u02:careful,, +11:u03:failing, +15:u05:exponential, +11:u06:exceeds, +19:u08:transport-level, +12:u04:scenario, +12:u05:backoff,, +13:u07:partition, +12:u10:careful,, +11:u11:failing, +15:u13:exponential, +11:u14:exceeds, +12:u01:careful,, +11:u02:failing, +15:u04:exponential, +11:u05:exceeds, +12:u03:scenario, +12:u04:backoff,, +13:u06:partition, +18:u08:retransmission, +11:u10:failing, +15:u12:exponential, +11:u13:exceeds, +12:u00:careful,, +11:u01:failing, +15:u03:exponential, +11:u04:exceeds, +19:u07:transport-level, +12:u02:scenario, +12:u03:backoff,, +13:u05:partition, +18:u07:retransmission, +15:u11:exponential, +11:u12:exceeds, +11:u00:failing, +15:u02:exponential, +11:u03:exceeds, +19:u06:transport-level, +10:u08:errors, +12:u01:scenario, +12:u02:backoff,, +13:u04:partition, +18:u06:retransmission, +15:u10:exponential, +11:u11:exceeds, +19:u14:transport-level, +15:u01:exponential, +11:u02:exceeds, +19:u05:transport-level, +12:u00:scenario, +12:u01:backoff,, +13:u03:partition, +18:u05:retransmission, +11:u10:exceeds, +19:u13:transport-level, +15:u00:exponential, +11:u01:exceeds, +19:u04:transport-level, +10:u07:errors, +12:u00:backoff,, +13:u02:partition, +18:u04:retransmission, +13:u08:intervals, +19:u12:transport-level, +11:u00:exceeds, +19:u03:transport-level, +10:u06:errors, +13:u01:partition, +18:u03:retransmission, +13:u07:intervals, +19:u11:transport-level, +10:u14:errors, +19:u02:transport-level, +10:u05:errors, +13:u00:partition, +18:u02:retransmission, +13:u06:intervals, +19:u10:transport-level, +10:u13:errors, +18:u14:retransmission, +19:u01:transport-level, +10:u04:errors, +18:u01:retransmission, +13:u05:intervals, +10:u12:errors, +18:u13:retransmission, +19:u00:transport-level, +10:u03:errors, +18:u00:retransmission, +13:u04:intervals, +10:u11:errors, +18:u12:retransmission, +10:u02:errors, +13:u08:packets),, +13:u03:intervals, +10:u10:errors, +18:u11:retransmission, +10:u01:errors, +17:u08:establishment, +13:u02:intervals, +18:u10:retransmission, +10:u00:errors, +13:u07:packets),, +14:u08:reconnect., +13:u01:intervals, +13:u06:packets),, +17:u07:establishment, +13:u00:intervals, +13:u14:packets),, +13:u05:packets),, +17:u06:establishment, +14:u07:reconnect., +13:u13:packets),, +13:u04:packets),, +17:u05:establishment, +14:u06:reconnect., +13:u12:packets),, +14:u14:reconnect., +13:u03:packets),, +17:u04:establishment, +14:u05:reconnect., +13:u11:packets),, +14:u13:reconnect., +13:u02:packets),, +17:u03:establishment, +14:u04:reconnect., +13:u10:packets),, +14:u12:reconnect., +13:u01:packets),, +17:u02:establishment, +14:u03:reconnect., +14:u11:reconnect., +13:u00:packets),, +17:u01:establishment, +14:u02:reconnect., +7:u08:sum, +14:u10:reconnect., +17:u00:establishment, +14:u01:reconnect., +7:u07:sum, +14:u00:reconnect., +7:u06:sum, +16:u08:(lease_time), +7:u05:sum, +16:u07:(lease_time), +7:u04:sum, +16:u06:(lease_time), +7:u03:sum, +16:u05:(lease_time), +7:u02:sum, +16:u04:(lease_time), +7:u01:sum, +16:u03:(lease_time), +12:u08:informed, +7:u00:sum, +16:u02:(lease_time), +10:u14:lease,, +21:u08:(sr_status_flags), +16:u01:(lease_time), +7:u08:of., +10:u13:lease,, +11:u14:period,, +12:u07:informed, +10:u08:action, +16:u00:(lease_time), +7:u07:of., +10:u12:lease,, +11:u13:period,, +12:u06:informed, +21:u07:(sr_status_flags), +7:u06:of., +10:u11:lease,, +11:u12:period,, +12:u14:informed, +12:u05:informed, +21:u06:(sr_status_flags), +10:u07:action, +36:u08:SEQ4_STATUS_CB_PATH_DOWN_SESSION, +7:u05:of., +10:u10:lease,, +11:u11:period,, +12:u13:informed, +21:u14:(sr_status_flags), +12:u04:informed, +21:u05:(sr_status_flags), +10:u06:action, +7:u04:of., +11:u10:period,, +12:u12:informed, +21:u13:(sr_status_flags), +10:u14:action, +12:u03:informed, +21:u04:(sr_status_flags), +10:u05:action, +36:u07:SEQ4_STATUS_CB_PATH_DOWN_SESSION, +7:u03:of., +12:u11:informed, +21:u12:(sr_status_flags), +10:u13:action, +7:u22:(sr, +8:u23:(sr_, +12:u02:informed, +21:u03:(sr_status_flags), +10:u04:action, +36:u06:SEQ4_STATUS_CB_PATH_DOWN_SESSION, +7:u02:of., +12:u10:informed, +21:u11:(sr_status_flags), +10:u12:action, +36:u14:seq4_status_cb_path_down_session, +12:u01:informed, +21:u02:(sr_status_flags), +10:u03:action, +36:u05:SEQ4_STATUS_CB_PATH_DOWN_SESSION, +7:u01:of., +21:u10:(sr_status_flags), +10:u11:action, +36:u13:seq4_status_cb_path_down_session, +12:u00:informed, +21:u01:(sr_status_flags), +10:u02:action, +36:u04:SEQ4_STATUS_CB_PATH_DOWN_SESSION, +7:u00:of., +10:u10:action, +36:u12:seq4_status_cb_path_down_session, +8:u23:SEQ4, +21:u00:(sr_status_flags), +10:u01:action, +36:u03:SEQ4_STATUS_CB_PATH_DOWN_SESSION, +8:u08:168], +36:u11:seq4_status_cb_path_down_session, +10:u00:action, +36:u02:SEQ4_STATUS_CB_PATH_DOWN_SESSION, +8:u07:168], +36:u10:seq4_status_cb_path_down_session, +36:u01:SEQ4_STATUS_CB_PATH_DOWN_SESSION, +8:u06:168], +36:u00:SEQ4_STATUS_CB_PATH_DOWN_SESSION, +8:u05:168], +39:u08:SEQ4_STATUS_CB_GSS_CONTEXTS_EXPIRED, +8:u04:168], +8:u03:168], +39:u07:SEQ4_STATUS_CB_GSS_CONTEXTS_EXPIRED, +8:u02:168], +39:u06:SEQ4_STATUS_CB_GSS_CONTEXTS_EXPIRED, +8:u01:168], +39:u14:seq4_status_cb_gss_contexts_expired, +39:u05:SEQ4_STATUS_CB_GSS_CONTEXTS_EXPIRED, +8:u00:168], +39:u13:seq4_status_cb_gss_contexts_expired, +39:u04:SEQ4_STATUS_CB_GSS_CONTEXTS_EXPIRED, +43:u08:SEQ4_STATUS_EXPIRED_SOME_STATE_REVOKED,, +39:u12:seq4_status_cb_gss_contexts_expired, +39:u03:SEQ4_STATUS_CB_GSS_CONTEXTS_EXPIRED, +36:u08:SEQ4_STATUS_ADMIN_STATE_REVOKED,, +39:u11:seq4_status_cb_gss_contexts_expired, +39:u02:SEQ4_STATUS_CB_GSS_CONTEXTS_EXPIRED, +43:u07:SEQ4_STATUS_EXPIRED_SOME_STATE_REVOKED,, +40:u08:SEQ4_STATUS_RECALLABLE_STATE_REVOKED, +39:u10:seq4_status_cb_gss_contexts_expired, +39:u01:SEQ4_STATUS_CB_GSS_CONTEXTS_EXPIRED, +43:u06:SEQ4_STATUS_EXPIRED_SOME_STATE_REVOKED,, +36:u07:SEQ4_STATUS_ADMIN_STATE_REVOKED,, +43:u14:seq4_status_expired_some_state_revoked,, +39:u00:SEQ4_STATUS_CB_GSS_CONTEXTS_EXPIRED, +43:u05:SEQ4_STATUS_EXPIRED_SOME_STATE_REVOKED,, +36:u06:SEQ4_STATUS_ADMIN_STATE_REVOKED,, +40:u07:SEQ4_STATUS_RECALLABLE_STATE_REVOKED, +16:u08:TEST_STATEID, +11:u08:events., +43:u13:seq4_status_expired_some_state_revoked,, +36:u14:seq4_status_admin_state_revoked,, +43:u04:SEQ4_STATUS_EXPIRED_SOME_STATE_REVOKED,, +36:u05:SEQ4_STATUS_ADMIN_STATE_REVOKED,, +40:u06:SEQ4_STATUS_RECALLABLE_STATE_REVOKED, +16:u08:FREE_STATEID, +11:u07:events., +43:u12:seq4_status_expired_some_state_revoked,, +36:u13:seq4_status_admin_state_revoked,, +40:u14:seq4_status_recallable_state_revoked, +43:u03:SEQ4_STATUS_EXPIRED_SOME_STATE_REVOKED,, +36:u04:SEQ4_STATUS_ADMIN_STATE_REVOKED,, +40:u05:SEQ4_STATUS_RECALLABLE_STATE_REVOKED, +16:u07:TEST_STATEID, +11:u06:events., +43:u11:seq4_status_expired_some_state_revoked,, +36:u12:seq4_status_admin_state_revoked,, +40:u13:seq4_status_recallable_state_revoked, +43:u02:SEQ4_STATUS_EXPIRED_SOME_STATE_REVOKED,, +36:u03:SEQ4_STATUS_ADMIN_STATE_REVOKED,, +40:u04:SEQ4_STATUS_RECALLABLE_STATE_REVOKED, +16:u06:TEST_STATEID, +16:u07:FREE_STATEID, +11:u05:events., +43:u10:seq4_status_expired_some_state_revoked,, +36:u11:seq4_status_admin_state_revoked,, +40:u12:seq4_status_recallable_state_revoked, +16:u14:test_stateid, +43:u01:SEQ4_STATUS_EXPIRED_SOME_STATE_REVOKED,, +36:u02:SEQ4_STATUS_ADMIN_STATE_REVOKED,, +40:u03:SEQ4_STATUS_RECALLABLE_STATE_REVOKED, +16:u05:TEST_STATEID, +16:u06:FREE_STATEID, +11:u04:events., +36:u10:seq4_status_admin_state_revoked,, +40:u11:seq4_status_recallable_state_revoked, +16:u13:test_stateid, +16:u14:free_stateid, +43:u00:SEQ4_STATUS_EXPIRED_SOME_STATE_REVOKED,, +36:u01:SEQ4_STATUS_ADMIN_STATE_REVOKED,, +40:u02:SEQ4_STATUS_RECALLABLE_STATE_REVOKED, +16:u04:TEST_STATEID, +16:u05:FREE_STATEID, +11:u03:events., +40:u10:seq4_status_recallable_state_revoked, +16:u12:test_stateid, +16:u13:free_stateid, +7:u22:TES, +8:u23:TEST, +36:u00:SEQ4_STATUS_ADMIN_STATE_REVOKED,, +40:u01:SEQ4_STATUS_RECALLABLE_STATE_REVOKED, +16:u03:TEST_STATEID, +16:u04:FREE_STATEID, +11:u02:events., +16:u11:test_stateid, +16:u12:free_stateid, +7:u22:FRE, +8:u23:FREE, +40:u00:SEQ4_STATUS_RECALLABLE_STATE_REVOKED, +16:u02:TEST_STATEID, +16:u03:FREE_STATEID, +11:u01:events., +16:u10:test_stateid, +16:u11:free_stateid, +16:u01:TEST_STATEID, +16:u02:FREE_STATEID, +11:u00:events., +16:u10:free_stateid, +16:u00:TEST_STATEID, +16:u01:FREE_STATEID, +16:u00:FREE_STATEID, +17:u08:backchannel)., +17:u07:backchannel)., +17:u06:backchannel)., +17:u14:backchannel)., +17:u05:backchannel)., +17:u13:backchannel)., +17:u04:backchannel)., +17:u12:backchannel)., +17:u03:backchannel)., +17:u11:backchannel)., +17:u02:backchannel)., +17:u10:backchannel)., +17:u01:backchannel)., +13:u08:recovered, +13:u14:restarts., +17:u00:backchannel)., +13:u07:recovered, +13:u13:restarts., +8:u08:sure, +13:u06:recovered, +13:u12:restarts., +13:u05:recovered, +13:u11:restarts., +8:u07:sure, +13:u04:recovered, +13:u10:restarts., +8:u06:sure, +13:u03:recovered, +8:u14:sure, +8:u05:sure, +13:u02:recovered, +7:u08:now, +8:u13:sure, +8:u04:sure, +13:u01:recovered, +7:u07:now, +8:u12:sure, +8:u23:sure, +8:u03:sure, +13:u00:recovered, +7:u06:now, +8:u11:sure, +8:u02:sure, +7:u05:now, +8:u10:sure, +8:u01:sure, +7:u04:now, +14:u08:Subsequent, +8:u00:sure, +7:u03:now, +14:u07:Subsequent, +20:u08:(NFS4ERR_GRACE)., +7:u02:now, +14:u06:Subsequent, +20:u07:(NFS4ERR_GRACE)., +7:u01:now, +14:u05:Subsequent, +20:u06:(NFS4ERR_GRACE)., +7:u00:now, +14:u04:Subsequent, +20:u05:(NFS4ERR_GRACE)., +8:u08:169], +14:u03:Subsequent, +20:u04:(NFS4ERR_GRACE)., +8:u07:169], +14:u02:Subsequent, +20:u03:(NFS4ERR_GRACE)., +8:u06:169], +10:u08:8.4.1., +14:u01:Subsequent, +20:u02:(NFS4ERR_GRACE)., +8:u05:169], +14:u00:Subsequent, +20:u01:(NFS4ERR_GRACE)., +8:u04:169], +10:u07:8.4.1., +20:u00:(NFS4ERR_GRACE)., +8:u03:169], +10:u06:8.4.1., +8:u02:169], +10:u14:8.4.1., +10:u05:8.4.1., +8:u01:169], +10:u13:8.4.1., +10:u04:8.4.1., +8:u00:169], +10:u12:8.4.1., +10:u03:8.4.1., +10:u11:8.4.1., +10:u02:8.4.1., +10:u10:8.4.1., +13:u14:discussed, +10:u01:8.4.1., +12:u08:minimize, +13:u13:discussed, +10:u00:8.4.1., +12:u07:minimize, +13:u12:discussed, +15:u14:conflicting, +12:u06:minimize, +13:u11:discussed, +15:u13:conflicting, +12:u05:minimize, +8:u08:made, +13:u10:discussed, +15:u12:conflicting, +12:u04:minimize, +8:u07:made, +15:u11:conflicting, +12:u03:minimize, +8:u06:made, +15:u10:conflicting, +12:u02:minimize, +8:u05:made, +12:u01:minimize, +8:u04:made, +12:u00:minimize, +8:u03:made, +8:u02:made, +10:u14:locks,, +19:u08:initialization,, +8:u01:made, +10:u13:locks,, +9:uI2:,,-,,, +8:u00:made, +10:u12:locks,, +9:uI1:,,-,,, +19:u07:initialization,, +10:u08:match., +10:u11:locks,, +9:uI0:,,-,,, +19:u06:initialization,, +10:u10:locks,, +19:u14:initialization,, +19:u05:initialization,, +10:u07:match., +11:u08:result,, +9:u08:(upon, +19:u13:initialization,, +19:u04:initialization,, +10:u06:match., +9:u07:(upon, +19:u12:initialization,, +10:u14:match., +19:u03:initialization,, +10:u05:match., +11:u07:result,, +13:u08:verifier., +9:u06:(upon, +19:u11:initialization,, +10:u13:match., +19:u02:initialization,, +10:u04:match., +11:u06:result,, +11:u08:waiting, +9:u05:(upon, +19:u10:initialization,, +10:u12:match., +11:u14:result,, +19:u01:initialization,, +10:u03:match., +11:u05:result,, +13:u07:verifier., +9:u04:(upon, +10:u11:match., +11:u13:result,, +8:u23:loss, +19:u00:initialization,, +10:u02:match., +11:u04:result,, +13:u06:verifier., +11:u07:waiting, +10:u08:freed,, +9:u03:(upon, +10:u10:match., +11:u12:result,, +13:u14:verifier., +10:u01:match., +11:u03:result,, +13:u05:verifier., +11:u06:waiting, +9:u02:(upon, +11:u11:result,, +13:u13:verifier., +11:u14:waiting, +10:u00:match., +11:u02:result,, +13:u04:verifier., +11:u05:waiting, +10:u07:freed,, +9:u01:(upon, +11:u10:result,, +13:u12:verifier., +11:u13:waiting, +11:u01:result,, +13:u03:verifier., +11:u04:waiting, +10:u06:freed,, +9:u00:(upon, +13:u11:verifier., +11:u12:waiting, +10:u14:freed,, +7:u22:wai, +8:u23:wait, +11:u00:result,, +13:u02:verifier., +11:u03:waiting, +10:u05:freed,, +13:u10:verifier., +11:u11:waiting, +10:u13:freed,, +13:u01:verifier., +11:u02:waiting, +10:u04:freed,, +11:u10:waiting, +10:u12:freed,, +13:u00:verifier., +11:u01:waiting, +10:u03:freed,, +10:u11:freed,, +10:u14:8.4.2., +11:u00:waiting, +10:u02:freed,, +10:u10:freed,, +10:u13:8.4.2., +10:u01:freed,, +10:u12:8.4.2., +10:u00:freed,, +13:u08:Likewise,, +10:u11:8.4.2., +10:u10:8.4.2., +13:u07:Likewise,, +13:u06:Likewise,, +13:u14:likewise,, +13:u05:Likewise,, +12:u08:disallow, +13:u13:likewise,, +13:u04:Likewise,, +13:u12:likewise,, +13:u03:Likewise,, +12:u07:disallow, +13:u11:likewise,, +13:u02:Likewise,, +12:u06:disallow, +13:u10:likewise,, +12:u14:disallow, +13:u01:Likewise,, +12:u05:disallow, +8:u08:170], +12:u13:disallow, +13:u00:Likewise,, +12:u04:disallow, +8:u07:170], +12:u12:disallow, +12:u03:disallow, +8:u06:170], +12:u11:disallow, +12:u02:disallow, +8:u05:170], +12:u10:disallow, +12:u01:disallow, +8:u04:170], +12:u00:disallow, +8:u03:170], +12:u08:methods., +8:u02:170], +12:u07:methods., +13:u08:destroyed, +8:u01:170], +12:u06:methods., +8:u00:170], +12:u05:methods., +13:u07:destroyed, +12:u04:methods., +13:u06:destroyed, +12:u03:methods., +13:u14:destroyed, +13:u05:destroyed, +16:u08:re-establish, +12:u02:methods., +13:u13:destroyed, +13:u04:destroyed, +12:u01:methods., +13:u12:destroyed, +13:u03:destroyed, +16:u07:re-establish, +12:u00:methods., +13:u11:destroyed, +13:u02:destroyed, +16:u06:re-establish, +13:u10:destroyed, +16:u14:re-establish, +13:u01:destroyed, +16:u05:re-establish, +16:u13:re-establish, +13:u00:destroyed, +16:u04:re-establish, +16:u12:re-establish, +16:u03:re-establish, +16:u11:re-establish, +16:u02:re-establish, +14:u08:performed,, +16:u10:re-establish, +16:u01:re-establish, +16:u00:re-establish, +14:u07:performed,, +14:u06:performed,, +14:u14:performed,, +14:u05:performed,, +14:u13:performed,, +14:u04:performed,, +14:u12:performed,, +14:u03:performed,, +13:u08:8.4.2.1)., +14:u11:performed,, +14:u02:performed,, +13:u07:8.4.2.1)., +14:u10:performed,, +8:uI2:(.)-, +14:u01:performed,, +13:u06:8.4.2.1)., +8:uI1:(.)-, +14:u00:performed,, +13:u05:8.4.2.1)., +8:uI0:(.)-, +12:u08:8.4.2.1., +13:u04:8.4.2.1)., +8:u08:8.1), +13:u03:8.4.2.1)., +8:u07:8.1), +12:u07:8.4.2.1., +13:u02:8.4.2.1)., +8:u06:8.1), +12:u06:8.4.2.1., +13:u01:8.4.2.1)., +8:u05:8.1), +12:u14:8.4.2.1., +14:uI2:(.)-(...)., +12:u05:8.4.2.1., +13:u00:8.4.2.1)., +8:u04:8.1), +12:u13:8.4.2.1., +14:uI1:(.)-(...)., +12:u04:8.4.2.1., +8:u03:8.1), +12:u12:8.4.2.1., +14:uI0:(.)-(...)., +12:u03:8.4.2.1., +8:u02:8.1), +12:u11:8.4.2.1., +12:u02:8.4.2.1., +8:u01:8.1), +12:u10:8.4.2.1., +12:u01:8.4.2.1., +8:u00:8.1), +12:u00:8.4.2.1., +8:uI2:"-",, +8:uI1:"-",, +8:uI0:"-",, +12:u08:allowed,, +11:u14:reclaim, +11:u13:reclaim, +12:u07:allowed,, +11:u12:reclaim, +8:u23:recl, +12:u06:allowed,, +11:u11:reclaim, +12:u14:allowed,, +12:u05:allowed,, +8:u08:171], +11:u10:reclaim, +12:u13:allowed,, +12:u04:allowed,, +8:u07:171], +12:u12:allowed,, +12:u03:allowed,, +8:u06:171], +12:u11:allowed,, +12:u02:allowed,, +16:u08:persistently, +8:u05:171], +12:u10:allowed,, +12:u01:allowed,, +8:u04:171], +12:u00:allowed,, +16:u07:persistently, +8:u03:171], +16:u06:persistently, +12:u08:request), +8:u02:171], +16:u14:persistently, +16:u05:persistently, +9:u08:made,, +8:u01:171], +16:u13:persistently, +16:u04:persistently, +12:u07:request), +8:u00:171], +16:u12:persistently, +16:u03:persistently, +12:u06:request), +9:u07:made,, +16:u11:persistently, +12:u14:request), +16:u02:persistently, +12:u05:request), +9:u06:made,, +16:u10:persistently, +12:u13:request), +9:u14:made,, +16:u01:persistently, +12:u04:request), +9:u05:made,, +19:u08:CLAIM_PREVIOUS;, +12:u12:request), +9:u13:made,, +16:u00:persistently, +12:u03:request), +9:u04:made,, +12:u11:request), +9:u12:made,, +12:u02:request), +9:u03:made,, +19:u07:CLAIM_PREVIOUS;, +12:u10:request), +9:u11:made,, +12:u01:request), +9:u02:made,, +19:u06:CLAIM_PREVIOUS;, +9:u10:made,, +19:u14:claim_previous;, +12:u00:request), +9:u01:made,, +19:u05:CLAIM_PREVIOUS;, +13:u08:reclaimed, +14:u08:rca_one_fs, +19:u13:claim_previous;, +9:uI2:;.)-., +9:u00:made,, +19:u04:CLAIM_PREVIOUS;, +14:u07:rca_one_fs, +19:u12:claim_previous;, +7:u22:CLA, +8:u23:CLAI, +9:uI1:;.)-., +19:u03:CLAIM_PREVIOUS;, +13:u07:reclaimed, +14:u06:rca_one_fs, +19:u11:claim_previous;, +9:uI0:;.)-., +19:u02:CLAIM_PREVIOUS;, +13:u06:reclaimed, +14:u05:rca_one_fs, +19:u10:claim_previous;, +13:u14:reclaimed, +19:u01:CLAIM_PREVIOUS;, +13:u05:reclaimed, +14:u04:rca_one_fs, +13:u13:reclaimed, +19:u00:CLAIM_PREVIOUS;, +13:u04:reclaimed, +14:u03:rca_one_fs, +13:u12:reclaimed, +13:u03:reclaimed, +17:u08:transitioning, +14:u02:rca_one_fs, +13:u11:reclaimed, +13:u02:reclaimed, +14:u01:rca_one_fs, +13:u10:reclaimed, +13:u01:reclaimed, +17:u07:transitioning, +14:u00:rca_one_fs, +13:u00:reclaimed, +17:u06:transitioning, +17:u14:transitioning, +17:u05:transitioning, +13:u08:guarantee, +17:u13:transitioning, +17:u04:transitioning, +17:u12:transitioning, +17:u03:transitioning, +13:u07:guarantee, +9:u08:grace, +17:u11:transitioning, +17:u02:transitioning, +13:u06:guarantee, +9:u07:grace, +17:u10:transitioning, +13:u14:guarantee, +17:u01:transitioning, +13:u05:guarantee, +9:u06:grace, +13:u13:guarantee, +17:u00:transitioning, +13:u04:guarantee, +9:u05:grace, +13:u12:guarantee, +13:u03:guarantee, +17:u08:NFS4ERR_GRACE, +9:u04:grace, +13:u11:guarantee, +13:u02:guarantee, +9:u03:grace, +13:u10:guarantee, +13:u01:guarantee, +17:u07:NFS4ERR_GRACE, +9:u02:grace, +13:u00:guarantee, +17:u06:NFS4ERR_GRACE, +9:u01:grace, +17:u14:nfs4err_grace, +17:u05:NFS4ERR_GRACE, +9:u00:grace, +17:u13:nfs4err_grace, +17:u04:NFS4ERR_GRACE, +21:u08:RECLAIM_COMPLETE., +17:u12:nfs4err_grace, +8:u14:done, +17:u03:NFS4ERR_GRACE, +17:u11:nfs4err_grace, +8:u13:done, +17:u02:NFS4ERR_GRACE, +21:u07:RECLAIM_COMPLETE., +15:u08:opportunity, +17:u10:nfs4err_grace, +8:u12:done, +7:u22:don, +8:u23:done, +17:u01:NFS4ERR_GRACE, +21:u06:RECLAIM_COMPLETE., +8:u11:done, +21:u14:reclaim_complete., +17:u00:NFS4ERR_GRACE, +21:u05:RECLAIM_COMPLETE., +15:u07:opportunity, +8:u10:done, +21:u13:reclaim_complete., +21:u04:RECLAIM_COMPLETE., +15:u06:opportunity, +21:u12:reclaim_complete., +15:u14:opportunity, +8:u23:RECL, +21:u03:RECLAIM_COMPLETE., +15:u05:opportunity, +21:u11:reclaim_complete., +15:u13:opportunity, +21:u02:RECLAIM_COMPLETE., +15:u04:opportunity, +21:u10:reclaim_complete., +15:u12:opportunity, +21:u01:RECLAIM_COMPLETE., +15:u03:opportunity, +15:u11:opportunity, +21:u00:RECLAIM_COMPLETE., +15:u02:opportunity, +15:u10:opportunity, +15:u01:opportunity, +7:u14:out, +15:u00:opportunity, +7:u13:out, +7:u12:out, +7:u23:out, +8:u08:172], +7:u11:out, +8:u07:172], +7:u10:out, +8:u06:172], +8:u05:172], +8:u04:172], +8:u03:172], +11:u08:periods, +8:u02:172], +11:u07:periods, +8:u01:172], +11:u06:periods, +9:u14:grace, +8:u00:172], +11:u05:periods, +9:u13:grace, +11:u04:periods, +9:u12:grace, +8:u23:grac, +11:u03:periods, +9:u11:grace, +11:u02:periods, +9:u10:grace, +11:u01:periods, +11:u00:periods, +14:u08:processed., +14:u07:processed., +14:u06:processed., +14:u14:processed., +14:u05:processed., +14:u13:processed., +14:u04:processed., +14:u12:processed., +14:u03:processed., +14:u11:processed., +14:u02:processed., +9:u08:known, +14:u10:processed., +14:u01:processed., +14:u00:processed., +9:u07:known, +10:u08:stored, +9:u06:known, +13:u08:processed, +10:u07:stored, +9:u14:known, +9:u05:known, +10:u06:stored, +9:u13:known, +9:u04:known, +13:u07:processed, +10:u05:stored, +9:u12:known, +9:u03:known, +13:u06:processed, +10:u04:stored, +9:u11:known, +13:u14:processed, +9:u02:known, +13:u05:processed, +10:u03:stored, +9:u10:known, +13:u13:processed, +9:u01:known, +13:u04:processed, +10:u02:stored, +13:u12:processed, +9:u00:known, +13:u03:processed, +10:u01:stored, +13:u11:processed, +13:u02:processed, +10:u00:stored, +13:u10:processed, +13:u01:processed, +13:u00:processed, +14:u08:reiterate,, +14:u07:reiterate,, +14:u06:reiterate,, +14:u05:reiterate,, +7:uI2:,-/, +14:u04:reiterate,, +7:uI1:,-/, +14:u03:reiterate,, +16:u14:subsequently, +7:uI0:,-/, +14:u02:reiterate,, +16:u13:subsequently, +14:u01:reiterate,, +8:u08:173], +16:u12:subsequently, +14:u00:reiterate,, +8:u07:173], +16:u11:subsequently, +8:u06:173], +16:u10:subsequently, +8:u05:173], +15:u08:non-reclaim, +8:u04:173], +10:u08:employ, +8:u03:173], +15:u07:non-reclaim, +8:u02:173], +15:u06:non-reclaim, +10:u07:employ, +8:u01:173], +12:u08:seconds), +15:u14:non-reclaim, +15:u05:non-reclaim, +10:u06:employ, +9:u08:[50]., +8:u00:173], +12:u07:seconds), +15:u13:non-reclaim, +10:u14:employ, +8:uI2:-/.,, +15:u04:non-reclaim, +10:u05:employ, +12:u06:seconds), +15:u12:non-reclaim, +10:u13:employ, +8:uI1:-/.,, +15:u03:non-reclaim, +10:u04:employ, +9:u07:[50]., +12:u05:seconds), +15:u11:non-reclaim, +10:u12:employ, +8:u23:empl, +8:uI0:-/.,, +15:u02:non-reclaim, +10:u03:employ, +9:u06:[50]., +12:u04:seconds), +15:u10:non-reclaim, +10:u11:employ, +9:u14:[50]., +15:u01:non-reclaim, +10:u02:employ, +9:u05:[50]., +12:u03:seconds), +16:u08:reclaim-type, +10:u10:employ, +9:u13:[50]., +8:uI2:[]./, +15:u00:non-reclaim, +10:u01:employ, +9:u04:[50]., +12:u02:seconds), +16:u07:reclaim-type, +11:u08:succeed, +9:u12:[50]., +7:u22:[50, +8:u23:[50], +8:uI1:[]./, +10:u00:employ, +9:u03:[50]., +12:u01:seconds), +16:u06:reclaim-type, +11:u07:succeed, +9:u11:[50]., +8:uI0:[]./, +9:u02:[50]., +11:u08:period., +12:u00:seconds), +16:u05:reclaim-type, +11:u06:succeed, +9:u10:[50]., +9:u01:[50]., +16:u04:reclaim-type, +11:u05:succeed, +7:u14:i/o, +9:u00:[50]., +11:u07:period., +16:u03:reclaim-type, +11:u04:succeed, +11:u08:refetch, +7:u13:i/o, +11:u06:period., +16:u02:reclaim-type, +11:u03:succeed, +11:u07:refetch, +7:u12:i/o, +11:u14:period., +6:u21:I/, +7:u22:I/O, +7:u23:I/O, +11:u05:period., +10:u08:period, +16:u01:reclaim-type, +11:u02:succeed, +11:u06:refetch, +7:u11:i/o, +11:u13:period., +11:u04:period., +16:u00:reclaim-type, +11:u01:succeed, +11:u05:refetch, +7:u10:i/o, +11:u12:period., +11:u03:period., +10:u07:period, +11:u00:succeed, +11:u04:refetch, +11:u11:period., +11:u02:period., +10:u06:period, +11:u03:refetch, +11:u10:period., +10:u14:period, +11:u01:period., +10:u05:period, +11:u02:refetch, +15:u08:possibility, +10:u13:period, +11:u00:period., +10:u04:period, +11:u01:refetch, +15:u07:possibility, +10:u12:period, +10:u03:period, +11:u00:refetch, +15:u06:possibility, +10:u11:period, +10:u02:period, +15:u05:possibility, +10:u10:period, +10:u01:period, +15:u04:possibility, +10:u00:period, +15:u03:possibility, +15:u02:possibility, +11:u08:resolve, +15:u01:possibility, +11:u07:resolve, +15:u00:possibility, +11:u06:resolve, +10:u08:locks., +15:u08:problematic, +11:u05:resolve, +10:u07:locks., +11:u04:resolve, +10:u06:locks., +15:u07:problematic, +11:u03:resolve, +10:u05:locks., +15:u06:problematic, +11:u02:resolve, +10:u04:locks., +15:u14:problematic, +15:u05:problematic, +11:u01:resolve, +10:u03:locks., +15:u13:problematic, +15:u04:problematic, +11:u00:resolve, +10:u02:locks., +15:u12:problematic, +15:u03:problematic, +10:u01:locks., +15:u11:problematic, +15:u02:problematic, +10:u00:locks., +15:u10:problematic, +15:u01:problematic, +20:u08:NFS4ERR_NO_GRACE, +15:u00:problematic, +15:u08:conditions., +20:u07:NFS4ERR_NO_GRACE, +20:u06:NFS4ERR_NO_GRACE, +15:u07:conditions., +20:u05:NFS4ERR_NO_GRACE, +20:u08:eir_server_owner, +15:u06:conditions., +20:u04:NFS4ERR_NO_GRACE, +20:u07:eir_server_owner, +15:u14:conditions., +15:u05:conditions., +20:u03:NFS4ERR_NO_GRACE, +20:u06:eir_server_owner, +11:u08:2.10.5), +15:u13:conditions., +15:u04:conditions., +20:u02:NFS4ERR_NO_GRACE, +20:u05:eir_server_owner, +11:u07:2.10.5), +15:u12:conditions., +15:u03:conditions., +20:u01:NFS4ERR_NO_GRACE, +20:u04:eir_server_owner, +11:u06:2.10.5), +15:u11:conditions., +15:u02:conditions., +20:u00:NFS4ERR_NO_GRACE, +20:u03:eir_server_owner, +11:u05:2.10.5), +8:u08:174], +15:u10:conditions., +7:u22:Its, +7:u23:Its, +15:u01:conditions., +20:u02:eir_server_owner, +11:u04:2.10.5), +8:u07:174], +15:u00:conditions., +20:u01:eir_server_owner, +11:u03:2.10.5), +8:u06:174], +14:u08:8.4.2.1.1., +20:u00:eir_server_owner, +11:u02:2.10.5), +8:u05:174], +11:u01:2.10.5), +8:u04:174], +14:u07:8.4.2.1.1., +11:u00:2.10.5), +8:u03:174], +14:u06:8.4.2.1.1., +8:u02:174], +11:u08:asserts, +14:u14:8.4.2.1.1., +14:u05:8.4.2.1.1., +8:u01:174], +11:u07:asserts, +14:u13:8.4.2.1.1., +14:u04:8.4.2.1.1., +8:u00:174], +11:u06:asserts, +14:u12:8.4.2.1.1., +14:u03:8.4.2.1.1., +11:u05:asserts, +14:u11:8.4.2.1.1., +14:u02:8.4.2.1.1., +11:u04:asserts, +14:u10:8.4.2.1.1., +14:u01:8.4.2.1.1., +11:u03:asserts, +14:u00:8.4.2.1.1., +11:u02:asserts, +12:u08:negative, +11:u01:asserts, +12:u07:negative, +11:u00:asserts, +12:u06:negative, +12:u05:negative, +18:u08:NFS4ERR_ACCESS, +12:u04:negative, +12:u03:negative, +18:u07:NFS4ERR_ACCESS, +12:u02:negative, +18:u06:NFS4ERR_ACCESS, +12:u01:negative, +10:u08:6.2.2), +18:u14:nfs4err_access, +18:u05:NFS4ERR_ACCESS, +15:u08:maliciously, +12:u00:negative, +10:u07:6.2.2), +18:u13:nfs4err_access, +18:u04:NFS4ERR_ACCESS, +14:u08:reclaiming, +10:u06:6.2.2), +10:u08:could,, +18:u12:nfs4err_access, +18:u03:NFS4ERR_ACCESS, +15:u07:maliciously, +10:u05:6.2.2), +10:u07:could,, +18:u11:nfs4err_access, +16:u14:nonetheless,, +18:u02:NFS4ERR_ACCESS, +15:u06:maliciously, +14:u07:reclaiming, +10:u04:6.2.2), +10:u06:could,, +18:u10:nfs4err_access, +16:u13:nonetheless,, +15:u14:maliciously, +18:u01:NFS4ERR_ACCESS, +15:u05:maliciously, +14:u06:reclaiming, +10:u03:6.2.2), +10:u05:could,, +16:u12:nonetheless,, +15:u13:maliciously, +14:u14:reclaiming, +7:u22:Non, +8:u23:None, +18:u00:NFS4ERR_ACCESS, +15:u04:maliciously, +14:u05:reclaiming, +10:u02:6.2.2), +10:u04:could,, +16:u11:nonetheless,, +15:u12:maliciously, +14:u13:reclaiming, +15:u03:maliciously, +14:u04:reclaiming, +10:u01:6.2.2), +10:u03:could,, +16:u10:nonetheless,, +15:u11:maliciously, +14:u12:reclaiming, +15:u02:maliciously, +14:u03:reclaiming, +10:u00:6.2.2), +10:u02:could,, +15:u10:maliciously, +14:u11:reclaiming, +15:u01:maliciously, +14:u02:reclaiming, +10:u01:could,, +14:u10:reclaiming, +15:u00:maliciously, +14:u01:reclaiming, +10:u00:could,, +14:u00:reclaiming, +12:u14:service,, +12:u13:service,, +36:u08:EXCHGID4_FLAG_BIND_PRINC_STATEID, +12:u12:service,, +12:u11:service,, +36:u07:EXCHGID4_FLAG_BIND_PRINC_STATEID, +12:u10:service,, +36:u06:EXCHGID4_FLAG_BIND_PRINC_STATEID, +36:u14:exchgid4_flag_bind_princ_stateid, +36:u05:EXCHGID4_FLAG_BIND_PRINC_STATEID, +36:u13:exchgid4_flag_bind_princ_stateid, +36:u04:EXCHGID4_FLAG_BIND_PRINC_STATEID, +36:u12:exchgid4_flag_bind_princ_stateid, +36:u03:EXCHGID4_FLAG_BIND_PRINC_STATEID, +10:u08:8.4.3., +36:u11:exchgid4_flag_bind_princ_stateid, +36:u02:EXCHGID4_FLAG_BIND_PRINC_STATEID, +36:u10:exchgid4_flag_bind_princ_stateid, +36:u01:EXCHGID4_FLAG_BIND_PRINC_STATEID, +10:u07:8.4.3., +36:u00:EXCHGID4_FLAG_BIND_PRINC_STATEID, +10:u06:8.4.3., +10:u14:8.4.3., +10:u05:8.4.3., +10:u13:8.4.3., +10:u04:8.4.3., +10:u12:8.4.3., +10:u03:8.4.3., +10:u11:8.4.3., +10:u02:8.4.3., +10:u10:8.4.3., +10:u01:8.4.3., +10:u00:8.4.3., +8:u08:175], +8:u07:175], +8:u06:175], +8:u05:175], +8:u04:175], +8:u03:175], +8:u02:175], +13:u08:conflict,, +8:u01:175], +8:u00:175], +13:u07:conflict,, +12:u08:conflict, +13:u06:conflict,, +12:u07:conflict, +13:u14:conflict,, +13:u05:conflict,, +12:u06:conflict, +13:u13:conflict,, +13:u04:conflict,, +12:u05:conflict, +13:u12:conflict,, +13:u03:conflict,, +12:u04:conflict, +13:u11:conflict,, +13:u14:approach,, +13:u02:conflict,, +12:u03:conflict, +13:u10:conflict,, +13:u13:approach,, +13:u01:conflict,, +12:u02:conflict, +13:u12:approach,, +13:u00:conflict,, +12:u01:conflict, +13:u11:approach,, +12:u00:conflict, +13:u10:approach,, +8:u08:Upon, +8:u07:Upon, +8:u06:Upon, +8:u14:upon, +8:u05:Upon, +11:u08:Another, +8:u13:upon, +8:u04:Upon, +8:u12:upon, +7:u22:Upo, +8:u23:Upon, +8:u03:Upon, +11:u07:Another, +8:u11:upon, +8:u02:Upon, +11:u06:Another, +14:u08:partition,, +10:u08:stale., +8:u10:upon, +8:u01:Upon, +11:u05:Another, +10:u07:stale., +8:u00:Upon, +11:u04:Another, +14:u07:partition,, +41:u08:SEQ4_STATUS_EXPIRED_ALL_STATE_REVOKED, +10:u06:stale., +7:u22:Ano, +8:u23:Anot, +11:u03:Another, +14:u06:partition,, +10:u05:stale., +14:u14:partition,, +11:u02:Another, +14:u05:partition,, +41:u07:SEQ4_STATUS_EXPIRED_ALL_STATE_REVOKED, +10:u04:stale., +14:u13:partition,, +11:u01:Another, +14:u04:partition,, +41:u06:SEQ4_STATUS_EXPIRED_ALL_STATE_REVOKED, +20:u08:NFS4ERR_EXPIRED., +10:u03:stale., +14:u12:partition,, +41:u14:seq4_status_expired_all_state_revoked, +8:uI2:;..,, +11:u00:Another, +14:u03:partition,, +41:u05:SEQ4_STATUS_EXPIRED_ALL_STATE_REVOKED, +10:u08:state,, +10:u02:stale., +14:u11:partition,, +41:u13:seq4_status_expired_all_state_revoked, +8:uI1:;..,, +14:u02:partition,, +41:u04:SEQ4_STATUS_EXPIRED_ALL_STATE_REVOKED, +20:u07:NFS4ERR_EXPIRED., +15:u08:invalidated, +10:u01:stale., +14:u10:partition,, +41:u12:seq4_status_expired_all_state_revoked, +8:uI0:;..,, +14:u01:partition,, +41:u03:SEQ4_STATUS_EXPIRED_ALL_STATE_REVOKED, +20:u06:NFS4ERR_EXPIRED., +10:u07:state,, +10:u00:stale., +41:u11:seq4_status_expired_all_state_revoked, +20:u14:nfs4err_expired., +14:u00:partition,, +41:u02:SEQ4_STATUS_EXPIRED_ALL_STATE_REVOKED, +20:u05:NFS4ERR_EXPIRED., +10:u06:state,, +15:u07:invalidated, +41:u10:seq4_status_expired_all_state_revoked, +20:u13:nfs4err_expired., +10:u14:state,, +41:u01:SEQ4_STATUS_EXPIRED_ALL_STATE_REVOKED, +20:u04:NFS4ERR_EXPIRED., +10:u05:state,, +15:u06:invalidated, +20:u12:nfs4err_expired., +10:u13:state,, +15:u14:invalidated, +41:u00:SEQ4_STATUS_EXPIRED_ALL_STATE_REVOKED, +20:u03:NFS4ERR_EXPIRED., +10:u04:state,, +15:u05:invalidated, +20:u11:nfs4err_expired., +10:u12:state,, +15:u13:invalidated, +20:u02:NFS4ERR_EXPIRED., +10:u03:state,, +15:u04:invalidated, +20:u10:nfs4err_expired., +10:u11:state,, +15:u12:invalidated, +20:u01:NFS4ERR_EXPIRED., +10:u02:state,, +15:u03:invalidated, +10:u10:state,, +15:u11:invalidated, +20:u00:NFS4ERR_EXPIRED., +10:u01:state,, +15:u02:invalidated, +15:u10:invalidated, +10:u00:state,, +15:u01:invalidated, +10:u08:heals,, +15:u00:invalidated, +11:u08:partial, +10:u07:heals,, +45:u08:(SEQ4_STATUS_EXPIRED_SOME_STATE_REVOKED)., +10:u06:heals,, +11:u07:partial, +10:u14:heals,, +10:u05:heals,, +11:u06:partial, +45:u07:(SEQ4_STATUS_EXPIRED_SOME_STATE_REVOKED)., +10:u13:heals,, +11:u14:partial, +10:u04:heals,, +11:u05:partial, +45:u06:(SEQ4_STATUS_EXPIRED_SOME_STATE_REVOKED)., +10:u12:heals,, +11:u13:partial, +45:u14:(seq4_status_expired_some_state_revoked)., +8:u23:heal, +10:u03:heals,, +11:u04:partial, +45:u05:(SEQ4_STATUS_EXPIRED_SOME_STATE_REVOKED)., +10:u11:heals,, +11:u12:partial, +45:u13:(seq4_status_expired_some_state_revoked)., +9:uI2:().,,, +10:u02:heals,, +11:u03:partial, +45:u04:(SEQ4_STATUS_EXPIRED_SOME_STATE_REVOKED)., +8:u08:176], +10:u10:heals,, +11:u11:partial, +45:u12:(seq4_status_expired_some_state_revoked)., +9:uI1:().,,, +10:u01:heals,, +11:u02:partial, +45:u03:(SEQ4_STATUS_EXPIRED_SOME_STATE_REVOKED)., +8:u07:176], +11:u10:partial, +45:u11:(seq4_status_expired_some_state_revoked)., +9:uI0:().,,, +10:u00:heals,, +11:u01:partial, +45:u02:(SEQ4_STATUS_EXPIRED_SOME_STATE_REVOKED)., +8:u06:176], +45:u10:(seq4_status_expired_some_state_revoked)., +11:u00:partial, +45:u01:(SEQ4_STATUS_EXPIRED_SOME_STATE_REVOKED)., +8:u05:176], +45:u00:(SEQ4_STATUS_EXPIRED_SOME_STATE_REVOKED)., +8:u04:176], +8:u03:176], +8:u02:176], +8:u01:176], +8:u00:176], +13:u08:stateids., +8:u08:edge, +13:u07:stateids., +13:u06:stateids., +8:u07:edge, +13:u05:stateids., +10:u08:silent, +8:u06:edge, +13:u04:stateids., +10:u07:silent, +8:u14:edge, +8:u05:edge, +13:u03:stateids., +10:u06:silent, +8:u13:edge, +8:u04:edge, +13:u02:stateids., +10:u05:silent, +8:u12:edge, +7:u22:edg, +8:u23:edge, +8:u03:edge, +13:u01:stateids., +10:u04:silent, +8:u11:edge, +8:u02:edge, +13:u00:stateids., +10:u03:silent, +8:u10:edge, +8:u01:edge, +10:u02:silent, +8:u00:edge, +10:u01:silent, +10:u00:silent, +8:uI2:.',., +8:uI1:.',., +8:uI0:.',., +7:u08:A's, +15:u08:protecting,, +7:u07:A's, +7:uI2:.'., +7:u06:A's, +15:u07:protecting,, +7:u14:a's, +7:uI1:.'., +7:u05:A's, +15:u06:protecting,, +7:u13:a's, +15:u14:protecting,, +7:uI0:.'., +7:u04:A's, +15:u05:protecting,, +7:u12:a's, +15:u13:protecting,, +6:u21:A', +7:u22:A's, +7:u23:A's, +7:u03:A's, +15:u04:protecting,, +7:u11:a's, +15:u12:protecting,, +7:u02:A's, +15:u03:protecting,, +7:u10:a's, +15:u11:protecting,, +7:u01:A's, +15:u02:protecting,, +15:u10:protecting,, +7:u00:A's, +15:u01:protecting,, +15:u00:protecting,, +8:u08:177], +8:u07:177], +8:u06:177], +8:u05:177], +8:u04:177], +8:u03:177], +8:u02:177], +8:u01:177], +8:u00:177], +12:u08:restarts, +12:u07:restarts, +12:u06:restarts, +12:u05:restarts, +12:u04:restarts, +12:u03:restarts, +12:u02:restarts, +12:u01:restarts, +12:u00:restarts, +11:u08:Solving, +11:u07:Solving, +11:u08:occurs,, +11:u06:Solving, +11:u14:solving, +11:u05:Solving, +11:u07:occurs,, +11:u13:solving, +11:u04:Solving, +11:u06:occurs,, +11:u08:inverse, +11:u12:solving, +11:u14:occurs,, +7:u22:Sol, +8:u23:Solv, +11:u03:Solving, +11:u05:occurs,, +14:u08:proportion, +11:u11:solving, +11:u13:occurs,, +11:u02:Solving, +11:u04:occurs,, +11:u07:inverse, +14:u07:proportion, +11:u10:solving, +11:u12:occurs,, +10:u14:amount, +11:u01:Solving, +11:u03:occurs,, +11:u06:inverse, +13:u08:acquired,, +14:u06:proportion, +11:u11:occurs,, +10:u13:amount, +11:u14:inverse, +11:u00:Solving, +11:u02:occurs,, +11:u05:inverse, +14:u05:proportion, +12:u08:removing, +11:u10:occurs,, +10:u12:amount, +11:u13:inverse, +7:u22:amo, +8:u23:amou, +11:u01:occurs,, +11:u04:inverse, +13:u07:acquired,, +12:u08:harshest, +14:u04:proportion, +12:u07:removing, +10:u11:amount, +11:u12:inverse, +8:u23:inve, +11:u00:occurs,, +11:u03:inverse, +13:u06:acquired,, +13:u08:reclaims,, +14:u03:proportion, +12:u06:removing, +10:u10:amount, +11:u11:inverse, +13:u14:acquired,, +11:u02:inverse, +13:u05:acquired,, +12:u07:harshest, +14:u02:proportion, +12:u05:removing, +11:u10:inverse, +13:u13:acquired,, +11:u01:inverse, +13:u04:acquired,, +12:u06:harshest, +13:u07:reclaims,, +14:u01:proportion, +12:u04:removing, +13:u12:acquired,, +12:u14:harshest, +7:u22:acq, +8:u23:acqu, +11:u00:inverse, +13:u03:acquired,, +12:u05:harshest, +13:u06:reclaims,, +14:u00:proportion, +12:u03:removing, +13:u11:acquired,, +12:u13:harshest, +13:u14:reclaims,, +13:u02:acquired,, +12:u04:harshest, +13:u05:reclaims,, +12:u02:removing, +13:u10:acquired,, +12:u12:harshest, +13:u13:reclaims,, +8:u23:hars, +13:u01:acquired,, +12:u03:harshest, +13:u04:reclaims,, +12:u01:removing, +12:u11:harshest, +13:u12:reclaims,, +13:u00:acquired,, +12:u02:harshest, +13:u03:reclaims,, +12:u00:removing, +12:u10:harshest, +13:u11:reclaims,, +12:u01:harshest, +13:u02:reclaims,, +18:u08:administrative, +13:u10:reclaims,, +12:u00:harshest, +13:u01:reclaims,, +18:u07:administrative, +13:u00:reclaims,, +18:u06:administrative, +18:u05:administrative, +18:u04:administrative, +18:u03:administrative, +8:u08:178], +18:u02:administrative, +8:u07:178], +18:u01:administrative, +8:u06:178], +18:u00:administrative, +8:u05:178], +12:u08:believes, +8:u04:178], +8:u03:178], +12:u07:believes, +12:u08:suspect., +8:u02:178], +15:u08:terminated,, +12:u06:believes, +8:u01:178], +15:u07:terminated,, +12:u14:believes, +12:u05:believes, +12:u07:suspect., +11:u08:(global, +8:u00:178], +15:u06:terminated,, +12:u13:believes, +12:u04:believes, +12:u06:suspect., +15:u05:terminated,, +12:u12:believes, +12:u14:suspect., +8:u23:beli, +12:u03:believes, +12:u05:suspect., +11:u07:(global, +15:u04:terminated,, +12:u11:believes, +12:u13:suspect., +12:u02:believes, +12:u04:suspect., +11:u06:(global, +15:u03:terminated,, +12:u10:believes, +12:u12:suspect., +11:u14:(global, +7:u22:sus, +8:u23:susp, +12:u01:believes, +12:u03:suspect., +11:u05:(global, +15:u02:terminated,, +12:u11:suspect., +11:u13:(global, +12:u00:believes, +12:u02:suspect., +11:u04:(global, +15:u01:terminated,, +12:u10:suspect., +11:u12:(global, +7:u22:(gl, +8:u23:(glo, +10:uI2:)(..,), +12:u01:suspect., +11:u03:(global, +15:u00:terminated,, +11:u11:(global, +10:uI1:)(..,), +12:u00:suspect., +11:u02:(global, +11:u10:(global, +10:uI0:)(..,), +11:u01:(global, +11:u00:(global, +8:uI2:,,.,, +8:uI1:,,.,, +8:uI0:,,.,, +13:u08:received,, +13:u07:received,, +13:u06:received,, +15:u08:reclaimable, +13:u14:received,, +13:u05:received,, +10:u08:reset,, +13:u13:received,, +13:u04:received,, +15:u07:reclaimable, +10:u08:causes, +13:u12:received,, +13:u03:received,, +15:u06:reclaimable, +10:u07:reset,, +13:u11:received,, +15:u14:reclaimable, +13:u02:received,, +15:u05:reclaimable, +10:u06:reset,, +10:u07:causes, +13:u10:received,, +15:u13:reclaimable, +10:u14:reset,, +13:u01:received,, +15:u04:reclaimable, +10:u05:reset,, +10:u06:causes, +12:u08:reclaims, +15:u12:reclaimable, +10:u13:reset,, +10:u14:causes, +13:u00:received,, +15:u03:reclaimable, +10:u04:reset,, +10:u05:causes, +15:u11:reclaimable, +10:u12:reset,, +10:u13:causes, +15:u02:reclaimable, +10:u03:reset,, +10:u04:causes, +12:u07:reclaims, +16:u08:unforgiving,, +10:u08:Reject, +15:u10:reclaimable, +10:u11:reset,, +10:u12:causes, +15:u01:reclaimable, +10:u02:reset,, +10:u03:causes, +12:u06:reclaims, +10:u07:Reject, +10:u10:reset,, +10:u11:causes, +12:u14:reclaims, +15:u00:reclaimable, +10:u01:reset,, +10:u02:causes, +12:u05:reclaims, +16:u07:unforgiving,, +10:u06:Reject, +10:u10:causes, +12:u13:reclaims, +9:uI2:,-,):, +10:u00:reset,, +10:u01:causes, +12:u04:reclaims, +16:u06:unforgiving,, +10:u05:Reject, +10:u08:Record, +12:u12:reclaims, +16:u14:unforgiving,, +9:uI1:,-,):, +10:u00:causes, +12:u03:reclaims, +16:u05:unforgiving,, +10:u04:Reject, +10:u07:Record, +12:u11:reclaims, +16:u13:unforgiving,, +9:uI0:,-,):, +12:u02:reclaims, +16:u04:unforgiving,, +10:u03:Reject, +10:u06:Record, +12:u10:reclaims, +16:u12:unforgiving,, +7:u22:unf, +8:u23:unfo, +12:u01:reclaims, +16:u03:unforgiving,, +10:u02:Reject, +10:u05:Record, +16:u11:unforgiving,, +12:u00:reclaims, +16:u02:unforgiving,, +10:u01:Reject, +10:u04:Record, +14:u08:knowledge,, +16:u10:unforgiving,, +16:u01:unforgiving,, +10:u00:Reject, +10:u03:Record, +14:u07:knowledge,, +16:u00:unforgiving,, +10:u02:Record, +14:u06:knowledge,, +10:u01:Record, +14:u05:knowledge,, +10:u00:Record, +14:u04:knowledge,, +14:u03:knowledge,, +14:u02:knowledge,, +14:u01:knowledge,, +8:u08:179], +14:u00:knowledge,, +8:u07:179], +8:u06:179], +10:u08:stable, +8:u05:179], +13:u08:affected,, +8:u04:179], +10:u07:stable, +8:u03:179], +10:u06:stable, +13:u07:affected,, +8:u02:179], +11:u08:mandate, +10:u05:stable, +13:u06:affected,, +8:u01:179], +11:u07:mandate, +13:u14:affected,, +10:u04:stable, +13:u05:affected,, +16:u08:environment., +8:u00:179], +11:u06:mandate, +13:u13:affected,, +8:u23:stab, +10:u03:stable, +13:u04:affected,, +11:u05:mandate, +13:u12:affected,, +10:u02:stable, +13:u03:affected,, +16:u07:environment., +11:u04:mandate, +13:u11:affected,, +10:u01:stable, +13:u02:affected,, +16:u06:environment., +11:u03:mandate, +13:u10:affected,, +16:u14:environment., +10:u00:stable, +13:u01:affected,, +16:u05:environment., +11:u02:mandate, +16:u13:environment., +13:u00:affected,, +16:u04:environment., +11:u01:mandate, +16:u12:environment., +16:u03:environment., +11:u00:mandate, +16:u11:environment., +16:u02:environment., +16:u10:environment., +16:u01:environment., +16:u00:environment., +14:u08:delegated), +14:u07:delegated), +14:u06:delegated), +14:u14:delegated), +14:u05:delegated), +14:u13:delegated), +14:u04:delegated), +14:u12:delegated), +10:uI2:()-,.., +14:u03:delegated), +14:u11:delegated), +10:uI1:()-,.., +14:u02:delegated), +14:u10:delegated), +10:uI0:()-,.., +14:u01:delegated), +14:u00:delegated), +8:u08:180], +8:u07:180], +8:u06:180], +10:u08:(field, +8:u05:180], +8:u04:180], +20:u08:sr_status_flags,, +10:u07:(field, +8:u03:180], +20:u07:sr_status_flags,, +10:u06:(field, +8:u02:180], +20:u06:sr_status_flags,, +10:u14:(field, +10:u05:(field, +8:u01:180], +20:u05:sr_status_flags,, +10:u13:(field, +9:uI2:(,..), +10:u04:(field, +8:u00:180], +20:u04:sr_status_flags,, +16:u08:intervention, +10:u12:(field, +8:u23:(fie, +9:uI1:(,..), +10:u03:(field, +20:u03:sr_status_flags,, +16:u07:intervention, +10:u11:(field, +9:uI0:(,..), +10:u02:(field, +20:u02:sr_status_flags,, +16:u06:intervention, +10:u10:(field, +10:u01:(field, +20:u01:sr_status_flags,, +16:u05:intervention, +10:u00:(field, +20:u00:sr_status_flags,, +16:u04:intervention, +10:u14:having, +16:u03:intervention, +10:u13:having, +16:u02:intervention, +10:u12:having, +8:u23:havi, +26:u08:NFS4ERR_DELEG_REVOKED,, +16:u01:intervention, +10:u11:having, +16:u00:intervention, +10:u10:having, +26:u07:NFS4ERR_DELEG_REVOKED,, +12:u08:revoked,, +26:u06:NFS4ERR_DELEG_REVOKED,, +26:u14:nfs4err_deleg_revoked,, +26:u05:NFS4ERR_DELEG_REVOKED,, +12:u07:revoked,, +26:u13:nfs4err_deleg_revoked,, +26:u04:NFS4ERR_DELEG_REVOKED,, +12:u06:revoked,, +26:u12:nfs4err_deleg_revoked,, +12:u14:revoked,, +26:u03:NFS4ERR_DELEG_REVOKED,, +12:u05:revoked,, +26:u11:nfs4err_deleg_revoked,, +12:u13:revoked,, +26:u02:NFS4ERR_DELEG_REVOKED,, +12:u04:revoked,, +13:u08:notified,, +26:u10:nfs4err_deleg_revoked,, +12:u12:revoked,, +26:u01:NFS4ERR_DELEG_REVOKED,, +12:u03:revoked,, +12:u11:revoked,, +26:u00:NFS4ERR_DELEG_REVOKED,, +12:u02:revoked,, +13:u07:notified,, +16:u08:acknowledged, +12:u10:revoked,, +12:u01:revoked,, +13:u06:notified,, +16:u07:acknowledged, +13:u14:notified,, +12:u00:revoked,, +13:u05:notified,, +16:u06:acknowledged, +13:u13:notified,, +13:u04:notified,, +16:u05:acknowledged, +13:u08:tradeoffs, +13:u12:notified,, +13:u03:notified,, +9:u08:(when, +16:u04:acknowledged, +13:u07:tradeoffs, +13:u11:notified,, +13:u02:notified,, +16:u03:acknowledged, +13:u06:tradeoffs, +13:u10:notified,, +13:u01:notified,, +9:u07:(when, +11:u08:gentler, +16:u02:acknowledged, +13:u05:tradeoffs, +13:u00:notified,, +9:u06:(when, +16:u01:acknowledged, +13:u04:tradeoffs, +9:u14:(when, +9:u05:(when, +11:u07:gentler, +16:u00:acknowledged, +13:u03:tradeoffs, +9:u13:(when, +11:u14:renewal, +9:u04:(when, +11:u06:gentler, +13:u02:tradeoffs, +9:u12:(when, +11:u13:renewal, +11:u14:gentler, +9:u03:(when, +11:u05:gentler, +13:u01:tradeoffs, +9:u11:(when, +11:u12:renewal, +11:u13:gentler, +9:u02:(when, +11:u04:gentler, +13:u00:tradeoffs, +9:u10:(when, +11:u11:renewal, +11:u12:gentler, +14:u14:proportion, +8:u23:gent, +9:u01:(when, +11:u03:gentler, +11:u10:renewal, +11:u11:gentler, +14:u13:proportion, +9:u00:(when, +11:u02:gentler, +11:u10:gentler, +14:u12:proportion, +11:u01:gentler, +14:u11:proportion, +11:u00:gentler, +14:u10:proportion, +8:u08:181], +8:u07:181], +8:u06:181], +8:u05:181], +8:u04:181], +8:u03:181], +8:u02:181], +8:u01:181], +8:u00:181], +18:u08:retransmitted., +18:u07:retransmitted., +18:u06:retransmitted., +18:u14:retransmitted., +18:u05:retransmitted., +9:u08:delay, +18:u13:retransmitted., +18:u04:retransmitted., +9:u07:delay, +18:u12:retransmitted., +18:u03:retransmitted., +9:u06:delay, +18:u11:retransmitted., +15:u14:propagation, +18:u02:retransmitted., +9:u05:delay, +6:u08:So, +18:u10:retransmitted., +15:u13:propagation, +18:u01:retransmitted., +9:u04:delay, +6:u07:So, +15:u12:propagation, +18:u00:retransmitted., +9:u03:delay, +6:u06:So, +15:u11:propagation, +16:u08:continuously, +9:u02:delay, +6:u05:So, +15:u10:propagation, +9:u01:delay, +6:u04:So, +12:u08:subtract, +16:u07:continuously, +9:u00:delay, +6:u03:So, +12:u07:subtract, +10:u08:times., +16:u06:continuously, +6:u02:So, +12:u06:subtract, +10:u07:times., +16:u14:continuously, +16:u05:continuously, +6:u01:So, +12:u05:subtract, +10:u06:times., +12:u08:distance, +16:u13:continuously, +16:u04:continuously, +11:u08:account, +6:u00:So, +12:u04:subtract, +10:u05:times., +12:u07:distance, +16:u12:continuously, +16:u03:continuously, +11:u08:factors, +12:u03:subtract, +10:u04:times., +12:u06:distance, +16:u11:continuously, +16:u02:continuously, +11:u07:account, +12:u02:subtract, +10:u03:times., +12:u05:distance, +16:u10:continuously, +16:u01:continuously, +11:u06:account, +11:u07:factors, +12:u01:subtract, +10:u02:times., +12:u04:distance, +11:u14:account, +16:u00:continuously, +11:u05:account, +11:u06:factors, +12:u00:subtract, +10:u01:times., +12:u03:distance, +11:u13:account, +11:u14:factors, +11:u04:account, +11:u05:factors, +10:u00:times., +12:u02:distance, +11:u12:account, +11:u13:factors, +11:u03:account, +11:u04:factors, +12:u01:distance, +11:u11:account, +11:u12:factors, +7:u22:fac, +8:u23:fact, +11:u02:account, +11:u03:factors, +12:u08:another,, +12:u00:distance, +11:u10:account, +11:u11:factors, +11:u01:account, +11:u02:factors, +11:u10:factors, +11:u00:account, +11:u01:factors, +12:u07:another,, +11:u00:factors, +12:u06:another,, +12:u14:another,, +12:u05:another,, +12:u13:another,, +12:u04:another,, +12:u12:another,, +12:u03:another,, +12:u11:another,, +12:u02:another,, +15:u08:SETCLIENTID, +12:u10:another,, +12:u01:another,, +15:u07:SETCLIENTID, +23:u08:SETCLIENTID_CONFIRM, +12:u00:another,, +15:u06:SETCLIENTID, +23:u07:SETCLIENTID_CONFIRM, +15:u05:SETCLIENTID, +23:u06:SETCLIENTID_CONFIRM, +15:u04:SETCLIENTID, +23:u05:SETCLIENTID_CONFIRM, +15:u03:SETCLIENTID, +23:u04:SETCLIENTID_CONFIRM, +8:u08:182], +15:u02:SETCLIENTID, +23:u03:SETCLIENTID_CONFIRM, +8:u07:182], +15:u01:SETCLIENTID, +23:u02:SETCLIENTID_CONFIRM, +8:u06:182], +15:u00:SETCLIENTID, +23:u01:SETCLIENTID_CONFIRM, +8:u05:182], +23:u00:SETCLIENTID_CONFIRM, +8:u04:182], +16:u08:OPEN_CONFIRM, +8:u03:182], +16:u07:OPEN_CONFIRM, +8:u02:182], +16:u06:OPEN_CONFIRM, +21:u08:RELEASE_LOCKOWNER, +8:u01:182], +16:u05:OPEN_CONFIRM, +21:u07:RELEASE_LOCKOWNER, +8:u00:182], +16:u04:OPEN_CONFIRM, +21:u06:RELEASE_LOCKOWNER, +12:u08:renewal,, +16:u03:OPEN_CONFIRM, +21:u05:RELEASE_LOCKOWNER, +9:u08:RENEW, +16:u02:OPEN_CONFIRM, +21:u04:RELEASE_LOCKOWNER, +9:u07:RENEW, +12:u07:renewal,, +16:u01:OPEN_CONFIRM, +21:u03:RELEASE_LOCKOWNER, +9:u06:RENEW, +12:u06:renewal,, +16:u00:OPEN_CONFIRM, +21:u02:RELEASE_LOCKOWNER, +9:u05:RENEW, +12:u14:renewal,, +12:u05:renewal,, +21:u01:RELEASE_LOCKOWNER, +9:u04:RENEW, +12:u13:renewal,, +12:u04:renewal,, +21:u00:RELEASE_LOCKOWNER, +9:u03:RENEW, +12:u08:fashion., +12:u12:renewal,, +12:u03:renewal,, +9:u02:RENEW, +12:u07:fashion., +12:u11:renewal,, +12:u02:renewal,, +9:u01:RENEW, +12:u06:fashion., +12:u10:renewal,, +12:u01:renewal,, +9:u00:RENEW, +12:u05:fashion., +12:u00:renewal,, +12:u04:fashion., +12:u03:fashion., +12:u02:fashion., +12:u01:fashion., +13:u08:vestigial, +12:u00:fashion., +13:u07:vestigial, +21:u08:DESTROY_CLIENTID), +13:u06:vestigial, +13:u05:vestigial, +21:u07:DESTROY_CLIENTID), +13:u04:vestigial, +21:u06:DESTROY_CLIENTID), +13:u03:vestigial, +21:u14:destroy_clientid), +21:u05:DESTROY_CLIENTID), +17:u08:share/unshare, +13:u02:vestigial, +21:u13:destroy_clientid), +21:u04:DESTROY_CLIENTID), +9:u08:Win32, +13:u01:vestigial, +21:u12:destroy_clientid), +21:u03:DESTROY_CLIENTID), +17:u07:share/unshare, +13:u00:vestigial, +12:u08:OpenFile, +21:u11:destroy_clientid), +21:u02:DESTROY_CLIENTID), +17:u06:share/unshare, +9:u07:Win32, +12:u07:OpenFile, +21:u10:destroy_clientid), +17:u14:share/unshare, +21:u01:DESTROY_CLIENTID), +17:u05:share/unshare, +9:u06:Win32, +12:u06:OpenFile, +12:u08:(LOOKUP,, +17:u13:share/unshare, +9:u14:win32, +21:u00:DESTROY_CLIENTID), +17:u04:share/unshare, +9:u05:Win32, +11:u08:looking, +12:u05:OpenFile, +12:u07:(LOOKUP,, +17:u12:share/unshare, +9:u13:win32, +17:u03:share/unshare, +9:u04:Win32, +12:u04:OpenFile, +12:u06:(LOOKUP,, +7:u08:up,, +17:u11:share/unshare, +9:u12:win32, +7:u22:Win, +8:u23:Win3, +17:u02:share/unshare, +9:u03:Win32, +11:u07:looking, +12:u03:OpenFile, +12:u05:(LOOKUP,, +7:u07:up,, +17:u10:share/unshare, +9:u11:win32, +10:uI2:(,,).., +17:u01:share/unshare, +9:u02:Win32, +11:u06:looking, +12:u08:compared, +12:u02:OpenFile, +12:u04:(LOOKUP,, +7:u06:up,, +9:u10:win32, +11:u14:looking, +10:uI1:(,,).., +17:u00:share/unshare, +9:u01:Win32, +11:u05:looking, +12:u01:OpenFile, +12:u03:(LOOKUP,, +7:u05:up,, +11:u13:looking, +10:uI0:(,,).., +9:u00:Win32, +11:u04:looking, +12:u07:compared, +12:u00:OpenFile, +12:u02:(LOOKUP,, +7:u04:up,, +11:u12:looking, +8:u23:look, +11:u03:looking, +12:u06:compared, +15:u08:lightweight, +12:u01:(LOOKUP,, +7:u03:up,, +11:u11:looking, +12:u14:compared, +11:u02:looking, +12:u05:compared, +12:u00:(LOOKUP,, +7:u02:up,, +11:u10:looking, +12:u13:compared, +11:u01:looking, +12:u04:compared, +15:u07:lightweight, +7:u01:up,, +12:u12:compared, +11:u00:looking, +12:u03:compared, +15:u06:lightweight, +7:u00:up,, +12:u11:compared, +15:u14:lightweight, +12:u02:compared, +15:u05:lightweight, +12:u10:compared, +15:u13:lightweight, +12:u01:compared, +15:u04:lightweight, +8:u08:183], +15:u12:lightweight, +7:u22:lig, +8:u23:ligh, +12:u00:compared, +15:u03:lightweight, +8:u07:183], +15:u11:lightweight, +15:u02:lightweight, +8:u06:183], +15:u10:lightweight, +15:u01:lightweight, +8:u05:183], +15:u00:lightweight, +9:u08:lock., +8:u04:183], +10:u08:9.1.1., +8:u03:183], +9:u07:lock., +8:u02:183], +15:u08:State-Owner, +9:u06:lock., +10:u07:9.1.1., +8:u01:183], +15:u07:State-Owner, +11:u08:opening, +9:u14:lock., +9:u05:lock., +10:u06:9.1.1., +8:u00:183], +15:u06:State-Owner, +11:u07:opening, +9:u13:lock., +10:u14:9.1.1., +9:u04:lock., +10:u05:9.1.1., +15:u05:State-Owner, +11:u06:opening, +9:u12:lock., +10:u13:9.1.1., +9:u03:lock., +10:u04:9.1.1., +9:u08:that,, +15:u04:State-Owner, +11:u05:opening, +9:u11:lock., +10:u12:9.1.1., +9:u02:lock., +10:u03:9.1.1., +15:u03:State-Owner, +11:u04:opening, +9:u10:lock., +10:u11:9.1.1., +9:u01:lock., +10:u02:9.1.1., +9:u07:that,, +15:u02:State-Owner, +11:u03:opening, +10:u10:9.1.1., +9:u00:lock., +10:u01:9.1.1., +9:u06:that,, +10:u08:Owners, +15:u01:State-Owner, +11:u02:opening, +9:u14:that,, +10:u00:9.1.1., +9:u05:that,, +15:u00:State-Owner, +11:u01:opening, +9:u13:that,, +9:u04:that,, +10:u07:Owners, +11:u00:opening, +9:u12:that,, +9:u03:that,, +10:u06:Owners, +9:u11:that,, +9:u02:that,, +10:u05:Owners, +16:u08:(represented, +9:u10:that,, +9:u01:that,, +10:u04:Owners, +16:u07:(represented, +6:u21:Ow, +7:u22:Own, +8:u23:Owne, +9:u00:that,, +10:u03:Owners, +16:u06:(represented, +10:u02:Owners, +10:u08:latter, +16:u05:(represented, +16:u14:(represented, +10:u01:Owners, +16:u04:(represented, +16:u13:(represented, +10:u00:Owners, +10:u07:latter, +9:u08:hand,, +16:u03:(represented, +16:u12:(represented, +8:u23:(rep, +10:u06:latter, +16:u02:(represented, +16:u11:(represented, +10:u14:latter, +10:u05:latter, +9:u07:hand,, +10:u08:9.1.2., +16:u01:(represented, +16:u10:(represented, +10:u13:latter, +10:u04:latter, +9:u06:hand,, +16:u00:(represented, +10:u12:latter, +9:u14:hand,, +8:u23:latt, +10:u03:latter, +9:u05:hand,, +10:u07:9.1.2., +10:u11:latter, +9:u13:hand,, +10:u02:latter, +9:u04:hand,, +10:u06:9.1.2., +10:u10:latter, +9:u12:hand,, +10:u14:9.1.2., +10:u01:latter, +9:u03:hand,, +10:u05:9.1.2., +9:u11:hand,, +10:u13:9.1.2., +10:u00:latter, +9:u02:hand,, +10:u04:9.1.2., +9:u10:hand,, +10:u12:9.1.2., +9:u01:hand,, +10:u03:9.1.2., +10:u11:9.1.2., +9:u00:hand,, +10:u02:9.1.2., +10:u10:9.1.2., +10:u01:9.1.2., +10:u00:9.1.2., +13:u08:anonymous, +13:u07:anonymous, +13:u06:anonymous, +13:u14:anonymous, +13:u05:anonymous, +15:u08:(previously, +13:u13:anonymous, +13:u04:anonymous, +13:u12:anonymous, +8:u23:anon, +13:u03:anonymous, +15:u07:(previously, +13:u11:anonymous, +13:u02:anonymous, +15:u06:(previously, +13:u10:anonymous, +15:u14:(previously, +13:u01:anonymous, +15:u05:(previously, +15:u13:(previously, +13:u00:anonymous, +15:u04:(previously, +15:u12:(previously, +8:u23:(pre, +15:u03:(previously, +13:u08:general.), +8:u08:(See, +15:u11:(previously, +15:u02:(previously, +8:u07:(See, +15:u10:(previously, +15:u01:(previously, +13:u07:general.), +8:u06:(See, +10:uI2:(""""), +15:u00:(previously, +13:u06:general.), +8:u05:(See, +13:u14:general.), +10:uI1:(""""), +10:uI2:.(..'', +13:u05:general.), +8:u04:(See, +8:u08:184], +13:u13:general.), +10:uI0:(""""), +10:uI1:.(..'', +13:u04:general.), +8:u03:(See, +8:u07:184], +13:u12:general.), +10:uI0:.(..'', +13:u03:general.), +8:u02:(See, +8:u06:184], +13:u11:general.), +13:u02:general.), +8:u01:(See, +8:u05:184], +13:u10:general.), +13:u01:general.), +8:u00:(See, +8:u04:184], +13:u00:general.), +8:u03:184], +8:u02:184], +8:u01:184], +16:u08:reservations, +9:u14:share, +8:u00:184], +16:u07:reservations, +9:u13:share, +16:u06:reservations, +9:u12:share, +16:u05:reservations, +9:u11:share, +10:u14:nature, +16:u04:reservations, +9:u10:share, +10:u13:nature, +8:u23:Shar, +16:u03:reservations, +10:u12:nature, +16:u02:reservations, +10:u11:nature, +16:u01:reservations, +10:u10:nature, +14:u08:possible)., +16:u00:reservations, +9:u14:basis, +12:u08:granting, +9:u13:basis, +14:u07:possible)., +11:u08:WRITEs., +9:u12:basis, +14:u06:possible)., +12:u07:granting, +13:u08:Mandatory, +9:u11:basis, +14:u14:possible)., +14:u05:possible)., +12:u06:granting, +11:u07:WRITEs., +19:u08:NFS4ERR_LOCKED., +13:u07:Mandatory, +9:u10:basis, +14:u13:possible)., +12:u14:granting, +8:uI2:).-,, +14:u04:possible)., +12:u05:granting, +11:u06:WRITEs., +13:u06:Mandatory, +14:u12:possible)., +12:u13:granting, +11:u14:writes., +8:uI1:).-,, +14:u03:possible)., +12:u04:granting, +11:u05:WRITEs., +19:u07:NFS4ERR_LOCKED., +13:u05:Mandatory, +14:u11:possible)., +12:u12:granting, +11:u13:writes., +8:uI0:).-,, +9:uI2:.-,,/, +14:u02:possible)., +12:u03:granting, +11:u04:WRITEs., +19:u06:NFS4ERR_LOCKED., +13:u04:Mandatory, +14:u10:possible)., +12:u11:granting, +11:u12:writes., +19:u14:nfs4err_locked., +9:uI1:.-,,/, +14:u01:possible)., +12:u02:granting, +11:u03:WRITEs., +19:u05:NFS4ERR_LOCKED., +12:u08:locktype, +13:u03:Mandatory, +12:u10:granting, +11:u11:writes., +19:u13:nfs4err_locked., +9:uI0:.-,,/, +14:u00:possible)., +12:u01:granting, +11:u02:WRITEs., +19:u04:NFS4ERR_LOCKED., +13:u02:Mandatory, +11:u10:writes., +19:u12:nfs4err_locked., +12:u00:granting, +11:u01:WRITEs., +19:u03:NFS4ERR_LOCKED., +12:u07:locktype, +13:u01:Mandatory, +19:u11:nfs4err_locked., +11:u00:WRITEs., +19:u02:NFS4ERR_LOCKED., +12:u06:locktype, +12:u08:locking,, +13:u00:Mandatory, +19:u10:nfs4err_locked., +12:u14:locktype, +19:u01:NFS4ERR_LOCKED., +12:u05:locktype, +11:u08:subtle., +12:u13:locktype, +10:uI2:'(..,*, +19:u00:NFS4ERR_LOCKED., +12:u04:locktype, +12:u07:locking,, +12:u12:locktype, +10:uI1:'(..,*, +8:uI2:,*)., +12:u03:locktype, +12:u06:locking,, +11:u07:subtle., +12:u11:locktype, +12:u14:locking,, +10:uI0:'(..,*, +8:uI1:,*)., +12:u02:locktype, +12:u05:locking,, +11:u06:subtle., +12:u10:locktype, +12:u13:locking,, +11:u14:subtle., +8:uI0:,*)., +12:u01:locktype, +12:u04:locking,, +11:u05:subtle., +12:u12:locking,, +11:u13:subtle., +12:u00:locktype, +12:u03:locking,, +11:u04:subtle., +14:u08:(WRITE_LT), +12:u11:locking,, +11:u12:subtle., +12:u02:locking,, +11:u03:subtle., +10:u08:checks, +14:u07:(WRITE_LT), +12:u10:locking,, +11:u11:subtle., +12:u01:locking,, +11:u02:subtle., +14:u06:(WRITE_LT), +11:u10:subtle., +12:u00:locking,, +11:u01:subtle., +10:u07:checks, +14:u05:(WRITE_LT), +7:u22:see, +7:u23:see, +11:u00:subtle., +10:u06:checks, +14:u04:(WRITE_LT), +10:u14:checks, +10:u05:checks, +14:u03:(WRITE_LT), +10:u13:checks, +14:u14:attempting, +10:u04:checks, +14:u02:(WRITE_LT), +10:u12:checks, +14:u13:attempting, +7:u22:che, +8:u23:chec, +10:u03:checks, +14:u01:(WRITE_LT), +11:u08:Windows, +10:u11:checks, +14:u12:attempting, +10:u02:checks, +14:u00:(WRITE_LT), +11:u07:Windows, +10:u10:checks, +14:u11:attempting, +10:u01:checks, +12:u08:advisory, +11:u06:Windows, +14:u10:attempting, +10:u00:checks, +11:u05:Windows, +12:u07:advisory, +16:u08:distinction., +11:u04:Windows, +12:u06:advisory, +11:u03:Windows, +12:u14:advisory, +12:u05:advisory, +16:u07:distinction., +11:u02:Windows, +12:u13:advisory, +7:uI2:-.', +12:u04:advisory, +16:u06:distinction., +11:u01:Windows, +12:u12:advisory, +16:u14:distinction., +8:u23:advi, +7:uI1:-.', +12:u03:advisory, +16:u05:distinction., +11:u00:Windows, +12:u11:advisory, +16:u13:distinction., +7:uI0:-.', +12:u02:advisory, +16:u04:distinction., +12:u10:advisory, +16:u12:distinction., +12:u01:advisory, +16:u03:distinction., +8:u08:185], +16:u11:distinction., +12:u00:advisory, +16:u02:distinction., +8:u07:185], +16:u10:distinction., +16:u01:distinction., +8:u06:185], +16:u00:distinction., +8:u05:185], +29:u08:OPEN4_SHARE_ACCESS_BOTH)., +8:u04:185], +8:u03:185], +29:u07:OPEN4_SHARE_ACCESS_BOTH)., +8:u02:185], +29:u06:OPEN4_SHARE_ACCESS_BOTH)., +8:u01:185], +29:u14:open4_share_access_both)., +10:uI2:(..,,,, +29:u05:OPEN4_SHARE_ACCESS_BOTH)., +8:u00:185], +29:u13:open4_share_access_both)., +10:uI1:(..,,,, +29:u04:OPEN4_SHARE_ACCESS_BOTH)., +19:u08:open-owner/file, +29:u12:open4_share_access_both)., +10:uI0:(..,,,, +29:u03:OPEN4_SHARE_ACCESS_BOTH)., +19:u07:open-owner/file, +29:u11:open4_share_access_both)., +29:u02:OPEN4_SHARE_ACCESS_BOTH)., +19:u06:open-owner/file, +29:u10:open4_share_access_both)., +29:u01:OPEN4_SHARE_ACCESS_BOTH)., +19:u05:open-owner/file, +29:u00:OPEN4_SHARE_ACCESS_BOTH)., +15:u08:delegation., +19:u04:open-owner/file, +19:u03:open-owner/file, +15:u07:delegation., +19:u02:open-owner/file, +15:u06:delegation., +19:u01:open-owner/file, +15:u14:delegation., +15:u05:delegation., +19:u00:open-owner/file, +15:u13:delegation., +15:u04:delegation., +15:u12:delegation., +8:uI2:,,(), +15:u03:delegation., +15:u11:delegation., +8:uI1:,,(), +15:u02:delegation., +10:u08:size),, +15:u10:delegation., +8:uI0:,,(), +15:u01:delegation., +10:u07:size),, +15:u00:delegation., +10:u06:size),, +29:u08:OPEN4_SHARE_ACCESS_WRITE,, +10:u05:size),, +9:u08:mode,, +10:u04:size),, +9:u07:mode,, +29:u07:OPEN4_SHARE_ACCESS_WRITE,, +17:u08:constraints)., +10:u03:size),, +9:u06:mode,, +29:u06:OPEN4_SHARE_ACCESS_WRITE,, +18:u08:circumstances,, +10:u02:size),, +9:u05:mode,, +29:u14:open4_share_access_write,, +29:u05:OPEN4_SHARE_ACCESS_WRITE,, +17:u07:constraints)., +10:u01:size),, +9:u04:mode,, +29:u13:open4_share_access_write,, +29:u04:OPEN4_SHARE_ACCESS_WRITE,, +17:u06:constraints)., +18:u07:circumstances,, +27:u08:OPEN4_SHARE_DENY_BOTH)., +10:u00:size),, +9:u03:mode,, +29:u12:open4_share_access_write,, +17:u14:constraints)., +29:u03:OPEN4_SHARE_ACCESS_WRITE,, +17:u05:constraints)., +18:u06:circumstances,, +9:u02:mode,, +29:u11:open4_share_access_write,, +17:u13:constraints)., +18:u14:circumstances,, +29:u02:OPEN4_SHARE_ACCESS_WRITE,, +17:u04:constraints)., +18:u05:circumstances,, +27:u07:OPEN4_SHARE_DENY_BOTH)., +9:u01:mode,, +29:u10:open4_share_access_write,, +17:u12:constraints)., +18:u13:circumstances,, +29:u01:OPEN4_SHARE_ACCESS_WRITE,, +17:u03:constraints)., +18:u04:circumstances,, +27:u06:OPEN4_SHARE_DENY_BOTH)., +9:u00:mode,, +17:u11:constraints)., +18:u12:circumstances,, +27:u14:open4_share_deny_both)., +6:u21:ci, +7:u22:cir, +8:u23:circ, +29:u00:OPEN4_SHARE_ACCESS_WRITE,, +17:u02:constraints)., +18:u03:circumstances,, +27:u05:OPEN4_SHARE_DENY_BOTH)., +17:u10:constraints)., +18:u11:circumstances,, +27:u13:open4_share_deny_both)., +17:u01:constraints)., +18:u02:circumstances,, +27:u04:OPEN4_SHARE_DENY_BOTH)., +18:u10:circumstances,, +27:u12:open4_share_deny_both)., +17:u00:constraints)., +18:u01:circumstances,, +27:u03:OPEN4_SHARE_DENY_BOTH)., +27:u11:open4_share_deny_both)., +18:u00:circumstances,, +27:u02:OPEN4_SHARE_DENY_BOTH)., +8:u08:one), +27:u10:open4_share_deny_both)., +15:u14:reservation, +27:u01:OPEN4_SHARE_DENY_BOTH)., +8:u07:one), +15:u13:reservation, +27:u00:OPEN4_SHARE_DENY_BOTH)., +8:u06:one), +15:u12:reservation, +9:uI2:("""", +8:u05:one), +15:u11:reservation, +9:uI1:("""", +8:u04:one), +15:u10:reservation, +9:uI0:("""", +8:u03:one), +8:u02:one), +8:u01:one), +8:u00:one), +8:u08:186], +8:u07:186], +8:u06:186], +8:u05:186], +8:u04:186], +8:u03:186], +8:u02:186], +8:u01:186], +8:u00:186], +11:u08:writing, +11:u07:writing, +11:u06:writing, +23:u08:OPEN_DELEGATE_WRITE, +11:u05:writing, +22:u08:OPEN_DELEGATE_READ, +11:u04:writing, +23:u07:OPEN_DELEGATE_WRITE, +11:u03:writing, +23:u06:OPEN_DELEGATE_WRITE, +22:u07:OPEN_DELEGATE_READ, +23:u14:open_delegate_write, +9:uI2:/,..,, +11:u02:writing, +23:u05:OPEN_DELEGATE_WRITE, +22:u06:OPEN_DELEGATE_READ, +23:u13:open_delegate_write, +22:u14:open_delegate_read, +9:uI1:/,..,, +11:u01:writing, +23:u04:OPEN_DELEGATE_WRITE, +22:u05:OPEN_DELEGATE_READ, +23:u12:open_delegate_write, +22:u13:open_delegate_read, +9:uI0:/,..,, +11:u00:writing, +23:u03:OPEN_DELEGATE_WRITE, +22:u04:OPEN_DELEGATE_READ, +23:u11:open_delegate_write, +22:u12:open_delegate_read, +23:u02:OPEN_DELEGATE_WRITE, +22:u03:OPEN_DELEGATE_READ, +23:u10:open_delegate_write, +22:u11:open_delegate_read, +23:u01:OPEN_DELEGATE_WRITE, +22:u02:OPEN_DELEGATE_READ, +22:u10:open_delegate_read, +23:u00:OPEN_DELEGATE_WRITE, +22:u01:OPEN_DELEGATE_READ, +22:u00:OPEN_DELEGATE_READ, +12:u14:conflict, +12:u13:conflict, +12:u12:conflict, +12:u11:conflict, +12:u10:conflict, +12:u08:uncommon, +7:uI2:,,-, +7:uI1:,,-, +10:uI2:,-----, +12:u07:uncommon, +7:uI0:,,-, +10:uI1:,-----, +12:u06:uncommon, +12:u14:uncommon, +10:uI0:,-----, +12:u05:uncommon, +12:u13:uncommon, +12:u04:uncommon, +12:u12:uncommon, +8:u23:unco, +12:u03:uncommon, +12:u11:uncommon, +12:u02:uncommon, +12:u10:uncommon, +12:u01:uncommon, +12:u00:uncommon, +10:u08:ranges, +10:u07:ranges, +10:u06:ranges, +10:u14:ranges, +10:u05:ranges, +10:u13:ranges, +10:u04:ranges, +10:u12:ranges, +10:u03:ranges, +10:u11:ranges, +10:u02:ranges, +8:u08:187], +10:u10:ranges, +10:u01:ranges, +8:u07:187], +10:u00:ranges, +8:u06:187], +17:u08:optimizations, +8:u05:187], +8:u04:187], +17:u07:optimizations, +8:u03:187], +17:u06:optimizations, +8:u02:187], +17:u14:optimizations, +17:u05:optimizations, +8:u01:187], +17:u13:optimizations, +17:u04:optimizations, +10:u08:atomic, +8:u00:187], +17:u12:optimizations, +17:u03:optimizations, +17:u11:optimizations, +17:u02:optimizations, +10:u07:atomic, +17:u10:optimizations, +17:u01:optimizations, +10:u06:atomic, +25:u08:NFS4ERR_LOCK_NOTSUPP., +14:u08:downgrade,, +10:u14:atomic, +17:u00:optimizations, +10:u05:atomic, +14:u07:downgrade,, +10:u13:atomic, +10:u04:atomic, +25:u07:NFS4ERR_LOCK_NOTSUPP., +16:u08:application., +14:u06:downgrade,, +8:u08:and,, +10:u12:atomic, +10:u03:atomic, +25:u06:NFS4ERR_LOCK_NOTSUPP., +14:u05:downgrade,, +8:u07:and,, +10:u11:atomic, +25:u14:nfs4err_lock_notsupp., +10:u02:atomic, +25:u05:NFS4ERR_LOCK_NOTSUPP., +16:u07:application., +14:u04:downgrade,, +8:u06:and,, +10:u10:atomic, +25:u13:nfs4err_lock_notsupp., +10:u01:atomic, +25:u04:NFS4ERR_LOCK_NOTSUPP., +16:u06:application., +14:u03:downgrade,, +8:u05:and,, +25:u12:nfs4err_lock_notsupp., +16:u14:application., +10:u00:atomic, +25:u03:NFS4ERR_LOCK_NOTSUPP., +16:u05:application., +14:u02:downgrade,, +8:u04:and,, +25:u11:nfs4err_lock_notsupp., +16:u13:application., +25:u02:NFS4ERR_LOCK_NOTSUPP., +16:u04:application., +14:u01:downgrade,, +8:u03:and,, +25:u10:nfs4err_lock_notsupp., +16:u12:application., +25:u01:NFS4ERR_LOCK_NOTSUPP., +16:u03:application., +14:u00:downgrade,, +8:u02:and,, +16:u11:application., +25:u00:NFS4ERR_LOCK_NOTSUPP., +16:u02:application., +18:u08:NFS4ERR_DENIED, +8:u01:and,, +12:u08:succeed., +16:u10:application., +16:u01:application., +8:u00:and,, +12:u07:succeed., +16:u00:application., +18:u07:NFS4ERR_DENIED, +13:u08:WRITEW_LT, +12:u06:succeed., +18:u06:NFS4ERR_DENIED, +12:u05:succeed., +18:u14:nfs4err_denied, +18:u05:NFS4ERR_DENIED, +13:u07:WRITEW_LT, +12:u04:succeed., +18:u13:nfs4err_denied, +18:u04:NFS4ERR_DENIED, +13:u06:WRITEW_LT, +12:u03:succeed., +18:u12:nfs4err_denied, +13:u14:writew_lt, +18:u03:NFS4ERR_DENIED, +13:u05:WRITEW_LT, +12:u02:succeed., +18:u11:nfs4err_denied, +13:u13:writew_lt, +18:u02:NFS4ERR_DENIED, +13:u04:WRITEW_LT, +12:u01:succeed., +18:u10:nfs4err_denied, +13:u12:writew_lt, +18:u01:NFS4ERR_DENIED, +13:u03:WRITEW_LT, +12:u00:succeed., +13:u11:writew_lt, +18:u00:NFS4ERR_DENIED, +13:u02:WRITEW_LT, +13:u10:writew_lt, +13:u01:WRITEW_LT, +13:u08:increment, +14:u08:occurrence, +13:u00:WRITEW_LT, +14:u07:occurrence, +10:uI2:""',"", +13:u07:increment, +14:u06:occurrence, +10:uI1:""',"", +13:u06:increment, +14:u05:occurrence, +13:u14:increment, +10:uI0:""',"", +13:u05:increment, +10:u08:locked, +14:u04:occurrence, +13:u13:increment, +13:u04:increment, +14:u03:occurrence, +13:u12:increment, +13:u03:increment, +10:u07:locked, +14:u02:occurrence, +13:u11:increment, +13:u02:increment, +10:u06:locked, +14:u01:occurrence, +13:u10:increment, +10:u14:locked, +13:u01:increment, +10:u05:locked, +14:u00:occurrence, +10:u13:locked, +13:u00:increment, +10:u04:locked, +10:u12:locked, +10:u03:locked, +10:u11:locked, +10:u02:locked, +10:u10:locked, +10:u01:locked, +15:u08:open-owner., +10:u00:locked, +15:u07:open-owner., +15:u06:open-owner., +15:u05:open-owner., +15:u04:open-owner., +8:u08:188], +15:u03:open-owner., +8:u07:188], +15:u02:open-owner., +8:u06:188], +15:u01:open-owner., +8:u05:188], +15:u00:open-owner., +8:u04:188], +8:u03:188], +8:u02:188], +13:u14:stateids,, +8:u01:188], +13:u13:stateids,, +8:u00:188], +13:u12:stateids,, +13:u11:stateids,, +15:u14:open-owner., +11:u08:holding, +13:u10:stateids,, +15:u13:open-owner., +11:u07:holding, +15:u12:open-owner., +11:u06:holding, +15:u11:open-owner., +11:u05:holding, +15:u10:open-owner., +11:u04:holding, +8:u08:byte, +11:u03:holding, +11:u02:holding, +8:u07:byte, +11:u01:holding, +8:u06:byte, +11:u00:holding, +8:u14:byte, +8:u05:byte, +8:u13:byte, +8:u04:byte, +8:u12:byte, +8:u03:byte, +8:u11:byte, +8:u02:byte, +8:u10:byte, +8:u01:byte, +8:u00:byte, +10:uI2:-,..,-, +14:u08:available,, +10:uI1:-,..,-, +10:uI0:-,..,-, +14:u07:available,, +13:u08:presence., +14:u06:available,, +12:u08:READW_LT, +13:u07:presence., +14:u14:available,, +14:u05:available,, +13:u06:presence., +14:u13:available,, +14:u04:available,, +12:u07:READW_LT, +13:u05:presence., +14:u12:available,, +14:u03:available,, +12:u06:READW_LT, +13:u04:presence., +14:u11:available,, +12:u14:readw_lt, +14:u02:available,, +12:u05:READW_LT, +13:u03:presence., +14:u10:available,, +12:u13:readw_lt, +14:u01:available,, +12:u04:READW_LT, +14:u08:re-request, +13:u02:presence., +12:u12:readw_lt, +14:u00:available,, +12:u03:READW_LT, +13:u01:presence., +12:u11:readw_lt, +12:u02:READW_LT, +14:u07:re-request, +8:u08:poll, +13:u00:presence., +12:u10:readw_lt, +12:u01:READW_LT, +14:u06:re-request, +14:u14:re-request, +12:u00:READW_LT, +14:u05:re-request, +8:u07:poll, +14:u13:re-request, +14:u04:re-request, +8:u06:poll, +14:u12:re-request, +8:u14:poll, +8:u23:re-r, +14:u03:re-request, +8:u05:poll, +13:u08:recovery,, +14:u11:re-request, +8:u13:poll, +14:u02:re-request, +8:u04:poll, +14:u10:re-request, +8:u12:poll, +8:u23:poll, +14:u01:re-request, +8:u03:poll, +13:u07:recovery,, +8:u11:poll, +14:u00:re-request, +8:u02:poll, +13:u06:recovery,, +8:u10:poll, +13:u14:recovery,, +8:u01:poll, +13:u05:recovery,, +13:u08:released,, +13:u13:recovery,, +8:u00:poll, +13:u04:recovery,, +12:u08:allowing, +13:u12:recovery,, +13:u03:recovery,, +13:u07:released,, +12:u07:allowing, +13:u11:recovery,, +13:u02:recovery,, +13:u06:released,, +12:u06:allowing, +13:u10:recovery,, +13:u14:released,, +13:u01:recovery,, +13:u05:released,, +12:u05:allowing, +13:u13:released,, +13:u00:recovery,, +13:u04:released,, +12:u04:allowing, +8:u08:189], +13:u12:released,, +8:u23:rele, +13:u03:released,, +12:u03:allowing, +8:u07:189], +13:u11:released,, +13:u02:released,, +12:u02:allowing, +8:u06:189], +13:u10:released,, +13:u01:released,, +12:u01:allowing, +8:u05:189], +13:u00:released,, +12:u00:allowing, +8:u04:189], +8:u03:189], +15:u08:retransmits, +8:u02:189], +15:u07:retransmits, +11:u08:denied,, +8:u01:189], +15:u06:retransmits, +11:u08:pending, +8:u00:189], +15:u05:retransmits, +11:u07:denied,, +15:u04:retransmits, +12:u08:blocking, +9:u14:later, +11:u06:denied,, +11:u07:pending, +10:u08:intend, +15:u03:retransmits, +12:u07:blocking, +9:u13:later, +11:u14:denied,, +11:u05:denied,, +11:u06:pending, +14:u08:requesting, +15:u02:retransmits, +12:u06:blocking, +9:u12:later, +11:u13:denied,, +11:u14:pending, +11:u04:denied,, +11:u05:pending, +10:u07:intend, +15:u01:retransmits, +12:u05:blocking, +9:u11:later, +11:u12:denied,, +11:u13:pending, +11:u03:denied,, +11:u04:pending, +10:u06:intend, +14:u07:requesting, +15:u00:retransmits, +12:u04:blocking, +9:u10:later, +11:u11:denied,, +11:u12:pending, +10:u14:intend, +7:u22:pen, +8:u23:pend, +11:u02:denied,, +11:u03:pending, +10:u05:intend, +14:u06:requesting, +12:u03:blocking, +11:u10:denied,, +11:u11:pending, +10:u13:intend, +14:u14:requesting, +11:u01:denied,, +11:u02:pending, +10:u04:intend, +14:u05:requesting, +12:u02:blocking, +11:u10:pending, +10:u12:intend, +14:u13:requesting, +11:u00:denied,, +11:u01:pending, +10:u03:intend, +14:u04:requesting, +12:u01:blocking, +10:u11:intend, +14:u12:requesting, +11:u00:pending, +10:u02:intend, +14:u03:requesting, +12:u00:blocking, +10:u10:intend, +14:u11:requesting, +10:u01:intend, +14:u02:requesting, +14:u10:requesting, +10:u00:intend, +14:u01:requesting, +18:u08:CB_NOTIFY_LOCK, +14:u00:requesting, +9:u08:hint,, +18:u07:CB_NOTIFY_LOCK, +18:u06:CB_NOTIFY_LOCK, +9:u07:hint,, +18:u05:CB_NOTIFY_LOCK, +9:u06:hint,, +14:u08:eliminated, +18:u04:CB_NOTIFY_LOCK, +9:u14:hint,, +9:u05:hint,, +18:u03:CB_NOTIFY_LOCK, +9:u13:hint,, +9:u04:hint,, +14:u07:eliminated, +18:u02:CB_NOTIFY_LOCK, +9:u12:hint,, +7:u22:hin, +8:u23:hint, +9:u03:hint,, +14:u06:eliminated, +18:u01:CB_NOTIFY_LOCK, +9:u11:hint,, +14:u14:eliminated, +9:u02:hint,, +14:u05:eliminated, +18:u00:CB_NOTIFY_LOCK, +9:u10:hint,, +14:u13:eliminated, +9:u01:hint,, +14:u04:eliminated, +14:u12:eliminated, +9:u00:hint,, +14:u03:eliminated, +14:u11:eliminated, +14:u02:eliminated, +14:u10:eliminated, +14:u01:eliminated, +14:u00:eliminated, +14:u08:specifying, +14:u07:specifying, +26:u08:OPEN4_SHARE_DENY_READ,, +14:u06:specifying, +27:u08:OPEN4_SHARE_DENY_WRITE,, +14:u05:specifying, +26:u07:OPEN4_SHARE_DENY_READ,, +17:u08:application's, +27:u07:OPEN4_SHARE_DENY_WRITE,, +8:uI2:(,,), +14:u04:specifying, +26:u06:OPEN4_SHARE_DENY_READ,, +15:u08:Pseudo-code, +27:u06:OPEN4_SHARE_DENY_WRITE,, +26:u14:open4_share_deny_read,, +8:uI1:(,,), +14:u03:specifying, +26:u05:OPEN4_SHARE_DENY_READ,, +17:u07:application's, +27:u05:OPEN4_SHARE_DENY_WRITE,, +14:u08:definition, +26:u13:open4_share_deny_read,, +8:uI0:(,,), +14:u02:specifying, +26:u04:OPEN4_SHARE_DENY_READ,, +17:u06:application's, +15:u07:Pseudo-code, +27:u04:OPEN4_SHARE_DENY_WRITE,, +14:u07:definition, +26:u12:open4_share_deny_read,, +17:u14:application's, +14:u01:specifying, +26:u03:OPEN4_SHARE_DENY_READ,, +17:u05:application's, +15:u06:Pseudo-code, +27:u03:OPEN4_SHARE_DENY_WRITE,, +14:u06:definition, +26:u11:open4_share_deny_read,, +17:u13:application's, +15:u14:pseudo-code, +14:u00:specifying, +26:u02:OPEN4_SHARE_DENY_READ,, +17:u04:application's, +15:u05:Pseudo-code, +27:u02:OPEN4_SHARE_DENY_WRITE,, +14:u05:definition, +8:u08:190], +26:u10:open4_share_deny_read,, +17:u12:application's, +15:u13:pseudo-code, +26:u01:OPEN4_SHARE_DENY_READ,, +17:u03:application's, +15:u04:Pseudo-code, +27:u01:OPEN4_SHARE_DENY_WRITE,, +14:u04:definition, +8:u07:190], +17:u11:application's, +15:u12:pseudo-code, +6:u21:Ps, +7:u22:Pse, +8:u23:Pseu, +26:u00:OPEN4_SHARE_DENY_READ,, +17:u02:application's, +15:u03:Pseudo-code, +27:u00:OPEN4_SHARE_DENY_WRITE,, +14:u03:definition, +8:u06:190], +17:u10:application's, +15:u11:pseudo-code, +17:u01:application's, +15:u02:Pseudo-code, +14:u02:definition, +8:u05:190], +15:u10:pseudo-code, +17:u00:application's, +15:u01:Pseudo-code, +14:u01:definition, +8:u04:190], +19:u08:(request.access, +15:u00:Pseudo-code, +5:u08:}, +14:u00:definition, +8:u03:190], +19:u07:(request.access, +19:u08:(NFS4ERR_INVAL), +8:u02:190], +19:u06:(request.access, +19:u07:(NFS4ERR_INVAL), +8:u08:else, +5:u07:}, +17:u08:(request.deny, +8:u01:190], +19:u05:(request.access, +19:u06:(NFS4ERR_INVAL), +8:u07:else, +20:u08:((request.access, +5:u06:}, +8:u00:190], +19:u04:(request.access, +19:u05:(NFS4ERR_INVAL), +8:u06:else, +20:u07:((request.access, +5:u14:}, +5:u05:}, +17:u07:(request.deny, +19:u03:(request.access, +19:u04:(NFS4ERR_INVAL), +8:u05:else, +20:u06:((request.access, +26:u08:(NFS4ERR_SHARE_DENIED), +5:u13:}, +5:u04:}, +17:u06:(request.deny, +19:u02:(request.access, +19:u03:(NFS4ERR_INVAL), +8:u04:else, +20:u05:((request.access, +26:u07:(NFS4ERR_SHARE_DENIED), +5:u12:}, +17:u14:(request.deny, +5:u21:}, +5:u22:}, +5:u23:}, +10:uI2:((..)), +5:u03:}, +17:u05:(request.deny, +19:u01:(request.access, +19:u02:(NFS4ERR_INVAL), +8:u03:else, +20:u04:((request.access, +26:u06:(NFS4ERR_SHARE_DENIED), +17:u08:(NFS4ERR_OK);, +5:u11:}, +17:u13:(request.deny, +10:uI1:((..)), +9:uI2:(..)), +5:u02:}, +17:u04:(request.deny, +14:u08:file_state, +19:u00:(request.access, +19:u01:(NFS4ERR_INVAL), +8:u02:else, +20:u03:((request.access, +26:u05:(NFS4ERR_SHARE_DENIED), +17:u07:(NFS4ERR_OK);, +5:u10:}, +17:u12:(request.deny, +8:u23:(req, +10:uI0:((..)), +9:uI1:(..)), +5:u01:}, +17:u03:(request.deny, +19:u00:(NFS4ERR_INVAL), +8:u01:else, +20:u02:((request.access, +26:u04:(NFS4ERR_SHARE_DENIED), +17:u06:(NFS4ERR_OK);, +17:u11:(request.deny, +9:uI0:(..)), +5:u00:}, +17:u02:(request.deny, +14:u07:file_state, +8:u00:else, +20:u01:((request.access, +26:u03:(NFS4ERR_SHARE_DENIED), +17:u05:(NFS4ERR_OK);, +17:u10:(request.deny, +17:u01:(request.deny, +14:u06:file_state, +20:u00:((request.access, +26:u02:(NFS4ERR_SHARE_DENIED), +17:u04:(NFS4ERR_OK);, +14:u14:file_state, +17:u00:(request.deny, +14:u05:file_state, +26:u01:(NFS4ERR_SHARE_DENIED), +17:u03:(NFS4ERR_OK);, +14:u13:file_state, +14:u04:file_state, +26:u00:(NFS4ERR_SHARE_DENIED), +17:u02:(NFS4ERR_OK);, +14:u12:file_state, +14:u03:file_state, +17:u01:(NFS4ERR_OK);, +14:u11:file_state, +14:u02:file_state, +17:u00:(NFS4ERR_OK);, +14:u10:file_state, +14:u01:file_state, +28:u08:OPEN4_SHARE_ACCESS_WRITE, +14:u00:file_state, +28:u07:OPEN4_SHARE_ACCESS_WRITE, +27:u08:OPEN4_SHARE_ACCESS_BOTH, +28:u06:OPEN4_SHARE_ACCESS_WRITE, +27:u07:OPEN4_SHARE_ACCESS_BOTH, +28:u05:OPEN4_SHARE_ACCESS_WRITE, +27:u06:OPEN4_SHARE_ACCESS_BOTH, +25:u08:OPEN4_SHARE_DENY_NONE, +28:u04:OPEN4_SHARE_ACCESS_WRITE, +27:u05:OPEN4_SHARE_ACCESS_BOTH, +25:u07:OPEN4_SHARE_DENY_NONE, +28:u03:OPEN4_SHARE_ACCESS_WRITE, +27:u04:OPEN4_SHARE_ACCESS_BOTH, +25:u06:OPEN4_SHARE_DENY_NONE, +25:u08:OPEN4_SHARE_DENY_READ, +28:u02:OPEN4_SHARE_ACCESS_WRITE, +27:u03:OPEN4_SHARE_ACCESS_BOTH, +25:u05:OPEN4_SHARE_DENY_NONE, +25:u07:OPEN4_SHARE_DENY_READ, +28:u01:OPEN4_SHARE_ACCESS_WRITE, +27:u02:OPEN4_SHARE_ACCESS_BOTH, +25:u04:OPEN4_SHARE_DENY_NONE, +25:u06:OPEN4_SHARE_DENY_READ, +26:u08:OPEN4_SHARE_DENY_WRITE, +28:u00:OPEN4_SHARE_ACCESS_WRITE, +27:u01:OPEN4_SHARE_ACCESS_BOTH, +25:u03:OPEN4_SHARE_DENY_NONE, +25:u05:OPEN4_SHARE_DENY_READ, +26:u07:OPEN4_SHARE_DENY_WRITE, +27:u00:OPEN4_SHARE_ACCESS_BOTH, +25:u02:OPEN4_SHARE_DENY_NONE, +25:u04:OPEN4_SHARE_DENY_READ, +26:u06:OPEN4_SHARE_DENY_WRITE, +25:u08:OPEN4_SHARE_DENY_BOTH, +25:u01:OPEN4_SHARE_DENY_NONE, +25:u03:OPEN4_SHARE_DENY_READ, +26:u05:OPEN4_SHARE_DENY_WRITE, +25:u07:OPEN4_SHARE_DENY_BOTH, +25:u00:OPEN4_SHARE_DENY_NONE, +25:u02:OPEN4_SHARE_DENY_READ, +26:u04:OPEN4_SHARE_DENY_WRITE, +25:u06:OPEN4_SHARE_DENY_BOTH, +25:u01:OPEN4_SHARE_DENY_READ, +26:u03:OPEN4_SHARE_DENY_WRITE, +25:u05:OPEN4_SHARE_DENY_BOTH, +25:u00:OPEN4_SHARE_DENY_READ, +26:u02:OPEN4_SHARE_DENY_WRITE, +25:u04:OPEN4_SHARE_DENY_BOTH, +26:u01:OPEN4_SHARE_DENY_WRITE, +25:u03:OPEN4_SHARE_DENY_BOTH, +7:uI2:../, +26:u00:OPEN4_SHARE_DENY_WRITE, +25:u02:OPEN4_SHARE_DENY_BOTH, +7:uI1:../, +25:u01:OPEN4_SHARE_DENY_BOTH, +7:uI0:../, +25:u00:OPEN4_SHARE_DENY_BOTH, +26:u08:OPEN4_SHARE_DENY_NONE., +26:u07:OPEN4_SHARE_DENY_NONE., +26:u06:OPEN4_SHARE_DENY_NONE., +26:u14:open4_share_deny_none., +26:u05:OPEN4_SHARE_DENY_NONE., +26:u13:open4_share_deny_none., +26:u04:OPEN4_SHARE_DENY_NONE., +9:u08:CLOSE, +26:u12:open4_share_deny_none., +26:u03:OPEN4_SHARE_DENY_NONE., +11:u08:release, +9:u07:CLOSE, +26:u11:open4_share_deny_none., +26:u02:OPEN4_SHARE_DENY_NONE., +9:u06:CLOSE, +26:u10:open4_share_deny_none., +26:u01:OPEN4_SHARE_DENY_NONE., +11:u07:release, +9:u05:CLOSE, +26:u00:OPEN4_SHARE_DENY_NONE., +11:u06:release, +9:u04:CLOSE, +11:u14:release, +11:u05:release, +9:u03:CLOSE, +11:u13:release, +11:u04:release, +9:u02:CLOSE, +11:u12:release, +11:u03:release, +9:u01:CLOSE, +8:u08:191], +11:u11:release, +11:u02:release, +9:u00:CLOSE, +8:u07:191], +11:u10:release, +11:u01:release, +8:u06:191], +11:u00:release, +8:u05:191], +8:u04:191], +8:u03:191], +8:u02:191], +8:u01:191], +8:u00:191], +10:u14:bypass, +10:u13:bypass, +10:u12:bypass, +7:u22:byp, +8:u23:bypa, +10:u11:bypass, +10:u10:bypass, +11:u08:effects, +11:u07:effects, +7:u08:far, +11:u06:effects, +11:u05:effects, +7:u07:far, +11:u04:effects, +7:u06:far, +11:u03:effects, +7:u14:far, +7:u05:far, +11:u02:effects, +10:u08:OPENed, +7:u13:far, +7:u04:far, +11:u01:effects, +10:u07:OPENed, +7:u12:far, +7:u22:far, +7:u23:far, +7:u03:far, +11:u00:effects, +10:u06:OPENed, +7:u11:far, +7:u02:far, +10:u05:OPENed, +9:u08:OPENs, +7:u10:far, +7:u01:far, +10:u04:OPENed, +9:u07:OPENs, +7:u00:far, +10:u03:OPENed, +9:u06:OPENs, +10:u02:OPENed, +9:u05:OPENs, +10:u01:OPENed, +9:u04:OPENs, +11:u08:client), +10:u00:OPENed, +9:u03:OPENs, +7:u22:tog, +8:u23:toge, +9:u02:OPENs, +11:u07:client), +9:u01:OPENs, +11:u06:client), +9:u00:OPENs, +11:u14:client), +11:u05:client), +11:u13:client), +11:u04:client), +11:u12:client), +11:u03:client), +8:u08:192], +11:u11:client), +11:u02:client), +8:u07:192], +11:u10:client), +11:u01:client), +8:u06:192], +11:u00:client), +11:u08:subset), +8:u05:192], +8:u04:192], +11:u07:subset), +8:u03:192], +11:u06:subset), +8:u02:192], +11:u14:subset), +11:u05:subset), +8:u01:192], +13:u08:properly., +11:u13:subset), +11:u04:subset), +8:u00:192], +13:u07:properly., +11:u12:subset), +11:u03:subset), +13:u06:properly., +11:u11:subset), +11:u02:subset), +13:u05:properly., +11:u10:subset), +11:u01:subset), +13:u04:properly., +11:u00:subset), +14:u08:open-owner, +13:u03:properly., +10:u08:seqid,, +13:u02:properly., +14:u07:open-owner, +13:u08:parallel., +13:u01:properly., +14:u06:open-owner, +10:u07:seqid,, +10:u08:which,, +13:u00:properly., +14:u14:open-owner, +14:u05:open-owner, +10:u06:seqid,, +13:u07:parallel., +14:u13:open-owner, +10:u14:seqid,, +14:u04:open-owner, +10:u05:seqid,, +13:u06:parallel., +10:u07:which,, +8:u08:turn, +14:u12:open-owner, +10:u13:seqid,, +13:u14:parallel., +14:u03:open-owner, +10:u04:seqid,, +13:u05:parallel., +10:u06:which,, +8:u07:turn, +14:u11:open-owner, +10:u12:seqid,, +13:u13:parallel., +10:u14:which,, +14:u02:open-owner, +10:u03:seqid,, +13:u04:parallel., +10:u05:which,, +8:u06:turn, +14:u10:open-owner, +10:u11:seqid,, +13:u12:parallel., +10:u13:which,, +14:u01:open-owner, +10:u02:seqid,, +13:u03:parallel., +10:u04:which,, +8:u05:turn, +10:u10:seqid,, +13:u11:parallel., +10:u12:which,, +14:u00:open-owner, +10:u01:seqid,, +13:u02:parallel., +10:u03:which,, +8:u04:turn, +13:u10:parallel., +10:u11:which,, +10:u00:seqid,, +13:u01:parallel., +10:u02:which,, +14:u08:recognized, +8:u03:turn, +10:u10:which,, +13:u00:parallel., +10:u01:which,, +8:u02:turn, +10:u00:which,, +14:u07:recognized, +8:u01:turn, +16:u08:determinable, +14:u06:recognized, +8:u00:turn, +16:u07:determinable, +14:u08:wraparound, +14:u14:recognized, +14:u05:recognized, +16:u06:determinable, +14:u07:wraparound, +14:u13:recognized, +14:u04:recognized, +16:u05:determinable, +14:u06:wraparound, +14:u12:recognized, +14:u03:recognized, +16:u04:determinable, +14:u05:wraparound, +14:u11:recognized, +14:u02:recognized, +19:u08:OPEN_DOWNGRADEs, +16:u03:determinable, +14:u04:wraparound, +11:u08:happen., +14:u10:recognized, +14:u01:recognized, +16:u02:determinable, +14:u03:wraparound, +11:u07:happen., +14:u00:recognized, +19:u07:OPEN_DOWNGRADEs, +16:u01:determinable, +14:u02:wraparound, +11:u06:happen., +19:u06:OPEN_DOWNGRADEs, +16:u00:determinable, +14:u01:wraparound, +11:u05:happen., +19:u14:open_downgrades, +19:u05:OPEN_DOWNGRADEs, +14:u00:wraparound, +11:u04:happen., +19:u13:open_downgrades, +12:u14:stateid,, +19:u04:OPEN_DOWNGRADEs, +11:u03:happen., +19:u12:open_downgrades, +12:u13:stateid,, +19:u03:OPEN_DOWNGRADEs, +12:u08:failure., +11:u02:happen., +19:u11:open_downgrades, +12:u12:stateid,, +19:u02:OPEN_DOWNGRADEs, +11:u01:happen., +19:u10:open_downgrades, +12:u11:stateid,, +19:u01:OPEN_DOWNGRADEs, +12:u07:failure., +19:u08:CLAIM_PREVIOUS., +11:u00:happen., +12:u10:stateid,, +19:u00:OPEN_DOWNGRADEs, +12:u06:failure., +12:u14:failure., +12:u05:failure., +19:u07:CLAIM_PREVIOUS., +12:u13:failure., +12:u04:failure., +19:u06:CLAIM_PREVIOUS., +12:u12:failure., +19:u14:claim_previous., +12:u03:failure., +19:u05:CLAIM_PREVIOUS., +14:u08:specified., +12:u11:failure., +19:u13:claim_previous., +12:u02:failure., +19:u04:CLAIM_PREVIOUS., +12:u10:failure., +19:u12:claim_previous., +12:u01:failure., +19:u03:CLAIM_PREVIOUS., +14:u07:specified., +19:u11:claim_previous., +12:u00:failure., +19:u02:CLAIM_PREVIOUS., +14:u06:specified., +19:u10:claim_previous., +14:u14:specified., +19:u01:CLAIM_PREVIOUS., +14:u05:specified., +8:u08:193], +14:u13:specified., +19:u00:CLAIM_PREVIOUS., +14:u04:specified., +8:u07:193], +14:u12:specified., +14:u03:specified., +8:u06:193], +14:u11:specified., +14:u02:specified., +8:u05:193], +14:u10:specified., +14:u01:specified., +13:u08:parameter, +8:u04:193], +14:u00:specified., +12:u08:Reclaims, +8:u03:193], +13:u07:parameter, +8:u02:193], +13:u06:parameter, +12:u07:Reclaims, +8:u01:193], +13:u14:parameter, +13:u05:parameter, +12:u06:Reclaims, +15:u08:Client-side, +8:u00:193], +13:u13:parameter, +13:u04:parameter, +12:u05:Reclaims, +13:u08:essential, +13:u12:parameter, +13:u03:parameter, +12:u04:Reclaims, +15:u07:Client-side, +13:u08:Providing, +13:u11:parameter, +8:u23:Recl, +13:u02:parameter, +12:u03:Reclaims, +15:u06:Client-side, +13:u07:essential, +13:u10:parameter, +13:u01:parameter, +12:u02:Reclaims, +15:u05:Client-side, +13:u06:essential, +13:u07:Providing, +13:u14:essential, +13:u00:parameter, +12:u01:Reclaims, +15:u04:Client-side, +13:u05:essential, +13:u06:Providing, +13:u13:essential, +12:u00:Reclaims, +15:u03:Client-side, +13:u04:essential, +13:u05:Providing, +13:u12:essential, +15:u02:Client-side, +13:u03:essential, +13:u04:Providing, +19:u08:specifications,, +14:u08:techniques, +13:u11:essential, +15:u01:Client-side, +13:u02:essential, +13:u03:Providing, +14:u07:techniques, +13:u10:essential, +15:u00:Client-side, +13:u01:essential, +13:u02:Providing, +19:u07:specifications,, +14:u06:techniques, +13:u00:essential, +13:u01:Providing, +19:u06:specifications,, +14:u05:techniques, +19:u14:specifications,, +13:u00:Providing, +19:u05:specifications,, +14:u04:techniques, +19:u13:specifications,, +19:u04:specifications,, +14:u03:techniques, +19:u12:specifications,, +19:u03:specifications,, +14:u02:techniques, +19:u11:specifications,, +19:u02:specifications,, +14:u01:techniques, +19:u10:specifications,, +19:u01:specifications,, +14:u00:techniques, +12:u08:caching., +19:u00:specifications,, +12:u07:caching., +16:u14:reservations, +11:u08:locally, +12:u06:caching., +16:u13:reservations, +8:u14:side, +12:u05:caching., +16:u12:reservations, +8:u13:side, +11:u07:locally, +12:u04:caching., +16:u11:reservations, +8:u12:side, +7:u22:sid, +8:u23:side, +11:u06:locally, +12:u03:caching., +16:u10:reservations, +8:u11:side, +11:u14:locally, +11:u05:locally, +12:u02:caching., +8:u10:side, +11:u13:locally, +11:u04:locally, +12:u01:caching., +11:u12:locally, +9:u14:only., +11:u03:locally, +15:u08:scalability, +12:u00:caching., +14:u08:successful, +11:u11:locally, +9:u13:only., +11:u02:locally, +14:u07:successful, +14:u08:challenges, +11:u10:locally, +9:u12:only., +11:u01:locally, +15:u07:scalability, +14:u06:successful, +14:u07:challenges, +9:u11:only., +11:u00:locally, +15:u06:scalability, +14:u05:successful, +14:u06:challenges, +9:u10:only., +15:u14:scalability, +15:u05:scalability, +14:u04:successful, +14:u05:challenges, +15:u13:scalability, +15:u04:scalability, +14:u03:successful, +14:u04:challenges, +15:u12:scalability, +8:u23:scal, +15:u03:scalability, +14:u02:successful, +14:u03:challenges, +14:u08:validation, +15:u11:scalability, +8:u23:very, +15:u02:scalability, +14:u01:successful, +14:u02:challenges, +14:u07:validation, +15:u10:scalability, +15:u01:scalability, +14:u00:successful, +14:u01:challenges, +14:u06:validation, +15:u00:scalability, +14:u00:challenges, +14:u05:validation, +14:u04:validation, +14:u03:validation, +9:u08:exist, +14:u02:validation, +9:u07:exist, +14:u01:validation, +9:u06:exist, +14:u00:validation, +9:u05:exist, +8:u08:194], +9:u04:exist, +8:u07:194], +9:u03:exist, +8:u06:194], +15:u08:performance, +9:u02:exist, +8:u05:194], +9:u01:exist, +8:u04:194], +15:u07:performance, +9:u00:exist, +8:u03:194], +15:u06:performance, +8:u02:194], +15:u14:performance, +15:u05:performance, +8:u01:194], +15:u13:performance, +15:u04:performance, +8:u00:194], +15:u12:performance, +15:u03:performance, +15:u11:performance, +15:u02:performance, +15:u10:performance, +15:u01:performance, +15:u00:performance, +11:u08:penalty, +11:u07:penalty, +11:u06:penalty, +11:u05:penalty, +11:u04:penalty, +17:u08:Compatibility, +11:u03:penalty, +17:u07:Compatibility, +11:u02:penalty, +17:u06:Compatibility, +11:u01:penalty, +17:u05:Compatibility, +11:u00:penalty, +17:u04:Compatibility, +17:u03:Compatibility, +17:u02:Compatibility, +17:u01:Compatibility, +17:u00:Compatibility, +10:u08:10.4)., +10:u07:10.4)., +12:u14:sections, +10:u06:10.4)., +12:u13:sections, +10:u05:10.4)., +12:u12:sections, +14:u08:"callback", +10:u04:10.4)., +12:u11:sections, +20:u08:responsibilities, +10:u03:10.4)., +12:u10:sections, +14:u07:"callback", +13:u08:delegated, +10:u02:10.4)., +14:u06:"callback", +20:u07:responsibilities, +10:u01:10.4)., +14:u14:"callback", +14:u05:"callback", +20:u06:responsibilities, +13:u07:delegated, +10:u00:10.4)., +14:u13:"callback", +20:u14:responsibilities, +14:u04:"callback", +20:u05:responsibilities, +13:u06:delegated, +14:u12:"callback", +20:u13:responsibilities, +13:u14:delegated, +14:u03:"callback", +20:u04:responsibilities, +13:u05:delegated, +14:u11:"callback", +20:u12:responsibilities, +13:u13:delegated, +14:u02:"callback", +20:u03:responsibilities, +13:u04:delegated, +10:u08:depend, +14:u10:"callback", +20:u11:responsibilities, +13:u12:delegated, +14:u01:"callback", +20:u02:responsibilities, +13:u03:delegated, +20:u10:responsibilities, +13:u11:delegated, +14:u00:"callback", +20:u01:responsibilities, +13:u02:delegated, +10:u07:depend, +13:u10:delegated, +20:u00:responsibilities, +13:u01:delegated, +10:u06:depend, +10:u14:depend, +13:u00:delegated, +10:u05:depend, +10:u13:depend, +10:u04:depend, +10:u12:depend, +10:u03:depend, +10:u11:depend, +10:u02:depend, +10:u10:depend, +10:u01:depend, +10:u00:depend, +8:u08:195], +8:u07:195], +8:u06:195], +8:u05:195], +8:u04:195], +8:u03:195], +8:u02:195], +8:u01:195], +8:u00:195], +23:u08:GET_DIR_DELEGATIONs, +12:u08:granted., +23:u07:GET_DIR_DELEGATIONs, +23:u06:GET_DIR_DELEGATIONs, +12:u07:granted., +23:u14:get_dir_delegations, +23:u05:GET_DIR_DELEGATIONs, +12:u06:granted., +23:u13:get_dir_delegations, +12:u14:granted., +23:u04:GET_DIR_DELEGATIONs, +12:u05:granted., +23:u12:get_dir_delegations, +12:u13:granted., +8:u23:GET_, +23:u03:GET_DIR_DELEGATIONs, +12:u04:granted., +23:u11:get_dir_delegations, +12:u12:granted., +23:u02:GET_DIR_DELEGATIONs, +12:u03:granted., +23:u10:get_dir_delegations, +12:u11:granted., +23:u01:GET_DIR_DELEGATIONs, +12:u02:granted., +12:u10:granted., +23:u00:GET_DIR_DELEGATIONs, +12:u01:granted., +12:u00:granted., +9:u08:done., +9:u07:done., +9:u06:done., +9:u05:done., +9:u04:done., +9:u08:data., +9:u03:done., +9:u07:data., +11:u08:revoked, +9:u02:done., +9:u06:data., +9:u01:done., +9:u05:data., +11:u07:revoked, +9:u00:done., +9:u04:data., +11:u06:revoked, +9:u03:data., +11:u14:revoked, +11:u05:revoked, +9:u02:data., +11:u13:revoked, +11:u04:revoked, +9:u01:data., +11:u12:revoked, +11:u03:revoked, +9:u00:data., +10:u08:listed, +11:u11:revoked, +11:u02:revoked, +10:u07:listed, +11:u10:revoked, +11:u01:revoked, +11:u08:Despite, +10:u06:listed, +11:u00:revoked, +10:u05:listed, +11:u07:Despite, +10:u04:listed, +11:u06:Despite, +10:u03:listed, +11:u14:despite, +11:u05:Despite, +10:u02:listed, +11:u13:despite, +11:u04:Despite, +10:u01:listed, +11:u12:despite, +8:u23:Desp, +11:u03:Despite, +10:u00:listed, +11:u11:despite, +11:u02:Despite, +11:u10:despite, +11:u01:Despite, +8:u08:196], +11:u00:Despite, +8:u07:196], +8:u06:196], +8:u05:196], +8:u04:196], +8:u03:196], +8:u02:196], +8:u01:196], +8:u00:196], +11:u08:recall,, +11:u07:recall,, +11:u06:recall,, +11:u05:recall,, +11:u04:recall,, +11:u03:recall,, +11:u02:recall,, +12:u08:timeout., +11:u01:recall,, +12:u07:timeout., +11:u00:recall,, +12:u06:timeout., +12:u05:timeout., +15:u08:substantial, +12:u04:timeout., +12:u03:timeout., +15:u07:substantial, +12:u02:timeout., +15:u06:substantial, +12:u01:timeout., +15:u14:substantial, +15:u05:substantial, +12:u00:timeout., +15:u13:substantial, +15:u04:substantial, +15:u12:substantial, +15:u03:substantial, +9:u08:usual, +15:u11:substantial, +15:u02:substantial, +9:u07:usual, +14:u08:completion, +15:u10:substantial, +15:u01:substantial, +9:u06:usual, +14:u07:completion, +15:u00:substantial, +9:u05:usual, +14:u06:completion, +9:u04:usual, +14:u05:completion, +8:u08:know, +9:u03:usual, +14:u04:completion, +8:u07:know, +9:u02:usual, +14:u03:completion, +8:u06:know, +10:u08:states, +9:u01:usual, +14:u02:completion, +8:u05:know, +10:u07:states, +14:u14:knowledge,, +11:u08:respond, +9:u00:usual, +14:u01:completion, +8:u04:know, +10:u06:states, +14:u13:knowledge,, +14:u00:completion, +8:u03:know, +10:u05:states, +14:u12:knowledge,, +11:u07:respond, +8:u02:know, +10:u04:states, +14:u11:knowledge,, +11:u06:respond, +8:u01:know, +10:u03:states, +14:u10:knowledge,, +11:u14:respond, +11:u05:respond, +8:u00:know, +10:u02:states, +11:u13:respond, +11:u04:respond, +9:u08:with:, +10:u01:states, +11:u12:respond, +11:u03:respond, +10:u00:states, +11:u11:respond, +11:u14:10.2.1., +11:u02:respond, +9:u07:with:, +11:u10:respond, +11:u13:10.2.1., +11:u01:respond, +9:u06:with:, +11:u12:10.2.1., +9:u14:with:, +11:u00:respond, +9:u05:with:, +11:u11:10.2.1., +9:u13:with:, +9:u04:with:, +8:u08:197], +11:u10:10.2.1., +9:u12:with:, +9:u03:with:, +8:u07:197], +9:u11:with:, +9:u02:with:, +8:u06:197], +9:u10:with:, +9:u01:with:, +8:u05:197], +9:u00:with:, +8:u04:197], +8:u03:197], +8:u02:197], +16:u08:Delegations,, +8:u01:197], +8:u00:197], +16:u07:Delegations,, +16:u06:Delegations,, +16:u05:Delegations,, +16:u04:Delegations,, +16:u03:Delegations,, +16:u02:Delegations,, +16:u01:Delegations,, +16:u00:Delegations,, +18:u08:respectively)., +18:u07:respectively)., +24:u08:CLAIM_DELEG_PREV_FH,, +18:u06:respectively)., +18:u14:respectively)., +18:u05:respectively)., +24:u07:CLAIM_DELEG_PREV_FH,, +16:u08:EXCHANGE_ID., +18:u13:respectively)., +18:u04:respectively)., +24:u06:CLAIM_DELEG_PREV_FH,, +18:u12:respectively)., +24:u14:claim_deleg_prev_fh,, +18:u03:respectively)., +24:u05:CLAIM_DELEG_PREV_FH,, +16:u07:EXCHANGE_ID., +18:u11:respectively)., +24:u13:claim_deleg_prev_fh,, +18:u02:respectively)., +24:u04:CLAIM_DELEG_PREV_FH,, +16:u06:EXCHANGE_ID., +23:u08:CLAIM_DELEGATE_PREV, +18:u10:respectively)., +24:u12:claim_deleg_prev_fh,, +16:u14:exchange_id., +18:u01:respectively)., +24:u03:CLAIM_DELEG_PREV_FH,, +16:u05:EXCHANGE_ID., +24:u11:claim_deleg_prev_fh,, +16:u13:exchange_id., +7:u22:upo, +8:u23:upon, +18:u00:respectively)., +24:u02:CLAIM_DELEG_PREV_FH,, +16:u04:EXCHANGE_ID., +23:u07:CLAIM_DELEGATE_PREV, +24:u10:claim_deleg_prev_fh,, +16:u12:exchange_id., +24:u01:CLAIM_DELEG_PREV_FH,, +16:u03:EXCHANGE_ID., +23:u06:CLAIM_DELEGATE_PREV, +16:u11:exchange_id., +23:u14:claim_delegate_prev, +24:u00:CLAIM_DELEG_PREV_FH,, +16:u02:EXCHANGE_ID., +23:u05:CLAIM_DELEGATE_PREV, +16:u10:exchange_id., +23:u13:claim_delegate_prev, +16:u01:EXCHANGE_ID., +23:u04:CLAIM_DELEGATE_PREV, +23:u12:claim_delegate_prev, +16:u00:EXCHANGE_ID., +23:u03:CLAIM_DELEGATE_PREV, +15:u08:difference., +23:u11:claim_delegate_prev, +23:u02:CLAIM_DELEGATE_PREV, +23:u10:claim_delegate_prev, +23:u01:CLAIM_DELEGATE_PREV, +15:u07:difference., +6:uI2:)-, +23:u00:CLAIM_DELEGATE_PREV, +15:u06:difference., +9:u08:OPEN), +15:u14:difference., +6:uI1:)-, +15:u05:difference., +9:u07:OPEN), +10:u08:grants, +15:u13:difference., +6:uI0:)-, +15:u04:difference., +12:u08:recalled, +9:u06:OPEN), +10:u07:grants, +15:u12:difference., +15:u03:difference., +9:u05:OPEN), +10:u06:grants, +15:u11:difference., +11:uI2:(..,).,, +15:u02:difference., +12:u07:recalled, +9:u04:OPEN), +10:u05:grants, +15:u10:difference., +11:uI1:(..,).,, +15:u01:difference., +12:u06:recalled, +9:u03:OPEN), +10:u04:grants, +12:u14:recalled, +11:uI0:(..,).,, +15:u00:difference., +12:u05:recalled, +9:u02:OPEN), +10:u03:grants, +12:u13:recalled, +12:u04:recalled, +9:u01:OPEN), +10:u02:grants, +8:u08:198], +12:u12:recalled, +12:u03:recalled, +9:u00:OPEN), +10:u01:grants, +8:u07:198], +12:u11:recalled, +12:u02:recalled, +10:u00:grants, +8:u06:198], +12:u10:recalled, +12:u01:recalled, +8:u05:198], +12:u00:recalled, +8:u04:198], +8:u03:198], +14:u08:principles, +11:u08:earlier, +8:u02:198], +14:u07:principles, +8:u01:198], +14:u06:principles, +11:u07:earlier, +8:u00:198], +14:u05:principles, +11:u06:earlier, +14:u04:principles, +11:u14:earlier, +11:u05:earlier, +14:u03:principles, +11:u13:earlier, +11:u04:earlier, +14:u02:principles, +11:u12:earlier, +7:u22:ear, +8:u23:earl, +11:u03:earlier, +14:u01:principles, +10:u08:proven, +11:u11:earlier, +11:u02:earlier, +14:u00:principles, +10:u07:proven, +11:u10:earlier, +11:u01:earlier, +19:u08:WANT_DELEGATION, +10:u06:proven, +11:u00:earlier, +10:u05:proven, +19:u07:WANT_DELEGATION, +10:u04:proven, +19:u06:WANT_DELEGATION, +10:u03:proven, +19:u14:want_delegation, +19:u05:WANT_DELEGATION, +10:u02:proven, +19:u13:want_delegation, +19:u04:WANT_DELEGATION, +10:u01:proven, +19:u12:want_delegation, +6:u21:WA, +7:u22:WAN, +8:u23:WANT, +19:u03:WANT_DELEGATION, +10:u00:proven, +19:u11:want_delegation, +19:u02:WANT_DELEGATION, +19:u10:want_delegation, +19:u01:WANT_DELEGATION, +19:u00:WANT_DELEGATION, +9:u08:opens, +9:u07:opens, +9:u06:opens, +9:u05:opens, +9:u04:opens, +9:u03:opens, +9:u02:opens, +9:u01:opens, +11:u08:change), +9:u00:opens, +8:u23:howe, +11:u07:change), +11:u06:change), +11:u14:change), +11:u05:change), +11:u13:change), +11:u04:change), +26:u08:NFS4ERR_DELEG_REVOKED., +11:u12:change), +11:u03:change), +11:u11:change), +11:u02:change), +26:u07:NFS4ERR_DELEG_REVOKED., +11:u10:change), +11:u01:change), +26:u06:NFS4ERR_DELEG_REVOKED., +26:u14:nfs4err_deleg_revoked., +11:u00:change), +26:u05:NFS4ERR_DELEG_REVOKED., +26:u13:nfs4err_deleg_revoked., +26:u04:NFS4ERR_DELEG_REVOKED., +14:u08:separately, +26:u12:nfs4err_deleg_revoked., +26:u03:NFS4ERR_DELEG_REVOKED., +26:u11:nfs4err_deleg_revoked., +26:u02:NFS4ERR_DELEG_REVOKED., +14:u07:separately, +11:u08:issues., +26:u10:nfs4err_deleg_revoked., +26:u01:NFS4ERR_DELEG_REVOKED., +14:u06:separately, +11:u07:issues., +14:u14:separately, +26:u00:NFS4ERR_DELEG_REVOKED., +14:u05:separately, +11:u06:issues., +14:u13:separately, +14:u04:separately, +11:u05:issues., +8:u08:199], +14:u12:separately, +14:u03:separately, +11:u04:issues., +8:u07:199], +14:u11:separately, +14:u02:separately, +11:u03:issues., +8:u06:199], +14:u10:separately, +14:u01:separately, +11:u02:issues., +8:u05:199], +14:u00:separately, +11:u01:issues., +8:u04:199], +11:u00:issues., +8:u03:199], +8:u02:199], +12:u08:notified, +8:u01:199], +8:u00:199], +12:u07:notified, +12:u06:notified, +12:u14:notified, +12:u05:notified, +12:u13:notified, +12:u04:notified, +12:u12:notified, +12:u03:notified, +12:u11:notified, +12:u02:notified, +12:u10:notified, +12:u01:notified, +12:u00:notified, +15:u08:assumptions, +11:u08:10.3.1., +15:u07:assumptions, +15:u06:assumptions, +11:u07:10.3.1., +15:u14:assumptions, +15:u05:assumptions, +11:u06:10.3.1., +9:u08:rely,, +15:u13:assumptions, +11:u14:10.3.1., +15:u04:assumptions, +11:u05:10.3.1., +9:u07:rely,, +15:u12:assumptions, +11:u13:10.3.1., +15:u03:assumptions, +11:u04:10.3.1., +9:u06:rely,, +15:u11:assumptions, +11:u12:10.3.1., +16:u14:applications, +15:u02:assumptions, +11:u03:10.3.1., +9:u05:rely,, +15:u10:assumptions, +11:u11:10.3.1., +16:u13:applications, +15:u01:assumptions, +11:u02:10.3.1., +9:u04:rely,, +11:u10:10.3.1., +16:u12:applications, +15:u00:assumptions, +11:u01:10.3.1., +12:u08:practice, +9:u03:rely,, +16:u11:applications, +11:u00:10.3.1., +9:u02:rely,, +16:u10:applications, +12:u07:practice, +9:u01:rely,, +9:uI2:,(.),, +12:u06:practice, +9:u00:rely,, +12:u14:practice, +9:uI1:,(.),, +12:u05:practice, +12:u13:practice, +9:uI0:,(.),, +12:u04:practice, +12:u12:practice, +7:u22:pra, +8:u23:prac, +12:u03:practice, +12:u11:practice, +12:u02:practice, +12:u10:practice, +12:u01:practice, +7:uI2:,,(, +12:u00:practice, +7:uI1:,,(, +26:u08:OPEN4_SHARE_DENY_BOTH,, +7:uI0:,,(, +52:u08:OPEN4_SHARE_ACCESS_WRITE/OPEN4_SHARE_ACCESS_BOTH, +26:u07:OPEN4_SHARE_DENY_BOTH,, +26:u06:OPEN4_SHARE_DENY_BOTH,, +11:u08:access., +52:u07:OPEN4_SHARE_ACCESS_WRITE/OPEN4_SHARE_ACCESS_BOTH, +26:u05:OPEN4_SHARE_DENY_BOTH,, +11:u07:access., +52:u06:OPEN4_SHARE_ACCESS_WRITE/OPEN4_SHARE_ACCESS_BOTH, +26:u04:OPEN4_SHARE_DENY_BOTH,, +11:u06:access., +52:u14:open4_share_access_write/open4_share_access_both, +52:u05:OPEN4_SHARE_ACCESS_WRITE/OPEN4_SHARE_ACCESS_BOTH, +10:u08:degree, +26:u03:OPEN4_SHARE_DENY_BOTH,, +11:u05:access., +14:u08:protocol's, +52:u13:open4_share_access_write/open4_share_access_both, +52:u04:OPEN4_SHARE_ACCESS_WRITE/OPEN4_SHARE_ACCESS_BOTH, +26:u02:OPEN4_SHARE_DENY_BOTH,, +11:u04:access., +14:u07:protocol's, +52:u12:open4_share_access_write/open4_share_access_both, +52:u03:OPEN4_SHARE_ACCESS_WRITE/OPEN4_SHARE_ACCESS_BOTH, +10:u07:degree, +26:u01:OPEN4_SHARE_DENY_BOTH,, +11:u03:access., +14:u06:protocol's, +52:u11:open4_share_access_write/open4_share_access_both, +9:u14:nfsv3, +52:u02:OPEN4_SHARE_ACCESS_WRITE/OPEN4_SHARE_ACCESS_BOTH, +10:u06:degree, +26:u00:OPEN4_SHARE_DENY_BOTH,, +11:u02:access., +14:u05:protocol's, +52:u10:open4_share_access_write/open4_share_access_both, +9:u13:nfsv3, +10:u14:degree, +52:u01:OPEN4_SHARE_ACCESS_WRITE/OPEN4_SHARE_ACCESS_BOTH, +10:u05:degree, +11:u01:access., +14:u04:protocol's, +8:u08:200], +9:u12:nfsv3, +10:u13:degree, +52:u00:OPEN4_SHARE_ACCESS_WRITE/OPEN4_SHARE_ACCESS_BOTH, +10:u04:degree, +11:u00:access., +14:u03:protocol's, +8:u07:200], +9:u11:nfsv3, +10:u12:degree, +7:u22:deg, +8:u23:degr, +10:u03:degree, +14:u02:protocol's, +8:u06:200], +9:u10:nfsv3, +10:u11:degree, +10:u02:degree, +14:u01:protocol's, +8:u05:200], +10:u10:degree, +10:u01:degree, +18:u08:modifications,, +14:u00:protocol's, +8:u04:200], +10:u00:degree, +8:u03:200], +18:u07:modifications,, +8:u02:200], +18:u06:modifications,, +9:u08:clean, +8:u01:200], +18:u14:modifications,, +18:u05:modifications,, +8:u00:200], +18:u13:modifications,, +15:u14:time_modify, +18:u04:modifications,, +9:u07:clean, +18:u12:modifications,, +15:u13:time_modify, +18:u03:modifications,, +9:u06:clean, +15:u08:granularity, +18:u11:modifications,, +15:u12:time_modify, +9:u14:clean, +18:u02:modifications,, +9:u05:clean, +18:u10:modifications,, +15:u11:time_modify, +9:u13:clean, +18:u01:modifications,, +9:u04:clean, +15:u07:granularity, +15:u10:time_modify, +9:u12:clean, +18:u00:modifications,, +9:u03:clean, +15:u06:granularity, +9:u11:clean, +15:u14:granularity, +9:u02:clean, +15:u05:granularity, +9:u10:clean, +15:u13:granularity, +9:u01:clean, +15:u04:granularity, +15:u12:granularity, +9:u00:clean, +15:u03:granularity, +11:u08:Second,, +15:u11:granularity, +15:u02:granularity, +11:u07:Second,, +15:u10:granularity, +15:u01:granularity, +16:u08:revalidation, +11:u06:Second,, +15:u00:granularity, +11:u05:Second,, +16:u07:revalidation, +9:u08:close, +11:u04:Second,, +16:u06:revalidation, +11:u03:Second,, +16:u14:revalidation, +16:u05:revalidation, +9:u07:close, +11:u02:Second,, +16:u13:revalidation, +16:u04:revalidation, +9:u06:close, +11:u01:Second,, +16:u12:revalidation, +9:u14:close, +8:u23:reva, +16:u03:revalidation, +9:u05:close, +11:u00:Second,, +16:u11:revalidation, +9:u13:close, +16:u02:revalidation, +9:u04:close, +11:u08:10.3.2., +16:u08:requirement., +16:u10:revalidation, +9:u12:close, +8:u23:clos, +16:u01:revalidation, +9:u03:close, +16:u07:requirement., +9:u11:close, +16:u00:revalidation, +9:u02:close, +11:u07:10.3.2., +16:u06:requirement., +9:u10:close, +9:u01:close, +11:u06:10.3.2., +16:u05:requirement., +11:u14:10.3.2., +9:u00:close, +11:u05:10.3.2., +16:u04:requirement., +11:u13:10.3.2., +11:u04:10.3.2., +16:u03:requirement., +11:u12:10.3.2., +11:u03:10.3.2., +16:u02:requirement., +11:u11:10.3.2., +11:u02:10.3.2., +16:u01:requirement., +11:u10:10.3.2., +12:u14:caching., +11:u01:10.3.2., +14:u08:manipulate, +16:u00:requirement., +12:u13:caching., +11:u00:10.3.2., +12:u08:megabyte, +12:u12:caching., +14:u07:manipulate, +12:u11:caching., +14:u06:manipulate, +12:u07:megabyte, +12:u10:caching., +14:u14:manipulate, +14:u05:manipulate, +12:u06:megabyte, +14:u13:manipulate, +12:u14:megabyte, +14:u04:manipulate, +12:u05:megabyte, +14:u12:manipulate, +12:u13:megabyte, +8:u23:mani, +14:u03:manipulate, +12:u04:megabyte, +14:u11:manipulate, +12:u12:megabyte, +7:u22:meg, +8:u23:mega, +14:u02:manipulate, +12:u03:megabyte, +14:u10:manipulate, +12:u11:megabyte, +14:u01:manipulate, +12:u02:megabyte, +12:u10:megabyte, +14:u00:manipulate, +12:u01:megabyte, +12:u00:megabyte, +16:u14:manipulating, +16:u13:manipulating, +15:u08:byte-range,, +16:u12:manipulating, +16:u11:manipulating, +15:u07:byte-range,, +16:u10:manipulating, +15:u06:byte-range,, +15:u14:byte-range,, +15:u05:byte-range,, +8:u08:201], +15:u13:byte-range,, +8:uI2:-,-(, +15:u04:byte-range,, +8:u07:201], +15:u12:byte-range,, +8:uI1:-,-(, +15:u03:byte-range,, +8:u06:201], +15:u11:byte-range,, +8:uI0:-,-(, +15:u02:byte-range,, +8:u05:201], +15:u10:byte-range,, +15:u01:byte-range,, +8:u04:201], +15:u00:byte-range,, +8:u03:201], +8:u02:201], +8:u01:201], +8:u00:201], +12:u08:Rounding, +12:u07:Rounding, +12:u06:Rounding, +12:u08:unlocked, +9:u08:block, +12:u14:rounding, +12:u05:Rounding, +9:u07:block, +12:u13:rounding, +12:u04:Rounding, +12:u07:unlocked, +9:u06:block, +9:u08:area., +12:u12:rounding, +8:u23:Roun, +12:u03:Rounding, +12:u06:unlocked, +9:u05:block, +9:u07:area., +12:u11:rounding, +12:u14:unlocked, +12:u02:Rounding, +12:u05:unlocked, +12:u08:(initial, +9:u04:block, +9:u06:area., +12:u08:portions, +12:u10:rounding, +12:u13:unlocked, +12:u01:Rounding, +12:u04:unlocked, +9:u03:block, +9:u05:area., +12:u07:portions, +12:u12:unlocked, +8:u23:unlo, +12:u00:Rounding, +12:u03:unlocked, +12:u07:(initial, +9:u02:block, +9:u04:area., +12:u06:portions, +12:u11:unlocked, +12:u02:unlocked, +12:u06:(initial, +9:u01:block, +9:u03:area., +12:u05:portions, +12:u10:unlocked, +12:u14:(initial, +12:u01:unlocked, +12:u05:(initial, +9:u00:block, +9:u02:area., +12:u04:portions, +12:u13:(initial, +12:u00:unlocked, +12:u04:(initial, +9:u01:area., +12:u03:portions, +13:u08:possesses, +12:u12:(initial, +8:u23:(ini, +12:u03:(initial, +13:u08:unlocking, +9:u00:area., +12:u02:portions, +13:u07:possesses, +12:u11:(initial, +12:u02:(initial, +12:u01:portions, +13:u06:possesses, +12:u10:(initial, +12:u01:(initial, +13:u07:unlocking, +12:u00:portions, +13:u05:possesses, +12:u00:(initial, +13:u06:unlocking, +13:u04:possesses, +13:u14:unlocking, +13:u05:unlocking, +13:u03:possesses, +13:u13:unlocking, +13:u04:unlocking, +13:u02:possesses, +13:u12:unlocking, +10:u14:writes, +13:u03:unlocking, +13:u01:possesses, +13:u11:unlocking, +10:u13:writes, +13:u02:unlocking, +13:u00:possesses, +13:u10:unlocking, +10:u12:writes, +13:u01:unlocking, +10:u11:writes, +13:u00:unlocking, +10:u10:writes, +11:uI2:--(..,-, +11:uI1:--(..,-, +10:u08:bounds, +11:uI0:--(..,-, +10:u07:bounds, +10:u06:bounds, +10:u14:bounds, +10:u05:bounds, +10:u13:bounds, +10:u04:bounds, +10:u12:bounds, +10:u03:bounds, +10:u11:bounds, +10:u02:bounds, +11:u08:located, +10:u10:bounds, +10:u01:bounds, +11:u07:located, +10:u00:bounds, +11:u06:located, +11:u05:located, +8:u08:202], +11:u04:located, +8:u07:202], +11:u03:located, +8:u06:202], +11:u02:located, +8:u05:202], +11:u01:located, +8:u04:202], +11:u00:located, +8:u03:202], +8:u02:202], +8:u01:202], +8:u00:202], +11:u08:10.3.3., +11:u07:10.3.3., +11:u06:10.3.3., +11:u14:10.3.3., +11:u05:10.3.3., +18:u08:NFS4ERR_LOCKED, +11:u13:10.3.3., +11:u04:10.3.3., +11:u12:10.3.3., +11:u03:10.3.3., +18:u07:NFS4ERR_LOCKED, +11:u11:10.3.3., +11:u02:10.3.3., +18:u06:NFS4ERR_LOCKED, +11:u10:10.3.3., +18:u14:nfs4err_locked, +11:u01:10.3.3., +18:u05:NFS4ERR_LOCKED, +18:u13:nfs4err_locked, +11:u00:10.3.3., +18:u04:NFS4ERR_LOCKED, +18:u12:nfs4err_locked, +18:u03:NFS4ERR_LOCKED, +18:u11:nfs4err_locked, +18:u02:NFS4ERR_LOCKED, +18:u10:nfs4err_locked, +18:u01:NFS4ERR_LOCKED, +18:u00:NFS4ERR_LOCKED, +11:u08:(locked, +11:u07:(locked, +11:u06:(locked, +11:u14:(locked, +11:u05:(locked, +11:u13:(locked, +11:u14:10.3.4., +11:u04:(locked, +11:u12:(locked, +11:u13:10.3.4., +11:u03:(locked, +11:u11:(locked, +11:u12:10.3.4., +11:u02:(locked, +11:u10:(locked, +11:u11:10.3.4., +11:u01:(locked, +11:u10:10.3.4., +11:u00:(locked, +14:u08:deviations, +12:u14:maintain, +13:u08:pathname., +14:u07:deviations, +12:u13:maintain, +14:u06:deviations, +12:u12:maintain, +15:u14:significant, +13:u07:pathname., +14:u05:deviations, +12:u11:maintain, +15:u13:significant, +13:u06:pathname., +14:u04:deviations, +12:u10:maintain, +15:u12:significant, +13:u14:pathname., +13:u05:pathname., +19:u08:inconsistencies, +14:u03:deviations, +15:u11:significant, +13:u13:pathname., +13:u04:pathname., +14:u02:deviations, +15:u10:significant, +13:u12:pathname., +13:u03:pathname., +19:u07:inconsistencies, +14:u01:deviations, +13:u11:pathname., +13:u02:pathname., +19:u06:inconsistencies, +14:u00:deviations, +13:u10:pathname., +19:u14:inconsistencies, +13:u01:pathname., +19:u05:inconsistencies, +14:u08:alleviates, +19:u13:inconsistencies, +13:u00:pathname., +19:u04:inconsistencies, +14:u07:alleviates, +19:u12:inconsistencies, +19:u03:inconsistencies, +14:u06:alleviates, +19:u11:inconsistencies, +19:u02:inconsistencies, +14:u05:alleviates, +19:u10:inconsistencies, +19:u01:inconsistencies, +14:u04:alleviates, +19:u00:inconsistencies, +14:u03:alleviates, +8:u08:203], +14:u02:alleviates, +8:u07:203], +14:u01:alleviates, +8:u06:203], +14:u00:alleviates, +8:u05:203], +8:u04:203], +8:u03:203], +8:u02:203], +8:u01:203], +8:u00:203], +12:u14:objects., +12:u13:objects., +12:u12:objects., +12:u11:objects., +12:u10:objects., +12:u08:caching), +12:u07:caching), +12:u06:caching), +12:u14:caching), +12:u05:caching), +12:u13:caching), +12:u04:caching), +12:u12:caching), +12:u03:caching), +12:u11:caching), +12:u02:caching), +12:u10:caching), +12:u01:caching), +12:u00:caching), +16:u08:CB_SEQUENCE,, +16:u07:CB_SEQUENCE,, +16:u06:CB_SEQUENCE,, +16:u14:cb_sequence,, +16:u05:CB_SEQUENCE,, +8:u08:204], +16:u13:cb_sequence,, +16:u04:CB_SEQUENCE,, +8:u07:204], +16:u12:cb_sequence,, +16:u03:CB_SEQUENCE,, +8:u06:204], +16:u11:cb_sequence,, +16:u02:CB_SEQUENCE,, +8:u05:204], +16:u10:cb_sequence,, +16:u01:CB_SEQUENCE,, +8:u04:204], +16:u00:CB_SEQUENCE,, +8:u03:204], +8:u02:204], +8:u01:204], +8:u00:204], +24:u08:OPEN_DELEGATE_WRITE., +24:u07:OPEN_DELEGATE_WRITE., +24:u06:OPEN_DELEGATE_WRITE., +24:u14:open_delegate_write., +24:u05:OPEN_DELEGATE_WRITE., +24:u13:open_delegate_write., +24:u04:OPEN_DELEGATE_WRITE., +24:u12:open_delegate_write., +24:u03:OPEN_DELEGATE_WRITE., +11:u08:handle,, +24:u11:open_delegate_write., +24:u02:OPEN_DELEGATE_WRITE., +11:u07:handle,, +24:u10:open_delegate_write., +24:u01:OPEN_DELEGATE_WRITE., +11:u06:handle,, +24:u00:OPEN_DELEGATE_WRITE., +11:u05:handle,, +17:u08:time_access),, +11:u04:handle,, +11:u03:handle,, +17:u07:time_access),, +11:u02:handle,, +17:u06:time_access),, +11:u01:handle,, +17:u14:time_access),, +17:u05:time_access),, +11:u00:handle,, +17:u13:time_access),, +17:u04:time_access),, +17:u12:time_access),, +17:u03:time_access),, +9:u08:data:, +17:u11:time_access),, +17:u02:time_access),, +9:u08:size,, +17:u10:time_access),, +17:u01:time_access),, +9:u07:data:, +9:u07:size,, +10:u14:affect, +17:u00:time_access),, +9:u06:data:, +9:u06:size,, +10:u13:affect, +9:u14:data:, +9:u05:data:, +9:u05:size,, +10:u08:CLOSEs, +10:u12:affect, +9:u13:data:, +10:uI2::,,,,., +9:u04:data:, +9:u04:size,, +10:u07:CLOSEs, +10:u11:affect, +9:u12:data:, +10:uI1::,,,,., +9:u03:data:, +9:u03:size,, +10:u06:CLOSEs, +10:u10:affect, +9:u11:data:, +10:uI0::,,,,., +9:u02:data:, +9:u02:size,, +10:u05:CLOSEs, +9:u10:data:, +9:u01:data:, +9:u01:size,, +10:u04:CLOSEs, +11:u08:access), +9:u14:opens, +9:u00:data:, +9:u00:size,, +10:u03:CLOSEs, +11:u07:access), +9:u13:opens, +10:u02:CLOSEs, +11:u06:access), +9:u12:opens, +25:u08:OPEN_DELEGATE_WRITE)., +10:u01:CLOSEs, +11:u05:access), +9:u11:opens, +10:u00:CLOSEs, +11:u04:access), +9:u10:opens, +25:u07:OPEN_DELEGATE_WRITE)., +11:u03:access), +25:u06:OPEN_DELEGATE_WRITE)., +11:u02:access), +25:u14:open_delegate_write)., +25:u05:OPEN_DELEGATE_WRITE)., +11:u01:access), +8:u08:205], +25:u13:open_delegate_write)., +25:u04:OPEN_DELEGATE_WRITE)., +11:u00:access), +8:u07:205], +25:u12:open_delegate_write)., +25:u03:OPEN_DELEGATE_WRITE)., +8:u06:205], +25:u11:open_delegate_write)., +25:u02:OPEN_DELEGATE_WRITE)., +8:u05:205], +25:u10:open_delegate_write)., +25:u01:OPEN_DELEGATE_WRITE)., +24:u08:(OPEN_DELEGATE_WRITE, +8:u04:205], +25:u00:OPEN_DELEGATE_WRITE)., +8:u03:205], +24:u07:(OPEN_DELEGATE_WRITE, +8:u02:205], +24:u06:(OPEN_DELEGATE_WRITE, +8:u01:205], +24:u14:(open_delegate_write, +24:u05:(OPEN_DELEGATE_WRITE, +8:u00:205], +24:u13:(open_delegate_write, +9:uI2:(;..), +24:u04:(OPEN_DELEGATE_WRITE, +24:u12:(open_delegate_write, +7:u22:(OP, +8:u23:(OPE, +9:uI1:(;..), +24:u03:(OPEN_DELEGATE_WRITE, +24:u11:(open_delegate_write, +9:uI0:(;..), +24:u02:(OPEN_DELEGATE_WRITE, +24:u10:(open_delegate_write, +24:u01:(OPEN_DELEGATE_WRITE, +24:u00:(OPEN_DELEGATE_WRITE, +11:u14:itself., +11:u13:itself., +10:u08:ACCESS, +11:u12:itself., +10:u08:calls., +11:u11:itself., +10:u07:ACCESS, +10:u07:calls., +11:u10:itself., +10:u06:ACCESS, +10:u06:calls., +10:u05:ACCESS, +10:u05:calls., +10:u04:ACCESS, +11:u08:answer., +10:u04:calls., +7:u22:ACC, +8:u23:ACCE, +10:u03:ACCESS, +10:u03:calls., +10:u02:ACCESS, +11:u07:answer., +10:u02:calls., +10:u01:ACCESS, +11:u06:answer., +10:u08:denial, +10:u01:calls., +11:u14:answer., +10:u00:ACCESS, +11:u05:answer., +11:u08:mapping, +10:u00:calls., +11:u13:answer., +11:u04:answer., +10:u07:denial, +11:u12:answer., +11:u03:answer., +10:u06:denial, +11:u07:mapping, +8:u08:5.9), +11:u11:answer., +10:u14:denial, +11:u02:answer., +10:u05:denial, +11:u06:mapping, +8:u07:5.9), +11:u10:answer., +10:u13:denial, +11:u14:mapping, +11:u01:answer., +10:u04:denial, +11:u05:mapping, +8:u06:5.9), +10:u12:denial, +11:u13:mapping, +11:u00:answer., +10:u03:denial, +11:u04:mapping, +8:u05:5.9), +10:u11:denial, +11:u12:mapping, +10:u02:denial, +11:u03:mapping, +8:u04:5.9), +10:u10:denial, +11:u11:mapping, +10:u01:denial, +11:u02:mapping, +8:u03:5.9), +10:u08:user's, +11:u10:mapping, +11:u14:creates, +10:u00:denial, +11:u01:mapping, +8:u02:5.9), +10:u07:user's, +11:u13:creates, +11:u00:mapping, +8:u01:5.9), +10:u06:user's, +11:u12:creates, +8:u00:5.9), +10:u05:user's, +11:u11:creates, +13:u14:depending, +10:u04:user's, +11:u10:creates, +13:u13:depending, +10:u03:user's, +8:u08:206], +13:u12:depending, +10:u02:user's, +8:u07:206], +13:u11:depending, +10:u01:user's, +8:u06:206], +13:u10:depending, +10:u00:user's, +8:u05:206], +8:u04:206], +8:u03:206], +8:u02:206], +11:u08:before,, +11:u08:10.4.1., +8:u01:206], +11:u07:before,, +8:u00:206], +11:u06:before,, +11:u07:10.4.1., +11:u05:before,, +11:u06:10.4.1., +11:u04:before,, +11:u14:10.4.1., +11:u05:10.4.1., +11:u03:before,, +11:u13:10.4.1., +11:u04:10.4.1., +23:u08:"OPEN_DELEGATE_READ, +11:u02:before,, +11:u12:10.4.1., +11:u03:10.4.1., +53:u08:OPEN4_SHARE_ACCESS_WRITE/OPEN4_SHARE_ACCESS_BOTH,, +11:u01:before,, +15:u08:delegation", +11:u11:10.4.1., +11:u02:10.4.1., +23:u07:"OPEN_DELEGATE_READ, +11:u00:before,, +15:u07:delegation", +11:u10:10.4.1., +11:u01:10.4.1., +23:u06:"OPEN_DELEGATE_READ, +53:u07:OPEN4_SHARE_ACCESS_WRITE/OPEN4_SHARE_ACCESS_BOTH,, +15:u06:delegation", +13:u08:occurred., +23:u14:"open_delegate_read, +11:u00:10.4.1., +23:u05:"OPEN_DELEGATE_READ, +53:u06:OPEN4_SHARE_ACCESS_WRITE/OPEN4_SHARE_ACCESS_BOTH,, +15:u05:delegation", +13:u07:occurred., +23:u13:"open_delegate_read, +53:u14:open4_share_access_write/open4_share_access_both,, +23:u04:"OPEN_DELEGATE_READ, +53:u05:OPEN4_SHARE_ACCESS_WRITE/OPEN4_SHARE_ACCESS_BOTH,, +15:u04:delegation", +13:u06:occurred., +23:u12:"open_delegate_read, +53:u13:open4_share_access_write/open4_share_access_both,, +8:u23:"OPE, +23:u03:"OPEN_DELEGATE_READ, +53:u04:OPEN4_SHARE_ACCESS_WRITE/OPEN4_SHARE_ACCESS_BOTH,, +13:u08:recalled., +15:u03:delegation", +13:u05:occurred., +23:u11:"open_delegate_read, +53:u12:open4_share_access_write/open4_share_access_both,, +23:u02:"OPEN_DELEGATE_READ, +53:u03:OPEN4_SHARE_ACCESS_WRITE/OPEN4_SHARE_ACCESS_BOTH,, +15:u02:delegation", +13:u04:occurred., +23:u10:"open_delegate_read, +53:u11:open4_share_access_write/open4_share_access_both,, +23:u01:"OPEN_DELEGATE_READ, +53:u02:OPEN4_SHARE_ACCESS_WRITE/OPEN4_SHARE_ACCESS_BOTH,, +13:u07:recalled., +15:u01:delegation", +13:u03:occurred., +53:u10:open4_share_access_write/open4_share_access_both,, +23:u00:"OPEN_DELEGATE_READ, +53:u01:OPEN4_SHARE_ACCESS_WRITE/OPEN4_SHARE_ACCESS_BOTH,, +13:u06:recalled., +15:u00:delegation", +13:u02:occurred., +13:u14:recalled., +53:u00:OPEN4_SHARE_ACCESS_WRITE/OPEN4_SHARE_ACCESS_BOTH,, +13:u05:recalled., +13:u01:occurred., +13:u13:recalled., +13:u04:recalled., +13:u00:occurred., +13:u12:recalled., +13:u03:recalled., +13:u11:recalled., +13:u02:recalled., +13:u10:recalled., +13:u01:recalled., +13:u00:recalled., +7:uI2:)(,, +7:uI1:)(,, +7:uI0:)(,, +15:u08:alternative, +11:u08:quotas., +11:u07:quotas., +15:u07:alternative, +11:u06:quotas., +15:u06:alternative, +11:u05:quotas., +15:u14:alternative, +15:u05:alternative, +11:u04:quotas., +15:u13:alternative, +15:u04:alternative, +11:u03:quotas., +9:u08:size., +15:u12:alternative, +7:u22:alt, +8:u23:alte, +15:u03:alternative, +11:u02:quotas., +9:u07:size., +15:u11:alternative, +15:u02:alternative, +11:u01:quotas., +9:u06:size., +15:u10:alternative, +9:u14:block, +15:u01:alternative, +11:u00:quotas., +9:u05:size., +9:u13:block, +15:u00:alternative, +9:u04:size., +9:u12:block, +6:u21:bl, +7:u22:blo, +8:u23:bloc, +9:u03:size., +8:u08:207], +9:u11:block, +9:u02:size., +8:u07:207], +9:u10:block, +9:u01:size., +8:u06:207], +9:u00:size., +8:u05:207], +8:u04:207], +16:u08:delegations., +8:u03:207], +16:u07:delegations., +8:u02:207], +16:u06:delegations., +8:u01:207], +16:u05:delegations., +8:u00:207], +16:u04:delegations., +16:u03:delegations., +16:u02:delegations., +16:u01:delegations., +16:u00:delegations., +10:u08:close., +10:u07:close., +10:u06:close., +10:u05:close., +10:u04:close., +10:u03:close., +12:u08:tracking, +10:u02:close., +10:u01:close., +12:u07:tracking, +10:u00:close., +12:u06:tracking, +11:u08:10.4.2., +12:u14:tracking, +12:u05:tracking, +12:u13:tracking, +12:u04:tracking, +11:u07:10.4.2., +12:u12:tracking, +8:u23:trac, +12:u03:tracking, +11:u06:10.4.2., +12:u11:tracking, +11:u14:10.4.2., +12:u02:tracking, +11:u05:10.4.2., +12:u10:tracking, +11:u13:10.4.2., +12:u01:tracking, +11:u04:10.4.2., +11:u12:10.4.2., +12:u00:tracking, +11:u03:10.4.2., +17:u08:revalidations, +11:u11:10.4.2., +11:u02:10.4.2., +17:u07:revalidations, +11:u10:10.4.2., +11:u14:implies, +11:u01:10.4.2., +17:u06:revalidations, +11:u13:implies, +11:u00:10.4.2., +17:u05:revalidations, +11:u12:implies, +17:u04:revalidations, +11:u11:implies, +15:u08:resolution., +17:u03:revalidations, +17:u08:non-exclusive, +11:u10:implies, +11:u08:10.4.3., +17:u02:revalidations, +17:u07:non-exclusive, +15:u07:resolution., +17:u01:revalidations, +17:u06:non-exclusive, +15:u06:resolution., +11:u07:10.4.3., +17:u00:revalidations, +17:u05:non-exclusive, +15:u14:resolution., +15:u05:resolution., +11:u06:10.4.3., +11:u08:effect., +17:u04:non-exclusive, +15:u13:resolution., +11:u14:10.4.3., +15:u04:resolution., +11:u05:10.4.3., +17:u03:non-exclusive, +15:u12:resolution., +11:u13:10.4.3., +15:u03:resolution., +11:u04:10.4.3., +11:u07:effect., +17:u02:non-exclusive, +15:u11:resolution., +11:u12:10.4.3., +15:u02:resolution., +11:u03:10.4.3., +11:u06:effect., +13:u08:submitted, +17:u01:non-exclusive, +15:u10:resolution., +11:u11:10.4.3., +11:u14:effect., +15:u01:resolution., +11:u02:10.4.3., +11:u05:effect., +17:u00:non-exclusive, +11:u10:10.4.3., +11:u13:effect., +15:u00:resolution., +11:u01:10.4.3., +11:u04:effect., +13:u07:submitted, +11:u12:effect., +11:u00:10.4.3., +11:u03:effect., +13:u06:submitted, +11:u11:effect., +13:u14:submitted, +11:u02:effect., +13:u05:submitted, +11:u10:effect., +13:u13:submitted, +11:u01:effect., +13:u04:submitted, +8:u08:208], +13:u12:submitted, +8:u23:subm, +11:u00:effect., +13:u03:submitted, +8:u07:208], +13:u11:submitted, +13:u02:submitted, +8:u06:208], +13:u10:submitted, +13:u01:submitted, +8:u05:208], +13:u00:submitted, +8:u04:208], +8:u03:208], +8:u02:208], +14:u08:CB_GETATTR, +8:u01:208], +14:u07:CB_GETATTR, +8:u00:208], +14:u06:CB_GETATTR, +11:u08:satisfy, +14:u05:CB_GETATTR, +14:u04:CB_GETATTR, +11:u07:satisfy, +14:u03:CB_GETATTR, +11:u06:satisfy, +14:u02:CB_GETATTR, +11:u14:satisfy, +11:u05:satisfy, +14:u01:CB_GETATTR, +11:u13:satisfy, +10:u14:stored, +11:u04:satisfy, +14:u00:CB_GETATTR, +11:u12:satisfy, +10:u13:stored, +7:u22:sat, +8:u23:sati, +11:u03:satisfy, +11:u11:satisfy, +10:u12:stored, +11:u02:satisfy, +11:u10:satisfy, +10:u11:stored, +11:u01:satisfy, +10:u10:stored, +11:u00:satisfy, +15:u08:delegation:, +15:u07:delegation:, +15:u06:delegation:, +11:u08:cached., +15:u05:delegation:, +11:u07:cached., +15:u04:delegation:, +11:u06:cached., +17:u08:communicating, +15:u03:delegation:, +11:u05:cached., +17:u07:communicating, +15:u02:delegation:, +11:u04:cached., +17:u06:communicating, +15:u01:delegation:, +11:u03:cached., +17:u05:communicating, +15:u00:delegation:, +11:u02:cached., +17:u04:communicating, +11:u01:cached., +17:u03:communicating, +11:u00:cached., +17:u02:communicating, +17:u01:communicating, +14:u08:simplicity, +17:u00:communicating, +14:u07:simplicity, +14:u06:simplicity, +14:u05:simplicity, +14:u04:simplicity, +14:u14:cb_getattr, +5:u08:d, +14:u03:simplicity, +14:u13:cb_getattr, +14:u02:simplicity, +14:u12:cb_getattr, +8:u23:CB_G, +5:u07:d, +14:u01:simplicity, +14:u11:cb_getattr, +5:u06:d, +14:u00:simplicity, +14:u10:cb_getattr, +5:u14:d, +5:u05:d, +9:u08:with,, +5:u13:d, +5:u04:d, +9:u07:with,, +5:u12:d, +5:u21:d, +5:u22:d, +5:u23:d, +5:u03:d, +9:u06:with,, +5:u11:d, +5:u02:d, +9:u05:with,, +5:u10:d, +5:u01:d, +9:u04:with,, +8:u08:209], +5:u00:d, +9:u03:with,, +8:u07:209], +9:u02:with,, +8:u06:209], +9:u01:with,, +8:u05:209], +9:u00:with,, +8:u04:209], +8:u03:209], +8:u02:209], +8:u01:209], +8:u00:209], +13:u08:construct, +13:u07:construct, +13:u06:construct, +13:u14:construct, +13:u05:construct, +18:u08:time_metadata,, +13:u13:construct, +13:u04:construct, +8:u08:nsc., +18:u07:time_metadata,, +13:u12:construct, +13:u03:construct, +18:u06:time_metadata,, +13:u11:construct, +13:u02:construct, +8:u07:nsc., +18:u05:time_metadata,, +13:u10:construct, +13:u01:construct, +8:u06:nsc., +18:u04:time_metadata,, +8:u14:nsc., +13:u00:construct, +8:u05:nsc., +18:u03:time_metadata,, +8:u13:nsc., +8:u04:nsc., +18:u02:time_metadata,, +8:u12:nsc., +7:u22:nsc, +8:u23:nsc., +8:u03:nsc., +16:u08:performance,, +18:u01:time_metadata,, +8:u11:nsc., +8:u02:nsc., +18:u00:time_metadata,, +14:u08:committing, +8:u10:nsc., +8:u01:nsc., +16:u07:performance,, +14:u07:committing, +8:u00:nsc., +16:u06:performance,, +6:u08:cc, +14:u06:committing, +16:u14:performance,, +16:u05:performance,, +14:u05:committing, +16:u13:performance,, +16:u04:performance,, +6:u07:cc, +14:u04:committing, +16:u12:performance,, +16:u03:performance,, +6:u06:cc, +14:u03:committing, +16:u11:performance,, +6:u14:cc, +16:u02:performance,, +6:u05:cc, +14:u02:committing, +16:u10:performance,, +6:u13:cc, +16:u01:performance,, +6:u04:cc, +14:u01:committing, +7:u08:nsc, +6:u12:cc, +6:u21:cc, +6:u22:cc, +6:u23:cc, +16:u00:performance,, +6:u03:cc, +14:u00:committing, +7:u07:nsc, +6:u11:cc, +6:u02:cc, +15:u08:"modified"), +7:u06:nsc, +6:u10:cc, +6:u01:cc, +7:u05:nsc, +6:u00:cc, +15:u07:"modified"), +7:u04:nsc, +15:u06:"modified"), +7:u03:nsc, +15:u14:"modified"), +15:u05:"modified"), +7:u02:nsc, +8:u08:210], +15:u13:"modified"), +8:uI2:""),, +15:u04:"modified"), +7:u01:nsc, +8:u07:210], +15:u12:"modified"), +7:u22:"mo, +8:u23:"mod, +8:uI1:""),, +15:u03:"modified"), +7:u00:nsc, +8:u06:210], +15:u11:"modified"), +8:uI0:""),, +15:u02:"modified"), +8:u05:210], +15:u10:"modified"), +15:u01:"modified"), +8:u04:210], +6:u08:sc, +15:u00:"modified"), +8:u03:210], +6:u07:sc, +8:u02:210], +6:u06:sc, +8:u08:stay, +8:u01:210], +6:u05:sc, +8:u07:stay, +8:u00:210], +6:u04:sc, +8:u06:stay, +6:uI2:!,, +6:u03:sc, +8:u05:stay, +15:u08:(!modified), +6:uI1:!,, +6:u02:sc, +8:u04:stay, +15:u07:(!modified), +6:uI0:!,, +6:u01:sc, +8:u03:stay, +15:u06:(!modified), +7:u08:(cc, +6:u00:sc, +8:u02:stay, +15:u05:(!modified), +7:u07:(cc, +7:uI2:(!), +8:u01:stay, +15:u04:(!modified), +7:u06:(cc, +7:uI1:(!), +8:u00:stay, +15:u03:(!modified), +7:u05:(cc, +7:uI0:(!), +15:u02:(!modified), +7:u04:(cc, +15:u01:(!modified), +7:u03:(cc, +14:u08:(modified), +15:u00:(!modified), +7:u02:(cc, +14:u07:(modified), +7:u01:(cc, +14:u06:(modified), +7:u00:(cc, +14:u05:(modified), +7:u08:sc,, +6:u14:sc, +14:u04:(modified), +7:u07:sc,, +6:u13:sc, +14:u03:(modified), +7:u06:sc,, +6:u12:sc, +6:u22:sc, +6:u23:sc, +14:u02:(modified), +7:u05:sc,, +6:u11:sc, +8:uI2:,,';, +14:u01:(modified), +7:u04:sc,, +6:u10:sc, +8:uI1:,,';, +14:u00:(modified), +7:u03:sc,, +8:uI0:,,';, +7:u02:sc,, +7:u01:sc,, +7:u00:sc,, +15:u08:methodology, +9:u08:down., +15:u07:methodology, +15:u06:methodology, +9:u07:down., +15:u08:CB_GETATTR,, +15:u05:methodology, +9:u06:down., +15:u04:methodology, +9:u14:down., +9:u05:down., +15:u07:CB_GETATTR,, +11:u08:10.4.4., +15:u03:methodology, +9:u13:down., +9:u04:down., +15:u06:CB_GETATTR,, +15:u02:methodology, +10:u08:Recall, +9:u12:down., +15:u14:cb_getattr,, +9:u03:down., +15:u05:CB_GETATTR,, +11:u07:10.4.4., +15:u01:methodology, +10:u07:Recall, +9:u11:down., +15:u13:cb_getattr,, +9:u02:down., +15:u04:CB_GETATTR,, +11:u06:10.4.4., +15:u00:methodology, +10:u06:Recall, +15:u08:potentially, +9:u10:down., +15:u12:cb_getattr,, +11:u14:10.4.4., +9:u01:down., +15:u03:CB_GETATTR,, +11:u05:10.4.4., +10:u05:Recall, +15:u07:potentially, +15:u11:cb_getattr,, +11:u13:10.4.4., +9:u00:down., +15:u02:CB_GETATTR,, +11:u04:10.4.4., +10:u04:Recall, +15:u06:potentially, +15:u10:cb_getattr,, +11:u12:10.4.4., +15:u01:CB_GETATTR,, +11:u03:10.4.4., +10:u03:Recall, +15:u05:potentially, +11:u11:10.4.4., +15:u00:CB_GETATTR,, +11:u02:10.4.4., +10:u02:Recall, +15:u04:potentially, +11:u10:10.4.4., +11:u01:10.4.4., +10:u01:Recall, +15:u03:potentially, +8:u08:211], +11:u00:10.4.4., +10:u00:Recall, +15:u02:potentially, +8:u07:211], +15:u01:potentially, +8:u06:211], +15:u00:potentially, +8:u05:211], +8:u04:211], +8:u03:211], +8:u02:211], +8:u01:211], +8:u00:211], +13:u08:advisable, +13:u07:advisable, +13:u06:advisable, +13:u14:advisable, +13:u05:advisable, +13:u13:advisable, +15:u14:possibility, +13:u04:advisable, +13:u12:advisable, +15:u13:possibility, +13:u03:advisable, +9:u08:dealt, +16:u08:voluntarily., +13:u11:advisable, +15:u12:possibility, +13:u02:advisable, +16:u07:voluntarily., +13:u10:advisable, +15:u11:possibility, +13:u01:advisable, +9:u07:dealt, +16:u06:voluntarily., +15:u10:possibility, +13:u00:advisable, +9:u06:dealt, +16:u05:voluntarily., +9:u14:dealt, +9:u05:dealt, +16:u04:voluntarily., +9:u13:dealt, +9:u04:dealt, +16:u03:voluntarily., +9:u12:dealt, +9:u03:dealt, +16:u02:voluntarily., +9:u11:dealt, +9:u02:dealt, +16:u01:voluntarily., +9:u10:dealt, +9:u01:dealt, +16:u00:voluntarily., +9:u00:dealt, +13:u08:details.), +13:u07:details.), +13:u06:details.), +13:u14:details.), +8:uI2:(.,,, +13:u05:details.), +13:u13:details.), +8:uI1:(.,,, +13:u04:details.), +13:u12:details.), +8:uI0:(.,,, +13:u03:details.), +28:u08:OPEN4_SHARE_ACCESS_BOTH,, +13:u11:details.), +13:u02:details.), +11:u08:flushed, +13:u10:details.), +13:u01:details.), +28:u07:OPEN4_SHARE_ACCESS_BOTH,, +13:u00:details.), +28:u06:OPEN4_SHARE_ACCESS_BOTH,, +11:u07:flushed, +28:u14:open4_share_access_both,, +28:u05:OPEN4_SHARE_ACCESS_BOTH,, +11:u06:flushed, +28:u13:open4_share_access_both,, +11:u14:flushed, +28:u04:OPEN4_SHARE_ACCESS_BOTH,, +11:u05:flushed, +28:u12:open4_share_access_both,, +11:u13:flushed, +28:u03:OPEN4_SHARE_ACCESS_BOTH,, +11:u04:flushed, +8:u08:212], +28:u11:open4_share_access_both,, +11:u12:flushed, +7:u22:flu, +8:u23:flus, +28:u02:OPEN4_SHARE_ACCESS_BOTH,, +11:u03:flushed, +8:u07:212], +28:u10:open4_share_access_both,, +11:u11:flushed, +28:u01:OPEN4_SHARE_ACCESS_BOTH,, +11:u02:flushed, +8:u06:212], +11:u10:flushed, +28:u00:OPEN4_SHARE_ACCESS_BOTH,, +11:u01:flushed, +8:u05:212], +11:u00:flushed, +8:u04:212], +8:u03:212], +8:u02:212], +8:u01:212], +8:u00:212], +13:u08:UNCHECKED, +13:u07:UNCHECKED, +14:u08:truncation, +13:u06:UNCHECKED, +14:u07:truncation, +14:u08:propagated, +13:u05:UNCHECKED, +14:u06:truncation, +14:u07:propagated, +11:u08:imposes, +13:u04:UNCHECKED, +14:u05:truncation, +14:u06:propagated, +13:u03:UNCHECKED, +14:u04:truncation, +14:u05:propagated, +11:u07:imposes, +13:u02:UNCHECKED, +14:u03:truncation, +14:u04:propagated, +11:u06:imposes, +13:u01:UNCHECKED, +14:u02:truncation, +14:u03:propagated, +11:u14:imposes, +11:u05:imposes, +13:u00:UNCHECKED, +14:u01:truncation, +14:u02:propagated, +11:u13:imposes, +11:u04:imposes, +14:u00:truncation, +14:u01:propagated, +11:u12:imposes, +11:u03:imposes, +14:u00:propagated, +11:u11:imposes, +11:u02:imposes, +12:u08:released, +11:u10:imposes, +11:u01:imposes, +11:u00:imposes, +12:u07:released, +12:u08:decision, +12:u06:released, +12:u14:released, +12:u05:released, +12:u07:decision, +12:u08:actions,, +12:u13:released, +12:u04:released, +12:u06:decision, +12:u07:actions,, +16:u08:constraints), +12:u12:released, +12:u14:decision, +12:u03:released, +12:u05:decision, +12:u06:actions,, +16:u07:constraints), +12:u11:released, +12:u13:decision, +12:u02:released, +12:u04:decision, +10:u08:closes, +12:u05:actions,, +16:u06:constraints), +12:u10:released, +12:u12:decision, +8:u23:deci, +12:u01:released, +12:u03:decision, +12:u04:actions,, +16:u05:constraints), +12:u11:decision, +8:uI2:).,,, +12:u00:released, +12:u02:decision, +10:u07:closes, +12:u03:actions,, +16:u04:constraints), +12:u10:decision, +8:uI1:).,,, +12:u01:decision, +10:u06:closes, +15:u08:utilization, +12:u02:actions,, +16:u03:constraints), +10:u14:closes, +8:uI0:).,,, +12:u00:decision, +10:u05:closes, +11:u08:choices, +12:u01:actions,, +16:u02:constraints), +10:u13:closes, +10:u04:closes, +15:u07:utilization, +12:u00:actions,, +16:u01:constraints), +10:u12:closes, +10:u03:closes, +15:u06:utilization, +11:u07:choices, +16:u00:constraints), +10:u11:closes, +15:u14:utilization, +10:u02:closes, +15:u05:utilization, +11:u06:choices, +11:u08:actions, +10:u10:closes, +15:u13:utilization, +11:u14:choices, +10:u01:closes, +15:u04:utilization, +11:u05:choices, +15:u12:utilization, +11:u13:choices, +7:u22:uti, +8:u23:util, +10:u00:closes, +15:u03:utilization, +11:u04:choices, +11:u07:actions, +11:u08:10.4.5., +15:u11:utilization, +11:u12:choices, +15:u14:corresponds, +15:u02:utilization, +11:u03:choices, +11:u06:actions, +15:u10:utilization, +11:u11:choices, +15:u13:corresponds, +11:u14:actions, +15:u01:utilization, +11:u02:choices, +11:u05:actions, +11:u07:10.4.5., +11:u10:choices, +15:u12:corresponds, +11:u13:actions, +15:u00:utilization, +11:u01:choices, +11:u04:actions, +11:u06:10.4.5., +15:u11:corresponds, +11:u12:actions, +11:u14:10.4.5., +11:u00:choices, +11:u03:actions, +11:u05:10.4.5., +13:u08:awareness, +15:u10:corresponds, +11:u11:actions, +11:u13:10.4.5., +11:u02:actions, +11:u04:10.4.5., +11:u10:actions, +11:u12:10.4.5., +11:u01:actions, +11:u03:10.4.5., +13:u07:awareness, +11:u11:10.4.5., +11:u00:actions, +11:u02:10.4.5., +13:u06:awareness, +11:u10:10.4.5., +13:u14:awareness, +11:u01:10.4.5., +13:u05:awareness, +13:u13:awareness, +11:u00:10.4.5., +13:u04:awareness, +13:u12:awareness, +8:u23:awar, +13:u03:awareness, +13:u11:awareness, +14:u14:especially, +13:u02:awareness, +13:u10:awareness, +14:u13:especially, +13:u01:awareness, +8:u08:213], +14:u12:especially, +7:u22:esp, +8:u23:espe, +13:u00:awareness, +8:u07:213], +14:u11:especially, +8:u06:213], +14:u10:especially, +8:u05:213], +8:u04:213], +8:u03:213], +8:u02:213], +28:u08:SEQ4_STATUS_CB_PATH_DOWN, +8:u01:213], +13:u14:alternate, +8:u00:213], +13:u13:alternate, +28:u07:SEQ4_STATUS_CB_PATH_DOWN, +14:u08:recallable, +13:u12:alternate, +28:u06:SEQ4_STATUS_CB_PATH_DOWN, +16:u08:established., +13:u11:alternate, +28:u14:seq4_status_cb_path_down, +28:u05:SEQ4_STATUS_CB_PATH_DOWN, +14:u07:recallable, +13:u10:alternate, +28:u13:seq4_status_cb_path_down, +28:u04:SEQ4_STATUS_CB_PATH_DOWN, +14:u06:recallable, +16:u07:established., +28:u12:seq4_status_cb_path_down, +28:u03:SEQ4_STATUS_CB_PATH_DOWN, +14:u05:recallable, +16:u06:established., +28:u11:seq4_status_cb_path_down, +16:u14:established., +28:u02:SEQ4_STATUS_CB_PATH_DOWN, +14:u04:recallable, +16:u05:established., +28:u10:seq4_status_cb_path_down, +16:u13:established., +28:u01:SEQ4_STATUS_CB_PATH_DOWN, +14:u03:recallable, +16:u04:established., +16:u12:established., +28:u00:SEQ4_STATUS_CB_PATH_DOWN, +14:u02:recallable, +16:u03:established., +16:u11:established., +14:u01:recallable, +16:u02:established., +16:u10:established., +14:u00:recallable, +16:u01:established., +16:u00:established., +8:u14:down, +8:u13:down, +11:u08:10.4.6., +8:u12:down, +8:u11:down, +11:u07:10.4.6., +8:u10:down, +11:u06:10.4.6., +11:u14:10.4.6., +11:u05:10.4.6., +11:u13:10.4.6., +11:u04:10.4.6., +11:u12:10.4.6., +11:u03:10.4.6., +11:u11:10.4.6., +11:u02:10.4.6., +11:u10:10.4.6., +11:u01:10.4.6., +11:u00:10.4.6., +25:u14:open4_share_deny_none, +12:u08:granted,, +25:u13:open4_share_deny_none, +25:u12:open4_share_deny_none, +12:u07:granted,, +25:u11:open4_share_deny_none, +12:u06:granted,, +25:u10:open4_share_deny_none, +12:u14:granted,, +12:u05:granted,, +12:u13:granted,, +12:u04:granted,, +12:u12:granted,, +12:u03:granted,, +12:u11:granted,, +12:u02:granted,, +12:u10:granted,, +12:u01:granted,, +12:u00:granted,, +8:u08:214], +8:u07:214], +8:u06:214], +8:u05:214], +8:u04:214], +11:u08:10.4.7., +8:u03:214], +8:u02:214], +11:u07:10.4.7., +8:u01:214], +11:u06:10.4.7., +8:u00:214], +11:u14:10.4.7., +11:u05:10.4.7., +12:u08:OPTIONAL, +11:u13:10.4.7., +11:u04:10.4.7., +12:u07:OPTIONAL, +11:u12:10.4.7., +11:u03:10.4.7., +12:u06:OPTIONAL, +11:u11:10.4.7., +11:u02:10.4.7., +12:u05:OPTIONAL, +11:u10:10.4.7., +11:u01:10.4.7., +12:u04:OPTIONAL, +11:u00:10.4.7., +12:u03:OPTIONAL, +9:u08:that., +12:u02:OPTIONAL, +9:u07:that., +12:u01:OPTIONAL, +9:u06:that., +12:u00:OPTIONAL, +9:u05:that., +15:u08:subordinate, +9:u04:that., +9:u03:that., +15:u07:subordinate, +9:u02:that., +15:u06:subordinate, +9:u01:that., +15:u14:subordinate, +15:u05:subordinate, +9:u00:that., +15:u13:subordinate, +15:u04:subordinate, +15:u12:subordinate, +15:u03:subordinate, +15:u11:subordinate, +10:u14:locks., +15:u02:subordinate, +15:u10:subordinate, +10:u13:locks., +15:u01:subordinate, +14:u08:callbacks,, +10:u12:locks., +15:u00:subordinate, +14:u07:callbacks,, +10:u11:locks., +14:u06:callbacks,, +10:u10:locks., +14:u05:callbacks,, +14:u04:callbacks,, +14:u03:callbacks,, +14:u02:callbacks,, +14:u01:callbacks,, +14:u00:callbacks,, +15:u08:state-owner, +14:u14:successful, +15:u07:state-owner, +14:u13:successful, +15:u06:state-owner, +14:u12:successful, +15:u14:state-owner, +15:u05:state-owner, +14:u11:successful, +15:u13:state-owner, +15:u04:state-owner, +14:u10:successful, +15:u12:state-owner, +15:u03:state-owner, +15:u11:state-owner, +15:u02:state-owner, +15:u10:state-owner, +15:u01:state-owner, +15:u00:state-owner, +8:u08:215], +8:u07:215], +8:u06:215], +8:u05:215], +8:u04:215], +8:u03:215], +8:u02:215], +8:u01:215], +14:u08:Obviously,, +16:u08:Notification, +8:u00:215], +14:u07:Obviously,, +14:u06:Obviously,, +16:u07:Notification, +14:u05:Obviously,, +16:u06:Notification, +14:u04:Obviously,, +16:u05:Notification, +14:u03:Obviously,, +16:u04:Notification, +14:u02:Obviously,, +16:u03:Notification, +14:u01:Obviously,, +16:u02:Notification, +13:u08:Depending, +14:u00:Obviously,, +16:u01:Notification, +16:u00:Notification, +13:u07:Depending, +12:u08:logging,, +16:u08:environment,, +13:u06:Depending, +11:u08:10.5.1., +16:u07:environment,, +11:u08:console, +13:u05:Depending, +12:u07:logging,, +14:u08:Revocation, +16:u06:environment,, +11:u07:console, +13:u04:Depending, +12:u06:logging,, +11:u07:10.5.1., +16:u05:environment,, +11:u06:console, +14:u07:Revocation, +12:u14:logging,, +7:u22:Dep, +8:u23:Depe, +13:u03:Depending, +12:u05:logging,, +11:u06:10.5.1., +16:u04:environment,, +11:u05:console, +14:u06:Revocation, +9:u08:issue, +12:u13:logging,, +11:u14:10.5.1., +8:uI2:,,-., +13:u02:Depending, +12:u04:logging,, +11:u05:10.5.1., +16:u03:environment,, +11:u04:console, +14:u05:Revocation, +9:u07:issue, +12:u12:logging,, +11:u13:10.5.1., +8:u23:logg, +8:uI1:,,-., +13:u01:Depending, +12:u03:logging,, +11:u04:10.5.1., +16:u02:environment,, +11:u03:console, +14:u04:Revocation, +9:u06:issue, +12:u11:logging,, +11:u12:10.5.1., +8:uI0:,,-., +13:u00:Depending, +12:u02:logging,, +11:u03:10.5.1., +15:u08:revocation., +16:u01:environment,, +11:u02:console, +14:u03:Revocation, +9:u05:issue, +12:u10:logging,, +11:u11:10.5.1., +7:u22:Rev, +8:u23:Revo, +12:u01:logging,, +11:u02:10.5.1., +11:u08:correct, +16:u00:environment,, +11:u01:console, +14:u02:Revocation, +9:u04:issue, +11:u10:10.5.1., +12:u00:logging,, +11:u01:10.5.1., +15:u07:revocation., +11:u00:console, +14:u01:Revocation, +9:u03:issue, +13:u08:problems,, +11:u00:10.5.1., +15:u06:revocation., +11:u07:correct, +14:u00:Revocation, +9:u02:issue, +13:u07:problems,, +15:u14:revocation., +15:u05:revocation., +11:u06:correct, +9:u01:issue, +13:u06:problems,, +15:u13:revocation., +11:u14:correct, +15:u04:revocation., +11:u05:correct, +9:u00:issue, +13:u05:problems,, +15:u12:revocation., +11:u13:correct, +15:u03:revocation., +11:u04:correct, +13:u04:problems,, +15:u11:revocation., +11:u12:correct, +15:u02:revocation., +11:u03:correct, +13:u03:problems,, +15:u10:revocation., +11:u11:correct, +15:u01:revocation., +11:u02:correct, +13:u02:problems,, +11:u10:correct, +15:u00:revocation., +11:u01:correct, +13:u01:problems,, +11:u00:correct, +13:u00:problems,, +12:u08:anything, +12:u07:anything, +10:u08:Saving, +12:u06:anything, +12:u05:anything, +10:u07:Saving, +12:u04:anything, +10:u06:Saving, +12:u03:anything, +10:u14:saving, +10:u05:Saving, +12:u02:anything, +10:u08:saving, +10:u13:saving, +10:u04:Saving, +12:u01:anything, +10:u07:saving, +10:u12:saving, +7:u22:Sav, +8:u23:Savi, +10:u03:Saving, +12:u00:anything, +10:u06:saving, +10:u11:saving, +10:u02:Saving, +10:u05:saving, +8:u08:216], +10:u10:saving, +10:u01:Saving, +10:u04:saving, +8:u07:216], +10:u00:Saving, +10:u03:saving, +8:u06:216], +10:u02:saving, +8:u05:216], +10:u01:saving, +8:u04:216], +13:u08:buffering, +10:u00:saving, +8:u03:216], +13:u07:buffering, +8:u02:216], +13:u06:buffering, +8:u01:216], +13:u05:buffering, +8:u00:216], +13:u04:buffering, +13:u03:buffering, +13:u02:buffering, +13:u01:buffering, +13:u00:buffering, +13:u08:reflected, +13:u07:reflected, +13:u06:reflected, +13:u05:reflected, +13:u04:reflected, +13:u08:CB_RECALL, +13:u03:reflected, +13:u02:reflected, +9:u08:call., +13:u07:CB_RECALL, +13:u01:reflected, +9:u07:call., +13:u06:CB_RECALL, +13:u00:reflected, +9:u06:call., +13:u14:cb_recall, +13:u05:CB_RECALL, +9:u05:call., +13:u13:cb_recall, +13:u04:CB_RECALL, +9:u04:call., +13:u12:cb_recall, +8:u23:CB_R, +13:u03:CB_RECALL, +9:u03:call., +11:u08:typical, +13:u11:cb_recall, +13:u02:CB_RECALL, +9:u02:call., +11:u07:typical, +13:u10:cb_recall, +13:u01:CB_RECALL, +15:u08:environment, +9:u01:call., +11:u06:typical, +13:u00:CB_RECALL, +9:u00:call., +11:u05:typical, +15:u07:environment, +11:u04:typical, +12:u08:managed., +15:u06:environment, +11:u03:typical, +12:u07:managed., +15:u14:environment, +15:u05:environment, +11:u02:typical, +12:u06:managed., +15:u13:environment, +15:u04:environment, +11:u01:typical, +12:u05:managed., +15:u12:environment, +15:u03:environment, +11:u00:typical, +12:u04:managed., +15:u11:environment, +15:u02:environment, +12:u03:managed., +15:u10:environment, +15:u01:environment, +12:u02:managed., +15:u00:environment, +12:u01:managed., +12:u00:managed., +8:u08:217], +8:u07:217], +8:u06:217], +8:u05:217], +8:u04:217], +8:u03:217], +8:u02:217], +8:u08:RPC., +8:u01:217], +8:u07:RPC., +15:u08:indirectly., +8:u00:217], +8:u06:RPC., +15:u07:indirectly., +8:u05:RPC., +15:u06:indirectly., +12:u08:READDIR,, +8:u04:RPC., +15:u05:indirectly., +8:u03:RPC., +15:u04:indirectly., +12:u07:READDIR,, +8:u02:RPC., +15:u03:indirectly., +12:u06:READDIR,, +12:u08:fetching, +8:u01:RPC., +15:u02:indirectly., +12:u14:readdir,, +12:u05:READDIR,, +8:u00:RPC., +15:u01:indirectly., +12:u13:readdir,, +12:u04:READDIR,, +12:u07:fetching, +15:u00:indirectly., +12:u12:readdir,, +12:u03:READDIR,, +12:u06:fetching, +12:u11:readdir,, +12:u14:fetching, +12:u02:READDIR,, +12:u05:fetching, +12:u10:readdir,, +12:u13:fetching, +12:u01:READDIR,, +12:u04:fetching, +12:u12:fetching, +7:u22:fet, +8:u23:fetc, +12:u00:READDIR,, +12:u03:fetching, +12:u11:fetching, +12:u02:fetching, +12:u10:fetching, +12:u01:fetching, +12:u00:fetching, +10:u08:(size,, +14:u08:intimately, +14:u07:intimately, +10:u07:(size,, +14:u06:intimately, +10:u06:(size,, +14:u05:intimately, +10:u14:(size,, +10:u05:(size,, +14:u04:intimately, +10:u13:(size,, +10:uI2:(,,).,, +10:u04:(size,, +14:u03:intimately, +10:u12:(size,, +7:u22:(si, +8:u23:(siz, +10:uI1:(,,).,, +10:u03:(size,, +14:u02:intimately, +10:u11:(size,, +10:uI0:(,,).,, +10:u02:(size,, +14:u01:intimately, +10:u10:(size,, +10:u01:(size,, +14:u00:intimately, +10:u00:(size,, +11:u14:object,, +11:u13:object,, +11:u12:object,, +11:u11:object,, +11:u10:object,, +9:u08:think, +9:u07:think, +14:u08:eventually, +9:u06:think, +9:u05:think, +14:u07:eventually, +9:u04:think, +14:u06:eventually, +9:u03:think, +14:u14:eventually, +14:u05:eventually, +15:u08:oscillating, +9:u02:think, +14:u13:eventually, +14:u04:eventually, +9:u01:think, +14:u12:eventually, +14:u03:eventually, +15:u07:oscillating, +9:u00:think, +14:u11:eventually, +14:u02:eventually, +15:u06:oscillating, +14:u10:eventually, +15:u14:oscillating, +14:u01:eventually, +15:u05:oscillating, +15:u13:oscillating, +14:u00:eventually, +15:u04:oscillating, +8:u08:218], +15:u12:oscillating, +6:u21:os, +7:u22:osc, +8:u23:osci, +15:u03:oscillating, +8:u07:218], +15:u11:oscillating, +15:u02:oscillating, +8:u06:218], +15:u10:oscillating, +15:u01:oscillating, +8:u05:218], +15:u00:oscillating, +8:u04:218], +8:u03:218], +8:u02:218], +13:u14:satisfied, +8:u01:218], +13:u13:satisfied, +8:u00:218], +7:u08:map, +13:u12:satisfied, +7:u07:map, +13:u11:satisfied, +7:u06:map, +13:u10:satisfied, +7:u05:map, +7:u04:map, +7:u03:map, +10:u14:occurs, +10:u08:fault,, +7:u02:map, +10:u13:occurs, +7:u01:map, +10:u12:occurs, +10:u07:fault,, +7:u00:map, +10:u11:occurs, +10:u06:fault,, +10:u10:occurs, +10:u14:fault,, +10:u05:fault,, +8:u08:page, +10:u13:fault,, +10:u04:fault,, +8:u07:page, +10:u12:fault,, +7:u22:fau, +8:u23:faul, +10:u03:fault,, +8:u06:page, +10:u11:fault,, +10:u02:fault,, +8:u05:page, +10:u10:fault,, +11:u14:updated, +10:u01:fault,, +8:u04:page, +17:u08:memory-mapped, +11:u13:updated, +10:u00:fault,, +8:u03:page, +17:u07:memory-mapped, +11:u12:updated, +8:u02:page, +17:u06:memory-mapped, +11:u11:updated, +8:u01:page, +17:u05:memory-mapped, +11:u10:updated, +8:uI2:-/.:, +8:u00:page, +17:u04:memory-mapped, +8:uI1:-/.:, +17:u03:memory-mapped, +8:uI0:-/.:, +17:u02:memory-mapped, +17:u01:memory-mapped, +14:u08:up-to-date, +13:u08:OPTIONAL., +17:u00:memory-mapped, +14:u07:up-to-date, +14:u06:up-to-date, +13:u07:OPTIONAL., +11:u08:instead, +14:u05:up-to-date, +13:u06:OPTIONAL., +14:u08:interface,, +14:u04:up-to-date, +13:u05:OPTIONAL., +11:u07:instead, +14:u03:up-to-date, +13:u04:OPTIONAL., +11:u06:instead, +14:u07:interface,, +14:u02:up-to-date, +11:u14:instead, +7:u22:OPT, +8:u23:OPTI, +13:u03:OPTIONAL., +11:u05:instead, +14:u06:interface,, +16:u08:disadvantage, +14:u01:up-to-date, +11:u13:instead, +14:u14:interface,, +13:u02:OPTIONAL., +11:u04:instead, +14:u05:interface,, +14:u00:up-to-date, +11:u12:instead, +14:u13:interface,, +13:u01:OPTIONAL., +11:u03:instead, +14:u04:interface,, +16:u07:disadvantage, +11:u11:instead, +14:u12:interface,, +13:u00:OPTIONAL., +11:u02:instead, +14:u03:interface,, +16:u06:disadvantage, +11:u10:instead, +14:u11:interface,, +16:u14:disadvantage, +11:u01:instead, +14:u02:interface,, +16:u05:disadvantage, +14:u10:interface,, +16:u13:disadvantage, +11:u00:instead, +14:u01:interface,, +16:u04:disadvantage, +7:u08:So,, +16:u12:disadvantage, +14:u00:interface,, +16:u03:disadvantage, +7:u07:So,, +16:u11:disadvantage, +16:u02:disadvantage, +14:u08:obligation, +7:u06:So,, +16:u10:disadvantage, +16:u01:disadvantage, +7:u05:So,, +16:u00:disadvantage, +14:u07:obligation, +7:u04:So,, +14:u06:obligation, +7:u03:So,, +14:u14:obligation, +14:u05:obligation, +7:u02:So,, +14:u13:obligation, +14:u04:obligation, +7:u01:So,, +8:u08:219], +14:u12:obligation, +14:u03:obligation, +7:u00:So,, +8:u07:219], +14:u11:obligation, +14:u02:obligation, +8:u06:219], +14:u10:obligation, +14:u01:obligation, +8:u05:219], +14:u00:obligation, +8:u04:219], +14:u08:successive, +8:u03:219], +14:u07:successive, +8:u02:219], +14:u06:successive, +8:u01:219], +14:u05:successive, +8:u00:219], +14:u04:successive, +9:u14:again, +14:u03:successive, +9:u13:again, +14:u02:successive, +9:u12:again, +14:u01:successive, +9:u11:again, +14:u00:successive, +9:u10:again, +8:u14:page, +8:u13:page, +8:u12:page, +7:u22:pag, +8:u23:page, +8:uI2:*()., +15:u08:byte-range., +8:u11:page, +8:uI1:*()., +8:u10:page, +8:uI0:*()., +15:u07:byte-range., +16:u08:Simultaneous, +15:u06:byte-range., +16:u07:Simultaneous, +15:u14:byte-range., +15:u05:byte-range., +16:u06:Simultaneous, +15:u13:byte-range., +15:u04:byte-range., +16:u05:Simultaneous, +15:u12:byte-range., +15:u03:byte-range., +13:u08:modified,, +16:u04:Simultaneous, +10:u08:memory, +15:u11:byte-range., +15:u02:byte-range., +16:u03:Simultaneous, +10:u07:memory, +15:u10:byte-range., +15:u01:byte-range., +13:u07:modified,, +16:u02:Simultaneous, +10:u06:memory, +15:u00:byte-range., +13:u06:modified,, +16:u01:Simultaneous, +10:u05:memory, +13:u14:modified,, +13:u05:modified,, +16:u00:Simultaneous, +10:u04:memory, +13:u13:modified,, +13:u04:modified,, +9:u08:page,, +10:u03:memory, +13:u12:modified,, +13:u03:modified,, +13:u08:Moreover,, +10:u02:memory, +13:u11:modified,, +13:u02:modified,, +9:u07:page,, +10:u01:memory, +13:u10:modified,, +13:u01:modified,, +9:u06:page,, +13:u07:Moreover,, +17:u08:instructions,, +10:u00:memory, +12:u08:problem., +9:u14:page,, +13:u00:modified,, +9:u05:page,, +13:u06:Moreover,, +12:u07:problem., +9:u13:page,, +13:u14:moreover,, +9:u04:page,, +13:u05:Moreover,, +17:u07:instructions,, +12:u06:problem., +9:u12:page,, +13:u13:moreover,, +9:u03:page,, +13:u04:Moreover,, +17:u06:instructions,, +20:u08:NFS4ERR_DEADLOCK, +12:u05:problem., +9:u11:page,, +13:u12:moreover,, +17:u14:instructions,, +9:u02:page,, +13:u03:Moreover,, +17:u05:instructions,, +12:u04:problem., +9:u10:page,, +13:u11:moreover,, +17:u13:instructions,, +9:u01:page,, +13:u02:Moreover,, +17:u04:instructions,, +20:u07:NFS4ERR_DEADLOCK, +12:u03:problem., +13:u10:moreover,, +17:u12:instructions,, +9:u00:page,, +13:u01:Moreover,, +17:u03:instructions,, +20:u06:NFS4ERR_DEADLOCK, +12:u02:problem., +17:u11:instructions,, +20:u14:nfs4err_deadlock, +13:u00:Moreover,, +17:u02:instructions,, +20:u05:NFS4ERR_DEADLOCK, +12:u01:problem., +17:u10:instructions,, +20:u13:nfs4err_deadlock, +17:u01:instructions,, +20:u04:NFS4ERR_DEADLOCK, +12:u00:problem., +20:u12:nfs4err_deadlock, +17:u00:instructions,, +20:u03:NFS4ERR_DEADLOCK, +20:u11:nfs4err_deadlock, +20:u02:NFS4ERR_DEADLOCK, +20:u10:nfs4err_deadlock, +20:u01:NFS4ERR_DEADLOCK, +8:u08:220], +20:u00:NFS4ERR_DEADLOCK, +8:u07:220], +8:u06:220], +8:u05:220], +8:u04:220], +8:u03:220], +8:u02:220], +8:u01:220], +18:u08:memory-mapped., +8:u14:know, +8:u00:220], +18:u07:memory-mapped., +8:u13:know, +18:u06:memory-mapped., +8:u12:know, +18:u05:memory-mapped., +8:u11:know, +18:u04:memory-mapped., +8:u10:know, +18:u03:memory-mapped., +18:u02:memory-mapped., +16:u08:implemented,, +18:u01:memory-mapped., +18:u00:memory-mapped., +16:u07:implemented,, +14:u08:understand, +7:uI2:.(., +16:u06:implemented,, +16:u14:implemented,, +7:uI1:.(., +16:u05:implemented,, +14:u07:understand, +16:u08:subsections., +16:u13:implemented,, +7:uI0:.(., +16:u04:implemented,, +14:u06:understand, +11:u08:10.8.1., +16:u12:implemented,, +14:u14:understand, +16:u03:implemented,, +14:u05:understand, +16:u07:subsections., +16:u11:implemented,, +14:u13:understand, +16:u02:implemented,, +14:u04:understand, +16:u06:subsections., +11:u07:10.8.1., +16:u10:implemented,, +14:u12:understand, +16:u14:subsections., +16:u01:implemented,, +14:u03:understand, +16:u05:subsections., +11:u06:10.8.1., +8:u08:cost, +14:u11:understand, +16:u13:subsections., +11:u14:10.8.1., +16:u00:implemented,, +14:u02:understand, +16:u04:subsections., +11:u05:10.8.1., +11:u08:caches., +8:u07:cost, +12:u08:caching,, +14:u10:understand, +16:u12:subsections., +11:u13:10.8.1., +14:u01:understand, +16:u03:subsections., +11:u04:10.8.1., +8:u06:cost, +12:u07:caching,, +16:u11:subsections., +11:u12:10.8.1., +14:u00:understand, +16:u02:subsections., +11:u03:10.8.1., +11:u07:caches., +8:u05:cost, +12:u06:caching,, +16:u10:subsections., +11:u11:10.8.1., +16:u01:subsections., +11:u02:10.8.1., +11:u06:caches., +8:u04:cost, +12:u05:caching,, +11:u10:10.8.1., +11:u14:caches., +16:u00:subsections., +11:u01:10.8.1., +11:u05:caches., +8:u03:cost, +12:u04:caching,, +11:u13:caches., +11:u00:10.8.1., +11:u04:caches., +8:u02:cost, +12:u03:caching,, +11:u12:caches., +11:u03:caches., +8:u01:cost, +12:u02:caching,, +11:u11:caches., +11:u02:caches., +8:u00:cost, +12:u01:caching,, +11:u10:caches., +11:u01:caches., +12:u00:caching,, +11:u00:caches., +9:u14:exist, +9:u13:exist, +9:u12:exist, +9:u11:exist, +9:u10:exist, +14:u08:atomically, +16:u14:change_info4, +14:u07:atomically, +16:u13:change_info4, +14:u06:atomically, +16:u12:change_info4, +14:u14:atomically, +14:u05:atomically, +16:u11:change_info4, +14:u13:atomically, +14:u04:atomically, +8:u08:221], +16:u10:change_info4, +14:u12:atomically, +14:u03:atomically, +8:u07:221], +14:u11:atomically, +14:u02:atomically, +8:u06:221], +14:u10:atomically, +14:u01:atomically, +16:u08:determining,, +8:u05:221], +14:u00:atomically, +8:u04:221], +16:u07:determining,, +8:u03:221], +16:u06:determining,, +8:u02:221], +16:u14:determining,, +16:u05:determining,, +8:u01:221], +16:u13:determining,, +16:u04:determining,, +8:u00:221], +16:u12:determining,, +16:u03:determining,, +16:u11:determining,, +16:u02:determining,, +16:u10:determining,, +16:u01:determining,, +16:u00:determining,, +16:u08:simultaneous, +16:u07:simultaneous, +16:u08:complicated., +16:u06:simultaneous, +16:u14:simultaneous, +16:u05:simultaneous, +16:u07:complicated., +14:u08:consistent, +16:u13:simultaneous, +16:u04:simultaneous, +16:u06:complicated., +16:u12:simultaneous, +16:u14:complicated., +16:u03:simultaneous, +16:u05:complicated., +14:u07:consistent, +11:u08:appears, +16:u11:simultaneous, +16:u13:complicated., +16:u02:simultaneous, +16:u04:complicated., +14:u06:consistent, +11:u07:appears, +16:u10:simultaneous, +16:u12:complicated., +14:u14:consistent, +16:u01:simultaneous, +16:u03:complicated., +14:u05:consistent, +9:u08:chain, +11:u06:appears, +16:u11:complicated., +14:u13:consistent, +16:u00:simultaneous, +16:u02:complicated., +14:u04:consistent, +11:u05:appears, +16:u10:complicated., +14:u12:consistent, +16:u01:complicated., +14:u03:consistent, +9:u07:chain, +11:u04:appears, +14:u11:consistent, +16:u00:complicated., +14:u02:consistent, +9:u06:chain, +11:u03:appears, +14:u10:consistent, +9:u14:chain, +14:u01:consistent, +9:u05:chain, +11:u02:appears, +9:u13:chain, +14:u00:consistent, +9:u04:chain, +11:u01:appears, +9:u12:chain, +8:u23:chai, +9:u03:chain, +11:u00:appears, +9:u11:chain, +9:u02:chain, +9:u10:chain, +9:u01:chain, +9:u00:chain, +16:u08:comparisons., +16:u07:comparisons., +16:u06:comparisons., +14:u08:revalidate, +16:u14:comparisons., +16:u05:comparisons., +14:u07:revalidate, +16:u13:comparisons., +16:u04:comparisons., +14:u06:revalidate, +16:u12:comparisons., +16:u03:comparisons., +14:u05:revalidate, +16:u11:comparisons., +16:u02:comparisons., +17:u08:appropriately, +14:u04:revalidate, +16:u10:comparisons., +16:u01:comparisons., +18:u08:post-operation, +14:u03:revalidate, +16:u00:comparisons., +17:u07:appropriately, +14:u02:revalidate, +17:u06:appropriately, +18:u07:post-operation, +14:u01:revalidate, +17:u14:appropriately, +17:u05:appropriately, +18:u06:post-operation, +14:u00:revalidate, +17:u13:appropriately, +18:u14:post-operation, +17:u04:appropriately, +18:u05:post-operation, +17:u12:appropriately, +18:u13:post-operation, +17:u03:appropriately, +18:u04:post-operation, +13:u08:reported,, +17:u11:appropriately, +18:u12:post-operation, +11:u14:respect, +17:u02:appropriately, +18:u03:post-operation, +13:u07:reported,, +17:u10:appropriately, +18:u11:post-operation, +11:u13:respect, +8:u14:fact, +17:u01:appropriately, +18:u02:post-operation, +13:u06:reported,, +18:u10:post-operation, +11:u12:respect, +8:u13:fact, +17:u00:appropriately, +18:u01:post-operation, +13:u05:reported,, +11:u11:respect, +8:u12:fact, +18:u00:post-operation, +13:u04:reported,, +8:u08:222], +11:u10:respect, +8:u11:fact, +13:u03:reported,, +8:u07:222], +8:u10:fact, +13:u02:reported,, +8:u06:222], +11:u08:10.8.2., +13:u01:reported,, +8:u05:222], +13:u00:reported,, +8:u04:222], +11:u07:10.8.2., +8:u03:222], +11:u06:10.8.2., +8:u02:222], +11:u14:10.8.2., +11:u05:10.8.2., +8:u01:222], +11:u13:10.8.2., +11:u04:10.8.2., +8:u00:222], +12:u08:mitigate, +11:u12:10.8.2., +11:u03:10.8.2., +13:u08:followed:, +12:u07:mitigate, +11:u11:10.8.2., +12:u14:caching,, +11:u02:10.8.2., +12:u06:mitigate, +11:u10:10.8.2., +12:u13:caching,, +11:u01:10.8.2., +13:u07:followed:, +12:u05:mitigate, +10:u08:Cached, +12:u12:caching,, +11:u00:10.8.2., +13:u06:followed:, +12:u04:mitigate, +10:u07:Cached, +12:u11:caching,, +13:u14:followed:, +13:u05:followed:, +12:u03:mitigate, +10:u06:Cached, +13:u08:contents., +12:u10:caching,, +13:u13:followed:, +13:u04:followed:, +12:u02:mitigate, +10:u05:Cached, +13:u07:contents., +13:u12:followed:, +13:u03:followed:, +12:u01:mitigate, +10:u04:Cached, +13:u06:contents., +13:u11:followed:, +13:u02:followed:, +12:u00:mitigate, +10:u03:Cached, +13:u05:contents., +13:u10:followed:, +13:u01:followed:, +10:u02:Cached, +13:u04:contents., +13:u00:followed:, +10:u01:Cached, +13:u03:contents., +10:u00:Cached, +13:u02:contents., +13:u01:contents., +13:u00:contents., +12:u08:checking, +12:u07:checking, +13:u08:adequate., +12:u06:checking, +13:u07:adequate., +16:u08:checkpoints., +12:u05:checking, +13:u06:adequate., +16:u07:checkpoints., +12:u04:checking, +13:u05:adequate., +16:u06:checkpoints., +12:u03:checking, +13:u04:adequate., +16:u05:checkpoints., +12:u02:checking, +13:u03:adequate., +16:u04:checkpoints., +12:u01:checking, +13:u02:adequate., +16:u03:checkpoints., +12:u00:checking, +13:u01:adequate., +16:u02:checkpoints., +13:u00:adequate., +16:u01:checkpoints., +16:u00:checkpoints., +8:u08:223], +8:u07:223], +8:u06:223], +11:u08:10.9.1., +8:u05:223], +8:u04:223], +11:u07:10.9.1., +8:u03:223], +11:u06:10.9.1., +8:u02:223], +11:u14:10.9.1., +11:u05:10.9.1., +8:u01:223], +11:u13:10.9.1., +11:u04:10.9.1., +8:u00:223], +11:u12:10.9.1., +11:u03:10.9.1., +11:u11:10.9.1., +11:u02:10.9.1., +12:u08:validate, +11:u10:10.9.1., +11:u01:10.9.1., +11:u00:10.9.1., +12:u07:validate, +12:u06:validate, +12:u14:validate, +12:u05:validate, +9:u08:inode, +12:u13:validate, +12:u04:validate, +12:u12:validate, +12:u03:validate, +9:u07:inode, +12:u11:validate, +13:u14:performed, +12:u02:validate, +9:u06:inode, +9:u08:calls, +12:u10:validate, +13:u13:performed, +9:u14:inode, +12:u01:validate, +9:u05:inode, +9:u07:calls, +13:u12:performed, +9:u13:inode, +12:u00:validate, +9:u04:inode, +9:u06:calls, +13:u11:performed, +9:u12:inode, +7:u22:ino, +8:u23:inod, +9:u03:inode, +9:u05:calls, +13:u10:performed, +9:u11:inode, +9:u02:inode, +9:u04:calls, +9:u10:inode, +9:u01:inode, +12:u08:promptly, +9:u03:calls, +9:u00:inode, +9:u02:calls, +12:u07:promptly, +9:u01:calls, +8:u08:miss, +12:u06:promptly, +9:u00:calls, +8:u07:miss, +12:u14:promptly, +12:u05:promptly, +8:u06:miss, +12:u13:promptly, +8:u14:high, +12:u04:promptly, +8:u05:miss, +12:u12:promptly, +8:u13:high, +8:u23:prom, +12:u03:promptly, +8:u04:miss, +12:u11:promptly, +8:u12:high, +12:u02:promptly, +8:u03:miss, +12:u10:promptly, +8:u11:high, +12:u01:promptly, +8:u02:miss, +8:u10:high, +12:u00:promptly, +8:u01:miss, +8:u00:miss, +13:u08:improving, +13:u07:improving, +13:u06:improving, +13:u14:improving, +13:u05:improving, +13:u13:improving, +13:u04:improving, +13:u12:improving, +13:u03:improving, +11:u08:absence, +12:u08:achieved, +13:u11:improving, +13:u02:improving, +15:u08:sufficient,, +12:u07:achieved, +13:u10:improving, +13:u01:improving, +11:u07:absence, +12:u06:achieved, +16:u08:asynchronous, +13:u00:improving, +11:u06:absence, +15:u07:sufficient,, +12:u05:achieved, +16:u07:asynchronous, +11:u14:absence, +11:u05:absence, +15:u06:sufficient,, +12:u04:achieved, +16:u06:asynchronous, +11:u13:absence, +15:u14:sufficient,, +11:u04:absence, +15:u05:sufficient,, +12:u03:achieved, +16:u05:asynchronous, +11:u12:absence, +15:u13:sufficient,, +12:u14:benefits, +8:u23:abse, +11:u03:absence, +15:u04:sufficient,, +12:u02:achieved, +16:u04:asynchronous, +11:u11:absence, +15:u12:sufficient,, +12:u13:benefits, +11:u02:absence, +15:u03:sufficient,, +12:u01:achieved, +16:u03:asynchronous, +11:u10:absence, +15:u11:sufficient,, +12:u12:benefits, +11:u01:absence, +15:u02:sufficient,, +12:u00:achieved, +16:u02:asynchronous, +8:u08:224], +15:u10:sufficient,, +12:u11:benefits, +11:u00:absence, +15:u01:sufficient,, +16:u01:asynchronous, +8:u07:224], +12:u10:benefits, +15:u00:sufficient,, +16:u00:asynchronous, +8:u06:224], +11:u08:10.9.2., +8:u05:224], +8:u04:224], +11:u07:10.9.2., +8:u03:224], +11:u06:10.9.2., +8:u02:224], +11:u14:10.9.2., +11:u05:10.9.2., +8:u01:224], +10:u08:covers, +11:u13:10.9.2., +11:u04:10.9.2., +8:u00:224], +10:u07:covers, +11:u12:10.9.2., +8:uI2:.(.), +11:u03:10.9.2., +10:u06:covers, +18:u08:synchronously., +11:u11:10.9.2., +8:uI1:.(.), +11:u02:10.9.2., +10:u05:covers, +18:u07:synchronously., +11:u10:10.9.2., +8:uI0:.(.), +11:u01:10.9.2., +10:u04:covers, +18:u06:synchronously., +11:u00:10.9.2., +10:u03:covers, +18:u05:synchronously., +10:u02:covers, +18:u04:synchronously., +10:u01:covers, +18:u03:synchronously., +10:u00:covers, +18:u02:synchronously., +17:u14:notifications, +18:u01:synchronously., +17:u13:notifications, +18:u00:synchronously., +17:u12:notifications, +7:uI2:'/., +17:u11:notifications, +7:uI1:'/., +10:u08:enough, +17:u10:notifications, +7:uI0:'/., +10:u07:enough, +10:u06:enough, +10:u05:enough, +10:u14:trying, +10:u04:enough, +10:u13:trying, +10:u03:enough, +10:u12:trying, +7:u22:try, +8:u23:tryi, +10:u02:enough, +10:u11:trying, +10:u01:enough, +10:u10:trying, +10:u00:enough, +22:u08:delegation-holding, +22:u07:delegation-holding, +22:u06:delegation-holding, +22:u14:delegation-holding, +22:u05:delegation-holding, +22:u13:delegation-holding, +22:u04:delegation-holding, +22:u12:delegation-holding, +22:u03:delegation-holding, +22:u11:delegation-holding, +14:u14:subsequent, +22:u02:delegation-holding, +22:u10:delegation-holding, +14:u13:subsequent, +22:u01:delegation-holding, +14:u12:subsequent, +22:u00:delegation-holding, +14:u11:subsequent, +14:u10:subsequent, +8:u08:sort, +8:u07:sort, +8:u06:sort, +8:u05:sort, +8:u04:sort, +8:u03:sort, +8:u02:sort, +8:u01:sort, +11:u14:removes, +8:u00:sort, +11:u13:removes, +8:u08:225], +11:u12:removes, +8:u23:remo, +8:u07:225], +11:u11:removes, +8:u06:225], +11:u10:removes, +11:u08:10.9.3., +8:u05:225], +8:u04:225], +11:u07:10.9.3., +8:u03:225], +11:u06:10.9.3., +11:u08:10.9.4., +8:u02:225], +18:u08:notifications., +11:u14:10.9.3., +11:u05:10.9.3., +8:u01:225], +18:u07:notifications., +11:u13:10.9.3., +11:u04:10.9.3., +11:u07:10.9.4., +8:u00:225], +18:u06:notifications., +11:u12:10.9.3., +11:u03:10.9.3., +11:u06:10.9.4., +13:u08:recalling, +18:u05:notifications., +11:u11:10.9.3., +11:u14:10.9.4., +11:u02:10.9.3., +11:u05:10.9.4., +18:u04:notifications., +11:u10:10.9.3., +11:u13:10.9.4., +11:u01:10.9.3., +11:u04:10.9.4., +13:u07:recalling, +17:u08:notification., +18:u03:notifications., +11:u12:10.9.4., +11:u00:10.9.3., +11:u03:10.9.4., +13:u06:recalling, +18:u02:notifications., +11:u11:10.9.4., +13:u14:recalling, +11:u02:10.9.4., +13:u05:recalling, +17:u07:notification., +18:u01:notifications., +11:u10:10.9.4., +13:u13:recalling, +11:u01:10.9.4., +13:u04:recalling, +17:u06:notification., +18:u00:notifications., +13:u12:recalling, +17:u14:notification., +11:u00:10.9.4., +13:u03:recalling, +17:u05:notification., +11:u08:causing, +13:u11:recalling, +17:u13:notification., +13:u02:recalling, +17:u04:notification., +11:u07:causing, +8:u08:hand, +13:u10:recalling, +17:u12:notification., +13:u01:recalling, +17:u03:notification., +11:u06:causing, +8:u07:hand, +17:u11:notification., +13:u00:recalling, +17:u02:notification., +11:u05:causing, +8:u06:hand, +17:u10:notification., +17:u01:notification., +11:u04:causing, +8:u05:hand, +17:u00:notification., +14:u08:situations, +11:u03:causing, +8:u04:hand, +11:u02:causing, +8:u03:hand, +16:u14:delegations., +14:u07:situations, +11:u01:causing, +8:u02:hand, +16:u13:delegations., +14:u06:situations, +11:u00:causing, +8:u01:hand, +16:u12:delegations., +14:u14:situations, +14:u05:situations, +8:u00:hand, +16:u11:delegations., +14:u13:situations, +14:u04:situations, +16:u10:delegations., +14:u12:situations, +14:u03:situations, +14:u11:situations, +14:u02:situations, +14:u10:situations, +14:u01:situations, +14:u00:situations, +11:u08:10.9.5., +11:u07:10.9.5., +11:u06:10.9.5., +11:u14:10.9.5., +11:u05:10.9.5., +11:u13:10.9.5., +11:u04:10.9.5., +11:u12:10.9.5., +11:u03:10.9.5., +11:u11:10.9.5., +11:u02:10.9.5., +13:u08:provision, +11:u10:10.9.5., +11:u01:10.9.5., +13:u07:provision, +11:u00:10.9.5., +13:u06:provision, +13:u05:provision, +13:u04:provision, +13:u03:provision, +8:u08:226], +13:u02:provision, +8:u07:226], +13:u01:provision, +8:u06:226], +13:u00:provision, +8:u05:226], +8:u04:226], +8:u03:226], +8:u02:226], +8:u01:226], +8:u00:226], +16:u08:multi-server, +16:u07:multi-server, +17:u08:single-server, +16:u06:multi-server, +17:u07:single-server, +13:u08:changing), +16:u05:multi-server, +17:u06:single-server, +12:u08:system's, +16:u04:multi-server, +17:u05:single-server, +12:u07:system's, +14:u08:logistical, +16:u14:multi-server, +13:u07:changing), +16:u03:multi-server, +17:u04:single-server, +12:u06:system's, +14:u07:logistical, +16:u13:multi-server, +13:u06:changing), +16:u02:multi-server, +17:u03:single-server, +12:u05:system's, +14:u06:logistical, +16:u12:multi-server, +13:u14:changing), +13:u05:changing), +16:u01:multi-server, +17:u02:single-server, +12:u04:system's, +14:u05:logistical, +16:u11:multi-server, +13:u13:changing), +13:u04:changing), +11:u08:"client, +16:u00:multi-server, +17:u01:single-server, +12:u03:system's, +14:u04:logistical, +16:u10:multi-server, +13:u12:changing), +13:u03:changing), +17:u00:single-server, +12:u02:system's, +14:u03:logistical, +7:u08:ID", +13:u11:changing), +13:u02:changing), +11:u07:"client, +12:u01:system's, +14:u02:logistical, +7:u07:ID", +13:u10:changing), +13:u01:changing), +11:u06:"client, +18:u08:nfs_client_id4, +12:u00:system's, +14:u01:logistical, +7:u06:ID", +11:u14:"client, +13:u00:changing), +11:u05:"client, +14:u00:logistical, +7:u05:ID", +11:u13:"client, +11:u04:"client, +18:u07:nfs_client_id4, +7:u04:ID", +11:u12:"client, +8:u23:"cli, +11:u03:"client, +18:u06:nfs_client_id4, +11:u08:11.1.1., +7:u03:ID", +6:u08:id, +11:u11:"client, +18:u14:nfs_client_id4, +11:u02:"client, +18:u05:nfs_client_id4, +7:u02:ID", +6:u07:id, +11:u10:"client, +18:u13:nfs_client_id4, +11:u01:"client, +18:u04:nfs_client_id4, +11:u07:11.1.1., +7:u01:ID", +6:u06:id, +18:u12:nfs_client_id4, +8:u23:nfs_, +11:u00:"client, +18:u03:nfs_client_id4, +11:u06:11.1.1., +7:u00:ID", +6:u05:id, +13:u08:detection, +18:u11:nfs_client_id4, +11:u14:11.1.1., +18:u02:nfs_client_id4, +11:u05:11.1.1., +9:u08:focus, +6:u04:id, +13:u07:detection, +18:u10:nfs_client_id4, +11:u13:11.1.1., +18:u01:nfs_client_id4, +11:u04:11.1.1., +6:u03:id, +13:u06:detection, +11:u12:11.1.1., +18:u00:nfs_client_id4, +11:u03:11.1.1., +9:u07:focus, +6:u02:id, +13:u05:detection, +11:u11:11.1.1., +11:u02:11.1.1., +9:u06:focus, +6:u01:id, +13:u04:detection, +11:u10:11.1.1., +9:u14:focus, +11:u01:11.1.1., +9:u05:focus, +6:u00:id, +13:u03:detection, +9:u13:focus, +11:u00:11.1.1., +9:u04:focus, +13:u02:detection, +9:u12:focus, +7:u22:foc, +8:u23:focu, +9:u03:focus, +13:u01:detection, +9:u11:focus, +9:u02:focus, +13:u00:detection, +9:u10:focus, +9:u01:focus, +9:u00:focus, +12:u08:facility, +12:u07:facility, +12:u06:facility, +12:u14:facility, +12:u05:facility, +12:u13:facility, +12:u04:facility, +12:u12:facility, +8:u23:faci, +12:u03:facility, +8:u08:227], +12:u11:facility, +12:u02:facility, +8:u07:227], +12:u10:facility, +12:u01:facility, +8:u06:227], +12:u00:facility, +8:u05:227], +8:u04:227], +8:u03:227], +8:u02:227], +8:u01:227], +11:u08:"server, +8:u00:227], +14:u08:endpoint"., +11:u07:"server, +14:u07:endpoint"., +11:u06:"server, +14:u06:endpoint"., +11:u14:"server, +11:u05:"server, +14:u05:endpoint"., +11:u13:"server, +11:u04:"server, +21:u08:server-trunkable., +14:u04:endpoint"., +11:u12:"server, +8:u23:"ser, +11:u03:"server, +13:u08:trunking,, +14:u03:endpoint"., +11:u11:"server, +11:u02:"server, +21:u07:server-trunkable., +14:u02:endpoint"., +11:u10:"server, +11:u01:"server, +21:u06:server-trunkable., +13:u07:trunking,, +14:u01:endpoint"., +21:u14:server-trunkable., +11:u00:"server, +21:u05:server-trunkable., +13:u06:trunking,, +14:u00:endpoint"., +21:u13:server-trunkable., +13:u14:trunking,, +21:u04:server-trunkable., +13:u05:trunking,, +13:u08:trunkable, +21:u12:server-trunkable., +13:u13:trunking,, +21:u03:server-trunkable., +13:u04:trunking,, +21:u11:server-trunkable., +13:u12:trunking,, +21:u02:server-trunkable., +13:u03:trunking,, +13:u07:trunkable, +21:u10:server-trunkable., +13:u11:trunking,, +21:u01:server-trunkable., +13:u02:trunking,, +13:u06:trunkable, +13:u10:trunking,, +13:u14:trunkable, +21:u00:server-trunkable., +13:u01:trunking,, +13:u05:trunkable, +13:u13:trunkable, +13:u00:trunking,, +13:u04:trunkable, +13:u12:trunkable, +13:u03:trunkable, +13:u11:trunkable, +13:u02:trunkable, +13:u10:trunkable, +13:u01:trunkable, +13:u00:trunkable, +11:u08:11.1.2., +13:u08:Regarding, +11:u07:11.1.2., +15:u08:terminology, +11:u06:11.1.2., +13:u07:Regarding, +15:u07:terminology, +11:u14:11.1.2., +11:u05:11.1.2., +13:u06:Regarding, +15:u06:terminology, +11:u13:11.1.2., +11:u04:11.1.2., +13:u05:Regarding, +15:u05:terminology, +11:u12:11.1.2., +11:u03:11.1.2., +13:u04:Regarding, +15:u04:terminology, +11:u11:11.1.2., +11:u02:11.1.2., +13:u03:Regarding, +15:u03:terminology, +11:u10:11.1.2., +11:u01:11.1.2., +13:u02:Regarding, +15:u02:terminology, +11:u00:11.1.2., +13:u01:Regarding, +15:u01:terminology, +13:u00:Regarding, +15:u00:terminology, +15:u14:constitutes, +15:u13:constitutes, +15:u12:constitutes, +15:u11:constitutes, +15:u10:constitutes, +8:u08:228], +8:u07:228], +8:u06:228], +8:u05:228], +14:u08:(described, +8:u04:228], +8:u03:228], +14:u07:(described, +8:u02:228], +12:u08:11.5.5),, +14:u06:(described, +8:u01:228], +12:u07:11.5.5),, +14:u14:(described, +14:u05:(described, +8:u00:228], +12:u06:11.5.5),, +14:u13:(described, +10:uI2:(..),(, +14:u04:(described, +12:u05:11.5.5),, +14:u12:(described, +8:u23:(des, +10:uI1:(..),(, +13:uI2:..),(..)., +14:u03:(described, +12:u04:11.5.5),, +14:u11:(described, +10:uI0:(..),(, +13:uI1:..),(..)., +14:u02:(described, +12:u03:11.5.5),, +14:u10:(described, +13:uI0:..),(..)., +14:u01:(described, +12:u02:11.5.5),, +14:u00:(described, +12:u01:11.5.5),, +7:uI2:'-,, +12:u00:11.5.5),, +7:uI1:'-,, +12:u14:servers., +7:uI0:'-,, +12:u13:servers., +12:u12:servers., +13:u08:locations, +12:u11:servers., +12:u10:servers., +21:u14:fs_locations_info, +13:u07:locations, +21:u13:fs_locations_info, +13:u06:locations, +21:u12:fs_locations_info, +13:u05:locations, +21:u11:fs_locations_info, +13:u04:locations, +21:u10:fs_locations_info, +13:u03:locations, +13:u02:locations, +12:u14:location, +13:u01:locations, +12:u13:location, +13:u00:locations, +12:u12:location, +12:u11:location, +12:u10:location, +11:u08:element, +11:u07:element, +11:u06:element, +11:u05:element, +11:u04:element, +7:u22:ele, +8:u23:elem, +11:u03:element, +11:u02:element, +11:u01:element, +11:u00:element, +8:u08:229], +8:u07:229], +8:u06:229], +8:u05:229], +8:u04:229], +8:u03:229], +8:u02:229], +8:u01:229], +8:u00:229], +8:u14:term, +8:u13:term, +8:u12:term, +8:uI2:.,[], +11:u08:replica, +8:u11:term, +8:uI1:.,[], +11:u07:replica, +8:u10:term, +8:uI0:.,[], +11:u06:replica, +11:u05:replica, +14:u08:Logically,, +11:u04:replica, +11:u03:replica, +14:u07:Logically,, +14:u08:documents,, +11:u02:replica, +14:u06:Logically,, +11:u01:replica, +14:u14:logically,, +14:u05:Logically,, +14:u07:documents,, +14:u08:symmetric., +11:u00:replica, +11:u08:despite, +14:u13:logically,, +14:u04:Logically,, +14:u06:documents,, +11:u07:despite, +14:u12:logically,, +14:u14:documents,, +7:u22:Log, +8:u23:Logi, +14:u03:Logically,, +14:u05:documents,, +14:u07:symmetric., +11:u06:despite, +14:u11:logically,, +14:u13:documents,, +14:u02:Logically,, +14:u04:documents,, +14:u06:symmetric., +11:u05:despite, +14:u10:logically,, +14:u12:documents,, +14:u14:symmetric., +14:u01:Logically,, +14:u03:documents,, +14:u05:symmetric., +11:u04:despite, +14:u11:documents,, +14:u13:symmetric., +14:u00:Logically,, +14:u02:documents,, +14:u04:symmetric., +11:u03:despite, +14:u10:documents,, +14:u12:symmetric., +7:u22:sym, +8:u23:symm, +14:u01:documents,, +14:u03:symmetric., +11:u02:despite, +14:u11:symmetric., +14:u00:documents,, +14:u02:symmetric., +11:u01:despite, +14:u10:symmetric., +14:u01:symmetric., +11:u00:despite, +14:u00:symmetric., +12:u08:address), +12:u07:address), +12:u06:address), +12:u14:address), +12:u05:address), +12:u13:address), +12:u04:address), +12:u12:address), +12:u03:address), +12:u11:address), +12:u02:address), +14:u08:locations,, +12:u10:address), +12:u01:address), +14:u07:locations,, +12:u00:address), +14:u06:locations,, +14:u05:locations,, +8:u08:230], +14:u04:locations,, +8:u07:230], +14:u03:locations,, +8:u06:230], +14:u02:locations,, +8:u05:230], +13:u08:instances, +14:u01:locations,, +8:u04:230], +14:u00:locations,, +8:u03:230], +13:u07:instances, +8:u02:230], +13:u06:instances, +8:u01:230], +13:u14:instances, +13:u05:instances, +8:u00:230], +13:u13:instances, +10:u14:etc.)., +11:uI2:(..,,,,, +13:u04:instances, +13:u12:instances, +10:u13:etc.)., +11:uI1:(..,,,,, +13:u03:instances, +13:u11:instances, +10:u12:etc.)., +14:u14:transition, +6:u21:et, +7:u22:etc, +8:u23:etc., +11:uI0:(..,,,,, +13:u02:instances, +13:u10:instances, +10:u11:etc.)., +14:u13:transition, +13:u01:instances, +10:u10:etc.)., +14:u12:transition, +13:u00:instances, +14:u11:transition, +14:u10:transition, +23:u08:fs_locations_item4., +13:u08:pseudo-fs, +13:u07:pseudo-fs, +23:u07:fs_locations_item4., +13:u06:pseudo-fs, +23:u06:fs_locations_item4., +13:u05:pseudo-fs, +23:u14:fs_locations_item4., +23:u05:fs_locations_item4., +10:u08:found., +13:u04:pseudo-fs, +23:u13:fs_locations_item4., +23:u04:fs_locations_item4., +13:u03:pseudo-fs, +23:u12:fs_locations_item4., +23:u03:fs_locations_item4., +10:u07:found., +13:u02:pseudo-fs, +23:u11:fs_locations_item4., +23:u02:fs_locations_item4., +10:u06:found., +13:u01:pseudo-fs, +15:u08:preferable,, +23:u10:fs_locations_item4., +10:u14:found., +23:u01:fs_locations_item4., +10:u05:found., +13:u00:pseudo-fs, +15:u07:preferable,, +10:u13:found., +23:u00:fs_locations_item4., +10:u04:found., +15:u06:preferable,, +10:u12:found., +10:u03:found., +15:u05:preferable,, +10:u11:found., +10:u02:found., +15:u04:preferable,, +14:u08:pseudo-fs., +10:u10:found., +10:u01:found., +15:u03:preferable,, +14:u07:pseudo-fs., +10:u00:found., +15:u02:preferable,, +14:u06:pseudo-fs., +15:u01:preferable,, +14:u05:pseudo-fs., +15:u00:preferable,, +14:u04:pseudo-fs., +14:u03:pseudo-fs., +14:u02:pseudo-fs., +6:uI2:-), +14:u01:pseudo-fs., +6:uI1:-), +14:u00:pseudo-fs., +13:u08:"present", +6:uI0:-), +13:u07:"present", +13:u06:"present", +20:u08:location-related, +13:u05:"present", +20:u07:location-related, +13:u14:typically, +13:u04:"present", +20:u06:location-related, +13:u13:typically, +13:u03:"present", +20:u05:location-related, +13:u12:typically, +8:u23:typi, +13:u02:"present", +20:u04:location-related, +13:u11:typically, +13:u01:"present", +20:u03:location-related, +13:u10:typically, +18:u08:NFS4ERR_MOVED., +13:u00:"present", +20:u02:location-related, +20:u01:location-related, +18:u07:NFS4ERR_MOVED., +20:u00:location-related, +18:u06:NFS4ERR_MOVED., +18:u14:nfs4err_moved., +18:u05:NFS4ERR_MOVED., +8:u08:231], +18:u13:nfs4err_moved., +18:u04:NFS4ERR_MOVED., +8:u07:231], +18:u12:nfs4err_moved., +18:u03:NFS4ERR_MOVED., +8:u06:231], +18:u11:nfs4err_moved., +18:u02:NFS4ERR_MOVED., +18:u08:NFS4ERR_MOVED,, +8:u05:231], +18:u10:nfs4err_moved., +18:u01:NFS4ERR_MOVED., +8:u04:231], +18:u00:NFS4ERR_MOVED., +18:u07:NFS4ERR_MOVED,, +8:u03:231], +18:u06:NFS4ERR_MOVED,, +8:u02:231], +18:u14:nfs4err_moved,, +18:u05:NFS4ERR_MOVED,, +8:u01:231], +18:u13:nfs4err_moved,, +18:u04:NFS4ERR_MOVED,, +10:u08:absent, +8:u00:231], +16:u08:possibility., +18:u12:nfs4err_moved,, +18:u03:NFS4ERR_MOVED,, +16:u07:possibility., +18:u11:nfs4err_moved,, +18:u02:NFS4ERR_MOVED,, +10:u07:absent, +12:u08:reflects, +16:u06:possibility., +18:u10:nfs4err_moved,, +18:u01:NFS4ERR_MOVED,, +10:u06:absent, +16:u05:possibility., +18:u00:NFS4ERR_MOVED,, +10:u05:absent, +12:u07:reflects, +11:u08:absent,, +16:u04:possibility., +10:u04:absent, +12:u06:reflects, +16:u03:possibility., +12:u14:reflects, +10:u03:absent, +12:u05:reflects, +11:u07:absent,, +11:u08:later),, +16:u02:possibility., +12:u13:reflects, +10:u02:absent, +12:u04:reflects, +11:u06:absent,, +16:u01:possibility., +12:u12:reflects, +11:u14:absent,, +8:u23:refl, +10:u01:absent, +12:u03:reflects, +11:u05:absent,, +11:u07:later),, +16:u00:possibility., +12:u11:reflects, +11:u13:absent,, +10:u00:absent, +12:u02:reflects, +11:u04:absent,, +11:u06:later),, +12:u10:reflects, +11:u12:absent,, +11:u14:later),, +12:u01:reflects, +11:u03:absent,, +11:u05:later),, +11:u11:absent,, +11:u13:later),, +12:u00:reflects, +11:u02:absent,, +11:u04:later),, +11:u10:absent,, +11:u12:later),, +11:u01:absent,, +11:u03:later),, +11:u11:later),, +11:u00:absent,, +11:u02:later),, +11:u10:later),, +11:u01:later),, +11:u00:later),, +17:u08:subsequently., +17:u07:subsequently., +17:u06:subsequently., +17:u14:subsequently., +17:u05:subsequently., +17:u13:subsequently., +17:u04:subsequently., +17:u12:subsequently., +17:u03:subsequently., +17:u11:subsequently., +17:u02:subsequently., +17:u10:subsequently., +17:u01:subsequently., +17:u00:subsequently., +15:u08:interrogate, +15:u07:interrogate, +15:u06:interrogate, +15:u14:interrogate, +15:u05:interrogate, +15:u13:interrogate, +15:u04:interrogate, +15:u12:interrogate, +15:u03:interrogate, +15:u11:interrogate, +15:u02:interrogate, +15:u10:interrogate, +15:u01:interrogate, +15:u00:interrogate, +8:u08:232], +8:u07:232], +8:u06:232], +11:u08:11.4.1., +8:u05:232], +8:u04:232], +11:u07:11.4.1., +8:u03:232], +11:u06:11.4.1., +8:u02:232], +11:u14:11.4.1., +11:u05:11.4.1., +8:u01:232], +11:u13:11.4.1., +11:u04:11.4.1., +8:u00:232], +11:u12:11.4.1., +11:u03:11.4.1., +11:u11:11.4.1., +11:u02:11.4.1., +11:u10:11.4.1., +11:u01:11.4.1., +11:u00:11.4.1., +15:u08:fs_status),, +15:u07:fs_status),, +15:u06:fs_status),, +18:u08:change_policy:, +15:u05:fs_status),, +15:u04:fs_status),, +18:u07:change_policy:, +15:u03:fs_status),, +18:u06:change_policy:, +9:u08:fsid:, +15:u02:fs_status),, +18:u14:change_policy:, +18:u05:change_policy:, +15:u01:fs_status),, +18:u13:change_policy:, +18:u04:change_policy:, +9:u07:fsid:, +12:u08:boundary, +15:u00:fs_status),, +18:u12:change_policy:, +20:u14:location-related, +18:u03:change_policy:, +9:u06:fsid:, +18:u11:change_policy:, +20:u13:location-related, +9:u14:fsid:, +18:u02:change_policy:, +9:u05:fsid:, +12:u07:boundary, +18:u10:change_policy:, +20:u12:location-related, +9:u13:fsid:, +18:u01:change_policy:, +9:u04:fsid:, +12:u06:boundary, +20:u11:location-related, +9:u12:fsid:, +12:u14:boundary, +7:u22:fsi, +8:u23:fsid, +18:u00:change_policy:, +9:u03:fsid:, +12:u05:boundary, +22:u08:mounted_on_fileid:, +20:u10:location-related, +9:u11:fsid:, +12:u13:boundary, +9:u02:fsid:, +12:u04:boundary, +9:u10:fsid:, +12:u12:boundary, +9:u01:fsid:, +12:u03:boundary, +22:u07:mounted_on_fileid:, +12:u11:boundary, +9:u00:fsid:, +12:u02:boundary, +22:u06:mounted_on_fileid:, +12:u10:boundary, +22:u14:mounted_on_fileid:, +12:u01:boundary, +22:u05:mounted_on_fileid:, +22:u13:mounted_on_fileid:, +12:u00:boundary, +22:u04:mounted_on_fileid:, +22:u12:mounted_on_fileid:, +22:u03:mounted_on_fileid:, +22:u11:mounted_on_fileid:, +22:u02:mounted_on_fileid:, +16:u08:gratuitously, +22:u10:mounted_on_fileid:, +22:u01:mounted_on_fileid:, +12:u14:systems,, +22:u00:mounted_on_fileid:, +16:u07:gratuitously, +12:u13:systems,, +16:u06:gratuitously, +12:u12:systems,, +16:u14:gratuitously, +16:u05:gratuitously, +12:u11:systems,, +16:u13:gratuitously, +16:u04:gratuitously, +12:u10:systems,, +16:u12:gratuitously, +8:u23:grat, +16:u03:gratuitously, +16:u11:gratuitously, +16:u02:gratuitously, +16:u10:gratuitously, +16:u01:gratuitously, +16:u00:gratuitously, +8:u08:233], +8:u07:233], +8:u06:233], +14:u08:fs_status,, +8:u05:233], +8:u04:233], +14:u07:fs_status,, +8:u03:233], +14:u08:appearance, +14:u06:fs_status,, +8:u02:233], +14:u07:appearance, +14:u14:fs_status,, +14:u05:fs_status,, +11:u08:result., +8:u01:233], +14:u06:appearance, +14:u13:fs_status,, +14:u04:fs_status,, +11:u08:11.4.2., +8:u00:233], +14:u05:appearance, +14:u12:fs_status,, +8:u23:fs_s, +14:u03:fs_status,, +11:u07:result., +14:u04:appearance, +14:u11:fs_status,, +14:u02:fs_status,, +11:u06:result., +11:u07:11.4.2., +14:u03:appearance, +14:u10:fs_status,, +11:u14:result., +14:u01:fs_status,, +11:u05:result., +11:u06:11.4.2., +14:u02:appearance, +11:u13:result., +11:u14:11.4.2., +14:u00:fs_status,, +11:u04:result., +11:u05:11.4.2., +14:u01:appearance, +11:u12:result., +11:u13:11.4.2., +11:u03:result., +11:u04:11.4.2., +14:u00:appearance, +11:u11:result., +11:u12:11.4.2., +11:u02:result., +11:u03:11.4.2., +11:u10:result., +11:u11:11.4.2., +11:u01:result., +11:u02:11.4.2., +11:u10:11.4.2., +11:u00:result., +11:u01:11.4.2., +11:u00:11.4.2., +13:u14:returned,, +13:u13:returned,, +13:u12:returned,, +13:u11:returned,, +13:u10:returned,, +17:u08:rdattr_error,, +17:u07:rdattr_error,, +17:u06:rdattr_error,, +17:u14:rdattr_error,, +17:u05:rdattr_error,, +12:u08:absence,, +17:u13:rdattr_error,, +17:u04:rdattr_error,, +17:u12:rdattr_error,, +6:u21:rd, +7:u22:rda, +8:u23:rdat, +17:u03:rdattr_error,, +12:u07:absence,, +17:u11:rdattr_error,, +17:u02:rdattr_error,, +12:u06:absence,, +17:u10:rdattr_error,, +12:u14:absence,, +17:u01:rdattr_error,, +12:u05:absence,, +12:u13:absence,, +17:u00:rdattr_error,, +12:u04:absence,, +12:u12:absence,, +12:u03:absence,, +23:u08:fs_locations_info),, +12:u11:absence,, +12:u02:absence,, +12:u10:absence,, +12:u01:absence,, +23:u07:fs_locations_info),, +13:u08:reliable,, +12:u00:absence,, +23:u06:fs_locations_info),, +15:u08:manageable,, +23:u14:fs_locations_info),, +23:u05:fs_locations_info),, +13:u07:reliable,, +15:u07:manageable,, +23:u13:fs_locations_info),, +23:u04:fs_locations_info),, +13:u06:reliable,, +15:u06:manageable,, +23:u12:fs_locations_info),, +13:u14:reliable,, +23:u03:fs_locations_info),, +13:u05:reliable,, +15:u05:manageable,, +23:u11:fs_locations_info),, +13:u13:reliable,, +23:u02:fs_locations_info),, +13:u04:reliable,, +15:u04:manageable,, +8:u08:234], +23:u10:fs_locations_info),, +13:u12:reliable,, +23:u01:fs_locations_info),, +13:u03:reliable,, +15:u03:manageable,, +8:u07:234], +13:u11:reliable,, +23:u00:fs_locations_info),, +13:u02:reliable,, +15:u02:manageable,, +8:u06:234], +13:u10:reliable,, +13:u01:reliable,, +15:u01:manageable,, +8:u05:234], +13:u00:reliable,, +15:u00:manageable,, +8:u04:234], +8:u03:234], +8:u02:234], +8:u01:234], +8:u00:234], +13:u14:problems,, +13:u13:problems,, +13:u12:problems,, +13:u11:problems,, +9:u08:Under, +13:u10:problems,, +9:u07:Under, +9:u06:Under, +9:u14:under, +9:u05:Under, +9:u13:under, +9:u04:Under, +9:u12:under, +7:u22:Und, +8:u23:Unde, +9:u03:Under, +9:u11:under, +9:u02:Under, +12:u08:replica., +9:u10:under, +9:u01:Under, +12:u07:replica., +9:u00:Under, +12:u06:replica., +12:u05:replica., +12:u04:replica., +8:u14:and,, +12:u03:replica., +8:u13:and,, +12:u02:replica., +8:u12:and,, +8:u23:and,, +12:u01:replica., +8:u11:and,, +12:u00:replica., +8:u10:and,, +12:u14:allowing, +10:u08:11.5.6, +12:u13:allowing, +10:u07:11.5.6, +12:u12:allowing, +12:u08:referral, +10:u06:11.5.6, +13:u08:OPTIONAL,, +12:u11:allowing, +10:u05:11.5.6, +13:u07:OPTIONAL,, +12:u10:allowing, +12:u07:referral, +10:u04:11.5.6, +13:u06:OPTIONAL,, +12:u06:referral, +11:u08:11.5.1., +10:u03:11.5.6, +13:u05:OPTIONAL,, +12:u14:referral, +12:u05:referral, +10:u02:11.5.6, +13:u04:OPTIONAL,, +13:u08:Combining, +12:u13:referral, +12:u04:referral, +11:u07:11.5.1., +12:u08:relating, +10:u01:11.5.6, +13:u03:OPTIONAL,, +13:u07:Combining, +12:u12:referral, +13:u14:arguments, +12:u03:referral, +11:u06:11.5.1., +10:u00:11.5.6, +13:u02:OPTIONAL,, +13:u06:Combining, +12:u11:referral, +13:u13:arguments, +11:u14:11.5.1., +12:u02:referral, +11:u05:11.5.1., +12:u07:relating, +13:u01:OPTIONAL,, +13:u05:Combining, +9:u08:ways., +12:u10:referral, +13:u12:arguments, +11:u13:11.5.1., +7:u22:arg, +8:u23:argu, +12:u01:referral, +11:u04:11.5.1., +12:u06:relating, +13:u00:OPTIONAL,, +13:u04:Combining, +9:u07:ways., +13:u11:arguments, +11:u12:11.5.1., +12:u14:relating, +12:u00:referral, +11:u03:11.5.1., +12:u05:relating, +13:u03:Combining, +9:u06:ways., +13:u10:arguments, +11:u11:11.5.1., +12:u13:relating, +11:u02:11.5.1., +12:u04:relating, +13:u02:Combining, +9:u05:ways., +11:u10:11.5.1., +12:u12:relating, +11:u01:11.5.1., +12:u03:relating, +13:u01:Combining, +9:u04:ways., +12:u11:relating, +11:u00:11.5.1., +12:u02:relating, +13:u00:Combining, +9:u03:ways., +8:u08:235], +12:u10:relating, +12:u01:relating, +9:u02:ways., +8:u07:235], +12:u00:relating, +9:u01:ways., +8:u06:235], +9:u00:ways., +8:u05:235], +8:u04:235], +8:u03:235], +12:u08:replicas, +8:u02:235], +8:u01:235], +12:u07:replicas, +8:u00:235], +12:u06:replicas, +12:u14:replicas, +12:u05:replicas, +12:u13:replicas, +12:u04:replicas, +12:u12:replicas, +12:u03:replicas, +15:u08:guidelines., +12:u11:replicas, +11:u14:replica, +12:u02:replicas, +12:u10:replicas, +11:u13:replica, +12:u01:replicas, +15:u07:guidelines., +11:u12:replica, +12:u00:replicas, +15:u06:guidelines., +11:u11:replica, +15:u14:guidelines., +15:u05:guidelines., +11:u10:replica, +15:u13:guidelines., +15:u04:guidelines., +15:u12:guidelines., +7:u22:gui, +8:u23:guid, +15:u03:guidelines., +13:u08:migration, +15:u11:guidelines., +15:u02:guidelines., +15:u10:guidelines., +15:u01:guidelines., +13:u07:migration, +17:u08:inaccessible., +15:u00:guidelines., +13:u06:migration, +11:u08:11.5.2., +13:u14:migration, +13:u05:migration, +17:u07:inaccessible., +13:u13:migration, +13:u04:migration, +17:u06:inaccessible., +11:u07:11.5.2., +13:u12:migration, +17:u14:inaccessible., +8:u23:migr, +13:u03:migration, +17:u05:inaccessible., +11:u06:11.5.2., +13:u11:migration, +17:u13:inaccessible., +11:u14:11.5.2., +13:u02:migration, +17:u04:inaccessible., +11:u05:11.5.2., +13:u10:migration, +17:u12:inaccessible., +11:u13:11.5.2., +13:u01:migration, +17:u03:inaccessible., +11:u04:11.5.2., +17:u11:inaccessible., +11:u12:11.5.2., +13:u00:migration, +17:u02:inaccessible., +11:u03:11.5.2., +17:u10:inaccessible., +11:u11:11.5.2., +17:u01:inaccessible., +11:u02:11.5.2., +11:u10:11.5.2., +17:u00:inaccessible., +11:u01:11.5.2., +11:u00:11.5.2., +16:u08:alternative,, +10:u14:(which, +16:u07:alternative,, +10:u13:(which, +16:u06:alternative,, +10:u12:(which, +16:u14:alternative,, +8:u23:(whi, +16:u05:alternative,, +10:u11:(which, +16:u13:alternative,, +16:u04:alternative,, +10:u10:(which, +16:u12:alternative,, +16:u03:alternative,, +16:u11:alternative,, +16:u02:alternative,, +16:u10:alternative,, +16:u01:alternative,, +16:u00:alternative,, +8:u08:236], +8:u07:236], +8:u06:236], +8:u05:236], +8:u04:236], +8:u03:236], +8:u02:236], +8:u01:236], +8:u00:236], +14:u08:migration,, +15:u08:throughout., +14:u07:migration,, +11:u08:11.5.3., +14:u06:migration,, +15:u07:throughout., +14:u14:migration,, +14:u05:migration,, +15:u06:throughout., +11:u07:11.5.3., +8:u08:face, +14:u13:migration,, +15:u14:throughout., +14:u04:migration,, +15:u05:throughout., +11:u06:11.5.3., +16:u08:establishing, +14:u12:migration,, +15:u13:throughout., +11:u14:11.5.3., +14:u03:migration,, +15:u04:throughout., +11:u05:11.5.3., +8:u07:face, +14:u11:migration,, +15:u12:throughout., +11:u13:11.5.3., +14:u02:migration,, +15:u03:throughout., +11:u04:11.5.3., +8:u06:face, +16:u07:establishing, +13:u08:"step-up", +14:u10:migration,, +15:u11:throughout., +11:u12:11.5.3., +8:u14:face, +14:u01:migration,, +15:u02:throughout., +11:u03:11.5.3., +8:u05:face, +16:u06:establishing, +15:u10:throughout., +11:u11:11.5.3., +8:u13:face, +16:u14:establishing, +14:u00:migration,, +15:u01:throughout., +11:u02:11.5.3., +8:u04:face, +16:u05:establishing, +13:u07:"step-up", +11:u10:11.5.3., +8:u12:face, +16:u13:establishing, +8:u23:face, +15:u00:throughout., +11:u01:11.5.3., +8:u03:face, +16:u04:establishing, +13:u06:"step-up", +8:u11:face, +16:u12:establishing, +13:u14:"step-up", +11:u00:11.5.3., +8:u02:face, +16:u03:establishing, +13:u05:"step-up", +8:u10:face, +16:u11:establishing, +13:u13:"step-up", +10:uI2:"-"..,, +8:u01:face, +16:u02:establishing, +13:u04:"step-up", +16:u10:establishing, +13:u12:"step-up", +7:u22:"st, +8:u23:"ste, +10:uI1:"-"..,, +8:u00:face, +16:u01:establishing, +13:u03:"step-up", +13:u11:"step-up", +10:uI0:"-"..,, +16:u00:establishing, +13:u02:"step-up", +13:u10:"step-up", +13:u01:"step-up", +8:u14:made, +13:u00:"step-up", +8:u13:made, +21:u08:Fs_locations_info, +8:u12:made, +8:u11:made, +21:u07:Fs_locations_info, +8:u10:made, +21:u06:Fs_locations_info, +10:u08:entry,, +21:u05:Fs_locations_info, +10:u07:entry,, +21:u04:Fs_locations_info, +10:u06:entry,, +6:u21:Fs, +7:u22:Fs_, +8:u23:Fs_l, +21:u03:Fs_locations_info, +10:u05:entry,, +21:u02:Fs_locations_info, +16:u08:Irrespective, +10:u04:entry,, +21:u01:Fs_locations_info, +10:u03:entry,, +21:u00:Fs_locations_info, +16:u07:Irrespective, +10:u02:entry,, +16:u06:Irrespective, +10:u01:entry,, +16:u14:irrespective, +16:u05:Irrespective, +15:u08:connection,, +10:u00:entry,, +16:u13:irrespective, +16:u04:Irrespective, +13:u08:converted, +16:u12:irrespective, +6:u21:Ir, +7:u22:Irr, +8:u23:Irre, +16:u03:Irrespective, +15:u07:connection,, +16:u11:irrespective, +16:u02:Irrespective, +15:u06:connection,, +13:u07:converted, +16:u10:irrespective, +15:u14:connection,, +16:u01:Irrespective, +15:u05:connection,, +13:u06:converted, +15:u13:connection,, +13:u14:converted, +16:u00:Irrespective, +15:u04:connection,, +13:u05:converted, +8:u08:237], +15:u12:connection,, +13:u13:converted, +15:u03:connection,, +13:u04:converted, +8:u07:237], +15:u11:connection,, +13:u12:converted, +15:u02:connection,, +13:u03:converted, +8:u06:237], +15:u10:connection,, +13:u11:converted, +15:u01:connection,, +13:u02:converted, +11:u08:11.5.4., +8:u05:237], +13:u10:converted, +15:u00:connection,, +13:u01:converted, +8:u04:237], +13:u00:converted, +11:u07:11.5.4., +8:u03:237], +11:u06:11.5.4., +8:u02:237], +11:u14:11.5.4., +11:u05:11.5.4., +8:u01:237], +11:u13:11.5.4., +11:u04:11.5.4., +8:u00:237], +11:u12:11.5.4., +11:u03:11.5.4., +17:u08:interrogating, +11:u11:11.5.4., +11:u02:11.5.4., +17:u07:interrogating, +11:u10:11.5.4., +11:u01:11.5.4., +17:u06:interrogating, +11:u00:11.5.4., +17:u05:interrogating, +17:u04:interrogating, +17:u03:interrogating, +14:u08:read-only), +17:u02:interrogating, +17:u01:interrogating, +14:u07:read-only), +17:u00:interrogating, +14:u06:read-only), +14:u14:read-only), +14:u05:read-only), +14:u13:read-only), +14:u04:read-only), +14:u12:read-only), +14:u03:read-only), +14:u11:read-only), +14:u02:read-only), +11:u08:11.5.5., +14:u10:read-only), +14:u01:read-only), +9:u14:deals, +14:u00:read-only), +11:u07:11.5.5., +9:u13:deals, +11:u06:11.5.5., +9:u12:deals, +11:u14:11.5.5., +11:u05:11.5.5., +9:u11:deals, +11:u13:11.5.5., +11:u04:11.5.5., +9:u10:deals, +11:u12:11.5.5., +11:u03:11.5.5., +11:u11:11.5.5., +11:u02:11.5.5., +11:u10:11.5.5., +12:u14:replica., +11:u01:11.5.5., +12:u13:replica., +11:u00:11.5.5., +14:u08:Migration., +12:u12:replica., +14:u07:Migration., +12:u11:replica., +14:u06:Migration., +12:u10:replica., +14:u05:Migration., +14:u04:Migration., +14:u03:Migration., +14:u02:Migration., +14:u01:Migration., +14:u00:Migration., +17:u08:reallocation., +17:u07:reallocation., +17:u06:reallocation., +17:u05:reallocation., +17:u04:reallocation., +17:u03:reallocation., +17:u02:reallocation., +17:u01:reallocation., +17:u00:reallocation., +8:u08:238], +8:u07:238], +8:u06:238], +8:u05:238], +15:u08:clustering,, +8:u04:238], +8:u03:238], +15:u07:clustering,, +8:u02:238], +15:u06:clustering,, +8:u01:238], +15:u14:clustering,, +15:u05:clustering,, +8:u00:238], +15:u13:clustering,, +15:u04:clustering,, +15:u12:clustering,, +15:u03:clustering,, +15:u11:clustering,, +15:u02:clustering,, +15:u10:clustering,, +15:u01:clustering,, +15:u00:clustering,, +10:u08:event,, +10:u07:event,, +10:u06:event,, +13:u08:transfer., +10:u14:event,, +10:u05:event,, +10:u13:event,, +10:u04:event,, +13:u07:transfer., +10:u12:event,, +10:u03:event,, +13:u06:transfer., +10:u11:event,, +13:u14:transfer., +10:u02:event,, +13:u05:transfer., +10:u10:event,, +13:u13:transfer., +10:u01:event,, +13:u04:transfer., +13:u12:transfer., +10:u00:event,, +13:u03:transfer., +12:u08:writable, +11:u08:visible, +13:u11:transfer., +13:u02:transfer., +12:u08:updated), +11:u07:visible, +13:u10:transfer., +13:u01:transfer., +12:u07:writable, +11:u06:visible, +13:u00:transfer., +12:u06:writable, +12:u07:updated), +11:u05:visible, +12:u14:writable, +12:u05:writable, +12:u06:updated), +11:u04:visible, +12:u13:writable, +12:u14:updated), +12:u04:writable, +12:u05:updated), +11:u03:visible, +12:u12:writable, +12:u13:updated), +12:u03:writable, +12:u04:updated), +11:u08:11.5.6., +11:u02:visible, +12:u11:writable, +12:u12:updated), +12:u02:writable, +12:u03:updated), +13:u08:Referrals, +11:u01:visible, +12:u10:writable, +12:u11:updated), +12:u01:writable, +12:u02:updated), +11:u07:11.5.6., +11:u00:visible, +13:u07:Referrals, +12:u10:updated), +12:u00:writable, +12:u01:updated), +11:u06:11.5.6., +13:u06:Referrals, +11:u14:11.5.6., +12:u00:updated), +11:u05:11.5.6., +13:u05:Referrals, +11:u13:11.5.6., +11:u04:11.5.6., +15:u08:essentially, +13:u04:Referrals, +11:u12:11.5.6., +11:u14:located, +11:u03:11.5.6., +13:u03:Referrals, +11:u11:11.5.6., +11:u13:located, +7:u22:Ref, +8:u23:Refe, +11:u02:11.5.6., +15:u07:essentially, +13:u02:Referrals, +11:u10:11.5.6., +11:u12:located, +11:u01:11.5.6., +15:u06:essentially, +9:u08:wider, +13:u01:Referrals, +11:u11:located, +15:u14:essentially, +11:u00:11.5.6., +15:u05:essentially, +13:u00:Referrals, +11:u10:located, +15:u13:essentially, +15:u04:essentially, +9:u07:wider, +12:u08:eventual, +15:u12:essentially, +15:u03:essentially, +9:u06:wider, +14:u08:namespace,, +15:u11:essentially, +9:u14:wider, +15:u02:essentially, +9:u05:wider, +12:u07:eventual, +9:u08:[TBD:, +15:u10:essentially, +9:u13:wider, +15:u01:essentially, +9:u04:wider, +12:u06:eventual, +14:u07:namespace,, +9:u12:wider, +12:u14:eventual, +15:u00:essentially, +9:u03:wider, +12:u05:eventual, +14:u06:namespace,, +9:u07:[TBD:, +9:u11:wider, +12:u13:eventual, +14:u14:namespace,, +9:u02:wider, +12:u04:eventual, +14:u05:namespace,, +9:u06:[TBD:, +9:u10:wider, +12:u12:eventual, +14:u13:namespace,, +9:u14:[tbd:, +9:u01:wider, +12:u03:eventual, +14:u04:namespace,, +9:u05:[TBD:, +12:u11:eventual, +14:u12:namespace,, +9:u13:[tbd:, +7:uI2:[:], +9:u00:wider, +12:u02:eventual, +14:u03:namespace,, +9:u04:[TBD:, +12:u10:eventual, +14:u11:namespace,, +9:u12:[tbd:, +12:u14:position, +7:u22:[TB, +8:u23:[TBD, +7:uI1:[:], +12:u01:eventual, +14:u02:namespace,, +9:u03:[TBD:, +14:u10:namespace,, +9:u11:[tbd:, +12:u13:position, +7:uI0:[:], +12:u00:eventual, +14:u01:namespace,, +9:u02:[TBD:, +9:u10:[tbd:, +12:u12:position, +14:u00:namespace,, +9:u01:[TBD:, +8:u08:239], +12:u11:position, +9:u00:[TBD:, +8:u07:239], +12:u10:position, +8:u06:239], +8:u05:239], +8:u04:239], +8:u03:239], +8:u02:239], +8:u01:239], +8:u00:239], +9:u08:adapt, +9:u07:adapt, +9:u06:adapt, +9:u14:adapt, +9:u05:adapt, +9:u13:adapt, +9:u04:adapt, +13:u08:variables, +9:u12:adapt, +9:u03:adapt, +9:u11:adapt, +8:uI2:---(, +9:u02:adapt, +13:u07:variables, +9:u10:adapt, +8:uI1:---(, +9:u01:adapt, +13:u06:variables, +13:u14:variables, +8:uI0:---(, +9:u00:adapt, +13:u05:variables, +13:u13:variables, +13:u04:variables, +13:u12:variables, +13:u03:variables, +13:u11:variables, +13:u02:variables, +11:u08:targets, +13:u10:variables, +13:u01:variables, +13:u00:variables, +11:u07:targets, +9:u14:rules, +11:u06:targets, +9:u13:rules, +11:u14:targets, +11:u05:targets, +17:u08:distinguished, +9:u12:rules, +11:u13:targets, +7:u22:rul, +8:u23:rule, +11:u04:targets, +17:u07:distinguished, +9:u11:rules, +11:u12:targets, +11:u03:targets, +17:u06:distinguished, +9:u10:rules, +11:u11:targets, +11:u02:targets, +17:u05:distinguished, +11:u10:targets, +11:u01:targets, +13:u08:required., +17:u04:distinguished, +11:u00:targets, +17:u03:distinguished, +13:u07:required., +16:u08:preferences., +17:u02:distinguished, +13:u06:required., +16:u08:Multi-server, +17:u01:distinguished, +13:u14:required., +13:u05:required., +16:u07:preferences., +17:u00:distinguished, +13:u13:required., +13:u04:required., +16:u06:preferences., +16:u07:Multi-server, +13:u12:required., +16:u14:preferences., +13:u03:required., +16:u05:preferences., +16:u06:Multi-server, +20:u08:administratively, +13:u11:required., +16:u13:preferences., +13:u02:required., +16:u04:preferences., +16:u05:Multi-server, +13:u08:segmented, +13:u10:required., +16:u12:preferences., +13:u01:required., +16:u03:preferences., +16:u04:Multi-server, +20:u07:administratively, +13:u07:segmented, +16:u11:preferences., +12:u14:systems., +13:u00:required., +16:u02:preferences., +16:u03:Multi-server, +20:u06:administratively, +14:u08:replicated, +13:u06:segmented, +16:u10:preferences., +12:u13:systems., +20:u14:administratively, +16:u01:preferences., +16:u02:Multi-server, +20:u05:administratively, +14:u08:Generally,, +13:u05:segmented, +12:u12:systems., +20:u13:administratively, +16:u00:preferences., +16:u01:Multi-server, +20:u04:administratively, +14:u07:replicated, +13:u04:segmented, +12:u11:systems., +20:u12:administratively, +16:u00:Multi-server, +20:u03:administratively, +14:u06:replicated, +14:u07:Generally,, +13:u03:segmented, +12:u10:systems., +20:u11:administratively, +14:u14:replicated, +20:u02:administratively, +14:u05:replicated, +14:u06:Generally,, +13:u02:segmented, +20:u10:administratively, +14:u13:replicated, +14:u14:generally,, +20:u01:administratively, +14:u04:replicated, +14:u05:Generally,, +13:u01:segmented, +14:u12:replicated, +14:u13:generally,, +20:u00:administratively, +14:u03:replicated, +14:u04:Generally,, +13:u00:segmented, +14:u11:replicated, +14:u12:generally,, +14:u02:replicated, +14:u03:Generally,, +14:u10:replicated, +14:u11:generally,, +14:u01:replicated, +14:u02:Generally,, +14:u10:generally,, +14:u00:replicated, +14:u01:Generally,, +8:u08:240], +14:u00:Generally,, +8:u07:240], +8:u06:240], +11:u08:reasons, +8:u05:240], +7:u08:CPU, +8:u04:240], +11:u07:reasons, +8:u03:240], +11:u06:reasons, +7:u07:CPU, +8:u02:240], +11:u14:reasons, +11:u05:reasons, +7:u06:CPU, +8:u01:240], +12:u08:diffeent, +11:u13:reasons, +7:u14:cpu, +11:u04:reasons, +7:u05:CPU, +8:u00:240], +12:u07:diffeent, +11:u12:reasons, +7:u13:cpu, +11:u03:reasons, +7:u04:CPU, +11:u08:11.5.7., +12:u06:diffeent, +11:u11:reasons, +7:u12:cpu, +6:u21:CP, +7:u22:CPU, +7:u23:CPU, +11:u02:reasons, +7:u03:CPU, +12:u05:diffeent, +11:u10:reasons, +7:u11:cpu, +11:u01:reasons, +7:u02:CPU, +11:u07:11.5.7., +12:u04:diffeent, +7:u10:cpu, +11:u00:reasons, +7:u01:CPU, +11:u06:11.5.7., +12:u03:diffeent, +11:u14:11.5.7., +7:u00:CPU, +11:u05:11.5.7., +12:u02:diffeent, +11:u13:11.5.7., +11:u04:11.5.7., +12:u01:diffeent, +11:u12:11.5.7., +11:u03:11.5.7., +12:u00:diffeent, +11:u11:11.5.7., +11:u02:11.5.7., +11:u10:11.5.7., +11:u01:11.5.7., +11:u00:11.5.7., +13:u08:Additions, +11:u08:prepare, +13:u07:Additions, +17:u08:subsequently,, +13:u06:Additions, +11:u07:prepare, +13:u05:Additions, +11:u06:prepare, +17:u07:subsequently,, +13:u04:Additions, +11:u14:prepare, +11:u05:prepare, +17:u06:subsequently,, +13:u03:Additions, +11:u13:prepare, +17:u14:subsequently,, +11:u04:prepare, +17:u05:subsequently,, +13:u02:Additions, +13:u08:Deletions, +11:u12:prepare, +17:u13:subsequently,, +11:u03:prepare, +17:u04:subsequently,, +13:u01:Additions, +13:u07:Deletions, +11:u11:prepare, +17:u12:subsequently,, +11:u02:prepare, +17:u03:subsequently,, +13:u00:Additions, +13:u06:Deletions, +11:u10:prepare, +17:u11:subsequently,, +11:u01:prepare, +17:u02:subsequently,, +13:u05:Deletions, +17:u10:subsequently,, +11:u00:prepare, +17:u01:subsequently,, +13:u04:Deletions, +17:u00:subsequently,, +19:u08:simultaneously,, +13:u03:Deletions, +13:u02:Deletions, +19:u07:simultaneously,, +13:u01:Deletions, +19:u06:simultaneously,, +13:u08:adjusting, +13:u00:Deletions, +19:u14:simultaneously,, +19:u05:simultaneously,, +19:u13:simultaneously,, +19:u04:simultaneously,, +13:u07:adjusting, +19:u12:simultaneously,, +19:u03:simultaneously,, +13:u06:adjusting, +19:u11:simultaneously,, +13:u14:adjusting, +19:u02:simultaneously,, +13:u05:adjusting, +19:u10:simultaneously,, +13:u13:adjusting, +8:u14:lead, +19:u01:simultaneously,, +13:u04:adjusting, +16:u08:immediately., +13:u12:adjusting, +8:u13:lead, +19:u00:simultaneously,, +13:u03:adjusting, +16:u07:immediately., +13:u11:adjusting, +8:u12:lead, +8:u23:lead, +13:u02:adjusting, +16:u06:immediately., +13:u10:adjusting, +8:u11:lead, +13:u01:adjusting, +16:u05:immediately., +8:u08:241], +8:u10:lead, +13:u00:adjusting, +16:u04:immediately., +8:u07:241], +16:u03:immediately., +8:u06:241], +16:u02:immediately., +8:u05:241], +16:u01:immediately., +8:u04:241], +16:u00:immediately., +8:u03:241], +19:u08:NFS4ERR_MOVED),, +8:u02:241], +8:u01:241], +19:u07:NFS4ERR_MOVED),, +13:u08:replicas,, +8:u00:241], +19:u06:NFS4ERR_MOVED),, +19:u14:nfs4err_moved),, +19:u05:NFS4ERR_MOVED),, +13:u07:replicas,, +19:u13:nfs4err_moved),, +19:u04:NFS4ERR_MOVED),, +13:u06:replicas,, +19:u12:nfs4err_moved),, +13:u14:replicas,, +19:u03:NFS4ERR_MOVED),, +13:u05:replicas,, +19:u11:nfs4err_moved),, +13:u13:replicas,, +19:u02:NFS4ERR_MOVED),, +13:u04:replicas,, +19:u10:nfs4err_moved),, +13:u12:replicas,, +19:u01:NFS4ERR_MOVED),, +13:u03:replicas,, +13:u11:replicas,, +8:uI2:-(.,, +19:u00:NFS4ERR_MOVED),, +13:u02:replicas,, +13:u10:replicas,, +8:uI1:-(.,, +13:u01:replicas,, +8:uI0:-(.,, +13:u00:replicas,, +13:u08:accessed., +13:u07:accessed., +13:u06:accessed., +13:u05:accessed., +13:u04:accessed., +13:u03:accessed., +13:u02:accessed., +13:u01:accessed., +13:u00:accessed., +8:u23:alth, +13:u14:accessed., +13:u13:accessed., +13:u12:accessed., +13:u11:accessed., +8:u08:242], +13:u10:accessed., +8:u07:242], +8:u06:242], +8:u05:242], +8:u04:242], +12:u08:AUTH_SYS, +8:u03:242], +12:u07:AUTH_SYS, +11:u08:groups,, +8:u02:242], +12:u06:AUTH_SYS, +11:u07:groups,, +8:u01:242], +12:u05:AUTH_SYS, +11:u06:groups,, +8:u00:242], +12:u04:AUTH_SYS, +11:u05:groups,, +12:u03:AUTH_SYS, +11:u04:groups,, +12:u02:AUTH_SYS, +11:u03:groups,, +12:u01:AUTH_SYS, +11:u02:groups,, +12:u00:AUTH_SYS, +11:u01:groups,, +11:u00:groups,, +10:u08:mounts, +10:u07:mounts, +10:u06:mounts, +10:u14:mounts, +10:u05:mounts, +10:u13:mounts, +10:u04:mounts, +10:u12:mounts, +10:u03:mounts, +10:u11:mounts, +10:u02:mounts, +13:u08:referral,, +10:u10:mounts, +10:u01:mounts, +10:u00:mounts, +13:u07:referral,, +11:u08:parent,, +11:uI2:(".."),, +13:u06:referral,, +13:u14:referral,, +11:uI1:(".."),, +13:u05:referral,, +11:u07:parent,, +13:u13:referral,, +11:uI0:(".."),, +13:u04:referral,, +11:u06:parent,, +13:u12:referral,, +11:u14:parent,, +13:u03:referral,, +11:u05:parent,, +13:u11:referral,, +11:u13:parent,, +13:u02:referral,, +11:u04:parent,, +13:u10:referral,, +11:u12:parent,, +13:u01:referral,, +11:u03:parent,, +11:u11:parent,, +13:u00:referral,, +11:u02:parent,, +11:u10:parent,, +11:u01:parent,, +15:u08:consistent., +11:u00:parent,, +15:u07:consistent., +15:u06:consistent., +15:u14:consistent., +15:u05:consistent., +15:u13:consistent., +15:u04:consistent., +12:u08:resolved, +14:u08:traversing, +15:u12:consistent., +15:u03:consistent., +10:u08:rooted, +14:u07:traversing, +15:u11:consistent., +15:u02:consistent., +12:u07:resolved, +14:u06:traversing, +15:u10:consistent., +15:u01:consistent., +12:u06:resolved, +10:u07:rooted, +14:u05:traversing, +9:u08:purge, +12:u14:resolved, +15:u00:consistent., +12:u05:resolved, +10:u06:rooted, +14:u04:traversing, +9:u07:purge, +12:u13:resolved, +10:u14:rooted, +12:u04:resolved, +10:u05:rooted, +14:u03:traversing, +9:u06:purge, +12:u12:resolved, +10:u13:rooted, +12:u03:resolved, +10:u04:rooted, +14:u02:traversing, +9:u05:purge, +12:u11:resolved, +10:u12:rooted, +12:u02:resolved, +10:u03:rooted, +14:u01:traversing, +9:u04:purge, +12:u10:resolved, +10:u11:rooted, +12:u01:resolved, +10:u02:rooted, +14:u00:traversing, +9:u03:purge, +10:u10:rooted, +12:u00:resolved, +10:u01:rooted, +9:u02:purge, +10:u00:rooted, +9:u01:purge, +8:u08:243], +9:u00:purge, +8:u07:243], +8:u06:243], +8:u05:243], +8:u04:243], +8:u03:243], +8:u02:243], +9:u08:Those, +7:u08:How, +8:u01:243], +9:u07:Those, +8:u00:243], +9:u06:Those, +7:u07:How, +13:u08:retained,, +9:u05:Those, +7:u06:How, +9:u04:Those, +7:u05:How, +13:u07:retained,, +9:u03:Those, +7:u04:How, +13:u06:retained,, +9:u02:Those, +13:u14:retained,, +7:u23:How, +7:u03:How, +13:u05:retained,, +9:u01:Those, +13:u13:retained,, +7:u02:How, +13:u04:retained,, +9:u00:Those, +13:u12:retained,, +7:u01:How, +13:u03:retained,, +13:u11:retained,, +7:u00:How, +13:u02:retained,, +13:u10:retained,, +13:u01:retained,, +13:u00:retained,, +16:u08:discontinued, +16:u07:discontinued, +16:u06:discontinued, +16:u14:discontinued, +16:u05:discontinued, +16:u13:discontinued, +16:u04:discontinued, +13:u08:receiving, +16:u12:discontinued, +16:u03:discontinued, +16:u11:discontinued, +16:u02:discontinued, +13:u07:receiving, +16:u10:discontinued, +16:u01:discontinued, +13:u06:receiving, +16:u00:discontinued, +13:u05:receiving, +13:u04:receiving, +13:u03:receiving, +22:u08:session-trunkable,, +13:u02:receiving, +13:u01:receiving, +22:u07:session-trunkable,, +13:u00:receiving, +22:u06:session-trunkable,, +22:u14:session-trunkable,, +22:u05:session-trunkable,, +22:u13:session-trunkable,, +22:u04:session-trunkable,, +22:u12:session-trunkable,, +22:u03:session-trunkable,, +17:u08:discontinued,, +22:u11:session-trunkable,, +22:u02:session-trunkable,, +17:u07:discontinued,, +22:u10:session-trunkable,, +22:u01:session-trunkable,, +17:u06:discontinued,, +22:u00:session-trunkable,, +17:u05:discontinued,, +17:u04:discontinued,, +17:u03:discontinued,, +17:u02:discontinued,, +17:u01:discontinued,, +17:u00:discontinued,, +8:u08:244], +8:u07:244], +8:u06:244], +8:u05:244], +8:u04:244], +8:u03:244], +8:u02:244], +8:u01:244], +8:u00:244], +12:u08:effected, +12:u07:effected, +12:u06:effected, +12:u14:effected, +12:u05:effected, +12:u13:effected, +12:u04:effected, +12:u12:effected, +12:u03:effected, +12:u11:effected, +12:u02:effected, +12:u10:effected, +12:u01:effected, +12:u00:effected, +15:u08:transitions, +15:u07:transitions, +15:u06:transitions, +17:u08:replication)., +15:u14:transitions, +15:u05:transitions, +15:u13:transitions, +15:u04:transitions, +17:u07:replication)., +15:u12:transitions, +15:u03:transitions, +17:u06:replication)., +15:u11:transitions, +17:u14:replication)., +15:u02:transitions, +17:u05:replication)., +9:u08:areas, +15:u10:transitions, +17:u13:replication)., +15:u01:transitions, +17:u04:replication)., +9:u07:areas, +15:u08:Transparent, +17:u12:replication)., +15:u00:transitions, +17:u03:replication)., +9:u06:areas, +15:u07:Transparent, +17:u11:replication)., +17:u02:replication)., +9:u05:areas, +15:u06:Transparent, +17:u10:replication)., +17:u01:replication)., +13:u08:effective, +9:u04:areas, +15:u05:Transparent, +17:u00:replication)., +9:u03:areas, +15:u04:Transparent, +14:u08:continuity, +13:u07:effective, +9:u02:areas, +15:u03:Transparent, +14:u07:continuity, +13:u06:effective, +9:u01:areas, +15:u02:Transparent, +14:u06:continuity, +13:u14:effective, +13:u05:effective, +9:u00:areas, +15:u01:Transparent, +14:u05:continuity, +13:u13:effective, +13:u04:effective, +15:u00:Transparent, +14:u04:continuity, +8:u08:245], +13:u12:effective, +13:u03:effective, +14:u03:continuity, +8:u07:245], +13:u11:effective, +13:u02:effective, +14:u02:continuity, +8:u06:245], +13:u10:effective, +13:u01:effective, +14:u01:continuity, +8:u05:245], +13:u00:effective, +13:u08:effecting, +14:u00:continuity, +8:u04:245], +8:u03:245], +13:u07:effecting, +12:u08:11.10.1., +8:u02:245], +13:u06:effecting, +8:u01:245], +13:u14:effecting, +13:u05:effecting, +12:u07:11.10.1., +8:u00:245], +13:u13:effecting, +13:u04:effecting, +12:u06:11.10.1., +13:u12:effecting, +12:u14:11.10.1., +13:u03:effecting, +12:u05:11.10.1., +12:u08:11.7.2.1, +13:u11:effecting, +12:u13:11.10.1., +13:u02:effecting, +12:u04:11.10.1., +12:u08:somewhat, +12:u07:11.7.2.1, +13:u10:effecting, +12:u12:11.10.1., +13:u01:effecting, +12:u03:11.10.1., +12:u06:11.7.2.1, +12:u11:11.10.1., +13:u00:effecting, +12:u02:11.10.1., +12:u07:somewhat, +12:u05:11.7.2.1, +12:u10:11.10.1., +11:uI2:...[])., +12:u01:11.10.1., +12:u06:somewhat, +12:u04:11.7.2.1, +12:u14:somewhat, +11:uI1:...[])., +12:u00:11.10.1., +12:u05:somewhat, +12:u03:11.7.2.1, +12:u13:somewhat, +11:uI0:...[])., +12:u04:somewhat, +13:u08:represent, +12:u02:11.7.2.1, +12:u12:somewhat, +12:u03:somewhat, +12:u01:11.7.2.1, +12:u11:somewhat, +12:u02:somewhat, +13:u07:represent, +12:u00:11.7.2.1, +12:u10:somewhat, +12:u01:somewhat, +13:u06:represent, +13:u14:represent, +12:u00:somewhat, +13:u05:represent, +20:u08:server-trunkable, +13:u13:represent, +13:u04:represent, +20:u07:server-trunkable, +13:u12:represent, +13:u03:represent, +20:u06:server-trunkable, +13:u11:represent, +13:u02:represent, +20:u05:server-trunkable, +13:u10:represent, +13:u01:represent, +20:u04:server-trunkable, +10:u14:divide, +13:u00:represent, +20:u03:server-trunkable, +10:u13:divide, +20:u02:server-trunkable, +10:u12:divide, +20:u01:server-trunkable, +10:u11:divide, +20:u00:server-trunkable, +10:u10:divide, +11:u08:merging, +8:u08:sole, +11:u07:merging, +11:u06:merging, +8:u07:sole, +12:u08:11.10.2., +11:u14:merging, +11:u05:merging, +8:u06:sole, +11:u13:merging, +8:u14:sole, +11:u04:merging, +8:u05:sole, +12:u07:11.10.2., +11:u12:merging, +8:u13:sole, +7:u22:mer, +8:u23:merg, +11:u03:merging, +8:u04:sole, +12:u06:11.10.2., +11:u08:classes, +11:u11:merging, +8:u12:sole, +12:u14:11.10.2., +8:u23:sole, +11:u02:merging, +8:u03:sole, +12:u05:11.10.2., +11:u10:merging, +8:u11:sole, +12:u13:11.10.2., +11:u01:merging, +8:u02:sole, +12:u04:11.10.2., +11:u07:classes, +11:u08:happens, +8:u10:sole, +12:u12:11.10.2., +11:u00:merging, +8:u01:sole, +12:u03:11.10.2., +11:u06:classes, +11:u07:happens, +12:u11:11.10.2., +11:u14:classes, +8:u00:sole, +12:u02:11.10.2., +11:u05:classes, +11:u06:happens, +12:u10:11.10.2., +11:u13:classes, +12:u01:11.10.2., +11:u04:classes, +11:u05:happens, +11:u12:classes, +14:u14:continuity, +12:u00:11.10.2., +11:u03:classes, +11:u04:happens, +11:u11:classes, +14:u13:continuity, +11:u02:classes, +11:u03:happens, +15:u08:transition., +11:u10:classes, +14:u12:continuity, +11:u01:classes, +11:u02:happens, +15:u07:transition., +14:u11:continuity, +11:u00:classes, +11:u01:happens, +15:u06:transition., +14:u10:continuity, +11:u00:happens, +15:u05:transition., +8:u08:246], +15:u04:transition., +8:u07:246], +15:u03:transition., +8:u06:246], +15:u02:transition., +8:u05:246], +15:u01:transition., +8:u04:246], +15:u00:transition., +8:u03:246], +8:u08:bit,, +8:u02:246], +8:u07:bit,, +18:u14:fh_expire_type, +8:u01:246], +8:u06:bit,, +18:u13:fh_expire_type, +8:u00:246], +8:u05:bit,, +18:u12:fh_expire_type, +6:u21:fh, +7:u22:fh_, +8:u23:fh_e, +15:u08:transition,, +8:u04:bit,, +18:u11:fh_expire_type, +8:u03:bit,, +18:u10:fh_expire_type, +15:u07:transition,, +8:u02:bit,, +15:u06:transition,, +12:u08:11.10.3., +8:u01:bit,, +15:u14:transition,, +15:u05:transition,, +8:u00:bit,, +11:u08:Fileids, +15:u13:transition,, +15:u04:transition,, +12:u07:11.10.3., +11:u07:Fileids, +15:u12:transition,, +15:u03:transition,, +12:u06:11.10.3., +11:u06:Fileids, +15:u11:transition,, +12:u14:11.10.3., +15:u02:transition,, +12:u05:11.10.3., +11:u05:Fileids, +15:u10:transition,, +12:u13:11.10.3., +15:u01:transition,, +12:u04:11.10.3., +11:u08:fileids, +11:u04:Fileids, +12:u12:11.10.3., +15:u00:transition,, +12:u03:11.10.3., +11:u03:Fileids, +12:u11:11.10.3., +12:u02:11.10.3., +11:u07:fileids, +17:u08:difficulties,, +11:u02:Fileids, +16:u08:multi-vendor, +12:u10:11.10.3., +12:u01:11.10.3., +11:u06:fileids, +11:u01:Fileids, +16:u07:multi-vendor, +11:u14:fileids, +12:u00:11.10.3., +11:u05:fileids, +17:u07:difficulties,, +11:u00:Fileids, +16:u06:multi-vendor, +11:u13:fileids, +11:u04:fileids, +17:u06:difficulties,, +16:u05:multi-vendor, +11:u12:fileids, +17:u14:difficulties,, +11:u03:fileids, +17:u05:difficulties,, +16:u04:multi-vendor, +11:u11:fileids, +17:u13:difficulties,, +11:u02:fileids, +17:u04:difficulties,, +11:u08:trouble, +16:u03:multi-vendor, +11:u10:fileids, +17:u12:difficulties,, +11:u01:fileids, +17:u03:difficulties,, +16:u02:multi-vendor, +17:u11:difficulties,, +11:u00:fileids, +17:u02:difficulties,, +11:u07:trouble, +16:u01:multi-vendor, +17:u10:difficulties,, +17:u01:difficulties,, +11:u06:trouble, +13:u08:perfectly, +16:u00:multi-vendor, +11:u14:trouble, +17:u00:difficulties,, +11:u05:trouble, +11:u13:trouble, +11:u04:trouble, +13:u07:perfectly, +11:u12:trouble, +7:u22:tro, +8:u23:trou, +11:u03:trouble, +13:u06:perfectly, +11:u11:trouble, +13:u14:perfectly, +11:u02:trouble, +13:u05:perfectly, +11:u10:trouble, +13:u13:perfectly, +11:u01:trouble, +13:u04:perfectly, +12:u08:vendors), +13:u12:perfectly, +11:u00:trouble, +13:u03:perfectly, +13:u11:perfectly, +13:u02:perfectly, +12:u07:vendors), +14:u08:difficulty, +13:u10:perfectly, +13:u01:perfectly, +12:u06:vendors), +12:u14:vendors), +13:u00:perfectly, +12:u05:vendors), +14:u07:difficulty, +12:u13:vendors), +12:u04:vendors), +14:u06:difficulty, +12:u12:vendors), +14:u14:difficulty, +12:u03:vendors), +14:u05:difficulty, +12:u11:vendors), +14:u13:difficulty, +12:u02:vendors), +14:u04:difficulty, +12:u10:vendors), +14:u12:difficulty, +12:u01:vendors), +14:u03:difficulty, +14:u11:difficulty, +12:u00:vendors), +14:u02:difficulty, +14:u10:difficulty, +14:u01:difficulty, +14:u00:difficulty, +15:u08:transparent, +15:u07:transparent, +15:u06:transparent, +15:u14:transparent, +15:u05:transparent, +8:u08:247], +15:u13:transparent, +15:u04:transparent, +8:u07:247], +15:u12:transparent, +15:u03:transparent, +8:u06:247], +15:u11:transparent, +15:u02:transparent, +8:u05:247], +15:u10:transparent, +15:u01:transparent, +11:u08:should,, +8:u04:247], +15:u00:transparent, +8:u03:247], +11:u07:should,, +8:u02:247], +11:u06:should,, +8:u01:247], +11:u14:should,, +11:u05:should,, +8:u00:247], +11:u13:should,, +11:u04:should,, +11:u12:should,, +11:u03:should,, +11:u08:(either, +11:u11:should,, +11:u02:should,, +11:u10:should,, +11:u01:should,, +11:u07:(either, +11:u00:should,, +11:u06:(either, +11:u14:(either, +11:u05:(either, +14:u08:volatile),, +11:u13:(either, +11:u04:(either, +11:u12:(either, +7:u22:(ei, +8:u23:(eit, +11:u03:(either, +14:u07:volatile),, +11:u11:(either, +11:u02:(either, +14:u06:volatile),, +11:u10:(either, +14:u14:volatile),, +11:u01:(either, +14:u05:volatile),, +15:u08:read-only),, +14:u13:volatile),, +11:u00:(either, +14:u04:volatile),, +12:u08:problems, +14:u12:volatile),, +14:u03:volatile),, +15:u07:read-only),, +12:u07:problems, +18:u08:configurations, +14:u11:volatile),, +14:u02:volatile),, +15:u06:read-only),, +12:u08:11.10.4., +12:u06:problems, +18:u07:configurations, +14:u10:volatile),, +15:u14:read-only),, +14:u01:volatile),, +15:u05:read-only),, +12:u05:problems, +18:u06:configurations, +9:u08:Fsids, +15:u13:read-only),, +9:uI2:-),.,, +14:u00:volatile),, +15:u04:read-only),, +12:u07:11.10.4., +12:u04:problems, +18:u05:configurations, +9:u07:Fsids, +9:u08:fsids, +15:u12:read-only),, +12:u14:problems, +9:uI1:-),.,, +15:u03:read-only),, +12:u06:11.10.4., +12:u03:problems, +18:u04:configurations, +9:u06:Fsids, +9:u07:fsids, +15:u11:read-only),, +12:u13:problems, +12:u14:11.10.4., +9:uI0:-),.,, +15:u02:read-only),, +12:u05:11.10.4., +12:u02:problems, +18:u03:configurations, +9:u05:Fsids, +9:u06:fsids, +15:u10:read-only),, +12:u12:problems, +12:u13:11.10.4., +15:u01:read-only),, +12:u04:11.10.4., +12:u01:problems, +18:u02:configurations, +9:u04:Fsids, +9:u05:fsids, +12:u11:problems, +12:u12:11.10.4., +15:u00:read-only),, +12:u03:11.10.4., +12:u00:problems, +18:u01:configurations, +9:u03:Fsids, +9:u04:fsids, +12:u10:problems, +12:u11:11.10.4., +12:u02:11.10.4., +13:u08:possible., +18:u00:configurations, +9:u02:Fsids, +9:u03:fsids, +10:u08:served, +12:u10:11.10.4., +12:u01:11.10.4., +9:u01:Fsids, +9:u02:fsids, +10:u07:served, +12:u00:11.10.4., +13:u07:possible., +9:u00:Fsids, +9:u01:fsids, +10:u06:served, +13:u06:possible., +9:u00:fsids, +10:u05:served, +13:u14:possible., +13:u05:possible., +10:u04:served, +13:u13:possible., +13:u04:possible., +14:u08:11.10.4.1., +10:u03:served, +13:u12:possible., +13:u03:possible., +10:u02:served, +13:u11:possible., +13:u02:possible., +14:u07:11.10.4.1., +10:u01:served, +13:u10:possible., +13:u01:possible., +14:u06:11.10.4.1., +10:u00:served, +14:u14:11.10.4.1., +13:u00:possible., +14:u05:11.10.4.1., +14:u13:11.10.4.1., +14:u04:11.10.4.1., +14:u12:11.10.4.1., +14:u03:11.10.4.1., +14:u11:11.10.4.1., +14:u02:11.10.4.1., +14:u10:11.10.4.1., +14:u01:11.10.4.1., +14:u00:11.10.4.1., +8:u08:248], +8:u07:248], +8:u06:248], +13:u08:Splitting, +8:u05:248], +8:u04:248], +13:u07:Splitting, +8:u03:248], +13:u06:Splitting, +8:u02:248], +13:u14:splitting, +13:u05:Splitting, +12:u08:11.10.5., +8:u01:248], +13:u13:splitting, +13:u04:Splitting, +8:u00:248], +13:u12:splitting, +7:u22:Spl, +8:u23:Spli, +13:u03:Splitting, +12:u07:11.10.5., +13:u11:splitting, +13:u02:Splitting, +12:u06:11.10.5., +11:u08:invalid, +13:u10:splitting, +12:u14:11.10.5., +13:u01:Splitting, +12:u05:11.10.5., +12:u13:11.10.5., +13:u00:Splitting, +12:u04:11.10.5., +11:u07:invalid, +15:u08:refetching., +12:u12:11.10.5., +12:u03:11.10.5., +11:u06:invalid, +12:u11:11.10.5., +11:u14:invalid, +12:u02:11.10.5., +11:u05:invalid, +15:u07:refetching., +12:u10:11.10.5., +11:u13:invalid, +12:u01:11.10.5., +11:u04:invalid, +15:u06:refetching., +11:u12:invalid, +15:u14:refetching., +12:u00:11.10.5., +11:u03:invalid, +15:u05:refetching., +11:u11:invalid, +15:u13:refetching., +11:u02:invalid, +15:u04:refetching., +11:u10:invalid, +15:u12:refetching., +11:u01:invalid, +15:u03:refetching., +13:u08:happening, +15:u11:refetching., +11:u00:invalid, +15:u02:refetching., +15:u10:refetching., +15:u01:refetching., +13:u07:happening, +15:u00:refetching., +13:u06:happening, +13:u14:happening, +13:u05:happening, +16:u08:construction, +10:u08:class,, +13:u13:happening, +13:u04:happening, +10:u07:class,, +13:u12:happening, +7:u22:hap, +8:u23:happ, +13:u03:happening, +16:u07:construction, +12:u08:11.10.6., +10:u06:class,, +13:u11:happening, +13:u02:happening, +16:u06:construction, +10:u05:class,, +9:u08:Write, +13:u10:happening, +16:u14:construction, +13:u01:happening, +16:u05:construction, +12:u07:11.10.6., +10:u04:class,, +9:u07:Write, +16:u13:construction, +13:u00:happening, +16:u04:construction, +12:u06:11.10.6., +10:u03:class,, +9:u06:Write, +16:u12:construction, +12:u14:11.10.6., +16:u03:construction, +12:u05:11.10.6., +13:u08:verifiers, +10:u02:class,, +9:u05:Write, +16:u11:construction, +12:u13:11.10.6., +16:u02:construction, +12:u04:11.10.6., +10:u01:class,, +9:u04:Write, +16:u10:construction, +12:u12:11.10.6., +16:u01:construction, +12:u03:11.10.6., +13:u07:verifiers, +10:u00:class,, +9:u03:Write, +12:u11:11.10.6., +16:u00:construction, +12:u02:11.10.6., +13:u06:verifiers, +9:u02:Write, +12:u10:11.10.6., +13:u14:verifiers, +12:u01:11.10.6., +13:u05:verifiers, +9:u01:Write, +13:u13:verifiers, +12:u00:11.10.6., +13:u04:verifiers, +9:u00:Write, +13:u12:verifiers, +13:u03:verifiers, +12:u08:11.10.7., +13:u11:verifiers, +13:u02:verifiers, +11:u08:Readdir, +13:u10:verifiers, +13:u01:verifiers, +12:u07:11.10.7., +11:u07:Readdir, +13:u00:verifiers, +12:u06:11.10.7., +11:u06:Readdir, +12:u14:11.10.7., +12:u05:11.10.7., +11:u05:Readdir, +12:u13:11.10.7., +12:u04:11.10.7., +11:u04:Readdir, +11:u08:cookies, +12:u12:11.10.7., +12:u03:11.10.7., +11:u03:Readdir, +11:u07:cookies, +12:u11:11.10.7., +12:u02:11.10.7., +11:u02:Readdir, +11:u06:cookies, +12:u10:11.10.7., +12:u01:11.10.7., +11:u08:second., +11:u01:Readdir, +11:u05:cookies, +12:u00:11.10.7., +11:u00:Readdir, +11:u04:cookies, +11:u07:second., +11:u03:cookies, +11:u06:second., +11:u02:cookies, +11:u14:second., +11:u05:second., +11:u01:cookies, +8:u08:249], +11:u13:second., +11:u04:second., +11:u00:cookies, +8:u07:249], +11:u12:second., +11:u03:second., +8:u06:249], +11:u11:second., +11:u02:second., +8:u05:249], +11:u10:second., +11:u01:second., +8:u04:249], +11:u00:second., +11:u08:second,, +8:u03:249], +10:u08:cookie, +8:u02:249], +10:u07:cookie, +11:u07:second,, +12:u08:11.10.8., +8:u01:249], +10:u06:cookie, +11:u06:second,, +8:u00:249], +10:u05:cookie, +11:u14:second,, +11:u05:second,, +12:u07:11.10.8., +14:u08:succession, +10:u04:cookie, +11:u13:second,, +11:u04:second,, +12:u06:11.10.8., +10:u03:cookie, +11:u12:second,, +12:u14:11.10.8., +11:u03:second,, +12:u05:11.10.8., +14:u07:succession, +10:u02:cookie, +11:u11:second,, +12:u13:11.10.8., +11:u02:second,, +12:u04:11.10.8., +14:u06:succession, +12:u08:updating, +10:u01:cookie, +11:u10:second,, +12:u12:11.10.8., +14:u14:succession, +11:u01:second,, +12:u03:11.10.8., +14:u05:succession, +10:u00:cookie, +12:u11:11.10.8., +14:u13:succession, +11:u00:second,, +12:u02:11.10.8., +14:u04:succession, +12:u07:updating, +12:u10:11.10.8., +14:u12:succession, +12:u01:11.10.8., +14:u03:succession, +12:u06:updating, +14:u11:succession, +12:u14:updating, +12:u00:11.10.8., +14:u02:succession, +12:u05:updating, +14:u10:succession, +12:u13:updating, +14:u01:succession, +12:u04:updating, +12:u12:updating, +14:u00:succession, +12:u03:updating, +12:u11:updating, +12:u02:updating, +12:u10:updating, +12:u01:updating, +13:u08:replicas., +12:u00:updating, +13:u07:replicas., +13:u06:replicas., +11:u08:listed,, +13:u14:replicas., +13:u05:replicas., +13:u13:replicas., +13:u04:replicas., +11:u07:listed,, +13:u12:replicas., +13:u03:replicas., +11:u06:listed,, +10:u08:relied, +16:u08:relationship, +13:u11:replicas., +11:u14:listed,, +13:u02:replicas., +11:u05:listed,, +16:u07:relationship, +13:u10:replicas., +11:u13:listed,, +13:u01:replicas., +11:u04:listed,, +10:u07:relied, +16:u06:relationship, +11:u12:listed,, +13:u00:replicas., +11:u03:listed,, +10:u06:relied, +16:u05:relationship, +11:u11:listed,, +10:u14:relied, +11:u02:listed,, +10:u05:relied, +16:u04:relationship, +11:u10:listed,, +10:u13:relied, +11:u01:listed,, +10:u04:relied, +16:u03:relationship, +10:u12:relied, +11:u00:listed,, +10:u03:relied, +16:u02:relationship, +10:u11:relied, +10:u02:relied, +16:u01:relationship, +10:u10:relied, +10:u01:relied, +16:u00:relationship, +11:u14:visible, +10:u00:relied, +11:u13:visible, +11:u12:visible, +7:u22:vis, +8:u23:visi, +9:u08:(i.e., +11:u11:visible, +11:u10:visible, +9:u07:(i.e., +9:u06:(i.e., +9:u14:(i.e., +9:u05:(i.e., +9:u13:(i.e., +11:uI2:(..).,(, +9:u04:(i.e., +9:u12:(i.e., +7:u22:(i., +8:u23:(i.e, +11:uI1:(..).,(, +9:u03:(i.e., +9:u11:(i.e., +9:u14:sense, +11:uI0:(..).,(, +9:u02:(i.e., +9:u10:(i.e., +9:u13:sense, +9:u01:(i.e., +9:u12:sense, +8:u23:sens, +9:u00:(i.e., +9:u11:sense, +9:u10:sense, +8:u08:250], +8:u07:250], +8:u06:250], +8:u05:250], +8:u04:250], +8:u03:250], +8:u02:250], +8:u01:250], +8:u00:250], +13:u08:(possibly, +13:u07:(possibly, +13:u06:(possibly, +8:u14:copy, +13:u05:(possibly, +8:u13:copy, +13:u04:(possibly, +8:u12:copy, +8:u23:copy, +13:u03:(possibly, +8:u11:copy, +13:u02:(possibly, +8:u10:copy, +13:u01:(possibly, +13:u00:(possibly, +12:u08:presumed, +12:u07:presumed, +13:u14:fs_status, +12:u06:presumed, +13:u13:fs_status, +12:u05:presumed, +13:u12:fs_status, +12:u08:11.10.9., +12:u04:presumed, +13:u11:fs_status, +12:u03:presumed, +13:u10:fs_status, +12:u07:11.10.9., +12:u02:presumed, +12:u06:11.10.9., +12:u01:presumed, +12:u14:11.10.9., +12:u05:11.10.9., +12:u00:presumed, +12:u13:11.10.9., +12:u04:11.10.9., +11:u08:assured, +12:u12:11.10.9., +12:u03:11.10.9., +12:u11:11.10.9., +12:u02:11.10.9., +11:u07:assured, +12:u08:occurred, +12:u10:11.10.9., +12:u01:11.10.9., +11:u06:assured, +12:u07:occurred, +11:u14:assured, +12:u00:11.10.9., +11:u05:assured, +12:u06:occurred, +11:u13:assured, +11:u04:assured, +12:u05:occurred, +10:u08:event., +11:u12:assured, +11:u14:methods, +11:u03:assured, +10:u08:per-fs, +12:u04:occurred, +10:u07:event., +11:u11:assured, +11:u13:methods, +11:u02:assured, +12:u03:occurred, +10:u06:event., +11:u10:assured, +11:u12:methods, +11:u01:assured, +10:u07:per-fs, +12:u02:occurred, +10:u05:event., +11:u11:methods, +11:u00:assured, +10:u06:per-fs, +12:u01:occurred, +10:u04:event., +11:u10:methods, +10:u14:per-fs, +10:u05:per-fs, +12:u00:occurred, +10:u03:event., +10:u13:per-fs, +10:u04:per-fs, +10:u02:event., +10:u12:per-fs, +10:u03:per-fs, +10:u01:event., +10:u11:per-fs, +10:u02:per-fs, +10:u00:event., +11:u08:2.10.4), +10:u10:per-fs, +10:u01:per-fs, +11:u07:2.10.4), +16:u14:filehandles,, +10:u00:per-fs, +11:u06:2.10.4), +16:u13:filehandles,, +11:u05:2.10.4), +16:u12:filehandles,, +7:uI2:..), +11:u04:2.10.4), +16:u11:filehandles,, +7:uI1:..), +11:u03:2.10.4), +16:u10:filehandles,, +7:uI0:..), +11:u02:2.10.4), +11:u01:2.10.4), +8:u08:251], +11:u00:2.10.4), +8:u07:251], +8:u06:251], +8:u05:251], +14:u08:experience, +8:u04:251], +10:u08:these,, +8:u03:251], +10:u07:these,, +14:u07:experience, +8:u02:251], +10:u06:these,, +14:u06:experience, +8:u01:251], +10:u05:these,, +14:u14:experience, +14:u05:experience, +8:u00:251], +10:u04:these,, +14:u13:experience, +14:u04:experience, +10:u03:these,, +14:u12:experience, +14:u03:experience, +18:u08:functionality., +10:u02:these,, +13:u08:Migration, +14:u11:experience, +14:u02:experience, +10:u01:these,, +13:u07:Migration, +14:u10:experience, +14:u01:experience, +18:u07:functionality., +10:u00:these,, +13:u06:Migration, +14:u00:experience, +18:u06:functionality., +13:u05:Migration, +18:u14:functionality., +18:u05:functionality., +13:u04:Migration, +18:u13:functionality., +18:u04:functionality., +14:u08:reclaimed,, +13:u03:Migration, +18:u08:transparently,, +18:u12:functionality., +18:u03:functionality., +13:u02:Migration, +18:u07:transparently,, +18:u11:functionality., +18:u02:functionality., +14:u07:reclaimed,, +14:u08:11.10.9.1., +13:u01:Migration, +18:u06:transparently,, +18:u10:functionality., +18:u01:functionality., +14:u06:reclaimed,, +13:u00:Migration, +18:u05:transparently,, +10:u08:Leases, +14:u14:reclaimed,, +18:u00:functionality., +14:u05:reclaimed,, +14:u07:11.10.9.1., +18:u04:transparently,, +10:u07:Leases, +14:u13:reclaimed,, +14:u04:reclaimed,, +14:u06:11.10.9.1., +18:u03:transparently,, +10:u06:Leases, +14:u12:reclaimed,, +14:u14:11.10.9.1., +14:u03:reclaimed,, +14:u05:11.10.9.1., +18:u02:transparently,, +10:u05:Leases, +14:u11:reclaimed,, +14:u13:11.10.9.1., +14:u02:reclaimed,, +14:u04:11.10.9.1., +14:u08:submitting, +18:u01:transparently,, +10:u04:Leases, +10:u08:renews, +14:u10:reclaimed,, +14:u12:11.10.9.1., +14:u01:reclaimed,, +14:u03:11.10.9.1., +18:u00:transparently,, +10:u03:Leases, +10:u07:renews, +14:u11:11.10.9.1., +14:u00:reclaimed,, +14:u02:11.10.9.1., +14:u07:submitting, +10:u02:Leases, +10:u06:renews, +14:u10:11.10.9.1., +14:u01:11.10.9.1., +14:u06:submitting, +10:u01:Leases, +10:u05:renews, +14:u14:submitting, +14:u00:11.10.9.1., +14:u05:submitting, +10:u00:Leases, +10:u04:renews, +14:u13:submitting, +14:u04:submitting, +10:u03:renews, +14:u12:submitting, +14:u03:submitting, +27:u08:SEQ4_STATUS_LEASE_MOVED, +10:u02:renews, +14:u08:accomplish, +14:u11:submitting, +14:u02:submitting, +10:u01:renews, +14:u07:accomplish, +14:u10:submitting, +14:u01:submitting, +27:u07:SEQ4_STATUS_LEASE_MOVED, +12:u08:continue, +10:u00:renews, +14:u06:accomplish, +14:u00:submitting, +27:u06:SEQ4_STATUS_LEASE_MOVED, +14:u05:accomplish, +27:u14:seq4_status_lease_moved, +27:u05:SEQ4_STATUS_LEASE_MOVED, +12:u07:continue, +14:u04:accomplish, +27:u13:seq4_status_lease_moved, +27:u04:SEQ4_STATUS_LEASE_MOVED, +12:u06:continue, +14:u03:accomplish, +27:u12:seq4_status_lease_moved, +12:u14:continue, +27:u03:SEQ4_STATUS_LEASE_MOVED, +12:u05:continue, +14:u02:accomplish, +27:u11:seq4_status_lease_moved, +12:u13:continue, +27:u02:SEQ4_STATUS_LEASE_MOVED, +12:u04:continue, +15:u08:simplicity,, +14:u01:accomplish, +27:u10:seq4_status_lease_moved, +12:u12:continue, +27:u01:SEQ4_STATUS_LEASE_MOVED, +12:u03:continue, +14:u00:accomplish, +12:u11:continue, +27:u00:SEQ4_STATUS_LEASE_MOVED, +12:u02:continue, +15:u07:simplicity,, +12:u10:continue, +12:u01:continue, +15:u06:simplicity,, +15:u14:simplicity,, +12:u00:continue, +15:u05:simplicity,, +15:u13:simplicity,, +15:u04:simplicity,, +15:u12:simplicity,, +15:u03:simplicity,, +13:u08:terminate, +15:u11:simplicity,, +15:u02:simplicity,, +13:u07:terminate, +15:u10:simplicity,, +15:u01:simplicity,, +12:u08:server),, +13:u06:terminate, +15:u00:simplicity,, +13:u05:terminate, +12:u07:server),, +13:u04:terminate, +12:u06:server),, +13:u03:terminate, +12:u14:server),, +12:u05:server),, +13:u02:terminate, +8:u08:252], +12:u13:server),, +12:u04:server),, +13:u01:terminate, +8:u07:252], +12:u12:server),, +12:u03:server),, +13:u00:terminate, +8:u06:252], +12:u11:server),, +12:u02:server),, +8:u05:252], +12:u10:server),, +12:u01:server),, +8:u04:252], +12:u00:server),, +8:u03:252], +8:u02:252], +8:u01:252], +8:u00:252], +9:uI2:()(),, +15:u08:determined,, +9:uI1:()(),, +9:uI0:()(),, +15:u07:determined,, +15:u06:determined,, +15:u08:attributes), +15:u14:determined,, +15:u05:determined,, +15:u07:attributes), +15:u13:determined,, +15:u04:determined,, +15:u06:attributes), +15:u12:determined,, +15:u03:determined,, +15:u05:attributes), +7:u08:had, +15:u11:determined,, +15:u02:determined,, +15:u04:attributes), +7:u07:had, +15:u10:determined,, +15:u01:determined,, +15:u03:attributes), +7:u06:had, +15:u00:determined,, +14:u08:11.10.9.2., +15:u02:attributes), +7:u05:had, +15:u01:attributes), +7:u04:had, +15:u08:Transitions, +10:u14:above,, +14:u07:11.10.9.2., +15:u00:attributes), +7:u03:had, +15:u07:Transitions, +10:u13:above,, +14:u06:11.10.9.2., +7:u02:had, +15:u06:Transitions, +10:u12:above,, +14:u14:11.10.9.2., +14:u05:11.10.9.2., +7:u01:had, +15:u05:Transitions, +10:u08:proper, +10:u11:above,, +14:u13:11.10.9.2., +14:u04:11.10.9.2., +7:u00:had, +15:u04:Transitions, +10:u07:proper, +10:u10:above,, +14:u12:11.10.9.2., +14:u03:11.10.9.2., +15:u03:Transitions, +10:u06:proper, +14:u11:11.10.9.2., +14:u02:11.10.9.2., +15:u02:Transitions, +10:u05:proper, +14:u10:11.10.9.2., +14:u01:11.10.9.2., +15:u01:Transitions, +10:u04:proper, +11:u08:source,, +14:u00:11.10.9.2., +15:u00:Transitions, +10:u03:proper, +11:u07:source,, +10:u02:proper, +11:u06:source,, +10:u01:proper, +11:u05:source,, +10:u00:proper, +11:u04:source,, +11:u08:fetched, +11:u03:source,, +11:u07:fetched, +11:u14:refetch, +11:u08:strings, +11:u02:source,, +11:u06:fetched, +11:u13:refetch, +11:u01:source,, +11:u05:fetched, +11:u12:refetch, +11:u07:strings, +11:u00:source,, +11:u04:fetched, +11:u11:refetch, +11:u06:strings, +11:u03:fetched, +11:u10:refetch, +11:u14:strings, +11:u05:strings, +11:u02:fetched, +11:u13:strings, +11:u04:strings, +11:u01:fetched, +11:u12:strings, +11:u03:strings, +11:u00:fetched, +11:u11:strings, +11:u02:strings, +11:u10:strings, +11:u01:strings, +11:u00:strings, +15:u14:potentially, +15:u13:potentially, +15:u12:potentially, +15:u11:potentially, +15:u10:potentially, +8:u08:253], +7:uI2:-,:, +8:u07:253], +7:uI1:-,:, +8:u06:253], +7:uI0:-,:, +8:u05:253], +8:u04:253], +12:u08:Transfer, +8:u03:253], +12:u07:Transfer, +8:u02:253], +12:u06:Transfer, +8:u01:253], +12:u05:Transfer, +8:u00:253], +12:u04:Transfer, +12:u03:Transfer, +9:uI2:.,[]., +12:u02:Transfer, +7:u22:Mig, +8:u23:Migr, +9:uI1:.,[]., +12:u01:Transfer, +9:uI0:.,[]., +12:u08:11.11.1., +12:u00:Transfer, +12:u07:11.11.1., +12:u06:11.11.1., +10:u08:(DS's), +12:u14:11.11.1., +12:u05:11.11.1., +12:u13:11.11.1., +12:u04:11.11.1., +10:u07:(DS's), +12:u12:11.11.1., +12:u03:11.11.1., +10:u06:(DS's), +9:u08:DS's., +12:u11:11.11.1., +10:u14:(ds's), +12:u02:11.11.1., +10:u05:(DS's), +9:u07:DS's., +15:u08:Replacement, +12:u10:11.11.1., +10:u13:(ds's), +12:u01:11.11.1., +10:u04:(DS's), +9:u06:DS's., +15:u07:Replacement, +10:u12:(ds's), +6:u21:(D, +7:u22:(DS, +8:u23:(DS', +12:u00:11.11.1., +10:u03:(DS's), +9:u05:DS's., +15:u06:Replacement, +10:u11:(ds's), +10:u02:(DS's), +9:u04:DS's., +15:u05:Replacement, +14:u08:available., +10:u10:(ds's), +10:u01:(DS's), +7:u08:MDS, +9:u03:DS's., +15:u04:Replacement, +14:u07:available., +10:u00:(DS's), +9:u02:DS's., +15:u03:Replacement, +14:u06:available., +13:u08:function., +7:u07:MDS, +9:u01:DS's., +15:u02:Replacement, +14:u05:available., +13:u07:function., +7:u06:MDS, +12:u08:revoking, +9:u00:DS's., +15:u01:Replacement, +14:u04:available., +13:u06:function., +7:u14:mds, +7:u05:MDS, +15:u00:Replacement, +14:u03:available., +13:u05:function., +7:u13:mds, +7:u04:MDS, +12:u07:revoking, +14:u02:available., +13:u04:function., +7:u12:mds, +6:u21:MD, +7:u22:MDS, +7:u23:MDS, +7:u03:MDS, +12:u06:revoking, +14:u01:available., +13:u03:function., +7:u11:mds, +12:u14:revoking, +7:u02:MDS, +12:u05:revoking, +16:u08:transferred,, +14:u00:available., +13:u02:function., +7:u10:mds, +12:u13:revoking, +7:u01:MDS, +12:u04:revoking, +13:u01:function., +12:u12:revoking, +7:u00:MDS, +12:u03:revoking, +16:u07:transferred,, +13:u00:function., +12:u11:revoking, +12:u02:revoking, +16:u06:transferred,, +13:u08:transfer,, +12:u10:revoking, +16:u14:transferred,, +12:u01:revoking, +16:u05:transferred,, +13:u07:transfer,, +16:u13:transferred,, +12:u00:revoking, +16:u04:transferred,, +13:u06:transfer,, +16:u12:transferred,, +16:u03:transferred,, +13:u05:transfer,, +16:u11:transferred,, +16:u02:transferred,, +13:u04:transfer,, +16:u10:transferred,, +16:u01:transferred,, +13:u03:transfer,, +16:u00:transferred,, +13:u02:transfer,, +13:u01:transfer,, +13:u00:transfer,, +8:u14:sort, +8:u08:254], +8:u13:sort, +8:u07:254], +8:u12:sort, +8:u06:254], +8:u11:sort, +8:u05:254], +8:u10:sort, +8:u04:254], +14:u08:Migration,, +8:u03:254], +14:u07:Migration,, +8:u02:254], +14:u06:Migration,, +8:u01:254], +14:u05:Migration,, +8:u00:254], +14:u04:Migration,, +14:u03:Migration,, +14:u02:Migration,, +14:u01:Migration,, +12:u08:replaced, +14:u00:Migration,, +15:u14:replacement, +12:u07:replaced, +15:u13:replacement, +12:u06:replaced, +14:u08:situation,, +15:u12:replacement, +12:u14:replaced, +12:u05:replaced, +15:u11:replacement, +12:u13:replaced, +12:u04:replaced, +14:u07:situation,, +15:u10:replacement, +12:u12:replaced, +12:u03:replaced, +14:u06:situation,, +12:u11:replaced, +14:u14:situation,, +12:u02:replaced, +14:u05:situation,, +12:u10:replaced, +14:u13:situation,, +12:u01:replaced, +14:u04:situation,, +14:u12:situation,, +12:u00:replaced, +14:u03:situation,, +14:u11:situation,, +14:u02:situation,, +14:u10:situation,, +14:u01:situation,, +11:u08:11.12.1, +14:u00:situation,, +11:u07:11.12.1, +11:u06:11.12.1, +12:u08:activity, +11:u05:11.12.1, +12:u07:activity, +15:u08:determined., +11:u04:11.12.1, +12:u06:activity, +11:u03:11.12.1, +12:u05:activity, +15:u07:determined., +11:u02:11.12.1, +12:u04:activity, +15:u06:determined., +11:u01:11.12.1, +12:u03:activity, +15:u14:determined., +15:u05:determined., +11:u00:11.12.1, +12:u02:activity, +15:u13:determined., +15:u04:determined., +12:u01:activity, +15:u08:"Transition, +15:u12:determined., +15:u03:determined., +12:u00:activity, +15:u07:"Transition, +15:u11:determined., +15:u02:determined., +15:u06:"Transition, +14:u08:"Migration, +15:u10:determined., +15:u01:determined., +15:u05:"Transition, +14:u07:"Migration, +15:u00:determined., +15:u04:"Transition, +14:u06:"Migration, +15:u03:"Transition, +14:u05:"Migration, +13:u08:system(s), +15:u02:"Transition, +14:u04:"Migration, +13:u07:system(s), +15:u01:"Transition, +14:u03:"Migration, +13:u06:system(s), +12:u08:renewing, +15:u00:"Transition, +14:u02:"Migration, +13:u05:system(s), +14:u01:"Migration, +13:u04:system(s), +12:u07:renewing, +14:u00:"Migration, +13:u03:system(s), +12:u06:renewing, +13:u02:system(s), +12:u14:renewing, +12:u05:renewing, +13:u01:system(s), +8:u08:255], +12:u13:renewing, +12:u04:renewing, +13:u00:system(s), +8:u07:255], +12:u12:renewing, +12:u03:renewing, +8:u06:255], +12:u11:renewing, +12:u02:renewing, +12:u08:11.12.1., +8:u05:255], +12:u10:renewing, +12:u01:renewing, +8:u04:255], +12:u00:renewing, +12:u07:11.12.1., +8:u03:255], +12:u06:11.12.1., +8:u02:255], +12:u14:11.12.1., +12:u05:11.12.1., +8:u01:255], +12:u13:11.12.1., +12:u04:11.12.1., +8:u00:255], +12:u12:11.12.1., +12:u03:11.12.1., +12:u11:11.12.1., +12:u02:11.12.1., +14:u08:Exceptions, +12:u10:11.12.1., +12:u01:11.12.1., +12:u00:11.12.1., +14:u07:Exceptions, +14:u06:Exceptions, +14:u14:exceptions, +14:u05:Exceptions, +14:u13:exceptions, +17:u14:interrogating, +14:u04:Exceptions, +13:u08:condition, +14:u12:exceptions, +17:u13:interrogating, +14:u03:Exceptions, +13:u07:condition, +14:u11:exceptions, +17:u12:interrogating, +14:u02:Exceptions, +13:u06:condition, +14:u10:exceptions, +17:u11:interrogating, +14:u01:Exceptions, +13:u05:condition, +17:u10:interrogating, +14:u00:Exceptions, +13:u04:condition, +13:u03:condition, +13:u02:condition, +13:u01:condition, +12:u08:migrated, +13:u00:condition, +15:u08:indication,, +12:u07:migrated, +15:u07:indication,, +12:u06:migrated, +15:u06:indication,, +12:u14:migrated, +12:u05:migrated, +15:u05:indication,, +12:u13:migrated, +12:u04:migrated, +15:u04:indication,, +12:u12:migrated, +12:u03:migrated, +15:u03:indication,, +12:u11:migrated, +12:u02:migrated, +15:u02:indication,, +12:u10:migrated, +12:u01:migrated, +15:u01:indication,, +12:u00:migrated, +15:u00:indication,, +14:u08:condition., +14:u07:condition., +14:u08:needlessly, +14:u06:condition., +14:u05:condition., +14:u07:needlessly, +14:u04:condition., +14:u06:needlessly, +14:u03:condition., +14:u14:needlessly, +14:u05:needlessly, +14:u02:condition., +14:u13:needlessly, +14:u04:needlessly, +12:u08:ordinate, +14:u01:condition., +14:u12:needlessly, +14:u03:needlessly, +14:u00:condition., +14:u11:needlessly, +14:u02:needlessly, +12:u07:ordinate, +14:u10:needlessly, +14:u01:needlessly, +12:u06:ordinate, +12:u14:ordinate, +14:u00:needlessly, +12:u05:ordinate, +12:u13:ordinate, +12:u04:ordinate, +12:u12:ordinate, +8:u23:ordi, +12:u03:ordinate, +12:u11:ordinate, +12:u02:ordinate, +12:u10:ordinate, +12:u01:ordinate, +8:u08:256], +12:u00:ordinate, +8:u07:256], +8:u06:256], +8:u05:256], +8:u04:256], +11:u08:issued:, +8:u03:256], +16:u08:combinations, +8:u02:256], +16:u07:combinations, +11:u07:issued:, +8:u01:256], +16:u06:combinations, +11:u06:issued:, +8:u00:256], +16:u05:combinations, +13:u08:asserted., +11:u14:issued:, +11:u05:issued:, +16:u04:combinations, +13:u07:asserted., +11:u13:issued:, +11:u04:issued:, +16:u03:combinations, +13:u06:asserted., +11:u12:issued:, +11:u03:issued:, +16:u02:combinations, +13:u05:asserted., +11:u11:issued:, +11:u02:issued:, +16:u01:combinations, +13:u04:asserted., +11:u10:issued:, +11:u01:issued:, +16:u00:combinations, +13:u03:asserted., +12:u08:rejected, +11:u00:issued:, +13:u02:asserted., +12:u07:rejected, +13:u01:asserted., +12:u06:rejected, +13:u00:asserted., +12:u05:rejected, +10:u08:clear., +12:u04:rejected, +10:u07:clear., +12:u03:rejected, +10:u06:clear., +9:u08:Cases, +12:u02:rejected, +10:u05:clear., +12:u01:rejected, +10:u04:clear., +9:u07:Cases, +12:u00:rejected, +10:u03:clear., +9:u06:Cases, +10:u02:clear., +9:u14:cases, +9:u05:Cases, +10:u01:clear., +9:u13:cases, +9:u04:Cases, +11:u08:remains, +10:u00:clear., +9:u12:cases, +7:u22:Cas, +8:u23:Case, +9:u03:Cases, +9:u11:cases, +9:u02:Cases, +11:u07:remains, +9:u10:cases, +9:u01:Cases, +11:u06:remains, +11:u14:remains, +9:u00:Cases, +11:u05:remains, +11:u13:remains, +11:u04:remains, +11:u12:remains, +11:u03:remains, +13:u08:avoidable, +11:u11:remains, +11:u02:remains, +11:u10:remains, +11:u01:remains, +13:u07:avoidable, +11:u00:remains, +13:u06:avoidable, +13:u14:avoidable, +13:u05:avoidable, +13:u13:avoidable, +13:u04:avoidable, +13:u12:avoidable, +13:u03:avoidable, +13:u11:avoidable, +13:u02:avoidable, +9:u08:going, +13:u10:avoidable, +13:u01:avoidable, +7:u08:on,, +9:u07:going, +13:u00:avoidable, +9:u06:going, +7:u07:on,, +9:u05:going, +13:u14:accessing, +7:u06:on,, +9:u04:going, +13:u13:accessing, +7:u14:on,, +7:u05:on,, +9:u03:going, +12:u08:underway, +13:u12:accessing, +7:u13:on,, +7:u04:on,, +9:u02:going, +12:u07:underway, +13:u11:accessing, +7:u12:on,, +7:u22:on,, +7:u23:on,, +7:u03:on,, +9:u01:going, +12:u06:underway, +13:u10:accessing, +7:u11:on,, +7:u02:on,, +9:u00:going, +12:u05:underway, +8:u08:257], +7:u10:on,, +7:u01:on,, +12:u04:underway, +8:u07:257], +7:u00:on,, +12:u03:underway, +8:u06:257], +12:u02:underway, +8:u05:257], +12:u01:underway, +8:u04:257], +12:u00:underway, +8:u03:257], +14:u08:exclusive,, +8:u02:257], +15:u08:considering, +8:u01:257], +14:u07:exclusive,, +8:u00:257], +14:u06:exclusive,, +15:u07:considering, +12:u08:11.12.2., +14:u14:exclusive,, +14:u05:exclusive,, +15:u06:considering, +12:u07:11.12.2., +14:u13:exclusive,, +14:u04:exclusive,, +15:u05:considering, +12:u06:11.12.2., +14:u12:exclusive,, +14:u03:exclusive,, +15:u04:considering, +12:u05:11.12.2., +14:u11:exclusive,, +14:u02:exclusive,, +15:u03:considering, +10:u08:while,, +12:u04:11.12.2., +14:u10:exclusive,, +14:u01:exclusive,, +15:u02:considering, +12:u03:11.12.2., +14:u00:exclusive,, +15:u01:considering, +10:u07:while,, +12:u02:11.12.2., +15:u00:considering, +10:u06:while,, +12:u01:11.12.2., +10:u14:while,, +10:u05:while,, +12:u00:11.12.2., +10:u13:while,, +10:u04:while,, +14:u08:Performing, +10:u12:while,, +10:u03:while,, +14:u07:Performing, +10:u11:while,, +10:u02:while,, +14:u06:Performing, +10:u10:while,, +12:u14:11.12.2., +10:u01:while,, +14:u05:Performing, +12:u13:11.12.2., +10:u00:while,, +14:u04:Performing, +12:u12:11.12.2., +13:u08:recovery., +14:u03:Performing, +12:u11:11.12.2., +14:u02:Performing, +12:u10:11.12.2., +13:u07:recovery., +14:u01:Performing, +13:u06:recovery., +13:u08:normally,, +14:u00:Performing, +13:u14:recovery., +13:u05:recovery., +13:u13:recovery., +13:u04:recovery., +13:u07:normally,, +9:u08:with., +11:u08:raising, +13:u12:recovery., +13:u03:recovery., +13:u06:normally,, +11:u07:raising, +13:u11:recovery., +13:u14:normally,, +13:u02:recovery., +13:u05:normally,, +9:u07:with., +11:u06:raising, +13:u10:recovery., +13:u13:normally,, +13:u01:recovery., +13:u04:normally,, +9:u06:with., +11:u05:raising, +13:u12:normally,, +9:u14:with., +13:u00:recovery., +13:u03:normally,, +9:u05:with., +11:u04:raising, +13:u11:normally,, +9:u13:with., +13:u02:normally,, +9:u04:with., +11:u03:raising, +13:u10:normally,, +9:u12:with., +13:u01:normally,, +9:u03:with., +11:u02:raising, +11:u08:nothing, +9:u11:with., +13:u00:normally,, +9:u02:with., +11:u01:raising, +11:u07:nothing, +9:u10:with., +9:u01:with., +11:u00:raising, +11:u06:nothing, +9:u00:with., +11:u05:nothing, +11:u04:nothing, +11:u03:nothing, +11:u02:nothing, +11:u01:nothing, +11:u00:nothing, +8:u08:258], +8:u07:258], +8:u06:258], +8:u05:258], +8:u04:258], +10:u08:leaves, +14:u08:operating., +8:u03:258], +10:u07:leaves, +8:u02:258], +10:u06:leaves, +14:u07:operating., +8:u01:258], +10:u05:leaves, +14:u06:operating., +8:u00:258], +10:u04:leaves, +14:u14:operating., +14:u05:operating., +18:u08:lease-migrated, +10:u03:leaves, +14:u08:complexity, +14:u13:operating., +14:u04:operating., +10:u02:leaves, +14:u07:complexity, +14:u12:operating., +14:u03:operating., +18:u07:lease-migrated, +10:u01:leaves, +14:u06:complexity, +14:u11:operating., +14:u02:operating., +18:u06:lease-migrated, +10:u00:leaves, +14:u05:complexity, +14:u10:operating., +18:u14:lease-migrated, +14:u01:operating., +18:u05:lease-migrated, +14:u04:complexity, +18:u13:lease-migrated, +14:u00:operating., +18:u04:lease-migrated, +14:u03:complexity, +18:u12:lease-migrated, +18:u03:lease-migrated, +14:u02:complexity, +18:u11:lease-migrated, +18:u02:lease-migrated, +14:u01:complexity, +18:u10:lease-migrated, +18:u01:lease-migrated, +22:u08:externally-visible, +14:u00:complexity, +18:u00:lease-migrated, +12:u08:Separate, +22:u07:externally-visible, +22:u06:externally-visible, +12:u07:Separate, +22:u14:externally-visible, +22:u05:externally-visible, +12:u06:Separate, +18:u08:non-operation,, +22:u13:externally-visible, +22:u04:externally-visible, +12:u05:Separate, +18:u07:non-operation,, +22:u12:externally-visible, +22:u03:externally-visible, +12:u04:Separate, +18:u06:non-operation,, +22:u11:externally-visible, +8:u23:Sepa, +22:u02:externally-visible, +12:u03:Separate, +18:u05:non-operation,, +27:u08:completion/verification, +22:u10:externally-visible, +22:u01:externally-visible, +12:u02:Separate, +18:u04:non-operation,, +27:u07:completion/verification, +22:u00:externally-visible, +12:u01:Separate, +18:u03:non-operation,, +27:u06:completion/verification, +12:u00:Separate, +18:u02:non-operation,, +27:u05:completion/verification, +18:u01:non-operation,, +27:u04:completion/verification, +18:u00:non-operation,, +27:u03:completion/verification, +27:u02:completion/verification, +27:u01:completion/verification, +27:u00:completion/verification, +21:u08:STATUS4_REFERRAL), +21:u07:STATUS4_REFERRAL), +16:u08:contributing, +21:u06:STATUS4_REFERRAL), +21:u14:status4_referral), +8:uI2:(..!, +21:u05:STATUS4_REFERRAL), +16:u07:contributing, +21:u13:status4_referral), +8:uI1:(..!, +21:u04:STATUS4_REFERRAL), +16:u06:contributing, +21:u12:status4_referral), +16:u14:contributing, +6:u21:ST, +7:u22:STA, +8:u23:STAT, +8:uI0:(..!, +21:u03:STATUS4_REFERRAL), +16:u05:contributing, +21:u11:status4_referral), +16:u13:contributing, +21:u02:STATUS4_REFERRAL), +16:u04:contributing, +21:u10:status4_referral), +16:u12:contributing, +21:u01:STATUS4_REFERRAL), +16:u03:contributing, +16:u11:contributing, +21:u00:STATUS4_REFERRAL), +16:u02:contributing, +16:u10:contributing, +16:u01:contributing, +8:u08:259], +16:u00:contributing, +8:u07:259], +8:u06:259], +8:u05:259], +8:u04:259], +8:u03:259], +8:u02:259], +8:u01:259], +8:u00:259], +13:u08:normally., +13:u07:normally., +14:u08:traversed,, +6:uI2:/:, +13:u06:normally., +14:u07:traversed,, +13:u14:continues, +6:uI1:/:, +13:u05:normally., +14:u06:traversed,, +13:u13:continues, +6:uI0:/:, +13:u04:normally., +14:u05:traversed,, +13:u12:continues, +13:u03:normally., +14:u04:traversed,, +13:u11:continues, +13:u02:normally., +14:u03:traversed,, +13:u10:continues, +13:u01:normally., +14:u02:traversed,, +13:u00:normally., +14:u01:traversed,, +14:u00:traversed,, +15:u08:continually, +14:u08:terminate,, +14:u07:terminate,, +15:u07:continually, +14:u06:terminate,, +15:u08:unnecessary, +15:u06:continually, +14:u05:terminate,, +15:u07:unnecessary, +15:u14:continually, +15:u05:continually, +14:u04:terminate,, +15:u06:unnecessary, +15:u13:continually, +15:u04:continually, +12:u08:11.12.3., +14:u03:terminate,, +15:u05:unnecessary, +15:u12:continually, +15:u03:continually, +14:u02:terminate,, +15:u04:unnecessary, +15:u11:continually, +15:u02:continually, +12:u07:11.12.3., +14:u01:terminate,, +15:u03:unnecessary, +15:u10:continually, +15:u01:continually, +12:u06:11.12.3., +14:u00:terminate,, +15:u02:unnecessary, +12:u14:11.12.3., +15:u00:continually, +12:u05:11.12.3., +15:u01:unnecessary, +12:u13:11.12.3., +12:u04:11.12.3., +15:u00:unnecessary, +14:u08:determine:, +12:u12:11.12.3., +12:u03:11.12.3., +14:u07:determine:, +12:u11:11.12.3., +12:u02:11.12.3., +14:u06:determine:, +12:u10:11.12.3., +12:u01:11.12.3., +14:u05:determine:, +12:u00:11.12.3., +14:u04:determine:, +14:u03:determine:, +14:u02:determine:, +14:u01:determine:, +13:u14:occurred., +14:u00:determine:, +13:u13:occurred., +13:u12:occurred., +8:u08:260], +13:u11:occurred., +8:u07:260], +13:u10:occurred., +8:u06:260], +8:u05:260], +8:u04:260], +8:u03:260], +11:u08:examine, +8:u02:260], +8:u01:260], +11:u07:examine, +16:u08:replacement., +8:u00:260], +11:u06:examine, +11:u14:examine, +11:u05:examine, +16:u07:replacement., +11:u13:examine, +11:u04:examine, +16:u06:replacement., +11:u12:examine, +16:u14:replacement., +11:u03:examine, +16:u05:replacement., +18:u08:client_owner4), +11:u11:examine, +16:u13:replacement., +11:u02:examine, +16:u04:replacement., +11:u10:examine, +16:u12:replacement., +11:u01:examine, +16:u03:replacement., +18:u07:client_owner4), +16:u11:replacement., +11:u00:examine, +16:u02:replacement., +18:u06:client_owner4), +11:u08:status,, +16:u10:replacement., +18:u14:client_owner4), +16:u01:replacement., +18:u05:client_owner4), +11:u07:status,, +18:u13:client_owner4), +16:u00:replacement., +18:u04:client_owner4), +11:u06:status,, +18:u12:client_owner4), +16:u14:confirmation, +18:u03:client_owner4), +11:u05:status,, +18:u11:client_owner4), +16:u13:confirmation, +18:u02:client_owner4), +11:u04:status,, +18:u10:client_owner4), +16:u12:confirmation, +18:u01:client_owner4), +11:u03:status,, +10:u08:Making, +16:u11:confirmation, +18:u00:client_owner4), +11:u02:status,, +10:u07:Making, +16:u10:confirmation, +11:u01:status,, +10:u06:Making, +11:u00:status,, +10:u05:Making, +10:u04:Making, +10:u03:Making, +20:u14:server-trunkable, +10:u02:Making, +20:u13:server-trunkable, +10:u01:Making, +20:u12:server-trunkable, +10:u00:Making, +20:u11:server-trunkable, +20:u10:server-trunkable, +11:u08:11.12.4, +11:u07:11.12.4, +11:u08:11.12.5, +11:u06:11.12.4, +11:u07:11.12.5, +14:u08:migration., +11:u05:11.12.4, +11:u06:11.12.5, +14:u07:migration., +16:u08:Verification, +11:u08:confirm, +11:u04:11.12.4, +11:u05:11.12.5, +14:u06:migration., +16:u07:Verification, +11:u03:11.12.4, +11:u04:11.12.5, +14:u05:migration., +16:u06:Verification, +11:u07:confirm, +17:u08:determination, +11:u02:11.12.4, +11:u03:11.12.5, +14:u04:migration., +16:u05:Verification, +11:u06:confirm, +11:u01:11.12.4, +11:u02:11.12.5, +14:u03:migration., +16:u04:Verification, +11:u05:confirm, +17:u07:determination, +11:u00:11.12.4, +11:u01:11.12.5, +14:u02:migration., +16:u03:Verification, +11:u04:confirm, +17:u06:determination, +11:u00:11.12.5, +14:u01:migration., +16:u02:Verification, +17:u14:determination, +11:u03:confirm, +17:u05:determination, +14:u00:migration., +16:u01:Verification, +17:u13:determination, +11:u02:confirm, +17:u04:determination, +16:u00:Verification, +17:u12:determination, +11:u01:confirm, +17:u03:determination, +17:u11:determination, +11:u00:confirm, +17:u02:determination, +17:u10:determination, +17:u01:determination, +7:uI2:./., +17:u00:determination, +7:uI1:./., +8:u08:261], +7:uI0:./., +8:u07:261], +8:u06:261], +8:u05:261], +8:u04:261], +8:u03:261], +8:u02:261], +8:u01:261], +8:u00:261], +14:u14:migration., +14:u13:migration., +14:u12:migration., +12:u08:examined, +14:u11:migration., +6:u08:A:, +14:u10:migration., +7:uI2:(--, +12:u07:examined, +10:u08:Before, +7:uI1:(--, +12:u06:examined, +6:u07:A:, +10:u07:Before, +12:u14:examined, +7:uI0:(--, +12:u05:examined, +6:u06:A:, +10:u08:above., +10:u06:Before, +12:u13:examined, +6:u14:a:, +12:u04:examined, +6:u05:A:, +6:u08:B:, +10:u05:Before, +12:u12:examined, +6:u13:a:, +12:u03:examined, +6:u04:A:, +10:u07:above., +10:u04:Before, +12:u11:examined, +6:u12:a:, +6:u21:A:, +6:u22:A:, +6:u23:A:, +12:u02:examined, +6:u03:A:, +10:u06:above., +6:u07:B:, +10:u03:Before, +12:u10:examined, +6:u11:a:, +10:u14:above., +12:u01:examined, +6:u02:A:, +10:u05:above., +6:u06:B:, +10:u02:Before, +6:u10:a:, +10:u13:above., +6:u14:b:, +12:u00:examined, +6:u01:A:, +10:u04:above., +6:u05:B:, +6:u08:C:, +10:u01:Before, +10:u08:fails,, +10:u12:above., +6:u13:b:, +6:u00:A:, +10:u03:above., +6:u04:B:, +10:u00:Before, +10:u07:fails,, +10:u11:above., +6:u12:b:, +6:u21:B:, +6:u22:B:, +6:u23:B:, +10:u02:above., +6:u03:B:, +6:u07:C:, +10:u06:fails,, +10:u10:above., +6:u11:b:, +10:u01:above., +6:u02:B:, +6:u06:C:, +12:u08:11.12.4., +10:u05:fails,, +6:u10:b:, +6:u14:c:, +10:u00:above., +6:u01:B:, +6:u05:C:, +10:u04:fails,, +6:u13:c:, +6:u00:B:, +6:u04:C:, +12:u07:11.12.4., +11:u08:involve, +10:u03:fails,, +6:u12:c:, +6:u21:C:, +6:u22:C:, +6:u23:C:, +6:u03:C:, +12:u06:11.12.4., +10:u02:fails,, +6:u11:c:, +12:u14:11.12.4., +6:u02:C:, +12:u05:11.12.4., +11:u07:involve, +10:u01:fails,, +6:u10:c:, +12:u13:11.12.4., +6:u01:C:, +12:u04:11.12.4., +11:u06:involve, +10:u00:fails,, +12:u12:11.12.4., +11:u14:involve, +6:u00:C:, +12:u03:11.12.4., +11:u05:involve, +12:u11:11.12.4., +11:u13:involve, +12:u02:11.12.4., +11:u04:involve, +12:u10:11.12.4., +11:u12:involve, +8:u23:invo, +12:u01:11.12.4., +11:u03:involve, +11:u11:involve, +12:u00:11.12.4., +11:u02:involve, +11:u10:involve, +11:u01:involve, +11:u00:involve, +12:u14:occurred, +8:u08:262], +12:u13:occurred, +8:u07:262], +12:u12:occurred, +8:u06:262], +12:u11:occurred, +8:u05:262], +12:u10:occurred, +8:u04:262], +8:u03:262], +8:u02:262], +8:u01:262], +8:u00:262], +16:u08:possibility,, +16:u07:possibility,, +16:u06:possibility,, +16:u05:possibility,, +16:u04:possibility,, +16:u03:possibility,, +16:u02:possibility,, +16:u01:possibility,, +16:u00:possibility,, +11:u14:succeed, +11:u13:succeed, +11:u12:succeed, +14:u08:sessionid., +11:u11:succeed, +11:u10:succeed, +14:u07:sessionid., +14:u06:sessionid., +9:u08:cease, +14:u14:sessionid., +14:u05:sessionid., +14:u13:sessionid., +14:u04:sessionid., +9:u07:cease, +14:u12:sessionid., +14:u03:sessionid., +9:u06:cease, +14:u11:sessionid., +9:u14:cease, +14:u02:sessionid., +9:u05:cease, +14:u10:sessionid., +9:u13:cease, +14:u01:sessionid., +9:u04:cease, +9:u12:cease, +7:u22:cea, +8:u23:ceas, +14:u00:sessionid., +9:u03:cease, +9:u11:cease, +9:u02:cease, +9:u10:cease, +9:u01:cease, +9:u00:cease, +15:u08:SEQ4_STATUS, +15:u07:SEQ4_STATUS, +15:u06:SEQ4_STATUS, +15:u05:SEQ4_STATUS, +15:u04:SEQ4_STATUS, +15:u03:SEQ4_STATUS, +15:u02:SEQ4_STATUS, +15:u01:SEQ4_STATUS, +15:u00:SEQ4_STATUS, +8:u08:263], +8:u07:263], +8:u06:263], +8:u05:263], +8:u04:263], +8:u03:263], +8:u02:263], +8:u01:263], +8:u00:263], +8:u08:TRUE, +8:u07:TRUE, +12:u08:11.12.5., +8:u06:TRUE, +8:u05:TRUE, +12:u07:11.12.5., +8:u04:TRUE, +12:u06:11.12.5., +8:u03:TRUE, +12:u14:11.12.5., +12:u05:11.12.5., +8:u02:TRUE, +12:u13:11.12.5., +12:u14:transfer, +12:u04:11.12.5., +8:u01:TRUE, +12:u12:11.12.5., +12:u13:transfer, +12:u03:11.12.5., +8:u00:TRUE, +12:u11:11.12.5., +12:u12:transfer, +12:u02:11.12.5., +12:u10:11.12.5., +12:u11:transfer, +12:u01:11.12.5., +12:u10:transfer, +12:u00:11.12.5., +16:u08:preservation, +10:u14:fails,, +16:u07:preservation, +10:u13:fails,, +16:u06:preservation, +10:u12:fails,, +16:u05:preservation, +10:u11:fails,, +16:u04:preservation, +11:u08:checked, +10:u10:fails,, +16:u03:preservation, +11:u07:checked, +16:u02:preservation, +11:u06:checked, +16:u01:preservation, +11:u05:checked, +16:u00:preservation, +11:u04:checked, +11:u03:checked, +11:u02:checked, +11:u01:checked, +11:u00:checked, +12:u14:restart., +8:u08:264], +12:u13:restart., +8:u07:264], +12:u12:restart., +8:u06:264], +12:u11:restart., +8:u05:264], +12:u10:restart., +8:u04:264], +13:u08:immediate, +8:u03:264], +8:u02:264], +13:u07:immediate, +8:u01:264], +13:u06:immediate, +12:u08:11.13.3,, +8:u00:264], +13:u14:immediate, +13:u05:immediate, +13:u13:immediate, +13:u04:immediate, +12:u07:11.13.3,, +13:u12:immediate, +13:u03:immediate, +12:u06:11.13.3,, +13:u11:immediate, +12:u14:11.13.3,, +13:u02:immediate, +12:u05:11.13.3,, +13:u10:immediate, +12:u13:11.13.3,, +13:u01:immediate, +12:u04:11.13.3,, +12:u12:11.13.3,, +13:u00:immediate, +12:u03:11.13.3,, +12:u11:11.13.3,, +12:u02:11.13.3,, +12:u10:11.13.3,, +12:u01:11.13.3,, +12:u00:11.13.3,, +13:u08:standards, +12:u08:11.13.1., +13:u07:standards, +13:u06:standards, +12:u07:11.13.1., +13:u05:standards, +12:u06:11.13.1., +12:u14:11.13.1., +13:u04:standards, +12:u05:11.13.1., +10:u08:report, +12:u13:11.13.1., +13:u03:standards, +12:u04:11.13.1., +8:u08:(via, +12:u12:11.13.1., +13:u02:standards, +12:u03:11.13.1., +10:u07:report, +8:u07:(via, +12:u11:11.13.1., +13:u01:standards, +12:u02:11.13.1., +10:u06:report, +8:u06:(via, +12:u10:11.13.1., +10:u14:report, +13:u00:standards, +12:u01:11.13.1., +10:u05:report, +8:u05:(via, +10:u13:report, +12:u00:11.13.1., +10:u04:report, +8:u04:(via, +10:u12:report, +10:u03:report, +8:u03:(via, +10:u11:report, +10:u02:report, +14:u08:accurately, +8:u02:(via, +10:u10:report, +10:u01:report, +14:u08:subjecting, +8:u01:(via, +10:u00:report, +14:u07:accurately, +8:u00:(via, +14:u06:accurately, +14:u07:subjecting, +14:u14:accurately, +14:u05:accurately, +14:u06:subjecting, +14:u13:accurately, +14:u14:subjecting, +14:u04:accurately, +14:u05:subjecting, +14:u12:accurately, +14:u13:subjecting, +8:u23:accu, +14:u03:accurately, +14:u04:subjecting, +14:u11:accurately, +14:u12:subjecting, +14:u02:accurately, +14:u03:subjecting, +14:u10:accurately, +14:u11:subjecting, +14:u01:accurately, +14:u02:subjecting, +16:u08:well-advised, +14:u10:subjecting, +14:u14:rca_one_fs, +14:u00:accurately, +14:u01:subjecting, +16:u08:information:, +14:u13:rca_one_fs, +14:u00:subjecting, +16:u07:well-advised, +14:u12:rca_one_fs, +11:u14:operate, +7:u22:rca, +8:u23:rca_, +16:u06:well-advised, +16:u07:information:, +14:u11:rca_one_fs, +11:u13:operate, +16:u14:well-advised, +16:u05:well-advised, +16:u06:information:, +14:u10:rca_one_fs, +11:u12:operate, +16:u13:well-advised, +16:u14:information:, +16:u04:well-advised, +16:u05:information:, +11:u11:operate, +16:u12:well-advised, +16:u13:information:, +16:u03:well-advised, +16:u04:information:, +11:u10:operate, +16:u11:well-advised, +16:u12:information:, +16:u02:well-advised, +16:u03:information:, +16:u10:well-advised, +16:u11:information:, +16:u01:well-advised, +16:u02:information:, +16:u10:information:, +16:u00:well-advised, +16:u01:information:, +12:u14:activity, +16:u00:information:, +8:u08:265], +12:u13:activity, +8:u07:265], +12:u12:activity, +8:u06:265], +12:u11:activity, +8:u05:265], +12:u10:activity, +8:u04:265], +8:u03:265], +10:u08:levels, +8:u02:265], +10:u07:levels, +12:u08:11.13.2., +8:u01:265], +10:u06:levels, +8:u00:265], +10:u05:levels, +12:u07:11.13.2., +10:u04:levels, +12:u06:11.13.2., +10:u03:levels, +12:u14:11.13.2., +12:u05:11.13.2., +10:u02:levels, +12:u13:11.13.2., +12:u04:11.13.2., +10:u01:levels, +12:u12:11.13.2., +12:u03:11.13.2., +13:u08:verifier,, +10:u00:levels, +12:u11:11.13.2., +12:u02:11.13.2., +12:u10:11.13.2., +12:u01:11.13.2., +13:u07:verifier,, +12:u00:11.13.2., +13:u06:verifier,, +13:u14:verifier,, +13:u05:verifier,, +13:u13:verifier,, +13:u04:verifier,, +13:u12:verifier,, +13:u03:verifier,, +13:u11:verifier,, +13:u02:verifier,, +13:u10:verifier,, +13:u01:verifier,, +13:u00:verifier,, +17:u08:inadvertently, +17:u07:inadvertently, +17:u06:inadvertently, +17:u14:inadvertently, +17:u05:inadvertently, +17:u13:inadvertently, +17:u04:inadvertently, +8:u08:266], +17:u12:inadvertently, +17:u03:inadvertently, +8:u07:266], +17:u11:inadvertently, +17:u02:inadvertently, +8:u06:266], +17:u10:inadvertently, +17:u01:inadvertently, +8:u05:266], +17:u00:inadvertently, +8:u04:266], +8:u03:266], +8:u02:266], +8:u01:266], +16:u14:acknowledged, +8:u00:266], +16:u13:acknowledged, +16:u12:acknowledged, +16:u11:acknowledged, +16:u10:acknowledged, +12:u08:choices:, +12:u07:choices:, +9:u08:Treat, +12:u06:choices:, +9:u07:Treat, +12:u05:choices:, +9:u06:Treat, +12:u04:choices:, +9:u05:Treat, +12:u03:choices:, +9:u04:Treat, +12:u02:choices:, +9:u03:Treat, +13:u08:Implement, +12:u01:choices:, +9:u02:Treat, +13:u07:Implement, +12:u00:choices:, +9:u01:Treat, +13:u06:Implement, +9:u00:Treat, +13:u05:Implement, +13:u04:Implement, +16:u08:transferring, +13:u03:Implement, +16:u07:transferring, +13:u02:Implement, +16:u06:transferring, +13:u01:Implement, +16:u05:transferring, +13:u00:Implement, +16:u04:transferring, +16:u03:transferring, +12:u14:nfsv4.1,, +16:u02:transferring, +12:u13:nfsv4.1,, +10:u08:longer, +16:u01:transferring, +12:u12:nfsv4.1,, +16:u00:transferring, +11:u08:exists., +12:u11:nfsv4.1,, +10:u07:longer, +11:u07:exists., +12:u10:nfsv4.1,, +10:u06:longer, +11:u06:exists., +13:u08:sequences, +10:u14:longer, +10:u05:longer, +11:u05:exists., +13:u07:sequences, +10:u13:longer, +10:u04:longer, +11:u04:exists., +13:u06:sequences, +10:u12:longer, +10:u03:longer, +14:u08:discussed., +11:u03:exists., +13:u05:sequences, +10:u11:longer, +10:u02:longer, +11:u02:exists., +13:u04:sequences, +10:u10:longer, +10:u01:longer, +14:u07:discussed., +11:u01:exists., +13:u03:sequences, +10:u00:longer, +14:u06:discussed., +11:u00:exists., +13:u02:sequences, +14:u14:discussed., +14:u05:discussed., +13:u01:sequences, +8:u08:267], +14:u13:discussed., +14:u04:discussed., +13:u00:sequences, +8:u07:267], +14:u12:discussed., +14:u03:discussed., +8:u06:267], +14:u11:discussed., +14:u02:discussed., +12:u08:11.13.3., +8:u05:267], +14:u10:discussed., +14:u01:discussed., +8:u04:267], +14:u00:discussed., +12:u07:11.13.3., +8:u03:267], +12:u06:11.13.3., +8:u02:267], +12:u14:11.13.3., +12:u05:11.13.3., +8:u01:267], +12:u13:11.13.3., +12:u04:11.13.3., +8:u00:267], +12:u12:11.13.3., +12:u03:11.13.3., +12:u11:11.13.3., +12:u02:11.13.3., +12:u10:11.13.3., +12:u01:11.13.3., +12:u00:11.13.3., +14:u14:challenges, +14:u13:challenges, +14:u12:challenges, +8:u23:chal, +12:u08:Requests, +14:u11:challenges, +12:u07:Requests, +14:u10:challenges, +12:u06:Requests, +17:u08:unmodifiable,, +12:u05:Requests, +12:u04:Requests, +17:u07:unmodifiable,, +12:u03:Requests, +17:u06:unmodifiable,, +12:u02:Requests, +17:u14:unmodifiable,, +17:u05:unmodifiable,, +12:u01:Requests, +17:u13:unmodifiable,, +17:u04:unmodifiable,, +12:u00:Requests, +17:u12:unmodifiable,, +7:u22:unm, +8:u23:unmo, +17:u03:unmodifiable,, +17:u11:unmodifiable,, +17:u02:unmodifiable,, +17:u10:unmodifiable,, +17:u01:unmodifiable,, +17:u00:unmodifiable,, +13:u08:migrated,, +14:u08:processed,, +13:u07:migrated,, +13:u06:migrated,, +14:u07:processed,, +13:u14:migrated,, +13:u05:migrated,, +14:u06:processed,, +13:u13:migrated,, +14:u14:processed,, +13:u04:migrated,, +14:u05:processed,, +8:u08:268], +13:u12:migrated,, +14:u13:processed,, +13:u03:migrated,, +14:u04:processed,, +8:u07:268], +13:u11:migrated,, +14:u12:processed,, +13:u02:migrated,, +14:u03:processed,, +8:u06:268], +13:u10:migrated,, +14:u11:processed,, +13:u01:migrated,, +14:u02:processed,, +8:u05:268], +14:u10:processed,, +13:u00:migrated,, +14:u01:processed,, +8:u04:268], +14:u00:processed,, +8:u03:268], +8:u02:268], +8:u01:268], +8:u00:268], +11:u14:helpful, +11:u13:helpful, +11:u12:helpful, +11:u11:helpful, +11:u10:helpful, +16:u08:forbearance,, +16:u07:forbearance,, +16:u08:unacceptable, +16:u06:forbearance,, +16:u07:unacceptable, +13:u08:Returning, +16:u05:forbearance,, +16:u06:unacceptable, +13:u07:Returning, +16:u04:forbearance,, +16:u05:unacceptable, +13:u06:Returning, +16:u03:forbearance,, +16:u04:unacceptable, +13:u05:Returning, +16:u02:forbearance,, +16:u03:unacceptable, +13:u04:Returning, +16:u01:forbearance,, +16:u02:unacceptable, +13:u03:Returning, +16:u00:forbearance,, +16:u01:unacceptable, +13:u02:Returning, +16:u00:unacceptable, +13:u01:Returning, +13:u00:Returning, +10:u14:proper, +10:u13:proper, +13:u08:reissued,, +10:u12:proper, +13:u07:reissued,, +10:u11:proper, +13:u06:reissued,, +10:u10:proper, +13:u05:reissued,, +13:u04:reissued,, +13:u03:reissued,, +13:u02:reissued,, +17:u08:sa_cachethis., +13:u01:reissued,, +13:u00:reissued,, +17:u07:sa_cachethis., +17:u06:sa_cachethis., +17:u14:sa_cachethis., +17:u05:sa_cachethis., +9:u08:Avoid, +17:u13:sa_cachethis., +17:u04:sa_cachethis., +9:u07:Avoid, +17:u12:sa_cachethis., +17:u03:sa_cachethis., +9:u06:Avoid, +17:u11:sa_cachethis., +17:u02:sa_cachethis., +9:u05:Avoid, +17:u10:sa_cachethis., +17:u01:sa_cachethis., +9:u04:Avoid, +17:u00:sa_cachethis., +9:u03:Avoid, +8:u08:269], +9:u02:Avoid, +8:u07:269], +9:u01:Avoid, +8:u06:269], +9:u00:Avoid, +8:u05:269], +8:u04:269], +8:u03:269], +8:u02:269], +8:u01:269], +8:u00:269], +26:u14:nfs4err_seq_misordered, +26:u13:nfs4err_seq_misordered, +26:u12:nfs4err_seq_misordered, +26:u11:nfs4err_seq_misordered, +26:u10:nfs4err_seq_misordered, +7:u08:Not, +7:u07:Not, +7:u06:Not, +7:u05:Not, +11:u08:handoff, +7:u04:Not, +11:u07:handoff, +12:u08:Replying, +7:u03:Not, +11:u06:handoff, +12:u07:Replying, +12:u08:handoff,, +7:u02:Not, +11:u05:handoff, +12:u06:Replying, +7:u01:Not, +11:u04:handoff, +12:u05:Replying, +12:u07:handoff,, +7:u00:Not, +11:u03:handoff, +12:u04:Replying, +12:u06:handoff,, +11:u02:handoff, +12:u03:Replying, +12:u14:handoff,, +12:u05:handoff,, +11:u01:handoff, +12:u02:Replying, +12:u13:handoff,, +12:u04:handoff,, +11:u00:handoff, +12:u01:Replying, +12:u12:handoff,, +12:u03:handoff,, +12:u00:Replying, +12:u11:handoff,, +12:u02:handoff,, +12:u10:handoff,, +12:u01:handoff,, +12:u00:handoff,, +10:u08:happen, +10:u07:happen, +10:u06:happen, +10:u05:happen, +10:u04:happen, +10:u03:happen, +15:u14:encountered, +10:u02:happen, +15:u13:encountered, +10:u01:happen, +15:u12:encountered, +10:u00:happen, +15:u11:encountered, +7:u14:up,, +8:u08:270], +15:u10:encountered, +7:u13:up,, +8:u07:270], +7:u12:up,, +7:u22:up,, +7:u23:up,, +8:u06:270], +7:u11:up,, +8:u05:270], +7:u10:up,, +8:u04:270], +8:u03:270], +8:u02:270], +12:u08:11.14.1., +8:u01:270], +8:u00:270], +12:u08:Referral, +12:u07:11.14.1., +12:u07:Referral, +6:u08:us, +12:u06:11.14.1., +12:u06:Referral, +6:u07:us, +12:u14:11.14.1., +12:u05:11.14.1., +10:u08:moved,, +12:u05:Referral, +6:u06:us, +12:u13:11.14.1., +7:u14:let, +12:u04:11.14.1., +11:u08:solely,, +12:u04:Referral, +6:u05:us, +12:u12:11.14.1., +7:u13:let, +12:u03:11.14.1., +10:u07:moved,, +12:u03:Referral, +6:u04:us, +12:u11:11.14.1., +7:u12:let, +7:u23:Let, +12:u02:11.14.1., +10:u06:moved,, +11:u07:solely,, +12:u02:Referral, +6:u03:us, +12:u08:located., +12:u10:11.14.1., +7:u11:let, +10:u14:moved,, +12:u01:11.14.1., +10:u05:moved,, +11:u06:solely,, +12:u01:Referral, +6:u02:us, +12:u07:located., +13:u08:PUTROOTFH, +7:u10:let, +10:u13:moved,, +11:u14:solely,, +12:u00:11.14.1., +10:u04:moved,, +11:u05:solely,, +12:u00:Referral, +6:u01:us, +12:u06:located., +13:u07:PUTROOTFH, +10:u12:moved,, +11:u13:solely,, +10:u03:moved,, +11:u04:solely,, +6:u00:us, +12:u05:located., +13:u06:PUTROOTFH, +10:u11:moved,, +11:u12:solely,, +10:u02:moved,, +11:u03:solely,, +12:u04:located., +13:u05:PUTROOTFH, +10:u10:moved,, +11:u11:solely,, +10:u01:moved,, +11:u02:solely,, +12:u03:located., +13:u04:PUTROOTFH, +11:u10:solely,, +10:u00:moved,, +11:u01:solely,, +12:u02:located., +13:u03:PUTROOTFH, +11:u00:solely,, +12:u01:located., +13:u02:PUTROOTFH, +12:u00:located., +13:u01:PUTROOTFH, +13:u00:PUTROOTFH, +9:uI2:(,,,), +9:uI1:(,,,), +14:u14:pseudo-fs., +9:uI0:(,,,), +14:u13:pseudo-fs., +14:u12:pseudo-fs., +10:uI2:""--./, +14:u11:pseudo-fs., +10:uI1:""--./, +14:u10:pseudo-fs., +10:uI0:""--./, +11:uI2:""--.//, +11:uI1:""--.//, +11:uI0:""--.//, +12:uI2:""--.///, +12:uI1:""--.///, +12:uI0:""--.///, +13:uI2:""--.////, +13:uI1:""--.////, +9:uI2:,,..., +8:u08:271], +13:uI0:""--.////, +9:uI1:,,..., +8:u07:271], +9:uI0:,,..., +8:u06:271], +8:u05:271], +8:u04:271], +8:u03:271], +8:u02:271], +8:u01:271], +8:u00:271], +9:u14:makes, +9:u13:makes, +9:u12:makes, +10:uI2:(,,,)., +9:u08:i.e.,, +9:u11:makes, +10:uI1:(,,,)., +9:u07:i.e.,, +9:u10:makes, +10:uI0:(,,,)., +9:u06:i.e.,, +9:u05:i.e.,, +10:uI2:,..,'., +9:u04:i.e.,, +10:uI1:,..,'., +13:u08:succeeded, +9:u03:i.e.,, +10:uI0:,..,'., +9:u02:i.e.,, +13:u07:succeeded, +9:u01:i.e.,, +9:uI2:,,///, +13:u06:succeeded, +9:u00:i.e.,, +13:u14:succeeded, +9:uI1:,,///, +13:u05:succeeded, +13:u13:succeeded, +9:uI0:,,///, +13:u04:succeeded, +13:u12:succeeded, +13:u03:succeeded, +13:u11:succeeded, +13:u02:succeeded, +11:u08:LOOKUPs, +13:u10:succeeded, +9:uI2:,////, +13:u01:succeeded, +11:u07:LOOKUPs, +9:uI1:,////, +13:u00:succeeded, +11:u06:LOOKUPs, +9:uI0:,////, +11:u05:LOOKUPs, +13:u08:received), +11:u04:LOOKUPs, +9:u08:OP01:, +11:u03:LOOKUPs, +13:u07:received), +12:u08:-Current, +11:u02:LOOKUPs, +13:u06:received), +9:u07:OP01:, +9:u08:OP02:, +11:u01:LOOKUPs, +6:u08:fh, +13:u14:received), +13:u05:received), +9:u06:OP01:, +12:u07:-Current, +9:u08:-Just, +11:u00:LOOKUPs, +6:u07:fh, +17:u08:GETATTR(fsid), +13:u13:received), +9:u14:op01:, +13:u04:received), +9:u05:OP01:, +12:u06:-Current, +9:u07:OP02:, +6:u06:fh, +17:u07:GETATTR(fsid), +13:u12:received), +9:u13:op01:, +12:u14:-current, +13:u03:received), +9:u04:OP01:, +12:u05:-Current, +9:u06:OP02:, +9:u07:-Just, +6:u05:fh, +17:u06:GETATTR(fsid), +13:u11:received), +9:u12:op01:, +12:u13:-current, +9:u14:op02:, +7:u22:OP0, +8:u23:OP01, +13:u02:received), +9:u03:OP01:, +12:u04:-Current, +9:u05:OP02:, +9:u06:-Just, +9:u08:OP03:, +6:u04:fh, +17:u05:GETATTR(fsid), +13:u10:received), +9:u11:op01:, +12:u12:-current, +9:u13:op02:, +9:u14:-just, +6:u21:-C, +7:u22:-Cu, +8:u23:-Cur, +9:uI2::()--, +13:u01:received), +9:u02:OP01:, +12:u03:-Current, +9:u04:OP02:, +9:u05:-Just, +9:u08:OP04:, +6:u03:fh, +17:u04:GETATTR(fsid), +9:u10:op01:, +12:u11:-current, +9:u12:op02:, +9:u13:-just, +8:u23:OP02, +9:uI1::()--, +13:u00:received), +9:u01:OP01:, +12:u02:-Current, +9:u03:OP02:, +9:u04:-Just, +9:u07:OP03:, +8:u08:-Get, +6:u02:fh, +17:u03:GETATTR(fsid), +12:u10:-current, +9:u11:op02:, +9:u12:-just, +6:u21:-J, +7:u22:-Ju, +8:u23:-Jus, +9:uI0::()--, +9:u00:OP01:, +12:u01:-Current, +9:u02:OP02:, +9:u03:-Just, +9:u06:OP03:, +9:u07:OP04:, +6:u01:fh, +17:u02:GETATTR(fsid), +9:u10:op02:, +9:u11:-just, +9:u14:op03:, +12:u00:-Current, +9:u01:OP02:, +9:u02:-Just, +9:u05:OP03:, +9:u06:OP04:, +8:u07:-Get, +6:u00:fh, +17:u01:GETATTR(fsid), +9:u10:-just, +9:u13:op03:, +9:u14:op04:, +9:uI2::""--, +9:u00:OP02:, +9:u01:-Just, +9:u04:OP03:, +9:u05:OP04:, +8:u06:-Get, +9:u08:OP05:, +17:u00:GETATTR(fsid), +9:u12:op03:, +9:u13:op04:, +8:u14:-get, +8:u23:OP03, +9:uI1::""--, +9:u00:-Just, +9:u03:OP03:, +9:u04:OP04:, +8:u05:-Get, +9:u11:op03:, +9:u12:op04:, +8:u13:-get, +8:u14:fsid, +8:u23:OP04, +9:uI0::""--, +9:u02:OP03:, +9:u03:OP04:, +8:u04:-Get, +9:u07:OP05:, +9:u10:op03:, +9:u11:op04:, +8:u12:-get, +8:u13:fsid, +6:u21:-G, +7:u22:-Ge, +8:u23:-Get, +9:u01:OP03:, +9:u02:OP04:, +8:u03:-Get, +9:u06:OP05:, +9:u10:op04:, +8:u11:-get, +8:u12:fsid, +9:u14:op05:, +9:u00:OP03:, +9:u01:OP04:, +8:u02:-Get, +9:u05:OP05:, +8:u08:272], +8:u10:-get, +8:u11:fsid, +9:u13:op05:, +9:u00:OP04:, +8:u01:-Get, +9:u04:OP05:, +8:u07:272], +8:u10:fsid, +9:u12:op05:, +8:u23:OP05, +8:u00:-Get, +9:u03:OP05:, +8:u06:272], +9:u11:op05:, +9:u02:OP05:, +8:u05:272], +9:u10:op05:, +9:u01:OP05:, +9:u08:OP06:, +8:u04:272], +9:u00:OP05:, +8:u03:272], +9:u07:OP06:, +9:u08:OP07:, +8:u02:272], +9:u06:OP06:, +8:u01:272], +9:u14:op06:, +8:uI2:-/-., +9:u05:OP06:, +9:u07:OP07:, +8:u00:272], +9:u13:op06:, +8:uI1:-/-., +9:u04:OP06:, +9:u06:OP07:, +9:u12:op06:, +9:u14:op07:, +8:u23:OP06, +8:uI0:-/-., +9:uI2:-//-., +9:u03:OP06:, +9:u05:OP07:, +9:u08:OP08:, +9:u11:op06:, +9:u13:op07:, +9:uI1:-//-., +9:u02:OP06:, +9:u04:OP07:, +9:u10:op06:, +9:u12:op07:, +8:u23:OP07, +9:uI0:-//-., +9:u01:OP06:, +9:u03:OP07:, +9:u07:OP08:, +9:u08:OP09:, +9:u11:op07:, +9:u00:OP06:, +9:u02:OP07:, +9:u06:OP08:, +9:u10:op07:, +9:u14:op08:, +9:u01:OP07:, +9:u05:OP08:, +9:u07:OP09:, +9:u08:OP10:, +9:u13:op08:, +9:u00:OP07:, +9:u04:OP08:, +9:u06:OP09:, +9:u12:op08:, +9:u14:op09:, +8:u23:OP08, +9:u03:OP08:, +9:u05:OP09:, +9:u07:OP10:, +9:u11:op08:, +9:u13:op09:, +9:u02:OP08:, +9:u04:OP09:, +9:u06:OP10:, +9:u10:op08:, +9:u12:op09:, +9:u14:op10:, +8:u23:OP09, +10:uI2:-///-., +9:u01:OP08:, +9:u03:OP09:, +9:u05:OP10:, +9:u08:OP11:, +9:u11:op09:, +9:u13:op10:, +10:uI1:-///-., +9:u00:OP08:, +9:u02:OP09:, +9:u04:OP10:, +9:u10:op09:, +9:u12:op10:, +7:u22:OP1, +8:u23:OP10, +10:uI0:-///-., +9:u01:OP09:, +9:u03:OP10:, +9:u07:OP11:, +9:u08:OP12:, +9:u11:op10:, +9:u00:OP09:, +9:u02:OP10:, +9:u06:OP11:, +9:u10:op10:, +9:u14:op11:, +9:u01:OP10:, +9:u05:OP11:, +9:u07:OP12:, +9:u13:op11:, +9:u00:OP10:, +9:u04:OP11:, +9:u06:OP12:, +8:u08:-The, +9:u12:op11:, +9:u14:op12:, +8:u23:OP11, +9:u03:OP11:, +9:u05:OP12:, +9:u08:OP13:, +9:u11:op11:, +9:u13:op12:, +9:u02:OP11:, +9:u04:OP12:, +8:u07:-The, +7:u08:-We, +17:u08:GETATTR(fsid,, +9:u10:op11:, +9:u12:op12:, +8:u23:OP12, +10:uI2:-////,, +9:u01:OP11:, +9:u03:OP12:, +8:u06:-The, +9:u07:OP13:, +8:u08:are., +17:u07:GETATTR(fsid,, +9:u11:op12:, +8:u14:-the, +10:uI1:-////,, +9:u00:OP11:, +9:u02:OP12:, +8:u05:-The, +9:u06:OP13:, +7:u07:-We, +17:u06:GETATTR(fsid,, +9:u10:op12:, +8:u13:-the, +9:u14:op13:, +10:uI0:-////,, +9:u01:OP12:, +8:u04:-The, +9:u05:OP13:, +7:u06:-We, +8:u07:are., +17:u05:GETATTR(fsid,, +8:u12:-the, +9:u13:op13:, +7:u14:-we, +6:u21:-T, +7:u22:-Th, +8:u23:-The, +10:uI2::(,)--, +9:u00:OP12:, +8:u03:-The, +9:u04:OP13:, +7:u05:-We, +8:u06:are., +17:u04:GETATTR(fsid,, +8:u11:-the, +9:u12:op13:, +7:u13:-we, +8:u14:are., +8:u23:OP13, +10:uI1::(,)--, +8:u02:-The, +9:u03:OP13:, +7:u04:-We, +8:u05:are., +17:u03:GETATTR(fsid,, +8:u10:-the, +9:u11:op13:, +7:u12:-we, +8:u13:are., +7:u22:-We, +7:u23:-We, +10:uI0::(,)--, +8:u01:-The, +9:u02:OP13:, +7:u03:-We, +8:u04:are., +17:u02:GETATTR(fsid,, +9:u10:op13:, +7:u11:-we, +8:u12:are., +8:u23:are., +8:u00:-The, +9:u01:OP13:, +7:u02:-We, +8:u03:are., +17:u01:GETATTR(fsid,, +7:u10:-we, +8:u11:are., +9:u00:OP13:, +7:u01:-We, +8:u02:are., +17:u00:GETATTR(fsid,, +8:u10:are., +7:u00:-We, +8:u01:are., +8:u00:are., +8:u08:273], +8:u07:273], +8:u06:273], +8:u05:273], +8:u04:273], +8:u03:273], +14:u08:presumably, +8:u02:273], +8:u01:273], +14:u07:presumably, +8:u00:273], +11:uI2:///////, +14:u06:presumably, +14:u14:presumably, +11:uI1:///////, +14:u05:presumably, +14:u13:presumably, +11:uI0:///////, +14:u04:presumably, +14:u12:presumably, +11:uI2:(..,///, +14:u03:presumably, +12:u08:/this/is, +14:u11:presumably, +6:u14:we, +11:uI1:(..,///, +11:uI2:-////),, +14:u02:presumably, +12:u07:/this/is, +14:u10:presumably, +6:u13:we, +11:uI0:(..,///, +11:uI1:-////),, +14:u01:presumably, +12:u06:/this/is, +6:u12:we, +6:u22:we, +6:u23:we, +11:uI0:-////),, +14:u00:presumably, +12:u05:/this/is, +6:u11:we, +12:u04:/this/is, +6:u10:we, +12:u03:/this/is, +12:u02:/this/is, +16:u08:/this/is/the, +9:u08:OP14:, +12:u01:/this/is, +16:u07:/this/is/the, +10:u08:-Fails, +12:u00:/this/is, +16:u06:/this/is/the, +9:u07:OP14:, +16:u05:/this/is/the, +8:uI2:///,, +9:u06:OP14:, +10:u07:-Fails, +16:u04:/this/is/the, +9:u14:op14:, +8:uI1:///,, +9:u05:OP14:, +10:u06:-Fails, +16:u03:/this/is/the, +9:u13:op14:, +10:u14:-fails, +8:uI0:///,, +9:u04:OP14:, +10:u05:-Fails, +16:u02:/this/is/the, +9:u12:op14:, +10:u13:-fails, +8:u23:OP14, +9:u03:OP14:, +10:u04:-Fails, +16:u01:/this/is/the, +9:u11:op14:, +10:u12:-fails, +6:u21:-F, +7:u22:-Fa, +8:u23:-Fai, +9:u02:OP14:, +10:u03:-Fails, +16:u00:/this/is/the, +9:u10:op14:, +10:u11:-fails, +9:u01:OP14:, +10:u02:-Fails, +12:u08:(between, +10:u10:-fails, +9:u00:OP14:, +10:u01:-Fails, +12:u07:(between, +9:u08:gives, +10:u00:-Fails, +8:u08:bare, +12:u06:(between, +9:u07:gives, +10:uI2:(////), +12:u05:(between, +9:u06:gives, +10:uI1:(////), +11:uI2:("""")., +8:u07:bare, +12:u04:(between, +9:u05:gives, +10:uI0:(////), +11:uI1:("""")., +8:u06:bare, +12:u03:(between, +9:u04:gives, +8:u14:bare, +11:uI0:("""")., +8:u05:bare, +12:u02:(between, +9:u03:gives, +9:u08:home., +8:u13:bare, +8:u04:bare, +13:u08:transient, +12:u01:(between, +9:u02:gives, +9:u07:home., +8:u12:bare, +7:u22:bar, +8:u23:bare, +8:u03:bare, +12:u08:11.14.2., +12:u00:(between, +9:u01:gives, +9:u06:home., +8:u11:bare, +12:u14:system's, +8:u02:bare, +13:u07:transient, +9:u00:gives, +9:u05:home., +8:u10:bare, +12:u13:system's, +8:u01:bare, +13:u06:transient, +12:u07:11.14.2., +9:u04:home., +12:u12:system's, +13:u14:transient, +8:u00:bare, +13:u05:transient, +12:u06:11.14.2., +9:u03:home., +12:u11:system's, +13:u13:transient, +12:u14:11.14.2., +13:u04:transient, +12:u05:11.14.2., +9:u02:home., +12:u10:system's, +13:u12:transient, +12:u13:11.14.2., +13:u03:transient, +12:u04:11.14.2., +9:u01:home., +13:u11:transient, +12:u12:11.14.2., +13:u02:transient, +12:u03:11.14.2., +9:u00:home., +13:u10:transient, +12:u11:11.14.2., +13:u01:transient, +12:u02:11.14.2., +12:u10:11.14.2., +13:u00:transient, +12:u01:11.14.2., +12:u00:11.14.2., +8:u08:274], +8:u07:274], +8:u06:274], +8:u05:274], +8:u04:274], +8:u03:274], +8:u02:274], +8:u01:274], +8:u00:274], +13:u08:provided,, +13:u07:provided,, +13:u06:provided,, +13:u05:provided,, +13:u04:provided,, +13:u03:provided,, +13:u02:provided,, +13:u01:provided,, +13:u00:provided,, +11:uI2:(,,,)--, +11:uI1:(,,,)--, +11:uI0:(,,,)--, +6:u22:So, +6:u23:So, +10:uI2:(,,,,), +10:uI1:(,,,,), +10:uI0:(,,,,), +8:u08:275], +8:u07:275], +8:u06:275], +8:u05:275], +8:u04:275], +8:u03:275], +8:u02:275], +8:u01:275], +7:u08:-->, +8:u00:275], +11:u08:NFS_OK., +7:u07:-->, +11:u07:NFS_OK., +10:u08:"path", +7:u06:-->, +22:u08:mounted_on_fileid., +11:u06:NFS_OK., +10:u07:"path", +7:u14:-->, +7:u05:-->, +11:u05:NFS_OK., +10:u06:"path", +7:u13:-->, +7:u04:-->, +22:u07:mounted_on_fileid., +11:u04:NFS_OK., +10:u05:"path", +7:u12:-->, +7:u22:-->, +7:u23:-->, +7:u03:-->, +22:u06:mounted_on_fileid., +11:u03:NFS_OK., +10:u04:"path", +7:u11:-->, +22:u14:mounted_on_fileid., +7:u02:-->, +22:u05:mounted_on_fileid., +11:u02:NFS_OK., +10:u03:"path", +7:u10:-->, +22:u13:mounted_on_fileid., +7:u01:-->, +22:u04:mounted_on_fileid., +11:u01:NFS_OK., +10:u02:"path", +22:u12:mounted_on_fileid., +7:u00:-->, +22:u03:mounted_on_fileid., +11:u00:NFS_OK., +10:u01:"path", +22:u11:mounted_on_fileid., +9:uI2:,..)., +22:u02:mounted_on_fileid., +10:u00:"path", +22:u10:mounted_on_fileid., +9:uI1:,..)., +22:u01:mounted_on_fileid., +9:uI0:,..)., +22:u00:mounted_on_fileid., +16:u08:time_modify), +16:u07:time_modify), +16:u06:time_modify), +9:u14:size,, +9:uI2:(,,,,, +16:u05:time_modify), +9:u13:size,, +9:uI1:(,,,,, +16:u04:time_modify), +9:u12:size,, +9:uI0:(,,,,, +16:u03:time_modify), +9:u11:size,, +16:u02:time_modify), +9:u10:size,, +16:u01:time_modify), +16:u00:time_modify), +9:uI2:,)--., +9:uI1:,)--., +10:u14:"path", +9:uI0:,)--., +10:u13:"path", +7:uI2:"":, +8:u08:276], +10:u12:"path", +7:u22:"pa, +8:u23:"pat, +7:uI1:"":, +7:uI2:(:), +8:u07:276], +10:u11:"path", +7:uI0:"":, +7:uI1:(:), +8:u06:276], +10:u10:"path", +7:uI0:(:), +8:u05:276], +8:u04:276], +11:u08:system), +8:u03:276], +8:u02:276], +11:u07:system), +8:u01:276], +11:u06:system), +8:u00:276], +11:u14:system), +6:uI2:(:, +11:u05:system), +11:u13:system), +6:uI1:(:, +11:u04:system), +11:u12:system), +6:uI0:(:, +11:u03:system), +11:u11:system), +11:u02:system), +11:u10:system), +11:u01:system), +16:u08:fs_location4, +11:u00:system), +13:u08:server<>;, +16:u07:fs_location4, +16:u06:fs_location4, +13:u07:server<>;, +13:u08:rootpath;, +16:u05:fs_location4, +13:u06:server<>;, +16:u04:fs_location4, +13:u14:server<>;, +13:u05:server<>;, +13:u07:rootpath;, +16:u03:fs_location4, +13:u13:server<>;, +13:u14:pathname4, +13:u04:server<>;, +13:u06:rootpath;, +16:u02:fs_location4, +17:u08:fs_locations4, +13:u12:server<>;, +13:u13:pathname4, +13:u14:rootpath;, +13:u03:server<>;, +13:u05:rootpath;, +12:u08:fs_root;, +16:u01:fs_location4, +17:u07:fs_locations4, +13:u11:server<>;, +13:u12:pathname4, +13:u13:rootpath;, +13:u02:server<>;, +13:u04:rootpath;, +16:u00:fs_location4, +17:u06:fs_locations4, +13:u10:server<>;, +13:u11:pathname4, +13:u12:rootpath;, +13:u01:server<>;, +13:u03:rootpath;, +12:u07:fs_root;, +16:u08:locations<>;, +17:u05:fs_locations4, +13:u10:pathname4, +13:u11:rootpath;, +13:u00:server<>;, +13:u02:rootpath;, +12:u06:fs_root;, +17:u04:fs_locations4, +13:u10:rootpath;, +12:u14:fs_root;, +13:u01:rootpath;, +12:u05:fs_root;, +16:u07:locations<>;, +17:u03:fs_locations4, +12:u13:fs_root;, +16:u14:fs_location4, +13:u00:rootpath;, +12:u04:fs_root;, +16:u06:locations<>;, +17:u02:fs_locations4, +12:u12:fs_root;, +16:u13:fs_location4, +16:u14:locations<>;, +8:u23:fs_r, +12:u03:fs_root;, +16:u05:locations<>;, +17:u01:fs_locations4, +12:u11:fs_root;, +16:u12:fs_location4, +16:u13:locations<>;, +12:u02:fs_root;, +16:u04:locations<>;, +17:u00:fs_locations4, +12:u10:fs_root;, +16:u11:fs_location4, +16:u12:locations<>;, +12:u01:fs_root;, +16:u03:locations<>;, +15:u08:namespaces,, +16:u10:fs_location4, +16:u11:locations<>;, +12:u00:fs_root;, +16:u02:locations<>;, +16:u10:locations<>;, +16:u01:locations<>;, +15:u07:namespaces,, +16:u00:locations<>;, +15:u06:namespaces,, +7:u08:DNS, +15:u14:namespaces,, +15:u05:namespaces,, +7:u07:DNS, +15:u13:namespaces,, +15:u04:namespaces,, +7:u06:DNS, +15:u12:namespaces,, +15:u03:namespaces,, +11:u08:number., +7:u05:DNS, +15:u11:namespaces,, +15:u02:namespaces,, +7:u04:DNS, +15:u10:namespaces,, +15:u01:namespaces,, +11:u07:number., +7:u03:DNS, +12:uI2:(..[]),,, +15:u00:namespaces,, +11:u06:number., +7:u02:DNS, +11:u14:number., +12:uI1:(..[]),,, +8:uI2:"..", +11:u05:number., +7:u01:DNS, +11:u13:number., +12:uI0:(..[]),,, +8:uI1:"..", +11:u04:number., +7:u00:DNS, +11:u12:number., +8:uI0:"..", +11:u03:number., +16:u08:convenience., +11:u11:number., +11:u02:number., +16:u07:convenience., +11:u10:number., +11:u01:number., +16:u06:convenience., +11:u00:number., +16:u05:convenience., +10:u14:listed, +16:u04:convenience., +10:u13:listed, +13:u08:provided., +16:u03:convenience., +10:u12:listed, +16:u02:convenience., +10:u11:listed, +13:u07:provided., +16:u01:convenience., +10:u10:listed, +13:u06:provided., +16:u00:convenience., +13:u14:provided., +13:u05:provided., +8:u08:277], +13:u13:provided., +13:u04:provided., +8:u07:277], +13:u12:provided., +13:u03:provided., +8:u06:277], +13:u11:provided., +13:u02:provided., +8:u05:277], +13:u10:provided., +13:u01:provided., +8:u04:277], +13:u00:provided., +11:u08:fs_root, +8:u03:277], +8:u02:277], +11:u07:fs_root, +8:u01:277], +11:u06:fs_root, +15:u08:designates., +8:u00:277], +11:u14:fs_root, +11:u05:fs_root, +11:u13:fs_root, +11:u04:fs_root, +15:u07:designates., +11:u12:fs_root, +11:u03:fs_root, +15:u06:designates., +11:u11:fs_root, +15:u14:designates., +11:u02:fs_root, +15:u05:designates., +11:u10:fs_root, +15:u13:designates., +11:u01:fs_root, +15:u04:designates., +15:u12:designates., +11:u00:fs_root, +15:u03:designates., +12:u08:fs_root., +15:u11:designates., +15:u02:designates., +15:u10:designates., +15:u01:designates., +12:u07:fs_root., +15:u00:designates., +12:u06:fs_root., +12:u14:fs_root., +12:u05:fs_root., +12:u13:fs_root., +12:u04:fs_root., +12:u12:fs_root., +12:u03:fs_root., +13:u08:/a/b/c/d,, +12:u11:fs_root., +12:u02:fs_root., +12:u08:switches, +13:u07:/a/b/c/d,, +12:u10:fs_root., +13:uI2:///.,///., +12:u01:fs_root., +13:u06:/a/b/c/d,, +13:uI1:///.,///., +12:u00:fs_root., +12:u07:switches, +10:u08:servB., +13:u05:/a/b/c/d,, +14:u08:referenced, +13:uI0:///.,///., +12:u06:switches, +9:u08:servA, +13:u04:/a/b/c/d,, +14:u07:referenced, +12:u14:switches, +9:uI2:'///., +12:u05:switches, +10:u07:servB., +17:u08:fs_locations., +13:u03:/a/b/c/d,, +14:u06:referenced, +12:u13:switches, +9:uI1:'///., +12:u04:switches, +10:u06:servB., +9:u07:servA, +13:u02:/a/b/c/d,, +14:u05:referenced, +12:u12:switches, +10:u14:servb., +9:uI0:'///., +12:u03:switches, +10:u05:servB., +9:u06:servA, +17:u07:fs_locations., +13:u01:/a/b/c/d,, +14:u04:referenced, +12:u11:switches, +10:u13:servb., +9:u14:serva, +12:u02:switches, +10:u04:servB., +9:u05:servA, +17:u06:fs_locations., +13:u00:/a/b/c/d,, +14:u03:referenced, +12:u10:switches, +10:u12:servb., +9:u13:serva, +17:u14:fs_locations., +12:u01:switches, +10:u03:servB., +9:u04:servA, +17:u05:fs_locations., +14:u02:referenced, +10:u11:servb., +9:u12:serva, +17:u13:fs_locations., +12:u00:switches, +10:u02:servB., +9:u03:servA, +17:u04:fs_locations., +14:u01:referenced, +10:u10:servb., +9:u11:serva, +17:u12:fs_locations., +8:uI2:///., +10:u01:servB., +9:u02:servA, +17:u03:fs_locations., +14:u00:referenced, +9:u10:serva, +17:u11:fs_locations., +8:uI1:///., +11:uI2:,//////, +10:u00:servB., +9:u01:servA, +17:u02:fs_locations., +12:u08:rootpath, +17:u10:fs_locations., +8:uI0:///., +11:uI1:,//////, +9:u00:servA, +17:u01:fs_locations., +12:u07:rootpath, +11:uI0:,//////, +17:u00:fs_locations., +12:u06:rootpath, +12:u05:rootpath, +12:u04:rootpath, +12:u14:rootpath, +34:u08:"/aleph/beth/gimel/daleth/he"., +12:u03:rootpath, +12:u13:rootpath, +12:u02:rootpath, +12:u12:rootpath, +34:u07:"/aleph/beth/gimel/daleth/he"., +12:u08:replaces, +12:u01:rootpath, +12:u11:rootpath, +11:uI2:"""//",, +34:u06:"/aleph/beth/gimel/daleth/he"., +12:u00:rootpath, +12:u10:rootpath, +34:u14:"/aleph/beth/gimel/daleth/he"., +11:uI1:"""//",, +34:u05:"/aleph/beth/gimel/daleth/he"., +12:u07:replaces, +14:u08:substitute, +34:u13:"/aleph/beth/gimel/daleth/he"., +11:uI0:"""//",, +12:uI2:"/////"., +34:u04:"/aleph/beth/gimel/daleth/he"., +12:u06:replaces, +14:u07:substitute, +34:u12:"/aleph/beth/gimel/daleth/he"., +12:u14:replaces, +6:u21:"/, +7:u22:"/a, +8:u23:"/al, +12:uI1:"/////"., +34:u03:"/aleph/beth/gimel/daleth/he"., +12:u05:replaces, +14:u06:substitute, +34:u11:"/aleph/beth/gimel/daleth/he"., +12:u13:replaces, +12:uI0:"/////"., +34:u02:"/aleph/beth/gimel/daleth/he"., +12:u04:replaces, +11:u08:glagoli, +14:u05:substitute, +34:u10:"/aleph/beth/gimel/daleth/he"., +12:u12:replaces, +34:u01:"/aleph/beth/gimel/daleth/he"., +12:u03:replaces, +14:u04:substitute, +12:u11:replaces, +34:u00:"/aleph/beth/gimel/daleth/he"., +12:u02:replaces, +11:u07:glagoli, +14:u03:substitute, +12:u10:replaces, +12:u01:replaces, +11:u06:glagoli, +14:u02:substitute, +11:u14:glagoli, +12:u00:replaces, +11:u05:glagoli, +14:u01:substitute, +11:u13:glagoli, +11:u04:glagoli, +14:u00:substitute, +8:u08:278], +11:u12:glagoli, +7:u22:gla, +8:u23:glag, +11:u03:glagoli, +8:u07:278], +11:u11:glagoli, +11:u02:glagoli, +8:u06:278], +11:u10:glagoli, +11:u01:glagoli, +12:u08:glagoli,, +8:u05:278], +11:u00:glagoli, +10:u08:serv2,, +8:u04:278], +12:u07:glagoli,, +25:u08:/az/buky/vedi/glagoli, +8:u03:278], +12:u06:glagoli,, +10:u07:serv2,, +12:u08:pathname, +8:u02:278], +12:u14:glagoli,, +12:u05:glagoli,, +10:u06:serv2,, +25:u07:/az/buky/vedi/glagoli, +8:u01:278], +12:u13:glagoli,, +10:u14:serv2,, +12:u04:glagoli,, +10:u05:serv2,, +25:u06:/az/buky/vedi/glagoli, +12:u07:pathname, +8:u00:278], +12:u12:glagoli,, +10:u13:serv2,, +25:u14:/az/buky/vedi/glagoli, +8:uI2:,//., +12:u03:glagoli,, +10:u04:serv2,, +25:u05:/az/buky/vedi/glagoli, +12:u06:pathname, +12:u08:applies., +12:u11:glagoli,, +10:u12:serv2,, +25:u13:/az/buky/vedi/glagoli, +12:u14:pathname, +8:uI1:,//., +11:uI2://////,, +12:u02:glagoli,, +10:u03:serv2,, +25:u04:/az/buky/vedi/glagoli, +12:u05:pathname, +12:u10:glagoli,, +10:u11:serv2,, +25:u12:/az/buky/vedi/glagoli, +12:u13:pathname, +7:u22:/az, +8:u23:/az/, +8:uI0:,//., +11:uI1://////,, +12:u01:glagoli,, +10:u02:serv2,, +25:u03:/az/buky/vedi/glagoli, +12:u04:pathname, +12:u07:applies., +10:u10:serv2,, +25:u11:/az/buky/vedi/glagoli, +12:u12:pathname, +11:uI0://////,, +12:u00:glagoli,, +10:u01:serv2,, +25:u02:/az/buky/vedi/glagoli, +12:u03:pathname, +12:u06:applies., +25:u10:/az/buky/vedi/glagoli, +12:u11:pathname, +12:u14:applies., +10:u00:serv2,, +25:u01:/az/buky/vedi/glagoli, +12:u02:pathname, +12:u05:applies., +12:u10:pathname, +12:u13:applies., +25:u00:/az/buky/vedi/glagoli, +12:u01:pathname, +12:u04:applies., +12:u12:applies., +12:u00:pathname, +12:u03:applies., +12:u11:applies., +12:u02:applies., +12:u10:applies., +12:u01:applies., +12:u08:context., +14:u14:available., +12:u00:applies., +14:u13:available., +12:u07:context., +14:u12:available., +12:u06:context., +14:u11:available., +12:u14:context., +12:u05:context., +14:u10:available., +12:u13:context., +12:u04:context., +12:u12:context., +12:u03:context., +12:u11:context., +12:u02:context., +12:u10:context., +12:u01:context., +12:u08:(absent), +12:u00:context., +12:u07:(absent), +12:u06:(absent), +12:u05:(absent), +12:u04:(absent), +12:u03:(absent), +12:u02:(absent), +12:u01:(absent), +12:u00:(absent), +7:u08:is,, +10:u14:error,, +10:u13:error,, +7:u07:is,, +10:u12:error,, +7:u06:is,, +10:u11:error,, +7:u14:is,, +7:u05:is,, +8:u08:279], +10:u10:error,, +7:u13:is,, +7:u04:is,, +8:u07:279], +7:u12:is,, +7:u22:is,, +7:u23:is,, +7:u03:is,, +8:u06:279], +7:u11:is,, +7:u02:is,, +8:u05:279], +7:u10:is,, +7:u01:is,, +8:u04:279], +7:u00:is,, +8:u03:279], +18:u08:write-verifier, +12:u08:failover, +8:u02:279], +18:u07:write-verifier, +8:u01:279], +18:u06:write-verifier, +12:u07:failover, +22:u08:fs_locations_info., +8:u00:279], +18:u05:write-verifier, +12:u06:failover, +18:u04:write-verifier, +12:u14:failover, +12:u05:failover, +22:u07:fs_locations_info., +18:u03:write-verifier, +12:u08:choices,, +12:u13:failover, +12:u04:failover, +22:u06:fs_locations_info., +18:u02:write-verifier, +12:u07:choices,, +12:u12:failover, +22:u14:fs_locations_info., +12:u03:failover, +22:u05:fs_locations_info., +18:u08:"fs_locations", +18:u01:write-verifier, +12:u06:choices,, +12:u11:failover, +22:u13:fs_locations_info., +12:u02:failover, +22:u04:fs_locations_info., +18:u00:write-verifier, +12:u05:choices,, +12:u10:failover, +22:u12:fs_locations_info., +12:u01:failover, +22:u03:fs_locations_info., +18:u07:"fs_locations", +12:u04:choices,, +22:u11:fs_locations_info., +12:u00:failover, +22:u02:fs_locations_info., +18:u06:"fs_locations", +15:u08:replacement, +12:u03:choices,, +22:u10:fs_locations_info., +18:u14:"fs_locations", +22:u01:fs_locations_info., +18:u05:"fs_locations", +12:u02:choices,, +18:u13:"fs_locations", +22:u00:fs_locations_info., +18:u04:"fs_locations", +15:u07:replacement, +12:u01:choices,, +18:u12:"fs_locations", +6:u21:"f, +7:u22:"fs, +8:u23:"fs_, +18:u03:"fs_locations", +15:u06:replacement, +12:u00:choices,, +18:u11:"fs_locations", +18:u02:"fs_locations", +15:u05:replacement, +18:u10:"fs_locations", +18:u01:"fs_locations", +15:u04:replacement, +18:u00:"fs_locations", +15:u03:replacement, +15:u02:replacement, +15:u01:replacement, +15:u00:replacement, +12:u08:leverage, +12:u07:leverage, +12:u06:leverage, +12:u14:leverage, +12:u05:leverage, +12:u13:leverage, +12:u04:leverage, +13:u08:replica)., +12:u12:leverage, +12:u03:leverage, +13:u07:replica)., +12:u11:leverage, +12:u02:leverage, +13:u06:replica)., +12:u10:leverage, +12:u01:leverage, +13:u05:replica)., +12:u00:leverage, +13:u04:replica)., +15:u08:disruption,, +13:u03:replica)., +15:u07:disruption,, +13:u02:replica)., +15:u06:disruption,, +13:u01:replica)., +15:u05:disruption,, +13:u00:replica)., +15:u04:disruption,, +15:u03:disruption,, +15:u02:disruption,, +15:u01:disruption,, +15:u00:disruption,, +8:u08:280], +10:uI2:--(..,, +8:u07:280], +10:uI1:--(..,, +8:u06:280], +10:uI0:--(..,, +11:u08:write),, +8:u05:280], +8:u04:280], +11:u07:write),, +8:u03:280], +11:u06:write),, +8:u02:280], +18:u08:Server-derived, +11:u14:write),, +11:u05:write),, +8:u01:280], +18:u07:Server-derived, +11:u13:write),, +8:uI2:),--, +11:u04:write),, +8:u00:280], +18:u06:Server-derived, +11:u12:write),, +8:uI1:),--, +11:u03:write),, +18:u05:Server-derived, +11:u11:write),, +8:uI0:),--, +11:u02:write),, +18:u04:Server-derived, +11:u10:write),, +11:u01:write),, +18:u03:Server-derived, +11:u00:write),, +18:u02:Server-derived, +18:u01:Server-derived, +12:u14:contains, +8:uI2:.-(), +18:u00:Server-derived, +12:u13:contains, +8:uI1:.-(), +12:u12:contains, +8:uI0:.-(), +24:u08:fs_locations_server4, +12:u11:contains, +12:u10:contains, +24:u07:fs_locations_server4, +18:u08:server-replica, +24:u06:fs_locations_server4, +13:u08:fls_info,, +24:u14:fs_locations_server4, +24:u05:fs_locations_server4, +18:u07:server-replica, +24:u13:fs_locations_server4, +24:u04:fs_locations_server4, +18:u06:server-replica, +13:u07:fls_info,, +24:u12:fs_locations_server4, +18:u14:server-replica, +24:u03:fs_locations_server4, +18:u05:server-replica, +13:u06:fls_info,, +21:u08:fs_location_item4, +23:u08:fs_location_server4, +24:u11:fs_locations_server4, +18:u13:server-replica, +13:u14:fls_info,, +24:u02:fs_locations_server4, +18:u04:server-replica, +13:u05:fls_info,, +23:u07:fs_location_server4, +14:u08:structures, +24:u10:fs_locations_server4, +18:u12:server-replica, +13:u13:fls_info,, +24:u01:fs_locations_server4, +18:u03:server-replica, +13:u04:fls_info,, +21:u07:fs_location_item4, +14:u08:trunkable., +23:u06:fs_location_server4, +14:u07:structures, +18:u11:server-replica, +13:u12:fls_info,, +7:u22:fls, +8:u23:fls_, +24:u00:fs_locations_server4, +18:u02:server-replica, +13:u03:fls_info,, +21:u06:fs_location_item4, +12:u08:identity, +23:u05:fs_location_server4, +14:u06:structures, +18:u10:server-replica, +13:u11:fls_info,, +21:u14:fs_location_item4, +18:u01:server-replica, +13:u02:fls_info,, +21:u05:fs_location_item4, +14:u07:trunkable., +23:u04:fs_location_server4, +14:u05:structures, +13:u10:fls_info,, +21:u13:fs_location_item4, +18:u00:server-replica, +13:u01:fls_info,, +21:u04:fs_location_item4, +14:u06:trunkable., +12:u07:identity, +23:u03:fs_location_server4, +14:u04:structures, +9:u08:case., +21:u12:fs_location_item4, +14:u14:trunkable., +13:u00:fls_info,, +21:u03:fs_location_item4, +14:u05:trunkable., +12:u06:identity, +23:u08:fs_locations_server, +23:u02:fs_location_server4, +14:u03:structures, +9:u07:case., +21:u11:fs_location_item4, +14:u13:trunkable., +12:u14:identity, +21:u02:fs_location_item4, +14:u04:trunkable., +12:u05:identity, +23:u01:fs_location_server4, +14:u02:structures, +9:u06:case., +10:u08:entry., +21:u10:fs_location_item4, +14:u12:trunkable., +12:u13:identity, +21:u01:fs_location_item4, +14:u03:trunkable., +12:u04:identity, +23:u07:fs_locations_server, +23:u00:fs_location_server4, +14:u01:structures, +9:u05:case., +10:u07:entry., +19:u08:FS4LIGF_CUR_REQ, +14:u11:trunkable., +12:u12:identity, +21:u00:fs_location_item4, +14:u02:trunkable., +12:u03:identity, +23:u06:fs_locations_server, +14:u00:structures, +9:u04:case., +10:u06:entry., +19:u07:FS4LIGF_CUR_REQ, +14:u10:trunkable., +12:u11:identity, +23:u14:fs_locations_server, +14:u01:trunkable., +12:u02:identity, +23:u05:fs_locations_server, +9:u03:case., +10:u05:entry., +19:u06:FS4LIGF_CUR_REQ, +12:u10:identity, +23:u13:fs_locations_server, +14:u00:trunkable., +12:u01:identity, +23:u04:fs_locations_server, +9:u02:case., +10:u04:entry., +19:u05:FS4LIGF_CUR_REQ, +23:u12:fs_locations_server, +12:u00:identity, +23:u03:fs_locations_server, +9:u01:case., +10:u03:entry., +19:u04:FS4LIGF_CUR_REQ, +23:u11:fs_locations_server, +23:u02:fs_locations_server, +9:u00:case., +10:u02:entry., +19:u03:FS4LIGF_CUR_REQ, +12:u08:Further,, +23:u10:fs_locations_server, +23:u01:fs_locations_server, +10:u01:entry., +19:u02:FS4LIGF_CUR_REQ, +12:u07:Further,, +23:u00:fs_locations_server, +10:u00:entry., +19:u01:FS4LIGF_CUR_REQ, +12:u06:Further,, +19:u00:FS4LIGF_CUR_REQ, +12:u05:Further,, +12:u04:Further,, +9:u14:going, +17:u08:(fli_fs_root,, +12:u03:Further,, +9:u13:going, +12:u02:Further,, +9:u12:going, +7:u22:goi, +8:u23:goin, +17:u07:(fli_fs_root,, +12:u01:Further,, +9:u11:going, +17:u06:(fli_fs_root,, +18:u08:(fli_rootpath), +12:u00:Further,, +9:u10:going, +17:u14:(fli_fs_root,, +17:u05:(fli_fs_root,, +17:u13:(fli_fs_root,, +17:u04:(fli_fs_root,, +18:u07:(fli_rootpath), +17:u12:(fli_fs_root,, +7:u22:(fl, +8:u23:(fli, +17:u03:(fli_fs_root,, +18:u06:(fli_rootpath), +17:u11:(fli_fs_root,, +18:u14:(fli_rootpath), +17:u02:(fli_fs_root,, +18:u05:(fli_rootpath), +17:u10:(fli_fs_root,, +18:u13:(fli_rootpath), +17:u01:(fli_fs_root,, +18:u04:(fli_rootpath), +8:u08:281], +18:u12:(fli_rootpath), +17:u00:(fli_fs_root,, +18:u03:(fli_rootpath), +8:u07:281], +18:u11:(fli_rootpath), +18:u02:(fli_rootpath), +8:u06:281], +18:u10:(fli_rootpath), +18:u01:(fli_rootpath), +8:u05:281], +18:u00:(fli_rootpath), +8:u04:281], +6:u08:*/, +8:u03:281], +11:u08:Defines, +8:u02:281], +11:u07:Defines, +6:u07:*/, +8:u01:281], +11:u06:Defines, +6:uI2:/*, +6:u06:*/, +17:u08:fls_currency;, +8:u00:281], +11:u05:Defines, +6:u14:*/, +6:uI1:/*, +6:u05:*/, +11:u04:Defines, +6:u13:*/, +6:uI0:/*, +6:uI2:*/, +6:u04:*/, +17:u07:fls_currency;, +15:u08:fls_info<>;, +11:u03:Defines, +6:u12:*/, +11:u14:int32_t, +6:u21:*/, +6:u22:*/, +6:u23:*/, +6:uI1:*/, +6:u03:*/, +17:u06:fls_currency;, +11:u02:Defines, +6:u11:*/, +11:u13:int32_t, +17:u14:fls_currency;, +6:uI0:*/, +6:u02:*/, +17:u05:fls_currency;, +15:u07:fls_info<>;, +15:u08:fls_server;, +11:u01:Defines, +6:u10:*/, +11:u12:int32_t, +17:u13:fls_currency;, +8:u23:int3, +6:u01:*/, +17:u04:fls_currency;, +15:u06:fls_info<>;, +11:u00:Defines, +11:u11:int32_t, +17:u12:fls_currency;, +15:u14:fls_info<>;, +6:u00:*/, +17:u03:fls_currency;, +15:u05:fls_info<>;, +15:u07:fls_server;, +11:u10:int32_t, +17:u11:fls_currency;, +15:u13:fls_info<>;, +17:u02:fls_currency;, +15:u04:fls_info<>;, +15:u06:fls_server;, +17:u10:fls_currency;, +15:u12:fls_info<>;, +15:u14:fls_server;, +17:u01:fls_currency;, +15:u03:fls_info<>;, +15:u05:fls_server;, +8:u08:Byte, +15:u11:fls_info<>;, +15:u13:fls_server;, +17:u00:fls_currency;, +15:u02:fls_info<>;, +15:u04:fls_server;, +8:u07:Byte, +13:u08:fls_info:, +15:u10:fls_info<>;, +15:u12:fls_server;, +15:u01:fls_info<>;, +15:u03:fls_server;, +8:u06:Byte, +13:u07:fls_info:, +15:u11:fls_server;, +15:u00:fls_info<>;, +15:u02:fls_server;, +8:u05:Byte, +13:u06:fls_info:, +15:u10:fls_server;, +15:u01:fls_server;, +8:u04:Byte, +13:u05:fls_info:, +18:u08:FSLI4BX_GFLAGS, +8:uI2:*:,,, +15:u00:fls_server;, +8:u03:Byte, +13:u04:fls_info:, +18:u07:FSLI4BX_GFLAGS, +6:u08:0;, +8:uI1:*:,,, +8:u02:Byte, +13:u03:fls_info:, +18:u06:FSLI4BX_GFLAGS, +6:u07:0;, +18:u08:FSLI4BX_TFLAGS, +8:uI0:*:,,, +8:u01:Byte, +13:u02:fls_info:, +18:u05:FSLI4BX_GFLAGS, +6:u06:0;, +18:u07:FSLI4BX_TFLAGS, +6:u08:1;, +8:u00:Byte, +13:u01:fls_info:, +18:u04:FSLI4BX_GFLAGS, +6:u05:0;, +18:u06:FSLI4BX_TFLAGS, +6:u07:1;, +19:u08:FSLI4BX_CLSIMUL, +13:u00:fls_info:, +18:u03:FSLI4BX_GFLAGS, +6:u04:0;, +18:u05:FSLI4BX_TFLAGS, +6:u06:1;, +19:u07:FSLI4BX_CLSIMUL, +6:u08:2;, +18:u02:FSLI4BX_GFLAGS, +6:u03:0;, +18:u04:FSLI4BX_TFLAGS, +6:u05:1;, +19:u06:FSLI4BX_CLSIMUL, +6:u07:2;, +20:u08:FSLI4BX_CLHANDLE, +18:u01:FSLI4BX_GFLAGS, +6:u02:0;, +18:u03:FSLI4BX_TFLAGS, +6:u04:1;, +19:u05:FSLI4BX_CLSIMUL, +6:u06:2;, +20:u07:FSLI4BX_CLHANDLE, +6:u08:3;, +18:u00:FSLI4BX_GFLAGS, +6:u01:0;, +18:u02:FSLI4BX_TFLAGS, +6:u03:1;, +19:u04:FSLI4BX_CLSIMUL, +6:u05:2;, +20:u06:FSLI4BX_CLHANDLE, +6:u07:3;, +20:u08:FSLI4BX_CLFILEID, +6:u00:0;, +18:u01:FSLI4BX_TFLAGS, +6:u02:1;, +19:u03:FSLI4BX_CLSIMUL, +6:u04:2;, +20:u05:FSLI4BX_CLHANDLE, +6:u06:3;, +20:u07:FSLI4BX_CLFILEID, +6:u08:4;, +18:u00:FSLI4BX_TFLAGS, +6:u01:1;, +19:u02:FSLI4BX_CLSIMUL, +6:u03:2;, +20:u04:FSLI4BX_CLHANDLE, +6:u05:3;, +20:u06:FSLI4BX_CLFILEID, +6:u07:4;, +22:u08:FSLI4BX_CLWRITEVER, +6:u00:1;, +19:u01:FSLI4BX_CLSIMUL, +6:u02:2;, +20:u03:FSLI4BX_CLHANDLE, +6:u04:3;, +20:u05:FSLI4BX_CLFILEID, +6:u06:4;, +22:u07:FSLI4BX_CLWRITEVER, +6:u08:5;, +19:u00:FSLI4BX_CLSIMUL, +6:u01:2;, +20:u02:FSLI4BX_CLHANDLE, +6:u03:3;, +20:u04:FSLI4BX_CLFILEID, +6:u05:4;, +22:u06:FSLI4BX_CLWRITEVER, +6:u07:5;, +20:u08:FSLI4BX_CLCHANGE, +6:u00:2;, +20:u01:FSLI4BX_CLHANDLE, +6:u02:3;, +20:u03:FSLI4BX_CLFILEID, +6:u04:4;, +22:u05:FSLI4BX_CLWRITEVER, +6:u06:5;, +20:u07:FSLI4BX_CLCHANGE, +6:u08:6;, +20:u00:FSLI4BX_CLHANDLE, +6:u01:3;, +20:u02:FSLI4BX_CLFILEID, +6:u03:4;, +22:u04:FSLI4BX_CLWRITEVER, +6:u05:5;, +20:u06:FSLI4BX_CLCHANGE, +6:u07:6;, +21:u08:FSLI4BX_CLREADDIR, +6:u00:3;, +20:u01:FSLI4BX_CLFILEID, +6:u02:4;, +22:u03:FSLI4BX_CLWRITEVER, +6:u04:5;, +20:u05:FSLI4BX_CLCHANGE, +6:u06:6;, +21:u07:FSLI4BX_CLREADDIR, +6:u08:7;, +20:u00:FSLI4BX_CLFILEID, +6:u01:4;, +22:u02:FSLI4BX_CLWRITEVER, +6:u03:5;, +20:u04:FSLI4BX_CLCHANGE, +6:u05:6;, +21:u06:FSLI4BX_CLREADDIR, +6:u07:7;, +20:u08:FSLI4BX_READRANK, +6:u00:4;, +22:u01:FSLI4BX_CLWRITEVER, +6:u02:5;, +20:u03:FSLI4BX_CLCHANGE, +6:u04:6;, +21:u05:FSLI4BX_CLREADDIR, +6:u06:7;, +20:u07:FSLI4BX_READRANK, +22:u00:FSLI4BX_CLWRITEVER, +6:u01:5;, +20:u02:FSLI4BX_CLCHANGE, +6:u03:6;, +21:u04:FSLI4BX_CLREADDIR, +6:u05:7;, +20:u06:FSLI4BX_READRANK, +21:u08:FSLI4BX_WRITERANK, +6:u00:5;, +20:u01:FSLI4BX_CLCHANGE, +6:u02:6;, +21:u03:FSLI4BX_CLREADDIR, +6:u04:7;, +20:u05:FSLI4BX_READRANK, +21:u07:FSLI4BX_WRITERANK, +6:u08:9;, +20:u00:FSLI4BX_CLCHANGE, +6:u01:6;, +21:u02:FSLI4BX_CLREADDIR, +6:u03:7;, +20:u04:FSLI4BX_READRANK, +21:u06:FSLI4BX_WRITERANK, +6:u07:9;, +21:u08:FSLI4BX_READORDER, +6:u00:6;, +21:u01:FSLI4BX_CLREADDIR, +6:u02:7;, +20:u03:FSLI4BX_READRANK, +21:u05:FSLI4BX_WRITERANK, +6:u06:9;, +21:u07:FSLI4BX_READORDER, +7:u08:10;, +21:u00:FSLI4BX_CLREADDIR, +6:u01:7;, +20:u02:FSLI4BX_READRANK, +21:u04:FSLI4BX_WRITERANK, +6:u05:9;, +21:u06:FSLI4BX_READORDER, +7:u07:10;, +22:u08:FSLI4BX_WRITEORDER, +6:u00:7;, +20:u01:FSLI4BX_READRANK, +21:u03:FSLI4BX_WRITERANK, +6:u04:9;, +21:u05:FSLI4BX_READORDER, +7:u06:10;, +22:u07:FSLI4BX_WRITEORDER, +7:u08:11;, +20:u00:FSLI4BX_READRANK, +21:u02:FSLI4BX_WRITERANK, +6:u03:9;, +21:u04:FSLI4BX_READORDER, +7:u05:10;, +22:u06:FSLI4BX_WRITEORDER, +7:u07:11;, +21:u01:FSLI4BX_WRITERANK, +6:u02:9;, +21:u03:FSLI4BX_READORDER, +7:u04:10;, +22:u05:FSLI4BX_WRITEORDER, +7:u06:11;, +21:u00:FSLI4BX_WRITERANK, +6:u01:9;, +21:u02:FSLI4BX_READORDER, +7:u03:10;, +22:u04:FSLI4BX_WRITEORDER, +7:u05:11;, +6:u00:9;, +21:u01:FSLI4BX_READORDER, +7:u02:10;, +22:u03:FSLI4BX_WRITEORDER, +7:u04:11;, +20:u08:FSLI4GF_WRITABLE, +21:u00:FSLI4BX_READORDER, +7:u01:10;, +22:u02:FSLI4BX_WRITEORDER, +7:u03:11;, +20:u07:FSLI4GF_WRITABLE, +9:u08:0x01;, +7:u00:10;, +22:u01:FSLI4BX_WRITEORDER, +7:u02:11;, +20:u06:FSLI4GF_WRITABLE, +9:u07:0x01;, +19:u08:FSLI4GF_CUR_REQ, +22:u00:FSLI4BX_WRITEORDER, +7:u01:11;, +20:u05:FSLI4GF_WRITABLE, +9:u06:0x01;, +19:u07:FSLI4GF_CUR_REQ, +9:u08:0x02;, +7:u00:11;, +20:u04:FSLI4GF_WRITABLE, +9:u05:0x01;, +19:u06:FSLI4GF_CUR_REQ, +9:u07:0x02;, +18:u08:FSLI4GF_ABSENT, +20:u03:FSLI4GF_WRITABLE, +9:u04:0x01;, +19:u05:FSLI4GF_CUR_REQ, +9:u06:0x02;, +18:u07:FSLI4GF_ABSENT, +9:u08:0x04;, +20:u02:FSLI4GF_WRITABLE, +9:u03:0x01;, +19:u04:FSLI4GF_CUR_REQ, +9:u05:0x02;, +18:u06:FSLI4GF_ABSENT, +9:u07:0x04;, +17:u08:FSLI4GF_GOING, +20:u01:FSLI4GF_WRITABLE, +9:u02:0x01;, +19:u03:FSLI4GF_CUR_REQ, +9:u04:0x02;, +18:u05:FSLI4GF_ABSENT, +9:u06:0x04;, +17:u07:FSLI4GF_GOING, +9:u08:0x08;, +20:u00:FSLI4GF_WRITABLE, +9:u01:0x01;, +19:u02:FSLI4GF_CUR_REQ, +9:u03:0x02;, +18:u04:FSLI4GF_ABSENT, +9:u05:0x04;, +17:u06:FSLI4GF_GOING, +9:u07:0x08;, +17:u08:FSLI4GF_SPLIT, +9:u00:0x01;, +19:u01:FSLI4GF_CUR_REQ, +9:u02:0x02;, +18:u03:FSLI4GF_ABSENT, +9:u04:0x04;, +17:u05:FSLI4GF_GOING, +9:u06:0x08;, +17:u07:FSLI4GF_SPLIT, +9:u08:0x10;, +19:u00:FSLI4GF_CUR_REQ, +9:u01:0x02;, +18:u02:FSLI4GF_ABSENT, +9:u03:0x04;, +17:u04:FSLI4GF_GOING, +9:u05:0x08;, +17:u06:FSLI4GF_SPLIT, +9:u07:0x10;, +9:u00:0x02;, +18:u01:FSLI4GF_ABSENT, +9:u02:0x04;, +17:u03:FSLI4GF_GOING, +9:u04:0x08;, +17:u05:FSLI4GF_SPLIT, +9:u06:0x10;, +18:u00:FSLI4GF_ABSENT, +9:u01:0x04;, +17:u02:FSLI4GF_GOING, +9:u03:0x08;, +17:u04:FSLI4GF_SPLIT, +9:u05:0x10;, +9:u00:0x04;, +17:u01:FSLI4GF_GOING, +9:u02:0x08;, +17:u03:FSLI4GF_SPLIT, +9:u04:0x10;, +16:u08:FSLI4TF_RDMA, +17:u00:FSLI4GF_GOING, +9:u01:0x08;, +17:u02:FSLI4GF_SPLIT, +9:u03:0x10;, +16:u07:FSLI4TF_RDMA, +9:u00:0x08;, +17:u01:FSLI4GF_SPLIT, +9:u02:0x10;, +16:u06:FSLI4TF_RDMA, +17:u00:FSLI4GF_SPLIT, +9:u01:0x10;, +16:u05:FSLI4TF_RDMA, +9:u00:0x10;, +16:u04:FSLI4TF_RDMA, +16:u03:FSLI4TF_RDMA, +16:u02:FSLI4TF_RDMA, +16:u01:FSLI4TF_RDMA, +16:u00:FSLI4TF_RDMA, +8:u08:282], +7:uI2:*-., +8:u07:282], +7:uI1:*-., +8:u06:282], +7:uI0:*-., +8:u05:282], +8:u04:282], +8:u03:282], +22:u08:fs_locations_item4, +18:u08:fli_entries<>;, +8:u02:282], +22:u07:fs_locations_item4, +8:u01:282], +22:u06:fs_locations_item4, +18:u07:fli_entries<>;, +17:u08:fli_rootpath;, +8:u00:282], +22:u05:fs_locations_item4, +18:u06:fli_entries<>;, +22:u04:fs_locations_item4, +18:u14:fli_entries<>;, +18:u05:fli_entries<>;, +17:u07:fli_rootpath;, +22:u03:fs_locations_item4, +18:u13:fli_entries<>;, +18:u04:fli_entries<>;, +17:u06:fli_rootpath;, +22:u02:fs_locations_item4, +18:u12:fli_entries<>;, +17:u14:fli_rootpath;, +7:u22:fli, +8:u23:fli_, +18:u03:fli_entries<>;, +17:u05:fli_rootpath;, +22:u01:fs_locations_item4, +18:u11:fli_entries<>;, +17:u13:fli_rootpath;, +18:u02:fli_entries<>;, +17:u04:fli_rootpath;, +22:u00:fs_locations_item4, +18:u10:fli_entries<>;, +17:u12:fli_rootpath;, +18:u01:fli_entries<>;, +17:u03:fli_rootpath;, +17:u11:fli_rootpath;, +18:u00:fli_entries<>;, +17:u02:fli_rootpath;, +17:u10:fli_rootpath;, +17:u01:fli_rootpath;, +14:u08:fli_flags;, +17:u00:fli_rootpath;, +14:u07:fli_flags;, +18:u08:fli_valid_for;, +14:u06:fli_flags;, +14:u14:fli_flags;, +14:u05:fli_flags;, +18:u07:fli_valid_for;, +16:u08:fli_fs_root;, +14:u13:fli_flags;, +14:u04:fli_flags;, +18:u06:fli_valid_for;, +14:u12:fli_flags;, +18:u14:fli_valid_for;, +14:u03:fli_flags;, +18:u05:fli_valid_for;, +16:u07:fli_fs_root;, +16:u08:fli_items<>;, +14:u11:fli_flags;, +18:u13:fli_valid_for;, +14:u02:fli_flags;, +18:u04:fli_valid_for;, +16:u06:fli_fs_root;, +14:u10:fli_flags;, +18:u12:fli_valid_for;, +16:u14:fli_fs_root;, +14:u01:fli_flags;, +18:u03:fli_valid_for;, +16:u05:fli_fs_root;, +16:u07:fli_items<>;, +18:u11:fli_valid_for;, +16:u13:fli_fs_root;, +22:u14:fs_locations_item4, +14:u00:fli_flags;, +18:u02:fli_valid_for;, +16:u04:fli_fs_root;, +16:u06:fli_items<>;, +18:u10:fli_valid_for;, +16:u12:fli_fs_root;, +22:u13:fs_locations_item4, +16:u14:fli_items<>;, +18:u01:fli_valid_for;, +16:u03:fli_fs_root;, +16:u05:fli_items<>;, +8:u08:Flag, +16:u11:fli_fs_root;, +22:u12:fs_locations_item4, +16:u13:fli_items<>;, +18:u00:fli_valid_for;, +16:u02:fli_fs_root;, +16:u04:fli_items<>;, +8:u07:Flag, +16:u10:fli_fs_root;, +22:u11:fs_locations_item4, +16:u12:fli_items<>;, +16:u01:fli_fs_root;, +16:u03:fli_items<>;, +8:u06:Flag, +19:u08:FSLI4IF_VAR_SUB, +22:u10:fs_locations_item4, +16:u11:fli_items<>;, +16:u00:fli_fs_root;, +16:u02:fli_items<>;, +8:u05:Flag, +19:u07:FSLI4IF_VAR_SUB, +16:u10:fli_items<>;, +16:u01:fli_items<>;, +8:u04:Flag, +19:u06:FSLI4IF_VAR_SUB, +16:u00:fli_items<>;, +8:u03:Flag, +19:u05:FSLI4IF_VAR_SUB, +9:u08:noted, +8:u02:Flag, +19:u04:FSLI4IF_VAR_SUB, +9:u07:noted, +8:u01:Flag, +19:u03:FSLI4IF_VAR_SUB, +9:u06:noted, +8:u00:Flag, +19:u02:FSLI4IF_VAR_SUB, +9:u05:noted, +13:u08:(present), +19:u01:FSLI4IF_VAR_SUB, +9:u04:noted, +19:u00:FSLI4IF_VAR_SUB, +9:u03:noted, +13:u07:(present), +9:u02:noted, +13:u06:(present), +9:u08:urged, +9:u01:noted, +15:u08:referenced), +13:u14:(present), +13:u05:(present), +9:u00:noted, +15:u07:referenced), +13:u13:(present), +13:u04:(present), +9:u07:urged, +15:u06:referenced), +13:u12:(present), +13:u03:(present), +9:u06:urged, +15:u05:referenced), +13:u11:(present), +9:u14:urged, +13:u02:(present), +9:u05:urged, +15:u04:referenced), +13:u10:(present), +9:u13:urged, +13:u01:(present), +9:u04:urged, +15:u03:referenced), +9:u12:urged, +6:u21:ur, +7:u22:urg, +8:u23:urge, +13:u00:(present), +9:u03:urged, +15:u02:referenced), +9:u11:urged, +9:u02:urged, +12:u08:11.16.1., +15:u01:referenced), +9:u10:urged, +9:u01:urged, +15:u00:referenced), +9:u00:urged, +12:u07:11.16.1., +12:u06:11.16.1., +12:u14:11.16.1., +12:u05:11.16.1., +12:u13:11.16.1., +12:u04:11.16.1., +12:u12:11.16.1., +12:u03:11.16.1., +12:u11:11.16.1., +12:u02:11.16.1., +12:u10:11.16.1., +12:u01:11.16.1., +8:u08:283], +12:u00:11.16.1., +8:u07:283], +8:u06:283], +8:u05:283], +8:u04:283], +12:u08:replica,, +8:u03:283], +8:u02:283], +12:u07:replica,, +15:u08:structures,, +8:u01:283], +12:u06:replica,, +8:u00:283], +12:u14:replica,, +12:u05:replica,, +15:u07:structures,, +12:u13:replica,, +12:u04:replica,, +15:u06:structures,, +12:u12:replica,, +15:u14:structures,, +12:u03:replica,, +15:u05:structures,, +13:u08:erroneous, +12:u08:entries,, +12:u11:replica,, +15:u13:structures,, +12:u02:replica,, +15:u04:structures,, +12:u07:entries,, +12:u10:replica,, +15:u12:structures,, +12:u01:replica,, +15:u03:structures,, +13:u07:erroneous, +12:u06:entries,, +15:u11:structures,, +12:u00:replica,, +15:u02:structures,, +13:u06:erroneous, +12:u05:entries,, +11:u08:trunked, +15:u10:structures,, +13:u14:erroneous, +15:u01:structures,, +13:u05:erroneous, +12:u04:entries,, +11:u07:trunked, +13:u13:erroneous, +15:u00:structures,, +13:u04:erroneous, +12:u03:entries,, +11:u06:trunked, +13:u12:erroneous, +13:u03:erroneous, +12:u02:entries,, +11:u05:trunked, +13:u11:erroneous, +13:u02:erroneous, +12:u01:entries,, +11:u04:trunked, +12:u08:seconds., +13:u10:erroneous, +13:u01:erroneous, +12:u00:entries,, +11:u03:trunked, +12:u07:seconds., +13:u00:erroneous, +11:u02:trunked, +12:u06:seconds., +11:u01:trunked, +12:u05:seconds., +12:u14:negative, +11:u00:trunked, +12:u04:seconds., +12:u13:negative, +12:u03:seconds., +12:u12:negative, +8:u23:nega, +12:u02:seconds., +12:u11:negative, +12:u01:seconds., +12:u10:negative, +9:uI2:--.--, +12:u00:seconds., +9:uI1:--.--, +9:uI0:--.--, +15:u08:equivalence, +15:u07:equivalence, +15:u06:equivalence, +15:u14:equivalence, +15:u05:equivalence, +15:u13:equivalence, +15:u04:equivalence, +15:u12:equivalence, +15:u03:equivalence, +13:u08:formatted, +15:u11:equivalence, +15:u02:equivalence, +15:u10:equivalence, +15:u01:equivalence, +13:u07:formatted, +9:u14:call., +15:u00:equivalence, +13:u06:formatted, +9:u13:call., +13:u14:formatted, +13:u05:formatted, +9:u12:call., +13:u13:formatted, +13:u04:formatted, +9:u11:call., +13:u12:formatted, +13:u03:formatted, +9:u10:call., +13:u11:formatted, +18:u14:fsli4bx_tflags, +13:u02:formatted, +13:u10:formatted, +18:u13:fsli4bx_tflags, +13:u01:formatted, +18:u12:fsli4bx_tflags, +6:u21:FS, +7:u22:FSL, +8:u23:FSLI, +13:u00:formatted, +18:u11:fsli4bx_tflags, +18:u10:fsli4bx_tflags, +8:u08:284], +8:u07:284], +8:u06:284], +8:u05:284], +8:u04:284], +8:u03:284], +8:u02:284], +14:u14:definition, +8:u01:284], +12:u08:classes,, +14:u13:definition, +8:u00:284], +12:u07:classes,, +14:u12:definition, +7:u08:256, +12:u06:classes,, +14:u11:definition, +12:u05:classes,, +14:u10:definition, +7:u07:256, +12:u04:classes,, +7:u06:256, +12:u03:classes,, +12:u08:Explicit, +7:u14:256, +7:u05:256, +12:u02:classes,, +12:u07:Explicit, +9:u08:limit, +7:u13:256, +7:u04:256, +12:u01:classes,, +12:u06:Explicit, +9:u07:limit, +7:u12:256, +7:u23:256, +7:u03:256, +12:u00:classes,, +12:u05:Explicit, +9:u06:limit, +15:u08:clumsiness., +7:u11:256, +7:u02:256, +12:u04:Explicit, +9:u05:limit, +15:u07:clumsiness., +7:u10:256, +7:u01:256, +12:u03:Explicit, +9:u04:limit, +15:u06:clumsiness., +7:u00:256, +12:u02:Explicit, +9:u03:limit, +15:u05:clumsiness., +12:u01:Explicit, +9:u02:limit, +15:u04:clumsiness., +12:u00:Explicit, +9:u01:limit, +15:u03:clumsiness., +9:u00:limit, +15:u02:clumsiness., +15:u01:clumsiness., +15:u00:clumsiness., +11:u08:indices, +11:u07:indices, +11:u06:indices, +9:u08:light, +11:u05:indices, +9:u07:light, +11:u04:indices, +9:u06:light, +11:u03:indices, +9:u05:light, +11:u02:indices, +9:u04:light, +14:u14:referenced, +11:u01:indices, +9:u03:light, +14:u13:referenced, +11:u00:indices, +9:u02:light, +14:u12:referenced, +9:u01:light, +14:u11:referenced, +9:u00:light, +14:u10:referenced, +9:u08:items, +9:u07:items, +9:u06:items, +9:u05:items, +12:u08:fs-scope, +9:u04:items, +9:u03:items, +12:u07:fs-scope, +9:u02:items, +12:u06:fs-scope, +9:u01:items, +12:u14:fs-scope, +12:u05:fs-scope, +9:u00:items, +12:u13:fs-scope, +12:u04:fs-scope, +12:u12:fs-scope, +7:u22:fs-, +8:u23:fs-s, +12:u03:fs-scope, +12:u11:fs-scope, +12:u02:fs-scope, +12:u10:fs-scope, +12:u01:fs-scope, +8:u08:285], +12:u00:fs-scope, +8:u07:285], +8:u06:285], +8:u05:285], +8:u04:285], +15:u08:assignments, +8:u03:285], +14:u08:quantities, +8:u02:285], +15:u07:assignments, +8:u01:285], +15:u06:assignments, +14:u07:quantities, +8:u00:285], +12:u08:fls_info, +15:u14:assignments, +15:u05:assignments, +14:u06:quantities, +12:u07:fls_info, +15:u13:assignments, +14:u14:quantities, +15:u04:assignments, +14:u05:quantities, +17:u08:capabilities., +12:u06:fls_info, +15:u12:assignments, +14:u13:quantities, +15:u03:assignments, +14:u04:quantities, +12:u05:fls_info, +15:u11:assignments, +14:u12:quantities, +8:u23:quan, +15:u02:assignments, +14:u03:quantities, +17:u07:capabilities., +12:u04:fls_info, +7:u08:Six, +15:u10:assignments, +14:u11:quantities, +15:u01:assignments, +14:u02:quantities, +17:u06:capabilities., +12:u03:fls_info, +7:u07:Six, +14:u10:quantities, +17:u14:capabilities., +15:u00:assignments, +14:u01:quantities, +17:u05:capabilities., +12:u02:fls_info, +7:u06:Six, +8:u08:Four, +17:u13:capabilities., +14:u00:quantities, +17:u04:capabilities., +12:u01:fls_info, +7:u05:Six, +8:u07:Four, +17:u12:capabilities., +8:u23:capa, +17:u03:capabilities., +19:u08:FSLI4BX_GFLAGS), +12:u00:fls_info, +7:u04:Six, +8:u06:Four, +17:u11:capabilities., +17:u02:capabilities., +7:u03:Six, +8:u05:Four, +17:u10:capabilities., +17:u01:capabilities., +19:u07:FSLI4BX_GFLAGS), +13:u08:writable,, +7:u02:Six, +8:u04:Four, +17:u00:capabilities., +19:u06:FSLI4BX_GFLAGS), +7:u01:Six, +8:u03:Four, +19:u14:fsli4bx_gflags), +19:u05:FSLI4BX_GFLAGS), +13:u07:writable,, +7:u00:Six, +8:u02:Four, +19:u13:fsli4bx_gflags), +6:uI2:):, +19:u04:FSLI4BX_GFLAGS), +13:u06:writable,, +8:u01:Four, +19:u12:fsli4bx_gflags), +13:u14:writable,, +6:uI1:):, +19:u03:FSLI4BX_GFLAGS), +13:u05:writable,, +8:u00:Four, +19:u11:fsli4bx_gflags), +13:u13:writable,, +6:uI0:):, +19:u02:FSLI4BX_GFLAGS), +13:u04:writable,, +19:u10:fsli4bx_gflags), +13:u12:writable,, +19:u01:FSLI4BX_GFLAGS), +13:u03:writable,, +13:u11:writable,, +7:u14:(as, +19:u00:FSLI4BX_GFLAGS), +13:u02:writable,, +13:u10:writable,, +7:u13:(as, +13:u01:writable,, +7:u12:(as, +7:u22:(as, +7:u23:(as, +13:u00:writable,, +9:u08:turns, +7:u11:(as, +9:u07:turns, +7:u10:(as, +9:uI2:..,-., +9:u06:turns, +9:uI1:..,-., +9:u05:turns, +9:uI0:..,-., +9:u04:turns, +9:u03:turns, +9:u02:turns, +9:u01:turns, +9:u00:turns, +8:u14:set., +8:u13:set., +8:u12:set., +8:u23:set., +8:u11:set., +8:u10:set., +8:u08:286], +8:u07:286], +8:u06:286], +8:u05:286], +8:u04:286], +8:u03:286], +8:u02:286], +8:u01:286], +11:u08:(albeit, +8:u00:286], +11:u07:(albeit, +11:u06:(albeit, +11:u05:(albeit, +11:u04:(albeit, +17:u08:expeditiously, +11:u03:(albeit, +11:u08:orderly, +11:u02:(albeit, +11:u07:orderly, +17:u07:expeditiously, +11:u01:(albeit, +11:u06:orderly, +17:u06:expeditiously, +17:u08:fli_valid_for, +11:u00:(albeit, +11:u05:orderly, +17:u14:expeditiously, +17:u05:expeditiously, +11:u04:orderly, +17:u13:expeditiously, +17:u04:expeditiously, +17:u07:fli_valid_for, +11:u03:orderly, +17:u12:expeditiously, +17:u03:expeditiously, +17:u06:fli_valid_for, +11:u02:orderly, +17:u11:expeditiously, +17:u14:fli_valid_for, +17:u02:expeditiously, +17:u05:fli_valid_for, +15:u08:reasonable., +11:u01:orderly, +17:u10:expeditiously, +17:u13:fli_valid_for, +17:u01:expeditiously, +17:u04:fli_valid_for, +11:u00:orderly, +17:u12:fli_valid_for, +8:u14:cost, +17:u00:expeditiously, +17:u03:fli_valid_for, +15:u07:reasonable., +17:u11:fli_valid_for, +8:u13:cost, +17:u02:fli_valid_for, +15:u06:reasonable., +17:u10:fli_valid_for, +8:u12:cost, +15:u14:reasonable., +8:u23:cost, +17:u01:fli_valid_for, +15:u05:reasonable., +8:u11:cost, +15:u13:reasonable., +17:u00:fli_valid_for, +15:u04:reasonable., +8:u10:cost, +15:u12:reasonable., +15:u03:reasonable., +15:u11:reasonable., +15:u02:reasonable., +11:u08:choice., +15:u10:reasonable., +15:u01:reasonable., +15:u00:reasonable., +11:u07:choice., +9:u08:flag,, +11:u06:choice., +9:u07:flag,, +11:u14:choice., +11:u05:choice., +9:u06:flag,, +11:u13:choice., +11:u04:choice., +9:u05:flag,, +11:u12:choice., +11:u03:choice., +9:u04:flag,, +11:u11:choice., +11:u02:choice., +11:u08:consist, +9:u03:flag,, +11:u10:choice., +11:u01:choice., +9:u02:flag,, +11:u00:choice., +11:u07:consist, +9:u01:flag,, +11:u06:consist, +9:u00:flag,, +11:u14:consist, +11:u05:consist, +13:u08:belonging, +11:u13:consist, +11:u04:consist, +11:u12:consist, +11:u03:consist, +13:u07:belonging, +11:u11:consist, +11:u02:consist, +13:u06:belonging, +11:u10:consist, +13:u14:belonging, +11:u01:consist, +13:u05:belonging, +13:u13:belonging, +11:u00:consist, +13:u04:belonging, +13:u12:belonging, +13:u03:belonging, +13:u11:belonging, +13:u02:belonging, +13:u10:belonging, +13:u01:belonging, +13:u00:belonging, +10:u08:upward, +10:u07:upward, +10:u06:upward, +10:u05:upward, +8:u08:287], +10:u04:upward, +8:u07:287], +10:u03:upward, +8:u06:287], +15:u08:boundaries., +10:u02:upward, +8:u05:287], +10:u01:upward, +8:u04:287], +15:u07:boundaries., +10:u00:upward, +8:u03:287], +15:u06:boundaries., +9:u08:split, +8:u02:287], +15:u14:boundaries., +15:u05:boundaries., +8:u01:287], +15:u13:boundaries., +15:u04:boundaries., +9:u07:split, +8:u00:287], +15:u12:boundaries., +15:u03:boundaries., +9:u06:split, +15:u11:boundaries., +9:u14:split, +15:u02:boundaries., +9:u05:split, +8:u08:two,, +15:u10:boundaries., +9:u13:split, +15:u01:boundaries., +9:u04:split, +8:u07:two,, +9:u12:split, +7:u22:spl, +8:u23:spli, +15:u00:boundaries., +9:u03:split, +8:u06:two,, +9:u11:split, +9:u02:split, +8:u05:two,, +9:u10:split, +9:u01:split, +8:u04:two,, +9:u00:split, +8:u03:two,, +8:u02:two,, +8:u01:two,, +8:u00:two,, +18:u08:transport-flag, +18:u07:transport-flag, +18:u06:transport-flag, +11:u08:path(s), +18:u05:transport-flag, +11:u07:path(s), +18:u04:transport-flag, +11:u06:path(s), +18:u03:transport-flag, +11:u05:path(s), +18:u02:transport-flag, +11:u04:path(s), +18:u01:transport-flag, +11:u03:path(s), +18:u00:transport-flag, +11:u02:path(s), +11:u01:path(s), +11:u00:path(s), +13:u08:relations, +13:u07:relations, +13:u06:relations, +13:u05:relations, +16:u14:transitions., +13:u04:relations, +8:u08:288], +16:u13:transitions., +13:u03:relations, +8:u07:288], +16:u12:transitions., +13:u02:relations, +8:u06:288], +16:u11:transitions., +13:u01:relations, +8:u05:288], +16:u10:transitions., +13:u00:relations, +8:u04:288], +8:u03:288], +8:u02:288], +15:u14:subsections, +8:u01:288], +15:u13:subsections, +8:u00:288], +15:u12:subsections, +15:u11:subsections, +11:u08:entered, +15:u10:subsections, +16:u14:relationship, +11:u07:entered, +9:u08:bears, +16:u13:relationship, +11:u06:entered, +9:u07:bears, +10:u08:copied, +16:u12:relationship, +11:u05:entered, +9:u06:bears, +10:u07:copied, +16:u11:relationship, +11:u04:entered, +9:u05:bears, +10:u06:copied, +16:u10:relationship, +11:u03:entered, +9:u04:bears, +10:u05:copied, +20:u08:simultaneous-use, +11:u02:entered, +9:u03:bears, +10:u04:copied, +11:u01:entered, +9:u02:bears, +10:u03:copied, +20:u07:simultaneous-use, +11:u00:entered, +9:u01:bears, +10:u02:copied, +20:u06:simultaneous-use, +9:u00:bears, +10:u01:copied, +20:u14:simultaneous-use, +20:u05:simultaneous-use, +10:u00:copied, +20:u13:simultaneous-use, +20:u04:simultaneous-use, +20:u12:simultaneous-use, +20:u03:simultaneous-use, +20:u11:simultaneous-use, +20:u02:simultaneous-use, +20:u10:simultaneous-use, +20:u01:simultaneous-use, +20:u00:simultaneous-use, +20:u08:Server-specified, +14:u08:preference, +20:u07:Server-specified, +14:u07:preference, +20:u06:Server-specified, +14:u06:preference, +20:u14:server-specified, +20:u05:Server-specified, +14:u05:preference, +20:u13:server-specified, +20:u04:Server-specified, +15:u08:preference,, +14:u04:preference, +20:u12:server-specified, +20:u03:Server-specified, +8:u08:Rank, +14:u03:preference, +20:u11:server-specified, +20:u02:Server-specified, +15:u07:preference,, +14:u02:preference, +20:u10:server-specified, +20:u01:Server-specified, +15:u06:preference,, +8:u07:Rank, +14:u01:preference, +15:u14:preference,, +20:u00:Server-specified, +15:u05:preference,, +8:u06:Rank, +14:u00:preference, +15:u13:preference,, +8:u14:rank, +15:u04:preference,, +8:u05:Rank, +15:u08:unavailable, +15:u12:preference,, +8:u13:rank, +15:u03:preference,, +8:u04:Rank, +15:u11:preference,, +8:u12:rank, +7:u22:Ran, +8:u23:Rank, +15:u02:preference,, +8:u03:Rank, +15:u07:unavailable, +15:u10:preference,, +8:u11:rank, +15:u01:preference,, +8:u02:Rank, +15:u06:unavailable, +8:u10:rank, +15:u14:unavailable, +15:u00:preference,, +8:u01:Rank, +15:u05:unavailable, +15:u13:unavailable, +8:u00:Rank, +15:u04:unavailable, +15:u12:unavailable, +15:u03:unavailable, +15:u11:unavailable, +15:u02:unavailable, +15:u10:unavailable, +15:u01:unavailable, +8:u08:289], +15:u00:unavailable, +8:u07:289], +8:u06:289], +8:u05:289], +8:u04:289], +15:u08:preferences, +8:u03:289], +8:u02:289], +15:u07:preferences, +8:u01:289], +9:u08:"more, +14:u14:preference, +15:u06:preferences, +8:u00:289], +9:u07:"more, +13:u08:respects,, +14:u13:preference, +15:u14:preferences, +15:u05:preferences, +14:u08:selection,, +9:u06:"more, +13:u07:respects,, +14:u12:preference, +15:u13:preferences, +15:u04:preferences, +9:u05:"more, +13:u06:respects,, +14:u11:preference, +15:u12:preferences, +15:u03:preferences, +14:u07:selection,, +9:u04:"more, +13:u05:respects,, +14:u10:preference, +15:u11:preferences, +15:u02:preferences, +14:u06:selection,, +9:u03:"more, +13:u04:respects,, +15:u10:preferences, +14:u14:selection,, +15:u01:preferences, +14:u05:selection,, +9:u02:"more, +13:u03:respects,, +14:u13:selection,, +15:u00:preferences, +14:u04:selection,, +9:u01:"more, +13:u02:respects,, +14:u12:selection,, +14:u03:selection,, +9:u00:"more, +13:u01:respects,, +14:u11:selection,, +14:u02:selection,, +13:u00:respects,, +14:u10:selection,, +14:u01:selection,, +14:u00:selection,, +8:u08:ever, +8:u07:ever, +12:u08:11.16.2., +8:u06:ever, +8:u14:ever, +8:u05:ever, +12:u07:11.16.2., +8:u13:ever, +8:u04:ever, +12:u06:11.16.2., +8:u12:ever, +12:u14:11.16.2., +8:u03:ever, +12:u05:11.16.2., +8:u11:ever, +12:u13:11.16.2., +8:u02:ever, +12:u04:11.16.2., +8:u10:ever, +12:u12:11.16.2., +8:u01:ever, +12:u03:11.16.2., +12:u11:11.16.2., +8:u00:ever, +12:u02:11.16.2., +12:u10:11.16.2., +12:u01:11.16.2., +12:u00:11.16.2., +8:u08:290], +8:u07:290], +8:u06:290], +8:u05:290], +8:u04:290], +8:u03:290], +8:u02:290], +8:u01:290], +8:u00:290], +12:u08:refetch., +12:u07:refetch., +12:u06:refetch., +12:u05:refetch., +12:u04:refetch., +12:u03:refetch., +12:u02:refetch., +12:u01:refetch., +10:u08:notice, +12:u00:refetch., +10:u07:notice, +10:u06:notice, +10:u14:notice, +10:u05:notice, +10:u13:notice, +10:u04:notice, +10:u12:notice, +10:u03:notice, +10:u11:notice, +10:u02:notice, +10:u10:notice, +10:u01:notice, +10:u00:notice, +16:u08:substitution, +15:u08:explanation, +16:u07:substitution, +12:u08:11.16.3., +16:u06:substitution, +15:u07:explanation, +16:u14:substitution, +16:u05:substitution, +15:u06:explanation, +12:u07:11.16.3., +17:u08:fli_rootpath), +16:u13:substitution, +15:u14:explanation, +16:u04:substitution, +15:u05:explanation, +12:u06:11.16.3., +16:u12:substitution, +15:u13:explanation, +12:u14:11.16.3., +16:u03:substitution, +15:u04:explanation, +12:u05:11.16.3., +17:u07:fli_rootpath), +16:u11:substitution, +15:u12:explanation, +12:u13:11.16.3., +16:u02:substitution, +15:u03:explanation, +12:u04:11.16.3., +17:u06:fli_rootpath), +12:u08:entries., +16:u10:substitution, +15:u11:explanation, +12:u12:11.16.3., +17:u14:fli_rootpath), +16:u01:substitution, +15:u02:explanation, +12:u03:11.16.3., +17:u05:fli_rootpath), +12:u07:entries., +15:u10:explanation, +12:u11:11.16.3., +17:u13:fli_rootpath), +16:u00:substitution, +15:u01:explanation, +12:u02:11.16.3., +17:u04:fli_rootpath), +12:u06:entries., +12:u10:11.16.3., +17:u12:fli_rootpath), +15:u00:explanation, +12:u01:11.16.3., +17:u03:fli_rootpath), +12:u05:entries., +17:u11:fli_rootpath), +12:u00:11.16.3., +17:u02:fli_rootpath), +12:u04:entries., +17:u10:fli_rootpath), +19:u14:fsli4if_var_sub, +17:u01:fli_rootpath), +12:u03:entries., +19:u13:fsli4if_var_sub, +14:u14:structure., +17:u00:fli_rootpath), +12:u02:entries., +8:u08:291], +19:u12:fsli4if_var_sub, +14:u13:structure., +12:u01:entries., +8:u07:291], +19:u11:fsli4if_var_sub, +14:u12:structure., +12:u00:entries., +8:u06:291], +19:u10:fsli4if_var_sub, +14:u11:structure., +8:u05:291], +14:u10:structure., +8:u04:291], +8:u03:291], +8:u02:291], +8:u01:291], +8:u00:291], +15:u08:accommodate, +15:u07:accommodate, +15:u06:accommodate, +15:u14:accommodate, +15:u05:accommodate, +8:u08:"${", +15:u13:accommodate, +15:u04:accommodate, +13:u08:variable., +8:u07:"${", +15:u12:accommodate, +15:u03:accommodate, +8:u06:"${", +15:u11:accommodate, +15:u02:accommodate, +13:u07:variable., +17:u08:substitutions, +8:u05:"${", +15:u10:accommodate, +9:uI2:"$""", +15:u01:accommodate, +13:u06:variable., +8:u04:"${", +13:u14:variable., +9:uI1:"$""", +15:u00:accommodate, +13:u05:variable., +17:u07:substitutions, +8:u03:"${", +13:u13:variable., +9:uI0:"$""", +13:u04:variable., +17:u06:substitutions, +8:u02:"${", +13:u12:variable., +17:u14:substitutions, +13:u03:variable., +17:u05:substitutions, +10:u08:colon., +8:u01:"${", +13:u11:variable., +17:u13:substitutions, +13:u02:variable., +17:u04:substitutions, +8:u00:"${", +13:u10:variable., +17:u12:substitutions, +13:u01:variable., +17:u03:substitutions, +10:u07:colon., +17:u11:substitutions, +13:u00:variable., +17:u02:substitutions, +10:u06:colon., +17:u10:substitutions, +10:u14:colon., +17:u01:substitutions, +10:u05:colon., +17:u08:substitution., +10:u13:colon., +17:u00:substitutions, +10:u04:colon., +17:u08:Organizations, +10:u12:colon., +8:u23:colo, +10:u03:colon., +17:u07:substitution., +17:u07:Organizations, +10:u11:colon., +8:uI2:".",, +10:u02:colon., +17:u06:substitution., +17:u06:Organizations, +10:u10:colon., +17:u14:substitution., +8:uI1:".",, +10:u01:colon., +17:u05:substitution., +17:u05:Organizations, +17:u13:substitution., +8:uI0:".",, +10:u00:colon., +17:u04:substitution., +17:u04:Organizations, +17:u12:substitution., +17:u03:substitution., +17:u03:Organizations, +17:u11:substitution., +17:u02:substitution., +17:u02:Organizations, +17:u10:substitution., +17:u14:informational, +17:u01:substitution., +13:u08:strings),, +17:u01:Organizations, +17:u13:informational, +17:u00:substitution., +17:u00:Organizations, +17:u12:informational, +7:uI2:$.:, +13:u07:strings),, +17:u11:informational, +9:u14:limit, +7:uI1:$.:, +13:u06:strings),, +17:u10:informational, +9:u13:limit, +13:u14:strings),, +7:uI0:$.:, +13:u05:strings),, +13:u08:compiled., +9:u12:limit, +13:u13:strings),, +14:uI2:),"","","", +13:u04:strings),, +11:u08:(except, +9:u11:limit, +13:u12:strings),, +14:uI1:),"","","", +13:u03:strings),, +13:u07:compiled., +11:u08:"linux", +9:u10:limit, +13:u11:strings),, +14:uI0:),"","","", +13:u02:strings),, +13:u06:compiled., +11:u07:(except, +12:u08:industry, +13:u10:strings),, +13:u14:compiled., +13:u01:strings),, +13:u05:compiled., +11:u06:(except, +11:u07:"linux", +13:u13:compiled., +11:u14:(except, +13:u00:strings),, +13:u04:compiled., +11:u05:(except, +11:u06:"linux", +12:u07:industry, +13:u12:compiled., +11:u13:(except, +11:u14:"linux", +13:u03:compiled., +11:u04:(except, +11:u05:"linux", +12:u06:industry, +13:u11:compiled., +11:u12:(except, +11:u13:"linux", +12:u14:industry, +7:u22:(ex, +8:u23:(exc, +13:u02:compiled., +11:u03:(except, +11:u04:"linux", +12:u05:industry, +13:u10:compiled., +11:u11:(except, +11:u12:"linux", +12:u13:industry, +6:u21:"l, +7:u22:"li, +8:u23:"lin, +13:u01:compiled., +11:u02:(except, +11:u03:"linux", +12:u04:industry, +11:u10:(except, +11:u11:"linux", +12:u12:industry, +13:u00:compiled., +11:u01:(except, +11:u02:"linux", +12:u03:industry, +13:u08:strings)., +11:u10:"linux", +12:u11:industry, +11:u00:(except, +11:u01:"linux", +12:u02:industry, +13:u07:strings)., +12:u10:industry, +11:u00:"linux", +12:u01:industry, +13:u06:strings)., +12:u00:industry, +13:u05:strings)., +8:u08:292], +8:uI2:-).,, +13:u04:strings)., +8:u07:292], +8:uI1:-).,, +13:u03:strings)., +8:u06:292], +8:uI0:-).,, +16:u08:interspersed, +13:u02:strings)., +8:u05:292], +13:u01:strings)., +8:u04:292], +8:u08:dots, +16:u07:interspersed, +13:u00:strings)., +8:u03:292], +8:u07:dots, +16:u06:interspersed, +8:u02:292], +8:u06:dots, +16:u14:interspersed, +16:u05:interspersed, +8:u01:292], +8:u05:dots, +16:u13:interspersed, +13:u14:practice,, +16:u04:interspersed, +8:u00:292], +8:u04:dots, +16:u12:interspersed, +13:u13:practice,, +16:u03:interspersed, +8:u03:dots, +16:u11:interspersed, +13:u12:practice,, +16:u02:interspersed, +8:u02:dots, +16:u10:interspersed, +13:u11:practice,, +16:u01:interspersed, +8:u01:dots, +13:u10:practice,, +16:u00:interspersed, +8:u00:dots, +14:u08:variables,, +14:u07:variables,, +14:u06:variables,, +14:u05:variables,, +14:u04:variables,, +14:u03:variables,, +16:u08:components),, +14:u02:variables,, +16:u07:components),, +14:u01:variables,, +16:u06:components),, +14:u00:variables,, +16:u05:components),, +16:u04:components),, +16:u03:components),, +16:u02:components),, +16:u01:components),, +16:u00:components),, +8:u08:293], +8:u07:293], +8:u06:293], +8:u05:293], +17:u08:STATUS4_FIXED, +8:u04:293], +19:u08:fs4_status_type, +19:u08:STATUS4_UPDATED, +8:u03:293], +19:u07:fs4_status_type, +17:u07:STATUS4_FIXED, +21:u08:STATUS4_VERSIONED, +8:u02:293], +19:u06:fs4_status_type, +17:u06:STATUS4_FIXED, +19:u07:STATUS4_UPDATED, +20:u08:STATUS4_WRITABLE, +8:u01:293], +19:u05:fs4_status_type, +17:u14:status4_fixed, +17:u05:STATUS4_FIXED, +19:u06:STATUS4_UPDATED, +21:u07:STATUS4_VERSIONED, +20:u08:STATUS4_REFERRAL, +8:u00:293], +19:u04:fs4_status_type, +17:u13:status4_fixed, +19:u14:status4_updated, +17:u04:STATUS4_FIXED, +19:u05:STATUS4_UPDATED, +21:u06:STATUS4_VERSIONED, +20:u07:STATUS4_WRITABLE, +19:u03:fs4_status_type, +17:u12:status4_fixed, +19:u13:status4_updated, +21:u14:status4_versioned, +17:u03:STATUS4_FIXED, +19:u04:STATUS4_UPDATED, +21:u05:STATUS4_VERSIONED, +20:u06:STATUS4_WRITABLE, +20:u07:STATUS4_REFERRAL, +19:u02:fs4_status_type, +17:u11:status4_fixed, +19:u12:status4_updated, +21:u13:status4_versioned, +20:u14:status4_writable, +17:u02:STATUS4_FIXED, +19:u03:STATUS4_UPDATED, +21:u04:STATUS4_VERSIONED, +20:u05:STATUS4_WRITABLE, +20:u06:STATUS4_REFERRAL, +19:u01:fs4_status_type, +14:u08:fs4_status, +17:u10:status4_fixed, +19:u11:status4_updated, +21:u12:status4_versioned, +20:u13:status4_writable, +20:u14:status4_referral, +17:u01:STATUS4_FIXED, +19:u02:STATUS4_UPDATED, +21:u03:STATUS4_VERSIONED, +20:u04:STATUS4_WRITABLE, +20:u05:STATUS4_REFERRAL, +15:u08:fss_absent;, +19:u00:fs4_status_type, +14:u07:fs4_status, +19:u10:status4_updated, +21:u11:status4_versioned, +20:u12:status4_writable, +20:u13:status4_referral, +17:u00:STATUS4_FIXED, +19:u01:STATUS4_UPDATED, +21:u02:STATUS4_VERSIONED, +20:u03:STATUS4_WRITABLE, +20:u04:STATUS4_REFERRAL, +14:u06:fs4_status, +21:u10:status4_versioned, +20:u11:status4_writable, +20:u12:status4_referral, +19:u00:STATUS4_UPDATED, +21:u01:STATUS4_VERSIONED, +20:u02:STATUS4_WRITABLE, +20:u03:STATUS4_REFERRAL, +15:u07:fss_absent;, +14:u05:fs4_status, +13:u08:fss_type;, +20:u10:status4_writable, +20:u11:status4_referral, +21:u00:STATUS4_VERSIONED, +20:u01:STATUS4_WRITABLE, +20:u02:STATUS4_REFERRAL, +15:u06:fss_absent;, +15:u08:fss_source;, +14:u04:fs4_status, +13:u07:fss_type;, +20:u10:status4_referral, +15:u14:fss_absent;, +20:u00:STATUS4_WRITABLE, +20:u01:STATUS4_REFERRAL, +15:u05:fss_absent;, +14:u03:fs4_status, +13:u06:fss_type;, +15:u13:fss_absent;, +19:u14:fs4_status_type, +20:u00:STATUS4_REFERRAL, +15:u04:fss_absent;, +15:u07:fss_source;, +16:u08:fss_current;, +14:u02:fs4_status, +13:u05:fss_type;, +15:u12:fss_absent;, +19:u13:fs4_status_type, +7:u22:fss, +8:u23:fss_, +15:u03:fss_absent;, +15:u06:fss_source;, +14:u01:fs4_status, +13:u04:fss_type;, +15:u11:fss_absent;, +19:u12:fs4_status_type, +15:u14:fss_source;, +7:u22:fs4, +8:u23:fs4_, +15:u02:fss_absent;, +15:u05:fss_source;, +16:u07:fss_current;, +12:u08:fss_age;, +14:u00:fs4_status, +13:u03:fss_type;, +15:u10:fss_absent;, +19:u11:fs4_status_type, +15:u13:fss_source;, +15:u01:fss_absent;, +15:u04:fss_source;, +16:u06:fss_current;, +13:u02:fss_type;, +19:u10:fs4_status_type, +15:u12:fss_source;, +16:u14:fss_current;, +15:u00:fss_absent;, +15:u03:fss_source;, +16:u05:fss_current;, +12:u07:fss_age;, +16:u08:fss_version;, +13:u01:fss_type;, +15:u11:fss_source;, +16:u13:fss_current;, +15:u02:fss_source;, +16:u04:fss_current;, +12:u06:fss_age;, +13:u00:fss_type;, +15:u10:fss_source;, +16:u12:fss_current;, +12:u14:fss_age;, +15:u01:fss_source;, +16:u03:fss_current;, +12:u05:fss_age;, +16:u07:fss_version;, +16:u11:fss_current;, +12:u13:fss_age;, +15:u00:fss_source;, +16:u02:fss_current;, +12:u04:fss_age;, +16:u06:fss_version;, +11:u08:absent., +11:u08:boolean, +16:u10:fss_current;, +12:u12:fss_age;, +16:u14:fss_version;, +16:u01:fss_current;, +12:u03:fss_age;, +16:u05:fss_version;, +11:u07:boolean, +12:u11:fss_age;, +16:u13:fss_version;, +16:u00:fss_current;, +12:u02:fss_age;, +16:u04:fss_version;, +11:u07:absent., +11:u06:boolean, +12:u10:fss_age;, +16:u12:fss_version;, +12:u01:fss_age;, +16:u03:fss_version;, +11:u06:absent., +11:u05:boolean, +16:u11:fss_version;, +11:u14:absent., +12:u00:fss_age;, +16:u02:fss_version;, +11:u05:absent., +11:u04:boolean, +16:u10:fss_version;, +11:u13:absent., +16:u01:fss_version;, +11:u04:absent., +12:u08:present., +11:u03:boolean, +11:u12:absent., +16:u00:fss_version;, +11:u03:absent., +11:u02:boolean, +11:u11:absent., +11:u02:absent., +12:u07:present., +16:u08:represented., +11:u01:boolean, +12:u08:fss_type, +11:u10:absent., +11:u01:absent., +12:u06:present., +11:u00:boolean, +12:u07:fss_type, +12:u14:present., +11:u00:absent., +12:u05:present., +16:u07:represented., +12:u06:fss_type, +12:u13:present., +12:u04:present., +16:u06:represented., +12:u05:fss_type, +14:u08:fss_absent, +12:u12:present., +16:u14:represented., +12:u03:present., +16:u05:represented., +12:u04:fss_type, +14:u07:fss_absent, +12:u11:present., +16:u13:represented., +12:u02:present., +16:u04:represented., +12:u03:fss_type, +14:u06:fss_absent, +8:u08:Five, +12:u10:present., +16:u12:represented., +12:u01:present., +16:u03:represented., +12:u02:fss_type, +14:u05:fss_absent, +8:u07:Five, +18:u08:STATUS4_FIXED,, +16:u11:represented., +12:u00:present., +16:u02:represented., +12:u01:fss_type, +14:u04:fss_absent, +8:u06:Five, +18:u07:STATUS4_FIXED,, +16:u10:represented., +16:u01:represented., +12:u00:fss_type, +14:u03:fss_absent, +8:u05:Five, +18:u06:STATUS4_FIXED,, +16:u00:represented., +14:u02:fss_absent, +8:u04:Five, +18:u05:STATUS4_FIXED,, +17:u08:aggressively., +14:u01:fss_absent, +8:u03:Five, +18:u04:STATUS4_FIXED,, +14:u00:fss_absent, +8:u02:Five, +18:u03:STATUS4_FIXED,, +17:u07:aggressively., +8:u01:Five, +18:u02:STATUS4_FIXED,, +22:u08:STATUS4_VERSIONED,, +17:u06:aggressively., +8:u00:Five, +18:u01:STATUS4_FIXED,, +22:u07:STATUS4_VERSIONED,, +17:u14:aggressively., +17:u05:aggressively., +18:u00:STATUS4_FIXED,, +22:u06:STATUS4_VERSIONED,, +17:u13:aggressively., +17:u04:aggressively., +22:u05:STATUS4_VERSIONED,, +17:u12:aggressively., +7:u22:agg, +8:u23:aggr, +17:u03:aggressively., +22:u04:STATUS4_VERSIONED,, +17:u11:aggressively., +17:u02:aggressively., +22:u03:STATUS4_VERSIONED,, +17:u10:aggressively., +17:u01:aggressively., +22:u02:STATUS4_VERSIONED,, +17:u00:aggressively., +22:u01:STATUS4_VERSIONED,, +22:u00:STATUS4_VERSIONED,, +9:u14:done., +8:u08:294], +9:u13:done., +8:u07:294], +9:u12:done., +8:u06:294], +9:u11:done., +8:u05:294], +9:u10:done., +8:u04:294], +20:u08:STATUS4_UPDATED,, +8:u03:294], +20:u07:STATUS4_UPDATED,, +8:u02:294], +20:u06:STATUS4_UPDATED,, +8:u01:294], +20:u05:STATUS4_UPDATED,, +8:u00:294], +20:u04:STATUS4_UPDATED,, +20:u03:STATUS4_UPDATED,, +20:u02:STATUS4_UPDATED,, +20:u01:STATUS4_UPDATED,, +9:u08:image, +20:u00:STATUS4_UPDATED,, +9:u07:image, +9:u06:image, +21:u08:STATUS4_WRITABLE,, +9:u14:image, +9:u05:image, +21:u07:STATUS4_WRITABLE,, +9:u13:image, +9:u04:image, +21:u06:STATUS4_WRITABLE,, +9:u12:image, +7:u22:ima, +8:u23:imag, +9:u03:image, +21:u05:STATUS4_WRITABLE,, +9:u11:image, +9:u02:image, +21:u04:STATUS4_WRITABLE,, +9:u10:image, +9:u01:image, +21:u03:STATUS4_WRITABLE,, +21:u08:STATUS4_REFERRAL,, +9:u00:image, +21:u02:STATUS4_WRITABLE,, +21:u07:STATUS4_REFERRAL,, +21:u01:STATUS4_WRITABLE,, +21:u06:STATUS4_REFERRAL,, +21:u00:STATUS4_WRITABLE,, +21:u05:STATUS4_REFERRAL,, +21:u04:STATUS4_REFERRAL,, +21:u03:STATUS4_REFERRAL,, +21:u02:STATUS4_REFERRAL,, +21:u01:STATUS4_REFERRAL,, +21:u00:STATUS4_REFERRAL,, +8:u08:(the, +8:u07:(the, +8:u06:(the, +12:u08:revoked., +8:u05:(the, +12:u07:revoked., +6:uI2:(/, +8:u04:(the, +12:u06:revoked., +6:uI1:(/, +8:u03:(the, +12:u05:revoked., +6:uI0:(/, +10:u08:tools., +8:u02:(the, +12:u04:revoked., +15:u08:researching, +8:u01:(the, +12:u03:revoked., +10:u07:tools., +8:u00:(the, +12:u02:revoked., +10:u06:tools., +15:u07:researching, +12:u01:revoked., +10:u14:tools., +10:u05:tools., +15:u06:researching, +12:u00:revoked., +10:u13:tools., +15:u14:researching, +10:u04:tools., +15:u05:researching, +10:u12:tools., +15:u13:researching, +7:u22:too, +8:u23:tool, +10:u03:tools., +15:u04:researching, +11:u08:copies,, +10:u11:tools., +15:u12:researching, +10:u02:tools., +15:u03:researching, +21:u08:file-system-level, +10:u10:tools., +15:u11:researching, +10:u01:tools., +15:u02:researching, +11:u07:copies,, +21:u07:file-system-level, +13:u08:storage),, +15:u10:researching, +10:u00:tools., +15:u01:researching, +11:u06:copies,, +21:u06:file-system-level, +13:u07:storage),, +11:u14:copies,, +15:u00:researching, +11:u05:copies,, +21:u05:file-system-level, +13:u06:storage),, +11:u13:copies,, +10:uI2:,----,, +11:u04:copies,, +21:u04:file-system-level, +13:u05:storage),, +11:u12:copies,, +10:uI1:,----,, +11:u03:copies,, +21:u03:file-system-level, +13:u04:storage),, +11:u11:copies,, +10:uI0:,----,, +11:u02:copies,, +21:u02:file-system-level, +13:u03:storage),, +11:u10:copies,, +11:u01:copies,, +21:u01:file-system-level, +13:u02:storage),, +11:u00:copies,, +21:u00:file-system-level, +13:u01:storage),, +8:u08:295], +13:u00:storage),, +8:u07:295], +8:u06:295], +8:u05:295], +8:u04:295], +8:u03:295], +8:u02:295], +13:u08:initially, +8:u01:295], +8:u00:295], +13:u07:initially, +13:u06:initially, +7:u08:it,, +13:u14:initially, +13:u05:initially, +7:u07:it,, +13:u13:initially, +13:u04:initially, +7:u06:it,, +18:u08:administrators, +13:u12:initially, +13:u03:initially, +7:u05:it,, +18:u07:administrators, +13:u11:initially, +13:u02:initially, +7:u04:it,, +18:u06:administrators, +13:u10:initially, +13:u01:initially, +7:u03:it,, +18:u05:administrators, +13:u00:initially, +7:u02:it,, +18:u04:administrators, +7:u01:it,, +18:u03:administrators, +7:u00:it,, +18:u02:administrators, +18:u01:administrators, +18:u00:administrators, +13:u08:cascading, +13:u07:cascading, +13:u06:cascading, +13:u05:cascading, +13:u04:cascading, +8:uI2:(.):, +13:u03:cascading, +8:uI1:(.):, +13:u02:cascading, +9:u14:gives, +8:uI0:(.):, +13:u01:cascading, +9:u13:gives, +13:u00:cascading, +9:u12:gives, +9:u11:gives, +9:u08:newer, +9:u10:gives, +9:u07:newer, +15:u08:fss_version, +9:u06:newer, +15:u07:fss_version, +9:u05:newer, +15:u06:fss_version, +9:u04:newer, +15:u05:fss_version, +9:u03:newer, +15:u04:fss_version, +12:u08:validity, +9:u02:newer, +15:u03:fss_version, +12:u07:validity, +9:u01:newer, +15:u02:fss_version, +12:u06:validity, +9:u00:newer, +15:u01:fss_version, +12:u05:validity, +15:u08:progression, +15:u00:fss_version, +12:u04:validity, +12:u03:validity, +15:u14:fss_version, +15:u07:progression, +12:u02:validity, +15:u13:fss_version, +15:u06:progression, +12:u01:validity, +15:u12:fss_version, +15:u14:progression, +15:u05:progression, +12:u00:validity, +10:u08:images, +15:u11:fss_version, +15:u13:progression, +15:u04:progression, +10:u07:images, +15:u10:fss_version, +15:u12:progression, +15:u03:progression, +10:u06:images, +15:u11:progression, +13:u14:successor, +15:u02:progression, +10:u05:images, +15:u10:progression, +13:u13:successor, +15:u01:progression, +10:u04:images, +8:u08:296], +13:u12:successor, +15:u00:progression, +10:u03:images, +8:u07:296], +13:u11:successor, +10:u02:images, +8:u06:296], +13:u10:successor, +10:u01:images, +8:u05:296], +10:u00:images, +8:u04:296], +10:u08:image,, +8:u03:296], +8:u02:296], +10:u07:image,, +8:u01:296], +10:u06:image,, +8:u00:296], +10:u14:image,, +10:u05:image,, +10:u13:image,, +10:u04:image,, +10:u12:image,, +10:u03:image,, +10:u11:image,, +10:u02:image,, +16:u08:conveniently, +10:u10:image,, +10:u01:image,, +16:u07:conveniently, +10:u00:image,, +16:u06:conveniently, +16:u05:conveniently, +16:u04:conveniently, +16:u03:conveniently, +16:u02:conveniently, +12:u08:fetched., +16:u01:conveniently, +16:u00:conveniently, +12:u07:fetched., +13:u08:procedure, +12:u06:fetched., +13:u07:procedure, +12:u14:fetched., +12:u05:fetched., +10:u08:flight, +13:u06:procedure, +12:u13:fetched., +12:u04:fetched., +13:u05:procedure, +12:u12:fetched., +12:u03:fetched., +10:u07:flight, +10:u08:order), +13:u04:procedure, +12:u11:fetched., +12:u02:fetched., +10:u06:flight, +13:u03:procedure, +12:u10:fetched., +10:u14:flight, +12:u01:fetched., +10:u05:flight, +10:u07:order), +13:u02:procedure, +10:u13:flight, +12:u00:fetched., +10:u04:flight, +10:u06:order), +13:u01:procedure, +10:u12:flight, +10:u14:order), +8:u23:flig, +10:u03:flight, +10:u05:order), +13:u00:procedure, +10:u11:flight, +10:u13:order), +10:u02:flight, +10:u04:order), +10:u10:flight, +10:u12:order), +10:u01:flight, +10:u03:order), +10:u11:order), +10:u00:flight, +10:u02:order), +10:u10:order), +10:u01:order), +10:u00:order), +8:u14:pnfs, +21:u08:higher-throughput, +8:u13:pnfs, +10:u08:better, +21:u07:higher-throughput, +8:u12:pnfs, +9:u14:data., +6:u21:pN, +7:u22:pNF, +8:u23:pNFS, +21:u06:higher-throughput, +8:u11:pnfs, +9:u13:data., +10:u14:and/or, +10:u07:better, +21:u05:higher-throughput, +8:u10:pnfs, +9:u12:data., +10:u13:and/or, +7:uI2:/-(, +10:u06:better, +21:u04:higher-throughput, +9:u11:data., +10:u12:and/or, +10:u14:better, +8:u23:and/, +7:uI1:/-(, +10:u05:better, +21:u03:higher-throughput, +9:u10:data., +10:u11:and/or, +10:u13:better, +7:uI0:/-(, +10:u04:better, +21:u02:higher-throughput, +10:u10:and/or, +10:u12:better, +11:u14:(server, +8:u23:bett, +10:u03:better, +21:u01:higher-throughput, +10:u11:better, +11:u13:(server, +10:u02:better, +21:u00:higher-throughput, +8:u08:297], +10:u10:better, +11:u12:(server, +8:u23:(ser, +10:u01:better, +8:u07:297], +11:u11:(server, +10:u00:better, +8:u06:297], +11:u10:(server, +8:u05:297], +18:u08:|+-----------+, +8:u04:297], +8:u03:297], +18:u07:|+-----------+, +19:u08:||+-----------+, +8:u02:297], +18:u06:|+-----------+, +8:u01:297], +18:u14:|+-----------+, +18:u05:|+-----------+, +19:u07:||+-----------+, +8:u00:297], +18:u13:|+-----------+, +18:u04:|+-----------+, +19:u06:||+-----------+, +7:u08:|||, +18:u12:|+-----------+, +19:u14:||+-----------+, +6:u21:|+, +7:u22:|+-, +8:u23:|+--, +18:u03:|+-----------+, +19:u05:||+-----------+, +18:u11:|+-----------+, +19:u13:||+-----------+, +18:u02:|+-----------+, +19:u04:||+-----------+, +7:u07:|||, +18:u10:|+-----------+, +19:u12:||+-----------+, +6:u21:||, +7:u22:||+, +8:u23:||+-, +18:u01:|+-----------+, +19:u03:||+-----------+, +7:u06:|||, +19:u11:||+-----------+, +7:u14:|||, +18:u00:|+-----------+, +19:u02:||+-----------+, +7:u05:|||, +19:u10:||+-----------+, +7:u13:|||, +19:u01:||+-----------+, +7:u04:|||, +7:u08:+||, +7:u12:|||, +7:u22:|||, +7:u23:|||, +19:u00:||+-----------+, +7:u03:|||, +7:u11:|||, +7:u02:|||, +7:u07:+||, +6:u08:+|, +7:u10:|||, +7:u01:|||, +7:u06:+||, +7:u14:+||, +7:u00:|||, +7:u05:+||, +6:u07:+|, +7:u13:+||, +34:uI2:------------------------------, +6:uI2:30, +7:u04:+||, +6:u06:+|, +7:u12:+||, +6:u14:+|, +6:u21:+|, +7:u22:+||, +7:u23:+||, +34:uI1:------------------------------, +6:uI1:30, +7:u03:+||, +6:u05:+|, +7:u11:+||, +6:u13:+|, +34:uI0:------------------------------, +6:uI0:30, +7:u02:+||, +6:u04:+|, +7:u10:+||, +6:u12:+|, +6:u22:+|, +6:u23:+|, +7:u01:+||, +6:u03:+|, +6:u11:+|, +7:u00:+||, +6:u02:+|, +6:u10:+|, +6:u01:+|, +6:u00:+|, +11:u08:Storage, +11:u07:Storage, +11:u06:Storage, +11:u05:Storage, +11:u04:Storage, +38:u08:||+----------------||+-----------+, +11:u03:Storage, +11:u02:Storage, +38:u07:||+----------------||+-----------+, +26:u08:|+-----------------|||, +11:u01:Storage, +38:u06:||+----------------||+-----------+, +11:u00:Storage, +38:u14:||+----------------||+-----------+, +38:u05:||+----------------||+-----------+, +26:u07:|+-----------------|||, +13:u08:Protocol|, +38:u13:||+----------------||+-----------+, +38:u04:||+----------------||+-----------+, +26:u06:|+-----------------|||, +26:u08:+------------------+||, +38:u12:||+----------------||+-----------+, +26:u14:|+-----------------|||, +38:u03:||+----------------||+-----------+, +26:u05:|+-----------------|||, +13:u07:Protocol|, +38:u11:||+----------------||+-----------+, +26:u13:|+-----------------|||, +38:u02:||+----------------||+-----------+, +26:u04:|+-----------------|||, +13:u06:Protocol|, +26:u07:+------------------+||, +38:u10:||+----------------||+-----------+, +26:u12:|+-----------------|||, +13:u14:protocol|, +38:u01:||+----------------||+-----------+, +26:u03:|+-----------------|||, +13:u05:Protocol|, +26:u06:+------------------+||, +26:u11:|+-----------------|||, +13:u13:protocol|, +26:u14:+------------------+||, +38:u00:||+----------------||+-----------+, +26:u02:|+-----------------|||, +13:u04:Protocol|, +26:u05:+------------------+||, +26:u10:|+-----------------|||, +13:u12:protocol|, +26:u13:+------------------+||, +26:u01:|+-----------------|||, +13:u03:Protocol|, +26:u04:+------------------+||, +13:u11:protocol|, +26:u12:+------------------+||, +26:u00:|+-----------------|||, +13:u02:Protocol|, +26:u03:+------------------+||, +13:u10:protocol|, +26:u11:+------------------+||, +13:u01:Protocol|, +26:u02:+------------------+||, +9:u08:pNFS,, +26:u10:+------------------+||, +13:u00:Protocol|, +26:u01:+------------------+||, +9:u07:pNFS,, +26:u00:+------------------+||, +9:u06:pNFS,, +13:u08:Protocol., +9:u05:pNFS,, +7:uI2:,';, +9:u04:pNFS,, +13:u07:Protocol., +7:uI1:,';, +9:u03:pNFS,, +13:u06:Protocol., +7:uI0:,';, +9:u02:pNFS,, +13:u05:Protocol., +9:u01:pNFS,, +13:u04:Protocol., +8:u23:Stor, +11:u08:leased,, +9:u00:pNFS,, +13:u03:Protocol., +16:u08:abstractions, +13:u02:Protocol., +15:u08:recallable,, +11:uI2:''(..)-, +11:u07:leased,, +9:u08:holds, +13:u01:Protocol., +15:u07:recallable,, +11:u14:fashion, +11:uI1:''(..)-, +11:u06:leased,, +16:u07:abstractions, +13:u00:Protocol., +15:u06:recallable,, +11:u13:fashion, +11:u14:leased,, +11:uI0:''(..)-, +11:u05:leased,, +16:u06:abstractions, +9:u07:holds, +15:u05:recallable,, +11:u12:fashion, +11:u13:leased,, +16:u14:abstractions, +7:u22:fas, +8:u23:fash, +11:u04:leased,, +16:u05:abstractions, +9:u06:holds, +15:u04:recallable,, +11:u11:fashion, +11:u12:leased,, +16:u13:abstractions, +9:u14:holds, +11:u03:leased,, +16:u04:abstractions, +9:u05:holds, +15:u03:recallable,, +11:u10:fashion, +11:u11:leased,, +16:u12:abstractions, +9:u13:holds, +11:u02:leased,, +16:u03:abstractions, +9:u04:holds, +15:u02:recallable,, +11:u10:leased,, +16:u11:abstractions, +9:u12:holds, +11:u01:leased,, +16:u02:abstractions, +9:u03:holds, +15:u01:recallable,, +16:u10:abstractions, +9:u11:holds, +11:u00:leased,, +16:u01:abstractions, +9:u02:holds, +13:u08:NFSv4.1's, +15:u00:recallable,, +9:u10:holds, +16:u00:abstractions, +9:u01:holds, +9:u00:holds, +13:u07:NFSv4.1's, +11:u08:stripes, +13:u06:NFSv4.1's, +11:u07:stripes, +13:u14:nfsv4.1's, +13:u05:NFSv4.1's, +11:u06:stripes, +13:u13:nfsv4.1's, +13:u04:NFSv4.1's, +11:u05:stripes, +13:u12:nfsv4.1's, +13:u03:NFSv4.1's, +11:u04:stripes, +13:u11:nfsv4.1's, +13:u02:NFSv4.1's, +11:u03:stripes, +8:u08:298], +13:u10:nfsv4.1's, +13:u01:NFSv4.1's, +11:u02:stripes, +8:u07:298], +13:u00:NFSv4.1's, +11:u01:stripes, +8:u06:298], +15:u08:processing., +11:u00:stripes, +8:u05:298], +11:u08:striped, +8:u04:298], +15:u07:processing., +9:u08:ways:, +8:u03:298], +15:u06:processing., +11:u07:striped, +8:u02:298], +15:u14:processing., +15:u05:processing., +11:u06:striped, +9:u07:ways:, +8:u01:298], +15:u13:processing., +11:u14:striped, +15:u04:processing., +11:u05:striped, +9:u06:ways:, +8:u00:298], +15:u12:processing., +11:u13:striped, +9:u14:ways:, +15:u03:processing., +11:u04:striped, +9:u05:ways:, +15:u11:processing., +11:u12:striped, +9:u13:ways:, +9:uI2::--,,, +15:u02:processing., +11:u03:striped, +9:u04:ways:, +15:u10:processing., +11:u11:striped, +9:u12:ways:, +9:uI1::--,,, +15:u01:processing., +11:u02:striped, +9:u03:ways:, +11:u10:striped, +9:u11:ways:, +9:uI0::--,,, +15:u00:processing., +11:u01:striped, +9:u02:ways:, +9:u10:ways:, +11:u00:striped, +9:u01:ways:, +9:u00:ways:, +13:uI2:(..,);..., +13:uI1:(..,);..., +13:uI0:(..,);..., +12:u08:(defined, +12:u07:(defined, +12:u08:feature., +12:u06:(defined, +10:u14:subset, +11:u08:12.2.1., +12:u05:(defined, +10:u13:subset, +12:u07:feature., +12:u04:(defined, +10:u12:subset, +12:u06:feature., +11:u07:12.2.1., +12:u03:(defined, +10:u11:subset, +12:u14:feature., +12:u05:feature., +11:u06:12.2.1., +12:u02:(defined, +10:u10:subset, +12:u13:feature., +11:u14:12.2.1., +12:u04:feature., +11:u05:12.2.1., +12:u01:(defined, +12:u12:feature., +11:u13:12.2.1., +12:u03:feature., +11:u04:12.2.1., +11:u08:12.2.2., +12:u00:(defined, +12:u11:feature., +11:u12:12.2.1., +12:u02:feature., +11:u03:12.2.1., +12:u10:feature., +11:u11:12.2.1., +12:u01:feature., +11:u02:12.2.1., +11:u07:12.2.2., +17:u08:architectural, +11:u10:12.2.1., +12:u00:feature., +11:u01:12.2.1., +11:u06:12.2.2., +11:u14:12.2.2., +11:u00:12.2.1., +11:u05:12.2.2., +17:u07:architectural, +11:u13:12.2.2., +11:u04:12.2.2., +17:u06:architectural, +11:u12:12.2.2., +17:u14:architectural, +11:u03:12.2.2., +17:u05:architectural, +11:u11:12.2.2., +17:u13:architectural, +11:u02:12.2.2., +17:u04:architectural, +11:u08:12.2.3., +11:u10:12.2.2., +17:u12:architectural, +11:u01:12.2.2., +17:u03:architectural, +17:u11:architectural, +11:u00:12.2.2., +17:u02:architectural, +11:u07:12.2.3., +17:u10:architectural, +17:u01:architectural, +11:u06:12.2.3., +11:u08:12.2.4., +11:u14:12.2.3., +17:u00:architectural, +11:u05:12.2.3., +11:u13:12.2.3., +11:u04:12.2.3., +11:u07:12.2.4., +11:u12:12.2.3., +11:u03:12.2.3., +11:u06:12.2.4., +11:u11:12.2.3., +11:u14:12.2.4., +11:u02:12.2.3., +11:u05:12.2.4., +11:u10:12.2.3., +11:u13:12.2.4., +11:u01:12.2.3., +11:u04:12.2.4., +11:u12:12.2.4., +11:u00:12.2.3., +11:u03:12.2.4., +9:u08:iSCSI, +11:u11:12.2.4., +11:u02:12.2.4., +9:u07:iSCSI, +11:u10:12.2.4., +10:uI2:.,-(),, +11:u01:12.2.4., +9:u06:iSCSI, +10:uI1:.,-(),, +9:uI2:(,..,, +11:u00:12.2.4., +9:u05:iSCSI, +8:u08:299], +10:uI0:.,-(),, +9:uI1:(,..,, +9:u04:iSCSI, +8:u07:299], +9:uI0:(,..,, +9:u03:iSCSI, +8:u06:299], +11:u08:12.2.5., +9:u02:iSCSI, +8:u05:299], +9:u01:iSCSI, +8:u04:299], +11:u07:12.2.5., +9:u00:iSCSI, +8:u03:299], +11:u06:12.2.5., +8:u02:299], +11:u14:12.2.5., +11:u05:12.2.5., +8:u01:299], +11:u13:12.2.5., +11:u04:12.2.5., +8:u00:299], +11:u12:12.2.5., +11:u03:12.2.5., +11:u11:12.2.5., +11:u02:12.2.5., +11:u10:12.2.5., +11:u01:12.2.5., +9:u08:[52]., +16:u08:Block/volume, +11:u00:12.2.5., +14:u08:addressing, +16:u07:Block/volume, +11:u14:options, +9:u07:[52]., +16:u06:Block/volume, +11:u13:options, +9:u06:[52]., +14:u07:addressing, +17:u08:extensibility, +16:u05:Block/volume, +11:u12:options, +9:u14:[52]., +9:uI2:/()[], +9:u05:[52]., +14:u06:addressing, +16:u04:Block/volume, +11:u11:options, +9:u13:[52]., +14:u14:addressing, +9:uI1:/()[], +9:u04:[52]., +14:u05:addressing, +17:u07:extensibility, +16:u03:Block/volume, +11:u10:options, +9:u12:[52]., +14:u13:addressing, +7:u22:[52, +8:u23:[52], +9:uI0:/()[], +9:u03:[52]., +14:u04:addressing, +17:u06:extensibility, +16:u02:Block/volume, +9:u11:[52]., +14:u12:addressing, +17:u14:extensibility, +9:u02:[52]., +14:u03:addressing, +17:u05:extensibility, +16:u01:Block/volume, +9:u10:[52]., +14:u11:addressing, +17:u13:extensibility, +9:u01:[52]., +14:u02:addressing, +17:u04:extensibility, +16:u00:Block/volume, +8:u08:[43], +14:u10:addressing, +17:u12:extensibility, +9:u00:[52]., +14:u01:addressing, +17:u03:extensibility, +8:u07:[43], +17:u11:extensibility, +14:u00:addressing, +17:u02:extensibility, +8:u06:[43], +17:u10:extensibility, +17:u01:extensibility, +8:u05:[43], +17:u00:extensibility, +8:u04:[43], +14:u08:accessible, +8:u03:[43], +8:u02:[43], +14:u07:accessible, +11:u08:12.2.6., +8:u01:[43], +9:u14:this,, +14:u06:accessible, +8:u00:[43], +9:u13:this,, +14:u14:accessible, +14:u05:accessible, +11:u07:12.2.6., +9:u12:this,, +14:u13:accessible, +14:u04:accessible, +11:u06:12.2.6., +17:u08:Specification, +9:u11:this,, +14:u12:accessible, +11:u14:12.2.6., +14:u03:accessible, +11:u05:12.2.6., +9:u10:this,, +14:u11:accessible, +11:u13:12.2.6., +14:u02:accessible, +11:u04:12.2.6., +17:u07:Specification, +14:u10:accessible, +11:u12:12.2.6., +14:u01:accessible, +11:u03:12.2.6., +17:u06:Specification, +11:u11:12.2.6., +14:u00:accessible, +11:u02:12.2.6., +17:u05:Specification, +12:u08:control,, +11:u10:12.2.6., +11:u01:12.2.6., +17:u04:Specification, +11:u00:12.2.6., +17:u03:Specification, +12:u07:control,, +17:u02:Specification, +12:u06:control,, +12:u14:control,, +17:u01:Specification, +12:u05:control,, +12:u13:control,, +17:u00:Specification, +12:u04:control,, +12:u12:control,, +12:u03:control,, +12:u11:control,, +11:u14:device., +12:u02:control,, +12:u10:control,, +11:u13:device., +12:u01:control,, +9:u08:(EOF), +11:u12:device., +12:u00:control,, +9:u07:(EOF), +11:u11:device., +9:u06:(EOF), +11:u10:device., +8:uI2:,,--, +9:u05:(EOF), +8:uI1:,,--, +9:u04:(EOF), +8:u08:300], +8:uI0:,,--, +12:uI2:(..,[]),, +9:u03:(EOF), +8:u07:300], +12:uI1:(..,[]),, +9:u02:(EOF), +8:u06:300], +12:uI0:(..,[]),, +14:u08:clustering, +9:u01:(EOF), +8:u05:300], +9:u00:(EOF), +8:u04:300], +14:u07:clustering, +11:u08:12.2.7., +8:u03:300], +14:u06:clustering, +8:u02:300], +14:u14:clustering, +14:u05:clustering, +11:u07:12.2.7., +8:u01:300], +14:u13:clustering, +14:u04:clustering, +11:u06:12.2.7., +8:u00:300], +14:u12:clustering, +11:u14:12.2.7., +14:u03:clustering, +11:u05:12.2.7., +14:u11:clustering, +11:u13:12.2.7., +14:u02:clustering, +11:u04:12.2.7., +14:u10:clustering, +11:u12:12.2.7., +14:u01:clustering, +11:u03:12.2.7., +11:u11:12.2.7., +14:u00:clustering, +11:u02:12.2.7., +7:u08:13), +11:u10:12.2.7., +10:uI2:(,..)., +11:u01:12.2.7., +7:u07:13), +10:uI1:(,..)., +11:u00:12.2.7., +11:u08:private, +7:u06:13), +10:uI0:(,..)., +11:uI2:/[],[],, +19:u08:experimentation, +7:u05:13), +11:uI1:/[],[],, +11:u07:private, +7:u04:13), +11:uI0:/[],[],, +11:u06:private, +19:u07:experimentation, +7:u03:13), +11:u14:private, +11:u05:private, +19:u06:experimentation, +7:u02:13), +11:u13:private, +19:u14:experimentation, +11:u04:private, +19:u05:experimentation, +14:u08:striping)., +7:u01:13), +11:u12:private, +19:u13:experimentation, +11:u03:private, +19:u04:experimentation, +7:u00:13), +11:u11:private, +19:u12:experimentation, +11:u02:private, +19:u03:experimentation, +14:u07:striping)., +11:u08:<device, +11:u10:private, +19:u11:experimentation, +11:uI2:(..,,),, +11:u01:private, +19:u02:experimentation, +14:u06:striping)., +11:u07:<device, +19:u10:experimentation, +14:u14:striping)., +11:uI1:(..,,),, +11:u00:private, +19:u01:experimentation, +14:u05:striping)., +11:u06:<device, +14:u13:striping)., +11:uI0:(..,,),, +7:uI2:)./, +19:u00:experimentation, +14:u04:striping)., +11:u05:<device, +14:u12:striping)., +7:uI1:)./, +14:u03:striping)., +11:u04:<device, +14:u11:striping)., +7:uI0:)./, +14:u02:striping)., +11:u03:<device, +14:u10:striping)., +14:u01:striping)., +11:u02:<device, +14:u00:striping)., +11:u01:<device, +11:u00:<device, +11:u14:complex, +11:u13:complex, +11:u12:complex, +11:u11:complex, +11:u10:complex, +16:u14:device_addr4, +16:u13:device_addr4, +11:u08:12.2.8., +16:u12:device_addr4, +16:u11:device_addr4, +11:u07:12.2.8., +16:u10:device_addr4, +11:u06:12.2.8., +11:u14:12.2.8., +11:u05:12.2.8., +11:u13:12.2.8., +11:u04:12.2.8., +11:u12:12.2.8., +11:u03:12.2.8., +11:u11:12.2.8., +11:u02:12.2.8., +11:u10:12.2.8., +11:u01:12.2.8., +11:u00:12.2.8., +8:u08:301], +8:u07:301], +8:u06:301], +8:u05:301], +8:u04:301], +11:u08:overlap, +8:u03:301], +8:u02:301], +11:u07:overlap, +8:u01:301], +11:u06:overlap, +8:u00:301], +11:u14:overlap, +11:u05:overlap, +13:u08:differing, +11:u13:overlap, +11:u04:overlap, +15:u08:permissible, +11:u08:iomodes, +11:u12:overlap, +11:u03:overlap, +13:u07:differing, +11:u07:iomodes, +11:u11:overlap, +10:u14:(i.e.,, +11:u02:overlap, +13:u06:differing, +15:u07:permissible, +11:u06:iomodes, +11:u10:overlap, +10:u13:(i.e.,, +13:u14:differing, +11:uI2:(..,/)., +11:u01:overlap, +13:u05:differing, +15:u06:permissible, +11:u08:12.2.9., +11:u05:iomodes, +10:u12:(i.e.,, +13:u13:differing, +15:u14:permissible, +11:uI1:(..,/)., +11:u00:overlap, +13:u04:differing, +15:u05:permissible, +11:u04:iomodes, +10:u11:(i.e.,, +13:u12:differing, +15:u13:permissible, +11:uI0:(..,/)., +13:u03:differing, +15:u04:permissible, +11:u07:12.2.9., +11:u03:iomodes, +10:u10:(i.e.,, +13:u11:differing, +15:u12:permissible, +13:u02:differing, +15:u03:permissible, +11:u06:12.2.9., +11:u02:iomodes, +13:u10:differing, +15:u11:permissible, +11:u14:12.2.9., +8:uI2:--/., +13:u01:differing, +15:u02:permissible, +11:u05:12.2.9., +11:u01:iomodes, +15:u10:permissible, +11:u13:12.2.9., +8:uI1:--/., +13:u00:differing, +15:u01:permissible, +11:u04:12.2.9., +11:u00:iomodes, +11:u12:12.2.9., +8:uI0:--/., +15:u00:permissible, +11:u03:12.2.9., +11:u11:12.2.9., +11:u02:12.2.9., +11:u10:12.2.9., +11:u01:12.2.9., +11:u00:12.2.9., +8:uI2:,/-,, +8:uI1:,/-,, +8:uI0:,/-,, +7:uI2:,'/, +7:uI1:,'/, +7:uI0:,'/, +7:uI2:-;-, +7:uI1:-;-, +7:uI0:-;-, +8:u08:302], +8:u07:302], +8:u06:302], +12:u08:12.2.10., +8:u05:302], +8:u04:302], +12:u07:12.2.10., +8:u03:302], +12:u06:12.2.10., +11:u08:<client, +8:u02:302], +12:u14:12.2.10., +12:u05:12.2.10., +8:u01:302], +12:u13:12.2.10., +12:u04:12.2.10., +11:u07:<client, +8:u00:302], +12:u12:12.2.10., +12:u03:12.2.10., +11:u06:<client, +12:u11:12.2.10., +11:u14:<client, +12:u02:12.2.10., +11:u05:<client, +8:u08:IDs., +12:u10:12.2.10., +11:u13:<client, +12:u01:12.2.10., +11:u04:<client, +8:u07:IDs., +11:u12:<client, +6:u21:<c, +7:u22:<cl, +8:u23:<cli, +12:u00:12.2.10., +11:u03:<client, +8:u06:IDs., +11:u11:<client, +11:u02:<client, +8:u05:IDs., +11:u10:<client, +9:uI2:..(.), +11:u01:<client, +8:u04:IDs., +9:uI1:..(.), +11:u00:<client, +8:u03:IDs., +9:uI0:..(.), +8:u02:IDs., +8:u01:IDs., +8:u00:IDs., +15:u08:address(es), +15:u07:address(es), +10:u08:12.7.4, +15:u06:address(es), +10:u07:12.7.4, +15:u05:address(es), +10:u06:12.7.4, +15:u04:address(es), +10:u05:12.7.4, +14:u14:situation., +11:u08:deleted, +15:u03:address(es), +10:u04:12.7.4, +14:u13:situation., +15:u02:address(es), +10:u03:12.7.4, +14:u12:situation., +11:u07:deleted, +15:u01:address(es), +10:u02:12.7.4, +14:u11:situation., +11:u06:deleted, +8:u08:room, +15:u00:address(es), +10:u01:12.7.4, +14:u10:situation., +11:u14:deleted, +11:u05:deleted, +10:u00:12.7.4, +11:u13:deleted, +11:u04:deleted, +8:u07:room, +11:u12:deleted, +11:u03:deleted, +8:u06:room, +11:u11:deleted, +8:u14:room, +11:u02:deleted, +8:u05:room, +11:u10:deleted, +8:u13:room, +11:u01:deleted, +8:u04:room, +8:u12:room, +8:u23:room, +11:u00:deleted, +8:u03:room, +8:u11:room, +8:u02:room, +12:u08:mappings, +8:u10:room, +8:u01:room, +8:u00:room, +12:u07:mappings, +12:u06:mappings, +12:u14:mappings, +12:u05:mappings, +12:u13:mappings, +12:u04:mappings, +12:u12:mappings, +12:u03:mappings, +12:u11:mappings, +12:u02:mappings, +12:u10:mappings, +12:u01:mappings, +19:u08:CB_LAYOUTRECALL, +12:u00:mappings, +19:u07:CB_LAYOUTRECALL, +19:u06:CB_LAYOUTRECALL, +19:u05:CB_LAYOUTRECALL, +19:u04:CB_LAYOUTRECALL, +19:u03:CB_LAYOUTRECALL, +19:u02:CB_LAYOUTRECALL, +19:u01:CB_LAYOUTRECALL, +8:u08:303], +19:u00:CB_LAYOUTRECALL, +8:u07:303], +8:u06:303], +8:u05:303], +8:u04:303], +8:u03:303], +8:u02:303], +8:u01:303], +8:u00:303], +12:u08:feature,, +12:u07:feature,, +17:u08:GETDEVICEINFO, +12:u06:feature,, +12:u05:feature,, +17:u07:GETDEVICEINFO, +12:u04:feature,, +13:u08:12.2.10),, +17:u06:GETDEVICEINFO, +17:u08:GETDEVICELIST, +12:u03:feature,, +13:u07:12.2.10),, +17:u14:getdeviceinfo, +17:u05:GETDEVICEINFO, +12:u02:feature,, +13:u06:12.2.10),, +17:u13:getdeviceinfo, +17:u04:GETDEVICEINFO, +17:u07:GETDEVICELIST, +12:u01:feature,, +13:u05:12.2.10),, +17:u12:getdeviceinfo, +8:u23:GETD, +17:u03:GETDEVICEINFO, +17:u06:GETDEVICELIST, +12:u00:feature,, +13:u04:12.2.10),, +17:u11:getdeviceinfo, +17:u14:getdevicelist, +17:u02:GETDEVICEINFO, +17:u05:GETDEVICELIST, +16:u08:LAYOUTCOMMIT, +13:u03:12.2.10),, +17:u10:getdeviceinfo, +17:u13:getdevicelist, +17:u01:GETDEVICEINFO, +17:u04:GETDEVICELIST, +13:u02:12.2.10),, +17:u12:getdevicelist, +17:u00:GETDEVICEINFO, +17:u03:GETDEVICELIST, +16:u07:LAYOUTCOMMIT, +13:u01:12.2.10),, +17:u11:getdevicelist, +9:u14:file., +17:u02:GETDEVICELIST, +16:u06:LAYOUTCOMMIT, +13:u00:12.2.10),, +17:u10:getdevicelist, +9:u13:file., +16:u14:layoutcommit, +17:u01:GETDEVICELIST, +16:u05:LAYOUTCOMMIT, +9:u12:file., +16:u13:layoutcommit, +17:u00:GETDEVICELIST, +16:u04:LAYOUTCOMMIT, +9:u11:file., +16:u12:layoutcommit, +16:u03:LAYOUTCOMMIT, +9:u10:file., +16:u11:layoutcommit, +16:u02:LAYOUTCOMMIT, +16:u10:layoutcommit, +16:u01:LAYOUTCOMMIT, +16:u00:LAYOUTCOMMIT, +17:u08:CB_RECALL_ANY, +19:u14:cb_layoutrecall, +19:u13:cb_layoutrecall, +17:u07:CB_RECALL_ANY, +19:u12:cb_layoutrecall, +8:u23:CB_L, +17:u06:CB_RECALL_ANY, +19:u11:cb_layoutrecall, +17:u14:cb_recall_any, +17:u05:CB_RECALL_ANY, +19:u10:cb_layoutrecall, +17:u13:cb_recall_any, +17:u04:CB_RECALL_ANY, +17:u12:cb_recall_any, +17:u03:CB_RECALL_ANY, +8:u08:304], +17:u11:cb_recall_any, +17:u02:CB_RECALL_ANY, +8:u07:304], +17:u10:cb_recall_any, +17:u01:CB_RECALL_ANY, +8:u06:304], +17:u00:CB_RECALL_ANY, +27:u08:CB_RECALLABLE_OBJ_AVAIL, +8:u05:304], +8:u04:304], +27:u07:CB_RECALLABLE_OBJ_AVAIL, +8:u03:304], +27:u06:CB_RECALLABLE_OBJ_AVAIL, +22:u08:CB_NOTIFY_DEVICEID, +8:u02:304], +27:u14:cb_recallable_obj_avail, +27:u05:CB_RECALLABLE_OBJ_AVAIL, +8:u01:304], +27:u13:cb_recallable_obj_avail, +27:u04:CB_RECALLABLE_OBJ_AVAIL, +22:u07:CB_NOTIFY_DEVICEID, +8:u00:304], +27:u12:cb_recallable_obj_avail, +27:u03:CB_RECALLABLE_OBJ_AVAIL, +22:u06:CB_NOTIFY_DEVICEID, +27:u11:cb_recallable_obj_avail, +22:u14:cb_notify_deviceid, +27:u02:CB_RECALLABLE_OBJ_AVAIL, +22:u05:CB_NOTIFY_DEVICEID, +27:u10:cb_recallable_obj_avail, +22:u13:cb_notify_deviceid, +27:u01:CB_RECALLABLE_OBJ_AVAIL, +22:u04:CB_NOTIFY_DEVICEID, +22:u12:cb_notify_deviceid, +8:u23:CB_N, +27:u00:CB_RECALLABLE_OBJ_AVAIL, +22:u03:CB_NOTIFY_DEVICEID, +11:u08:12.5.1., +22:u11:cb_notify_deviceid, +22:u02:CB_NOTIFY_DEVICEID, +11:u08:Layouts, +14:u08:Guarantees, +22:u10:cb_notify_deviceid, +22:u01:CB_NOTIFY_DEVICEID, +11:u07:12.5.1., +14:u07:Guarantees, +9:u08:grant, +22:u00:CB_NOTIFY_DEVICEID, +11:u06:12.5.1., +11:u07:Layouts, +14:u06:Guarantees, +9:u07:grant, +11:u14:12.5.1., +11:u05:12.5.1., +11:u06:Layouts, +14:u05:Guarantees, +9:u06:grant, +11:u13:12.5.1., +11:u04:12.5.1., +11:u05:Layouts, +14:u04:Guarantees, +9:u05:grant, +11:u12:12.5.1., +11:u03:12.5.1., +11:u04:Layouts, +14:u08:indirectly, +14:u03:Guarantees, +9:u04:grant, +11:u11:12.5.1., +11:u02:12.5.1., +11:u03:Layouts, +14:u02:Guarantees, +9:u03:grant, +11:u10:12.5.1., +11:u01:12.5.1., +11:u02:Layouts, +14:u07:indirectly, +14:u01:Guarantees, +9:u02:grant, +11:u00:12.5.1., +11:u01:Layouts, +14:u06:indirectly, +14:u00:Guarantees, +9:u01:grant, +14:u14:indirectly, +11:u00:Layouts, +14:u05:indirectly, +9:u00:grant, +14:u13:indirectly, +14:u04:indirectly, +14:u12:indirectly, +14:u03:indirectly, +14:u11:indirectly, +14:u02:indirectly, +14:u10:indirectly, +14:u01:indirectly, +14:u00:indirectly, +7:uI2:./-, +7:uI1:./-, +7:uI0:./-, +10:u08:volume, +10:u07:volume, +10:u06:volume, +10:u14:volume, +7:uI2:.,/, +10:u05:volume, +10:u13:volume, +7:uI1:.,/, +10:u04:volume, +10:u12:volume, +8:u23:volu, +7:uI0:.,/, +10:u03:volume, +10:u11:volume, +10:u02:volume, +10:u10:volume, +10:u01:volume, +10:u00:volume, +9:uI2:,-[]., +9:uI1:,-[]., +8:u08:305], +9:uI0:,-[]., +8:u07:305], +8:u06:305], +8:u05:305], +16:u08:inaccessible, +8:u04:305], +8:u03:305], +16:u07:inaccessible, +8:u02:305], +16:u06:inaccessible, +8:u01:305], +16:u14:inaccessible, +16:u05:inaccessible, +8:u00:305], +14:u08:circumvent, +16:u13:inaccessible, +16:u04:inaccessible, +14:u07:circumvent, +16:u12:inaccessible, +16:u03:inaccessible, +14:u06:circumvent, +16:u11:inaccessible, +16:u02:inaccessible, +14:u05:circumvent, +16:u10:inaccessible, +16:u01:inaccessible, +14:u04:circumvent, +16:u00:inaccessible, +14:u03:circumvent, +14:u02:circumvent, +10:u08:behave, +14:u01:circumvent, +10:u07:behave, +14:u00:circumvent, +10:u06:behave, +10:u05:behave, +12:u08:restrict, +10:u04:behave, +10:u03:behave, +12:u07:restrict, +10:u02:behave, +12:u06:restrict, +10:u01:behave, +12:u14:restrict, +12:u05:restrict, +11:u08:12.5.2., +10:u00:behave, +12:u13:restrict, +12:u04:restrict, +12:u12:restrict, +12:u03:restrict, +11:u07:12.5.2., +12:u11:restrict, +9:u14:grant, +12:u02:restrict, +11:u06:12.5.2., +12:u10:restrict, +9:u13:grant, +11:u14:12.5.2., +12:u01:restrict, +11:u05:12.5.2., +9:u12:grant, +11:u13:12.5.2., +12:u00:restrict, +11:u04:12.5.2., +9:u11:grant, +11:u12:12.5.2., +11:u03:12.5.2., +9:u10:grant, +11:u11:12.5.2., +10:uI2:(..,/,, +11:u02:12.5.2., +11:u10:12.5.2., +10:uI1:(..,/,, +11:u01:12.5.2., +16:u08:overlapping,, +10:uI0:(..,/,, +11:u00:12.5.2., +19:u08:non-conflicting, +16:u07:overlapping,, +19:u07:non-conflicting, +16:u06:overlapping,, +19:u06:non-conflicting, +16:u14:overlapping,, +16:u05:overlapping,, +19:u05:non-conflicting, +16:u13:overlapping,, +11:uI2:,-(..)., +16:u04:overlapping,, +19:u04:non-conflicting, +16:u12:overlapping,, +11:uI1:,-(..)., +16:u03:overlapping,, +19:u03:non-conflicting, +16:u11:overlapping,, +11:uI0:,-(..)., +16:u02:overlapping,, +19:u02:non-conflicting, +16:u10:overlapping,, +16:u01:overlapping,, +19:u01:non-conflicting, +16:u00:overlapping,, +19:u00:non-conflicting, +11:u08:12.5.3), +14:u08:retrieved,, +11:u07:12.5.3), +11:u06:12.5.3), +14:u07:retrieved,, +11:u05:12.5.3), +8:uI2:..),, +14:u06:retrieved,, +11:u04:12.5.3), +14:u14:retrieved,, +8:uI1:..),, +14:u05:retrieved,, +11:u03:12.5.3), +14:u13:retrieved,, +8:uI0:..),, +14:u04:retrieved,, +11:u02:12.5.3), +14:u12:retrieved,, +14:u03:retrieved,, +11:u01:12.5.3), +14:u11:retrieved,, +14:u02:retrieved,, +11:u00:12.5.3), +8:u08:306], +14:u10:retrieved,, +14:u01:retrieved,, +8:u07:306], +14:u00:retrieved,, +8:u06:306], +8:u05:306], +8:u04:306], +8:u03:306], +8:u02:306], +8:u01:306], +8:u00:306], +13:u14:interpret, +13:u13:interpret, +13:u12:interpret, +13:u11:interpret, +13:u10:interpret, +11:u08:caches,, +12:u08:GUARDED4, +16:u08:EXCLUSIVE4_1, +11:u07:caches,, +16:u07:EXCLUSIVE4_1, +11:u06:caches,, +12:u07:GUARDED4, +16:u06:EXCLUSIVE4_1, +11:u08:18.16.3, +11:u14:caches,, +11:u05:caches,, +12:u06:GUARDED4, +11:u08:12.5.3., +16:u05:EXCLUSIVE4_1, +11:u07:18.16.3, +11:u08:create., +11:u13:caches,, +12:u14:guarded4, +11:u04:caches,, +12:u05:GUARDED4, +16:u04:EXCLUSIVE4_1, +11:u06:18.16.3, +11:u07:create., +11:u12:caches,, +12:u13:guarded4, +11:u03:caches,, +12:u04:GUARDED4, +11:u07:12.5.3., +16:u03:EXCLUSIVE4_1, +11:u05:18.16.3, +11:u06:create., +11:u11:caches,, +12:u12:guarded4, +6:u21:GU, +7:u22:GUA, +8:u23:GUAR, +11:u02:caches,, +12:u03:GUARDED4, +11:u06:12.5.3., +16:u02:EXCLUSIVE4_1, +11:u04:18.16.3, +11:u05:create., +11:u10:caches,, +12:u11:guarded4, +11:u14:12.5.3., +11:u01:caches,, +12:u02:GUARDED4, +11:u05:12.5.3., +16:u01:EXCLUSIVE4_1, +11:u03:18.16.3, +11:u04:create., +12:u10:guarded4, +11:u13:12.5.3., +11:u00:caches,, +12:u01:GUARDED4, +11:u04:12.5.3., +16:u00:EXCLUSIVE4_1, +11:u02:18.16.3, +11:u03:create., +11:u12:12.5.3., +12:u00:GUARDED4, +11:u03:12.5.3., +11:u01:18.16.3, +11:u02:create., +11:u11:12.5.3., +10:uI2:"".,"", +11:u02:12.5.3., +11:u00:18.16.3, +11:u01:create., +11:u10:12.5.3., +10:uI1:"".,"", +11:u01:12.5.3., +11:u00:create., +12:u14:stateid., +10:uI0:"".,"", +11:u00:12.5.3., +12:u13:stateid., +12:u12:stateid., +12:u11:stateid., +12:u10:stateid., +14:u14:conditions, +14:u13:conditions, +14:u12:conditions, +14:u11:conditions, +8:u08:307], +14:u10:conditions, +8:u07:307], +8:u06:307], +8:u05:307], +8:u04:307], +8:u03:307], +13:u08:responses, +8:u02:307], +8:u01:307], +13:u07:responses, +8:u00:307], +13:u06:responses, +13:u14:responses, +13:u05:responses, +14:u08:inspecting, +13:u13:responses, +13:u04:responses, +11:u08:ranges,, +13:u12:responses, +13:u03:responses, +14:u07:inspecting, +13:u11:responses, +13:u02:responses, +14:u06:inspecting, +11:u07:ranges,, +13:u10:responses, +14:u14:inspecting, +13:u01:responses, +14:u05:inspecting, +11:u06:ranges,, +14:u13:inspecting, +11:u14:ranges,, +13:u00:responses, +14:u04:inspecting, +11:u05:ranges,, +14:u12:inspecting, +11:u13:ranges,, +8:u23:insp, +14:u03:inspecting, +11:u04:ranges,, +14:u11:inspecting, +11:u12:ranges,, +14:u02:inspecting, +11:u03:ranges,, +14:u10:inspecting, +11:u11:ranges,, +14:u01:inspecting, +11:u02:ranges,, +13:u08:12.5.5.2., +11:u10:ranges,, +14:u00:inspecting, +11:u01:ranges,, +13:u07:12.5.5.2., +11:u00:ranges,, +13:u06:12.5.5.2., +13:u08:forgetful, +13:u05:12.5.5.2., +13:u04:12.5.5.2., +7:uI2:'"", +13:u07:forgetful, +13:u03:12.5.5.2., +7:uI1:'"", +13:u06:forgetful, +13:u02:12.5.5.2., +13:u14:forgetful, +7:uI0:'"", +13:u05:forgetful, +10:u08:seqid., +13:u01:12.5.5.2., +13:u13:forgetful, +13:u04:forgetful, +13:u00:12.5.5.2., +13:u12:forgetful, +8:u23:forg, +13:u03:forgetful, +10:u07:seqid., +13:u11:forgetful, +13:u02:forgetful, +10:u06:seqid., +13:u10:forgetful, +10:u14:seqid., +13:u01:forgetful, +10:u05:seqid., +10:u13:seqid., +13:u00:forgetful, +10:u04:seqid., +10:u12:seqid., +10:u03:seqid., +10:u11:seqid., +10:u02:seqid., +10:u10:seqid., +10:u01:seqid., +10:u00:seqid., +11:u08:12.5.4., +12:u08:Allowing, +14:u08:Committing, +11:u07:12.5.4., +14:u07:Committing, +11:u06:12.5.4., +12:u07:Allowing, +14:u06:Committing, +11:u14:12.5.4., +11:u05:12.5.4., +12:u06:Allowing, +14:u05:Committing, +11:u13:12.5.4., +11:u04:12.5.4., +12:u05:Allowing, +14:u04:Committing, +11:u12:12.5.4., +11:u03:12.5.4., +12:u04:Allowing, +14:u03:Committing, +11:u08:opposed, +11:u11:12.5.4., +8:u23:Allo, +11:u02:12.5.4., +12:u03:Allowing, +17:u08:provisionally, +14:u02:Committing, +11:u07:opposed, +11:u10:12.5.4., +11:u01:12.5.4., +12:u02:Allowing, +14:u01:Committing, +11:u06:opposed, +11:u00:12.5.4., +12:u01:Allowing, +17:u07:provisionally, +14:u00:Committing, +11:u05:opposed, +12:u00:Allowing, +17:u06:provisionally, +11:u04:opposed, +17:u14:provisionally, +17:u05:provisionally, +11:u03:opposed, +17:u13:provisionally, +17:u04:provisionally, +11:u02:opposed, +17:u12:provisionally, +17:u03:provisionally, +11:u01:opposed, +17:u11:provisionally, +17:u02:provisionally, +11:u00:opposed, +8:u08:308], +17:u10:provisionally, +17:u01:provisionally, +8:u07:308], +17:u00:provisionally, +8:u06:308], +8:u05:308], +8:u04:308], +8:u03:308], +8:u02:308], +13:u08:committed, +8:u01:308], +8:u00:308], +13:u07:committed, +13:u06:committed, +13:u14:committed, +13:u05:committed, +17:u08:LAYOUTCOMMIT., +13:u13:committed, +11:u14:occurs., +13:u04:committed, +11:u08:reflect, +13:u12:committed, +11:u13:occurs., +13:u03:committed, +17:u07:LAYOUTCOMMIT., +13:u11:committed, +11:u12:occurs., +13:u02:committed, +17:u06:LAYOUTCOMMIT., +11:u07:reflect, +13:u10:committed, +11:u11:occurs., +17:u14:layoutcommit., +13:u01:committed, +17:u05:LAYOUTCOMMIT., +11:u06:reflect, +11:u10:occurs., +17:u13:layoutcommit., +11:u14:reflect, +13:u00:committed, +17:u04:LAYOUTCOMMIT., +11:u05:reflect, +17:u12:layoutcommit., +11:u13:reflect, +17:u03:LAYOUTCOMMIT., +11:u04:reflect, +22:u08:block/volume-based, +17:u11:layoutcommit., +11:u12:reflect, +17:u02:LAYOUTCOMMIT., +11:u03:reflect, +22:u07:block/volume-based, +17:u10:layoutcommit., +11:u11:reflect, +17:u01:LAYOUTCOMMIT., +11:u02:reflect, +22:u06:block/volume-based, +11:u10:reflect, +17:u00:LAYOUTCOMMIT., +11:u01:reflect, +22:u05:block/volume-based, +7:uI2:/-,, +11:u00:reflect, +22:u04:block/volume-based, +7:uI1:/-,, +22:u03:block/volume-based, +7:uI0:/-,, +17:u08:LAYOUTCOMMIT,, +22:u02:block/volume-based, +22:u01:block/volume-based, +17:u07:LAYOUTCOMMIT,, +22:u00:block/volume-based, +17:u06:LAYOUTCOMMIT,, +17:u14:layoutcommit,, +17:u05:LAYOUTCOMMIT,, +17:u13:layoutcommit,, +17:u04:LAYOUTCOMMIT,, +17:u12:layoutcommit,, +17:u03:LAYOUTCOMMIT,, +17:u11:layoutcommit,, +17:u02:LAYOUTCOMMIT,, +17:u10:layoutcommit,, +17:u01:LAYOUTCOMMIT,, +13:u08:12.5.4.1., +17:u00:LAYOUTCOMMIT,, +13:u07:12.5.4.1., +13:u06:12.5.4.1., +13:u14:12.5.4.1., +13:u05:12.5.4.1., +13:u13:12.5.4.1., +9:uI2:..../, +13:u04:12.5.4.1., +13:u12:12.5.4.1., +9:uI1:..../, +13:u03:12.5.4.1., +13:u11:12.5.4.1., +9:uI0:..../, +13:u02:12.5.4.1., +13:u10:12.5.4.1., +13:u01:12.5.4.1., +13:u00:12.5.4.1., +19:u08:client-provided, +19:u07:client-provided, +19:u06:client-provided, +19:u14:client-provided, +19:u05:client-provided, +19:u13:client-provided, +19:u04:client-provided, +19:u12:client-provided, +19:u03:client-provided, +19:u11:client-provided, +19:u02:client-provided, +8:u08:309], +19:u10:client-provided, +19:u01:client-provided, +8:u07:309], +19:u00:client-provided, +8:u06:309], +8:u05:309], +8:u04:309], +8:u03:309], +8:u02:309], +8:u01:309], +8:u00:309], +7:uI2:/;,, +7:uI1:/;,, +7:uI0:/;,, +6:uI2:;-, +6:uI1:;-, +11:u08:update,, +6:uI0:;-, +11:u07:update,, +11:u06:update,, +13:u08:12.5.4.2., +11:u05:update,, +11:u04:update,, +13:u07:12.5.4.2., +11:u03:update,, +13:u06:12.5.4.2., +11:u02:update,, +13:u14:12.5.4.2., +13:u05:12.5.4.2., +11:u01:update,, +13:u13:12.5.4.2., +13:u04:12.5.4.2., +11:u00:update,, +13:u12:12.5.4.2., +13:u03:12.5.4.2., +14:u08:newoffset4, +13:u11:12.5.4.2., +13:u02:12.5.4.2., +13:u10:12.5.4.2., +13:u01:12.5.4.2., +14:u07:newoffset4, +10:u08:FALSE,, +13:u00:12.5.4.2., +14:u06:newoffset4, +14:u14:newoffset4, +14:u05:newoffset4, +10:u07:FALSE,, +14:u13:newoffset4, +14:u04:newoffset4, +10:u06:FALSE,, +27:u08:loca_last_write_offset,, +14:u12:newoffset4, +10:u14:false,, +8:u23:newo, +14:u03:newoffset4, +10:u05:FALSE,, +14:u11:newoffset4, +10:u13:false,, +14:u02:newoffset4, +10:u04:FALSE,, +27:u07:loca_last_write_offset,, +14:u10:newoffset4, +10:u12:false,, +7:u22:FAL, +8:u23:FALS, +7:uI2:,-(, +14:u01:newoffset4, +10:u03:FALSE,, +27:u06:loca_last_write_offset,, +10:u08:offset, +10:u11:false,, +27:u14:loca_last_write_offset,, +7:uI1:,-(, +14:u00:newoffset4, +10:u02:FALSE,, +27:u05:loca_last_write_offset,, +10:u07:offset, +10:u10:false,, +27:u13:loca_last_write_offset,, +7:uI0:,-(, +10:u01:FALSE,, +27:u04:loca_last_write_offset,, +10:u06:offset, +27:u12:loca_last_write_offset,, +10:u00:FALSE,, +27:u03:loca_last_write_offset,, +10:u05:offset, +9:u08:byte., +27:u11:loca_last_write_offset,, +27:u02:loca_last_write_offset,, +10:u04:offset, +9:u07:byte., +27:u10:loca_last_write_offset,, +27:u01:loca_last_write_offset,, +10:u03:offset, +9:u06:byte., +27:u00:loca_last_write_offset,, +10:u02:offset, +9:u05:byte., +10:u01:offset, +9:u04:byte., +10:u00:offset, +9:u03:byte., +9:u02:byte., +9:u14:size., +9:u01:byte., +9:u13:size., +9:u00:byte., +10:u08:Ignore, +9:u12:size., +10:u07:Ignore, +9:u11:size., +10:u14:offset, +10:u06:Ignore, +9:u10:size., +10:u13:offset, +10:u05:Ignore, +10:u12:offset, +7:uI2:.-;, +10:u04:Ignore, +8:u08:310], +10:u11:offset, +7:uI1:.-;, +10:u03:Ignore, +8:u07:310], +10:u10:offset, +7:uI0:.-;, +10:u02:Ignore, +8:u06:310], +10:u01:Ignore, +8:u05:310], +10:u00:Ignore, +8:u04:310], +8:u03:310], +8:u02:310], +8:u01:310], +12:u08:device's, +8:u00:310], +12:u07:device's, +12:u06:device's, +12:u05:device's, +8:uI2:'/'., +12:u08:newsize4, +12:u04:device's, +8:uI1:'/'., +12:u03:device's, +8:uI0:'/'., +12:u07:newsize4, +12:u02:device's, +12:u06:newsize4, +12:u01:device's, +12:u14:newsize4, +12:u05:newsize4, +12:u00:device's, +12:u13:newsize4, +12:u04:newsize4, +13:u08:complete., +12:u12:newsize4, +8:u23:news, +12:u03:newsize4, +12:u11:newsize4, +12:u14:updated,, +12:u02:newsize4, +13:u07:complete., +12:u10:newsize4, +12:u13:updated,, +12:u01:newsize4, +13:u06:complete., +12:u12:updated,, +13:u14:complete., +12:u00:newsize4, +13:u05:complete., +12:u11:updated,, +13:u13:complete., +13:u04:complete., +12:u10:updated,, +13:u12:complete., +13:u03:complete., +13:u11:complete., +13:u02:complete., +7:u08:(In, +13:u10:complete., +13:u01:complete., +13:u00:complete., +7:u07:(In, +8:u08:past, +11:uI2:,"",..,, +7:u06:(In, +13:u08:12.5.4.3., +7:u08:EOF, +11:uI1:,"",..,, +7:u05:(In, +8:u07:past, +7:u07:EOF, +11:uI0:,"",..,, +8:uI2:(,--, +7:u04:(In, +8:u06:past, +13:u07:12.5.4.3., +7:u06:EOF, +8:u14:past, +7:u22:(In, +7:u23:(In, +8:uI1:(,--, +7:u03:(In, +8:u05:past, +13:u06:12.5.4.3., +7:u05:EOF, +12:u08:18.42.1), +8:u13:past, +13:u14:12.5.4.3., +8:uI0:(,--, +7:u02:(In, +8:u04:past, +13:u05:12.5.4.3., +7:u04:EOF, +12:u07:18.42.1), +8:u12:past, +13:u13:12.5.4.3., +8:u23:past, +7:u01:(In, +8:u03:past, +13:u04:12.5.4.3., +7:u03:EOF, +12:u06:18.42.1), +8:u11:past, +13:u12:12.5.4.3., +7:u00:(In, +8:u02:past, +13:u03:12.5.4.3., +7:u02:EOF, +12:u05:18.42.1), +8:u10:past, +13:u11:12.5.4.3., +12:u14:argument, +13:uI2:(..)(..)., +8:u01:past, +13:u02:12.5.4.3., +7:u01:EOF, +12:u04:18.42.1), +13:u10:12.5.4.3., +12:u13:argument, +13:uI1:(..)(..)., +8:u00:past, +13:u01:12.5.4.3., +7:u00:EOF, +12:u03:18.42.1), +12:u12:argument, +13:uI0:(..)(..)., +13:u00:12.5.4.3., +12:u02:18.42.1), +12:u11:argument, +12:u01:18.42.1), +12:u10:argument, +12:u00:18.42.1), +12:u08:18.43.2), +12:u07:18.43.2), +15:u08:logr_layout, +11:u08:12.5.5., +12:u06:18.43.2), +15:u07:logr_layout, +12:u05:18.43.2), +15:u06:logr_layout, +13:u08:Recalling, +11:u07:12.5.5., +25:u08:client-storage-device, +12:u04:18.43.2), +15:u05:logr_layout, +13:u07:Recalling, +11:u06:12.5.5., +16:u08:semantically, +12:u03:18.43.2), +15:u04:logr_layout, +13:u06:Recalling, +11:u14:12.5.5., +11:u05:12.5.5., +25:u07:client-storage-device, +12:u02:18.43.2), +15:u03:logr_layout, +13:u05:Recalling, +11:u13:12.5.5., +11:u04:12.5.5., +25:u06:client-storage-device, +16:u07:semantically, +12:u01:18.43.2), +15:u02:logr_layout, +13:u04:Recalling, +11:u12:12.5.5., +25:u14:client-storage-device, +11:u03:12.5.5., +25:u05:client-storage-device, +16:u06:semantically, +12:u00:18.43.2), +15:u01:logr_layout, +13:u03:Recalling, +11:u11:12.5.5., +25:u13:client-storage-device, +16:u14:semantically, +11:u02:12.5.5., +25:u04:client-storage-device, +16:u05:semantically, +15:u00:logr_layout, +13:u02:Recalling, +11:u10:12.5.5., +25:u12:client-storage-device, +16:u13:semantically, +11:u01:12.5.5., +25:u03:client-storage-device, +16:u04:semantically, +13:u01:Recalling, +8:u08:311], +25:u11:client-storage-device, +16:u12:semantically, +11:u00:12.5.5., +25:u02:client-storage-device, +16:u03:semantically, +13:u00:Recalling, +8:u07:311], +25:u10:client-storage-device, +16:u11:semantically, +25:u01:client-storage-device, +16:u02:semantically, +8:u06:311], +16:u10:semantically, +25:u00:client-storage-device, +16:u01:semantically, +8:u05:311], +16:u00:semantically, +17:u08:server-driven, +8:u04:311], +8:u03:311], +14:u08:restriping, +17:u07:server-driven, +8:u02:311], +14:u07:restriping, +17:u06:server-driven, +8:u01:311], +14:u06:restriping, +17:u14:server-driven, +17:u05:server-driven, +8:u00:311], +14:u05:restriping, +17:u13:server-driven, +17:u04:server-driven, +14:u04:restriping, +17:u12:server-driven, +17:u03:server-driven, +14:u03:restriping, +17:u11:server-driven, +17:u02:server-driven, +15:u08:surrounding, +14:u02:restriping, +17:u10:server-driven, +17:u01:server-driven, +14:u01:restriping, +17:u00:server-driven, +15:u07:surrounding, +14:u00:restriping, +15:u06:surrounding, +15:u14:surrounding, +15:u05:surrounding, +15:u13:surrounding, +15:u04:surrounding, +15:u12:surrounding, +8:u23:surr, +15:u03:surrounding, +12:u08:layouts., +15:u11:surrounding, +15:u02:surrounding, +12:u07:layouts., +15:u10:surrounding, +15:u01:surrounding, +12:u06:layouts., +15:u00:surrounding, +12:u05:layouts., +12:u04:layouts., +12:u03:layouts., +12:u02:layouts., +11:u08:delayed, +12:u01:layouts., +12:u00:layouts., +11:u07:delayed, +11:u06:delayed, +14:u08:file-based, +11:u14:delayed, +11:u05:delayed, +11:u08:layout,, +11:u13:delayed, +11:u04:delayed, +14:u07:file-based, +11:u07:layout,, +11:u12:delayed, +8:u23:dela, +11:u03:delayed, +14:u06:file-based, +11:u06:layout,, +11:u11:delayed, +14:u14:file-based, +11:u02:delayed, +14:u05:file-based, +11:u05:layout,, +11:u10:delayed, +14:u13:file-based, +11:u01:delayed, +14:u04:file-based, +11:u04:layout,, +14:u12:file-based, +11:u00:delayed, +14:u03:file-based, +11:u03:layout,, +14:u11:file-based, +14:u02:file-based, +11:u02:layout,, +14:u10:file-based, +14:u01:file-based, +11:u01:layout,, +14:u00:file-based, +11:u00:layout,, +20:u08:CB_LAYOUTRECALL;, +20:u07:CB_LAYOUTRECALL;, +20:u06:CB_LAYOUTRECALL;, +20:u14:cb_layoutrecall;, +20:u05:CB_LAYOUTRECALL;, +20:u08:CB_LAYOUTRECALL., +20:u13:cb_layoutrecall;, +20:u04:CB_LAYOUTRECALL;, +20:u12:cb_layoutrecall;, +20:u03:CB_LAYOUTRECALL;, +20:u07:CB_LAYOUTRECALL., +20:u11:cb_layoutrecall;, +20:u02:CB_LAYOUTRECALL;, +20:u06:CB_LAYOUTRECALL., +11:u08:passed,, +20:u10:cb_layoutrecall;, +20:u14:cb_layoutrecall., +20:u01:CB_LAYOUTRECALL;, +20:u05:CB_LAYOUTRECALL., +11:u07:passed,, +20:u13:cb_layoutrecall., +20:u00:CB_LAYOUTRECALL;, +20:u04:CB_LAYOUTRECALL., +11:u06:passed,, +20:u12:cb_layoutrecall., +20:u03:CB_LAYOUTRECALL., +11:u05:passed,, +20:u11:cb_layoutrecall., +20:u02:CB_LAYOUTRECALL., +11:u04:passed,, +8:u08:312], +20:u10:cb_layoutrecall., +20:u01:CB_LAYOUTRECALL., +11:u03:passed,, +8:u07:312], +20:u00:CB_LAYOUTRECALL., +11:u02:passed,, +8:u06:312], +11:u01:passed,, +8:u05:312], +11:u00:passed,, +8:u04:312], +8:u03:312], +16:u08:DELEGRETURN,, +8:u02:312], +16:u07:DELEGRETURN,, +8:u01:312], +16:u06:DELEGRETURN,, +12:u08:progress, +8:u00:312], +16:u05:DELEGRETURN,, +12:u07:progress, +12:u08:limiting, +16:u04:DELEGRETURN,, +12:u06:progress, +11:u14:forward, +16:u03:DELEGRETURN,, +12:u05:progress, +11:u13:forward, +12:u07:limiting, +13:u08:12.5.5.1., +16:u02:DELEGRETURN,, +12:u04:progress, +11:u12:forward, +12:u06:limiting, +16:u01:DELEGRETURN,, +12:u03:progress, +11:u11:forward, +12:u14:limiting, +12:u05:limiting, +13:u07:12.5.5.1., +16:u00:DELEGRETURN,, +12:u02:progress, +11:u10:forward, +12:u13:limiting, +12:u04:limiting, +13:u06:12.5.5.1., +12:u01:progress, +11:u08:iomode), +12:u12:limiting, +13:u14:12.5.5.1., +12:u03:limiting, +13:u05:12.5.5.1., +12:u00:progress, +11:u07:iomode), +12:u11:limiting, +13:u13:12.5.5.1., +12:u02:limiting, +13:u04:12.5.5.1., +11:u06:iomode), +12:u10:limiting, +13:u12:12.5.5.1., +12:u01:limiting, +13:u03:12.5.5.1., +9:u08:agree, +11:u05:iomode), +9:u08:match, +13:u11:12.5.5.1., +12:u00:limiting, +13:u02:12.5.5.1., +11:u04:iomode), +9:u07:match, +13:u10:12.5.5.1., +13:u01:12.5.5.1., +9:u07:agree, +11:u03:iomode), +9:u06:match, +13:u00:12.5.5.1., +9:u06:agree, +11:u02:iomode), +9:u05:match, +9:u14:agree, +9:u05:agree, +11:u01:iomode), +9:u04:match, +9:u13:agree, +9:u04:agree, +17:u08:CB_COMPOUND),, +11:u00:iomode), +9:u03:match, +9:u12:agree, +9:u03:agree, +9:u02:match, +9:u11:agree, +9:u02:agree, +17:u07:CB_COMPOUND),, +9:u01:match, +12:u08:traffic., +9:u10:agree, +9:u01:agree, +17:u06:CB_COMPOUND),, +9:u00:match, +12:u07:traffic., +17:u14:cb_compound),, +9:u00:agree, +17:u05:CB_COMPOUND),, +12:u06:traffic., +17:u13:cb_compound),, +7:uI2:),-, +17:u04:CB_COMPOUND),, +12:u05:traffic., +17:u12:cb_compound),, +7:uI1:),-, +17:u03:CB_COMPOUND),, +12:u04:traffic., +17:u11:cb_compound),, +7:uI0:),-, +17:u02:CB_COMPOUND),, +12:u03:traffic., +10:u08:basis,, +17:u10:cb_compound),, +17:u01:CB_COMPOUND),, +12:u02:traffic., +10:u07:basis,, +17:u00:CB_COMPOUND),, +12:u01:traffic., +10:u06:basis,, +12:u00:traffic., +10:u05:basis,, +10:u04:basis,, +10:u03:basis,, +8:u08:has., +10:u02:basis,, +8:u07:has., +10:u01:basis,, +8:u06:has., +10:u00:basis,, +8:u05:has., +8:u04:has., +8:u03:has., +8:u02:has., +8:u01:has., +8:u00:has., +8:u08:313], +8:u07:313], +8:u06:313], +8:u05:313], +8:u04:313], +8:u03:313], +8:u02:313], +8:u01:313], +8:u00:313], +11:u08:recall., +11:u07:recall., +11:u06:recall., +11:u14:recall., +11:u05:recall., +11:u13:recall., +11:u04:recall., +11:u12:recall., +11:u03:recall., +11:u11:recall., +11:u02:recall., +15:u08:Rephrasing,, +11:u10:recall., +11:u01:recall., +11:u00:recall., +15:u07:Rephrasing,, +15:u06:Rephrasing,, +15:u14:rephrasing,, +15:u05:Rephrasing,, +15:u13:rephrasing,, +15:u04:Rephrasing,, +15:u12:rephrasing,, +8:u23:Reph, +15:u03:Rephrasing,, +15:u11:rephrasing,, +15:u02:Rephrasing,, +10:u08:revoke, +15:u10:rephrasing,, +15:u01:Rephrasing,, +10:u07:revoke, +15:u00:Rephrasing,, +10:u06:revoke, +16:u14:unilaterally, +10:u05:revoke, +16:u13:unilaterally, +10:u04:revoke, +16:u12:unilaterally, +8:u23:unil, +14:u08:supported;, +10:u03:revoke, +14:u08:unilateral, +16:u11:unilaterally, +10:uI2:/,..,/, +13:u08:lingering, +10:u02:revoke, +14:u07:unilateral, +16:u10:unilaterally, +10:uI1:/,..,/, +14:u07:supported;, +10:u01:revoke, +14:u06:unilateral, +10:uI0:/,..,/, +14:u06:supported;, +13:u07:lingering, +10:u00:revoke, +14:u05:unilateral, +14:u14:supported;, +14:u05:supported;, +13:u06:lingering, +14:u04:unilateral, +14:u13:supported;, +13:u14:lingering, +14:u04:supported;, +13:u05:lingering, +14:u03:unilateral, +14:u12:supported;, +13:u13:lingering, +14:u03:supported;, +13:u04:lingering, +14:u02:unilateral, +14:u11:supported;, +13:u12:lingering, +8:u23:ling, +14:u02:supported;, +13:u03:lingering, +14:u01:unilateral, +14:u10:supported;, +13:u11:lingering, +14:u01:supported;, +13:u02:lingering, +14:u00:unilateral, +13:u08:recalled,, +13:u10:lingering, +14:u00:supported;, +13:u01:lingering, +14:u08:pertaining, +13:u07:recalled,, +13:u00:lingering, +13:u06:recalled,, +14:u07:pertaining, +13:u05:recalled,, +8:uI2:,,,/, +14:u06:pertaining, +13:u04:recalled,, +14:u14:pertaining, +8:uI1:,,,/, +11:uI2:(,,),-,, +14:u05:pertaining, +13:u03:recalled,, +14:u13:pertaining, +8:uI0:,,,/, +11:uI1:(,,),-,, +14:u04:pertaining, +13:u02:recalled,, +14:u12:pertaining, +8:u23:pert, +11:uI0:(,,),-,, +14:u03:pertaining, +13:u01:recalled,, +14:u11:pertaining, +14:u02:pertaining, +13:u00:recalled,, +14:u10:pertaining, +14:u01:pertaining, +8:u08:314], +14:u00:pertaining, +8:u07:314], +8:u06:314], +8:u05:314], +8:u04:314], +8:u03:314], +8:u02:314], +13:u14:12.5.5.2., +8:u01:314], +13:u13:12.5.5.2., +8:u00:314], +13:u12:12.5.5.2., +13:u11:12.5.5.2., +12:u08:returns., +13:u10:12.5.5.2., +15:u08:12.5.5.2.1., +12:u07:returns., +12:u06:returns., +15:u07:12.5.5.2.1., +12:u08:concerns, +12:u14:returns., +12:u05:returns., +15:u06:12.5.5.2.1., +12:u13:returns., +15:u14:12.5.5.2.1., +12:u04:returns., +15:u05:12.5.5.2.1., +12:u07:concerns, +12:u12:returns., +15:u13:12.5.5.2.1., +12:u03:returns., +15:u04:12.5.5.2.1., +12:u06:concerns, +12:u11:returns., +15:u12:12.5.5.2.1., +12:u14:concerns, +12:u02:returns., +15:u03:12.5.5.2.1., +12:u05:concerns, +12:u10:returns., +15:u11:12.5.5.2.1., +12:u13:concerns, +12:u01:returns., +15:u02:12.5.5.2.1., +12:u04:concerns, +15:u10:12.5.5.2.1., +12:u12:concerns, +12:u00:returns., +15:u01:12.5.5.2.1., +12:u03:concerns, +12:u11:concerns, +15:u00:12.5.5.2.1., +12:u02:concerns, +12:u10:concerns, +12:u01:concerns, +12:u00:concerns, +17:u08:(lor_stateid;, +17:u07:(lor_stateid;, +8:u08:race, +17:u06:(lor_stateid;, +17:u05:(lor_stateid;, +8:u07:race, +12:u08:precedes, +17:u04:(lor_stateid;, +9:uI2:-,..., +8:u06:race, +11:u08:replies, +17:u03:(lor_stateid;, +8:u14:race, +9:uI1:-,..., +8:u05:race, +12:u07:precedes, +17:u02:(lor_stateid;, +8:u13:race, +9:uI0:-,..., +8:u04:race, +12:u06:precedes, +11:u07:replies, +17:u01:(lor_stateid;, +8:u12:race, +12:u14:precedes, +7:u22:rac, +8:u23:race, +8:u03:race, +12:u05:precedes, +11:u06:replies, +17:u00:(lor_stateid;, +8:u11:race, +12:u13:precedes, +11:u14:replies, +8:u02:race, +12:u04:precedes, +11:u05:replies, +17:u08:12.5.5.2.1.1., +8:u10:race, +12:u12:precedes, +11:u13:replies, +8:u01:race, +12:u03:precedes, +11:u04:replies, +14:u08:Get/Return, +12:u11:precedes, +11:u12:replies, +8:u00:race, +12:u02:precedes, +11:u03:replies, +17:u07:12.5.5.2.1.1., +14:u07:Get/Return, +12:u10:precedes, +11:u11:replies, +12:u01:precedes, +11:u02:replies, +17:u06:12.5.5.2.1.1., +14:u06:Get/Return, +11:u10:replies, +17:u14:12.5.5.2.1.1., +12:u00:precedes, +11:u01:replies, +17:u05:12.5.5.2.1.1., +14:u05:Get/Return, +17:u13:12.5.5.2.1.1., +11:u00:replies, +17:u04:12.5.5.2.1.1., +14:u04:Get/Return, +17:u12:12.5.5.2.1.1., +17:u03:12.5.5.2.1.1., +14:u03:Get/Return, +17:u11:12.5.5.2.1.1., +17:u02:12.5.5.2.1.1., +14:u02:Get/Return, +17:u10:12.5.5.2.1.1., +17:u01:12.5.5.2.1.1., +14:u01:Get/Return, +8:uI2:.,"", +17:u00:12.5.5.2.1.1., +14:u00:Get/Return, +8:uI1:.,"", +8:uI0:.,"", +8:u08:315], +8:u07:315], +8:u06:315], +14:u08:intersects, +8:u05:315], +8:u04:315], +14:u07:intersects, +8:u03:315], +14:u06:intersects, +8:u02:315], +14:u14:intersects, +14:u05:intersects, +8:u01:315], +14:u13:intersects, +14:u04:intersects, +8:u00:315], +14:u12:intersects, +14:u03:intersects, +14:u11:intersects, +14:u02:intersects, +14:u10:intersects, +14:u01:intersects, +14:u00:intersects, +15:u08:compounding, +15:u08:16.2.3.1.2), +15:u07:16.2.3.1.2), +14:u08:LAYOUTGETs, +15:u07:compounding, +18:u08:LAYOUTRETURNs., +15:u06:16.2.3.1.2), +14:u07:LAYOUTGETs, +15:u06:compounding, +15:u05:16.2.3.1.2), +14:u06:LAYOUTGETs, +15:u14:compounding, +11:uI2:....),,, +15:u05:compounding, +18:u07:LAYOUTRETURNs., +13:u08:combining, +15:u04:16.2.3.1.2), +14:u05:LAYOUTGETs, +15:u13:compounding, +11:uI1:....),,, +15:u04:compounding, +18:u06:LAYOUTRETURNs., +15:u03:16.2.3.1.2), +14:u04:LAYOUTGETs, +15:u12:compounding, +18:u14:layoutreturns., +11:uI0:....),,, +15:u03:compounding, +18:u05:LAYOUTRETURNs., +13:u07:combining, +10:u08:order., +15:u02:16.2.3.1.2), +14:u03:LAYOUTGETs, +15:u11:compounding, +18:u13:layoutreturns., +15:u02:compounding, +18:u04:LAYOUTRETURNs., +13:u06:combining, +15:u01:16.2.3.1.2), +14:u02:LAYOUTGETs, +15:u10:compounding, +18:u12:layoutreturns., +13:u14:combining, +15:u01:compounding, +18:u03:LAYOUTRETURNs., +13:u05:combining, +10:u07:order., +15:u00:16.2.3.1.2), +14:u01:LAYOUTGETs, +18:u11:layoutreturns., +13:u13:combining, +15:u00:compounding, +18:u02:LAYOUTRETURNs., +13:u04:combining, +10:u06:order., +14:u00:LAYOUTGETs, +18:u10:layoutreturns., +13:u12:combining, +10:u14:order., +18:u01:LAYOUTRETURNs., +13:u03:combining, +10:u05:order., +17:u08:12.5.5.2.1.2., +13:u11:combining, +10:u13:order., +18:u00:LAYOUTRETURNs., +13:u02:combining, +10:u04:order., +12:u08:Consider, +13:u10:combining, +10:u12:order., +13:u01:combining, +10:u03:order., +17:u07:12.5.5.2.1.2., +10:u11:order., +13:u00:combining, +10:u02:order., +17:u06:12.5.5.2.1.2., +12:u07:Consider, +10:u10:order., +17:u14:12.5.5.2.1.2., +10:u01:order., +17:u05:12.5.5.2.1.2., +12:u06:Consider, +18:u08:possibilities,, +17:u13:12.5.5.2.1.2., +10:u00:order., +17:u04:12.5.5.2.1.2., +12:u05:Consider, +17:u12:12.5.5.2.1.2., +17:u03:12.5.5.2.1.2., +12:u04:Consider, +18:u07:possibilities,, +17:u11:12.5.5.2.1.2., +17:u02:12.5.5.2.1.2., +12:u03:Consider, +18:u06:possibilities,, +17:u10:12.5.5.2.1.2., +18:u14:possibilities,, +17:u01:12.5.5.2.1.2., +12:u02:Consider, +18:u05:possibilities,, +18:u13:possibilities,, +17:u00:12.5.5.2.1.2., +12:u01:Consider, +18:u04:possibilities,, +18:u12:possibilities,, +12:u00:Consider, +18:u03:possibilities,, +18:u11:possibilities,, +18:u02:possibilities,, +18:u10:possibilities,, +18:u01:possibilities,, +18:u00:possibilities,, +10:u14:arrive, +10:u13:arrive, +10:u12:arrive, +8:u23:arri, +10:u11:arrive, +8:u08:316], +10:u10:arrive, +8:u07:316], +8:u06:316], +13:u08:recorded., +8:u05:316], +10:u08:cases., +8:u04:316], +13:u07:recorded., +8:u03:316], +13:u06:recorded., +10:u07:cases., +8:u02:316], +13:u14:recorded., +13:u05:recorded., +10:u06:cases., +19:u08:NFS4ERR_DELAY)., +8:u01:316], +13:u13:recorded., +10:u14:cases., +13:u04:recorded., +10:u05:cases., +8:u00:316], +13:u12:recorded., +10:u13:cases., +13:u03:recorded., +10:u04:cases., +19:u07:NFS4ERR_DELAY)., +13:u11:recorded., +10:u12:cases., +13:u02:recorded., +10:u03:cases., +19:u06:NFS4ERR_DELAY)., +13:u10:recorded., +10:u11:cases., +19:u14:nfs4err_delay)., +13:u01:recorded., +10:u02:cases., +19:u05:NFS4ERR_DELAY)., +10:u10:cases., +19:u13:nfs4err_delay)., +13:u00:recorded., +10:u01:cases., +19:u04:NFS4ERR_DELAY)., +19:u12:nfs4err_delay)., +10:u00:cases., +19:u03:NFS4ERR_DELAY)., +19:u11:nfs4err_delay)., +19:u02:NFS4ERR_DELAY)., +19:u10:nfs4err_delay)., +19:u01:NFS4ERR_DELAY)., +19:u00:NFS4ERR_DELAY)., +17:u08:12.5.5.2.1.3., +17:u07:12.5.5.2.1.3., +17:u06:12.5.5.2.1.3., +15:u08:overlapping, +17:u14:12.5.5.2.1.3., +17:u05:12.5.5.2.1.3., +17:u13:12.5.5.2.1.3., +17:u04:12.5.5.2.1.3., +15:u07:overlapping, +17:u12:12.5.5.2.1.3., +17:u03:12.5.5.2.1.3., +15:u06:overlapping, +17:u11:12.5.5.2.1.3., +15:u14:overlapping, +17:u02:12.5.5.2.1.3., +15:u05:overlapping, +17:u10:12.5.5.2.1.3., +15:u13:overlapping, +17:u01:12.5.5.2.1.3., +15:u04:overlapping, +15:u12:overlapping, +17:u00:12.5.5.2.1.3., +15:u03:overlapping, +15:u11:overlapping, +15:u02:overlapping, +15:u10:overlapping, +15:u01:overlapping, +15:u00:overlapping, +20:u08:CB_LAYOUTRECALL,, +20:u07:CB_LAYOUTRECALL,, +20:u06:CB_LAYOUTRECALL,, +20:u14:cb_layoutrecall,, +20:u05:CB_LAYOUTRECALL,, +20:u13:cb_layoutrecall,, +20:u04:CB_LAYOUTRECALL,, +20:u12:cb_layoutrecall,, +20:u03:CB_LAYOUTRECALL,, +20:u11:cb_layoutrecall,, +20:u02:CB_LAYOUTRECALL,, +20:u10:cb_layoutrecall,, +20:u01:CB_LAYOUTRECALL,, +13:u08:response,, +20:u00:CB_LAYOUTRECALL,, +13:u07:response,, +13:u06:response,, +13:u14:response,, +13:u05:response,, +13:u13:response,, +13:u04:response,, +13:u12:response,, +13:u03:response,, +8:u08:317], +13:u11:response,, +13:u02:response,, +8:u07:317], +13:u10:response,, +13:u01:response,, +8:u06:317], +13:u00:response,, +8:u05:317], +8:u04:317], +17:u08:12.5.5.2.1.4., +8:u03:317], +27:u08:NFS4ERR_RETURNCONFLICT., +8:u02:317], +27:u07:NFS4ERR_RETURNCONFLICT., +14:u08:Wraparound, +17:u07:12.5.5.2.1.4., +8:u01:317], +27:u06:NFS4ERR_RETURNCONFLICT., +14:u07:Wraparound, +17:u06:12.5.5.2.1.4., +13:u08:stateid's, +8:u00:317], +27:u05:NFS4ERR_RETURNCONFLICT., +14:u06:Wraparound, +17:u14:12.5.5.2.1.4., +17:u05:12.5.5.2.1.4., +27:u04:NFS4ERR_RETURNCONFLICT., +14:u05:Wraparound, +17:u13:12.5.5.2.1.4., +17:u04:12.5.5.2.1.4., +13:u07:stateid's, +27:u03:NFS4ERR_RETURNCONFLICT., +14:u04:Wraparound, +17:u12:12.5.5.2.1.4., +17:u03:12.5.5.2.1.4., +13:u06:stateid's, +27:u02:NFS4ERR_RETURNCONFLICT., +14:u03:Wraparound, +17:u11:12.5.5.2.1.4., +13:u14:stateid's, +17:u02:12.5.5.2.1.4., +13:u05:stateid's, +27:u01:NFS4ERR_RETURNCONFLICT., +14:u02:Wraparound, +17:u10:12.5.5.2.1.4., +13:u13:stateid's, +8:uI2:'""., +17:u01:12.5.5.2.1.4., +13:u04:stateid's, +27:u00:NFS4ERR_RETURNCONFLICT., +14:u01:Wraparound, +13:u12:stateid's, +8:uI1:'""., +17:u00:12.5.5.2.1.4., +13:u03:stateid's, +14:u00:Wraparound, +12:u08:2.10.6.1, +13:u11:stateid's, +8:uI0:'""., +13:u02:stateid's, +12:u07:2.10.6.1, +13:u10:stateid's, +13:u01:stateid's, +15:u08:0x00000001., +12:u06:2.10.6.1, +13:u00:stateid's, +12:u05:2.10.6.1, +11:uI2:...'""., +15:u07:0x00000001., +12:u04:2.10.6.1, +11:uI1:...'""., +15:u06:0x00000001., +8:u08:Just, +12:u03:2.10.6.1, +15:u14:0x00000001., +11:uI0:...'""., +15:u05:0x00000001., +12:u02:2.10.6.1, +15:u13:0x00000001., +15:u04:0x00000001., +8:u07:Just, +12:u01:2.10.6.1, +10:u08:usage,, +15:u12:0x00000001., +7:u22:0x0, +8:u23:0x00, +15:u03:0x00000001., +8:u06:Just, +12:u00:2.10.6.1, +10:u07:usage,, +15:u11:0x00000001., +15:u02:0x00000001., +8:u05:Just, +15:u08:parallelism, +10:u06:usage,, +15:u10:0x00000001., +15:u01:0x00000001., +8:u04:Just, +10:u05:usage,, +7:u22:Jus, +8:u23:Just, +11:uI2:,.....,, +15:u00:0x00000001., +8:u03:Just, +15:u07:parallelism, +15:u08:definition,, +10:u04:usage,, +11:uI1:,.....,, +8:u02:Just, +15:u06:parallelism, +10:u03:usage,, +15:u14:parallelism, +11:uI0:,.....,, +8:u01:Just, +15:u05:parallelism, +15:u07:definition,, +9:u08:spans, +10:u02:usage,, +15:u13:parallelism, +8:u00:Just, +15:u04:parallelism, +15:u06:definition,, +10:u01:usage,, +15:u12:parallelism, +15:u14:definition,, +15:u03:parallelism, +15:u05:definition,, +9:u07:spans, +10:u00:usage,, +15:u11:parallelism, +15:u13:definition,, +15:u02:parallelism, +15:u04:definition,, +9:u06:spans, +15:u10:parallelism, +15:u12:definition,, +9:u14:spans, +15:u01:parallelism, +15:u03:definition,, +9:u05:spans, +15:u11:definition,, +9:u13:spans, +9:u14:past., +15:u00:parallelism, +15:u02:definition,, +9:u04:spans, +15:u08:PAST_SEQID., +15:u10:definition,, +9:u12:spans, +9:u13:past., +9:uI2:.,'"", +15:u01:definition,, +9:u03:spans, +10:u08:holds:, +15:u07:PAST_SEQID., +9:u11:spans, +9:u12:past., +10:u14:lowest, +9:uI1:.,'"", +15:u00:definition,, +9:u02:spans, +14:u08:following,, +15:u06:PAST_SEQID., +21:u08:VALID_SEQID_RANGE, +9:u10:spans, +9:u11:past., +10:u13:lowest, +9:uI0:.,'"", +9:u01:spans, +10:u07:holds:, +15:u05:PAST_SEQID., +21:u07:VALID_SEQID_RANGE, +9:u10:past., +10:u12:lowest, +9:u00:spans, +10:u06:holds:, +14:u07:following,, +15:u04:PAST_SEQID., +21:u06:VALID_SEQID_RANGE, +10:u11:lowest, +10:u14:holds:, +10:u05:holds:, +14:u06:following,, +15:u03:PAST_SEQID., +21:u05:VALID_SEQID_RANGE, +10:u10:lowest, +10:u13:holds:, +14:u14:following,, +10:u04:holds:, +14:u05:following,, +24:u08:(ca_maxoperations(i), +15:u02:PAST_SEQID., +21:u04:VALID_SEQID_RANGE, +7:u08:as:, +10:u12:holds:, +14:u13:following,, +10:u03:holds:, +14:u04:following,, +15:u01:PAST_SEQID., +21:u03:VALID_SEQID_RANGE, +7:u07:as:, +8:u08:-1),, +10:u11:holds:, +14:u12:following,, +10:u02:holds:, +14:u03:following,, +24:u07:(ca_maxoperations(i), +15:u00:PAST_SEQID., +21:u02:VALID_SEQID_RANGE, +7:u06:as:, +8:u07:-1),, +10:u10:holds:, +14:u11:following,, +10:u01:holds:, +14:u02:following,, +24:u06:(ca_maxoperations(i), +6:u08:1", +21:u01:VALID_SEQID_RANGE, +7:u05:as:, +8:u06:-1),, +14:u10:following,, +24:u14:(ca_maxoperations(i), +10:u00:holds:, +14:u01:following,, +24:u05:(ca_maxoperations(i), +21:u00:VALID_SEQID_RANGE, +7:u04:as:, +8:u05:-1),, +24:u13:(ca_maxoperations(i), +10:uI2:(()-),, +14:u00:following,, +24:u04:(ca_maxoperations(i), +6:u07:1", +7:u03:as:, +8:u04:-1),, +24:u12:(ca_maxoperations(i), +7:u22:(ca, +8:u23:(ca_, +10:uI1:(()-),, +24:u03:(ca_maxoperations(i), +6:u06:1", +7:u02:as:, +8:u03:-1),, +24:u11:(ca_maxoperations(i), +6:u14:1", +10:uI0:(()-),, +8:uI2:'."-, +24:u02:(ca_maxoperations(i), +6:u05:1", +7:u01:as:, +8:u02:-1),, +24:u10:(ca_maxoperations(i), +6:u13:1", +8:uI1:'."-, +24:u01:(ca_maxoperations(i), +6:u04:1", +7:u00:as:, +8:u01:-1),, +6:u12:1", +6:u21:1", +6:u22:1", +6:u23:1", +8:uI0:'."-, +24:u00:(ca_maxoperations(i), +6:u03:1", +8:u00:-1),, +6:u11:1", +8:uI2:(-)(, +6:u02:1", +8:u08:318], +6:u10:1", +8:u23:maxi, +8:uI1:(-)(, +8:uI2:"")., +6:u01:1", +8:u07:318], +8:uI0:(-)(, +8:uI1:"")., +6:u00:1", +8:u06:318], +8:uI0:"")., +8:u05:318], +8:u04:318], +8:u03:318], +22:u08:VALID_SEQID_RANGE., +8:u02:318], +8:u01:318], +22:u07:VALID_SEQID_RANGE., +8:u00:318], +22:u06:VALID_SEQID_RANGE., +22:u14:valid_seqid_range., +22:u05:VALID_SEQID_RANGE., +22:u13:valid_seqid_range., +22:u04:VALID_SEQID_RANGE., +17:u08:12.5.5.2.1.5., +22:u12:valid_seqid_range., +6:u21:VA, +7:u22:VAL, +8:u23:VALI, +22:u03:VALID_SEQID_RANGE., +8:u08:Bulk, +22:u11:valid_seqid_range., +22:u02:VALID_SEQID_RANGE., +17:u07:12.5.5.2.1.5., +8:u07:Bulk, +22:u10:valid_seqid_range., +22:u01:VALID_SEQID_RANGE., +17:u06:12.5.5.2.1.5., +23:u08:LAYOUTRETURN4_FSID), +8:u06:Bulk, +17:u14:12.5.5.2.1.5., +22:u00:VALID_SEQID_RANGE., +17:u05:12.5.5.2.1.5., +23:u08:LAYOUTRETURN4_ALL)., +8:u05:Bulk, +17:u13:12.5.5.2.1.5., +17:u04:12.5.5.2.1.5., +23:u07:LAYOUTRETURN4_FSID), +9:u08:races, +8:u04:Bulk, +17:u12:12.5.5.2.1.5., +17:u03:12.5.5.2.1.5., +23:u06:LAYOUTRETURN4_FSID), +23:u07:LAYOUTRETURN4_ALL)., +8:u08:bulk, +8:u03:Bulk, +17:u11:12.5.5.2.1.5., +23:u14:layoutreturn4_fsid), +17:u02:12.5.5.2.1.5., +23:u05:LAYOUTRETURN4_FSID), +23:u06:LAYOUTRETURN4_ALL)., +9:u07:races, +8:u02:Bulk, +17:u10:12.5.5.2.1.5., +23:u13:layoutreturn4_fsid), +23:u14:layoutreturn4_all)., +17:u01:12.5.5.2.1.5., +23:u04:LAYOUTRETURN4_FSID), +23:u05:LAYOUTRETURN4_ALL)., +9:u06:races, +8:u07:bulk, +8:u01:Bulk, +23:u12:layoutreturn4_fsid), +23:u13:layoutreturn4_all)., +9:u14:races, +9:uI2:)."",, +17:u00:12.5.5.2.1.5., +23:u03:LAYOUTRETURN4_FSID), +23:u04:LAYOUTRETURN4_ALL)., +9:u05:races, +8:u06:bulk, +17:u08:LAYOUTRETURN,, +8:u00:Bulk, +23:u11:layoutreturn4_fsid), +23:u12:layoutreturn4_all)., +9:u13:races, +8:u14:bulk, +9:uI1:)."",, +23:u02:LAYOUTRETURN4_FSID), +23:u03:LAYOUTRETURN4_ALL)., +9:u04:races, +8:u05:bulk, +18:u08:NFS4ERR_DELAY., +23:u10:layoutreturn4_fsid), +23:u11:layoutreturn4_all)., +9:u12:races, +8:u13:bulk, +9:uI0:)."",, +23:u01:LAYOUTRETURN4_FSID), +23:u02:LAYOUTRETURN4_ALL)., +9:u03:races, +8:u04:bulk, +17:u07:LAYOUTRETURN,, +23:u10:layoutreturn4_all)., +9:u11:races, +8:u12:bulk, +7:u22:bul, +8:u23:bulk, +23:u00:LAYOUTRETURN4_FSID), +23:u01:LAYOUTRETURN4_ALL)., +9:u02:races, +8:u03:bulk, +17:u06:LAYOUTRETURN,, +18:u07:NFS4ERR_DELAY., +27:u08:NFS4ERR_RECALLCONFLICT., +9:u10:races, +8:u11:bulk, +17:u14:layoutreturn,, +23:u00:LAYOUTRETURN4_ALL)., +9:u01:races, +8:u02:bulk, +17:u05:LAYOUTRETURN,, +18:u06:NFS4ERR_DELAY., +8:u10:bulk, +17:u13:layoutreturn,, +18:u14:nfs4err_delay., +9:u00:races, +8:u01:bulk, +17:u04:LAYOUTRETURN,, +18:u05:NFS4ERR_DELAY., +27:u07:NFS4ERR_RECALLCONFLICT., +17:u12:layoutreturn,, +18:u13:nfs4err_delay., +8:u00:bulk, +17:u03:LAYOUTRETURN,, +18:u04:NFS4ERR_DELAY., +27:u06:NFS4ERR_RECALLCONFLICT., +17:u11:layoutreturn,, +18:u12:nfs4err_delay., +27:u14:nfs4err_recallconflict., +17:u02:LAYOUTRETURN,, +18:u03:NFS4ERR_DELAY., +27:u05:NFS4ERR_RECALLCONFLICT., +17:u10:layoutreturn,, +18:u11:nfs4err_delay., +27:u13:nfs4err_recallconflict., +17:u01:LAYOUTRETURN,, +18:u02:NFS4ERR_DELAY., +27:u04:NFS4ERR_RECALLCONFLICT., +18:u10:nfs4err_delay., +27:u12:nfs4err_recallconflict., +11:u14:recall,, +17:u00:LAYOUTRETURN,, +18:u01:NFS4ERR_DELAY., +27:u03:NFS4ERR_RECALLCONFLICT., +27:u11:nfs4err_recallconflict., +11:u13:recall,, +18:u00:NFS4ERR_DELAY., +27:u02:NFS4ERR_RECALLCONFLICT., +27:u10:nfs4err_recallconflict., +11:u12:recall,, +27:u01:NFS4ERR_RECALLCONFLICT., +22:u08:LAYOUTRECALL4_ALL,, +11:u11:recall,, +27:u00:NFS4ERR_RECALLCONFLICT., +9:u08:sent,, +22:u07:LAYOUTRECALL4_ALL,, +11:u10:recall,, +22:u06:LAYOUTRECALL4_ALL,, +9:u07:sent,, +22:u05:LAYOUTRECALL4_ALL,, +9:u06:sent,, +22:u04:LAYOUTRECALL4_ALL,, +9:u14:sent,, +9:u05:sent,, +22:u03:LAYOUTRECALL4_ALL,, +9:u13:sent,, +9:u04:sent,, +22:u02:LAYOUTRECALL4_ALL,, +9:u12:sent,, +9:u03:sent,, +22:u01:LAYOUTRECALL4_ALL,, +9:u11:sent,, +9:u02:sent,, +22:u00:LAYOUTRECALL4_ALL,, +9:u10:sent,, +9:u01:sent,, +9:u00:sent,, +22:u08:LAYOUTRETURN4_FSID, +22:u07:LAYOUTRETURN4_FSID, +22:u06:LAYOUTRETURN4_FSID, +17:u08:Subsequently,, +22:u14:layoutreturn4_fsid, +22:u05:LAYOUTRETURN4_FSID, +22:u13:layoutreturn4_fsid, +22:u04:LAYOUTRETURN4_FSID, +17:u07:Subsequently,, +22:u12:layoutreturn4_fsid, +22:u03:LAYOUTRETURN4_FSID, +17:u06:Subsequently,, +22:u11:layoutreturn4_fsid, +22:u02:LAYOUTRETURN4_FSID, +17:u05:Subsequently,, +22:u10:layoutreturn4_fsid, +22:u01:LAYOUTRETURN4_FSID, +17:u04:Subsequently,, +7:u22:Sub, +8:u23:Subs, +22:u00:LAYOUTRETURN4_FSID, +17:u03:Subsequently,, +8:u08:319], +17:u02:Subsequently,, +8:u07:319], +17:u01:Subsequently,, +8:u06:319], +17:u00:Subsequently,, +8:u05:319], +14:u08:LAYOUTGET,, +8:u04:319], +8:u03:319], +14:u07:LAYOUTGET,, +8:u02:319], +14:u06:LAYOUTGET,, +8:u01:319], +14:u14:layoutget,, +14:u05:LAYOUTGET,, +8:u00:319], +14:u13:layoutget,, +14:u04:LAYOUTGET,, +11:u08:12.5.6., +14:u12:layoutget,, +14:u03:LAYOUTGET,, +12:u08:Revoking, +14:u11:layoutget,, +14:u02:LAYOUTGET,, +11:u07:12.5.6., +12:u07:Revoking, +14:u10:layoutget,, +14:u01:LAYOUTGET,, +11:u06:12.5.6., +12:u06:Revoking, +11:u14:12.5.6., +14:u00:LAYOUTGET,, +11:u05:12.5.6., +12:u05:Revoking, +11:u13:12.5.6., +11:u04:12.5.6., +12:u04:Revoking, +11:u12:12.5.6., +11:u03:12.5.6., +11:u08:12.5.7., +12:u03:Revoking, +11:u11:12.5.6., +11:u02:12.5.6., +16:u08:Asynchronous, +12:u02:Revoking, +11:u10:12.5.6., +11:u01:12.5.6., +11:u07:12.5.7., +12:u01:Revoking, +11:u00:12.5.6., +11:u06:12.5.7., +16:u07:Asynchronous, +18:u08:asynchronously, +12:u00:Revoking, +10:u08:lazily, +11:u14:12.5.7., +11:u05:12.5.7., +16:u06:Asynchronous, +10:u07:lazily, +11:u13:12.5.7., +16:u14:asynchronous, +11:u04:12.5.7., +16:u05:Asynchronous, +18:u07:asynchronously, +9:u08:newly, +10:u06:lazily, +11:u12:12.5.7., +16:u13:asynchronous, +14:u14:propagated, +11:u03:12.5.7., +16:u04:Asynchronous, +18:u06:asynchronously, +10:u05:lazily, +11:u11:12.5.7., +16:u12:asynchronous, +14:u13:propagated, +18:u14:asynchronously, +7:u22:Asy, +8:u23:Asyn, +11:u02:12.5.7., +16:u03:Asynchronous, +18:u05:asynchronously, +9:u07:newly, +10:u04:lazily, +11:u10:12.5.7., +16:u11:asynchronous, +14:u12:propagated, +18:u13:asynchronously, +11:u01:12.5.7., +16:u02:Asynchronous, +18:u04:asynchronously, +9:u06:newly, +10:u03:lazily, +16:u10:asynchronous, +14:u11:propagated, +18:u12:asynchronously, +9:u14:newly, +7:u22:asy, +8:u23:asyn, +11:u00:12.5.7., +16:u01:Asynchronous, +18:u03:asynchronously, +9:u05:newly, +10:u02:lazily, +14:u10:propagated, +18:u11:asynchronously, +9:u13:newly, +16:u00:Asynchronous, +18:u02:asynchronously, +9:u04:newly, +8:u08:give, +10:u01:lazily, +10:u08:data),, +18:u10:asynchronously, +9:u12:newly, +8:u23:newl, +18:u01:asynchronously, +9:u03:newly, +10:u00:lazily, +10:u07:data),, +9:u11:newly, +14:u14:completion, +18:u00:asynchronously, +9:u02:newly, +8:u07:give, +10:u06:data),, +9:u10:newly, +14:u13:completion, +9:u01:newly, +8:u06:give, +10:u05:data),, +14:u12:completion, +8:u14:give, +9:u00:newly, +8:u05:give, +10:u04:data),, +9:u08:reads, +14:u11:completion, +8:u13:give, +8:u04:give, +10:u03:data),, +9:u07:reads, +14:u10:completion, +8:u12:give, +8:u03:give, +10:u02:data),, +9:u06:reads, +8:u11:give, +8:u02:give, +10:u01:data),, +9:u05:reads, +8:u10:give, +8:u01:give, +10:u00:data),, +9:u04:reads, +8:u00:give, +9:u03:reads, +9:u02:reads, +9:u01:reads, +9:u00:reads, +10:uI2:.(..)., +8:u08:came, +10:uI1:.(..)., +10:uI0:.(..)., +8:u07:came, +8:u06:came, +8:u14:came, +8:u05:came, +8:u13:came, +8:u04:came, +8:u12:came, +8:u23:came, +8:u03:came, +8:u11:came, +8:u02:came, +8:u08:320], +8:u10:came, +8:u01:came, +8:u07:320], +8:u00:came, +8:u06:320], +8:u05:320], +8:u04:320], +8:u03:320], +8:u02:320], +8:u01:320], +9:u14:pnfs,, +8:u00:320], +9:u13:pnfs,, +15:u08:createmode4, +9:u12:pnfs,, +15:u08:persistent,, +9:u11:pnfs,, +15:u07:createmode4, +9:u10:pnfs,, +15:u06:createmode4, +15:u07:persistent,, +15:u14:createmode4, +15:u05:createmode4, +15:u06:persistent,, +15:u13:createmode4, +15:u14:persistent,, +15:u04:createmode4, +15:u05:persistent,, +15:u12:createmode4, +15:u13:persistent,, +15:u03:createmode4, +15:u04:persistent,, +15:u11:createmode4, +15:u12:persistent,, +15:u02:createmode4, +15:u03:persistent,, +15:u10:createmode4, +15:u11:persistent,, +15:u01:createmode4, +15:u02:persistent,, +15:u10:persistent,, +15:u14:layout_hint, +15:u00:createmode4, +15:u01:persistent,, +15:u13:layout_hint, +15:u00:persistent,, +15:u12:layout_hint, +8:u08:10)., +15:u11:layout_hint, +16:u14:exclusive4_1, +8:u07:10)., +15:u10:layout_hint, +16:u13:exclusive4_1, +8:u06:10)., +16:u12:exclusive4_1, +8:u23:EXCL, +8:u05:10)., +16:u11:exclusive4_1, +8:u04:10)., +16:u10:exclusive4_1, +8:u03:10)., +8:u02:10)., +8:u01:10)., +8:u00:10)., +12:u08:writing,, +9:u14:wants, +9:u13:wants, +12:u07:writing,, +9:u12:wants, +7:u22:wan, +8:u23:want, +12:u06:writing,, +9:u11:wants, +12:u14:writing,, +12:u05:writing,, +9:u10:wants, +12:u13:writing,, +12:u04:writing,, +12:u12:writing,, +12:u03:writing,, +12:u11:writing,, +12:u02:writing,, +12:u10:writing,, +12:u01:writing,, +12:u00:writing,, +15:u14:address(es), +15:u13:address(es), +8:uI2:()./, +8:u08:321], +15:u12:address(es), +8:uI1:()./, +8:u07:321], +15:u11:address(es), +8:uI0:()./, +8:u06:321], +15:u10:address(es), +8:u05:321], +8:u04:321], +8:u03:321], +9:u08:send,, +8:u02:321], +9:u07:send,, +8:u01:321], +9:u06:send,, +8:u00:321], +9:u05:send,, +9:u04:send,, +9:u03:send,, +9:u02:send,, +9:u01:send,, +9:u00:send,, +11:u14:12.7.1., +11:u13:12.7.1., +11:u12:12.7.1., +11:u11:12.7.1., +11:u10:12.7.1., +12:u08:revival,, +12:u14:layouts,, +12:u07:revival,, +12:u13:layouts,, +10:u14:expiry, +12:u06:revival,, +12:u12:layouts,, +10:u13:expiry, +12:u14:revival,, +12:u05:revival,, +11:u08:contact, +12:u11:layouts,, +10:u12:expiry, +12:u13:revival,, +12:u04:revival,, +11:u07:contact, +12:u10:layouts,, +10:u11:expiry, +12:u12:revival,, +9:u14:takes, +12:u03:revival,, +11:u06:contact, +10:u10:expiry, +12:u11:revival,, +9:u13:takes, +12:u02:revival,, +11:u05:contact, +14:u08:different., +12:u10:revival,, +9:u12:takes, +12:u01:revival,, +13:u08:scenario,, +11:u04:contact, +14:u07:different., +9:u11:takes, +12:u00:revival,, +11:u03:contact, +14:u06:different., +9:u10:takes, +13:u07:scenario,, +11:u02:contact, +14:u05:different., +13:u06:scenario,, +11:u01:contact, +14:u04:different., +13:u14:scenario,, +13:u05:scenario,, +11:u08:desired, +11:u00:contact, +14:u03:different., +13:u13:scenario,, +13:u04:scenario,, +14:u02:different., +13:u12:scenario,, +13:u03:scenario,, +11:u07:desired, +14:u01:different., +13:u11:scenario,, +13:u02:scenario,, +11:u06:desired, +14:u00:different., +13:u10:scenario,, +11:u14:desired, +13:u01:scenario,, +11:u05:desired, +8:u08:322], +11:u13:desired, +13:u00:scenario,, +11:u04:desired, +8:u07:322], +11:u12:desired, +11:u03:desired, +8:u06:322], +11:u11:desired, +11:u02:desired, +11:u08:12.7.2., +8:u05:322], +11:u10:desired, +11:u01:desired, +8:u04:322], +11:u08:Dealing, +11:u00:desired, +11:u07:12.7.2., +8:u03:322], +11:u07:Dealing, +11:u06:12.7.2., +8:u02:322], +11:u06:Dealing, +11:u14:12.7.2., +11:u05:12.7.2., +8:u01:322], +11:u05:Dealing, +11:u13:12.7.2., +11:u04:12.7.2., +42:u08:SEQ4_STATUS_EXPIRED_ALL_STATE_REVOKED,, +8:u00:322], +11:u04:Dealing, +11:u12:12.7.2., +11:u03:12.7.2., +11:u03:Dealing, +11:u11:12.7.2., +11:u02:12.7.2., +42:u07:SEQ4_STATUS_EXPIRED_ALL_STATE_REVOKED,, +35:u08:SEQ4_STATUS_ADMIN_STATE_REVOKED, +11:u02:Dealing, +11:u10:12.7.2., +11:u01:12.7.2., +42:u06:SEQ4_STATUS_EXPIRED_ALL_STATE_REVOKED,, +11:u01:Dealing, +42:u14:seq4_status_expired_all_state_revoked,, +11:u00:12.7.2., +42:u05:SEQ4_STATUS_EXPIRED_ALL_STATE_REVOKED,, +35:u07:SEQ4_STATUS_ADMIN_STATE_REVOKED, +11:u00:Dealing, +42:u13:seq4_status_expired_all_state_revoked,, +42:u04:SEQ4_STATUS_EXPIRED_ALL_STATE_REVOKED,, +35:u06:SEQ4_STATUS_ADMIN_STATE_REVOKED, +42:u12:seq4_status_expired_all_state_revoked,, +35:u14:seq4_status_admin_state_revoked, +42:u03:SEQ4_STATUS_EXPIRED_ALL_STATE_REVOKED,, +35:u05:SEQ4_STATUS_ADMIN_STATE_REVOKED, +42:u11:seq4_status_expired_all_state_revoked,, +35:u13:seq4_status_admin_state_revoked, +42:u02:SEQ4_STATUS_EXPIRED_ALL_STATE_REVOKED,, +35:u04:SEQ4_STATUS_ADMIN_STATE_REVOKED, +42:u10:seq4_status_expired_all_state_revoked,, +35:u12:seq4_status_admin_state_revoked, +42:u01:SEQ4_STATUS_EXPIRED_ALL_STATE_REVOKED,, +35:u03:SEQ4_STATUS_ADMIN_STATE_REVOKED, +35:u11:seq4_status_admin_state_revoked, +42:u00:SEQ4_STATUS_EXPIRED_ALL_STATE_REVOKED,, +35:u02:SEQ4_STATUS_ADMIN_STATE_REVOKED, +35:u10:seq4_status_admin_state_revoked, +35:u01:SEQ4_STATUS_ADMIN_STATE_REVOKED, +8:uI2:,.,-, +35:u00:SEQ4_STATUS_ADMIN_STATE_REVOKED, +8:uI1:,.,-, +38:u08:SEQ4_STATUS_RESTART_RECLAIM_NEEDED, +8:uI0:,.,-, +23:u08:NFS4ERR_BAD_SESSION, +38:u07:SEQ4_STATUS_RESTART_RECLAIM_NEEDED, +28:u08:NFS4ERR_STALE_CLIENTID),, +38:u06:SEQ4_STATUS_RESTART_RECLAIM_NEEDED, +23:u07:NFS4ERR_BAD_SESSION, +38:u14:seq4_status_restart_reclaim_needed, +38:u05:SEQ4_STATUS_RESTART_RECLAIM_NEEDED, +23:u06:NFS4ERR_BAD_SESSION, +28:u07:NFS4ERR_STALE_CLIENTID),, +38:u13:seq4_status_restart_reclaim_needed, +23:u14:nfs4err_bad_session, +38:u04:SEQ4_STATUS_RESTART_RECLAIM_NEEDED, +23:u05:NFS4ERR_BAD_SESSION, +28:u06:NFS4ERR_STALE_CLIENTID),, +11:u08:12.7.4., +38:u12:seq4_status_restart_reclaim_needed, +23:u13:nfs4err_bad_session, +28:u14:nfs4err_stale_clientid),, +38:u03:SEQ4_STATUS_RESTART_RECLAIM_NEEDED, +23:u04:NFS4ERR_BAD_SESSION, +28:u05:NFS4ERR_STALE_CLIENTID),, +11:u07:12.7.4., +38:u11:seq4_status_restart_reclaim_needed, +23:u12:nfs4err_bad_session, +28:u13:nfs4err_stale_clientid),, +38:u02:SEQ4_STATUS_RESTART_RECLAIM_NEEDED, +23:u03:NFS4ERR_BAD_SESSION, +28:u04:NFS4ERR_STALE_CLIENTID),, +11:u06:12.7.4., +38:u10:seq4_status_restart_reclaim_needed, +23:u11:nfs4err_bad_session, +28:u12:nfs4err_stale_clientid),, +38:u01:SEQ4_STATUS_RESTART_RECLAIM_NEEDED, +23:u02:NFS4ERR_BAD_SESSION, +28:u03:NFS4ERR_STALE_CLIENTID),, +11:u05:12.7.4., +23:u10:nfs4err_bad_session, +28:u11:nfs4err_stale_clientid),, +38:u00:SEQ4_STATUS_RESTART_RECLAIM_NEEDED, +23:u01:NFS4ERR_BAD_SESSION, +28:u02:NFS4ERR_STALE_CLIENTID),, +11:u04:12.7.4., +28:u10:nfs4err_stale_clientid),, +23:u00:NFS4ERR_BAD_SESSION, +28:u01:NFS4ERR_STALE_CLIENTID),, +11:u03:12.7.4., +28:u00:NFS4ERR_STALE_CLIENTID),, +11:u02:12.7.4., +9:uI2:....,, +11:u01:12.7.4., +9:uI1:....,, +11:u00:12.7.4., +9:uI0:....,, +11:u08:12.7.3., +11:u07:12.7.3., +11:u06:12.7.3., +11:u05:12.7.3., +8:u08:323], +11:u04:12.7.3., +8:u07:323], +11:u03:12.7.3., +8:u06:323], +11:u02:12.7.3., +8:u05:323], +11:u01:12.7.3., +8:u04:323], +11:u00:12.7.3., +8:u03:323], +8:u02:323], +11:u14:12.7.3., +8:u01:323], +11:u13:12.7.3., +8:u00:323], +11:u12:12.7.3., +11:u11:12.7.3., +11:u10:12.7.3., +11:u08:fencing, +6:uI2:'), +11:u07:fencing, +6:uI1:'), +11:u06:fencing, +11:u14:fencing, +6:uI0:'), +11:u05:fencing, +11:u13:fencing, +14:u14:preventing, +11:u04:fencing, +11:u12:fencing, +14:u13:preventing, +7:u22:fen, +8:u23:fenc, +11:u03:fencing, +11:u11:fencing, +14:u12:preventing, +11:u02:fencing, +11:u10:fencing, +14:u11:preventing, +11:u01:fencing, +14:u10:preventing, +11:u00:fencing, +11:u14:12.7.4., +8:u08:stop, +11:u13:12.7.4., +11:u12:12.7.4., +8:u07:stop, +11:u11:12.7.4., +8:u06:stop, +11:u10:12.7.4., +8:u14:stop, +8:u05:stop, +8:u13:stop, +8:u04:stop, +8:u12:stop, +8:u23:stop, +8:u03:stop, +8:u11:stop, +14:u14:committing, +8:u02:stop, +8:u10:stop, +14:u13:committing, +8:u01:stop, +14:u12:committing, +8:u00:stop, +14:u11:committing, +14:u10:committing, +12:u14:devices., +12:u13:devices., +12:u12:devices., +12:u11:devices., +10:u08:point., +12:u10:devices., +10:u07:point., +10:u06:point., +10:u14:point., +10:u05:point., +8:u08:324], +10:u13:point., +10:u04:point., +8:u07:324], +10:u12:point., +10:u03:point., +8:u06:324], +10:u11:point., +10:u02:point., +8:u05:324], +10:u10:point., +10:u01:point., +8:u04:324], +10:u00:point., +8:u03:324], +8:u02:324], +8:u01:324], +8:u00:324], +9:u14:match, +9:u13:match, +9:u12:match, +9:u11:match, +9:u10:match, +16:u08:loca_reclaim, +16:u07:loca_reclaim, +9:u08:TRUE., +16:u06:loca_reclaim, +9:u07:TRUE., +16:u14:loca_reclaim, +16:u05:loca_reclaim, +9:u06:TRUE., +16:u13:loca_reclaim, +9:uI2:'(..), +16:u04:loca_reclaim, +9:u05:TRUE., +16:u12:loca_reclaim, +9:uI1:'(..), +16:u03:loca_reclaim, +9:u04:TRUE., +16:u11:loca_reclaim, +9:uI0:'(..), +16:u02:loca_reclaim, +9:u03:TRUE., +16:u10:loca_reclaim, +16:u01:loca_reclaim, +9:u02:TRUE., +16:u00:loca_reclaim, +9:u01:TRUE., +9:u00:TRUE., +17:u08:type-specific, +17:u07:type-specific, +17:u06:type-specific, +17:u14:type-specific, +17:u05:type-specific, +16:u08:loca_length,, +17:u13:type-specific, +17:u04:type-specific, +17:u12:type-specific, +9:uI2:....', +17:u03:type-specific, +16:u07:loca_length,, +17:u11:type-specific, +9:uI1:....', +17:u02:type-specific, +16:u06:loca_length,, +17:u10:type-specific, +16:u14:loca_length,, +9:uI0:....', +17:u01:type-specific, +16:u05:loca_length,, +8:u08:325], +16:u13:loca_length,, +17:u00:type-specific, +16:u04:loca_length,, +8:u07:325], +16:u12:loca_length,, +16:u03:loca_length,, +8:u06:325], +16:u11:loca_length,, +16:u02:loca_length,, +8:u05:325], +16:u10:loca_length,, +16:u01:loca_length,, +8:u04:325], +16:u00:loca_length,, +8:u03:325], +8:u02:325], +8:u01:325], +8:u00:325], +17:u08:synchronously, +8:u14:true, +8:u13:true, +17:u07:synchronously, +8:u12:true, +17:u06:synchronously, +8:u11:true, +17:u14:synchronously, +17:u05:synchronously, +8:u10:true, +17:u13:synchronously, +17:u04:synchronously, +17:u12:synchronously, +13:u14:condition, +17:u03:synchronously, +17:u11:synchronously, +13:u13:condition, +17:u02:synchronously, +17:u10:synchronously, +13:u12:condition, +17:u01:synchronously, +13:u11:condition, +17:u00:synchronously, +13:u10:condition, +8:u08:risk, +11:u08:12.7.5., +8:u07:risk, +8:u06:risk, +11:u07:12.7.5., +12:u08:(namely,, +8:u05:risk, +11:u06:12.7.5., +8:u04:risk, +11:u14:12.7.5., +11:u05:12.7.5., +12:u07:(namely,, +8:u03:risk, +11:u13:12.7.5., +11:u04:12.7.5., +12:u06:(namely,, +8:u02:risk, +11:u12:12.7.5., +12:u14:(namely,, +11:u03:12.7.5., +12:u05:(namely,, +8:u01:risk, +11:u11:12.7.5., +12:u13:(namely,, +11:u02:12.7.5., +12:u04:(namely,, +8:u00:risk, +11:u10:12.7.5., +12:u12:(namely,, +7:u22:(na, +8:u23:(nam, +11:u01:12.7.5., +12:u03:(namely,, +12:u11:(namely,, +11:u00:12.7.5., +12:u02:(namely,, +12:u10:(namely,, +12:u01:(namely,, +12:u00:(namely,, +15:u08:provisional, +15:u07:provisional, +15:u06:provisional, +15:u14:provisional, +15:u05:provisional, +15:u13:provisional, +15:u04:provisional, +9:u08:safe., +15:u12:provisional, +15:u03:provisional, +15:u11:provisional, +15:u02:provisional, +9:u07:safe., +15:u10:provisional, +15:u01:provisional, +9:u06:safe., +9:u14:safe., +15:u00:provisional, +9:u05:safe., +8:u08:326], +9:u13:safe., +9:u04:safe., +8:u07:326], +9:u12:safe., +7:u22:saf, +8:u23:safe, +9:u03:safe., +8:u06:326], +9:u11:safe., +9:u02:safe., +11:u08:12.7.6., +8:u05:326], +9:u10:safe., +9:u01:safe., +8:u04:326], +9:u00:safe., +11:u07:12.7.6., +8:u03:326], +11:u06:12.7.6., +8:u02:326], +11:u14:12.7.6., +11:u05:12.7.6., +8:u01:326], +11:u13:12.7.6., +11:u04:12.7.6., +9:u08:First, +8:u00:326], +11:u12:12.7.6., +11:u03:12.7.6., +11:u11:12.7.6., +11:u02:12.7.6., +9:u07:First, +11:u10:12.7.6., +11:u14:holding, +11:u01:12.7.6., +9:u06:First, +11:u13:holding, +11:u00:12.7.6., +9:u05:First, +11:u12:holding, +9:u04:First, +11:u11:holding, +9:u03:First, +11:u10:holding, +9:u02:First, +11:u14:caution, +9:u01:First, +11:u13:caution, +8:u23:Seco, +9:u00:First, +11:u12:caution, +8:u23:caut, +11:u11:caution, +11:u10:caution, +13:u08:executing, +13:u07:executing, +13:u08:sub-cases, +13:u06:executing, +13:u07:sub-cases, +13:u14:executing, +13:u05:executing, +13:u06:sub-cases, +13:u13:executing, +13:u04:executing, +13:u05:sub-cases, +13:u12:executing, +13:u03:executing, +13:u04:sub-cases, +9:u08:roles, +13:u11:executing, +10:uI2:..,..,, +13:u02:executing, +13:u03:sub-cases, +9:u07:roles, +13:u10:executing, +10:uI1:..,..,, +13:u01:executing, +13:u02:sub-cases, +9:u06:roles, +10:uI0:..,..,, +13:u00:executing, +13:u01:sub-cases, +9:u05:roles, +15:u08:immaterial., +13:u00:sub-cases, +9:u04:roles, +9:u03:roles, +15:u07:immaterial., +12:u08:(NFSv4.1, +9:u02:roles, +15:u06:immaterial., +9:u01:roles, +15:u14:immaterial., +15:u05:immaterial., +12:u07:(NFSv4.1, +9:u00:roles, +15:u13:immaterial., +15:u04:immaterial., +12:u06:(NFSv4.1, +15:u12:immaterial., +12:u14:(nfsv4.1, +8:u23:imma, +15:u03:immaterial., +12:u05:(NFSv4.1, +9:u08:both., +13:u08:separates, +15:u11:immaterial., +12:u13:(nfsv4.1, +10:uI2:(.-.),, +15:u02:immaterial., +12:u04:(NFSv4.1, +13:u07:separates, +15:u10:immaterial., +12:u12:(nfsv4.1, +10:uI1:(.-.),, +15:u01:immaterial., +12:u03:(NFSv4.1, +9:u07:both., +16:u08:conventional, +13:u06:separates, +12:u11:(nfsv4.1, +10:uI0:(.-.),, +15:u00:immaterial., +12:u02:(NFSv4.1, +9:u06:both., +13:u05:separates, +14:u08:(non-pNFS), +12:u10:(nfsv4.1, +9:u14:both., +12:u01:(NFSv4.1, +9:u05:both., +16:u07:conventional, +13:u04:separates, +14:u07:(non-pNFS), +9:u13:both., +9:uI2:.-(.), +12:u00:(NFSv4.1, +9:u04:both., +16:u06:conventional, +13:u03:separates, +14:u06:(non-pNFS), +9:u12:both., +16:u14:conventional, +9:uI1:.-(.), +9:u03:both., +16:u05:conventional, +13:u02:separates, +14:u05:(non-pNFS), +9:u11:both., +16:u13:conventional, +9:uI0:.-(.), +9:u02:both., +16:u04:conventional, +13:u01:separates, +14:u04:(non-pNFS), +8:u08:327], +9:u10:both., +16:u12:conventional, +9:u01:both., +16:u03:conventional, +13:u00:separates, +14:u03:(non-pNFS), +8:u07:327], +16:u11:conventional, +9:u00:both., +16:u02:conventional, +14:u02:(non-pNFS), +8:u06:327], +16:u10:conventional, +16:u01:conventional, +14:u01:(non-pNFS), +8:u05:327], +16:u00:conventional, +14:u00:(non-pNFS), +8:u04:327], +8:u03:327], +8:u02:327], +8:u01:327], +11:u08:threats, +8:u00:327], +11:u07:threats, +11:u06:threats, +18:u08:recommendation, +11:u05:threats, +11:u04:threats, +18:u07:recommendation, +11:u03:threats, +18:u06:recommendation, +11:u02:threats, +18:u14:recommendation, +18:u05:recommendation, +11:u08:concern, +11:u01:threats, +18:u13:recommendation, +18:u04:recommendation, +11:u00:threats, +18:u12:recommendation, +18:u03:recommendation, +11:u07:concern, +18:u11:recommendation, +18:u02:recommendation, +11:u06:concern, +8:u08:fall, +14:u08:device(s)), +18:u10:recommendation, +11:u14:concern, +18:u01:recommendation, +11:u05:concern, +11:u08:action., +14:u07:device(s)), +11:u13:concern, +18:u00:recommendation, +11:u04:concern, +8:u07:fall, +14:u06:device(s)), +11:u12:concern, +10:uI2:(..,(), +11:u03:concern, +8:u06:fall, +11:u07:action., +14:u05:device(s)), +11:u11:concern, +8:u14:fall, +10:uI1:(..,(), +12:uI2:())/(..,, +11:u02:concern, +8:u05:fall, +11:u06:action., +14:u04:device(s)), +11:u10:concern, +8:u13:fall, +11:u14:action., +10:uI0:(..,(), +12:uI1:())/(..,, +11:u01:concern, +8:u04:fall, +11:u05:action., +14:u03:device(s)), +8:u12:fall, +11:u13:action., +7:u22:fal, +8:u23:fall, +12:uI0:())/(..,, +11:u00:concern, +8:u03:fall, +11:u04:action., +14:u02:device(s)), +8:u11:fall, +11:u12:action., +11:u14:threats, +8:u02:fall, +11:u03:action., +14:u01:device(s)), +8:u10:fall, +11:u11:action., +11:u13:threats, +8:u01:fall, +11:u02:action., +14:u00:device(s)), +11:u10:action., +11:u12:threats, +10:u14:strong, +8:u00:fall, +11:u01:action., +11:u11:threats, +10:u13:strong, +11:u00:action., +11:u10:threats, +10:u12:strong, +8:u23:stro, +10:u11:strong, +10:uI2:(),..,, +10:u10:strong, +10:uI1:(),..,, +10:uI0:(),..,, +12:u08:respects, +12:u07:respects, +12:u06:respects, +11:u08:device,, +15:u08:controlling, +12:u05:respects, +11:u07:device,, +12:u04:respects, +11:u06:device,, +15:u07:controlling, +15:u08:misbehaving, +12:u03:respects, +11:u05:device,, +12:u08:performs, +7:uI2:,(;, +15:u06:controlling, +17:u08:consideration, +12:u02:respects, +11:u04:device,, +12:u07:performs, +15:u14:controlling, +7:uI1:,(;, +15:u05:controlling, +15:u07:misbehaving, +12:u01:respects, +11:u03:device,, +12:u06:performs, +15:u13:controlling, +7:uI0:,(;, +15:u04:controlling, +15:u06:misbehaving, +17:u07:consideration, +15:u08:client-only, +12:u00:respects, +11:u02:device,, +12:u05:performs, +15:u12:controlling, +15:u14:misbehaving, +15:u03:controlling, +15:u05:misbehaving, +17:u06:consideration, +11:u01:device,, +12:u04:performs, +15:u11:controlling, +15:u13:misbehaving, +17:u14:consideration, +15:u02:controlling, +15:u04:misbehaving, +17:u05:consideration, +15:u07:client-only, +11:u00:device,, +12:u03:performs, +15:u10:controlling, +15:u12:misbehaving, +17:u13:consideration, +8:u23:misb, +15:u01:controlling, +15:u03:misbehaving, +17:u04:consideration, +15:u06:client-only, +12:u02:performs, +15:u11:misbehaving, +17:u12:consideration, +15:u14:client-only, +15:u00:controlling, +15:u02:misbehaving, +17:u03:consideration, +15:u05:client-only, +12:u01:performs, +15:u10:misbehaving, +17:u11:consideration, +15:u13:client-only, +15:u01:misbehaving, +17:u02:consideration, +15:u04:client-only, +25:u08:LAYOUT4_NFSv4_1_FILES, +12:u00:performs, +17:u10:consideration, +15:u12:client-only, +15:u00:misbehaving, +17:u01:consideration, +15:u03:client-only, +15:u11:client-only, +17:u00:consideration, +15:u02:client-only, +25:u07:LAYOUT4_NFSv4_1_FILES, +15:u10:client-only, +15:u01:client-only, +25:u06:LAYOUT4_NFSv4_1_FILES, +15:u00:client-only, +25:u05:LAYOUT4_NFSv4_1_FILES, +25:u04:LAYOUT4_NFSv4_1_FILES, +25:u03:LAYOUT4_NFSv4_1_FILES, +8:u08:328], +8:uI2:,./-, +25:u02:LAYOUT4_NFSv4_1_FILES, +8:u07:328], +8:uI1:,./-, +25:u01:LAYOUT4_NFSv4_1_FILES, +8:u06:328], +8:uI0:,./-, +25:u00:LAYOUT4_NFSv4_1_FILES, +8:u05:328], +8:u04:328], +8:u03:328], +8:u02:328], +8:u01:328], +10:uI2:(),[],, +8:u00:328], +10:uI1:(),[],, +10:uI0:(),[],, +12:u08:striping, +12:u07:striping, +12:u06:striping, +12:u05:striping, +12:u04:striping, +12:u03:striping, +15:u08:eir_flags)., +12:u02:striping, +10:uI2:-(.-)., +12:u01:striping, +10:uI1:-(.-)., +15:u07:eir_flags)., +12:u00:striping, +10:uI0:-(.-)., +15:u06:eir_flags)., +16:u08:Non-metadata, +15:u14:eir_flags)., +15:u05:eir_flags)., +16:u07:Non-metadata, +15:u13:eir_flags)., +15:u04:eir_flags)., +16:u06:Non-metadata, +15:u12:eir_flags)., +15:u03:eir_flags)., +30:u08:EXCHGID4_FLAG_USE_PNFS_DS,, +16:u05:Non-metadata, +15:u11:eir_flags)., +15:u02:eir_flags)., +16:u04:Non-metadata, +15:u10:eir_flags)., +10:uI2:.(..,), +15:u01:eir_flags)., +30:u07:EXCHGID4_FLAG_USE_PNFS_DS,, +31:u08:EXCHGID4_FLAG_USE_PNFS_MDS), +16:u03:Non-metadata, +10:uI1:.(..,), +15:u00:eir_flags)., +30:u06:EXCHGID4_FLAG_USE_PNFS_DS,, +16:u02:Non-metadata, +30:u14:exchgid4_flag_use_pnfs_ds,, +10:uI0:.(..,), +30:u05:EXCHGID4_FLAG_USE_PNFS_DS,, +31:u07:EXCHGID4_FLAG_USE_PNFS_MDS), +63:u08:+---------------------------------------------------------+, +16:u01:Non-metadata, +30:u13:exchgid4_flag_use_pnfs_ds,, +30:u04:EXCHGID4_FLAG_USE_PNFS_DS,, +31:u06:EXCHGID4_FLAG_USE_PNFS_MDS), +16:u00:Non-metadata, +30:u12:exchgid4_flag_use_pnfs_ds,, +31:u14:exchgid4_flag_use_pnfs_mds), +30:u03:EXCHGID4_FLAG_USE_PNFS_DS,, +31:u05:EXCHGID4_FLAG_USE_PNFS_MDS), +63:u07:+---------------------------------------------------------+, +14:u08:Acceptable, +30:u11:exchgid4_flag_use_pnfs_ds,, +31:u13:exchgid4_flag_use_pnfs_mds), +30:u02:EXCHGID4_FLAG_USE_PNFS_DS,, +31:u04:EXCHGID4_FLAG_USE_PNFS_MDS), +63:u06:+---------------------------------------------------------+, +14:u07:Acceptable, +30:u10:exchgid4_flag_use_pnfs_ds,, +31:u12:exchgid4_flag_use_pnfs_mds), +63:u14:+---------------------------------------------------------+, +30:u01:EXCHGID4_FLAG_USE_PNFS_DS,, +31:u03:EXCHGID4_FLAG_USE_PNFS_MDS), +63:u05:+---------------------------------------------------------+, +14:u06:Acceptable, +31:u11:exchgid4_flag_use_pnfs_mds), +63:u13:+---------------------------------------------------------+, +30:u00:EXCHGID4_FLAG_USE_PNFS_DS,, +31:u02:EXCHGID4_FLAG_USE_PNFS_MDS), +63:u04:+---------------------------------------------------------+, +14:u05:Acceptable, +30:u08:EXCHGID4_FLAG_USE_PNFS_MDS, +31:u10:exchgid4_flag_use_pnfs_mds), +63:u12:+---------------------------------------------------------+, +31:u01:EXCHGID4_FLAG_USE_PNFS_MDS), +63:u03:+---------------------------------------------------------+, +14:u04:Acceptable, +30:u07:EXCHGID4_FLAG_USE_PNFS_MDS, +63:u11:+---------------------------------------------------------+, +31:u00:EXCHGID4_FLAG_USE_PNFS_MDS), +63:u02:+---------------------------------------------------------+, +14:u03:Acceptable, +30:u06:EXCHGID4_FLAG_USE_PNFS_MDS, +63:u10:+---------------------------------------------------------+, +63:u01:+---------------------------------------------------------+, +14:u02:Acceptable, +30:u05:EXCHGID4_FLAG_USE_PNFS_MDS, +29:u08:EXCHGID4_FLAG_USE_PNFS_DS, +63:u00:+---------------------------------------------------------+, +14:u01:Acceptable, +30:u04:EXCHGID4_FLAG_USE_PNFS_MDS, +29:u07:EXCHGID4_FLAG_USE_PNFS_DS, +14:u00:Acceptable, +30:u03:EXCHGID4_FLAG_USE_PNFS_MDS, +29:u06:EXCHGID4_FLAG_USE_PNFS_DS, +30:u08:EXCHGID4_FLAG_USE_NON_PNFS, +30:u02:EXCHGID4_FLAG_USE_PNFS_MDS, +29:u05:EXCHGID4_FLAG_USE_PNFS_DS, +30:u07:EXCHGID4_FLAG_USE_NON_PNFS, +30:u01:EXCHGID4_FLAG_USE_PNFS_MDS, +29:u04:EXCHGID4_FLAG_USE_PNFS_DS, +30:u06:EXCHGID4_FLAG_USE_NON_PNFS, +30:u00:EXCHGID4_FLAG_USE_PNFS_MDS, +29:u03:EXCHGID4_FLAG_USE_PNFS_DS, +30:u05:EXCHGID4_FLAG_USE_NON_PNFS, +29:u02:EXCHGID4_FLAG_USE_PNFS_DS, +30:u04:EXCHGID4_FLAG_USE_NON_PNFS, +29:u01:EXCHGID4_FLAG_USE_PNFS_DS, +30:u03:EXCHGID4_FLAG_USE_NON_PNFS, +29:u00:EXCHGID4_FLAG_USE_PNFS_DS, +30:u02:EXCHGID4_FLAG_USE_NON_PNFS, +30:u01:EXCHGID4_FLAG_USE_NON_PNFS, +30:u00:EXCHGID4_FLAG_USE_NON_PNFS, +8:u08:329], +8:u07:329], +8:u06:329], +8:u05:329], +8:u04:329], +8:u03:329], +12:u08:results,, +8:u02:329], +12:u07:results,, +8:u01:329], +12:u06:results,, +8:u00:329], +12:u05:results,, +12:u04:results,, +12:u03:results,, +31:u08:(EXCHGID4_FLAG_USE_NON_PNFS, +12:u02:results,, +30:u08:EXCHGID4_FLAG_USE_PNFS_DS), +12:u01:results,, +31:u07:(EXCHGID4_FLAG_USE_NON_PNFS, +12:u00:results,, +31:u06:(EXCHGID4_FLAG_USE_NON_PNFS, +30:u07:EXCHGID4_FLAG_USE_PNFS_DS), +31:u14:(exchgid4_flag_use_non_pnfs, +31:u05:(EXCHGID4_FLAG_USE_NON_PNFS, +30:u06:EXCHGID4_FLAG_USE_PNFS_DS), +31:u08:(EXCHGID4_FLAG_USE_PNFS_MDS, +31:u13:(exchgid4_flag_use_non_pnfs, +30:u14:exchgid4_flag_use_pnfs_ds), +31:u04:(EXCHGID4_FLAG_USE_NON_PNFS, +30:u05:EXCHGID4_FLAG_USE_PNFS_DS), +31:u12:(exchgid4_flag_use_non_pnfs, +30:u13:exchgid4_flag_use_pnfs_ds), +7:u22:(EX, +8:u23:(EXC, +31:u03:(EXCHGID4_FLAG_USE_NON_PNFS, +30:u04:EXCHGID4_FLAG_USE_PNFS_DS), +31:u07:(EXCHGID4_FLAG_USE_PNFS_MDS, +31:u11:(exchgid4_flag_use_non_pnfs, +30:u12:exchgid4_flag_use_pnfs_ds), +31:u02:(EXCHGID4_FLAG_USE_NON_PNFS, +30:u03:EXCHGID4_FLAG_USE_PNFS_DS), +31:u06:(EXCHGID4_FLAG_USE_PNFS_MDS, +31:u10:(exchgid4_flag_use_non_pnfs, +30:u11:exchgid4_flag_use_pnfs_ds), +31:u14:(exchgid4_flag_use_pnfs_mds, +31:u01:(EXCHGID4_FLAG_USE_NON_PNFS, +30:u02:EXCHGID4_FLAG_USE_PNFS_DS), +31:u05:(EXCHGID4_FLAG_USE_PNFS_MDS, +30:u10:exchgid4_flag_use_pnfs_ds), +31:u13:(exchgid4_flag_use_pnfs_mds, +31:u00:(EXCHGID4_FLAG_USE_NON_PNFS, +30:u01:EXCHGID4_FLAG_USE_PNFS_DS), +31:u04:(EXCHGID4_FLAG_USE_PNFS_MDS, +31:u12:(exchgid4_flag_use_pnfs_mds, +30:u00:EXCHGID4_FLAG_USE_PNFS_DS), +31:u03:(EXCHGID4_FLAG_USE_PNFS_MDS, +31:u11:(exchgid4_flag_use_pnfs_mds, +31:u02:(EXCHGID4_FLAG_USE_PNFS_MDS, +31:u10:(exchgid4_flag_use_pnfs_mds, +31:u01:(EXCHGID4_FLAG_USE_PNFS_MDS, +31:u00:(EXCHGID4_FLAG_USE_PNFS_MDS, +29:u14:exchgid4_flag_use_pnfs_ds, +29:u13:exchgid4_flag_use_pnfs_ds, +29:u12:exchgid4_flag_use_pnfs_ds, +29:u11:exchgid4_flag_use_pnfs_ds, +29:u10:exchgid4_flag_use_pnfs_ds, +10:u08:scopes, +10:u07:scopes, +10:u06:scopes, +10:u14:scopes, +10:u05:scopes, +10:u13:scopes, +10:u04:scopes, +10:u12:scopes, +10:u03:scopes, +10:u11:scopes, +10:u02:scopes, +10:u10:scopes, +10:u01:scopes, +10:u00:scopes, +8:u08:330], +8:u07:330], +8:u06:330], +8:u05:330], +8:u04:330], +8:u03:330], +8:u02:330], +8:u01:330], +12:u08:(stale),, +8:u00:330], +12:u07:(stale),, +16:u08:Invalidating, +12:u06:(stale),, +16:u07:Invalidating, +12:u05:(stale),, +16:u06:Invalidating, +12:u14:layouts., +12:u04:(stale),, +16:u05:Invalidating, +12:u13:layouts., +12:u03:(stale),, +16:u04:Invalidating, +12:u12:layouts., +7:uI2:'.', +12:u02:(stale),, +16:u03:Invalidating, +12:u11:layouts., +7:uI1:'.', +12:u01:(stale),, +16:u02:Invalidating, +12:u10:layouts., +7:uI0:'.', +12:u00:(stale),, +16:u01:Invalidating, +16:u00:Invalidating, +11:u08:13.1.1., +11:u07:13.1.1., +13:u08:2.10.11.2, +11:u06:13.1.1., +13:u07:2.10.11.2, +11:u14:13.1.1., +11:u05:13.1.1., +13:u06:2.10.11.2, +11:u13:13.1.1., +11:u04:13.1.1., +13:u05:2.10.11.2, +11:u12:13.1.1., +11:u03:13.1.1., +13:u04:2.10.11.2, +11:u11:13.1.1., +11:u02:13.1.1., +13:u03:2.10.11.2, +11:u10:13.1.1., +11:u01:13.1.1., +13:u02:2.10.11.2, +11:u00:13.1.1., +13:u01:2.10.11.2, +13:u00:2.10.11.2, +9:u08:aware, +9:u07:aware, +9:u06:aware, +9:u14:aware, +9:u05:aware, +9:u13:aware, +9:u04:aware, +12:u08:seconds,, +9:u12:aware, +9:u03:aware, +9:u11:aware, +9:u02:aware, +12:u07:seconds,, +34:u08:EXCHGID4_FLAG_USE_PNFS_DS-only, +9:u10:aware, +9:u01:aware, +12:u06:seconds,, +12:u14:seconds,, +9:u00:aware, +12:u05:seconds,, +34:u07:EXCHGID4_FLAG_USE_PNFS_DS-only, +12:u13:seconds,, +6:u14:10, +12:u04:seconds,, +34:u06:EXCHGID4_FLAG_USE_PNFS_DS-only, +12:u12:seconds,, +6:u13:10, +34:u14:exchgid4_flag_use_pnfs_ds-only, +12:u03:seconds,, +34:u05:EXCHGID4_FLAG_USE_PNFS_DS-only, +12:u11:seconds,, +6:u12:10, +34:u13:exchgid4_flag_use_pnfs_ds-only, +6:u22:10, +6:u23:10, +12:u02:seconds,, +34:u04:EXCHGID4_FLAG_USE_PNFS_DS-only, +12:u10:seconds,, +6:u11:10, +34:u12:exchgid4_flag_use_pnfs_ds-only, +12:u01:seconds,, +34:u03:EXCHGID4_FLAG_USE_PNFS_DS-only, +8:u08:331], +6:u10:10, +34:u11:exchgid4_flag_use_pnfs_ds-only, +12:u00:seconds,, +34:u02:EXCHGID4_FLAG_USE_PNFS_DS-only, +8:u07:331], +34:u10:exchgid4_flag_use_pnfs_ds-only, +34:u01:EXCHGID4_FLAG_USE_PNFS_DS-only, +8:u06:331], +34:u00:EXCHGID4_FLAG_USE_PNFS_DS-only, +8:u05:331], +8:u04:331], +8:u03:331], +9:u08:Unit., +8:u02:331], +8:u01:331], +9:u07:Unit., +12:u08:Pattern., +8:u00:331], +9:u06:Unit., +9:u08:sized, +9:u14:unit., +9:u05:Unit., +12:u07:Pattern., +9:u08:units, +9:u13:unit., +9:u04:Unit., +12:u06:Pattern., +9:u07:sized, +11:u08:Stripe., +9:u07:units, +9:u12:unit., +12:u14:pattern., +8:u23:Unit, +9:u03:Unit., +12:u05:Pattern., +9:u06:sized, +9:u06:units, +9:u11:unit., +12:u13:pattern., +9:u14:sized, +9:u02:Unit., +12:u04:Pattern., +9:u05:sized, +11:u07:Stripe., +10:u08:Stripe, +9:u05:units, +9:u10:unit., +12:u12:pattern., +9:u13:sized, +8:u23:Patt, +9:u01:Unit., +12:u03:Pattern., +9:u04:sized, +11:u06:Stripe., +9:u04:units, +10:u08:Count., +12:u11:pattern., +9:u12:sized, +11:u14:stripe., +9:u00:Unit., +12:u02:Pattern., +9:u03:sized, +11:u05:Stripe., +10:u07:Stripe, +10:u08:stripe, +9:u03:units, +10:u07:Count., +10:u08:Width., +12:u10:pattern., +9:u11:sized, +11:u13:stripe., +12:u01:Pattern., +9:u02:sized, +11:u04:Stripe., +10:u06:Stripe, +14:u08:Hereafter,, +9:u02:units, +10:u06:Count., +10:u07:Width., +9:u08:width, +9:u10:sized, +11:u12:stripe., +10:u14:stripe, +7:u22:Str, +8:u23:Stri, +12:u00:Pattern., +9:u01:sized, +11:u03:Stripe., +10:u05:Stripe, +10:u07:stripe, +9:u01:units, +10:u05:Count., +10:u06:Width., +9:u07:width, +11:u11:stripe., +10:u13:stripe, +9:u00:sized, +11:u02:Stripe., +10:u04:Stripe, +10:u06:stripe, +14:u07:Hereafter,, +9:u00:units, +10:u04:Count., +10:u05:Width., +9:u06:width, +11:u10:stripe., +10:u12:stripe, +11:u01:Stripe., +10:u03:Stripe, +10:u05:stripe, +14:u06:Hereafter,, +10:u03:Count., +10:u04:Width., +9:u05:width, +10:u11:stripe, +14:u14:hereafter,, +11:u00:Stripe., +10:u02:Stripe, +10:u04:stripe, +14:u05:Hereafter,, +10:u02:Count., +10:u03:Width., +9:u04:width, +10:u10:stripe, +14:u13:hereafter,, +11:u14:pattern, +10:u01:Stripe, +10:u03:stripe, +14:u04:Hereafter,, +10:u01:Count., +10:u02:Width., +9:u03:width, +14:u12:hereafter,, +11:u13:pattern, +10:u00:Stripe, +10:u02:stripe, +14:u03:Hereafter,, +10:u00:Count., +10:u01:Width., +9:u02:width, +14:u11:hereafter,, +11:u12:pattern, +8:u23:patt, +10:u01:stripe, +14:u02:Hereafter,, +10:u00:Width., +9:u01:width, +14:u10:hereafter,, +11:u11:pattern, +10:u00:stripe, +14:u01:Hereafter,, +9:u00:width, +11:u10:pattern, +14:u00:Hereafter,, +33:u08:nfsv4_1_file_layout_ds_addr4,, +33:u07:nfsv4_1_file_layout_ds_addr4,, +33:u06:nfsv4_1_file_layout_ds_addr4,, +16:u08:layouthint4), +12:u08:5.12.4)., +33:u14:nfsv4_1_file_layout_ds_addr4,, +33:u05:nfsv4_1_file_layout_ds_addr4,, +12:u08:loh_type, +12:u07:5.12.4)., +33:u13:nfsv4_1_file_layout_ds_addr4,, +33:u04:nfsv4_1_file_layout_ds_addr4,, +16:u07:layouthint4), +29:u08:nfsv4_1_file_layouthint4., +12:u06:5.12.4)., +11:u08:field),, +33:u12:nfsv4_1_file_layout_ds_addr4,, +33:u03:nfsv4_1_file_layout_ds_addr4,, +16:u06:layouthint4), +12:u07:loh_type, +12:u05:5.12.4)., +11:u07:field),, +33:u11:nfsv4_1_file_layout_ds_addr4,, +16:u14:layouthint4), +10:uI2:(..).(, +33:u02:nfsv4_1_file_layout_ds_addr4,, +16:u05:layouthint4), +12:u06:loh_type, +29:u07:nfsv4_1_file_layouthint4., +12:u04:5.12.4)., +11:u06:field),, +18:u08:NFL4_UFLG_MASK, +33:u10:nfsv4_1_file_layout_ds_addr4,, +16:u13:layouthint4), +12:u14:loh_type, +10:uI1:(..).(, +33:u01:nfsv4_1_file_layout_ds_addr4,, +16:u04:layouthint4), +12:u05:loh_type, +29:u06:nfsv4_1_file_layouthint4., +12:u03:5.12.4)., +11:u05:field),, +18:u07:NFL4_UFLG_MASK, +15:u08:0x0000003F;, +16:u12:layouthint4), +12:u13:loh_type, +29:u14:nfsv4_1_file_layouthint4., +10:uI0:(..).(, +33:u00:nfsv4_1_file_layout_ds_addr4,, +16:u03:layouthint4), +12:u04:loh_type, +29:u05:nfsv4_1_file_layouthint4., +12:u02:5.12.4)., +11:u04:field),, +18:u06:NFL4_UFLG_MASK, +15:u07:0x0000003F;, +19:u08:NFL4_UFLG_DENSE, +16:u11:layouthint4), +12:u12:loh_type, +29:u13:nfsv4_1_file_layouthint4., +16:u02:layouthint4), +12:u03:loh_type, +29:u04:nfsv4_1_file_layouthint4., +12:u01:5.12.4)., +11:u03:field),, +18:u05:NFL4_UFLG_MASK, +15:u06:0x0000003F;, +19:u07:NFL4_UFLG_DENSE, +16:u10:layouthint4), +12:u11:loh_type, +29:u12:nfsv4_1_file_layouthint4., +16:u01:layouthint4), +12:u02:loh_type, +29:u03:nfsv4_1_file_layouthint4., +12:u00:5.12.4)., +11:u02:field),, +18:u04:NFL4_UFLG_MASK, +15:u05:0x0000003F;, +19:u06:NFL4_UFLG_DENSE, +29:u08:NFL4_UFLG_COMMIT_THRU_MDS, +12:u10:loh_type, +29:u11:nfsv4_1_file_layouthint4., +16:u00:layouthint4), +12:u01:loh_type, +29:u02:nfsv4_1_file_layouthint4., +11:u01:field),, +18:u03:NFL4_UFLG_MASK, +15:u04:0x0000003F;, +19:u05:NFL4_UFLG_DENSE, +29:u07:NFL4_UFLG_COMMIT_THRU_MDS, +35:u08:NFL4_UFLG_STRIPE_UNIT_SIZE_MASK, +29:u10:nfsv4_1_file_layouthint4., +12:u00:loh_type, +29:u01:nfsv4_1_file_layouthint4., +11:u00:field),, +18:u02:NFL4_UFLG_MASK, +15:u03:0x0000003F;, +19:u04:NFL4_UFLG_DENSE, +29:u06:NFL4_UFLG_COMMIT_THRU_MDS, +35:u07:NFL4_UFLG_STRIPE_UNIT_SIZE_MASK, +15:u08:0xFFFFFFC0;, +29:u00:nfsv4_1_file_layouthint4., +18:u01:NFL4_UFLG_MASK, +15:u02:0x0000003F;, +19:u03:NFL4_UFLG_DENSE, +29:u05:NFL4_UFLG_COMMIT_THRU_MDS, +35:u06:NFL4_UFLG_STRIPE_UNIT_SIZE_MASK, +15:u07:0xFFFFFFC0;, +18:u00:NFL4_UFLG_MASK, +15:u01:0x0000003F;, +19:u02:NFL4_UFLG_DENSE, +29:u04:NFL4_UFLG_COMMIT_THRU_MDS, +35:u05:NFL4_UFLG_STRIPE_UNIT_SIZE_MASK, +15:u06:0xFFFFFFC0;, +15:u00:0x0000003F;, +19:u01:NFL4_UFLG_DENSE, +29:u03:NFL4_UFLG_COMMIT_THRU_MDS, +35:u04:NFL4_UFLG_STRIPE_UNIT_SIZE_MASK, +15:u05:0xFFFFFFC0;, +19:u00:NFL4_UFLG_DENSE, +29:u02:NFL4_UFLG_COMMIT_THRU_MDS, +35:u03:NFL4_UFLG_STRIPE_UNIT_SIZE_MASK, +15:u04:0xFFFFFFC0;, +8:u08:332], +29:u01:NFL4_UFLG_COMMIT_THRU_MDS, +35:u02:NFL4_UFLG_STRIPE_UNIT_SIZE_MASK, +15:u03:0xFFFFFFC0;, +8:u07:332], +29:u00:NFL4_UFLG_COMMIT_THRU_MDS, +35:u01:NFL4_UFLG_STRIPE_UNIT_SIZE_MASK, +15:u02:0xFFFFFFC0;, +8:u06:332], +35:u00:NFL4_UFLG_STRIPE_UNIT_SIZE_MASK, +15:u01:0xFFFFFFC0;, +8:u05:332], +20:u08:NFLH4_CARE_DENSE, +15:u00:0xFFFFFFC0;, +8:u04:332], +25:u08:filelayout_hint_care4, +8:u03:332], +25:u07:filelayout_hint_care4, +20:u07:NFLH4_CARE_DENSE, +30:u08:NFLH4_CARE_COMMIT_THRU_MDS, +8:u02:332], +25:u06:filelayout_hint_care4, +20:u08:NFL4_UFLG_DENSE,, +20:u06:NFLH4_CARE_DENSE, +8:u01:332], +25:u05:filelayout_hint_care4, +20:u07:NFL4_UFLG_DENSE,, +20:u14:nflh4_care_dense, +20:u05:NFLH4_CARE_DENSE, +30:u07:NFLH4_CARE_COMMIT_THRU_MDS, +31:u08:NFLH4_CARE_STRIPE_UNIT_SIZE, +8:u00:332], +25:u04:filelayout_hint_care4, +20:u06:NFL4_UFLG_DENSE,, +30:u08:NFL4_UFLG_COMMIT_THRU_MDS,, +20:u13:nflh4_care_dense, +20:u04:NFLH4_CARE_DENSE, +30:u06:NFLH4_CARE_COMMIT_THRU_MDS, +25:u03:filelayout_hint_care4, +20:u05:NFL4_UFLG_DENSE,, +30:u07:NFL4_UFLG_COMMIT_THRU_MDS,, +20:u12:nflh4_care_dense, +30:u14:nflh4_care_commit_thru_mds, +7:u22:NFL, +8:u23:NFLH, +20:u03:NFLH4_CARE_DENSE, +30:u05:NFLH4_CARE_COMMIT_THRU_MDS, +31:u07:NFLH4_CARE_STRIPE_UNIT_SIZE, +27:u08:NFLH4_CARE_STRIPE_COUNT, +25:u02:filelayout_hint_care4, +20:u04:NFL4_UFLG_DENSE,, +30:u06:NFL4_UFLG_COMMIT_THRU_MDS,, +15:u08:0x00000040,, +20:u11:nflh4_care_dense, +30:u13:nflh4_care_commit_thru_mds, +20:u02:NFLH4_CARE_DENSE, +30:u04:NFLH4_CARE_COMMIT_THRU_MDS, +31:u06:NFLH4_CARE_STRIPE_UNIT_SIZE, +25:u01:filelayout_hint_care4, +20:u03:NFL4_UFLG_DENSE,, +30:u05:NFL4_UFLG_COMMIT_THRU_MDS,, +15:u07:0x00000040,, +20:u10:nflh4_care_dense, +30:u12:nflh4_care_commit_thru_mds, +31:u14:nflh4_care_stripe_unit_size, +20:u01:NFLH4_CARE_DENSE, +30:u03:NFLH4_CARE_COMMIT_THRU_MDS, +31:u05:NFLH4_CARE_STRIPE_UNIT_SIZE, +27:u07:NFLH4_CARE_STRIPE_COUNT, +25:u00:filelayout_hint_care4, +20:u02:NFL4_UFLG_DENSE,, +30:u04:NFL4_UFLG_COMMIT_THRU_MDS,, +15:u06:0x00000040,, +30:u11:nflh4_care_commit_thru_mds, +31:u13:nflh4_care_stripe_unit_size, +20:u00:NFLH4_CARE_DENSE, +30:u02:NFLH4_CARE_COMMIT_THRU_MDS, +31:u04:NFLH4_CARE_STRIPE_UNIT_SIZE, +27:u06:NFLH4_CARE_STRIPE_COUNT, +20:u01:NFL4_UFLG_DENSE,, +30:u03:NFL4_UFLG_COMMIT_THRU_MDS,, +15:u05:0x00000040,, +11:u08:Encoded, +30:u10:nflh4_care_commit_thru_mds, +31:u12:nflh4_care_stripe_unit_size, +27:u14:nflh4_care_stripe_count, +30:u01:NFLH4_CARE_COMMIT_THRU_MDS, +31:u03:NFLH4_CARE_STRIPE_UNIT_SIZE, +27:u05:NFLH4_CARE_STRIPE_COUNT, +20:u00:NFL4_UFLG_DENSE,, +30:u02:NFL4_UFLG_COMMIT_THRU_MDS,, +15:u04:0x00000040,, +11:u07:Encoded, +31:u11:nflh4_care_stripe_unit_size, +27:u13:nflh4_care_stripe_count, +30:u00:NFLH4_CARE_COMMIT_THRU_MDS, +31:u02:NFLH4_CARE_STRIPE_UNIT_SIZE, +27:u04:NFLH4_CARE_STRIPE_COUNT, +14:u08:nflh_care;, +30:u01:NFL4_UFLG_COMMIT_THRU_MDS,, +15:u03:0x00000040,, +11:u06:Encoded, +31:u10:nflh4_care_stripe_unit_size, +27:u12:nflh4_care_stripe_count, +31:u01:NFLH4_CARE_STRIPE_UNIT_SIZE, +27:u03:NFLH4_CARE_STRIPE_COUNT, +13:u08:nfl_util4, +30:u00:NFL4_UFLG_COMMIT_THRU_MDS,, +15:u02:0x00000040,, +11:u05:Encoded, +27:u11:nflh4_care_stripe_count, +9:uI2:/*:*/, +31:u00:NFLH4_CARE_STRIPE_UNIT_SIZE, +27:u02:NFLH4_CARE_STRIPE_COUNT, +14:u07:nflh_care;, +14:u08:nflh_util;, +15:u01:0x00000040,, +11:u04:Encoded, +27:u10:nflh4_care_stripe_count, +9:uI1:/*:*/, +27:u01:NFLH4_CARE_STRIPE_COUNT, +14:u06:nflh_care;, +13:u07:nfl_util4, +15:u00:0x00000040,, +11:u03:Encoded, +14:u14:nflh_care;, +9:uI0:/*:*/, +27:u00:NFLH4_CARE_STRIPE_COUNT, +14:u05:nflh_care;, +13:u06:nfl_util4, +14:u07:nflh_util;, +22:u08:nflh_stripe_count;, +11:u02:Encoded, +14:u13:nflh_care;, +13:u14:nfl_util4, +14:u04:nflh_care;, +13:u05:nfl_util4, +14:u06:nflh_util;, +11:u01:Encoded, +14:u12:nflh_care;, +13:u13:nfl_util4, +14:u14:nflh_util;, +7:u22:nfl, +8:u23:nflh, +14:u03:nflh_care;, +13:u04:nfl_util4, +14:u05:nflh_util;, +22:u07:nflh_stripe_count;, +11:u00:Encoded, +14:u11:nflh_care;, +13:u12:nfl_util4, +14:u13:nflh_util;, +10:u14:count4, +8:u23:nfl_, +14:u02:nflh_care;, +13:u03:nfl_util4, +14:u04:nflh_util;, +22:u06:nflh_stripe_count;, +14:u10:nflh_care;, +13:u11:nfl_util4, +14:u12:nflh_util;, +10:u13:count4, +22:u14:nflh_stripe_count;, +14:u01:nflh_care;, +13:u02:nfl_util4, +14:u03:nflh_util;, +22:u05:nflh_stripe_count;, +13:u10:nfl_util4, +14:u11:nflh_util;, +10:u12:count4, +22:u13:nflh_stripe_count;, +14:u00:nflh_care;, +13:u01:nfl_util4, +14:u02:nflh_util;, +22:u04:nflh_stripe_count;, +14:u10:nflh_util;, +10:u11:count4, +22:u12:nflh_stripe_count;, +13:u00:nfl_util4, +14:u01:nflh_util;, +22:u03:nflh_stripe_count;, +10:u10:count4, +22:u11:nflh_stripe_count;, +14:u00:nflh_util;, +22:u02:nflh_stripe_count;, +22:u10:nflh_stripe_count;, +22:u01:nflh_stripe_count;, +8:u08:hint, +14:u08:nflh_care,, +22:u00:nflh_stripe_count;, +14:u07:nflh_care,, +8:u07:hint, +14:u06:nflh_care,, +8:u06:hint, +14:u05:nflh_care,, +8:u14:hint, +8:u05:hint, +8:u08:("&", +14:u04:nflh_care,, +8:u13:hint, +8:u04:hint, +14:u03:nflh_care,, +8:u12:hint, +8:u03:hint, +8:u07:("&", +14:u02:nflh_care,, +8:u11:hint, +8:u02:hint, +8:u06:("&", +14:u01:nflh_care,, +8:u10:hint, +8:u14:("&", +8:u01:hint, +8:u05:("&", +14:u00:nflh_care,, +8:u13:("&", +8:u00:hint, +8:u04:("&", +8:u12:("&", +7:u22:("&, +8:u23:("&", +8:u03:("&", +8:u11:("&", +8:u02:("&", +8:u10:("&", +8:u01:("&", +10:u08:(thus,, +8:u00:("&", +10:u07:(thus,, +10:u06:(thus,, +35:u14:nfl4_uflg_stripe_unit_size_mask, +14:u08:multiplied, +10:u05:(thus,, +35:u13:nfl4_uflg_stripe_unit_size_mask, +10:u04:(thus,, +35:u12:nfl4_uflg_stripe_unit_size_mask, +8:u23:NFL4, +7:uI2:).., +14:u07:multiplied, +10:u03:(thus,, +35:u11:nfl4_uflg_stripe_unit_size_mask, +7:uI1:).., +14:u06:multiplied, +10:u02:(thus,, +12:u08:loc_type, +35:u10:nfl4_uflg_stripe_unit_size_mask, +14:u14:multiplied, +7:uI0:).., +14:u05:multiplied, +25:u08:nfsv4_1_file_layout4., +10:u01:(thus,, +12:u07:loc_type, +14:u08:lo_content, +14:u13:multiplied, +14:u04:multiplied, +10:u00:(thus,, +12:u06:loc_type, +14:u07:lo_content, +9:u08:Among, +14:u12:multiplied, +14:u03:multiplied, +25:u07:nfsv4_1_file_layout4., +12:u05:loc_type, +14:u06:lo_content, +9:u07:Among, +14:u11:multiplied, +14:u02:multiplied, +25:u06:nfsv4_1_file_layout4., +12:u04:loc_type, +14:u05:lo_content, +9:u06:Among, +14:u10:multiplied, +25:u14:nfsv4_1_file_layout4., +14:u01:multiplied, +25:u05:nfsv4_1_file_layout4., +12:u03:loc_type, +14:u04:lo_content, +9:u05:Among, +25:u13:nfsv4_1_file_layout4., +14:u00:multiplied, +25:u04:nfsv4_1_file_layout4., +12:u02:loc_type, +14:u03:lo_content, +9:u04:Among, +8:u08:333], +25:u12:nfsv4_1_file_layout4., +25:u03:nfsv4_1_file_layout4., +12:u01:loc_type, +14:u02:lo_content, +9:u03:Among, +8:u07:333], +25:u11:nfsv4_1_file_layout4., +25:u02:nfsv4_1_file_layout4., +12:u00:loc_type, +14:u01:lo_content, +9:u02:Among, +8:u06:333], +25:u10:nfsv4_1_file_layout4., +25:u01:nfsv4_1_file_layout4., +14:u00:lo_content, +9:u01:Among, +8:u05:333], +25:u00:nfsv4_1_file_layout4., +9:u08:(type, +9:u00:Among, +8:u04:333], +8:u03:333], +18:u08:device_addr4)., +9:u07:(type, +8:u02:333], +18:u07:device_addr4)., +9:u06:(type, +33:u08:nfsv4_1_file_layout_ds_addr4., +8:u01:333], +18:u06:device_addr4)., +9:u14:(type, +9:u05:(type, +8:u00:333], +18:u05:device_addr4)., +9:u13:(type, +9:u04:(type, +33:u07:nfsv4_1_file_layout_ds_addr4., +18:u04:device_addr4)., +9:u12:(type, +11:u14:field),, +7:u22:(ty, +8:u23:(typ, +9:u03:(type, +33:u06:nfsv4_1_file_layout_ds_addr4., +18:u03:device_addr4)., +9:u11:(type, +11:u13:field),, +33:u14:nfsv4_1_file_layout_ds_addr4., +9:u02:(type, +33:u05:nfsv4_1_file_layout_ds_addr4., +18:u02:device_addr4)., +9:u10:(type, +11:u12:field),, +33:u13:nfsv4_1_file_layout_ds_addr4., +9:u01:(type, +33:u04:nfsv4_1_file_layout_ds_addr4., +18:u01:device_addr4)., +11:u11:field),, +33:u12:nfsv4_1_file_layout_ds_addr4., +9:u00:(type, +33:u03:nfsv4_1_file_layout_ds_addr4., +18:u00:device_addr4)., +11:u10:field),, +33:u11:nfsv4_1_file_layout_ds_addr4., +33:u02:nfsv4_1_file_layout_ds_addr4., +32:u08:nfsv4_1_file_layout_ds_addr4, +33:u10:nfsv4_1_file_layout_ds_addr4., +33:u01:nfsv4_1_file_layout_ds_addr4., +27:u08:nflda_stripe_indices<>;, +32:u07:nfsv4_1_file_layout_ds_addr4, +6:uI2:*:, +33:u00:nfsv4_1_file_layout_ds_addr4., +19:u08:multipath_list4, +32:u06:nfsv4_1_file_layout_ds_addr4, +6:uI1:*:, +27:u07:nflda_stripe_indices<>;, +32:u05:nfsv4_1_file_layout_ds_addr4, +30:u08:nflda_multipath_ds_list<>;, +6:uI0:*:, +27:u06:nflda_stripe_indices<>;, +19:u07:multipath_list4, +32:u04:nfsv4_1_file_layout_ds_addr4, +30:u07:nflda_multipath_ds_list<>;, +27:u14:nflda_stripe_indices<>;, +27:u05:nflda_stripe_indices<>;, +19:u06:multipath_list4, +32:u03:nfsv4_1_file_layout_ds_addr4, +30:u06:nflda_multipath_ds_list<>;, +27:u13:nflda_stripe_indices<>;, +19:u14:multipath_list4, +27:u04:nflda_stripe_indices<>;, +19:u05:multipath_list4, +32:u02:nfsv4_1_file_layout_ds_addr4, +30:u05:nflda_multipath_ds_list<>;, +27:u12:nflda_stripe_indices<>;, +19:u13:multipath_list4, +8:u23:nfld, +27:u03:nflda_stripe_indices<>;, +19:u04:multipath_list4, +32:u01:nfsv4_1_file_layout_ds_addr4, +30:u04:nflda_multipath_ds_list<>;, +28:u08:nflda_multipath_ds_list:, +27:u11:nflda_stripe_indices<>;, +19:u12:multipath_list4, +27:u02:nflda_stripe_indices<>;, +19:u03:multipath_list4, +32:u00:nfsv4_1_file_layout_ds_addr4, +30:u03:nflda_multipath_ds_list<>;, +28:u07:nflda_multipath_ds_list:, +27:u10:nflda_stripe_indices<>;, +19:u11:multipath_list4, +27:u01:nflda_stripe_indices<>;, +19:u02:multipath_list4, +30:u02:nflda_multipath_ds_list<>;, +28:u06:nflda_multipath_ds_list:, +19:u10:multipath_list4, +27:u00:nflda_stripe_indices<>;, +19:u01:multipath_list4, +30:u01:nflda_multipath_ds_list<>;, +28:u05:nflda_multipath_ds_list:, +19:u00:multipath_list4, +30:u00:nflda_multipath_ds_list<>;, +28:u04:nflda_multipath_ds_list:, +28:u08:nflda_multipath_ds_list., +28:u03:nflda_multipath_ds_list:, +25:u08:nflda_stripe_indices:, +24:u08:nflda_stripe_indices, +28:u02:nflda_multipath_ds_list:, +25:u07:nflda_stripe_indices:, +9:uI2:/(.)., +28:u07:nflda_multipath_ds_list., +28:u01:nflda_multipath_ds_list:, +25:u06:nflda_stripe_indices:, +9:uI1:/(.)., +28:u06:nflda_multipath_ds_list., +24:u07:nflda_stripe_indices, +28:u00:nflda_multipath_ds_list:, +25:u05:nflda_stripe_indices:, +28:u14:nflda_multipath_ds_list., +9:uI0:/(.)., +28:u05:nflda_multipath_ds_list., +24:u06:nflda_stripe_indices, +25:u08:nflda_stripe_indices., +25:u04:nflda_stripe_indices:, +28:u13:nflda_multipath_ds_list., +24:u14:nflda_stripe_indices, +28:u04:nflda_multipath_ds_list., +24:u05:nflda_stripe_indices, +25:u03:nflda_stripe_indices:, +28:u12:nflda_multipath_ds_list., +24:u13:nflda_stripe_indices, +28:u03:nflda_multipath_ds_list., +24:u04:nflda_stripe_indices, +25:u07:nflda_stripe_indices., +25:u02:nflda_stripe_indices:, +28:u11:nflda_multipath_ds_list., +24:u12:nflda_stripe_indices, +28:u02:nflda_multipath_ds_list., +24:u03:nflda_stripe_indices, +25:u06:nflda_stripe_indices., +25:u01:nflda_stripe_indices:, +28:u10:nflda_multipath_ds_list., +24:u11:nflda_stripe_indices, +25:u14:nflda_stripe_indices., +28:u01:nflda_multipath_ds_list., +24:u02:nflda_stripe_indices, +25:u05:nflda_stripe_indices., +25:u00:nflda_stripe_indices:, +24:u10:nflda_stripe_indices, +25:u13:nflda_stripe_indices., +28:u00:nflda_multipath_ds_list., +24:u01:nflda_stripe_indices, +25:u04:nflda_stripe_indices., +25:u12:nflda_stripe_indices., +24:u00:nflda_stripe_indices, +25:u03:nflda_stripe_indices., +25:u11:nflda_stripe_indices., +25:u02:nflda_stripe_indices., +24:u08:nfsv4_1_file_layout4, +25:u10:nflda_stripe_indices., +25:u01:nflda_stripe_indices., +17:u08:nfl_deviceid;, +24:u07:nfsv4_1_file_layout4, +25:u00:nflda_stripe_indices., +24:u06:nfsv4_1_file_layout4, +17:u07:nfl_deviceid;, +13:u08:nfl_util;, +24:u05:nfsv4_1_file_layout4, +13:u14:deviceid4, +17:u06:nfl_deviceid;, +24:u04:nfsv4_1_file_layout4, +13:u13:deviceid4, +17:u14:nfl_deviceid;, +17:u05:nfl_deviceid;, +13:u07:nfl_util;, +27:u08:nfl_first_stripe_index;, +24:u03:nfsv4_1_file_layout4, +13:u12:deviceid4, +17:u13:nfl_deviceid;, +17:u04:nfl_deviceid;, +13:u06:nfl_util;, +24:u02:nfsv4_1_file_layout4, +13:u11:deviceid4, +17:u12:nfl_deviceid;, +13:u14:nfl_util;, +17:u03:nfl_deviceid;, +13:u05:nfl_util;, +27:u07:nfl_first_stripe_index;, +23:u08:nfl_pattern_offset;, +24:u01:nfsv4_1_file_layout4, +13:u10:deviceid4, +17:u11:nfl_deviceid;, +13:u13:nfl_util;, +17:u02:nfl_deviceid;, +13:u04:nfl_util;, +27:u06:nfl_first_stripe_index;, +24:u00:nfsv4_1_file_layout4, +17:u10:nfl_deviceid;, +13:u12:nfl_util;, +27:u14:nfl_first_stripe_index;, +17:u01:nfl_deviceid;, +13:u03:nfl_util;, +27:u05:nfl_first_stripe_index;, +23:u07:nfl_pattern_offset;, +18:u08:nfl_fh_list<>;, +13:u11:nfl_util;, +27:u13:nfl_first_stripe_index;, +17:u00:nfl_deviceid;, +13:u02:nfl_util;, +27:u04:nfl_first_stripe_index;, +23:u06:nfl_pattern_offset;, +13:u10:nfl_util;, +27:u12:nfl_first_stripe_index;, +23:u14:nfl_pattern_offset;, +13:u01:nfl_util;, +27:u03:nfl_first_stripe_index;, +23:u05:nfl_pattern_offset;, +18:u07:nfl_fh_list<>;, +27:u11:nfl_first_stripe_index;, +23:u13:nfl_pattern_offset;, +11:u14:nfs_fh4, +13:u00:nfl_util;, +27:u02:nfl_first_stripe_index;, +23:u04:nfl_pattern_offset;, +18:u06:nfl_fh_list<>;, +27:u10:nfl_first_stripe_index;, +23:u12:nfl_pattern_offset;, +11:u13:nfs_fh4, +18:u14:nfl_fh_list<>;, +27:u01:nfl_first_stripe_index;, +23:u03:nfl_pattern_offset;, +18:u05:nfl_fh_list<>;, +23:u11:nfl_pattern_offset;, +11:u12:nfs_fh4, +18:u13:nfl_fh_list<>;, +27:u00:nfl_first_stripe_index;, +23:u02:nfl_pattern_offset;, +18:u04:nfl_fh_list<>;, +8:u08:334], +23:u10:nfl_pattern_offset;, +11:u11:nfs_fh4, +18:u12:nfl_fh_list<>;, +23:u01:nfl_pattern_offset;, +18:u03:nfl_fh_list<>;, +8:u07:334], +11:u10:nfs_fh4, +18:u11:nfl_fh_list<>;, +23:u00:nfl_pattern_offset;, +18:u02:nfl_fh_list<>;, +8:u06:334], +18:u10:nfl_fh_list<>;, +18:u01:nfl_fh_list<>;, +8:u05:334], +18:u00:nfl_fh_list<>;, +12:u08:composed, +8:u04:334], +8:u03:334], +12:u07:composed, +8:u02:334], +17:u08:nfl_deviceid:, +12:u06:composed, +8:u01:334], +17:u07:nfl_deviceid:, +12:u14:composed, +12:u05:composed, +29:u08:nfsv4_1_file_layouthint4,, +8:u00:334], +17:u06:nfl_deviceid:, +13:u08:nfl_util:, +12:u13:composed, +12:u04:composed, +17:u05:nfl_deviceid:, +13:u07:nfl_util:, +12:u12:composed, +12:u03:composed, +29:u07:nfsv4_1_file_layouthint4,, +17:u04:nfl_deviceid:, +13:u06:nfl_util:, +12:u11:composed, +12:u02:composed, +29:u06:nfsv4_1_file_layouthint4,, +17:u03:nfl_deviceid:, +13:u05:nfl_util:, +12:u10:composed, +29:u14:nfsv4_1_file_layouthint4,, +12:u01:composed, +29:u05:nfsv4_1_file_layouthint4,, +17:u02:nfl_deviceid:, +13:u04:nfl_util:, +29:u13:nfsv4_1_file_layouthint4,, +12:u00:composed, +29:u04:nfsv4_1_file_layouthint4,, +17:u01:nfl_deviceid:, +13:u03:nfl_util:, +29:u12:nfsv4_1_file_layouthint4,, +29:u03:nfsv4_1_file_layouthint4,, +17:u00:nfl_deviceid:, +13:u02:nfl_util:, +29:u11:nfsv4_1_file_layouthint4,, +29:u02:nfsv4_1_file_layouthint4,, +13:u01:nfl_util:, +27:u08:nfl_first_stripe_index:, +29:u10:nfsv4_1_file_layouthint4,, +29:u01:nfsv4_1_file_layouthint4,, +13:u00:nfl_util:, +27:u07:nfl_first_stripe_index:, +29:u00:nfsv4_1_file_layouthint4,, +27:u06:nfl_first_stripe_index:, +23:u08:nfl_pattern_offset:, +14:u08:converting, +27:u05:nfl_first_stripe_index:, +23:u07:nfl_pattern_offset:, +27:u04:nfl_first_stripe_index:, +23:u06:nfl_pattern_offset:, +14:u07:converting, +27:u03:nfl_first_stripe_index:, +23:u05:nfl_pattern_offset:, +14:u06:converting, +27:u02:nfl_first_stripe_index:, +23:u04:nfl_pattern_offset:, +14:u14:converting, +14:u05:converting, +27:u01:nfl_first_stripe_index:, +23:u03:nfl_pattern_offset:, +12:u08:13.4.1)., +14:u13:converting, +10:uI2:'/(..,, +14:u04:converting, +27:u00:nfl_first_stripe_index:, +23:u02:nfl_pattern_offset:, +12:u07:13.4.1)., +9:u08:dense, +14:u12:converting, +10:uI1:'/(..,, +14:u03:converting, +23:u01:nfl_pattern_offset:, +12:u06:13.4.1)., +9:u07:dense, +11:u08:convert, +14:u11:converting, +10:uI0:'/(..,, +14:u02:converting, +23:u00:nfl_pattern_offset:, +12:u05:13.4.1)., +9:u06:dense, +11:u07:convert, +14:u10:converting, +14:u01:converting, +12:u04:13.4.1)., +9:u05:dense, +11:u06:convert, +14:u00:converting, +12:u03:13.4.1)., +9:u04:dense, +11:u05:convert, +12:u02:13.4.1)., +9:u03:dense, +11:u04:convert, +12:u01:13.4.1)., +9:u02:dense, +11:u03:convert, +12:u00:13.4.1)., +9:u01:dense, +11:u02:convert, +9:u00:dense, +11:u01:convert, +16:u08:nfl_fh_list:, +10:u08:array., +11:u00:convert, +16:u07:nfl_fh_list:, +10:u08:sparse, +16:u06:nfl_fh_list:, +10:u07:array., +16:u05:nfl_fh_list:, +10:u06:array., +10:u07:sparse, +15:u08:nfl_fh_list, +16:u04:nfl_fh_list:, +10:u14:array., +10:u05:array., +10:u06:sparse, +16:u03:nfl_fh_list:, +10:u13:array., +10:u14:sparse, +10:u04:array., +10:u05:sparse, +15:u07:nfl_fh_list, +16:u02:nfl_fh_list:, +9:u08:Zero., +10:u12:array., +10:u13:sparse, +10:u03:array., +10:u04:sparse, +15:u06:nfl_fh_list, +16:u01:nfl_fh_list:, +9:u07:Zero., +10:u11:array., +10:u12:sparse, +15:u14:nfl_fh_list, +8:u23:spar, +10:u02:array., +10:u03:sparse, +15:u05:nfl_fh_list, +16:u00:nfl_fh_list:, +9:u06:Zero., +10:u10:array., +10:u11:sparse, +15:u13:nfl_fh_list, +10:u01:array., +10:u02:sparse, +15:u04:nfl_fh_list, +9:u05:Zero., +10:u10:sparse, +15:u12:nfl_fh_list, +10:u00:array., +10:u01:sparse, +15:u03:nfl_fh_list, +9:u04:Zero., +15:u11:nfl_fh_list, +10:u00:sparse, +15:u02:nfl_fh_list, +9:u03:Zero., +8:u08:335], +15:u10:nfl_fh_list, +15:u01:nfl_fh_list, +9:u02:Zero., +8:u07:335], +15:u00:nfl_fh_list, +9:u01:Zero., +8:u06:335], +9:u00:Zero., +8:u05:335], +15:u08:filehandle:, +8:u04:335], +8:u08:One., +8:u03:335], +8:u07:One., +15:u07:filehandle:, +8:u02:335], +8:u06:One., +15:u06:filehandle:, +8:u01:335], +8:u05:One., +15:u14:filehandle:, +15:u05:filehandle:, +8:u00:335], +8:u04:One., +15:u13:filehandle:, +8:uI2::[]., +15:u04:filehandle:, +8:u03:One., +18:u08:nfl_fh_list[X], +15:u12:filehandle:, +8:uI1::[]., +15:u03:filehandle:, +8:u02:One., +18:u07:nfl_fh_list[X], +15:u11:filehandle:, +8:uI0::[]., +15:u02:filehandle:, +8:u01:One., +18:u06:nfl_fh_list[X], +15:u10:filehandle:, +15:u01:filehandle:, +8:u00:One., +18:u05:nfl_fh_list[X], +15:u00:filehandle:, +18:u04:nfl_fh_list[X], +53:u08:nflda_multipath_ds_list[nflda_stripe_indices[Y]],, +18:u03:nfl_fh_list[X], +18:u02:nfl_fh_list[X], +53:u07:nflda_multipath_ds_list[nflda_stripe_indices[Y]],, +18:u01:nfl_fh_list[X], +53:u06:nflda_multipath_ds_list[nflda_stripe_indices[Y]],, +16:u08:intersection, +18:u00:nfl_fh_list[X], +53:u14:nflda_multipath_ds_list[nflda_stripe_indices[y]],, +53:u05:nflda_multipath_ds_list[nflda_stripe_indices[Y]],, +52:u08:nflda_multipath_ds_list[nflda_stripe_indices[i]], +53:u13:nflda_multipath_ds_list[nflda_stripe_indices[y]],, +9:uI2:[[]],, +53:u04:nflda_multipath_ds_list[nflda_stripe_indices[Y]],, +16:u07:intersection, +52:u08:nflda_multipath_ds_list[nflda_stripe_indices[j]], +53:u12:nflda_multipath_ds_list[nflda_stripe_indices[y]],, +9:uI1:[[]],, +53:u03:nflda_multipath_ds_list[nflda_stripe_indices[Y]],, +16:u06:intersection, +52:u07:nflda_multipath_ds_list[nflda_stripe_indices[i]], +53:u11:nflda_multipath_ds_list[nflda_stripe_indices[y]],, +16:u14:intersection, +9:uI0:[[]],, +9:uI2:,(!),, +53:u02:nflda_multipath_ds_list[nflda_stripe_indices[Y]],, +16:u05:intersection, +52:u06:nflda_multipath_ds_list[nflda_stripe_indices[i]], +52:u07:nflda_multipath_ds_list[nflda_stripe_indices[j]], +18:u08:nfl_fh_list[i], +53:u10:nflda_multipath_ds_list[nflda_stripe_indices[y]],, +16:u13:intersection, +52:u14:nflda_multipath_ds_list[nflda_stripe_indices[i]], +9:uI1:,(!),, +53:u01:nflda_multipath_ds_list[nflda_stripe_indices[Y]],, +16:u04:intersection, +52:u05:nflda_multipath_ds_list[nflda_stripe_indices[i]], +52:u06:nflda_multipath_ds_list[nflda_stripe_indices[j]], +18:u07:nfl_fh_list[i], +16:u12:intersection, +52:u13:nflda_multipath_ds_list[nflda_stripe_indices[i]], +52:u14:nflda_multipath_ds_list[nflda_stripe_indices[j]], +9:uI0:,(!),, +8:uI2:[[]], +53:u00:nflda_multipath_ds_list[nflda_stripe_indices[Y]],, +16:u03:intersection, +52:u04:nflda_multipath_ds_list[nflda_stripe_indices[i]], +52:u05:nflda_multipath_ds_list[nflda_stripe_indices[j]], +18:u06:nfl_fh_list[i], +16:u11:intersection, +52:u12:nflda_multipath_ds_list[nflda_stripe_indices[i]], +52:u13:nflda_multipath_ds_list[nflda_stripe_indices[j]], +8:uI1:[[]], +16:u02:intersection, +52:u03:nflda_multipath_ds_list[nflda_stripe_indices[i]], +52:u04:nflda_multipath_ds_list[nflda_stripe_indices[j]], +11:u08:Indeed,, +18:u05:nfl_fh_list[i], +16:u10:intersection, +52:u11:nflda_multipath_ds_list[nflda_stripe_indices[i]], +52:u12:nflda_multipath_ds_list[nflda_stripe_indices[j]], +8:uI0:[[]], +16:u01:intersection, +52:u02:nflda_multipath_ds_list[nflda_stripe_indices[i]], +52:u03:nflda_multipath_ds_list[nflda_stripe_indices[j]], +18:u04:nfl_fh_list[i], +52:u10:nflda_multipath_ds_list[nflda_stripe_indices[i]], +52:u11:nflda_multipath_ds_list[nflda_stripe_indices[j]], +11:u14:appears, +16:u00:intersection, +52:u01:nflda_multipath_ds_list[nflda_stripe_indices[i]], +52:u02:nflda_multipath_ds_list[nflda_stripe_indices[j]], +11:u07:Indeed,, +18:u03:nfl_fh_list[i], +52:u10:nflda_multipath_ds_list[nflda_stripe_indices[j]], +11:u13:appears, +52:u00:nflda_multipath_ds_list[nflda_stripe_indices[i]], +52:u01:nflda_multipath_ds_list[nflda_stripe_indices[j]], +11:u06:Indeed,, +18:u02:nfl_fh_list[i], +11:u12:appears, +11:u14:indeed,, +52:u00:nflda_multipath_ds_list[nflda_stripe_indices[j]], +11:u05:Indeed,, +18:u01:nfl_fh_list[i], +11:u11:appears, +11:u13:indeed,, +11:u04:Indeed,, +18:u00:nfl_fh_list[i], +11:u10:appears, +11:u12:indeed,, +8:u23:Inde, +11:u03:Indeed,, +11:u11:indeed,, +11:u02:Indeed,, +11:u10:indeed,, +11:u01:Indeed,, +11:u00:Indeed,, +11:u08:13.4.1., +15:u08:Determining, +11:u07:13.4.1., +15:u07:Determining, +11:u06:13.4.1., +15:u06:Determining, +11:u14:13.4.1., +11:u05:13.4.1., +19:u08:relative_offset, +15:u05:Determining, +11:u13:13.4.1., +11:u04:13.4.1., +7:u08:SUi, +15:u04:Determining, +11:u12:13.4.1., +11:u14:logical, +11:u03:13.4.1., +19:u07:relative_offset, +15:u03:Determining, +11:u11:13.4.1., +11:u13:logical, +11:u02:13.4.1., +19:u06:relative_offset, +7:u07:SUi, +15:u02:Determining, +11:u10:13.4.1., +11:u12:logical, +19:u14:relative_offset, +11:u01:13.4.1., +19:u05:relative_offset, +7:u06:SUi, +15:u01:Determining, +11:u11:logical, +19:u13:relative_offset, +7:u14:sui, +6:uI2:-;, +11:u00:13.4.1., +19:u04:relative_offset, +7:u05:SUi, +15:u00:Determining, +8:u08:336], +11:u10:logical, +19:u12:relative_offset, +7:u13:sui, +6:uI1:-;, +8:uI2:(/);, +19:u03:relative_offset, +7:u04:SUi, +8:u07:336], +19:u11:relative_offset, +7:u12:sui, +7:u22:SUi, +7:u23:SUi, +6:uI0:-;, +8:uI1:(/);, +19:u02:relative_offset, +7:u03:SUi, +8:u06:336], +19:u10:relative_offset, +7:u11:sui, +8:uI0:(/);, +19:u01:relative_offset, +7:u02:SUi, +11:u08:13.4.2., +8:u05:336], +7:u10:sui, +19:u00:relative_offset, +7:u01:SUi, +8:u04:336], +7:u00:SUi, +11:u07:13.4.2., +8:u03:336], +11:u06:13.4.2., +8:u02:336], +11:u14:13.4.2., +11:u05:13.4.2., +16:u08:stripe_count, +8:u01:336], +5:u08:i, +11:u13:13.4.2., +11:u04:13.4.2., +5:u08:j, +8:u00:336], +5:u07:i, +11:u12:13.4.2., +11:u03:13.4.2., +16:u07:stripe_count, +7:u08:idx, +5:u06:i, +11:u11:13.4.2., +8:u14:unit, +11:u02:13.4.2., +16:u06:stripe_count, +5:u07:j, +12:u08:fh_count, +5:u05:i, +11:u10:13.4.2., +8:u13:unit, +16:u14:stripe_count, +11:u01:13.4.2., +16:u05:stripe_count, +5:u06:j, +7:u07:idx, +12:u08:ds_count, +5:u04:i, +8:u12:unit, +16:u13:stripe_count, +5:u14:j, +8:u23:unit, +11:u00:13.4.2., +16:u04:stripe_count, +5:u05:j, +7:u06:idx, +12:u07:fh_count, +5:u03:i, +8:u11:unit, +16:u12:stripe_count, +5:u13:j, +7:u14:idx, +16:u03:stripe_count, +5:u04:j, +7:u05:idx, +12:u06:fh_count, +12:u07:ds_count, +5:u02:i, +14:u08:(fh_count), +8:u10:unit, +16:u11:stripe_count, +5:u12:j, +7:u13:idx, +12:u14:fh_count, +5:u21:j, +5:u22:j, +5:u23:j, +16:u02:stripe_count, +5:u03:j, +7:u04:idx, +12:u05:fh_count, +12:u06:ds_count, +5:u01:i, +14:u07:(fh_count), +13:u08:ds_count:, +16:u10:stripe_count, +5:u11:j, +7:u12:idx, +12:u13:fh_count, +12:u14:ds_count, +7:u22:idx, +7:u23:idx, +16:u01:stripe_count, +5:u02:j, +7:u03:idx, +12:u04:fh_count, +12:u05:ds_count, +10:u08:break;, +5:u00:i, +14:u06:(fh_count), +13:u07:ds_count:, +5:u10:j, +7:u11:idx, +12:u12:fh_count, +12:u13:ds_count, +8:u23:fh_c, +16:u00:stripe_count, +5:u01:j, +7:u02:idx, +12:u03:fh_count, +12:u04:ds_count, +14:u05:(fh_count), +13:u06:ds_count:, +7:u10:idx, +12:u11:fh_count, +12:u12:ds_count, +6:u21:ds, +7:u22:ds_, +8:u23:ds_c, +5:u00:j, +7:u01:idx, +12:u02:fh_count, +12:u03:ds_count, +10:u07:break;, +14:u04:(fh_count), +13:u05:ds_count:, +12:u10:fh_count, +12:u11:ds_count, +6:u14:fh, +7:u00:idx, +12:u01:fh_count, +12:u02:ds_count, +10:u06:break;, +14:u03:(fh_count), +13:u04:ds_count:, +12:u10:ds_count, +6:u13:fh, +10:u14:break;, +12:u00:fh_count, +12:u01:ds_count, +10:u05:break;, +14:u02:(fh_count), +13:u03:ds_count:, +6:u12:fh, +10:u13:break;, +6:u22:fh, +6:u23:fh, +12:u00:ds_count, +10:u04:break;, +14:u01:(fh_count), +13:u02:ds_count:, +6:u08:0:, +6:u11:fh, +10:u12:break;, +7:u22:bre, +8:u23:brea, +10:u03:break;, +14:u00:(fh_count), +13:u01:ds_count:, +6:u07:0:, +6:u10:fh, +10:u11:break;, +10:u02:break;, +13:u00:ds_count:, +6:u06:0:, +10:u10:break;, +10:u01:break;, +9:u08:throw, +6:u05:0:, +10:u00:break;, +6:u04:0:, +9:u07:throw, +6:u03:0:, +9:u06:throw, +16:u08:address_list, +6:u02:0:, +9:u14:throw, +9:u05:throw, +6:u01:0:, +9:u13:throw, +9:u04:throw, +16:u07:address_list, +6:u00:0:, +9:u12:throw, +9:u03:throw, +16:u06:address_list, +9:u11:throw, +16:u14:address_list, +9:u02:throw, +16:u05:address_list, +9:u10:throw, +16:u13:address_list, +9:u01:throw, +16:u04:address_list, +12:u08:arranged, +16:u12:address_list, +9:u00:throw, +16:u03:address_list, +5:u08:{, +16:u11:address_list, +16:u02:address_list, +12:u07:arranged, +6:u08:A,, +16:u10:address_list, +16:u01:address_list, +12:u06:arranged, +5:u07:{, +6:u07:A,, +12:u14:arranged, +16:u00:address_list, +12:u05:arranged, +5:u06:{, +6:u06:A,, +12:u13:arranged, +5:u14:{, +12:u04:arranged, +5:u05:{, +6:u05:A,, +12:u12:arranged, +5:u13:{, +12:u03:arranged, +5:u04:{, +6:u04:A,, +8:u08:337], +12:u11:arranged, +5:u12:{, +5:u21:{, +5:u22:{, +5:u23:{, +12:u02:arranged, +5:u03:{, +6:u03:A,, +8:u07:337], +12:u10:arranged, +5:u11:{, +12:u01:arranged, +5:u02:{, +6:u02:A,, +8:u06:337], +5:u10:{, +12:u00:arranged, +5:u01:{, +6:u01:A,, +8:u05:337], +5:u00:{, +29:u08:nflda_multipath_ds_list<>, +6:u00:A,, +8:u04:337], +8:u03:337], +29:u07:nflda_multipath_ds_list<>, +30:u08:nflda_multipath_ds_list[0], +8:u02:337], +29:u06:nflda_multipath_ds_list<>, +30:u08:nflda_multipath_ds_list[1], +8:u01:337], +29:u14:nflda_multipath_ds_list<>, +29:u05:nflda_multipath_ds_list<>, +30:u07:nflda_multipath_ds_list[0], +30:u08:nflda_multipath_ds_list[2], +8:u00:337], +29:u13:nflda_multipath_ds_list<>, +9:u14:i.e.,, +29:u04:nflda_multipath_ds_list<>, +30:u06:nflda_multipath_ds_list[0], +30:u07:nflda_multipath_ds_list[1], +29:u12:nflda_multipath_ds_list<>, +9:u13:i.e.,, +30:u14:nflda_multipath_ds_list[0], +29:u03:nflda_multipath_ds_list<>, +30:u05:nflda_multipath_ds_list[0], +30:u06:nflda_multipath_ds_list[1], +30:u07:nflda_multipath_ds_list[2], +26:u08:nflda_stripe_indices<>, +29:u11:nflda_multipath_ds_list<>, +9:u12:i.e.,, +30:u13:nflda_multipath_ds_list[0], +30:u14:nflda_multipath_ds_list[1], +6:u21:i., +7:u22:i.e, +8:u23:i.e., +9:uI2:[],,,, +29:u02:nflda_multipath_ds_list<>, +30:u04:nflda_multipath_ds_list[0], +30:u05:nflda_multipath_ds_list[1], +30:u06:nflda_multipath_ds_list[2], +7:u08:Now, +29:u10:nflda_multipath_ds_list<>, +9:u11:i.e.,, +30:u12:nflda_multipath_ds_list[0], +30:u13:nflda_multipath_ds_list[1], +30:u14:nflda_multipath_ds_list[2], +9:uI1:[],,,, +29:u01:nflda_multipath_ds_list<>, +30:u03:nflda_multipath_ds_list[0], +30:u04:nflda_multipath_ds_list[1], +30:u05:nflda_multipath_ds_list[2], +26:u07:nflda_stripe_indices<>, +9:u10:i.e.,, +30:u11:nflda_multipath_ds_list[0], +30:u12:nflda_multipath_ds_list[1], +30:u13:nflda_multipath_ds_list[2], +9:uI0:[],,,, +29:u00:nflda_multipath_ds_list<>, +30:u02:nflda_multipath_ds_list[0], +30:u03:nflda_multipath_ds_list[1], +30:u04:nflda_multipath_ds_list[2], +26:u06:nflda_stripe_indices<>, +7:u07:Now, +26:u08:nfl_first_stripe_index, +30:u10:nflda_multipath_ds_list[0], +30:u11:nflda_multipath_ds_list[1], +30:u12:nflda_multipath_ds_list[2], +26:u14:nflda_stripe_indices<>, +30:u01:nflda_multipath_ds_list[0], +30:u02:nflda_multipath_ds_list[1], +30:u03:nflda_multipath_ds_list[2], +26:u05:nflda_stripe_indices<>, +7:u06:Now, +30:u10:nflda_multipath_ds_list[1], +30:u11:nflda_multipath_ds_list[2], +26:u13:nflda_stripe_indices<>, +7:u14:now, +30:u00:nflda_multipath_ds_list[0], +30:u01:nflda_multipath_ds_list[1], +30:u02:nflda_multipath_ds_list[2], +26:u04:nflda_stripe_indices<>, +7:u05:Now, +26:u07:nfl_first_stripe_index, +30:u10:nflda_multipath_ds_list[2], +26:u12:nflda_stripe_indices<>, +7:u13:now, +30:u00:nflda_multipath_ds_list[1], +30:u01:nflda_multipath_ds_list[2], +26:u03:nflda_stripe_indices<>, +7:u04:Now, +26:u06:nfl_first_stripe_index, +26:u11:nflda_stripe_indices<>, +7:u12:now, +26:u14:nfl_first_stripe_index, +7:u23:Now, +30:u00:nflda_multipath_ds_list[2], +26:u02:nflda_stripe_indices<>, +7:u03:Now, +26:u05:nfl_first_stripe_index, +26:u10:nflda_stripe_indices<>, +7:u11:now, +26:u13:nfl_first_stripe_index, +26:u01:nflda_stripe_indices<>, +7:u02:Now, +26:u04:nfl_first_stripe_index, +7:u10:now, +26:u12:nfl_first_stripe_index, +26:u00:nflda_stripe_indices<>, +7:u01:Now, +26:u03:nfl_first_stripe_index, +26:u11:nfl_first_stripe_index, +7:u00:Now, +26:u02:nfl_first_stripe_index, +26:u10:nfl_first_stripe_index, +26:u01:nfl_first_stripe_index, +26:u00:nfl_first_stripe_index, +27:u08:nflda_stripe_indices[2], +27:u07:nflda_stripe_indices[2], +27:u06:nflda_stripe_indices[2], +8:uI2:[()], +27:u05:nflda_stripe_indices[2], +8:uI1:[()], +18:u08:nfl_fh_list[1], +27:u04:nflda_stripe_indices[2], +8:uI0:[()], +27:u03:nflda_stripe_indices[2], +18:u07:nfl_fh_list[1], +27:u02:nflda_stripe_indices[2], +18:u06:nfl_fh_list[1], +27:u01:nflda_stripe_indices[2], +18:u14:nfl_fh_list[1], +18:u05:nfl_fh_list[1], +27:u00:nflda_stripe_indices[2], +18:u13:nfl_fh_list[1], +18:u04:nfl_fh_list[1], +8:u08:338], +18:u12:nfl_fh_list[1], +18:u03:nfl_fh_list[1], +8:u07:338], +18:u11:nfl_fh_list[1], +18:u02:nfl_fh_list[1], +8:u06:338], +18:u10:nfl_fh_list[1], +18:u01:nfl_fh_list[1], +8:u05:338], +18:u00:nfl_fh_list[1], +39:u08:+-----+------------+--------------+, +8:u04:338], +16:u08:destinations, +8:u03:338], +16:u07:destinations, +39:u07:+-----+------------+--------------+, +8:u02:338], +16:u06:destinations, +39:u06:+-----+------------+--------------+, +8:u01:338], +16:u05:destinations, +39:u14:+-----+------------+--------------+, +39:u05:+-----+------------+--------------+, +8:u00:338], +16:u04:destinations, +39:u13:+-----+------------+--------------+, +39:u04:+-----+------------+--------------+, +16:u03:destinations, +6:u08:87, +39:u12:+-----+------------+--------------+, +39:u03:+-----+------------+--------------+, +16:u02:destinations, +6:u07:87, +39:u11:+-----+------------+--------------+, +39:u02:+-----+------------+--------------+, +16:u01:destinations, +6:u06:87, +39:u10:+-----+------------+--------------+, +39:u01:+-----+------------+--------------+, +16:u00:destinations, +6:u05:87, +39:u00:+-----+------------+--------------+, +6:u04:87, +6:u03:87, +11:u08:A,B,C,D, +6:u02:87, +11:u07:A,B,C,D, +6:u01:87, +11:u06:A,B,C,D, +6:u00:87, +11:u05:A,B,C,D, +6:u08:67, +11:u04:A,B,C,D, +6:u07:67, +7:u08:F,G, +11:u03:A,B,C,D, +6:u06:67, +7:u07:F,G, +11:u02:A,B,C,D, +6:u05:67, +7:u06:F,G, +11:u01:A,B,C,D, +6:u04:67, +7:u05:F,G, +11:u00:A,B,C,D, +6:u03:67, +7:u04:F,G, +6:u02:67, +7:u03:F,G, +6:u01:67, +7:u02:F,G, +6:u00:67, +7:u01:F,G, +7:u00:F,G, +11:u08:13.4.3., +11:u07:13.4.3., +11:u06:13.4.3., +11:u14:13.4.3., +11:u05:13.4.3., +11:u13:13.4.3., +11:u04:13.4.3., +11:u12:13.4.3., +11:u03:13.4.3., +11:u11:13.4.3., +11:u02:13.4.3., +8:u08:339], +11:u10:13.4.3., +11:u01:13.4.3., +8:u07:339], +11:u00:13.4.3., +8:u06:339], +8:u05:339], +8:u04:339], +8:u03:339], +8:u02:339], +8:u01:339], +8:u00:339], +17:u08:stripe_count:, +17:u07:stripe_count:, +17:u06:stripe_count:, +17:u05:stripe_count:, +17:u04:stripe_count:, +17:u03:stripe_count:, +17:u02:stripe_count:, +17:u01:stripe_count:, +17:u00:stripe_count:, +11:u08:packing, +11:u07:packing, +11:u06:packing, +11:u14:packing, +11:u05:packing, +11:u13:packing, +7:uI2:,):, +11:u04:packing, +11:u12:packing, +7:uI1:,):, +11:u03:packing, +11:u11:packing, +7:uI0:,):, +11:u02:packing, +11:u10:packing, +11:u01:packing, +11:u00:packing, +8:u08:340], +8:u07:340], +8:u06:340], +8:u05:340], +8:u04:340], +8:u03:340], +8:u02:340], +8:u01:340], +8:u00:340], +15:u08:interesting, +15:u07:interesting, +15:u06:interesting, +15:u05:interesting, +8:u08:SU1,, +15:u04:interesting, +8:u07:SU1,, +15:u03:interesting, +8:u06:SU1,, +15:u02:interesting, +8:u05:SU1,, +15:u01:interesting, +8:u04:SU1,, +15:u00:interesting, +8:u03:SU1,, +8:u02:SU1,, +27:u08:nflda_stripe_indices[3], +8:u01:SU1,, +27:u07:nflda_stripe_indices[3], +8:u00:SU1,, +27:u06:nflda_stripe_indices[3], +27:u05:nflda_stripe_indices[3], +18:u08:nfl_fh_list[3], +27:u04:nflda_stripe_indices[3], +27:u03:nflda_stripe_indices[3], +18:u07:nfl_fh_list[3], +27:u02:nflda_stripe_indices[3], +18:u06:nfl_fh_list[3], +27:u01:nflda_stripe_indices[3], +8:u08:SU3,, +18:u14:nfl_fh_list[3], +18:u05:nfl_fh_list[3], +9:u08:0x37., +27:u00:nflda_stripe_indices[3], +8:u07:SU3,, +18:u13:nfl_fh_list[3], +18:u04:nfl_fh_list[3], +8:u06:SU3,, +18:u12:nfl_fh_list[3], +18:u03:nfl_fh_list[3], +9:u07:0x37., +8:u05:SU3,, +18:u11:nfl_fh_list[3], +11:uI2:,(),[]., +18:u02:nfl_fh_list[3], +9:u06:0x37., +8:u04:SU3,, +18:u10:nfl_fh_list[3], +9:u14:0x37., +11:uI1:,(),[]., +12:uI2:[],,,,[], +18:u01:nfl_fh_list[3], +9:u05:0x37., +8:u03:SU3,, +9:u13:0x37., +11:uI0:,(),[]., +12:uI1:[],,,,[], +10:uI2:.,,,,., +18:u00:nfl_fh_list[3], +9:u04:0x37., +8:u02:SU3,, +8:u08:341], +9:u12:0x37., +7:u22:0x3, +8:u23:0x37, +12:uI0:[],,,,[], +10:uI1:.,,,,., +9:u03:0x37., +8:u01:SU3,, +8:u07:341], +9:u11:0x37., +10:uI0:.,,,,., +9:u02:0x37., +8:u00:SU3,, +8:u06:341], +9:u10:0x37., +9:u01:0x37., +8:u05:341], +9:u00:0x37., +8:u04:341], +8:u03:341], +8:u02:341], +8:u01:341], +8:u00:341], +11:u08:13.4.4., +10:u08:Sparse, +11:u07:13.4.4., +10:u07:Sparse, +11:u06:13.4.4., +10:u06:Sparse, +11:u14:13.4.4., +11:u05:13.4.4., +10:u05:Sparse, +33:u08:nfsv4_1_file_layout_ds_addr4), +11:u13:13.4.4., +11:u04:13.4.4., +10:u04:Sparse, +33:u07:nfsv4_1_file_layout_ds_addr4), +11:u12:13.4.4., +11:u03:13.4.4., +10:u03:Sparse, +33:u06:nfsv4_1_file_layout_ds_addr4), +13:u08:packings:, +11:u11:13.4.4., +11:u02:13.4.4., +10:u02:Sparse, +33:u05:nfsv4_1_file_layout_ds_addr4), +13:u07:packings:, +11:u10:13.4.4., +11:u01:13.4.4., +10:u01:Sparse, +33:u04:nfsv4_1_file_layout_ds_addr4), +13:u06:packings:, +11:u00:13.4.4., +10:u00:Sparse, +33:u03:nfsv4_1_file_layout_ds_addr4), +13:u05:packings:, +12:u08:nfl_util, +15:u14:calculation, +33:u02:nfsv4_1_file_layout_ds_addr4), +13:u04:packings:, +12:u07:nfl_util, +15:u13:calculation, +33:u01:nfsv4_1_file_layout_ds_addr4), +13:u03:packings:, +12:u06:nfl_util, +15:u12:calculation, +33:u00:nfsv4_1_file_layout_ds_addr4), +13:u02:packings:, +12:u05:nfl_util, +15:u11:calculation, +13:u01:packings:, +12:u04:nfl_util, +15:u10:calculation, +13:u00:packings:, +12:u03:nfl_util, +10:u08:units,, +12:u02:nfl_util, +10:u07:units,, +12:u01:nfl_util, +10:u06:units,, +12:u00:nfl_util, +10:u05:units,, +10:u04:units,, +6:u08:0,, +10:u03:units,, +6:u07:0,, +10:u02:units,, +6:u06:0,, +9:u14:units, +11:u08:sparse., +10:u01:units,, +6:u05:0,, +9:u13:units, +13:uI2:,,,,...;', +10:u00:units,, +6:u04:0,, +9:u12:units, +13:uI1:,,,,...;', +11:u07:sparse., +6:u03:0,, +9:u11:units, +13:uI0:,,,,...;', +12:uI2:,,,,...., +11:u06:sparse., +6:u02:0,, +10:u08:holes,, +9:u10:units, +11:u14:sparse., +12:uI1:,,,,...., +11:u05:sparse., +6:u01:0,, +10:u07:holes,, +11:u13:sparse., +12:uI0:,,,,...., +11:u04:sparse., +6:u00:0,, +10:u06:holes,, +11:u12:sparse., +11:u03:sparse., +10:u05:holes,, +8:u08:342], +11:u11:sparse., +11:u02:sparse., +10:u04:holes,, +8:u07:342], +11:u10:sparse., +11:u01:sparse., +10:u03:holes,, +8:u06:342], +11:u00:sparse., +10:u02:holes,, +8:u05:342], +10:u01:holes,, +8:u04:342], +25:u08:NFS4ERR_PNFS_IO_HOLE., +10:u00:holes,, +8:u03:342], +8:u02:342], +25:u07:NFS4ERR_PNFS_IO_HOLE., +8:u01:342], +25:u06:NFS4ERR_PNFS_IO_HOLE., +8:u00:342], +25:u14:nfs4err_pnfs_io_hole., +25:u05:NFS4ERR_PNFS_IO_HOLE., +25:u13:nfs4err_pnfs_io_hole., +12:u14:striping, +25:u04:NFS4ERR_PNFS_IO_HOLE., +17:u08:(efficiently), +25:u12:nfs4err_pnfs_io_hole., +12:u13:striping, +25:u03:NFS4ERR_PNFS_IO_HOLE., +25:u11:nfs4err_pnfs_io_hole., +12:u12:striping, +25:u02:NFS4ERR_PNFS_IO_HOLE., +17:u07:(efficiently), +14:u08:read-ahead, +25:u10:nfs4err_pnfs_io_hole., +12:u11:striping, +25:u01:NFS4ERR_PNFS_IO_HOLE., +17:u06:(efficiently), +14:u07:read-ahead, +12:u10:striping, +17:u14:(efficiently), +25:u00:NFS4ERR_PNFS_IO_HOLE., +17:u05:(efficiently), +14:u06:read-ahead, +17:u13:(efficiently), +17:u04:(efficiently), +14:u05:read-ahead, +17:u12:(efficiently), +7:u22:(ef, +8:u23:(eff, +17:u03:(efficiently), +14:u04:read-ahead, +17:u11:(efficiently), +17:u02:(efficiently), +14:u03:read-ahead, +11:u08:Logical, +17:u10:(efficiently), +17:u01:(efficiently), +14:u02:read-ahead, +11:u07:Logical, +17:u00:(efficiently), +14:u01:read-ahead, +11:u06:Logical, +14:u00:read-ahead, +11:u05:Logical, +10:uI2:,,,..., +11:u04:Logical, +10:uI1:,,,..., +11:uI2:,,,...., +11:u03:Logical, +10:uI0:,,,..., +11:uI1:,,,...., +11:u02:Logical, +11:uI0:,,,...., +11:u01:Logical, +11:u00:Logical, +16:u08:stripe_width, +16:u07:stripe_width, +5:u08:N, +9:u14:dense, +16:u06:stripe_width, +20:u08:data_file_offset, +5:u07:N, +9:u13:dense, +16:u14:stripe_width, +16:u05:stripe_width, +5:u06:N, +9:u12:dense, +16:u13:stripe_width, +8:u23:dens, +6:uI2:*;, +16:u04:stripe_width, +20:u07:data_file_offset, +5:u05:N, +20:u08:stripe_unit_size, +9:u11:dense, +16:u12:stripe_width, +6:uI1:*;, +16:u03:stripe_width, +20:u06:data_file_offset, +5:u04:N, +20:u07:stripe_unit_size, +9:u10:dense, +16:u11:stripe_width, +20:u14:data_file_offset, +6:uI0:*;, +16:u02:stripe_width, +20:u05:data_file_offset, +5:u03:N, +20:u06:stripe_unit_size, +16:u10:stripe_width, +20:u13:data_file_offset, +16:u01:stripe_width, +20:u04:data_file_offset, +5:u02:N, +20:u05:stripe_unit_size, +20:u12:data_file_offset, +16:u00:stripe_width, +20:u03:data_file_offset, +5:u01:N, +20:u04:stripe_unit_size, +20:u11:data_file_offset, +20:u02:data_file_offset, +5:u00:N, +20:u03:stripe_unit_size, +20:u10:data_file_offset, +20:u01:data_file_offset, +20:u02:stripe_unit_size, +20:u00:data_file_offset, +20:u01:stripe_unit_size, +20:u00:stripe_unit_size, +10:u14:served, +10:u13:served, +7:uI2:;,,, +10:u12:served, +7:uI1:;,,, +8:u08:343], +10:u11:served, +7:uI0:;,,, +8:u07:343], +10:u10:served, +8:u06:343], +8:u05:343], +8:u04:343], +8:u03:343], +7:u08:(0), +8:u02:343], +8:u01:343], +8:uI2:),,,, +7:u07:(0), +8:u00:343], +8:uI1:),,,, +7:u06:(0), +7:u14:(0), +8:uI0:),,,, +7:u05:(0), +11:u08:scaling, +21:u08:Data-server-level, +7:u13:(0), +7:u04:(0), +21:u07:Data-server-level, +7:u12:(0), +7:u22:(0), +7:u23:(0), +7:u03:(0), +11:u07:scaling, +21:u06:Data-server-level, +7:u11:(0), +7:u02:(0), +11:u06:scaling, +21:u05:Data-server-level, +7:u10:(0), +11:u14:scaling, +7:u01:(0), +11:u05:scaling, +21:u04:Data-server-level, +11:u13:scaling, +7:u00:(0), +11:u04:scaling, +21:u03:Data-server-level, +11:u12:scaling, +11:u03:scaling, +27:u08:nflda_multipath_ds_list, +21:u02:Data-server-level, +11:u11:scaling, +11:u02:scaling, +21:u01:Data-server-level, +11:u10:scaling, +11:u01:scaling, +27:u07:nflda_multipath_ds_list, +21:u00:Data-server-level, +11:u00:scaling, +27:u06:nflda_multipath_ds_list, +27:u14:nflda_multipath_ds_list, +27:u05:nflda_multipath_ds_list, +27:u13:nflda_multipath_ds_list, +27:u04:nflda_multipath_ds_list, +27:u12:nflda_multipath_ds_list, +27:u03:nflda_multipath_ds_list, +27:u11:nflda_multipath_ds_list, +27:u02:nflda_multipath_ds_list, +27:u10:nflda_multipath_ds_list, +27:u01:nflda_multipath_ds_list, +27:u00:nflda_multipath_ds_list, +13:u08:failover,, +13:u07:failover,, +13:u06:failover,, +13:u05:failover,, +13:u04:failover,, +9:uI2:----,, +13:u03:failover,, +13:u08:mappings., +9:uI1:----,, +13:u02:failover,, +13:u07:mappings., +9:uI0:----,, +13:u01:failover,, +13:u06:mappings., +13:u00:failover,, +13:u05:mappings., +13:u04:mappings., +31:u08:device-ID-to-device-address, +13:u03:mappings., +31:u07:device-ID-to-device-address, +13:u02:mappings., +31:u06:device-ID-to-device-address, +18:u08:GETDEVICEINFO., +13:u01:mappings., +31:u05:device-ID-to-device-address, +13:u00:mappings., +31:u04:device-ID-to-device-address, +18:u07:GETDEVICEINFO., +28:u08:nflda_multipath_ds_list,, +31:u03:device-ID-to-device-address, +18:u06:GETDEVICEINFO., +31:u02:device-ID-to-device-address, +18:u14:getdeviceinfo., +18:u05:GETDEVICEINFO., +28:u07:nflda_multipath_ds_list,, +31:u01:device-ID-to-device-address, +18:u13:getdeviceinfo., +18:u04:GETDEVICEINFO., +28:u06:nflda_multipath_ds_list,, +31:u00:device-ID-to-device-address, +18:u12:getdeviceinfo., +28:u14:nflda_multipath_ds_list,, +18:u03:GETDEVICEINFO., +28:u05:nflda_multipath_ds_list,, +18:u11:getdeviceinfo., +28:u13:nflda_multipath_ds_list,, +18:u02:GETDEVICEINFO., +28:u04:nflda_multipath_ds_list,, +18:u10:getdeviceinfo., +28:u12:nflda_multipath_ds_list,, +18:u01:GETDEVICEINFO., +28:u03:nflda_multipath_ds_list,, +28:u11:nflda_multipath_ds_list,, +18:u00:GETDEVICEINFO., +28:u02:nflda_multipath_ds_list,, +28:u10:nflda_multipath_ds_list,, +28:u01:nflda_multipath_ds_list,, +8:u08:344], +28:u00:nflda_multipath_ds_list,, +8:u07:344], +8:u06:344], +8:u05:344], +8:u04:344], +14:u08:read-only,, +8:u03:344], +8:u02:344], +14:u07:read-only,, +8:u01:344], +14:u06:read-only,, +8:u00:344], +14:u14:read-only,, +14:u05:read-only,, +14:u13:read-only,, +14:u04:read-only,, +14:u12:read-only,, +14:u03:read-only,, +14:u11:read-only,, +8:u14:null, +14:u02:read-only,, +14:u10:read-only,, +8:u13:null, +14:u01:read-only,, +8:u12:null, +6:u21:NU, +7:u22:NUL, +8:u23:NULL, +14:u00:read-only,, +8:u11:null, +8:u10:null, +15:u08:data-server, +11:u14:layout., +15:u07:data-server, +11:u13:layout., +15:u06:data-server, +11:u08:layout;, +11:u12:layout., +15:u14:data-server, +15:u05:data-server, +11:u07:layout;, +11:u11:layout., +15:u13:data-server, +10:uI2:-/...,, +15:u04:data-server, +11:u06:layout;, +11:u10:layout., +15:u12:data-server, +10:uI1:-/...,, +15:u03:data-server, +31:u08:EXCHGID4_FLAG_USE_NON_PNFS), +11:u05:layout;, +15:u11:data-server, +10:uI0:-/...,, +7:uI2:;/., +15:u02:data-server, +11:u04:layout;, +15:u10:data-server, +7:uI1:;/., +15:u01:data-server, +31:u07:EXCHGID4_FLAG_USE_NON_PNFS), +11:u03:layout;, +7:uI0:;/., +8:uI2:..,(, +15:u00:data-server, +31:u06:EXCHGID4_FLAG_USE_NON_PNFS), +11:u02:layout;, +11:u08:subsets, +31:u14:exchgid4_flag_use_non_pnfs), +8:uI1:..,(, +31:u05:EXCHGID4_FLAG_USE_NON_PNFS), +18:u08:personalities,, +11:u01:layout;, +11:u07:subsets, +31:u13:exchgid4_flag_use_non_pnfs), +8:uI0:..,(, +8:uI2:).--, +31:u04:EXCHGID4_FLAG_USE_NON_PNFS), +11:u00:layout;, +11:u06:subsets, +31:u12:exchgid4_flag_use_non_pnfs), +8:uI1:).--, +31:u03:EXCHGID4_FLAG_USE_NON_PNFS), +18:u07:personalities,, +11:u05:subsets, +31:u11:exchgid4_flag_use_non_pnfs), +8:uI0:).--, +31:u02:EXCHGID4_FLAG_USE_NON_PNFS), +18:u06:personalities,, +11:u04:subsets, +31:u10:exchgid4_flag_use_non_pnfs), +18:u14:personalities,, +31:u01:EXCHGID4_FLAG_USE_NON_PNFS), +18:u05:personalities,, +11:u03:subsets, +18:u13:personalities,, +31:u00:EXCHGID4_FLAG_USE_NON_PNFS), +18:u04:personalities,, +12:u08:classes:, +11:u02:subsets, +18:u12:personalities,, +18:u03:personalities,, +11:u01:subsets, +18:u11:personalities,, +18:u02:personalities,, +12:u07:classes:, +15:u08:assignment., +11:u00:subsets, +18:u10:personalities,, +18:u01:personalities,, +12:u06:classes:, +12:u14:classes:, +18:u00:personalities,, +12:u05:classes:, +15:u07:assignment., +17:u08:Additionally,, +12:u13:classes:, +12:u04:classes:, +15:u06:assignment., +17:u07:Additionally,, +12:u12:classes:, +15:u14:assignment., +12:u03:classes:, +15:u05:assignment., +17:u06:Additionally,, +12:u11:classes:, +15:u13:assignment., +12:u02:classes:, +15:u04:assignment., +17:u05:Additionally,, +12:u10:classes:, +15:u12:assignment., +12:u01:classes:, +15:u03:assignment., +17:u04:Additionally,, +8:u08:345], +15:u11:assignment., +12:u00:classes:, +15:u02:assignment., +17:u03:Additionally,, +8:u07:345], +15:u10:assignment., +15:u01:assignment., +17:u02:Additionally,, +8:u06:345], +15:u00:assignment., +17:u01:Additionally,, +8:u05:345], +17:u00:Additionally,, +8:u04:345], +8:u03:345], +8:u02:345], +8:u01:345], +8:u00:345], +19:u08:non-data-server, +12:uI2:-"",..),, +18:u08:personalities., +12:uI1:-"",..),, +19:u07:non-data-server, +16:u08:personality., +18:u07:personalities., +12:uI0:-"",..),, +19:u06:non-data-server, +18:u06:personalities., +19:u14:non-data-server, +19:u05:non-data-server, +16:u07:personality., +18:u05:personalities., +19:u13:non-data-server, +19:u04:non-data-server, +16:u06:personality., +18:u04:personalities., +19:u12:non-data-server, +16:u14:personality., +19:u03:non-data-server, +16:u05:personality., +18:u03:personalities., +19:u11:non-data-server, +16:u13:personality., +7:uI2:.-/, +19:u02:non-data-server, +16:u04:personality., +18:u02:personalities., +19:u10:non-data-server, +16:u12:personality., +7:uI1:.-/, +19:u01:non-data-server, +16:u03:personality., +18:u01:personalities., +16:u11:personality., +7:uI0:.-/, +19:u00:non-data-server, +16:u02:personality., +18:u00:personalities., +16:u10:personality., +16:u01:personality., +16:u00:personality., +16:u08:incompatible, +16:u07:incompatible, +8:u08:acts, +16:u06:incompatible, +15:u08:personality, +16:u05:incompatible, +8:u07:acts, +16:u04:incompatible, +10:u08:ceases, +8:u06:acts, +15:u07:personality, +16:u03:incompatible, +10:u07:ceases, +8:u14:acts, +8:u05:acts, +15:u06:personality, +16:u02:incompatible, +10:u06:ceases, +8:u13:acts, +15:u14:personality, +8:u04:acts, +15:u05:personality, +21:u08:NFS4ERR_BADHANDLE, +16:u01:incompatible, +10:u05:ceases, +8:u12:acts, +15:u13:personality, +8:u23:acts, +8:u03:acts, +15:u04:personality, +16:u00:incompatible, +10:u04:ceases, +8:u11:acts, +15:u12:personality, +8:u02:acts, +15:u03:personality, +21:u07:NFS4ERR_BADHANDLE, +10:u03:ceases, +8:u10:acts, +15:u11:personality, +8:u01:acts, +15:u02:personality, +21:u06:NFS4ERR_BADHANDLE, +10:u02:ceases, +15:u10:personality, +21:u14:nfs4err_badhandle, +8:u00:acts, +15:u01:personality, +21:u05:NFS4ERR_BADHANDLE, +10:u01:ceases, +21:u13:nfs4err_badhandle, +15:u00:personality, +21:u04:NFS4ERR_BADHANDLE, +10:u00:ceases, +21:u12:nfs4err_badhandle, +21:u03:NFS4ERR_BADHANDLE, +14:u08:henceforth, +21:u11:nfs4err_badhandle, +21:u02:NFS4ERR_BADHANDLE, +21:u10:nfs4err_badhandle, +21:u01:NFS4ERR_BADHANDLE, +14:u07:henceforth, +21:u00:NFS4ERR_BADHANDLE, +14:u06:henceforth, +14:u14:henceforth, +14:u05:henceforth, +17:u08:NFS4ERR_STALE, +14:u13:henceforth, +14:u04:henceforth, +14:u12:henceforth, +7:u22:hen, +8:u23:henc, +14:u03:henceforth, +17:u07:NFS4ERR_STALE, +14:u11:henceforth, +14:u02:henceforth, +17:u06:NFS4ERR_STALE, +14:u10:henceforth, +17:u14:nfs4err_stale, +14:u01:henceforth, +17:u05:NFS4ERR_STALE, +17:u13:nfs4err_stale, +14:u00:henceforth, +17:u04:NFS4ERR_STALE, +17:u12:nfs4err_stale, +17:u03:NFS4ERR_STALE, +17:u11:nfs4err_stale, +17:u02:NFS4ERR_STALE, +17:u10:nfs4err_stale, +17:u01:NFS4ERR_STALE, +17:u00:NFS4ERR_STALE, +8:u08:346], +8:u07:346], +8:u06:346], +8:u05:346], +8:u08:pick, +8:u04:346], +8:u03:346], +8:u07:pick, +8:u02:346], +8:u06:pick, +8:u01:346], +8:u14:pick, +8:u05:pick, +8:u00:346], +8:u13:pick, +8:u04:pick, +8:u12:pick, +6:u21:pi, +7:u22:pic, +8:u23:pick, +8:u03:pick, +8:u11:pick, +8:u02:pick, +8:u10:pick, +8:u01:pick, +13:u08:intended., +8:u00:pick, +13:u07:intended., +13:u06:intended., +13:u14:intended., +13:u05:intended., +13:u13:intended., +13:u04:intended., +13:u12:intended., +13:u03:intended., +13:u11:intended., +13:u02:intended., +13:u10:intended., +13:u01:intended., +13:u00:intended., +11:uI2:(...).., +10:u08:commit, +11:uI1:(...).., +11:uI0:(...).., +10:u07:commit, +9:u08:(data, +10:u06:commit, +10:u14:commit, +10:u05:commit, +9:u07:(data, +10:u13:commit, +29:u14:nfl4_uflg_commit_thru_mds, +10:u04:commit, +9:u06:(data, +10:u12:commit, +29:u13:nfl4_uflg_commit_thru_mds, +9:u14:(data, +10:u03:commit, +9:u05:(data, +10:u08:styles, +10:u11:commit, +29:u12:nfl4_uflg_commit_thru_mds, +9:u13:(data, +10:u02:commit, +9:u04:(data, +10:u10:commit, +29:u11:nfl4_uflg_commit_thru_mds, +9:u12:(data, +7:u22:(da, +8:u23:(dat, +10:u01:commit, +9:u03:(data, +10:u07:styles, +29:u10:nfl4_uflg_commit_thru_mds, +9:u11:(data, +10:u00:commit, +9:u02:(data, +10:u06:styles, +9:u10:(data, +10:u14:styles, +9:u01:(data, +10:u05:styles, +10:u13:styles, +9:u00:(data, +10:u04:styles, +10:u12:styles, +10:u03:styles, +10:u11:styles, +10:u02:styles, +10:u10:styles, +10:u01:styles, +10:u00:styles, +13:u08:detriment, +13:u07:detriment, +13:u06:detriment, +13:u14:detriment, +13:u05:detriment, +13:u13:detriment, +13:u04:detriment, +8:u08:347], +13:u12:detriment, +8:u23:detr, +13:u03:detriment, +8:u07:347], +13:u11:detriment, +13:u02:detriment, +8:u06:347], +13:u10:detriment, +13:u01:detriment, +8:u05:347], +13:u00:detriment, +11:u08:COMMIT., +8:u04:347], +8:u03:347], +11:u07:COMMIT., +8:u02:347], +11:u06:COMMIT., +8:u01:347], +11:u14:commit., +11:u05:COMMIT., +8:u00:347], +11:u13:commit., +11:u04:COMMIT., +11:u12:commit., +11:u03:COMMIT., +11:u11:commit., +11:u02:COMMIT., +11:u10:commit., +11:u01:COMMIT., +11:u00:COMMIT., +15:u08:uncommitted, +15:u07:uncommitted, +15:u06:uncommitted, +15:u14:uncommitted, +15:u05:uncommitted, +15:u13:uncommitted, +15:u04:uncommitted, +15:u12:uncommitted, +15:u03:uncommitted, +15:u11:uncommitted, +15:u02:uncommitted, +15:u10:uncommitted, +15:u01:uncommitted, +15:u00:uncommitted, +13:u08:resending, +13:u07:resending, +13:u06:resending, +13:u14:resending, +13:u05:resending, +13:u13:resending, +13:u04:resending, +13:u12:resending, +18:u14:alternatively,, +13:u03:resending, +13:u11:resending, +18:u13:alternatively,, +13:u02:resending, +13:u10:resending, +18:u12:alternatively,, +13:u01:resending, +18:u11:alternatively,, +13:u00:resending, +10:u08:12.7.6, +18:u10:alternatively,, +10:u07:12.7.6, +10:u06:12.7.6, +10:u05:12.7.6, +10:u04:12.7.6, +10:u03:12.7.6, +13:u14:servicing, +10:u02:12.7.6, +13:u13:servicing, +10:u01:12.7.6, +13:u12:servicing, +10:u00:12.7.6, +13:u11:servicing, +13:u10:servicing, +8:u08:I/O., +8:u07:I/O., +8:u06:I/O., +8:u05:I/O., +8:u08:348], +8:u04:I/O., +8:u07:348], +8:u03:I/O., +8:u06:348], +8:u02:I/O., +8:u05:348], +8:u01:I/O., +8:u04:348], +8:u00:I/O., +8:u03:348], +8:u08:not., +11:u08:13.9.1., +8:u02:348], +8:u07:not., +8:u01:348], +8:u06:not., +11:u07:13.9.1., +8:u00:348], +8:u05:not., +11:u06:13.9.1., +8:u04:not., +11:u14:13.9.1., +11:u05:13.9.1., +8:u03:not., +13:u08:Permitted, +11:u13:13.9.1., +11:u04:13.9.1., +8:u02:not., +13:u07:Permitted, +11:u12:13.9.1., +11:u03:13.9.1., +8:u01:not., +13:u06:Permitted, +11:u11:13.9.1., +11:u02:13.9.1., +8:u00:not., +13:u05:Permitted, +25:u08:open_read_delegation4, +11:u10:13.9.1., +11:u01:13.9.1., +13:u04:Permitted, +25:u07:open_read_delegation4, +11:u00:13.9.1., +13:u03:Permitted, +25:u06:open_read_delegation4, +7:uI2:),(, +13:u02:Permitted, +25:u05:open_read_delegation4, +7:uI1:),(, +13:u01:Permitted, +25:u04:open_read_delegation4, +7:uI0:),(, +13:u00:Permitted, +25:u03:open_read_delegation4, +25:u02:open_read_delegation4, +25:u01:open_read_delegation4, +25:u00:open_read_delegation4, +15:u08:propagated,, +13:u14:propagate, +7:u08:act, +13:u13:propagate, +15:u07:propagated,, +13:u12:propagate, +15:u06:propagated,, +7:u07:act, +13:u11:propagate, +15:u14:propagated,, +15:u05:propagated,, +7:u06:act, +13:u10:propagate, +15:u13:propagated,, +7:u14:act, +15:u04:propagated,, +7:u05:act, +15:u12:propagated,, +7:u13:act, +15:u03:propagated,, +7:u04:act, +15:u11:propagated,, +7:u12:act, +7:u23:act, +15:u02:propagated,, +7:u03:act, +15:u10:propagated,, +7:u11:act, +15:u01:propagated,, +7:u02:act, +7:u10:act, +15:u00:propagated,, +7:u01:act, +7:u00:act, +8:u08:349], +8:u07:349], +8:u06:349], +8:u05:349], +8:u04:349], +8:u03:349], +8:u02:349], +8:u01:349], +15:u08:lock-owner., +8:u00:349], +15:u07:lock-owner., +11:u08:13.9.2., +15:u06:lock-owner., +15:u05:lock-owner., +11:u07:13.9.2., +15:u04:lock-owner., +11:u06:13.9.2., +15:u03:lock-owner., +11:u14:13.9.2., +11:u05:13.9.2., +15:u02:lock-owner., +11:u13:13.9.2., +11:u04:13.9.2., +15:u01:lock-owner., +11:u12:13.9.2., +11:u03:13.9.2., +13:u08:complete,, +15:u00:lock-owner., +11:u11:13.9.2., +11:u02:13.9.2., +11:u10:13.9.2., +11:u01:13.9.2., +13:u07:complete,, +11:u00:13.9.2., +13:u06:complete,, +13:u14:complete,, +13:u05:complete,, +13:u13:complete,, +13:u04:complete,, +13:u12:complete,, +13:u03:complete,, +13:u11:complete,, +13:u02:complete,, +13:u10:complete,, +13:u01:complete,, +13:u08:13.9.2.1., +13:u00:complete,, +13:u07:13.9.2.1., +13:u06:13.9.2.1., +13:u14:13.9.2.1., +13:u05:13.9.2.1., +11:u08:caller., +13:u13:13.9.2.1., +13:u04:13.9.2.1., +13:u12:13.9.2.1., +13:u03:13.9.2.1., +11:u07:caller., +13:u11:13.9.2.1., +13:u02:13.9.2.1., +11:u06:caller., +13:u10:13.9.2.1., +11:u14:caller., +13:u01:13.9.2.1., +11:u05:caller., +11:u13:caller., +13:u00:13.9.2.1., +11:u04:caller., +11:u12:caller., +11:u03:caller., +11:u11:caller., +11:u02:caller., +11:u10:caller., +8:u23:thou, +11:u01:caller., +15:u08:privileges,, +11:u00:caller., +10:u14:reason, +15:u07:privileges,, +10:u13:reason, +15:u06:privileges,, +10:u12:reason, +15:u14:privileges,, +15:u05:privileges,, +10:u11:reason, +15:u13:privileges,, +15:u04:privileges,, +10:u10:reason, +15:u12:privileges,, +15:u03:privileges,, +15:u11:privileges,, +15:u02:privileges,, +16:u08:propagation., +15:u10:privileges,, +15:u01:privileges,, +15:u00:privileges,, +16:u07:propagation., +16:u06:propagation., +16:u14:propagation., +16:u05:propagation., +8:u08:350], +16:u13:propagation., +16:u04:propagation., +8:u07:350], +16:u12:propagation., +16:u03:propagation., +8:u06:350], +16:u11:propagation., +16:u02:propagation., +8:u05:350], +16:u10:propagation., +16:u01:propagation., +8:u04:350], +16:u00:propagation., +8:u03:350], +8:u02:350], +8:u01:350], +13:u08:13.9.2.2., +8:u00:350], +10:u14:covers, +13:u07:13.9.2.2., +10:u13:covers, +13:u06:13.9.2.2., +11:u08:mode(s), +10:u12:covers, +13:u14:13.9.2.2., +13:u05:13.9.2.2., +11:u07:mode(s), +10:u11:covers, +13:u13:13.9.2.2., +13:u04:13.9.2.2., +11:u06:mode(s), +10:u10:covers, +13:u12:13.9.2.2., +13:u03:13.9.2.2., +11:u05:mode(s), +13:u11:13.9.2.2., +8:u23:Open, +13:u02:13.9.2.2., +11:u04:mode(s), +13:u10:13.9.2.2., +13:u01:13.9.2.2., +11:u03:mode(s), +13:u00:13.9.2.2., +13:u08:13.9.2.3., +11:u02:mode(s), +15:u08:relaxation., +11:u01:mode(s), +15:u07:relaxation., +13:u07:13.9.2.3., +11:u00:mode(s), +15:u06:relaxation., +13:u06:13.9.2.3., +15:u05:relaxation., +13:u14:13.9.2.3., +13:u05:13.9.2.3., +15:u04:relaxation., +13:u13:13.9.2.3., +13:u04:13.9.2.3., +15:u03:relaxation., +13:u12:13.9.2.3., +13:u03:13.9.2.3., +15:u02:relaxation., +13:u11:13.9.2.3., +13:u02:13.9.2.3., +15:u01:relaxation., +13:u10:13.9.2.3., +13:u01:13.9.2.3., +15:u00:relaxation., +13:u00:13.9.2.3., +20:u08:synchronization., +8:uI2:..-,, +8:uI1:..-,, +20:u07:synchronization., +8:uI0:..-,, +20:u06:synchronization., +20:u14:synchronization., +20:u05:synchronization., +9:u08:query, +20:u13:synchronization., +20:u04:synchronization., +9:u07:query, +20:u12:synchronization., +20:u03:synchronization., +9:u06:query, +20:u11:synchronization., +20:u02:synchronization., +9:u05:query, +20:u10:synchronization., +20:u01:synchronization., +9:u04:query, +20:u00:synchronization., +9:u03:query, +9:u02:query, +9:u01:query, +9:u00:query, +7:uI2:),', +8:u08:351], +7:uI1:),', +8:u07:351], +7:uI0:),', +8:u06:351], +8:u05:351], +8:u04:351], +8:u03:351], +8:u02:351], +8:u01:351], +8:u00:351], +12:u08:updates,, +12:u07:updates,, +12:u06:updates,, +12:u05:updates,, +18:u14:synchronously., +12:u04:updates,, +18:u13:synchronously., +12:u03:updates,, +18:u12:synchronously., +12:u02:updates,, +18:u11:synchronously., +12:u01:updates,, +18:u10:synchronously., +12:u00:updates,, +10:u08:zeroes, +10:u07:zeroes, +10:u06:zeroes, +10:u05:zeroes, +10:u04:zeroes, +10:u03:zeroes, +10:u02:zeroes, +10:u01:zeroes, +10:u00:zeroes, +8:u08:hole, +8:u07:hole, +8:u06:hole, +14:u08:semantics;, +8:u14:hole, +8:u05:hole, +8:u13:hole, +8:u04:hole, +14:u07:semantics;, +8:u12:hole, +8:u23:hole, +8:u03:hole, +14:u06:semantics;, +8:u11:hole, +14:u14:semantics;, +8:u02:hole, +14:u05:semantics;, +8:u10:hole, +14:u13:semantics;, +8:u01:hole, +14:u04:semantics;, +14:u12:semantics;, +8:u00:hole, +14:u03:semantics;, +14:u11:semantics;, +14:u02:semantics;, +14:u10:semantics;, +14:u01:semantics;, +14:u00:semantics;, +8:u08:352], +8:u07:352], +8:u06:352], +8:u05:352], +8:u04:352], +8:u03:352], +8:u02:352], +8:u01:352], +8:u00:352], +8:uI2:,/-., +8:uI1:,/-., +8:uI0:,/-., +11:u08:Fencing, +11:u07:Fencing, +11:u06:Fencing, +11:u05:Fencing, +13:u14:procedure, +11:u04:Fencing, +27:u08:NFS4ERR_PNFS_NO_LAYOUT., +14:u08:performed;, +13:u13:procedure, +6:u21:Fe, +7:u22:Fen, +8:u23:Fenc, +11:u03:Fencing, +17:u08:additionally,, +14:u07:performed;, +13:u12:procedure, +11:u02:Fencing, +27:u07:NFS4ERR_PNFS_NO_LAYOUT., +14:u06:performed;, +13:u11:procedure, +11:u01:Fencing, +27:u06:NFS4ERR_PNFS_NO_LAYOUT., +17:u07:additionally,, +14:u05:performed;, +13:u10:procedure, +27:u14:nfs4err_pnfs_no_layout., +7:uI2:;,/, +11:u00:Fencing, +27:u05:NFS4ERR_PNFS_NO_LAYOUT., +17:u06:additionally,, +14:u04:performed;, +27:u13:nfs4err_pnfs_no_layout., +17:u14:additionally,, +7:uI1:;,/, +27:u04:NFS4ERR_PNFS_NO_LAYOUT., +17:u05:additionally,, +14:u03:performed;, +10:u08:13.3)., +27:u12:nfs4err_pnfs_no_layout., +17:u13:additionally,, +7:uI0:;,/, +27:u03:NFS4ERR_PNFS_NO_LAYOUT., +17:u04:additionally,, +14:u02:performed;, +10:u07:13.3)., +27:u11:nfs4err_pnfs_no_layout., +17:u12:additionally,, +27:u02:NFS4ERR_PNFS_NO_LAYOUT., +17:u03:additionally,, +14:u01:performed;, +10:u06:13.3)., +27:u10:nfs4err_pnfs_no_layout., +17:u11:additionally,, +27:u01:NFS4ERR_PNFS_NO_LAYOUT., +17:u02:additionally,, +14:u00:performed;, +10:u05:13.3)., +17:u10:additionally,, +27:u00:NFS4ERR_PNFS_NO_LAYOUT., +17:u01:additionally,, +10:u04:13.3)., +17:u00:additionally,, +13:u08:contacted, +10:u03:13.3)., +7:u22:Bef, +8:u23:Befo, +10:u02:13.3)., +13:u07:contacted, +10:u01:13.3)., +13:u06:contacted, +10:u00:13.3)., +13:u14:contacted, +13:u05:contacted, +13:u13:contacted, +13:u04:contacted, +11:u08:anyway), +13:u12:contacted, +13:u03:contacted, +13:u11:contacted, +13:u02:contacted, +11:u07:anyway), +13:u10:contacted, +13:u01:contacted, +11:u06:anyway), +11:u14:anyway), +13:u00:contacted, +11:u05:anyway), +12:u08:outlined, +11:u13:anyway), +11:u04:anyway), +12:u07:outlined, +11:u12:anyway), +8:u23:anyw, +11:u03:anyway), +12:u06:outlined, +11:u11:anyway), +11:u02:anyway), +12:u05:outlined, +11:u10:anyway), +11:u01:anyway), +12:u04:outlined, +11:u00:anyway), +12:u03:outlined, +12:u02:outlined, +12:u01:outlined, +12:u00:outlined, +8:u08:353], +8:u07:353], +8:u06:353], +8:u05:353], +8:u04:353], +8:u03:353], +8:u02:353], +12:u08:servers;, +8:u01:353], +12:u07:servers;, +8:u00:353], +12:u06:servers;, +12:u05:servers;, +12:u04:servers;, +12:u03:servers;, +13:u08:RPC-based, +12:u02:servers;, +12:u01:servers;, +13:u07:RPC-based, +12:u00:servers;, +12:u08:1.8.2.2), +13:u06:RPC-based, +12:u07:1.8.2.2), +13:u14:rpc-based, +13:u05:RPC-based, +12:u06:1.8.2.2), +14:u08:parameters, +13:u13:rpc-based, +8:uI2:-(.., +13:u04:RPC-based, +12:u05:1.8.2.2), +14:u07:parameters, +13:u12:rpc-based, +8:u23:RPC-, +8:uI1:-(.., +13:u03:RPC-based, +12:u04:1.8.2.2), +14:u06:parameters, +13:u11:rpc-based, +8:uI0:-(.., +13:u02:RPC-based, +12:u03:1.8.2.2), +14:u05:parameters, +13:u10:rpc-based, +13:u01:RPC-based, +14:u08:identifier, +12:u02:1.8.2.2), +14:u04:parameters, +13:u00:RPC-based, +12:u01:1.8.2.2), +14:u03:parameters, +14:u07:identifier, +12:u00:1.8.2.2), +14:u02:parameters, +14:u06:identifier, +14:u01:parameters, +14:u14:identifier, +14:u05:identifier, +14:u00:parameters, +14:u13:identifier, +14:u04:identifier, +14:u12:identifier, +14:u03:identifier, +14:u11:identifier, +14:u02:identifier, +14:u10:identifier, +14:u01:identifier, +25:u08:internationalization,, +14:u00:identifier, +25:u07:internationalization,, +25:u06:internationalization,, +25:u14:internationalization,, +25:u05:internationalization,, +18:u08:Multiple-Octet, +25:u13:internationalization,, +25:u04:internationalization,, +9:u08:Coded, +25:u12:internationalization,, +25:u03:internationalization,, +18:u07:Multiple-Octet, +9:u08:"IETF, +9:u07:Coded, +25:u11:internationalization,, +25:u02:internationalization,, +18:u06:Multiple-Octet, +9:u06:Coded, +25:u10:internationalization,, +18:u14:multiple-octet, +25:u01:internationalization,, +18:u05:Multiple-Octet, +9:u07:"IETF, +9:u05:Coded, +8:u08:3454, +18:u13:multiple-octet, +8:uI2:-)[], +25:u00:internationalization,, +18:u04:Multiple-Octet, +9:u06:"IETF, +9:u04:Coded, +8:u07:3454, +18:u12:multiple-octet, +9:u14:"ietf, +8:uI1:-)[], +18:u03:Multiple-Octet, +9:u05:"IETF, +9:u03:Coded, +8:u06:3454, +14:u08:likelihood, +18:u11:multiple-octet, +9:u13:"ietf, +8:uI0:-)[], +10:uI2:"",[]., +18:u02:Multiple-Octet, +9:u04:"IETF, +9:u02:Coded, +8:u05:3454, +14:u07:likelihood, +18:u10:multiple-octet, +9:u12:"ietf, +7:u22:"IE, +8:u23:"IET, +10:uI1:"",[]., +10:uI2:[],"",, +18:u01:Multiple-Octet, +9:u03:"IETF, +9:u01:Coded, +8:u04:3454, +14:u06:likelihood, +9:u11:"ietf, +10:uI0:"",[]., +10:uI1:[],"",, +7:uI2:/-", +18:u00:Multiple-Octet, +9:u02:"IETF, +9:u00:Coded, +8:u03:3454, +14:u05:likelihood, +13:u08:options"., +9:u10:"ietf, +10:uI0:[],"",, +7:uI1:/-", +9:u01:"IETF, +13:u08:remainder, +8:u02:3454, +14:u04:likelihood, +13:u07:options"., +14:u08:stringprep, +7:uI0:/-", +9:u00:"IETF, +8:u01:3454, +14:u03:likelihood, +13:u06:options"., +14:u07:stringprep, +13:u07:remainder, +8:u00:3454, +14:u02:likelihood, +13:u05:options"., +14:u06:stringprep, +13:u06:remainder, +14:u01:likelihood, +13:u04:options"., +14:u05:stringprep, +13:u14:remainder, +13:u05:remainder, +14:u00:likelihood, +13:u03:options"., +14:u04:stringprep, +8:u08:354], +13:u13:remainder, +13:u04:remainder, +13:u02:options"., +14:u03:stringprep, +8:u07:354], +13:u12:remainder, +13:u03:remainder, +13:u01:options"., +14:u02:stringprep, +8:u06:354], +13:u11:remainder, +13:u02:remainder, +13:u00:options"., +14:u01:stringprep, +8:u05:354], +13:u10:remainder, +13:u01:remainder, +16:u08:utf8str_cis,, +14:u00:stringprep, +8:u04:354], +13:u00:remainder, +9:u08:each., +8:u03:354], +16:u07:utf8str_cis,, +8:u02:354], +16:u06:utf8str_cis,, +9:u07:each., +8:u01:354], +16:u14:utf8str_cis,, +8:uI2:-.:,, +16:u05:utf8str_cis,, +9:u06:each., +8:u00:354], +16:u13:utf8str_cis,, +9:u14:each., +8:uI1:-.:,, +16:u04:utf8str_cis,, +9:u05:each., +16:u08:stringprep)., +16:u12:utf8str_cis,, +9:u13:each., +8:uI0:-.:,, +16:u03:utf8str_cis,, +9:u04:each., +16:u11:utf8str_cis,, +9:u12:each., +16:u02:utf8str_cis,, +9:u03:each., +16:u07:stringprep)., +16:u10:utf8str_cis,, +9:u11:each., +14:u14:stringprep, +16:u01:utf8str_cis,, +9:u02:each., +16:u06:stringprep)., +9:u10:each., +14:u13:stringprep, +16:u14:stringprep)., +16:u00:utf8str_cis,, +9:u01:each., +16:u05:stringprep)., +14:u12:stringprep, +16:u13:stringprep)., +8:uI2:).,., +9:u00:each., +16:u04:stringprep)., +14:u11:stringprep, +16:u12:stringprep)., +8:uI1:).,., +16:u03:stringprep)., +14:u10:stringprep, +16:u11:stringprep)., +8:uI0:).,., +16:u02:stringprep)., +16:u10:stringprep)., +16:u01:stringprep)., +14:u08:prohibited, +16:u00:stringprep)., +14:u07:prohibited, +14:u06:prohibited, +14:u14:prohibited, +14:u05:prohibited, +14:u13:prohibited, +14:u04:prohibited, +14:u12:prohibited, +8:u23:proh, +14:u03:prohibited, +13:u08:discusses, +14:u11:prohibited, +14:u02:prohibited, +12:u08:Unicode,, +13:u07:discusses, +15:u08:characters., +14:u10:prohibited, +14:u01:prohibited, +13:u06:discusses, +15:u07:characters., +14:u00:prohibited, +12:u07:Unicode,, +8:u08:Much, +13:u05:discusses, +15:u06:characters., +12:u06:Unicode,, +13:u04:discusses, +15:u05:characters., +12:u14:unicode,, +9:uI2:-.---, +12:u05:Unicode,, +8:u07:Much, +13:u03:discusses, +15:u04:characters., +12:u13:unicode,, +9:uI1:-.---, +12:u04:Unicode,, +8:u06:Much, +13:u02:discusses, +15:u03:characters., +12:u12:unicode,, +9:uI0:-.---, +12:u03:Unicode,, +8:u05:Much, +11:u08:14.1.1., +13:u01:discusses, +15:u02:characters., +12:u11:unicode,, +12:u02:Unicode,, +8:u04:Much, +13:u00:discusses, +15:u01:characters., +12:u10:unicode,, +7:u22:Muc, +8:u23:Much, +12:u01:Unicode,, +8:u03:Much, +11:u07:14.1.1., +15:u00:characters., +12:u00:Unicode,, +8:u02:Much, +11:u06:14.1.1., +14:u08:Components, +11:u14:14.1.1., +8:u01:Much, +11:u05:14.1.1., +11:u13:14.1.1., +8:u00:Much, +11:u04:14.1.1., +14:u07:Components, +11:u12:14.1.1., +11:u03:14.1.1., +14:u06:Components, +11:u11:14.1.1., +11:u02:14.1.1., +14:u05:Components, +11:u10:14.1.1., +11:u01:14.1.1., +14:u04:Components, +7:u22:Com, +8:u23:Comp, +11:u00:14.1.1., +14:u03:Components, +14:u02:Components, +8:u08:355], +7:uI2:,.:, +14:u01:Components, +8:u07:355], +7:uI1:,.:, +14:u00:Components, +8:u06:355], +7:uI0:,.:, +8:u05:355], +12:u08:collides, +8:u04:355], +8:u03:355], +12:u07:collides, +20:u08:post-processing,, +8:u02:355], +12:u06:collides, +8:u01:355], +12:u14:collides, +12:u05:collides, +20:u07:post-processing,, +11:u08:14.1.2., +8:u00:355], +12:u13:collides, +12:u04:collides, +20:u06:post-processing,, +12:u12:collides, +20:u14:post-processing,, +12:u03:collides, +20:u05:post-processing,, +11:u07:14.1.2., +16:u08:nfs4_cs_prep, +12:u11:collides, +20:u13:post-processing,, +12:u02:collides, +20:u04:post-processing,, +11:u06:14.1.2., +16:u07:nfs4_cs_prep, +12:u10:collides, +20:u12:post-processing,, +11:u14:14.1.2., +12:u01:collides, +20:u03:post-processing,, +11:u05:14.1.2., +11:u08:14.1.3., +16:u06:nfs4_cs_prep, +20:u11:post-processing,, +11:u13:14.1.2., +12:u00:collides, +20:u02:post-processing,, +11:u04:14.1.2., +16:u05:nfs4_cs_prep, +11:u08:Mapping, +20:u10:post-processing,, +11:u12:14.1.2., +20:u01:post-processing,, +11:u03:14.1.2., +11:u07:14.1.3., +16:u04:nfs4_cs_prep, +11:u07:Mapping, +11:u11:14.1.2., +20:u00:post-processing,, +11:u02:14.1.2., +11:u06:14.1.3., +16:u03:nfs4_cs_prep, +11:u06:Mapping, +15:u08:stringprep:, +11:u10:14.1.2., +11:u14:14.1.3., +11:u01:14.1.2., +11:u05:14.1.3., +16:u02:nfs4_cs_prep, +11:u05:Mapping, +15:u07:stringprep:, +7:u08:B.1, +11:u13:14.1.3., +11:u00:14.1.2., +11:u04:14.1.3., +13:u08:primarily, +16:u01:nfs4_cs_prep, +11:u04:Mapping, +15:u06:stringprep:, +7:u07:B.1, +11:u12:14.1.3., +11:u03:14.1.3., +16:u00:nfs4_cs_prep, +11:u03:Mapping, +15:u05:stringprep:, +7:u06:B.1, +11:u11:14.1.3., +11:u02:14.1.3., +13:u07:primarily, +11:u02:Mapping, +15:u04:stringprep:, +7:u05:B.1, +11:u10:14.1.3., +11:u01:14.1.3., +13:u06:primarily, +11:u01:Mapping, +15:u03:stringprep:, +7:u04:B.1, +13:u14:primarily, +11:u00:14.1.3., +13:u05:primarily, +12:u08:strings,, +11:u00:Mapping, +15:u02:stringprep:, +7:u03:B.1, +13:u13:primarily, +13:u04:primarily, +15:u01:stringprep:, +7:u02:B.1, +13:u12:primarily, +13:u03:primarily, +12:u07:strings,, +15:u00:stringprep:, +7:u01:B.1, +8:u08:B.1), +13:u11:primarily, +13:u02:primarily, +12:u06:strings,, +7:u00:B.1, +8:u07:B.1), +13:u10:primarily, +12:u14:strings,, +13:u01:primarily, +12:u05:strings,, +8:u06:B.1), +12:u13:strings,, +8:uI2:,..(, +13:u00:primarily, +12:u04:strings,, +8:u05:B.1), +12:u08:strings., +12:u12:strings,, +8:uI1:,..(, +12:u03:strings,, +11:u08:14.1.4., +8:u04:B.1), +12:u07:strings., +12:u11:strings,, +8:uI0:,..(, +12:u02:strings,, +8:u03:B.1), +12:u06:strings., +17:u08:Normalization, +12:u10:strings,, +12:u01:strings,, +11:u07:14.1.4., +8:u02:B.1), +12:u05:strings., +17:u07:Normalization, +12:u00:strings,, +11:u06:14.1.4., +17:u08:normalization, +8:u01:B.1), +12:u04:strings., +17:u06:Normalization, +12:u08:revision, +11:u14:14.1.4., +11:u05:14.1.4., +8:u00:B.1), +12:u03:strings., +17:u05:Normalization, +12:u07:revision, +9:u08:form., +11:u13:14.1.4., +11:u04:14.1.4., +17:u07:normalization, +14:u08:responses., +12:u02:strings., +17:u04:Normalization, +12:u06:revision, +9:u07:form., +11:u12:14.1.4., +11:u03:14.1.4., +17:u06:normalization, +12:u01:strings., +17:u03:Normalization, +12:u05:revision, +9:u06:form., +11:u11:14.1.4., +17:u14:normalization, +11:u02:14.1.4., +17:u05:normalization, +14:u07:responses., +12:u00:strings., +17:u02:Normalization, +12:u04:revision, +9:u05:form., +11:u10:14.1.4., +17:u13:normalization, +11:u01:14.1.4., +17:u04:normalization, +14:u06:responses., +17:u01:Normalization, +12:u03:revision, +9:u04:form., +17:u12:normalization, +14:u14:responses., +11:u00:14.1.4., +17:u03:normalization, +14:u05:responses., +17:u00:Normalization, +12:u02:revision, +9:u03:form., +17:u11:normalization, +14:u13:responses., +17:u02:normalization, +14:u04:responses., +12:u01:revision, +9:u02:form., +17:u10:normalization, +14:u12:responses., +17:u01:normalization, +14:u03:responses., +12:u00:revision, +9:u01:form., +14:u11:responses., +17:u00:normalization, +14:u02:responses., +9:u00:form., +8:u08:356], +14:u10:responses., +14:u01:responses., +8:u07:356], +14:u00:responses., +8:u06:356], +11:u08:14.1.5., +8:u05:356], +8:u04:356], +14:u08:Prohibited, +11:u07:14.1.5., +8:u03:356], +14:u07:Prohibited, +11:u06:14.1.5., +8:u02:356], +14:u06:Prohibited, +11:u14:14.1.5., +11:u05:14.1.5., +8:u01:356], +14:u05:Prohibited, +7:u08:C.5, +11:u13:14.1.5., +11:u04:14.1.5., +11:u08:14.1.6., +8:u00:356], +14:u04:Prohibited, +7:u07:C.5, +7:u08:C.6, +11:u12:14.1.5., +11:u03:14.1.5., +14:u03:Prohibited, +7:u06:C.5, +7:u07:C.6, +17:u08:Bidirectional, +11:u11:14.1.5., +11:u02:14.1.5., +11:u07:14.1.6., +17:u08:bidirectional, +14:u02:Prohibited, +7:u05:C.5, +7:u06:C.6, +17:u07:Bidirectional, +11:u10:14.1.5., +11:u01:14.1.5., +11:u06:14.1.6., +14:u01:Prohibited, +7:u04:C.5, +7:u05:C.6, +17:u06:Bidirectional, +11:u14:14.1.6., +11:u00:14.1.5., +11:u05:14.1.6., +17:u07:bidirectional, +14:u00:Prohibited, +7:u03:C.5, +7:u04:C.6, +17:u05:Bidirectional, +11:u13:14.1.6., +11:u04:14.1.6., +17:u06:bidirectional, +7:u02:C.5, +7:u03:C.6, +17:u04:Bidirectional, +11:u12:14.1.6., +17:u14:bidirectional, +11:u03:14.1.6., +17:u05:bidirectional, +11:u08:14.2.1., +7:u01:C.5, +7:u02:C.6, +17:u03:Bidirectional, +11:u11:14.1.6., +17:u13:bidirectional, +11:u02:14.1.6., +17:u04:bidirectional, +7:u00:C.5, +7:u01:C.6, +17:u02:Bidirectional, +11:u10:14.1.6., +17:u12:bidirectional, +7:u22:bid, +8:u23:bidi, +11:u01:14.1.6., +17:u03:bidirectional, +11:u07:14.2.1., +7:u00:C.6, +17:u01:Bidirectional, +17:u11:bidirectional, +11:u00:14.1.6., +17:u02:bidirectional, +11:u06:14.2.1., +11:u08:14.2.2., +17:u00:Bidirectional, +17:u10:bidirectional, +11:u14:14.2.1., +17:u01:bidirectional, +11:u05:14.2.1., +11:u13:14.2.1., +17:u00:bidirectional, +11:u04:14.2.1., +11:u07:14.2.2., +16:u08:stringprep's, +17:u08:nfs4_cis_prep, +11:u12:14.2.1., +15:u14:characters., +11:u03:14.2.1., +11:u06:14.2.2., +17:u07:nfs4_cis_prep, +11:u11:14.2.1., +15:u13:characters., +11:u14:14.2.2., +11:u02:14.2.1., +11:u05:14.2.2., +16:u07:stringprep's, +11:u08:14.2.3., +17:u06:nfs4_cis_prep, +11:u10:14.2.1., +15:u12:characters., +11:u13:14.2.2., +11:u01:14.2.1., +11:u04:14.2.2., +16:u06:stringprep's, +17:u05:nfs4_cis_prep, +15:u11:characters., +11:u12:14.2.2., +16:u14:stringprep's, +11:u00:14.2.1., +11:u03:14.2.2., +16:u05:stringprep's, +11:u07:14.2.3., +17:u04:nfs4_cis_prep, +15:u10:characters., +11:u11:14.2.2., +16:u13:stringprep's, +9:uI2:'..,., +11:u02:14.2.2., +16:u04:stringprep's, +11:u06:14.2.3., +17:u03:nfs4_cis_prep, +11:u10:14.2.2., +16:u12:stringprep's, +11:u14:14.2.3., +9:uI1:'..,., +11:u01:14.2.2., +16:u03:stringprep's, +11:u05:14.2.3., +17:u02:nfs4_cis_prep, +16:u11:stringprep's, +11:u13:14.2.3., +9:uI0:'..,., +11:u00:14.2.2., +16:u02:stringprep's, +11:u04:14.2.3., +11:u08:14.2.4., +17:u01:nfs4_cis_prep, +16:u10:stringprep's, +11:u12:14.2.3., +16:u01:stringprep's, +11:u03:14.2.3., +17:u00:nfs4_cis_prep, +11:u11:14.2.3., +16:u00:stringprep's, +11:u02:14.2.3., +11:u07:14.2.4., +7:u08:KC,, +11:u10:14.2.3., +11:u01:14.2.3., +11:u06:14.2.4., +11:u14:14.2.4., +11:u00:14.2.3., +11:u05:14.2.4., +7:u07:KC,, +11:u13:14.2.4., +11:u04:14.2.4., +7:u06:KC,, +11:u12:14.2.4., +7:u14:kc,, +11:u03:14.2.4., +7:u05:KC,, +8:u08:357], +11:u11:14.2.4., +7:u13:kc,, +11:u02:14.2.4., +7:u04:KC,, +8:u07:357], +11:u10:14.2.4., +7:u12:kc,, +6:u21:KC, +7:u22:KC,, +7:u23:KC,, +11:u01:14.2.4., +7:u03:KC,, +8:u06:357], +7:u11:kc,, +11:u00:14.2.4., +7:u02:KC,, +11:u08:14.2.5., +8:u05:357], +7:u10:kc,, +7:u01:KC,, +8:u04:357], +7:u00:KC,, +11:u07:14.2.5., +8:u03:357], +11:u06:14.2.5., +8:u02:357], +11:u14:14.2.5., +11:u05:14.2.5., +8:u01:357], +9:u08:C.1.2, +11:u13:14.2.5., +11:u04:14.2.5., +8:u00:357], +9:u07:C.1.2, +9:u08:C.2.2, +11:u12:14.2.5., +11:u03:14.2.5., +9:u06:C.1.2, +9:u07:C.2.2, +7:u08:C.3, +11:u11:14.2.5., +11:u02:14.2.5., +9:u05:C.1.2, +9:u06:C.2.2, +7:u07:C.3, +7:u08:C.4, +11:u10:14.2.5., +11:u01:14.2.5., +9:u04:C.1.2, +9:u05:C.2.2, +7:u06:C.3, +7:u07:C.4, +11:u00:14.2.5., +9:u03:C.1.2, +9:u04:C.2.2, +7:u05:C.3, +7:u06:C.4, +9:u02:C.1.2, +9:u03:C.2.2, +7:u04:C.3, +7:u05:C.4, +7:u08:C.7, +9:u01:C.1.2, +9:u02:C.2.2, +7:u03:C.3, +7:u04:C.4, +7:u07:C.7, +7:u08:C.8, +11:u08:14.2.6., +9:u00:C.1.2, +9:u01:C.2.2, +7:u02:C.3, +7:u03:C.4, +7:u06:C.7, +7:u07:C.8, +7:u08:C.9, +9:u00:C.2.2, +7:u01:C.3, +7:u02:C.4, +7:u05:C.7, +7:u06:C.8, +7:u07:C.9, +11:u07:14.2.6., +7:u00:C.3, +7:u01:C.4, +7:u04:C.7, +7:u05:C.8, +7:u06:C.9, +11:u06:14.2.6., +7:u00:C.4, +7:u03:C.7, +7:u04:C.8, +7:u05:C.9, +11:u14:14.2.6., +11:u05:14.2.6., +7:u02:C.7, +7:u03:C.8, +7:u04:C.9, +11:u13:14.2.6., +11:u04:14.2.6., +7:u01:C.7, +7:u02:C.8, +7:u03:C.9, +11:u12:14.2.6., +11:u03:14.2.6., +11:u08:14.3.1., +7:u00:C.7, +7:u01:C.8, +7:u02:C.9, +11:u11:14.2.6., +11:u02:14.2.6., +7:u00:C.8, +7:u01:C.9, +11:u10:14.2.6., +11:u01:14.2.6., +11:u07:14.3.1., +7:u00:C.9, +11:u00:14.2.6., +11:u06:14.3.1., +11:u14:14.3.1., +11:u05:14.3.1., +10:u08:naming, +11:u13:14.3.1., +11:u04:14.3.1., +11:u08:14.3.2., +11:u12:14.3.1., +11:u03:14.3.1., +10:u07:naming, +11:u11:14.3.1., +11:u02:14.3.1., +10:u06:naming, +11:u07:14.3.2., +19:u08:nfs4_mixed_prep, +11:u10:14.3.1., +10:u14:naming, +11:u01:14.3.1., +10:u05:naming, +11:u06:14.3.2., +19:u07:nfs4_mixed_prep, +10:u13:naming, +11:u14:14.3.2., +11:u00:14.3.1., +10:u04:naming, +11:u05:14.3.2., +19:u06:nfs4_mixed_prep, +10:u12:naming, +11:u13:14.3.2., +8:u23:nami, +10:u03:naming, +11:u04:14.3.2., +19:u05:nfs4_mixed_prep, +10:u11:naming, +11:u12:14.3.2., +10:u02:naming, +11:u03:14.3.2., +19:u04:nfs4_mixed_prep, +10:u10:naming, +11:u11:14.3.2., +10:u01:naming, +11:u02:14.3.2., +19:u03:nfs4_mixed_prep, +8:u08:358], +11:u10:14.3.2., +10:u00:naming, +11:u01:14.3.2., +19:u02:nfs4_mixed_prep, +8:u07:358], +11:u00:14.3.2., +19:u01:nfs4_mixed_prep, +8:u06:358], +11:u08:14.3.3., +19:u00:nfs4_mixed_prep, +8:u05:358], +8:u04:358], +11:u07:14.3.3., +8:u03:358], +11:u06:14.3.3., +8:u02:358], +11:u08:profile, +11:u14:14.3.3., +11:u05:14.3.3., +8:u01:358], +11:u07:profile, +11:u13:14.3.3., +11:u04:14.3.3., +8:u00:358], +11:u06:profile, +11:u12:14.3.3., +19:u14:nfs4_mixed_prep, +11:u03:14.3.3., +11:u05:profile, +11:u11:14.3.3., +19:u13:nfs4_mixed_prep, +11:u02:14.3.3., +11:u04:profile, +11:u10:14.3.3., +19:u12:nfs4_mixed_prep, +8:u23:nfs4, +11:u01:14.3.3., +11:u03:profile, +19:u11:nfs4_mixed_prep, +11:u00:14.3.3., +11:u08:14.3.4., +11:u02:profile, +19:u10:nfs4_mixed_prep, +13:u14:specifies, +11:u01:profile, +13:u13:specifies, +11:u07:14.3.4., +11:u00:profile, +13:u12:specifies, +11:u06:14.3.4., +11:u08:14.3.5., +13:u11:specifies, +11:u14:14.3.4., +11:u05:14.3.4., +13:u10:specifies, +11:u13:14.3.4., +11:u04:14.3.4., +11:u07:14.3.5., +11:u12:14.3.4., +11:u03:14.3.4., +11:u06:14.3.5., +11:u11:14.3.4., +11:u14:14.3.5., +11:u02:14.3.4., +11:u05:14.3.5., +11:u10:14.3.4., +11:u13:14.3.5., +11:u01:14.3.4., +11:u04:14.3.5., +11:u12:14.3.5., +11:u00:14.3.4., +11:u03:14.3.5., +11:u11:14.3.5., +11:u02:14.3.5., +11:u10:14.3.5., +11:u01:14.3.5., +11:u00:14.3.5., +11:u08:14.3.6., +11:u07:14.3.6., +11:u06:14.3.6., +11:u14:14.3.6., +11:u05:14.3.6., +11:u13:14.3.6., +11:u04:14.3.6., +11:u12:14.3.6., +11:u03:14.3.6., +8:u08:359], +11:u11:14.3.6., +11:u02:14.3.6., +8:u07:359], +11:u10:14.3.6., +11:u01:14.3.6., +8:u06:359], +11:u00:14.3.6., +8:u05:359], +8:u04:359], +8:u03:359], +36:u08:FSCHARSET_CAP4_CONTAINS_NON_UTF8, +8:u02:359], +36:u07:FSCHARSET_CAP4_CONTAINS_NON_UTF8, +35:u08:FSCHARSET_CAP4_ALLOWS_ONLY_UTF8, +8:u01:359], +36:u06:FSCHARSET_CAP4_CONTAINS_NON_UTF8, +35:u07:FSCHARSET_CAP4_ALLOWS_ONLY_UTF8, +8:u08:0x2;, +20:u08:fs_charset_cap4;, +8:u00:359], +36:u05:FSCHARSET_CAP4_CONTAINS_NON_UTF8, +35:u06:FSCHARSET_CAP4_ALLOWS_ONLY_UTF8, +8:u07:0x2;, +36:u04:FSCHARSET_CAP4_CONTAINS_NON_UTF8, +35:u05:FSCHARSET_CAP4_ALLOWS_ONLY_UTF8, +8:u06:0x2;, +20:u07:fs_charset_cap4;, +36:u03:FSCHARSET_CAP4_CONTAINS_NON_UTF8, +35:u04:FSCHARSET_CAP4_ALLOWS_ONLY_UTF8, +8:u05:0x2;, +20:u06:fs_charset_cap4;, +36:u02:FSCHARSET_CAP4_CONTAINS_NON_UTF8, +35:u03:FSCHARSET_CAP4_ALLOWS_ONLY_UTF8, +8:u04:0x2;, +20:u14:fs_charset_cap4;, +20:u05:fs_charset_cap4;, +36:u01:FSCHARSET_CAP4_CONTAINS_NON_UTF8, +35:u02:FSCHARSET_CAP4_ALLOWS_ONLY_UTF8, +8:u03:0x2;, +20:u13:fs_charset_cap4;, +20:u04:fs_charset_cap4;, +36:u00:FSCHARSET_CAP4_CONTAINS_NON_UTF8, +35:u01:FSCHARSET_CAP4_ALLOWS_ONLY_UTF8, +8:u02:0x2;, +20:u12:fs_charset_cap4;, +8:u23:fs_c, +20:u03:fs_charset_cap4;, +35:u00:FSCHARSET_CAP4_ALLOWS_ONLY_UTF8, +8:u01:0x2;, +20:u11:fs_charset_cap4;, +20:u02:fs_charset_cap4;, +13:u08:non-UTF-8, +8:u00:0x2;, +20:u10:fs_charset_cap4;, +20:u01:fs_charset_cap4;, +14:u08:characters, +15:u08:characters,, +20:u00:fs_charset_cap4;, +13:u07:non-UTF-8, +15:u07:characters,, +13:u06:non-UTF-8, +14:u07:characters, +15:u06:characters,, +13:u14:non-utf-8, +13:u05:non-UTF-8, +14:u06:characters, +36:u08:FSCHARSET_CAP4_ALLOWS_ONLY_UTF8,, +15:u05:characters,, +13:u13:non-utf-8, +14:u14:characters, +8:uI2:--,-, +13:u04:non-UTF-8, +14:u05:characters, +15:u04:characters,, +13:u12:non-utf-8, +14:u13:characters, +8:uI1:--,-, +13:u03:non-UTF-8, +14:u04:characters, +36:u07:FSCHARSET_CAP4_ALLOWS_ONLY_UTF8,, +15:u03:characters,, +13:u11:non-utf-8, +14:u12:characters, +8:uI0:--,-, +13:u02:non-UTF-8, +14:u03:characters, +36:u06:FSCHARSET_CAP4_ALLOWS_ONLY_UTF8,, +15:u02:characters,, +13:u10:non-utf-8, +14:u11:characters, +36:u14:fscharset_cap4_allows_only_utf8,, +13:u01:non-UTF-8, +14:u02:characters, +36:u05:FSCHARSET_CAP4_ALLOWS_ONLY_UTF8,, +15:u01:characters,, +14:u10:characters, +36:u13:fscharset_cap4_allows_only_utf8,, +13:u00:non-UTF-8, +14:u01:characters, +36:u04:FSCHARSET_CAP4_ALLOWS_ONLY_UTF8,, +15:u00:characters,, +36:u12:fscharset_cap4_allows_only_utf8,, +7:u22:FSC, +8:u23:FSCH, +14:u00:characters, +36:u03:FSCHARSET_CAP4_ALLOWS_ONLY_UTF8,, +36:u11:fscharset_cap4_allows_only_utf8,, +36:u14:fscharset_cap4_contains_non_utf8, +36:u02:FSCHARSET_CAP4_ALLOWS_ONLY_UTF8,, +36:u10:fscharset_cap4_allows_only_utf8,, +36:u13:fscharset_cap4_contains_non_utf8, +35:u14:fscharset_cap4_allows_only_utf8, +36:u01:FSCHARSET_CAP4_ALLOWS_ONLY_UTF8,, +36:u12:fscharset_cap4_contains_non_utf8, +35:u13:fscharset_cap4_allows_only_utf8, +36:u00:FSCHARSET_CAP4_ALLOWS_ONLY_UTF8,, +12:u08:trailing, +12:u08:prefixes, +36:u11:fscharset_cap4_contains_non_utf8, +35:u12:fscharset_cap4_allows_only_utf8, +12:u07:prefixes, +36:u10:fscharset_cap4_contains_non_utf8, +35:u11:fscharset_cap4_allows_only_utf8, +12:u07:trailing, +12:u06:prefixes, +35:u10:fscharset_cap4_allows_only_utf8, +12:u06:trailing, +12:u05:prefixes, +12:u14:trailing, +12:u05:trailing, +12:u04:prefixes, +12:u13:trailing, +12:u04:trailing, +12:u03:prefixes, +12:u12:trailing, +12:u03:trailing, +20:u08:NFS4ERR_BADCHAR., +12:u02:prefixes, +12:u11:trailing, +12:u02:trailing, +12:u01:prefixes, +12:u10:trailing, +12:u01:trailing, +20:u07:NFS4ERR_BADCHAR., +10:u08:(while, +12:u00:prefixes, +12:u00:trailing, +20:u06:NFS4ERR_BADCHAR., +20:u14:nfs4err_badchar., +20:u05:NFS4ERR_BADCHAR., +10:u07:(while, +20:u13:nfs4err_badchar., +20:u04:NFS4ERR_BADCHAR., +10:u06:(while, +19:u08:NFS4ERR_BADNAME, +20:u12:nfs4err_badchar., +10:u14:(while, +20:u03:NFS4ERR_BADCHAR., +10:u05:(while, +19:u07:NFS4ERR_BADNAME, +20:u11:nfs4err_badchar., +10:u13:(while, +20:u02:NFS4ERR_BADCHAR., +10:u04:(while, +16:u08:prohibitions, +19:u06:NFS4ERR_BADNAME, +20:u10:nfs4err_badchar., +10:u12:(while, +20:u01:NFS4ERR_BADCHAR., +10:u03:(while, +19:u05:NFS4ERR_BADNAME, +10:u11:(while, +20:u00:NFS4ERR_BADCHAR., +10:u02:(while, +16:u07:prohibitions, +19:u04:NFS4ERR_BADNAME, +10:u10:(while, +10:u01:(while, +16:u06:prohibitions, +19:u03:NFS4ERR_BADNAME, +16:u14:prohibitions, +10:u00:(while, +16:u05:prohibitions, +19:u02:NFS4ERR_BADNAME, +16:u13:prohibitions, +12:uI2:".""..",, +16:u04:prohibitions, +19:u01:NFS4ERR_BADNAME, +8:u08:360], +16:u12:prohibitions, +12:uI1:".""..",, +16:u03:prohibitions, +19:u00:NFS4ERR_BADNAME, +8:u07:360], +16:u11:prohibitions, +12:uI0:".""..",, +16:u02:prohibitions, +8:u06:360], +16:u10:prohibitions, +16:u01:prohibitions, +8:u05:360], +16:u00:prohibitions, +8:u04:360], +13:u08:(COMPOUND, +8:u03:360], +8:u02:360], +13:u07:(COMPOUND, +8:u01:360], +13:u06:(COMPOUND, +8:u00:360], +13:u14:(compound, +13:u05:(COMPOUND, +13:u13:(compound, +13:u04:(COMPOUND, +13:u12:(compound, +7:u22:(CO, +8:u23:(COM, +13:u03:(COMPOUND, +13:u11:(compound, +13:u02:(COMPOUND, +13:u10:(compound, +13:u01:(COMPOUND, +70:u08:+-----------------------------------+--------+-------------------+, +11:u14:entered, +13:u00:(COMPOUND, +11:u13:entered, +70:u07:+-----------------------------------+--------+-------------------+, +11:u12:entered, +8:u23:ente, +70:u06:+-----------------------------------+--------+-------------------+, +11:u11:entered, +70:u14:+-----------------------------------+--------+-------------------+, +70:u05:+-----------------------------------+--------+-------------------+, +11:u10:entered, +70:u13:+-----------------------------------+--------+-------------------+, +66:uI2:--------------------------------------------------------------, +6:uI2:62, +70:u04:+-----------------------------------+--------+-------------------+, +70:u12:+-----------------------------------+--------+-------------------+, +66:uI1:--------------------------------------------------------------, +6:uI1:62, +70:u03:+-----------------------------------+--------+-------------------+, +11:u08:NFS4_OK, +70:u11:+-----------------------------------+--------+-------------------+, +66:uI0:--------------------------------------------------------------, +6:uI0:62, +70:u02:+-----------------------------------+--------+-------------------+, +11:u07:NFS4_OK, +70:u10:+-----------------------------------+--------+-------------------+, +70:u01:+-----------------------------------+--------+-------------------+, +11:u06:NFS4_OK, +70:u00:+-----------------------------------+--------+-------------------+, +11:u05:NFS4_OK, +11:u04:NFS4_OK, +11:u03:NFS4_OK, +11:u02:NFS4_OK, +23:u08:NFS4ERR_ATTRNOTSUPP, +11:u01:NFS4_OK, +23:u07:NFS4ERR_ATTRNOTSUPP, +9:u08:10032, +11:u00:NFS4_OK, +23:u06:NFS4ERR_ATTRNOTSUPP, +9:u07:10032, +25:u08:NFS4ERR_ADMIN_REVOKED, +23:u05:NFS4ERR_ATTRNOTSUPP, +9:u06:10032, +25:u07:NFS4ERR_ADMIN_REVOKED, +9:u08:10047, +23:u04:NFS4ERR_ATTRNOTSUPP, +9:u05:10032, +25:u06:NFS4ERR_ADMIN_REVOKED, +9:u07:10047, +26:u08:NFS4ERR_BACK_CHAN_BUSY, +23:u03:NFS4ERR_ATTRNOTSUPP, +9:u04:10032, +25:u05:NFS4ERR_ADMIN_REVOKED, +9:u06:10047, +26:u07:NFS4ERR_BACK_CHAN_BUSY, +9:u08:10057, +23:u02:NFS4ERR_ATTRNOTSUPP, +9:u03:10032, +25:u04:NFS4ERR_ADMIN_REVOKED, +9:u05:10047, +26:u06:NFS4ERR_BACK_CHAN_BUSY, +9:u07:10057, +19:u08:NFS4ERR_BADCHAR, +23:u01:NFS4ERR_ATTRNOTSUPP, +9:u02:10032, +25:u03:NFS4ERR_ADMIN_REVOKED, +9:u04:10047, +26:u05:NFS4ERR_BACK_CHAN_BUSY, +9:u06:10057, +19:u07:NFS4ERR_BADCHAR, +9:u08:10040, +23:u00:NFS4ERR_ATTRNOTSUPP, +9:u01:10032, +25:u02:NFS4ERR_ADMIN_REVOKED, +9:u03:10047, +26:u04:NFS4ERR_BACK_CHAN_BUSY, +9:u05:10057, +19:u06:NFS4ERR_BADCHAR, +9:u07:10040, +9:u00:10032, +25:u01:NFS4ERR_ADMIN_REVOKED, +9:u02:10047, +26:u03:NFS4ERR_BACK_CHAN_BUSY, +9:u04:10057, +19:u05:NFS4ERR_BADCHAR, +9:u06:10040, +9:u08:10001, +25:u00:NFS4ERR_ADMIN_REVOKED, +9:u01:10047, +26:u02:NFS4ERR_BACK_CHAN_BUSY, +9:u03:10057, +19:u04:NFS4ERR_BADCHAR, +9:u05:10040, +9:u07:10001, +21:u08:NFS4ERR_BADIOMODE, +9:u00:10047, +26:u01:NFS4ERR_BACK_CHAN_BUSY, +9:u02:10057, +19:u03:NFS4ERR_BADCHAR, +9:u04:10040, +9:u06:10001, +21:u07:NFS4ERR_BADIOMODE, +9:u08:10049, +26:u00:NFS4ERR_BACK_CHAN_BUSY, +9:u01:10057, +19:u02:NFS4ERR_BADCHAR, +9:u03:10040, +9:u05:10001, +21:u06:NFS4ERR_BADIOMODE, +9:u07:10049, +21:u08:NFS4ERR_BADLAYOUT, +9:u00:10057, +19:u01:NFS4ERR_BADCHAR, +9:u02:10040, +9:u04:10001, +21:u05:NFS4ERR_BADIOMODE, +9:u06:10049, +21:u07:NFS4ERR_BADLAYOUT, +9:u08:10050, +19:u00:NFS4ERR_BADCHAR, +9:u01:10040, +9:u03:10001, +21:u04:NFS4ERR_BADIOMODE, +9:u05:10049, +21:u06:NFS4ERR_BADLAYOUT, +9:u07:10050, +9:u00:10040, +9:u02:10001, +21:u03:NFS4ERR_BADIOMODE, +9:u04:10049, +21:u05:NFS4ERR_BADLAYOUT, +9:u06:10050, +9:u08:10041, +9:u01:10001, +21:u02:NFS4ERR_BADIOMODE, +9:u03:10049, +21:u04:NFS4ERR_BADLAYOUT, +9:u05:10050, +9:u07:10041, +20:u08:NFS4ERR_BADOWNER, +9:u00:10001, +21:u01:NFS4ERR_BADIOMODE, +9:u02:10049, +21:u03:NFS4ERR_BADLAYOUT, +9:u04:10050, +9:u06:10041, +20:u07:NFS4ERR_BADOWNER, +9:u08:10039, +21:u00:NFS4ERR_BADIOMODE, +9:u01:10049, +21:u02:NFS4ERR_BADLAYOUT, +9:u03:10050, +9:u05:10041, +20:u06:NFS4ERR_BADOWNER, +9:u07:10039, +9:u00:10049, +21:u01:NFS4ERR_BADLAYOUT, +9:u02:10050, +9:u04:10041, +20:u05:NFS4ERR_BADOWNER, +9:u06:10039, +9:u08:10052, +21:u00:NFS4ERR_BADLAYOUT, +9:u01:10050, +9:u03:10041, +20:u04:NFS4ERR_BADOWNER, +9:u05:10039, +9:u07:10052, +19:u08:NFS4ERR_BADSLOT, +9:u00:10050, +9:u02:10041, +20:u03:NFS4ERR_BADOWNER, +9:u04:10039, +9:u06:10052, +19:u07:NFS4ERR_BADSLOT, +9:u08:10053, +9:u01:10041, +20:u02:NFS4ERR_BADOWNER, +9:u03:10039, +9:u05:10052, +19:u06:NFS4ERR_BADSLOT, +9:u07:10053, +19:u08:NFS4ERR_BADTYPE, +9:u00:10041, +20:u01:NFS4ERR_BADOWNER, +9:u02:10039, +9:u04:10052, +19:u05:NFS4ERR_BADSLOT, +9:u06:10053, +19:u07:NFS4ERR_BADTYPE, +9:u08:10007, +20:u00:NFS4ERR_BADOWNER, +9:u01:10039, +9:u03:10052, +19:u04:NFS4ERR_BADSLOT, +9:u05:10053, +19:u06:NFS4ERR_BADTYPE, +9:u07:10007, +18:u08:NFS4ERR_BADXDR, +9:u00:10039, +9:u02:10052, +19:u03:NFS4ERR_BADSLOT, +9:u04:10053, +19:u05:NFS4ERR_BADTYPE, +9:u06:10007, +18:u07:NFS4ERR_BADXDR, +9:u08:10036, +9:u01:10052, +19:u02:NFS4ERR_BADSLOT, +9:u03:10053, +19:u04:NFS4ERR_BADTYPE, +9:u05:10007, +18:u06:NFS4ERR_BADXDR, +9:u07:10036, +22:u08:NFS4ERR_BAD_COOKIE, +9:u00:10052, +19:u01:NFS4ERR_BADSLOT, +9:u02:10053, +19:u03:NFS4ERR_BADTYPE, +9:u04:10007, +18:u05:NFS4ERR_BADXDR, +9:u06:10036, +22:u07:NFS4ERR_BAD_COOKIE, +9:u08:10003, +19:u00:NFS4ERR_BADSLOT, +9:u01:10053, +19:u02:NFS4ERR_BADTYPE, +9:u03:10007, +18:u04:NFS4ERR_BADXDR, +9:u05:10036, +22:u06:NFS4ERR_BAD_COOKIE, +9:u07:10003, +25:u08:NFS4ERR_BAD_HIGH_SLOT, +9:u00:10053, +19:u01:NFS4ERR_BADTYPE, +9:u02:10007, +18:u03:NFS4ERR_BADXDR, +9:u04:10036, +22:u05:NFS4ERR_BAD_COOKIE, +9:u06:10003, +25:u07:NFS4ERR_BAD_HIGH_SLOT, +9:u08:10077, +19:u00:NFS4ERR_BADTYPE, +9:u01:10007, +18:u02:NFS4ERR_BADXDR, +9:u03:10036, +22:u04:NFS4ERR_BAD_COOKIE, +9:u05:10003, +25:u06:NFS4ERR_BAD_HIGH_SLOT, +9:u07:10077, +21:u08:NFS4ERR_BAD_RANGE, +9:u00:10007, +18:u01:NFS4ERR_BADXDR, +9:u02:10036, +22:u03:NFS4ERR_BAD_COOKIE, +9:u04:10003, +25:u05:NFS4ERR_BAD_HIGH_SLOT, +9:u06:10077, +21:u07:NFS4ERR_BAD_RANGE, +9:u08:10042, +18:u00:NFS4ERR_BADXDR, +9:u01:10036, +22:u02:NFS4ERR_BAD_COOKIE, +9:u03:10003, +25:u04:NFS4ERR_BAD_HIGH_SLOT, +9:u05:10077, +21:u06:NFS4ERR_BAD_RANGE, +9:u07:10042, +21:u08:NFS4ERR_BAD_SEQID, +9:u00:10036, +22:u01:NFS4ERR_BAD_COOKIE, +9:u02:10003, +25:u03:NFS4ERR_BAD_HIGH_SLOT, +9:u04:10077, +21:u05:NFS4ERR_BAD_RANGE, +9:u06:10042, +21:u07:NFS4ERR_BAD_SEQID, +9:u08:10026, +22:u00:NFS4ERR_BAD_COOKIE, +9:u01:10003, +25:u02:NFS4ERR_BAD_HIGH_SLOT, +9:u03:10077, +21:u04:NFS4ERR_BAD_RANGE, +9:u05:10042, +21:u06:NFS4ERR_BAD_SEQID, +9:u07:10026, +30:u08:NFS4ERR_BAD_SESSION_DIGEST, +9:u00:10003, +25:u01:NFS4ERR_BAD_HIGH_SLOT, +9:u02:10077, +21:u03:NFS4ERR_BAD_RANGE, +9:u04:10042, +21:u05:NFS4ERR_BAD_SEQID, +9:u06:10026, +30:u07:NFS4ERR_BAD_SESSION_DIGEST, +9:u08:10051, +25:u00:NFS4ERR_BAD_HIGH_SLOT, +9:u01:10077, +21:u02:NFS4ERR_BAD_RANGE, +9:u03:10042, +21:u04:NFS4ERR_BAD_SEQID, +9:u05:10026, +30:u06:NFS4ERR_BAD_SESSION_DIGEST, +9:u07:10051, +9:u00:10077, +21:u01:NFS4ERR_BAD_RANGE, +9:u02:10042, +21:u03:NFS4ERR_BAD_SEQID, +9:u04:10026, +30:u05:NFS4ERR_BAD_SESSION_DIGEST, +9:u06:10051, +9:u08:10025, +21:u00:NFS4ERR_BAD_RANGE, +9:u01:10042, +21:u02:NFS4ERR_BAD_SEQID, +9:u03:10026, +30:u04:NFS4ERR_BAD_SESSION_DIGEST, +9:u05:10051, +9:u07:10025, +24:u08:NFS4ERR_CB_PATH_DOWN, +9:u00:10042, +21:u01:NFS4ERR_BAD_SEQID, +9:u02:10026, +30:u03:NFS4ERR_BAD_SESSION_DIGEST, +9:u04:10051, +9:u06:10025, +24:u07:NFS4ERR_CB_PATH_DOWN, +9:u08:10048, +21:u00:NFS4ERR_BAD_SEQID, +9:u01:10026, +30:u02:NFS4ERR_BAD_SESSION_DIGEST, +9:u03:10051, +9:u05:10025, +24:u06:NFS4ERR_CB_PATH_DOWN, +9:u07:10048, +22:u08:NFS4ERR_CLID_INUSE, +9:u00:10026, +30:u01:NFS4ERR_BAD_SESSION_DIGEST, +9:u02:10051, +9:u04:10025, +24:u05:NFS4ERR_CB_PATH_DOWN, +9:u06:10048, +22:u07:NFS4ERR_CLID_INUSE, +9:u08:10017, +30:u00:NFS4ERR_BAD_SESSION_DIGEST, +9:u01:10051, +9:u03:10025, +24:u04:NFS4ERR_CB_PATH_DOWN, +9:u05:10048, +22:u06:NFS4ERR_CLID_INUSE, +9:u07:10017, +25:u08:NFS4ERR_CLIENTID_BUSY, +9:u00:10051, +9:u02:10025, +24:u03:NFS4ERR_CB_PATH_DOWN, +9:u04:10048, +22:u05:NFS4ERR_CLID_INUSE, +9:u06:10017, +25:u07:NFS4ERR_CLIENTID_BUSY, +9:u08:10074, +9:u01:10025, +24:u02:NFS4ERR_CB_PATH_DOWN, +9:u03:10048, +22:u04:NFS4ERR_CLID_INUSE, +9:u05:10017, +25:u06:NFS4ERR_CLIENTID_BUSY, +9:u07:10074, +28:u08:NFS4ERR_COMPLETE_ALREADY, +9:u00:10025, +24:u01:NFS4ERR_CB_PATH_DOWN, +9:u02:10048, +22:u03:NFS4ERR_CLID_INUSE, +9:u04:10017, +25:u05:NFS4ERR_CLIENTID_BUSY, +9:u06:10074, +28:u07:NFS4ERR_COMPLETE_ALREADY, +9:u08:10054, +24:u00:NFS4ERR_CB_PATH_DOWN, +9:u01:10048, +22:u02:NFS4ERR_CLID_INUSE, +9:u03:10017, +25:u04:NFS4ERR_CLIENTID_BUSY, +9:u05:10074, +28:u06:NFS4ERR_COMPLETE_ALREADY, +9:u07:10054, +37:u08:NFS4ERR_CONN_NOT_BOUND_TO_SESSION, +9:u00:10048, +22:u01:NFS4ERR_CLID_INUSE, +9:u02:10017, +25:u03:NFS4ERR_CLIENTID_BUSY, +9:u04:10074, +28:u05:NFS4ERR_COMPLETE_ALREADY, +9:u06:10054, +37:u07:NFS4ERR_CONN_NOT_BOUND_TO_SESSION, +22:u00:NFS4ERR_CLID_INUSE, +9:u01:10017, +25:u02:NFS4ERR_CLIENTID_BUSY, +9:u03:10074, +28:u04:NFS4ERR_COMPLETE_ALREADY, +9:u05:10054, +37:u06:NFS4ERR_CONN_NOT_BOUND_TO_SESSION, +9:u08:10045, +9:u00:10017, +25:u01:NFS4ERR_CLIENTID_BUSY, +9:u02:10074, +28:u03:NFS4ERR_COMPLETE_ALREADY, +9:u04:10054, +37:u05:NFS4ERR_CONN_NOT_BOUND_TO_SESSION, +9:u07:10045, +25:u00:NFS4ERR_CLIENTID_BUSY, +9:u01:10074, +28:u02:NFS4ERR_COMPLETE_ALREADY, +9:u03:10054, +37:u04:NFS4ERR_CONN_NOT_BOUND_TO_SESSION, +9:u06:10045, +9:u08:10078, +9:u00:10074, +28:u01:NFS4ERR_COMPLETE_ALREADY, +9:u02:10054, +37:u03:NFS4ERR_CONN_NOT_BOUND_TO_SESSION, +9:u05:10045, +9:u07:10078, +28:u00:NFS4ERR_COMPLETE_ALREADY, +9:u01:10054, +37:u02:NFS4ERR_CONN_NOT_BOUND_TO_SESSION, +9:u04:10045, +9:u06:10078, +9:u08:10008, +9:u00:10054, +37:u01:NFS4ERR_CONN_NOT_BOUND_TO_SESSION, +9:u03:10045, +9:u05:10078, +9:u07:10008, +32:u08:NFS4ERR_DELEG_ALREADY_WANTED, +37:u00:NFS4ERR_CONN_NOT_BOUND_TO_SESSION, +9:u02:10045, +9:u04:10078, +9:u06:10008, +32:u07:NFS4ERR_DELEG_ALREADY_WANTED, +9:u08:10056, +9:u01:10045, +9:u03:10078, +9:u05:10008, +32:u06:NFS4ERR_DELEG_ALREADY_WANTED, +9:u07:10056, +25:u08:NFS4ERR_DELEG_REVOKED, +9:u00:10045, +9:u02:10078, +9:u04:10008, +32:u05:NFS4ERR_DELEG_ALREADY_WANTED, +9:u06:10056, +25:u07:NFS4ERR_DELEG_REVOKED, +9:u08:10087, +9:u01:10078, +9:u03:10008, +32:u04:NFS4ERR_DELEG_ALREADY_WANTED, +9:u05:10056, +25:u06:NFS4ERR_DELEG_REVOKED, +9:u07:10087, +9:u00:10078, +9:u02:10008, +32:u03:NFS4ERR_DELEG_ALREADY_WANTED, +9:u04:10056, +25:u05:NFS4ERR_DELEG_REVOKED, +9:u06:10087, +9:u01:10008, +32:u02:NFS4ERR_DELEG_ALREADY_WANTED, +9:u03:10056, +25:u04:NFS4ERR_DELEG_REVOKED, +9:u05:10087, +8:u08:361], +9:u00:10008, +32:u01:NFS4ERR_DELEG_ALREADY_WANTED, +9:u02:10056, +25:u03:NFS4ERR_DELEG_REVOKED, +9:u04:10087, +8:u07:361], +32:u00:NFS4ERR_DELEG_ALREADY_WANTED, +9:u01:10056, +25:u02:NFS4ERR_DELEG_REVOKED, +9:u03:10087, +8:u06:361], +9:u00:10056, +25:u01:NFS4ERR_DELEG_REVOKED, +9:u02:10087, +8:u05:361], +25:u00:NFS4ERR_DELEG_REVOKED, +9:u01:10087, +8:u04:361], +9:u00:10087, +8:u03:361], +9:u08:10010, +8:u02:361], +9:u07:10010, +28:u08:NFS4ERR_DIRDELEG_UNAVAIL, +8:u01:361], +9:u06:10010, +28:u07:NFS4ERR_DIRDELEG_UNAVAIL, +9:u08:10084, +8:u00:361], +9:u05:10010, +28:u06:NFS4ERR_DIRDELEG_UNAVAIL, +9:u07:10084, +17:u08:NFS4ERR_DQUOT, +9:u04:10010, +28:u05:NFS4ERR_DIRDELEG_UNAVAIL, +9:u06:10084, +17:u07:NFS4ERR_DQUOT, +9:u03:10010, +28:u04:NFS4ERR_DIRDELEG_UNAVAIL, +9:u05:10084, +17:u06:NFS4ERR_DQUOT, +9:u02:10010, +28:u03:NFS4ERR_DIRDELEG_UNAVAIL, +9:u04:10084, +17:u05:NFS4ERR_DQUOT, +27:u08:NFS4ERR_ENCR_ALG_UNSUPP, +9:u01:10010, +28:u02:NFS4ERR_DIRDELEG_UNAVAIL, +9:u03:10084, +17:u04:NFS4ERR_DQUOT, +27:u07:NFS4ERR_ENCR_ALG_UNSUPP, +9:u08:10079, +9:u00:10010, +28:u01:NFS4ERR_DIRDELEG_UNAVAIL, +9:u02:10084, +17:u03:NFS4ERR_DQUOT, +27:u06:NFS4ERR_ENCR_ALG_UNSUPP, +9:u07:10079, +17:u08:NFS4ERR_EXIST, +28:u00:NFS4ERR_DIRDELEG_UNAVAIL, +9:u01:10084, +17:u02:NFS4ERR_DQUOT, +27:u05:NFS4ERR_ENCR_ALG_UNSUPP, +9:u06:10079, +17:u07:NFS4ERR_EXIST, +9:u00:10084, +17:u01:NFS4ERR_DQUOT, +27:u04:NFS4ERR_ENCR_ALG_UNSUPP, +9:u05:10079, +17:u06:NFS4ERR_EXIST, +17:u00:NFS4ERR_DQUOT, +27:u03:NFS4ERR_ENCR_ALG_UNSUPP, +9:u04:10079, +17:u05:NFS4ERR_EXIST, +19:u08:NFS4ERR_EXPIRED, +27:u02:NFS4ERR_ENCR_ALG_UNSUPP, +9:u03:10079, +17:u04:NFS4ERR_EXIST, +19:u07:NFS4ERR_EXPIRED, +9:u08:10011, +27:u01:NFS4ERR_ENCR_ALG_UNSUPP, +9:u02:10079, +17:u03:NFS4ERR_EXIST, +19:u06:NFS4ERR_EXPIRED, +9:u07:10011, +16:u08:NFS4ERR_FBIG, +27:u00:NFS4ERR_ENCR_ALG_UNSUPP, +9:u01:10079, +17:u02:NFS4ERR_EXIST, +19:u05:NFS4ERR_EXPIRED, +9:u06:10011, +16:u07:NFS4ERR_FBIG, +9:u00:10079, +17:u01:NFS4ERR_EXIST, +19:u04:NFS4ERR_EXPIRED, +9:u05:10011, +16:u06:NFS4ERR_FBIG, +17:u00:NFS4ERR_EXIST, +19:u03:NFS4ERR_EXPIRED, +9:u04:10011, +16:u05:NFS4ERR_FBIG, +19:u02:NFS4ERR_EXPIRED, +9:u03:10011, +16:u04:NFS4ERR_FBIG, +9:u08:10014, +19:u01:NFS4ERR_EXPIRED, +9:u02:10011, +16:u03:NFS4ERR_FBIG, +9:u07:10014, +21:u08:NFS4ERR_FILE_OPEN, +19:u00:NFS4ERR_EXPIRED, +9:u01:10011, +16:u02:NFS4ERR_FBIG, +9:u06:10014, +21:u07:NFS4ERR_FILE_OPEN, +9:u08:10046, +9:u00:10011, +16:u01:NFS4ERR_FBIG, +9:u05:10014, +21:u06:NFS4ERR_FILE_OPEN, +9:u07:10046, +16:u00:NFS4ERR_FBIG, +9:u04:10014, +21:u05:NFS4ERR_FILE_OPEN, +9:u06:10046, +9:u08:10013, +9:u03:10014, +21:u04:NFS4ERR_FILE_OPEN, +9:u05:10046, +9:u07:10013, +27:u08:NFS4ERR_HASH_ALG_UNSUPP, +9:u02:10014, +21:u03:NFS4ERR_FILE_OPEN, +9:u04:10046, +9:u06:10013, +27:u07:NFS4ERR_HASH_ALG_UNSUPP, +9:u08:10072, +9:u01:10014, +21:u02:NFS4ERR_FILE_OPEN, +9:u03:10046, +9:u05:10013, +27:u06:NFS4ERR_HASH_ALG_UNSUPP, +9:u07:10072, +9:u00:10014, +21:u01:NFS4ERR_FILE_OPEN, +9:u02:10046, +9:u04:10013, +27:u05:NFS4ERR_HASH_ALG_UNSUPP, +9:u06:10072, +21:u00:NFS4ERR_FILE_OPEN, +9:u01:10046, +9:u03:10013, +27:u04:NFS4ERR_HASH_ALG_UNSUPP, +9:u05:10072, +9:u00:10046, +9:u02:10013, +27:u03:NFS4ERR_HASH_ALG_UNSUPP, +9:u04:10072, +14:u08:NFS4ERR_IO, +9:u01:10013, +27:u02:NFS4ERR_HASH_ALG_UNSUPP, +9:u03:10072, +14:u07:NFS4ERR_IO, +9:u00:10013, +27:u01:NFS4ERR_HASH_ALG_UNSUPP, +9:u02:10072, +14:u06:NFS4ERR_IO, +27:u00:NFS4ERR_HASH_ALG_UNSUPP, +9:u01:10072, +14:u05:NFS4ERR_IO, +17:u08:NFS4ERR_ISDIR, +9:u00:10072, +14:u04:NFS4ERR_IO, +17:u07:NFS4ERR_ISDIR, +14:u03:NFS4ERR_IO, +17:u06:NFS4ERR_ISDIR, +14:u02:NFS4ERR_IO, +17:u05:NFS4ERR_ISDIR, +26:u08:NFS4ERR_LAYOUTTRYLATER, +14:u01:NFS4ERR_IO, +17:u04:NFS4ERR_ISDIR, +26:u07:NFS4ERR_LAYOUTTRYLATER, +9:u08:10058, +14:u00:NFS4ERR_IO, +17:u03:NFS4ERR_ISDIR, +26:u06:NFS4ERR_LAYOUTTRYLATER, +9:u07:10058, +29:u08:NFS4ERR_LAYOUTUNAVAILABLE, +17:u02:NFS4ERR_ISDIR, +26:u05:NFS4ERR_LAYOUTTRYLATER, +9:u06:10058, +29:u07:NFS4ERR_LAYOUTUNAVAILABLE, +9:u08:10059, +17:u01:NFS4ERR_ISDIR, +26:u04:NFS4ERR_LAYOUTTRYLATER, +9:u05:10058, +29:u06:NFS4ERR_LAYOUTUNAVAILABLE, +9:u07:10059, +23:u08:NFS4ERR_LEASE_MOVED, +17:u00:NFS4ERR_ISDIR, +26:u03:NFS4ERR_LAYOUTTRYLATER, +9:u04:10058, +29:u05:NFS4ERR_LAYOUTUNAVAILABLE, +9:u06:10059, +23:u07:NFS4ERR_LEASE_MOVED, +9:u08:10031, +26:u02:NFS4ERR_LAYOUTTRYLATER, +9:u03:10058, +29:u04:NFS4ERR_LAYOUTUNAVAILABLE, +9:u05:10059, +23:u06:NFS4ERR_LEASE_MOVED, +9:u07:10031, +26:u01:NFS4ERR_LAYOUTTRYLATER, +9:u02:10058, +29:u03:NFS4ERR_LAYOUTUNAVAILABLE, +9:u04:10059, +23:u05:NFS4ERR_LEASE_MOVED, +9:u06:10031, +9:u08:10012, +26:u00:NFS4ERR_LAYOUTTRYLATER, +9:u01:10058, +29:u02:NFS4ERR_LAYOUTUNAVAILABLE, +9:u03:10059, +23:u04:NFS4ERR_LEASE_MOVED, +9:u05:10031, +9:u07:10012, +22:u08:NFS4ERR_LOCKS_HELD, +9:u00:10058, +29:u01:NFS4ERR_LAYOUTUNAVAILABLE, +9:u02:10059, +23:u03:NFS4ERR_LEASE_MOVED, +9:u04:10031, +9:u06:10012, +22:u07:NFS4ERR_LOCKS_HELD, +9:u08:10037, +29:u00:NFS4ERR_LAYOUTUNAVAILABLE, +9:u01:10059, +23:u02:NFS4ERR_LEASE_MOVED, +9:u03:10031, +9:u05:10012, +22:u06:NFS4ERR_LOCKS_HELD, +9:u07:10037, +24:u08:NFS4ERR_LOCK_NOTSUPP, +9:u00:10059, +23:u01:NFS4ERR_LEASE_MOVED, +9:u02:10031, +9:u04:10012, +22:u05:NFS4ERR_LOCKS_HELD, +9:u06:10037, +24:u07:NFS4ERR_LOCK_NOTSUPP, +9:u08:10043, +23:u00:NFS4ERR_LEASE_MOVED, +9:u01:10031, +9:u03:10012, +22:u04:NFS4ERR_LOCKS_HELD, +9:u05:10037, +24:u06:NFS4ERR_LOCK_NOTSUPP, +9:u07:10043, +22:u08:NFS4ERR_LOCK_RANGE, +9:u00:10031, +9:u02:10012, +22:u03:NFS4ERR_LOCKS_HELD, +9:u04:10037, +24:u05:NFS4ERR_LOCK_NOTSUPP, +9:u06:10043, +22:u07:NFS4ERR_LOCK_RANGE, +9:u08:10028, +9:u01:10012, +22:u02:NFS4ERR_LOCKS_HELD, +9:u03:10037, +24:u04:NFS4ERR_LOCK_NOTSUPP, +9:u05:10043, +22:u06:NFS4ERR_LOCK_RANGE, +9:u07:10028, +31:u08:NFS4ERR_MINOR_VERS_MISMATCH, +9:u00:10012, +22:u01:NFS4ERR_LOCKS_HELD, +9:u02:10037, +24:u03:NFS4ERR_LOCK_NOTSUPP, +9:u04:10043, +22:u05:NFS4ERR_LOCK_RANGE, +9:u06:10028, +31:u07:NFS4ERR_MINOR_VERS_MISMATCH, +9:u08:10021, +22:u00:NFS4ERR_LOCKS_HELD, +9:u01:10037, +24:u02:NFS4ERR_LOCK_NOTSUPP, +9:u03:10043, +22:u04:NFS4ERR_LOCK_RANGE, +9:u05:10028, +31:u06:NFS4ERR_MINOR_VERS_MISMATCH, +9:u07:10021, +17:u08:NFS4ERR_MLINK, +9:u00:10037, +24:u01:NFS4ERR_LOCK_NOTSUPP, +9:u02:10043, +22:u03:NFS4ERR_LOCK_RANGE, +9:u04:10028, +31:u05:NFS4ERR_MINOR_VERS_MISMATCH, +9:u06:10021, +17:u07:NFS4ERR_MLINK, +24:u00:NFS4ERR_LOCK_NOTSUPP, +9:u01:10043, +22:u02:NFS4ERR_LOCK_RANGE, +9:u03:10028, +31:u04:NFS4ERR_MINOR_VERS_MISMATCH, +9:u05:10021, +17:u06:NFS4ERR_MLINK, +9:u00:10043, +22:u01:NFS4ERR_LOCK_RANGE, +9:u02:10028, +31:u03:NFS4ERR_MINOR_VERS_MISMATCH, +9:u04:10021, +17:u05:NFS4ERR_MLINK, +22:u00:NFS4ERR_LOCK_RANGE, +9:u01:10028, +31:u02:NFS4ERR_MINOR_VERS_MISMATCH, +9:u03:10021, +17:u04:NFS4ERR_MLINK, +9:u08:10019, +9:u00:10028, +31:u01:NFS4ERR_MINOR_VERS_MISMATCH, +9:u02:10021, +17:u03:NFS4ERR_MLINK, +9:u07:10019, +23:u08:NFS4ERR_NAMETOOLONG, +31:u00:NFS4ERR_MINOR_VERS_MISMATCH, +9:u01:10021, +17:u02:NFS4ERR_MLINK, +9:u06:10019, +23:u07:NFS4ERR_NAMETOOLONG, +9:u00:10021, +17:u01:NFS4ERR_MLINK, +9:u05:10019, +23:u06:NFS4ERR_NAMETOOLONG, +17:u00:NFS4ERR_MLINK, +9:u04:10019, +23:u05:NFS4ERR_NAMETOOLONG, +17:u08:NFS4ERR_NOENT, +9:u03:10019, +23:u04:NFS4ERR_NAMETOOLONG, +17:u07:NFS4ERR_NOENT, +9:u02:10019, +23:u03:NFS4ERR_NAMETOOLONG, +17:u06:NFS4ERR_NOENT, +9:u01:10019, +23:u02:NFS4ERR_NAMETOOLONG, +17:u05:NFS4ERR_NOENT, +24:u08:NFS4ERR_NOFILEHANDLE, +9:u00:10019, +23:u01:NFS4ERR_NAMETOOLONG, +17:u04:NFS4ERR_NOENT, +24:u07:NFS4ERR_NOFILEHANDLE, +9:u08:10020, +23:u00:NFS4ERR_NAMETOOLONG, +17:u03:NFS4ERR_NOENT, +24:u06:NFS4ERR_NOFILEHANDLE, +9:u07:10020, +29:u08:NFS4ERR_NOMATCHING_LAYOUT, +17:u02:NFS4ERR_NOENT, +24:u05:NFS4ERR_NOFILEHANDLE, +9:u06:10020, +29:u07:NFS4ERR_NOMATCHING_LAYOUT, +9:u08:10060, +17:u01:NFS4ERR_NOENT, +24:u04:NFS4ERR_NOFILEHANDLE, +9:u05:10020, +29:u06:NFS4ERR_NOMATCHING_LAYOUT, +9:u07:10060, +17:u08:NFS4ERR_NOSPC, +17:u00:NFS4ERR_NOENT, +24:u03:NFS4ERR_NOFILEHANDLE, +9:u04:10020, +29:u05:NFS4ERR_NOMATCHING_LAYOUT, +9:u06:10060, +17:u07:NFS4ERR_NOSPC, +24:u02:NFS4ERR_NOFILEHANDLE, +9:u03:10020, +29:u04:NFS4ERR_NOMATCHING_LAYOUT, +9:u05:10060, +17:u06:NFS4ERR_NOSPC, +24:u01:NFS4ERR_NOFILEHANDLE, +9:u02:10020, +29:u03:NFS4ERR_NOMATCHING_LAYOUT, +9:u04:10060, +17:u05:NFS4ERR_NOSPC, +18:u08:NFS4ERR_NOTDIR, +24:u00:NFS4ERR_NOFILEHANDLE, +9:u01:10020, +29:u02:NFS4ERR_NOMATCHING_LAYOUT, +9:u03:10060, +17:u04:NFS4ERR_NOSPC, +18:u07:NFS4ERR_NOTDIR, +9:u00:10020, +29:u01:NFS4ERR_NOMATCHING_LAYOUT, +9:u02:10060, +17:u03:NFS4ERR_NOSPC, +18:u06:NFS4ERR_NOTDIR, +29:u00:NFS4ERR_NOMATCHING_LAYOUT, +9:u01:10060, +17:u02:NFS4ERR_NOSPC, +18:u05:NFS4ERR_NOTDIR, +20:u08:NFS4ERR_NOTEMPTY, +9:u00:10060, +17:u01:NFS4ERR_NOSPC, +18:u04:NFS4ERR_NOTDIR, +20:u07:NFS4ERR_NOTEMPTY, +17:u00:NFS4ERR_NOSPC, +18:u03:NFS4ERR_NOTDIR, +20:u06:NFS4ERR_NOTEMPTY, +18:u02:NFS4ERR_NOTDIR, +20:u05:NFS4ERR_NOTEMPTY, +18:u01:NFS4ERR_NOTDIR, +20:u04:NFS4ERR_NOTEMPTY, +9:u08:10004, +18:u00:NFS4ERR_NOTDIR, +20:u03:NFS4ERR_NOTEMPTY, +9:u07:10004, +23:u08:NFS4ERR_NOT_ONLY_OP, +20:u02:NFS4ERR_NOTEMPTY, +9:u06:10004, +23:u07:NFS4ERR_NOT_ONLY_OP, +9:u08:10081, +20:u01:NFS4ERR_NOTEMPTY, +9:u05:10004, +23:u06:NFS4ERR_NOT_ONLY_OP, +9:u07:10081, +20:u08:NFS4ERR_NOT_SAME, +20:u00:NFS4ERR_NOTEMPTY, +9:u04:10004, +23:u05:NFS4ERR_NOT_ONLY_OP, +9:u06:10081, +20:u07:NFS4ERR_NOT_SAME, +9:u08:10027, +9:u03:10004, +23:u04:NFS4ERR_NOT_ONLY_OP, +9:u05:10081, +20:u06:NFS4ERR_NOT_SAME, +9:u07:10027, +9:u02:10004, +23:u03:NFS4ERR_NOT_ONLY_OP, +9:u04:10081, +20:u05:NFS4ERR_NOT_SAME, +9:u06:10027, +9:u08:10033, +9:u01:10004, +23:u02:NFS4ERR_NOT_ONLY_OP, +9:u03:10081, +20:u04:NFS4ERR_NOT_SAME, +9:u05:10027, +9:u07:10033, +16:u08:NFS4ERR_NXIO, +9:u00:10004, +23:u01:NFS4ERR_NOT_ONLY_OP, +9:u02:10081, +20:u03:NFS4ERR_NOT_SAME, +9:u04:10027, +9:u06:10033, +16:u07:NFS4ERR_NXIO, +23:u00:NFS4ERR_NOT_ONLY_OP, +9:u01:10081, +20:u02:NFS4ERR_NOT_SAME, +9:u03:10027, +9:u05:10033, +16:u06:NFS4ERR_NXIO, +9:u00:10081, +20:u01:NFS4ERR_NOT_SAME, +9:u02:10027, +9:u04:10033, +16:u05:NFS4ERR_NXIO, +20:u00:NFS4ERR_NOT_SAME, +9:u01:10027, +9:u03:10033, +16:u04:NFS4ERR_NXIO, +9:u08:10024, +9:u00:10027, +9:u02:10033, +16:u03:NFS4ERR_NXIO, +9:u07:10024, +20:u08:NFS4ERR_OPENMODE, +9:u01:10033, +16:u02:NFS4ERR_NXIO, +9:u06:10024, +20:u07:NFS4ERR_OPENMODE, +9:u08:10038, +9:u00:10033, +16:u01:NFS4ERR_NXIO, +9:u05:10024, +20:u06:NFS4ERR_OPENMODE, +9:u07:10038, +22:u08:NFS4ERR_OP_ILLEGAL, +16:u00:NFS4ERR_NXIO, +9:u04:10024, +20:u05:NFS4ERR_OPENMODE, +9:u06:10038, +22:u07:NFS4ERR_OP_ILLEGAL, +9:u08:10044, +9:u03:10024, +20:u04:NFS4ERR_OPENMODE, +9:u05:10038, +22:u06:NFS4ERR_OP_ILLEGAL, +9:u07:10044, +29:u08:NFS4ERR_OP_NOT_IN_SESSION, +9:u02:10024, +20:u03:NFS4ERR_OPENMODE, +9:u04:10038, +22:u05:NFS4ERR_OP_ILLEGAL, +9:u06:10044, +29:u07:NFS4ERR_OP_NOT_IN_SESSION, +9:u08:10071, +9:u01:10024, +20:u02:NFS4ERR_OPENMODE, +9:u03:10038, +22:u04:NFS4ERR_OP_ILLEGAL, +9:u05:10044, +29:u06:NFS4ERR_OP_NOT_IN_SESSION, +9:u07:10071, +16:u08:NFS4ERR_PERM, +9:u00:10024, +20:u01:NFS4ERR_OPENMODE, +9:u02:10038, +22:u03:NFS4ERR_OP_ILLEGAL, +9:u04:10044, +29:u05:NFS4ERR_OP_NOT_IN_SESSION, +9:u06:10071, +16:u07:NFS4ERR_PERM, +20:u00:NFS4ERR_OPENMODE, +9:u01:10038, +22:u02:NFS4ERR_OP_ILLEGAL, +9:u03:10044, +29:u04:NFS4ERR_OP_NOT_IN_SESSION, +9:u05:10071, +16:u06:NFS4ERR_PERM, +9:u00:10038, +22:u01:NFS4ERR_OP_ILLEGAL, +9:u02:10044, +29:u03:NFS4ERR_OP_NOT_IN_SESSION, +9:u04:10071, +16:u05:NFS4ERR_PERM, +24:u08:NFS4ERR_PNFS_IO_HOLE, +22:u00:NFS4ERR_OP_ILLEGAL, +9:u01:10044, +29:u02:NFS4ERR_OP_NOT_IN_SESSION, +9:u03:10071, +16:u04:NFS4ERR_PERM, +24:u07:NFS4ERR_PNFS_IO_HOLE, +9:u08:10075, +9:u00:10044, +29:u01:NFS4ERR_OP_NOT_IN_SESSION, +9:u02:10071, +16:u03:NFS4ERR_PERM, +24:u06:NFS4ERR_PNFS_IO_HOLE, +9:u07:10075, +26:u08:NFS4ERR_PNFS_NO_LAYOUT, +29:u00:NFS4ERR_OP_NOT_IN_SESSION, +9:u01:10071, +16:u02:NFS4ERR_PERM, +24:u05:NFS4ERR_PNFS_IO_HOLE, +9:u06:10075, +26:u07:NFS4ERR_PNFS_NO_LAYOUT, +9:u08:10080, +9:u00:10071, +16:u01:NFS4ERR_PERM, +24:u04:NFS4ERR_PNFS_IO_HOLE, +9:u05:10075, +26:u06:NFS4ERR_PNFS_NO_LAYOUT, +9:u07:10080, +26:u08:NFS4ERR_RECALLCONFLICT, +16:u00:NFS4ERR_PERM, +24:u03:NFS4ERR_PNFS_IO_HOLE, +9:u04:10075, +26:u05:NFS4ERR_PNFS_NO_LAYOUT, +9:u06:10080, +26:u07:NFS4ERR_RECALLCONFLICT, +9:u08:10061, +24:u02:NFS4ERR_PNFS_IO_HOLE, +9:u03:10075, +26:u04:NFS4ERR_PNFS_NO_LAYOUT, +9:u05:10080, +26:u06:NFS4ERR_RECALLCONFLICT, +9:u07:10061, +23:u08:NFS4ERR_RECLAIM_BAD, +24:u01:NFS4ERR_PNFS_IO_HOLE, +9:u02:10075, +26:u03:NFS4ERR_PNFS_NO_LAYOUT, +9:u04:10080, +26:u05:NFS4ERR_RECALLCONFLICT, +9:u06:10061, +23:u07:NFS4ERR_RECLAIM_BAD, +9:u08:10034, +24:u00:NFS4ERR_PNFS_IO_HOLE, +9:u01:10075, +26:u02:NFS4ERR_PNFS_NO_LAYOUT, +9:u03:10080, +26:u04:NFS4ERR_RECALLCONFLICT, +9:u05:10061, +23:u06:NFS4ERR_RECLAIM_BAD, +9:u07:10034, +28:u08:NFS4ERR_RECLAIM_CONFLICT, +9:u00:10075, +26:u01:NFS4ERR_PNFS_NO_LAYOUT, +9:u02:10080, +26:u03:NFS4ERR_RECALLCONFLICT, +9:u04:10061, +23:u05:NFS4ERR_RECLAIM_BAD, +9:u06:10034, +28:u07:NFS4ERR_RECLAIM_CONFLICT, +9:u08:10035, +26:u00:NFS4ERR_PNFS_NO_LAYOUT, +9:u01:10080, +26:u02:NFS4ERR_RECALLCONFLICT, +9:u03:10061, +23:u04:NFS4ERR_RECLAIM_BAD, +9:u05:10034, +28:u06:NFS4ERR_RECLAIM_CONFLICT, +9:u07:10035, +24:u08:NFS4ERR_REJECT_DELEG, +9:u00:10080, +26:u01:NFS4ERR_RECALLCONFLICT, +9:u02:10061, +23:u03:NFS4ERR_RECLAIM_BAD, +9:u04:10034, +28:u05:NFS4ERR_RECLAIM_CONFLICT, +9:u06:10035, +24:u07:NFS4ERR_REJECT_DELEG, +9:u08:10085, +26:u00:NFS4ERR_RECALLCONFLICT, +9:u01:10061, +23:u02:NFS4ERR_RECLAIM_BAD, +9:u03:10034, +28:u04:NFS4ERR_RECLAIM_CONFLICT, +9:u05:10035, +24:u06:NFS4ERR_REJECT_DELEG, +9:u07:10085, +9:u00:10061, +23:u01:NFS4ERR_RECLAIM_BAD, +9:u02:10034, +28:u03:NFS4ERR_RECLAIM_CONFLICT, +9:u04:10035, +24:u05:NFS4ERR_REJECT_DELEG, +9:u06:10085, +9:u08:10066, +23:u00:NFS4ERR_RECLAIM_BAD, +9:u01:10034, +28:u02:NFS4ERR_RECLAIM_CONFLICT, +9:u03:10035, +24:u04:NFS4ERR_REJECT_DELEG, +9:u05:10085, +9:u07:10066, +9:u00:10034, +28:u01:NFS4ERR_RECLAIM_CONFLICT, +9:u02:10035, +24:u03:NFS4ERR_REJECT_DELEG, +9:u04:10085, +9:u06:10066, +28:u00:NFS4ERR_RECLAIM_CONFLICT, +9:u01:10035, +24:u02:NFS4ERR_REJECT_DELEG, +9:u03:10085, +9:u05:10066, +8:u08:362], +9:u00:10035, +24:u01:NFS4ERR_REJECT_DELEG, +9:u02:10085, +9:u04:10066, +8:u07:362], +24:u00:NFS4ERR_REJECT_DELEG, +9:u01:10085, +9:u03:10066, +8:u06:362], +9:u00:10085, +9:u02:10066, +8:u05:362], +9:u01:10066, +8:u04:362], +9:u00:10066, +8:u03:362], +9:u08:10067, +8:u02:362], +9:u07:10067, +23:u08:NFS4ERR_REQ_TOO_BIG, +8:u01:362], +9:u06:10067, +23:u07:NFS4ERR_REQ_TOO_BIG, +9:u08:10065, +8:u00:362], +9:u05:10067, +23:u06:NFS4ERR_REQ_TOO_BIG, +9:u07:10065, +21:u08:NFS4ERR_RESTOREFH, +9:u04:10067, +23:u05:NFS4ERR_REQ_TOO_BIG, +9:u06:10065, +21:u07:NFS4ERR_RESTOREFH, +9:u08:10030, +9:u03:10067, +23:u04:NFS4ERR_REQ_TOO_BIG, +9:u05:10065, +21:u06:NFS4ERR_RESTOREFH, +9:u07:10030, +30:u08:NFS4ERR_RETRY_UNCACHED_REP, +9:u02:10067, +23:u03:NFS4ERR_REQ_TOO_BIG, +9:u04:10065, +21:u05:NFS4ERR_RESTOREFH, +9:u06:10030, +30:u07:NFS4ERR_RETRY_UNCACHED_REP, +9:u08:10068, +9:u01:10067, +23:u02:NFS4ERR_REQ_TOO_BIG, +9:u03:10065, +21:u04:NFS4ERR_RESTOREFH, +9:u05:10030, +30:u06:NFS4ERR_RETRY_UNCACHED_REP, +9:u07:10068, +26:u08:NFS4ERR_RETURNCONFLICT, +9:u00:10067, +23:u01:NFS4ERR_REQ_TOO_BIG, +9:u02:10065, +21:u03:NFS4ERR_RESTOREFH, +9:u04:10030, +30:u05:NFS4ERR_RETRY_UNCACHED_REP, +9:u06:10068, +26:u07:NFS4ERR_RETURNCONFLICT, +9:u08:10086, +23:u00:NFS4ERR_REQ_TOO_BIG, +9:u01:10065, +21:u02:NFS4ERR_RESTOREFH, +9:u03:10030, +30:u04:NFS4ERR_RETRY_UNCACHED_REP, +9:u05:10068, +26:u06:NFS4ERR_RETURNCONFLICT, +9:u07:10086, +16:u08:NFS4ERR_ROFS, +9:u00:10065, +21:u01:NFS4ERR_RESTOREFH, +9:u02:10030, +30:u03:NFS4ERR_RETRY_UNCACHED_REP, +9:u04:10068, +26:u05:NFS4ERR_RETURNCONFLICT, +9:u06:10086, +16:u07:NFS4ERR_ROFS, +21:u00:NFS4ERR_RESTOREFH, +9:u01:10030, +30:u02:NFS4ERR_RETRY_UNCACHED_REP, +9:u03:10068, +26:u04:NFS4ERR_RETURNCONFLICT, +9:u05:10086, +16:u06:NFS4ERR_ROFS, +9:u00:10030, +30:u01:NFS4ERR_RETRY_UNCACHED_REP, +9:u02:10068, +26:u03:NFS4ERR_RETURNCONFLICT, +9:u04:10086, +16:u05:NFS4ERR_ROFS, +16:u08:NFS4ERR_SAME, +30:u00:NFS4ERR_RETRY_UNCACHED_REP, +9:u01:10068, +26:u02:NFS4ERR_RETURNCONFLICT, +9:u03:10086, +16:u04:NFS4ERR_ROFS, +16:u07:NFS4ERR_SAME, +9:u08:10009, +9:u00:10068, +26:u01:NFS4ERR_RETURNCONFLICT, +9:u02:10086, +16:u03:NFS4ERR_ROFS, +16:u06:NFS4ERR_SAME, +9:u07:10009, +24:u08:NFS4ERR_SHARE_DENIED, +26:u00:NFS4ERR_RETURNCONFLICT, +9:u01:10086, +16:u02:NFS4ERR_ROFS, +16:u05:NFS4ERR_SAME, +9:u06:10009, +24:u07:NFS4ERR_SHARE_DENIED, +9:u08:10015, +9:u00:10086, +16:u01:NFS4ERR_ROFS, +16:u04:NFS4ERR_SAME, +9:u05:10009, +24:u06:NFS4ERR_SHARE_DENIED, +9:u07:10015, +24:u08:NFS4ERR_SEQUENCE_POS, +16:u00:NFS4ERR_ROFS, +16:u03:NFS4ERR_SAME, +9:u04:10009, +24:u05:NFS4ERR_SHARE_DENIED, +9:u06:10015, +24:u07:NFS4ERR_SEQUENCE_POS, +9:u08:10064, +16:u02:NFS4ERR_SAME, +9:u03:10009, +24:u04:NFS4ERR_SHARE_DENIED, +9:u05:10015, +24:u06:NFS4ERR_SEQUENCE_POS, +9:u07:10064, +27:u08:NFS4ERR_SEQ_FALSE_RETRY, +16:u01:NFS4ERR_SAME, +9:u02:10009, +24:u03:NFS4ERR_SHARE_DENIED, +9:u04:10015, +24:u05:NFS4ERR_SEQUENCE_POS, +9:u06:10064, +27:u07:NFS4ERR_SEQ_FALSE_RETRY, +9:u08:10076, +16:u00:NFS4ERR_SAME, +9:u01:10009, +24:u02:NFS4ERR_SHARE_DENIED, +9:u03:10015, +24:u04:NFS4ERR_SEQUENCE_POS, +9:u05:10064, +27:u06:NFS4ERR_SEQ_FALSE_RETRY, +9:u07:10076, +9:u00:10009, +24:u01:NFS4ERR_SHARE_DENIED, +9:u02:10015, +24:u03:NFS4ERR_SEQUENCE_POS, +9:u04:10064, +27:u05:NFS4ERR_SEQ_FALSE_RETRY, +9:u06:10076, +9:u08:10063, +24:u00:NFS4ERR_SHARE_DENIED, +9:u01:10015, +24:u02:NFS4ERR_SEQUENCE_POS, +9:u03:10064, +27:u04:NFS4ERR_SEQ_FALSE_RETRY, +9:u05:10076, +9:u07:10063, +23:u08:NFS4ERR_SERVERFAULT, +9:u00:10015, +24:u01:NFS4ERR_SEQUENCE_POS, +9:u02:10064, +27:u03:NFS4ERR_SEQ_FALSE_RETRY, +9:u04:10076, +9:u06:10063, +23:u07:NFS4ERR_SERVERFAULT, +9:u08:10006, +24:u00:NFS4ERR_SEQUENCE_POS, +9:u01:10064, +27:u02:NFS4ERR_SEQ_FALSE_RETRY, +9:u03:10076, +9:u05:10063, +23:u06:NFS4ERR_SERVERFAULT, +9:u07:10006, +9:u00:10064, +27:u01:NFS4ERR_SEQ_FALSE_RETRY, +9:u02:10076, +9:u04:10063, +23:u05:NFS4ERR_SERVERFAULT, +9:u06:10006, +27:u00:NFS4ERR_SEQ_FALSE_RETRY, +9:u01:10076, +9:u03:10063, +23:u04:NFS4ERR_SERVERFAULT, +9:u05:10006, +9:u00:10076, +9:u02:10063, +23:u03:NFS4ERR_SERVERFAULT, +9:u04:10006, +9:u01:10063, +23:u02:NFS4ERR_SERVERFAULT, +9:u03:10006, +9:u08:10022, +9:u00:10063, +23:u01:NFS4ERR_SERVERFAULT, +9:u02:10006, +9:u07:10022, +25:u08:NFS4ERR_STALE_STATEID, +23:u00:NFS4ERR_SERVERFAULT, +9:u01:10006, +9:u06:10022, +25:u07:NFS4ERR_STALE_STATEID, +9:u08:10023, +9:u00:10006, +9:u05:10022, +25:u06:NFS4ERR_STALE_STATEID, +9:u07:10023, +19:u08:NFS4ERR_SYMLINK, +9:u04:10022, +25:u05:NFS4ERR_STALE_STATEID, +9:u06:10023, +19:u07:NFS4ERR_SYMLINK, +9:u08:10029, +9:u03:10022, +25:u04:NFS4ERR_STALE_STATEID, +9:u05:10023, +19:u06:NFS4ERR_SYMLINK, +9:u07:10029, +20:u08:NFS4ERR_TOOSMALL, +9:u02:10022, +25:u03:NFS4ERR_STALE_STATEID, +9:u04:10023, +19:u05:NFS4ERR_SYMLINK, +9:u06:10029, +20:u07:NFS4ERR_TOOSMALL, +9:u08:10005, +9:u01:10022, +25:u02:NFS4ERR_STALE_STATEID, +9:u03:10023, +19:u04:NFS4ERR_SYMLINK, +9:u05:10029, +20:u06:NFS4ERR_TOOSMALL, +9:u07:10005, +24:u08:NFS4ERR_TOO_MANY_OPS, +9:u00:10022, +25:u01:NFS4ERR_STALE_STATEID, +9:u02:10023, +19:u03:NFS4ERR_SYMLINK, +9:u04:10029, +20:u05:NFS4ERR_TOOSMALL, +9:u06:10005, +24:u07:NFS4ERR_TOO_MANY_OPS, +9:u08:10070, +25:u00:NFS4ERR_STALE_STATEID, +9:u01:10023, +19:u02:NFS4ERR_SYMLINK, +9:u03:10029, +20:u04:NFS4ERR_TOOSMALL, +9:u05:10005, +24:u06:NFS4ERR_TOO_MANY_OPS, +9:u07:10070, +30:u08:NFS4ERR_UNKNOWN_LAYOUTTYPE, +9:u00:10023, +19:u01:NFS4ERR_SYMLINK, +9:u02:10029, +20:u03:NFS4ERR_TOOSMALL, +9:u04:10005, +24:u05:NFS4ERR_TOO_MANY_OPS, +9:u06:10070, +30:u07:NFS4ERR_UNKNOWN_LAYOUTTYPE, +9:u08:10062, +19:u00:NFS4ERR_SYMLINK, +9:u01:10029, +20:u02:NFS4ERR_TOOSMALL, +9:u03:10005, +24:u04:NFS4ERR_TOO_MANY_OPS, +9:u05:10070, +30:u06:NFS4ERR_UNKNOWN_LAYOUTTYPE, +9:u07:10062, +27:u08:NFS4ERR_UNSAFE_COMPOUND, +9:u00:10029, +20:u01:NFS4ERR_TOOSMALL, +9:u02:10005, +24:u03:NFS4ERR_TOO_MANY_OPS, +9:u04:10070, +30:u05:NFS4ERR_UNKNOWN_LAYOUTTYPE, +9:u06:10062, +27:u07:NFS4ERR_UNSAFE_COMPOUND, +9:u08:10069, +20:u00:NFS4ERR_TOOSMALL, +9:u01:10005, +24:u02:NFS4ERR_TOO_MANY_OPS, +9:u03:10070, +30:u04:NFS4ERR_UNKNOWN_LAYOUTTYPE, +9:u05:10062, +27:u06:NFS4ERR_UNSAFE_COMPOUND, +9:u07:10069, +9:u00:10005, +24:u01:NFS4ERR_TOO_MANY_OPS, +9:u02:10070, +30:u03:NFS4ERR_UNKNOWN_LAYOUTTYPE, +9:u04:10062, +27:u05:NFS4ERR_UNSAFE_COMPOUND, +9:u06:10069, +9:u08:10016, +24:u00:NFS4ERR_TOO_MANY_OPS, +9:u01:10070, +30:u02:NFS4ERR_UNKNOWN_LAYOUTTYPE, +9:u03:10062, +27:u04:NFS4ERR_UNSAFE_COMPOUND, +9:u05:10069, +9:u07:10016, +22:u08:NFS4ERR_WRONG_CRED, +9:u00:10070, +30:u01:NFS4ERR_UNKNOWN_LAYOUTTYPE, +9:u02:10062, +27:u03:NFS4ERR_UNSAFE_COMPOUND, +9:u04:10069, +9:u06:10016, +22:u07:NFS4ERR_WRONG_CRED, +9:u08:10082, +30:u00:NFS4ERR_UNKNOWN_LAYOUTTYPE, +9:u01:10062, +27:u02:NFS4ERR_UNSAFE_COMPOUND, +9:u03:10069, +9:u05:10016, +22:u06:NFS4ERR_WRONG_CRED, +9:u07:10082, +22:u08:NFS4ERR_WRONG_TYPE, +9:u00:10062, +27:u01:NFS4ERR_UNSAFE_COMPOUND, +9:u02:10069, +9:u04:10016, +22:u05:NFS4ERR_WRONG_CRED, +9:u06:10082, +22:u07:NFS4ERR_WRONG_TYPE, +9:u08:10083, +27:u00:NFS4ERR_UNSAFE_COMPOUND, +9:u01:10069, +9:u03:10016, +22:u04:NFS4ERR_WRONG_CRED, +9:u05:10082, +22:u06:NFS4ERR_WRONG_TYPE, +9:u07:10083, +16:u08:NFS4ERR_XDEV, +9:u00:10069, +9:u02:10016, +22:u03:NFS4ERR_WRONG_CRED, +9:u04:10082, +22:u05:NFS4ERR_WRONG_TYPE, +9:u06:10083, +16:u07:NFS4ERR_XDEV, +9:u01:10016, +22:u02:NFS4ERR_WRONG_CRED, +9:u03:10082, +22:u04:NFS4ERR_WRONG_TYPE, +9:u05:10083, +16:u06:NFS4ERR_XDEV, +9:u00:10016, +22:u01:NFS4ERR_WRONG_CRED, +9:u02:10082, +22:u03:NFS4ERR_WRONG_TYPE, +9:u04:10083, +16:u05:NFS4ERR_XDEV, +11:u08:15.1.1., +22:u00:NFS4ERR_WRONG_CRED, +9:u01:10082, +22:u02:NFS4ERR_WRONG_TYPE, +9:u03:10083, +16:u04:NFS4ERR_XDEV, +9:u00:10082, +22:u01:NFS4ERR_WRONG_TYPE, +9:u02:10083, +16:u03:NFS4ERR_XDEV, +11:u07:15.1.1., +22:u00:NFS4ERR_WRONG_TYPE, +9:u01:10083, +16:u02:NFS4ERR_XDEV, +11:u06:15.1.1., +13:u08:15.1.1.1., +9:u00:10083, +16:u01:NFS4ERR_XDEV, +11:u14:15.1.1., +11:u05:15.1.1., +16:u00:NFS4ERR_XDEV, +11:u13:15.1.1., +11:u04:15.1.1., +13:u07:15.1.1.1., +11:u12:15.1.1., +11:u03:15.1.1., +13:u06:15.1.1.1., +15:u08:definition., +11:u11:15.1.1., +13:u14:15.1.1.1., +11:u02:15.1.1., +13:u05:15.1.1.1., +15:u07:definition., +11:u10:15.1.1., +13:u13:15.1.1.1., +10:uI2:....(), +11:u01:15.1.1., +13:u04:15.1.1.1., +15:u06:definition., +13:u12:15.1.1.1., +10:uI1:....(), +11:u00:15.1.1., +13:u03:15.1.1.1., +15:u05:definition., +13:u11:15.1.1.1., +10:uI0:....(), +13:u02:15.1.1.1., +15:u04:definition., +13:u08:pre-parse, +13:u10:15.1.1.1., +13:u01:15.1.1.1., +13:u08:15.1.1.2., +15:u03:definition., +13:u07:pre-parse, +13:u00:15.1.1.1., +15:u02:definition., +13:u06:pre-parse, +13:u07:15.1.1.2., +12:u08:quantity, +15:u01:definition., +13:u05:pre-parse, +13:u06:15.1.1.2., +15:u00:definition., +13:u04:pre-parse, +13:u14:15.1.1.2., +13:u05:15.1.1.2., +12:u07:quantity, +13:u03:pre-parse, +13:u13:15.1.1.2., +13:u04:15.1.1.2., +12:u06:quantity, +13:u02:pre-parse, +13:u12:15.1.1.2., +12:u14:quantity, +13:u03:15.1.1.2., +12:u05:quantity, +13:u01:pre-parse, +8:u08:363], +13:u11:15.1.1.2., +12:u13:quantity, +8:u23:Used, +13:u02:15.1.1.2., +12:u04:quantity, +13:u00:pre-parse, +8:u07:363], +13:u10:15.1.1.2., +12:u12:quantity, +13:u01:15.1.1.2., +12:u03:quantity, +8:u06:363], +12:u11:quantity, +13:u00:15.1.1.2., +12:u02:quantity, +8:u05:363], +12:u10:quantity, +12:u01:quantity, +8:u04:363], +15:u08:invocation., +12:u00:quantity, +13:u08:15.1.1.3., +8:u03:363], +15:u07:invocation., +8:u02:363], +15:u06:invocation., +13:u07:15.1.1.3., +8:u01:363], +15:u05:invocation., +13:u06:15.1.1.3., +8:u00:363], +15:u04:invocation., +13:u14:15.1.1.3., +13:u05:15.1.1.3., +15:u03:invocation., +13:u13:15.1.1.3., +13:u04:15.1.1.3., +15:u02:invocation., +13:u12:15.1.1.3., +13:u03:15.1.1.3., +15:u01:invocation., +13:u11:15.1.1.3., +8:u14:wait, +13:u02:15.1.1.3., +15:u00:invocation., +13:u10:15.1.1.3., +8:u13:wait, +13:u01:15.1.1.3., +8:u12:wait, +13:u00:15.1.1.3., +10:u08:timely, +8:u11:wait, +8:u10:wait, +10:u07:timely, +10:u06:timely, +10:u14:timely, +10:u05:timely, +10:u13:timely, +10:u04:timely, +10:u12:timely, +10:u03:timely, +7:u08:ID;, +10:u11:timely, +10:u02:timely, +7:u07:ID;, +10:u10:timely, +11:u14:re-send, +10:u01:timely, +7:u06:ID;, +15:u08:willingness, +11:u13:re-send, +10:u00:timely, +7:u05:ID;, +15:u07:willingness, +11:u12:re-send, +8:u23:re-s, +8:uI2:;-)., +7:u04:ID;, +15:u06:willingness, +11:u11:re-send, +8:uI1:;-)., +7:u03:ID;, +15:u05:willingness, +11:u10:re-send, +8:uI0:;-)., +13:u08:15.1.1.4., +7:u02:ID;, +15:u04:willingness, +7:u01:ID;, +15:u03:willingness, +13:u07:15.1.1.4., +7:u00:ID;, +15:u02:willingness, +13:u06:15.1.1.4., +15:u01:willingness, +13:u14:15.1.1.4., +13:u05:15.1.1.4., +13:u08:15.1.1.5., +15:u00:willingness, +13:u13:15.1.1.4., +13:u04:15.1.1.4., +13:u12:15.1.1.4., +13:u03:15.1.1.4., +13:u07:15.1.1.5., +13:u11:15.1.1.4., +13:u02:15.1.1.4., +13:u06:15.1.1.5., +13:u10:15.1.1.4., +13:u14:15.1.1.5., +13:u01:15.1.1.4., +13:u05:15.1.1.5., +13:u08:15.1.1.6., +13:u13:15.1.1.5., +13:u00:15.1.1.4., +13:u04:15.1.1.5., +13:u12:15.1.1.5., +13:u03:15.1.1.5., +13:u07:15.1.1.6., +13:u11:15.1.1.5., +13:u02:15.1.1.5., +13:u06:15.1.1.6., +9:u08:legal, +13:u10:15.1.1.5., +13:u14:15.1.1.6., +13:u01:15.1.1.5., +13:u05:15.1.1.6., +9:u07:legal, +13:u13:15.1.1.6., +13:u00:15.1.1.5., +13:u04:15.1.1.6., +9:u06:legal, +13:u12:15.1.1.6., +13:u03:15.1.1.6., +9:u05:legal, +8:u08:364], +13:u11:15.1.1.6., +13:u02:15.1.1.6., +9:u04:legal, +8:u07:364], +13:u10:15.1.1.6., +13:u01:15.1.1.6., +9:u03:legal, +8:u06:364], +13:u00:15.1.1.6., +9:u02:legal, +8:u05:364], +9:u01:legal, +8:u04:364], +13:u08:15.1.1.7., +9:u00:legal, +8:u03:364], +8:u02:364], +13:u14:translate, +13:u07:15.1.1.7., +8:u01:364], +13:u13:translate, +13:u06:15.1.1.7., +8:u00:364], +13:u12:translate, +13:u14:15.1.1.7., +13:u05:15.1.1.7., +11:u08:15.1.2., +13:u11:translate, +13:u13:15.1.1.7., +13:u04:15.1.1.7., +13:u10:translate, +13:u12:15.1.1.7., +13:u03:15.1.1.7., +11:u07:15.1.2., +13:u11:15.1.1.7., +13:u02:15.1.1.7., +11:u06:15.1.2., +13:u10:15.1.1.7., +11:u14:15.1.2., +13:u01:15.1.1.7., +11:u05:15.1.2., +11:u13:15.1.2., +13:u00:15.1.1.7., +11:u04:15.1.2., +11:u12:15.1.2., +11:u03:15.1.2., +11:u11:15.1.2., +11:u02:15.1.2., +9:u08:saved, +11:u10:15.1.2., +11:u01:15.1.2., +11:u00:15.1.2., +9:u07:saved, +9:u06:saved, +13:u08:15.1.2.1., +9:u14:saved, +9:u05:saved, +11:u08:Illegal, +9:u13:saved, +11:u14:checked, +9:u04:saved, +13:u07:15.1.2.1., +9:u12:saved, +11:u13:checked, +7:u22:sav, +8:u23:save, +9:u03:saved, +13:u06:15.1.2.1., +11:u07:Illegal, +10:u08:failed, +9:u11:saved, +11:u12:checked, +13:u14:15.1.2.1., +9:u02:saved, +13:u05:15.1.2.1., +11:u06:Illegal, +12:u08:generate, +10:u07:failed, +11:u08:PUTFH),, +9:u10:saved, +11:u11:checked, +13:u13:15.1.2.1., +11:u14:illegal, +9:u01:saved, +13:u04:15.1.2.1., +11:u05:Illegal, +13:u08:15.1.2.2., +10:u06:failed, +11:u07:PUTFH),, +11:u10:checked, +13:u12:15.1.2.1., +11:u13:illegal, +10:u14:handle, +9:u00:saved, +13:u03:15.1.2.1., +11:u04:Illegal, +12:u07:generate, +10:u05:failed, +11:u06:PUTFH),, +13:u11:15.1.2.1., +11:u12:illegal, +10:u13:handle, +7:u14:(by, +6:u21:Il, +7:u22:Ill, +8:u23:Ille, +13:u02:15.1.2.1., +11:u03:Illegal, +12:u06:generate, +13:u07:15.1.2.2., +10:u04:failed, +11:u05:PUTFH),, +13:u10:15.1.2.1., +11:u11:illegal, +10:u12:handle, +7:u13:(by, +12:u14:generate, +13:u01:15.1.2.1., +11:u02:Illegal, +12:u05:generate, +13:u06:15.1.2.2., +13:u08:15.1.2.3., +10:u03:failed, +11:u04:PUTFH),, +11:u10:illegal, +10:u11:handle, +7:u12:(by, +12:u13:generate, +13:u14:15.1.2.2., +7:u22:(by, +7:u23:(by, +13:u00:15.1.2.1., +11:u01:Illegal, +12:u04:generate, +13:u05:15.1.2.2., +10:u02:failed, +11:u03:PUTFH),, +10:u10:handle, +7:u11:(by, +12:u12:generate, +13:u13:15.1.2.2., +11:u00:Illegal, +12:u03:generate, +13:u04:15.1.2.2., +13:u07:15.1.2.3., +10:u01:failed, +11:u02:PUTFH),, +7:u10:(by, +12:u11:generate, +13:u12:15.1.2.2., +12:u02:generate, +13:u03:15.1.2.2., +13:u06:15.1.2.3., +10:u00:failed, +11:u01:PUTFH),, +12:u10:generate, +13:u11:15.1.2.2., +13:u14:15.1.2.3., +12:u01:generate, +13:u02:15.1.2.2., +13:u05:15.1.2.3., +13:u08:15.1.2.4., +11:u00:PUTFH),, +13:u10:15.1.2.2., +13:u13:15.1.2.3., +12:u00:generate, +13:u01:15.1.2.2., +13:u04:15.1.2.3., +13:u12:15.1.2.3., +13:u00:15.1.2.2., +13:u03:15.1.2.3., +13:u07:15.1.2.4., +13:u11:15.1.2.3., +13:u02:15.1.2.3., +13:u06:15.1.2.4., +13:u10:15.1.2.3., +13:u14:15.1.2.4., +13:u01:15.1.2.3., +13:u05:15.1.2.4., +13:u13:15.1.2.4., +13:u00:15.1.2.3., +13:u04:15.1.2.4., +13:u12:15.1.2.4., +13:u03:15.1.2.4., +23:u08:"fs_locations_info", +13:u11:15.1.2.4., +13:u02:15.1.2.4., +23:u07:"fs_locations_info", +15:u08:discussion,, +13:u10:15.1.2.4., +13:u01:15.1.2.4., +23:u06:"fs_locations_info", +15:u07:discussion,, +13:u00:15.1.2.4., +23:u05:"fs_locations_info", +15:u06:discussion,, +23:u04:"fs_locations_info", +15:u05:discussion,, +8:u08:365], +23:u03:"fs_locations_info", +15:u04:discussion,, +8:u07:365], +23:u02:"fs_locations_info", +15:u03:discussion,, +8:u06:365], +13:u08:15.1.2.5., +23:u01:"fs_locations_info", +15:u02:discussion,, +8:u05:365], +23:u00:"fs_locations_info", +15:u01:discussion,, +8:u04:365], +13:u07:15.1.2.5., +15:u00:discussion,, +8:u03:365], +13:u06:15.1.2.5., +13:u08:malformed, +8:u02:365], +13:u14:15.1.2.5., +13:u05:15.1.2.5., +8:u01:365], +13:u13:15.1.2.5., +13:u04:15.1.2.5., +13:u07:malformed, +13:u08:15.1.2.6., +8:u00:365], +13:u12:15.1.2.5., +13:u03:15.1.2.5., +13:u06:malformed, +13:u11:15.1.2.5., +13:u14:malformed, +13:u02:15.1.2.5., +13:u05:malformed, +13:u07:15.1.2.6., +13:u10:15.1.2.5., +13:u13:malformed, +13:u01:15.1.2.5., +13:u04:malformed, +13:u06:15.1.2.6., +13:u08:15.1.2.7., +13:u12:malformed, +13:u14:15.1.2.6., +8:u23:malf, +13:u00:15.1.2.5., +13:u03:malformed, +13:u05:15.1.2.6., +13:u11:malformed, +13:u13:15.1.2.6., +13:u02:malformed, +13:u04:15.1.2.6., +13:u07:15.1.2.7., +13:u10:malformed, +13:u12:15.1.2.6., +13:u01:malformed, +13:u03:15.1.2.6., +13:u06:15.1.2.7., +13:u11:15.1.2.6., +13:u14:15.1.2.7., +13:u00:malformed, +13:u02:15.1.2.6., +13:u05:15.1.2.7., +13:u08:15.1.2.8., +13:u10:15.1.2.6., +13:u13:15.1.2.7., +13:u01:15.1.2.6., +13:u04:15.1.2.7., +13:u12:15.1.2.7., +13:u00:15.1.2.6., +13:u03:15.1.2.7., +13:u07:15.1.2.8., +13:u11:15.1.2.7., +13:u02:15.1.2.7., +13:u06:15.1.2.8., +13:u08:15.1.2.9., +13:u10:15.1.2.7., +13:u14:15.1.2.8., +13:u01:15.1.2.7., +13:u05:15.1.2.8., +13:u13:15.1.2.8., +13:u00:15.1.2.7., +13:u04:15.1.2.8., +13:u07:15.1.2.9., +13:u12:15.1.2.8., +13:u03:15.1.2.8., +13:u06:15.1.2.9., +13:u11:15.1.2.8., +13:u14:15.1.2.9., +13:u02:15.1.2.8., +13:u05:15.1.2.9., +13:u10:15.1.2.8., +13:u13:15.1.2.9., +13:u01:15.1.2.8., +13:u04:15.1.2.9., +13:u12:15.1.2.9., +13:u00:15.1.2.8., +13:u03:15.1.2.9., +11:u08:15.1.3., +13:u11:15.1.2.9., +13:u02:15.1.2.9., +12:u08:Compound, +13:u10:15.1.2.9., +13:u01:15.1.2.9., +11:u07:15.1.3., +12:u07:Compound, +13:u00:15.1.2.9., +11:u06:15.1.3., +12:u06:Compound, +11:u14:15.1.3., +11:u05:15.1.3., +12:u05:Compound, +11:u13:15.1.3., +11:u04:15.1.3., +10:u08:appear, +12:u04:Compound, +11:u12:15.1.3., +11:u03:15.1.3., +15:u08:constraints, +12:u03:Compound, +11:u11:15.1.3., +11:u02:15.1.3., +10:u07:appear, +16:u08:CB_SEQUENCE), +12:u02:Compound, +11:u10:15.1.3., +11:u01:15.1.3., +10:u06:appear, +15:u07:constraints, +13:u08:15.1.3.1., +12:u01:Compound, +10:u14:appear, +11:u00:15.1.3., +10:u05:appear, +15:u06:constraints, +16:u07:CB_SEQUENCE), +12:u00:Compound, +10:u08:NFS_OK, +10:u13:appear, +15:u14:constraints, +10:u04:appear, +15:u05:constraints, +16:u06:CB_SEQUENCE), +13:u07:15.1.3.1., +15:u08:constituent, +10:u07:NFS_OK, +10:u12:appear, +15:u13:constraints, +16:u14:cb_sequence), +10:u03:appear, +15:u04:constraints, +16:u05:CB_SEQUENCE), +13:u06:15.1.3.1., +10:u06:NFS_OK, +10:u11:appear, +15:u12:constraints, +16:u13:cb_sequence), +13:u14:15.1.3.1., +10:u02:appear, +15:u03:constraints, +16:u04:CB_SEQUENCE), +13:u05:15.1.3.1., +15:u07:constituent, +10:u05:NFS_OK, +10:u10:appear, +15:u11:constraints, +16:u12:cb_sequence), +13:u13:15.1.3.1., +10:u01:appear, +15:u02:constraints, +16:u03:CB_SEQUENCE), +13:u04:15.1.3.1., +15:u06:constituent, +10:u04:NFS_OK, +15:u10:constraints, +16:u11:cb_sequence), +13:u12:15.1.3.1., +15:u14:constituent, +10:u00:appear, +15:u01:constraints, +16:u02:CB_SEQUENCE), +13:u03:15.1.3.1., +15:u05:constituent, +10:u03:NFS_OK, +8:u08:366], +16:u10:cb_sequence), +13:u11:15.1.3.1., +15:u13:constituent, +15:u00:constraints, +16:u01:CB_SEQUENCE), +13:u02:15.1.3.1., +15:u04:constituent, +10:u02:NFS_OK, +8:u07:366], +13:u10:15.1.3.1., +15:u12:constituent, +16:u00:CB_SEQUENCE), +13:u01:15.1.3.1., +15:u03:constituent, +10:u01:NFS_OK, +8:u06:366], +15:u11:constituent, +13:u00:15.1.3.1., +15:u02:constituent, +13:u08:15.1.3.2., +10:u00:NFS_OK, +8:u05:366], +15:u10:constituent, +15:u01:constituent, +8:u04:366], +15:u00:constituent, +13:u07:15.1.3.2., +8:u03:366], +13:u06:15.1.3.2., +8:u02:366], +13:u14:15.1.3.2., +13:u05:15.1.3.2., +8:u01:366], +13:u13:15.1.3.2., +13:u04:15.1.3.2., +13:u08:15.1.3.3., +8:u00:366], +13:u12:15.1.3.2., +13:u03:15.1.3.2., +13:u11:15.1.3.2., +13:u02:15.1.3.2., +13:u07:15.1.3.3., +13:u10:15.1.3.2., +13:u01:15.1.3.2., +13:u06:15.1.3.3., +13:u14:15.1.3.3., +13:u00:15.1.3.2., +13:u05:15.1.3.3., +13:u13:15.1.3.3., +13:u04:15.1.3.3., +13:u08:15.1.3.4., +13:u12:15.1.3.3., +13:u03:15.1.3.3., +13:u11:15.1.3.3., +13:u02:15.1.3.3., +13:u07:15.1.3.4., +14:u08:procedure., +13:u10:15.1.3.3., +13:u01:15.1.3.3., +13:u06:15.1.3.4., +13:u14:15.1.3.4., +13:u00:15.1.3.3., +13:u05:15.1.3.4., +14:u07:procedure., +13:u13:15.1.3.4., +13:u04:15.1.3.4., +14:u06:procedure., +13:u12:15.1.3.4., +14:u14:procedure., +13:u03:15.1.3.4., +14:u05:procedure., +14:u08:pre-parses, +13:u11:15.1.3.4., +14:u13:procedure., +13:u02:15.1.3.4., +14:u04:procedure., +14:u07:pre-parses, +13:u10:15.1.3.4., +14:u12:procedure., +13:u01:15.1.3.4., +14:u03:procedure., +13:u08:15.1.3.5., +14:u06:pre-parses, +14:u11:procedure., +13:u00:15.1.3.4., +14:u02:procedure., +8:u08:Most, +14:u05:pre-parses, +14:u10:procedure., +14:u01:procedure., +13:u07:15.1.3.5., +14:u04:pre-parses, +14:u00:procedure., +13:u06:15.1.3.5., +8:u07:Most, +14:u03:pre-parses, +13:u14:15.1.3.5., +13:u05:15.1.3.5., +8:u06:Most, +14:u02:pre-parses, +13:u13:15.1.3.5., +13:u04:15.1.3.5., +8:u05:Most, +14:u01:pre-parses, +11:u08:execute, +13:u12:15.1.3.5., +13:u03:15.1.3.5., +8:u04:Most, +13:u08:15.1.3.6., +14:u00:pre-parses, +11:u07:execute, +12:u08:results., +13:u11:15.1.3.5., +7:u22:Mos, +8:u23:Most, +13:u02:15.1.3.5., +8:u03:Most, +11:u06:execute, +12:u07:results., +13:u10:15.1.3.5., +13:u01:15.1.3.5., +8:u02:Most, +13:u07:15.1.3.6., +11:u05:execute, +12:u06:results., +13:u00:15.1.3.5., +8:u01:Most, +13:u06:15.1.3.6., +13:u08:15.1.3.7., +11:u04:execute, +12:u05:results., +13:u14:15.1.3.6., +8:u00:Most, +13:u05:15.1.3.6., +11:u03:execute, +12:u04:results., +13:u13:15.1.3.6., +13:u04:15.1.3.6., +13:u07:15.1.3.7., +11:u02:execute, +12:u03:results., +13:u12:15.1.3.6., +13:u03:15.1.3.6., +13:u06:15.1.3.7., +11:u01:execute, +12:u02:results., +13:u11:15.1.3.6., +13:u14:15.1.3.7., +13:u02:15.1.3.6., +13:u05:15.1.3.7., +13:u08:15.1.3.8., +11:u00:execute, +12:u01:results., +13:u10:15.1.3.6., +13:u13:15.1.3.7., +13:u01:15.1.3.6., +13:u04:15.1.3.7., +12:u00:results., +13:u12:15.1.3.7., +13:u00:15.1.3.6., +13:u03:15.1.3.7., +13:u07:15.1.3.8., +13:u11:15.1.3.7., +13:u02:15.1.3.7., +13:u06:15.1.3.8., +13:u10:15.1.3.7., +13:u14:15.1.3.8., +13:u01:15.1.3.7., +13:u05:15.1.3.8., +13:u13:15.1.3.8., +13:u00:15.1.3.7., +13:u04:15.1.3.8., +13:u12:15.1.3.8., +13:u03:15.1.3.8., +8:u08:367], +13:u11:15.1.3.8., +13:u02:15.1.3.8., +8:u07:367], +13:u10:15.1.3.8., +13:u01:15.1.3.8., +8:u06:367], +13:u00:15.1.3.8., +13:u08:15.1.3.9., +8:u05:367], +8:u04:367], +13:u07:15.1.3.9., +8:u03:367], +13:u06:15.1.3.9., +14:u08:15.1.3.10., +8:u02:367], +13:u14:15.1.3.9., +13:u05:15.1.3.9., +8:u01:367], +13:u13:15.1.3.9., +13:u04:15.1.3.9., +14:u07:15.1.3.10., +8:u00:367], +13:u12:15.1.3.9., +13:u03:15.1.3.9., +14:u06:15.1.3.10., +14:u08:15.1.3.11., +13:u11:15.1.3.9., +14:u14:15.1.3.10., +13:u02:15.1.3.9., +14:u05:15.1.3.10., +13:u10:15.1.3.9., +14:u13:15.1.3.10., +13:u01:15.1.3.9., +14:u04:15.1.3.10., +14:u07:15.1.3.11., +14:u12:15.1.3.10., +13:u00:15.1.3.9., +14:u03:15.1.3.10., +14:u06:15.1.3.11., +14:u08:15.1.3.12., +14:u11:15.1.3.10., +14:u14:15.1.3.11., +14:u02:15.1.3.10., +14:u05:15.1.3.11., +14:u10:15.1.3.10., +14:u13:15.1.3.11., +14:u01:15.1.3.10., +14:u04:15.1.3.11., +14:u07:15.1.3.12., +14:u12:15.1.3.11., +14:u00:15.1.3.10., +14:u03:15.1.3.11., +14:u06:15.1.3.12., +19:u08:--specifically,, +14:u11:15.1.3.11., +14:u14:15.1.3.12., +14:u02:15.1.3.11., +14:u05:15.1.3.12., +11:u08:15.1.4., +19:u07:--specifically,, +14:u10:15.1.3.11., +14:u13:15.1.3.12., +14:u01:15.1.3.11., +14:u04:15.1.3.12., +19:u06:--specifically,, +14:u12:15.1.3.12., +14:u00:15.1.3.11., +14:u03:15.1.3.12., +11:u07:15.1.4., +19:u05:--specifically,, +14:u11:15.1.3.12., +14:u02:15.1.3.12., +11:u06:15.1.4., +19:u04:--specifically,, +14:u10:15.1.3.12., +11:u14:15.1.4., +14:u01:15.1.3.12., +11:u05:15.1.4., +13:u08:15.1.4.1., +19:u03:--specifically,, +11:u13:15.1.4., +14:u00:15.1.3.12., +11:u04:15.1.4., +19:u02:--specifically,, +11:u12:15.1.4., +11:u03:15.1.4., +13:u07:15.1.4.1., +19:u01:--specifically,, +11:u11:15.1.4., +11:u02:15.1.4., +13:u06:15.1.4.1., +19:u00:--specifically,, +11:u10:15.1.4., +13:u14:15.1.4.1., +11:u01:15.1.4., +13:u05:15.1.4.1., +13:u13:15.1.4.1., +11:u00:15.1.4., +13:u04:15.1.4.1., +13:u12:15.1.4.1., +13:u03:15.1.4.1., +13:u08:15.1.4.2., +13:u11:15.1.4.1., +13:u02:15.1.4.1., +12:u08:Resource, +13:u10:15.1.4.1., +13:u01:15.1.4.1., +13:u07:15.1.4.2., +11:u08:(quota), +13:u00:15.1.4.1., +13:u06:15.1.4.2., +12:u07:Resource, +13:u08:15.1.4.3., +11:u07:(quota), +13:u14:15.1.4.2., +13:u05:15.1.4.2., +12:u06:Resource, +11:u06:(quota), +13:u13:15.1.4.2., +13:u04:15.1.4.2., +12:u05:Resource, +13:u07:15.1.4.3., +12:u08:linking), +11:u05:(quota), +13:u12:15.1.4.2., +8:uI2:().', +13:u03:15.1.4.2., +12:u04:Resource, +13:u06:15.1.4.3., +11:u04:(quota), +13:u11:15.1.4.2., +13:u14:15.1.4.3., +8:u23:Reso, +8:uI1:().', +13:u02:15.1.4.2., +12:u03:Resource, +13:u05:15.1.4.3., +12:u07:linking), +11:u03:(quota), +13:u10:15.1.4.2., +13:u13:15.1.4.3., +8:uI0:().', +13:u01:15.1.4.2., +12:u02:Resource, +13:u04:15.1.4.3., +12:u06:linking), +11:u02:(quota), +13:u12:15.1.4.3., +12:u14:linking), +13:u00:15.1.4.2., +12:u01:Resource, +13:u03:15.1.4.3., +12:u05:linking), +11:u01:(quota), +8:u08:368], +13:u11:15.1.4.3., +12:u13:linking), +12:u00:Resource, +13:u02:15.1.4.3., +12:u04:linking), +11:u00:(quota), +8:u07:368], +13:u10:15.1.4.3., +12:u12:linking), +13:u01:15.1.4.3., +12:u03:linking), +8:u06:368], +12:u11:linking), +13:u00:15.1.4.3., +12:u02:linking), +13:u08:15.1.4.4., +8:u05:368], +12:u10:linking), +12:u01:linking), +8:u04:368], +12:u00:linking), +13:u07:15.1.4.4., +8:u08:grow, +8:u03:368], +13:u06:15.1.4.4., +13:u08:15.1.4.5., +8:u02:368], +13:u14:15.1.4.4., +13:u05:15.1.4.4., +8:u07:grow, +8:u01:368], +13:u13:15.1.4.4., +13:u04:15.1.4.4., +8:u06:grow, +13:u07:15.1.4.5., +8:u00:368], +13:u12:15.1.4.4., +8:u14:grow, +13:u03:15.1.4.4., +8:u05:grow, +13:u06:15.1.4.5., +15:u08:linking-to,, +13:u11:15.1.4.4., +8:u13:grow, +13:u14:15.1.4.5., +13:u02:15.1.4.4., +8:u04:grow, +13:u05:15.1.4.5., +13:u08:15.1.4.6., +13:u08:removing,, +13:u10:15.1.4.4., +8:u12:grow, +13:u13:15.1.4.5., +8:u23:grow, +13:u01:15.1.4.4., +8:u03:grow, +13:u04:15.1.4.5., +15:u07:linking-to,, +13:u07:removing,, +8:u11:grow, +13:u12:15.1.4.5., +13:u00:15.1.4.4., +8:u02:grow, +13:u03:15.1.4.5., +15:u06:linking-to,, +13:u07:15.1.4.6., +13:u06:removing,, +8:u10:grow, +13:u11:15.1.4.5., +15:u14:linking-to,, +8:u01:grow, +13:u02:15.1.4.5., +15:u05:linking-to,, +13:u06:15.1.4.6., +13:u08:15.1.4.7., +13:u05:removing,, +13:u10:15.1.4.5., +15:u13:linking-to,, +13:u14:15.1.4.6., +8:uI2:-,,., +8:u00:grow, +13:u01:15.1.4.5., +15:u04:linking-to,, +13:u05:15.1.4.6., +13:u04:removing,, +15:u12:linking-to,, +13:u13:15.1.4.6., +8:uI1:-,,., +13:u00:15.1.4.5., +15:u03:linking-to,, +13:u04:15.1.4.6., +13:u07:15.1.4.7., +13:u03:removing,, +15:u11:linking-to,, +13:u12:15.1.4.6., +8:uI0:-,,., +15:u02:linking-to,, +13:u03:15.1.4.6., +13:u06:15.1.4.7., +13:u08:15.1.4.8., +13:u02:removing,, +15:u10:linking-to,, +13:u11:15.1.4.6., +13:u14:15.1.4.7., +15:u01:linking-to,, +13:u02:15.1.4.6., +13:u05:15.1.4.7., +13:u01:removing,, +13:u10:15.1.4.6., +13:u13:15.1.4.7., +15:u00:linking-to,, +13:u01:15.1.4.6., +13:u04:15.1.4.7., +13:u07:15.1.4.8., +13:u00:removing,, +13:u12:15.1.4.7., +13:u00:15.1.4.6., +13:u03:15.1.4.7., +13:u06:15.1.4.8., +13:u08:15.1.4.9., +13:u11:15.1.4.7., +13:u14:15.1.4.8., +13:u02:15.1.4.7., +13:u05:15.1.4.8., +13:u10:15.1.4.7., +13:u13:15.1.4.8., +13:u01:15.1.4.7., +13:u04:15.1.4.8., +13:u07:15.1.4.9., +13:u12:15.1.4.8., +13:u00:15.1.4.7., +13:u03:15.1.4.8., +13:u06:15.1.4.9., +14:u08:15.1.4.10., +13:u11:15.1.4.8., +13:u14:15.1.4.9., +13:u02:15.1.4.8., +13:u05:15.1.4.9., +13:u10:15.1.4.8., +13:u13:15.1.4.9., +13:u01:15.1.4.8., +13:u04:15.1.4.9., +14:u07:15.1.4.10., +14:u08:15.1.4.11., +13:u12:15.1.4.9., +13:u00:15.1.4.8., +13:u03:15.1.4.9., +14:u06:15.1.4.10., +13:u11:15.1.4.9., +14:u14:15.1.4.10., +13:u02:15.1.4.9., +14:u05:15.1.4.10., +14:u07:15.1.4.11., +13:u10:15.1.4.9., +14:u13:15.1.4.10., +13:u01:15.1.4.9., +14:u04:15.1.4.10., +14:u06:15.1.4.11., +14:u08:15.1.4.12., +14:u12:15.1.4.10., +14:u14:15.1.4.11., +13:u00:15.1.4.9., +14:u03:15.1.4.10., +14:u05:15.1.4.11., +14:u11:15.1.4.10., +14:u13:15.1.4.11., +14:u02:15.1.4.10., +14:u04:15.1.4.11., +14:u07:15.1.4.12., +19:u08:inappropriately, +14:u10:15.1.4.10., +14:u12:15.1.4.11., +14:u01:15.1.4.10., +14:u03:15.1.4.11., +14:u06:15.1.4.12., +11:u08:crosses, +14:u11:15.1.4.11., +14:u14:15.1.4.12., +14:u00:15.1.4.10., +14:u02:15.1.4.11., +14:u05:15.1.4.12., +19:u07:inappropriately, +11:u07:crosses, +14:u10:15.1.4.11., +14:u13:15.1.4.12., +14:u01:15.1.4.11., +14:u04:15.1.4.12., +19:u06:inappropriately, +11:u06:crosses, +14:u12:15.1.4.12., +19:u14:inappropriately, +14:u00:15.1.4.11., +14:u03:15.1.4.12., +19:u05:inappropriately, +11:u05:crosses, +14:u11:15.1.4.12., +19:u13:inappropriately, +14:u02:15.1.4.12., +19:u04:inappropriately, +11:u04:crosses, +14:u10:15.1.4.12., +19:u12:inappropriately, +14:u01:15.1.4.12., +19:u03:inappropriately, +11:u03:crosses, +8:u08:369], +19:u11:inappropriately, +14:u00:15.1.4.12., +19:u02:inappropriately, +11:u02:crosses, +8:u07:369], +19:u10:inappropriately, +19:u01:inappropriately, +11:u01:crosses, +8:u06:369], +19:u00:inappropriately, +11:u00:crosses, +8:u05:369], +8:u04:369], +8:u03:369], +8:u02:369], +14:u08:accounting, +8:u01:369], +10:u08:treats, +8:u00:369], +10:u07:treats, +14:u08:purposes),, +14:u07:accounting, +11:u08:15.1.5., +10:u06:treats, +14:u07:purposes),, +14:u06:accounting, +10:u05:treats, +14:u06:purposes),, +14:u14:accounting, +14:u05:accounting, +11:u07:15.1.5., +13:u08:stateids), +10:u04:treats, +14:u05:purposes),, +14:u13:accounting, +14:u04:accounting, +11:u06:15.1.5., +10:u03:treats, +14:u04:purposes),, +14:u12:accounting, +11:u14:15.1.5., +14:u03:accounting, +11:u05:15.1.5., +13:u07:stateids), +10:u02:treats, +14:u03:purposes),, +14:u11:accounting, +11:u13:15.1.5., +14:u02:accounting, +11:u04:15.1.5., +13:u06:stateids), +10:u01:treats, +14:u02:purposes),, +14:u10:accounting, +11:u12:15.1.5., +13:u14:stateids), +14:u01:accounting, +11:u03:15.1.5., +13:u05:stateids), +10:u00:treats, +14:u01:purposes),, +11:u11:15.1.5., +13:u13:stateids), +14:u00:accounting, +11:u02:15.1.5., +13:u04:stateids), +14:u00:purposes),, +11:u10:15.1.5., +13:u12:stateids), +11:u01:15.1.5., +13:u03:stateids), +13:u08:15.1.5.1., +9:u08:maps., +13:u11:stateids), +11:u00:15.1.5., +13:u02:stateids), +9:u07:maps., +13:u10:stateids), +13:u01:stateids), +13:u07:15.1.5.1., +9:u06:maps., +13:u00:stateids), +13:u06:15.1.5.1., +13:u08:15.1.5.2., +9:u05:maps., +13:u14:15.1.5.1., +13:u05:15.1.5.1., +9:u04:maps., +13:u13:15.1.5.1., +13:u04:15.1.5.1., +13:u07:15.1.5.2., +9:u08:8.2.4, +9:u03:maps., +13:u12:15.1.5.1., +13:u03:15.1.5.1., +13:u06:15.1.5.2., +13:u08:15.1.5.3., +9:u02:maps., +13:u11:15.1.5.1., +13:u14:15.1.5.2., +13:u02:15.1.5.1., +13:u05:15.1.5.2., +9:u07:8.2.4, +9:u01:maps., +13:u10:15.1.5.1., +13:u13:15.1.5.2., +13:u01:15.1.5.1., +13:u04:15.1.5.2., +9:u06:8.2.4, +13:u07:15.1.5.3., +9:u00:maps., +13:u12:15.1.5.2., +9:u14:8.2.4, +13:u00:15.1.5.1., +13:u03:15.1.5.2., +9:u05:8.2.4, +13:u06:15.1.5.3., +11:u08:layout), +13:u11:15.1.5.2., +9:u13:8.2.4, +13:u14:15.1.5.3., +13:u02:15.1.5.2., +9:u04:8.2.4, +13:u05:15.1.5.3., +13:u08:15.1.5.4., +11:u07:layout), +13:u10:15.1.5.2., +9:u12:8.2.4, +13:u13:15.1.5.3., +13:u01:15.1.5.2., +9:u03:8.2.4, +13:u04:15.1.5.3., +11:u06:layout), +9:u11:8.2.4, +13:u12:15.1.5.3., +13:u00:15.1.5.2., +9:u02:8.2.4, +13:u03:15.1.5.3., +13:u07:15.1.5.4., +11:u05:layout), +9:u10:8.2.4, +13:u11:15.1.5.3., +9:u01:8.2.4, +13:u02:15.1.5.3., +13:u06:15.1.5.4., +11:u04:layout), +13:u10:15.1.5.3., +13:u14:15.1.5.4., +9:u00:8.2.4, +13:u01:15.1.5.3., +13:u05:15.1.5.4., +11:u03:layout), +15:u08:expiration,, +13:u13:15.1.5.4., +13:u00:15.1.5.3., +13:u04:15.1.5.4., +13:u08:15.1.5.5., +11:u02:layout), +15:u07:expiration,, +13:u12:15.1.5.4., +13:u03:15.1.5.4., +11:u01:layout), +15:u06:expiration,, +13:u11:15.1.5.4., +13:u02:15.1.5.4., +13:u07:15.1.5.5., +11:u00:layout), +15:u05:expiration,, +13:u10:15.1.5.4., +13:u01:15.1.5.4., +13:u06:15.1.5.5., +15:u04:expiration,, +13:u14:15.1.5.5., +13:u00:15.1.5.4., +13:u05:15.1.5.5., +15:u03:expiration,, +13:u13:15.1.5.5., +13:u04:15.1.5.5., +15:u02:expiration,, +13:u12:15.1.5.5., +13:u03:15.1.5.5., +15:u01:expiration,, +8:u08:370], +13:u11:15.1.5.5., +13:u02:15.1.5.5., +15:u00:expiration,, +8:u07:370], +13:u10:15.1.5.5., +13:u01:15.1.5.5., +8:u06:370], +13:u00:15.1.5.5., +11:u08:15.1.6., +8:u05:370], +8:u04:370], +11:u07:15.1.6., +13:u08:15.1.6.1., +8:u03:370], +11:u06:15.1.6., +8:u02:370], +11:u14:15.1.6., +11:u05:15.1.6., +13:u07:15.1.6.1., +8:u01:370], +11:u13:15.1.6., +11:u04:15.1.6., +13:u06:15.1.6.1., +8:u00:370], +11:u12:15.1.6., +13:u14:15.1.6.1., +11:u03:15.1.6., +13:u05:15.1.6.1., +19:u08:privileged-user, +11:u11:15.1.6., +13:u13:15.1.6.1., +11:u02:15.1.6., +13:u04:15.1.6.1., +11:u10:15.1.6., +13:u12:15.1.6.1., +11:u01:15.1.6., +13:u03:15.1.6.1., +19:u07:privileged-user, +14:u08:15.1.6.4),, +13:u11:15.1.6.1., +16:u14:nfs4err_perm, +11:u00:15.1.6., +13:u02:15.1.6.1., +19:u06:privileged-user, +14:u07:15.1.6.4),, +13:u10:15.1.6.1., +16:u13:nfs4err_perm, +19:u14:privileged-user, +13:u01:15.1.6.1., +19:u05:privileged-user, +13:u08:15.1.6.2., +14:u06:15.1.6.4),, +16:u12:nfs4err_perm, +19:u13:privileged-user, +13:u00:15.1.6.1., +19:u04:privileged-user, +14:u05:15.1.6.4),, +16:u11:nfs4err_perm, +19:u12:privileged-user, +19:u03:privileged-user, +13:u07:15.1.6.2., +14:u04:15.1.6.4),, +16:u10:nfs4err_perm, +19:u11:privileged-user, +19:u02:privileged-user, +13:u06:15.1.6.2., +14:u03:15.1.6.4),, +19:u10:privileged-user, +13:u14:15.1.6.2., +19:u01:privileged-user, +13:u05:15.1.6.2., +13:u08:15.1.6.3., +14:u02:15.1.6.4),, +13:u13:15.1.6.2., +19:u00:privileged-user, +13:u04:15.1.6.2., +14:u01:15.1.6.4),, +13:u12:15.1.6.2., +13:u03:15.1.6.2., +13:u07:15.1.6.3., +14:u00:15.1.6.4),, +13:u11:15.1.6.2., +13:u02:15.1.6.2., +13:u06:15.1.6.3., +13:u10:15.1.6.2., +13:u14:15.1.6.3., +13:u01:15.1.6.2., +13:u05:15.1.6.3., +13:u13:15.1.6.3., +13:u00:15.1.6.2., +13:u04:15.1.6.3., +13:u12:15.1.6.3., +13:u03:15.1.6.3., +13:u11:15.1.6.3., +13:u02:15.1.6.3., +13:u08:15.1.6.4., +13:u10:15.1.6.3., +13:u01:15.1.6.3., +6:uI2:(;, +13:u00:15.1.6.3., +13:u07:15.1.6.4., +6:uI1:(;, +13:u06:15.1.6.4., +11:u08:15.1.7., +13:u14:15.1.6.4., +6:uI0:(;, +13:u05:15.1.6.4., +13:u13:15.1.6.4., +13:u04:15.1.6.4., +11:u07:15.1.7., +13:u12:15.1.6.4., +13:u03:15.1.6.4., +11:u06:15.1.7., +11:u08:Besides, +13:u11:15.1.6.4., +11:u14:15.1.7., +13:u02:15.1.6.4., +11:u05:15.1.7., +13:u10:15.1.6.4., +11:u13:15.1.7., +13:u01:15.1.6.4., +11:u04:15.1.7., +11:u07:Besides, +13:u08:15.1.7.1., +11:u12:15.1.7., +13:u00:15.1.6.4., +11:u03:15.1.7., +11:u06:Besides, +11:u11:15.1.7., +11:u14:besides, +11:u02:15.1.7., +11:u05:Besides, +13:u07:15.1.7.1., +11:u10:15.1.7., +11:u13:besides, +11:u01:15.1.7., +11:u04:Besides, +13:u06:15.1.7.1., +11:u12:besides, +13:u14:15.1.7.1., +7:u22:Bes, +8:u23:Besi, +11:u00:15.1.7., +11:u03:Besides, +13:u05:15.1.7.1., +11:u11:besides, +13:u13:15.1.7.1., +11:u02:Besides, +13:u04:15.1.7.1., +11:u10:besides, +13:u12:15.1.7.1., +11:u01:Besides, +13:u03:15.1.7.1., +8:u08:371], +13:u11:15.1.7.1., +11:u00:Besides, +13:u02:15.1.7.1., +8:u07:371], +13:u10:15.1.7.1., +13:u01:15.1.7.1., +8:u06:371], +13:u00:15.1.7.1., +13:u08:15.1.7.2., +8:u05:371], +8:u04:371], +13:u07:15.1.7.2., +8:u03:371], +13:u06:15.1.7.2., +8:u02:371], +13:u14:15.1.7.2., +13:u05:15.1.7.2., +8:u01:371], +13:u13:15.1.7.2., +13:u04:15.1.7.2., +8:u00:371], +13:u12:15.1.7.2., +13:u03:15.1.7.2., +13:u08:15.1.7.3., +13:u11:15.1.7.2., +13:u02:15.1.7.2., +12:u08:Returned, +13:u10:15.1.7.2., +13:u01:15.1.7.2., +13:u07:15.1.7.3., +13:u00:15.1.7.2., +13:u06:15.1.7.3., +12:u07:Returned, +11:u08:15.1.8., +10:u08:limit., +13:u14:15.1.7.3., +13:u05:15.1.7.3., +12:u06:Returned, +10:u07:limit., +13:u13:15.1.7.3., +13:u04:15.1.7.3., +12:u05:Returned, +11:u07:15.1.8., +10:u06:limit., +13:u12:15.1.7.3., +13:u03:15.1.7.3., +12:u04:Returned, +11:u06:15.1.8., +10:u05:limit., +13:u11:15.1.7.3., +11:u14:15.1.8., +8:u23:Retu, +13:u02:15.1.7.3., +12:u03:Returned, +11:u05:15.1.8., +10:u04:limit., +13:u10:15.1.7.3., +11:u13:15.1.8., +13:u01:15.1.7.3., +12:u02:Returned, +11:u04:15.1.8., +13:u08:15.1.8.1., +10:u03:limit., +11:u08:15.1.9., +11:u12:15.1.8., +13:u00:15.1.7.3., +12:u01:Returned, +11:u03:15.1.8., +10:u02:limit., +11:u07:15.1.9., +11:u11:15.1.8., +12:u00:Returned, +11:u02:15.1.8., +13:u07:15.1.8.1., +10:u01:limit., +11:u06:15.1.9., +11:u10:15.1.8., +11:u01:15.1.8., +13:u06:15.1.8.1., +10:u00:limit., +11:u05:15.1.9., +13:u14:15.1.8.1., +11:u00:15.1.8., +13:u05:15.1.8.1., +11:u04:15.1.9., +10:u08:32-bit, +13:u13:15.1.8.1., +13:u04:15.1.8.1., +13:u08:15.1.8.2., +11:u03:15.1.9., +10:u07:32-bit, +13:u12:15.1.8.1., +13:u03:15.1.8.1., +11:u02:15.1.9., +10:u06:32-bit, +13:u11:15.1.8.1., +13:u02:15.1.8.1., +13:u07:15.1.8.2., +11:u01:15.1.9., +10:u05:32-bit, +13:u10:15.1.8.1., +13:u01:15.1.8.1., +13:u06:15.1.8.2., +13:u08:15.1.8.3., +11:u00:15.1.9., +10:u04:32-bit, +13:u14:15.1.8.2., +10:uI2:.(...), +13:u00:15.1.8.1., +13:u05:15.1.8.2., +10:u03:32-bit, +13:u13:15.1.8.2., +10:uI1:.(...), +13:u04:15.1.8.2., +13:u07:15.1.8.3., +14:u08:condition,, +10:u02:32-bit, +13:u12:15.1.8.2., +10:uI0:.(...), +13:u03:15.1.8.2., +13:u06:15.1.8.3., +10:u01:32-bit, +13:u11:15.1.8.2., +13:u14:15.1.8.3., +13:u02:15.1.8.2., +13:u05:15.1.8.3., +14:u07:condition,, +10:u00:32-bit, +13:u10:15.1.8.2., +13:u13:15.1.8.3., +13:u01:15.1.8.2., +13:u04:15.1.8.3., +14:u06:condition,, +13:u12:15.1.8.3., +14:u14:condition,, +13:u00:15.1.8.2., +13:u03:15.1.8.3., +14:u05:condition,, +13:u08:15.1.8.4., +7:u08:9.6, +13:u11:15.1.8.3., +14:u13:condition,, +13:u02:15.1.8.3., +14:u04:condition,, +7:u07:9.6, +13:u10:15.1.8.3., +14:u12:condition,, +13:u01:15.1.8.3., +14:u03:condition,, +13:u07:15.1.8.4., +7:u06:9.6, +14:u11:condition,, +13:u00:15.1.8.3., +14:u02:condition,, +13:u06:15.1.8.4., +7:u05:9.6, +14:u10:condition,, +13:u14:15.1.8.4., +14:u01:condition,, +13:u05:15.1.8.4., +7:u04:9.6, +13:u13:15.1.8.4., +14:u00:condition,, +13:u04:15.1.8.4., +7:u03:9.6, +13:u12:15.1.8.4., +13:u03:15.1.8.4., +7:u02:9.6, +13:u11:15.1.8.4., +13:u02:15.1.8.4., +7:u01:9.6, +8:u08:372], +13:u10:15.1.8.4., +13:u01:15.1.8.4., +7:u00:9.6, +8:u07:372], +13:u00:15.1.8.4., +8:u06:372], +8:u05:372], +8:u04:372], +13:u08:15.1.8.5., +8:u03:372], +8:u02:372], +13:u07:15.1.8.5., +13:u08:15.1.8.6., +8:u01:372], +13:u06:15.1.8.5., +8:u00:372], +13:u14:15.1.8.5., +13:u05:15.1.8.5., +13:u07:15.1.8.6., +13:u13:15.1.8.5., +13:u04:15.1.8.5., +13:u06:15.1.8.6., +13:u12:15.1.8.5., +13:u14:15.1.8.6., +13:u03:15.1.8.5., +13:u05:15.1.8.6., +13:u08:15.1.8.7., +13:u11:15.1.8.5., +13:u13:15.1.8.6., +13:u02:15.1.8.5., +13:u04:15.1.8.6., +13:u10:15.1.8.5., +13:u12:15.1.8.6., +13:u01:15.1.8.5., +13:u03:15.1.8.6., +13:u07:15.1.8.7., +13:u11:15.1.8.6., +13:u00:15.1.8.5., +13:u02:15.1.8.6., +13:u06:15.1.8.7., +13:u10:15.1.8.6., +13:u14:15.1.8.7., +13:u01:15.1.8.6., +13:u05:15.1.8.7., +13:u08:precisely, +13:u13:15.1.8.7., +13:u00:15.1.8.6., +13:u04:15.1.8.7., +9:u08:POSIX, +13:u07:precisely, +13:u12:15.1.8.7., +13:u03:15.1.8.7., +11:u08:18.12.4, +13:u06:precisely, +13:u11:15.1.8.7., +13:u02:15.1.8.7., +9:u07:POSIX, +13:u05:precisely, +13:u10:15.1.8.7., +13:u01:15.1.8.7., +9:u06:POSIX, +11:u07:18.12.4, +13:u08:15.1.8.8., +13:u04:precisely, +9:u14:posix, +13:u00:15.1.8.7., +9:u05:POSIX, +11:u06:18.12.4, +13:u03:precisely, +9:u13:posix, +11:u14:18.12.4, +13:uI2:[]...,..,, +9:u04:POSIX, +11:u05:18.12.4, +13:u07:15.1.8.8., +14:u08:sanctioned, +13:u02:precisely, +9:u12:posix, +11:u13:18.12.4, +6:u21:PO, +7:u22:POS, +8:u23:POSI, +13:uI1:[]...,..,, +9:u03:POSIX, +11:u04:18.12.4, +13:u06:15.1.8.8., +13:u01:precisely, +9:u11:posix, +11:u12:18.12.4, +13:u14:15.1.8.8., +13:uI0:[]...,..,, +9:u02:POSIX, +11:u03:18.12.4, +13:u05:15.1.8.8., +14:u07:sanctioned, +13:u08:15.1.8.9., +13:u00:precisely, +12:u08:access)., +9:u10:posix, +11:u11:18.12.4, +13:u13:15.1.8.8., +9:u01:POSIX, +11:u02:18.12.4, +13:u04:15.1.8.8., +14:u06:sanctioned, +12:u07:access)., +11:u10:18.12.4, +13:u12:15.1.8.8., +14:u14:sanctioned, +9:u00:POSIX, +11:u01:18.12.4, +13:u03:15.1.8.8., +14:u05:sanctioned, +13:u07:15.1.8.9., +12:u06:access)., +13:u11:15.1.8.8., +14:u13:sanctioned, +11:u00:18.12.4, +13:u02:15.1.8.8., +14:u04:sanctioned, +13:u06:15.1.8.9., +12:u05:access)., +13:u10:15.1.8.8., +14:u12:sanctioned, +13:u14:15.1.8.9., +7:u22:san, +8:u23:sanc, +13:u01:15.1.8.8., +14:u03:sanctioned, +13:u05:15.1.8.9., +12:u04:access)., +14:u11:sanctioned, +13:u13:15.1.8.9., +13:u00:15.1.8.8., +14:u02:sanctioned, +13:u04:15.1.8.9., +12:u03:access)., +14:u10:sanctioned, +13:u12:15.1.8.9., +14:u01:sanctioned, +13:u03:15.1.8.9., +13:u08:15.1.9.1., +12:u02:access)., +13:u11:15.1.8.9., +11:u14:15.1.9., +14:u00:sanctioned, +13:u02:15.1.8.9., +12:u01:access)., +13:u10:15.1.8.9., +11:u13:15.1.9., +13:u01:15.1.8.9., +13:u07:15.1.9.1., +12:u00:access)., +11:u12:15.1.9., +13:u00:15.1.8.9., +13:u06:15.1.9.1., +11:u11:15.1.9., +13:u14:15.1.9.1., +13:u05:15.1.9.1., +11:u10:15.1.9., +13:u13:15.1.9.1., +13:u04:15.1.9.1., +13:u12:15.1.9.1., +13:u03:15.1.9.1., +13:u11:15.1.9.1., +13:u02:15.1.9.1., +8:u08:373], +13:u10:15.1.9.1., +13:u01:15.1.9.1., +8:u07:373], +13:u00:15.1.9.1., +8:u06:373], +13:u08:15.1.9.2., +8:u05:373], +8:u04:373], +13:u07:15.1.9.2., +8:u03:373], +13:u06:15.1.9.2., +8:u02:373], +13:u14:15.1.9.2., +13:u05:15.1.9.2., +13:u08:15.1.9.3., +8:u01:373], +13:u13:15.1.9.2., +13:u04:15.1.9.2., +8:u00:373], +13:u12:15.1.9.2., +13:u03:15.1.9.2., +13:u07:15.1.9.3., +13:u11:15.1.9.2., +13:u02:15.1.9.2., +13:u06:15.1.9.3., +13:u10:15.1.9.2., +13:u14:15.1.9.3., +13:u01:15.1.9.2., +13:u05:15.1.9.3., +13:u13:15.1.9.3., +13:u00:15.1.9.2., +13:u04:15.1.9.3., +13:u12:15.1.9.3., +13:u03:15.1.9.3., +20:u08:RECLAIM_COMPLETE, +13:u11:15.1.9.3., +13:u02:15.1.9.3., +20:u07:RECLAIM_COMPLETE, +13:u10:15.1.9.3., +13:u01:15.1.9.3., +13:u08:15.1.9.4., +20:u06:RECLAIM_COMPLETE, +23:u08:reclaim-interfering, +13:u00:15.1.9.3., +20:u05:RECLAIM_COMPLETE, +23:u07:reclaim-interfering, +13:u07:15.1.9.4., +20:u04:RECLAIM_COMPLETE, +23:u06:reclaim-interfering, +13:u06:15.1.9.4., +20:u03:RECLAIM_COMPLETE, +23:u05:reclaim-interfering, +13:u14:15.1.9.4., +13:u05:15.1.9.4., +11:u08:obliged, +20:u02:RECLAIM_COMPLETE, +23:u04:reclaim-interfering, +13:u13:15.1.9.4., +13:u04:15.1.9.4., +20:u01:RECLAIM_COMPLETE, +23:u03:reclaim-interfering, +13:u12:15.1.9.4., +13:u03:15.1.9.4., +11:u07:obliged, +20:u00:RECLAIM_COMPLETE, +23:u02:reclaim-interfering, +13:u11:15.1.9.4., +13:u02:15.1.9.4., +11:u06:obliged, +23:u01:reclaim-interfering, +13:u10:15.1.9.4., +11:u14:obliged, +13:u01:15.1.9.4., +11:u05:obliged, +23:u00:reclaim-interfering, +11:u13:obliged, +13:u00:15.1.9.4., +11:u04:obliged, +11:u12:obliged, +11:u03:obliged, +11:u11:obliged, +11:u02:obliged, +11:u10:obliged, +11:u01:obliged, +13:u08:15.1.9.5., +11:u00:obliged, +13:u07:15.1.9.5., +13:u06:15.1.9.5., +13:u14:15.1.9.5., +13:u05:15.1.9.5., +15:u08:misbehavior, +13:u13:15.1.9.5., +13:u04:15.1.9.5., +13:u12:15.1.9.5., +13:u03:15.1.9.5., +15:u07:misbehavior, +13:u11:15.1.9.5., +13:u02:15.1.9.5., +15:u06:misbehavior, +12:u08:15.1.10., +13:u10:15.1.9.5., +15:u14:misbehavior, +13:u01:15.1.9.5., +15:u05:misbehavior, +15:u13:misbehavior, +13:u00:15.1.9.5., +15:u04:misbehavior, +12:u07:15.1.10., +15:u12:misbehavior, +15:u03:misbehavior, +12:u06:15.1.10., +15:u11:misbehavior, +12:u14:15.1.10., +15:u02:misbehavior, +12:u05:15.1.10., +15:u10:misbehavior, +12:u13:15.1.10., +15:u01:misbehavior, +12:u04:15.1.10., +12:u12:15.1.10., +15:u00:misbehavior, +12:u03:15.1.10., +8:u08:374], +12:u11:15.1.10., +12:u02:15.1.10., +8:u07:374], +12:u10:15.1.10., +12:u01:15.1.10., +8:u06:374], +12:u00:15.1.10., +14:u08:15.1.10.1., +8:u05:374], +8:u04:374], +14:u07:15.1.10.1., +8:u03:374], +14:u06:15.1.10.1., +8:u02:374], +14:u14:15.1.10.1., +14:u05:15.1.10.1., +8:u01:374], +14:u13:15.1.10.1., +14:u04:15.1.10.1., +8:u00:374], +14:u12:15.1.10.1., +14:u03:15.1.10.1., +14:u11:15.1.10.1., +14:u02:15.1.10.1., +23:u08:LAYOUTIOMODE4_READ., +14:u10:15.1.10.1., +14:u01:15.1.10.1., +14:u08:15.1.10.2., +14:u00:15.1.10.1., +23:u07:LAYOUTIOMODE4_READ., +23:u06:LAYOUTIOMODE4_READ., +14:u07:15.1.10.2., +23:u14:layoutiomode4_read., +23:u05:LAYOUTIOMODE4_READ., +14:u06:15.1.10.2., +23:u13:layoutiomode4_read., +14:u14:15.1.10.2., +23:u04:LAYOUTIOMODE4_READ., +14:u05:15.1.10.2., +23:u12:layoutiomode4_read., +14:u13:15.1.10.2., +23:u03:LAYOUTIOMODE4_READ., +14:u04:15.1.10.2., +23:u11:layoutiomode4_read., +14:u12:15.1.10.2., +23:u02:LAYOUTIOMODE4_READ., +14:u03:15.1.10.2., +14:u08:15.1.10.3., +23:u10:layoutiomode4_read., +14:u11:15.1.10.2., +23:u01:LAYOUTIOMODE4_READ., +14:u02:15.1.10.2., +14:u10:15.1.10.2., +23:u00:LAYOUTIOMODE4_READ., +14:u01:15.1.10.2., +14:u07:15.1.10.3., +14:u00:15.1.10.2., +14:u06:15.1.10.3., +14:u14:15.1.10.3., +14:u05:15.1.10.3., +14:u08:15.1.10.4., +14:u13:15.1.10.3., +14:u04:15.1.10.3., +14:u12:15.1.10.3., +14:u03:15.1.10.3., +14:u07:15.1.10.4., +14:u11:15.1.10.3., +7:uI2:-(;, +14:u02:15.1.10.3., +14:u06:15.1.10.4., +14:u08:15.1.10.5., +14:u10:15.1.10.3., +14:u14:15.1.10.4., +7:uI1:-(;, +14:u01:15.1.10.3., +14:u05:15.1.10.4., +14:u13:15.1.10.4., +7:uI0:-(;, +14:u00:15.1.10.3., +14:u04:15.1.10.4., +14:u07:15.1.10.5., +14:u12:15.1.10.4., +14:u03:15.1.10.4., +14:u06:15.1.10.5., +14:u08:15.1.10.6., +14:u11:15.1.10.4., +14:u14:15.1.10.5., +14:u02:15.1.10.4., +14:u05:15.1.10.5., +14:u10:15.1.10.4., +14:u13:15.1.10.5., +14:u01:15.1.10.4., +14:u04:15.1.10.5., +14:u07:15.1.10.6., +14:u12:15.1.10.5., +14:u00:15.1.10.4., +14:u03:15.1.10.5., +14:u06:15.1.10.6., +14:u11:15.1.10.5., +14:u14:15.1.10.6., +14:u02:15.1.10.5., +14:u05:15.1.10.6., +14:u08:15.1.10.7., +14:u10:15.1.10.5., +14:u13:15.1.10.6., +14:u01:15.1.10.5., +14:u04:15.1.10.6., +14:u12:15.1.10.6., +14:u00:15.1.10.5., +14:u03:15.1.10.6., +14:u07:15.1.10.7., +14:u11:15.1.10.6., +14:u02:15.1.10.6., +14:u06:15.1.10.7., +14:u10:15.1.10.6., +14:u14:15.1.10.7., +14:u01:15.1.10.6., +14:u05:15.1.10.7., +14:u13:15.1.10.7., +14:u00:15.1.10.6., +14:u04:15.1.10.7., +14:u12:15.1.10.7., +14:u03:15.1.10.7., +14:u11:15.1.10.7., +14:u02:15.1.10.7., +14:u10:15.1.10.7., +14:u01:15.1.10.7., +8:u08:375], +14:u00:15.1.10.7., +8:u07:375], +8:u06:375], +14:u08:15.1.10.8., +8:u05:375], +8:u04:375], +14:u07:15.1.10.8., +8:u03:375], +14:u06:15.1.10.8., +8:u02:375], +14:u14:15.1.10.8., +14:u05:15.1.10.8., +14:u08:15.1.10.9., +8:u01:375], +14:u13:15.1.10.8., +14:u04:15.1.10.8., +8:u00:375], +14:u12:15.1.10.8., +14:u03:15.1.10.8., +14:u07:15.1.10.9., +14:u11:15.1.10.8., +14:u02:15.1.10.8., +14:u06:15.1.10.9., +12:u08:15.1.11., +14:u10:15.1.10.8., +14:u14:15.1.10.9., +14:u01:15.1.10.8., +14:u05:15.1.10.9., +14:u13:15.1.10.9., +14:u00:15.1.10.8., +14:u04:15.1.10.9., +12:u07:15.1.11., +14:u12:15.1.10.9., +14:u03:15.1.10.9., +12:u06:15.1.11., +14:u11:15.1.10.9., +12:u14:15.1.11., +14:u02:15.1.10.9., +12:u05:15.1.11., +14:u08:15.1.11.1., +14:u10:15.1.10.9., +12:u13:15.1.11., +14:u01:15.1.10.9., +12:u04:15.1.11., +12:u12:15.1.11., +14:u00:15.1.10.9., +12:u03:15.1.11., +14:u07:15.1.11.1., +12:u11:15.1.11., +12:u02:15.1.11., +14:u06:15.1.11.1., +14:u08:15.1.11.2., +12:u10:15.1.11., +14:u14:15.1.11.1., +12:u01:15.1.11., +14:u05:15.1.11.1., +14:u13:15.1.11.1., +12:u00:15.1.11., +14:u04:15.1.11.1., +14:u07:15.1.11.2., +14:u12:15.1.11.1., +14:u03:15.1.11.1., +14:u06:15.1.11.2., +14:u11:15.1.11.1., +14:u14:15.1.11.2., +14:u02:15.1.11.1., +14:u05:15.1.11.2., +14:u08:15.1.11.3., +14:u10:15.1.11.1., +14:u13:15.1.11.2., +14:u01:15.1.11.1., +14:u04:15.1.11.2., +14:u12:15.1.11.2., +14:u00:15.1.11.1., +14:u03:15.1.11.2., +14:u07:15.1.11.3., +16:u08:highest_slot, +14:u11:15.1.11.2., +14:u02:15.1.11.2., +14:u06:15.1.11.3., +14:u08:15.1.11.4., +16:u07:highest_slot, +14:u10:15.1.11.2., +14:u14:15.1.11.3., +14:u01:15.1.11.2., +14:u05:15.1.11.3., +16:u06:highest_slot, +14:u13:15.1.11.3., +14:u00:15.1.11.2., +14:u04:15.1.11.3., +14:u07:15.1.11.4., +16:u05:highest_slot, +14:u12:15.1.11.3., +14:u03:15.1.11.3., +14:u06:15.1.11.4., +16:u04:highest_slot, +14:u11:15.1.11.3., +14:u14:15.1.11.4., +14:u02:15.1.11.3., +14:u05:15.1.11.4., +16:u03:highest_slot, +14:u10:15.1.11.3., +14:u13:15.1.11.4., +14:u01:15.1.11.3., +14:u04:15.1.11.4., +14:u08:15.1.11.5., +16:u02:highest_slot, +11:u08:18.46)., +14:u12:15.1.11.4., +14:u00:15.1.11.3., +14:u03:15.1.11.4., +16:u01:highest_slot, +11:u07:18.46)., +14:u11:15.1.11.4., +14:u02:15.1.11.4., +14:u07:15.1.11.5., +16:u00:highest_slot, +11:u06:18.46)., +14:u10:15.1.11.4., +14:u01:15.1.11.4., +14:u06:15.1.11.5., +11:u05:18.46)., +14:u14:15.1.11.5., +14:u00:15.1.11.4., +14:u05:15.1.11.5., +11:u04:18.46)., +14:u13:15.1.11.5., +14:u04:15.1.11.5., +11:u03:18.46)., +14:u12:15.1.11.5., +14:u03:15.1.11.5., +11:u02:18.46)., +14:u11:15.1.11.5., +14:u02:15.1.11.5., +11:u01:18.46)., +14:u10:15.1.11.5., +14:u01:15.1.11.5., +11:u00:18.46)., +8:u08:376], +14:u00:15.1.11.5., +8:u07:376], +8:u06:376], +14:u08:15.1.11.6., +8:u05:376], +8:u04:376], +14:u07:15.1.11.6., +8:u03:376], +14:u06:15.1.11.6., +8:u02:376], +14:u14:15.1.11.6., +14:u05:15.1.11.6., +8:u01:376], +14:u13:15.1.11.6., +14:u04:15.1.11.6., +14:u08:15.1.11.7., +8:u00:376], +14:u12:15.1.11.6., +14:u03:15.1.11.6., +14:u11:15.1.11.6., +14:u02:15.1.11.6., +14:u07:15.1.11.7., +14:u10:15.1.11.6., +14:u01:15.1.11.6., +14:u06:15.1.11.7., +14:u14:15.1.11.7., +14:u00:15.1.11.6., +14:u05:15.1.11.7., +14:u13:15.1.11.7., +14:u04:15.1.11.7., +14:u08:15.1.11.8., +14:u12:15.1.11.7., +14:u03:15.1.11.7., +14:u11:15.1.11.7., +14:u02:15.1.11.7., +14:u07:15.1.11.8., +12:u08:15.1.12., +14:u10:15.1.11.7., +14:u01:15.1.11.7., +14:u06:15.1.11.8., +14:u14:15.1.11.8., +14:u00:15.1.11.7., +14:u05:15.1.11.8., +12:u07:15.1.12., +14:u13:15.1.11.8., +14:u04:15.1.11.8., +12:u06:15.1.12., +14:u08:15.1.12.1., +15:u08:management., +14:u12:15.1.11.8., +12:u14:15.1.12., +14:u03:15.1.11.8., +12:u05:15.1.12., +15:u07:management., +14:u11:15.1.11.8., +12:u13:15.1.12., +14:u02:15.1.11.8., +12:u04:15.1.12., +14:u07:15.1.12.1., +15:u06:management., +14:u10:15.1.11.8., +12:u12:15.1.12., +14:u01:15.1.11.8., +12:u03:15.1.12., +14:u06:15.1.12.1., +14:u08:15.1.12.2., +15:u05:management., +12:u11:15.1.12., +14:u14:15.1.12.1., +14:u00:15.1.11.8., +12:u02:15.1.12., +14:u05:15.1.12.1., +15:u04:management., +12:u10:15.1.12., +14:u13:15.1.12.1., +12:u01:15.1.12., +14:u04:15.1.12.1., +14:u07:15.1.12.2., +12:u08:15.1.13., +15:u03:management., +14:u12:15.1.12.1., +12:u00:15.1.12., +14:u03:15.1.12.1., +14:u06:15.1.12.2., +15:u02:management., +14:u11:15.1.12.1., +14:u14:15.1.12.2., +14:u02:15.1.12.1., +14:u05:15.1.12.2., +12:u07:15.1.13., +15:u01:management., +14:u10:15.1.12.1., +14:u13:15.1.12.2., +14:u01:15.1.12.1., +14:u04:15.1.12.2., +12:u06:15.1.13., +14:u08:15.1.13.1., +15:u00:management., +14:u12:15.1.12.2., +12:u14:15.1.13., +14:u00:15.1.12.1., +14:u03:15.1.12.2., +12:u05:15.1.13., +14:u11:15.1.12.2., +12:u13:15.1.13., +14:u02:15.1.12.2., +12:u04:15.1.13., +14:u07:15.1.13.1., +20:u08:DESTROY_CLIENTID, +14:u10:15.1.12.2., +12:u12:15.1.13., +14:u01:15.1.12.2., +12:u03:15.1.13., +14:u06:15.1.13.1., +14:u08:15.1.13.2., +20:u07:DESTROY_CLIENTID, +12:u11:15.1.13., +14:u14:15.1.13.1., +14:u00:15.1.12.2., +12:u02:15.1.13., +14:u05:15.1.13.1., +20:u06:DESTROY_CLIENTID, +12:u10:15.1.13., +14:u13:15.1.13.1., +12:u01:15.1.13., +14:u04:15.1.13.1., +14:u07:15.1.13.2., +20:u05:DESTROY_CLIENTID, +14:u12:15.1.13.1., +12:u00:15.1.13., +14:u03:15.1.13.1., +14:u06:15.1.13.2., +10:u08:leased, +20:u04:DESTROY_CLIENTID, +14:u11:15.1.13.1., +14:u14:15.1.13.2., +14:u02:15.1.13.1., +14:u05:15.1.13.2., +20:u03:DESTROY_CLIENTID, +14:u10:15.1.13.1., +14:u13:15.1.13.2., +14:u01:15.1.13.1., +14:u04:15.1.13.2., +10:u07:leased, +20:u02:DESTROY_CLIENTID, +14:u12:15.1.13.2., +14:u00:15.1.13.1., +14:u03:15.1.13.2., +10:u06:leased, +20:u01:DESTROY_CLIENTID, +14:u11:15.1.13.2., +10:u14:leased, +14:u02:15.1.13.2., +10:u05:leased, +20:u00:DESTROY_CLIENTID, +14:u10:15.1.13.2., +10:u13:leased, +14:u01:15.1.13.2., +10:u04:leased, +8:u08:377], +10:u12:leased, +14:u00:15.1.13.2., +10:u03:leased, +8:u07:377], +10:u11:leased, +10:u02:leased, +8:u06:377], +10:u10:leased, +10:u01:leased, +8:u05:377], +10:u00:leased, +8:u04:377], +14:u08:re-sending, +8:u03:377], +8:u02:377], +14:u07:re-sending, +14:u08:15.1.13.3., +8:u01:377], +14:u06:re-sending, +8:u00:377], +14:u14:re-sending, +14:u05:re-sending, +14:u07:15.1.13.3., +14:u13:re-sending, +7:u14:id;, +14:u04:re-sending, +14:u06:15.1.13.3., +14:u12:re-sending, +7:u13:id;, +14:u14:15.1.13.3., +14:u03:re-sending, +14:u05:15.1.13.3., +14:u08:15.1.13.4., +14:u11:re-sending, +7:u12:id;, +14:u13:15.1.13.3., +7:u22:ID;, +7:u23:ID;, +14:u02:re-sending, +14:u04:15.1.13.3., +14:u10:re-sending, +7:u11:id;, +14:u12:15.1.13.3., +14:u01:re-sending, +14:u03:15.1.13.3., +14:u07:15.1.13.4., +7:u10:id;, +14:u11:15.1.13.3., +14:u00:re-sending, +14:u02:15.1.13.3., +14:u06:15.1.13.4., +14:u10:15.1.13.3., +14:u14:15.1.13.4., +14:u01:15.1.13.3., +14:u05:15.1.13.4., +14:u08:15.1.13.5., +14:u13:15.1.13.4., +14:u00:15.1.13.3., +14:u04:15.1.13.4., +14:u12:15.1.13.4., +14:u03:15.1.13.4., +14:u07:15.1.13.5., +14:u11:15.1.13.4., +14:u02:15.1.13.4., +14:u06:15.1.13.5., +14:u10:15.1.13.4., +14:u14:15.1.13.5., +14:u01:15.1.13.4., +14:u05:15.1.13.5., +14:u13:15.1.13.5., +14:u00:15.1.13.4., +14:u04:15.1.13.5., +14:u12:15.1.13.5., +14:u03:15.1.13.5., +13:u08:staleness, +14:u08:manifested, +14:u11:15.1.13.5., +14:u02:15.1.13.5., +14:u07:manifested, +14:u10:15.1.13.5., +14:u01:15.1.13.5., +13:u07:staleness, +12:u08:15.1.14., +14:u06:manifested, +14:u00:15.1.13.5., +13:u06:staleness, +14:u05:manifested, +13:u14:staleness, +13:u05:staleness, +12:u07:15.1.14., +14:u04:manifested, +13:u13:staleness, +13:u04:staleness, +12:u06:15.1.14., +14:u08:15.1.14.1., +14:u03:manifested, +13:u12:staleness, +12:u14:15.1.14., +8:u23:stal, +13:u03:staleness, +12:u05:15.1.14., +14:u02:manifested, +13:u11:staleness, +12:u13:15.1.14., +13:u02:staleness, +12:u04:15.1.14., +14:u07:15.1.14.1., +14:u01:manifested, +13:u10:staleness, +12:u12:15.1.14., +13:u01:staleness, +12:u03:15.1.14., +14:u06:15.1.14.1., +14:u08:15.1.14.2., +14:u00:manifested, +12:u11:15.1.14., +14:u14:15.1.14.1., +13:u00:staleness, +12:u02:15.1.14., +14:u05:15.1.14.1., +12:u10:15.1.14., +14:u13:15.1.14.1., +12:u01:15.1.14., +14:u04:15.1.14.1., +14:u07:15.1.14.2., +14:u12:15.1.14.1., +12:u00:15.1.14., +14:u03:15.1.14.1., +14:u06:15.1.14.2., +14:u08:15.1.14.3., +14:u11:15.1.14.1., +14:u14:15.1.14.2., +14:u02:15.1.14.1., +14:u05:15.1.14.2., +14:u10:15.1.14.1., +14:u13:15.1.14.2., +14:u01:15.1.14.1., +14:u04:15.1.14.2., +14:u07:15.1.14.3., +14:u12:15.1.14.2., +14:u00:15.1.14.1., +14:u03:15.1.14.2., +14:u06:15.1.14.3., +14:u11:15.1.14.2., +14:u14:15.1.14.3., +14:u02:15.1.14.2., +14:u05:15.1.14.3., +14:u10:15.1.14.2., +14:u13:15.1.14.3., +14:u01:15.1.14.2., +14:u04:15.1.14.3., +14:u12:15.1.14.3., +14:u00:15.1.14.2., +14:u03:15.1.14.3., +14:u11:15.1.14.3., +14:u02:15.1.14.3., +8:u08:378], +14:u10:15.1.14.3., +14:u01:15.1.14.3., +8:u07:378], +14:u00:15.1.14.3., +8:u06:378], +14:u08:15.1.14.4., +8:u05:378], +8:u04:378], +14:u07:15.1.14.4., +8:u03:378], +14:u06:15.1.14.4., +12:u08:15.1.15., +8:u02:378], +14:u14:15.1.14.4., +14:u05:15.1.14.4., +8:u01:378], +14:u13:15.1.14.4., +14:u04:15.1.14.4., +12:u07:15.1.15., +10:u08:NFSv4., +8:u00:378], +14:u12:15.1.14.4., +12:u14:rejected, +14:u03:15.1.14.4., +12:u06:15.1.15., +14:u08:15.1.15.1., +14:u11:15.1.14.4., +12:u13:rejected, +12:u14:15.1.15., +14:u02:15.1.14.4., +12:u05:15.1.15., +10:u07:NFSv4., +14:u10:15.1.14.4., +12:u12:rejected, +12:u13:15.1.15., +14:u01:15.1.14.4., +12:u04:15.1.15., +10:u06:NFSv4., +14:u07:15.1.15.1., +12:u11:rejected, +12:u12:15.1.15., +10:u14:nfsv4., +14:u00:15.1.14.4., +12:u03:15.1.15., +10:u05:NFSv4., +14:u06:15.1.15.1., +14:u08:15.1.15.2., +12:u10:rejected, +12:u11:15.1.15., +10:u13:nfsv4., +14:u14:15.1.15.1., +12:u02:15.1.15., +10:u04:NFSv4., +14:u05:15.1.15.1., +12:u10:15.1.15., +10:u12:nfsv4., +14:u13:15.1.15.1., +12:u01:15.1.15., +10:u03:NFSv4., +14:u04:15.1.15.1., +14:u07:15.1.15.2., +10:u11:nfsv4., +14:u12:15.1.15.1., +12:u00:15.1.15., +10:u02:NFSv4., +14:u03:15.1.15.1., +14:u06:15.1.15.2., +10:u10:nfsv4., +14:u11:15.1.15.1., +14:u14:15.1.15.2., +10:u01:NFSv4., +14:u02:15.1.15.1., +14:u05:15.1.15.2., +14:u08:15.1.15.3., +14:u10:15.1.15.1., +14:u13:15.1.15.2., +10:u00:NFSv4., +14:u01:15.1.15.1., +14:u04:15.1.15.2., +14:u12:15.1.15.2., +14:u00:15.1.15.1., +14:u03:15.1.15.2., +14:u07:15.1.15.3., +14:u11:15.1.15.2., +14:u02:15.1.15.2., +14:u06:15.1.15.3., +14:u10:15.1.15.2., +14:u14:15.1.15.3., +14:u01:15.1.15.2., +14:u05:15.1.15.3., +14:u08:15.1.15.4., +14:u13:15.1.15.3., +14:u00:15.1.15.2., +14:u04:15.1.15.3., +14:u12:15.1.15.3., +14:u03:15.1.15.3., +14:u07:15.1.15.4., +14:u11:15.1.15.3., +14:u02:15.1.15.3., +14:u06:15.1.15.4., +14:u10:15.1.15.3., +14:u14:15.1.15.4., +14:u01:15.1.15.3., +14:u05:15.1.15.4., +12:u08:15.1.16., +14:u13:15.1.15.4., +14:u00:15.1.15.3., +14:u04:15.1.15.4., +13:u08:Obsoleted, +14:u12:15.1.15.4., +14:u03:15.1.15.4., +12:u07:15.1.16., +13:u07:Obsoleted, +14:u11:15.1.15.4., +14:u02:15.1.15.4., +12:u06:15.1.16., +13:u06:Obsoleted, +14:u10:15.1.15.4., +12:u14:15.1.16., +14:u01:15.1.15.4., +12:u05:15.1.16., +13:u05:Obsoleted, +12:u13:15.1.16., +14:u00:15.1.15.4., +12:u04:15.1.16., +13:u04:Obsoleted, +12:u12:15.1.16., +12:u03:15.1.16., +13:u03:Obsoleted, +12:u11:15.1.16., +12:u02:15.1.16., +13:u02:Obsoleted, +12:u10:15.1.16., +12:u01:15.1.16., +12:u08:resulted, +13:u01:Obsoleted, +12:u00:15.1.16., +13:u00:Obsoleted, +12:u07:resulted, +12:u06:resulted, +12:u14:resulted, +12:u05:resulted, +8:u08:379], +12:u13:resulted, +12:u04:resulted, +8:u07:379], +12:u12:resulted, +12:u03:resulted, +8:u06:379], +12:u11:resulted, +12:u02:resulted, +14:u08:15.1.16.1., +8:u05:379], +12:u10:resulted, +12:u01:resulted, +8:u04:379], +12:u00:resulted, +14:u07:15.1.16.1., +8:u03:379], +14:u06:15.1.16.1., +11:u08:ignored, +8:u02:379], +14:u14:15.1.16.1., +14:u05:15.1.16.1., +14:u08:15.1.16.2., +8:u01:379], +14:u13:15.1.16.1., +14:u04:15.1.16.1., +11:u07:ignored, +8:u00:379], +14:u12:15.1.16.1., +14:u03:15.1.16.1., +11:u06:ignored, +14:u07:15.1.16.2., +14:u11:15.1.16.1., +11:u14:ignored, +14:u02:15.1.16.1., +11:u05:ignored, +14:u06:15.1.16.2., +14:u10:15.1.16.1., +11:u13:ignored, +14:u14:15.1.16.2., +14:u01:15.1.16.1., +11:u04:ignored, +14:u05:15.1.16.2., +14:u08:15.1.16.3., +11:u12:ignored, +14:u13:15.1.16.2., +14:u00:15.1.16.1., +11:u03:ignored, +14:u04:15.1.16.2., +11:u11:ignored, +14:u12:15.1.16.2., +11:u02:ignored, +14:u03:15.1.16.2., +14:u07:15.1.16.3., +13:u08:involving, +11:u10:ignored, +14:u11:15.1.16.2., +11:u01:ignored, +14:u02:15.1.16.2., +14:u06:15.1.16.3., +14:u10:15.1.16.2., +14:u14:15.1.16.3., +11:u00:ignored, +14:u01:15.1.16.2., +14:u05:15.1.16.3., +13:u07:involving, +14:u08:15.1.16.4., +14:u13:15.1.16.3., +14:u00:15.1.16.2., +14:u04:15.1.16.3., +13:u06:involving, +14:u12:15.1.16.3., +13:u14:involving, +7:uI2:/.., +14:u03:15.1.16.3., +13:u05:involving, +14:u07:15.1.16.4., +14:u11:15.1.16.3., +13:u13:involving, +7:uI1:/.., +14:u02:15.1.16.3., +13:u04:involving, +14:u06:15.1.16.4., +14:u08:superseded, +11:u08:SAVEFH), +14:u10:15.1.16.3., +13:u12:involving, +14:u14:15.1.16.4., +7:uI0:/.., +14:u01:15.1.16.3., +13:u03:involving, +14:u05:15.1.16.4., +14:u08:15.1.16.5., +11:u07:SAVEFH), +13:u11:involving, +14:u13:15.1.16.4., +14:u00:15.1.16.3., +13:u02:involving, +14:u04:15.1.16.4., +14:u07:superseded, +11:u06:SAVEFH), +13:u10:involving, +14:u12:15.1.16.4., +13:u01:involving, +14:u03:15.1.16.4., +14:u06:superseded, +14:u07:15.1.16.5., +11:u05:SAVEFH), +14:u11:15.1.16.4., +14:u14:superseded, +8:uI2:)..,, +13:u00:involving, +14:u02:15.1.16.4., +14:u05:superseded, +14:u06:15.1.16.5., +11:u04:SAVEFH), +14:u10:15.1.16.4., +14:u13:superseded, +14:u14:15.1.16.5., +8:uI1:)..,, +14:u01:15.1.16.4., +14:u04:superseded, +14:u05:15.1.16.5., +11:u03:SAVEFH), +14:u12:superseded, +14:u13:15.1.16.5., +8:u23:supe, +8:uI0:)..,, +14:u00:15.1.16.4., +14:u03:superseded, +14:u04:15.1.16.5., +11:u02:SAVEFH), +14:u11:superseded, +14:u12:15.1.16.5., +14:u02:superseded, +14:u03:15.1.16.5., +11:u01:SAVEFH), +14:u10:superseded, +14:u11:15.1.16.5., +14:u01:superseded, +14:u02:15.1.16.5., +11:u00:SAVEFH), +14:u10:15.1.16.5., +14:u00:superseded, +14:u01:15.1.16.5., +14:u00:15.1.16.5., +10:u08:error), +10:u07:error), +10:u06:error), +22:u08:RELEASE_LOCKOWNER,, +10:u14:error), +10:u05:error), +10:u08:RENEW,, +10:u13:error), +10:u04:error), +22:u07:RELEASE_LOCKOWNER,, +9:u08:Valid, +10:u07:RENEW,, +10:u12:error), +10:u03:error), +22:u06:RELEASE_LOCKOWNER,, +73:u08:+----------------------+--------------------------------------------+, +10:u06:RENEW,, +10:u11:error), +22:u14:release_lockowner,, +10:u02:error), +22:u05:RELEASE_LOCKOWNER,, +9:u07:Valid, +10:u05:RENEW,, +10:u10:error), +22:u13:release_lockowner,, +10:u01:error), +22:u04:RELEASE_LOCKOWNER,, +9:u06:Valid, +73:u07:+----------------------+--------------------------------------------+, +10:u04:RENEW,, +22:u12:release_lockowner,, +7:u22:REL, +8:u23:RELE, +10:u00:error), +22:u03:RELEASE_LOCKOWNER,, +9:u05:Valid, +73:u06:+----------------------+--------------------------------------------+, +10:u03:RENEW,, +22:u11:release_lockowner,, +73:u14:+----------------------+--------------------------------------------+, +22:u02:RELEASE_LOCKOWNER,, +9:u04:Valid, +73:u05:+----------------------+--------------------------------------------+, +10:u02:RENEW,, +22:u10:release_lockowner,, +73:u13:+----------------------+--------------------------------------------+, +8:u23:Vali, +22:u01:RELEASE_LOCKOWNER,, +9:u03:Valid, +73:u04:+----------------------+--------------------------------------------+, +10:u01:RENEW,, +73:u12:+----------------------+--------------------------------------------+, +22:u00:RELEASE_LOCKOWNER,, +9:u02:Valid, +73:u03:+----------------------+--------------------------------------------+, +10:u00:RENEW,, +73:u11:+----------------------+--------------------------------------------+, +9:u01:Valid, +73:u02:+----------------------+--------------------------------------------+, +8:u08:380], +73:u10:+----------------------+--------------------------------------------+, +9:u00:Valid, +73:u01:+----------------------+--------------------------------------------+, +8:u07:380], +73:u00:+----------------------+--------------------------------------------+, +8:u06:380], +8:u05:380], +8:u04:380], +8:u03:380], +8:u02:380], +19:u08:NFS4ERR_ACCESS,, +8:u01:380], +19:u07:NFS4ERR_ACCESS,, +8:u00:380], +19:u06:NFS4ERR_ACCESS,, +19:u05:NFS4ERR_ACCESS,, +19:u04:NFS4ERR_ACCESS,, +19:u03:NFS4ERR_ACCESS,, +19:u02:NFS4ERR_ACCESS,, +22:u08:NFS4ERR_FHEXPIRED,, +19:u01:NFS4ERR_ACCESS,, +22:u07:NFS4ERR_FHEXPIRED,, +19:u00:NFS4ERR_ACCESS,, +22:u06:NFS4ERR_FHEXPIRED,, +22:u05:NFS4ERR_FHEXPIRED,, +15:u08:NFS4ERR_IO,, +22:u04:NFS4ERR_FHEXPIRED,, +15:u07:NFS4ERR_IO,, +22:u03:NFS4ERR_FHEXPIRED,, +15:u06:NFS4ERR_IO,, +22:u02:NFS4ERR_FHEXPIRED,, +15:u05:NFS4ERR_IO,, +25:u08:NFS4ERR_NOFILEHANDLE,, +22:u01:NFS4ERR_FHEXPIRED,, +15:u04:NFS4ERR_IO,, +25:u07:NFS4ERR_NOFILEHANDLE,, +22:u00:NFS4ERR_FHEXPIRED,, +15:u03:NFS4ERR_IO,, +25:u06:NFS4ERR_NOFILEHANDLE,, +15:u02:NFS4ERR_IO,, +25:u05:NFS4ERR_NOFILEHANDLE,, +30:u08:NFS4ERR_OP_NOT_IN_SESSION,, +15:u01:NFS4ERR_IO,, +25:u04:NFS4ERR_NOFILEHANDLE,, +30:u07:NFS4ERR_OP_NOT_IN_SESSION,, +15:u00:NFS4ERR_IO,, +25:u03:NFS4ERR_NOFILEHANDLE,, +30:u06:NFS4ERR_OP_NOT_IN_SESSION,, +25:u02:NFS4ERR_NOFILEHANDLE,, +30:u05:NFS4ERR_OP_NOT_IN_SESSION,, +24:u08:NFS4ERR_REP_TOO_BIG,, +25:u01:NFS4ERR_NOFILEHANDLE,, +30:u04:NFS4ERR_OP_NOT_IN_SESSION,, +24:u07:NFS4ERR_REP_TOO_BIG,, +25:u00:NFS4ERR_NOFILEHANDLE,, +30:u03:NFS4ERR_OP_NOT_IN_SESSION,, +24:u06:NFS4ERR_REP_TOO_BIG,, +30:u02:NFS4ERR_OP_NOT_IN_SESSION,, +24:u05:NFS4ERR_REP_TOO_BIG,, +33:u08:NFS4ERR_REP_TOO_BIG_TO_CACHE,, +30:u01:NFS4ERR_OP_NOT_IN_SESSION,, +24:u04:NFS4ERR_REP_TOO_BIG,, +33:u07:NFS4ERR_REP_TOO_BIG_TO_CACHE,, +30:u00:NFS4ERR_OP_NOT_IN_SESSION,, +24:u03:NFS4ERR_REP_TOO_BIG,, +33:u06:NFS4ERR_REP_TOO_BIG_TO_CACHE,, +24:u02:NFS4ERR_REP_TOO_BIG,, +33:u05:NFS4ERR_REP_TOO_BIG_TO_CACHE,, +24:u08:NFS4ERR_REQ_TOO_BIG,, +24:u01:NFS4ERR_REP_TOO_BIG,, +33:u04:NFS4ERR_REP_TOO_BIG_TO_CACHE,, +24:u07:NFS4ERR_REQ_TOO_BIG,, +24:u00:NFS4ERR_REP_TOO_BIG,, +33:u03:NFS4ERR_REP_TOO_BIG_TO_CACHE,, +24:u06:NFS4ERR_REQ_TOO_BIG,, +33:u02:NFS4ERR_REP_TOO_BIG_TO_CACHE,, +24:u05:NFS4ERR_REQ_TOO_BIG,, +31:u08:NFS4ERR_RETRY_UNCACHED_REP,, +33:u01:NFS4ERR_REP_TOO_BIG_TO_CACHE,, +24:u04:NFS4ERR_REQ_TOO_BIG,, +31:u07:NFS4ERR_RETRY_UNCACHED_REP,, +33:u00:NFS4ERR_REP_TOO_BIG_TO_CACHE,, +24:u03:NFS4ERR_REQ_TOO_BIG,, +31:u06:NFS4ERR_RETRY_UNCACHED_REP,, +24:u02:NFS4ERR_REQ_TOO_BIG,, +31:u05:NFS4ERR_RETRY_UNCACHED_REP,, +24:u08:NFS4ERR_SERVERFAULT,, +24:u01:NFS4ERR_REQ_TOO_BIG,, +31:u04:NFS4ERR_RETRY_UNCACHED_REP,, +24:u07:NFS4ERR_SERVERFAULT,, +24:u00:NFS4ERR_REQ_TOO_BIG,, +31:u03:NFS4ERR_RETRY_UNCACHED_REP,, +24:u06:NFS4ERR_SERVERFAULT,, +31:u02:NFS4ERR_RETRY_UNCACHED_REP,, +24:u05:NFS4ERR_SERVERFAULT,, +31:u01:NFS4ERR_RETRY_UNCACHED_REP,, +24:u04:NFS4ERR_SERVERFAULT,, +31:u00:NFS4ERR_RETRY_UNCACHED_REP,, +24:u03:NFS4ERR_SERVERFAULT,, +24:u02:NFS4ERR_SERVERFAULT,, +24:u01:NFS4ERR_SERVERFAULT,, +24:u00:NFS4ERR_SERVERFAULT,, +19:u08:NFS4ERR_BADXDR,, +19:u07:NFS4ERR_BADXDR,, +19:u06:NFS4ERR_BADXDR,, +19:u05:NFS4ERR_BADXDR,, +18:u08:NFS4ERR_DELAY,, +19:u04:NFS4ERR_BADXDR,, +18:u07:NFS4ERR_DELAY,, +19:u03:NFS4ERR_BADXDR,, +18:u06:NFS4ERR_DELAY,, +19:u02:NFS4ERR_BADXDR,, +18:u05:NFS4ERR_DELAY,, +18:u08:NFS4ERR_NOENT,, +19:u01:NFS4ERR_BADXDR,, +18:u04:NFS4ERR_DELAY,, +18:u07:NFS4ERR_NOENT,, +19:u00:NFS4ERR_BADXDR,, +18:u03:NFS4ERR_DELAY,, +18:u06:NFS4ERR_NOENT,, +18:u02:NFS4ERR_DELAY,, +18:u05:NFS4ERR_NOENT,, +18:u01:NFS4ERR_DELAY,, +18:u04:NFS4ERR_NOENT,, +18:u00:NFS4ERR_DELAY,, +18:u03:NFS4ERR_NOENT,, +18:u02:NFS4ERR_NOENT,, +18:u01:NFS4ERR_NOENT,, +18:u00:NFS4ERR_NOENT,, +31:u08:NFS4ERR_BAD_SESSION_DIGEST,, +31:u07:NFS4ERR_BAD_SESSION_DIGEST,, +31:u06:NFS4ERR_BAD_SESSION_DIGEST,, +31:u05:NFS4ERR_BAD_SESSION_DIGEST,, +31:u04:NFS4ERR_BAD_SESSION_DIGEST,, +31:u03:NFS4ERR_BAD_SESSION_DIGEST,, +31:u02:NFS4ERR_BAD_SESSION_DIGEST,, +18:u08:NFS4ERR_INVAL,, +31:u01:NFS4ERR_BAD_SESSION_DIGEST,, +18:u07:NFS4ERR_INVAL,, +31:u00:NFS4ERR_BAD_SESSION_DIGEST,, +18:u06:NFS4ERR_INVAL,, +18:u05:NFS4ERR_INVAL,, +18:u04:NFS4ERR_INVAL,, +18:u03:NFS4ERR_INVAL,, +18:u02:NFS4ERR_INVAL,, +18:u01:NFS4ERR_INVAL,, +18:u00:NFS4ERR_INVAL,, +24:u08:NFS4ERR_BAD_STATEID,, +24:u07:NFS4ERR_BAD_STATEID,, +24:u06:NFS4ERR_BAD_STATEID,, +24:u05:NFS4ERR_BAD_STATEID,, +24:u04:NFS4ERR_BAD_STATEID,, +24:u03:NFS4ERR_BAD_STATEID,, +24:u02:NFS4ERR_BAD_STATEID,, +24:u01:NFS4ERR_BAD_STATEID,, +24:u00:NFS4ERR_BAD_STATEID,, +24:u08:NFS4ERR_OLD_STATEID,, +24:u07:NFS4ERR_OLD_STATEID,, +24:u06:NFS4ERR_OLD_STATEID,, +24:u05:NFS4ERR_OLD_STATEID,, +24:u04:NFS4ERR_OLD_STATEID,, +24:u03:NFS4ERR_OLD_STATEID,, +24:u02:NFS4ERR_OLD_STATEID,, +24:u01:NFS4ERR_OLD_STATEID,, +24:u00:NFS4ERR_OLD_STATEID,, +25:u08:NFS4ERR_TOO_MANY_OPS,, +25:u07:NFS4ERR_TOO_MANY_OPS,, +25:u06:NFS4ERR_TOO_MANY_OPS,, +25:u05:NFS4ERR_TOO_MANY_OPS,, +25:u04:NFS4ERR_TOO_MANY_OPS,, +25:u03:NFS4ERR_TOO_MANY_OPS,, +25:u02:NFS4ERR_TOO_MANY_OPS,, +25:u01:NFS4ERR_TOO_MANY_OPS,, +25:u00:NFS4ERR_TOO_MANY_OPS,, +8:u08:381], +8:u07:381], +8:u06:381], +8:u05:381], +8:u04:381], +8:u03:381], +8:u02:381], +8:u01:381], +8:u00:381], +18:u08:NFS4ERR_ISDIR,, +18:u07:NFS4ERR_ISDIR,, +18:u06:NFS4ERR_ISDIR,, +18:u05:NFS4ERR_ISDIR,, +18:u04:NFS4ERR_ISDIR,, +18:u03:NFS4ERR_ISDIR,, +18:u02:NFS4ERR_ISDIR,, +18:u01:NFS4ERR_ISDIR,, +18:u00:NFS4ERR_ISDIR,, +20:u08:NFS4ERR_SYMLINK,, +20:u07:NFS4ERR_SYMLINK,, +20:u06:NFS4ERR_SYMLINK,, +20:u05:NFS4ERR_SYMLINK,, +20:u04:NFS4ERR_SYMLINK,, +20:u03:NFS4ERR_SYMLINK,, +20:u02:NFS4ERR_SYMLINK,, +20:u01:NFS4ERR_SYMLINK,, +20:u00:NFS4ERR_SYMLINK,, +20:u08:NFS4ERR_BADCHAR,, +20:u07:NFS4ERR_BADCHAR,, +20:u06:NFS4ERR_BADCHAR,, +20:u05:NFS4ERR_BADCHAR,, +21:u08:NFS4ERR_BADOWNER,, +20:u04:NFS4ERR_BADCHAR,, +21:u07:NFS4ERR_BADOWNER,, +20:u03:NFS4ERR_BADCHAR,, +21:u06:NFS4ERR_BADOWNER,, +20:u02:NFS4ERR_BADCHAR,, +21:u05:NFS4ERR_BADOWNER,, +20:u01:NFS4ERR_BADCHAR,, +21:u04:NFS4ERR_BADOWNER,, +20:u00:NFS4ERR_BADCHAR,, +21:u03:NFS4ERR_BADOWNER,, +21:u02:NFS4ERR_BADOWNER,, +21:u01:NFS4ERR_BADOWNER,, +21:u00:NFS4ERR_BADOWNER,, +18:u08:NFS4ERR_EXIST,, +18:u07:NFS4ERR_EXIST,, +18:u06:NFS4ERR_EXIST,, +18:u05:NFS4ERR_EXIST,, +18:u04:NFS4ERR_EXIST,, +18:u03:NFS4ERR_EXIST,, +18:u02:NFS4ERR_EXIST,, +18:u01:NFS4ERR_EXIST,, +18:u00:NFS4ERR_EXIST,, +19:u08:NFS4ERR_NOTDIR,, +19:u07:NFS4ERR_NOTDIR,, +19:u06:NFS4ERR_NOTDIR,, +17:u08:NFS4ERR_PERM,, +19:u05:NFS4ERR_NOTDIR,, +17:u07:NFS4ERR_PERM,, +19:u04:NFS4ERR_NOTDIR,, +17:u06:NFS4ERR_PERM,, +19:u03:NFS4ERR_NOTDIR,, +17:u05:NFS4ERR_PERM,, +19:u02:NFS4ERR_NOTDIR,, +17:u04:NFS4ERR_PERM,, +19:u01:NFS4ERR_NOTDIR,, +17:u03:NFS4ERR_PERM,, +19:u00:NFS4ERR_NOTDIR,, +17:u02:NFS4ERR_PERM,, +17:u01:NFS4ERR_PERM,, +17:u00:NFS4ERR_PERM,, +24:u08:NFS4ERR_NOT_ONLY_OP,, +24:u07:NFS4ERR_NOT_ONLY_OP,, +24:u06:NFS4ERR_NOT_ONLY_OP,, +24:u05:NFS4ERR_NOT_ONLY_OP,, +24:u04:NFS4ERR_NOT_ONLY_OP,, +24:u03:NFS4ERR_NOT_ONLY_OP,, +24:u02:NFS4ERR_NOT_ONLY_OP,, +24:u01:NFS4ERR_NOT_ONLY_OP,, +24:u00:NFS4ERR_NOT_ONLY_OP,, +27:u08:NFS4ERR_SEQ_MISORDERED,, +27:u07:NFS4ERR_SEQ_MISORDERED,, +27:u06:NFS4ERR_SEQ_MISORDERED,, +27:u05:NFS4ERR_SEQ_MISORDERED,, +27:u04:NFS4ERR_SEQ_MISORDERED,, +27:u03:NFS4ERR_SEQ_MISORDERED,, +27:u02:NFS4ERR_SEQ_MISORDERED,, +27:u01:NFS4ERR_SEQ_MISORDERED,, +27:u00:NFS4ERR_SEQ_MISORDERED,, +14:u08:DELEGPURGE, +14:u07:DELEGPURGE, +14:u06:DELEGPURGE, +14:u05:DELEGPURGE, +14:u04:DELEGPURGE, +14:u03:DELEGPURGE, +14:u02:DELEGPURGE, +14:u01:DELEGPURGE, +14:u00:DELEGPURGE, +8:u08:382], +8:u07:382], +8:u06:382], +8:u05:382], +8:u04:382], +8:u03:382], +8:u02:382], +8:u01:382], +8:u00:382], +15:u08:DELEGRETURN, +15:u07:DELEGRETURN, +15:u06:DELEGRETURN, +15:u05:DELEGRETURN, +15:u04:DELEGRETURN, +15:u03:DELEGRETURN, +15:u02:DELEGRETURN, +15:u01:DELEGRETURN, +15:u00:DELEGRETURN, +27:u08:NFS4ERR_BACK_CHAN_BUSY,, +27:u07:NFS4ERR_BACK_CHAN_BUSY,, +27:u06:NFS4ERR_BACK_CHAN_BUSY,, +27:u05:NFS4ERR_BACK_CHAN_BUSY,, +27:u04:NFS4ERR_BACK_CHAN_BUSY,, +27:u03:NFS4ERR_BACK_CHAN_BUSY,, +27:u02:NFS4ERR_BACK_CHAN_BUSY,, +25:u08:NFS4ERR_CB_PATH_DOWN,, +27:u01:NFS4ERR_BACK_CHAN_BUSY,, +25:u07:NFS4ERR_CB_PATH_DOWN,, +27:u00:NFS4ERR_BACK_CHAN_BUSY,, +25:u06:NFS4ERR_CB_PATH_DOWN,, +25:u05:NFS4ERR_CB_PATH_DOWN,, +38:u08:NFS4ERR_CONN_NOT_BOUND_TO_SESSION,, +25:u04:NFS4ERR_CB_PATH_DOWN,, +38:u07:NFS4ERR_CONN_NOT_BOUND_TO_SESSION,, +25:u03:NFS4ERR_CB_PATH_DOWN,, +38:u06:NFS4ERR_CONN_NOT_BOUND_TO_SESSION,, +25:u02:NFS4ERR_CB_PATH_DOWN,, +38:u05:NFS4ERR_CONN_NOT_BOUND_TO_SESSION,, +25:u01:NFS4ERR_CB_PATH_DOWN,, +38:u04:NFS4ERR_CONN_NOT_BOUND_TO_SESSION,, +25:u00:NFS4ERR_CB_PATH_DOWN,, +38:u03:NFS4ERR_CONN_NOT_BOUND_TO_SESSION,, +38:u02:NFS4ERR_CONN_NOT_BOUND_TO_SESSION,, +38:u01:NFS4ERR_CONN_NOT_BOUND_TO_SESSION,, +38:u00:NFS4ERR_CONN_NOT_BOUND_TO_SESSION,, +23:u08:NFS4ERR_CLID_INUSE,, +23:u07:NFS4ERR_CLID_INUSE,, +23:u06:NFS4ERR_CLID_INUSE,, +23:u05:NFS4ERR_CLID_INUSE,, +23:u04:NFS4ERR_CLID_INUSE,, +23:u03:NFS4ERR_CLID_INUSE,, +23:u02:NFS4ERR_CLID_INUSE,, +28:u08:NFS4ERR_HASH_ALG_UNSUPP,, +23:u01:NFS4ERR_CLID_INUSE,, +28:u07:NFS4ERR_HASH_ALG_UNSUPP,, +23:u00:NFS4ERR_CLID_INUSE,, +28:u06:NFS4ERR_HASH_ALG_UNSUPP,, +28:u05:NFS4ERR_HASH_ALG_UNSUPP,, +28:u04:NFS4ERR_HASH_ALG_UNSUPP,, +8:u08:383], +28:u03:NFS4ERR_HASH_ALG_UNSUPP,, +8:u07:383], +28:u02:NFS4ERR_HASH_ALG_UNSUPP,, +8:u06:383], +28:u01:NFS4ERR_HASH_ALG_UNSUPP,, +8:u05:383], +28:u00:NFS4ERR_HASH_ALG_UNSUPP,, +8:u04:383], +8:u03:383], +8:u02:383], +8:u01:383], +8:u00:383], +21:u08:NFS4ERR_NOT_SAME,, +21:u07:NFS4ERR_NOT_SAME,, +21:u06:NFS4ERR_NOT_SAME,, +21:u05:NFS4ERR_NOT_SAME,, +21:u04:NFS4ERR_NOT_SAME,, +21:u03:NFS4ERR_NOT_SAME,, +21:u02:NFS4ERR_NOT_SAME,, +21:u01:NFS4ERR_NOT_SAME,, +21:u00:NFS4ERR_NOT_SAME,, +23:u08:NFS4ERR_LOCKS_HELD,, +23:u07:NFS4ERR_LOCKS_HELD,, +23:u06:NFS4ERR_LOCKS_HELD,, +23:u05:NFS4ERR_LOCKS_HELD,, +23:u04:NFS4ERR_LOCKS_HELD,, +23:u03:NFS4ERR_LOCKS_HELD,, +23:u02:NFS4ERR_LOCKS_HELD,, +23:u01:NFS4ERR_LOCKS_HELD,, +23:u00:NFS4ERR_LOCKS_HELD,, +22:u08:GET_DIR_DELEGATION, +22:u07:GET_DIR_DELEGATION, +22:u06:GET_DIR_DELEGATION, +22:u05:GET_DIR_DELEGATION, +22:u04:GET_DIR_DELEGATION, +22:u03:GET_DIR_DELEGATION, +22:u02:GET_DIR_DELEGATION, +22:u01:GET_DIR_DELEGATION, +29:u08:NFS4ERR_DIRDELEG_UNAVAIL,, +22:u00:GET_DIR_DELEGATION, +29:u07:NFS4ERR_DIRDELEG_UNAVAIL,, +29:u06:NFS4ERR_DIRDELEG_UNAVAIL,, +29:u05:NFS4ERR_DIRDELEG_UNAVAIL,, +29:u04:NFS4ERR_DIRDELEG_UNAVAIL,, +29:u03:NFS4ERR_DIRDELEG_UNAVAIL,, +29:u02:NFS4ERR_DIRDELEG_UNAVAIL,, +29:u01:NFS4ERR_DIRDELEG_UNAVAIL,, +29:u00:NFS4ERR_DIRDELEG_UNAVAIL,, +20:u08:NFS4ERR_NOTSUPP,, +20:u07:NFS4ERR_NOTSUPP,, +20:u06:NFS4ERR_NOTSUPP,, +20:u05:NFS4ERR_NOTSUPP,, +20:u04:NFS4ERR_NOTSUPP,, +20:u03:NFS4ERR_NOTSUPP,, +20:u02:NFS4ERR_NOTSUPP,, +20:u01:NFS4ERR_NOTSUPP,, +20:u00:NFS4ERR_NOTSUPP,, +8:u08:384], +8:u07:384], +8:u06:384], +8:u05:384], +8:u04:384], +8:u03:384], +8:u02:384], +8:u01:384], +8:u00:384], +11:u08:ILLEGAL, +11:u07:ILLEGAL, +11:u06:ILLEGAL, +11:u05:ILLEGAL, +11:u04:ILLEGAL, +11:u03:ILLEGAL, +11:u02:ILLEGAL, +11:u01:ILLEGAL, +11:u00:ILLEGAL, +24:u08:NFS4ERR_ATTRNOTSUPP,, +24:u07:NFS4ERR_ATTRNOTSUPP,, +24:u06:NFS4ERR_ATTRNOTSUPP,, +24:u05:NFS4ERR_ATTRNOTSUPP,, +22:u08:NFS4ERR_BADLAYOUT,, +24:u04:NFS4ERR_ATTRNOTSUPP,, +22:u07:NFS4ERR_BADLAYOUT,, +24:u03:NFS4ERR_ATTRNOTSUPP,, +22:u06:NFS4ERR_BADLAYOUT,, +24:u02:NFS4ERR_ATTRNOTSUPP,, +22:u05:NFS4ERR_BADLAYOUT,, +24:u01:NFS4ERR_ATTRNOTSUPP,, +22:u04:NFS4ERR_BADLAYOUT,, +24:u00:NFS4ERR_ATTRNOTSUPP,, +22:u03:NFS4ERR_BADLAYOUT,, +22:u02:NFS4ERR_BADLAYOUT,, +22:u01:NFS4ERR_BADLAYOUT,, +22:u00:NFS4ERR_BADLAYOUT,, +17:u08:NFS4ERR_FBIG,, +17:u07:NFS4ERR_FBIG,, +17:u06:NFS4ERR_FBIG,, +17:u05:NFS4ERR_FBIG,, +18:u08:NFS4ERR_GRACE,, +17:u04:NFS4ERR_FBIG,, +18:u07:NFS4ERR_GRACE,, +17:u03:NFS4ERR_FBIG,, +18:u06:NFS4ERR_GRACE,, +17:u02:NFS4ERR_FBIG,, +18:u05:NFS4ERR_GRACE,, +17:u01:NFS4ERR_FBIG,, +18:u04:NFS4ERR_GRACE,, +17:u00:NFS4ERR_FBIG,, +18:u03:NFS4ERR_GRACE,, +18:u02:NFS4ERR_GRACE,, +18:u01:NFS4ERR_GRACE,, +18:u00:NFS4ERR_GRACE,, +21:u08:NFS4ERR_NO_GRACE,, +21:u07:NFS4ERR_NO_GRACE,, +21:u06:NFS4ERR_NO_GRACE,, +21:u05:NFS4ERR_NO_GRACE,, +21:u04:NFS4ERR_NO_GRACE,, +21:u03:NFS4ERR_NO_GRACE,, +21:u02:NFS4ERR_NO_GRACE,, +24:u08:NFS4ERR_RECLAIM_BAD,, +21:u01:NFS4ERR_NO_GRACE,, +24:u07:NFS4ERR_RECLAIM_BAD,, +21:u00:NFS4ERR_NO_GRACE,, +24:u06:NFS4ERR_RECLAIM_BAD,, +24:u05:NFS4ERR_RECLAIM_BAD,, +29:u08:NFS4ERR_RECLAIM_CONFLICT,, +24:u04:NFS4ERR_RECLAIM_BAD,, +29:u07:NFS4ERR_RECLAIM_CONFLICT,, +24:u03:NFS4ERR_RECLAIM_BAD,, +29:u06:NFS4ERR_RECLAIM_CONFLICT,, +24:u02:NFS4ERR_RECLAIM_BAD,, +29:u05:NFS4ERR_RECLAIM_CONFLICT,, +24:u01:NFS4ERR_RECLAIM_BAD,, +29:u04:NFS4ERR_RECLAIM_CONFLICT,, +24:u00:NFS4ERR_RECLAIM_BAD,, +29:u03:NFS4ERR_RECLAIM_CONFLICT,, +29:u02:NFS4ERR_RECLAIM_CONFLICT,, +29:u01:NFS4ERR_RECLAIM_CONFLICT,, +29:u00:NFS4ERR_RECLAIM_CONFLICT,, +8:u08:385], +8:u07:385], +8:u06:385], +8:u05:385], +8:u04:385], +8:u03:385], +31:u08:NFS4ERR_UNKNOWN_LAYOUTTYPE,, +8:u02:385], +31:u07:NFS4ERR_UNKNOWN_LAYOUTTYPE,, +8:u01:385], +31:u06:NFS4ERR_UNKNOWN_LAYOUTTYPE,, +8:u00:385], +31:u05:NFS4ERR_UNKNOWN_LAYOUTTYPE,, +31:u04:NFS4ERR_UNKNOWN_LAYOUTTYPE,, +31:u03:NFS4ERR_UNKNOWN_LAYOUTTYPE,, +31:u02:NFS4ERR_UNKNOWN_LAYOUTTYPE,, +31:u01:NFS4ERR_UNKNOWN_LAYOUTTYPE,, +31:u00:NFS4ERR_UNKNOWN_LAYOUTTYPE,, +22:u08:NFS4ERR_BADIOMODE,, +22:u07:NFS4ERR_BADIOMODE,, +22:u06:NFS4ERR_BADIOMODE,, +22:u05:NFS4ERR_BADIOMODE,, +22:u04:NFS4ERR_BADIOMODE,, +22:u03:NFS4ERR_BADIOMODE,, +22:u02:NFS4ERR_BADIOMODE,, +22:u01:NFS4ERR_BADIOMODE,, +22:u00:NFS4ERR_BADIOMODE,, +27:u08:NFS4ERR_LAYOUTTRYLATER,, +27:u07:NFS4ERR_LAYOUTTRYLATER,, +27:u06:NFS4ERR_LAYOUTTRYLATER,, +27:u05:NFS4ERR_LAYOUTTRYLATER,, +30:u08:NFS4ERR_LAYOUTUNAVAILABLE,, +27:u04:NFS4ERR_LAYOUTTRYLATER,, +30:u07:NFS4ERR_LAYOUTUNAVAILABLE,, +27:u03:NFS4ERR_LAYOUTTRYLATER,, +30:u06:NFS4ERR_LAYOUTUNAVAILABLE,, +27:u02:NFS4ERR_LAYOUTTRYLATER,, +30:u05:NFS4ERR_LAYOUTUNAVAILABLE,, +27:u01:NFS4ERR_LAYOUTTRYLATER,, +30:u04:NFS4ERR_LAYOUTUNAVAILABLE,, +27:u00:NFS4ERR_LAYOUTTRYLATER,, +30:u03:NFS4ERR_LAYOUTUNAVAILABLE,, +18:u08:NFS4ERR_NOSPC,, +30:u02:NFS4ERR_LAYOUTUNAVAILABLE,, +18:u07:NFS4ERR_NOSPC,, +30:u01:NFS4ERR_LAYOUTUNAVAILABLE,, +18:u06:NFS4ERR_NOSPC,, +30:u00:NFS4ERR_LAYOUTUNAVAILABLE,, +18:u05:NFS4ERR_NOSPC,, +18:u04:NFS4ERR_NOSPC,, +18:u03:NFS4ERR_NOSPC,, +18:u02:NFS4ERR_NOSPC,, +18:u01:NFS4ERR_NOSPC,, +18:u00:NFS4ERR_NOSPC,, +27:u08:NFS4ERR_RECALLCONFLICT,, +27:u07:NFS4ERR_RECALLCONFLICT,, +27:u06:NFS4ERR_RECALLCONFLICT,, +27:u05:NFS4ERR_RECALLCONFLICT,, +27:u04:NFS4ERR_RECALLCONFLICT,, +27:u03:NFS4ERR_RECALLCONFLICT,, +27:u02:NFS4ERR_RECALLCONFLICT,, +27:u01:NFS4ERR_RECALLCONFLICT,, +27:u00:NFS4ERR_RECALLCONFLICT,, +21:u08:NFS4ERR_TOOSMALL,, +21:u07:NFS4ERR_TOOSMALL,, +21:u06:NFS4ERR_TOOSMALL,, +21:u05:NFS4ERR_TOOSMALL,, +21:u04:NFS4ERR_TOOSMALL,, +21:u03:NFS4ERR_TOOSMALL,, +21:u02:NFS4ERR_TOOSMALL,, +21:u01:NFS4ERR_TOOSMALL,, +21:u00:NFS4ERR_TOOSMALL,, +23:u08:NFS4ERR_WRONG_CRED,, +23:u07:NFS4ERR_WRONG_CRED,, +23:u06:NFS4ERR_WRONG_CRED,, +23:u05:NFS4ERR_WRONG_CRED,, +23:u04:NFS4ERR_WRONG_CRED,, +23:u03:NFS4ERR_WRONG_CRED,, +23:u02:NFS4ERR_WRONG_CRED,, +23:u01:NFS4ERR_WRONG_CRED,, +23:u00:NFS4ERR_WRONG_CRED,, +20:u08:NFS4ERR_BADNAME,, +20:u07:NFS4ERR_BADNAME,, +20:u06:NFS4ERR_BADNAME,, +20:u05:NFS4ERR_BADNAME,, +20:u04:NFS4ERR_BADNAME,, +20:u03:NFS4ERR_BADNAME,, +20:u02:NFS4ERR_BADNAME,, +18:u08:NFS4ERR_DQUOT,, +20:u01:NFS4ERR_BADNAME,, +18:u07:NFS4ERR_DQUOT,, +20:u00:NFS4ERR_BADNAME,, +18:u06:NFS4ERR_DQUOT,, +18:u05:NFS4ERR_DQUOT,, +18:u04:NFS4ERR_DQUOT,, +8:u08:386], +18:u03:NFS4ERR_DQUOT,, +8:u07:386], +18:u02:NFS4ERR_DQUOT,, +8:u06:386], +18:u01:NFS4ERR_DQUOT,, +8:u05:386], +18:u00:NFS4ERR_DQUOT,, +8:u04:386], +8:u03:386], +8:u02:386], +8:u01:386], +8:u00:386], +21:u08:NFS4ERR_WRONGSEC,, +21:u07:NFS4ERR_WRONGSEC,, +21:u06:NFS4ERR_WRONGSEC,, +21:u05:NFS4ERR_WRONGSEC,, +21:u04:NFS4ERR_WRONGSEC,, +21:u03:NFS4ERR_WRONGSEC,, +21:u02:NFS4ERR_WRONGSEC,, +21:u01:NFS4ERR_WRONGSEC,, +21:u00:NFS4ERR_WRONGSEC,, +19:u08:NFS4ERR_DENIED,, +19:u07:NFS4ERR_DENIED,, +19:u06:NFS4ERR_DENIED,, +19:u05:NFS4ERR_DENIED,, +19:u04:NFS4ERR_DENIED,, +19:u03:NFS4ERR_DENIED,, +19:u02:NFS4ERR_DENIED,, +19:u01:NFS4ERR_DENIED,, +19:u00:NFS4ERR_DENIED,, +25:u08:NFS4ERR_LOCK_NOTSUPP,, +25:u07:NFS4ERR_LOCK_NOTSUPP,, +25:u06:NFS4ERR_LOCK_NOTSUPP,, +25:u05:NFS4ERR_LOCK_NOTSUPP,, +25:u04:NFS4ERR_LOCK_NOTSUPP,, +25:u03:NFS4ERR_LOCK_NOTSUPP,, +25:u02:NFS4ERR_LOCK_NOTSUPP,, +25:u01:NFS4ERR_LOCK_NOTSUPP,, +25:u00:NFS4ERR_LOCK_NOTSUPP,, +21:u08:NFS4ERR_OPENMODE,, +21:u07:NFS4ERR_OPENMODE,, +21:u06:NFS4ERR_OPENMODE,, +21:u05:NFS4ERR_OPENMODE,, +21:u04:NFS4ERR_OPENMODE,, +21:u03:NFS4ERR_OPENMODE,, +21:u02:NFS4ERR_OPENMODE,, +21:u01:NFS4ERR_OPENMODE,, +21:u00:NFS4ERR_OPENMODE,, +9:u08:LOCKT, +9:u07:LOCKT, +9:u06:LOCKT, +9:u05:LOCKT, +9:u04:LOCKT, +22:u08:NFS4ERR_BAD_RANGE,, +9:u03:LOCKT, +22:u07:NFS4ERR_BAD_RANGE,, +9:u02:LOCKT, +22:u06:NFS4ERR_BAD_RANGE,, +9:u01:LOCKT, +22:u05:NFS4ERR_BAD_RANGE,, +9:u00:LOCKT, +22:u04:NFS4ERR_BAD_RANGE,, +22:u03:NFS4ERR_BAD_RANGE,, +22:u02:NFS4ERR_BAD_RANGE,, +22:u01:NFS4ERR_BAD_RANGE,, +22:u00:NFS4ERR_BAD_RANGE,, +23:u08:NFS4ERR_LOCK_RANGE,, +23:u07:NFS4ERR_LOCK_RANGE,, +23:u06:NFS4ERR_LOCK_RANGE,, +23:u05:NFS4ERR_LOCK_RANGE,, +23:u04:NFS4ERR_LOCK_RANGE,, +23:u03:NFS4ERR_LOCK_RANGE,, +23:u02:NFS4ERR_LOCK_RANGE,, +23:u01:NFS4ERR_LOCK_RANGE,, +23:u00:NFS4ERR_LOCK_RANGE,, +8:u08:387], +8:u07:387], +8:u06:387], +8:u05:387], +8:u04:387], +8:u03:387], +8:u02:387], +8:u01:387], +8:u00:387], +18:u08:NFS4ERR_STALE,, +18:u07:NFS4ERR_STALE,, +18:u06:NFS4ERR_STALE,, +18:u05:NFS4ERR_STALE,, +18:u04:NFS4ERR_STALE,, +18:u03:NFS4ERR_STALE,, +18:u02:NFS4ERR_STALE,, +18:u01:NFS4ERR_STALE,, +18:u00:NFS4ERR_STALE,, +24:u08:NFS4ERR_NAMETOOLONG,, +24:u07:NFS4ERR_NAMETOOLONG,, +24:u06:NFS4ERR_NAMETOOLONG,, +24:u05:NFS4ERR_NAMETOOLONG,, +24:u04:NFS4ERR_NAMETOOLONG,, +24:u03:NFS4ERR_NAMETOOLONG,, +24:u02:NFS4ERR_NAMETOOLONG,, +24:u01:NFS4ERR_NAMETOOLONG,, +24:u00:NFS4ERR_NAMETOOLONG,, +11:u08:LOOKUPP, +11:u07:LOOKUPP, +11:u06:LOOKUPP, +11:u05:LOOKUPP, +11:u04:LOOKUPP, +11:u03:LOOKUPP, +11:u02:LOOKUPP, +11:u01:LOOKUPP, +11:u00:LOOKUPP, +8:u08:388], +8:u07:388], +8:u06:388], +8:u05:388], +8:u04:388], +8:u03:388], +8:u02:388], +8:u01:388], +8:u00:388], +33:u08:NFS4ERR_DELEG_ALREADY_WANTED,, +33:u07:NFS4ERR_DELEG_ALREADY_WANTED,, +33:u06:NFS4ERR_DELEG_ALREADY_WANTED,, +33:u05:NFS4ERR_DELEG_ALREADY_WANTED,, +33:u04:NFS4ERR_DELEG_ALREADY_WANTED,, +33:u03:NFS4ERR_DELEG_ALREADY_WANTED,, +33:u02:NFS4ERR_DELEG_ALREADY_WANTED,, +33:u01:NFS4ERR_DELEG_ALREADY_WANTED,, +33:u00:NFS4ERR_DELEG_ALREADY_WANTED,, +28:u08:NFS4ERR_UNSAFE_COMPOUND,, +28:u07:NFS4ERR_UNSAFE_COMPOUND,, +28:u06:NFS4ERR_UNSAFE_COMPOUND,, +28:u05:NFS4ERR_UNSAFE_COMPOUND,, +28:u04:NFS4ERR_UNSAFE_COMPOUND,, +28:u03:NFS4ERR_UNSAFE_COMPOUND,, +28:u02:NFS4ERR_UNSAFE_COMPOUND,, +28:u01:NFS4ERR_UNSAFE_COMPOUND,, +28:u00:NFS4ERR_UNSAFE_COMPOUND,, +8:u08:389], +8:u07:389], +8:u06:389], +8:u05:389], +8:u04:389], +18:u08:OPEN_DOWNGRADE, +8:u03:389], +18:u07:OPEN_DOWNGRADE, +8:u02:389], +18:u06:OPEN_DOWNGRADE, +8:u01:389], +18:u05:OPEN_DOWNGRADE, +8:u00:389], +18:u04:OPEN_DOWNGRADE, +18:u03:OPEN_DOWNGRADE, +18:u02:OPEN_DOWNGRADE, +18:u01:OPEN_DOWNGRADE, +18:u00:OPEN_DOWNGRADE, +22:u08:NFS4ERR_BADHANDLE,, +22:u07:NFS4ERR_BADHANDLE,, +22:u06:NFS4ERR_BADHANDLE,, +22:u05:NFS4ERR_BADHANDLE,, +22:u04:NFS4ERR_BADHANDLE,, +22:u03:NFS4ERR_BADHANDLE,, +22:u02:NFS4ERR_BADHANDLE,, +22:u01:NFS4ERR_BADHANDLE,, +22:u00:NFS4ERR_BADHANDLE,, +12:u08:PUTPUBFH, +12:u07:PUTPUBFH, +12:u06:PUTPUBFH, +12:u05:PUTPUBFH, +12:u04:PUTPUBFH, +12:u03:PUTPUBFH, +12:u02:PUTPUBFH, +12:u01:PUTPUBFH, +12:u00:PUTPUBFH, +8:u08:390], +8:u07:390], +8:u06:390], +8:u05:390], +8:u04:390], +8:u03:390], +8:u02:390], +8:u01:390], +8:u00:390], +19:u08:NFS4ERR_LOCKED,, +19:u07:NFS4ERR_LOCKED,, +19:u06:NFS4ERR_LOCKED,, +19:u05:NFS4ERR_LOCKED,, +19:u04:NFS4ERR_LOCKED,, +19:u03:NFS4ERR_LOCKED,, +19:u02:NFS4ERR_LOCKED,, +19:u01:NFS4ERR_LOCKED,, +19:u00:NFS4ERR_LOCKED,, +25:u08:NFS4ERR_PNFS_IO_HOLE,, +25:u07:NFS4ERR_PNFS_IO_HOLE,, +25:u06:NFS4ERR_PNFS_IO_HOLE,, +25:u05:NFS4ERR_PNFS_IO_HOLE,, +27:u08:NFS4ERR_PNFS_NO_LAYOUT,, +25:u04:NFS4ERR_PNFS_IO_HOLE,, +27:u07:NFS4ERR_PNFS_NO_LAYOUT,, +25:u03:NFS4ERR_PNFS_IO_HOLE,, +27:u06:NFS4ERR_PNFS_NO_LAYOUT,, +25:u02:NFS4ERR_PNFS_IO_HOLE,, +27:u05:NFS4ERR_PNFS_NO_LAYOUT,, +25:u01:NFS4ERR_PNFS_IO_HOLE,, +27:u04:NFS4ERR_PNFS_NO_LAYOUT,, +25:u00:NFS4ERR_PNFS_IO_HOLE,, +27:u03:NFS4ERR_PNFS_NO_LAYOUT,, +27:u02:NFS4ERR_PNFS_NO_LAYOUT,, +27:u01:NFS4ERR_PNFS_NO_LAYOUT,, +27:u00:NFS4ERR_PNFS_NO_LAYOUT,, +23:u08:NFS4ERR_BAD_COOKIE,, +23:u07:NFS4ERR_BAD_COOKIE,, +23:u06:NFS4ERR_BAD_COOKIE,, +23:u05:NFS4ERR_BAD_COOKIE,, +23:u04:NFS4ERR_BAD_COOKIE,, +23:u03:NFS4ERR_BAD_COOKIE,, +23:u02:NFS4ERR_BAD_COOKIE,, +23:u01:NFS4ERR_BAD_COOKIE,, +23:u00:NFS4ERR_BAD_COOKIE,, +12:u08:READLINK, +12:u07:READLINK, +12:u06:READLINK, +12:u05:READLINK, +12:u04:READLINK, +12:u03:READLINK, +12:u02:READLINK, +12:u01:READLINK, +12:u00:READLINK, +8:u08:391], +8:u07:391], +8:u06:391], +8:u05:391], +8:u04:391], +8:u03:391], +8:u02:391], +8:u01:391], +8:u00:391], +18:u08:NFS4ERR_MLINK,, +18:u07:NFS4ERR_MLINK,, +18:u06:NFS4ERR_MLINK,, +18:u05:NFS4ERR_MLINK,, +18:u04:NFS4ERR_MLINK,, +18:u03:NFS4ERR_MLINK,, +18:u02:NFS4ERR_MLINK,, +18:u01:NFS4ERR_MLINK,, +18:u00:NFS4ERR_MLINK,, +8:u08:392], +8:u07:392], +8:u06:392], +8:u05:392], +8:u04:392], +8:u03:392], +8:u02:392], +8:u01:392], +8:u00:392], +8:u08:393], +8:u07:393], +8:u06:393], +8:u05:393], +8:u04:393], +8:u03:393], +8:u02:393], +8:u01:393], +8:u00:393], +25:u08:NFS4ERR_SEQUENCE_POS,, +25:u07:NFS4ERR_SEQUENCE_POS,, +25:u06:NFS4ERR_SEQUENCE_POS,, +25:u05:NFS4ERR_SEQUENCE_POS,, +28:u08:NFS4ERR_SEQ_FALSE_RETRY,, +25:u04:NFS4ERR_SEQUENCE_POS,, +28:u07:NFS4ERR_SEQ_FALSE_RETRY,, +25:u03:NFS4ERR_SEQUENCE_POS,, +28:u06:NFS4ERR_SEQ_FALSE_RETRY,, +25:u02:NFS4ERR_SEQUENCE_POS,, +28:u05:NFS4ERR_SEQ_FALSE_RETRY,, +25:u01:NFS4ERR_SEQUENCE_POS,, +28:u04:NFS4ERR_SEQ_FALSE_RETRY,, +25:u00:NFS4ERR_SEQUENCE_POS,, +28:u03:NFS4ERR_SEQ_FALSE_RETRY,, +28:u02:NFS4ERR_SEQ_FALSE_RETRY,, +28:u01:NFS4ERR_SEQ_FALSE_RETRY,, +28:u00:NFS4ERR_SEQ_FALSE_RETRY,, +8:u08:394], +8:u07:394], +8:u06:394], +8:u05:394], +8:u04:394], +8:u03:394], +8:u02:394], +8:u01:394], +8:u00:394], +8:u08:395], +8:u07:395], +8:u06:395], +8:u05:395], +8:u04:395], +8:u03:395], +8:u02:395], +8:u01:395], +8:u00:395], +73:u08:+-------------------------+-----------------------------------------+, +73:u07:+-------------------------+-----------------------------------------+, +73:u06:+-------------------------+-----------------------------------------+, +73:u14:+-------------------------+-----------------------------------------+, +73:u05:+-------------------------+-----------------------------------------+, +73:u13:+-------------------------+-----------------------------------------+, +73:u04:+-------------------------+-----------------------------------------+, +73:u12:+-------------------------+-----------------------------------------+, +73:u03:+-------------------------+-----------------------------------------+, +73:u11:+-------------------------+-----------------------------------------+, +73:u02:+-------------------------+-----------------------------------------+, +73:u10:+-------------------------+-----------------------------------------+, +73:u01:+-------------------------+-----------------------------------------+, +73:u00:+-------------------------+-----------------------------------------+, +8:u08:396], +8:u07:396], +8:u06:396], +8:u05:396], +8:u04:396], +8:u03:396], +8:u02:396], +8:u01:396], +8:u00:396], +14:u08:CB_ILLEGAL, +14:u07:CB_ILLEGAL, +14:u06:CB_ILLEGAL, +14:u05:CB_ILLEGAL, +14:u04:CB_ILLEGAL, +14:u03:CB_ILLEGAL, +14:u02:CB_ILLEGAL, +14:u01:CB_ILLEGAL, +14:u00:CB_ILLEGAL, +30:u08:NFS4ERR_NOMATCHING_LAYOUT,, +30:u07:NFS4ERR_NOMATCHING_LAYOUT,, +30:u06:NFS4ERR_NOMATCHING_LAYOUT,, +30:u05:NFS4ERR_NOMATCHING_LAYOUT,, +30:u04:NFS4ERR_NOMATCHING_LAYOUT,, +30:u03:NFS4ERR_NOMATCHING_LAYOUT,, +30:u02:NFS4ERR_NOMATCHING_LAYOUT,, +30:u01:NFS4ERR_NOMATCHING_LAYOUT,, +30:u00:NFS4ERR_NOMATCHING_LAYOUT,, +13:u08:CB_NOTIFY, +13:u07:CB_NOTIFY, +13:u06:CB_NOTIFY, +13:u05:CB_NOTIFY, +13:u04:CB_NOTIFY, +13:u03:CB_NOTIFY, +13:u02:CB_NOTIFY, +13:u01:CB_NOTIFY, +13:u00:CB_NOTIFY, +8:u08:397], +8:u07:397], +8:u06:397], +8:u05:397], +8:u04:397], +8:u03:397], +8:u02:397], +8:u01:397], +8:u00:397], +17:u08:CB_PUSH_DELEG, +17:u07:CB_PUSH_DELEG, +17:u06:CB_PUSH_DELEG, +17:u05:CB_PUSH_DELEG, +17:u04:CB_PUSH_DELEG, +17:u03:CB_PUSH_DELEG, +17:u02:CB_PUSH_DELEG, +17:u01:CB_PUSH_DELEG, +17:u00:CB_PUSH_DELEG, +25:u08:NFS4ERR_REJECT_DELEG,, +25:u07:NFS4ERR_REJECT_DELEG,, +25:u06:NFS4ERR_REJECT_DELEG,, +25:u05:NFS4ERR_REJECT_DELEG,, +25:u04:NFS4ERR_REJECT_DELEG,, +25:u03:NFS4ERR_REJECT_DELEG,, +25:u02:NFS4ERR_REJECT_DELEG,, +25:u01:NFS4ERR_REJECT_DELEG,, +25:u00:NFS4ERR_REJECT_DELEG,, +18:u08:CB_RECALL_SLOT, +18:u07:CB_RECALL_SLOT, +18:u06:CB_RECALL_SLOT, +18:u05:CB_RECALL_SLOT, +18:u04:CB_RECALL_SLOT, +8:u08:398], +18:u03:CB_RECALL_SLOT, +8:u07:398], +18:u02:CB_RECALL_SLOT, +8:u06:398], +18:u01:CB_RECALL_SLOT, +8:u05:398], +18:u00:CB_RECALL_SLOT, +8:u04:398], +8:u03:398], +8:u02:398], +8:u01:398], +8:u00:398], +22:u08:CB_WANTS_CANCELLED, +22:u07:CB_WANTS_CANCELLED, +22:u06:CB_WANTS_CANCELLED, +22:u05:CB_WANTS_CANCELLED, +22:u04:CB_WANTS_CANCELLED, +22:u03:CB_WANTS_CANCELLED, +22:u02:CB_WANTS_CANCELLED, +22:u01:CB_WANTS_CANCELLED, +22:u00:CB_WANTS_CANCELLED, +73:u08:+-----------------------------------+-------------------------------+, +73:u07:+-----------------------------------+-------------------------------+, +73:u06:+-----------------------------------+-------------------------------+, +73:u14:+-----------------------------------+-------------------------------+, +73:u05:+-----------------------------------+-------------------------------+, +73:u13:+-----------------------------------+-------------------------------+, +73:u04:+-----------------------------------+-------------------------------+, +73:u12:+-----------------------------------+-------------------------------+, +73:u03:+-----------------------------------+-------------------------------+, +73:u11:+-----------------------------------+-------------------------------+, +73:u02:+-----------------------------------+-------------------------------+, +11:u08:ACCESS,, +73:u10:+-----------------------------------+-------------------------------+, +73:u01:+-----------------------------------+-------------------------------+, +11:u07:ACCESS,, +73:u00:+-----------------------------------+-------------------------------+, +11:u06:ACCESS,, +11:u05:ACCESS,, +12:u08:GETATTR,, +11:u04:ACCESS,, +12:u07:GETATTR,, +11:u03:ACCESS,, +12:u06:GETATTR,, +11:u02:ACCESS,, +12:u05:GETATTR,, +11:u01:ACCESS,, +12:u04:GETATTR,, +11:u00:ACCESS,, +12:u03:GETATTR,, +9:u08:LINK,, +12:u02:GETATTR,, +9:u07:LINK,, +12:u01:GETATTR,, +9:u06:LINK,, +12:u00:GETATTR,, +9:u05:LINK,, +11:u08:LOOKUP,, +9:u04:LINK,, +11:u07:LOOKUP,, +9:u03:LINK,, +11:u06:LOOKUP,, +9:u02:LINK,, +11:u05:LOOKUP,, +9:u01:LINK,, +11:u04:LOOKUP,, +9:u00:LINK,, +11:u03:LOOKUP,, +11:u02:LOOKUP,, +11:u01:LOOKUP,, +11:u00:LOOKUP,, +20:u08:SECINFO_NO_NAME,, +20:u07:SECINFO_NO_NAME,, +20:u06:SECINFO_NO_NAME,, +20:u05:SECINFO_NO_NAME,, +20:u04:SECINFO_NO_NAME,, +8:u08:399], +20:u03:SECINFO_NO_NAME,, +8:u07:399], +20:u02:SECINFO_NO_NAME,, +8:u06:399], +20:u01:SECINFO_NO_NAME,, +8:u05:399], +20:u00:SECINFO_NO_NAME,, +8:u04:399], +8:u03:399], +11:u08:VERIFY,, +8:u02:399], +11:u07:VERIFY,, +8:u01:399], +11:u06:VERIFY,, +8:u00:399], +11:u05:VERIFY,, +11:u04:VERIFY,, +11:u03:VERIFY,, +11:u02:VERIFY,, +11:u01:VERIFY,, +11:u00:VERIFY,, +12:u08:NVERIFY,, +12:u07:NVERIFY,, +12:u06:NVERIFY,, +12:u05:NVERIFY,, +12:u04:NVERIFY,, +12:u03:NVERIFY,, +12:u02:NVERIFY,, +12:u01:NVERIFY,, +12:u00:NVERIFY,, +11:u08:REMOVE,, +11:u07:REMOVE,, +11:u06:REMOVE,, +11:u05:REMOVE,, +11:u04:REMOVE,, +11:u03:REMOVE,, +11:u02:REMOVE,, +11:u01:REMOVE,, +11:u00:REMOVE,, +14:u08:CB_NOTIFY,, +14:u07:CB_NOTIFY,, +14:u06:CB_NOTIFY,, +14:u05:CB_NOTIFY,, +18:u08:CB_PUSH_DELEG,, +14:u04:CB_NOTIFY,, +18:u07:CB_PUSH_DELEG,, +14:u03:CB_NOTIFY,, +18:u06:CB_PUSH_DELEG,, +14:u02:CB_NOTIFY,, +18:u05:CB_PUSH_DELEG,, +14:u01:CB_NOTIFY,, +18:u04:CB_PUSH_DELEG,, +14:u00:CB_NOTIFY,, +18:u03:CB_PUSH_DELEG,, +18:u02:CB_PUSH_DELEG,, +18:u01:CB_PUSH_DELEG,, +18:u00:CB_PUSH_DELEG,, +23:u08:CB_NOTIFY_DEVICEID,, +23:u07:CB_NOTIFY_DEVICEID,, +23:u06:CB_NOTIFY_DEVICEID,, +23:u05:CB_NOTIFY_DEVICEID,, +19:u08:CB_NOTIFY_LOCK,, +23:u04:CB_NOTIFY_DEVICEID,, +19:u07:CB_NOTIFY_LOCK,, +23:u03:CB_NOTIFY_DEVICEID,, +19:u06:CB_NOTIFY_LOCK,, +23:u02:CB_NOTIFY_DEVICEID,, +19:u05:CB_NOTIFY_LOCK,, +23:u01:CB_NOTIFY_DEVICEID,, +19:u04:CB_NOTIFY_LOCK,, +8:u08:400], +23:u00:CB_NOTIFY_DEVICEID,, +19:u03:CB_NOTIFY_LOCK,, +8:u07:400], +19:u02:CB_NOTIFY_LOCK,, +8:u06:400], +19:u01:CB_NOTIFY_LOCK,, +8:u05:400], +19:u00:CB_NOTIFY_LOCK,, +8:u04:400], +8:u03:400], +8:u02:400], +8:u01:400], +8:u00:400], +28:u08:CB_RECALLABLE_OBJ_AVAIL,, +28:u07:CB_RECALLABLE_OBJ_AVAIL,, +28:u06:CB_RECALLABLE_OBJ_AVAIL,, +28:u05:CB_RECALLABLE_OBJ_AVAIL,, +18:u08:CB_RECALL_ANY,, +28:u04:CB_RECALLABLE_OBJ_AVAIL,, +18:u07:CB_RECALL_ANY,, +28:u03:CB_RECALLABLE_OBJ_AVAIL,, +18:u06:CB_RECALL_ANY,, +28:u02:CB_RECALLABLE_OBJ_AVAIL,, +18:u05:CB_RECALL_ANY,, +19:u08:CB_RECALL_SLOT,, +28:u01:CB_RECALLABLE_OBJ_AVAIL,, +18:u04:CB_RECALL_ANY,, +19:u07:CB_RECALL_SLOT,, +28:u00:CB_RECALLABLE_OBJ_AVAIL,, +18:u03:CB_RECALL_ANY,, +19:u06:CB_RECALL_SLOT,, +23:u08:CB_WANTS_CANCELLED,, +18:u02:CB_RECALL_ANY,, +19:u05:CB_RECALL_SLOT,, +23:u07:CB_WANTS_CANCELLED,, +18:u01:CB_RECALL_ANY,, +19:u04:CB_RECALL_SLOT,, +23:u06:CB_WANTS_CANCELLED,, +18:u00:CB_RECALL_ANY,, +19:u03:CB_RECALL_SLOT,, +23:u05:CB_WANTS_CANCELLED,, +11:u08:COMMIT,, +19:u02:CB_RECALL_SLOT,, +23:u04:CB_WANTS_CANCELLED,, +11:u07:COMMIT,, +19:u01:CB_RECALL_SLOT,, +23:u03:CB_WANTS_CANCELLED,, +11:u06:COMMIT,, +19:u00:CB_RECALL_SLOT,, +23:u02:CB_WANTS_CANCELLED,, +11:u05:COMMIT,, +23:u01:CB_WANTS_CANCELLED,, +11:u04:COMMIT,, +23:u00:CB_WANTS_CANCELLED,, +11:u03:COMMIT,, +11:u02:COMMIT,, +11:u01:COMMIT,, +11:u00:COMMIT,, +21:u08:DESTROY_CLIENTID,, +21:u07:DESTROY_CLIENTID,, +21:u06:DESTROY_CLIENTID,, +21:u05:DESTROY_CLIENTID,, +21:u04:DESTROY_CLIENTID,, +21:u03:DESTROY_CLIENTID,, +17:u08:FREE_STATEID,, +21:u02:DESTROY_CLIENTID,, +17:u07:FREE_STATEID,, +21:u01:DESTROY_CLIENTID,, +17:u06:FREE_STATEID,, +21:u00:DESTROY_CLIENTID,, +17:u05:FREE_STATEID,, +18:u08:GETDEVICEINFO,, +17:u04:FREE_STATEID,, +18:u07:GETDEVICEINFO,, +17:u03:FREE_STATEID,, +18:u06:GETDEVICEINFO,, +23:u08:GET_DIR_DELEGATION,, +17:u02:FREE_STATEID,, +18:u05:GETDEVICEINFO,, +23:u07:GET_DIR_DELEGATION,, +17:u01:FREE_STATEID,, +18:u04:GETDEVICEINFO,, +23:u06:GET_DIR_DELEGATION,, +17:u00:FREE_STATEID,, +18:u03:GETDEVICEINFO,, +23:u05:GET_DIR_DELEGATION,, +18:u02:GETDEVICEINFO,, +23:u04:GET_DIR_DELEGATION,, +18:u01:GETDEVICEINFO,, +23:u03:GET_DIR_DELEGATION,, +18:u00:GETDEVICEINFO,, +23:u02:GET_DIR_DELEGATION,, +23:u01:GET_DIR_DELEGATION,, +23:u00:GET_DIR_DELEGATION,, +10:u08:LOCKT,, +10:u07:LOCKT,, +10:u06:LOCKT,, +10:u05:LOCKT,, +10:u04:LOCKT,, +10:u03:LOCKT,, +10:u02:LOCKT,, +19:u08:OPEN_DOWNGRADE,, +10:u01:LOCKT,, +19:u07:OPEN_DOWNGRADE,, +10:u00:LOCKT,, +19:u06:OPEN_DOWNGRADE,, +19:u05:OPEN_DOWNGRADE,, +19:u04:OPEN_DOWNGRADE,, +19:u03:OPEN_DOWNGRADE,, +19:u02:OPEN_DOWNGRADE,, +19:u01:OPEN_DOWNGRADE,, +19:u00:OPEN_DOWNGRADE,, +17:u08:TEST_STATEID,, +17:u07:TEST_STATEID,, +17:u06:TEST_STATEID,, +17:u05:TEST_STATEID,, +20:u08:WANT_DELEGATION,, +17:u04:TEST_STATEID,, +20:u07:WANT_DELEGATION,, +17:u03:TEST_STATEID,, +20:u06:WANT_DELEGATION,, +17:u02:TEST_STATEID,, +20:u05:WANT_DELEGATION,, +17:u01:TEST_STATEID,, +20:u04:WANT_DELEGATION,, +17:u00:TEST_STATEID,, +20:u03:WANT_DELEGATION,, +20:u02:WANT_DELEGATION,, +18:u08:GETDEVICELIST,, +20:u01:WANT_DELEGATION,, +18:u07:GETDEVICELIST,, +20:u00:WANT_DELEGATION,, +18:u06:GETDEVICELIST,, +18:u05:GETDEVICELIST,, +18:u04:GETDEVICELIST,, +18:u03:GETDEVICELIST,, +18:u02:GETDEVICELIST,, +18:u01:GETDEVICELIST,, +18:u00:GETDEVICELIST,, +9:u08:LOCK,, +9:u07:LOCK,, +9:u06:LOCK,, +9:u05:LOCK,, +9:u04:LOCK,, +9:u03:LOCK,, +9:u02:LOCK,, +9:u01:LOCK,, +9:u00:LOCK,, +8:u08:401], +8:u07:401], +8:u06:401], +8:u05:401], +8:u04:401], +8:u03:401], +8:u02:401], +8:u01:401], +8:u00:401], +13:u08:OPENATTR,, +13:u07:OPENATTR,, +13:u06:OPENATTR,, +13:u05:OPENATTR,, +13:u04:OPENATTR,, +13:u03:OPENATTR,, +13:u02:OPENATTR,, +13:u01:OPENATTR,, +13:u00:OPENATTR,, +21:u08:RECLAIM_COMPLETE,, +21:u07:RECLAIM_COMPLETE,, +21:u06:RECLAIM_COMPLETE,, +21:u05:RECLAIM_COMPLETE,, +21:u04:RECLAIM_COMPLETE,, +21:u03:RECLAIM_COMPLETE,, +21:u02:RECLAIM_COMPLETE,, +21:u01:RECLAIM_COMPLETE,, +21:u00:RECLAIM_COMPLETE,, +8:u08:402], +8:u07:402], +8:u06:402], +8:u05:402], +8:u04:402], +8:u03:402], +8:u02:402], +8:u01:402], +8:u00:402], +8:u08:403], +8:u07:403], +8:u06:403], +8:u05:403], +8:u04:403], +8:u03:403], +8:u02:403], +8:u01:403], +8:u00:403], +8:u08:404], +8:u07:404], +8:u06:404], +8:u05:404], +8:u04:404], +8:u03:404], +8:u02:404], +8:u01:404], +8:u00:404], +10:u08:GETFH,, +10:u07:GETFH,, +10:u06:GETFH,, +10:u05:GETFH,, +10:u04:GETFH,, +10:u03:GETFH,, +10:u02:GETFH,, +10:u01:GETFH,, +10:u00:GETFH,, +13:u08:READLINK,, +13:u07:READLINK,, +13:u06:READLINK,, +13:u05:READLINK,, +13:u04:READLINK,, +13:u03:READLINK,, +13:u02:READLINK,, +11:u08:SAVEFH,, +13:u01:READLINK,, +11:u07:SAVEFH,, +13:u00:READLINK,, +11:u06:SAVEFH,, +11:u05:SAVEFH,, +11:u04:SAVEFH,, +11:u03:SAVEFH,, +11:u02:SAVEFH,, +11:u01:SAVEFH,, +11:u00:SAVEFH,, +8:u08:405], +8:u07:405], +8:u06:405], +8:u05:405], +8:u04:405], +8:u03:405], +8:u02:405], +8:u01:405], +8:u00:405], +15:u08:DELEGPURGE,, +15:u07:DELEGPURGE,, +15:u06:DELEGPURGE,, +15:u05:DELEGPURGE,, +15:u04:DELEGPURGE,, +15:u03:DELEGPURGE,, +15:u02:DELEGPURGE,, +15:u01:DELEGPURGE,, +15:u00:DELEGPURGE,, +8:u08:406], +8:u07:406], +8:u06:406], +8:u05:406], +8:u04:406], +8:u03:406], +17:u08:OPEN_CONFIRM,, +8:u02:406], +17:u07:OPEN_CONFIRM,, +8:u01:406], +17:u06:OPEN_CONFIRM,, +8:u00:406], +17:u05:OPEN_CONFIRM,, +17:u04:OPEN_CONFIRM,, +17:u03:OPEN_CONFIRM,, +17:u02:OPEN_CONFIRM,, +17:u01:OPEN_CONFIRM,, +17:u00:OPEN_CONFIRM,, +24:u08:SETCLIENTID_CONFIRM,, +24:u07:SETCLIENTID_CONFIRM,, +24:u06:SETCLIENTID_CONFIRM,, +24:u05:SETCLIENTID_CONFIRM,, +24:u04:SETCLIENTID_CONFIRM,, +24:u03:SETCLIENTID_CONFIRM,, +24:u02:SETCLIENTID_CONFIRM,, +24:u01:SETCLIENTID_CONFIRM,, +24:u00:SETCLIENTID_CONFIRM,, +15:u08:CB_ILLEGAL,, +15:u07:CB_ILLEGAL,, +15:u06:CB_ILLEGAL,, +15:u05:CB_ILLEGAL,, +15:u04:CB_ILLEGAL,, +15:u03:CB_ILLEGAL,, +15:u02:CB_ILLEGAL,, +15:u01:CB_ILLEGAL,, +15:u00:CB_ILLEGAL,, +8:u08:407], +8:u07:407], +8:u06:407], +8:u05:407], +8:u04:407], +8:u03:407], +8:u02:407], +8:u01:407], +8:u00:407], +8:u08:408], +8:u07:408], +8:u06:408], +8:u05:408], +8:u04:408], +8:u03:408], +8:u02:408], +8:u01:408], +8:u00:408], +8:u08:409], +8:u07:409], +8:u06:409], +8:u05:409], +8:u04:409], +8:u03:409], +8:u02:409], +8:u01:409], +8:u00:409], +8:u08:410], +8:u07:410], +8:u06:410], +8:u05:410], +8:u04:410], +8:u03:410], +8:u02:410], +8:u01:410], +8:u00:410], +8:u08:411], +8:u07:411], +8:u06:411], +8:u05:411], +8:u04:411], +8:u03:411], +8:u02:411], +8:u01:411], +8:u00:411], +8:u08:412], +8:u07:412], +8:u06:412], +8:u05:412], +8:u04:412], +8:u03:412], +8:u02:412], +8:u01:412], +8:u00:412], +8:u08:413], +8:u07:413], +8:u06:413], +8:u05:413], +8:u04:413], +8:u03:413], +8:u02:413], +8:u01:413], +8:u00:413], +11:u08:16.1.1., +13:u08:ARGUMENTS, +11:u07:16.1.1., +11:u08:16.1.2., +13:u07:ARGUMENTS, +11:u06:16.1.1., +13:u06:ARGUMENTS, +11:u08:RESULTS, +11:u14:16.1.1., +11:u05:16.1.1., +11:u07:16.1.2., +11:u08:16.1.3., +13:u05:ARGUMENTS, +11:u07:RESULTS, +11:u13:16.1.1., +11:u04:16.1.1., +11:u06:16.1.2., +13:u04:ARGUMENTS, +11:u06:RESULTS, +15:u08:DESCRIPTION, +11:u12:16.1.1., +11:u14:16.1.2., +11:u03:16.1.1., +11:u05:16.1.2., +11:u07:16.1.3., +13:u03:ARGUMENTS, +11:u05:RESULTS, +15:u07:DESCRIPTION, +11:u11:16.1.1., +11:u13:16.1.2., +11:u02:16.1.1., +11:u04:16.1.2., +11:u06:16.1.3., +13:u02:ARGUMENTS, +11:u04:RESULTS, +15:u06:DESCRIPTION, +8:u08:void, +11:u10:16.1.1., +11:u12:16.1.2., +11:u14:16.1.3., +11:u01:16.1.1., +11:u03:16.1.2., +11:u05:16.1.3., +13:u01:ARGUMENTS, +11:u03:RESULTS, +15:u05:DESCRIPTION, +8:u07:void, +11:u11:16.1.2., +11:u13:16.1.3., +11:u00:16.1.1., +11:u02:16.1.2., +11:u04:16.1.3., +13:u00:ARGUMENTS, +11:u02:RESULTS, +15:u04:DESCRIPTION, +8:u06:void, +11:u10:16.1.2., +11:u12:16.1.3., +11:u01:16.1.2., +11:u03:16.1.3., +11:u01:RESULTS, +15:u03:DESCRIPTION, +8:u05:void, +11:u11:16.1.3., +11:u00:16.1.2., +11:u02:16.1.3., +11:u08:16.1.4., +11:u00:RESULTS, +15:u02:DESCRIPTION, +8:u04:void, +11:u10:16.1.3., +12:u14:overhead, +11:u01:16.1.3., +9:u08:None., +15:u01:DESCRIPTION, +8:u03:void, +10:u08:ERRORS, +12:u13:overhead, +11:u00:16.1.3., +11:u07:16.1.4., +15:u00:DESCRIPTION, +8:u02:void, +10:u07:ERRORS, +12:u12:overhead, +11:u06:16.1.4., +9:u07:None., +11:u08:16.2.1., +8:u01:void, +10:u06:ERRORS, +12:u11:overhead, +11:u14:16.1.4., +11:u05:16.1.4., +9:u06:None., +8:u00:void, +10:u05:ERRORS, +12:u10:overhead, +11:u13:16.1.4., +9:u14:none., +11:u04:16.1.4., +9:u05:None., +11:u07:16.2.1., +13:u08:OP_ACCESS, +10:u04:ERRORS, +14:u08:nfs_opnum4, +11:u12:16.1.4., +9:u13:none., +11:u03:16.1.4., +9:u04:None., +11:u06:16.2.1., +10:u03:ERRORS, +14:u07:nfs_opnum4, +11:u11:16.1.4., +9:u12:none., +11:u14:16.2.1., +11:u02:16.1.4., +9:u03:None., +11:u05:16.2.1., +13:u07:OP_ACCESS, +12:u08:OP_CLOSE, +10:u02:ERRORS, +14:u06:nfs_opnum4, +11:u10:16.1.4., +9:u11:none., +11:u13:16.2.1., +11:u01:16.1.4., +9:u02:None., +11:u04:16.2.1., +13:u06:OP_ACCESS, +10:u01:ERRORS, +14:u05:nfs_opnum4, +9:u10:none., +11:u12:16.2.1., +13:u14:op_access, +11:u00:16.1.4., +9:u01:None., +11:u03:16.2.1., +13:u05:OP_ACCESS, +12:u07:OP_CLOSE, +13:u08:OP_COMMIT, +10:u00:ERRORS, +14:u04:nfs_opnum4, +11:u11:16.2.1., +13:u13:op_access, +9:u00:None., +11:u02:16.2.1., +13:u04:OP_ACCESS, +12:u06:OP_CLOSE, +14:u03:nfs_opnum4, +11:u10:16.2.1., +13:u12:op_access, +12:u14:op_close, +7:u22:OP_, +8:u23:OP_A, +11:u01:16.2.1., +13:u03:OP_ACCESS, +12:u05:OP_CLOSE, +13:u07:OP_COMMIT, +13:u08:OP_CREATE, +14:u02:nfs_opnum4, +6:u08:5,, +13:u11:op_access, +12:u13:op_close, +11:u00:16.2.1., +13:u02:OP_ACCESS, +12:u04:OP_CLOSE, +13:u06:OP_COMMIT, +14:u01:nfs_opnum4, +6:u07:5,, +13:u10:op_access, +12:u12:op_close, +13:u14:op_commit, +8:u23:OP_C, +13:u01:OP_ACCESS, +12:u03:OP_CLOSE, +13:u05:OP_COMMIT, +13:u07:OP_CREATE, +14:u00:nfs_opnum4, +6:u06:5,, +6:u08:6,, +12:u11:op_close, +13:u13:op_commit, +13:u00:OP_ACCESS, +12:u02:OP_CLOSE, +13:u04:OP_COMMIT, +13:u06:OP_CREATE, +6:u05:5,, +6:u07:6,, +12:u10:op_close, +13:u12:op_commit, +13:u14:op_create, +12:u01:OP_CLOSE, +13:u03:OP_COMMIT, +13:u05:OP_CREATE, +6:u04:5,, +6:u06:6,, +13:u11:op_commit, +13:u13:op_create, +12:u00:OP_CLOSE, +13:u02:OP_COMMIT, +13:u04:OP_CREATE, +6:u03:5,, +6:u05:6,, +8:u08:414], +13:u10:op_commit, +13:u12:op_create, +13:u01:OP_COMMIT, +13:u03:OP_CREATE, +6:u02:5,, +6:u04:6,, +8:u07:414], +13:u11:op_create, +13:u00:OP_COMMIT, +13:u02:OP_CREATE, +6:u01:5,, +6:u03:6,, +8:u06:414], +13:u10:op_create, +13:u01:OP_CREATE, +17:u08:OP_DELEGPURGE, +6:u00:5,, +6:u02:6,, +8:u05:414], +13:u00:OP_CREATE, +6:u01:6,, +8:u04:414], +17:u07:OP_DELEGPURGE, +18:u08:OP_DELEGRETURN, +6:u00:6,, +8:u03:414], +6:u08:7,, +17:u06:OP_DELEGPURGE, +8:u02:414], +6:u07:7,, +17:u14:op_delegpurge, +17:u05:OP_DELEGPURGE, +18:u07:OP_DELEGRETURN, +14:u08:OP_GETATTR, +8:u01:414], +6:u06:7,, +17:u13:op_delegpurge, +17:u04:OP_DELEGPURGE, +18:u06:OP_DELEGRETURN, +8:u00:414], +6:u05:7,, +17:u12:op_delegpurge, +18:u14:op_delegreturn, +8:u23:OP_D, +17:u03:OP_DELEGPURGE, +18:u05:OP_DELEGRETURN, +14:u07:OP_GETATTR, +12:u08:OP_GETFH, +6:u04:7,, +6:u08:9,, +17:u11:op_delegpurge, +18:u13:op_delegreturn, +17:u02:OP_DELEGPURGE, +18:u04:OP_DELEGRETURN, +14:u06:OP_GETATTR, +6:u03:7,, +6:u07:9,, +17:u10:op_delegpurge, +18:u12:op_delegreturn, +14:u14:op_getattr, +17:u01:OP_DELEGPURGE, +18:u03:OP_DELEGRETURN, +14:u05:OP_GETATTR, +12:u07:OP_GETFH, +11:u08:OP_LINK, +6:u02:7,, +6:u06:9,, +18:u11:op_delegreturn, +14:u13:op_getattr, +17:u00:OP_DELEGPURGE, +18:u02:OP_DELEGRETURN, +14:u04:OP_GETATTR, +12:u06:OP_GETFH, +6:u01:7,, +6:u05:9,, +18:u10:op_delegreturn, +14:u12:op_getattr, +12:u14:op_getfh, +8:u23:OP_G, +18:u01:OP_DELEGRETURN, +14:u03:OP_GETATTR, +12:u05:OP_GETFH, +11:u07:OP_LINK, +11:u08:OP_LOCK, +6:u00:7,, +6:u04:9,, +7:u08:11,, +14:u11:op_getattr, +12:u13:op_getfh, +18:u00:OP_DELEGRETURN, +14:u02:OP_GETATTR, +12:u04:OP_GETFH, +11:u06:OP_LINK, +6:u03:9,, +7:u07:11,, +14:u10:op_getattr, +12:u12:op_getfh, +11:u14:op_link, +14:u01:OP_GETATTR, +12:u03:OP_GETFH, +11:u05:OP_LINK, +11:u07:OP_LOCK, +12:u08:OP_LOCKT, +6:u02:9,, +7:u06:11,, +7:u08:12,, +12:u11:op_getfh, +11:u13:op_link, +14:u00:OP_GETATTR, +12:u02:OP_GETFH, +11:u04:OP_LINK, +11:u06:OP_LOCK, +6:u01:9,, +7:u05:11,, +7:u07:12,, +12:u10:op_getfh, +11:u12:op_link, +11:u14:op_lock, +8:u23:OP_L, +12:u01:OP_GETFH, +11:u03:OP_LINK, +11:u05:OP_LOCK, +12:u07:OP_LOCKT, +12:u08:OP_LOCKU, +6:u00:9,, +7:u04:11,, +7:u06:12,, +7:u08:13,, +11:u11:op_link, +11:u13:op_lock, +12:u00:OP_GETFH, +11:u02:OP_LINK, +11:u04:OP_LOCK, +12:u06:OP_LOCKT, +7:u03:11,, +7:u05:12,, +7:u07:13,, +11:u10:op_link, +11:u12:op_lock, +12:u14:op_lockt, +11:u01:OP_LINK, +11:u03:OP_LOCK, +12:u05:OP_LOCKT, +12:u07:OP_LOCKU, +13:u08:OP_LOOKUP, +7:u02:11,, +7:u04:12,, +7:u06:13,, +7:u08:14,, +11:u11:op_lock, +12:u13:op_lockt, +11:u00:OP_LINK, +11:u02:OP_LOCK, +12:u04:OP_LOCKT, +12:u06:OP_LOCKU, +7:u01:11,, +7:u03:12,, +7:u05:13,, +7:u07:14,, +11:u10:op_lock, +12:u12:op_lockt, +12:u14:op_locku, +11:u01:OP_LOCK, +12:u03:OP_LOCKT, +12:u05:OP_LOCKU, +13:u07:OP_LOOKUP, +14:u08:OP_LOOKUPP, +7:u00:11,, +7:u02:12,, +7:u04:13,, +7:u06:14,, +7:u08:15,, +12:u11:op_lockt, +12:u13:op_locku, +11:u00:OP_LOCK, +12:u02:OP_LOCKT, +12:u04:OP_LOCKU, +13:u06:OP_LOOKUP, +7:u01:12,, +7:u03:13,, +7:u05:14,, +7:u07:15,, +12:u10:op_lockt, +12:u12:op_locku, +13:u14:op_lookup, +12:u01:OP_LOCKT, +12:u03:OP_LOCKU, +13:u05:OP_LOOKUP, +14:u07:OP_LOOKUPP, +14:u08:OP_NVERIFY, +7:u00:12,, +7:u02:13,, +7:u04:14,, +7:u06:15,, +7:u08:16,, +12:u11:op_locku, +13:u13:op_lookup, +12:u00:OP_LOCKT, +12:u02:OP_LOCKU, +13:u04:OP_LOOKUP, +14:u06:OP_LOOKUPP, +7:u01:13,, +7:u03:14,, +7:u05:15,, +7:u07:16,, +12:u10:op_locku, +13:u12:op_lookup, +14:u14:op_lookupp, +12:u01:OP_LOCKU, +13:u03:OP_LOOKUP, +14:u05:OP_LOOKUPP, +14:u07:OP_NVERIFY, +11:u08:OP_OPEN, +7:u00:13,, +7:u02:14,, +7:u04:15,, +7:u06:16,, +13:u11:op_lookup, +14:u13:op_lookupp, +12:u00:OP_LOCKU, +13:u02:OP_LOOKUP, +14:u04:OP_LOOKUPP, +14:u06:OP_NVERIFY, +7:u01:14,, +7:u03:15,, +7:u05:16,, +13:u10:op_lookup, +14:u12:op_lookupp, +14:u14:op_nverify, +13:u01:OP_LOOKUP, +14:u03:OP_LOOKUPP, +14:u05:OP_NVERIFY, +11:u07:OP_OPEN, +15:u08:OP_OPENATTR, +7:u00:14,, +7:u02:15,, +7:u04:16,, +7:u08:18,, +14:u11:op_lookupp, +14:u13:op_nverify, +13:u00:OP_LOOKUP, +14:u02:OP_LOOKUPP, +14:u04:OP_NVERIFY, +11:u06:OP_OPEN, +7:u01:15,, +7:u03:16,, +7:u07:18,, +14:u10:op_lookupp, +14:u12:op_nverify, +11:u14:op_open, +8:u23:OP_N, +14:u01:OP_LOOKUPP, +14:u03:OP_NVERIFY, +11:u05:OP_OPEN, +15:u07:OP_OPENATTR, +19:u08:OP_OPEN_CONFIRM, +7:u00:15,, +7:u02:16,, +7:u06:18,, +7:u08:19,, +14:u11:op_nverify, +11:u13:op_open, +14:u00:OP_LOOKUPP, +14:u02:OP_NVERIFY, +11:u04:OP_OPEN, +15:u06:OP_OPENATTR, +7:u01:16,, +7:u05:18,, +7:u07:19,, +14:u10:op_nverify, +11:u12:op_open, +15:u14:op_openattr, +8:u23:OP_O, +14:u01:OP_NVERIFY, +11:u03:OP_OPEN, +15:u05:OP_OPENATTR, +19:u07:OP_OPEN_CONFIRM, +21:u08:OP_OPEN_DOWNGRADE, +7:u00:16,, +7:u04:18,, +7:u06:19,, +7:u08:20,, +11:u11:op_open, +15:u13:op_openattr, +14:u00:OP_NVERIFY, +11:u02:OP_OPEN, +15:u04:OP_OPENATTR, +19:u06:OP_OPEN_CONFIRM, +7:u03:18,, +7:u05:19,, +7:u07:20,, +11:u10:op_open, +15:u12:op_openattr, +19:u14:op_open_confirm, +11:u01:OP_OPEN, +15:u03:OP_OPENATTR, +19:u05:OP_OPEN_CONFIRM, +21:u07:OP_OPEN_DOWNGRADE, +12:u08:OP_PUTFH, +7:u02:18,, +7:u04:19,, +7:u06:20,, +7:u08:21,, +15:u11:op_openattr, +19:u13:op_open_confirm, +11:u00:OP_OPEN, +15:u02:OP_OPENATTR, +19:u04:OP_OPEN_CONFIRM, +21:u06:OP_OPEN_DOWNGRADE, +7:u01:18,, +7:u03:19,, +7:u05:20,, +7:u07:21,, +15:u10:op_openattr, +19:u12:op_open_confirm, +21:u14:op_open_downgrade, +11:uI2:,/*--*/, +15:u01:OP_OPENATTR, +19:u03:OP_OPEN_CONFIRM, +21:u05:OP_OPEN_DOWNGRADE, +12:u07:OP_PUTFH, +15:u08:OP_PUTPUBFH, +7:u00:18,, +7:u02:19,, +7:u04:20,, +7:u06:21,, +7:u08:22,, +19:u11:op_open_confirm, +21:u13:op_open_downgrade, +11:uI1:,/*--*/, +15:u00:OP_OPENATTR, +19:u02:OP_OPEN_CONFIRM, +21:u04:OP_OPEN_DOWNGRADE, +12:u06:OP_PUTFH, +7:u01:19,, +7:u03:20,, +7:u05:21,, +7:u07:22,, +19:u10:op_open_confirm, +21:u12:op_open_downgrade, +12:u14:op_putfh, +11:uI0:,/*--*/, +19:u01:OP_OPEN_CONFIRM, +21:u03:OP_OPEN_DOWNGRADE, +12:u05:OP_PUTFH, +15:u07:OP_PUTPUBFH, +16:u08:OP_PUTROOTFH, +7:u00:19,, +7:u02:20,, +7:u04:21,, +7:u06:22,, +21:u11:op_open_downgrade, +12:u13:op_putfh, +19:u00:OP_OPEN_CONFIRM, +21:u02:OP_OPEN_DOWNGRADE, +12:u04:OP_PUTFH, +15:u06:OP_PUTPUBFH, +7:u01:20,, +7:u03:21,, +7:u05:22,, +21:u10:op_open_downgrade, +12:u12:op_putfh, +15:u14:op_putpubfh, +8:u23:OP_P, +21:u01:OP_OPEN_DOWNGRADE, +12:u03:OP_PUTFH, +15:u05:OP_PUTPUBFH, +16:u07:OP_PUTROOTFH, +11:u08:OP_READ, +7:u00:20,, +7:u02:21,, +7:u04:22,, +7:u08:24,, +12:u11:op_putfh, +15:u13:op_putpubfh, +21:u00:OP_OPEN_DOWNGRADE, +12:u02:OP_PUTFH, +15:u04:OP_PUTPUBFH, +16:u06:OP_PUTROOTFH, +7:u01:21,, +7:u03:22,, +7:u07:24,, +12:u10:op_putfh, +15:u12:op_putpubfh, +16:u14:op_putrootfh, +12:u01:OP_PUTFH, +15:u03:OP_PUTPUBFH, +16:u05:OP_PUTROOTFH, +11:u07:OP_READ, +14:u08:OP_READDIR, +7:u00:21,, +7:u02:22,, +7:u06:24,, +7:u08:25,, +15:u11:op_putpubfh, +16:u13:op_putrootfh, +12:u00:OP_PUTFH, +15:u02:OP_PUTPUBFH, +16:u04:OP_PUTROOTFH, +11:u06:OP_READ, +7:u01:22,, +7:u05:24,, +7:u07:25,, +15:u10:op_putpubfh, +16:u12:op_putrootfh, +11:u14:op_read, +15:u01:OP_PUTPUBFH, +16:u03:OP_PUTROOTFH, +11:u05:OP_READ, +14:u07:OP_READDIR, +15:u08:OP_READLINK, +7:u00:22,, +7:u04:24,, +7:u06:25,, +7:u08:26,, +16:u11:op_putrootfh, +11:u13:op_read, +15:u00:OP_PUTPUBFH, +16:u02:OP_PUTROOTFH, +11:u04:OP_READ, +14:u06:OP_READDIR, +7:u03:24,, +7:u05:25,, +7:u07:26,, +16:u10:op_putrootfh, +11:u12:op_read, +14:u14:op_readdir, +8:u23:OP_R, +16:u01:OP_PUTROOTFH, +11:u03:OP_READ, +14:u05:OP_READDIR, +15:u07:OP_READLINK, +13:u08:OP_REMOVE, +7:u02:24,, +7:u04:25,, +7:u06:26,, +11:u11:op_read, +14:u13:op_readdir, +16:u00:OP_PUTROOTFH, +11:u02:OP_READ, +14:u04:OP_READDIR, +15:u06:OP_READLINK, +7:u01:24,, +7:u03:25,, +7:u05:26,, +11:u10:op_read, +14:u12:op_readdir, +15:u14:op_readlink, +11:u01:OP_READ, +14:u03:OP_READDIR, +15:u05:OP_READLINK, +13:u07:OP_REMOVE, +13:u08:OP_RENAME, +7:u00:24,, +7:u02:25,, +7:u04:26,, +7:u08:28,, +14:u11:op_readdir, +15:u13:op_readlink, +11:u00:OP_READ, +14:u02:OP_READDIR, +15:u04:OP_READLINK, +13:u06:OP_REMOVE, +7:u01:25,, +7:u03:26,, +7:u07:28,, +14:u10:op_readdir, +15:u12:op_readlink, +13:u14:op_remove, +14:u01:OP_READDIR, +15:u03:OP_READLINK, +13:u05:OP_REMOVE, +13:u07:OP_RENAME, +12:u08:OP_RENEW, +7:u00:25,, +7:u02:26,, +7:u06:28,, +7:u08:29,, +15:u11:op_readlink, +13:u13:op_remove, +14:u00:OP_READDIR, +15:u02:OP_READLINK, +13:u04:OP_REMOVE, +13:u06:OP_RENAME, +7:u01:26,, +7:u05:28,, +7:u07:29,, +15:u10:op_readlink, +13:u12:op_remove, +13:u14:op_rename, +15:u01:OP_READLINK, +13:u03:OP_REMOVE, +13:u05:OP_RENAME, +12:u07:OP_RENEW, +16:u08:OP_RESTOREFH, +7:u00:26,, +7:u04:28,, +7:u06:29,, +7:u08:30,, +13:u11:op_remove, +13:u13:op_rename, +15:u00:OP_READLINK, +13:u02:OP_REMOVE, +13:u04:OP_RENAME, +12:u06:OP_RENEW, +7:u03:28,, +7:u05:29,, +7:u07:30,, +13:u10:op_remove, +13:u12:op_rename, +12:u14:op_renew, +13:u01:OP_REMOVE, +13:u03:OP_RENAME, +12:u05:OP_RENEW, +16:u07:OP_RESTOREFH, +13:u08:OP_SAVEFH, +7:u02:28,, +7:u04:29,, +7:u06:30,, +7:u08:31,, +13:u11:op_rename, +12:u13:op_renew, +13:u00:OP_REMOVE, +13:u02:OP_RENAME, +12:u04:OP_RENEW, +16:u06:OP_RESTOREFH, +7:u01:28,, +7:u03:29,, +7:u05:30,, +7:u07:31,, +13:u10:op_rename, +12:u12:op_renew, +16:u14:op_restorefh, +13:u01:OP_RENAME, +12:u03:OP_RENEW, +16:u05:OP_RESTOREFH, +13:u07:OP_SAVEFH, +14:u08:OP_SECINFO, +7:u00:28,, +7:u02:29,, +7:u04:30,, +7:u06:31,, +7:u08:32,, +12:u11:op_renew, +16:u13:op_restorefh, +13:u00:OP_RENAME, +12:u02:OP_RENEW, +16:u04:OP_RESTOREFH, +13:u06:OP_SAVEFH, +7:u01:29,, +7:u03:30,, +7:u05:31,, +7:u07:32,, +12:u10:op_renew, +16:u12:op_restorefh, +13:u14:op_savefh, +12:u01:OP_RENEW, +16:u03:OP_RESTOREFH, +13:u05:OP_SAVEFH, +14:u07:OP_SECINFO, +14:u08:OP_SETATTR, +7:u00:29,, +7:u02:30,, +7:u04:31,, +7:u06:32,, +7:u08:33,, +16:u11:op_restorefh, +13:u13:op_savefh, +12:u00:OP_RENEW, +16:u02:OP_RESTOREFH, +13:u04:OP_SAVEFH, +14:u06:OP_SECINFO, +7:u01:30,, +7:u03:31,, +7:u05:32,, +7:u07:33,, +16:u10:op_restorefh, +13:u12:op_savefh, +14:u14:op_secinfo, +8:u23:OP_S, +16:u01:OP_RESTOREFH, +13:u03:OP_SAVEFH, +14:u05:OP_SECINFO, +14:u07:OP_SETATTR, +18:u08:OP_SETCLIENTID, +7:u00:30,, +7:u02:31,, +7:u04:32,, +7:u06:33,, +7:u08:34,, +13:u11:op_savefh, +14:u13:op_secinfo, +16:u00:OP_RESTOREFH, +13:u02:OP_SAVEFH, +14:u04:OP_SECINFO, +14:u06:OP_SETATTR, +7:u01:31,, +7:u03:32,, +7:u05:33,, +7:u07:34,, +13:u10:op_savefh, +14:u12:op_secinfo, +14:u14:op_setattr, +13:u01:OP_SAVEFH, +14:u03:OP_SECINFO, +14:u05:OP_SETATTR, +18:u07:OP_SETCLIENTID, +26:u08:OP_SETCLIENTID_CONFIRM, +7:u00:31,, +7:u02:32,, +7:u04:33,, +7:u06:34,, +7:u08:35,, +14:u11:op_secinfo, +14:u13:op_setattr, +13:u00:OP_SAVEFH, +14:u02:OP_SECINFO, +14:u04:OP_SETATTR, +18:u06:OP_SETCLIENTID, +13:u08:OP_VERIFY, +7:u01:32,, +7:u03:33,, +7:u05:34,, +7:u07:35,, +14:u10:op_secinfo, +14:u12:op_setattr, +18:u14:op_setclientid, +14:u01:OP_SECINFO, +14:u03:OP_SETATTR, +18:u05:OP_SETCLIENTID, +26:u07:OP_SETCLIENTID_CONFIRM, +7:u00:32,, +7:u02:33,, +7:u04:34,, +7:u06:35,, +14:u11:op_setattr, +18:u13:op_setclientid, +14:u00:OP_SECINFO, +14:u02:OP_SETATTR, +18:u04:OP_SETCLIENTID, +26:u06:OP_SETCLIENTID_CONFIRM, +13:u07:OP_VERIFY, +12:u08:OP_WRITE, +7:u01:33,, +7:u03:34,, +7:u05:35,, +7:u08:37,, +14:u10:op_setattr, +18:u12:op_setclientid, +26:u14:op_setclientid_confirm, +14:u01:OP_SETATTR, +18:u03:OP_SETCLIENTID, +26:u05:OP_SETCLIENTID_CONFIRM, +13:u06:OP_VERIFY, +7:u00:33,, +7:u02:34,, +7:u04:35,, +7:u07:37,, +18:u11:op_setclientid, +26:u13:op_setclientid_confirm, +13:u14:op_verify, +14:u00:OP_SETATTR, +18:u02:OP_SETCLIENTID, +26:u04:OP_SETCLIENTID_CONFIRM, +13:u05:OP_VERIFY, +12:u07:OP_WRITE, +24:u08:OP_RELEASE_LOCKOWNER, +7:u01:34,, +7:u03:35,, +7:u06:37,, +7:u08:38,, +18:u10:op_setclientid, +26:u12:op_setclientid_confirm, +13:u13:op_verify, +18:u01:OP_SETCLIENTID, +26:u03:OP_SETCLIENTID_CONFIRM, +13:u04:OP_VERIFY, +12:u06:OP_WRITE, +7:u00:34,, +7:u02:35,, +7:u05:37,, +7:u07:38,, +26:u11:op_setclientid_confirm, +13:u12:op_verify, +12:u14:op_write, +8:u23:OP_V, +18:u00:OP_SETCLIENTID, +26:u02:OP_SETCLIENTID_CONFIRM, +13:u03:OP_VERIFY, +12:u05:OP_WRITE, +24:u07:OP_RELEASE_LOCKOWNER, +7:u01:35,, +7:u04:37,, +7:u06:38,, +7:u08:39,, +26:u10:op_setclientid_confirm, +13:u11:op_verify, +12:u13:op_write, +26:u01:OP_SETCLIENTID_CONFIRM, +13:u02:OP_VERIFY, +12:u04:OP_WRITE, +24:u06:OP_RELEASE_LOCKOWNER, +22:u08:OP_BACKCHANNEL_CTL, +7:u00:35,, +7:u03:37,, +7:u05:38,, +7:u07:39,, +13:u10:op_verify, +12:u12:op_write, +24:u14:op_release_lockowner, +8:u23:OP_W, +26:u00:OP_SETCLIENTID_CONFIRM, +13:u01:OP_VERIFY, +12:u03:OP_WRITE, +24:u05:OP_RELEASE_LOCKOWNER, +7:u02:37,, +7:u04:38,, +7:u06:39,, +12:u11:op_write, +24:u13:op_release_lockowner, +13:u00:OP_VERIFY, +12:u02:OP_WRITE, +24:u04:OP_RELEASE_LOCKOWNER, +22:u07:OP_BACKCHANNEL_CTL, +27:u08:OP_BIND_CONN_TO_SESSION, +7:u01:37,, +7:u03:38,, +7:u05:39,, +7:u08:40,, +12:u10:op_write, +24:u12:op_release_lockowner, +12:u01:OP_WRITE, +24:u03:OP_RELEASE_LOCKOWNER, +22:u06:OP_BACKCHANNEL_CTL, +18:u08:OP_EXCHANGE_ID, +7:u00:37,, +7:u02:38,, +7:u04:39,, +7:u07:40,, +24:u11:op_release_lockowner, +22:u14:op_backchannel_ctl, +9:uI2:/*.*/, +12:u00:OP_WRITE, +24:u02:OP_RELEASE_LOCKOWNER, +22:u05:OP_BACKCHANNEL_CTL, +27:u07:OP_BIND_CONN_TO_SESSION, +7:u01:38,, +7:u03:39,, +7:u06:40,, +24:u10:op_release_lockowner, +22:u13:op_backchannel_ctl, +9:uI1:/*.*/, +24:u01:OP_RELEASE_LOCKOWNER, +22:u04:OP_BACKCHANNEL_CTL, +27:u06:OP_BIND_CONN_TO_SESSION, +18:u07:OP_EXCHANGE_ID, +21:u08:OP_CREATE_SESSION, +7:u00:38,, +7:u02:39,, +7:u05:40,, +7:u08:42,, +22:u12:op_backchannel_ctl, +27:u14:op_bind_conn_to_session, +8:u23:OP_B, +9:uI0:/*.*/, +24:u00:OP_RELEASE_LOCKOWNER, +22:u03:OP_BACKCHANNEL_CTL, +27:u05:OP_BIND_CONN_TO_SESSION, +18:u06:OP_EXCHANGE_ID, +7:u01:39,, +7:u04:40,, +7:u07:42,, +22:u11:op_backchannel_ctl, +27:u13:op_bind_conn_to_session, +18:u14:op_exchange_id, +22:u02:OP_BACKCHANNEL_CTL, +27:u04:OP_BIND_CONN_TO_SESSION, +18:u05:OP_EXCHANGE_ID, +21:u07:OP_CREATE_SESSION, +22:u08:OP_DESTROY_SESSION, +7:u00:39,, +7:u03:40,, +7:u06:42,, +7:u08:43,, +22:u10:op_backchannel_ctl, +27:u12:op_bind_conn_to_session, +18:u13:op_exchange_id, +22:u01:OP_BACKCHANNEL_CTL, +27:u03:OP_BIND_CONN_TO_SESSION, +18:u04:OP_EXCHANGE_ID, +21:u06:OP_CREATE_SESSION, +7:u02:40,, +7:u05:42,, +7:u07:43,, +27:u11:op_bind_conn_to_session, +18:u12:op_exchange_id, +21:u14:op_create_session, +8:u23:OP_E, +22:u00:OP_BACKCHANNEL_CTL, +27:u02:OP_BIND_CONN_TO_SESSION, +18:u03:OP_EXCHANGE_ID, +21:u05:OP_CREATE_SESSION, +22:u07:OP_DESTROY_SESSION, +19:u08:OP_FREE_STATEID, +7:u01:40,, +7:u04:42,, +7:u06:43,, +7:u08:44,, +27:u10:op_bind_conn_to_session, +18:u11:op_exchange_id, +21:u13:op_create_session, +27:u01:OP_BIND_CONN_TO_SESSION, +18:u02:OP_EXCHANGE_ID, +21:u04:OP_CREATE_SESSION, +22:u06:OP_DESTROY_SESSION, +7:u00:40,, +7:u03:42,, +7:u05:43,, +7:u07:44,, +18:u10:op_exchange_id, +21:u12:op_create_session, +22:u14:op_destroy_session, +27:u00:OP_BIND_CONN_TO_SESSION, +18:u01:OP_EXCHANGE_ID, +21:u03:OP_CREATE_SESSION, +22:u05:OP_DESTROY_SESSION, +19:u07:OP_FREE_STATEID, +25:u08:OP_GET_DIR_DELEGATION, +7:u02:42,, +7:u04:43,, +7:u06:44,, +7:u08:45,, +21:u11:op_create_session, +22:u13:op_destroy_session, +18:u00:OP_EXCHANGE_ID, +21:u02:OP_CREATE_SESSION, +22:u04:OP_DESTROY_SESSION, +19:u06:OP_FREE_STATEID, +20:u08:OP_GETDEVICEINFO, +7:u01:42,, +7:u03:43,, +7:u05:44,, +7:u07:45,, +21:u10:op_create_session, +22:u12:op_destroy_session, +19:u14:op_free_stateid, +21:u01:OP_CREATE_SESSION, +22:u03:OP_DESTROY_SESSION, +19:u05:OP_FREE_STATEID, +25:u07:OP_GET_DIR_DELEGATION, +7:u00:42,, +7:u02:43,, +7:u04:44,, +7:u06:45,, +22:u11:op_destroy_session, +19:u13:op_free_stateid, +21:u00:OP_CREATE_SESSION, +22:u02:OP_DESTROY_SESSION, +19:u04:OP_FREE_STATEID, +25:u06:OP_GET_DIR_DELEGATION, +20:u07:OP_GETDEVICEINFO, +20:u08:OP_GETDEVICELIST, +7:u01:43,, +7:u03:44,, +7:u05:45,, +7:u08:47,, +22:u10:op_destroy_session, +19:u12:op_free_stateid, +25:u14:op_get_dir_delegation, +8:u23:OP_F, +22:u01:OP_DESTROY_SESSION, +19:u03:OP_FREE_STATEID, +25:u05:OP_GET_DIR_DELEGATION, +20:u06:OP_GETDEVICEINFO, +7:u00:43,, +7:u02:44,, +7:u04:45,, +7:u07:47,, +19:u11:op_free_stateid, +25:u13:op_get_dir_delegation, +20:u14:op_getdeviceinfo, +22:u00:OP_DESTROY_SESSION, +19:u02:OP_FREE_STATEID, +25:u04:OP_GET_DIR_DELEGATION, +20:u05:OP_GETDEVICEINFO, +20:u07:OP_GETDEVICELIST, +19:u08:OP_LAYOUTCOMMIT, +7:u01:44,, +7:u03:45,, +7:u06:47,, +7:u08:48,, +19:u10:op_free_stateid, +25:u12:op_get_dir_delegation, +20:u13:op_getdeviceinfo, +19:u01:OP_FREE_STATEID, +25:u03:OP_GET_DIR_DELEGATION, +20:u04:OP_GETDEVICEINFO, +20:u06:OP_GETDEVICELIST, +7:u00:44,, +7:u02:45,, +7:u05:47,, +7:u07:48,, +25:u11:op_get_dir_delegation, +20:u12:op_getdeviceinfo, +20:u14:op_getdevicelist, +19:u00:OP_FREE_STATEID, +25:u02:OP_GET_DIR_DELEGATION, +20:u03:OP_GETDEVICEINFO, +20:u05:OP_GETDEVICELIST, +19:u07:OP_LAYOUTCOMMIT, +16:u08:OP_LAYOUTGET, +7:u01:45,, +7:u04:47,, +7:u06:48,, +7:u08:49,, +25:u10:op_get_dir_delegation, +20:u11:op_getdeviceinfo, +20:u13:op_getdevicelist, +25:u01:OP_GET_DIR_DELEGATION, +20:u02:OP_GETDEVICEINFO, +20:u04:OP_GETDEVICELIST, +19:u06:OP_LAYOUTCOMMIT, +7:u00:45,, +7:u03:47,, +7:u05:48,, +7:u07:49,, +20:u10:op_getdeviceinfo, +20:u12:op_getdevicelist, +19:u14:op_layoutcommit, +25:u00:OP_GET_DIR_DELEGATION, +20:u01:OP_GETDEVICEINFO, +20:u03:OP_GETDEVICELIST, +19:u05:OP_LAYOUTCOMMIT, +16:u07:OP_LAYOUTGET, +19:u08:OP_LAYOUTRETURN, +7:u02:47,, +7:u04:48,, +7:u06:49,, +7:u08:50,, +20:u11:op_getdevicelist, +19:u13:op_layoutcommit, +20:u00:OP_GETDEVICEINFO, +20:u02:OP_GETDEVICELIST, +19:u04:OP_LAYOUTCOMMIT, +16:u06:OP_LAYOUTGET, +7:u01:47,, +7:u03:48,, +7:u05:49,, +7:u07:50,, +20:u10:op_getdevicelist, +19:u12:op_layoutcommit, +16:u14:op_layoutget, +20:u01:OP_GETDEVICELIST, +19:u03:OP_LAYOUTCOMMIT, +16:u05:OP_LAYOUTGET, +19:u07:OP_LAYOUTRETURN, +7:u00:47,, +7:u02:48,, +7:u04:49,, +7:u06:50,, +7:u08:51,, +19:u11:op_layoutcommit, +16:u13:op_layoutget, +20:u00:OP_GETDEVICELIST, +19:u02:OP_LAYOUTCOMMIT, +16:u04:OP_LAYOUTGET, +19:u06:OP_LAYOUTRETURN, +7:u01:48,, +7:u03:49,, +7:u05:50,, +7:u07:51,, +19:u10:op_layoutcommit, +16:u12:op_layoutget, +19:u14:op_layoutreturn, +19:u01:OP_LAYOUTCOMMIT, +16:u03:OP_LAYOUTGET, +19:u05:OP_LAYOUTRETURN, +7:u00:48,, +7:u02:49,, +7:u04:50,, +7:u06:51,, +16:u11:op_layoutget, +19:u13:op_layoutreturn, +19:u00:OP_LAYOUTCOMMIT, +16:u02:OP_LAYOUTGET, +19:u04:OP_LAYOUTRETURN, +7:u01:49,, +7:u03:50,, +7:u05:51,, +8:u08:415], +16:u10:op_layoutget, +19:u12:op_layoutreturn, +16:u01:OP_LAYOUTGET, +19:u03:OP_LAYOUTRETURN, +7:u00:49,, +7:u02:50,, +7:u04:51,, +8:u07:415], +19:u11:op_layoutreturn, +16:u00:OP_LAYOUTGET, +19:u02:OP_LAYOUTRETURN, +7:u01:50,, +7:u03:51,, +8:u06:415], +19:u10:op_layoutreturn, +19:u01:OP_LAYOUTRETURN, +22:u08:OP_SECINFO_NO_NAME, +7:u00:50,, +7:u02:51,, +8:u05:415], +19:u00:OP_LAYOUTRETURN, +7:u01:51,, +8:u04:415], +22:u07:OP_SECINFO_NO_NAME, +15:u08:OP_SEQUENCE, +7:u00:51,, +8:u03:415], +7:u08:52,, +22:u06:OP_SECINFO_NO_NAME, +8:u02:415], +7:u07:52,, +22:u14:op_secinfo_no_name, +22:u05:OP_SECINFO_NO_NAME, +15:u07:OP_SEQUENCE, +14:u08:OP_SET_SSV, +8:u01:415], +7:u06:52,, +7:u08:53,, +22:u13:op_secinfo_no_name, +22:u04:OP_SECINFO_NO_NAME, +15:u06:OP_SEQUENCE, +8:u00:415], +7:u05:52,, +7:u07:53,, +22:u12:op_secinfo_no_name, +15:u14:op_sequence, +22:u03:OP_SECINFO_NO_NAME, +15:u05:OP_SEQUENCE, +14:u07:OP_SET_SSV, +19:u08:OP_TEST_STATEID, +7:u04:52,, +7:u06:53,, +7:u08:54,, +22:u11:op_secinfo_no_name, +15:u13:op_sequence, +22:u02:OP_SECINFO_NO_NAME, +15:u04:OP_SEQUENCE, +14:u06:OP_SET_SSV, +7:u03:52,, +7:u05:53,, +7:u07:54,, +22:u10:op_secinfo_no_name, +15:u12:op_sequence, +14:u14:op_set_ssv, +22:u01:OP_SECINFO_NO_NAME, +15:u03:OP_SEQUENCE, +14:u05:OP_SET_SSV, +19:u07:OP_TEST_STATEID, +22:u08:OP_WANT_DELEGATION, +7:u02:52,, +7:u04:53,, +7:u06:54,, +7:u08:55,, +15:u11:op_sequence, +14:u13:op_set_ssv, +22:u00:OP_SECINFO_NO_NAME, +15:u02:OP_SEQUENCE, +14:u04:OP_SET_SSV, +19:u06:OP_TEST_STATEID, +7:u01:52,, +7:u03:53,, +7:u05:54,, +7:u07:55,, +15:u10:op_sequence, +14:u12:op_set_ssv, +19:u14:op_test_stateid, +15:u01:OP_SEQUENCE, +14:u03:OP_SET_SSV, +19:u05:OP_TEST_STATEID, +22:u07:OP_WANT_DELEGATION, +23:u08:OP_DESTROY_CLIENTID, +7:u00:52,, +7:u02:53,, +7:u04:54,, +7:u06:55,, +7:u08:56,, +14:u11:op_set_ssv, +19:u13:op_test_stateid, +15:u00:OP_SEQUENCE, +14:u02:OP_SET_SSV, +19:u04:OP_TEST_STATEID, +22:u06:OP_WANT_DELEGATION, +7:u01:53,, +7:u03:54,, +7:u05:55,, +7:u07:56,, +14:u10:op_set_ssv, +19:u12:op_test_stateid, +22:u14:op_want_delegation, +8:u23:OP_T, +14:u01:OP_SET_SSV, +19:u03:OP_TEST_STATEID, +22:u05:OP_WANT_DELEGATION, +23:u07:OP_DESTROY_CLIENTID, +23:u08:OP_RECLAIM_COMPLETE, +7:u00:53,, +7:u02:54,, +7:u04:55,, +7:u06:56,, +7:u08:57,, +19:u11:op_test_stateid, +22:u13:op_want_delegation, +14:u00:OP_SET_SSV, +19:u02:OP_TEST_STATEID, +22:u04:OP_WANT_DELEGATION, +23:u06:OP_DESTROY_CLIENTID, +7:u01:54,, +7:u03:55,, +7:u05:56,, +7:u07:57,, +19:u10:op_test_stateid, +22:u12:op_want_delegation, +23:u14:op_destroy_clientid, +19:u01:OP_TEST_STATEID, +22:u03:OP_WANT_DELEGATION, +23:u05:OP_DESTROY_CLIENTID, +23:u07:OP_RECLAIM_COMPLETE, +14:u08:OP_ILLEGAL, +7:u00:54,, +7:u02:55,, +7:u04:56,, +7:u06:57,, +7:u08:58,, +22:u11:op_want_delegation, +23:u13:op_destroy_clientid, +19:u00:OP_TEST_STATEID, +22:u02:OP_WANT_DELEGATION, +23:u04:OP_DESTROY_CLIENTID, +23:u06:OP_RECLAIM_COMPLETE, +7:u01:55,, +7:u03:56,, +7:u05:57,, +7:u07:58,, +22:u10:op_want_delegation, +23:u12:op_destroy_clientid, +23:u14:op_reclaim_complete, +22:u01:OP_WANT_DELEGATION, +23:u03:OP_DESTROY_CLIENTID, +23:u05:OP_RECLAIM_COMPLETE, +14:u07:OP_ILLEGAL, +7:u00:55,, +7:u02:56,, +7:u04:57,, +7:u06:58,, +23:u11:op_destroy_clientid, +23:u13:op_reclaim_complete, +22:u00:OP_WANT_DELEGATION, +23:u02:OP_DESTROY_CLIENTID, +23:u04:OP_RECLAIM_COMPLETE, +14:u06:OP_ILLEGAL, +7:u01:56,, +7:u03:57,, +7:u05:58,, +23:u10:op_destroy_clientid, +23:u12:op_reclaim_complete, +14:u14:op_illegal, +23:u01:OP_DESTROY_CLIENTID, +23:u03:OP_RECLAIM_COMPLETE, +14:u05:OP_ILLEGAL, +7:u00:56,, +7:u02:57,, +7:u04:58,, +14:u08:nfs_argop4, +23:u11:op_reclaim_complete, +14:u13:op_illegal, +23:u00:OP_DESTROY_CLIENTID, +23:u02:OP_RECLAIM_COMPLETE, +14:u04:OP_ILLEGAL, +15:u08:ACCESS4args, +7:u01:57,, +7:u03:58,, +14:u07:nfs_argop4, +14:u08:OP_ACCESS:, +23:u10:op_reclaim_complete, +14:u12:op_illegal, +8:u23:OP_I, +23:u01:OP_RECLAIM_COMPLETE, +14:u03:OP_ILLEGAL, +7:u00:57,, +7:u02:58,, +14:u06:nfs_argop4, +14:u07:OP_ACCESS:, +13:u08:opaccess;, +14:u11:op_illegal, +23:u00:OP_RECLAIM_COMPLETE, +14:u02:OP_ILLEGAL, +15:u07:ACCESS4args, +14:u08:CLOSE4args, +7:u01:58,, +14:u05:nfs_argop4, +14:u06:OP_ACCESS:, +13:u07:opaccess;, +13:u08:OP_CLOSE:, +14:u10:op_illegal, +14:u01:OP_ILLEGAL, +15:u06:ACCESS4args, +7:u00:58,, +14:u04:nfs_argop4, +14:u05:OP_ACCESS:, +13:u06:opaccess;, +13:u07:OP_CLOSE:, +12:u08:opclose;, +15:u14:access4args, +14:u00:OP_ILLEGAL, +15:u05:ACCESS4args, +14:u07:CLOSE4args, +15:u08:COMMIT4args, +14:u03:nfs_argop4, +14:u04:OP_ACCESS:, +13:u05:opaccess;, +13:u06:OP_CLOSE:, +12:u07:opclose;, +14:u08:OP_COMMIT:, +15:u13:access4args, +15:u04:ACCESS4args, +14:u06:CLOSE4args, +14:u02:nfs_argop4, +14:u03:OP_ACCESS:, +13:u04:opaccess;, +13:u05:OP_CLOSE:, +12:u06:opclose;, +14:u07:OP_COMMIT:, +13:u08:opcommit;, +15:u12:access4args, +14:u14:close4args, +15:u03:ACCESS4args, +14:u05:CLOSE4args, +15:u07:COMMIT4args, +15:u08:CREATE4args, +14:u01:nfs_argop4, +14:u02:OP_ACCESS:, +13:u03:opaccess;, +13:u04:OP_CLOSE:, +12:u05:opclose;, +14:u06:OP_COMMIT:, +13:u07:opcommit;, +14:u08:OP_CREATE:, +15:u11:access4args, +14:u13:close4args, +15:u02:ACCESS4args, +14:u04:CLOSE4args, +15:u06:COMMIT4args, +14:u00:nfs_argop4, +14:u01:OP_ACCESS:, +13:u02:opaccess;, +13:u03:OP_CLOSE:, +12:u04:opclose;, +14:u05:OP_COMMIT:, +13:u06:opcommit;, +14:u07:OP_CREATE:, +13:u08:opcreate;, +15:u10:access4args, +14:u12:close4args, +15:u14:commit4args, +7:u22:CLO, +8:u23:CLOS, +15:u01:ACCESS4args, +14:u03:CLOSE4args, +15:u05:COMMIT4args, +15:u07:CREATE4args, +19:u08:DELEGPURGE4args, +14:u00:OP_ACCESS:, +13:u01:opaccess;, +13:u02:OP_CLOSE:, +12:u03:opclose;, +14:u04:OP_COMMIT:, +13:u05:opcommit;, +14:u06:OP_CREATE:, +13:u07:opcreate;, +18:u08:OP_DELEGPURGE:, +14:u11:close4args, +15:u13:commit4args, +15:u00:ACCESS4args, +14:u02:CLOSE4args, +15:u04:COMMIT4args, +15:u06:CREATE4args, +13:u00:opaccess;, +13:u01:OP_CLOSE:, +12:u02:opclose;, +14:u03:OP_COMMIT:, +13:u04:opcommit;, +14:u05:OP_CREATE:, +13:u06:opcreate;, +18:u07:OP_DELEGPURGE:, +17:u08:opdelegpurge;, +14:u10:close4args, +15:u12:commit4args, +15:u14:create4args, +14:u01:CLOSE4args, +15:u03:COMMIT4args, +15:u05:CREATE4args, +19:u07:DELEGPURGE4args, +20:u08:DELEGRETURN4args, +13:u00:OP_CLOSE:, +12:u01:opclose;, +14:u02:OP_COMMIT:, +13:u03:opcommit;, +14:u04:OP_CREATE:, +13:u05:opcreate;, +18:u06:OP_DELEGPURGE:, +17:u07:opdelegpurge;, +19:u08:OP_DELEGRETURN:, +15:u11:commit4args, +15:u13:create4args, +14:u00:CLOSE4args, +15:u02:COMMIT4args, +15:u04:CREATE4args, +19:u06:DELEGPURGE4args, +12:u00:opclose;, +14:u01:OP_COMMIT:, +13:u02:opcommit;, +14:u03:OP_CREATE:, +13:u04:opcreate;, +18:u05:OP_DELEGPURGE:, +17:u06:opdelegpurge;, +19:u07:OP_DELEGRETURN:, +18:u08:opdelegreturn;, +15:u10:commit4args, +15:u12:create4args, +19:u14:delegpurge4args, +15:u01:COMMIT4args, +15:u03:CREATE4args, +19:u05:DELEGPURGE4args, +20:u07:DELEGRETURN4args, +16:u08:GETATTR4args, +14:u00:OP_COMMIT:, +13:u01:opcommit;, +14:u02:OP_CREATE:, +13:u03:opcreate;, +18:u04:OP_DELEGPURGE:, +17:u05:opdelegpurge;, +19:u06:OP_DELEGRETURN:, +18:u07:opdelegreturn;, +15:u08:OP_GETATTR:, +15:u11:create4args, +19:u13:delegpurge4args, +15:u00:COMMIT4args, +15:u02:CREATE4args, +19:u04:DELEGPURGE4args, +20:u06:DELEGRETURN4args, +13:u00:opcommit;, +14:u01:OP_CREATE:, +13:u02:opcreate;, +18:u03:OP_DELEGPURGE:, +17:u04:opdelegpurge;, +19:u05:OP_DELEGRETURN:, +18:u06:opdelegreturn;, +15:u07:OP_GETATTR:, +14:u08:opgetattr;, +15:u10:create4args, +19:u12:delegpurge4args, +20:u14:delegreturn4args, +7:u22:DEL, +8:u23:DELE, +15:u01:CREATE4args, +19:u03:DELEGPURGE4args, +20:u05:DELEGRETURN4args, +16:u07:GETATTR4args, +14:u00:OP_CREATE:, +13:u01:opcreate;, +18:u02:OP_DELEGPURGE:, +17:u03:opdelegpurge;, +19:u04:OP_DELEGRETURN:, +18:u05:opdelegreturn;, +15:u06:OP_GETATTR:, +14:u07:opgetattr;, +13:u08:OP_GETFH:, +19:u11:delegpurge4args, +20:u13:delegreturn4args, +15:u00:CREATE4args, +19:u02:DELEGPURGE4args, +20:u04:DELEGRETURN4args, +16:u06:GETATTR4args, +13:u00:opcreate;, +18:u01:OP_DELEGPURGE:, +17:u02:opdelegpurge;, +19:u03:OP_DELEGRETURN:, +18:u04:opdelegreturn;, +15:u05:OP_GETATTR:, +14:u06:opgetattr;, +13:u07:OP_GETFH:, +19:u10:delegpurge4args, +20:u12:delegreturn4args, +16:u14:getattr4args, +19:u01:DELEGPURGE4args, +20:u03:DELEGRETURN4args, +16:u05:GETATTR4args, +13:u08:LINK4args, +18:u00:OP_DELEGPURGE:, +17:u01:opdelegpurge;, +19:u02:OP_DELEGRETURN:, +18:u03:opdelegreturn;, +15:u04:OP_GETATTR:, +14:u05:opgetattr;, +13:u06:OP_GETFH:, +12:u08:OP_LINK:, +20:u11:delegreturn4args, +16:u13:getattr4args, +19:u00:DELEGPURGE4args, +20:u02:DELEGRETURN4args, +16:u04:GETATTR4args, +17:u00:opdelegpurge;, +19:u01:OP_DELEGRETURN:, +18:u02:opdelegreturn;, +15:u03:OP_GETATTR:, +14:u04:opgetattr;, +13:u05:OP_GETFH:, +12:u07:OP_LINK:, +11:u08:oplink;, +20:u10:delegreturn4args, +16:u12:getattr4args, +20:u01:DELEGRETURN4args, +16:u03:GETATTR4args, +13:u07:LINK4args, +13:u08:LOCK4args, +19:u00:OP_DELEGRETURN:, +18:u01:opdelegreturn;, +15:u02:OP_GETATTR:, +14:u03:opgetattr;, +13:u04:OP_GETFH:, +12:u06:OP_LINK:, +11:u07:oplink;, +12:u08:OP_LOCK:, +16:u11:getattr4args, +20:u00:DELEGRETURN4args, +16:u02:GETATTR4args, +13:u06:LINK4args, +18:u00:opdelegreturn;, +15:u01:OP_GETATTR:, +14:u02:opgetattr;, +13:u03:OP_GETFH:, +12:u05:OP_LINK:, +11:u06:oplink;, +12:u07:OP_LOCK:, +11:u08:oplock;, +16:u10:getattr4args, +13:u14:link4args, +16:u01:GETATTR4args, +13:u05:LINK4args, +13:u07:LOCK4args, +14:u08:LOCKT4args, +15:u00:OP_GETATTR:, +14:u01:opgetattr;, +13:u02:OP_GETFH:, +12:u04:OP_LINK:, +11:u05:oplink;, +12:u06:OP_LOCK:, +11:u07:oplock;, +13:u08:OP_LOCKT:, +13:u13:link4args, +16:u00:GETATTR4args, +13:u04:LINK4args, +13:u06:LOCK4args, +14:u00:opgetattr;, +13:u01:OP_GETFH:, +12:u03:OP_LINK:, +11:u04:oplink;, +12:u05:OP_LOCK:, +11:u06:oplock;, +13:u07:OP_LOCKT:, +12:u08:oplockt;, +13:u12:link4args, +13:u14:lock4args, +13:u03:LINK4args, +13:u05:LOCK4args, +14:u07:LOCKT4args, +14:u08:LOCKU4args, +13:u00:OP_GETFH:, +12:u02:OP_LINK:, +11:u03:oplink;, +12:u04:OP_LOCK:, +11:u05:oplock;, +13:u06:OP_LOCKT:, +12:u07:oplockt;, +13:u08:OP_LOCKU:, +13:u11:link4args, +13:u13:lock4args, +13:u02:LINK4args, +13:u04:LOCK4args, +14:u06:LOCKT4args, +12:u01:OP_LINK:, +11:u02:oplink;, +12:u03:OP_LOCK:, +11:u04:oplock;, +13:u05:OP_LOCKT:, +12:u06:oplockt;, +13:u07:OP_LOCKU:, +12:u08:oplocku;, +13:u10:link4args, +13:u12:lock4args, +14:u14:lockt4args, +13:u01:LINK4args, +13:u03:LOCK4args, +14:u05:LOCKT4args, +14:u07:LOCKU4args, +15:u08:LOOKUP4args, +12:u00:OP_LINK:, +11:u01:oplink;, +12:u02:OP_LOCK:, +11:u03:oplock;, +13:u04:OP_LOCKT:, +12:u05:oplockt;, +13:u06:OP_LOCKU:, +12:u07:oplocku;, +14:u08:OP_LOOKUP:, +13:u11:lock4args, +14:u13:lockt4args, +13:u00:LINK4args, +13:u02:LOCK4args, +14:u04:LOCKT4args, +14:u06:LOCKU4args, +11:u00:oplink;, +12:u01:OP_LOCK:, +11:u02:oplock;, +13:u03:OP_LOCKT:, +12:u04:oplockt;, +13:u05:OP_LOCKU:, +12:u06:oplocku;, +14:u07:OP_LOOKUP:, +13:u08:oplookup;, +13:u10:lock4args, +14:u12:lockt4args, +14:u14:locku4args, +13:u01:LOCK4args, +14:u03:LOCKT4args, +14:u05:LOCKU4args, +15:u07:LOOKUP4args, +12:u00:OP_LOCK:, +11:u01:oplock;, +13:u02:OP_LOCKT:, +12:u03:oplockt;, +13:u04:OP_LOCKU:, +12:u05:oplocku;, +14:u06:OP_LOOKUP:, +13:u07:oplookup;, +15:u08:OP_LOOKUPP:, +14:u11:lockt4args, +14:u13:locku4args, +13:u00:LOCK4args, +14:u02:LOCKT4args, +14:u04:LOCKU4args, +15:u06:LOOKUP4args, +11:u00:oplock;, +13:u01:OP_LOCKT:, +12:u02:oplockt;, +13:u03:OP_LOCKU:, +12:u04:oplocku;, +14:u05:OP_LOOKUP:, +13:u06:oplookup;, +15:u07:OP_LOOKUPP:, +14:u10:lockt4args, +14:u12:locku4args, +15:u14:lookup4args, +14:u01:LOCKT4args, +14:u03:LOCKU4args, +15:u05:LOOKUP4args, +16:u08:NVERIFY4args, +13:u00:OP_LOCKT:, +12:u01:oplockt;, +13:u02:OP_LOCKU:, +12:u03:oplocku;, +14:u04:OP_LOOKUP:, +13:u05:oplookup;, +15:u06:OP_LOOKUPP:, +15:u08:OP_NVERIFY:, +14:u11:locku4args, +15:u13:lookup4args, +14:u00:LOCKT4args, +14:u02:LOCKU4args, +15:u04:LOOKUP4args, +12:u00:oplockt;, +13:u01:OP_LOCKU:, +12:u02:oplocku;, +14:u03:OP_LOOKUP:, +13:u04:oplookup;, +15:u05:OP_LOOKUPP:, +15:u07:OP_NVERIFY:, +14:u08:opnverify;, +14:u10:locku4args, +15:u12:lookup4args, +14:u01:LOCKU4args, +15:u03:LOOKUP4args, +16:u07:NVERIFY4args, +13:u08:OPEN4args, +13:u00:OP_LOCKU:, +12:u01:oplocku;, +14:u02:OP_LOOKUP:, +13:u03:oplookup;, +15:u04:OP_LOOKUPP:, +15:u06:OP_NVERIFY:, +14:u07:opnverify;, +12:u08:OP_OPEN:, +15:u11:lookup4args, +14:u00:LOCKU4args, +15:u02:LOOKUP4args, +16:u06:NVERIFY4args, +12:u00:oplocku;, +14:u01:OP_LOOKUP:, +13:u02:oplookup;, +15:u03:OP_LOOKUPP:, +15:u05:OP_NVERIFY:, +14:u06:opnverify;, +12:u07:OP_OPEN:, +11:u08:opopen;, +15:u10:lookup4args, +16:u14:nverify4args, +15:u01:LOOKUP4args, +16:u05:NVERIFY4args, +13:u07:OPEN4args, +17:u08:OPENATTR4args, +14:u00:OP_LOOKUP:, +13:u01:oplookup;, +15:u02:OP_LOOKUPP:, +15:u04:OP_NVERIFY:, +14:u05:opnverify;, +12:u06:OP_OPEN:, +11:u07:opopen;, +16:u08:OP_OPENATTR:, +16:u13:nverify4args, +15:u00:LOOKUP4args, +16:u04:NVERIFY4args, +13:u06:OPEN4args, +13:u00:oplookup;, +15:u01:OP_LOOKUPP:, +15:u03:OP_NVERIFY:, +14:u04:opnverify;, +12:u05:OP_OPEN:, +11:u06:opopen;, +16:u07:OP_OPENATTR:, +15:u08:opopenattr;, +16:u12:nverify4args, +13:u14:open4args, +16:u03:NVERIFY4args, +13:u05:OPEN4args, +17:u07:OPENATTR4args, +15:u00:OP_LOOKUPP:, +15:u02:OP_NVERIFY:, +14:u03:opnverify;, +12:u04:OP_OPEN:, +11:u05:opopen;, +16:u06:OP_OPENATTR:, +15:u07:opopenattr;, +16:u11:nverify4args, +13:u13:open4args, +16:u02:NVERIFY4args, +13:u04:OPEN4args, +17:u06:OPENATTR4args, +15:u01:OP_NVERIFY:, +14:u02:opnverify;, +12:u03:OP_OPEN:, +11:u04:opopen;, +16:u05:OP_OPENATTR:, +15:u06:opopenattr;, +20:u08:OP_OPEN_CONFIRM:, +16:u10:nverify4args, +13:u12:open4args, +17:u14:openattr4args, +16:u01:NVERIFY4args, +13:u03:OPEN4args, +17:u05:OPENATTR4args, +23:u08:OPEN_DOWNGRADE4args, +15:u00:OP_NVERIFY:, +14:u01:opnverify;, +12:u02:OP_OPEN:, +11:u03:opopen;, +16:u04:OP_OPENATTR:, +15:u05:opopenattr;, +20:u07:OP_OPEN_CONFIRM:, +22:u08:OP_OPEN_DOWNGRADE:, +13:u11:open4args, +17:u13:openattr4args, +16:u00:NVERIFY4args, +13:u02:OPEN4args, +17:u04:OPENATTR4args, +14:u00:opnverify;, +12:u01:OP_OPEN:, +11:u02:opopen;, +16:u03:OP_OPENATTR:, +15:u04:opopenattr;, +20:u06:OP_OPEN_CONFIRM:, +22:u07:OP_OPEN_DOWNGRADE:, +21:u08:opopen_downgrade;, +13:u10:open4args, +17:u12:openattr4args, +13:u01:OPEN4args, +17:u03:OPENATTR4args, +23:u07:OPEN_DOWNGRADE4args, +14:u08:PUTFH4args, +12:u00:OP_OPEN:, +11:u01:opopen;, +16:u02:OP_OPENATTR:, +15:u03:opopenattr;, +20:u05:OP_OPEN_CONFIRM:, +22:u06:OP_OPEN_DOWNGRADE:, +21:u07:opopen_downgrade;, +13:u08:OP_PUTFH:, +17:u11:openattr4args, +13:u00:OPEN4args, +17:u02:OPENATTR4args, +23:u06:OPEN_DOWNGRADE4args, +11:u00:opopen;, +16:u01:OP_OPENATTR:, +15:u02:opopenattr;, +20:u04:OP_OPEN_CONFIRM:, +22:u05:OP_OPEN_DOWNGRADE:, +21:u06:opopen_downgrade;, +13:u07:OP_PUTFH:, +12:u08:opputfh;, +17:u10:openattr4args, +23:u14:open_downgrade4args, +17:u01:OPENATTR4args, +23:u05:OPEN_DOWNGRADE4args, +14:u07:PUTFH4args, +16:u00:OP_OPENATTR:, +15:u01:opopenattr;, +20:u03:OP_OPEN_CONFIRM:, +22:u04:OP_OPEN_DOWNGRADE:, +21:u05:opopen_downgrade;, +13:u06:OP_PUTFH:, +12:u07:opputfh;, +16:u08:OP_PUTPUBFH:, +23:u13:open_downgrade4args, +17:u00:OPENATTR4args, +23:u04:OPEN_DOWNGRADE4args, +14:u06:PUTFH4args, +15:u00:opopenattr;, +20:u02:OP_OPEN_CONFIRM:, +22:u03:OP_OPEN_DOWNGRADE:, +21:u04:opopen_downgrade;, +13:u05:OP_PUTFH:, +12:u06:opputfh;, +16:u07:OP_PUTPUBFH:, +23:u12:open_downgrade4args, +14:u14:putfh4args, +23:u03:OPEN_DOWNGRADE4args, +14:u05:PUTFH4args, +20:u01:OP_OPEN_CONFIRM:, +22:u02:OP_OPEN_DOWNGRADE:, +21:u03:opopen_downgrade;, +13:u04:OP_PUTFH:, +12:u05:opputfh;, +16:u06:OP_PUTPUBFH:, +17:u08:OP_PUTROOTFH:, +23:u11:open_downgrade4args, +14:u13:putfh4args, +23:u02:OPEN_DOWNGRADE4args, +14:u04:PUTFH4args, +20:u00:OP_OPEN_CONFIRM:, +22:u01:OP_OPEN_DOWNGRADE:, +21:u02:opopen_downgrade;, +13:u03:OP_PUTFH:, +12:u04:opputfh;, +16:u05:OP_PUTPUBFH:, +17:u07:OP_PUTROOTFH:, +23:u10:open_downgrade4args, +14:u12:putfh4args, +23:u01:OPEN_DOWNGRADE4args, +14:u03:PUTFH4args, +13:u08:READ4args, +22:u00:OP_OPEN_DOWNGRADE:, +21:u01:opopen_downgrade;, +13:u02:OP_PUTFH:, +12:u03:opputfh;, +16:u04:OP_PUTPUBFH:, +17:u06:OP_PUTROOTFH:, +12:u08:OP_READ:, +14:u11:putfh4args, +23:u00:OPEN_DOWNGRADE4args, +14:u02:PUTFH4args, +21:u00:opopen_downgrade;, +13:u01:OP_PUTFH:, +12:u02:opputfh;, +16:u03:OP_PUTPUBFH:, +17:u05:OP_PUTROOTFH:, +12:u07:OP_READ:, +11:u08:opread;, +14:u10:putfh4args, +14:u01:PUTFH4args, +13:u07:READ4args, +16:u08:READDIR4args, +13:u00:OP_PUTFH:, +12:u01:opputfh;, +16:u02:OP_PUTPUBFH:, +17:u04:OP_PUTROOTFH:, +12:u06:OP_READ:, +11:u07:opread;, +15:u08:OP_READDIR:, +14:u00:PUTFH4args, +13:u06:READ4args, +12:u00:opputfh;, +16:u01:OP_PUTPUBFH:, +17:u03:OP_PUTROOTFH:, +12:u05:OP_READ:, +11:u06:opread;, +15:u07:OP_READDIR:, +14:u08:opreaddir;, +13:u14:read4args, +13:u05:READ4args, +16:u07:READDIR4args, +16:u00:OP_PUTPUBFH:, +17:u02:OP_PUTROOTFH:, +12:u04:OP_READ:, +11:u05:opread;, +15:u06:OP_READDIR:, +14:u07:opreaddir;, +16:u08:OP_READLINK:, +13:u13:read4args, +13:u04:READ4args, +16:u06:READDIR4args, +17:u01:OP_PUTROOTFH:, +12:u03:OP_READ:, +11:u04:opread;, +15:u05:OP_READDIR:, +14:u06:opreaddir;, +16:u07:OP_READLINK:, +13:u12:read4args, +16:u14:readdir4args, +13:u03:READ4args, +16:u05:READDIR4args, +15:u08:REMOVE4args, +17:u00:OP_PUTROOTFH:, +12:u02:OP_READ:, +11:u03:opread;, +15:u04:OP_READDIR:, +14:u05:opreaddir;, +16:u06:OP_READLINK:, +14:u08:OP_REMOVE:, +13:u11:read4args, +16:u13:readdir4args, +13:u02:READ4args, +16:u04:READDIR4args, +12:u01:OP_READ:, +11:u02:opread;, +15:u03:OP_READDIR:, +14:u04:opreaddir;, +16:u05:OP_READLINK:, +14:u07:OP_REMOVE:, +13:u08:opremove;, +13:u10:read4args, +16:u12:readdir4args, +13:u01:READ4args, +16:u03:READDIR4args, +15:u07:REMOVE4args, +15:u08:RENAME4args, +12:u00:OP_READ:, +11:u01:opread;, +15:u02:OP_READDIR:, +14:u03:opreaddir;, +16:u04:OP_READLINK:, +14:u06:OP_REMOVE:, +13:u07:opremove;, +14:u08:OP_RENAME:, +16:u11:readdir4args, +13:u00:READ4args, +16:u02:READDIR4args, +15:u06:REMOVE4args, +11:u00:opread;, +15:u01:OP_READDIR:, +14:u02:opreaddir;, +16:u03:OP_READLINK:, +14:u05:OP_REMOVE:, +13:u06:opremove;, +14:u07:OP_RENAME:, +13:u08:oprename;, +16:u10:readdir4args, +15:u14:remove4args, +16:u01:READDIR4args, +15:u05:REMOVE4args, +15:u07:RENAME4args, +15:u00:OP_READDIR:, +14:u01:opreaddir;, +16:u02:OP_READLINK:, +14:u04:OP_REMOVE:, +13:u05:opremove;, +14:u06:OP_RENAME:, +13:u07:oprename;, +15:u13:remove4args, +16:u00:READDIR4args, +15:u04:REMOVE4args, +15:u06:RENAME4args, +14:u08:RENEW4args, +14:u00:opreaddir;, +16:u01:OP_READLINK:, +14:u03:OP_REMOVE:, +13:u04:opremove;, +14:u05:OP_RENAME:, +13:u06:oprename;, +13:u08:OP_RENEW:, +15:u12:remove4args, +15:u14:rename4args, +15:u03:REMOVE4args, +15:u05:RENAME4args, +16:u00:OP_READLINK:, +14:u02:OP_REMOVE:, +13:u03:opremove;, +14:u04:OP_RENAME:, +13:u05:oprename;, +13:u07:OP_RENEW:, +12:u08:oprenew;, +15:u11:remove4args, +15:u13:rename4args, +15:u02:REMOVE4args, +15:u04:RENAME4args, +14:u07:RENEW4args, +14:u01:OP_REMOVE:, +13:u02:opremove;, +14:u03:OP_RENAME:, +13:u04:oprename;, +13:u06:OP_RENEW:, +12:u07:oprenew;, +17:u08:OP_RESTOREFH:, +15:u10:remove4args, +15:u12:rename4args, +15:u01:REMOVE4args, +15:u03:RENAME4args, +14:u06:RENEW4args, +14:u00:OP_REMOVE:, +13:u01:opremove;, +14:u02:OP_RENAME:, +13:u03:oprename;, +13:u05:OP_RENEW:, +12:u06:oprenew;, +17:u07:OP_RESTOREFH:, +15:u11:rename4args, +14:u14:renew4args, +15:u00:REMOVE4args, +15:u02:RENAME4args, +14:u05:RENEW4args, +13:u00:opremove;, +14:u01:OP_RENAME:, +13:u02:oprename;, +13:u04:OP_RENEW:, +12:u05:oprenew;, +17:u06:OP_RESTOREFH:, +15:u10:rename4args, +14:u13:renew4args, +15:u01:RENAME4args, +14:u04:RENEW4args, +14:u00:OP_RENAME:, +13:u01:oprename;, +13:u03:OP_RENEW:, +12:u04:oprenew;, +17:u05:OP_RESTOREFH:, +14:u12:renew4args, +8:u23:RENE, +15:u00:RENAME4args, +14:u03:RENEW4args, +13:u00:oprename;, +13:u02:OP_RENEW:, +12:u03:oprenew;, +17:u04:OP_RESTOREFH:, +8:u08:416], +14:u11:renew4args, +14:u02:RENEW4args, +13:u01:OP_RENEW:, +12:u02:oprenew;, +17:u03:OP_RESTOREFH:, +8:u07:416], +14:u10:renew4args, +14:u01:RENEW4args, +13:u00:OP_RENEW:, +12:u01:oprenew;, +17:u02:OP_RESTOREFH:, +8:u06:416], +14:u00:RENEW4args, +12:u00:oprenew;, +17:u01:OP_RESTOREFH:, +8:u05:416], +17:u00:OP_RESTOREFH:, +8:u04:416], +14:u08:OP_SAVEFH:, +8:u03:416], +14:u07:OP_SAVEFH:, +16:u08:SECINFO4args, +8:u02:416], +14:u06:OP_SAVEFH:, +15:u08:OP_SECINFO:, +8:u01:416], +14:u05:OP_SAVEFH:, +15:u07:OP_SECINFO:, +14:u08:opsecinfo;, +16:u07:SECINFO4args, +16:u08:SETATTR4args, +8:u00:416], +14:u04:OP_SAVEFH:, +15:u06:OP_SECINFO:, +14:u07:opsecinfo;, +15:u08:OP_SETATTR:, +16:u06:SECINFO4args, +14:u03:OP_SAVEFH:, +15:u05:OP_SECINFO:, +14:u06:opsecinfo;, +15:u07:OP_SETATTR:, +14:u08:opsetattr;, +16:u14:secinfo4args, +16:u05:SECINFO4args, +16:u07:SETATTR4args, +14:u02:OP_SAVEFH:, +15:u04:OP_SECINFO:, +14:u05:opsecinfo;, +15:u06:OP_SETATTR:, +14:u07:opsetattr;, +16:u13:secinfo4args, +16:u04:SECINFO4args, +16:u06:SETATTR4args, +14:u01:OP_SAVEFH:, +15:u03:OP_SECINFO:, +14:u04:opsecinfo;, +15:u05:OP_SETATTR:, +14:u06:opsetattr;, +19:u08:OP_SETCLIENTID:, +16:u12:secinfo4args, +16:u14:setattr4args, +16:u03:SECINFO4args, +16:u05:SETATTR4args, +14:u00:OP_SAVEFH:, +15:u02:OP_SECINFO:, +14:u03:opsecinfo;, +15:u04:OP_SETATTR:, +14:u05:opsetattr;, +19:u07:OP_SETCLIENTID:, +16:u11:secinfo4args, +16:u13:setattr4args, +16:u02:SECINFO4args, +16:u04:SETATTR4args, +26:u08:opsetclientid_confirm;, +15:u01:OP_SECINFO:, +14:u02:opsecinfo;, +15:u03:OP_SETATTR:, +14:u04:opsetattr;, +19:u06:OP_SETCLIENTID:, +27:u08:OP_SETCLIENTID_CONFIRM:, +16:u10:secinfo4args, +16:u12:setattr4args, +16:u01:SECINFO4args, +16:u03:SETATTR4args, +15:u00:OP_SECINFO:, +14:u01:opsecinfo;, +15:u02:OP_SETATTR:, +14:u03:opsetattr;, +19:u05:OP_SETCLIENTID:, +27:u07:OP_SETCLIENTID_CONFIRM:, +16:u11:setattr4args, +16:u00:SECINFO4args, +16:u02:SETATTR4args, +26:u07:opsetclientid_confirm;, +15:u08:VERIFY4args, +14:u00:opsecinfo;, +15:u01:OP_SETATTR:, +14:u02:opsetattr;, +19:u04:OP_SETCLIENTID:, +27:u06:OP_SETCLIENTID_CONFIRM:, +14:u08:OP_VERIFY:, +16:u10:setattr4args, +16:u01:SETATTR4args, +26:u06:opsetclientid_confirm;, +15:u00:OP_SETATTR:, +14:u01:opsetattr;, +19:u03:OP_SETCLIENTID:, +27:u05:OP_SETCLIENTID_CONFIRM:, +14:u07:OP_VERIFY:, +13:u08:opverify;, +26:u14:opsetclientid_confirm;, +16:u00:SETATTR4args, +26:u05:opsetclientid_confirm;, +15:u07:VERIFY4args, +14:u08:WRITE4args, +14:u00:opsetattr;, +19:u02:OP_SETCLIENTID:, +27:u04:OP_SETCLIENTID_CONFIRM:, +14:u06:OP_VERIFY:, +13:u07:opverify;, +13:u08:OP_WRITE:, +26:u13:opsetclientid_confirm;, +26:u04:opsetclientid_confirm;, +15:u06:VERIFY4args, +19:u01:OP_SETCLIENTID:, +27:u03:OP_SETCLIENTID_CONFIRM:, +14:u05:OP_VERIFY:, +13:u06:opverify;, +13:u07:OP_WRITE:, +12:u08:opwrite;, +26:u12:opsetclientid_confirm;, +15:u14:verify4args, +7:u22:ops, +8:u23:opse, +26:u03:opsetclientid_confirm;, +15:u05:VERIFY4args, +14:u07:WRITE4args, +19:u00:OP_SETCLIENTID:, +27:u02:OP_SETCLIENTID_CONFIRM:, +14:u04:OP_VERIFY:, +13:u05:opverify;, +13:u06:OP_WRITE:, +12:u07:opwrite;, +26:u11:opsetclientid_confirm;, +15:u13:verify4args, +26:u02:opsetclientid_confirm;, +15:u04:VERIFY4args, +14:u06:WRITE4args, +26:u08:RELEASE_LOCKOWNER4args, +27:u01:OP_SETCLIENTID_CONFIRM:, +14:u03:OP_VERIFY:, +13:u04:opverify;, +13:u05:OP_WRITE:, +12:u06:opwrite;, +25:u08:OP_RELEASE_LOCKOWNER:, +26:u10:opsetclientid_confirm;, +15:u12:verify4args, +14:u14:write4args, +26:u01:opsetclientid_confirm;, +15:u03:VERIFY4args, +14:u05:WRITE4args, +24:u08:oprelease_lockowner;, +27:u00:OP_SETCLIENTID_CONFIRM:, +14:u02:OP_VERIFY:, +13:u03:opverify;, +13:u04:OP_WRITE:, +12:u05:opwrite;, +25:u07:OP_RELEASE_LOCKOWNER:, +15:u11:verify4args, +14:u13:write4args, +26:u00:opsetclientid_confirm;, +15:u02:VERIFY4args, +14:u04:WRITE4args, +26:u07:RELEASE_LOCKOWNER4args, +14:u01:OP_VERIFY:, +13:u02:opverify;, +13:u03:OP_WRITE:, +12:u04:opwrite;, +25:u06:OP_RELEASE_LOCKOWNER:, +15:u10:verify4args, +14:u12:write4args, +15:u01:VERIFY4args, +14:u03:WRITE4args, +26:u06:RELEASE_LOCKOWNER4args, +24:u07:oprelease_lockowner;, +14:u00:OP_VERIFY:, +13:u01:opverify;, +13:u02:OP_WRITE:, +12:u03:opwrite;, +25:u05:OP_RELEASE_LOCKOWNER:, +14:u11:write4args, +26:u14:release_lockowner4args, +15:u00:VERIFY4args, +14:u02:WRITE4args, +26:u05:RELEASE_LOCKOWNER4args, +24:u06:oprelease_lockowner;, +24:u08:BACKCHANNEL_CTL4args, +13:u00:opverify;, +13:u01:OP_WRITE:, +12:u02:opwrite;, +25:u04:OP_RELEASE_LOCKOWNER:, +23:u08:OP_BACKCHANNEL_CTL:, +14:u10:write4args, +26:u13:release_lockowner4args, +24:u14:oprelease_lockowner;, +14:u01:WRITE4args, +26:u04:RELEASE_LOCKOWNER4args, +24:u05:oprelease_lockowner;, +13:u00:OP_WRITE:, +12:u01:opwrite;, +25:u03:OP_RELEASE_LOCKOWNER:, +23:u07:OP_BACKCHANNEL_CTL:, +22:u08:opbackchannel_ctl;, +26:u12:release_lockowner4args, +24:u13:oprelease_lockowner;, +14:u00:WRITE4args, +26:u03:RELEASE_LOCKOWNER4args, +24:u04:oprelease_lockowner;, +24:u07:BACKCHANNEL_CTL4args, +29:u08:BIND_CONN_TO_SESSION4args, +12:u00:opwrite;, +25:u02:OP_RELEASE_LOCKOWNER:, +23:u06:OP_BACKCHANNEL_CTL:, +22:u07:opbackchannel_ctl;, +28:u08:OP_BIND_CONN_TO_SESSION:, +26:u11:release_lockowner4args, +24:u12:oprelease_lockowner;, +7:u22:opr, +8:u23:opre, +26:u02:RELEASE_LOCKOWNER4args, +24:u03:oprelease_lockowner;, +24:u06:BACKCHANNEL_CTL4args, +27:u08:opbind_conn_to_session;, +25:u01:OP_RELEASE_LOCKOWNER:, +23:u05:OP_BACKCHANNEL_CTL:, +22:u06:opbackchannel_ctl;, +28:u07:OP_BIND_CONN_TO_SESSION:, +26:u10:release_lockowner4args, +24:u11:oprelease_lockowner;, +24:u14:backchannel_ctl4args, +26:u01:RELEASE_LOCKOWNER4args, +24:u02:oprelease_lockowner;, +24:u05:BACKCHANNEL_CTL4args, +29:u07:BIND_CONN_TO_SESSION4args, +25:u00:OP_RELEASE_LOCKOWNER:, +23:u04:OP_BACKCHANNEL_CTL:, +22:u05:opbackchannel_ctl;, +28:u06:OP_BIND_CONN_TO_SESSION:, +24:u10:oprelease_lockowner;, +24:u13:backchannel_ctl4args, +26:u00:RELEASE_LOCKOWNER4args, +24:u01:oprelease_lockowner;, +24:u04:BACKCHANNEL_CTL4args, +29:u06:BIND_CONN_TO_SESSION4args, +27:u07:opbind_conn_to_session;, +20:u08:EXCHANGE_ID4args, +23:u03:OP_BACKCHANNEL_CTL:, +22:u04:opbackchannel_ctl;, +28:u05:OP_BIND_CONN_TO_SESSION:, +19:u08:OP_EXCHANGE_ID:, +24:u12:backchannel_ctl4args, +29:u14:bind_conn_to_session4args, +24:u00:oprelease_lockowner;, +24:u03:BACKCHANNEL_CTL4args, +29:u05:BIND_CONN_TO_SESSION4args, +27:u06:opbind_conn_to_session;, +23:u02:OP_BACKCHANNEL_CTL:, +22:u03:opbackchannel_ctl;, +28:u04:OP_BIND_CONN_TO_SESSION:, +19:u07:OP_EXCHANGE_ID:, +18:u08:opexchange_id;, +24:u11:backchannel_ctl4args, +29:u13:bind_conn_to_session4args, +27:u14:opbind_conn_to_session;, +24:u02:BACKCHANNEL_CTL4args, +29:u04:BIND_CONN_TO_SESSION4args, +27:u05:opbind_conn_to_session;, +20:u07:EXCHANGE_ID4args, +23:u08:CREATE_SESSION4args, +23:u01:OP_BACKCHANNEL_CTL:, +22:u02:opbackchannel_ctl;, +28:u03:OP_BIND_CONN_TO_SESSION:, +19:u06:OP_EXCHANGE_ID:, +18:u07:opexchange_id;, +22:u08:OP_CREATE_SESSION:, +24:u10:backchannel_ctl4args, +29:u12:bind_conn_to_session4args, +27:u13:opbind_conn_to_session;, +24:u01:BACKCHANNEL_CTL4args, +29:u03:BIND_CONN_TO_SESSION4args, +27:u04:opbind_conn_to_session;, +20:u06:EXCHANGE_ID4args, +23:u00:OP_BACKCHANNEL_CTL:, +22:u01:opbackchannel_ctl;, +28:u02:OP_BIND_CONN_TO_SESSION:, +19:u05:OP_EXCHANGE_ID:, +18:u06:opexchange_id;, +22:u07:OP_CREATE_SESSION:, +21:u08:opcreate_session;, +29:u11:bind_conn_to_session4args, +27:u12:opbind_conn_to_session;, +20:u14:exchange_id4args, +7:u22:opb, +8:u23:opbi, +24:u00:BACKCHANNEL_CTL4args, +29:u02:BIND_CONN_TO_SESSION4args, +27:u03:opbind_conn_to_session;, +20:u05:EXCHANGE_ID4args, +23:u07:CREATE_SESSION4args, +24:u08:DESTROY_SESSION4args, +22:u00:opbackchannel_ctl;, +28:u01:OP_BIND_CONN_TO_SESSION:, +19:u04:OP_EXCHANGE_ID:, +18:u05:opexchange_id;, +22:u06:OP_CREATE_SESSION:, +21:u07:opcreate_session;, +23:u08:OP_DESTROY_SESSION:, +29:u10:bind_conn_to_session4args, +27:u11:opbind_conn_to_session;, +20:u13:exchange_id4args, +29:u01:BIND_CONN_TO_SESSION4args, +27:u02:opbind_conn_to_session;, +20:u04:EXCHANGE_ID4args, +23:u06:CREATE_SESSION4args, +28:u00:OP_BIND_CONN_TO_SESSION:, +19:u03:OP_EXCHANGE_ID:, +18:u04:opexchange_id;, +22:u05:OP_CREATE_SESSION:, +21:u06:opcreate_session;, +23:u07:OP_DESTROY_SESSION:, +22:u08:opdestroy_session;, +27:u10:opbind_conn_to_session;, +20:u12:exchange_id4args, +23:u14:create_session4args, +29:u00:BIND_CONN_TO_SESSION4args, +27:u01:opbind_conn_to_session;, +20:u03:EXCHANGE_ID4args, +23:u05:CREATE_SESSION4args, +24:u07:DESTROY_SESSION4args, +19:u02:OP_EXCHANGE_ID:, +18:u03:opexchange_id;, +22:u04:OP_CREATE_SESSION:, +21:u05:opcreate_session;, +23:u06:OP_DESTROY_SESSION:, +22:u07:opdestroy_session;, +20:u08:OP_FREE_STATEID:, +20:u11:exchange_id4args, +23:u13:create_session4args, +27:u00:opbind_conn_to_session;, +20:u02:EXCHANGE_ID4args, +23:u04:CREATE_SESSION4args, +24:u06:DESTROY_SESSION4args, +27:u08:GET_DIR_DELEGATION4args, +19:u01:OP_EXCHANGE_ID:, +18:u02:opexchange_id;, +22:u03:OP_CREATE_SESSION:, +21:u04:opcreate_session;, +23:u05:OP_DESTROY_SESSION:, +22:u06:opdestroy_session;, +20:u07:OP_FREE_STATEID:, +26:u08:OP_GET_DIR_DELEGATION:, +20:u10:exchange_id4args, +23:u12:create_session4args, +24:u14:destroy_session4args, +20:u01:EXCHANGE_ID4args, +23:u03:CREATE_SESSION4args, +24:u05:DESTROY_SESSION4args, +25:u08:opget_dir_delegation;, +19:u00:OP_EXCHANGE_ID:, +18:u01:opexchange_id;, +22:u02:OP_CREATE_SESSION:, +21:u03:opcreate_session;, +23:u04:OP_DESTROY_SESSION:, +22:u05:opdestroy_session;, +20:u06:OP_FREE_STATEID:, +26:u07:OP_GET_DIR_DELEGATION:, +23:u11:create_session4args, +24:u13:destroy_session4args, +20:u00:EXCHANGE_ID4args, +23:u02:CREATE_SESSION4args, +24:u04:DESTROY_SESSION4args, +27:u07:GET_DIR_DELEGATION4args, +18:u00:opexchange_id;, +22:u01:OP_CREATE_SESSION:, +21:u02:opcreate_session;, +23:u03:OP_DESTROY_SESSION:, +22:u04:opdestroy_session;, +20:u05:OP_FREE_STATEID:, +26:u06:OP_GET_DIR_DELEGATION:, +23:u10:create_session4args, +24:u12:destroy_session4args, +23:u01:CREATE_SESSION4args, +24:u03:DESTROY_SESSION4args, +27:u06:GET_DIR_DELEGATION4args, +25:u07:opget_dir_delegation;, +22:u00:OP_CREATE_SESSION:, +21:u01:opcreate_session;, +23:u02:OP_DESTROY_SESSION:, +22:u03:opdestroy_session;, +20:u04:OP_FREE_STATEID:, +26:u05:OP_GET_DIR_DELEGATION:, +21:u08:OP_GETDEVICEINFO:, +24:u11:destroy_session4args, +27:u14:get_dir_delegation4args, +23:u00:CREATE_SESSION4args, +24:u02:DESTROY_SESSION4args, +27:u05:GET_DIR_DELEGATION4args, +25:u06:opget_dir_delegation;, +21:u00:opcreate_session;, +23:u01:OP_DESTROY_SESSION:, +22:u02:opdestroy_session;, +20:u03:OP_FREE_STATEID:, +26:u04:OP_GET_DIR_DELEGATION:, +21:u07:OP_GETDEVICEINFO:, +21:u08:OP_GETDEVICELIST:, +24:u10:destroy_session4args, +27:u13:get_dir_delegation4args, +25:u14:opget_dir_delegation;, +24:u01:DESTROY_SESSION4args, +27:u04:GET_DIR_DELEGATION4args, +25:u05:opget_dir_delegation;, +23:u00:OP_DESTROY_SESSION:, +22:u01:opdestroy_session;, +20:u02:OP_FREE_STATEID:, +26:u03:OP_GET_DIR_DELEGATION:, +21:u06:OP_GETDEVICEINFO:, +21:u07:OP_GETDEVICELIST:, +20:u08:OP_LAYOUTCOMMIT:, +27:u12:get_dir_delegation4args, +25:u13:opget_dir_delegation;, +24:u00:DESTROY_SESSION4args, +27:u03:GET_DIR_DELEGATION4args, +25:u04:opget_dir_delegation;, +18:u08:LAYOUTGET4args, +22:u00:opdestroy_session;, +20:u01:OP_FREE_STATEID:, +26:u02:OP_GET_DIR_DELEGATION:, +21:u05:OP_GETDEVICEINFO:, +21:u06:OP_GETDEVICELIST:, +20:u07:OP_LAYOUTCOMMIT:, +17:u08:OP_LAYOUTGET:, +27:u11:get_dir_delegation4args, +25:u12:opget_dir_delegation;, +7:u22:opg, +8:u23:opge, +27:u02:GET_DIR_DELEGATION4args, +25:u03:opget_dir_delegation;, +20:u00:OP_FREE_STATEID:, +26:u01:OP_GET_DIR_DELEGATION:, +21:u04:OP_GETDEVICEINFO:, +21:u05:OP_GETDEVICELIST:, +20:u06:OP_LAYOUTCOMMIT:, +17:u07:OP_LAYOUTGET:, +16:u08:oplayoutget;, +27:u10:get_dir_delegation4args, +25:u11:opget_dir_delegation;, +27:u01:GET_DIR_DELEGATION4args, +25:u02:opget_dir_delegation;, +18:u07:LAYOUTGET4args, +26:u00:OP_GET_DIR_DELEGATION:, +21:u03:OP_GETDEVICEINFO:, +21:u04:OP_GETDEVICELIST:, +20:u05:OP_LAYOUTCOMMIT:, +17:u06:OP_LAYOUTGET:, +16:u07:oplayoutget;, +20:u08:OP_LAYOUTRETURN:, +25:u10:opget_dir_delegation;, +27:u00:GET_DIR_DELEGATION4args, +25:u01:opget_dir_delegation;, +18:u06:LAYOUTGET4args, +24:u08:SECINFO_NO_NAME4args, +21:u02:OP_GETDEVICEINFO:, +21:u03:OP_GETDEVICELIST:, +20:u04:OP_LAYOUTCOMMIT:, +17:u05:OP_LAYOUTGET:, +16:u06:oplayoutget;, +20:u07:OP_LAYOUTRETURN:, +23:u08:OP_SECINFO_NO_NAME:, +18:u14:layoutget4args, +25:u00:opget_dir_delegation;, +18:u05:LAYOUTGET4args, +21:u01:OP_GETDEVICEINFO:, +21:u02:OP_GETDEVICELIST:, +20:u03:OP_LAYOUTCOMMIT:, +17:u04:OP_LAYOUTGET:, +16:u05:oplayoutget;, +20:u06:OP_LAYOUTRETURN:, +23:u07:OP_SECINFO_NO_NAME:, +22:u08:opsecinfo_no_name;, +18:u13:layoutget4args, +18:u04:LAYOUTGET4args, +24:u07:SECINFO_NO_NAME4args, +21:u00:OP_GETDEVICEINFO:, +21:u01:OP_GETDEVICELIST:, +20:u02:OP_LAYOUTCOMMIT:, +17:u03:OP_LAYOUTGET:, +16:u04:oplayoutget;, +20:u05:OP_LAYOUTRETURN:, +23:u06:OP_SECINFO_NO_NAME:, +22:u07:opsecinfo_no_name;, +18:u12:layoutget4args, +18:u03:LAYOUTGET4args, +24:u06:SECINFO_NO_NAME4args, +21:u00:OP_GETDEVICELIST:, +20:u01:OP_LAYOUTCOMMIT:, +17:u02:OP_LAYOUTGET:, +16:u03:oplayoutget;, +20:u04:OP_LAYOUTRETURN:, +23:u05:OP_SECINFO_NO_NAME:, +22:u06:opsecinfo_no_name;, +18:u11:layoutget4args, +24:u14:secinfo_no_name4args, +18:u02:LAYOUTGET4args, +24:u05:SECINFO_NO_NAME4args, +20:u00:OP_LAYOUTCOMMIT:, +17:u01:OP_LAYOUTGET:, +16:u02:oplayoutget;, +20:u03:OP_LAYOUTRETURN:, +23:u04:OP_SECINFO_NO_NAME:, +22:u05:opsecinfo_no_name;, +8:u08:417], +18:u10:layoutget4args, +24:u13:secinfo_no_name4args, +18:u01:LAYOUTGET4args, +24:u04:SECINFO_NO_NAME4args, +17:u00:OP_LAYOUTGET:, +16:u01:oplayoutget;, +20:u02:OP_LAYOUTRETURN:, +23:u03:OP_SECINFO_NO_NAME:, +22:u04:opsecinfo_no_name;, +8:u07:417], +24:u12:secinfo_no_name4args, +18:u00:LAYOUTGET4args, +24:u03:SECINFO_NO_NAME4args, +16:u00:oplayoutget;, +20:u01:OP_LAYOUTRETURN:, +23:u02:OP_SECINFO_NO_NAME:, +22:u03:opsecinfo_no_name;, +8:u06:417], +24:u11:secinfo_no_name4args, +24:u02:SECINFO_NO_NAME4args, +20:u00:OP_LAYOUTRETURN:, +23:u01:OP_SECINFO_NO_NAME:, +22:u02:opsecinfo_no_name;, +8:u05:417], +24:u10:secinfo_no_name4args, +24:u01:SECINFO_NO_NAME4args, +17:u08:SEQUENCE4args, +23:u00:OP_SECINFO_NO_NAME:, +22:u01:opsecinfo_no_name;, +8:u04:417], +16:u08:OP_SEQUENCE:, +24:u00:SECINFO_NO_NAME4args, +22:u00:opsecinfo_no_name;, +8:u03:417], +16:u07:OP_SEQUENCE:, +15:u08:opsequence;, +17:u07:SEQUENCE4args, +16:u08:SET_SSV4args, +8:u02:417], +16:u06:OP_SEQUENCE:, +15:u07:opsequence;, +15:u08:OP_SET_SSV:, +17:u06:SEQUENCE4args, +8:u01:417], +16:u05:OP_SEQUENCE:, +15:u06:opsequence;, +15:u07:OP_SET_SSV:, +14:u08:opset_ssv;, +17:u14:sequence4args, +17:u05:SEQUENCE4args, +16:u07:SET_SSV4args, +8:u00:417], +16:u04:OP_SEQUENCE:, +15:u05:opsequence;, +15:u06:OP_SET_SSV:, +14:u07:opset_ssv;, +20:u08:OP_TEST_STATEID:, +17:u13:sequence4args, +17:u04:SEQUENCE4args, +16:u06:SET_SSV4args, +24:u08:WANT_DELEGATION4args, +16:u03:OP_SEQUENCE:, +15:u04:opsequence;, +15:u05:OP_SET_SSV:, +14:u06:opset_ssv;, +20:u07:OP_TEST_STATEID:, +23:u08:OP_WANT_DELEGATION:, +17:u12:sequence4args, +16:u14:set_ssv4args, +17:u03:SEQUENCE4args, +16:u05:SET_SSV4args, +16:u02:OP_SEQUENCE:, +15:u03:opsequence;, +15:u04:OP_SET_SSV:, +14:u05:opset_ssv;, +20:u06:OP_TEST_STATEID:, +23:u07:OP_WANT_DELEGATION:, +22:u08:opwant_delegation;, +17:u11:sequence4args, +16:u13:set_ssv4args, +17:u02:SEQUENCE4args, +16:u04:SET_SSV4args, +24:u07:WANT_DELEGATION4args, +25:u08:DESTROY_CLIENTID4args, +16:u01:OP_SEQUENCE:, +15:u02:opsequence;, +15:u03:OP_SET_SSV:, +14:u04:opset_ssv;, +20:u05:OP_TEST_STATEID:, +23:u06:OP_WANT_DELEGATION:, +22:u07:opwant_delegation;, +24:u08:OP_DESTROY_CLIENTID:, +17:u10:sequence4args, +16:u12:set_ssv4args, +17:u01:SEQUENCE4args, +16:u03:SET_SSV4args, +24:u06:WANT_DELEGATION4args, +23:u08:opdestroy_clientid;, +16:u00:OP_SEQUENCE:, +15:u01:opsequence;, +15:u02:OP_SET_SSV:, +14:u03:opset_ssv;, +20:u04:OP_TEST_STATEID:, +23:u05:OP_WANT_DELEGATION:, +22:u06:opwant_delegation;, +24:u07:OP_DESTROY_CLIENTID:, +16:u11:set_ssv4args, +24:u14:want_delegation4args, +17:u00:SEQUENCE4args, +16:u02:SET_SSV4args, +24:u05:WANT_DELEGATION4args, +25:u07:DESTROY_CLIENTID4args, +15:u00:opsequence;, +15:u01:OP_SET_SSV:, +14:u02:opset_ssv;, +20:u03:OP_TEST_STATEID:, +23:u04:OP_WANT_DELEGATION:, +22:u05:opwant_delegation;, +24:u06:OP_DESTROY_CLIENTID:, +16:u10:set_ssv4args, +24:u13:want_delegation4args, +16:u01:SET_SSV4args, +24:u04:WANT_DELEGATION4args, +25:u06:DESTROY_CLIENTID4args, +23:u07:opdestroy_clientid;, +25:u08:RECLAIM_COMPLETE4args, +15:u00:OP_SET_SSV:, +14:u01:opset_ssv;, +20:u02:OP_TEST_STATEID:, +23:u03:OP_WANT_DELEGATION:, +22:u04:opwant_delegation;, +24:u05:OP_DESTROY_CLIENTID:, +24:u08:OP_RECLAIM_COMPLETE:, +24:u12:want_delegation4args, +25:u14:destroy_clientid4args, +16:u00:SET_SSV4args, +24:u03:WANT_DELEGATION4args, +25:u05:DESTROY_CLIENTID4args, +23:u06:opdestroy_clientid;, +23:u08:opreclaim_complete;, +14:u00:opset_ssv;, +20:u01:OP_TEST_STATEID:, +23:u02:OP_WANT_DELEGATION:, +22:u03:opwant_delegation;, +24:u04:OP_DESTROY_CLIENTID:, +24:u07:OP_RECLAIM_COMPLETE:, +24:u11:want_delegation4args, +25:u13:destroy_clientid4args, +23:u14:opdestroy_clientid;, +24:u02:WANT_DELEGATION4args, +25:u04:DESTROY_CLIENTID4args, +23:u05:opdestroy_clientid;, +25:u07:RECLAIM_COMPLETE4args, +20:u00:OP_TEST_STATEID:, +23:u01:OP_WANT_DELEGATION:, +22:u02:opwant_delegation;, +24:u03:OP_DESTROY_CLIENTID:, +24:u06:OP_RECLAIM_COMPLETE:, +24:u10:want_delegation4args, +25:u12:destroy_clientid4args, +23:u13:opdestroy_clientid;, +24:u01:WANT_DELEGATION4args, +25:u03:DESTROY_CLIENTID4args, +23:u04:opdestroy_clientid;, +25:u06:RECLAIM_COMPLETE4args, +23:u07:opreclaim_complete;, +23:u00:OP_WANT_DELEGATION:, +22:u01:opwant_delegation;, +24:u02:OP_DESTROY_CLIENTID:, +24:u05:OP_RECLAIM_COMPLETE:, +25:u11:destroy_clientid4args, +23:u12:opdestroy_clientid;, +25:u14:reclaim_complete4args, +7:u22:opd, +8:u23:opde, +24:u00:WANT_DELEGATION4args, +25:u02:DESTROY_CLIENTID4args, +23:u03:opdestroy_clientid;, +25:u05:RECLAIM_COMPLETE4args, +23:u06:opreclaim_complete;, +22:u00:opwant_delegation;, +24:u01:OP_DESTROY_CLIENTID:, +24:u04:OP_RECLAIM_COMPLETE:, +15:u08:OP_ILLEGAL:, +25:u10:destroy_clientid4args, +23:u11:opdestroy_clientid;, +25:u13:reclaim_complete4args, +23:u14:opreclaim_complete;, +25:u01:DESTROY_CLIENTID4args, +23:u02:opdestroy_clientid;, +25:u04:RECLAIM_COMPLETE4args, +23:u05:opreclaim_complete;, +24:u00:OP_DESTROY_CLIENTID:, +24:u03:OP_RECLAIM_COMPLETE:, +15:u07:OP_ILLEGAL:, +23:u10:opdestroy_clientid;, +25:u12:reclaim_complete4args, +23:u13:opreclaim_complete;, +25:u00:DESTROY_CLIENTID4args, +23:u01:opdestroy_clientid;, +25:u03:RECLAIM_COMPLETE4args, +23:u04:opreclaim_complete;, +24:u02:OP_RECLAIM_COMPLETE:, +15:u06:OP_ILLEGAL:, +25:u11:reclaim_complete4args, +23:u12:opreclaim_complete;, +23:u00:opdestroy_clientid;, +25:u02:RECLAIM_COMPLETE4args, +23:u03:opreclaim_complete;, +24:u01:OP_RECLAIM_COMPLETE:, +15:u05:OP_ILLEGAL:, +17:u08:COMPOUND4args, +25:u10:reclaim_complete4args, +23:u11:opreclaim_complete;, +25:u01:RECLAIM_COMPLETE4args, +23:u02:opreclaim_complete;, +8:u08:tag;, +24:u00:OP_RECLAIM_COMPLETE:, +15:u04:OP_ILLEGAL:, +17:u07:COMPOUND4args, +23:u10:opreclaim_complete;, +25:u00:RECLAIM_COMPLETE4args, +23:u01:opreclaim_complete;, +15:u03:OP_ILLEGAL:, +17:u06:COMPOUND4args, +23:u00:opreclaim_complete;, +8:u07:tag;, +17:u08:minorversion;, +15:u02:OP_ILLEGAL:, +17:u05:COMPOUND4args, +8:u06:tag;, +15:u01:OP_ILLEGAL:, +17:u04:COMPOUND4args, +8:u14:tag;, +8:u05:tag;, +17:u07:minorversion;, +15:u08:argarray<>;, +15:u00:OP_ILLEGAL:, +17:u03:COMPOUND4args, +8:u13:tag;, +8:u04:tag;, +17:u06:minorversion;, +17:u02:COMPOUND4args, +8:u12:tag;, +17:u14:minorversion;, +7:u22:tag, +8:u23:tag;, +8:u03:tag;, +17:u05:minorversion;, +15:u07:argarray<>;, +11:u08:16.2.2., +17:u01:COMPOUND4args, +8:u11:tag;, +17:u13:minorversion;, +14:u14:nfs_argop4, +8:u02:tag;, +17:u04:minorversion;, +15:u06:argarray<>;, +17:u00:COMPOUND4args, +8:u10:tag;, +17:u12:minorversion;, +14:u13:nfs_argop4, +15:u14:argarray<>;, +8:u01:tag;, +17:u03:minorversion;, +15:u05:argarray<>;, +11:u07:16.2.2., +14:u08:nfs_resop4, +17:u11:minorversion;, +14:u12:nfs_argop4, +15:u13:argarray<>;, +8:u00:tag;, +17:u02:minorversion;, +15:u04:argarray<>;, +11:u06:16.2.2., +14:u08:ACCESS4res, +14:u07:nfs_resop4, +17:u10:minorversion;, +14:u11:nfs_argop4, +15:u12:argarray<>;, +11:u14:16.2.2., +8:u23:arga, +17:u01:minorversion;, +15:u03:argarray<>;, +11:u05:16.2.2., +14:u06:nfs_resop4, +14:u10:nfs_argop4, +15:u11:argarray<>;, +11:u13:16.2.2., +17:u00:minorversion;, +15:u02:argarray<>;, +11:u04:16.2.2., +14:u07:ACCESS4res, +13:u08:CLOSE4res, +14:u05:nfs_resop4, +15:u10:argarray<>;, +11:u12:16.2.2., +15:u01:argarray<>;, +11:u03:16.2.2., +14:u06:ACCESS4res, +14:u04:nfs_resop4, +11:u11:16.2.2., +14:u14:access4res, +15:u00:argarray<>;, +11:u02:16.2.2., +14:u05:ACCESS4res, +13:u07:CLOSE4res, +14:u08:COMMIT4res, +14:u03:nfs_resop4, +11:u10:16.2.2., +14:u13:access4res, +11:u01:16.2.2., +14:u04:ACCESS4res, +13:u06:CLOSE4res, +14:u02:nfs_resop4, +14:u12:access4res, +13:u14:close4res, +11:u00:16.2.2., +14:u03:ACCESS4res, +13:u05:CLOSE4res, +14:u07:COMMIT4res, +14:u08:CREATE4res, +14:u01:nfs_resop4, +14:u11:access4res, +13:u13:close4res, +14:u02:ACCESS4res, +13:u04:CLOSE4res, +14:u06:COMMIT4res, +14:u00:nfs_resop4, +14:u10:access4res, +13:u12:close4res, +14:u14:commit4res, +14:u01:ACCESS4res, +13:u03:CLOSE4res, +14:u05:COMMIT4res, +14:u07:CREATE4res, +18:u08:DELEGPURGE4res, +13:u11:close4res, +14:u13:commit4res, +14:u00:ACCESS4res, +13:u02:CLOSE4res, +14:u04:COMMIT4res, +14:u06:CREATE4res, +13:u10:close4res, +14:u12:commit4res, +14:u14:create4res, +13:u01:CLOSE4res, +14:u03:COMMIT4res, +14:u05:CREATE4res, +18:u07:DELEGPURGE4res, +19:u08:DELEGRETURN4res, +14:u11:commit4res, +14:u13:create4res, +13:u00:CLOSE4res, +14:u02:COMMIT4res, +14:u04:CREATE4res, +18:u06:DELEGPURGE4res, +14:u10:commit4res, +14:u12:create4res, +18:u14:delegpurge4res, +14:u01:COMMIT4res, +14:u03:CREATE4res, +18:u05:DELEGPURGE4res, +19:u07:DELEGRETURN4res, +15:u08:GETATTR4res, +14:u11:create4res, +18:u13:delegpurge4res, +14:u00:COMMIT4res, +14:u02:CREATE4res, +18:u04:DELEGPURGE4res, +19:u06:DELEGRETURN4res, +14:u10:create4res, +18:u12:delegpurge4res, +19:u14:delegreturn4res, +14:u01:CREATE4res, +18:u03:DELEGPURGE4res, +19:u05:DELEGRETURN4res, +15:u07:GETATTR4res, +13:u08:GETFH4res, +18:u11:delegpurge4res, +19:u13:delegreturn4res, +14:u00:CREATE4res, +18:u02:DELEGPURGE4res, +19:u04:DELEGRETURN4res, +15:u06:GETATTR4res, +12:u08:opgetfh;, +18:u10:delegpurge4res, +19:u12:delegreturn4res, +15:u14:getattr4res, +18:u01:DELEGPURGE4res, +19:u03:DELEGRETURN4res, +15:u05:GETATTR4res, +13:u07:GETFH4res, +12:u08:LINK4res, +12:u07:opgetfh;, +19:u11:delegreturn4res, +15:u13:getattr4res, +18:u00:DELEGPURGE4res, +19:u02:DELEGRETURN4res, +15:u04:GETATTR4res, +13:u06:GETFH4res, +12:u06:opgetfh;, +19:u10:delegreturn4res, +15:u12:getattr4res, +13:u14:getfh4res, +19:u01:DELEGRETURN4res, +15:u03:GETATTR4res, +13:u05:GETFH4res, +12:u07:LINK4res, +12:u08:LOCK4res, +12:u05:opgetfh;, +15:u11:getattr4res, +13:u13:getfh4res, +19:u00:DELEGRETURN4res, +15:u02:GETATTR4res, +13:u04:GETFH4res, +12:u06:LINK4res, +12:u04:opgetfh;, +15:u10:getattr4res, +13:u12:getfh4res, +12:u14:link4res, +15:u01:GETATTR4res, +13:u03:GETFH4res, +12:u05:LINK4res, +12:u07:LOCK4res, +13:u08:LOCKT4res, +12:u03:opgetfh;, +13:u11:getfh4res, +12:u13:link4res, +15:u00:GETATTR4res, +13:u02:GETFH4res, +12:u04:LINK4res, +12:u06:LOCK4res, +12:u02:opgetfh;, +13:u10:getfh4res, +12:u12:link4res, +12:u14:lock4res, +13:u01:GETFH4res, +12:u03:LINK4res, +12:u05:LOCK4res, +13:u07:LOCKT4res, +13:u08:LOCKU4res, +12:u01:opgetfh;, +12:u11:link4res, +12:u13:lock4res, +13:u00:GETFH4res, +12:u02:LINK4res, +12:u04:LOCK4res, +13:u06:LOCKT4res, +12:u00:opgetfh;, +12:u10:link4res, +12:u12:lock4res, +13:u14:lockt4res, +12:u01:LINK4res, +12:u03:LOCK4res, +13:u05:LOCKT4res, +13:u07:LOCKU4res, +14:u08:LOOKUP4res, +12:u11:lock4res, +13:u13:lockt4res, +12:u00:LINK4res, +12:u02:LOCK4res, +13:u04:LOCKT4res, +13:u06:LOCKU4res, +12:u10:lock4res, +13:u12:lockt4res, +13:u14:locku4res, +12:u01:LOCK4res, +13:u03:LOCKT4res, +13:u05:LOCKU4res, +14:u07:LOOKUP4res, +15:u08:LOOKUPP4res, +13:u11:lockt4res, +13:u13:locku4res, +12:u00:LOCK4res, +13:u02:LOCKT4res, +13:u04:LOCKU4res, +14:u06:LOOKUP4res, +14:u08:oplookupp;, +13:u10:lockt4res, +13:u12:locku4res, +14:u14:lookup4res, +13:u01:LOCKT4res, +13:u03:LOCKU4res, +14:u05:LOOKUP4res, +15:u07:LOOKUPP4res, +15:u08:NVERIFY4res, +14:u07:oplookupp;, +13:u11:locku4res, +14:u13:lookup4res, +13:u00:LOCKT4res, +13:u02:LOCKU4res, +14:u04:LOOKUP4res, +15:u06:LOOKUPP4res, +14:u06:oplookupp;, +13:u10:locku4res, +14:u12:lookup4res, +15:u14:lookupp4res, +13:u01:LOCKU4res, +14:u03:LOOKUP4res, +15:u05:LOOKUPP4res, +15:u07:NVERIFY4res, +12:u08:OPEN4res, +14:u05:oplookupp;, +14:u11:lookup4res, +15:u13:lookupp4res, +13:u00:LOCKU4res, +14:u02:LOOKUP4res, +15:u04:LOOKUPP4res, +15:u06:NVERIFY4res, +14:u04:oplookupp;, +14:u10:lookup4res, +15:u12:lookupp4res, +15:u14:nverify4res, +14:u01:LOOKUP4res, +15:u03:LOOKUPP4res, +15:u05:NVERIFY4res, +12:u07:OPEN4res, +16:u08:OPENATTR4res, +14:u03:oplookupp;, +15:u11:lookupp4res, +15:u13:nverify4res, +14:u00:LOOKUP4res, +15:u02:LOOKUPP4res, +15:u04:NVERIFY4res, +12:u06:OPEN4res, +14:u02:oplookupp;, +15:u10:lookupp4res, +15:u12:nverify4res, +12:u14:open4res, +15:u01:LOOKUPP4res, +15:u03:NVERIFY4res, +12:u05:OPEN4res, +16:u07:OPENATTR4res, +14:u01:oplookupp;, +15:u11:nverify4res, +12:u13:open4res, +15:u00:LOOKUPP4res, +15:u02:NVERIFY4res, +12:u04:OPEN4res, +16:u06:OPENATTR4res, +14:u00:oplookupp;, +15:u10:nverify4res, +12:u12:open4res, +16:u14:openattr4res, +15:u01:NVERIFY4res, +12:u03:OPEN4res, +16:u05:OPENATTR4res, +12:u11:open4res, +16:u13:openattr4res, +15:u00:NVERIFY4res, +12:u02:OPEN4res, +16:u04:OPENATTR4res, +12:u10:open4res, +16:u12:openattr4res, +12:u01:OPEN4res, +16:u03:OPENATTR4res, +8:u08:418], +16:u11:openattr4res, +12:u00:OPEN4res, +16:u02:OPENATTR4res, +8:u07:418], +16:u10:openattr4res, +16:u01:OPENATTR4res, +8:u06:418], +16:u00:OPENATTR4res, +8:u05:418], +22:u08:OPEN_DOWNGRADE4res, +8:u04:418], +8:u03:418], +22:u07:OPEN_DOWNGRADE4res, +8:u02:418], +22:u06:OPEN_DOWNGRADE4res, +13:u08:PUTFH4res, +8:u01:418], +22:u14:open_downgrade4res, +22:u05:OPEN_DOWNGRADE4res, +8:u00:418], +22:u13:open_downgrade4res, +21:u14:opopen_downgrade;, +22:u04:OPEN_DOWNGRADE4res, +13:u07:PUTFH4res, +16:u08:PUTPUBFH4res, +22:u12:open_downgrade4res, +21:u13:opopen_downgrade;, +22:u03:OPEN_DOWNGRADE4res, +13:u06:PUTFH4res, +15:u08:opputpubfh;, +22:u11:open_downgrade4res, +21:u12:opopen_downgrade;, +13:u14:putfh4res, +7:u22:opo, +8:u23:opop, +22:u02:OPEN_DOWNGRADE4res, +13:u05:PUTFH4res, +16:u07:PUTPUBFH4res, +17:u08:PUTROOTFH4res, +15:u07:opputpubfh;, +22:u10:open_downgrade4res, +21:u11:opopen_downgrade;, +13:u13:putfh4res, +22:u01:OPEN_DOWNGRADE4res, +13:u04:PUTFH4res, +16:u06:PUTPUBFH4res, +15:u06:opputpubfh;, +16:u08:opputrootfh;, +21:u10:opopen_downgrade;, +13:u12:putfh4res, +16:u14:putpubfh4res, +22:u00:OPEN_DOWNGRADE4res, +13:u03:PUTFH4res, +16:u05:PUTPUBFH4res, +17:u07:PUTROOTFH4res, +12:u08:READ4res, +15:u05:opputpubfh;, +16:u07:opputrootfh;, +13:u11:putfh4res, +16:u13:putpubfh4res, +13:u02:PUTFH4res, +16:u04:PUTPUBFH4res, +17:u06:PUTROOTFH4res, +15:u04:opputpubfh;, +16:u06:opputrootfh;, +13:u10:putfh4res, +16:u12:putpubfh4res, +17:u14:putrootfh4res, +13:u01:PUTFH4res, +16:u03:PUTPUBFH4res, +17:u05:PUTROOTFH4res, +12:u07:READ4res, +15:u08:READDIR4res, +15:u03:opputpubfh;, +16:u05:opputrootfh;, +16:u11:putpubfh4res, +17:u13:putrootfh4res, +13:u00:PUTFH4res, +16:u02:PUTPUBFH4res, +17:u04:PUTROOTFH4res, +12:u06:READ4res, +15:u02:opputpubfh;, +16:u04:opputrootfh;, +16:u10:putpubfh4res, +17:u12:putrootfh4res, +12:u14:read4res, +8:u23:PUTR, +16:u01:PUTPUBFH4res, +17:u03:PUTROOTFH4res, +12:u05:READ4res, +15:u07:READDIR4res, +16:u08:READLINK4res, +15:u01:opputpubfh;, +16:u03:opputrootfh;, +17:u11:putrootfh4res, +12:u13:read4res, +16:u00:PUTPUBFH4res, +17:u02:PUTROOTFH4res, +12:u04:READ4res, +15:u06:READDIR4res, +15:u00:opputpubfh;, +16:u02:opputrootfh;, +15:u08:opreadlink;, +17:u10:putrootfh4res, +12:u12:read4res, +15:u14:readdir4res, +17:u01:PUTROOTFH4res, +12:u03:READ4res, +15:u05:READDIR4res, +16:u07:READLINK4res, +14:u08:REMOVE4res, +16:u01:opputrootfh;, +15:u07:opreadlink;, +12:u11:read4res, +15:u13:readdir4res, +17:u00:PUTROOTFH4res, +12:u02:READ4res, +15:u04:READDIR4res, +16:u06:READLINK4res, +16:u00:opputrootfh;, +15:u06:opreadlink;, +12:u10:read4res, +15:u12:readdir4res, +16:u14:readlink4res, +12:u01:READ4res, +15:u03:READDIR4res, +16:u05:READLINK4res, +14:u07:REMOVE4res, +14:u08:RENAME4res, +15:u05:opreadlink;, +15:u11:readdir4res, +16:u13:readlink4res, +12:u00:READ4res, +15:u02:READDIR4res, +16:u04:READLINK4res, +14:u06:REMOVE4res, +15:u04:opreadlink;, +15:u10:readdir4res, +16:u12:readlink4res, +14:u14:remove4res, +15:u01:READDIR4res, +16:u03:READLINK4res, +14:u05:REMOVE4res, +14:u07:RENAME4res, +15:u03:opreadlink;, +16:u11:readlink4res, +14:u13:remove4res, +15:u00:READDIR4res, +16:u02:READLINK4res, +14:u04:REMOVE4res, +14:u06:RENAME4res, +13:u08:RENEW4res, +15:u02:opreadlink;, +16:u10:readlink4res, +14:u12:remove4res, +14:u14:rename4res, +16:u01:READLINK4res, +14:u03:REMOVE4res, +14:u05:RENAME4res, +15:u01:opreadlink;, +14:u11:remove4res, +14:u13:rename4res, +16:u00:READLINK4res, +14:u02:REMOVE4res, +14:u04:RENAME4res, +13:u07:RENEW4res, +17:u08:RESTOREFH4res, +15:u00:opreadlink;, +14:u10:remove4res, +14:u12:rename4res, +14:u01:REMOVE4res, +14:u03:RENAME4res, +13:u06:RENEW4res, +16:u08:oprestorefh;, +14:u11:rename4res, +13:u14:renew4res, +14:u00:REMOVE4res, +14:u02:RENAME4res, +13:u05:RENEW4res, +17:u07:RESTOREFH4res, +14:u08:SAVEFH4res, +16:u07:oprestorefh;, +14:u10:rename4res, +13:u13:renew4res, +14:u01:RENAME4res, +13:u04:RENEW4res, +17:u06:RESTOREFH4res, +16:u06:oprestorefh;, +13:u08:opsavefh;, +13:u12:renew4res, +17:u14:restorefh4res, +14:u00:RENAME4res, +13:u03:RENEW4res, +17:u05:RESTOREFH4res, +14:u07:SAVEFH4res, +15:u08:SECINFO4res, +16:u05:oprestorefh;, +13:u07:opsavefh;, +13:u11:renew4res, +17:u13:restorefh4res, +13:u02:RENEW4res, +17:u04:RESTOREFH4res, +14:u06:SAVEFH4res, +16:u04:oprestorefh;, +13:u06:opsavefh;, +13:u10:renew4res, +17:u12:restorefh4res, +14:u14:savefh4res, +13:u01:RENEW4res, +17:u03:RESTOREFH4res, +14:u05:SAVEFH4res, +15:u07:SECINFO4res, +15:u08:SETATTR4res, +16:u03:oprestorefh;, +13:u05:opsavefh;, +17:u11:restorefh4res, +14:u13:savefh4res, +13:u00:RENEW4res, +17:u02:RESTOREFH4res, +14:u04:SAVEFH4res, +15:u06:SECINFO4res, +16:u02:oprestorefh;, +13:u04:opsavefh;, +17:u10:restorefh4res, +14:u12:savefh4res, +15:u14:secinfo4res, +6:u21:SA, +7:u22:SAV, +8:u23:SAVE, +17:u01:RESTOREFH4res, +14:u03:SAVEFH4res, +15:u05:SECINFO4res, +15:u07:SETATTR4res, +16:u01:oprestorefh;, +13:u03:opsavefh;, +14:u11:savefh4res, +15:u13:secinfo4res, +17:u00:RESTOREFH4res, +14:u02:SAVEFH4res, +15:u04:SECINFO4res, +15:u06:SETATTR4res, +16:u00:oprestorefh;, +13:u02:opsavefh;, +14:u10:savefh4res, +15:u12:secinfo4res, +15:u14:setattr4res, +14:u01:SAVEFH4res, +15:u03:SECINFO4res, +15:u05:SETATTR4res, +13:u01:opsavefh;, +15:u11:secinfo4res, +15:u13:setattr4res, +14:u00:SAVEFH4res, +15:u02:SECINFO4res, +15:u04:SETATTR4res, +27:u08:SETCLIENTID_CONFIRM4res, +13:u00:opsavefh;, +15:u10:secinfo4res, +15:u12:setattr4res, +15:u01:SECINFO4res, +15:u03:SETATTR4res, +15:u11:setattr4res, +15:u00:SECINFO4res, +15:u02:SETATTR4res, +27:u07:SETCLIENTID_CONFIRM4res, +15:u10:setattr4res, +15:u01:SETATTR4res, +27:u06:SETCLIENTID_CONFIRM4res, +14:u08:VERIFY4res, +27:u14:setclientid_confirm4res, +15:u00:SETATTR4res, +27:u05:SETCLIENTID_CONFIRM4res, +27:u13:setclientid_confirm4res, +27:u04:SETCLIENTID_CONFIRM4res, +14:u07:VERIFY4res, +13:u08:WRITE4res, +27:u12:setclientid_confirm4res, +8:u23:SETC, +27:u03:SETCLIENTID_CONFIRM4res, +14:u06:VERIFY4res, +27:u11:setclientid_confirm4res, +14:u14:verify4res, +27:u02:SETCLIENTID_CONFIRM4res, +14:u05:VERIFY4res, +13:u07:WRITE4res, +27:u10:setclientid_confirm4res, +14:u13:verify4res, +27:u01:SETCLIENTID_CONFIRM4res, +14:u04:VERIFY4res, +13:u06:WRITE4res, +25:u08:RELEASE_LOCKOWNER4res, +14:u12:verify4res, +13:u14:write4res, +27:u00:SETCLIENTID_CONFIRM4res, +14:u03:VERIFY4res, +13:u05:WRITE4res, +14:u11:verify4res, +13:u13:write4res, +14:u02:VERIFY4res, +13:u04:WRITE4res, +25:u07:RELEASE_LOCKOWNER4res, +14:u10:verify4res, +13:u12:write4res, +14:u01:VERIFY4res, +13:u03:WRITE4res, +25:u06:RELEASE_LOCKOWNER4res, +13:u11:write4res, +25:u14:release_lockowner4res, +14:u00:VERIFY4res, +13:u02:WRITE4res, +25:u05:RELEASE_LOCKOWNER4res, +23:u08:BACKCHANNEL_CTL4res, +13:u10:write4res, +25:u13:release_lockowner4res, +13:u01:WRITE4res, +25:u04:RELEASE_LOCKOWNER4res, +25:u12:release_lockowner4res, +13:u00:WRITE4res, +25:u03:RELEASE_LOCKOWNER4res, +23:u07:BACKCHANNEL_CTL4res, +25:u11:release_lockowner4res, +25:u02:RELEASE_LOCKOWNER4res, +23:u06:BACKCHANNEL_CTL4res, +28:u08:BIND_CONN_TO_SESSION4res, +25:u10:release_lockowner4res, +23:u14:backchannel_ctl4res, +25:u01:RELEASE_LOCKOWNER4res, +23:u05:BACKCHANNEL_CTL4res, +23:u13:backchannel_ctl4res, +22:u14:opbackchannel_ctl;, +25:u00:RELEASE_LOCKOWNER4res, +23:u04:BACKCHANNEL_CTL4res, +28:u07:BIND_CONN_TO_SESSION4res, +23:u12:backchannel_ctl4res, +22:u13:opbackchannel_ctl;, +23:u03:BACKCHANNEL_CTL4res, +28:u06:BIND_CONN_TO_SESSION4res, +19:u08:EXCHANGE_ID4res, +23:u11:backchannel_ctl4res, +22:u12:opbackchannel_ctl;, +28:u14:bind_conn_to_session4res, +8:u23:opba, +23:u02:BACKCHANNEL_CTL4res, +28:u05:BIND_CONN_TO_SESSION4res, +23:u10:backchannel_ctl4res, +22:u11:opbackchannel_ctl;, +28:u13:bind_conn_to_session4res, +23:u01:BACKCHANNEL_CTL4res, +28:u04:BIND_CONN_TO_SESSION4res, +19:u07:EXCHANGE_ID4res, +22:u08:CREATE_SESSION4res, +22:u10:opbackchannel_ctl;, +28:u12:bind_conn_to_session4res, +23:u00:BACKCHANNEL_CTL4res, +28:u03:BIND_CONN_TO_SESSION4res, +19:u06:EXCHANGE_ID4res, +28:u11:bind_conn_to_session4res, +19:u14:exchange_id4res, +28:u02:BIND_CONN_TO_SESSION4res, +19:u05:EXCHANGE_ID4res, +22:u07:CREATE_SESSION4res, +28:u10:bind_conn_to_session4res, +19:u13:exchange_id4res, +28:u01:BIND_CONN_TO_SESSION4res, +19:u04:EXCHANGE_ID4res, +22:u06:CREATE_SESSION4res, +19:u12:exchange_id4res, +22:u14:create_session4res, +28:u00:BIND_CONN_TO_SESSION4res, +19:u03:EXCHANGE_ID4res, +22:u05:CREATE_SESSION4res, +19:u11:exchange_id4res, +22:u13:create_session4res, +21:u14:opcreate_session;, +19:u02:EXCHANGE_ID4res, +22:u04:CREATE_SESSION4res, +8:u08:419], +19:u10:exchange_id4res, +22:u12:create_session4res, +21:u13:opcreate_session;, +19:u01:EXCHANGE_ID4res, +22:u03:CREATE_SESSION4res, +8:u07:419], +22:u11:create_session4res, +21:u12:opcreate_session;, +7:u22:opc, +8:u23:opcr, +19:u00:EXCHANGE_ID4res, +22:u02:CREATE_SESSION4res, +8:u06:419], +22:u10:create_session4res, +21:u11:opcreate_session;, +22:u01:CREATE_SESSION4res, +8:u05:419], +21:u10:opcreate_session;, +22:u00:CREATE_SESSION4res, +23:u08:DESTROY_SESSION4res, +8:u04:419], +8:u03:419], +23:u07:DESTROY_SESSION4res, +8:u02:419], +23:u06:DESTROY_SESSION4res, +19:u08:opfree_stateid;, +8:u01:419], +23:u14:destroy_session4res, +23:u05:DESTROY_SESSION4res, +8:u00:419], +23:u13:destroy_session4res, +22:u14:opdestroy_session;, +23:u04:DESTROY_SESSION4res, +19:u07:opfree_stateid;, +26:u08:GET_DIR_DELEGATION4res, +23:u12:destroy_session4res, +22:u13:opdestroy_session;, +23:u03:DESTROY_SESSION4res, +19:u06:opfree_stateid;, +23:u11:destroy_session4res, +22:u12:opdestroy_session;, +19:u14:opfree_stateid;, +23:u02:DESTROY_SESSION4res, +19:u05:opfree_stateid;, +26:u07:GET_DIR_DELEGATION4res, +23:u10:destroy_session4res, +22:u11:opdestroy_session;, +19:u13:opfree_stateid;, +23:u01:DESTROY_SESSION4res, +19:u04:opfree_stateid;, +26:u06:GET_DIR_DELEGATION4res, +20:u08:opgetdeviceinfo;, +22:u10:opdestroy_session;, +19:u12:opfree_stateid;, +26:u14:get_dir_delegation4res, +7:u22:opf, +8:u23:opfr, +23:u00:DESTROY_SESSION4res, +19:u03:opfree_stateid;, +26:u05:GET_DIR_DELEGATION4res, +19:u11:opfree_stateid;, +26:u13:get_dir_delegation4res, +19:u02:opfree_stateid;, +26:u04:GET_DIR_DELEGATION4res, +20:u07:opgetdeviceinfo;, +20:u08:opgetdevicelist;, +19:u10:opfree_stateid;, +26:u12:get_dir_delegation4res, +19:u01:opfree_stateid;, +26:u03:GET_DIR_DELEGATION4res, +20:u06:opgetdeviceinfo;, +26:u11:get_dir_delegation4res, +20:u14:opgetdeviceinfo;, +19:u00:opfree_stateid;, +26:u02:GET_DIR_DELEGATION4res, +20:u05:opgetdeviceinfo;, +20:u07:opgetdevicelist;, +26:u10:get_dir_delegation4res, +20:u13:opgetdeviceinfo;, +26:u01:GET_DIR_DELEGATION4res, +20:u04:opgetdeviceinfo;, +20:u06:opgetdevicelist;, +17:u08:LAYOUTGET4res, +20:u12:opgetdeviceinfo;, +20:u14:opgetdevicelist;, +26:u00:GET_DIR_DELEGATION4res, +20:u03:opgetdeviceinfo;, +20:u05:opgetdevicelist;, +20:u11:opgetdeviceinfo;, +20:u13:opgetdevicelist;, +20:u02:opgetdeviceinfo;, +20:u04:opgetdevicelist;, +17:u07:LAYOUTGET4res, +20:u10:opgetdeviceinfo;, +20:u12:opgetdevicelist;, +20:u01:opgetdeviceinfo;, +20:u03:opgetdevicelist;, +17:u06:LAYOUTGET4res, +23:u08:SECINFO_NO_NAME4res, +20:u11:opgetdevicelist;, +17:u14:layoutget4res, +20:u00:opgetdeviceinfo;, +20:u02:opgetdevicelist;, +17:u05:LAYOUTGET4res, +20:u10:opgetdevicelist;, +17:u13:layoutget4res, +20:u01:opgetdevicelist;, +17:u04:LAYOUTGET4res, +23:u07:SECINFO_NO_NAME4res, +17:u12:layoutget4res, +20:u00:opgetdevicelist;, +17:u03:LAYOUTGET4res, +23:u06:SECINFO_NO_NAME4res, +16:u08:SEQUENCE4res, +17:u11:layoutget4res, +23:u14:secinfo_no_name4res, +17:u02:LAYOUTGET4res, +23:u05:SECINFO_NO_NAME4res, +17:u10:layoutget4res, +23:u13:secinfo_no_name4res, +22:u14:opsecinfo_no_name;, +17:u01:LAYOUTGET4res, +23:u04:SECINFO_NO_NAME4res, +16:u07:SEQUENCE4res, +15:u08:SET_SSV4res, +23:u12:secinfo_no_name4res, +22:u13:opsecinfo_no_name;, +17:u00:LAYOUTGET4res, +23:u03:SECINFO_NO_NAME4res, +16:u06:SEQUENCE4res, +23:u11:secinfo_no_name4res, +22:u12:opsecinfo_no_name;, +16:u14:sequence4res, +23:u02:SECINFO_NO_NAME4res, +16:u05:SEQUENCE4res, +15:u07:SET_SSV4res, +23:u10:secinfo_no_name4res, +22:u11:opsecinfo_no_name;, +16:u13:sequence4res, +23:u01:SECINFO_NO_NAME4res, +16:u04:SEQUENCE4res, +15:u06:SET_SSV4res, +23:u08:WANT_DELEGATION4res, +22:u10:opsecinfo_no_name;, +16:u12:sequence4res, +15:u14:set_ssv4res, +23:u00:SECINFO_NO_NAME4res, +16:u03:SEQUENCE4res, +15:u05:SET_SSV4res, +16:u11:sequence4res, +15:u13:set_ssv4res, +16:u02:SEQUENCE4res, +15:u04:SET_SSV4res, +23:u07:WANT_DELEGATION4res, +16:u10:sequence4res, +15:u12:set_ssv4res, +16:u01:SEQUENCE4res, +15:u03:SET_SSV4res, +23:u06:WANT_DELEGATION4res, +24:u08:DESTROY_CLIENTID4res, +15:u11:set_ssv4res, +23:u14:want_delegation4res, +16:u00:SEQUENCE4res, +15:u02:SET_SSV4res, +23:u05:WANT_DELEGATION4res, +15:u10:set_ssv4res, +23:u13:want_delegation4res, +22:u14:opwant_delegation;, +15:u01:SET_SSV4res, +23:u04:WANT_DELEGATION4res, +24:u07:DESTROY_CLIENTID4res, +23:u12:want_delegation4res, +22:u13:opwant_delegation;, +15:u00:SET_SSV4res, +23:u03:WANT_DELEGATION4res, +24:u06:DESTROY_CLIENTID4res, +24:u08:RECLAIM_COMPLETE4res, +23:u11:want_delegation4res, +22:u12:opwant_delegation;, +24:u14:destroy_clientid4res, +7:u22:opw, +8:u23:opwa, +23:u02:WANT_DELEGATION4res, +24:u05:DESTROY_CLIENTID4res, +23:u10:want_delegation4res, +22:u11:opwant_delegation;, +24:u13:destroy_clientid4res, +23:u01:WANT_DELEGATION4res, +24:u04:DESTROY_CLIENTID4res, +24:u07:RECLAIM_COMPLETE4res, +22:u10:opwant_delegation;, +24:u12:destroy_clientid4res, +23:u00:WANT_DELEGATION4res, +24:u03:DESTROY_CLIENTID4res, +24:u06:RECLAIM_COMPLETE4res, +24:u11:destroy_clientid4res, +24:u14:reclaim_complete4res, +24:u02:DESTROY_CLIENTID4res, +24:u05:RECLAIM_COMPLETE4res, +15:u08:ILLEGAL4res, +24:u10:destroy_clientid4res, +24:u13:reclaim_complete4res, +24:u01:DESTROY_CLIENTID4res, +24:u04:RECLAIM_COMPLETE4res, +14:u08:opillegal;, +24:u12:reclaim_complete4res, +24:u00:DESTROY_CLIENTID4res, +24:u03:RECLAIM_COMPLETE4res, +15:u07:ILLEGAL4res, +14:u07:opillegal;, +24:u11:reclaim_complete4res, +24:u02:RECLAIM_COMPLETE4res, +15:u06:ILLEGAL4res, +14:u06:opillegal;, +24:u10:reclaim_complete4res, +15:u14:illegal4res, +24:u01:RECLAIM_COMPLETE4res, +15:u05:ILLEGAL4res, +14:u05:opillegal;, +15:u13:illegal4res, +24:u00:RECLAIM_COMPLETE4res, +15:u04:ILLEGAL4res, +14:u04:opillegal;, +8:u08:420], +15:u12:illegal4res, +6:u21:IL, +7:u22:ILL, +8:u23:ILLE, +15:u03:ILLEGAL4res, +14:u03:opillegal;, +8:u07:420], +15:u11:illegal4res, +15:u02:ILLEGAL4res, +14:u02:opillegal;, +8:u06:420], +15:u10:illegal4res, +15:u01:ILLEGAL4res, +14:u01:opillegal;, +8:u05:420], +15:u00:ILLEGAL4res, +14:u00:opillegal;, +8:u04:420], +16:u08:COMPOUND4res, +11:u08:status;, +8:u03:420], +16:u07:COMPOUND4res, +8:u02:420], +16:u06:COMPOUND4res, +11:u07:status;, +8:u01:420], +16:u05:COMPOUND4res, +12:u14:nfsstat4, +11:u06:status;, +8:u00:420], +16:u04:COMPOUND4res, +12:u13:nfsstat4, +11:u14:status;, +11:u05:status;, +15:u08:resarray<>;, +16:u03:COMPOUND4res, +12:u12:nfsstat4, +11:u13:status;, +8:u23:nfss, +11:u04:status;, +16:u02:COMPOUND4res, +12:u11:nfsstat4, +11:u12:status;, +11:u03:status;, +15:u07:resarray<>;, +11:u08:16.2.3., +16:u01:COMPOUND4res, +12:u10:nfsstat4, +11:u11:status;, +14:u14:nfs_resop4, +11:u02:status;, +15:u06:resarray<>;, +16:u00:COMPOUND4res, +11:u10:status;, +14:u13:nfs_resop4, +15:u14:resarray<>;, +11:u01:status;, +15:u05:resarray<>;, +11:u07:16.2.3., +14:u12:nfs_resop4, +15:u13:resarray<>;, +11:u00:status;, +15:u04:resarray<>;, +11:u06:16.2.3., +14:u11:nfs_resop4, +15:u12:resarray<>;, +11:u14:16.2.3., +8:u23:resa, +15:u03:resarray<>;, +11:u05:16.2.3., +14:u10:nfs_resop4, +15:u11:resarray<>;, +11:u13:16.2.3., +15:u02:resarray<>;, +11:u04:16.2.3., +15:u10:resarray<>;, +11:u12:16.2.3., +15:u01:resarray<>;, +11:u03:16.2.3., +11:u11:16.2.3., +15:u00:resarray<>;, +11:u02:16.2.3., +11:u10:16.2.3., +11:u01:16.2.3., +11:u00:16.2.3., +11:u08:decode., +10:u08:decode, +11:u07:decode., +11:u06:decode., +10:u07:decode, +11:u14:decode., +7:uI2:'.-, +11:u05:decode., +10:u06:decode, +11:u13:decode., +10:u14:decode, +7:uI1:'.-, +11:u04:decode., +10:u05:decode, +11:u12:decode., +10:u13:decode, +8:u23:deco, +7:uI0:'.-, +11:u03:decode., +10:u04:decode, +11:u11:decode., +10:u12:decode, +11:u02:decode., +10:u03:decode, +11:u10:decode., +10:u11:decode, +11:u01:decode., +10:u02:decode, +10:u10:decode, +11:u00:decode., +10:u01:decode, +10:u00:decode, +15:u08:zero-length, +9:uI2:""..,, +13:u08:Contained, +14:u08:resultdata, +9:uI1:""..,, +15:u07:zero-length, +14:u07:resultdata, +9:uI0:""..,, +15:u06:zero-length, +13:u07:Contained, +14:u06:resultdata, +15:u14:zero-length, +15:u05:zero-length, +13:u06:Contained, +14:u05:resultdata, +15:u13:zero-length, +13:u14:contained, +15:u04:zero-length, +13:u05:Contained, +14:u04:resultdata, +15:u12:zero-length, +13:u13:contained, +15:u03:zero-length, +13:u04:Contained, +14:u03:resultdata, +15:u11:zero-length, +13:u12:contained, +15:u02:zero-length, +13:u03:Contained, +14:u02:resultdata, +15:u10:zero-length, +13:u11:contained, +15:u01:zero-length, +13:u02:Contained, +14:u01:resultdata, +13:u10:contained, +15:u00:zero-length, +13:u01:Contained, +14:u00:resultdata, +13:u00:Contained, +8:u08:421], +8:u07:421], +8:u06:421], +8:u05:421], +8:u04:421], +8:u03:421], +8:u02:421], +8:u01:421], +8:u00:421], +11:u08:errors., +11:u07:errors., +31:u14:nfs4err_minor_vers_mismatch, +11:u06:errors., +31:u13:nfs4err_minor_vers_mismatch, +11:u14:errors., +11:u05:errors., +31:u12:nfs4err_minor_vers_mismatch, +11:u13:errors., +11:u04:errors., +31:u11:nfs4err_minor_vers_mismatch, +11:u12:errors., +11:u03:errors., +31:u10:nfs4err_minor_vers_mismatch, +11:u11:errors., +11:u14:greater, +11:u02:errors., +11:u10:errors., +11:u13:greater, +11:u01:errors., +15:u08:procedure's, +11:u12:greater, +7:u22:gre, +8:u23:grea, +11:u00:errors., +16:u08:implementor., +15:u07:procedure's, +11:u11:greater, +15:u06:procedure's, +11:u10:greater, +16:u07:implementor., +15:u05:procedure's, +16:u06:implementor., +15:u04:procedure's, +16:u14:implementor., +16:u05:implementor., +15:u03:procedure's, +16:u13:implementor., +16:u04:implementor., +13:u08:16.2.3.1., +15:u02:procedure's, +16:u12:implementor., +20:u14:implementations., +16:u03:implementor., +15:u01:procedure's, +11:u08:Current, +16:u11:implementor., +20:u13:implementations., +16:u02:implementor., +13:u07:16.2.3.1., +15:u00:procedure's, +11:u07:Current, +16:u10:implementor., +20:u12:implementations., +7:u14:tag, +16:u01:implementor., +13:u06:16.2.3.1., +11:u06:Current, +20:u11:implementations., +7:u13:tag, +13:u14:16.2.3.1., +16:u00:implementor., +13:u05:16.2.3.1., +15:u08:16.2.3.1.1., +11:u05:Current, +20:u10:implementations., +7:u12:tag, +13:u13:16.2.3.1., +7:u23:tag, +13:u04:16.2.3.1., +11:u04:Current, +7:u11:tag, +13:u12:16.2.3.1., +13:u03:16.2.3.1., +15:u07:16.2.3.1.1., +11:u03:Current, +7:u10:tag, +13:u11:16.2.3.1., +13:u02:16.2.3.1., +15:u06:16.2.3.1.1., +11:u02:Current, +13:u10:16.2.3.1., +15:u14:16.2.3.1.1., +13:u01:16.2.3.1., +15:u05:16.2.3.1.1., +11:u01:Current, +15:u13:16.2.3.1.1., +13:u00:16.2.3.1., +15:u04:16.2.3.1.1., +11:u00:Current, +15:u12:16.2.3.1.1., +15:u03:16.2.3.1.1., +15:u11:16.2.3.1.1., +15:u02:16.2.3.1.1., +16:u08:flexibility., +15:u10:16.2.3.1.1., +15:u01:16.2.3.1.1., +16:u07:flexibility., +15:u00:16.2.3.1.1., +16:u06:flexibility., +16:u05:flexibility., +16:u04:flexibility., +8:u08:422], +16:u03:flexibility., +8:u07:422], +16:u02:flexibility., +8:u06:422], +16:u01:flexibility., +8:u05:422], +9:u08:{fh1}, +16:u00:flexibility., +8:u04:422], +7:u08:fh1, +8:u03:422], +7:u07:fh1, +9:u07:{fh1}, +9:u08:{fh2}, +8:u02:422], +7:u06:fh1, +11:u08:"compA", +9:u14:putfh, +9:u06:{fh1}, +8:u01:422], +7:u05:fh1, +11:u07:"compA", +9:u13:putfh, +9:u14:{fh1}, +9:u05:{fh1}, +9:u07:{fh2}, +8:u00:422], +7:u04:fh1, +11:u06:"compA", +9:u12:putfh, +9:u13:{fh1}, +9:u04:{fh1}, +9:u06:{fh2}, +7:u03:fh1, +11:u05:"compA", +9:u11:putfh, +9:u12:{fh1}, +9:u14:{fh2}, +6:u21:{f, +7:u22:{fh, +8:u23:{fh1, +9:u03:{fh1}, +9:u05:{fh2}, +9:u08:{fh3}, +7:u02:fh1, +11:u04:"compA", +11:u08:"compB", +9:u10:putfh, +9:u11:{fh1}, +9:u13:{fh2}, +9:u02:{fh1}, +9:u04:{fh2}, +7:u01:fh1, +11:u03:"compA", +11:u07:"compB", +9:u10:{fh1}, +9:u12:{fh2}, +8:u23:{fh2, +9:u01:{fh1}, +9:u03:{fh2}, +9:u07:{fh3}, +7:u00:fh1, +11:u02:"compA", +11:u06:"compB", +9:u11:{fh2}, +9:u00:{fh1}, +9:u02:{fh2}, +9:u06:{fh3}, +11:u01:"compA", +11:u05:"compB", +9:u10:{fh2}, +9:u14:{fh3}, +9:u01:{fh2}, +9:u05:{fh3}, +9:u08:{fh4}, +11:u00:"compA", +11:u04:"compB", +11:u08:"compC", +9:u13:{fh3}, +9:u00:{fh2}, +9:u04:{fh3}, +11:u03:"compB", +11:u07:"compC", +9:u12:{fh3}, +8:u23:{fh3, +9:u03:{fh3}, +9:u07:{fh4}, +11:u02:"compB", +11:u06:"compC", +9:u11:{fh3}, +9:u02:{fh3}, +9:u06:{fh4}, +11:u01:"compB", +11:u05:"compC", +9:u10:{fh3}, +9:u14:{fh4}, +9:u01:{fh3}, +9:u05:{fh4}, +11:u00:"compB", +11:u04:"compC", +9:u13:{fh4}, +9:u00:{fh3}, +9:u04:{fh4}, +11:u03:"compC", +9:u12:{fh4}, +8:u23:{fh4, +9:u03:{fh4}, +11:u02:"compC", +9:u11:{fh4}, +9:u02:{fh4}, +11:u01:"compC", +9:u10:{fh4}, +9:u01:{fh4}, +11:u00:"compC", +9:u00:{fh4}, +10:u08:"PUTFH, +8:u08:fh1", +10:u07:"PUTFH, +8:u07:fh1", +10:uI2:(.)(.), +10:u06:"PUTFH, +9:u08:Along, +8:u06:fh1", +10:u14:"putfh, +10:uI1:(.)(.), +10:u05:"PUTFH, +8:u05:fh1", +10:u13:"putfh, +10:uI0:(.)(.), +10:u04:"PUTFH, +9:u07:Along, +8:u04:fh1", +10:u12:"putfh, +6:u21:"P, +7:u22:"PU, +8:u23:"PUT, +10:u03:"PUTFH, +9:u06:Along, +8:u03:fh1", +10:u11:"putfh, +10:u02:"PUTFH, +9:u05:Along, +8:u02:fh1", +10:u10:"putfh, +10:u01:"PUTFH, +9:u04:Along, +8:u01:fh1", +11:u14:lookup,, +7:u22:Alo, +8:u23:Alon, +10:u00:"PUTFH, +9:u03:Along, +8:u00:fh1", +11:u13:lookup,, +10:u14:savefh, +9:u02:Along, +11:u12:lookup,, +10:u13:savefh, +9:u01:Along, +11:u11:lookup,, +10:u12:savefh, +9:u00:Along, +11:u10:lookup,, +10:u11:savefh, +15:u08:16.2.3.1.2., +10:u10:savefh, +15:u07:16.2.3.1.2., +15:u06:16.2.3.1.2., +11:u08:passing, +15:u14:16.2.3.1.2., +15:u05:16.2.3.1.2., +15:u13:16.2.3.1.2., +15:u04:16.2.3.1.2., +11:u07:passing, +15:u12:16.2.3.1.2., +15:u03:16.2.3.1.2., +11:u06:passing, +15:u11:16.2.3.1.2., +11:u14:passing, +15:u02:16.2.3.1.2., +11:u05:passing, +12:u08:"current, +15:u10:16.2.3.1.2., +11:u13:passing, +10:u14:syntax, +15:u01:16.2.3.1.2., +11:u04:passing, +12:u07:"current, +11:u12:passing, +10:u13:syntax, +15:u00:16.2.3.1.2., +11:u03:passing, +12:u06:"current, +11:u11:passing, +10:u12:syntax, +8:u23:synt, +11:u02:passing, +12:u05:"current, +11:u10:passing, +10:u11:syntax, +11:u01:passing, +12:u04:"current, +10:u10:syntax, +11:u00:passing, +12:u03:"current, +12:u02:"current, +12:u01:"current, +12:u00:"current, +8:u08:423], +8:u07:423], +8:u06:423], +13:u08:all-zeros, +8:u05:423], +8:u04:423], +13:u07:all-zeros, +8:u03:423], +13:u06:all-zeros, +8:u02:423], +13:u14:all-zeros, +13:u05:all-zeros, +8:u01:423], +14:u08:PUTROOTFH,, +13:u13:all-zeros, +16:uI2:-,..,(,)(,)., +13:u04:all-zeros, +8:u00:423], +14:u07:PUTROOTFH,, +10:u08:{ocfh,, +13:u12:all-zeros, +8:u23:all-, +16:uI1:-,..,(,)(,)., +13:u03:all-zeros, +14:u06:PUTROOTFH,, +10:u07:{ocfh,, +13:u11:all-zeros, +16:uI0:-,..,(,)(,)., +13:u02:all-zeros, +14:u05:PUTROOTFH,, +10:u06:{ocfh,, +13:u10:all-zeros, +13:u01:all-zeros, +14:u04:PUTROOTFH,, +10:u05:{ocfh,, +12:uI2:,(),(,),, +13:u00:all-zeros, +14:u03:PUTROOTFH,, +10:u04:{ocfh,, +12:uI1:,(),(,),, +10:uI2:,(,()., +14:u02:PUTROOTFH,, +10:u03:{ocfh,, +12:uI0:,(),(,),, +10:uI1:,(,()., +14:u01:PUTROOTFH,, +10:u02:{ocfh,, +10:uI0:,(,()., +14:u00:PUTROOTFH,, +10:u01:{ocfh,, +10:u00:{ocfh,, +9:u08:{fh1,, +10:uI2:(,).(), +9:u07:{fh1,, +11:u08:(sid1),, +10:uI1:(,).(), +9:u06:{fh1,, +11:u07:(sid1),, +7:u08:(0,, +10:uI0:(,).(), +9:u05:{fh1,, +11:u06:(sid1),, +7:u07:(0,, +10:uI2:--,(,), +9:u04:{fh1,, +11:u05:(sid1),, +7:u06:(0,, +9:u14:{fh1,, +10:uI1:--,(,), +9:u03:{fh1,, +11:u04:(sid1),, +7:u05:(0,, +13:u08:generates, +9:u13:{fh1,, +10:uI0:--,(,), +13:uI2:,(,)-,(,), +9:u02:{fh1,, +11:u03:(sid1),, +7:u04:(0,, +13:u07:generates, +9:u12:{fh1,, +13:uI1:,(,)-,(,), +9:u01:{fh1,, +11:u02:(sid1),, +7:u03:(0,, +13:u06:generates, +7:u08:(1,, +9:u11:{fh1,, +13:uI0:,(,)-,(,), +9:u00:{fh1,, +11:u01:(sid1),, +7:u02:(0,, +13:u05:generates, +7:u07:(1,, +9:u10:{fh1,, +11:u00:(sid1),, +7:u01:(0,, +13:u04:generates, +7:u06:(1,, +7:u00:(0,, +13:u03:generates, +7:u05:(1,, +12:u14:actually, +13:u02:generates, +7:u04:(1,, +12:u13:actually, +13:u01:generates, +7:u03:(1,, +12:u12:actually, +13:u14:putrootfh, +13:u00:generates, +7:u02:(1,, +12:u11:actually, +13:u13:putrootfh, +9:u08:{fh2,, +7:u01:(1,, +12:u10:actually, +13:u12:putrootfh, +7:u00:(1,, +11:u08:(sid1)}, +13:u11:putrootfh, +9:u07:{fh2,, +11:u07:(sid1)}, +13:u10:putrootfh, +12:uI2:,(,)-,(), +9:u06:{fh2,, +11:u06:(sid1)}, +9:u14:{fh2,, +12:uI1:,(,)-,(), +9:uI2:(,),,, +9:u05:{fh2,, +11:u05:(sid1)}, +9:u13:{fh2,, +12:uI0:,(,)-,(), +9:uI1:(,),,, +11:uI2:,()-,(), +9:u04:{fh2,, +11:u04:(sid1)}, +9:u12:{fh2,, +9:uI0:(,),,, +11:uI1:,()-,(), +9:u03:{fh2,, +11:u03:(sid1)}, +8:u08:sid2, +9:u11:{fh2,, +11:uI0:,()-,(), +9:u02:{fh2,, +5:u08:O, +11:u02:(sid1)}, +8:u07:sid2, +9:u10:{fh2,, +9:u01:{fh2,, +15:u08:correctness, +11:u01:(sid1)}, +8:u06:sid2, +9:u00:{fh2,, +5:u07:O, +11:u00:(sid1)}, +8:u05:sid2, +5:u06:O, +15:u07:correctness, +8:u04:sid2, +5:u05:O, +15:u06:correctness, +8:u03:sid2, +15:u14:correctness, +5:u04:O, +15:u05:correctness, +8:u02:sid2, +15:u13:correctness, +5:u21:O, +5:u22:O, +5:u23:O, +5:u03:O, +15:u04:correctness, +8:u01:sid2, +15:u12:correctness, +5:u02:O, +15:u03:correctness, +8:u00:sid2, +15:u11:correctness, +5:u01:O, +15:u02:correctness, +8:u08:424], +15:u10:correctness, +5:u00:O, +15:u01:correctness, +8:u07:424], +15:u00:correctness, +8:u06:424], +8:u05:424], +8:u04:424], +8:u03:424], +8:u02:424], +8:u01:424], +8:u00:424], +11:u08:(sid2)}, +11:u07:(sid2)}, +11:u06:(sid2)}, +11:u05:(sid2)}, +11:u04:(sid2)}, +11:u08:(sid3)}, +9:uI2:,,(,), +11:u03:(sid2)}, +11:u07:(sid3)}, +7:u08:fh2, +9:uI1:,,(,), +11:u02:(sid2)}, +11:u06:(sid3)}, +7:u07:fh2, +9:uI0:,,(,), +11:u01:(sid2)}, +11:u05:(sid3)}, +7:u06:fh2, +11:u00:(sid2)}, +11:u04:(sid3)}, +7:u05:fh2, +11:u03:(sid3)}, +7:u04:fh2, +12:uI2:,()-,(,), +11:u02:(sid3)}, +7:u03:fh2, +12:uI1:,()-,(,), +11:u01:(sid3)}, +7:u02:fh2, +12:uI0:,()-,(,), +11:u00:(sid3)}, +7:u01:fh2, +7:u00:fh2, +10:u08:(0,0),, +10:u07:(0,0),, +10:u06:(0,0),, +10:u14:(0,0),, +10:u05:(0,0),, +10:u13:(0,0),, +9:uI2:(,),., +10:u04:(0,0),, +10:u12:(0,0),, +7:u22:(0,, +8:u23:(0,0, +9:uI1:(,),., +10:u03:(0,0),, +10:u11:(0,0),, +9:uI0:(,),., +10:u02:(0,0),, +11:u08:16.2.4., +10:u10:(0,0),, +10:u01:(0,0),, +10:u00:(0,0),, +11:u07:16.2.4., +9:uI2:,(,)-, +11:u06:16.2.4., +11:u14:16.2.4., +9:uI1:,(,)-, +11:u05:16.2.4., +11:u13:16.2.4., +9:uI0:,(,)-, +11:u04:16.2.4., +11:u12:16.2.4., +8:u14:fore, +11:u03:16.2.4., +11:u11:16.2.4., +8:u13:fore, +11:u02:16.2.4., +11:u10:16.2.4., +8:u12:fore, +8:u23:fore, +11:u01:16.2.4., +8:u11:fore, +11:u00:16.2.4., +8:u08:425], +8:u10:fore, +8:u07:425], +8:u06:425], +8:u05:425], +73:u08:+------------------------------+------------------------------------+, +8:u04:425], +8:u03:425], +73:u07:+------------------------------+------------------------------------+, +8:u02:425], +73:u06:+------------------------------+------------------------------------+, +8:u01:425], +73:u14:+------------------------------+------------------------------------+, +73:u05:+------------------------------+------------------------------------+, +8:u00:425], +73:u13:+------------------------------+------------------------------------+, +73:u04:+------------------------------+------------------------------------+, +73:u12:+------------------------------+------------------------------------+, +73:u03:+------------------------------+------------------------------------+, +73:u11:+------------------------------+------------------------------------+, +73:u02:+------------------------------+------------------------------------+, +73:u10:+------------------------------+------------------------------------+, +73:u01:+------------------------------+------------------------------------+, +73:u00:+------------------------------+------------------------------------+, +13:u08:encoding., +13:u07:encoding., +13:u06:encoding., +13:u05:encoding., +13:u04:encoding., +13:u03:encoding., +13:u02:encoding., +13:u01:encoding., +13:u00:encoding., +8:uI2:.:,,, +11:u08:NFSv4.0, +8:uI1:.:,,, +8:uI0:.:,,, +11:u07:NFSv4.0, +11:u06:NFSv4.0, +11:u14:nfsv4.0, +11:u05:NFSv4.0, +11:u13:nfsv4.0, +11:u04:NFSv4.0, +11:u12:nfsv4.0, +11:u03:NFSv4.0, +11:u11:nfsv4.0, +11:u02:NFSv4.0, +11:u10:nfsv4.0, +11:u01:NFSv4.0, +11:u00:NFSv4.0, +8:u08:426], +8:u07:426], +8:u06:426], +8:u05:426], +8:u04:426], +16:u08:descriptions, +8:u03:426], +16:u07:descriptions, +15:u08:explanatory, +8:u02:426], +16:u06:descriptions, +15:u07:explanatory, +17:u08:abbreviations, +7:u08:REQ, +8:u01:426], +16:u05:descriptions, +15:u06:explanatory, +17:u07:abbreviations, +12:u14:relevant, +7:u08:REC, +8:u00:426], +16:u04:descriptions, +15:u05:explanatory, +17:u06:abbreviations, +12:u13:relevant, +7:u07:REQ, +7:u08:OPT, +16:u03:descriptions, +15:u04:explanatory, +17:u05:abbreviations, +13:u08:RECOMMEND, +12:u12:relevant, +7:u06:REQ, +7:u07:REC, +7:u08:MNI, +16:u02:descriptions, +15:u03:explanatory, +17:u04:abbreviations, +13:u07:RECOMMEND, +12:u11:relevant, +7:u14:req, +7:u05:REQ, +7:u06:REC, +7:u07:OPT, +16:u01:descriptions, +15:u02:explanatory, +17:u03:abbreviations, +13:u06:RECOMMEND, +12:u10:relevant, +7:u13:req, +7:u14:rec, +7:u04:REQ, +7:u05:REC, +7:u06:OPT, +7:u07:MNI, +16:u00:descriptions, +15:u01:explanatory, +17:u02:abbreviations, +13:u05:RECOMMEND, +7:u12:req, +7:u13:rec, +7:u14:opt, +7:u23:REQ, +7:u03:REQ, +7:u04:REC, +7:u05:OPT, +7:u06:MNI, +15:u00:explanatory, +17:u01:abbreviations, +13:u04:RECOMMEND, +7:u11:req, +7:u12:rec, +7:u13:opt, +7:u14:mni, +7:u23:REC, +7:u02:REQ, +7:u03:REC, +7:u04:OPT, +7:u05:MNI, +17:u00:abbreviations, +13:u03:RECOMMEND, +7:u10:req, +7:u11:rec, +7:u12:opt, +7:u13:mni, +7:u23:OPT, +7:u01:REQ, +7:u02:REC, +7:u03:OPT, +7:u04:MNI, +13:u02:RECOMMEND, +7:u10:rec, +7:u11:opt, +7:u12:mni, +6:u21:MN, +7:u22:MNI, +7:u23:MNI, +7:u00:REQ, +7:u01:REC, +7:u02:OPT, +7:u03:MNI, +13:u01:RECOMMEND, +7:u10:opt, +7:u11:mni, +7:u00:REC, +7:u01:OPT, +7:u02:MNI, +13:u00:RECOMMEND, +7:u10:mni, +7:u00:OPT, +7:u01:MNI, +7:u00:MNI, +9:u08:FDELG, +9:u08:DDELG, +9:u07:FDELG, +9:u06:FDELG, +9:u07:DDELG, +73:u08:+----------------------+------------+--------------+----------------+, +9:u14:fdelg, +9:u05:FDELG, +9:u06:DDELG, +9:u13:fdelg, +9:u14:ddelg, +9:u04:FDELG, +9:u05:DDELG, +73:u07:+----------------------+------------+--------------+----------------+, +9:u12:fdelg, +9:u13:ddelg, +6:u21:FD, +7:u22:FDE, +8:u23:FDEL, +9:u03:FDELG, +9:u04:DDELG, +73:u06:+----------------------+------------+--------------+----------------+, +8:u08:REQ,, +9:u11:fdelg, +9:u12:ddelg, +73:u14:+----------------------+------------+--------------+----------------+, +6:u21:DD, +7:u22:DDE, +8:u23:DDEL, +9:u02:FDELG, +9:u03:DDELG, +73:u05:+----------------------+------------+--------------+----------------+, +8:u07:REQ,, +9:u10:fdelg, +9:u11:ddelg, +73:u13:+----------------------+------------+--------------+----------------+, +9:u01:FDELG, +9:u02:DDELG, +73:u04:+----------------------+------------+--------------+----------------+, +8:u06:REQ,, +9:u10:ddelg, +73:u12:+----------------------+------------+--------------+----------------+, +9:u00:FDELG, +9:u01:DDELG, +73:u03:+----------------------+------------+--------------+----------------+, +8:u05:REQ,, +73:u11:+----------------------+------------+--------------+----------------+, +9:u00:DDELG, +73:u02:+----------------------+------------+--------------+----------------+, +8:u04:REQ,, +8:u08:OPT,, +73:u10:+----------------------+------------+--------------+----------------+, +73:u01:+----------------------+------------+--------------+----------------+, +8:u03:REQ,, +8:u07:OPT,, +9:u08:(REQ,, +73:u00:+----------------------+------------+--------------+----------------+, +8:u02:REQ,, +8:u06:OPT,, +9:u07:(REQ,, +8:u01:REQ,, +8:u05:OPT,, +9:u06:(REQ,, +8:u00:REQ,, +8:u04:OPT,, +9:u05:(REQ,, +8:u03:OPT,, +9:u04:(REQ,, +8:u02:OPT,, +9:u03:(REQ,, +8:u01:OPT,, +9:u02:(REQ,, +8:u00:OPT,, +9:u01:(REQ,, +9:u00:(REQ,, +10:u08:FDELG,, +10:u07:FDELG,, +10:u06:FDELG,, +10:u05:FDELG,, +10:u04:FDELG,, +10:u03:FDELG,, +8:u08:427], +10:u02:FDELG,, +8:u07:427], +10:u01:FDELG,, +8:u06:427], +10:u00:FDELG,, +8:u05:427], +8:u04:427], +8:u03:427], +8:u02:427], +10:u08:DDELG,, +8:u01:427], +10:u07:DDELG,, +8:u00:427], +10:u06:DDELG,, +10:u05:DDELG,, +10:u04:DDELG,, +9:u08:(REQ), +10:u03:DDELG,, +9:u07:(REQ), +10:u02:DDELG,, +9:u06:(REQ), +10:u01:DDELG,, +9:u05:(REQ), +10:u00:DDELG,, +9:u04:(REQ), +9:u03:(REQ), +9:u02:(REQ), +9:u01:(REQ), +9:u00:(REQ), +8:u08:428], +8:u07:428], +8:u06:428], +8:u05:428], +8:u04:428], +8:u03:428], +8:u02:428], +8:u01:428], +8:u00:428], +73:u08:+-------------------------+------------+---------------+------------+, +73:u07:+-------------------------+------------+---------------+------------+, +73:u06:+-------------------------+------------+---------------+------------+, +73:u14:+-------------------------+------------+---------------+------------+, +73:u05:+-------------------------+------------+---------------+------------+, +73:u13:+-------------------------+------------+---------------+------------+, +7:u22:Cal, +8:u23:Call, +73:u04:+-------------------------+------------+---------------+------------+, +73:u12:+-------------------------+------------+---------------+------------+, +73:u03:+-------------------------+------------+---------------+------------+, +8:u08:REC,, +73:u11:+-------------------------+------------+---------------+------------+, +8:uI2:,,(,, +73:u02:+-------------------------+------------+---------------+------------+, +8:u07:REC,, +73:u10:+-------------------------+------------+---------------+------------+, +8:uI1:,,(,, +73:u01:+-------------------------+------------+---------------+------------+, +8:u06:REC,, +8:uI0:,,(,, +73:u00:+-------------------------+------------+---------------+------------+, +8:u05:REC,, +8:u04:REC,, +8:u03:REC,, +8:u02:REC,, +8:u01:REC,, +8:u00:REC,, +8:u08:20.1, +8:u07:20.1, +8:u06:20.1, +8:u05:20.1, +8:u04:20.1, +8:u03:20.1, +8:u02:20.1, +8:u01:20.1, +8:u00:20.1, +8:u08:20.3, +8:u07:20.3, +8:u06:20.3, +8:u05:20.3, +8:u04:20.3, +8:u03:20.3, +8:u02:20.3, +8:u01:20.3, +8:u00:20.3, +8:u08:20.4, +8:u07:20.4, +8:u06:20.4, +8:u05:20.4, +8:u04:20.4, +8:u03:20.4, +8:u02:20.4, +8:u01:20.4, +8:u00:20.4, +9:u08:20.12, +9:u07:20.12, +9:u06:20.12, +9:u05:20.12, +9:u04:20.12, +9:u03:20.12, +9:u02:20.12, +9:u01:20.12, +9:u00:20.12, +9:u08:20.11, +9:u07:20.11, +9:u06:20.11, +9:u05:20.11, +9:u04:20.11, +9:u03:20.11, +9:u02:20.11, +9:u01:20.11, +9:u00:20.11, +8:u08:20.5, +8:u07:20.5, +8:u06:20.5, +8:u05:20.5, +8:u04:20.5, +8:u03:20.5, +8:u02:20.5, +8:u01:20.5, +8:u00:20.5, +8:u08:20.2, +8:u07:20.2, +8:u06:20.2, +8:u05:20.2, +8:u04:20.2, +8:u03:20.2, +8:u02:20.2, +8:u01:20.2, +8:u00:20.2, +8:u08:20.6, +8:u07:20.6, +8:u06:20.6, +8:u05:20.6, +8:u04:20.6, +8:u03:20.6, +8:u02:20.6, +8:u01:20.6, +8:u00:20.6, +8:u08:20.8, +8:u07:20.8, +8:u06:20.8, +8:u05:20.8, +8:u04:20.8, +8:u03:20.8, +8:u02:20.8, +8:u01:20.8, +8:u00:20.8, +8:u08:20.7, +8:u07:20.7, +8:u06:20.7, +8:u05:20.7, +8:u04:20.7, +8:u03:20.7, +8:u02:20.7, +8:u01:20.7, +8:u00:20.7, +8:u08:20.9, +8:u07:20.9, +8:u06:20.9, +8:u05:20.9, +8:u04:20.9, +8:u03:20.9, +8:u02:20.9, +8:u01:20.9, +8:u00:20.9, +9:u08:20.10, +9:u07:20.10, +9:u06:20.10, +9:u05:20.10, +11:u08:18.1.1., +9:u04:20.10, +9:u03:20.10, +11:u07:18.1.1., +9:u02:20.10, +11:u06:18.1.1., +9:u01:20.10, +11:u14:18.1.1., +11:u05:18.1.1., +9:u00:20.10, +8:u08:429], +11:u13:18.1.1., +11:u04:18.1.1., +8:u07:429], +11:u12:18.1.1., +11:u03:18.1.1., +8:u06:429], +11:u11:18.1.1., +11:u02:18.1.1., +8:u05:429], +11:u10:18.1.1., +11:u01:18.1.1., +8:u04:429], +16:u08:ACCESS4_READ, +11:u00:18.1.1., +8:u03:429], +16:u07:ACCESS4_READ, +8:u02:429], +16:u06:ACCESS4_READ, +18:u08:ACCESS4_LOOKUP, +8:u01:429], +16:u05:ACCESS4_READ, +18:u07:ACCESS4_LOOKUP, +8:u00:429], +16:u04:ACCESS4_READ, +18:u06:ACCESS4_LOOKUP, +18:u08:ACCESS4_MODIFY, +16:u03:ACCESS4_READ, +18:u05:ACCESS4_LOOKUP, +18:u07:ACCESS4_MODIFY, +16:u02:ACCESS4_READ, +18:u04:ACCESS4_LOOKUP, +18:u06:ACCESS4_MODIFY, +18:u08:ACCESS4_EXTEND, +16:u01:ACCESS4_READ, +18:u03:ACCESS4_LOOKUP, +18:u05:ACCESS4_MODIFY, +18:u07:ACCESS4_EXTEND, +16:u00:ACCESS4_READ, +18:u02:ACCESS4_LOOKUP, +18:u04:ACCESS4_MODIFY, +18:u06:ACCESS4_EXTEND, +18:u08:ACCESS4_DELETE, +18:u01:ACCESS4_LOOKUP, +18:u03:ACCESS4_MODIFY, +18:u05:ACCESS4_EXTEND, +18:u07:ACCESS4_DELETE, +18:u00:ACCESS4_LOOKUP, +18:u02:ACCESS4_MODIFY, +18:u04:ACCESS4_EXTEND, +18:u06:ACCESS4_DELETE, +19:u08:ACCESS4_EXECUTE, +18:u01:ACCESS4_MODIFY, +18:u03:ACCESS4_EXTEND, +18:u05:ACCESS4_DELETE, +19:u07:ACCESS4_EXECUTE, +18:u00:ACCESS4_MODIFY, +18:u02:ACCESS4_EXTEND, +18:u04:ACCESS4_DELETE, +19:u06:ACCESS4_EXECUTE, +18:u01:ACCESS4_EXTEND, +18:u03:ACCESS4_DELETE, +19:u05:ACCESS4_EXECUTE, +15:u08:CURRENT_FH:, +11:u08:access;, +18:u00:ACCESS4_EXTEND, +18:u02:ACCESS4_DELETE, +19:u04:ACCESS4_EXECUTE, +15:u07:CURRENT_FH:, +18:u01:ACCESS4_DELETE, +19:u03:ACCESS4_EXECUTE, +15:u06:CURRENT_FH:, +11:u07:access;, +11:u08:18.1.2., +18:u00:ACCESS4_DELETE, +19:u02:ACCESS4_EXECUTE, +15:u05:CURRENT_FH:, +11:u06:access;, +19:u01:ACCESS4_EXECUTE, +15:u04:CURRENT_FH:, +11:u14:access;, +11:u05:access;, +11:u07:18.1.2., +19:u00:ACCESS4_EXECUTE, +15:u03:CURRENT_FH:, +16:u08:ACCESS4resok, +11:u13:access;, +11:u04:access;, +11:u06:18.1.2., +15:u02:CURRENT_FH:, +16:u07:ACCESS4resok, +11:u12:access;, +11:u14:18.1.2., +11:u03:access;, +11:u05:18.1.2., +15:u01:CURRENT_FH:, +16:u06:ACCESS4resok, +11:u11:access;, +11:u13:18.1.2., +11:u02:access;, +11:u04:18.1.2., +15:u00:CURRENT_FH:, +16:u05:ACCESS4resok, +11:u10:access;, +11:u12:18.1.2., +11:u01:access;, +11:u03:18.1.2., +16:u04:ACCESS4resok, +11:u11:18.1.2., +11:u00:access;, +11:u02:18.1.2., +16:u03:ACCESS4resok, +11:u10:18.1.2., +11:u01:18.1.2., +16:u02:ACCESS4resok, +11:u00:18.1.2., +16:u01:ACCESS4resok, +12:u08:NFS4_OK:, +11:u08:resok4;, +16:u00:ACCESS4resok, +12:u07:NFS4_OK:, +12:u06:NFS4_OK:, +11:u07:resok4;, +12:u05:NFS4_OK:, +16:u14:access4resok, +11:u06:resok4;, +12:u04:NFS4_OK:, +16:u13:access4resok, +11:u14:resok4;, +11:u05:resok4;, +11:u08:18.1.3., +12:u03:NFS4_OK:, +16:u12:access4resok, +11:u13:resok4;, +11:u04:resok4;, +12:u02:NFS4_OK:, +16:u11:access4resok, +11:u12:resok4;, +11:u03:resok4;, +11:u07:18.1.3., +12:u01:NFS4_OK:, +16:u10:access4resok, +11:u11:resok4;, +11:u02:resok4;, +11:u06:18.1.3., +12:u00:NFS4_OK:, +11:u10:resok4;, +11:u14:18.1.3., +11:u01:resok4;, +11:u05:18.1.3., +11:u13:18.1.3., +11:u00:resok4;, +11:u04:18.1.3., +11:u12:18.1.3., +11:u03:18.1.3., +11:u11:18.1.3., +11:u02:18.1.3., +13:u08:response., +11:u10:18.1.3., +11:u01:18.1.3., +11:u00:18.1.3., +13:u07:response., +13:u06:response., +13:u14:response., +13:u05:response., +13:u13:response., +9:uI2:.,"",, +13:u04:response., +13:u12:response., +9:uI1:.,"",, +13:u03:response., +13:u11:response., +9:uI0:.,"",, +13:u02:response., +13:u10:response., +13:u01:response., +13:u00:response., +16:u14:access4_read, +16:u13:access4_read, +16:u12:access4_read, +8:u08:430], +16:u11:access4_read, +8:u07:430], +16:u10:access4_read, +8:u06:430], +8:u05:430], +8:u04:430], +11:u08:reply's, +8:u03:430], +11:u07:reply's, +8:u02:430], +11:u06:reply's, +8:u01:430], +11:u05:reply's, +8:u00:430], +11:u04:reply's, +11:u03:reply's, +11:u02:reply's, +11:u01:reply's, +11:u00:reply's, +8:u08:Read, +8:u07:Read, +8:u08:Look, +8:u06:Read, +8:u07:Look, +13:u08:objects)., +8:u05:Read, +8:u06:Look, +13:u07:objects)., +11:u08:Rewrite, +18:u14:access4_lookup, +8:u04:Read, +8:u05:Look, +13:u06:objects)., +11:u07:Rewrite, +18:u13:access4_lookup, +8:u03:Read, +8:u04:Look, +13:u05:objects)., +11:u06:Rewrite, +18:u12:access4_lookup, +18:u14:access4_modify, +8:u02:Read, +8:u03:Look, +13:u04:objects)., +11:u05:Rewrite, +10:u08:Delete, +18:u11:access4_lookup, +18:u13:access4_modify, +8:u01:Read, +8:u02:Look, +13:u03:objects)., +11:u04:Rewrite, +10:u07:Delete, +11:u08:Execute, +18:u10:access4_lookup, +18:u12:access4_modify, +18:u14:access4_extend, +8:u00:Read, +8:u01:Look, +13:u02:objects)., +11:u03:Rewrite, +10:u06:Delete, +11:u07:Execute, +12:u08:success,, +18:u11:access4_modify, +18:u13:access4_extend, +18:u14:access4_delete, +8:u00:Look, +13:u01:objects)., +11:u02:Rewrite, +10:u05:Delete, +11:u06:Execute, +12:u07:success,, +18:u10:access4_modify, +18:u12:access4_extend, +18:u13:access4_delete, +19:u14:access4_execute, +13:u00:objects)., +11:u01:Rewrite, +10:u04:Delete, +11:u05:Execute, +12:u06:success,, +18:u11:access4_extend, +18:u12:access4_delete, +19:u13:access4_execute, +11:u00:Rewrite, +10:u03:Delete, +11:u04:Execute, +12:u05:success,, +18:u10:access4_extend, +18:u11:access4_delete, +19:u12:access4_execute, +10:u02:Delete, +11:u03:Execute, +12:u04:success,, +18:u10:access4_delete, +19:u11:access4_execute, +10:u01:Delete, +11:u02:Execute, +12:u03:success,, +19:u10:access4_execute, +10:u00:Delete, +11:u01:Execute, +12:u02:success,, +11:u00:Execute, +12:u01:success,, +19:u08:responsibility., +12:u00:success,, +19:u07:responsibility., +19:u06:responsibility., +19:u05:responsibility., +14:u08:executable, +19:u04:responsibility., +19:u03:responsibility., +14:u07:executable, +19:u02:responsibility., +14:u06:executable, +19:u01:responsibility., +14:u14:executable, +14:u05:executable, +19:u00:responsibility., +14:u13:executable, +14:u04:executable, +14:u12:executable, +14:u03:executable, +12:u08:access(), +12:u08:claiming, +14:u11:executable, +14:u02:executable, +12:u07:claiming, +14:u10:executable, +14:u01:executable, +12:u07:access(), +12:u06:claiming, +14:u00:executable, +12:u06:access(), +12:u05:claiming, +12:u14:access(), +12:u05:access(), +12:u04:claiming, +8:u08:431], +12:u13:access(), +7:uI2:()', +12:u04:access(), +12:u03:claiming, +8:u07:431], +12:u12:access(), +7:uI1:()', +12:u03:access(), +12:u02:claiming, +8:u06:431], +12:u11:access(), +7:uI0:()', +12:u02:access(), +12:u01:claiming, +8:u05:431], +12:u10:access(), +12:u01:access(), +12:u00:claiming, +8:u04:431], +11:u08:rights,, +12:u00:access(), +8:u03:431], +11:u07:rights,, +8:u02:431], +11:u06:rights,, +11:u14:execute, +8:u01:431], +11:u05:rights,, +11:u13:execute, +16:u08:implementing, +8:u00:431], +11:u04:rights,, +11:u12:execute, +11:u03:rights,, +11:u11:execute, +16:u07:implementing, +11:u02:rights,, +11:u10:execute, +16:u06:implementing, +13:u08:behavior:, +11:u01:rights,, +16:u14:implementing, +16:u05:implementing, +11:u00:rights,, +16:u13:implementing, +16:u04:implementing, +13:u07:behavior:, +16:u12:implementing, +10:u14:follow, +16:u03:implementing, +13:u06:behavior:, +16:u11:implementing, +10:u13:follow, +13:u14:behavior:, +16:u02:implementing, +13:u05:behavior:, +16:u10:implementing, +10:u12:follow, +13:u13:behavior:, +16:u01:implementing, +13:u04:behavior:, +10:u11:follow, +13:u12:behavior:, +16:u00:implementing, +13:u03:behavior:, +10:u10:follow, +13:u11:behavior:, +13:u02:behavior:, +13:u10:behavior:, +9:uI2:','(), +13:u01:behavior:, +9:uI1:','(), +13:u00:behavior:, +9:uI0:','(), +9:u08:bits,, +10:u08:table", +9:u07:bits,, +9:u06:bits,, +10:u07:table", +9:u05:bits,, +10:u06:table", +9:u04:bits,, +10:u08:files., +10:u14:table", +7:uI2:()", +10:u05:table", +9:u03:bits,, +10:u07:files., +10:u13:table", +7:uI1:()", +9:uI2:"'"",, +10:u04:table", +9:u02:bits,, +10:u06:files., +10:u12:table", +7:uI0:()", +9:uI1:"'"",, +10:u03:table", +9:u01:bits,, +10:u05:files., +10:u11:table", +9:uI0:"'"",, +10:u02:table", +9:u00:bits,, +10:u04:files., +10:u10:table", +10:u01:table", +13:u08:subsystem, +10:u03:files., +10:u00:table", +10:u02:files., +13:u07:subsystem, +10:u01:files., +13:u06:subsystem, +10:u00:files., +13:u14:subsystem, +13:u05:subsystem, +11:u08:outcome, +13:u13:subsystem, +13:u04:subsystem, +11:u07:outcome, +13:u12:subsystem, +13:u03:subsystem, +11:u08:server", +11:u06:outcome, +13:u11:subsystem, +13:u02:subsystem, +11:u05:outcome, +13:u08:principle, +13:u10:subsystem, +13:u01:subsystem, +11:u07:server", +11:u04:outcome, +13:u07:principle, +13:u00:subsystem, +11:u06:server", +11:u03:outcome, +13:u06:principle, +11:u14:server", +7:uI2:,",, +11:u05:server", +11:u02:outcome, +13:u05:principle, +11:u13:server", +7:uI1:,",, +11:u04:server", +11:u01:outcome, +13:u04:principle, +8:u08:432], +11:u12:server", +7:uI0:,",, +11:u03:server", +11:u00:outcome, +13:u03:principle, +8:u07:432], +11:u11:server", +11:u02:server", +13:u02:principle, +8:u06:432], +11:u10:server", +11:u01:server", +13:u01:principle, +8:u05:432], +11:u00:server", +13:u00:principle, +8:u04:432], +8:u03:432], +8:u02:432], +13:u08:request's, +8:u01:432], +7:uI2:',,, +8:u00:432], +7:uI1:',,, +13:u07:request's, +7:uI0:',,, +13:u06:request's, +13:u14:request's, +13:u05:request's, +13:u13:request's, +13:u04:request's, +13:u12:request's, +13:u03:request's, +13:u11:request's, +13:u02:request's, +13:u10:request's, +13:u01:request's, +13:u00:request's, +6:uI2:/', +6:uI1:/', +6:uI0:/', +16:u14:permissions,, +16:u13:permissions,, +16:u12:permissions,, +16:u11:permissions,, +16:u10:permissions,, +8:u08:433], +8:u07:433], +8:u06:433], +8:u05:433], +8:u04:433], +8:u03:433], +8:u02:433], +8:u01:433], +8:u00:433], +10:u08:18.22), +10:u07:18.22), +10:u06:18.22), +10:u05:18.22), +10:u04:18.22), +10:u03:18.22), +9:u08:set),, +11:u08:18.1.4., +10:u02:18.22), +9:u07:set),, +10:u01:18.22), +9:u06:set),, +18:u08:IMPLEMENTATION, +11:u07:18.1.4., +10:u00:18.22), +9:u05:set),, +18:u07:IMPLEMENTATION, +11:u06:18.1.4., +9:u04:set),, +18:u06:IMPLEMENTATION, +11:u14:18.1.4., +11:u05:18.1.4., +9:u03:set),, +18:u05:IMPLEMENTATION, +11:u13:18.1.4., +11:u04:18.1.4., +9:u02:set),, +18:u04:IMPLEMENTATION, +11:u12:18.1.4., +11:u03:18.1.4., +9:u01:set),, +18:u03:IMPLEMENTATION, +11:u11:18.1.4., +11:u02:18.1.4., +9:u00:set),, +18:u02:IMPLEMENTATION, +11:u10:18.1.4., +11:u01:18.1.4., +12:u08:reliably, +18:u01:IMPLEMENTATION, +11:u00:18.1.4., +18:u00:IMPLEMENTATION, +12:u07:reliably, +12:u06:reliably, +11:u08:failed., +12:u14:reliably, +12:u05:reliably, +12:u13:reliably, +12:u04:reliably, +11:u07:failed., +12:u12:reliably, +12:u03:reliably, +11:u06:failed., +12:u11:reliably, +11:u14:failed., +12:u02:reliably, +11:u05:failed., +12:u10:reliably, +11:u13:failed., +12:u01:reliably, +11:u04:failed., +11:u12:failed., +12:u00:reliably, +11:u03:failed., +11:u11:failed., +11:u02:failed., +11:u10:failed., +11:u01:failed., +11:u00:failed., +10:u14:revoke, +10:u13:revoke, +10:u12:revoke, +8:u08:434], +10:u11:revoke, +8:u07:434], +10:u10:revoke, +8:u06:434], +8:u05:434], +8:u04:434], +8:u03:434], +15:u08:permission., +8:u02:434], +8:u01:434], +15:u07:permission., +8:u00:434], +15:u06:permission., +15:u14:permission., +15:u05:permission., +15:u13:permission., +15:u04:permission., +15:u12:permission., +15:u03:permission., +15:u11:permission., +15:u02:permission., +15:u10:permission., +15:u01:permission., +15:u00:permission., +11:u08:18.2.1., +11:u07:18.2.1., +11:u06:18.2.1., +11:u14:18.2.1., +11:u05:18.2.1., +11:u13:18.2.1., +11:u04:18.2.1., +11:u12:18.2.1., +11:u03:18.2.1., +11:u11:18.2.1., +11:u02:18.2.1., +11:u10:18.2.1., +11:u01:18.2.1., +11:u08:18.2.2., +11:u00:18.2.1., +11:u07:18.2.2., +11:u06:18.2.2., +11:u14:18.2.2., +11:u05:18.2.2., +11:u13:18.2.2., +11:u04:18.2.2., +11:u12:18.2.2., +11:u03:18.2.2., +11:u11:18.2.2., +11:u02:18.2.2., +11:u10:18.2.2., +11:u01:18.2.2., +11:u08:18.2.3., +11:u00:18.2.2., +11:u07:18.2.3., +11:u06:18.2.3., +11:u14:18.2.3., +11:u05:18.2.3., +11:u13:18.2.3., +11:u04:18.2.3., +11:u12:18.2.3., +11:u03:18.2.3., +11:u11:18.2.3., +11:u02:18.2.3., +11:u10:18.2.3., +11:u01:18.2.3., +11:u00:18.2.3., +10:u14:close,, +8:u08:435], +10:u13:close,, +8:u07:435], +10:u12:close,, +8:u06:435], +10:u11:close,, +8:u05:435], +10:u10:close,, +8:u04:435], +8:u03:435], +8:u02:435], +8:u01:435], +8:u00:435], +11:u08:18.2.4., +11:u07:18.2.4., +11:u06:18.2.4., +11:u14:18.2.4., +11:u05:18.2.4., +11:u13:18.2.4., +11:u04:18.2.4., +11:u12:18.2.4., +11:u03:18.2.4., +11:u11:18.2.4., +11:u02:18.2.4., +11:u10:18.2.4., +11:u01:18.2.4., +11:u00:18.2.4., +15:u08:previously., +15:u07:previously., +15:u06:previously., +15:u14:previously., +15:u05:previously., +11:u08:18.3.1., +15:u13:previously., +15:u04:previously., +15:u12:previously., +15:u03:previously., +11:u07:18.3.1., +15:u11:previously., +15:u02:previously., +11:u06:18.3.1., +15:u10:previously., +11:u14:18.3.1., +15:u01:previously., +11:u05:18.3.1., +11:u08:offset;, +11:u13:18.3.1., +15:u00:previously., +11:u04:18.3.1., +11:u12:18.3.1., +11:u03:18.3.1., +11:u07:offset;, +10:u08:count;, +11:u11:18.3.1., +11:u02:18.3.1., +11:u06:offset;, +11:u10:18.3.1., +11:u14:offset;, +11:u01:18.3.1., +11:u05:offset;, +10:u07:count;, +11:u08:18.3.2., +11:u13:offset;, +11:u00:18.3.1., +11:u04:offset;, +10:u06:count;, +11:u12:offset;, +10:u14:count;, +11:u03:offset;, +10:u05:count;, +11:u07:18.3.2., +11:u11:offset;, +10:u13:count;, +11:u02:offset;, +10:u04:count;, +11:u06:18.3.2., +11:u10:offset;, +10:u12:count;, +11:u14:18.3.2., +11:u01:offset;, +10:u03:count;, +11:u05:18.3.2., +8:u08:436], +10:u11:count;, +11:u13:18.3.2., +11:u00:offset;, +10:u02:count;, +11:u04:18.3.2., +8:u07:436], +10:u10:count;, +11:u12:18.3.2., +10:u01:count;, +11:u03:18.3.2., +8:u06:436], +11:u11:18.3.2., +10:u00:count;, +11:u02:18.3.2., +8:u05:436], +11:u10:18.3.2., +11:u01:18.3.2., +8:u04:436], +16:u08:COMMIT4resok, +11:u00:18.3.2., +14:u08:writeverf;, +8:u03:436], +16:u07:COMMIT4resok, +8:u02:436], +16:u06:COMMIT4resok, +14:u07:writeverf;, +8:u01:436], +16:u05:COMMIT4resok, +14:u06:writeverf;, +8:u00:436], +16:u04:COMMIT4resok, +14:u14:writeverf;, +14:u05:writeverf;, +16:u03:COMMIT4resok, +14:u13:writeverf;, +14:u04:writeverf;, +16:u02:COMMIT4resok, +14:u12:writeverf;, +14:u03:writeverf;, +16:u01:COMMIT4resok, +14:u11:writeverf;, +14:u02:writeverf;, +16:u00:COMMIT4resok, +14:u10:writeverf;, +16:u14:commit4resok, +14:u01:writeverf;, +16:u13:commit4resok, +14:u00:writeverf;, +11:u08:18.3.3., +16:u12:commit4resok, +16:u11:commit4resok, +11:u07:18.3.3., +16:u10:commit4resok, +11:u06:18.3.3., +11:u14:18.3.3., +11:u05:18.3.3., +11:u13:18.3.3., +11:u04:18.3.3., +11:u12:18.3.3., +11:u03:18.3.3., +11:u11:18.3.3., +11:u02:18.3.3., +11:u10:18.3.3., +11:u01:18.3.3., +10:u08:begin., +11:u00:18.3.3., +10:u07:begin., +13:u08:beginning, +10:u06:begin., +13:u07:beginning, +10:u05:begin., +13:u06:beginning, +10:u04:begin., +13:u05:beginning, +10:u03:begin., +13:u04:beginning, +10:u02:begin., +13:u03:beginning, +10:u01:begin., +13:u02:beginning, +10:u00:begin., +13:u01:beginning, +13:u00:beginning, +14:u08:restarted;, +14:u07:restarted;, +11:u08:18.3.4., +14:u06:restarted;, +14:u05:restarted;, +11:u07:18.3.4., +14:u04:restarted;, +11:u06:18.3.4., +14:u03:restarted;, +11:u08:fsync(), +11:u14:18.3.4., +11:u05:18.3.4., +13:u08:storage)., +14:u02:restarted;, +11:u07:fsync(), +11:u13:18.3.4., +11:u04:18.3.4., +14:u01:restarted;, +11:u06:fsync(), +11:u12:18.3.4., +11:u03:18.3.4., +13:u07:storage)., +14:u00:restarted;, +11:u05:fsync(), +18:u08:unsynchronized, +11:u11:18.3.4., +9:uI2:()[]', +11:u02:18.3.4., +13:u06:storage)., +11:u04:fsync(), +18:u07:unsynchronized, +11:u10:18.3.4., +13:u14:storage)., +9:uI1:()[]', +11:u01:18.3.4., +13:u05:storage)., +11:u03:fsync(), +18:u06:unsynchronized, +13:u13:storage)., +9:uI0:()[]', +11:u00:18.3.4., +13:u04:storage)., +11:u02:fsync(), +18:u05:unsynchronized, +13:u12:storage)., +13:u03:storage)., +11:u01:fsync(), +18:u04:unsynchronized, +13:u11:storage)., +13:u02:storage)., +11:u00:fsync(), +18:u03:unsynchronized, +8:u08:437], +13:u10:storage)., +8:u23:disk, +13:u01:storage)., +18:u02:unsynchronized, +8:u07:437], +13:u00:storage)., +18:u01:unsynchronized, +8:u06:437], +16:u08:synchronize., +18:u00:unsynchronized, +8:u05:437], +8:u04:437], +16:u07:synchronize., +8:u03:437], +16:u06:synchronize., +8:u02:437], +16:u14:synchronize., +16:u05:synchronize., +9:u08:flush, +8:u01:437], +16:u13:synchronize., +16:u04:synchronize., +8:u00:437], +16:u12:synchronize., +16:u03:synchronize., +9:u07:flush, +13:u08:written)., +16:u11:synchronize., +16:u02:synchronize., +9:u06:flush, +16:u10:synchronize., +9:u14:flush, +16:u01:synchronize., +9:u05:flush, +13:u07:written)., +9:u13:flush, +15:u14:reclamation, +16:u00:synchronize., +9:u04:flush, +13:u06:written)., +9:u12:flush, +15:u13:reclamation, +13:u14:written)., +9:u03:flush, +13:u05:written)., +9:u11:flush, +15:u12:reclamation, +13:u13:written)., +9:u02:flush, +13:u04:written)., +9:u10:flush, +15:u11:reclamation, +13:u12:written)., +9:u01:flush, +13:u03:written)., +15:u10:reclamation, +13:u11:written)., +9:u00:flush, +13:u02:written)., +13:u10:written)., +11:u14:fsync(), +13:u01:written)., +11:u13:fsync(), +13:u00:written)., +11:u12:fsync(), +7:u22:fsy, +8:u23:fsyn, +11:u11:fsync(), +11:u10:fsync(), +9:u08:dirty, +9:u07:dirty, +9:u06:dirty, +9:u05:dirty, +12:u14:fashion., +9:u04:dirty, +12:u13:fashion., +9:u03:dirty, +12:u12:fashion., +14:u08:FILE_SYNC4, +9:u02:dirty, +12:u11:fashion., +9:u01:dirty, +12:u10:fashion., +14:u07:FILE_SYNC4, +9:u00:dirty, +14:u06:FILE_SYNC4, +14:u14:file_sync4, +14:u05:FILE_SYNC4, +14:u13:file_sync4, +14:u04:FILE_SYNC4, +14:u12:file_sync4, +7:u22:FIL, +8:u23:FILE, +14:u03:FILE_SYNC4, +14:u11:file_sync4, +14:u02:FILE_SYNC4, +14:u10:file_sync4, +14:u01:FILE_SYNC4, +14:u00:FILE_SYNC4, +8:u08:438], +8:u07:438], +8:u06:438], +8:u05:438], +13:u08:interest,, +8:u04:438], +8:u03:438], +13:u07:interest,, +8:u02:438], +13:u06:interest,, +8:u01:438], +13:u14:interest,, +13:u05:interest,, +18:u08:retransmitting, +8:u00:438], +13:u13:interest,, +13:u04:interest,, +13:u12:interest,, +13:u03:interest,, +18:u07:retransmitting, +13:u11:interest,, +13:u02:interest,, +18:u06:retransmitting, +13:u10:interest,, +18:u14:retransmitting, +13:u01:interest,, +18:u05:retransmitting, +18:u13:retransmitting, +13:u00:interest,, +18:u04:retransmitting, +18:u12:retransmitting, +18:u03:retransmitting, +22:u08:buffer-cache-based, +18:u11:retransmitting, +18:u02:retransmitting, +18:u10:retransmitting, +18:u01:retransmitting, +22:u07:buffer-cache-based, +18:u00:retransmitting, +22:u06:buffer-cache-based, +11:u08:18.4.1., +22:u14:buffer-cache-based, +22:u05:buffer-cache-based, +22:u13:buffer-cache-based, +10:u14:memory, +22:u04:buffer-cache-based, +11:u07:18.4.1., +15:u08:createtype4, +22:u12:buffer-cache-based, +10:u13:memory, +22:u03:buffer-cache-based, +11:u06:18.4.1., +15:u07:createtype4, +11:u08:NF4LNK:, +22:u11:buffer-cache-based, +10:u12:memory, +11:u14:18.4.1., +22:u02:buffer-cache-based, +11:u05:18.4.1., +15:u06:createtype4, +11:u07:NF4LNK:, +13:u08:linkdata;, +22:u10:buffer-cache-based, +10:u11:memory, +11:u13:18.4.1., +22:u01:buffer-cache-based, +11:u04:18.4.1., +15:u05:createtype4, +11:u06:NF4LNK:, +13:u07:linkdata;, +11:u08:NF4BLK:, +10:u10:memory, +11:u12:18.4.1., +22:u00:buffer-cache-based, +11:u03:18.4.1., +15:u04:createtype4, +11:u05:NF4LNK:, +13:u06:linkdata;, +11:u07:NF4BLK:, +11:u08:NF4CHR:, +11:u11:18.4.1., +13:u14:linktext4, +11:u02:18.4.1., +15:u03:createtype4, +11:u04:NF4LNK:, +13:u05:linkdata;, +11:u06:NF4BLK:, +11:u07:NF4CHR:, +12:u08:devdata;, +11:u10:18.4.1., +13:u13:linktext4, +11:u01:18.4.1., +15:u02:createtype4, +11:u03:NF4LNK:, +13:u04:linkdata;, +11:u05:NF4BLK:, +11:u06:NF4CHR:, +12:u07:devdata;, +12:u08:NF4SOCK:, +13:u12:linktext4, +11:u00:18.4.1., +15:u01:createtype4, +11:u02:NF4LNK:, +13:u03:linkdata;, +11:u04:NF4BLK:, +11:u05:NF4CHR:, +12:u06:devdata;, +12:u07:NF4SOCK:, +12:u08:NF4FIFO:, +13:u11:linktext4, +13:u14:specdata4, +15:u00:createtype4, +11:u01:NF4LNK:, +13:u02:linkdata;, +11:u03:NF4BLK:, +11:u04:NF4CHR:, +12:u05:devdata;, +12:u06:NF4SOCK:, +12:u07:NF4FIFO:, +11:u08:NF4DIR:, +13:u10:linktext4, +13:u13:specdata4, +11:u00:NF4LNK:, +13:u01:linkdata;, +11:u02:NF4BLK:, +11:u03:NF4CHR:, +12:u04:devdata;, +12:u05:NF4SOCK:, +12:u06:NF4FIFO:, +11:u07:NF4DIR:, +13:u12:specdata4, +13:u00:linkdata;, +11:u01:NF4BLK:, +11:u02:NF4CHR:, +12:u03:devdata;, +12:u04:NF4SOCK:, +12:u05:NF4FIFO:, +11:u06:NF4DIR:, +13:u11:specdata4, +11:u00:NF4BLK:, +11:u01:NF4CHR:, +12:u02:devdata;, +12:u03:NF4SOCK:, +12:u04:NF4FIFO:, +11:u05:NF4DIR:, +13:u10:specdata4, +11:u00:NF4CHR:, +12:u01:devdata;, +12:u02:NF4SOCK:, +12:u03:NF4FIFO:, +11:u04:NF4DIR:, +12:u00:devdata;, +12:u01:NF4SOCK:, +12:u02:NF4FIFO:, +11:u03:NF4DIR:, +12:u00:NF4SOCK:, +12:u01:NF4FIFO:, +11:u02:NF4DIR:, +12:u08:objtype;, +12:u00:NF4FIFO:, +11:u01:NF4DIR:, +11:u00:NF4DIR:, +12:u07:objtype;, +12:u08:objname;, +15:u14:createtype4, +12:u06:objtype;, +15:u13:createtype4, +12:u14:objtype;, +12:u05:objtype;, +12:u07:objname;, +16:u08:createattrs;, +15:u12:createtype4, +12:u13:objtype;, +14:u14:component4, +12:u04:objtype;, +12:u06:objname;, +15:u11:createtype4, +12:u12:objtype;, +14:u13:component4, +12:u14:objname;, +8:u23:objt, +12:u03:objtype;, +12:u05:objname;, +16:u07:createattrs;, +11:u08:18.4.2., +15:u10:createtype4, +12:u11:objtype;, +14:u12:component4, +12:u13:objname;, +10:u14:fattr4, +12:u02:objtype;, +12:u04:objname;, +16:u06:createattrs;, +12:u10:objtype;, +14:u11:component4, +12:u12:objname;, +10:u13:fattr4, +16:u14:createattrs;, +8:u23:objn, +12:u01:objtype;, +12:u03:objname;, +16:u05:createattrs;, +11:u07:18.4.2., +14:u10:component4, +12:u11:objname;, +10:u12:fattr4, +16:u13:createattrs;, +8:u23:fatt, +12:u00:objtype;, +12:u02:objname;, +16:u04:createattrs;, +11:u06:18.4.2., +12:u10:objname;, +10:u11:fattr4, +16:u12:createattrs;, +11:u14:18.4.2., +12:u01:objname;, +16:u03:createattrs;, +11:u05:18.4.2., +8:u08:439], +10:u10:fattr4, +16:u11:createattrs;, +11:u13:18.4.2., +12:u00:objname;, +16:u02:createattrs;, +11:u04:18.4.2., +8:u07:439], +16:u10:createattrs;, +11:u12:18.4.2., +16:u01:createattrs;, +11:u03:18.4.2., +8:u06:439], +11:u11:18.4.2., +16:u00:createattrs;, +11:u02:18.4.2., +8:u05:439], +11:u10:18.4.2., +11:u01:18.4.2., +8:u04:439], +16:u08:CREATE4resok, +11:u00:18.4.2., +10:u08:cinfo;, +8:u03:439], +16:u07:CREATE4resok, +8:u02:439], +16:u06:CREATE4resok, +10:u07:cinfo;, +12:u08:attrset;, +8:u01:439], +16:u05:CREATE4resok, +10:u06:cinfo;, +8:u00:439], +16:u04:CREATE4resok, +10:u14:cinfo;, +10:u05:cinfo;, +12:u07:attrset;, +16:u03:CREATE4resok, +10:u13:cinfo;, +10:u04:cinfo;, +12:u06:attrset;, +16:u02:CREATE4resok, +10:u12:cinfo;, +12:u14:attrset;, +7:u22:cin, +8:u23:cinf, +10:u03:cinfo;, +12:u05:attrset;, +16:u01:CREATE4resok, +10:u11:cinfo;, +12:u13:attrset;, +10:u02:cinfo;, +12:u04:attrset;, +16:u00:CREATE4resok, +10:u10:cinfo;, +12:u12:attrset;, +10:u01:cinfo;, +12:u03:attrset;, +12:u11:attrset;, +10:u00:cinfo;, +12:u02:attrset;, +12:u10:attrset;, +12:u01:attrset;, +12:u00:attrset;, +16:u14:create4resok, +11:u08:18.4.3., +16:u13:create4resok, +16:u12:create4resok, +11:u07:18.4.3., +16:u11:create4resok, +11:u06:18.4.3., +16:u10:create4resok, +11:u14:18.4.3., +11:u05:18.4.3., +11:u13:18.4.3., +11:u04:18.4.3., +11:u12:18.4.3., +11:u03:18.4.3., +16:u08:NF4ATTRDIR),, +11:u11:18.4.3., +11:u02:18.4.3., +11:u10:18.4.3., +11:u01:18.4.3., +16:u07:NF4ATTRDIR),, +11:u00:18.4.3., +16:u06:NF4ATTRDIR),, +16:u14:nf4attrdir),, +16:u05:NF4ATTRDIR),, +11:u08:objname, +16:u13:nf4attrdir),, +16:u04:NF4ATTRDIR),, +11:u07:objname, +16:u12:nf4attrdir),, +18:u14:nfs4err_notdir, +8:u23:NF4A, +16:u03:NF4ATTRDIR),, +11:u06:objname, +16:u11:nf4attrdir),, +18:u13:nfs4err_notdir, +16:u02:NF4ATTRDIR),, +11:u05:objname, +16:u10:nf4attrdir),, +18:u12:nfs4err_notdir, +16:u01:NF4ATTRDIR),, +11:u04:objname, +18:u11:nfs4err_notdir, +16:u00:NF4ATTRDIR),, +11:u03:objname, +18:u10:nfs4err_notdir, +11:u02:objname, +12:u14:results., +11:u01:objname, +12:u13:results., +11:u00:objname, +12:u12:results., +12:u11:results., +12:u10:results., +15:u08:createattrs, +15:u07:createattrs, +15:u06:createattrs, +15:u05:createattrs, +15:u04:createattrs, +8:u08:440], +15:u03:createattrs, +8:u07:440], +15:u02:createattrs, +8:u06:440], +15:u01:createattrs, +8:u05:440], +15:u00:createattrs, +8:u04:440], +8:u03:440], +8:u02:440], +8:u01:440], +8:u00:440], +10:u08:derive, +10:u07:derive, +11:u08:dictate, +10:u06:derive, +10:u05:derive, +11:u07:dictate, +10:u04:derive, +11:u06:dictate, +10:u03:derive, +11:u14:dictate, +11:u05:dictate, +10:u02:derive, +11:u13:dictate, +11:u04:dictate, +10:u01:derive, +11:u12:dictate, +7:u22:dic, +8:u23:dict, +11:u03:dictate, +10:u00:derive, +11:u11:dictate, +11:u02:dictate, +11:u10:dictate, +11:u01:dictate, +11:u00:dictate, +15:u08:Conversely,, +15:u07:Conversely,, +15:u06:Conversely,, +15:u14:conversely,, +15:u05:Conversely,, +15:u13:conversely,, +15:u14:createattrs, +15:u04:Conversely,, +15:u12:conversely,, +15:u13:createattrs, +8:u23:Conv, +15:u03:Conversely,, +15:u11:conversely,, +15:u12:createattrs, +15:u02:Conversely,, +15:u10:conversely,, +15:u11:createattrs, +15:u01:Conversely,, +15:u10:createattrs, +15:u00:Conversely,, +10:u08:14.4),, +10:u07:14.4),, +10:u06:14.4),, +10:u05:14.4),, +9:uI2:(.),,, +10:u04:14.4),, +8:u08:441], +9:uI1:(.),,, +10:u03:14.4),, +8:u07:441], +9:uI0:(.),,, +10:u02:14.4),, +8:u06:441], +11:u08:18.4.4., +10:u01:14.4),, +8:u05:441], +10:u00:14.4),, +8:u04:441], +11:u07:18.4.4., +8:u03:441], +11:u06:18.4.4., +8:u02:441], +11:u14:18.4.4., +11:u05:18.4.4., +8:u01:441], +11:u13:18.4.4., +11:u04:18.4.4., +11:u08:18.5.1., +8:u00:441], +11:u12:18.4.4., +11:u03:18.4.4., +11:u11:18.4.4., +11:u02:18.4.4., +11:u07:18.5.1., +11:u10:18.4.4., +11:u01:18.4.4., +11:u06:18.5.1., +11:u14:18.5.1., +11:u00:18.4.4., +11:u05:18.5.1., +11:u13:18.5.1., +11:u04:18.5.1., +11:u08:18.5.2., +11:u12:18.5.1., +11:u03:18.5.1., +11:u11:18.5.1., +11:u02:18.5.1., +11:u07:18.5.2., +11:u10:18.5.1., +11:u01:18.5.1., +11:u06:18.5.2., +11:u14:18.5.2., +11:u00:18.5.1., +11:u05:18.5.2., +11:u13:18.5.2., +11:u04:18.5.2., +11:u08:18.5.3., +11:u12:18.5.2., +11:u03:18.5.2., +11:u11:18.5.2., +11:u02:18.5.2., +11:u07:18.5.3., +11:u10:18.5.2., +11:u01:18.5.2., +11:u06:18.5.3., +11:u14:18.5.3., +11:u00:18.5.2., +11:u05:18.5.3., +11:u13:18.5.3., +11:u04:18.5.3., +11:u12:18.5.3., +11:u03:18.5.3., +11:u11:18.5.3., +11:u02:18.5.3., +11:u10:18.5.3., +11:u01:18.5.3., +11:u00:18.5.3., +13:u14:recovered, +13:u13:recovered, +13:u12:recovered, +13:u11:recovered, +13:u10:recovered, +8:u08:442], +8:u07:442], +8:u06:442], +8:u05:442], +8:u04:442], +8:u03:442], +11:u08:18.6.1., +8:u02:442], +8:u01:442], +11:u07:18.6.1., +8:u00:442], +11:u06:18.6.1., +11:u14:18.6.1., +11:u05:18.6.1., +18:u08:deleg_stateid;, +11:u13:18.6.1., +11:u04:18.6.1., +11:u12:18.6.1., +11:u03:18.6.1., +18:u07:deleg_stateid;, +11:u08:18.6.2., +11:u11:18.6.1., +11:u02:18.6.1., +18:u06:deleg_stateid;, +11:u10:18.6.1., +18:u14:deleg_stateid;, +11:u01:18.6.1., +18:u05:deleg_stateid;, +11:u07:18.6.2., +18:u13:deleg_stateid;, +11:u00:18.6.1., +18:u04:deleg_stateid;, +11:u06:18.6.2., +18:u12:deleg_stateid;, +11:u14:18.6.2., +18:u03:deleg_stateid;, +11:u05:18.6.2., +18:u11:deleg_stateid;, +11:u13:18.6.2., +18:u02:deleg_stateid;, +11:u04:18.6.2., +11:u08:18.6.3., +18:u10:deleg_stateid;, +11:u12:18.6.2., +18:u01:deleg_stateid;, +11:u03:18.6.2., +11:u11:18.6.2., +18:u00:deleg_stateid;, +11:u02:18.6.2., +11:u07:18.6.3., +11:u10:18.6.2., +11:u01:18.6.2., +11:u06:18.6.3., +11:u14:18.6.3., +11:u00:18.6.2., +11:u05:18.6.3., +11:u13:18.6.3., +11:u04:18.6.3., +12:u08:properly, +9:u08:them), +11:u12:18.6.3., +11:u03:18.6.3., +9:u07:them), +11:u11:18.6.3., +11:u02:18.6.3., +12:u07:properly, +9:u06:them), +11:u10:18.6.3., +11:u01:18.6.3., +12:u06:properly, +15:u08:applicable,, +9:u05:them), +12:u14:properly, +11:u00:18.6.3., +12:u05:properly, +9:u04:them), +12:u13:properly, +12:u04:properly, +15:u07:applicable,, +9:u03:them), +12:u12:properly, +12:u03:properly, +15:u06:applicable,, +9:u02:them), +12:u11:properly, +15:u14:applicable,, +12:u02:properly, +15:u05:applicable,, +9:u01:them), +12:u10:properly, +15:u13:applicable,, +12:u01:properly, +15:u04:applicable,, +9:u00:them), +15:u12:applicable,, +12:u00:properly, +15:u03:applicable,, +11:u08:18.7.1., +15:u11:applicable,, +15:u02:applicable,, +15:u10:applicable,, +15:u01:applicable,, +11:u07:18.7.1., +15:u00:applicable,, +11:u06:18.7.1., +11:u14:18.7.1., +11:u05:18.7.1., +17:u08:attr_request;, +11:u13:18.7.1., +11:u04:18.7.1., +11:u12:18.7.1., +11:u03:18.7.1., +17:u07:attr_request;, +11:u11:18.7.1., +11:u02:18.7.1., +17:u06:attr_request;, +11:u10:18.7.1., +17:u14:attr_request;, +11:u01:18.7.1., +17:u05:attr_request;, +17:u13:attr_request;, +11:u00:18.7.1., +17:u04:attr_request;, +8:u08:443], +17:u12:attr_request;, +17:u03:attr_request;, +8:u07:443], +17:u11:attr_request;, +17:u02:attr_request;, +8:u06:443], +17:u10:attr_request;, +17:u01:attr_request;, +11:u08:18.7.2., +8:u05:443], +17:u00:attr_request;, +8:u04:443], +11:u07:18.7.2., +8:u03:443], +17:u08:GETATTR4resok, +11:u06:18.7.2., +19:u08:obj_attributes;, +8:u02:443], +17:u07:GETATTR4resok, +11:u14:18.7.2., +11:u05:18.7.2., +8:u01:443], +17:u06:GETATTR4resok, +11:u13:18.7.2., +11:u04:18.7.2., +19:u07:obj_attributes;, +8:u00:443], +17:u05:GETATTR4resok, +11:u12:18.7.2., +11:u03:18.7.2., +19:u06:obj_attributes;, +17:u04:GETATTR4resok, +11:u11:18.7.2., +19:u14:obj_attributes;, +11:u02:18.7.2., +19:u05:obj_attributes;, +17:u03:GETATTR4resok, +11:u10:18.7.2., +19:u13:obj_attributes;, +11:u01:18.7.2., +19:u04:obj_attributes;, +17:u02:GETATTR4resok, +19:u12:obj_attributes;, +8:u23:obj_, +11:u00:18.7.2., +19:u03:obj_attributes;, +17:u01:GETATTR4resok, +19:u11:obj_attributes;, +19:u02:obj_attributes;, +17:u00:GETATTR4resok, +19:u10:obj_attributes;, +17:u14:getattr4resok, +19:u01:obj_attributes;, +11:u08:18.7.3., +17:u13:getattr4resok, +19:u00:obj_attributes;, +17:u12:getattr4resok, +11:u07:18.7.3., +17:u11:getattr4resok, +11:u06:18.7.3., +17:u10:getattr4resok, +11:u14:18.7.3., +11:u05:18.7.3., +11:u13:18.7.3., +11:u04:18.7.3., +11:u12:18.7.3., +11:u03:18.7.3., +11:u11:18.7.3., +11:u02:18.7.3., +11:u10:18.7.3., +11:u01:18.7.3., +11:u00:18.7.3., +10:u08:first., +10:u07:first., +12:u14:followed, +10:u06:first., +12:u13:followed, +10:u14:first., +10:u05:first., +12:u12:followed, +10:u13:first., +10:u04:first., +12:u11:followed, +10:u12:first., +10:u03:first., +12:u10:followed, +10:u11:first., +10:u02:first., +10:u10:first., +10:u01:first., +10:u00:first., +14:u08:supported., +15:u08:previously,, +15:u07:previously,, +14:u07:supported., +15:u06:previously,, +14:u06:supported., +15:u05:previously,, +8:u08:5.6,, +14:u14:supported., +14:u05:supported., +15:u04:previously,, +8:u07:5.6,, +14:u13:supported., +14:u04:supported., +15:u03:previously,, +8:u06:5.6,, +14:u12:supported., +14:u03:supported., +15:u02:previously,, +8:u05:5.6,, +14:u11:supported., +14:u02:supported., +15:u01:previously,, +8:u04:5.6,, +14:u10:supported., +14:u01:supported., +15:u00:previously,, +8:u03:5.6,, +8:u08:444], +14:u00:supported., +8:u02:5.6,, +8:u07:444], +8:u01:5.6,, +8:u06:444], +11:u08:18.7.4., +8:u00:5.6,, +8:u05:444], +8:u04:444], +11:u07:18.7.4., +8:u03:444], +11:u06:18.7.4., +8:u02:444], +11:u14:18.7.4., +11:u05:18.7.4., +8:u01:444], +11:u13:18.7.4., +11:u04:18.7.4., +8:u00:444], +11:u12:18.7.4., +11:u03:18.7.4., +11:u11:18.7.4., +11:u02:18.7.4., +13:u08:callback., +11:u10:18.7.4., +11:u01:18.7.4., +13:u07:callback., +11:u00:18.7.4., +11:u08:occurs:, +13:u06:callback., +13:u05:callback., +11:u07:occurs:, +15:u08:CB_GETATTR., +13:u04:callback., +11:u06:occurs:, +13:u03:callback., +11:u14:occurs:, +11:u05:occurs:, +15:u07:CB_GETATTR., +13:u02:callback., +11:u13:occurs:, +11:u04:occurs:, +15:u06:CB_GETATTR., +13:u01:callback., +11:u12:occurs:, +15:u14:cb_getattr., +11:u03:occurs:, +15:u05:CB_GETATTR., +13:u00:callback., +11:u11:occurs:, +15:u13:cb_getattr., +11:u02:occurs:, +15:u04:CB_GETATTR., +16:u08:outstanding., +11:u10:occurs:, +15:u12:cb_getattr., +11:u01:occurs:, +15:u03:CB_GETATTR., +15:u11:cb_getattr., +11:u00:occurs:, +15:u02:CB_GETATTR., +16:u07:outstanding., +11:u08:18.8.1., +15:u10:cb_getattr., +15:u01:CB_GETATTR., +16:u06:outstanding., +16:u14:outstanding., +15:u00:CB_GETATTR., +16:u05:outstanding., +11:u07:18.8.1., +16:u13:outstanding., +16:u04:outstanding., +11:u06:18.8.1., +11:u08:18.8.2., +16:u12:outstanding., +11:u14:18.8.1., +16:u03:outstanding., +11:u05:18.8.1., +16:u11:outstanding., +11:u13:18.8.1., +16:u02:outstanding., +11:u04:18.8.1., +11:u07:18.8.2., +15:u08:GETFH4resok, +16:u10:outstanding., +11:u12:18.8.1., +16:u01:outstanding., +11:u03:18.8.1., +11:u06:18.8.2., +11:u08:object;, +15:u07:GETFH4resok, +11:u11:18.8.1., +11:u14:18.8.2., +16:u00:outstanding., +11:u02:18.8.1., +11:u05:18.8.2., +15:u06:GETFH4resok, +11:u10:18.8.1., +11:u13:18.8.2., +11:u01:18.8.1., +11:u04:18.8.2., +11:u07:object;, +15:u05:GETFH4resok, +11:u12:18.8.2., +11:u00:18.8.1., +11:u03:18.8.2., +11:u06:object;, +15:u04:GETFH4resok, +11:u11:18.8.2., +11:u14:object;, +11:u02:18.8.2., +11:u05:object;, +15:u03:GETFH4resok, +11:u10:18.8.2., +11:u13:object;, +11:u01:18.8.2., +11:u04:object;, +15:u02:GETFH4resok, +11:u12:object;, +11:u00:18.8.2., +11:u03:object;, +15:u01:GETFH4resok, +11:u11:object;, +11:u02:object;, +15:u00:GETFH4resok, +11:u10:object;, +15:u14:getfh4resok, +11:u01:object;, +15:u13:getfh4resok, +11:u00:object;, +15:u12:getfh4resok, +15:u11:getfh4resok, +15:u10:getfh4resok, +8:u08:445], +8:u07:445], +8:u06:445], +11:u08:18.8.3., +8:u05:445], +8:u04:445], +11:u07:18.8.3., +8:u03:445], +11:u06:18.8.3., +8:u02:445], +11:u14:18.8.3., +11:u05:18.8.3., +8:u01:445], +11:u13:18.8.3., +11:u04:18.8.3., +8:u00:445], +11:u12:18.8.3., +11:u03:18.8.3., +11:u11:18.8.3., +11:u02:18.8.3., +17:u08:justification, +11:u10:18.8.3., +11:u01:18.8.3., +11:u08:18.8.4., +11:u00:18.8.3., +17:u07:justification, +17:u06:justification, +11:u07:18.8.4., +17:u14:justification, +17:u05:justification, +11:u06:18.8.4., +17:u13:justification, +11:u14:18.8.4., +17:u04:justification, +11:u05:18.8.4., +17:u12:justification, +11:u13:18.8.4., +17:u03:justification, +11:u04:18.8.4., +17:u11:justification, +11:u12:18.8.4., +17:u02:justification, +11:u03:18.8.4., +14:u08:(directory, +17:u10:justification, +11:u11:18.8.4., +17:u01:justification, +11:u02:18.8.4., +14:u07:(directory, +10:u08:(entry, +11:u10:18.8.4., +17:u00:justification, +11:u01:18.8.4., +14:u06:(directory, +10:u07:(entry, +11:u00:18.8.4., +11:u08:18.9.1., +14:u05:(directory, +10:u06:(entry, +14:u04:(directory, +10:u05:(entry, +11:u07:18.9.1., +14:u03:(directory, +10:u04:(entry, +11:u06:18.9.1., +14:u02:(directory, +10:u03:(entry, +13:u08:SAVED_FH:, +11:u14:18.9.1., +11:u05:18.9.1., +14:u01:(directory, +10:u02:(entry, +13:u07:SAVED_FH:, +11:u13:18.9.1., +11:u04:18.9.1., +12:u08:newname;, +14:u00:(directory, +10:u01:(entry, +13:u06:SAVED_FH:, +11:u12:18.9.1., +11:u03:18.9.1., +10:u00:(entry, +13:u05:SAVED_FH:, +11:u11:18.9.1., +11:u02:18.9.1., +12:u07:newname;, +11:u08:18.9.2., +13:u04:SAVED_FH:, +11:u10:18.9.1., +11:u01:18.9.1., +12:u06:newname;, +13:u03:SAVED_FH:, +12:u14:newname;, +11:u00:18.9.1., +12:u05:newname;, +11:u07:18.9.2., +13:u02:SAVED_FH:, +12:u13:newname;, +12:u04:newname;, +11:u06:18.9.2., +13:u01:SAVED_FH:, +12:u12:newname;, +11:u14:18.9.2., +8:u23:newn, +12:u03:newname;, +11:u05:18.9.2., +13:u00:SAVED_FH:, +8:u08:446], +12:u11:newname;, +11:u13:18.9.2., +12:u02:newname;, +11:u04:18.9.2., +8:u07:446], +12:u10:newname;, +11:u12:18.9.2., +12:u01:newname;, +11:u03:18.9.2., +8:u06:446], +11:u11:18.9.2., +12:u00:newname;, +11:u02:18.9.2., +8:u05:446], +11:u10:18.9.2., +11:u01:18.9.2., +8:u04:446], +14:u08:LINK4resok, +11:u00:18.9.2., +8:u03:446], +14:u07:LINK4resok, +8:u02:446], +14:u06:LINK4resok, +8:u01:446], +14:u05:LINK4resok, +8:u00:446], +14:u04:LINK4resok, +14:u03:LINK4resok, +14:u02:LINK4resok, +14:u01:LINK4resok, +14:u00:LINK4resok, +14:u14:link4resok, +11:u08:18.9.3., +14:u13:link4resok, +14:u12:link4resok, +11:u07:18.9.3., +14:u11:link4resok, +11:u06:18.9.3., +14:u10:link4resok, +11:u14:18.9.3., +11:u05:18.9.3., +11:u13:18.9.3., +11:u04:18.9.3., +11:u12:18.9.3., +11:u03:18.9.3., +11:u11:18.9.3., +11:u02:18.9.3., +11:u10:18.9.3., +11:u01:18.9.3., +11:u00:18.9.3., +10:u08:cinfo., +10:u07:cinfo., +10:u06:cinfo., +10:u05:cinfo., +11:u08:18.9.4., +10:u04:cinfo., +10:u03:cinfo., +11:u07:18.9.4., +10:u02:cinfo., +11:u06:18.9.4., +10:u01:cinfo., +11:u14:18.9.4., +11:u05:18.9.4., +10:u00:cinfo., +11:u13:18.9.4., +11:u04:18.9.4., +11:u12:18.9.4., +11:u03:18.9.4., +11:u11:18.9.4., +11:u02:18.9.4., +11:u10:18.9.4., +11:u01:18.9.4., +9:u08:link,, +21:u14:nfs4err_file_open, +11:u00:18.9.4., +13:u08:existence, +21:u13:nfs4err_file_open, +9:u07:link,, +21:u12:nfs4err_file_open, +9:u06:link,, +13:u07:existence, +12:u08:accurate, +21:u11:nfs4err_file_open, +9:u14:link,, +9:u05:link,, +13:u06:existence, +21:u10:nfs4err_file_open, +9:u13:link,, +13:u14:existence, +9:u04:link,, +13:u05:existence, +12:u07:accurate, +9:u12:link,, +13:u13:existence, +9:u03:link,, +13:u04:existence, +12:u06:accurate, +9:u11:link,, +13:u12:existence, +12:u14:accurate, +9:u02:link,, +13:u03:existence, +12:u05:accurate, +9:u10:link,, +13:u11:existence, +12:u13:accurate, +9:u01:link,, +13:u02:existence, +12:u04:accurate, +13:u10:existence, +12:u12:accurate, +9:u00:link,, +13:u01:existence, +12:u03:accurate, +12:u11:accurate, +13:u00:existence, +12:u02:accurate, +12:u10:accurate, +9:u14:whose, +12:u01:accurate, +8:u08:447], +9:u13:whose, +12:u00:accurate, +8:u07:447], +9:u12:whose, +8:u23:whos, +8:u06:447], +9:u11:whose, +8:u05:447], +9:u10:whose, +8:u04:447], +8:u03:447], +8:u02:447], +8:u01:447], +8:u00:447], +11:u14:happens, +11:u13:happens, +11:u12:happens, +11:u11:happens, +13:u08:statement, +11:u10:happens, +13:u07:statement, +13:u06:statement, +13:u05:statement, +13:u04:statement, +13:u03:statement, +13:u02:statement, +13:u01:statement, +13:u00:statement, +12:uI2:,".""..", +12:uI1:,".""..", +12:uI0:,".""..", +8:u08:448], +8:u07:448], +8:u06:448], +8:u05:448], +8:u04:448], +8:u03:448], +20:u08:NFS4ERR_NOTSUPP., +8:u02:448], +8:u01:448], +20:u07:NFS4ERR_NOTSUPP., +8:u00:448], +20:u06:NFS4ERR_NOTSUPP., +20:u14:nfs4err_notsupp., +20:u05:NFS4ERR_NOTSUPP., +20:u13:nfs4err_notsupp., +20:u04:NFS4ERR_NOTSUPP., +12:u08:18.10.1., +20:u12:nfs4err_notsupp., +20:u03:NFS4ERR_NOTSUPP., +20:u11:nfs4err_notsupp., +20:u02:NFS4ERR_NOTSUPP., +12:u07:18.10.1., +20:u10:nfs4err_notsupp., +20:u01:NFS4ERR_NOTSUPP., +12:u06:18.10.1., +12:u14:18.10.1., +20:u00:NFS4ERR_NOTSUPP., +12:u05:18.10.1., +8:u08:449], +12:u13:18.10.1., +12:u04:18.10.1., +8:u07:449], +12:u12:18.10.1., +12:u03:18.10.1., +8:u06:449], +12:u11:18.10.1., +12:u02:18.10.1., +8:u05:449], +12:u10:18.10.1., +12:u01:18.10.1., +8:u04:449], +12:u00:18.10.1., +8:u03:449], +8:u02:449], +8:u01:449], +8:u00:449], +21:u08:exist_lock_owner4, +17:u08:lock_stateid;, +21:u07:exist_lock_owner4, +21:u06:exist_lock_owner4, +17:u07:lock_stateid;, +21:u05:exist_lock_owner4, +17:u06:lock_stateid;, +21:u04:exist_lock_owner4, +17:u14:lock_stateid;, +17:u05:lock_stateid;, +21:u03:exist_lock_owner4, +17:u13:lock_stateid;, +17:u04:lock_stateid;, +21:u02:exist_lock_owner4, +11:u08:locker4, +17:u12:lock_stateid;, +17:u03:lock_stateid;, +21:u01:exist_lock_owner4, +11:u07:locker4, +9:u08:TRUE:, +17:u11:lock_stateid;, +17:u02:lock_stateid;, +15:u08:open_owner;, +21:u00:exist_lock_owner4, +11:u06:locker4, +9:u07:TRUE:, +17:u10:lock_stateid;, +17:u01:lock_stateid;, +11:u05:locker4, +9:u06:TRUE:, +17:u00:lock_stateid;, +15:u07:open_owner;, +11:u04:locker4, +9:u05:TRUE:, +10:u08:FALSE:, +23:u14:open_to_lock_owner4, +15:u06:open_owner;, +11:u03:locker4, +9:u04:TRUE:, +10:u07:FALSE:, +23:u13:open_to_lock_owner4, +15:u14:open_owner;, +15:u05:open_owner;, +11:u02:locker4, +9:u03:TRUE:, +10:u06:FALSE:, +23:u12:open_to_lock_owner4, +15:u13:open_owner;, +15:u04:open_owner;, +11:u01:locker4, +9:u02:TRUE:, +10:u05:FALSE:, +23:u11:open_to_lock_owner4, +15:u12:open_owner;, +21:u14:exist_lock_owner4, +15:u03:open_owner;, +11:u00:locker4, +9:u01:TRUE:, +10:u04:FALSE:, +23:u10:open_to_lock_owner4, +15:u11:open_owner;, +21:u13:exist_lock_owner4, +15:u02:open_owner;, +9:u00:TRUE:, +10:u03:FALSE:, +21:u08:LOCK/LOCKT/LOCKU:, +15:u10:open_owner;, +21:u12:exist_lock_owner4, +15:u01:open_owner;, +10:u02:FALSE:, +21:u07:LOCK/LOCKT/LOCKU:, +21:u11:exist_lock_owner4, +15:u00:open_owner;, +10:u01:FALSE:, +21:u06:LOCK/LOCKT/LOCKU:, +21:u10:exist_lock_owner4, +18:u08:nfs_lock_type4, +10:u00:FALSE:, +21:u05:LOCK/LOCKT/LOCKU:, +8:uI2:*//:, +21:u04:LOCK/LOCKT/LOCKU:, +13:u08:locktype;, +8:uI1:*//:, +18:u07:nfs_lock_type4, +12:u08:reclaim;, +21:u03:LOCK/LOCKT/LOCKU:, +13:u07:locktype;, +8:uI0:*//:, +18:u06:nfs_lock_type4, +21:u02:LOCK/LOCKT/LOCKU:, +13:u06:locktype;, +18:u14:nfs_lock_type4, +18:u05:nfs_lock_type4, +12:u07:reclaim;, +21:u01:LOCK/LOCKT/LOCKU:, +13:u05:locktype;, +18:u13:nfs_lock_type4, +18:u04:nfs_lock_type4, +12:u06:reclaim;, +21:u00:LOCK/LOCKT/LOCKU:, +13:u04:locktype;, +18:u12:nfs_lock_type4, +12:u14:reclaim;, +18:u03:nfs_lock_type4, +12:u05:reclaim;, +11:u08:length;, +13:u03:locktype;, +18:u11:nfs_lock_type4, +12:u13:reclaim;, +18:u02:nfs_lock_type4, +12:u04:reclaim;, +13:u02:locktype;, +18:u10:nfs_lock_type4, +12:u12:reclaim;, +18:u01:nfs_lock_type4, +12:u03:reclaim;, +11:u07:length;, +11:u08:locker;, +13:u01:locktype;, +12:u11:reclaim;, +18:u00:nfs_lock_type4, +12:u02:reclaim;, +11:u06:length;, +13:u00:locktype;, +12:u10:reclaim;, +11:u14:length;, +12:u01:reclaim;, +11:u05:length;, +11:u07:locker;, +12:u08:18.10.2., +11:u13:length;, +11:u14:locker4, +12:u00:reclaim;, +11:u04:length;, +11:u06:locker;, +11:u12:length;, +11:u13:locker4, +11:u14:locker;, +11:u03:length;, +11:u05:locker;, +12:u07:18.10.2., +11:u11:length;, +11:u12:locker4, +11:u13:locker;, +11:u02:length;, +11:u04:locker;, +12:u06:18.10.2., +11:u10:length;, +11:u11:locker4, +11:u12:locker;, +12:u14:18.10.2., +11:u01:length;, +11:u03:locker;, +12:u05:18.10.2., +8:u08:450], +11:u10:locker4, +11:u11:locker;, +12:u13:18.10.2., +11:u00:length;, +11:u02:locker;, +12:u04:18.10.2., +8:u07:450], +11:u10:locker;, +12:u12:18.10.2., +11:u01:locker;, +12:u03:18.10.2., +8:u06:450], +12:u11:18.10.2., +11:u00:locker;, +12:u02:18.10.2., +8:u05:450], +12:u10:18.10.2., +12:u01:18.10.2., +8:u04:450], +15:u08:LOCK4denied, +12:u00:18.10.2., +8:u03:450], +15:u07:LOCK4denied, +8:u02:450], +15:u06:LOCK4denied, +8:u01:450], +15:u05:LOCK4denied, +8:u00:450], +15:u04:LOCK4denied, +15:u03:LOCK4denied, +15:u02:LOCK4denied, +15:u01:LOCK4denied, +15:u00:LOCK4denied, +14:u08:LOCK4resok, +14:u07:LOCK4resok, +14:u06:LOCK4resok, +14:u05:LOCK4resok, +14:u04:LOCK4resok, +14:u03:LOCK4resok, +14:u02:LOCK4resok, +14:u01:LOCK4resok, +14:u00:LOCK4resok, +19:u08:NFS4ERR_DENIED:, +14:u14:lock4resok, +11:u08:denied;, +19:u07:NFS4ERR_DENIED:, +14:u13:lock4resok, +19:u06:NFS4ERR_DENIED:, +14:u12:lock4resok, +11:u07:denied;, +19:u05:NFS4ERR_DENIED:, +14:u11:lock4resok, +15:u14:lock4denied, +11:u06:denied;, +19:u04:NFS4ERR_DENIED:, +14:u10:lock4resok, +15:u13:lock4denied, +11:u14:denied;, +11:u05:denied;, +12:u08:18.10.3., +19:u03:NFS4ERR_DENIED:, +15:u12:lock4denied, +11:u13:denied;, +11:u04:denied;, +19:u02:NFS4ERR_DENIED:, +15:u11:lock4denied, +11:u12:denied;, +11:u03:denied;, +12:u07:18.10.3., +19:u01:NFS4ERR_DENIED:, +15:u10:lock4denied, +11:u11:denied;, +11:u02:denied;, +12:u06:18.10.3., +19:u00:NFS4ERR_DENIED:, +11:u10:denied;, +12:u14:18.10.3., +11:u01:denied;, +12:u05:18.10.3., +12:u13:18.10.3., +11:u00:denied;, +12:u04:18.10.3., +9:u08:Bytes, +12:u12:18.10.3., +12:u03:18.10.3., +12:u11:18.10.3., +12:u02:18.10.3., +9:u07:Bytes, +12:u10:18.10.3., +12:u01:18.10.3., +9:u06:Bytes, +12:u00:18.10.3., +9:u05:Bytes, +9:u04:Bytes, +9:u03:Bytes, +9:u02:Bytes, +9:u01:Bytes, +9:u00:Bytes, +7:u08:fit, +7:u07:fit, +10:u14:32-bit, +7:u06:fit, +10:u13:32-bit, +7:u14:fit, +7:u05:fit, +10:u12:32-bit, +7:u13:fit, +6:u21:32, +7:u22:32-, +8:u23:32-b, +7:u04:fit, +10:u11:32-bit, +7:u12:fit, +7:u22:fit, +7:u23:fit, +7:u03:fit, +10:u10:32-bit, +7:u11:fit, +7:u02:fit, +7:u10:fit, +7:u01:fit, +7:u00:fit, +8:u08:451], +8:u07:451], +8:u06:451], +8:u05:451], +8:u04:451], +10:u08:locker, +8:u03:451], +10:u07:locker, +8:u02:451], +10:u06:locker, +8:u01:451], +10:u05:locker, +8:u00:451], +10:u04:locker, +10:u03:locker, +10:u02:locker, +10:u01:locker, +10:u00:locker, +44:u08:(locker.open_owner.lock_owner.clientid)., +44:u07:(locker.open_owner.lock_owner.clientid)., +44:u06:(locker.open_owner.lock_owner.clientid)., +44:u14:(locker.open_owner.lock_owner.clientid)., +44:u05:(locker.open_owner.lock_owner.clientid)., +44:u13:(locker.open_owner.lock_owner.clientid)., +44:u04:(locker.open_owner.lock_owner.clientid)., +33:u08:(locker.open_owner.open_seqid, +44:u12:(locker.open_owner.lock_owner.clientid)., +44:u03:(locker.open_owner.lock_owner.clientid)., +44:u11:(locker.open_owner.lock_owner.clientid)., +44:u02:(locker.open_owner.lock_owner.clientid)., +33:u07:(locker.open_owner.open_seqid, +35:u08:(locker.lock_owner.lock_seqid)., +44:u10:(locker.open_owner.lock_owner.clientid)., +44:u01:(locker.open_owner.lock_owner.clientid)., +33:u06:(locker.open_owner.open_seqid, +33:u14:(locker.open_owner.open_seqid, +44:u00:(locker.open_owner.lock_owner.clientid)., +33:u05:(locker.open_owner.open_seqid, +35:u07:(locker.lock_owner.lock_seqid)., +33:u13:(locker.open_owner.open_seqid, +33:u04:(locker.open_owner.open_seqid, +35:u06:(locker.lock_owner.lock_seqid)., +33:u12:(locker.open_owner.open_seqid, +35:u14:(locker.lock_owner.lock_seqid)., +33:u03:(locker.open_owner.open_seqid, +35:u05:(locker.lock_owner.lock_seqid)., +33:u11:(locker.open_owner.open_seqid, +35:u13:(locker.lock_owner.lock_seqid)., +33:u02:(locker.open_owner.open_seqid, +35:u04:(locker.lock_owner.lock_seqid)., +33:u10:(locker.open_owner.open_seqid, +35:u12:(locker.lock_owner.lock_seqid)., +33:u01:(locker.open_owner.open_seqid, +35:u03:(locker.lock_owner.lock_seqid)., +35:u11:(locker.lock_owner.lock_seqid)., +33:u00:(locker.open_owner.open_seqid, +35:u02:(locker.lock_owner.lock_seqid)., +35:u10:(locker.lock_owner.lock_seqid)., +35:u01:(locker.lock_owner.lock_seqid)., +35:u00:(locker.lock_owner.lock_seqid)., +8:u08:452], +8:u07:452], +8:u06:452], +12:u08:18.10.4., +8:u05:452], +8:u04:452], +12:u07:18.10.4., +8:u03:452], +12:u06:18.10.4., +8:u02:452], +12:u14:18.10.4., +12:u05:18.10.4., +8:u01:452], +12:u13:18.10.4., +12:u04:18.10.4., +8:u00:452], +12:u12:18.10.4., +12:u03:18.10.4., +12:u11:18.10.4., +12:u02:18.10.4., +9:u08:right, +12:u10:18.10.4., +12:u01:18.10.4., +9:u07:right, +12:u00:18.10.4., +9:u06:right, +9:u05:right, +9:u04:right, +9:u03:right, +9:u02:right, +9:u01:right, +10:u08:type),, +9:u00:right, +10:u07:type),, +10:u06:type),, +10:u05:type),, +9:uI2:),-,-, +10:u04:type),, +9:uI1:),-,-, +10:u03:type),, +9:uI0:),-,-, +10:u02:type),, +10:u01:type),, +10:u00:type),, +15:u08:(specifying, +13:u08:upgrading, +15:u07:(specifying, +15:u08:downgrading, +15:u06:(specifying, +13:u08:(changing, +13:u07:upgrading, +15:u05:(specifying, +13:u07:(changing, +13:u06:upgrading, +15:u07:downgrading, +15:u04:(specifying, +13:u06:(changing, +13:u14:upgrading, +13:u05:upgrading, +15:u06:downgrading, +15:u03:(specifying, +13:u05:(changing, +13:u13:upgrading, +15:u14:downgrading, +13:u04:upgrading, +15:u05:downgrading, +15:u02:(specifying, +13:u04:(changing, +13:u12:upgrading, +15:u13:downgrading, +13:u03:upgrading, +15:u04:downgrading, +15:u01:(specifying, +13:u03:(changing, +13:u11:upgrading, +15:u12:downgrading, +13:u02:upgrading, +15:u03:downgrading, +15:u00:(specifying, +13:u02:(changing, +13:u10:upgrading, +15:u11:downgrading, +13:u01:upgrading, +15:u02:downgrading, +13:u01:(changing, +15:u10:downgrading, +13:u00:upgrading, +15:u01:downgrading, +13:u00:(changing, +15:u00:downgrading, +12:u08:locally,, +12:u07:locally,, +12:u06:locally,, +12:u14:locally,, +12:u05:locally,, +12:u13:locally,, +12:u04:locally,, +12:u12:locally,, +12:u03:locally,, +12:u11:locally,, +12:u02:locally,, +12:u10:locally,, +12:u01:locally,, +12:u00:locally,, +8:u08:453], +8:u07:453], +8:u06:453], +8:u05:453], +8:u04:453], +8:u03:453], +12:u08:18.11.1., +8:u02:453], +8:u01:453], +12:u07:18.11.1., +8:u00:453], +12:u06:18.11.1., +12:u14:18.11.1., +12:u05:18.11.1., +12:u13:18.11.1., +12:u04:18.11.1., +12:u12:18.11.1., +12:u03:18.11.1., +12:u11:18.11.1., +12:u02:18.11.1., +12:u10:18.11.1., +12:u01:18.11.1., +12:u00:18.11.1., +12:u08:18.11.2., +12:u07:18.11.2., +12:u06:18.11.2., +12:u14:18.11.2., +12:u05:18.11.2., +12:u13:18.11.2., +12:u04:18.11.2., +12:u12:18.11.2., +12:u03:18.11.2., +12:u11:18.11.2., +12:u02:18.11.2., +12:u10:18.11.2., +12:u01:18.11.2., +12:u00:18.11.2., +12:u08:18.11.3., +12:u07:18.11.3., +12:u06:18.11.3., +12:u14:18.11.3., +12:u05:18.11.3., +12:u13:18.11.3., +12:u04:18.11.3., +12:u12:18.11.3., +12:u03:18.11.3., +12:u11:18.11.3., +12:u02:18.11.3., +12:u10:18.11.3., +12:u01:18.11.3., +12:u00:18.11.3., +14:u08:WRITEW_LT., +14:u07:WRITEW_LT., +12:u14:blocking, +14:u06:WRITEW_LT., +12:u13:blocking, +14:u14:writew_lt., +14:u05:WRITEW_LT., +9:u08:LOCK., +12:u12:blocking, +14:u13:writew_lt., +14:u04:WRITEW_LT., +9:u07:LOCK., +12:u11:blocking, +14:u12:writew_lt., +21:u14:nfs4err_bad_range, +14:u03:WRITEW_LT., +9:u06:LOCK., +12:u10:blocking, +14:u11:writew_lt., +21:u13:nfs4err_bad_range, +14:u02:WRITEW_LT., +9:u05:LOCK., +14:u10:writew_lt., +21:u12:nfs4err_bad_range, +14:u01:WRITEW_LT., +9:u04:LOCK., +21:u11:nfs4err_bad_range, +14:u00:WRITEW_LT., +9:u03:LOCK., +8:u08:454], +21:u10:nfs4err_bad_range, +9:u02:LOCK., +8:u07:454], +9:u01:LOCK., +8:u06:454], +9:u00:LOCK., +8:u05:454], +8:u04:454], +8:u03:454], +8:u02:454], +8:u01:454], +8:u00:454], +12:u08:18.11.4., +12:u07:18.11.4., +12:u06:18.11.4., +12:u14:18.11.4., +12:u05:18.11.4., +12:u13:18.11.4., +12:u04:18.11.4., +12:u12:18.11.4., +12:u03:18.11.4., +12:u11:18.11.4., +12:u02:18.11.4., +12:u10:18.11.4., +9:u14:lockt, +12:u01:18.11.4., +9:u13:lockt, +12:u00:18.11.4., +9:u12:lockt, +9:u11:lockt, +9:u10:lockt, +22:u14:nfs4err_lock_range, +22:u13:nfs4err_lock_range, +22:u12:nfs4err_lock_range, +22:u11:nfs4err_lock_range, +22:u10:nfs4err_lock_range, +12:u08:18.12.1., +12:u07:18.12.1., +12:u06:18.12.1., +12:u14:18.12.1., +12:u05:18.12.1., +8:u08:455], +12:u13:18.12.1., +12:u04:18.12.1., +8:u07:455], +12:u12:18.12.1., +12:u03:18.12.1., +8:u06:455], +12:u11:18.12.1., +12:u02:18.12.1., +8:u05:455], +12:u10:18.12.1., +12:u01:18.12.1., +8:u04:455], +12:u00:18.12.1., +8:u03:455], +8:u02:455], +8:u01:455], +8:u00:455], +12:u08:18.12.2., +12:u07:18.12.2., +12:u06:18.12.2., +12:u14:18.12.2., +12:u05:18.12.2., +12:u13:18.12.2., +12:u04:18.12.2., +12:u12:18.12.2., +12:u03:18.12.2., +12:u11:18.12.2., +12:u14:nfs4_ok:, +12:u02:18.12.2., +12:u10:18.12.2., +12:u13:nfs4_ok:, +12:u01:18.12.2., +12:u12:nfs4_ok:, +12:u00:18.12.2., +12:u08:18.12.3., +12:u11:nfs4_ok:, +12:u10:nfs4_ok:, +12:u07:18.12.3., +15:u08:parameters., +12:u06:18.12.3., +12:u14:18.12.3., +12:u05:18.12.3., +15:u07:parameters., +12:u13:18.12.3., +12:u04:18.12.3., +15:u06:parameters., +12:u12:18.12.3., +15:u14:parameters., +12:u03:18.12.3., +15:u05:parameters., +12:u11:18.12.3., +15:u13:parameters., +12:u02:18.12.3., +15:u04:parameters., +12:u10:18.12.3., +15:u12:parameters., +12:u01:18.12.3., +15:u03:parameters., +15:u11:parameters., +12:u00:18.12.3., +15:u02:parameters., +15:u10:parameters., +15:u01:parameters., +15:u00:parameters., +8:u08:456], +8:u07:456], +8:u06:456], +12:u08:18.12.4., +8:u05:456], +8:u04:456], +12:u07:18.12.4., +8:u03:456], +12:u06:18.12.4., +23:u08:NFS4ERR_LOCK_RANGE., +8:u02:456], +12:u14:18.12.4., +12:u05:18.12.4., +11:u08:locked,, +8:u01:456], +12:u13:18.12.4., +12:u04:18.12.4., +23:u07:NFS4ERR_LOCK_RANGE., +12:u08:overlaps, +8:u00:456], +12:u12:18.12.4., +12:u03:18.12.4., +23:u06:NFS4ERR_LOCK_RANGE., +11:u07:locked,, +12:u11:18.12.4., +23:u14:nfs4err_lock_range., +12:u02:18.12.4., +23:u05:NFS4ERR_LOCK_RANGE., +11:u06:locked,, +12:u07:overlaps, +12:u10:18.12.4., +23:u13:nfs4err_lock_range., +11:u14:locked,, +12:u01:18.12.4., +23:u04:NFS4ERR_LOCK_RANGE., +11:u05:locked,, +12:u06:overlaps, +23:u12:nfs4err_lock_range., +11:u13:locked,, +12:u14:overlaps, +12:u00:18.12.4., +23:u03:NFS4ERR_LOCK_RANGE., +11:u04:locked,, +12:u05:overlaps, +23:u11:nfs4err_lock_range., +11:u12:locked,, +12:u13:overlaps, +23:u02:NFS4ERR_LOCK_RANGE., +11:u03:locked,, +12:u04:overlaps, +12:u08:simulate, +23:u10:nfs4err_lock_range., +11:u11:locked,, +12:u12:overlaps, +23:u01:NFS4ERR_LOCK_RANGE., +11:u02:locked,, +12:u03:overlaps, +12:u07:simulate, +11:u10:locked,, +12:u11:overlaps, +8:uI2:,[],, +23:u00:NFS4ERR_LOCK_RANGE., +11:u01:locked,, +12:u02:overlaps, +12:u06:simulate, +12:u10:overlaps, +8:uI1:,[],, +11:u00:locked,, +12:u01:overlaps, +12:u05:simulate, +8:uI0:,[],, +12:u00:overlaps, +12:u04:simulate, +12:u03:simulate, +12:u08:18.13.1., +12:u02:simulate, +12:u01:simulate, +12:u07:18.13.1., +12:u00:simulate, +12:u06:18.13.1., +12:u14:18.13.1., +12:u05:18.13.1., +12:u13:18.13.1., +12:u04:18.13.1., +12:u12:18.13.1., +12:u03:18.13.1., +12:u08:18.13.2., +12:u11:18.13.1., +12:u02:18.13.1., +12:u10:18.13.1., +12:u01:18.13.1., +12:u07:18.13.2., +12:u00:18.13.1., +12:u06:18.13.2., +12:u14:18.13.2., +12:u05:18.13.2., +12:u13:18.13.2., +12:u04:18.13.2., +12:u12:18.13.2., +12:u03:18.13.2., +12:u08:18.13.3., +12:u11:18.13.2., +12:u02:18.13.2., +12:u10:18.13.2., +12:u01:18.13.2., +12:u07:18.13.3., +12:u00:18.13.2., +12:u06:18.13.3., +12:u14:18.13.3., +12:u05:18.13.3., +12:u13:18.13.3., +12:u04:18.13.3., +12:u12:18.13.3., +12:u03:18.13.3., +12:u11:18.13.3., +12:u02:18.13.3., +14:u08:component,, +12:u10:18.13.3., +12:u01:18.13.3., +12:u00:18.13.3., +14:u07:component,, +14:u06:component,, +14:u14:component,, +14:u05:component,, +14:u13:component,, +14:u04:component,, +8:u08:457], +14:u12:component,, +14:u03:component,, +8:u07:457], +14:u11:component,, +14:u02:component,, +8:u06:457], +14:u10:component,, +14:u01:component,, +8:u05:457], +14:u00:component,, +8:u04:457], +12:u08:18.13.4., +8:u03:457], +8:u02:457], +12:u07:18.13.4., +8:u01:457], +8:u14:obey, +12:u06:18.13.4., +16:u08:filehandle):, +8:u00:457], +8:u13:obey, +12:u14:18.13.4., +12:u05:18.13.4., +8:u12:obey, +12:u13:18.13.4., +7:u22:obe, +8:u23:obey, +12:u04:18.13.4., +16:u07:filehandle):, +8:u11:obey, +12:u12:18.13.4., +12:u03:18.13.4., +16:u06:filehandle):, +9:u08:"pub", +8:u10:obey, +12:u11:18.13.4., +16:u14:filehandle):, +12:u02:18.13.4., +16:u05:filehandle):, +9:u07:"pub", +12:u10:18.13.4., +16:u13:filehandle):, +12:u01:18.13.4., +16:u04:filehandle):, +9:u06:"pub", +16:u12:filehandle):, +12:u00:18.13.4., +16:u03:filehandle):, +9:u05:"pub", +16:u11:filehandle):, +16:u02:filehandle):, +9:u04:"pub", +9:u08:"bar", +16:u10:filehandle):, +16:u01:filehandle):, +9:u03:"pub", +9:u07:"bar", +16:u00:filehandle):, +9:u02:"pub", +9:u06:"bar", +9:u01:"pub", +9:u05:"bar", +9:u00:"pub", +9:u04:"bar", +9:u03:"bar", +10:u08:looked, +14:u08:mountpoint, +9:u02:"bar", +10:u07:looked, +9:u01:"bar", +10:u06:looked, +12:u08:crossing, +14:u07:mountpoint, +9:u00:"bar", +10:u05:looked, +12:u07:crossing, +14:u06:mountpoint, +10:u04:looked, +12:u06:crossing, +14:u14:mountpoint, +14:u05:mountpoint, +10:u03:looked, +12:u05:crossing, +14:u13:mountpoint, +14:u04:mountpoint, +10:u02:looked, +12:u04:crossing, +14:u12:mountpoint, +14:u03:mountpoint, +10:u01:looked, +12:u03:crossing, +14:u11:mountpoint, +14:u02:mountpoint, +10:u00:looked, +12:u02:crossing, +14:u10:mountpoint, +14:u01:mountpoint, +12:u01:crossing, +14:u00:mountpoint, +12:u00:crossing, +10:u08:names., +10:u07:names., +10:u06:names., +13:uI2:".""..".., +10:u05:names., +13:uI1:".""..".., +10:u04:names., +13:uI0:".""..".., +10:u03:names., +10:u02:names., +10:u01:names., +10:u00:names., +8:u08:458], +8:u07:458], +8:u06:458], +8:u05:458], +12:u08:18.14.1., +8:u04:458], +8:u03:458], +12:u07:18.14.1., +8:u02:458], +12:u06:18.14.1., +12:u08:18.14.2., +8:u01:458], +12:u14:18.14.1., +12:u05:18.14.1., +8:u00:458], +12:u13:18.14.1., +12:u04:18.14.1., +12:u07:18.14.2., +12:u12:18.14.1., +12:u03:18.14.1., +12:u06:18.14.2., +12:u11:18.14.1., +12:u14:18.14.2., +12:u02:18.14.1., +12:u05:18.14.2., +12:u10:18.14.1., +12:u13:18.14.2., +12:u01:18.14.1., +12:u04:18.14.2., +12:u12:18.14.2., +12:u00:18.14.1., +12:u03:18.14.2., +12:u08:18.14.3., +12:u11:18.14.2., +12:u02:18.14.2., +12:u10:18.14.2., +12:u01:18.14.2., +12:u07:18.14.3., +12:u00:18.14.2., +12:u06:18.14.3., +12:u14:18.14.3., +12:u05:18.14.3., +12:u13:18.14.3., +12:u04:18.14.3., +12:u12:18.14.3., +12:u03:18.14.3., +12:u11:18.14.3., +12:u02:18.14.3., +12:u10:18.14.3., +12:u01:18.14.3., +17:u14:nfs4err_noent, +12:u00:18.14.3., +17:u13:nfs4err_noent, +17:u12:nfs4err_noent, +17:u11:nfs4err_noent, +6:u08:(a, +17:u10:nfs4err_noent, +6:u07:(a, +6:u06:(a, +14:u08:gracefully, +6:u14:(a, +6:u05:(a, +6:u13:(a, +11:u14:lookupp, +6:u04:(a, +14:u07:gracefully, +6:u12:(a, +11:u13:lookupp, +6:u22:(a, +6:u23:(a, +6:u03:(a, +14:u06:gracefully, +6:u11:(a, +11:u12:lookupp, +14:u14:gracefully, +6:u02:(a, +14:u05:gracefully, +6:u10:(a, +11:u11:lookupp, +14:u13:gracefully, +6:u01:(a, +14:u04:gracefully, +12:u08:18.14.4., +11:u10:lookupp, +14:u12:gracefully, +6:u00:(a, +14:u03:gracefully, +14:u11:gracefully, +14:u02:gracefully, +12:u07:18.14.4., +14:u10:gracefully, +14:u01:gracefully, +12:u06:18.14.4., +12:u08:detached, +12:u14:18.14.4., +14:u00:gracefully, +12:u05:18.14.4., +12:u13:18.14.4., +12:u04:18.14.4., +12:u07:detached, +12:u12:18.14.4., +12:u03:18.14.4., +12:u06:detached, +12:u11:18.14.4., +12:u14:detached, +12:u02:18.14.4., +12:u05:detached, +12:u10:18.14.4., +12:u13:detached, +12:u01:18.14.4., +12:u04:detached, +12:u12:detached, +12:u00:18.14.4., +12:u03:detached, +8:u08:459], +12:u11:detached, +12:u02:detached, +8:u07:459], +12:u10:detached, +12:u01:detached, +8:u06:459], +12:u00:detached, +8:u05:459], +8:u04:459], +13:u08:conveying, +8:u03:459], +13:u07:conveying, +10:u08:expect, +8:u02:459], +13:u06:conveying, +10:u07:expect, +8:u01:459], +13:u05:conveying, +10:u06:expect, +8:u00:459], +13:u04:conveying, +10:u05:expect, +13:u03:conveying, +10:u04:expect, +12:u08:18.15.1., +13:u02:conveying, +10:u03:expect, +10:uI2:(".."), +13:u01:conveying, +10:u02:expect, +10:uI1:(".."), +12:u07:18.15.1., +13:u00:conveying, +10:u01:expect, +10:uI0:(".."), +12:u06:18.15.1., +10:u00:expect, +12:u14:18.15.1., +12:u05:18.15.1., +12:u13:18.15.1., +12:u04:18.15.1., +12:u12:18.15.1., +12:u03:18.15.1., +12:u08:18.15.2., +12:u11:18.15.1., +12:u02:18.15.1., +12:u10:18.15.1., +12:u01:18.15.1., +12:u07:18.15.2., +12:u00:18.15.1., +12:u06:18.15.2., +12:u14:18.15.2., +12:u05:18.15.2., +12:u13:18.15.2., +12:u04:18.15.2., +12:u08:18.15.3., +12:u12:18.15.2., +12:u03:18.15.2., +12:u11:18.15.2., +12:u02:18.15.2., +12:u07:18.15.3., +12:u10:18.15.2., +12:u01:18.15.2., +12:u06:18.15.3., +12:u14:18.15.3., +12:u00:18.15.2., +12:u05:18.15.3., +12:u13:18.15.3., +12:u04:18.15.3., +12:u12:18.15.3., +12:u03:18.15.3., +12:u08:18.15.4., +12:u11:18.15.3., +12:u02:18.15.3., +12:u10:18.15.3., +12:u01:18.15.3., +12:u07:18.15.4., +12:u00:18.15.3., +12:u06:18.15.4., +12:u14:18.15.4., +12:u05:18.15.4., +12:u13:18.15.4., +12:u04:18.15.4., +12:u12:18.15.4., +12:u03:18.15.4., +8:u08:has:, +12:u11:18.15.4., +12:u02:18.15.4., +8:u07:has:, +12:u10:18.15.4., +12:u01:18.15.4., +8:u06:has:, +12:u00:18.15.4., +8:u05:has:, +12:u08:attrbits, +12:u08:Contrast, +8:u04:has:, +12:u07:attrbits, +17:u08:request/reply, +8:u03:has:, +12:u06:attrbits, +12:u07:Contrast, +8:u02:has:, +12:u05:attrbits, +12:u06:Contrast, +17:u07:request/reply, +8:u01:has:, +12:u04:attrbits, +12:u14:contrast, +12:u05:Contrast, +17:u06:request/reply, +8:u00:has:, +12:u03:attrbits, +12:u13:contrast, +17:u14:request/reply, +12:u04:Contrast, +17:u05:request/reply, +12:u02:attrbits, +8:u08:460], +12:u12:contrast, +17:u13:request/reply, +12:u03:Contrast, +17:u04:request/reply, +12:u01:attrbits, +8:u07:460], +12:u11:contrast, +17:u12:request/reply, +12:u02:Contrast, +17:u03:request/reply, +12:u00:attrbits, +8:u06:460], +12:u10:contrast, +17:u11:request/reply, +12:u01:Contrast, +17:u02:request/reply, +8:u05:460], +17:u10:request/reply, +12:u00:Contrast, +17:u01:request/reply, +8:u04:460], +17:u00:request/reply, +8:u03:460], +9:u08:trip., +8:u02:460], +9:u07:trip., +8:u01:460], +9:u06:trip., +9:u14:round, +7:uI2:',/, +8:u00:460], +9:u05:trip., +9:u13:round, +7:uI1:',/, +9:u04:trip., +9:u12:round, +8:u23:roun, +7:uI0:',/, +20:u08:time_modify_set), +9:u03:trip., +9:u11:round, +9:u02:trip., +9:u10:round, +20:u07:time_modify_set), +9:u01:trip., +20:u06:time_modify_set), +12:u08:18.16.1., +9:u00:trip., +20:u14:time_modify_set), +20:u05:time_modify_set), +20:u13:time_modify_set), +20:u04:time_modify_set), +12:u07:18.16.1., +20:u12:time_modify_set), +20:u03:time_modify_set), +12:u06:18.16.1., +20:u11:time_modify_set), +12:u14:18.16.1., +20:u02:time_modify_set), +12:u05:18.16.1., +20:u10:time_modify_set), +12:u13:18.16.1., +20:u01:time_modify_set), +12:u04:18.16.1., +14:u08:UNCHECKED4, +12:u12:18.16.1., +20:u00:time_modify_set), +12:u03:18.16.1., +12:u11:18.16.1., +12:u02:18.16.1., +14:u07:UNCHECKED4, +12:u10:18.16.1., +12:u01:18.16.1., +14:u06:UNCHECKED4, +14:u14:unchecked4, +12:u00:18.16.1., +14:u05:UNCHECKED4, +14:u13:unchecked4, +14:u04:UNCHECKED4, +14:u08:EXCLUSIVE4, +14:u08:Deprecated, +14:u12:unchecked4, +7:u22:UNC, +8:u23:UNCH, +14:u03:UNCHECKED4, +14:u07:Deprecated, +14:u11:unchecked4, +14:u02:UNCHECKED4, +14:u07:EXCLUSIVE4, +14:u06:Deprecated, +14:u10:unchecked4, +14:u01:UNCHECKED4, +14:u06:EXCLUSIVE4, +14:u05:Deprecated, +14:u14:exclusive4, +10:uI2:/*..*/, +14:u00:UNCHECKED4, +14:u05:EXCLUSIVE4, +14:u04:Deprecated, +14:u13:exclusive4, +10:uI1:/*..*/, +14:u04:EXCLUSIVE4, +14:u03:Deprecated, +14:u12:exclusive4, +10:uI0:/*..*/, +14:u03:EXCLUSIVE4, +14:u02:Deprecated, +14:u11:exclusive4, +14:u02:EXCLUSIVE4, +14:u01:Deprecated, +14:u10:exclusive4, +8:uI2:*..,, +14:u01:EXCLUSIVE4, +14:u00:Deprecated, +8:uI1:*..,, +14:u00:EXCLUSIVE4, +8:uI0:*..,, +17:u08:creatverfattr, +13:u08:cva_verf;, +17:u07:creatverfattr, +17:u06:creatverfattr, +13:u07:cva_verf;, +14:u08:cva_attrs;, +17:u05:creatverfattr, +13:u06:cva_verf;, +17:u04:creatverfattr, +13:u14:cva_verf;, +13:u05:cva_verf;, +14:u07:cva_attrs;, +17:u03:creatverfattr, +13:u13:cva_verf;, +13:u04:cva_verf;, +14:u06:cva_attrs;, +17:u02:creatverfattr, +14:u08:createhow4, +13:u12:cva_verf;, +14:u14:cva_attrs;, +6:u21:cv, +7:u22:cva, +8:u23:cva_, +13:u03:cva_verf;, +14:u05:cva_attrs;, +17:u01:creatverfattr, +14:u07:createhow4, +15:u08:UNCHECKED4:, +13:u11:cva_verf;, +14:u13:cva_attrs;, +13:u02:cva_verf;, +14:u04:cva_attrs;, +17:u00:creatverfattr, +14:u06:createhow4, +15:u07:UNCHECKED4:, +13:u08:GUARDED4:, +13:u10:cva_verf;, +14:u12:cva_attrs;, +13:u01:cva_verf;, +14:u03:cva_attrs;, +14:u05:createhow4, +15:u06:UNCHECKED4:, +13:u07:GUARDED4:, +14:u11:cva_attrs;, +13:u00:cva_verf;, +14:u02:cva_attrs;, +14:u04:createhow4, +15:u05:UNCHECKED4:, +13:u06:GUARDED4:, +14:u10:cva_attrs;, +14:u01:cva_attrs;, +14:u03:createhow4, +15:u04:UNCHECKED4:, +13:u05:GUARDED4:, +15:u08:EXCLUSIVE4:, +14:u00:cva_attrs;, +15:u08:createverf;, +14:u02:createhow4, +15:u03:UNCHECKED4:, +13:u04:GUARDED4:, +15:u07:EXCLUSIVE4:, +14:u01:createhow4, +15:u02:UNCHECKED4:, +13:u03:GUARDED4:, +15:u06:EXCLUSIVE4:, +15:u07:createverf;, +14:u00:createhow4, +15:u01:UNCHECKED4:, +13:u02:GUARDED4:, +15:u05:EXCLUSIVE4:, +17:u08:EXCLUSIVE4_1:, +15:u06:createverf;, +15:u00:UNCHECKED4:, +13:u01:GUARDED4:, +15:u04:EXCLUSIVE4:, +17:u07:EXCLUSIVE4_1:, +18:u08:ch_createboth;, +15:u14:createverf;, +15:u05:createverf;, +13:u00:GUARDED4:, +15:u03:EXCLUSIVE4:, +17:u06:EXCLUSIVE4_1:, +18:u07:ch_createboth;, +15:u13:createverf;, +15:u04:createverf;, +15:u02:EXCLUSIVE4:, +17:u05:EXCLUSIVE4_1:, +18:u06:ch_createboth;, +13:u08:opentype4, +15:u12:createverf;, +17:u14:creatverfattr, +15:u03:createverf;, +15:u01:EXCLUSIVE4:, +17:u04:EXCLUSIVE4_1:, +18:u05:ch_createboth;, +13:u07:opentype4, +15:u11:createverf;, +17:u13:creatverfattr, +15:u02:createverf;, +15:u00:EXCLUSIVE4:, +17:u03:EXCLUSIVE4_1:, +18:u04:ch_createboth;, +13:u06:opentype4, +15:u10:createverf;, +17:u12:creatverfattr, +15:u01:createverf;, +17:u02:EXCLUSIVE4_1:, +18:u03:ch_createboth;, +13:u05:opentype4, +8:u08:461], +17:u11:creatverfattr, +15:u00:createverf;, +17:u01:EXCLUSIVE4_1:, +18:u02:ch_createboth;, +13:u04:opentype4, +8:u07:461], +17:u10:creatverfattr, +17:u00:EXCLUSIVE4_1:, +18:u01:ch_createboth;, +13:u03:opentype4, +8:u06:461], +18:u08:OPEN4_NOCREATE, +18:u00:ch_createboth;, +13:u02:opentype4, +8:u05:461], +13:u01:opentype4, +8:u04:461], +18:u07:OPEN4_NOCREATE, +13:u00:opentype4, +8:u03:461], +18:u06:OPEN4_NOCREATE, +8:u02:461], +18:u14:open4_nocreate, +18:u05:OPEN4_NOCREATE, +8:u01:461], +18:u13:open4_nocreate, +18:u04:OPEN4_NOCREATE, +8:u00:461], +13:u08:openflag4, +18:u12:open4_nocreate, +18:u03:OPEN4_NOCREATE, +13:u07:openflag4, +17:u08:OPEN4_CREATE:, +18:u11:open4_nocreate, +18:u02:OPEN4_NOCREATE, +8:u08:how;, +13:u06:openflag4, +17:u07:OPEN4_CREATE:, +18:u10:open4_nocreate, +18:u01:OPEN4_NOCREATE, +13:u05:openflag4, +17:u06:OPEN4_CREATE:, +18:u00:OPEN4_NOCREATE, +8:u07:how;, +13:u04:openflag4, +17:u05:OPEN4_CREATE:, +14:u14:createhow4, +8:u06:how;, +13:u03:openflag4, +17:u04:OPEN4_CREATE:, +14:u13:createhow4, +8:u14:how;, +8:u05:how;, +13:u02:openflag4, +17:u03:OPEN4_CREATE:, +14:u12:createhow4, +8:u13:how;, +8:u04:how;, +13:u01:openflag4, +17:u02:OPEN4_CREATE:, +8:u08:Next, +14:u11:createhow4, +8:u12:how;, +8:u23:how;, +8:u03:how;, +18:u08:NFS_LIMIT_SIZE, +13:u00:openflag4, +17:u01:OPEN4_CREATE:, +8:u07:Next, +13:u08:limit_by4, +14:u10:createhow4, +8:u11:how;, +8:u02:how;, +17:u00:OPEN4_CREATE:, +8:u06:Next, +13:u07:limit_by4, +8:u10:how;, +8:u01:how;, +18:u07:NFS_LIMIT_SIZE, +20:u08:NFS_LIMIT_BLOCKS, +8:u05:Next, +13:u06:limit_by4, +8:u00:how;, +18:u06:NFS_LIMIT_SIZE, +8:u04:Next, +13:u05:limit_by4, +18:u14:nfs_limit_size, +18:u05:NFS_LIMIT_SIZE, +20:u07:NFS_LIMIT_BLOCKS, +8:u03:Next, +13:u04:limit_by4, +18:u13:nfs_limit_size, +18:u04:NFS_LIMIT_SIZE, +20:u06:NFS_LIMIT_BLOCKS, +8:u02:Next, +13:u03:limit_by4, +18:u12:nfs_limit_size, +20:u14:nfs_limit_blocks, +8:u23:NFS_, +18:u03:NFS_LIMIT_SIZE, +20:u05:NFS_LIMIT_BLOCKS, +8:u01:Next, +13:u02:limit_by4, +18:u11:nfs_limit_size, +20:u13:nfs_limit_blocks, +18:u02:NFS_LIMIT_SIZE, +20:u04:NFS_LIMIT_BLOCKS, +8:u00:Next, +13:u01:limit_by4, +23:u08:nfs_modified_limit4, +18:u10:nfs_limit_size, +20:u12:nfs_limit_blocks, +18:u01:NFS_LIMIT_SIZE, +20:u03:NFS_LIMIT_BLOCKS, +15:u08:num_blocks;, +13:u00:limit_by4, +23:u07:nfs_modified_limit4, +20:u11:nfs_limit_blocks, +18:u00:NFS_LIMIT_SIZE, +20:u02:NFS_LIMIT_BLOCKS, +23:u06:nfs_modified_limit4, +20:u10:nfs_limit_blocks, +20:u01:NFS_LIMIT_BLOCKS, +15:u07:num_blocks;, +20:u08:bytes_per_block;, +23:u05:nfs_modified_limit4, +20:u00:NFS_LIMIT_BLOCKS, +15:u06:num_blocks;, +23:u04:nfs_modified_limit4, +15:u14:num_blocks;, +15:u05:num_blocks;, +20:u07:bytes_per_block;, +23:u03:nfs_modified_limit4, +15:u13:num_blocks;, +15:u04:num_blocks;, +20:u06:bytes_per_block;, +23:u02:nfs_modified_limit4, +20:u08:nfs_space_limit4, +15:u12:num_blocks;, +20:u14:bytes_per_block;, +8:u23:num_, +15:u03:num_blocks;, +20:u05:bytes_per_block;, +23:u01:nfs_modified_limit4, +20:u07:nfs_space_limit4, +15:u11:num_blocks;, +20:u13:bytes_per_block;, +15:u02:num_blocks;, +20:u04:bytes_per_block;, +23:u00:nfs_modified_limit4, +20:u06:nfs_space_limit4, +19:u08:NFS_LIMIT_SIZE:, +15:u10:num_blocks;, +20:u12:bytes_per_block;, +15:u01:num_blocks;, +20:u03:bytes_per_block;, +13:u08:filesize;, +20:u05:nfs_space_limit4, +19:u07:NFS_LIMIT_SIZE:, +20:u11:bytes_per_block;, +15:u00:num_blocks;, +20:u02:bytes_per_block;, +20:u04:nfs_space_limit4, +19:u06:NFS_LIMIT_SIZE:, +20:u10:bytes_per_block;, +20:u01:bytes_per_block;, +13:u07:filesize;, +20:u03:nfs_space_limit4, +19:u05:NFS_LIMIT_SIZE:, +20:u00:bytes_per_block;, +13:u06:filesize;, +20:u02:nfs_space_limit4, +19:u04:NFS_LIMIT_SIZE:, +21:u08:NFS_LIMIT_BLOCKS:, +13:u14:filesize;, +13:u05:filesize;, +15:u08:mod_blocks;, +20:u01:nfs_space_limit4, +19:u03:NFS_LIMIT_SIZE:, +21:u07:NFS_LIMIT_BLOCKS:, +13:u13:filesize;, +13:u04:filesize;, +20:u00:nfs_space_limit4, +19:u02:NFS_LIMIT_SIZE:, +21:u06:NFS_LIMIT_BLOCKS:, +13:u12:filesize;, +13:u03:filesize;, +15:u07:mod_blocks;, +19:u01:NFS_LIMIT_SIZE:, +21:u05:NFS_LIMIT_BLOCKS:, +13:u11:filesize;, +23:u14:nfs_modified_limit4, +13:u02:filesize;, +15:u06:mod_blocks;, +19:u00:NFS_LIMIT_SIZE:, +21:u04:NFS_LIMIT_BLOCKS:, +13:u10:filesize;, +23:u13:nfs_modified_limit4, +15:u14:mod_blocks;, +13:u01:filesize;, +15:u05:mod_blocks;, +21:u03:NFS_LIMIT_BLOCKS:, +23:u12:nfs_modified_limit4, +15:u13:mod_blocks;, +13:u00:filesize;, +15:u04:mod_blocks;, +21:u02:NFS_LIMIT_BLOCKS:, +23:u11:nfs_modified_limit4, +15:u12:mod_blocks;, +8:u23:mod_, +15:u03:mod_blocks;, +21:u01:NFS_LIMIT_BLOCKS:, +23:u10:nfs_modified_limit4, +15:u11:mod_blocks;, +15:u02:mod_blocks;, +21:u00:NFS_LIMIT_BLOCKS:, +15:u10:mod_blocks;, +15:u01:mod_blocks;, +15:u00:mod_blocks;, +38:u08:OPEN4_SHARE_ACCESS_WANT_DELEG_MASK, +38:u07:OPEN4_SHARE_ACCESS_WANT_DELEG_MASK, +11:u08:0xFF00;, +38:u06:OPEN4_SHARE_ACCESS_WANT_DELEG_MASK, +11:u07:0xFF00;, +41:u08:OPEN4_SHARE_ACCESS_WANT_NO_PREFERENCE, +38:u05:OPEN4_SHARE_ACCESS_WANT_DELEG_MASK, +11:u06:0xFF00;, +41:u07:OPEN4_SHARE_ACCESS_WANT_NO_PREFERENCE, +11:u08:0x0000;, +38:u04:OPEN4_SHARE_ACCESS_WANT_DELEG_MASK, +11:u05:0xFF00;, +41:u06:OPEN4_SHARE_ACCESS_WANT_NO_PREFERENCE, +11:u07:0x0000;, +38:u03:OPEN4_SHARE_ACCESS_WANT_DELEG_MASK, +11:u04:0xFF00;, +41:u05:OPEN4_SHARE_ACCESS_WANT_NO_PREFERENCE, +11:u06:0x0000;, +38:u02:OPEN4_SHARE_ACCESS_WANT_DELEG_MASK, +11:u03:0xFF00;, +41:u04:OPEN4_SHARE_ACCESS_WANT_NO_PREFERENCE, +11:u05:0x0000;, +8:u08:462], +38:u01:OPEN4_SHARE_ACCESS_WANT_DELEG_MASK, +11:u02:0xFF00;, +41:u03:OPEN4_SHARE_ACCESS_WANT_NO_PREFERENCE, +11:u04:0x0000;, +8:u07:462], +38:u00:OPEN4_SHARE_ACCESS_WANT_DELEG_MASK, +11:u01:0xFF00;, +41:u02:OPEN4_SHARE_ACCESS_WANT_NO_PREFERENCE, +11:u03:0x0000;, +8:u06:462], +11:u00:0xFF00;, +41:u01:OPEN4_SHARE_ACCESS_WANT_NO_PREFERENCE, +11:u02:0x0000;, +8:u05:462], +41:u00:OPEN4_SHARE_ACCESS_WANT_NO_PREFERENCE, +11:u01:0x0000;, +8:u04:462], +38:u08:OPEN4_SHARE_ACCESS_WANT_READ_DELEG, +11:u00:0x0000;, +8:u03:462], +38:u07:OPEN4_SHARE_ACCESS_WANT_READ_DELEG, +11:u08:0x0100;, +8:u02:462], +38:u06:OPEN4_SHARE_ACCESS_WANT_READ_DELEG, +11:u07:0x0100;, +39:u08:OPEN4_SHARE_ACCESS_WANT_WRITE_DELEG, +8:u01:462], +38:u05:OPEN4_SHARE_ACCESS_WANT_READ_DELEG, +11:u06:0x0100;, +39:u07:OPEN4_SHARE_ACCESS_WANT_WRITE_DELEG, +11:u08:0x0200;, +8:u00:462], +38:u04:OPEN4_SHARE_ACCESS_WANT_READ_DELEG, +11:u05:0x0100;, +39:u06:OPEN4_SHARE_ACCESS_WANT_WRITE_DELEG, +11:u07:0x0200;, +37:u08:OPEN4_SHARE_ACCESS_WANT_ANY_DELEG, +38:u03:OPEN4_SHARE_ACCESS_WANT_READ_DELEG, +11:u04:0x0100;, +39:u05:OPEN4_SHARE_ACCESS_WANT_WRITE_DELEG, +11:u06:0x0200;, +37:u07:OPEN4_SHARE_ACCESS_WANT_ANY_DELEG, +11:u08:0x0300;, +38:u02:OPEN4_SHARE_ACCESS_WANT_READ_DELEG, +11:u03:0x0100;, +39:u04:OPEN4_SHARE_ACCESS_WANT_WRITE_DELEG, +11:u05:0x0200;, +37:u06:OPEN4_SHARE_ACCESS_WANT_ANY_DELEG, +11:u07:0x0300;, +36:u08:OPEN4_SHARE_ACCESS_WANT_NO_DELEG, +38:u01:OPEN4_SHARE_ACCESS_WANT_READ_DELEG, +11:u02:0x0100;, +39:u03:OPEN4_SHARE_ACCESS_WANT_WRITE_DELEG, +11:u04:0x0200;, +37:u05:OPEN4_SHARE_ACCESS_WANT_ANY_DELEG, +11:u06:0x0300;, +36:u07:OPEN4_SHARE_ACCESS_WANT_NO_DELEG, +11:u08:0x0400;, +38:u00:OPEN4_SHARE_ACCESS_WANT_READ_DELEG, +11:u01:0x0100;, +39:u02:OPEN4_SHARE_ACCESS_WANT_WRITE_DELEG, +11:u03:0x0200;, +37:u04:OPEN4_SHARE_ACCESS_WANT_ANY_DELEG, +11:u05:0x0300;, +36:u06:OPEN4_SHARE_ACCESS_WANT_NO_DELEG, +11:u07:0x0400;, +34:u08:OPEN4_SHARE_ACCESS_WANT_CANCEL, +11:u00:0x0100;, +39:u01:OPEN4_SHARE_ACCESS_WANT_WRITE_DELEG, +11:u02:0x0200;, +37:u03:OPEN4_SHARE_ACCESS_WANT_ANY_DELEG, +11:u04:0x0300;, +36:u05:OPEN4_SHARE_ACCESS_WANT_NO_DELEG, +11:u06:0x0400;, +34:u07:OPEN4_SHARE_ACCESS_WANT_CANCEL, +11:u08:0x0500;, +57:u08:OPEN4_SHARE_ACCESS_WANT_SIGNAL_DELEG_WHEN_RESRC_AVAIL, +39:u00:OPEN4_SHARE_ACCESS_WANT_WRITE_DELEG, +11:u01:0x0200;, +37:u02:OPEN4_SHARE_ACCESS_WANT_ANY_DELEG, +11:u03:0x0300;, +36:u04:OPEN4_SHARE_ACCESS_WANT_NO_DELEG, +11:u05:0x0400;, +34:u06:OPEN4_SHARE_ACCESS_WANT_CANCEL, +11:u07:0x0500;, +11:u00:0x0200;, +37:u01:OPEN4_SHARE_ACCESS_WANT_ANY_DELEG, +11:u02:0x0300;, +36:u03:OPEN4_SHARE_ACCESS_WANT_NO_DELEG, +11:u04:0x0400;, +34:u05:OPEN4_SHARE_ACCESS_WANT_CANCEL, +11:u06:0x0500;, +57:u07:OPEN4_SHARE_ACCESS_WANT_SIGNAL_DELEG_WHEN_RESRC_AVAIL, +37:u00:OPEN4_SHARE_ACCESS_WANT_ANY_DELEG, +11:u01:0x0300;, +36:u02:OPEN4_SHARE_ACCESS_WANT_NO_DELEG, +11:u03:0x0400;, +34:u04:OPEN4_SHARE_ACCESS_WANT_CANCEL, +11:u05:0x0500;, +12:u08:0x10000;, +57:u06:OPEN4_SHARE_ACCESS_WANT_SIGNAL_DELEG_WHEN_RESRC_AVAIL, +55:u08:OPEN4_SHARE_ACCESS_WANT_PUSH_DELEG_WHEN_UNCONTENDED, +11:u00:0x0300;, +36:u01:OPEN4_SHARE_ACCESS_WANT_NO_DELEG, +11:u02:0x0400;, +34:u03:OPEN4_SHARE_ACCESS_WANT_CANCEL, +11:u04:0x0500;, +12:u07:0x10000;, +57:u14:open4_share_access_want_signal_deleg_when_resrc_avail, +57:u05:OPEN4_SHARE_ACCESS_WANT_SIGNAL_DELEG_WHEN_RESRC_AVAIL, +36:u00:OPEN4_SHARE_ACCESS_WANT_NO_DELEG, +11:u01:0x0400;, +34:u02:OPEN4_SHARE_ACCESS_WANT_CANCEL, +11:u03:0x0500;, +12:u06:0x10000;, +57:u13:open4_share_access_want_signal_deleg_when_resrc_avail, +57:u04:OPEN4_SHARE_ACCESS_WANT_SIGNAL_DELEG_WHEN_RESRC_AVAIL, +55:u07:OPEN4_SHARE_ACCESS_WANT_PUSH_DELEG_WHEN_UNCONTENDED, +11:u00:0x0400;, +34:u01:OPEN4_SHARE_ACCESS_WANT_CANCEL, +11:u02:0x0500;, +12:u05:0x10000;, +12:u08:0x20000;, +57:u12:open4_share_access_want_signal_deleg_when_resrc_avail, +57:u03:OPEN4_SHARE_ACCESS_WANT_SIGNAL_DELEG_WHEN_RESRC_AVAIL, +55:u06:OPEN4_SHARE_ACCESS_WANT_PUSH_DELEG_WHEN_UNCONTENDED, +22:u08:OPEN_DELEGATE_NONE, +34:u00:OPEN4_SHARE_ACCESS_WANT_CANCEL, +11:u01:0x0500;, +12:u04:0x10000;, +12:u07:0x20000;, +25:u08:open_delegation_type4, +57:u11:open4_share_access_want_signal_deleg_when_resrc_avail, +55:u14:open4_share_access_want_push_deleg_when_uncontended, +57:u02:OPEN4_SHARE_ACCESS_WANT_SIGNAL_DELEG_WHEN_RESRC_AVAIL, +55:u05:OPEN4_SHARE_ACCESS_WANT_PUSH_DELEG_WHEN_UNCONTENDED, +11:u00:0x0500;, +12:u03:0x10000;, +12:u06:0x20000;, +25:u07:open_delegation_type4, +57:u10:open4_share_access_want_signal_deleg_when_resrc_avail, +55:u13:open4_share_access_want_push_deleg_when_uncontended, +57:u01:OPEN4_SHARE_ACCESS_WANT_SIGNAL_DELEG_WHEN_RESRC_AVAIL, +55:u04:OPEN4_SHARE_ACCESS_WANT_PUSH_DELEG_WHEN_UNCONTENDED, +22:u07:OPEN_DELEGATE_NONE, +12:u02:0x10000;, +12:u05:0x20000;, +25:u06:open_delegation_type4, +55:u12:open4_share_access_want_push_deleg_when_uncontended, +57:u00:OPEN4_SHARE_ACCESS_WANT_SIGNAL_DELEG_WHEN_RESRC_AVAIL, +55:u03:OPEN4_SHARE_ACCESS_WANT_PUSH_DELEG_WHEN_UNCONTENDED, +22:u06:OPEN_DELEGATE_NONE, +12:u01:0x10000;, +12:u04:0x20000;, +25:u05:open_delegation_type4, +55:u11:open4_share_access_want_push_deleg_when_uncontended, +22:u14:open_delegate_none, +55:u02:OPEN4_SHARE_ACCESS_WANT_PUSH_DELEG_WHEN_UNCONTENDED, +22:u05:OPEN_DELEGATE_NONE, +12:u00:0x10000;, +12:u03:0x20000;, +25:u04:open_delegation_type4, +55:u10:open4_share_access_want_push_deleg_when_uncontended, +22:u13:open_delegate_none, +55:u01:OPEN4_SHARE_ACCESS_WANT_PUSH_DELEG_WHEN_UNCONTENDED, +22:u04:OPEN_DELEGATE_NONE, +12:u02:0x20000;, +25:u03:open_delegation_type4, +22:u12:open_delegate_none, +55:u00:OPEN4_SHARE_ACCESS_WANT_PUSH_DELEG_WHEN_UNCONTENDED, +22:u03:OPEN_DELEGATE_NONE, +26:u08:OPEN_DELEGATE_NONE_EXT, +12:u01:0x20000;, +25:u02:open_delegation_type4, +22:u11:open_delegate_none, +22:u02:OPEN_DELEGATE_NONE, +12:u00:0x20000;, +25:u01:open_delegation_type4, +22:u10:open_delegate_none, +22:u01:OPEN_DELEGATE_NONE, +26:u07:OPEN_DELEGATE_NONE_EXT, +25:u00:open_delegation_type4, +22:u00:OPEN_DELEGATE_NONE, +26:u06:OPEN_DELEGATE_NONE_EXT, +20:u08:open_claim_type4, +26:u14:open_delegate_none_ext, +26:u05:OPEN_DELEGATE_NONE_EXT, +20:u07:open_claim_type4, +26:u13:open_delegate_none_ext, +26:u04:OPEN_DELEGATE_NONE_EXT, +20:u06:open_claim_type4, +26:u12:open_delegate_none_ext, +26:u03:OPEN_DELEGATE_NONE_EXT, +14:u08:CLAIM_NULL, +20:u05:open_claim_type4, +26:u11:open_delegate_none_ext, +26:u02:OPEN_DELEGATE_NONE_EXT, +20:u04:open_claim_type4, +26:u10:open_delegate_none_ext, +26:u01:OPEN_DELEGATE_NONE_EXT, +14:u07:CLAIM_NULL, +18:u08:CLAIM_PREVIOUS, +20:u03:open_claim_type4, +26:u00:OPEN_DELEGATE_NONE_EXT, +14:u06:CLAIM_NULL, +20:u02:open_claim_type4, +14:u14:claim_null, +14:u05:CLAIM_NULL, +18:u07:CLAIM_PREVIOUS, +22:u08:CLAIM_DELEGATE_CUR, +20:u01:open_claim_type4, +14:u13:claim_null, +14:u04:CLAIM_NULL, +18:u06:CLAIM_PREVIOUS, +20:u00:open_claim_type4, +14:u12:claim_null, +18:u14:claim_previous, +14:u03:CLAIM_NULL, +18:u05:CLAIM_PREVIOUS, +22:u07:CLAIM_DELEGATE_CUR, +14:u11:claim_null, +18:u13:claim_previous, +14:u02:CLAIM_NULL, +18:u04:CLAIM_PREVIOUS, +22:u06:CLAIM_DELEGATE_CUR, +14:u10:claim_null, +18:u12:claim_previous, +22:u14:claim_delegate_cur, +14:u01:CLAIM_NULL, +18:u03:CLAIM_PREVIOUS, +22:u05:CLAIM_DELEGATE_CUR, +18:u11:claim_previous, +22:u13:claim_delegate_cur, +14:u00:CLAIM_NULL, +18:u02:CLAIM_PREVIOUS, +22:u04:CLAIM_DELEGATE_CUR, +18:u10:claim_previous, +22:u12:claim_delegate_cur, +18:u01:CLAIM_PREVIOUS, +22:u03:CLAIM_DELEGATE_CUR, +22:u11:claim_delegate_cur, +18:u00:CLAIM_PREVIOUS, +22:u02:CLAIM_DELEGATE_CUR, +22:u10:claim_delegate_cur, +22:u01:CLAIM_DELEGATE_CUR, +22:u00:CLAIM_DELEGATE_CUR, +12:u08:CLAIM_FH, +12:u07:CLAIM_FH, +12:u06:CLAIM_FH, +12:u14:claim_fh, +12:u05:CLAIM_FH, +12:u13:claim_fh, +12:u04:CLAIM_FH, +12:u12:claim_fh, +10:uI2:,/*.*/, +12:u03:CLAIM_FH, +22:u08:CLAIM_DELEG_CUR_FH, +12:u11:claim_fh, +10:uI1:,/*.*/, +12:u02:CLAIM_FH, +12:u10:claim_fh, +10:uI0:,/*.*/, +12:u01:CLAIM_FH, +22:u07:CLAIM_DELEG_CUR_FH, +12:u00:CLAIM_FH, +22:u06:CLAIM_DELEG_CUR_FH, +22:u14:claim_deleg_cur_fh, +22:u05:CLAIM_DELEG_CUR_FH, +22:u13:claim_deleg_cur_fh, +22:u04:CLAIM_DELEG_CUR_FH, +22:u12:claim_deleg_cur_fh, +22:u03:CLAIM_DELEG_CUR_FH, +22:u11:claim_deleg_cur_fh, +22:u02:CLAIM_DELEG_CUR_FH, +22:u10:claim_deleg_cur_fh, +22:u01:CLAIM_DELEG_CUR_FH, +8:u08:463], +22:u00:CLAIM_DELEG_CUR_FH, +8:u07:463], +8:u06:463], +8:u05:463], +23:u08:CLAIM_DELEG_PREV_FH, +8:u04:463], +8:u03:463], +23:u07:CLAIM_DELEG_PREV_FH, +8:u02:463], +23:u06:CLAIM_DELEG_PREV_FH, +8:u01:463], +23:u14:claim_deleg_prev_fh, +23:u05:CLAIM_DELEG_PREV_FH, +8:u00:463], +28:u08:open_claim_delegate_cur4, +23:u13:claim_deleg_prev_fh, +23:u04:CLAIM_DELEG_PREV_FH, +21:u08:delegate_stateid;, +28:u07:open_claim_delegate_cur4, +23:u12:claim_deleg_prev_fh, +23:u03:CLAIM_DELEG_PREV_FH, +28:u06:open_claim_delegate_cur4, +23:u11:claim_deleg_prev_fh, +23:u02:CLAIM_DELEG_PREV_FH, +21:u07:delegate_stateid;, +9:u08:file;, +28:u05:open_claim_delegate_cur4, +23:u10:claim_deleg_prev_fh, +23:u01:CLAIM_DELEG_PREV_FH, +21:u06:delegate_stateid;, +28:u04:open_claim_delegate_cur4, +21:u14:delegate_stateid;, +23:u00:CLAIM_DELEG_PREV_FH, +21:u05:delegate_stateid;, +9:u07:file;, +28:u03:open_claim_delegate_cur4, +21:u13:delegate_stateid;, +21:u04:delegate_stateid;, +9:u06:file;, +28:u02:open_claim_delegate_cur4, +15:u08:open_claim4, +21:u12:delegate_stateid;, +9:u14:file;, +21:u03:delegate_stateid;, +9:u05:file;, +28:u01:open_claim_delegate_cur4, +15:u07:open_claim4, +21:u11:delegate_stateid;, +9:u13:file;, +21:u02:delegate_stateid;, +9:u04:file;, +28:u00:open_claim_delegate_cur4, +15:u06:open_claim4, +21:u10:delegate_stateid;, +9:u12:file;, +21:u01:delegate_stateid;, +9:u03:file;, +15:u05:open_claim4, +12:u08:Ordinary, +9:u11:file;, +21:u00:delegate_stateid;, +9:u02:file;, +15:u04:open_claim4, +12:u07:Ordinary, +9:u10:file;, +9:u01:file;, +15:u03:open_claim4, +12:u06:Ordinary, +15:u08:CLAIM_NULL:, +9:u00:file;, +15:u02:open_claim4, +12:u05:Ordinary, +15:u07:CLAIM_NULL:, +15:u01:open_claim4, +12:u04:Ordinary, +15:u06:CLAIM_NULL:, +15:u00:open_claim4, +12:u03:Ordinary, +15:u05:CLAIM_NULL:, +12:u02:Ordinary, +15:u04:CLAIM_NULL:, +12:u01:Ordinary, +15:u03:CLAIM_NULL:, +9:u08:Right, +12:u00:Ordinary, +15:u02:CLAIM_NULL:, +9:u07:Right, +15:u01:CLAIM_NULL:, +9:u06:Right, +15:u00:CLAIM_NULL:, +9:u05:Right, +9:u04:Right, +9:u03:Right, +19:u08:CLAIM_PREVIOUS:, +9:u02:Right, +19:u07:CLAIM_PREVIOUS:, +18:u08:delegate_type;, +9:u01:Right, +19:u06:CLAIM_PREVIOUS:, +9:u00:Right, +19:u05:CLAIM_PREVIOUS:, +18:u07:delegate_type;, +19:u04:CLAIM_PREVIOUS:, +25:u14:open_delegation_type4, +18:u06:delegate_type;, +19:u03:CLAIM_PREVIOUS:, +25:u13:open_delegation_type4, +18:u14:delegate_type;, +18:u05:delegate_type;, +19:u02:CLAIM_PREVIOUS:, +25:u12:open_delegation_type4, +18:u13:delegate_type;, +18:u04:delegate_type;, +19:u01:CLAIM_PREVIOUS:, +25:u11:open_delegation_type4, +18:u12:delegate_type;, +18:u03:delegate_type;, +19:u00:CLAIM_PREVIOUS:, +25:u10:open_delegation_type4, +18:u11:delegate_type;, +18:u02:delegate_type;, +23:u08:CLAIM_DELEGATE_CUR:, +18:u10:delegate_type;, +18:u01:delegate_type;, +23:u07:CLAIM_DELEGATE_CUR:, +18:u00:delegate_type;, +22:u08:delegate_cur_info;, +23:u06:CLAIM_DELEGATE_CUR:, +23:u05:CLAIM_DELEGATE_CUR:, +22:u07:delegate_cur_info;, +23:u04:CLAIM_DELEGATE_CUR:, +28:u14:open_claim_delegate_cur4, +22:u06:delegate_cur_info;, +23:u03:CLAIM_DELEGATE_CUR:, +28:u13:open_claim_delegate_cur4, +22:u14:delegate_cur_info;, +22:u05:delegate_cur_info;, +23:u02:CLAIM_DELEGATE_CUR:, +28:u12:open_claim_delegate_cur4, +22:u13:delegate_cur_info;, +22:u04:delegate_cur_info;, +23:u01:CLAIM_DELEGATE_CUR:, +28:u11:open_claim_delegate_cur4, +22:u12:delegate_cur_info;, +22:u03:delegate_cur_info;, +23:u00:CLAIM_DELEGATE_CUR:, +28:u10:open_claim_delegate_cur4, +22:u11:delegate_cur_info;, +22:u02:delegate_cur_info;, +24:u08:CLAIM_DELEGATE_PREV:, +22:u10:delegate_cur_info;, +22:u01:delegate_cur_info;, +24:u07:CLAIM_DELEGATE_PREV:, +7:uI2:*.., +22:u00:delegate_cur_info;, +23:u08:file_delegate_prev;, +24:u06:CLAIM_DELEGATE_PREV:, +7:uI1:*.., +24:u05:CLAIM_DELEGATE_PREV:, +7:uI0:*.., +23:u07:file_delegate_prev;, +24:u04:CLAIM_DELEGATE_PREV:, +23:u06:file_delegate_prev;, +24:u03:CLAIM_DELEGATE_PREV:, +23:u14:file_delegate_prev;, +23:u05:file_delegate_prev;, +24:u02:CLAIM_DELEGATE_PREV:, +23:u13:file_delegate_prev;, +23:u04:file_delegate_prev;, +24:u01:CLAIM_DELEGATE_PREV:, +23:u12:file_delegate_prev;, +23:u03:file_delegate_prev;, +24:u00:CLAIM_DELEGATE_PREV:, +23:u11:file_delegate_prev;, +23:u02:file_delegate_prev;, +8:u08:464], +23:u10:file_delegate_prev;, +23:u01:file_delegate_prev;, +8:u07:464], +23:u00:file_delegate_prev;, +8:u06:464], +8:u05:464], +8:u04:464], +8:u03:464], +8:u02:464], +13:u08:CLAIM_FH:, +8:u01:464], +13:u07:CLAIM_FH:, +8:u00:464], +13:u06:CLAIM_FH:, +13:u05:CLAIM_FH:, +10:uI2::/*.*/, +13:u04:CLAIM_FH:, +10:uI1::/*.*/, +13:u03:CLAIM_FH:, +10:uI0::/*.*/, +13:u02:CLAIM_FH:, +13:u01:CLAIM_FH:, +13:u00:CLAIM_FH:, +24:u08:CLAIM_DELEG_PREV_FH:, +24:u07:CLAIM_DELEG_PREV_FH:, +24:u06:CLAIM_DELEG_PREV_FH:, +24:u05:CLAIM_DELEG_PREV_FH:, +24:u04:CLAIM_DELEG_PREV_FH:, +24:u03:CLAIM_DELEG_PREV_FH:, +24:u02:CLAIM_DELEG_PREV_FH:, +24:u01:CLAIM_DELEG_PREV_FH:, +24:u00:CLAIM_DELEG_PREV_FH:, +23:u08:CLAIM_DELEG_CUR_FH:, +23:u07:CLAIM_DELEG_CUR_FH:, +24:u08:oc_delegate_stateid;, +23:u06:CLAIM_DELEG_CUR_FH:, +23:u05:CLAIM_DELEG_CUR_FH:, +24:u07:oc_delegate_stateid;, +23:u04:CLAIM_DELEG_CUR_FH:, +24:u06:oc_delegate_stateid;, +23:u03:CLAIM_DELEG_CUR_FH:, +24:u14:oc_delegate_stateid;, +24:u05:oc_delegate_stateid;, +23:u02:CLAIM_DELEG_CUR_FH:, +9:u08:OPEN:, +24:u13:oc_delegate_stateid;, +24:u04:oc_delegate_stateid;, +23:u01:CLAIM_DELEG_CUR_FH:, +9:u07:OPEN:, +24:u12:oc_delegate_stateid;, +7:u22:oc_, +8:u23:oc_d, +24:u03:oc_delegate_stateid;, +23:u00:CLAIM_DELEG_CUR_FH:, +9:u06:OPEN:, +24:u11:oc_delegate_stateid;, +24:u02:oc_delegate_stateid;, +9:u05:OPEN:, +24:u10:oc_delegate_stateid;, +7:uI2:*:,, +24:u01:oc_delegate_stateid;, +9:u04:OPEN:, +7:uI1:*:,, +24:u00:oc_delegate_stateid;, +17:u08:share_access;, +9:u03:OPEN:, +7:uI0:*:,, +9:u02:OPEN:, +17:u07:share_access;, +15:u08:share_deny;, +9:u01:OPEN:, +17:u06:share_access;, +9:u00:OPEN:, +17:u14:share_access;, +17:u05:share_access;, +15:u07:share_deny;, +17:u13:share_access;, +17:u04:share_access;, +15:u06:share_deny;, +17:u12:share_access;, +15:u14:share_deny;, +17:u03:share_access;, +15:u05:share_deny;, +12:u08:openhow;, +17:u11:share_access;, +15:u13:share_deny;, +15:u14:open_owner4, +17:u02:share_access;, +15:u04:share_deny;, +17:u10:share_access;, +15:u12:share_deny;, +15:u13:open_owner4, +17:u01:share_access;, +15:u03:share_deny;, +12:u07:openhow;, +10:u08:claim;, +15:u11:share_deny;, +15:u12:open_owner4, +13:u14:openflag4, +17:u00:share_access;, +15:u02:share_deny;, +12:u06:openhow;, +15:u10:share_deny;, +15:u11:open_owner4, +13:u13:openflag4, +12:u14:openhow;, +15:u01:share_deny;, +12:u05:openhow;, +10:u07:claim;, +12:u08:18.16.2., +15:u10:open_owner4, +13:u12:openflag4, +12:u13:openhow;, +15:u14:open_claim4, +15:u00:share_deny;, +12:u04:openhow;, +10:u06:claim;, +13:u11:openflag4, +12:u12:openhow;, +15:u13:open_claim4, +10:u14:claim;, +12:u03:openhow;, +10:u05:claim;, +12:u07:18.16.2., +13:u10:openflag4, +12:u11:openhow;, +15:u12:open_claim4, +10:u13:claim;, +12:u02:openhow;, +10:u04:claim;, +12:u06:18.16.2., +12:u08:stateid;, +12:u10:openhow;, +15:u11:open_claim4, +10:u12:claim;, +12:u14:18.16.2., +8:u23:clai, +12:u01:openhow;, +10:u03:claim;, +12:u05:18.16.2., +12:u07:stateid;, +15:u10:open_claim4, +10:u11:claim;, +12:u13:18.16.2., +12:u00:openhow;, +10:u02:claim;, +12:u04:18.16.2., +11:u08:recall;, +12:u06:stateid;, +10:u10:claim;, +12:u12:18.16.2., +10:u01:claim;, +12:u03:18.16.2., +12:u05:stateid;, +12:u11:18.16.2., +10:u00:claim;, +12:u02:18.16.2., +11:u07:recall;, +12:u04:stateid;, +16:u08:Pre-recalled, +12:u10:18.16.2., +12:u01:18.16.2., +11:u06:recall;, +12:u03:stateid;, +16:u07:Pre-recalled, +11:u14:recall;, +12:u00:18.16.2., +11:u05:recall;, +12:u02:stateid;, +16:u06:Pre-recalled, +11:u13:recall;, +11:u04:recall;, +12:u01:stateid;, +16:u05:Pre-recalled, +11:u12:recall;, +7:uI2:/*-, +11:u03:recall;, +12:u00:stateid;, +16:u04:Pre-recalled, +11:u11:recall;, +7:uI1:/*-, +11:u02:recall;, +16:u03:Pre-recalled, +8:u08:465], +11:u10:recall;, +7:uI0:/*-, +8:uI2:()*/, +11:u01:recall;, +16:u02:Pre-recalled, +8:u07:465], +8:uI1:()*/, +11:u00:recall;, +16:u01:Pre-recalled, +8:u06:465], +8:uI0:()*/, +16:u00:Pre-recalled, +8:u05:465], +8:u04:465], +16:u08:permissions;, +8:u03:465], +16:u07:permissions;, +8:u02:465], +16:u06:permissions;, +8:u01:465], +16:u05:permissions;, +8:uI2:;/*', +8:u00:465], +16:u04:permissions;, +26:u08:open_write_delegation4, +8:uI1:;/*', +16:u03:permissions;, +26:u07:open_write_delegation4, +8:uI0:;/*', +16:u02:permissions;, +26:u06:open_write_delegation4, +16:u01:permissions;, +26:u05:open_write_delegation4, +16:u00:permissions;, +26:u04:open_write_delegation4, +26:u03:open_write_delegation4, +26:u02:open_write_delegation4, +20:u08:(CLAIM_PREVIOUS), +26:u01:open_write_delegation4, +26:u00:open_write_delegation4, +20:u07:(CLAIM_PREVIOUS), +16:u08:space_limit;, +20:u06:(CLAIM_PREVIOUS), +20:u14:(claim_previous), +20:u05:(CLAIM_PREVIOUS), +16:u07:space_limit;, +20:u13:(claim_previous), +20:u14:nfs_space_limit4, +20:u04:(CLAIM_PREVIOUS), +16:u06:space_limit;, +20:u12:(claim_previous), +20:u13:nfs_space_limit4, +16:u14:space_limit;, +7:u22:(CL, +8:u23:(CLA, +20:u03:(CLAIM_PREVIOUS), +16:u05:space_limit;, +20:u11:(claim_previous), +20:u12:nfs_space_limit4, +16:u13:space_limit;, +7:uI2:;/*, +20:u02:(CLAIM_PREVIOUS), +16:u04:space_limit;, +20:u10:(claim_previous), +20:u11:nfs_space_limit4, +16:u12:space_limit;, +7:uI1:;/*, +20:u01:(CLAIM_PREVIOUS), +16:u03:space_limit;, +20:u10:nfs_space_limit4, +16:u11:space_limit;, +7:uI0:;/*, +20:u00:(CLAIM_PREVIOUS), +16:u02:space_limit;, +16:u10:space_limit;, +16:u01:space_limit;, +7:uI2:.*/, +16:u00:space_limit;, +16:u14:permissions;, +7:uI1:.*/, +16:u13:permissions;, +7:uI0:.*/, +16:u12:permissions;, +19:u08:WND4_NOT_WANTED, +22:u08:why_no_delegation4, +16:u11:permissions;, +22:u07:why_no_delegation4, +16:u10:permissions;, +19:u07:WND4_NOT_WANTED, +19:u08:WND4_CONTENTION, +22:u06:why_no_delegation4, +19:u06:WND4_NOT_WANTED, +22:u05:why_no_delegation4, +19:u14:wnd4_not_wanted, +19:u05:WND4_NOT_WANTED, +19:u07:WND4_CONTENTION, +17:u08:WND4_RESOURCE, +22:u04:why_no_delegation4, +19:u13:wnd4_not_wanted, +19:u04:WND4_NOT_WANTED, +19:u06:WND4_CONTENTION, +22:u03:why_no_delegation4, +19:u12:wnd4_not_wanted, +19:u14:wnd4_contention, +6:u21:WN, +7:u22:WND, +8:u23:WND4, +19:u03:WND4_NOT_WANTED, +19:u05:WND4_CONTENTION, +17:u07:WND4_RESOURCE, +23:u08:WND4_NOT_SUPP_FTYPE, +22:u02:why_no_delegation4, +19:u11:wnd4_not_wanted, +19:u13:wnd4_contention, +19:u02:WND4_NOT_WANTED, +19:u04:WND4_CONTENTION, +17:u06:WND4_RESOURCE, +22:u01:why_no_delegation4, +19:u10:wnd4_not_wanted, +19:u12:wnd4_contention, +17:u14:wnd4_resource, +19:u01:WND4_NOT_WANTED, +19:u03:WND4_CONTENTION, +17:u05:WND4_RESOURCE, +23:u07:WND4_NOT_SUPP_FTYPE, +35:u08:WND4_WRITE_DELEG_NOT_SUPP_FTYPE, +22:u00:why_no_delegation4, +19:u11:wnd4_contention, +17:u13:wnd4_resource, +19:u00:WND4_NOT_WANTED, +19:u02:WND4_CONTENTION, +17:u04:WND4_RESOURCE, +23:u06:WND4_NOT_SUPP_FTYPE, +25:u08:WND4_NOT_SUPP_UPGRADE, +19:u10:wnd4_contention, +17:u12:wnd4_resource, +23:u14:wnd4_not_supp_ftype, +19:u01:WND4_CONTENTION, +17:u03:WND4_RESOURCE, +23:u05:WND4_NOT_SUPP_FTYPE, +35:u07:WND4_WRITE_DELEG_NOT_SUPP_FTYPE, +17:u11:wnd4_resource, +23:u13:wnd4_not_supp_ftype, +19:u00:WND4_CONTENTION, +17:u02:WND4_RESOURCE, +23:u04:WND4_NOT_SUPP_FTYPE, +35:u06:WND4_WRITE_DELEG_NOT_SUPP_FTYPE, +25:u07:WND4_NOT_SUPP_UPGRADE, +27:u08:WND4_NOT_SUPP_DOWNGRADE, +17:u10:wnd4_resource, +23:u12:wnd4_not_supp_ftype, +35:u14:wnd4_write_deleg_not_supp_ftype, +17:u01:WND4_RESOURCE, +23:u03:WND4_NOT_SUPP_FTYPE, +35:u05:WND4_WRITE_DELEG_NOT_SUPP_FTYPE, +25:u06:WND4_NOT_SUPP_UPGRADE, +18:u08:WND4_CANCELLED, +23:u11:wnd4_not_supp_ftype, +35:u13:wnd4_write_deleg_not_supp_ftype, +25:u14:wnd4_not_supp_upgrade, +17:u00:WND4_RESOURCE, +23:u02:WND4_NOT_SUPP_FTYPE, +35:u04:WND4_WRITE_DELEG_NOT_SUPP_FTYPE, +25:u05:WND4_NOT_SUPP_UPGRADE, +27:u07:WND4_NOT_SUPP_DOWNGRADE, +23:u10:wnd4_not_supp_ftype, +35:u12:wnd4_write_deleg_not_supp_ftype, +25:u13:wnd4_not_supp_upgrade, +23:u01:WND4_NOT_SUPP_FTYPE, +35:u03:WND4_WRITE_DELEG_NOT_SUPP_FTYPE, +25:u04:WND4_NOT_SUPP_UPGRADE, +27:u06:WND4_NOT_SUPP_DOWNGRADE, +18:u07:WND4_CANCELLED, +15:u08:WND4_IS_DIR, +35:u11:wnd4_write_deleg_not_supp_ftype, +25:u12:wnd4_not_supp_upgrade, +27:u14:wnd4_not_supp_downgrade, +23:u00:WND4_NOT_SUPP_FTYPE, +35:u02:WND4_WRITE_DELEG_NOT_SUPP_FTYPE, +25:u03:WND4_NOT_SUPP_UPGRADE, +27:u05:WND4_NOT_SUPP_DOWNGRADE, +18:u06:WND4_CANCELLED, +35:u10:wnd4_write_deleg_not_supp_ftype, +25:u11:wnd4_not_supp_upgrade, +27:u13:wnd4_not_supp_downgrade, +18:u14:wnd4_cancelled, +35:u01:WND4_WRITE_DELEG_NOT_SUPP_FTYPE, +25:u02:WND4_NOT_SUPP_UPGRADE, +27:u04:WND4_NOT_SUPP_DOWNGRADE, +18:u05:WND4_CANCELLED, +15:u07:WND4_IS_DIR, +25:u10:wnd4_not_supp_upgrade, +27:u12:wnd4_not_supp_downgrade, +18:u13:wnd4_cancelled, +35:u00:WND4_WRITE_DELEG_NOT_SUPP_FTYPE, +25:u01:WND4_NOT_SUPP_UPGRADE, +27:u03:WND4_NOT_SUPP_DOWNGRADE, +18:u04:WND4_CANCELLED, +15:u06:WND4_IS_DIR, +27:u11:wnd4_not_supp_downgrade, +18:u12:wnd4_cancelled, +15:u14:wnd4_is_dir, +25:u00:WND4_NOT_SUPP_UPGRADE, +27:u02:WND4_NOT_SUPP_DOWNGRADE, +18:u03:WND4_CANCELLED, +15:u05:WND4_IS_DIR, +25:u08:open_none_delegation4, +27:u10:wnd4_not_supp_downgrade, +18:u11:wnd4_cancelled, +15:u13:wnd4_is_dir, +27:u01:WND4_NOT_SUPP_DOWNGRADE, +18:u02:WND4_CANCELLED, +15:u04:WND4_IS_DIR, +25:u07:open_none_delegation4, +23:u08:(why_no_delegation4, +18:u10:wnd4_cancelled, +15:u12:wnd4_is_dir, +27:u00:WND4_NOT_SUPP_DOWNGRADE, +18:u01:WND4_CANCELLED, +15:u03:WND4_IS_DIR, +25:u06:open_none_delegation4, +23:u07:(why_no_delegation4, +20:u08:WND4_CONTENTION:, +15:u11:wnd4_is_dir, +18:u00:WND4_CANCELLED, +15:u02:WND4_IS_DIR, +25:u05:open_none_delegation4, +23:u06:(why_no_delegation4, +20:u07:WND4_CONTENTION:, +31:u08:ond_server_will_push_deleg;, +15:u10:wnd4_is_dir, +15:u01:WND4_IS_DIR, +25:u04:open_none_delegation4, +23:u05:(why_no_delegation4, +20:u06:WND4_CONTENTION:, +31:u07:ond_server_will_push_deleg;, +18:u08:WND4_RESOURCE:, +15:u00:WND4_IS_DIR, +25:u03:open_none_delegation4, +23:u04:(why_no_delegation4, +20:u05:WND4_CONTENTION:, +31:u06:ond_server_will_push_deleg;, +18:u07:WND4_RESOURCE:, +33:u08:ond_server_will_signal_avail;, +25:u02:open_none_delegation4, +23:u03:(why_no_delegation4, +20:u04:WND4_CONTENTION:, +31:u05:ond_server_will_push_deleg;, +18:u06:WND4_RESOURCE:, +33:u07:ond_server_will_signal_avail;, +25:u01:open_none_delegation4, +23:u02:(why_no_delegation4, +20:u03:WND4_CONTENTION:, +31:u04:ond_server_will_push_deleg;, +18:u05:WND4_RESOURCE:, +33:u06:ond_server_will_signal_avail;, +25:u00:open_none_delegation4, +23:u01:(why_no_delegation4, +20:u02:WND4_CONTENTION:, +31:u03:ond_server_will_push_deleg;, +18:u04:WND4_RESOURCE:, +33:u05:ond_server_will_signal_avail;, +23:u00:(why_no_delegation4, +20:u01:WND4_CONTENTION:, +31:u02:ond_server_will_push_deleg;, +18:u03:WND4_RESOURCE:, +33:u04:ond_server_will_signal_avail;, +20:u00:WND4_CONTENTION:, +31:u01:ond_server_will_push_deleg;, +18:u02:WND4_RESOURCE:, +33:u03:ond_server_will_signal_avail;, +31:u00:ond_server_will_push_deleg;, +18:u01:WND4_RESOURCE:, +33:u02:ond_server_will_signal_avail;, +8:u08:466], +18:u00:WND4_RESOURCE:, +33:u01:ond_server_will_signal_avail;, +8:u07:466], +33:u00:ond_server_will_signal_avail;, +8:u06:466], +8:u05:466], +8:u04:466], +20:u08:open_delegation4, +8:u03:466], +20:u07:open_delegation4, +26:u08:(open_delegation_type4, +8:u02:466], +20:u06:open_delegation4, +26:u07:(open_delegation_type4, +23:u08:OPEN_DELEGATE_NONE:, +8:u01:466], +20:u05:open_delegation4, +26:u06:(open_delegation_type4, +23:u07:OPEN_DELEGATE_NONE:, +8:u00:466], +20:u04:open_delegation4, +26:u05:(open_delegation_type4, +23:u06:OPEN_DELEGATE_NONE:, +23:u08:OPEN_DELEGATE_READ:, +20:u03:open_delegation4, +26:u04:(open_delegation_type4, +23:u05:OPEN_DELEGATE_NONE:, +23:u07:OPEN_DELEGATE_READ:, +9:u08:read;, +20:u02:open_delegation4, +26:u03:(open_delegation_type4, +23:u04:OPEN_DELEGATE_NONE:, +23:u06:OPEN_DELEGATE_READ:, +9:u07:read;, +24:u08:OPEN_DELEGATE_WRITE:, +20:u01:open_delegation4, +26:u02:(open_delegation_type4, +23:u03:OPEN_DELEGATE_NONE:, +23:u05:OPEN_DELEGATE_READ:, +9:u06:read;, +24:u07:OPEN_DELEGATE_WRITE:, +10:u08:write;, +25:u14:open_read_delegation4, +20:u00:open_delegation4, +26:u01:(open_delegation_type4, +23:u02:OPEN_DELEGATE_NONE:, +23:u04:OPEN_DELEGATE_READ:, +9:u05:read;, +24:u06:OPEN_DELEGATE_WRITE:, +10:u07:write;, +27:u08:OPEN_DELEGATE_NONE_EXT:, +25:u13:open_read_delegation4, +26:u00:(open_delegation_type4, +23:u01:OPEN_DELEGATE_NONE:, +23:u03:OPEN_DELEGATE_READ:, +9:u04:read;, +24:u05:OPEN_DELEGATE_WRITE:, +10:u06:write;, +27:u07:OPEN_DELEGATE_NONE_EXT:, +15:u08:od_whynone;, +25:u12:open_read_delegation4, +26:u14:open_write_delegation4, +23:u00:OPEN_DELEGATE_NONE:, +23:u02:OPEN_DELEGATE_READ:, +9:u03:read;, +24:u04:OPEN_DELEGATE_WRITE:, +10:u05:write;, +27:u06:OPEN_DELEGATE_NONE_EXT:, +15:u07:od_whynone;, +25:u11:open_read_delegation4, +26:u13:open_write_delegation4, +23:u01:OPEN_DELEGATE_READ:, +9:u02:read;, +24:u03:OPEN_DELEGATE_WRITE:, +10:u04:write;, +27:u05:OPEN_DELEGATE_NONE_EXT:, +15:u06:od_whynone;, +25:u10:open_read_delegation4, +26:u12:open_write_delegation4, +25:u14:open_none_delegation4, +23:u00:OPEN_DELEGATE_READ:, +9:u01:read;, +24:u02:OPEN_DELEGATE_WRITE:, +10:u03:write;, +27:u04:OPEN_DELEGATE_NONE_EXT:, +15:u05:od_whynone;, +10:u08:Result, +26:u11:open_write_delegation4, +25:u13:open_none_delegation4, +9:u00:read;, +24:u01:OPEN_DELEGATE_WRITE:, +10:u02:write;, +27:u03:OPEN_DELEGATE_NONE_EXT:, +15:u04:od_whynone;, +10:u07:Result, +26:u10:open_write_delegation4, +25:u12:open_none_delegation4, +24:u00:OPEN_DELEGATE_WRITE:, +10:u01:write;, +27:u02:OPEN_DELEGATE_NONE_EXT:, +15:u03:od_whynone;, +10:u06:Result, +25:u11:open_none_delegation4, +10:u00:write;, +27:u01:OPEN_DELEGATE_NONE_EXT:, +15:u02:od_whynone;, +10:u05:Result, +24:u08:OPEN4_RESULT_CONFIRM, +25:u10:open_none_delegation4, +27:u00:OPEN_DELEGATE_NONE_EXT:, +15:u01:od_whynone;, +10:u04:Result, +24:u07:OPEN4_RESULT_CONFIRM, +15:u00:od_whynone;, +10:u03:Result, +24:u06:OPEN4_RESULT_CONFIRM, +10:u02:Result, +24:u05:OPEN4_RESULT_CONFIRM, +31:u08:OPEN4_RESULT_LOCKTYPE_POSIX, +10:u01:Result, +24:u04:OPEN4_RESULT_CONFIRM, +31:u07:OPEN4_RESULT_LOCKTYPE_POSIX, +10:u00:Result, +24:u03:OPEN4_RESULT_CONFIRM, +31:u06:OPEN4_RESULT_LOCKTYPE_POSIX, +34:u08:OPEN4_RESULT_PRESERVE_UNLINKED, +24:u02:OPEN4_RESULT_CONFIRM, +31:u05:OPEN4_RESULT_LOCKTYPE_POSIX, +34:u07:OPEN4_RESULT_PRESERVE_UNLINKED, +24:u01:OPEN4_RESULT_CONFIRM, +31:u04:OPEN4_RESULT_LOCKTYPE_POSIX, +34:u06:OPEN4_RESULT_PRESERVE_UNLINKED, +24:u00:OPEN4_RESULT_CONFIRM, +31:u03:OPEN4_RESULT_LOCKTYPE_POSIX, +34:u05:OPEN4_RESULT_PRESERVE_UNLINKED, +31:u02:OPEN4_RESULT_LOCKTYPE_POSIX, +34:u04:OPEN4_RESULT_PRESERVE_UNLINKED, +31:u01:OPEN4_RESULT_LOCKTYPE_POSIX, +34:u03:OPEN4_RESULT_PRESERVE_UNLINKED, +32:u08:OPEN4_RESULT_MAY_NOTIFY_LOCK, +31:u00:OPEN4_RESULT_LOCKTYPE_POSIX, +34:u02:OPEN4_RESULT_PRESERVE_UNLINKED, +32:u07:OPEN4_RESULT_MAY_NOTIFY_LOCK, +14:u08:OPEN4resok, +34:u01:OPEN4_RESULT_PRESERVE_UNLINKED, +32:u06:OPEN4_RESULT_MAY_NOTIFY_LOCK, +14:u07:OPEN4resok, +34:u00:OPEN4_RESULT_PRESERVE_UNLINKED, +32:u05:OPEN4_RESULT_MAY_NOTIFY_LOCK, +14:u06:OPEN4resok, +32:u04:OPEN4_RESULT_MAY_NOTIFY_LOCK, +14:u05:OPEN4resok, +32:u03:OPEN4_RESULT_MAY_NOTIFY_LOCK, +14:u04:OPEN4resok, +12:u14:stateid;, +32:u02:OPEN4_RESULT_MAY_NOTIFY_LOCK, +14:u03:OPEN4resok, +12:u13:stateid;, +32:u01:OPEN4_RESULT_MAY_NOTIFY_LOCK, +14:u02:OPEN4resok, +12:u12:stateid;, +11:u08:rflags;, +32:u00:OPEN4_RESULT_MAY_NOTIFY_LOCK, +14:u01:OPEN4resok, +12:u11:stateid;, +14:u00:OPEN4resok, +12:u10:stateid;, +11:u07:rflags;, +11:u06:rflags;, +11:u14:rflags;, +11:u05:rflags;, +11:u13:rflags;, +11:u04:rflags;, +11:u12:rflags;, +7:u22:rfl, +8:u23:rfla, +11:u03:rflags;, +15:u08:delegation;, +11:u11:rflags;, +11:u02:rflags;, +15:u07:delegation;, +11:u10:rflags;, +11:u01:rflags;, +15:u06:delegation;, +20:u14:open_delegation4, +11:u00:rflags;, +15:u05:delegation;, +20:u13:open_delegation4, +15:u04:delegation;, +20:u12:open_delegation4, +15:u03:delegation;, +20:u11:open_delegation4, +15:u02:delegation;, +20:u10:open_delegation4, +15:u01:delegation;, +15:u00:delegation;, +14:u14:open4resok, +14:u13:open4resok, +14:u12:open4resok, +14:u11:open4resok, +14:u10:open4resok, +8:u08:467], +8:u07:467], +8:u06:467], +12:u08:18.16.3., +8:u05:467], +8:u04:467], +12:u07:18.16.3., +8:u03:467], +12:u06:18.16.3., +8:u02:467], +12:u14:18.16.3., +12:u05:18.16.3., +8:u01:467], +12:u13:18.16.3., +12:u04:18.16.3., +8:u00:467], +12:u12:18.16.3., +12:u03:18.16.3., +12:u11:18.16.3., +12:u02:18.16.3., +12:u10:18.16.3., +12:u01:18.16.3., +12:u00:18.16.3., +15:u08:UNCHECKED4,, +17:u08:OPEN4_CREATE,, +13:u08:GUARDED4,, +15:u07:UNCHECKED4,, +15:u08:CLAIM_NULL,, +13:u07:GUARDED4,, +15:u06:UNCHECKED4,, +17:u07:OPEN4_CREATE,, +13:u06:GUARDED4,, +23:u08:CLAIM_DELEGATE_CUR,, +15:u14:unchecked4,, +15:u05:UNCHECKED4,, +17:u06:OPEN4_CREATE,, +15:u07:CLAIM_NULL,, +13:u05:GUARDED4,, +23:u07:CLAIM_DELEGATE_CUR,, +15:u13:unchecked4,, +17:u14:open4_create,, +15:u04:UNCHECKED4,, +17:u05:OPEN4_CREATE,, +15:u06:CLAIM_NULL,, +13:u04:GUARDED4,, +23:u06:CLAIM_DELEGATE_CUR,, +11:u08:success, +15:u12:unchecked4,, +17:u13:open4_create,, +15:u14:claim_null,, +15:u03:UNCHECKED4,, +17:u04:OPEN4_CREATE,, +15:u05:CLAIM_NULL,, +13:u03:GUARDED4,, +23:u05:CLAIM_DELEGATE_CUR,, +11:u07:success, +15:u11:unchecked4,, +17:u12:open4_create,, +15:u13:claim_null,, +9:u14:claim, +15:u02:UNCHECKED4,, +17:u03:OPEN4_CREATE,, +15:u04:CLAIM_NULL,, +13:u02:GUARDED4,, +23:u04:CLAIM_DELEGATE_CUR,, +11:u06:success, +15:u10:unchecked4,, +17:u11:open4_create,, +15:u12:claim_null,, +9:u13:claim, +15:u01:UNCHECKED4,, +17:u02:OPEN4_CREATE,, +15:u03:CLAIM_NULL,, +13:u01:GUARDED4,, +23:u03:CLAIM_DELEGATE_CUR,, +11:u05:success, +17:u10:open4_create,, +15:u11:claim_null,, +9:u12:claim, +15:u00:UNCHECKED4,, +17:u01:OPEN4_CREATE,, +15:u02:CLAIM_NULL,, +13:u00:GUARDED4,, +23:u02:CLAIM_DELEGATE_CUR,, +11:u04:success, +15:u10:claim_null,, +9:u11:claim, +17:u00:OPEN4_CREATE,, +15:u01:CLAIM_NULL,, +23:u01:CLAIM_DELEGATE_CUR,, +11:u03:success, +9:u10:claim, +15:u00:CLAIM_NULL,, +23:u00:CLAIM_DELEGATE_CUR,, +11:u02:success, +11:u01:success, +11:u00:success, +10:u08:exist,, +10:u07:exist,, +15:u08:successful,, +10:u06:exist,, +14:u08:signifying, +10:u14:exist,, +10:u05:exist,, +15:u07:successful,, +10:u13:exist,, +10:u04:exist,, +15:u06:successful,, +14:u07:signifying, +10:u12:exist,, +15:u14:successful,, +10:u03:exist,, +15:u05:successful,, +14:u06:signifying, +12:u08:creation, +10:u11:exist,, +15:u13:successful,, +14:u14:signifying, +10:u02:exist,, +15:u04:successful,, +14:u05:signifying, +12:u07:creation, +10:u10:exist,, +15:u12:successful,, +14:u13:signifying, +10:u01:exist,, +15:u03:successful,, +14:u04:signifying, +12:u06:creation, +15:u11:successful,, +14:u12:signifying, +10:u00:exist,, +15:u02:successful,, +14:u03:signifying, +12:u05:creation, +15:u10:successful,, +14:u11:signifying, +12:u14:creation, +15:u01:successful,, +14:u02:signifying, +12:u04:creation, +14:u10:signifying, +12:u13:creation, +15:u00:successful,, +14:u01:signifying, +12:u03:creation, +8:u08:468], +12:u12:creation, +14:u00:signifying, +12:u02:creation, +8:u07:468], +12:u11:creation, +12:u01:creation, +8:u06:468], +12:u10:creation, +12:u00:creation, +8:u05:468], +8:u04:468], +8:u03:468], +8:u02:468], +8:u01:468], +8:u00:468], +17:u14:nfs4err_exist, +17:u13:nfs4err_exist, +17:u08:EXCLUSIVE4_1,, +17:u12:nfs4err_exist, +17:u11:nfs4err_exist, +17:u07:EXCLUSIVE4_1,, +17:u10:nfs4err_exist, +17:u06:EXCLUSIVE4_1,, +17:u14:exclusive4_1,, +17:u05:EXCLUSIVE4_1,, +17:u13:exclusive4_1,, +17:u04:EXCLUSIVE4_1,, +15:u08:EXCLUSIVE4,, +17:u12:exclusive4_1,, +17:u03:EXCLUSIVE4_1,, +15:u07:EXCLUSIVE4,, +17:u11:exclusive4_1,, +17:u02:EXCLUSIVE4_1,, +15:u06:EXCLUSIVE4,, +17:u10:exclusive4_1,, +17:u01:EXCLUSIVE4_1,, +15:u05:EXCLUSIVE4,, +17:u00:EXCLUSIVE4_1,, +15:u04:EXCLUSIVE4,, +13:u08:cva_attrs, +15:u03:EXCLUSIVE4,, +13:u08:5.8.1.14), +15:u02:EXCLUSIVE4,, +13:u07:5.8.1.14), +13:u07:cva_attrs, +15:u01:EXCLUSIVE4,, +13:u06:5.8.1.14), +13:u06:cva_attrs, +15:u00:EXCLUSIVE4,, +13:u05:5.8.1.14), +13:u14:cva_attrs, +13:u05:cva_attrs, +13:u04:5.8.1.14), +13:u13:cva_attrs, +13:u04:cva_attrs, +11:u08:attrset, +13:u03:5.8.1.14), +12:u08:18.16.4,, +13:u12:cva_attrs, +13:u03:cva_attrs, +13:u02:5.8.1.14), +12:u07:18.16.4,, +13:u11:cva_attrs, +13:u02:cva_attrs, +11:u07:attrset, +13:u01:5.8.1.14), +12:u06:18.16.4,, +13:u10:cva_attrs, +13:u01:cva_attrs, +11:u06:attrset, +13:u00:5.8.1.14), +12:u05:18.16.4,, +11:u14:attrset, +13:u00:cva_attrs, +11:u05:attrset, +12:u04:18.16.4,, +11:u13:attrset, +11:u04:attrset, +12:u03:18.16.4,, +11:u12:attrset, +11:u03:attrset, +12:u02:18.16.4,, +11:u11:attrset, +11:u02:attrset, +12:u01:18.16.4,, +11:u10:attrset, +11:u01:attrset, +12:u00:18.16.4,, +12:u14:mandated, +11:u00:attrset, +8:u08:469], +12:u13:mandated, +8:u07:469], +12:u12:mandated, +8:u06:469], +12:u11:mandated, +12:u08:Required, +8:u05:469], +12:u10:mandated, +73:u08:+----------------+-----------+---------------+----------------------+, +8:u04:469], +12:u07:Required, +8:u03:469], +12:u06:Required, +73:u07:+----------------+-----------+---------------+----------------------+, +8:u02:469], +12:u05:Required, +73:u06:+----------------+-----------+---------------+----------------------+, +8:u01:469], +73:u14:+----------------+-----------+---------------+----------------------+, +12:u04:Required, +73:u05:+----------------+-----------+---------------+----------------------+, +8:u00:469], +73:u13:+----------------+-----------+---------------+----------------------+, +12:u03:Required, +73:u04:+----------------+-----------+---------------+----------------------+, +73:u12:+----------------+-----------+---------------+----------------------+, +12:u02:Required, +73:u03:+----------------+-----------+---------------+----------------------+, +73:u11:+----------------+-----------+---------------+----------------------+, +12:u01:Required, +73:u02:+----------------+-----------+---------------+----------------------+, +9:u08:Reply, +73:u10:+----------------+-----------+---------------+----------------------+, +12:u00:Required, +73:u01:+----------------+-----------+---------------+----------------------+, +9:u07:Reply, +12:u08:Supports, +73:u00:+----------------+-----------+---------------+----------------------+, +9:u06:Reply, +12:u07:Supports, +9:u05:Reply, +12:u06:Supports, +9:u04:Reply, +12:u05:Supports, +11:u08:Enabled, +9:u03:Reply, +12:u04:Supports, +11:u07:Enabled, +9:u02:Reply, +12:u03:Supports, +11:u06:Enabled, +9:u01:Reply, +12:u02:Supports, +11:u05:Enabled, +9:u00:Reply, +12:u01:Supports, +11:u04:Enabled, +12:u00:Supports, +11:u03:Enabled, +11:u02:Enabled, +11:u01:Enabled, +11:u00:Enabled, +12:u08:(SHOULD), +12:u07:(SHOULD), +12:u06:(SHOULD), +12:u05:(SHOULD), +12:u04:(SHOULD), +12:u03:(SHOULD), +12:u02:(SHOULD), +12:u01:(SHOULD), +12:u00:(SHOULD), +8:u08:NOT), +8:u07:NOT), +8:u06:NOT), +8:u05:NOT), +8:u04:NOT), +8:u03:NOT), +8:u02:NOT), +8:u01:NOT), +8:u00:NOT), +32:u08:CREATE_SESSION4_FLAG_PERSIST, +32:u07:CREATE_SESSION4_FLAG_PERSIST, +32:u06:CREATE_SESSION4_FLAG_PERSIST, +32:u05:CREATE_SESSION4_FLAG_PERSIST, +32:u04:CREATE_SESSION4_FLAG_PERSIST, +32:u03:CREATE_SESSION4_FLAG_PERSIST, +32:u02:CREATE_SESSION4_FLAG_PERSIST, +14:u08:achievable, +32:u01:CREATE_SESSION4_FLAG_PERSIST, +32:u00:CREATE_SESSION4_FLAG_PERSIST, +14:u07:achievable, +14:u06:achievable, +14:u14:achievable, +14:u05:achievable, +11:u08:GUARDED, +14:u13:achievable, +14:u04:achievable, +11:u07:GUARDED, +14:u12:achievable, +14:u03:achievable, +11:u06:GUARDED, +14:u11:achievable, +14:u02:achievable, +11:u05:GUARDED, +14:u10:achievable, +14:u01:achievable, +11:u04:GUARDED, +14:u00:achievable, +11:u03:GUARDED, +11:u02:GUARDED, +14:u08:arguments., +11:u01:GUARDED, +11:u00:GUARDED, +14:u07:arguments., +10:u08:SHAREs, +14:u08:share_deny, +14:u06:arguments., +14:u07:share_deny, +14:u14:arguments., +14:u05:arguments., +10:u07:SHAREs, +14:u06:share_deny, +14:u13:arguments., +14:u04:arguments., +10:u06:SHAREs, +14:u05:share_deny, +14:u12:arguments., +10:u14:shares, +14:u03:arguments., +10:u05:SHAREs, +14:u04:share_deny, +14:u11:arguments., +10:u13:shares, +14:u02:arguments., +10:u04:SHAREs, +14:u03:share_deny, +14:u10:arguments., +10:u12:shares, +7:u22:SHA, +8:u23:SHAR, +14:u01:arguments., +10:u03:SHAREs, +14:u02:share_deny, +10:u11:shares, +14:u00:arguments., +10:u02:SHAREs, +14:u01:share_deny, +10:u10:shares, +14:u14:semantics,, +10:u01:SHAREs, +14:u00:share_deny, +8:u08:470], +14:u13:semantics,, +10:u00:SHAREs, +8:u07:470], +14:u12:semantics,, +8:u06:470], +14:u11:semantics,, +8:u05:470], +14:u10:semantics,, +8:u04:470], +8:u03:470], +13:u08:argument., +8:u02:470], +13:u07:argument., +8:u01:470], +13:u06:argument., +8:u00:470], +13:u05:argument., +13:u04:argument., +13:u03:argument., +13:u02:argument., +12:u08:failure,, +13:u01:argument., +13:u00:argument., +12:u07:failure,, +12:u06:failure,, +11:u08:"claim", +12:u14:failure,, +12:u05:failure,, +12:u08:possess., +11:u07:"claim", +10:u08:opened, +12:u13:failure,, +12:u04:failure,, +11:u06:"claim", +10:u07:opened, +12:u12:failure,, +12:u03:failure,, +12:u07:possess., +11:u05:"claim", +10:u06:opened, +12:u11:failure,, +12:u02:failure,, +12:u06:possess., +11:u04:"claim", +10:u05:opened, +12:u10:failure,, +12:u14:possess., +12:u01:failure,, +12:u05:possess., +11:u03:"claim", +10:u04:opened, +8:u08:471], +12:u13:possess., +12:u00:failure,, +12:u04:possess., +11:u02:"claim", +10:u03:opened, +8:u07:471], +12:u12:possess., +12:u03:possess., +11:u01:"claim", +10:u02:opened, +8:u06:471], +12:u11:possess., +12:u02:possess., +11:u00:"claim", +10:u01:opened, +8:u05:471], +12:u10:possess., +12:u01:possess., +10:u00:opened, +8:u04:471], +12:u00:possess., +8:u03:471], +8:u02:471], +8:u01:471], +8:u00:471], +13:u08:NFSv4.1),, +13:u07:NFSv4.1),, +13:u06:NFSv4.1),, +13:u05:NFSv4.1),, +13:u04:NFSv4.1),, +13:u03:NFSv4.1),, +13:u02:NFSv4.1),, +13:u01:NFSv4.1),, +13:u00:NFSv4.1),, +16:u08:filehandles;, +16:u07:filehandles;, +16:u06:filehandles;, +16:u05:filehandles;, +16:u04:filehandles;, +16:u03:filehandles;, +16:u02:filehandles;, +16:u01:filehandles;, +16:u00:filehandles;, +24:u08:CLAIM_DELEGATE_PREV,, +24:u07:CLAIM_DELEGATE_PREV,, +24:u06:CLAIM_DELEGATE_PREV,, +24:u05:CLAIM_DELEGATE_PREV,, +24:u04:CLAIM_DELEGATE_PREV,, +24:u03:CLAIM_DELEGATE_PREV,, +24:u02:CLAIM_DELEGATE_PREV,, +24:u01:CLAIM_DELEGATE_PREV,, +24:u00:CLAIM_DELEGATE_PREV,, +15:u08:exceptions:, +15:u07:exceptions:, +15:u06:exceptions:, +15:u05:exceptions:, +15:u04:exceptions:, +15:u03:exceptions:, +15:u02:exceptions:, +15:u01:exceptions:, +15:u00:exceptions:, +8:u08:472], +8:u07:472], +8:u06:472], +8:u05:472], +8:u04:472], +8:u03:472], +8:u02:472], +8:u01:472], +8:u00:472], +10:u08:rflags, +10:u07:rflags, +13:u08:governing, +10:u06:rflags, +13:u07:governing, +10:u05:rflags, +13:u06:governing, +10:u04:rflags, +13:u05:governing, +10:u03:rflags, +13:u04:governing, +10:u02:rflags, +13:u03:governing, +9:u08:[21]., +10:u01:rflags, +13:u02:governing, +9:u07:[21]., +10:u00:rflags, +13:u01:governing, +9:u06:[21]., +14:u14:techniques, +13:u00:governing, +9:u05:[21]., +14:u13:techniques, +9:uI2:[].,-, +9:u04:[21]., +14:u12:techniques, +9:uI1:[].,-, +9:u03:[21]., +14:u11:techniques, +9:uI0:[].,-, +9:u02:[21]., +14:u10:techniques, +9:u01:[21]., +9:u00:[21]., +9:u08:only,, +9:u07:only,, +18:u14:cb_notify_lock, +9:u06:only,, +18:u13:cb_notify_lock, +9:u05:only,, +18:u12:cb_notify_lock, +9:u04:only,, +18:u11:cb_notify_lock, +9:u03:only,, +18:u10:cb_notify_lock, +9:u02:only,, +9:u01:only,, +9:u00:only,, +14:u08:completed., +14:u07:completed., +14:u06:completed., +14:u05:completed., +14:u04:completed., +14:u03:completed., +8:u08:473], +14:u02:completed., +8:u07:473], +14:u01:completed., +8:u06:473], +14:u00:completed., +8:u05:473], +8:u04:473], +8:u03:473], +8:u02:473], +8:u01:473], +16:u08:ACCESS_BOTH,, +8:u00:473], +16:u07:ACCESS_BOTH,, +16:u06:ACCESS_BOTH,, +8:u08:ACE,, +16:u14:access_both,, +16:u05:ACCESS_BOTH,, +16:u13:access_both,, +16:u04:ACCESS_BOTH,, +8:u07:ACE,, +16:u12:access_both,, +16:u03:ACCESS_BOTH,, +8:u06:ACE,, +15:u08:createmode,, +16:u11:access_both,, +8:u14:ace,, +16:u02:ACCESS_BOTH,, +8:u05:ACE,, +15:u07:createmode,, +16:u10:access_both,, +8:u13:ace,, +16:u01:ACCESS_BOTH,, +8:u04:ACE,, +14:u08:specified,, +15:u06:createmode,, +15:u08:(UNCHECKED4, +8:u12:ace,, +8:u23:ACE,, +16:u00:ACCESS_BOTH,, +8:u03:ACE,, +15:u05:createmode,, +15:u07:(UNCHECKED4, +8:u11:ace,, +9:u14:calls, +8:u02:ACE,, +14:u07:specified,, +15:u04:createmode,, +15:u06:(UNCHECKED4, +8:u10:ace,, +9:u13:calls, +8:u01:ACE,, +14:u06:specified,, +15:u03:createmode,, +15:u05:(UNCHECKED4, +9:u12:calls, +14:u14:specified,, +8:u00:ACE,, +14:u05:specified,, +15:u08:truncation), +15:u02:createmode,, +15:u04:(UNCHECKED4, +9:u11:calls, +14:u13:specified,, +14:u04:specified,, +15:u01:createmode,, +15:u03:(UNCHECKED4, +9:u10:calls, +14:u12:specified,, +14:u03:specified,, +15:u07:truncation), +15:u00:createmode,, +15:u02:(UNCHECKED4, +8:u08:left, +14:u11:specified,, +14:u02:specified,, +15:u06:truncation), +15:u01:(UNCHECKED4, +8:u07:left, +14:u10:specified,, +15:u14:truncation), +14:u01:specified,, +15:u05:truncation), +14:u08:OPEN4args:, +15:u00:(UNCHECKED4, +8:u06:left, +15:u13:truncation), +14:u00:specified,, +15:u04:truncation), +8:u05:left, +15:u12:truncation), +15:u03:truncation), +14:u07:OPEN4args:, +8:u04:left, +15:u11:truncation), +15:u02:truncation), +14:u06:OPEN4args:, +8:u03:left, +15:u10:truncation), +14:u14:open4args:, +15:u01:truncation), +14:u05:OPEN4args:, +8:u02:left, +14:u13:open4args:, +38:u14:open4_share_access_want_read_deleg, +15:u00:truncation), +14:u04:OPEN4args:, +8:u01:left, +14:u12:open4args:, +38:u13:open4_share_access_want_read_deleg, +39:u14:open4_share_access_want_write_deleg, +14:u03:OPEN4args:, +8:u00:left, +14:u11:open4args:, +38:u12:open4_share_access_want_read_deleg, +39:u13:open4_share_access_want_write_deleg, +37:u14:open4_share_access_want_any_deleg, +14:u02:OPEN4args:, +14:u10:open4args:, +38:u11:open4_share_access_want_read_deleg, +39:u12:open4_share_access_want_write_deleg, +37:u13:open4_share_access_want_any_deleg, +36:u14:open4_share_access_want_no_deleg, +14:u01:OPEN4args:, +38:u10:open4_share_access_want_read_deleg, +39:u11:open4_share_access_want_write_deleg, +37:u12:open4_share_access_want_any_deleg, +36:u13:open4_share_access_want_no_deleg, +34:u14:open4_share_access_want_cancel, +14:u00:OPEN4args:, +17:u08:(share_access, +39:u10:open4_share_access_want_write_deleg, +37:u11:open4_share_access_want_any_deleg, +36:u12:open4_share_access_want_no_deleg, +34:u13:open4_share_access_want_cancel, +17:u07:(share_access, +37:u10:open4_share_access_want_any_deleg, +36:u11:open4_share_access_want_no_deleg, +34:u12:open4_share_access_want_cancel, +17:u06:(share_access, +36:u10:open4_share_access_want_no_deleg, +34:u11:open4_share_access_want_cancel, +17:u05:(share_access, +34:u10:open4_share_access_want_cancel, +17:u04:(share_access, +17:u03:(share_access, +17:u02:(share_access, +8:u08:474], +17:u01:(share_access, +8:u07:474], +17:u00:(share_access, +8:u06:474], +8:u05:474], +8:u04:474], +8:u03:474], +8:u02:474], +8:u01:474], +8:u00:474], +27:u08:OPEN_DELEGATE_NONE_EXT., +27:u07:OPEN_DELEGATE_NONE_EXT., +27:u06:OPEN_DELEGATE_NONE_EXT., +37:u08:OPEN4_SHARE_ACCESS_WANT_NO_DELEG., +27:u14:open_delegate_none_ext., +27:u05:OPEN_DELEGATE_NONE_EXT., +27:u13:open_delegate_none_ext., +27:u04:OPEN_DELEGATE_NONE_EXT., +37:u07:OPEN4_SHARE_ACCESS_WANT_NO_DELEG., +27:u12:open_delegate_none_ext., +27:u03:OPEN_DELEGATE_NONE_EXT., +37:u06:OPEN4_SHARE_ACCESS_WANT_NO_DELEG., +27:u11:open_delegate_none_ext., +37:u14:open4_share_access_want_no_deleg., +27:u02:OPEN_DELEGATE_NONE_EXT., +37:u05:OPEN4_SHARE_ACCESS_WANT_NO_DELEG., +27:u10:open_delegate_none_ext., +37:u13:open4_share_access_want_no_deleg., +27:u01:OPEN_DELEGATE_NONE_EXT., +37:u04:OPEN4_SHARE_ACCESS_WANT_NO_DELEG., +37:u12:open4_share_access_want_no_deleg., +27:u00:OPEN_DELEGATE_NONE_EXT., +37:u03:OPEN4_SHARE_ACCESS_WANT_NO_DELEG., +37:u11:open4_share_access_want_no_deleg., +37:u02:OPEN4_SHARE_ACCESS_WANT_NO_DELEG., +37:u10:open4_share_access_want_no_deleg., +37:u01:OPEN4_SHARE_ACCESS_WANT_NO_DELEG., +37:u00:OPEN4_SHARE_ACCESS_WANT_NO_DELEG., +17:u08:WND4_CANCELED, +17:u07:WND4_CANCELED, +17:u06:WND4_CANCELED, +17:u14:wnd4_canceled, +17:u05:WND4_CANCELED, +17:u13:wnd4_canceled, +17:u04:WND4_CANCELED, +39:u08:OPEN4_SHARE_ACCESS_WANT_READ_DELEG,, +17:u12:wnd4_canceled, +17:u03:WND4_CANCELED, +39:u08:OPEN_SHARE_ACCESS_WANT_WRITE_DELEG,, +17:u11:wnd4_canceled, +17:u02:WND4_CANCELED, +39:u07:OPEN4_SHARE_ACCESS_WANT_READ_DELEG,, +17:u10:wnd4_canceled, +17:u01:WND4_CANCELED, +39:u06:OPEN4_SHARE_ACCESS_WANT_READ_DELEG,, +39:u07:OPEN_SHARE_ACCESS_WANT_WRITE_DELEG,, +39:u14:open4_share_access_want_read_deleg,, +17:u00:WND4_CANCELED, +39:u05:OPEN4_SHARE_ACCESS_WANT_READ_DELEG,, +39:u06:OPEN_SHARE_ACCESS_WANT_WRITE_DELEG,, +39:u13:open4_share_access_want_read_deleg,, +39:u14:open_share_access_want_write_deleg,, +39:u04:OPEN4_SHARE_ACCESS_WANT_READ_DELEG,, +39:u05:OPEN_SHARE_ACCESS_WANT_WRITE_DELEG,, +8:u08:475], +39:u12:open4_share_access_want_read_deleg,, +39:u13:open_share_access_want_write_deleg,, +39:u03:OPEN4_SHARE_ACCESS_WANT_READ_DELEG,, +39:u04:OPEN_SHARE_ACCESS_WANT_WRITE_DELEG,, +8:u07:475], +39:u11:open4_share_access_want_read_deleg,, +39:u12:open_share_access_want_write_deleg,, +39:u02:OPEN4_SHARE_ACCESS_WANT_READ_DELEG,, +39:u03:OPEN_SHARE_ACCESS_WANT_WRITE_DELEG,, +8:u06:475], +39:u10:open4_share_access_want_read_deleg,, +39:u11:open_share_access_want_write_deleg,, +39:u01:OPEN4_SHARE_ACCESS_WANT_READ_DELEG,, +39:u02:OPEN_SHARE_ACCESS_WANT_WRITE_DELEG,, +36:u08:OPEN_SHARE_ACCESS_WANT_ANY_DELEG, +8:u05:475], +39:u10:open_share_access_want_write_deleg,, +39:u00:OPEN4_SHARE_ACCESS_WANT_READ_DELEG,, +39:u01:OPEN_SHARE_ACCESS_WANT_WRITE_DELEG,, +8:u04:475], +9:u08:mean,, +39:u00:OPEN_SHARE_ACCESS_WANT_WRITE_DELEG,, +36:u07:OPEN_SHARE_ACCESS_WANT_ANY_DELEG, +8:u03:475], +9:u07:mean,, +23:u08:OPEN_DELEGATE_READ,, +36:u06:OPEN_SHARE_ACCESS_WANT_ANY_DELEG, +8:u02:475], +9:u06:mean,, +23:u07:OPEN_DELEGATE_READ,, +36:u14:open_share_access_want_any_deleg, +36:u05:OPEN_SHARE_ACCESS_WANT_ANY_DELEG, +8:u01:475], +9:u05:mean,, +23:u06:OPEN_DELEGATE_READ,, +36:u13:open_share_access_want_any_deleg, +36:u04:OPEN_SHARE_ACCESS_WANT_ANY_DELEG, +8:u00:475], +9:u04:mean,, +23:u05:OPEN_DELEGATE_READ,, +36:u12:open_share_access_want_any_deleg, +36:u03:OPEN_SHARE_ACCESS_WANT_ANY_DELEG, +9:u03:mean,, +23:u04:OPEN_DELEGATE_READ,, +36:u11:open_share_access_want_any_deleg, +36:u02:OPEN_SHARE_ACCESS_WANT_ANY_DELEG, +9:u02:mean,, +23:u03:OPEN_DELEGATE_READ,, +36:u10:open_share_access_want_any_deleg, +36:u01:OPEN_SHARE_ACCESS_WANT_ANY_DELEG, +9:u01:mean,, +23:u02:OPEN_DELEGATE_READ,, +36:u00:OPEN_SHARE_ACCESS_WANT_ANY_DELEG, +9:u00:mean,, +23:u01:OPEN_DELEGATE_READ,, +23:u00:OPEN_DELEGATE_READ,, +19:u08:delegation_type, +19:u07:delegation_type, +19:u06:delegation_type, +19:u14:delegation_type, +19:u05:delegation_type, +19:u13:delegation_type, +19:u04:delegation_type, +19:u12:delegation_type, +19:u03:delegation_type, +19:u11:delegation_type, +19:u02:delegation_type, +19:u10:delegation_type, +19:u01:delegation_type, +19:u00:delegation_type, +56:u08:OPEN4_SHARE_ACCESS_WANT_PUSH_DELEG_WHEN_UNCONTENDED., +56:u07:OPEN4_SHARE_ACCESS_WANT_PUSH_DELEG_WHEN_UNCONTENDED., +56:u06:OPEN4_SHARE_ACCESS_WANT_PUSH_DELEG_WHEN_UNCONTENDED., +56:u14:open4_share_access_want_push_deleg_when_uncontended., +56:u05:OPEN4_SHARE_ACCESS_WANT_PUSH_DELEG_WHEN_UNCONTENDED., +56:u13:open4_share_access_want_push_deleg_when_uncontended., +56:u04:OPEN4_SHARE_ACCESS_WANT_PUSH_DELEG_WHEN_UNCONTENDED., +56:u12:open4_share_access_want_push_deleg_when_uncontended., +56:u03:OPEN4_SHARE_ACCESS_WANT_PUSH_DELEG_WHEN_UNCONTENDED., +58:u08:OPEN4_SHARE_ACCESS_WANT_SIGNAL_DELEG_WHEN_RESRC_AVAIL,, +56:u11:open4_share_access_want_push_deleg_when_uncontended., +56:u02:OPEN4_SHARE_ACCESS_WANT_PUSH_DELEG_WHEN_UNCONTENDED., +56:u10:open4_share_access_want_push_deleg_when_uncontended., +56:u01:OPEN4_SHARE_ACCESS_WANT_PUSH_DELEG_WHEN_UNCONTENDED., +58:u07:OPEN4_SHARE_ACCESS_WANT_SIGNAL_DELEG_WHEN_RESRC_AVAIL,, +56:u00:OPEN4_SHARE_ACCESS_WANT_PUSH_DELEG_WHEN_UNCONTENDED., +58:u06:OPEN4_SHARE_ACCESS_WANT_SIGNAL_DELEG_WHEN_RESRC_AVAIL,, +58:u14:open4_share_access_want_signal_deleg_when_resrc_avail,, +58:u05:OPEN4_SHARE_ACCESS_WANT_SIGNAL_DELEG_WHEN_RESRC_AVAIL,, +58:u13:open4_share_access_want_signal_deleg_when_resrc_avail,, +58:u04:OPEN4_SHARE_ACCESS_WANT_SIGNAL_DELEG_WHEN_RESRC_AVAIL,, +58:u12:open4_share_access_want_signal_deleg_when_resrc_avail,, +58:u03:OPEN4_SHARE_ACCESS_WANT_SIGNAL_DELEG_WHEN_RESRC_AVAIL,, +14:u08:limitation, +58:u11:open4_share_access_want_signal_deleg_when_resrc_avail,, +58:u02:OPEN4_SHARE_ACCESS_WANT_SIGNAL_DELEG_WHEN_RESRC_AVAIL,, +14:u07:limitation, +58:u10:open4_share_access_want_signal_deleg_when_resrc_avail,, +58:u01:OPEN4_SHARE_ACCESS_WANT_SIGNAL_DELEG_WHEN_RESRC_AVAIL,, +27:u08:OPEN_DELEGATE_NONE_EXT,, +14:u06:limitation, +58:u00:OPEN4_SHARE_ACCESS_WANT_SIGNAL_DELEG_WHEN_RESRC_AVAIL,, +32:u08:ond_server_will_signal_avail, +14:u05:limitation, +11:u08:ond_why, +27:u07:OPEN_DELEGATE_NONE_EXT,, +14:u04:limitation, +11:u07:ond_why, +27:u06:OPEN_DELEGATE_NONE_EXT,, +32:u07:ond_server_will_signal_avail, +14:u03:limitation, +11:u06:ond_why, +27:u14:open_delegate_none_ext,, +27:u05:OPEN_DELEGATE_NONE_EXT,, +32:u06:ond_server_will_signal_avail, +14:u02:limitation, +11:u05:ond_why, +27:u13:open_delegate_none_ext,, +32:u14:ond_server_will_signal_avail, +27:u04:OPEN_DELEGATE_NONE_EXT,, +32:u05:ond_server_will_signal_avail, +14:u01:limitation, +11:u04:ond_why, +8:u08:476], +27:u12:open_delegate_none_ext,, +32:u13:ond_server_will_signal_avail, +27:u03:OPEN_DELEGATE_NONE_EXT,, +32:u04:ond_server_will_signal_avail, +14:u00:limitation, +11:u03:ond_why, +8:u07:476], +27:u11:open_delegate_none_ext,, +32:u12:ond_server_will_signal_avail, +7:u22:ond, +8:u23:ond_, +27:u02:OPEN_DELEGATE_NONE_EXT,, +32:u03:ond_server_will_signal_avail, +11:u02:ond_why, +8:u06:476], +27:u10:open_delegate_none_ext,, +32:u11:ond_server_will_signal_avail, +27:u01:OPEN_DELEGATE_NONE_EXT,, +32:u02:ond_server_will_signal_avail, +11:u01:ond_why, +8:u05:476], +32:u10:ond_server_will_signal_avail, +27:u00:OPEN_DELEGATE_NONE_EXT,, +32:u01:ond_server_will_signal_avail, +11:u00:ond_why, +8:u04:476], +32:u00:ond_server_will_signal_avail, +8:u03:476], +58:u08:OPEN4_SHARE_ACCESS_WANT_SIGNAL_DELEG_WHEN_UNCONTENDED,, +8:u02:476], +8:u01:476], +58:u07:OPEN4_SHARE_ACCESS_WANT_SIGNAL_DELEG_WHEN_UNCONTENDED,, +8:u00:476], +58:u06:OPEN4_SHARE_ACCESS_WANT_SIGNAL_DELEG_WHEN_UNCONTENDED,, +58:u14:open4_share_access_want_signal_deleg_when_uncontended,, +58:u05:OPEN4_SHARE_ACCESS_WANT_SIGNAL_DELEG_WHEN_UNCONTENDED,, +58:u13:open4_share_access_want_signal_deleg_when_uncontended,, +58:u04:OPEN4_SHARE_ACCESS_WANT_SIGNAL_DELEG_WHEN_UNCONTENDED,, +10:u08:eased., +58:u12:open4_share_access_want_signal_deleg_when_uncontended,, +58:u03:OPEN4_SHARE_ACCESS_WANT_SIGNAL_DELEG_WHEN_UNCONTENDED,, +58:u11:open4_share_access_want_signal_deleg_when_uncontended,, +58:u02:OPEN4_SHARE_ACCESS_WANT_SIGNAL_DELEG_WHEN_UNCONTENDED,, +10:u07:eased., +58:u10:open4_share_access_want_signal_deleg_when_uncontended,, +58:u01:OPEN4_SHARE_ACCESS_WANT_SIGNAL_DELEG_WHEN_UNCONTENDED,, +10:u06:eased., +30:u08:ond_server_will_push_deleg, +10:u14:eased., +58:u00:OPEN4_SHARE_ACCESS_WANT_SIGNAL_DELEG_WHEN_UNCONTENDED,, +10:u05:eased., +10:u13:eased., +10:u04:eased., +30:u07:ond_server_will_push_deleg, +10:u12:eased., +7:u22:eas, +8:u23:ease, +10:u03:eased., +30:u06:ond_server_will_push_deleg, +10:u11:eased., +30:u14:ond_server_will_push_deleg, +10:u02:eased., +30:u05:ond_server_will_push_deleg, +10:u10:eased., +30:u13:ond_server_will_push_deleg, +10:u01:eased., +30:u04:ond_server_will_push_deleg, +33:u08:NFS4ERR_DELEG_ALREADY_WANTED., +30:u12:ond_server_will_push_deleg, +10:u00:eased., +30:u03:ond_server_will_push_deleg, +30:u11:ond_server_will_push_deleg, +30:u02:ond_server_will_push_deleg, +33:u07:NFS4ERR_DELEG_ALREADY_WANTED., +30:u10:ond_server_will_push_deleg, +30:u01:ond_server_will_push_deleg, +33:u06:NFS4ERR_DELEG_ALREADY_WANTED., +12:u08:18.16.4., +33:u14:nfs4err_deleg_already_wanted., +30:u00:ond_server_will_push_deleg, +33:u05:NFS4ERR_DELEG_ALREADY_WANTED., +33:u13:nfs4err_deleg_already_wanted., +33:u04:NFS4ERR_DELEG_ALREADY_WANTED., +12:u07:18.16.4., +33:u12:nfs4err_deleg_already_wanted., +33:u03:NFS4ERR_DELEG_ALREADY_WANTED., +12:u06:18.16.4., +33:u11:nfs4err_deleg_already_wanted., +12:u14:18.16.4., +33:u02:NFS4ERR_DELEG_ALREADY_WANTED., +12:u05:18.16.4., +33:u10:nfs4err_deleg_already_wanted., +12:u13:18.16.4., +33:u01:NFS4ERR_DELEG_ALREADY_WANTED., +12:u04:18.16.4., +12:u12:18.16.4., +33:u00:NFS4ERR_DELEG_ALREADY_WANTED., +12:u03:18.16.4., +12:u11:18.16.4., +12:u02:18.16.4., +12:u10:18.16.4., +12:u01:18.16.4., +10:u08:stores, +12:u00:18.16.4., +10:u07:stores, +10:u06:stores, +10:u14:stores, +10:u05:stores, +10:u13:stores, +10:u04:stores, +11:u08:assumed, +10:u12:stores, +10:u03:stores, +10:u11:stores, +10:u02:stores, +11:u07:assumed, +10:u10:stores, +10:u01:stores, +11:u06:assumed, +11:u14:assumed, +10:u00:stores, +11:u05:assumed, +11:u13:assumed, +11:u04:assumed, +11:u08:survive, +11:u12:assumed, +10:u14:usage,, +11:u03:assumed, +11:u07:survive, +11:u11:assumed, +10:u13:usage,, +11:u02:assumed, +11:u06:survive, +12:u08:windows., +11:u10:assumed, +10:u12:usage,, +7:u22:usa, +8:u23:usag, +11:u01:assumed, +11:u05:survive, +12:u07:windows., +10:u11:usage,, +11:u00:assumed, +11:u04:survive, +12:u06:windows., +10:u10:usage,, +11:u03:survive, +12:u05:windows., +11:u02:survive, +12:u04:windows., +11:u01:survive, +12:u03:windows., +8:u08:477], +11:u00:survive, +12:u02:windows., +8:u07:477], +12:u01:windows., +8:u06:477], +12:u00:windows., +8:u05:477], +8:u04:477], +8:u03:477], +14:u08:creation),, +8:u02:477], +7:u08:(it, +8:u01:477], +7:u07:(it, +14:u07:creation),, +8:u00:477], +7:u06:(it, +12:u08:(ditto),, +14:u06:creation),, +7:u05:(it, +12:u07:(ditto),, +14:u14:creation),, +14:u05:creation),, +7:u04:(it, +12:u06:(ditto),, +14:u13:creation),, +14:u04:creation),, +7:u03:(it, +12:u05:(ditto),, +14:u12:creation),, +14:u03:creation),, +13:u08:creation), +7:u02:(it, +12:u04:(ditto),, +14:u11:creation),, +14:u02:creation),, +7:u01:(it, +12:u03:(ditto),, +14:u10:creation),, +14:u01:creation),, +13:u07:creation), +7:u00:(it, +12:u02:(ditto),, +14:u00:creation),, +13:u06:creation), +12:u01:(ditto),, +13:u14:creation), +13:u05:creation), +12:u00:(ditto),, +13:u13:creation), +13:u04:creation), +13:u12:creation), +17:u14:retention_set, +13:u03:creation), +7:u08:(on, +13:u11:creation), +17:u13:retention_set, +13:u02:creation), +7:u07:(on, +13:u10:creation), +17:u12:retention_set, +13:u01:creation), +17:u08:time_creation, +7:u06:(on, +17:u11:retention_set, +13:u00:creation), +7:u05:(on, +17:u10:retention_set, +17:u07:time_creation, +7:u04:(on, +17:u06:time_creation, +7:u03:(on, +17:u14:time_creation, +17:u05:time_creation, +7:u02:(on, +17:u13:time_creation, +17:u04:time_creation, +7:u01:(on, +17:u12:time_creation, +17:u03:time_creation, +7:u00:(on, +17:u11:time_creation, +17:u02:time_creation, +17:u10:time_creation, +17:u01:time_creation, +17:u00:time_creation, +8:u08:478], +8:u07:478], +8:u06:478], +8:u05:478], +8:u04:478], +8:u03:478], +16:u08:reconstructs, +8:u02:478], +16:u07:reconstructs, +8:u01:478], +16:u06:reconstructs, +8:u00:478], +16:u05:reconstructs, +12:u08:earlier,, +16:u04:reconstructs, +12:u07:earlier,, +18:u08:NFS4ERR_EXIST., +16:u03:reconstructs, +12:u06:earlier,, +16:u02:reconstructs, +12:u05:earlier,, +18:u07:NFS4ERR_EXIST., +16:u01:reconstructs, +12:u04:earlier,, +18:u06:NFS4ERR_EXIST., +16:u00:reconstructs, +12:u03:earlier,, +18:u14:nfs4err_exist., +18:u05:NFS4ERR_EXIST., +12:u02:earlier,, +18:u13:nfs4err_exist., +18:u04:NFS4ERR_EXIST., +12:u01:earlier,, +18:u12:nfs4err_exist., +18:u03:NFS4ERR_EXIST., +12:u00:earlier,, +18:u11:nfs4err_exist., +18:u02:NFS4ERR_EXIST., +23:u08:cva_attrs.attrmask;, +18:u10:nfs4err_exist., +18:u01:NFS4ERR_EXIST., +23:u07:cva_attrs.attrmask;, +18:u00:NFS4ERR_EXIST., +23:u06:cva_attrs.attrmask;, +23:u05:cva_attrs.attrmask;, +23:u04:cva_attrs.attrmask;, +23:u03:cva_attrs.attrmask;, +23:u02:cva_attrs.attrmask;, +23:u01:cva_attrs.attrmask;, +23:u00:cva_attrs.attrmask;, +14:u08:occurring., +40:u08:~OPEN4_SHARE_ACCESS_WANT_DELEG_MASK), +14:u07:occurring., +9:u08:SHARE, +28:u08:OPEN4_SHARE_ACCESS_READ,, +14:u06:occurring., +9:u07:SHARE, +40:u07:~OPEN4_SHARE_ACCESS_WANT_DELEG_MASK), +28:u08:OPEN4_SHARE_ACCESS_BOTH., +14:u05:occurring., +9:u06:SHARE, +40:u06:~OPEN4_SHARE_ACCESS_WANT_DELEG_MASK), +28:u07:OPEN4_SHARE_ACCESS_READ,, +14:u04:occurring., +9:u05:SHARE, +40:u14:~open4_share_access_want_deleg_mask), +40:u05:~OPEN4_SHARE_ACCESS_WANT_DELEG_MASK), +28:u06:OPEN4_SHARE_ACCESS_READ,, +28:u07:OPEN4_SHARE_ACCESS_BOTH., +26:u08:OPEN4_SHARE_DENY_NONE,, +14:u03:occurring., +9:u04:SHARE, +40:u13:~open4_share_access_want_deleg_mask), +28:u14:open4_share_access_read,, +40:u04:~OPEN4_SHARE_ACCESS_WANT_DELEG_MASK), +28:u05:OPEN4_SHARE_ACCESS_READ,, +28:u06:OPEN4_SHARE_ACCESS_BOTH., +14:u02:occurring., +9:u03:SHARE, +40:u12:~open4_share_access_want_deleg_mask), +28:u13:open4_share_access_read,, +28:u14:open4_share_access_both., +5:u20:~, +6:u21:~O, +7:u22:~OP, +8:u23:~OPE, +40:u03:~OPEN4_SHARE_ACCESS_WANT_DELEG_MASK), +28:u04:OPEN4_SHARE_ACCESS_READ,, +28:u05:OPEN4_SHARE_ACCESS_BOTH., +26:u07:OPEN4_SHARE_DENY_NONE,, +14:u01:occurring., +9:u02:SHARE, +26:u08:OPEN4_SHARE_DENY_BOTH., +40:u11:~open4_share_access_want_deleg_mask), +28:u12:open4_share_access_read,, +28:u13:open4_share_access_both., +40:u02:~OPEN4_SHARE_ACCESS_WANT_DELEG_MASK), +28:u03:OPEN4_SHARE_ACCESS_READ,, +28:u04:OPEN4_SHARE_ACCESS_BOTH., +26:u06:OPEN4_SHARE_DENY_NONE,, +14:u00:occurring., +9:u01:SHARE, +26:u07:OPEN4_SHARE_DENY_BOTH., +40:u10:~open4_share_access_want_deleg_mask), +28:u11:open4_share_access_read,, +28:u12:open4_share_access_both., +26:u14:open4_share_deny_none,, +40:u01:~OPEN4_SHARE_ACCESS_WANT_DELEG_MASK), +28:u02:OPEN4_SHARE_ACCESS_READ,, +28:u03:OPEN4_SHARE_ACCESS_BOTH., +26:u05:OPEN4_SHARE_DENY_NONE,, +9:u00:SHARE, +26:u06:OPEN4_SHARE_DENY_BOTH., +28:u10:open4_share_access_read,, +28:u11:open4_share_access_both., +26:u13:open4_share_deny_none,, +40:u00:~OPEN4_SHARE_ACCESS_WANT_DELEG_MASK), +28:u01:OPEN4_SHARE_ACCESS_READ,, +28:u02:OPEN4_SHARE_ACCESS_BOTH., +26:u04:OPEN4_SHARE_DENY_NONE,, +26:u05:OPEN4_SHARE_DENY_BOTH., +28:u10:open4_share_access_both., +26:u12:open4_share_deny_none,, +28:u00:OPEN4_SHARE_ACCESS_READ,, +28:u01:OPEN4_SHARE_ACCESS_BOTH., +26:u03:OPEN4_SHARE_DENY_NONE,, +26:u04:OPEN4_SHARE_DENY_BOTH., +9:u08:check, +26:u11:open4_share_deny_none,, +28:u00:OPEN4_SHARE_ACCESS_BOTH., +26:u02:OPEN4_SHARE_DENY_NONE,, +26:u03:OPEN4_SHARE_DENY_BOTH., +9:u07:check, +26:u10:open4_share_deny_none,, +26:u01:OPEN4_SHARE_DENY_NONE,, +26:u02:OPEN4_SHARE_DENY_BOTH., +9:u06:check, +12:u08:applying, +26:u00:OPEN4_SHARE_DENY_NONE,, +26:u01:OPEN4_SHARE_DENY_BOTH., +9:u05:check, +12:u07:applying, +26:u00:OPEN4_SHARE_DENY_BOTH., +9:u04:check, +12:u06:applying, +9:u03:check, +12:u05:applying, +9:u02:check, +12:u04:applying, +8:u08:479], +9:u01:check, +12:u03:applying, +8:u07:479], +9:u00:check, +12:u02:applying, +8:u06:479], +12:u01:applying, +8:u05:479], +10:u08:rights, +12:u00:applying, +8:u04:479], +12:u08:controls, +8:u03:479], +10:u07:rights, +8:u02:479], +10:u06:rights, +12:u07:controls, +8:u01:479], +10:u14:rights, +10:u05:rights, +12:u06:controls, +8:u00:479], +10:u13:rights, +12:u14:controls, +10:u04:rights, +12:u05:controls, +10:u12:rights, +12:u13:controls, +7:u22:rig, +8:u23:righ, +10:u03:rights, +12:u04:controls, +10:u11:rights, +12:u12:controls, +10:u02:rights, +12:u03:controls, +9:u08:READs, +10:u10:rights, +12:u11:controls, +10:u01:rights, +12:u02:controls, +12:u10:controls, +10:u00:rights, +12:u01:controls, +9:u07:READs, +12:u00:controls, +9:u06:READs, +9:u14:reads, +9:u05:READs, +9:u13:reads, +9:u04:READs, +9:u12:reads, +12:u14:checking, +9:u03:READs, +9:u11:reads, +12:u13:checking, +9:u02:READs, +9:u10:reads, +12:u12:checking, +9:u01:READs, +12:u11:checking, +9:u00:READs, +12:u10:checking, +19:u14:nfs4err_symlink, +19:u13:nfs4err_symlink, +19:u12:nfs4err_symlink, +19:u11:nfs4err_symlink, +22:u14:nfs4err_wrong_type, +19:u10:nfs4err_symlink, +22:u13:nfs4err_wrong_type, +22:u12:nfs4err_wrong_type, +22:u11:nfs4err_wrong_type, +22:u10:nfs4err_wrong_type, +8:uI2:"."., +8:uI1:"."., +8:uI0:"."., +16:u08:share_access, +16:u07:share_access, +16:u06:share_access, +12:u08:quickly,, +16:u14:share_access, +16:u05:share_access, +16:u13:share_access, +16:u04:share_access, +12:u07:quickly,, +16:u12:share_access, +16:u03:share_access, +12:u06:quickly,, +16:u11:share_access, +12:u14:quickly,, +16:u02:share_access, +12:u05:quickly,, +16:u10:share_access, +12:u13:quickly,, +16:u01:share_access, +12:u04:quickly,, +16:u08:conflicting:, +12:u12:quickly,, +7:u22:qui, +8:u23:quic, +16:u00:share_access, +12:u03:quickly,, +12:u11:quickly,, +12:u02:quickly,, +16:u07:conflicting:, +12:u10:quickly,, +12:u01:quickly,, +16:u06:conflicting:, +16:u14:conflicting:, +12:u00:quickly,, +16:u05:conflicting:, +8:u08:480], +16:u13:conflicting:, +16:u04:conflicting:, +8:u07:480], +16:u12:conflicting:, +16:u03:conflicting:, +8:u06:480], +16:u11:conflicting:, +16:u02:conflicting:, +8:u05:480], +16:u10:conflicting:, +16:u01:conflicting:, +29:u08:OPEN4_SHARE_ACCESS_WRITE., +8:u04:480], +16:u00:conflicting:, +8:u03:480], +29:u07:OPEN4_SHARE_ACCESS_WRITE., +8:u02:480], +29:u06:OPEN4_SHARE_ACCESS_WRITE., +8:u01:480], +29:u14:open4_share_access_write., +29:u05:OPEN4_SHARE_ACCESS_WRITE., +8:u00:480], +29:u13:open4_share_access_write., +29:u04:OPEN4_SHARE_ACCESS_WRITE., +29:u12:open4_share_access_write., +26:u14:open4_share_deny_both., +29:u03:OPEN4_SHARE_ACCESS_WRITE., +29:u11:open4_share_access_write., +26:u13:open4_share_deny_both., +29:u02:OPEN4_SHARE_ACCESS_WRITE., +29:u10:open4_share_access_write., +26:u12:open4_share_deny_both., +29:u01:OPEN4_SHARE_ACCESS_WRITE., +26:u11:open4_share_deny_both., +29:u00:OPEN4_SHARE_ACCESS_WRITE., +26:u10:open4_share_deny_both., +14:u08:18.16.4.1., +11:u08:Warning, +14:u07:18.16.4.1., +11:u07:Warning, +13:u08:resembles, +14:u06:18.16.4.1., +11:u06:Warning, +13:u07:resembles, +14:u14:18.16.4.1., +14:u05:18.16.4.1., +11:u05:Warning, +13:u06:resembles, +14:u13:18.16.4.1., +14:u04:18.16.4.1., +11:u04:Warning, +13:u05:resembles, +14:u12:18.16.4.1., +14:u03:18.16.4.1., +11:u03:Warning, +13:u04:resembles, +14:u11:18.16.4.1., +14:u02:18.16.4.1., +11:u02:Warning, +13:u03:resembles, +14:u10:18.16.4.1., +14:u01:18.16.4.1., +11:u01:Warning, +13:u02:resembles, +14:u00:18.16.4.1., +10:u08:Simply, +11:u00:Warning, +13:u01:resembles, +13:u00:resembles, +10:u07:Simply, +10:u06:Simply, +10:u14:simply, +10:u05:Simply, +10:u13:simply, +10:u04:Simply, +10:u12:simply, +8:u23:Simp, +10:u03:Simply, +10:u11:simply, +10:u02:Simply, +10:u10:simply, +10:u01:Simply, +10:u00:Simply, +8:u08:481], +8:u07:481], +8:u06:481], +12:u08:18.17.1., +8:u05:481], +8:u04:481], +12:u07:18.17.1., +8:u03:481], +12:u06:18.17.1., +8:u02:481], +12:u14:18.17.1., +12:u05:18.17.1., +14:u08:createdir;, +8:u01:481], +12:u13:18.17.1., +12:u04:18.17.1., +8:u00:481], +12:u12:18.17.1., +12:u03:18.17.1., +14:u07:createdir;, +12:u08:18.17.2., +12:u11:18.17.1., +12:u02:18.17.1., +14:u06:createdir;, +12:u10:18.17.1., +14:u14:createdir;, +12:u01:18.17.1., +14:u05:createdir;, +12:u07:18.17.2., +14:u13:createdir;, +12:u00:18.17.1., +14:u04:createdir;, +12:u06:18.17.2., +14:u12:createdir;, +12:u14:18.17.2., +14:u03:createdir;, +12:u05:18.17.2., +14:u11:createdir;, +12:u13:18.17.2., +14:u02:createdir;, +12:u04:18.17.2., +14:u10:createdir;, +12:u12:18.17.2., +14:u01:createdir;, +12:u03:18.17.2., +12:u11:18.17.2., +14:u00:createdir;, +12:u02:18.17.2., +12:u10:18.17.2., +12:u01:18.17.2., +12:u00:18.17.2., +12:u08:18.17.3., +12:u07:18.17.3., +12:u06:18.17.3., +12:u14:18.17.3., +12:u05:18.17.3., +15:u08:NF4ATTRDIR., +12:u13:18.17.3., +12:u04:18.17.3., +12:u12:18.17.3., +12:u03:18.17.3., +15:u07:NF4ATTRDIR., +12:u11:18.17.3., +12:u02:18.17.3., +15:u06:NF4ATTRDIR., +12:u10:18.17.3., +15:u14:nf4attrdir., +12:u01:18.17.3., +15:u05:NF4ATTRDIR., +15:u13:nf4attrdir., +12:u00:18.17.3., +15:u04:NF4ATTRDIR., +15:u12:nf4attrdir., +15:u03:NF4ATTRDIR., +15:u11:nf4attrdir., +15:u02:NF4ATTRDIR., +15:u10:nf4attrdir., +15:u01:NF4ATTRDIR., +15:u00:NF4ATTRDIR., +9:u08:FALSE, +9:u07:FALSE, +9:u06:FALSE, +9:u05:FALSE, +9:u04:FALSE, +9:u03:FALSE, +9:u02:FALSE, +9:u01:FALSE, +9:u00:FALSE, +8:u08:482], +8:u07:482], +8:u06:482], +8:u05:482], +8:u04:482], +12:u08:18.17.4., +8:u03:482], +8:u02:482], +12:u07:18.17.4., +8:u01:482], +12:u06:18.17.4., +8:u00:482], +12:u14:18.17.4., +12:u05:18.17.4., +12:u13:18.17.4., +12:u04:18.17.4., +12:u08:18.18.1., +12:u12:18.17.4., +12:u03:18.17.4., +12:u11:18.17.4., +12:u02:18.17.4., +12:u07:18.18.1., +12:u10:18.17.4., +12:u01:18.17.4., +12:u06:18.18.1., +12:u14:18.18.1., +12:u00:18.17.4., +12:u05:18.18.1., +12:u13:18.18.1., +12:u04:18.18.1., +12:u12:18.18.1., +12:u03:18.18.1., +12:u11:18.18.1., +12:u02:18.18.1., +12:u10:18.18.1., +12:u01:18.18.1., +12:u00:18.18.1., +12:u08:18.18.2., +12:u07:18.18.2., +24:u08:OPEN_DOWNGRADE4resok, +12:u06:18.18.2., +24:u07:OPEN_DOWNGRADE4resok, +12:u14:18.18.2., +12:u05:18.18.2., +24:u06:OPEN_DOWNGRADE4resok, +12:u13:18.18.2., +12:u04:18.18.2., +24:u05:OPEN_DOWNGRADE4resok, +12:u12:18.18.2., +12:u03:18.18.2., +24:u04:OPEN_DOWNGRADE4resok, +12:u11:18.18.2., +12:u02:18.18.2., +24:u03:OPEN_DOWNGRADE4resok, +12:u10:18.18.2., +12:u01:18.18.2., +24:u02:OPEN_DOWNGRADE4resok, +12:u00:18.18.2., +24:u01:OPEN_DOWNGRADE4resok, +24:u00:OPEN_DOWNGRADE4resok, +24:u14:open_downgrade4resok, +24:u13:open_downgrade4resok, +12:u08:18.18.3., +24:u12:open_downgrade4resok, +24:u11:open_downgrade4resok, +12:u07:18.18.3., +24:u10:open_downgrade4resok, +12:u06:18.18.3., +12:u14:18.18.3., +12:u05:18.18.3., +12:u13:18.18.3., +12:u04:18.18.3., +12:u12:18.18.3., +12:u03:18.18.3., +12:u11:18.18.3., +12:u02:18.18.3., +12:u10:18.18.3., +12:u01:18.18.3., +12:u00:18.18.3., +8:u08:483], +8:u07:483], +8:u06:483], +8:u05:483], +8:u04:483], +8:u03:483], +8:u02:483], +8:u01:483], +8:u00:483], +7:uI2:(*), +7:uI1:(*), +7:uI0:(*), +17:u08:reservations., +17:u07:reservations., +18:u14:open_downgrade, +17:u06:reservations., +18:u13:open_downgrade, +17:u14:reservations., +17:u05:reservations., +12:u08:18.18.4., +18:u12:open_downgrade, +17:u13:reservations., +17:u04:reservations., +18:u11:open_downgrade, +17:u12:reservations., +17:u03:reservations., +12:u07:18.18.4., +13:u08:grantable, +18:u10:open_downgrade, +17:u11:reservations., +17:u02:reservations., +12:u06:18.18.4., +17:u10:reservations., +12:u14:18.18.4., +17:u01:reservations., +12:u05:18.18.4., +13:u07:grantable, +12:u13:18.18.4., +17:u00:reservations., +12:u04:18.18.4., +13:u06:grantable, +12:u12:18.18.4., +13:u14:grantable, +12:u03:18.18.4., +13:u05:grantable, +12:u08:18.19.1., +12:u11:18.18.4., +13:u13:grantable, +12:u02:18.18.4., +13:u04:grantable, +12:u10:18.18.4., +13:u12:grantable, +12:u01:18.18.4., +13:u03:grantable, +12:u07:18.19.1., +13:u11:grantable, +12:u00:18.18.4., +13:u02:grantable, +12:u06:18.19.1., +13:u10:grantable, +12:u14:18.19.1., +13:u01:grantable, +12:u05:18.19.1., +12:u13:18.19.1., +13:u00:grantable, +12:u04:18.19.1., +12:u12:18.19.1., +12:u03:18.19.1., +12:u11:18.19.1., +12:u02:18.19.1., +12:u10:18.19.1., +12:u01:18.19.1., +8:u08:484], +12:u00:18.19.1., +8:u07:484], +8:u06:484], +12:u08:18.19.2., +8:u05:484], +8:u04:484], +12:u07:18.19.2., +8:u03:484], +12:u06:18.19.2., +8:u02:484], +12:u14:18.19.2., +12:u05:18.19.2., +8:u01:484], +12:u13:18.19.2., +12:u04:18.19.2., +8:u00:484], +12:u12:18.19.2., +12:u03:18.19.2., +12:u11:18.19.2., +12:u02:18.19.2., +12:u10:18.19.2., +12:u01:18.19.2., +12:u00:18.19.2., +12:u08:18.19.3., +12:u07:18.19.3., +12:u06:18.19.3., +12:u14:18.19.3., +12:u05:18.19.3., +12:u13:18.19.3., +12:u04:18.19.3., +12:u12:18.19.3., +12:u03:18.19.3., +12:u11:18.19.3., +12:u02:18.19.3., +12:u10:18.19.3., +12:u01:18.19.3., +12:u08:18.19.4., +12:u00:18.19.3., +12:u07:18.19.4., +12:u06:18.19.4., +12:u14:18.19.4., +12:u05:18.19.4., +12:u08:18.20.1., +12:u13:18.19.4., +12:u04:18.19.4., +12:u08:ARGUMENT, +12:u12:18.19.4., +12:u03:18.19.4., +12:u07:18.20.1., +12:u08:18.20.2., +12:u07:ARGUMENT, +12:u11:18.19.4., +12:u02:18.19.4., +12:u06:18.20.1., +12:u06:ARGUMENT, +10:u08:RESULT, +12:u10:18.19.4., +12:u14:18.20.1., +12:u01:18.19.4., +12:u05:18.20.1., +12:u07:18.20.2., +12:u05:ARGUMENT, +10:u07:RESULT, +12:u13:18.20.1., +12:u00:18.19.4., +12:u04:18.20.1., +12:u06:18.20.2., +12:u04:ARGUMENT, +10:u06:RESULT, +12:u12:18.20.1., +12:u14:18.20.2., +12:u03:18.20.1., +12:u05:18.20.2., +12:u03:ARGUMENT, +10:u05:RESULT, +12:u11:18.20.1., +12:u13:18.20.2., +12:u02:18.20.1., +12:u04:18.20.2., +12:u02:ARGUMENT, +10:u04:RESULT, +12:u10:18.20.1., +12:u12:18.20.2., +12:u01:18.20.1., +12:u03:18.20.2., +12:u01:ARGUMENT, +10:u03:RESULT, +12:u11:18.20.2., +12:u00:18.20.1., +12:u02:18.20.2., +12:u00:ARGUMENT, +10:u02:RESULT, +12:u10:18.20.2., +12:u01:18.20.2., +10:u01:RESULT, +12:u00:18.20.2., +10:u00:RESULT, +8:u08:485], +8:u07:485], +8:u06:485], +12:u08:18.20.3., +8:u05:485], +8:u04:485], +12:u07:18.20.3., +8:u03:485], +12:u06:18.20.3., +8:u02:485], +12:u14:18.20.3., +12:u05:18.20.3., +8:u01:485], +12:u13:18.20.3., +12:u04:18.20.3., +8:u00:485], +12:u12:18.20.3., +12:u03:18.20.3., +12:u11:18.20.3., +12:u02:18.20.3., +9:u08:[45],, +12:u10:18.20.3., +12:u01:18.20.3., +12:u14:putpubfh, +12:u00:18.20.3., +9:u07:[45],, +12:u13:putpubfh, +9:u06:[45],, +12:u12:putpubfh, +9:u14:[45],, +9:u05:[45],, +12:u11:putpubfh, +9:u13:[45],, +14:uI2:[],[],[].., +9:u04:[45],, +14:u08:operation), +12:u10:putpubfh, +9:u12:[45],, +7:u22:[45, +8:u23:[45], +14:uI1:[],[],[].., +9:u03:[45],, +14:u07:operation), +9:u11:[45],, +14:uI0:[],[],[].., +9:u02:[45],, +14:u06:operation), +9:u10:[45],, +9:u01:[45],, +14:u05:operation), +9:u00:[45],, +14:u04:operation), +12:u08:18.20.4., +14:u03:operation), +14:u02:operation), +12:u07:18.20.4., +14:u01:operation), +12:u06:18.20.4., +14:u00:operation), +12:u14:18.20.4., +12:u05:18.20.4., +12:u13:18.20.4., +12:u04:18.20.4., +12:u12:18.20.4., +12:u03:18.20.4., +12:u11:18.20.4., +12:u02:18.20.4., +12:u10:18.20.4., +12:u01:18.20.4., +12:u00:18.20.4., +12:u08:relative, +12:u07:relative, +12:u06:relative, +12:u14:relative, +12:u05:relative, +8:u08:URL,, +12:u13:relative, +12:u04:relative, +8:u07:URL,, +12:u12:relative, +12:u03:relative, +9:u08:place, +8:u06:URL,, +12:u11:relative, +12:u02:relative, +8:u05:URL,, +12:u10:relative, +12:u01:relative, +9:u07:place, +8:u04:URL,, +12:u00:relative, +9:u06:place, +8:u03:URL,, +11:u08:likely,, +9:u14:place, +9:u05:place, +8:u02:URL,, +11:u07:likely,, +9:u13:place, +9:u04:place, +8:u01:URL,, +11:u06:likely,, +9:u12:place, +9:u03:place, +8:u00:URL,, +11:u05:likely,, +9:u11:place, +9:u02:place, +11:u04:likely,, +9:u10:place, +9:u01:place, +11:u03:likely,, +8:u08:486], +9:u00:place, +11:u02:likely,, +8:u07:486], +11:u01:likely,, +8:u06:486], +11:u00:likely,, +8:u05:486], +8:u04:486], +8:u03:486], +14:u08:overloaded, +8:u02:486], +8:u01:486], +14:u07:overloaded, +8:u00:486], +14:u06:overloaded, +14:u14:overloaded, +14:u05:overloaded, +12:u08:18.21.1., +14:u13:overloaded, +14:u04:overloaded, +14:u12:overloaded, +14:u03:overloaded, +12:u07:18.21.1., +12:u08:18.21.2., +14:u11:overloaded, +14:u02:overloaded, +12:u06:18.21.1., +14:u10:overloaded, +12:u14:18.21.1., +14:u01:overloaded, +12:u05:18.21.1., +12:u07:18.21.2., +12:u13:18.21.1., +14:u00:overloaded, +12:u04:18.21.1., +12:u06:18.21.2., +12:u12:18.21.1., +12:u14:18.21.2., +12:u03:18.21.1., +12:u05:18.21.2., +12:u11:18.21.1., +12:u13:18.21.2., +12:u02:18.21.1., +12:u04:18.21.2., +12:u10:18.21.1., +12:u12:18.21.2., +12:u01:18.21.1., +12:u03:18.21.2., +12:u11:18.21.2., +12:u00:18.21.1., +12:u02:18.21.2., +12:u10:18.21.2., +12:u01:18.21.2., +12:u00:18.21.2., +12:u08:18.21.3., +12:u07:18.21.3., +12:u06:18.21.3., +12:u14:18.21.3., +12:u05:18.21.3., +12:u13:18.21.3., +12:u04:18.21.3., +12:u12:18.21.3., +12:u03:18.21.3., +12:u11:18.21.3., +12:u02:18.21.3., +12:u10:18.21.3., +12:u01:18.21.3., +12:u00:18.21.3., +12:u08:18.21.4., +12:u07:18.21.4., +12:u06:18.21.4., +12:u14:18.21.4., +12:u05:18.21.4., +12:u13:18.21.4., +12:u04:18.21.4., +12:u12:18.21.4., +12:u03:18.21.4., +8:u08:487], +12:u11:18.21.4., +12:u02:18.21.4., +8:u07:487], +12:u10:18.21.4., +12:u01:18.21.4., +8:u06:487], +12:u00:18.21.4., +8:u05:487], +12:u08:18.22.1., +8:u04:487], +8:u03:487], +12:u07:18.22.1., +8:u02:487], +12:u06:18.22.1., +8:u01:487], +12:u14:18.22.1., +12:u05:18.22.1., +8:u00:487], +12:u13:18.22.1., +12:u04:18.22.1., +12:u12:18.22.1., +12:u03:18.22.1., +12:u11:18.22.1., +12:u02:18.22.1., +12:u10:18.22.1., +12:u01:18.22.1., +12:u00:18.22.1., +12:u08:18.22.2., +12:u07:18.22.2., +14:u08:READ4resok, +12:u06:18.22.2., +8:u08:eof;, +14:u07:READ4resok, +12:u14:18.22.2., +12:u05:18.22.2., +14:u06:READ4resok, +12:u13:18.22.2., +12:u04:18.22.2., +8:u07:eof;, +11:u08:data<>;, +14:u05:READ4resok, +12:u12:18.22.2., +12:u03:18.22.2., +8:u06:eof;, +14:u04:READ4resok, +12:u11:18.22.2., +8:u14:eof;, +12:u02:18.22.2., +8:u05:eof;, +11:u07:data<>;, +14:u03:READ4resok, +12:u10:18.22.2., +8:u13:eof;, +12:u01:18.22.2., +8:u04:eof;, +11:u06:data<>;, +14:u02:READ4resok, +8:u12:eof;, +11:u14:data<>;, +6:u21:eo, +7:u22:eof, +8:u23:eof;, +12:u00:18.22.2., +8:u03:eof;, +11:u05:data<>;, +14:u01:READ4resok, +8:u11:eof;, +11:u13:data<>;, +8:u02:eof;, +11:u04:data<>;, +14:u00:READ4resok, +8:u10:eof;, +11:u12:data<>;, +8:u01:eof;, +11:u03:data<>;, +11:u11:data<>;, +8:u00:eof;, +11:u02:data<>;, +11:u10:data<>;, +14:u14:read4resok, +11:u01:data<>;, +14:u13:read4resok, +11:u00:data<>;, +12:u08:18.22.3., +14:u12:read4resok, +14:u11:read4resok, +12:u07:18.22.3., +14:u10:read4resok, +12:u06:18.22.3., +12:u14:18.22.3., +12:u05:18.22.3., +12:u13:18.22.3., +12:u04:18.22.3., +12:u12:18.22.3., +12:u03:18.22.3., +12:u11:18.22.3., +12:u02:18.22.3., +12:u10:18.22.3., +9:u14:count, +12:u01:18.22.3., +9:u13:count, +12:u00:18.22.3., +9:u12:count, +9:u11:count, +13:u08:checking., +9:u10:count, +13:u07:checking., +13:u06:checking., +13:u14:checking., +13:u05:checking., +13:u13:checking., +13:u04:checking., +13:u12:checking., +13:u03:checking., +13:u11:checking., +13:u02:checking., +13:u10:checking., +13:u01:checking., +13:u00:checking., +8:u08:488], +8:u07:488], +8:u06:488], +8:u05:488], +8:u04:488], +8:u03:488], +8:u02:488], +8:u01:488], +8:u00:488], +9:u08:TRUE;, +8:uI2:--(,, +8:uI1:--(,, +9:u07:TRUE;, +8:uI0:--(,, +9:u06:TRUE;, +9:u14:true;, +9:u05:TRUE;, +9:u13:true;, +9:u04:TRUE;, +9:u12:true;, +9:u03:TRUE;, +9:u11:true;, +9:u02:TRUE;, +9:u10:true;, +9:u01:TRUE;, +9:u00:TRUE;, +12:u08:18.22.4., +12:u07:18.22.4., +12:u06:18.22.4., +7:u08:eof, +12:u14:18.22.4., +12:u05:18.22.4., +7:u07:eof, +13:u08:remaining, +12:u13:18.22.4., +12:u04:18.22.4., +7:u06:eof, +13:u07:remaining, +12:u12:18.22.4., +12:u03:18.22.4., +7:u05:eof, +13:u06:remaining, +12:u11:18.22.4., +12:u02:18.22.4., +7:u04:eof, +13:u05:remaining, +12:u10:18.22.4., +12:u01:18.22.4., +7:u03:eof, +13:u04:remaining, +12:u00:18.22.4., +7:u02:eof, +13:u03:remaining, +7:u01:eof, +13:u02:remaining, +7:u00:eof, +13:u01:remaining, +9:u08:read., +13:u00:remaining, +9:u07:read., +12:u08:WRITE_LT, +9:u06:read., +9:u05:read., +12:u07:WRITE_LT, +9:u04:read., +12:u06:WRITE_LT, +9:u03:read., +12:u14:write_lt, +12:u05:WRITE_LT, +9:u02:read., +12:u13:write_lt, +12:u04:WRITE_LT, +9:u01:read., +12:u12:write_lt, +12:u03:WRITE_LT, +9:u00:read., +12:u11:write_lt, +12:u02:WRITE_LT, +9:u08:read,, +12:u10:write_lt, +12:u01:WRITE_LT, +9:u07:read,, +12:u00:WRITE_LT, +9:u06:read,, +9:u05:read,, +8:u08:489], +9:u04:read,, +8:u07:489], +9:u03:read,, +8:u06:489], +9:u02:read,, +8:u05:489], +9:u01:read,, +8:u04:489], +9:u00:read,, +8:u03:489], +13:u08:Normally,, +8:u02:489], +8:u01:489], +13:u07:Normally,, +8:u00:489], +13:u06:Normally,, +13:u05:Normally,, +13:u04:Normally,, +8:u23:Norm, +13:u03:Normally,, +12:u08:18.23.1., +13:u02:Normally,, +13:u01:Normally,, +12:u07:18.23.1., +13:u00:Normally,, +12:u06:18.23.1., +12:u14:18.23.1., +12:u05:18.23.1., +11:u08:cookie;, +12:u13:18.23.1., +12:u04:18.23.1., +12:u12:18.23.1., +12:u03:18.23.1., +11:u07:cookie;, +15:u08:cookieverf;, +12:u11:18.23.1., +15:u14:nfs_cookie4, +12:u02:18.23.1., +11:u06:cookie;, +12:u10:18.23.1., +15:u13:nfs_cookie4, +11:u14:cookie;, +12:u01:18.23.1., +11:u05:cookie;, +15:u07:cookieverf;, +13:u08:dircount;, +15:u12:nfs_cookie4, +11:u13:cookie;, +12:u00:18.23.1., +11:u04:cookie;, +15:u06:cookieverf;, +15:u11:nfs_cookie4, +11:u12:cookie;, +15:u14:cookieverf;, +7:u22:coo, +8:u23:cook, +11:u03:cookie;, +15:u05:cookieverf;, +13:u07:dircount;, +13:u08:maxcount;, +15:u10:nfs_cookie4, +11:u11:cookie;, +15:u13:cookieverf;, +11:u02:cookie;, +15:u04:cookieverf;, +13:u06:dircount;, +11:u10:cookie;, +15:u12:cookieverf;, +13:u14:dircount;, +11:u01:cookie;, +15:u03:cookieverf;, +13:u05:dircount;, +13:u07:maxcount;, +15:u11:cookieverf;, +13:u13:dircount;, +11:u00:cookie;, +15:u02:cookieverf;, +13:u04:dircount;, +13:u06:maxcount;, +15:u10:cookieverf;, +13:u12:dircount;, +13:u14:maxcount;, +8:u23:dirc, +15:u01:cookieverf;, +13:u03:dircount;, +13:u05:maxcount;, +12:u08:18.23.2., +13:u11:dircount;, +13:u13:maxcount;, +15:u00:cookieverf;, +13:u02:dircount;, +13:u04:maxcount;, +13:u10:dircount;, +13:u12:maxcount;, +8:u23:maxc, +13:u01:dircount;, +13:u03:maxcount;, +12:u07:18.23.2., +13:u11:maxcount;, +13:u00:dircount;, +13:u02:maxcount;, +12:u06:18.23.2., +13:u10:maxcount;, +12:u14:18.23.2., +13:u01:maxcount;, +12:u05:18.23.2., +8:u08:490], +12:u13:18.23.2., +13:u00:maxcount;, +12:u04:18.23.2., +8:u07:490], +12:u12:18.23.2., +12:u03:18.23.2., +8:u06:490], +12:u11:18.23.2., +12:u02:18.23.2., +8:u05:490], +12:u10:18.23.2., +12:u01:18.23.2., +8:u04:490], +10:u08:entry4, +12:u00:18.23.2., +8:u03:490], +10:u07:entry4, +8:u02:490], +10:u06:entry4, +9:u08:name;, +8:u01:490], +10:u05:entry4, +8:u00:490], +10:u04:entry4, +9:u07:name;, +10:u08:attrs;, +10:u03:entry4, +9:u06:name;, +10:u02:entry4, +9:u14:name;, +9:u05:name;, +10:u07:attrs;, +15:u08:*nextentry;, +10:u01:entry4, +9:u13:name;, +9:u04:name;, +10:u06:attrs;, +10:u00:entry4, +9:u12:name;, +10:u14:attrs;, +9:u03:name;, +10:u05:attrs;, +15:u07:*nextentry;, +9:u11:name;, +10:u13:attrs;, +10:u14:entry4, +9:u02:name;, +10:u04:attrs;, +15:u06:*nextentry;, +12:u08:dirlist4, +9:u10:name;, +10:u12:attrs;, +10:u13:entry4, +15:u14:*nextentry;, +9:u01:name;, +10:u03:attrs;, +15:u05:*nextentry;, +13:u08:*entries;, +12:u07:dirlist4, +10:u11:attrs;, +10:u12:entry4, +15:u13:*nextentry;, +9:u00:name;, +10:u02:attrs;, +15:u04:*nextentry;, +12:u06:dirlist4, +10:u10:attrs;, +10:u11:entry4, +15:u12:*nextentry;, +6:u21:*n, +7:u22:*ne, +8:u23:*nex, +10:u01:attrs;, +15:u03:*nextentry;, +13:u07:*entries;, +12:u05:dirlist4, +10:u10:entry4, +15:u11:*nextentry;, +10:u00:attrs;, +15:u02:*nextentry;, +13:u06:*entries;, +12:u04:dirlist4, +15:u10:*nextentry;, +13:u14:*entries;, +15:u01:*nextentry;, +13:u05:*entries;, +12:u03:dirlist4, +13:u13:*entries;, +15:u00:*nextentry;, +13:u04:*entries;, +12:u02:dirlist4, +17:u08:READDIR4resok, +13:u12:*entries;, +6:u21:*e, +7:u22:*en, +8:u23:*ent, +13:u03:*entries;, +12:u01:dirlist4, +17:u07:READDIR4resok, +13:u11:*entries;, +13:u02:*entries;, +12:u00:dirlist4, +17:u06:READDIR4resok, +13:u10:*entries;, +13:u01:*entries;, +10:u08:reply;, +17:u05:READDIR4resok, +13:u00:*entries;, +17:u04:READDIR4resok, +10:u07:reply;, +17:u03:READDIR4resok, +12:u14:dirlist4, +10:u06:reply;, +17:u02:READDIR4resok, +12:u13:dirlist4, +10:u14:reply;, +10:u05:reply;, +17:u01:READDIR4resok, +12:u12:dirlist4, +10:u13:reply;, +8:u23:dirl, +10:u04:reply;, +17:u00:READDIR4resok, +12:u11:dirlist4, +10:u12:reply;, +10:u03:reply;, +12:u10:dirlist4, +10:u11:reply;, +10:u02:reply;, +10:u10:reply;, +17:u14:readdir4resok, +10:u01:reply;, +12:u08:18.23.3., +17:u13:readdir4resok, +10:u00:reply;, +17:u12:readdir4resok, +12:u07:18.23.3., +17:u11:readdir4resok, +12:u06:18.23.3., +17:u10:readdir4resok, +12:u14:18.23.3., +12:u05:18.23.3., +12:u13:18.23.3., +12:u04:18.23.3., +12:u12:18.23.3., +12:u03:18.23.3., +12:u11:18.23.3., +12:u02:18.23.3., +12:u10:18.23.3., +12:u01:18.23.3., +12:u00:18.23.3., +10:u14:cookie, +10:u13:cookie, +10:u12:cookie, +10:u11:cookie, +10:u10:cookie, +8:uI2:'()., +8:uI1:'()., +8:uI0:'()., +8:u08:491], +8:u07:491], +8:u06:491], +8:u05:491], +8:u04:491], +12:u08:dircount, +8:u03:491], +12:u07:dircount, +8:u02:491], +12:u06:dircount, +8:u01:491], +12:u05:dircount, +8:u00:491], +12:u04:dircount, +12:u03:dircount, +12:u02:dircount, +12:u08:maxcount, +12:u01:dircount, +12:u07:maxcount, +10:u14:native, +12:u00:dircount, +12:u06:maxcount, +10:u13:native, +12:u05:maxcount, +10:u12:native, +8:u23:nati, +12:u04:maxcount, +10:u08:limit,, +10:u11:native, +12:u03:maxcount, +10:u07:limit,, +10:u10:native, +12:u02:maxcount, +10:u06:limit,, +12:u14:maxcount, +12:u01:maxcount, +10:u05:limit,, +12:u13:maxcount, +12:u00:maxcount, +10:u04:limit,, +12:u12:maxcount, +10:u03:limit,, +12:u11:maxcount, +10:u02:limit,, +12:u10:maxcount, +10:u01:limit,, +10:u00:limit,, +9:u08:"eof", +9:u07:"eof", +10:u08:cursor, +9:u06:"eof", +9:u05:"eof", +10:u07:cursor, +9:u04:"eof", +10:u06:cursor, +9:u03:"eof", +10:u14:cursor, +10:u05:cursor, +9:u02:"eof", +10:u13:cursor, +10:u04:cursor, +9:u01:"eof", +10:u12:cursor, +8:u23:curs, +10:u03:cursor, +9:u00:"eof", +10:u11:cursor, +10:u02:cursor, +10:u10:cursor, +10:u01:cursor, +10:u00:cursor, +14:u14:obviously,, +14:u13:obviously,, +14:u12:obviously,, +7:u22:Obv, +8:u23:Obvi, +14:u11:obviously,, +14:u10:obviously,, +8:u08:492], +8:u07:492], +8:u06:492], +8:u05:492], +8:u04:492], +8:u03:492], +8:u02:492], +8:u01:492], +8:u00:492], +12:u08:18.23.4., +12:u07:18.23.4., +12:u08:greatly., +12:u06:18.23.4., +12:u14:18.23.4., +12:u05:18.23.4., +12:u07:greatly., +12:u13:18.23.4., +12:u04:18.23.4., +12:u06:greatly., +12:u12:18.23.4., +12:u14:greatly., +12:u03:18.23.4., +12:u05:greatly., +12:u11:18.23.4., +12:u13:greatly., +12:u02:18.23.4., +12:u04:greatly., +12:u10:18.23.4., +12:u12:greatly., +12:u01:18.23.4., +12:u03:greatly., +12:u11:greatly., +12:u00:18.23.4., +12:u02:greatly., +12:u10:greatly., +12:u01:greatly., +12:u00:greatly., +14:u08:cookieverf, +14:u07:cookieverf, +21:u08:cookie/cookieverf, +14:u06:cookieverf, +14:u05:cookieverf, +9:u08:pair., +21:u07:cookie/cookieverf, +14:u04:cookieverf, +9:u07:pair., +21:u06:cookie/cookieverf, +14:u03:cookieverf, +9:u06:pair., +21:u14:cookie/cookieverf, +21:u05:cookie/cookieverf, +14:u02:cookieverf, +9:u05:pair., +21:u13:cookie/cookieverf, +21:u04:cookie/cookieverf, +14:u01:cookieverf, +9:u04:pair., +21:u12:cookie/cookieverf, +21:u03:cookie/cookieverf, +14:u00:cookieverf, +9:u03:pair., +21:u11:cookie/cookieverf, +21:u02:cookie/cookieverf, +9:u02:pair., +21:u10:cookie/cookieverf, +21:u01:cookie/cookieverf, +9:u01:pair., +21:u00:cookie/cookieverf, +9:u00:pair., +11:uI2:".""..", +11:uI1:".""..", +9:u14:them., +11:uI0:".""..", +8:u08:493], +9:u13:them., +8:u07:493], +9:u12:them., +8:u06:493], +9:u11:them., +8:u05:493], +9:u10:them., +12:u08:18.24.1., +8:u04:493], +8:u03:493], +12:u07:18.24.1., +8:u02:493], +12:u06:18.24.1., +12:u08:18.24.2., +8:u01:493], +12:u14:18.24.1., +12:u05:18.24.1., +8:u00:493], +12:u13:18.24.1., +12:u04:18.24.1., +12:u07:18.24.2., +18:u08:READLINK4resok, +12:u12:18.24.1., +12:u03:18.24.1., +12:u06:18.24.2., +9:u08:link;, +18:u07:READLINK4resok, +12:u11:18.24.1., +12:u14:18.24.2., +12:u02:18.24.1., +12:u05:18.24.2., +18:u06:READLINK4resok, +12:u10:18.24.1., +12:u13:18.24.2., +12:u01:18.24.1., +12:u04:18.24.2., +9:u07:link;, +18:u05:READLINK4resok, +12:u12:18.24.2., +12:u00:18.24.1., +12:u03:18.24.2., +9:u06:link;, +18:u04:READLINK4resok, +12:u11:18.24.2., +9:u14:link;, +12:u02:18.24.2., +9:u05:link;, +18:u03:READLINK4resok, +12:u10:18.24.2., +9:u13:link;, +12:u01:18.24.2., +9:u04:link;, +18:u02:READLINK4resok, +9:u12:link;, +12:u00:18.24.2., +9:u03:link;, +18:u01:READLINK4resok, +9:u11:link;, +9:u02:link;, +18:u00:READLINK4resok, +9:u10:link;, +18:u14:readlink4resok, +9:u01:link;, +12:u08:18.24.3., +18:u13:readlink4resok, +9:u00:link;, +18:u12:readlink4resok, +12:u07:18.24.3., +18:u11:readlink4resok, +12:u06:18.24.3., +18:u10:readlink4resok, +12:u14:18.24.3., +12:u05:18.24.3., +12:u13:18.24.3., +12:u14:readlink, +12:u04:18.24.3., +12:u12:18.24.3., +12:u13:readlink, +12:u03:18.24.3., +12:u11:18.24.3., +12:u12:readlink, +12:u02:18.24.3., +12:u10:18.24.3., +12:u11:readlink, +12:u01:18.24.3., +12:u08:18.24.4., +12:u10:readlink, +15:u14:interpreted, +12:u00:18.24.3., +15:u13:interpreted, +12:u14:created,, +12:u07:18.24.4., +12:u08:symbolic, +15:u12:interpreted, +12:u13:created,, +12:u06:18.24.4., +12:u07:symbolic, +15:u11:interpreted, +12:u12:created,, +12:u14:18.24.4., +12:u05:18.24.4., +12:u06:symbolic, +15:u10:interpreted, +12:u11:created,, +12:u13:18.24.4., +12:u04:18.24.4., +12:u05:symbolic, +12:u10:created,, +12:u12:18.24.4., +12:u03:18.24.4., +19:u08:interpretation., +12:u04:symbolic, +12:u11:18.24.4., +12:u02:18.24.4., +12:u03:symbolic, +12:u10:18.24.4., +12:u01:18.24.4., +19:u07:interpretation., +12:u02:symbolic, +12:u00:18.24.4., +19:u06:interpretation., +12:u01:symbolic, +19:u14:interpretation., +19:u05:interpretation., +12:u00:symbolic, +19:u13:interpretation., +12:u14:symbolic, +19:u04:interpretation., +19:u12:interpretation., +12:u13:symbolic, +19:u03:interpretation., +19:u11:interpretation., +12:u12:symbolic, +8:u23:symb, +19:u02:interpretation., +19:u10:interpretation., +12:u11:symbolic, +19:u01:interpretation., +12:u10:symbolic, +19:u00:interpretation., +8:u08:494], +8:u07:494], +8:u06:494], +8:u05:494], +12:u08:18.25.1., +8:u04:494], +8:u03:494], +12:u07:18.25.1., +8:u02:494], +12:u06:18.25.1., +8:u01:494], +12:u14:18.25.1., +12:u05:18.25.1., +11:u08:target;, +8:u00:494], +12:u13:18.25.1., +12:u04:18.25.1., +12:u12:18.25.1., +12:u03:18.25.1., +11:u07:target;, +12:u08:18.25.2., +12:u11:18.25.1., +12:u02:18.25.1., +11:u06:target;, +12:u10:18.25.1., +11:u14:target;, +12:u01:18.25.1., +11:u05:target;, +12:u07:18.25.2., +16:u08:REMOVE4resok, +11:u13:target;, +12:u00:18.25.1., +11:u04:target;, +12:u06:18.25.2., +16:u07:REMOVE4resok, +11:u12:target;, +12:u14:18.25.2., +11:u03:target;, +12:u05:18.25.2., +16:u06:REMOVE4resok, +11:u11:target;, +12:u13:18.25.2., +11:u02:target;, +12:u04:18.25.2., +16:u05:REMOVE4resok, +11:u10:target;, +12:u12:18.25.2., +11:u01:target;, +12:u03:18.25.2., +16:u04:REMOVE4resok, +12:u11:18.25.2., +11:u00:target;, +12:u02:18.25.2., +16:u03:REMOVE4resok, +12:u10:18.25.2., +12:u01:18.25.2., +16:u02:REMOVE4resok, +12:u00:18.25.2., +16:u01:REMOVE4resok, +16:u00:REMOVE4resok, +16:u14:remove4resok, +16:u13:remove4resok, +12:u08:18.25.3., +16:u12:remove4resok, +16:u11:remove4resok, +12:u07:18.25.3., +12:u08:filename, +16:u10:remove4resok, +12:u06:18.25.3., +12:u14:18.25.3., +12:u05:18.25.3., +12:u07:filename, +12:u13:18.25.3., +12:u04:18.25.3., +12:u06:filename, +12:u12:18.25.3., +12:u14:filename, +12:u03:18.25.3., +12:u05:filename, +12:u11:18.25.3., +12:u13:filename, +12:u02:18.25.3., +12:u04:filename, +12:u10:18.25.3., +12:u12:filename, +12:u01:18.25.3., +12:u03:filename, +12:u11:filename, +12:u00:18.25.3., +12:u02:filename, +12:u10:filename, +12:u01:filename, +12:u08:removal., +12:u00:filename, +12:u07:removal., +12:u06:removal., +12:u14:removal., +12:u05:removal., +12:u13:removal., +12:u04:removal., +12:u12:removal., +12:u03:removal., +12:u11:removal., +8:uI2:-(-;, +12:u02:removal., +12:u10:removal., +8:uI1:-(-;, +12:u01:removal., +8:u08:495], +8:uI0:-(-;, +12:u00:removal., +8:u07:495], +8:u06:495], +12:u08:18.25.4., +8:u05:495], +8:u04:495], +12:u07:18.25.4., +8:u03:495], +12:u06:18.25.4., +8:u02:495], +12:u14:18.25.4., +12:u05:18.25.4., +8:u01:495], +12:u13:18.25.4., +12:u04:18.25.4., +8:u00:495], +12:u12:18.25.4., +12:u03:18.25.4., +12:u11:18.25.4., +12:u02:18.25.4., +8:u08:knew, +12:u10:18.25.4., +12:u01:18.25.4., +8:u07:knew, +14:uI2:(..,()[]),, +12:u00:18.25.4., +8:u06:knew, +14:uI1:(..,()[]),, +12:uI2:(..,()-), +8:u05:knew, +11:u08:rmdir(), +14:uI0:(..,()[]),, +12:uI1:(..,()-), +8:u04:knew, +11:u07:rmdir(), +12:uI0:(..,()-), +8:u03:knew, +11:u06:rmdir(), +8:uI2:.'(), +8:u02:knew, +11:u05:rmdir(), +8:uI1:.'(), +8:u01:knew, +11:u04:rmdir(), +8:uI0:.'(), +8:u00:knew, +11:u03:rmdir(), +11:u02:rmdir(), +11:u01:rmdir(), +9:u08:(disk, +11:u00:rmdir(), +12:u14:numlinks, +10:u08:space,, +12:u13:numlinks, +6:u14:1,, +9:u07:(disk, +10:u07:space,, +12:u08:becoming, +12:u12:numlinks, +6:u13:1,, +9:u06:(disk, +10:u06:space,, +12:u07:becoming, +12:u11:numlinks, +6:u12:1,, +9:u14:(disk, +6:u21:1,, +6:u22:1,, +6:u23:1,, +9:u05:(disk, +15:u08:accessible., +10:u05:space,, +12:u06:becoming, +12:u10:numlinks, +6:u11:1,, +9:u13:(disk, +9:u04:(disk, +10:u04:space,, +12:u05:becoming, +6:u10:1,, +9:u12:(disk, +7:u22:(di, +8:u23:(dis, +9:u03:(disk, +15:u07:accessible., +10:u03:space,, +12:u04:becoming, +9:u11:(disk, +9:u02:(disk, +15:u06:accessible., +10:u02:space,, +12:u03:becoming, +9:u10:(disk, +15:u14:accessible., +9:u01:(disk, +15:u05:accessible., +10:u01:space,, +12:u02:becoming, +15:u13:accessible., +9:u00:(disk, +15:u04:accessible., +10:u00:space,, +12:u01:becoming, +15:u12:accessible., +15:u03:accessible., +12:u08:arrives:, +12:u00:becoming, +15:u11:accessible., +15:u02:accessible., +15:u10:accessible., +15:u01:accessible., +12:u07:arrives:, +15:u00:accessible., +12:u06:arrives:, +12:u14:arrives:, +12:u05:arrives:, +12:u13:arrives:, +12:u04:arrives:, +12:u12:arrives:, +12:u03:arrives:, +12:u11:arrives:, +12:u02:arrives:, +12:u10:arrives:, +12:u01:arrives:, +26:u14:open4_share_deny_both,, +12:u00:arrives:, +26:u13:open4_share_deny_both,, +26:u12:open4_share_deny_both,, +26:u11:open4_share_deny_both,, +26:u10:open4_share_deny_both,, +8:u08:496], +8:u07:496], +8:u06:496], +8:u05:496], +8:u04:496], +8:u03:496], +8:u02:496], +11:u14:removal, +8:u01:496], +11:u13:removal, +8:u00:496], +11:u12:removal, +11:u11:removal, +11:u10:removal, +24:u08:NOTIFY4_REMOVE_ENTRY, +24:u07:NOTIFY4_REMOVE_ENTRY, +24:u06:NOTIFY4_REMOVE_ENTRY, +24:u14:notify4_remove_entry, +24:u05:NOTIFY4_REMOVE_ENTRY, +24:u08:NOTIFY4_RENAME_ENTRY, +24:u13:notify4_remove_entry, +24:u04:NOTIFY4_REMOVE_ENTRY, +24:u12:notify4_remove_entry, +8:u23:NOTI, +24:u03:NOTIFY4_REMOVE_ENTRY, +24:u07:NOTIFY4_RENAME_ENTRY, +24:u11:notify4_remove_entry, +24:u02:NOTIFY4_REMOVE_ENTRY, +24:u06:NOTIFY4_RENAME_ENTRY, +24:u10:notify4_remove_entry, +24:u14:notify4_rename_entry, +24:u01:NOTIFY4_REMOVE_ENTRY, +24:u05:NOTIFY4_RENAME_ENTRY, +8:u08:497], +24:u13:notify4_rename_entry, +24:u00:NOTIFY4_REMOVE_ENTRY, +24:u04:NOTIFY4_RENAME_ENTRY, +8:u07:497], +24:u12:notify4_rename_entry, +24:u03:NOTIFY4_RENAME_ENTRY, +8:u06:497], +24:u11:notify4_rename_entry, +24:u02:NOTIFY4_RENAME_ENTRY, +8:u05:497], +24:u10:notify4_rename_entry, +24:u01:NOTIFY4_RENAME_ENTRY, +12:u08:18.26.1., +8:u04:497], +24:u00:NOTIFY4_RENAME_ENTRY, +8:u03:497], +12:u07:18.26.1., +8:u02:497], +12:u06:18.26.1., +8:u01:497], +12:u14:18.26.1., +12:u05:18.26.1., +12:u08:oldname;, +8:u00:497], +12:u13:18.26.1., +12:u04:18.26.1., +12:u12:18.26.1., +12:u03:18.26.1., +12:u07:oldname;, +12:u11:18.26.1., +12:u02:18.26.1., +12:u06:oldname;, +12:u10:18.26.1., +12:u14:oldname;, +12:u01:18.26.1., +12:u05:oldname;, +12:u13:oldname;, +12:u00:18.26.1., +12:u04:oldname;, +12:u08:18.26.2., +12:u12:oldname;, +8:u23:oldn, +12:u03:oldname;, +12:u11:oldname;, +12:u02:oldname;, +12:u07:18.26.2., +16:u08:RENAME4resok, +12:u10:oldname;, +12:u01:oldname;, +12:u06:18.26.2., +17:u08:source_cinfo;, +16:u07:RENAME4resok, +12:u14:18.26.2., +12:u00:oldname;, +12:u05:18.26.2., +16:u06:RENAME4resok, +12:u13:18.26.2., +12:u04:18.26.2., +17:u07:source_cinfo;, +17:u08:target_cinfo;, +16:u05:RENAME4resok, +12:u12:18.26.2., +12:u03:18.26.2., +17:u06:source_cinfo;, +16:u04:RENAME4resok, +12:u11:18.26.2., +17:u14:source_cinfo;, +12:u02:18.26.2., +17:u05:source_cinfo;, +17:u07:target_cinfo;, +16:u03:RENAME4resok, +12:u10:18.26.2., +17:u13:source_cinfo;, +12:u01:18.26.2., +17:u04:source_cinfo;, +17:u06:target_cinfo;, +16:u02:RENAME4resok, +17:u12:source_cinfo;, +17:u14:target_cinfo;, +12:u00:18.26.2., +17:u03:source_cinfo;, +17:u05:target_cinfo;, +16:u01:RENAME4resok, +17:u11:source_cinfo;, +17:u13:target_cinfo;, +17:u02:source_cinfo;, +17:u04:target_cinfo;, +16:u00:RENAME4resok, +17:u10:source_cinfo;, +17:u12:target_cinfo;, +17:u01:source_cinfo;, +17:u03:target_cinfo;, +17:u11:target_cinfo;, +17:u00:source_cinfo;, +17:u02:target_cinfo;, +17:u10:target_cinfo;, +16:u14:rename4resok, +17:u01:target_cinfo;, +16:u13:rename4resok, +17:u00:target_cinfo;, +12:u08:18.26.3., +16:u12:rename4resok, +16:u11:rename4resok, +12:u07:18.26.3., +16:u10:rename4resok, +12:u06:18.26.3., +12:u14:18.26.3., +12:u05:18.26.3., +12:u13:18.26.3., +12:u04:18.26.3., +12:u12:18.26.3., +12:u03:18.26.3., +12:u11:18.26.3., +12:u02:18.26.3., +12:u10:18.26.3., +12:u01:18.26.3., +12:u00:18.26.3., +12:u08:newname,, +12:u07:newname,, +12:u06:newname,, +10:u08:rename, +10:u08:empty., +12:u14:newname,, +12:u05:newname,, +10:u07:empty., +12:u13:newname,, +12:u04:newname,, +10:u07:rename, +10:u06:empty., +12:u12:newname,, +12:u03:newname,, +10:u06:rename, +10:u05:empty., +12:u11:newname,, +12:u02:newname,, +10:u05:rename, +10:u04:empty., +12:u10:newname,, +12:u01:newname,, +10:u04:rename, +10:u03:empty., +8:u23:rena, +12:u00:newname,, +10:u03:rename, +10:u02:empty., +10:u02:rename, +10:u01:empty., +10:u01:rename, +10:u00:empty., +10:u00:rename, +8:u08:498], +8:u07:498], +8:u06:498], +8:u05:498], +8:u04:498], +8:u03:498], +8:u02:498], +8:u01:498], +8:u00:498], +11:u08:oldname, +11:u07:oldname, +11:u06:oldname, +13:u08:18.26.4),, +11:u05:oldname, +13:u07:18.26.4),, +11:u04:oldname, +13:u06:18.26.4),, +11:u03:oldname, +13:u05:18.26.4),, +9:uI2:..),., +11:u02:oldname, +13:u04:18.26.4),, +9:uI1:..),., +11:u01:oldname, +13:u03:18.26.4),, +9:uI0:..),., +11:u00:oldname, +13:u02:18.26.4),, +13:u01:18.26.4),, +13:u00:18.26.4),, +12:u08:18.26.4., +12:u07:18.26.4., +12:u06:18.26.4., +12:u14:18.26.4., +12:u05:18.26.4., +12:u13:18.26.4., +12:u04:18.26.4., +12:u12:18.26.4., +12:u03:18.26.4., +12:u11:18.26.4., +12:u02:18.26.4., +12:u10:18.26.4., +12:u01:18.26.4., +12:u00:18.26.4., +11:u08:rename,, +11:u07:rename,, +11:u06:rename,, +11:u05:rename,, +11:u04:rename,, +11:u03:rename,, +11:u02:rename,, +11:u01:rename,, +11:u00:rename,, +8:u08:499], +8:u07:499], +8:u06:499], +8:u05:499], +8:u04:499], +8:u03:499], +8:u02:499], +8:u01:499], +8:u00:499], +9:u08:then,, +9:u07:then,, +9:u06:then,, +9:u14:then,, +9:u05:then,, +9:u13:then,, +9:u04:then,, +9:u12:then,, +9:u03:then,, +9:u11:then,, +9:u02:then,, +9:u10:then,, +9:u01:then,, +9:u00:then,, +11:u08:states,, +11:u07:states,, +11:u06:states,, +11:u14:states,, +9:uI2:,(,.., +11:u05:states,, +11:u13:states,, +9:uI1:,(,.., +11:u04:states,, +11:u12:states,, +9:uI0:,(,.., +11:u03:states,, +11:u11:states,, +11:u02:states,, +11:u10:states,, +11:u01:states,, +11:u00:states,, +14:u08:generated., +14:u07:generated., +14:u06:generated., +14:u14:generated., +14:u05:generated., +14:u13:generated., +14:u04:generated., +14:u12:generated., +14:u03:generated., +14:u11:generated., +14:u02:generated., +14:u10:generated., +14:u01:generated., +14:u00:generated., +13:u14:recalled,, +13:u13:recalled,, +8:u08:500], +13:u12:recalled,, +8:u07:500], +13:u11:recalled,, +8:u06:500], +13:u10:recalled,, +10:u08:files,, +8:u05:500], +8:u04:500], +10:u07:files,, +12:u08:renamed., +8:u03:500], +10:u06:files,, +8:u02:500], +10:u14:files,, +10:u05:files,, +12:u07:renamed., +17:u08:delegation(s), +8:u01:500], +10:u13:files,, +10:u04:files,, +12:u06:renamed., +8:u00:500], +10:u12:files,, +12:u14:renamed., +10:u03:files,, +12:u05:renamed., +17:u07:delegation(s), +10:u11:files,, +12:u13:renamed., +10:u02:files,, +12:u04:renamed., +17:u06:delegation(s), +11:u08:"source, +10:u10:files,, +12:u12:renamed., +17:u14:delegation(s), +10:u01:files,, +12:u03:renamed., +17:u05:delegation(s), +12:u11:renamed., +17:u13:delegation(s), +10:u00:files,, +12:u02:renamed., +17:u04:delegation(s), +11:u07:"source, +12:u10:renamed., +17:u12:delegation(s), +12:u01:renamed., +17:u03:delegation(s), +11:u06:"source, +17:u11:delegation(s), +11:u14:"source, +12:u00:renamed., +17:u02:delegation(s), +11:u05:"source, +17:u10:delegation(s), +11:u13:"source, +17:u01:delegation(s), +11:u04:"source, +11:u12:"source, +7:u22:"so, +8:u23:"sou, +17:u00:delegation(s), +11:u03:"source, +16:u08:implementors, +11:u11:"source, +11:u02:"source, +11:u10:"source, +11:u01:"source, +16:u07:implementors, +12:u08:expiring, +11:u00:"source, +16:u06:implementors, +12:u07:expiring, +16:u05:implementors, +12:u06:expiring, +16:u04:implementors, +9:u08:alias, +12:u05:expiring, +16:u03:implementors, +12:u04:expiring, +11:u14:oldname, +16:u02:implementors, +9:u07:alias, +12:u03:expiring, +11:u13:oldname, +16:u01:implementors, +9:u06:alias, +12:u02:expiring, +11:u12:oldname, +9:u14:alias, +16:u00:implementors, +9:u05:alias, +12:u01:expiring, +11:u11:oldname, +9:u13:alias, +9:u04:alias, +12:u08:18.27.1., +12:u00:expiring, +11:u10:oldname, +9:u12:alias, +8:u23:alia, +9:u03:alias, +9:u11:alias, +9:u02:alias, +12:u07:18.27.1., +9:u10:alias, +9:u01:alias, +12:u06:18.27.1., +12:u08:18.27.2., +12:u14:18.27.1., +9:u00:alias, +12:u05:18.27.1., +12:u13:18.27.1., +12:u04:18.27.1., +12:u07:18.27.2., +12:u12:18.27.1., +12:u03:18.27.1., +12:u06:18.27.2., +12:u11:18.27.1., +12:u14:18.27.2., +12:u02:18.27.1., +12:u05:18.27.2., +12:u10:18.27.1., +12:u13:18.27.2., +12:u01:18.27.1., +12:u04:18.27.2., +12:u12:18.27.2., +12:u00:18.27.1., +12:u03:18.27.2., +12:u11:18.27.2., +12:u02:18.27.2., +12:u10:18.27.2., +12:u01:18.27.2., +12:u00:18.27.2., +8:u08:501], +8:u07:501], +8:u06:501], +12:u08:18.27.3., +8:u05:501], +8:u04:501], +12:u07:18.27.3., +8:u03:501], +12:u06:18.27.3., +8:u02:501], +12:u14:18.27.3., +12:u05:18.27.3., +25:u08:NFS4ERR_NOFILEHANDLE., +8:u01:501], +12:u13:18.27.3., +12:u04:18.27.3., +8:u00:501], +12:u12:18.27.3., +12:u03:18.27.3., +25:u07:NFS4ERR_NOFILEHANDLE., +12:u11:18.27.3., +12:u02:18.27.3., +25:u06:NFS4ERR_NOFILEHANDLE., +12:u08:18.27.4., +12:u10:18.27.3., +25:u14:nfs4err_nofilehandle., +12:u01:18.27.3., +25:u05:NFS4ERR_NOFILEHANDLE., +25:u13:nfs4err_nofilehandle., +12:u00:18.27.3., +25:u04:NFS4ERR_NOFILEHANDLE., +12:u07:18.27.4., +25:u12:nfs4err_nofilehandle., +25:u03:NFS4ERR_NOFILEHANDLE., +12:u06:18.27.4., +25:u11:nfs4err_nofilehandle., +12:u14:18.27.4., +25:u02:NFS4ERR_NOFILEHANDLE., +12:u05:18.27.4., +25:u10:nfs4err_nofilehandle., +12:u13:18.27.4., +25:u01:NFS4ERR_NOFILEHANDLE., +12:u04:18.27.4., +12:u12:18.27.4., +25:u00:NFS4ERR_NOFILEHANDLE., +12:u03:18.27.4., +12:u11:18.27.4., +12:u02:18.27.4., +12:u10:18.27.4., +12:u01:18.27.4., +12:u00:18.27.4., +11:u08:(pre-op, +7:u08:dir, +11:u07:(pre-op, +7:u07:dir, +11:u08:optbits, +11:u06:(pre-op, +7:u06:dir, +11:u07:optbits, +11:u14:(pre-op, +11:u05:(pre-op, +7:u05:dir, +11:u06:optbits, +11:u13:(pre-op, +11:u04:(pre-op, +7:u04:dir, +11:u05:optbits, +11:u12:(pre-op, +11:u03:(pre-op, +12:u08:(post-op, +7:u03:dir, +11:u04:optbits, +11:u11:(pre-op, +11:u02:(pre-op, +7:u02:dir, +11:u03:optbits, +11:u10:(pre-op, +11:u01:(pre-op, +12:u07:(post-op, +12:u08:18.28.1., +7:u01:dir, +11:u02:optbits, +11:u00:(pre-op, +12:u06:(post-op, +7:u00:dir, +11:u01:optbits, +12:u14:(post-op, +12:u05:(post-op, +12:u07:18.28.1., +11:u00:optbits, +12:u13:(post-op, +12:u04:(post-op, +12:u06:18.28.1., +12:u08:18.28.2., +12:u12:(post-op, +12:u14:18.28.1., +7:u22:(po, +8:u23:(pos, +12:u03:(post-op, +12:u05:18.28.1., +12:u11:(post-op, +12:u13:18.28.1., +12:u02:(post-op, +12:u04:18.28.1., +12:u07:18.28.2., +12:u10:(post-op, +12:u12:18.28.1., +12:u01:(post-op, +12:u03:18.28.1., +12:u06:18.28.2., +12:u11:18.28.1., +12:u14:18.28.2., +12:u00:(post-op, +12:u02:18.28.1., +12:u05:18.28.2., +12:u10:18.28.1., +12:u13:18.28.2., +12:u01:18.28.1., +12:u04:18.28.2., +12:u12:18.28.2., +12:u00:18.28.1., +12:u03:18.28.2., +12:u11:18.28.2., +12:u02:18.28.2., +12:u10:18.28.2., +12:u01:18.28.2., +12:u00:18.28.2., +8:u08:502], +8:u07:502], +8:u06:502], +12:u08:18.28.3., +8:u05:502], +8:u04:502], +12:u07:18.28.3., +8:u03:502], +12:u06:18.28.3., +8:u02:502], +12:u14:18.28.3., +12:u05:18.28.3., +8:u01:502], +12:u13:18.28.3., +12:u04:18.28.3., +8:u00:502], +13:u08:operator., +12:u12:18.28.3., +12:u03:18.28.3., +13:u07:operator., +12:u11:18.28.3., +12:u02:18.28.3., +13:u06:operator., +12:u10:18.28.3., +12:u01:18.28.3., +12:u08:18.28.4., +13:u05:operator., +12:u00:18.28.3., +13:u04:operator., +12:u07:18.28.4., +12:u08:18.29.1., +13:u03:operator., +12:u06:18.28.4., +13:u02:operator., +12:u14:18.28.4., +12:u05:18.28.4., +12:u07:18.29.1., +13:u01:operator., +12:u13:18.28.4., +12:u04:18.28.4., +12:u06:18.29.1., +13:u00:operator., +12:u12:18.28.4., +12:u14:18.29.1., +12:u03:18.28.4., +12:u05:18.29.1., +12:u11:18.28.4., +12:u13:18.29.1., +12:u02:18.28.4., +12:u04:18.29.1., +12:u10:18.28.4., +12:u12:18.29.1., +12:u01:18.28.4., +12:u03:18.29.1., +12:u08:18.29.2., +12:u11:18.29.1., +12:u00:18.28.4., +12:u02:18.29.1., +12:u10:18.29.1., +12:u01:18.29.1., +12:u07:18.29.2., +12:u00:18.29.1., +12:u06:18.29.2., +12:u14:18.29.2., +12:u05:18.29.2., +8:u08:503], +12:u13:18.29.2., +12:u04:18.29.2., +8:u07:503], +12:u12:18.29.2., +12:u03:18.29.2., +8:u06:503], +12:u11:18.29.2., +12:u02:18.29.2., +8:u05:503], +12:u10:18.29.2., +12:u01:18.29.2., +8:u04:503], +12:u00:18.29.2., +8:u03:503], +8:u02:503], +20:u08:RPC_GSS_SVC_NONE, +8:u01:503], +17:u08:rpc_gss_svc_t, +8:u00:503], +17:u07:rpc_gss_svc_t, +20:u07:RPC_GSS_SVC_NONE, +25:u08:RPC_GSS_SVC_INTEGRITY, +17:u06:rpc_gss_svc_t, +20:u06:RPC_GSS_SVC_NONE, +17:u05:rpc_gss_svc_t, +20:u14:rpc_gss_svc_none, +20:u05:RPC_GSS_SVC_NONE, +25:u07:RPC_GSS_SVC_INTEGRITY, +23:u08:RPC_GSS_SVC_PRIVACY, +17:u04:rpc_gss_svc_t, +20:u13:rpc_gss_svc_none, +20:u04:RPC_GSS_SVC_NONE, +25:u06:RPC_GSS_SVC_INTEGRITY, +17:u03:rpc_gss_svc_t, +20:u12:rpc_gss_svc_none, +25:u14:rpc_gss_svc_integrity, +8:u23:RPC_, +20:u03:RPC_GSS_SVC_NONE, +25:u05:RPC_GSS_SVC_INTEGRITY, +23:u07:RPC_GSS_SVC_PRIVACY, +17:u02:rpc_gss_svc_t, +20:u11:rpc_gss_svc_none, +25:u13:rpc_gss_svc_integrity, +20:u02:RPC_GSS_SVC_NONE, +25:u04:RPC_GSS_SVC_INTEGRITY, +23:u06:RPC_GSS_SVC_PRIVACY, +17:u01:rpc_gss_svc_t, +20:u10:rpc_gss_svc_none, +25:u12:rpc_gss_svc_integrity, +23:u14:rpc_gss_svc_privacy, +20:u01:RPC_GSS_SVC_NONE, +25:u03:RPC_GSS_SVC_INTEGRITY, +23:u05:RPC_GSS_SVC_PRIVACY, +17:u00:rpc_gss_svc_t, +19:u08:rpcsec_gss_info, +25:u11:rpc_gss_svc_integrity, +23:u13:rpc_gss_svc_privacy, +20:u00:RPC_GSS_SVC_NONE, +25:u02:RPC_GSS_SVC_INTEGRITY, +23:u04:RPC_GSS_SVC_PRIVACY, +8:u08:oid;, +19:u07:rpcsec_gss_info, +25:u10:rpc_gss_svc_integrity, +23:u12:rpc_gss_svc_privacy, +25:u01:RPC_GSS_SVC_INTEGRITY, +23:u03:RPC_GSS_SVC_PRIVACY, +19:u06:rpcsec_gss_info, +23:u11:rpc_gss_svc_privacy, +25:u00:RPC_GSS_SVC_INTEGRITY, +23:u02:RPC_GSS_SVC_PRIVACY, +8:u07:oid;, +8:u08:qop;, +19:u05:rpcsec_gss_info, +23:u10:rpc_gss_svc_privacy, +12:u14:sec_oid4, +23:u01:RPC_GSS_SVC_PRIVACY, +8:u06:oid;, +19:u04:rpcsec_gss_info, +12:u13:sec_oid4, +8:u14:oid;, +23:u00:RPC_GSS_SVC_PRIVACY, +8:u05:oid;, +8:u07:qop;, +12:u08:service;, +19:u03:rpcsec_gss_info, +12:u12:sec_oid4, +8:u13:oid;, +8:u14:qop4, +8:u04:oid;, +8:u06:qop;, +19:u02:rpcsec_gss_info, +12:u11:sec_oid4, +8:u12:oid;, +8:u13:qop4, +8:u14:qop;, +6:u21:oi, +7:u22:oid, +8:u23:oid;, +8:u03:oid;, +8:u05:qop;, +12:u07:service;, +19:u01:rpcsec_gss_info, +12:u10:sec_oid4, +8:u11:oid;, +8:u12:qop4, +8:u13:qop;, +17:u14:rpc_gss_svc_t, +6:u21:qo, +7:u22:qop, +8:u23:qop4, +8:u02:oid;, +8:u04:qop;, +12:u06:service;, +19:u00:rpcsec_gss_info, +8:u10:oid;, +8:u11:qop4, +8:u12:qop;, +17:u13:rpc_gss_svc_t, +12:u14:service;, +8:u23:qop;, +8:u01:oid;, +8:u03:qop;, +12:u05:service;, +12:u08:secinfo4, +8:u10:qop4, +8:u11:qop;, +17:u12:rpc_gss_svc_t, +12:u13:service;, +8:u00:oid;, +8:u02:qop;, +12:u04:service;, +12:u07:secinfo4, +15:u08:RPCSEC_GSS:, +8:u10:qop;, +17:u11:rpc_gss_svc_t, +12:u12:service;, +8:u01:qop;, +12:u03:service;, +16:u08:flavor_info;, +12:u06:secinfo4, +15:u07:RPCSEC_GSS:, +17:u10:rpc_gss_svc_t, +12:u11:service;, +11:uI2:/*''-*/, +8:u00:qop;, +12:u02:service;, +12:u05:secinfo4, +15:u06:RPCSEC_GSS:, +12:u10:service;, +11:uI1:/*''-*/, +12:u01:service;, +16:u07:flavor_info;, +12:u04:secinfo4, +15:u05:RPCSEC_GSS:, +19:u14:rpcsec_gss_info, +11:uI0:/*''-*/, +12:u00:service;, +16:u06:flavor_info;, +12:u03:secinfo4, +15:u04:RPCSEC_GSS:, +19:u13:rpcsec_gss_info, +16:u14:flavor_info;, +16:u05:flavor_info;, +12:u02:secinfo4, +15:u03:RPCSEC_GSS:, +19:u12:rpcsec_gss_info, +16:u13:flavor_info;, +8:u23:rpcs, +16:u04:flavor_info;, +12:u01:secinfo4, +15:u02:RPCSEC_GSS:, +19:u11:rpcsec_gss_info, +16:u12:flavor_info;, +16:u03:flavor_info;, +12:u00:secinfo4, +15:u01:RPCSEC_GSS:, +19:u10:rpcsec_gss_info, +16:u11:flavor_info;, +16:u02:flavor_info;, +15:u00:RPCSEC_GSS:, +16:u10:flavor_info;, +16:u01:flavor_info;, +17:u08:SECINFO4resok, +14:u08:CURRENTFH:, +16:u00:flavor_info;, +14:u07:CURRENTFH:, +17:u07:SECINFO4resok, +14:u06:CURRENTFH:, +17:u06:SECINFO4resok, +14:u05:CURRENTFH:, +17:u14:secinfo4resok, +17:u05:SECINFO4resok, +12:u08:18.29.3., +14:u04:CURRENTFH:, +17:u13:secinfo4resok, +17:u04:SECINFO4resok, +14:u03:CURRENTFH:, +17:u12:secinfo4resok, +17:u03:SECINFO4resok, +12:u07:18.29.3., +14:u02:CURRENTFH:, +17:u11:secinfo4resok, +17:u02:SECINFO4resok, +12:u06:18.29.3., +14:u01:CURRENTFH:, +17:u10:secinfo4resok, +12:u14:18.29.3., +17:u01:SECINFO4resok, +12:u05:18.29.3., +14:u00:CURRENTFH:, +12:u13:18.29.3., +17:u00:SECINFO4resok, +12:u04:18.29.3., +12:u12:18.29.3., +12:u03:18.29.3., +12:u11:18.29.3., +12:u02:18.29.3., +12:u10:18.29.3., +12:u01:18.29.3., +12:u00:18.29.3., +16:u08:preferences,, +10:u14:behave, +10:u13:behave, +16:u07:preferences,, +13:u08:supports,, +10:u12:behave, +16:u06:preferences,, +10:u11:behave, +16:u14:preferences,, +16:u05:preferences,, +13:u07:supports,, +10:u10:behave, +16:u13:preferences,, +16:u04:preferences,, +13:u06:supports,, +16:u12:preferences,, +13:u14:supports,, +16:u03:preferences,, +13:u05:supports,, +8:u08:504], +16:u11:preferences,, +13:u13:supports,, +16:u02:preferences,, +13:u04:supports,, +8:u07:504], +16:u10:preferences,, +13:u12:supports,, +16:u01:preferences,, +13:u03:supports,, +8:u06:504], +13:u11:supports,, +16:u00:preferences,, +13:u02:supports,, +8:u05:504], +13:u10:supports,, +13:u01:supports,, +8:u04:504], +13:u00:supports,, +8:u03:504], +8:u02:504], +8:u01:504], +8:u08:2203, +8:u00:504], +8:u07:2203, +12:u14:auth_sys, +8:uI2:.'',, +8:u06:2203, +12:u13:auth_sys, +8:uI1:.'',, +10:uI2:([]),(, +8:u05:2203, +12:u12:auth_sys, +7:u22:AUT, +8:u23:AUTH, +8:uI0:.'',, +10:uI1:([]),(, +8:u04:2203, +12:u11:auth_sys, +10:uI0:([]),(, +8:u03:2203, +12:u10:auth_sys, +8:u02:2203, +8:u01:2203, +8:u00:2203, +10:uI2:(,[]),, +10:uI1:(,[]),, +10:uI0:(,[]),, +17:u08:2.6.3.1.1.8),, +17:u07:2.6.3.1.1.8),, +17:u06:2.6.3.1.1.8),, +17:u05:2.6.3.1.1.8),, +17:u04:2.6.3.1.1.8),, +17:u03:2.6.3.1.1.8),, +12:u08:18.29.4., +17:u02:2.6.3.1.1.8),, +17:u01:2.6.3.1.1.8),, +12:u07:18.29.4., +17:u00:2.6.3.1.1.8),, +12:u06:18.29.4., +12:u14:18.29.4., +12:u05:18.29.4., +12:u13:18.29.4., +12:u04:18.29.4., +10:u08:point,, +12:u12:18.29.4., +12:u03:18.29.4., +12:u11:18.29.4., +12:u02:18.29.4., +10:u07:point,, +12:u10:18.29.4., +12:u01:18.29.4., +10:u06:point,, +14:u08:mentioned,, +10:u14:point,, +12:u00:18.29.4., +10:u05:point,, +14:u07:mentioned,, +10:u13:point,, +10:u04:point,, +14:u06:mentioned,, +10:u12:point,, +10:u03:point,, +14:u05:mentioned,, +10:u11:point,, +10:u02:point,, +14:u04:mentioned,, +10:u10:point,, +10:u01:point,, +14:u03:mentioned,, +10:u00:point,, +14:u02:mentioned,, +10:uI2:,(...), +14:u01:mentioned,, +10:uI1:,(...), +14:u00:mentioned,, +10:uI0:,(...), +8:u08:505], +8:u07:505], +8:u06:505], +14:u08:irrelevant, +8:u05:505], +8:u04:505], +14:u07:irrelevant, +11:u08:policy,, +8:u03:505], +14:u06:irrelevant, +8:u02:505], +14:u14:irrelevant, +14:u05:irrelevant, +11:u07:policy,, +8:u01:505], +14:u13:irrelevant, +14:u04:irrelevant, +11:u06:policy,, +8:u00:505], +14:u12:irrelevant, +11:u14:policy,, +6:u21:ir, +7:u22:irr, +8:u23:irre, +14:u03:irrelevant, +11:u05:policy,, +14:u11:irrelevant, +11:u13:policy,, +14:u02:irrelevant, +11:u04:policy,, +14:u10:irrelevant, +11:u12:policy,, +14:u01:irrelevant, +11:u03:policy,, +11:u11:policy,, +14:u00:irrelevant, +11:u02:policy,, +11:u10:policy,, +11:u01:policy,, +11:u00:policy,, +10:u08:inject, +10:u07:inject, +15:u08:PUTROOTFH),, +10:u06:inject, +11:u08:(LOOKUP, +10:u14:inject, +10:u05:inject, +15:u07:PUTROOTFH),, +14:u08:RESTOREFH., +10:u13:inject, +10:u04:inject, +15:u06:PUTROOTFH),, +11:u07:(LOOKUP, +10:u12:inject, +15:u14:putrootfh),, +10:u03:inject, +15:u05:PUTROOTFH),, +11:u06:(LOOKUP, +14:u07:RESTOREFH., +10:u11:inject, +15:u13:putrootfh),, +11:u14:(lookup, +10:u02:inject, +15:u04:PUTROOTFH),, +11:u05:(LOOKUP, +14:u06:RESTOREFH., +10:u10:inject, +15:u12:putrootfh),, +11:u13:(lookup, +14:u14:restorefh., +10:u01:inject, +15:u03:PUTROOTFH),, +11:u04:(LOOKUP, +14:u05:RESTOREFH., +15:u08:2.6.3.1.1),, +15:u11:putrootfh),, +11:u12:(lookup, +14:u13:restorefh., +7:u22:(LO, +8:u23:(LOO, +10:u00:inject, +15:u02:PUTROOTFH),, +11:u03:(LOOKUP, +14:u04:RESTOREFH., +15:u07:2.6.3.1.1),, +15:u10:putrootfh),, +11:u11:(lookup, +14:u12:restorefh., +15:u01:PUTROOTFH),, +11:u02:(LOOKUP, +14:u03:RESTOREFH., +15:u06:2.6.3.1.1),, +11:u10:(lookup, +14:u11:restorefh., +15:u00:PUTROOTFH),, +11:u01:(LOOKUP, +14:u02:RESTOREFH., +15:u05:2.6.3.1.1),, +14:u10:restorefh., +10:uI2:....),, +11:u00:(LOOKUP, +14:u01:RESTOREFH., +15:u04:2.6.3.1.1),, +10:uI1:....),, +14:u00:RESTOREFH., +15:u03:2.6.3.1.1),, +10:u14:error., +10:uI0:....),, +15:u02:2.6.3.1.1),, +10:u13:error., +15:u01:2.6.3.1.1),, +10:u12:error., +15:u00:2.6.3.1.1),, +10:u11:error., +10:u10:error., +12:u08:READDIR), +12:u07:READDIR), +12:u06:READDIR), +29:u08:SECINFO_STYLE4_CURRENT_FH, +12:u05:READDIR), +16:u14:rdattr_error, +12:u04:READDIR), +6:u08:}., +16:u13:rdattr_error, +29:u07:SECINFO_STYLE4_CURRENT_FH, +12:u03:READDIR), +6:u07:}., +16:u12:rdattr_error, +29:u06:SECINFO_STYLE4_CURRENT_FH, +12:u02:READDIR), +6:u06:}., +16:u11:rdattr_error, +29:u14:secinfo_style4_current_fh, +29:u05:SECINFO_STYLE4_CURRENT_FH, +12:u01:READDIR), +6:u05:}., +16:u10:rdattr_error, +29:u13:secinfo_style4_current_fh, +29:u04:SECINFO_STYLE4_CURRENT_FH, +12:u00:READDIR), +6:u04:}., +29:u12:secinfo_style4_current_fh, +29:u03:SECINFO_STYLE4_CURRENT_FH, +6:u03:}., +8:u08:506], +29:u11:secinfo_style4_current_fh, +29:u02:SECINFO_STYLE4_CURRENT_FH, +6:u02:}., +8:u07:506], +29:u10:secinfo_style4_current_fh, +29:u01:SECINFO_STYLE4_CURRENT_FH, +6:u01:}., +8:u06:506], +29:u00:SECINFO_STYLE4_CURRENT_FH, +6:u00:}., +8:u05:506], +8:u04:506], +9:u08:NOTE:, +8:u03:506], +8:u02:506], +9:u07:NOTE:, +8:u01:506], +15:u08:reconstruct, +9:u06:NOTE:, +8:u00:506], +15:u07:reconstruct, +9:u05:NOTE:, +15:u06:reconstruct, +8:uI2::.,,, +9:u04:NOTE:, +25:u08:SECINFO_STYLE4_PARENT, +15:u05:reconstruct, +8:u23:NOTE, +8:uI1::.,,, +9:u03:NOTE:, +15:u04:reconstruct, +8:uI0::.,,, +9:u02:NOTE:, +25:u07:SECINFO_STYLE4_PARENT, +15:u03:reconstruct, +9:u01:NOTE:, +25:u06:SECINFO_STYLE4_PARENT, +15:u02:reconstruct, +25:u14:secinfo_style4_parent, +9:u00:NOTE:, +25:u05:SECINFO_STYLE4_PARENT, +15:u01:reconstruct, +25:u13:secinfo_style4_parent, +25:u04:SECINFO_STYLE4_PARENT, +12:u08:18.30.1., +15:u00:reconstruct, +25:u12:secinfo_style4_parent, +25:u03:SECINFO_STYLE4_PARENT, +25:u11:secinfo_style4_parent, +25:u02:SECINFO_STYLE4_PARENT, +12:u07:18.30.1., +25:u10:secinfo_style4_parent, +25:u01:SECINFO_STYLE4_PARENT, +12:u06:18.30.1., +12:u14:18.30.1., +25:u00:SECINFO_STYLE4_PARENT, +12:u05:18.30.1., +12:u13:18.30.1., +12:u04:18.30.1., +12:u12:18.30.1., +12:u03:18.30.1., +12:u11:18.30.1., +12:u02:18.30.1., +12:u10:18.30.1., +12:u01:18.30.1., +12:u08:18.30.2., +12:u00:18.30.1., +12:u07:18.30.2., +12:u06:18.30.2., +12:u14:18.30.2., +12:u05:18.30.2., +12:u13:18.30.2., +12:u04:18.30.2., +13:u08:attrsset;, +12:u12:18.30.2., +12:u03:18.30.2., +12:u11:18.30.2., +12:u02:18.30.2., +13:u07:attrsset;, +12:u08:18.30.3., +12:u10:18.30.2., +12:u01:18.30.2., +13:u06:attrsset;, +13:u14:attrsset;, +12:u00:18.30.2., +13:u05:attrsset;, +12:u07:18.30.3., +13:u13:attrsset;, +13:u04:attrsset;, +12:u06:18.30.3., +13:u12:attrsset;, +12:u14:18.30.3., +13:u03:attrsset;, +12:u05:18.30.3., +13:u11:attrsset;, +12:u13:18.30.3., +13:u02:attrsset;, +12:u04:18.30.3., +13:u10:attrsset;, +12:u12:18.30.3., +13:u01:attrsset;, +12:u03:18.30.3., +12:u11:18.30.3., +13:u00:attrsset;, +12:u02:18.30.3., +12:u10:18.30.3., +12:u01:18.30.3., +12:u00:18.30.3., +8:u08:507], +8:u07:507], +8:u06:507], +8:u05:507], +8:u04:507], +8:u03:507], +8:u02:507], +8:u01:507], +8:u00:507], +12:u08:attrsset, +11:u14:passed., +12:u08:attrmask, +12:u07:attrsset, +11:u13:passed., +12:u06:attrsset, +11:u12:passed., +12:u07:attrmask, +12:u08:18.30.4., +12:u05:attrsset, +11:u11:passed., +12:u06:attrmask, +12:u04:attrsset, +11:u10:passed., +12:u14:attrmask, +12:u05:attrmask, +12:u07:18.30.4., +12:u03:attrsset, +12:u13:attrmask, +12:u04:attrmask, +12:u06:18.30.4., +12:u02:attrsset, +12:u12:attrmask, +12:u14:18.30.4., +12:u03:attrmask, +12:u05:18.30.4., +12:u01:attrsset, +11:u08:matches, +12:u11:attrmask, +12:u13:18.30.4., +12:u02:attrmask, +12:u04:18.30.4., +12:u00:attrsset, +11:u07:matches, +12:u10:attrmask, +12:u12:18.30.4., +12:u01:attrmask, +12:u03:18.30.4., +11:u06:matches, +12:u11:18.30.4., +12:u00:attrmask, +12:u02:18.30.4., +11:u05:matches, +11:u08:lenient, +12:u10:18.30.4., +12:u01:18.30.4., +11:u04:matches, +11:u07:lenient, +12:u00:18.30.4., +11:u03:matches, +11:u06:lenient, +11:u02:matches, +11:u05:lenient, +11:u01:matches, +11:u04:lenient, +11:u00:matches, +11:u03:lenient, +11:u02:lenient, +11:u01:lenient, +15:u08:unallocated, +11:u00:lenient, +15:u07:unallocated, +15:u06:unallocated, +15:u14:unallocated, +15:u05:unallocated, +15:u13:unallocated, +15:u04:unallocated, +15:u12:unallocated, +8:u23:unal, +15:u03:unallocated, +15:u11:unallocated, +15:u02:unallocated, +15:u10:unallocated, +15:u01:unallocated, +15:u00:unallocated, +13:u14:partially, +13:u13:partially, +13:u12:partially, +13:u11:partially, +13:u10:partially, +8:u08:508], +8:u07:508], +8:u06:508], +8:u05:508], +8:u04:508], +8:u03:508], +8:u02:508], +8:u01:508], +8:u00:508], +12:u08:enabled,, +12:u07:enabled,, +12:u06:enabled,, +14:u08:client(s),, +12:u05:enabled,, +28:u08:NOTIFY4_CHANGE_DIR_ATTRS, +12:u04:enabled,, +28:u07:NOTIFY4_CHANGE_DIR_ATTRS, +14:u07:client(s),, +12:u03:enabled,, +28:u06:NOTIFY4_CHANGE_DIR_ATTRS, +14:u06:client(s),, +12:u02:enabled,, +28:u05:NOTIFY4_CHANGE_DIR_ATTRS, +14:u14:client(s),, +14:u05:client(s),, +12:u01:enabled,, +28:u04:NOTIFY4_CHANGE_DIR_ATTRS, +14:u13:client(s),, +14:u04:client(s),, +12:u00:enabled,, +28:u03:NOTIFY4_CHANGE_DIR_ATTRS, +14:u12:client(s),, +14:u03:client(s),, +28:u02:NOTIFY4_CHANGE_DIR_ATTRS, +14:u11:client(s),, +14:u02:client(s),, +28:u01:NOTIFY4_CHANGE_DIR_ATTRS, +14:u10:client(s),, +14:u01:client(s),, +28:u00:NOTIFY4_CHANGE_DIR_ATTRS, +30:u08:NOTIFY4_CHANGE_CHILD_ATTRS, +14:u00:client(s),, +30:u07:NOTIFY4_CHANGE_CHILD_ATTRS, +12:u08:Changing, +30:u06:NOTIFY4_CHANGE_CHILD_ATTRS, +30:u05:NOTIFY4_CHANGE_CHILD_ATTRS, +12:u07:Changing, +30:u04:NOTIFY4_CHANGE_CHILD_ATTRS, +12:u06:Changing, +30:u03:NOTIFY4_CHANGE_CHILD_ATTRS, +12:u05:Changing, +30:u02:NOTIFY4_CHANGE_CHILD_ATTRS, +12:u04:Changing, +30:u01:NOTIFY4_CHANGE_CHILD_ATTRS, +12:u03:Changing, +30:u00:NOTIFY4_CHANGE_CHILD_ATTRS, +12:u02:Changing, +24:u08:SET_TO_CLIENT_TIME4,, +12:u01:Changing, +24:u07:SET_TO_CLIENT_TIME4,, +12:u00:Changing, +24:u06:SET_TO_CLIENT_TIME4,, +24:u05:SET_TO_CLIENT_TIME4,, +24:u04:SET_TO_CLIENT_TIME4,, +24:u14:set_to_client_time4,, +24:u03:SET_TO_CLIENT_TIME4,, +24:u13:set_to_client_time4,, +24:u02:SET_TO_CLIENT_TIME4,, +24:u12:set_to_client_time4,, +24:u01:SET_TO_CLIENT_TIME4,, +24:u11:set_to_client_time4,, +24:u00:SET_TO_CLIENT_TIME4,, +24:u10:set_to_client_time4,, +9:u08:guard, +9:u07:guard, +14:u08:compromise, +9:u06:guard, +14:u07:compromise, +14:u08:emulation., +9:u14:guard, +9:u05:guard, +14:u06:compromise, +14:u07:emulation., +9:u13:guard, +9:u04:guard, +14:u05:compromise, +14:u06:emulation., +9:u12:guard, +9:u03:guard, +14:u04:compromise, +14:u05:emulation., +9:u11:guard, +9:u02:guard, +14:u03:compromise, +14:u04:emulation., +9:u10:guard, +9:u01:guard, +14:u02:compromise, +14:u03:emulation., +8:u08:509], +9:u00:guard, +14:u01:compromise, +14:u02:emulation., +8:u07:509], +14:u00:compromise, +14:u01:emulation., +8:u06:509], +14:u00:emulation., +8:u05:509], +8:u04:509], +8:u03:509], +8:u02:509], +8:u01:509], +8:u00:509], +10:u08:equal,, +12:u08:18.31.1., +10:u07:equal,, +10:u06:equal,, +12:u07:18.31.1., +10:u05:equal,, +12:u06:18.31.1., +10:u04:equal,, +12:u14:18.31.1., +12:u05:18.31.1., +10:u03:equal,, +12:u13:18.31.1., +12:u04:18.31.1., +10:u02:equal,, +12:u12:18.31.1., +12:u03:18.31.1., +12:u08:18.31.2., +10:u01:equal,, +12:u11:18.31.1., +12:u02:18.31.1., +10:u00:equal,, +12:u10:18.31.1., +12:u01:18.31.1., +12:u07:18.31.2., +12:u00:18.31.1., +12:u06:18.31.2., +12:u14:18.31.2., +12:u05:18.31.2., +12:u13:18.31.2., +12:u04:18.31.2., +12:u08:18.31.3., +12:u12:18.31.2., +12:u03:18.31.2., +12:u11:18.31.2., +12:u02:18.31.2., +12:u07:18.31.3., +12:u10:18.31.2., +12:u01:18.31.2., +12:u06:18.31.3., +12:u14:18.31.3., +12:u00:18.31.2., +12:u05:18.31.3., +12:u13:18.31.3., +12:u04:18.31.3., +11:u08:retains, +12:u12:18.31.3., +12:u03:18.31.3., +12:u08:18.31.4., +12:u11:18.31.3., +12:u02:18.31.3., +11:u07:retains, +12:u10:18.31.3., +12:u01:18.31.3., +11:u06:retains, +12:u07:18.31.4., +11:u14:retains, +12:u00:18.31.3., +11:u05:retains, +12:u06:18.31.4., +11:u13:retains, +12:u14:18.31.4., +11:u04:retains, +12:u05:18.31.4., +11:u12:retains, +12:u13:18.31.4., +11:u03:retains, +12:u04:18.31.4., +11:u11:retains, +12:u12:18.31.4., +11:u02:retains, +12:u03:18.31.4., +11:u10:retains, +12:u11:18.31.4., +11:u01:retains, +12:u02:18.31.4., +12:u10:18.31.4., +11:u00:retains, +12:u01:18.31.4., +15:u08:(filehandle, +12:u00:18.31.4., +15:u07:(filehandle, +15:u06:(filehandle, +15:u05:(filehandle, +15:u04:(filehandle, +15:u03:(filehandle, +8:u08:510], +15:u02:(filehandle, +8:u07:510], +15:u01:(filehandle, +8:u06:510], +15:u00:(filehandle, +8:u05:510], +8:u04:510], +8:u03:510], +8:u02:510], +8:u01:510], +8:u00:510], +12:u08:18.32.1., +12:u07:18.32.1., +13:u08:UNSTABLE4, +15:u08:stable_how4, +12:u06:18.32.1., +15:u07:stable_how4, +12:u14:18.32.1., +12:u05:18.32.1., +13:u07:UNSTABLE4, +14:u08:DATA_SYNC4, +15:u06:stable_how4, +12:u13:18.32.1., +12:u04:18.32.1., +13:u06:UNSTABLE4, +15:u05:stable_how4, +12:u12:18.32.1., +13:u14:unstable4, +12:u03:18.32.1., +13:u05:UNSTABLE4, +14:u07:DATA_SYNC4, +15:u04:stable_how4, +12:u11:18.32.1., +13:u13:unstable4, +12:u02:18.32.1., +13:u04:UNSTABLE4, +14:u06:DATA_SYNC4, +15:u03:stable_how4, +12:u10:18.32.1., +13:u12:unstable4, +14:u14:data_sync4, +7:u22:UNS, +8:u23:UNST, +12:u01:18.32.1., +13:u03:UNSTABLE4, +14:u05:DATA_SYNC4, +15:u02:stable_how4, +13:u11:unstable4, +14:u13:data_sync4, +12:u00:18.32.1., +13:u02:UNSTABLE4, +14:u04:DATA_SYNC4, +15:u01:stable_how4, +13:u10:unstable4, +14:u12:data_sync4, +7:u22:DAT, +8:u23:DATA, +13:u01:UNSTABLE4, +14:u03:DATA_SYNC4, +15:u00:stable_how4, +14:u11:data_sync4, +13:u00:UNSTABLE4, +14:u02:DATA_SYNC4, +14:u10:data_sync4, +14:u01:DATA_SYNC4, +14:u00:DATA_SYNC4, +11:u08:stable;, +11:u07:stable;, +15:u14:stable_how4, +11:u06:stable;, +15:u13:stable_how4, +11:u14:stable;, +11:u05:stable;, +12:u08:18.32.2., +15:u12:stable_how4, +11:u13:stable;, +11:u04:stable;, +15:u11:stable_how4, +11:u12:stable;, +11:u03:stable;, +12:u07:18.32.2., +15:u08:WRITE4resok, +15:u10:stable_how4, +11:u11:stable;, +11:u02:stable;, +12:u06:18.32.2., +15:u07:WRITE4resok, +11:u10:stable;, +12:u14:18.32.2., +11:u01:stable;, +12:u05:18.32.2., +15:u06:WRITE4resok, +12:u13:18.32.2., +11:u00:stable;, +12:u04:18.32.2., +14:u08:committed;, +15:u05:WRITE4resok, +12:u12:18.32.2., +12:u03:18.32.2., +15:u04:WRITE4resok, +12:u11:18.32.2., +12:u02:18.32.2., +14:u07:committed;, +15:u03:WRITE4resok, +12:u10:18.32.2., +12:u01:18.32.2., +14:u06:committed;, +15:u02:WRITE4resok, +14:u14:committed;, +12:u00:18.32.2., +14:u05:committed;, +15:u01:WRITE4resok, +14:u13:committed;, +14:u04:committed;, +15:u00:WRITE4resok, +14:u12:committed;, +14:u03:committed;, +14:u11:committed;, +14:u02:committed;, +14:u10:committed;, +14:u01:committed;, +14:u00:committed;, +15:u14:write4resok, +15:u13:write4resok, +15:u12:write4resok, +15:u11:write4resok, +15:u10:write4resok, +8:u08:511], +8:u07:511], +8:u06:511], +12:u08:18.32.3., +8:u05:511], +8:u04:511], +12:u07:18.32.3., +8:u03:511], +12:u06:18.32.3., +8:u02:511], +12:u14:18.32.3., +12:u05:18.32.3., +8:u01:511], +12:u13:18.32.3., +12:u04:18.32.3., +8:u00:511], +12:u12:18.32.3., +12:u03:18.32.3., +12:u11:18.32.3., +12:u02:18.32.3., +12:u10:18.32.3., +12:u01:18.32.3., +12:u00:18.32.3., +9:u08:NFSv2, +14:u08:violation., +9:u07:NFSv2, +9:u06:NFSv2, +14:u07:violation., +9:u14:nfsv2, +9:u05:NFSv2, +14:u06:violation., +9:u13:nfsv2, +14:u14:violation., +9:u04:NFSv2, +14:u05:violation., +9:u12:nfsv2, +14:u13:violation., +9:u03:NFSv2, +14:u04:violation., +9:u11:nfsv2, +14:u12:violation., +7:u22:vio, +8:u23:viol, +9:u02:NFSv2, +14:u03:violation., +9:u10:nfsv2, +14:u11:violation., +9:u01:NFSv2, +14:u02:violation., +14:u10:violation., +9:u00:NFSv2, +14:u01:violation., +14:u00:violation., +8:u08:512], +8:u07:512], +8:u06:512], +8:u05:512], +8:u04:512], +8:u03:512], +14:u08:committed., +8:u02:512], +14:u07:committed., +54:u08:+------------+-----------------------------------+, +8:u01:512], +14:u06:committed., +8:u00:512], +14:u05:committed., +54:u07:+------------+-----------------------------------+, +14:u04:committed., +54:u06:+------------+-----------------------------------+, +14:u03:committed., +54:u14:+------------+-----------------------------------+, +54:u05:+------------+-----------------------------------+, +14:u02:committed., +54:u13:+------------+-----------------------------------+, +51:uI2:-----------------------------------------------, +6:uI2:47, +54:u04:+------------+-----------------------------------+, +14:u01:committed., +54:u12:+------------+-----------------------------------+, +51:uI1:-----------------------------------------------, +6:uI1:47, +54:u03:+------------+-----------------------------------+, +14:u00:committed., +54:u11:+------------+-----------------------------------+, +51:uI0:-----------------------------------------------, +6:uI0:47, +54:u02:+------------+-----------------------------------+, +54:u10:+------------+-----------------------------------+, +54:u01:+------------+-----------------------------------+, +54:u00:+------------+-----------------------------------+, +12:u08:restart), +12:u07:restart), +12:u06:restart), +12:u14:restart), +12:u05:restart), +12:u13:restart), +12:u04:restart), +12:u12:restart), +12:u03:restart), +14:u08:recovered., +12:u11:restart), +12:u02:restart), +12:u10:restart), +12:u01:restart), +14:u07:recovered., +12:u00:restart), +14:u06:recovered., +14:u08:UNSTABLE4,, +14:u14:recovered., +14:u05:recovered., +14:u13:recovered., +14:u04:recovered., +14:u07:UNSTABLE4,, +14:u12:recovered., +14:u03:recovered., +14:u06:UNSTABLE4,, +14:u11:recovered., +14:u14:unstable4,, +14:u02:recovered., +14:u05:UNSTABLE4,, +14:u10:recovered., +14:u13:unstable4,, +14:u01:recovered., +14:u04:UNSTABLE4,, +14:u12:unstable4,, +14:u00:recovered., +14:u03:UNSTABLE4,, +14:u11:unstable4,, +14:u02:UNSTABLE4,, +14:u10:unstable4,, +14:u01:UNSTABLE4,, +14:u00:UNSTABLE4,, +8:u08:513], +8:u07:513], +8:u06:513], +12:u08:18.32.4., +8:u05:513], +8:u04:513], +12:u07:18.32.4., +8:u03:513], +12:u06:18.32.4., +8:u02:513], +12:u14:18.32.4., +12:u05:18.32.4., +8:u01:513], +12:u13:18.32.4., +12:u04:18.32.4., +8:u00:513], +12:u12:18.32.4., +12:u03:18.32.4., +12:u11:18.32.4., +12:u02:18.32.4., +17:u08:time_modified, +12:u10:18.32.4., +12:u01:18.32.4., +12:u00:18.32.4., +17:u07:time_modified, +17:u06:time_modified, +17:u14:time_modified, +17:u05:time_modified, +17:u13:time_modified, +17:u04:time_modified, +17:u12:time_modified, +17:u03:time_modified, +17:u11:time_modified, +17:u02:time_modified, +12:u08:Repeated, +17:u10:time_modified, +17:u01:time_modified, +12:u07:Repeated, +12:u08:Hardware, +17:u00:time_modified, +12:u06:Repeated, +12:u07:Hardware, +12:u05:Repeated, +12:u06:Hardware, +12:u04:Repeated, +12:u05:Hardware, +11:uI2:.(,,.)., +12:u03:Repeated, +12:u04:Hardware, +11:uI1:.(,,.)., +12:u02:Repeated, +12:u03:Hardware, +11:uI0:.(,,.)., +12:u01:Repeated, +12:u02:Hardware, +12:u00:Repeated, +12:u01:Hardware, +12:u00:Hardware, +13:u08:suggested, +13:u07:suggested, +11:u08:started, +13:u06:suggested, +11:u07:started, +13:u05:suggested, +11:u06:started, +13:u04:suggested, +11:u05:started, +13:u03:suggested, +11:u04:started, +13:u02:suggested, +11:u03:started, +13:u01:suggested, +11:u02:started, +13:u00:suggested, +11:u01:started, +11:u00:started, +8:u08:514], +8:u07:514], +8:u06:514], +8:u05:514], +8:u04:514], +8:u03:514], +8:u02:514], +8:u01:514], +8:u00:514], +17:u14:nfs4err_dquot, +17:u13:nfs4err_dquot, +17:u12:nfs4err_dquot, +17:u11:nfs4err_dquot, +17:u10:nfs4err_dquot, +11:u08:READ_LT, +11:u07:READ_LT, +11:u06:READ_LT, +11:u14:read_lt, +11:u05:READ_LT, +11:u13:read_lt, +11:u04:READ_LT, +11:u12:read_lt, +11:u03:READ_LT, +11:u11:read_lt, +11:u02:READ_LT, +11:u10:read_lt, +11:u01:READ_LT, +11:u00:READ_LT, +7:u14:had, +7:u13:had, +7:u12:had, +7:u23:had, +7:u11:had, +7:u10:had, +12:u08:written,, +12:u07:written,, +12:u06:written,, +12:u14:written,, +12:u05:written,, +12:u13:written,, +12:u04:written,, +12:u12:written,, +12:u03:written,, +12:u11:written,, +12:u02:written,, +12:u10:written,, +12:u01:written,, +12:u00:written,, +8:u08:515], +8:u07:515], +8:u06:515], +8:u05:515], +12:u08:18.33.1., +8:u04:515], +8:u03:515], +12:u07:18.33.1., +8:u02:515], +12:u06:18.33.1., +8:u01:515], +19:u08:gss_cb_handles4, +12:u14:18.33.1., +12:u05:18.33.1., +17:u08:gcbp_service;, +8:u00:515], +19:u07:gss_cb_handles4, +12:u13:18.33.1., +12:u04:18.33.1., +16:u08:gsshandle4_t, +19:u06:gss_cb_handles4, +12:u12:18.33.1., +12:u03:18.33.1., +17:u07:gcbp_service;, +28:u08:gcbp_handle_from_server;, +19:u05:gss_cb_handles4, +12:u11:18.33.1., +12:u02:18.33.1., +17:u06:gcbp_service;, +16:u07:gsshandle4_t, +19:u04:gss_cb_handles4, +12:u10:18.33.1., +17:u14:gcbp_service;, +12:u01:18.33.1., +17:u05:gcbp_service;, +16:u06:gsshandle4_t, +28:u07:gcbp_handle_from_server;, +28:u08:gcbp_handle_from_client;, +19:u03:gss_cb_handles4, +17:u13:gcbp_service;, +16:u14:gsshandle4_t, +12:u00:18.33.1., +17:u04:gcbp_service;, +16:u05:gsshandle4_t, +28:u06:gcbp_handle_from_server;, +19:u02:gss_cb_handles4, +17:u12:gcbp_service;, +16:u13:gsshandle4_t, +28:u14:gcbp_handle_from_server;, +6:u21:gc, +7:u22:gcb, +8:u23:gcbp, +17:u03:gcbp_service;, +16:u04:gsshandle4_t, +28:u05:gcbp_handle_from_server;, +28:u07:gcbp_handle_from_client;, +19:u01:gss_cb_handles4, +17:u11:gcbp_service;, +16:u12:gsshandle4_t, +28:u13:gcbp_handle_from_server;, +6:u21:gs, +7:u22:gss, +8:u23:gssh, +17:u02:gcbp_service;, +16:u03:gsshandle4_t, +28:u04:gcbp_handle_from_server;, +28:u06:gcbp_handle_from_client;, +19:u00:gss_cb_handles4, +23:u08:callback_sec_parms4, +17:u10:gcbp_service;, +16:u11:gsshandle4_t, +28:u12:gcbp_handle_from_server;, +28:u14:gcbp_handle_from_client;, +17:u01:gcbp_service;, +16:u02:gsshandle4_t, +28:u03:gcbp_handle_from_server;, +28:u05:gcbp_handle_from_client;, +23:u07:callback_sec_parms4, +14:u08:AUTH_NONE:, +16:u10:gsshandle4_t, +28:u11:gcbp_handle_from_server;, +28:u13:gcbp_handle_from_client;, +17:u00:gcbp_service;, +16:u01:gsshandle4_t, +28:u02:gcbp_handle_from_server;, +28:u04:gcbp_handle_from_client;, +23:u06:callback_sec_parms4, +14:u07:AUTH_NONE:, +28:u10:gcbp_handle_from_server;, +28:u12:gcbp_handle_from_client;, +16:u00:gsshandle4_t, +28:u01:gcbp_handle_from_server;, +28:u03:gcbp_handle_from_client;, +17:u08:authsys_parms, +23:u05:callback_sec_parms4, +14:u06:AUTH_NONE:, +13:u08:AUTH_SYS:, +28:u11:gcbp_handle_from_client;, +28:u00:gcbp_handle_from_server;, +28:u02:gcbp_handle_from_client;, +18:u08:cbsp_sys_cred;, +23:u04:callback_sec_parms4, +14:u05:AUTH_NONE:, +13:u07:AUTH_SYS:, +28:u10:gcbp_handle_from_client;, +28:u01:gcbp_handle_from_client;, +17:u07:authsys_parms, +23:u03:callback_sec_parms4, +14:u04:AUTH_NONE:, +13:u06:AUTH_SYS:, +28:u00:gcbp_handle_from_client;, +17:u06:authsys_parms, +18:u07:cbsp_sys_cred;, +23:u02:callback_sec_parms4, +14:u03:AUTH_NONE:, +13:u05:AUTH_SYS:, +17:u14:authsys_parms, +17:u05:authsys_parms, +18:u06:cbsp_sys_cred;, +23:u01:callback_sec_parms4, +14:u02:AUTH_NONE:, +13:u04:AUTH_SYS:, +21:u08:cbsp_gss_handles;, +17:u13:authsys_parms, +18:u14:cbsp_sys_cred;, +17:u04:authsys_parms, +18:u05:cbsp_sys_cred;, +23:u00:callback_sec_parms4, +14:u01:AUTH_NONE:, +13:u03:AUTH_SYS:, +21:u07:cbsp_gss_handles;, +17:u12:authsys_parms, +18:u13:cbsp_sys_cred;, +17:u03:authsys_parms, +18:u04:cbsp_sys_cred;, +14:u00:AUTH_NONE:, +13:u02:AUTH_SYS:, +21:u06:cbsp_gss_handles;, +17:u11:authsys_parms, +18:u12:cbsp_sys_cred;, +19:u14:gss_cb_handles4, +6:u21:cb, +7:u22:cbs, +8:u23:cbsp, +17:u02:authsys_parms, +18:u03:cbsp_sys_cred;, +19:u08:bca_cb_program;, +13:u01:AUTH_SYS:, +21:u05:cbsp_gss_handles;, +17:u10:authsys_parms, +18:u11:cbsp_sys_cred;, +19:u13:gss_cb_handles4, +17:u01:authsys_parms, +18:u02:cbsp_sys_cred;, +13:u00:AUTH_SYS:, +21:u04:cbsp_gss_handles;, +18:u10:cbsp_sys_cred;, +19:u12:gss_cb_handles4, +8:u23:gss_, +17:u00:authsys_parms, +18:u01:cbsp_sys_cred;, +19:u07:bca_cb_program;, +20:u08:bca_sec_parms<>;, +21:u03:cbsp_gss_handles;, +19:u11:gss_cb_handles4, +18:u00:cbsp_sys_cred;, +19:u06:bca_cb_program;, +21:u02:cbsp_gss_handles;, +19:u10:gss_cb_handles4, +19:u14:bca_cb_program;, +19:u05:bca_cb_program;, +20:u07:bca_sec_parms<>;, +12:u08:18.33.2., +21:u01:cbsp_gss_handles;, +19:u13:bca_cb_program;, +23:u14:callback_sec_parms4, +19:u04:bca_cb_program;, +20:u06:bca_sec_parms<>;, +21:u00:cbsp_gss_handles;, +19:u12:bca_cb_program;, +23:u13:callback_sec_parms4, +20:u14:bca_sec_parms<>;, +6:u21:bc, +7:u22:bca, +8:u23:bca_, +19:u03:bca_cb_program;, +20:u05:bca_sec_parms<>;, +12:u07:18.33.2., +19:u11:bca_cb_program;, +23:u12:callback_sec_parms4, +20:u13:bca_sec_parms<>;, +19:u02:bca_cb_program;, +20:u04:bca_sec_parms<>;, +12:u06:18.33.2., +15:u08:bcr_status;, +19:u10:bca_cb_program;, +23:u11:callback_sec_parms4, +20:u12:bca_sec_parms<>;, +12:u14:18.33.2., +19:u01:bca_cb_program;, +20:u03:bca_sec_parms<>;, +12:u05:18.33.2., +23:u10:callback_sec_parms4, +20:u11:bca_sec_parms<>;, +12:u13:18.33.2., +19:u00:bca_cb_program;, +20:u02:bca_sec_parms<>;, +12:u04:18.33.2., +15:u07:bcr_status;, +12:u08:18.33.3., +20:u10:bca_sec_parms<>;, +12:u12:18.33.2., +20:u01:bca_sec_parms<>;, +12:u03:18.33.2., +15:u06:bcr_status;, +12:u11:18.33.2., +15:u14:bcr_status;, +20:u00:bca_sec_parms<>;, +12:u02:18.33.2., +15:u05:bcr_status;, +12:u07:18.33.3., +11:u08:program, +12:u10:18.33.2., +15:u13:bcr_status;, +12:u01:18.33.2., +15:u04:bcr_status;, +12:u06:18.33.3., +15:u12:bcr_status;, +12:u14:18.33.3., +7:u22:bcr, +8:u23:bcr_, +12:u00:18.33.2., +15:u03:bcr_status;, +12:u05:18.33.3., +11:u07:program, +15:u11:bcr_status;, +12:u13:18.33.3., +15:u02:bcr_status;, +12:u04:18.33.3., +11:u06:program, +15:u10:bcr_status;, +12:u12:18.33.3., +11:u14:program, +15:u01:bcr_status;, +12:u03:18.33.3., +11:u05:program, +18:u08:bca_cb_program, +12:u11:18.33.3., +11:u13:program, +15:u00:bcr_status;, +12:u02:18.33.3., +11:u04:program, +12:u10:18.33.3., +11:u12:program, +12:u01:18.33.3., +11:u03:program, +18:u07:bca_cb_program, +11:u11:program, +12:u00:18.33.3., +11:u02:program, +18:u06:bca_cb_program, +11:u10:program, +18:u14:bca_cb_program, +11:u01:program, +18:u05:bca_cb_program, +18:u13:bca_cb_program, +11:u00:program, +18:u04:bca_cb_program, +18:u12:bca_cb_program, +18:u03:bca_cb_program, +18:u11:bca_cb_program, +19:u14:backchannel_ctl, +18:u02:bca_cb_program, +8:u08:516], +18:u10:bca_cb_program, +19:u13:backchannel_ctl, +18:u01:bca_cb_program, +8:u07:516], +19:u12:backchannel_ctl, +18:u00:bca_cb_program, +8:u06:516], +19:u11:backchannel_ctl, +8:u05:516], +19:u10:backchannel_ctl, +8:u04:516], +8:u03:516], +8:u02:516], +8:u01:516], +12:u08:2.10.9),, +8:u00:516], +12:u07:2.10.9),, +12:u06:2.10.9),, +12:u05:2.10.9),, +12:u08:18.34.1., +12:u04:2.10.9),, +12:u03:2.10.9),, +12:u07:18.34.1., +14:u08:CDFC4_FORE, +12:u02:2.10.9),, +28:u08:channel_dir_from_client4, +12:u06:18.34.1., +12:u01:2.10.9),, +28:u07:channel_dir_from_client4, +12:u14:18.34.1., +12:u05:18.34.1., +14:u07:CDFC4_FORE, +14:u08:CDFC4_BACK, +12:u00:2.10.9),, +28:u06:channel_dir_from_client4, +12:u13:18.34.1., +12:u04:18.34.1., +14:u06:CDFC4_FORE, +28:u05:channel_dir_from_client4, +12:u12:18.34.1., +14:u14:cdfc4_fore, +12:u03:18.34.1., +14:u05:CDFC4_FORE, +14:u07:CDFC4_BACK, +22:u08:CDFC4_FORE_OR_BOTH, +28:u04:channel_dir_from_client4, +12:u11:18.34.1., +14:u13:cdfc4_fore, +12:u02:18.34.1., +14:u04:CDFC4_FORE, +14:u06:CDFC4_BACK, +28:u03:channel_dir_from_client4, +12:u10:18.34.1., +14:u12:cdfc4_fore, +14:u14:cdfc4_back, +7:u22:CDF, +8:u23:CDFC, +12:u01:18.34.1., +14:u03:CDFC4_FORE, +14:u05:CDFC4_BACK, +22:u07:CDFC4_FORE_OR_BOTH, +22:u08:CDFC4_BACK_OR_BOTH, +28:u02:channel_dir_from_client4, +8:u08:0x3,, +14:u11:cdfc4_fore, +14:u13:cdfc4_back, +12:u00:18.34.1., +14:u02:CDFC4_FORE, +14:u04:CDFC4_BACK, +22:u06:CDFC4_FORE_OR_BOTH, +28:u01:channel_dir_from_client4, +8:u07:0x3,, +14:u10:cdfc4_fore, +14:u12:cdfc4_back, +22:u14:cdfc4_fore_or_both, +14:u01:CDFC4_FORE, +14:u03:CDFC4_BACK, +22:u05:CDFC4_FORE_OR_BOTH, +22:u07:CDFC4_BACK_OR_BOTH, +28:u00:channel_dir_from_client4, +8:u06:0x3,, +7:u08:0x7, +14:u11:cdfc4_back, +22:u13:cdfc4_fore_or_both, +14:u00:CDFC4_FORE, +14:u02:CDFC4_BACK, +22:u04:CDFC4_FORE_OR_BOTH, +22:u06:CDFC4_BACK_OR_BOTH, +8:u05:0x3,, +7:u07:0x7, +14:u10:cdfc4_back, +22:u12:cdfc4_fore_or_both, +22:u14:cdfc4_back_or_both, +14:u01:CDFC4_BACK, +22:u03:CDFC4_FORE_OR_BOTH, +22:u05:CDFC4_BACK_OR_BOTH, +8:u04:0x3,, +7:u06:0x7, +22:u11:cdfc4_fore_or_both, +22:u13:cdfc4_back_or_both, +14:u00:CDFC4_BACK, +22:u02:CDFC4_FORE_OR_BOTH, +22:u04:CDFC4_BACK_OR_BOTH, +17:u08:bctsa_sessid;, +8:u03:0x3,, +7:u05:0x7, +22:u10:cdfc4_fore_or_both, +22:u12:cdfc4_back_or_both, +22:u01:CDFC4_FORE_OR_BOTH, +22:u03:CDFC4_BACK_OR_BOTH, +8:u02:0x3,, +7:u04:0x7, +22:u11:cdfc4_back_or_both, +22:u00:CDFC4_FORE_OR_BOTH, +22:u02:CDFC4_BACK_OR_BOTH, +17:u07:bctsa_sessid;, +14:u08:bctsa_dir;, +8:u01:0x3,, +7:u03:0x7, +22:u10:cdfc4_back_or_both, +14:u14:sessionid4, +22:u01:CDFC4_BACK_OR_BOTH, +17:u06:bctsa_sessid;, +8:u00:0x3,, +7:u02:0x7, +14:u13:sessionid4, +17:u14:bctsa_sessid;, +22:u00:CDFC4_BACK_OR_BOTH, +17:u05:bctsa_sessid;, +14:u07:bctsa_dir;, +32:u08:bctsa_use_conn_in_rdma_mode;, +7:u01:0x7, +14:u12:sessionid4, +17:u13:bctsa_sessid;, +28:u14:channel_dir_from_client4, +17:u04:bctsa_sessid;, +14:u06:bctsa_dir;, +7:u00:0x7, +14:u11:sessionid4, +17:u12:bctsa_sessid;, +28:u13:channel_dir_from_client4, +14:u14:bctsa_dir;, +7:u22:bct, +8:u23:bcts, +17:u03:bctsa_sessid;, +14:u05:bctsa_dir;, +32:u07:bctsa_use_conn_in_rdma_mode;, +12:u08:18.34.2., +14:u10:sessionid4, +17:u11:bctsa_sessid;, +28:u12:channel_dir_from_client4, +14:u13:bctsa_dir;, +17:u02:bctsa_sessid;, +14:u04:bctsa_dir;, +32:u06:bctsa_use_conn_in_rdma_mode;, +17:u10:bctsa_sessid;, +28:u11:channel_dir_from_client4, +14:u12:bctsa_dir;, +32:u14:bctsa_use_conn_in_rdma_mode;, +17:u01:bctsa_sessid;, +14:u03:bctsa_dir;, +32:u05:bctsa_use_conn_in_rdma_mode;, +12:u07:18.34.2., +28:u10:channel_dir_from_client4, +14:u11:bctsa_dir;, +32:u13:bctsa_use_conn_in_rdma_mode;, +17:u00:bctsa_sessid;, +14:u02:bctsa_dir;, +32:u04:bctsa_use_conn_in_rdma_mode;, +12:u06:18.34.2., +14:u10:bctsa_dir;, +32:u12:bctsa_use_conn_in_rdma_mode;, +12:u14:18.34.2., +14:u01:bctsa_dir;, +32:u03:bctsa_use_conn_in_rdma_mode;, +12:u05:18.34.2., +8:u08:517], +32:u11:bctsa_use_conn_in_rdma_mode;, +12:u13:18.34.2., +14:u00:bctsa_dir;, +32:u02:bctsa_use_conn_in_rdma_mode;, +12:u04:18.34.2., +8:u07:517], +32:u10:bctsa_use_conn_in_rdma_mode;, +12:u12:18.34.2., +32:u01:bctsa_use_conn_in_rdma_mode;, +12:u03:18.34.2., +8:u06:517], +12:u11:18.34.2., +32:u00:bctsa_use_conn_in_rdma_mode;, +12:u02:18.34.2., +8:u05:517], +12:u10:18.34.2., +12:u01:18.34.2., +14:u08:CDFS4_FORE, +8:u04:517], +28:u08:channel_dir_from_server4, +12:u00:18.34.2., +8:u03:517], +28:u07:channel_dir_from_server4, +14:u07:CDFS4_FORE, +14:u08:CDFS4_BACK, +8:u02:517], +28:u06:channel_dir_from_server4, +14:u06:CDFS4_FORE, +8:u01:517], +28:u05:channel_dir_from_server4, +14:u14:cdfs4_fore, +14:u05:CDFS4_FORE, +14:u07:CDFS4_BACK, +14:u08:CDFS4_BOTH, +8:u00:517], +28:u04:channel_dir_from_server4, +14:u13:cdfs4_fore, +14:u04:CDFS4_FORE, +14:u06:CDFS4_BACK, +28:u03:channel_dir_from_server4, +14:u12:cdfs4_fore, +14:u14:cdfs4_back, +8:u23:CDFS, +14:u03:CDFS4_FORE, +14:u05:CDFS4_BACK, +14:u07:CDFS4_BOTH, +28:u02:channel_dir_from_server4, +14:u11:cdfs4_fore, +14:u13:cdfs4_back, +14:u02:CDFS4_FORE, +14:u04:CDFS4_BACK, +14:u06:CDFS4_BOTH, +28:u01:channel_dir_from_server4, +14:u10:cdfs4_fore, +14:u12:cdfs4_back, +14:u14:cdfs4_both, +14:u01:CDFS4_FORE, +14:u03:CDFS4_BACK, +14:u05:CDFS4_BOTH, +28:u00:channel_dir_from_server4, +30:u08:BIND_CONN_TO_SESSION4resok, +14:u11:cdfs4_back, +14:u13:cdfs4_both, +14:u00:CDFS4_FORE, +14:u02:CDFS4_BACK, +14:u04:CDFS4_BOTH, +17:u08:bctsr_sessid;, +30:u07:BIND_CONN_TO_SESSION4resok, +14:u10:cdfs4_back, +14:u12:cdfs4_both, +14:u01:CDFS4_BACK, +14:u03:CDFS4_BOTH, +30:u06:BIND_CONN_TO_SESSION4resok, +14:u11:cdfs4_both, +14:u00:CDFS4_BACK, +14:u02:CDFS4_BOTH, +17:u07:bctsr_sessid;, +14:u08:bctsr_dir;, +30:u05:BIND_CONN_TO_SESSION4resok, +14:u10:cdfs4_both, +14:u01:CDFS4_BOTH, +17:u06:bctsr_sessid;, +30:u04:BIND_CONN_TO_SESSION4resok, +17:u14:bctsr_sessid;, +14:u00:CDFS4_BOTH, +17:u05:bctsr_sessid;, +14:u07:bctsr_dir;, +32:u08:bctsr_use_conn_in_rdma_mode;, +30:u03:BIND_CONN_TO_SESSION4resok, +17:u13:bctsr_sessid;, +28:u14:channel_dir_from_server4, +17:u04:bctsr_sessid;, +14:u06:bctsr_dir;, +30:u02:BIND_CONN_TO_SESSION4resok, +17:u12:bctsr_sessid;, +28:u13:channel_dir_from_server4, +14:u14:bctsr_dir;, +17:u03:bctsr_sessid;, +14:u05:bctsr_dir;, +32:u07:bctsr_use_conn_in_rdma_mode;, +30:u01:BIND_CONN_TO_SESSION4resok, +17:u11:bctsr_sessid;, +28:u12:channel_dir_from_server4, +14:u13:bctsr_dir;, +17:u02:bctsr_sessid;, +14:u04:bctsr_dir;, +32:u06:bctsr_use_conn_in_rdma_mode;, +30:u00:BIND_CONN_TO_SESSION4resok, +17:u10:bctsr_sessid;, +28:u11:channel_dir_from_server4, +14:u12:bctsr_dir;, +32:u14:bctsr_use_conn_in_rdma_mode;, +17:u01:bctsr_sessid;, +14:u03:bctsr_dir;, +32:u05:bctsr_use_conn_in_rdma_mode;, +13:u08:(nfsstat4, +28:u10:channel_dir_from_server4, +14:u11:bctsr_dir;, +32:u13:bctsr_use_conn_in_rdma_mode;, +17:u00:bctsr_sessid;, +14:u02:bctsr_dir;, +32:u04:bctsr_use_conn_in_rdma_mode;, +13:u07:(nfsstat4, +14:u10:bctsr_dir;, +32:u12:bctsr_use_conn_in_rdma_mode;, +14:u01:bctsr_dir;, +32:u03:bctsr_use_conn_in_rdma_mode;, +17:u08:bctsr_resok4;, +13:u06:(nfsstat4, +32:u11:bctsr_use_conn_in_rdma_mode;, +14:u00:bctsr_dir;, +32:u02:bctsr_use_conn_in_rdma_mode;, +13:u05:(nfsstat4, +32:u10:bctsr_use_conn_in_rdma_mode;, +32:u01:bctsr_use_conn_in_rdma_mode;, +17:u07:bctsr_resok4;, +13:u04:(nfsstat4, +30:u14:bind_conn_to_session4resok, +32:u00:bctsr_use_conn_in_rdma_mode;, +17:u06:bctsr_resok4;, +13:u03:(nfsstat4, +30:u13:bind_conn_to_session4resok, +17:u14:bctsr_resok4;, +17:u05:bctsr_resok4;, +12:u08:18.34.3., +13:u02:(nfsstat4, +30:u12:bind_conn_to_session4resok, +17:u13:bctsr_resok4;, +17:u04:bctsr_resok4;, +13:u01:(nfsstat4, +30:u11:bind_conn_to_session4resok, +17:u12:bctsr_resok4;, +17:u03:bctsr_resok4;, +12:u07:18.34.3., +13:u00:(nfsstat4, +30:u10:bind_conn_to_session4resok, +17:u11:bctsr_resok4;, +17:u02:bctsr_resok4;, +12:u06:18.34.3., +17:u10:bctsr_resok4;, +12:u14:18.34.3., +17:u01:bctsr_resok4;, +12:u05:18.34.3., +12:u13:18.34.3., +17:u00:bctsr_resok4;, +12:u04:18.34.3., +12:u12:18.34.3., +12:u03:18.34.3., +10:u08:invoke, +12:u11:18.34.3., +12:u02:18.34.3., +12:u10:18.34.3., +12:u01:18.34.3., +10:u07:invoke, +12:u00:18.34.3., +10:u06:invoke, +10:u14:invoke, +10:u05:invoke, +7:u08:If,, +10:u13:invoke, +10:u04:invoke, +10:u12:invoke, +10:u03:invoke, +7:u07:If,, +10:u11:invoke, +10:u02:invoke, +7:u06:If,, +10:u10:invoke, +7:u14:if,, +10:u01:invoke, +7:u05:If,, +7:u13:if,, +10:u00:invoke, +7:u04:If,, +7:u12:if,, +7:u22:If,, +7:u23:If,, +7:u03:If,, +7:u11:if,, +7:u02:If,, +7:u10:if,, +7:u01:If,, +7:u00:If,, +8:u08:518], +8:u07:518], +8:u06:518], +13:u08:channels., +8:u05:518], +8:u04:518], +13:u07:channels., +8:u03:518], +13:u06:channels., +8:u02:518], +13:u14:channels., +13:u05:channels., +8:u01:518], +13:u13:channels., +13:u04:channels., +8:u00:518], +13:u12:channels., +13:u03:channels., +13:u11:channels., +13:u02:channels., +13:u10:channels., +13:u01:channels., +13:u00:channels., +15:u08:CDFC4_BACK,, +15:u07:CDFC4_BACK,, +15:u08:CDFS4_BOTH., +23:u08:CDFC4_FORE_OR_BOTH,, +15:u06:CDFC4_BACK,, +23:u07:CDFC4_FORE_OR_BOTH,, +15:u14:cdfc4_back,, +15:u05:CDFC4_BACK,, +15:u07:CDFS4_BOTH., +23:u06:CDFC4_FORE_OR_BOTH,, +15:u13:cdfc4_back,, +15:u04:CDFC4_BACK,, +15:u06:CDFS4_BOTH., +23:u05:CDFC4_FORE_OR_BOTH,, +15:u12:cdfc4_back,, +15:u14:cdfs4_both., +15:u03:CDFC4_BACK,, +15:u05:CDFS4_BOTH., +32:u08:bctsa_use_conn_in_rdma_mode,, +23:u04:CDFC4_FORE_OR_BOTH,, +15:u11:cdfc4_back,, +15:u13:cdfs4_both., +15:u02:CDFC4_BACK,, +15:u04:CDFS4_BOTH., +29:u08:csr_use_conn_in_rdma_mode, +23:u03:CDFC4_FORE_OR_BOTH,, +15:u10:cdfc4_back,, +15:u12:cdfs4_both., +15:u01:CDFC4_BACK,, +15:u03:CDFS4_BOTH., +32:u07:bctsa_use_conn_in_rdma_mode,, +12:u08:Invoking, +23:u02:CDFC4_FORE_OR_BOTH,, +15:u11:cdfs4_both., +15:u00:CDFC4_BACK,, +15:u02:CDFS4_BOTH., +32:u06:bctsa_use_conn_in_rdma_mode,, +29:u07:csr_use_conn_in_rdma_mode, +23:u01:CDFC4_FORE_OR_BOTH,, +15:u10:cdfs4_both., +32:u14:bctsa_use_conn_in_rdma_mode,, +15:u01:CDFS4_BOTH., +32:u05:bctsa_use_conn_in_rdma_mode,, +29:u06:csr_use_conn_in_rdma_mode, +12:u07:Invoking, +23:u00:CDFC4_FORE_OR_BOTH,, +32:u13:bctsa_use_conn_in_rdma_mode,, +29:u14:csr_use_conn_in_rdma_mode, +15:u00:CDFS4_BOTH., +32:u04:bctsa_use_conn_in_rdma_mode,, +29:u05:csr_use_conn_in_rdma_mode, +12:u06:Invoking, +32:u12:bctsa_use_conn_in_rdma_mode,, +29:u13:csr_use_conn_in_rdma_mode, +12:u14:invoking, +32:u03:bctsa_use_conn_in_rdma_mode,, +29:u04:csr_use_conn_in_rdma_mode, +12:u05:Invoking, +32:u11:bctsa_use_conn_in_rdma_mode,, +29:u12:csr_use_conn_in_rdma_mode, +12:u13:invoking, +7:u22:csr, +8:u23:csr_, +32:u02:bctsa_use_conn_in_rdma_mode,, +29:u03:csr_use_conn_in_rdma_mode, +12:u04:Invoking, +12:u08:18.34.4., +32:u10:bctsa_use_conn_in_rdma_mode,, +29:u11:csr_use_conn_in_rdma_mode, +12:u12:invoking, +7:u22:Inv, +8:u23:Invo, +32:u01:bctsa_use_conn_in_rdma_mode,, +29:u02:csr_use_conn_in_rdma_mode, +12:u03:Invoking, +29:u10:csr_use_conn_in_rdma_mode, +12:u11:invoking, +32:u00:bctsa_use_conn_in_rdma_mode,, +29:u01:csr_use_conn_in_rdma_mode, +12:u02:Invoking, +12:u07:18.34.4., +12:u10:invoking, +29:u00:csr_use_conn_in_rdma_mode, +12:u01:Invoking, +12:u06:18.34.4., +12:u14:18.34.4., +12:u00:Invoking, +12:u05:18.34.4., +12:u13:18.34.4., +12:u04:18.34.4., +12:u12:18.34.4., +12:u03:18.34.4., +12:u11:18.34.4., +12:u02:18.34.4., +12:u10:18.34.4., +12:u01:18.34.4., +12:u00:18.34.4., +20:u14:spo_must_enforce, +20:u13:spo_must_enforce, +20:u12:spo_must_enforce, +8:u23:spo_, +20:u11:spo_must_enforce, +9:u08:codes, +20:u10:spo_must_enforce, +9:u07:codes, +11:u08:single,, +9:u06:codes, +9:u14:codes, +9:u05:codes, +11:u07:single,, +9:u13:codes, +9:u04:codes, +11:u06:single,, +9:u12:codes, +11:u14:single,, +7:u22:cod, +8:u23:code, +9:u03:codes, +11:u05:single,, +8:u08:519], +9:u11:codes, +11:u13:single,, +9:u02:codes, +11:u04:single,, +8:u07:519], +9:u10:codes, +11:u12:single,, +9:u01:codes, +11:u03:single,, +8:u06:519], +11:u11:single,, +9:u00:codes, +11:u02:single,, +8:u05:519], +11:u10:single,, +11:u01:single,, +8:u04:519], +11:u00:single,, +8:u03:519], +8:u02:519], +8:u01:519], +8:u00:519], +8:uI2:..,), +8:uI1:..,), +8:uI0:..,), +10:u14:cache., +10:u13:cache., +10:u12:cache., +10:u11:cache., +10:u10:cache., +12:u14:succeed., +12:u13:succeed., +8:uI2:.,-., +12:u12:succeed., +8:uI1:.,-., +12:u11:succeed., +8:uI0:.,-., +13:u08:(owners),, +12:u10:succeed., +13:u07:(owners),, +13:u06:(owners),, +13:u05:(owners),, +12:u08:18.35.1., +13:u04:(owners),, +13:u03:(owners),, +12:u07:18.35.1., +13:u02:(owners),, +34:u08:EXCHGID4_FLAG_SUPP_MOVED_REFER, +12:u06:18.35.1., +13:u01:(owners),, +34:u07:EXCHGID4_FLAG_SUPP_MOVED_REFER, +12:u14:18.35.1., +12:u05:18.35.1., +13:u00:(owners),, +34:u06:EXCHGID4_FLAG_SUPP_MOVED_REFER, +33:u08:EXCHGID4_FLAG_SUPP_MOVED_MIGR, +12:u13:18.35.1., +12:u04:18.35.1., +34:u05:EXCHGID4_FLAG_SUPP_MOVED_REFER, +33:u07:EXCHGID4_FLAG_SUPP_MOVED_MIGR, +12:u12:18.35.1., +12:u03:18.35.1., +34:u04:EXCHGID4_FLAG_SUPP_MOVED_REFER, +33:u06:EXCHGID4_FLAG_SUPP_MOVED_MIGR, +12:u11:18.35.1., +12:u02:18.35.1., +34:u03:EXCHGID4_FLAG_SUPP_MOVED_REFER, +33:u05:EXCHGID4_FLAG_SUPP_MOVED_MIGR, +12:u10:18.35.1., +12:u01:18.35.1., +34:u02:EXCHGID4_FLAG_SUPP_MOVED_REFER, +33:u04:EXCHGID4_FLAG_SUPP_MOVED_MIGR, +12:u00:18.35.1., +34:u01:EXCHGID4_FLAG_SUPP_MOVED_REFER, +33:u03:EXCHGID4_FLAG_SUPP_MOVED_MIGR, +34:u00:EXCHGID4_FLAG_SUPP_MOVED_REFER, +33:u02:EXCHGID4_FLAG_SUPP_MOVED_MIGR, +33:u01:EXCHGID4_FLAG_SUPP_MOVED_MIGR, +33:u00:EXCHGID4_FLAG_SUPP_MOVED_MIGR, +27:u08:EXCHGID4_FLAG_MASK_PNFS, +27:u07:EXCHGID4_FLAG_MASK_PNFS, +15:u08:0x00070000;, +27:u06:EXCHGID4_FLAG_MASK_PNFS, +15:u07:0x00070000;, +37:u08:EXCHGID4_FLAG_UPD_CONFIRMED_REC_A, +27:u05:EXCHGID4_FLAG_MASK_PNFS, +15:u06:0x00070000;, +37:u07:EXCHGID4_FLAG_UPD_CONFIRMED_REC_A, +27:u04:EXCHGID4_FLAG_MASK_PNFS, +15:u05:0x00070000;, +37:u06:EXCHGID4_FLAG_UPD_CONFIRMED_REC_A, +27:u03:EXCHGID4_FLAG_MASK_PNFS, +15:u04:0x00070000;, +37:u05:EXCHGID4_FLAG_UPD_CONFIRMED_REC_A, +8:u08:520], +27:u02:EXCHGID4_FLAG_MASK_PNFS, +15:u03:0x00070000;, +37:u04:EXCHGID4_FLAG_UPD_CONFIRMED_REC_A, +8:u07:520], +27:u01:EXCHGID4_FLAG_MASK_PNFS, +15:u02:0x00070000;, +37:u03:EXCHGID4_FLAG_UPD_CONFIRMED_REC_A, +8:u06:520], +27:u00:EXCHGID4_FLAG_MASK_PNFS, +15:u01:0x00070000;, +37:u02:EXCHGID4_FLAG_UPD_CONFIRMED_REC_A, +8:u05:520], +15:u00:0x00070000;, +37:u01:EXCHGID4_FLAG_UPD_CONFIRMED_REC_A, +8:u04:520], +29:u08:EXCHGID4_FLAG_CONFIRMED_R, +37:u00:EXCHGID4_FLAG_UPD_CONFIRMED_REC_A, +8:u03:520], +29:u07:EXCHGID4_FLAG_CONFIRMED_R, +15:u08:0x80000000;, +8:u02:520], +29:u06:EXCHGID4_FLAG_CONFIRMED_R, +15:u07:0x80000000;, +22:u08:state_protect_ops4, +8:u01:520], +29:u05:EXCHGID4_FLAG_CONFIRMED_R, +15:u06:0x80000000;, +22:u07:state_protect_ops4, +21:u08:spo_must_enforce;, +8:u00:520], +29:u04:EXCHGID4_FLAG_CONFIRMED_R, +15:u05:0x80000000;, +22:u06:state_protect_ops4, +21:u07:spo_must_enforce;, +19:u08:spo_must_allow;, +29:u03:EXCHGID4_FLAG_CONFIRMED_R, +15:u04:0x80000000;, +22:u05:state_protect_ops4, +21:u06:spo_must_enforce;, +19:u07:spo_must_allow;, +29:u02:EXCHGID4_FLAG_CONFIRMED_R, +15:u03:0x80000000;, +22:u04:state_protect_ops4, +21:u05:spo_must_enforce;, +19:u06:spo_must_allow;, +17:u08:ssv_sp_parms4, +12:u08:ssp_ops;, +29:u01:EXCHGID4_FLAG_CONFIRMED_R, +15:u02:0x80000000;, +22:u03:state_protect_ops4, +21:u04:spo_must_enforce;, +19:u05:spo_must_allow;, +17:u07:ssv_sp_parms4, +29:u00:EXCHGID4_FLAG_CONFIRMED_R, +15:u01:0x80000000;, +22:u02:state_protect_ops4, +21:u03:spo_must_enforce;, +19:u04:spo_must_allow;, +17:u06:ssv_sp_parms4, +12:u07:ssp_ops;, +20:u08:ssp_hash_algs<>;, +15:u00:0x80000000;, +22:u01:state_protect_ops4, +21:u02:spo_must_enforce;, +19:u03:spo_must_allow;, +17:u05:ssv_sp_parms4, +22:u14:state_protect_ops4, +12:u06:ssp_ops;, +22:u00:state_protect_ops4, +21:u01:spo_must_enforce;, +19:u02:spo_must_allow;, +17:u04:ssv_sp_parms4, +22:u13:state_protect_ops4, +12:u14:ssp_ops;, +12:u05:ssp_ops;, +20:u07:ssp_hash_algs<>;, +20:u08:ssp_encr_algs<>;, +21:u00:spo_must_enforce;, +19:u01:spo_must_allow;, +17:u03:ssv_sp_parms4, +22:u12:state_protect_ops4, +12:u13:ssp_ops;, +12:u04:ssp_ops;, +20:u06:ssp_hash_algs<>;, +19:u00:spo_must_allow;, +17:u02:ssv_sp_parms4, +22:u11:state_protect_ops4, +12:u12:ssp_ops;, +20:u14:ssp_hash_algs<>;, +8:u23:ssp_, +12:u03:ssp_ops;, +20:u05:ssp_hash_algs<>;, +20:u07:ssp_encr_algs<>;, +15:u08:ssp_window;, +17:u01:ssv_sp_parms4, +22:u10:state_protect_ops4, +12:u11:ssp_ops;, +20:u13:ssp_hash_algs<>;, +12:u02:ssp_ops;, +20:u04:ssp_hash_algs<>;, +20:u06:ssp_encr_algs<>;, +17:u00:ssv_sp_parms4, +12:u10:ssp_ops;, +20:u12:ssp_hash_algs<>;, +20:u14:ssp_encr_algs<>;, +12:u01:ssp_ops;, +20:u03:ssp_hash_algs<>;, +20:u05:ssp_encr_algs<>;, +15:u07:ssp_window;, +24:u08:ssp_num_gss_handles;, +20:u11:ssp_hash_algs<>;, +20:u13:ssp_encr_algs<>;, +12:u00:ssp_ops;, +20:u02:ssp_hash_algs<>;, +20:u04:ssp_encr_algs<>;, +15:u06:ssp_window;, +20:u10:ssp_hash_algs<>;, +20:u12:ssp_encr_algs<>;, +15:u14:ssp_window;, +20:u01:ssp_hash_algs<>;, +20:u03:ssp_encr_algs<>;, +15:u05:ssp_window;, +24:u07:ssp_num_gss_handles;, +20:u11:ssp_encr_algs<>;, +15:u13:ssp_window;, +20:u00:ssp_hash_algs<>;, +20:u02:ssp_encr_algs<>;, +15:u04:ssp_window;, +24:u06:ssp_num_gss_handles;, +12:u08:SP4_NONE, +22:u08:state_protect_how4, +20:u10:ssp_encr_algs<>;, +15:u12:ssp_window;, +24:u14:ssp_num_gss_handles;, +20:u01:ssp_encr_algs<>;, +15:u03:ssp_window;, +24:u05:ssp_num_gss_handles;, +22:u07:state_protect_how4, +15:u11:ssp_window;, +24:u13:ssp_num_gss_handles;, +20:u00:ssp_encr_algs<>;, +15:u02:ssp_window;, +24:u04:ssp_num_gss_handles;, +12:u07:SP4_NONE, +22:u06:state_protect_how4, +15:u10:ssp_window;, +24:u12:ssp_num_gss_handles;, +15:u01:ssp_window;, +24:u03:ssp_num_gss_handles;, +12:u06:SP4_NONE, +22:u05:state_protect_how4, +24:u11:ssp_num_gss_handles;, +12:u14:sp4_none, +15:u00:ssp_window;, +24:u02:ssp_num_gss_handles;, +12:u05:SP4_NONE, +22:u04:state_protect_how4, +24:u10:ssp_num_gss_handles;, +12:u13:sp4_none, +24:u01:ssp_num_gss_handles;, +12:u04:SP4_NONE, +22:u03:state_protect_how4, +20:u08:state_protect4_a, +12:u12:sp4_none, +24:u00:ssp_num_gss_handles;, +12:u03:SP4_NONE, +22:u02:state_protect_how4, +20:u07:state_protect4_a, +13:u08:SP4_NONE:, +12:u11:sp4_none, +12:u02:SP4_NONE, +22:u01:state_protect_how4, +20:u06:state_protect4_a, +13:u07:SP4_NONE:, +12:u10:sp4_none, +12:u01:SP4_NONE, +22:u00:state_protect_how4, +20:u05:state_protect4_a, +13:u06:SP4_NONE:, +18:u08:SP4_MACH_CRED:, +12:u00:SP4_NONE, +17:u08:spa_mach_ops;, +20:u04:state_protect4_a, +13:u05:SP4_NONE:, +18:u07:SP4_MACH_CRED:, +20:u03:state_protect4_a, +13:u04:SP4_NONE:, +18:u06:SP4_MACH_CRED:, +17:u07:spa_mach_ops;, +20:u02:state_protect4_a, +13:u03:SP4_NONE:, +18:u05:SP4_MACH_CRED:, +12:u08:SP4_SSV:, +17:u06:spa_mach_ops;, +18:u08:spa_ssv_parms;, +20:u01:state_protect4_a, +13:u02:SP4_NONE:, +18:u04:SP4_MACH_CRED:, +12:u07:SP4_SSV:, +17:u14:spa_mach_ops;, +17:u05:spa_mach_ops;, +20:u00:state_protect4_a, +13:u01:SP4_NONE:, +18:u03:SP4_MACH_CRED:, +12:u06:SP4_SSV:, +17:u13:spa_mach_ops;, +17:u04:spa_mach_ops;, +18:u07:spa_ssv_parms;, +13:u00:SP4_NONE:, +18:u02:SP4_MACH_CRED:, +12:u05:SP4_SSV:, +17:u12:spa_mach_ops;, +17:u14:ssv_sp_parms4, +8:u23:spa_, +17:u03:spa_mach_ops;, +18:u06:spa_ssv_parms;, +18:u01:SP4_MACH_CRED:, +12:u04:SP4_SSV:, +17:u11:spa_mach_ops;, +17:u13:ssv_sp_parms4, +18:u14:spa_ssv_parms;, +17:u02:spa_mach_ops;, +18:u05:spa_ssv_parms;, +20:u08:eia_clientowner;, +18:u00:SP4_MACH_CRED:, +12:u03:SP4_SSV:, +17:u10:spa_mach_ops;, +17:u12:ssv_sp_parms4, +18:u13:spa_ssv_parms;, +17:u01:spa_mach_ops;, +18:u04:spa_ssv_parms;, +12:u02:SP4_SSV:, +17:u11:ssv_sp_parms4, +18:u12:spa_ssv_parms;, +17:u00:spa_mach_ops;, +18:u03:spa_ssv_parms;, +20:u07:eia_clientowner;, +14:u08:eia_flags;, +12:u01:SP4_SSV:, +17:u10:ssv_sp_parms4, +18:u11:spa_ssv_parms;, +17:u14:client_owner4, +18:u02:spa_ssv_parms;, +20:u06:eia_clientowner;, +12:u00:SP4_SSV:, +18:u10:spa_ssv_parms;, +17:u13:client_owner4, +20:u14:eia_clientowner;, +18:u01:spa_ssv_parms;, +20:u05:eia_clientowner;, +14:u07:eia_flags;, +22:u08:eia_state_protect;, +17:u12:client_owner4, +20:u13:eia_clientowner;, +18:u00:spa_ssv_parms;, +20:u04:eia_clientowner;, +14:u06:eia_flags;, +17:u11:client_owner4, +20:u12:eia_clientowner;, +14:u14:eia_flags;, +7:u22:eia, +8:u23:eia_, +20:u03:eia_clientowner;, +14:u05:eia_flags;, +22:u07:eia_state_protect;, +26:u08:eia_client_impl_id<1>;, +17:u10:client_owner4, +20:u11:eia_clientowner;, +14:u13:eia_flags;, +20:u14:state_protect4_a, +20:u02:eia_clientowner;, +14:u04:eia_flags;, +22:u06:eia_state_protect;, +20:u10:eia_clientowner;, +14:u12:eia_flags;, +20:u13:state_protect4_a, +22:u14:eia_state_protect;, +20:u01:eia_clientowner;, +14:u03:eia_flags;, +22:u05:eia_state_protect;, +26:u07:eia_client_impl_id<1>;, +12:u08:18.35.2., +14:u11:eia_flags;, +20:u12:state_protect4_a, +22:u13:eia_state_protect;, +16:u14:nfs_impl_id4, +20:u00:eia_clientowner;, +14:u02:eia_flags;, +22:u04:eia_state_protect;, +26:u06:eia_client_impl_id<1>;, +14:u10:eia_flags;, +20:u11:state_protect4_a, +22:u12:eia_state_protect;, +16:u13:nfs_impl_id4, +26:u14:eia_client_impl_id<1>;, +14:u01:eia_flags;, +22:u03:eia_state_protect;, +26:u05:eia_client_impl_id<1>;, +12:u07:18.35.2., +20:u10:state_protect4_a, +22:u11:eia_state_protect;, +16:u12:nfs_impl_id4, +26:u13:eia_client_impl_id<1>;, +14:u00:eia_flags;, +22:u02:eia_state_protect;, +26:u04:eia_client_impl_id<1>;, +12:u06:18.35.2., +22:u10:eia_state_protect;, +16:u11:nfs_impl_id4, +26:u12:eia_client_impl_id<1>;, +12:u14:18.35.2., +22:u01:eia_state_protect;, +26:u03:eia_client_impl_id<1>;, +12:u05:18.35.2., +8:u08:521], +16:u10:nfs_impl_id4, +26:u11:eia_client_impl_id<1>;, +12:u13:18.35.2., +22:u00:eia_state_protect;, +26:u02:eia_client_impl_id<1>;, +12:u04:18.35.2., +8:u07:521], +26:u10:eia_client_impl_id<1>;, +12:u12:18.35.2., +26:u01:eia_client_impl_id<1>;, +12:u03:18.35.2., +8:u06:521], +12:u11:18.35.2., +26:u00:eia_client_impl_id<1>;, +12:u02:18.35.2., +8:u05:521], +12:u10:18.35.2., +12:u01:18.35.2., +8:u04:521], +18:u08:ssv_prot_info4, +12:u00:18.35.2., +12:u08:spi_ops;, +8:u03:521], +18:u07:ssv_prot_info4, +8:u02:521], +18:u06:ssv_prot_info4, +12:u07:spi_ops;, +17:u08:spi_hash_alg;, +8:u01:521], +18:u05:ssv_prot_info4, +12:u06:spi_ops;, +8:u00:521], +18:u04:ssv_prot_info4, +12:u14:spi_ops;, +12:u05:spi_ops;, +17:u07:spi_hash_alg;, +17:u08:spi_encr_alg;, +18:u03:ssv_prot_info4, +12:u13:spi_ops;, +12:u04:spi_ops;, +17:u06:spi_hash_alg;, +18:u02:ssv_prot_info4, +12:u12:spi_ops;, +17:u14:spi_hash_alg;, +7:u22:spi, +8:u23:spi_, +12:u03:spi_ops;, +17:u05:spi_hash_alg;, +17:u07:spi_encr_alg;, +16:u08:spi_ssv_len;, +18:u01:ssv_prot_info4, +12:u11:spi_ops;, +17:u13:spi_hash_alg;, +12:u02:spi_ops;, +17:u04:spi_hash_alg;, +17:u06:spi_encr_alg;, +18:u00:ssv_prot_info4, +12:u10:spi_ops;, +17:u12:spi_hash_alg;, +17:u14:spi_encr_alg;, +12:u01:spi_ops;, +17:u03:spi_hash_alg;, +17:u05:spi_encr_alg;, +16:u07:spi_ssv_len;, +15:u08:spi_window;, +17:u11:spi_hash_alg;, +17:u13:spi_encr_alg;, +12:u00:spi_ops;, +17:u02:spi_hash_alg;, +17:u04:spi_encr_alg;, +16:u06:spi_ssv_len;, +17:u10:spi_hash_alg;, +17:u12:spi_encr_alg;, +16:u14:spi_ssv_len;, +17:u01:spi_hash_alg;, +17:u03:spi_encr_alg;, +16:u05:spi_ssv_len;, +15:u07:spi_window;, +18:u08:spi_handles<>;, +17:u11:spi_encr_alg;, +16:u13:spi_ssv_len;, +17:u00:spi_hash_alg;, +17:u02:spi_encr_alg;, +16:u04:spi_ssv_len;, +15:u06:spi_window;, +17:u10:spi_encr_alg;, +16:u12:spi_ssv_len;, +15:u14:spi_window;, +17:u01:spi_encr_alg;, +16:u03:spi_ssv_len;, +15:u05:spi_window;, +18:u07:spi_handles<>;, +16:u11:spi_ssv_len;, +15:u13:spi_window;, +17:u00:spi_encr_alg;, +16:u02:spi_ssv_len;, +15:u04:spi_window;, +18:u06:spi_handles<>;, +20:u08:state_protect4_r, +16:u10:spi_ssv_len;, +15:u12:spi_window;, +18:u14:spi_handles<>;, +16:u01:spi_ssv_len;, +15:u03:spi_window;, +18:u05:spi_handles<>;, +20:u07:state_protect4_r, +15:u11:spi_window;, +18:u13:spi_handles<>;, +16:u00:spi_ssv_len;, +15:u02:spi_window;, +18:u04:spi_handles<>;, +20:u06:state_protect4_r, +15:u10:spi_window;, +18:u12:spi_handles<>;, +15:u01:spi_window;, +18:u03:spi_handles<>;, +20:u05:state_protect4_r, +18:u11:spi_handles<>;, +15:u00:spi_window;, +18:u02:spi_handles<>;, +17:u08:spr_mach_ops;, +20:u04:state_protect4_r, +18:u10:spi_handles<>;, +18:u01:spi_handles<>;, +20:u03:state_protect4_r, +18:u00:spi_handles<>;, +17:u07:spr_mach_ops;, +20:u02:state_protect4_r, +17:u06:spr_mach_ops;, +17:u08:spr_ssv_info;, +20:u01:state_protect4_r, +17:u14:spr_mach_ops;, +17:u05:spr_mach_ops;, +20:u00:state_protect4_r, +17:u13:spr_mach_ops;, +17:u04:spr_mach_ops;, +17:u07:spr_ssv_info;, +17:u12:spr_mach_ops;, +18:u14:ssv_prot_info4, +7:u22:spr, +8:u23:spr_, +17:u03:spr_mach_ops;, +17:u06:spr_ssv_info;, +21:u08:EXCHANGE_ID4resok, +17:u11:spr_mach_ops;, +18:u13:ssv_prot_info4, +17:u14:spr_ssv_info;, +17:u02:spr_mach_ops;, +17:u05:spr_ssv_info;, +17:u08:eir_clientid;, +21:u07:EXCHANGE_ID4resok, +17:u10:spr_mach_ops;, +18:u12:ssv_prot_info4, +17:u13:spr_ssv_info;, +17:u01:spr_mach_ops;, +17:u04:spr_ssv_info;, +21:u06:EXCHANGE_ID4resok, +18:u11:ssv_prot_info4, +17:u12:spr_ssv_info;, +17:u00:spr_mach_ops;, +17:u03:spr_ssv_info;, +17:u07:eir_clientid;, +19:u08:eir_sequenceid;, +21:u05:EXCHANGE_ID4resok, +18:u10:ssv_prot_info4, +17:u11:spr_ssv_info;, +17:u02:spr_ssv_info;, +17:u06:eir_clientid;, +21:u04:EXCHANGE_ID4resok, +17:u10:spr_ssv_info;, +17:u14:eir_clientid;, +17:u01:spr_ssv_info;, +17:u05:eir_clientid;, +19:u07:eir_sequenceid;, +14:u08:eir_flags;, +21:u03:EXCHANGE_ID4resok, +17:u13:eir_clientid;, +15:u14:sequenceid4, +17:u00:spr_ssv_info;, +17:u04:eir_clientid;, +19:u06:eir_sequenceid;, +21:u02:EXCHANGE_ID4resok, +17:u12:eir_clientid;, +15:u13:sequenceid4, +19:u14:eir_sequenceid;, +17:u03:eir_clientid;, +19:u05:eir_sequenceid;, +14:u07:eir_flags;, +21:u01:EXCHANGE_ID4resok, +22:u08:eir_state_protect;, +17:u11:eir_clientid;, +15:u12:sequenceid4, +19:u13:eir_sequenceid;, +17:u02:eir_clientid;, +19:u04:eir_sequenceid;, +14:u06:eir_flags;, +21:u08:eir_server_owner;, +21:u00:EXCHANGE_ID4resok, +22:u07:eir_state_protect;, +17:u10:eir_clientid;, +15:u11:sequenceid4, +19:u12:eir_sequenceid;, +14:u14:eir_flags;, +17:u01:eir_clientid;, +19:u03:eir_sequenceid;, +14:u05:eir_flags;, +22:u06:eir_state_protect;, +15:u10:sequenceid4, +19:u11:eir_sequenceid;, +14:u13:eir_flags;, +20:u14:state_protect4_r, +17:u00:eir_clientid;, +19:u02:eir_sequenceid;, +14:u04:eir_flags;, +21:u07:eir_server_owner;, +40:u08:eir_server_scope<NFS4_OPAQUE_LIMIT>;, +22:u05:eir_state_protect;, +19:u10:eir_sequenceid;, +14:u12:eir_flags;, +20:u13:state_protect4_r, +17:u14:server_owner4, +19:u01:eir_sequenceid;, +14:u03:eir_flags;, +21:u06:eir_server_owner;, +22:u04:eir_state_protect;, +14:u11:eir_flags;, +20:u12:state_protect4_r, +17:u13:server_owner4, +21:u14:eir_server_owner;, +19:u00:eir_sequenceid;, +14:u02:eir_flags;, +21:u05:eir_server_owner;, +40:u07:eir_server_scope<NFS4_OPAQUE_LIMIT>;, +26:u08:eir_server_impl_id<1>;, +22:u03:eir_state_protect;, +14:u10:eir_flags;, +20:u11:state_protect4_r, +17:u12:server_owner4, +21:u13:eir_server_owner;, +14:u01:eir_flags;, +21:u04:eir_server_owner;, +40:u06:eir_server_scope<NFS4_OPAQUE_LIMIT>;, +22:u02:eir_state_protect;, +20:u10:state_protect4_r, +17:u11:server_owner4, +21:u12:eir_server_owner;, +40:u14:eir_server_scope<nfs4_opaque_limit>;, +14:u00:eir_flags;, +21:u03:eir_server_owner;, +40:u05:eir_server_scope<NFS4_OPAQUE_LIMIT>;, +26:u07:eir_server_impl_id<1>;, +22:u01:eir_state_protect;, +17:u10:server_owner4, +21:u11:eir_server_owner;, +40:u13:eir_server_scope<nfs4_opaque_limit>;, +21:u02:eir_server_owner;, +40:u04:eir_server_scope<NFS4_OPAQUE_LIMIT>;, +26:u06:eir_server_impl_id<1>;, +22:u00:eir_state_protect;, +21:u10:eir_server_owner;, +40:u12:eir_server_scope<nfs4_opaque_limit>;, +26:u14:eir_server_impl_id<1>;, +21:u01:eir_server_owner;, +40:u03:eir_server_scope<NFS4_OPAQUE_LIMIT>;, +26:u05:eir_server_impl_id<1>;, +40:u11:eir_server_scope<nfs4_opaque_limit>;, +26:u13:eir_server_impl_id<1>;, +21:u00:eir_server_owner;, +40:u02:eir_server_scope<NFS4_OPAQUE_LIMIT>;, +26:u04:eir_server_impl_id<1>;, +15:u08:eir_resok4;, +40:u10:eir_server_scope<nfs4_opaque_limit>;, +26:u12:eir_server_impl_id<1>;, +40:u01:eir_server_scope<NFS4_OPAQUE_LIMIT>;, +26:u03:eir_server_impl_id<1>;, +26:u11:eir_server_impl_id<1>;, +40:u00:eir_server_scope<NFS4_OPAQUE_LIMIT>;, +26:u02:eir_server_impl_id<1>;, +15:u07:eir_resok4;, +26:u10:eir_server_impl_id<1>;, +21:u14:exchange_id4resok, +26:u01:eir_server_impl_id<1>;, +15:u06:eir_resok4;, +21:u13:exchange_id4resok, +15:u14:eir_resok4;, +26:u00:eir_server_impl_id<1>;, +15:u05:eir_resok4;, +12:u08:18.35.3., +21:u12:exchange_id4resok, +15:u13:eir_resok4;, +15:u04:eir_resok4;, +21:u11:exchange_id4resok, +15:u12:eir_resok4;, +15:u03:eir_resok4;, +12:u07:18.35.3., +16:u08:client_owner, +21:u10:exchange_id4resok, +15:u11:eir_resok4;, +15:u02:eir_resok4;, +12:u06:18.35.3., +15:u10:eir_resok4;, +12:u14:18.35.3., +15:u01:eir_resok4;, +12:u05:18.35.3., +16:u07:client_owner, +15:u08:Migration),, +12:u13:18.35.3., +15:u00:eir_resok4;, +12:u04:18.35.3., +16:u06:client_owner, +12:u12:18.35.3., +16:u14:client_owner, +12:u03:18.35.3., +16:u05:client_owner, +15:u07:Migration),, +12:u11:18.35.3., +16:u13:client_owner, +12:u02:18.35.3., +16:u04:client_owner, +15:u06:Migration),, +12:u10:18.35.3., +16:u12:client_owner, +15:u14:migration),, +12:u01:18.35.3., +16:u03:client_owner, +15:u05:Migration),, +16:u11:client_owner, +15:u13:migration),, +12:u00:18.35.3., +16:u02:client_owner, +15:u04:Migration),, +16:u10:client_owner, +15:u12:migration),, +16:u01:client_owner, +15:u03:Migration),, +15:u11:migration),, +16:u00:client_owner, +15:u02:Migration),, +15:u10:migration),, +15:u01:Migration),, +8:u08:522], +15:u00:Migration),, +8:u07:522], +8:u06:522], +8:u05:522], +8:u04:522], +8:u03:522], +8:u02:522], +8:u01:522], +8:u00:522], +19:u08:CREATE_SESSION., +19:u08:eir_sequenceid,, +19:u07:eir_sequenceid,, +19:u07:CREATE_SESSION., +14:u08:eir_flags,, +19:u06:eir_sequenceid,, +19:u06:CREATE_SESSION., +19:u05:eir_sequenceid,, +19:u14:create_session., +19:u05:CREATE_SESSION., +14:u07:eir_flags,, +19:u04:eir_sequenceid,, +19:u13:create_session., +19:u04:CREATE_SESSION., +14:u06:eir_flags,, +19:u03:eir_sequenceid,, +19:u12:create_session., +14:u14:eir_flags,, +19:u03:CREATE_SESSION., +14:u05:eir_flags,, +19:u02:eir_sequenceid,, +19:u11:create_session., +14:u13:eir_flags,, +19:u02:CREATE_SESSION., +14:u04:eir_flags,, +19:u01:eir_sequenceid,, +19:u10:create_session., +14:u12:eir_flags,, +19:u01:CREATE_SESSION., +14:u03:eir_flags,, +19:u00:eir_sequenceid,, +14:u11:eir_flags,, +19:u00:CREATE_SESSION., +14:u02:eir_flags,, +14:u10:eir_flags,, +14:u01:eir_flags,, +14:u00:eir_flags,, +19:u08:eia_clientowner, +19:u07:eia_clientowner, +19:u06:eia_clientowner, +19:u05:eia_clientowner, +11:u08:Whereas, +19:u04:eia_clientowner, +13:u14:describes, +19:u03:eia_clientowner, +13:u13:describes, +11:u07:Whereas, +15:u08:properties,, +19:u02:eia_clientowner, +13:u12:describes, +11:u06:Whereas, +19:u01:eia_clientowner, +13:u11:describes, +11:u14:whereas, +11:u05:Whereas, +15:u07:properties,, +16:u08:incarnations, +19:u00:eia_clientowner, +13:u10:describes, +11:u13:whereas, +11:u04:Whereas, +15:u06:properties,, +11:u12:whereas, +15:u14:properties,, +11:u03:Whereas, +15:u05:properties,, +16:u07:incarnations, +11:u11:whereas, +15:u13:properties,, +11:u02:Whereas, +15:u04:properties,, +16:u06:incarnations, +11:u10:whereas, +15:u12:properties,, +16:u14:incarnations, +11:u01:Whereas, +15:u03:properties,, +16:u05:incarnations, +10:u08:former, +15:u11:properties,, +16:u13:incarnations, +11:u00:Whereas, +15:u02:properties,, +16:u04:incarnations, +10:u07:former, +15:u10:properties,, +16:u12:incarnations, +15:u01:properties,, +16:u03:incarnations, +10:u06:former, +16:u11:incarnations, +15:u00:properties,, +16:u02:incarnations, +10:u05:former, +16:u10:incarnations, +16:u01:incarnations, +10:u04:former, +11:u08:11.10.9, +16:u00:incarnations, +10:u03:former, +11:u07:11.10.9, +10:u02:former, +11:u06:11.10.9, +10:u01:former, +11:u05:11.10.9, +8:u08:523], +10:u00:former, +11:u04:11.10.9, +8:u07:523], +11:u03:11.10.9, +8:u06:523], +11:u02:11.10.9, +8:u05:523], +11:u01:11.10.9, +8:u04:523], +11:u00:11.10.9, +8:u03:523], +8:u02:523], +8:u01:523], +8:u00:523], +13:u08:distinct., +21:u14:eir_server_scope,, +13:u07:distinct., +21:u13:eir_server_scope,, +13:u06:distinct., +21:u12:eir_server_scope,, +13:u14:distinct., +13:u05:distinct., +15:u08:so_major_id, +21:u11:eir_server_scope,, +13:u13:distinct., +13:u04:distinct., +21:u10:eir_server_scope,, +13:u12:distinct., +13:u03:distinct., +15:u07:so_major_id, +13:u11:distinct., +13:u02:distinct., +15:u06:so_major_id, +13:u10:distinct., +15:u14:so_major_id, +13:u01:distinct., +15:u05:so_major_id, +15:u13:so_major_id, +13:u00:distinct., +15:u04:so_major_id, +15:u12:so_major_id, +15:u03:so_major_id, +15:u11:so_major_id, +15:u02:so_major_id, +15:u10:so_major_id, +15:u01:so_major_id, +15:u00:so_major_id, +7:uI2:*(), +7:uI1:*(), +8:u08:524], +7:uI0:*(), +8:u07:524], +8:u06:524], +8:u05:524], +8:u04:524], +8:u03:524], +8:u02:524], +8:u01:524], +8:u00:524], +12:u14:property, +12:u13:property, +12:u12:property, +12:u11:property, +15:u08:spi_ssv_len, +12:u10:property, +15:u07:spi_ssv_len, +15:u06:spi_ssv_len, +15:u14:spi_ssv_len, +15:u05:spi_ssv_len, +15:u13:spi_ssv_len, +15:u04:spi_ssv_len, +15:u12:spi_ssv_len, +15:u03:spi_ssv_len, +15:u11:spi_ssv_len, +15:u02:spi_ssv_len, +15:u10:spi_ssv_len, +15:u01:spi_ssv_len, +9:uI2:(""),, +15:u00:spi_ssv_len, +9:uI1:(""),, +9:uI0:(""),, +14:u14:algorithm., +14:u13:algorithm., +7:u14:key, +14:u12:algorithm., +7:u13:key, +15:u08:recommended, +14:u11:algorithm., +7:u12:key, +7:u23:key, +14:u10:algorithm., +7:u11:key, +15:u07:recommended, +7:u10:key, +15:u06:recommended, +15:u05:recommended, +15:u04:recommended, +15:u03:recommended, +15:u02:recommended, +15:u01:recommended, +8:u08:525], +15:u00:recommended, +8:u07:525], +8:u06:525], +8:u05:525], +8:u04:525], +8:u03:525], +13:u08:truncated, +8:u02:525], +8:u01:525], +13:u07:truncated, +8:u00:525], +11:u08:RFC2104, +13:u06:truncated, +11:u07:RFC2104, +13:u14:truncated, +13:u05:truncated, +11:u06:RFC2104, +13:u13:truncated, +13:u04:truncated, +11:u05:RFC2104, +13:u12:truncated, +13:u03:truncated, +11:u04:RFC2104, +13:u11:truncated, +13:u02:truncated, +22:u08:eia_client_impl_id, +11:u03:RFC2104, +13:u10:truncated, +13:u01:truncated, +11:u02:RFC2104, +13:u00:truncated, +22:u07:eia_client_impl_id, +11:u01:RFC2104, +22:u06:eia_client_impl_id, +22:u08:eir_server_impl_id, +11:u00:RFC2104, +22:u14:eia_client_impl_id, +22:u05:eia_client_impl_id, +22:u13:eia_client_impl_id, +22:u04:eia_client_impl_id, +22:u07:eir_server_impl_id, +22:u12:eia_client_impl_id, +22:u03:eia_client_impl_id, +22:u06:eir_server_impl_id, +13:u08:eia_flags, +22:u11:eia_client_impl_id, +22:u14:eir_server_impl_id, +22:u02:eia_client_impl_id, +22:u05:eir_server_impl_id, +13:u07:eia_flags, +22:u10:eia_client_impl_id, +22:u13:eir_server_impl_id, +22:u01:eia_client_impl_id, +22:u04:eir_server_impl_id, +13:u06:eia_flags, +22:u12:eir_server_impl_id, +22:u00:eia_client_impl_id, +22:u03:eir_server_impl_id, +13:u05:eia_flags, +22:u11:eir_server_impl_id, +22:u02:eir_server_impl_id, +13:u04:eia_flags, +22:u10:eir_server_impl_id, +16:u14:capabilities, +22:u01:eir_server_impl_id, +8:u08:are,, +13:u03:eia_flags, +16:u13:capabilities, +22:u00:eir_server_impl_id, +13:u02:eia_flags, +16:u12:capabilities, +8:u07:are,, +13:u01:eia_flags, +16:u11:capabilities, +8:u06:are,, +13:u00:eia_flags, +16:u10:capabilities, +8:u14:are,, +8:u05:are,, +8:u13:are,, +8:u04:are,, +8:u12:are,, +8:u23:are,, +8:u03:are,, +8:u11:are,, +29:u14:exchgid4_flag_confirmed_r, +8:u02:are,, +8:u10:are,, +29:u13:exchgid4_flag_confirmed_r, +8:u01:are,, +29:u12:exchgid4_flag_confirmed_r, +15:u14:co_verifier, +8:u00:are,, +29:u11:exchgid4_flag_confirmed_r, +15:u13:co_verifier, +29:u10:exchgid4_flag_confirmed_r, +15:u12:co_verifier, +15:u11:co_verifier, +15:u08:unconfirmed, +15:u10:co_verifier, +39:u08:EXCHGID4_FLAG_UPD_CONFIRMED_REC_A)., +15:u07:unconfirmed, +13:u14:confirmed, +15:u06:unconfirmed, +39:u07:EXCHGID4_FLAG_UPD_CONFIRMED_REC_A)., +13:u13:confirmed, +15:u14:unconfirmed, +15:u05:unconfirmed, +39:u06:EXCHGID4_FLAG_UPD_CONFIRMED_REC_A)., +13:u12:confirmed, +15:u13:unconfirmed, +39:u14:exchgid4_flag_upd_confirmed_rec_a)., +15:u04:unconfirmed, +39:u05:EXCHGID4_FLAG_UPD_CONFIRMED_REC_A)., +13:u11:confirmed, +15:u12:unconfirmed, +39:u13:exchgid4_flag_upd_confirmed_rec_a)., +15:u03:unconfirmed, +39:u04:EXCHGID4_FLAG_UPD_CONFIRMED_REC_A)., +13:u10:confirmed, +15:u11:unconfirmed, +39:u12:exchgid4_flag_upd_confirmed_rec_a)., +15:u02:unconfirmed, +39:u03:EXCHGID4_FLAG_UPD_CONFIRMED_REC_A)., +15:u10:unconfirmed, +39:u11:exchgid4_flag_upd_confirmed_rec_a)., +15:u01:unconfirmed, +39:u02:EXCHGID4_FLAG_UPD_CONFIRMED_REC_A)., +39:u10:exchgid4_flag_upd_confirmed_rec_a)., +15:u00:unconfirmed, +39:u01:EXCHGID4_FLAG_UPD_CONFIRMED_REC_A)., +39:u00:EXCHGID4_FLAG_UPD_CONFIRMED_REC_A)., +8:u08:526], +8:u07:526], +8:u06:526], +8:u05:526], +8:u04:526], +8:u03:526], +14:u08:confirmed,, +8:u02:526], +14:u07:confirmed,, +8:u01:526], +14:u06:confirmed,, +8:u00:526], +14:u05:confirmed,, +14:u04:confirmed,, +14:u03:confirmed,, +12:u08:2.10.5);, +14:u02:confirmed,, +12:u07:2.10.5);, +14:u01:confirmed,, +12:u06:2.10.5);, +14:u00:confirmed,, +12:u05:2.10.5);, +8:uI2:..);, +12:u04:2.10.5);, +8:uI1:..);, +9:uI2:.,,,,, +12:u03:2.10.5);, +8:uI0:..);, +9:uI1:.,,,,, +12:u02:2.10.5);, +9:uI0:.,,,,, +12:u01:2.10.5);, +12:u00:2.10.5);, +14:u08:responding, +14:u07:responding, +8:u08:may,, +14:u06:responding, +8:u07:may,, +14:u14:responding, +14:u05:responding, +8:u06:may,, +14:u13:responding, +14:u04:responding, +8:u05:may,, +14:u12:responding, +14:u03:responding, +8:u04:may,, +14:u11:responding, +14:u02:responding, +8:u03:may,, +14:u10:responding, +34:u14:exchgid4_flag_supp_moved_refer, +14:u01:responding, +8:u02:may,, +34:u13:exchgid4_flag_supp_moved_refer, +14:u00:responding, +8:u01:may,, +34:u12:exchgid4_flag_supp_moved_refer, +8:u00:may,, +34:u11:exchgid4_flag_supp_moved_refer, +34:u10:exchgid4_flag_supp_moved_refer, +33:u14:exchgid4_flag_supp_moved_migr, +33:u13:exchgid4_flag_supp_moved_migr, +33:u12:exchgid4_flag_supp_moved_migr, +37:u08:EXCHGID4_FLAG_BIND_PRINC_STATEID., +33:u11:exchgid4_flag_supp_moved_migr, +37:u07:EXCHGID4_FLAG_BIND_PRINC_STATEID., +33:u10:exchgid4_flag_supp_moved_migr, +38:u08:EXCHGID4_FLAG_BIND_PRINC_STATEID's, +37:u06:EXCHGID4_FLAG_BIND_PRINC_STATEID., +37:u05:EXCHGID4_FLAG_BIND_PRINC_STATEID., +38:u07:EXCHGID4_FLAG_BIND_PRINC_STATEID's, +37:u04:EXCHGID4_FLAG_BIND_PRINC_STATEID., +7:u14:it., +38:u06:EXCHGID4_FLAG_BIND_PRINC_STATEID's, +37:u03:EXCHGID4_FLAG_BIND_PRINC_STATEID., +7:u13:it., +38:u14:exchgid4_flag_bind_princ_stateid's, +38:u05:EXCHGID4_FLAG_BIND_PRINC_STATEID's, +37:u02:EXCHGID4_FLAG_BIND_PRINC_STATEID., +7:u12:it., +38:u13:exchgid4_flag_bind_princ_stateid's, +7:u22:it., +7:u23:it., +38:u04:EXCHGID4_FLAG_BIND_PRINC_STATEID's, +37:u01:EXCHGID4_FLAG_BIND_PRINC_STATEID., +8:u08:527], +7:u11:it., +38:u12:exchgid4_flag_bind_princ_stateid's, +38:u03:EXCHGID4_FLAG_BIND_PRINC_STATEID's, +37:u00:EXCHGID4_FLAG_BIND_PRINC_STATEID., +8:u07:527], +7:u10:it., +38:u11:exchgid4_flag_bind_princ_stateid's, +38:u02:EXCHGID4_FLAG_BIND_PRINC_STATEID's, +8:u06:527], +38:u10:exchgid4_flag_bind_princ_stateid's, +38:u01:EXCHGID4_FLAG_BIND_PRINC_STATEID's, +8:u05:527], +38:u00:EXCHGID4_FLAG_BIND_PRINC_STATEID's, +8:u04:527], +12:u08:Existing, +8:u03:527], +8:u02:527], +12:u07:Existing, +8:u01:527], +12:u06:Existing, +8:u00:527], +12:u05:Existing, +31:u08:EXCHGID4_FLAG_USE_NON_PNFS,, +12:u04:Existing, +10:u08:convey, +31:u07:EXCHGID4_FLAG_USE_NON_PNFS,, +7:u22:Exi, +8:u23:Exis, +12:u03:Existing, +31:u06:EXCHGID4_FLAG_USE_NON_PNFS,, +12:u02:Existing, +10:u07:convey, +11:u08:(roles), +31:u05:EXCHGID4_FLAG_USE_NON_PNFS,, +12:u01:Existing, +10:u06:convey, +31:u04:EXCHGID4_FLAG_USE_NON_PNFS,, +10:u14:convey, +12:u00:Existing, +10:u05:convey, +11:u07:(roles), +31:u03:EXCHGID4_FLAG_USE_NON_PNFS,, +10:u13:convey, +10:u04:convey, +11:u06:(roles), +31:u02:EXCHGID4_FLAG_USE_NON_PNFS,, +10:u12:convey, +11:u14:(roles), +10:u03:convey, +11:u05:(roles), +31:u01:EXCHGID4_FLAG_USE_NON_PNFS,, +10:u11:convey, +11:u13:(roles), +10:u02:convey, +11:u04:(roles), +31:u00:EXCHGID4_FLAG_USE_NON_PNFS,, +10:u10:convey, +11:u12:(roles), +8:u23:(rol, +10:u01:convey, +11:u03:(roles), +11:u11:(roles), +10:u00:convey, +11:u02:(roles), +11:u10:(roles), +11:u01:(roles), +11:u00:(roles), +15:u08:role/client, +15:u07:role/client, +11:u08:spa_how, +16:u08:unauthorized, +15:u06:role/client, +11:u07:spa_how, +15:u05:role/client, +11:u06:spa_how, +16:u07:unauthorized, +15:u04:role/client, +11:u05:spa_how, +13:u08:SP4_NONE., +16:u06:unauthorized, +15:u03:role/client, +11:u04:spa_how, +13:u07:SP4_NONE., +16:u14:unauthorized, +16:u05:unauthorized, +15:u02:role/client, +11:u03:spa_how, +13:u06:SP4_NONE., +16:u13:unauthorized, +10:uI2:(...):, +16:u04:unauthorized, +15:u01:role/client, +11:u02:spa_how, +13:u05:SP4_NONE., +18:u08:SP4_MACH_CRED., +16:u12:unauthorized, +8:u23:unau, +10:uI1:(...):, +16:u03:unauthorized, +15:u00:role/client, +11:u01:spa_how, +13:u04:SP4_NONE., +18:u07:SP4_MACH_CRED., +16:u11:unauthorized, +10:uI0:(...):, +16:u02:unauthorized, +24:u08:RPC_GSS_SVC_PRIVACY., +11:u00:spa_how, +13:u03:SP4_NONE., +18:u06:SP4_MACH_CRED., +16:u10:unauthorized, +16:u01:unauthorized, +13:u02:SP4_NONE., +18:u05:SP4_MACH_CRED., +16:u00:unauthorized, +24:u07:RPC_GSS_SVC_PRIVACY., +11:u08:protect, +13:u01:SP4_NONE., +18:u04:SP4_MACH_CRED., +24:u06:RPC_GSS_SVC_PRIVACY., +13:u00:SP4_NONE., +18:u03:SP4_MACH_CRED., +24:u14:rpc_gss_svc_privacy., +24:u05:RPC_GSS_SVC_PRIVACY., +11:u07:protect, +18:u02:SP4_MACH_CRED., +24:u13:rpc_gss_svc_privacy., +24:u04:RPC_GSS_SVC_PRIVACY., +11:u06:protect, +18:u01:SP4_MACH_CRED., +9:u08:notes, +24:u12:rpc_gss_svc_privacy., +11:u14:protect, +24:u03:RPC_GSS_SVC_PRIVACY., +11:u05:protect, +18:u00:SP4_MACH_CRED., +9:u07:notes, +24:u11:rpc_gss_svc_privacy., +11:u13:protect, +24:u02:RPC_GSS_SVC_PRIVACY., +11:u04:protect, +9:u06:notes, +24:u10:rpc_gss_svc_privacy., +11:u12:protect, +24:u01:RPC_GSS_SVC_PRIVACY., +11:u03:protect, +9:u05:notes, +11:u11:protect, +24:u00:RPC_GSS_SVC_PRIVACY., +11:u02:protect, +9:u04:notes, +11:u10:protect, +11:u01:protect, +9:u03:notes, +11:u00:protect, +9:u02:notes, +9:u01:notes, +9:u00:notes, +12:u08:SP4_SSV., +12:u07:SP4_SSV., +12:u06:SP4_SSV., +12:u05:SP4_SSV., +12:u04:SP4_SSV., +12:u03:SP4_SSV., +8:u08:528], +12:u02:SP4_SSV., +8:u07:528], +12:u01:SP4_SSV., +8:u06:528], +12:u00:SP4_SSV., +8:u05:528], +8:u04:528], +8:u03:528], +29:u08:eia_clientowner.co_owner., +8:u02:528], +12:u08:confirms, +8:u01:528], +29:u07:eia_clientowner.co_owner., +8:u00:528], +29:u06:eia_clientowner.co_owner., +12:u07:confirms, +29:u14:eia_clientowner.co_owner., +29:u05:eia_clientowner.co_owner., +12:u06:confirms, +9:u08:lists, +29:u13:eia_clientowner.co_owner., +12:u14:confirms, +29:u04:eia_clientowner.co_owner., +12:u05:confirms, +9:u07:lists, +29:u12:eia_clientowner.co_owner., +12:u13:confirms, +29:u03:eia_clientowner.co_owner., +12:u04:confirms, +9:u06:lists, +12:u08:(subject, +29:u11:eia_clientowner.co_owner., +12:u12:confirms, +29:u02:eia_clientowner.co_owner., +12:u03:confirms, +9:u05:lists, +12:u07:(subject, +29:u10:eia_clientowner.co_owner., +12:u11:confirms, +29:u01:eia_clientowner.co_owner., +12:u02:confirms, +9:u04:lists, +12:u06:(subject, +12:u10:confirms, +29:u00:eia_clientowner.co_owner., +12:u01:confirms, +9:u03:lists, +12:u05:(subject, +12:u00:confirms, +9:u02:lists, +12:u04:(subject, +9:u01:lists, +12:u03:(subject, +9:u00:lists, +12:u02:(subject, +12:u01:(subject, +12:u00:(subject, +11:u08:choice,, +11:u07:choice,, +11:u06:choice,, +11:u05:choice,, +11:u04:choice,, +11:u03:choice,, +11:u02:choice,, +11:u01:choice,, +11:u00:choice,, +13:u08:argument,, +13:u07:argument,, +13:u06:argument,, +6:u08:},, +13:u14:argument,, +8:uI2:.,'', +13:u05:argument,, +13:u13:argument,, +8:uI1:.,'', +13:u04:argument,, +6:u07:},, +13:u12:argument,, +15:u14:delegpurge,, +8:uI0:.,'', +13:u03:argument,, +6:u06:},, +13:u11:argument,, +15:u13:delegpurge,, +6:u14:},, +13:u02:argument,, +6:u05:},, +13:u10:argument,, +15:u12:delegpurge,, +6:u13:},, +13:u01:argument,, +6:u04:},, +15:u11:delegpurge,, +6:u12:},, +6:u21:},, +6:u22:},, +6:u23:},, +13:u00:argument,, +6:u03:},, +15:u10:delegpurge,, +6:u11:},, +6:u02:},, +6:u10:},, +6:u01:},, +6:u00:},, +8:u08:529], +8:u07:529], +8:u06:529], +8:u05:529], +8:u04:529], +8:u03:529], +8:u02:529], +8:u01:529], +8:u00:529], +37:u08:EXCHGID4_FLAG_BIND_PRINC_STATEID,, +14:u08:conundrum., +14:u07:conundrum., +37:u07:EXCHGID4_FLAG_BIND_PRINC_STATEID,, +14:u06:conundrum., +37:u06:EXCHGID4_FLAG_BIND_PRINC_STATEID,, +14:u05:conundrum., +11:u08:expire,, +37:u14:exchgid4_flag_bind_princ_stateid,, +37:u05:EXCHGID4_FLAG_BIND_PRINC_STATEID,, +13:u08:acquiring, +14:u04:conundrum., +11:u07:expire,, +10:u08:ticket, +37:u13:exchgid4_flag_bind_princ_stateid,, +37:u04:EXCHGID4_FLAG_BIND_PRINC_STATEID,, +14:u03:conundrum., +11:u06:expire,, +10:u07:ticket, +37:u12:exchgid4_flag_bind_princ_stateid,, +37:u03:EXCHGID4_FLAG_BIND_PRINC_STATEID,, +13:u07:acquiring, +14:u02:conundrum., +11:u05:expire,, +10:u06:ticket, +37:u11:exchgid4_flag_bind_princ_stateid,, +37:u02:EXCHGID4_FLAG_BIND_PRINC_STATEID,, +13:u06:acquiring, +14:u01:conundrum., +11:u04:expire,, +10:u05:ticket, +37:u10:exchgid4_flag_bind_princ_stateid,, +13:u14:acquiring, +37:u01:EXCHGID4_FLAG_BIND_PRINC_STATEID,, +13:u05:acquiring, +14:u00:conundrum., +11:u03:expire,, +10:u04:ticket, +13:u13:acquiring, +37:u00:EXCHGID4_FLAG_BIND_PRINC_STATEID,, +13:u04:acquiring, +11:u02:expire,, +10:u03:ticket, +13:u12:acquiring, +13:u03:acquiring, +11:u01:expire,, +10:u02:ticket, +13:u11:acquiring, +13:u02:acquiring, +18:u08:ssp_hash_algs:, +11:u00:expire,, +10:u01:ticket, +13:u10:acquiring, +13:u01:acquiring, +10:u00:ticket, +13:u00:acquiring, +18:u07:ssp_hash_algs:, +18:u06:ssp_hash_algs:, +13:u08:computing, +18:u14:ssp_hash_algs:, +18:u05:ssp_hash_algs:, +13:u07:computing, +18:u13:ssp_hash_algs:, +18:u04:ssp_hash_algs:, +12:u08:id-sha1,, +13:u06:computing, +18:u12:ssp_hash_algs:, +18:u03:ssp_hash_algs:, +13:u05:computing, +14:u08:id-sha224,, +18:u11:ssp_hash_algs:, +18:u02:ssp_hash_algs:, +12:u07:id-sha1,, +17:u08:spi_hash_alg,, +13:u04:computing, +14:u07:id-sha224,, +18:u10:ssp_hash_algs:, +18:u01:ssp_hash_algs:, +12:u06:id-sha1,, +16:u08:spi_hash_alg, +13:u03:computing, +14:u06:id-sha224,, +12:u14:id-sha1,, +18:u00:ssp_hash_algs:, +12:u05:id-sha1,, +17:u07:spi_hash_alg,, +13:u02:computing, +14:u05:id-sha224,, +12:u13:id-sha1,, +13:u14:algorithm, +16:uI2:-,-,-,-,-[]., +12:u04:id-sha1,, +17:u06:spi_hash_alg,, +16:u07:spi_hash_alg, +28:u08:NFS4ERR_HASH_ALG_UNSUPP., +13:u01:computing, +14:u04:id-sha224,, +12:u12:id-sha1,, +13:u13:algorithm, +17:u14:spi_hash_alg,, +7:u22:id-, +8:u23:id-s, +16:uI1:-,-,-,-,-[]., +12:u03:id-sha1,, +17:u05:spi_hash_alg,, +16:u06:spi_hash_alg, +13:u00:computing, +14:u03:id-sha224,, +12:u11:id-sha1,, +13:u12:algorithm, +17:u13:spi_hash_alg,, +16:u14:spi_hash_alg, +16:uI0:-,-,-,-,-[]., +12:u02:id-sha1,, +17:u04:spi_hash_alg,, +16:u05:spi_hash_alg, +28:u07:NFS4ERR_HASH_ALG_UNSUPP., +18:u08:ssp_encr_algs:, +14:u02:id-sha224,, +12:u10:id-sha1,, +13:u11:algorithm, +17:u12:spi_hash_alg,, +16:u13:spi_hash_alg, +12:u01:id-sha1,, +17:u03:spi_hash_alg,, +16:u04:spi_hash_alg, +28:u06:NFS4ERR_HASH_ALG_UNSUPP., +14:u01:id-sha224,, +13:u10:algorithm, +17:u11:spi_hash_alg,, +16:u12:spi_hash_alg, +28:u14:nfs4err_hash_alg_unsupp., +12:u00:id-sha1,, +17:u02:spi_hash_alg,, +16:u03:spi_hash_alg, +28:u05:NFS4ERR_HASH_ALG_UNSUPP., +18:u07:ssp_encr_algs:, +14:u00:id-sha224,, +17:u10:spi_hash_alg,, +16:u11:spi_hash_alg, +28:u13:nfs4err_hash_alg_unsupp., +17:u01:spi_hash_alg,, +16:u02:spi_hash_alg, +28:u04:NFS4ERR_HASH_ALG_UNSUPP., +18:u06:ssp_encr_algs:, +16:u10:spi_hash_alg, +28:u12:nfs4err_hash_alg_unsupp., +18:u14:ssp_encr_algs:, +17:u00:spi_hash_alg,, +16:u01:spi_hash_alg, +28:u03:NFS4ERR_HASH_ALG_UNSUPP., +18:u05:ssp_encr_algs:, +28:u11:nfs4err_hash_alg_unsupp., +18:u13:ssp_encr_algs:, +16:u00:spi_hash_alg, +28:u02:NFS4ERR_HASH_ALG_UNSUPP., +18:u04:ssp_encr_algs:, +28:u10:nfs4err_hash_alg_unsupp., +18:u12:ssp_encr_algs:, +28:u01:NFS4ERR_HASH_ALG_UNSUPP., +18:u03:ssp_encr_algs:, +18:u11:ssp_encr_algs:, +28:u00:NFS4ERR_HASH_ALG_UNSUPP., +18:u02:ssp_encr_algs:, +18:u08:ssp_encr_algs., +18:u10:ssp_encr_algs:, +18:u01:ssp_encr_algs:, +15:u08:algorithms,, +18:u00:ssp_encr_algs:, +18:u07:ssp_encr_algs., +11:uI2:----[]., +18:u06:ssp_encr_algs., +15:u07:algorithms,, +10:u08:empty,, +18:u14:ssp_encr_algs., +11:uI1:----[]., +18:u05:ssp_encr_algs., +15:u06:algorithms,, +17:u08:relationships, +10:u07:empty,, +18:u13:ssp_encr_algs., +15:u14:algorithms,, +11:uI0:----[]., +18:u04:ssp_encr_algs., +15:u05:algorithms,, +10:u06:empty,, +18:u12:ssp_encr_algs., +15:u13:algorithms,, +18:u03:ssp_encr_algs., +15:u04:algorithms,, +17:u07:relationships, +10:u05:empty,, +18:u11:ssp_encr_algs., +15:u12:algorithms,, +18:u02:ssp_encr_algs., +15:u03:algorithms,, +17:u06:relationships, +10:u04:empty,, +18:u10:ssp_encr_algs., +15:u11:algorithms,, +17:u14:relationships, +18:u01:ssp_encr_algs., +15:u02:algorithms,, +17:u05:relationships, +10:u03:empty,, +15:u10:algorithms,, +17:u13:relationships, +16:u14:combinations, +18:u00:ssp_encr_algs., +15:u01:algorithms,, +17:u04:relationships, +10:u02:empty,, +8:u08:530], +17:u12:relationships, +16:u13:combinations, +15:u00:algorithms,, +17:u03:relationships, +10:u01:empty,, +8:u07:530], +17:u11:relationships, +16:u12:combinations, +17:u02:relationships, +10:u00:empty,, +8:u06:530], +17:u10:relationships, +16:u11:combinations, +17:u01:relationships, +8:u05:530], +16:u10:combinations, +17:u00:relationships, +14:u08:summarizes, +8:u04:530], +15:u08:ssp_window:, +8:u03:530], +14:u07:summarizes, +8:u02:530], +14:u06:summarizes, +15:u07:ssp_window:, +8:u01:530], +14:u14:summarizes, +14:u05:summarizes, +15:u06:ssp_window:, +8:u00:530], +14:u13:summarizes, +15:u14:ssp_window:, +14:u04:summarizes, +15:u05:ssp_window:, +14:u12:summarizes, +15:u13:ssp_window:, +14:u03:summarizes, +15:u04:ssp_window:, +14:u11:summarizes, +15:u12:ssp_window:, +14:u02:summarizes, +15:u03:ssp_window:, +14:u10:summarizes, +15:u11:ssp_window:, +14:u01:summarizes, +15:u02:ssp_window:, +15:u10:ssp_window:, +14:u00:summarizes, +15:u01:ssp_window:, +15:u00:ssp_window:, +24:u08:ssp_num_gss_handles:, +24:u07:ssp_num_gss_handles:, +24:u06:ssp_num_gss_handles:, +24:u14:ssp_num_gss_handles:, +24:u05:ssp_num_gss_handles:, +24:u13:ssp_num_gss_handles:, +24:u04:ssp_num_gss_handles:, +24:u12:ssp_num_gss_handles:, +24:u03:ssp_num_gss_handles:, +16:u08:spi_handles., +24:u11:ssp_num_gss_handles:, +24:u02:ssp_num_gss_handles:, +24:u10:ssp_num_gss_handles:, +24:u01:ssp_num_gss_handles:, +16:u07:spi_handles., +12:u14:handles., +24:u00:ssp_num_gss_handles:, +16:u06:spi_handles., +12:u13:handles., +16:u14:spi_handles., +16:u05:spi_handles., +30:u08:EXCHGID4_FLAG_CONFIRMED_R,, +12:u12:handles., +16:u13:spi_handles., +16:u04:spi_handles., +12:u11:handles., +16:u12:spi_handles., +16:u03:spi_handles., +30:u07:EXCHGID4_FLAG_CONFIRMED_R,, +12:u10:handles., +16:u11:spi_handles., +16:u02:spi_handles., +30:u06:EXCHGID4_FLAG_CONFIRMED_R,, +16:u10:spi_handles., +30:u14:exchgid4_flag_confirmed_r,, +16:u01:spi_handles., +30:u05:EXCHGID4_FLAG_CONFIRMED_R,, +30:u13:exchgid4_flag_confirmed_r,, +16:u00:spi_handles., +30:u04:EXCHGID4_FLAG_CONFIRMED_R,, +30:u12:exchgid4_flag_confirmed_r,, +30:u03:EXCHGID4_FLAG_CONFIRMED_R,, +30:u11:exchgid4_flag_confirmed_r,, +30:u02:EXCHGID4_FLAG_CONFIRMED_R,, +30:u10:exchgid4_flag_confirmed_r,, +30:u01:EXCHGID4_FLAG_CONFIRMED_R,, +23:u08:ssp_num_gss_handles, +30:u00:EXCHGID4_FLAG_CONFIRMED_R,, +23:u07:ssp_num_gss_handles, +23:u06:ssp_num_gss_handles, +12:u08:context,, +23:u14:ssp_num_gss_handles, +23:u05:ssp_num_gss_handles, +23:u13:ssp_num_gss_handles, +23:u04:ssp_num_gss_handles, +12:u07:context,, +23:u12:ssp_num_gss_handles, +23:u03:ssp_num_gss_handles, +12:u06:context,, +14:u08:seq_window, +23:u11:ssp_num_gss_handles, +12:u14:context,, +23:u02:ssp_num_gss_handles, +12:u05:context,, +14:u07:seq_window, +23:u10:ssp_num_gss_handles, +12:u13:context,, +23:u01:ssp_num_gss_handles, +12:u04:context,, +14:u06:seq_window, +12:u12:context,, +23:u00:ssp_num_gss_handles, +12:u03:context,, +14:u05:seq_window, +12:u11:context,, +11:uI2:(...[]), +12:u02:context,, +14:u04:seq_window, +12:u10:context,, +11:uI1:(...[]), +12:u01:context,, +14:u03:seq_window, +11:uI0:(...[]), +12:u00:context,, +14:u02:seq_window, +8:u08:531], +14:u01:seq_window, +8:u07:531], +14:u00:seq_window, +8:u06:531], +73:u08:+-------------------+----------------------+------------------------+, +8:u05:531], +8:u04:531], +73:u07:+-------------------+----------------------+------------------------+, +8:u03:531], +14:u08:Encryption, +73:u06:+-------------------+----------------------+------------------------+, +8:u02:531], +14:u07:Encryption, +73:u14:+-------------------+----------------------+------------------------+, +73:u05:+-------------------+----------------------+------------------------+, +8:u01:531], +14:u06:Encryption, +13:u08:Algorithm, +73:u13:+-------------------+----------------------+------------------------+, +73:u04:+-------------------+----------------------+------------------------+, +8:u00:531], +14:u05:Encryption, +13:u07:Algorithm, +73:u12:+-------------------+----------------------+------------------------+, +73:u03:+-------------------+----------------------+------------------------+, +14:u04:Encryption, +13:u06:Algorithm, +73:u11:+-------------------+----------------------+------------------------+, +73:u02:+-------------------+----------------------+------------------------+, +14:u03:Encryption, +13:u05:Algorithm, +73:u10:+-------------------+----------------------+------------------------+, +73:u01:+-------------------+----------------------+------------------------+, +14:u02:Encryption, +13:u04:Algorithm, +73:u00:+-------------------+----------------------+------------------------+, +14:u01:Encryption, +13:u03:Algorithm, +17:u08:id-aes128-CBC, +14:u00:Encryption, +13:u02:Algorithm, +17:u07:id-aes128-CBC, +13:u01:Algorithm, +17:u06:id-aes128-CBC, +14:u08:id-sha384,, +13:u00:Algorithm, +17:u05:id-aes128-CBC, +14:u07:id-sha384,, +17:u04:id-aes128-CBC, +14:u06:id-sha384,, +17:u08:id-aes192-CBC, +17:u03:id-aes128-CBC, +14:u05:id-sha384,, +17:u07:id-aes192-CBC, +11:u08:id-sha1, +17:u02:id-aes128-CBC, +14:u04:id-sha384,, +17:u06:id-aes192-CBC, +11:u07:id-sha1, +13:u08:id-sha512, +17:u01:id-aes128-CBC, +14:u03:id-sha384,, +17:u05:id-aes192-CBC, +11:u06:id-sha1, +13:u07:id-sha512, +17:u00:id-aes128-CBC, +14:u02:id-sha384,, +17:u04:id-aes192-CBC, +11:u05:id-sha1, +13:u06:id-sha512, +17:u08:id-aes256-CBC, +14:u01:id-sha384,, +17:u03:id-aes192-CBC, +11:u04:id-sha1, +13:u05:id-sha512, +17:u07:id-aes256-CBC, +14:u00:id-sha384,, +17:u02:id-aes192-CBC, +11:u03:id-sha1, +13:u04:id-sha512, +17:u06:id-aes256-CBC, +17:u01:id-aes192-CBC, +11:u02:id-sha1, +13:u03:id-sha512, +17:u05:id-aes256-CBC, +17:u00:id-aes192-CBC, +11:u01:id-sha1, +13:u02:id-sha512, +17:u04:id-aes256-CBC, +11:u00:id-sha1, +13:u01:id-sha512, +17:u03:id-aes256-CBC, +23:u08:eia_client_impl_id., +13:u00:id-sha512, +17:u02:id-aes256-CBC, +17:u01:id-aes256-CBC, +23:u07:eia_client_impl_id., +17:u00:id-aes256-CBC, +23:u06:eia_client_impl_id., +23:u14:eia_client_impl_id., +23:u05:eia_client_impl_id., +23:u13:eia_client_impl_id., +23:u04:eia_client_impl_id., +10:u08:array,, +23:u12:eia_client_impl_id., +23:u03:eia_client_impl_id., +23:u11:eia_client_impl_id., +23:u02:eia_client_impl_id., +10:u07:array,, +23:u10:eia_client_impl_id., +23:u01:eia_client_impl_id., +10:u06:array,, +10:u14:array,, +23:u00:eia_client_impl_id., +10:u05:array,, +10:u13:array,, +10:u04:array,, +10:u12:array,, +10:u03:array,, +15:u08:statistics., +10:u11:array,, +12:u14:software, +10:u02:array,, +15:u07:statistics., +10:u10:array,, +12:u13:software, +10:u01:array,, +15:u06:statistics., +12:u12:software, +10:u00:array,, +15:u05:statistics., +12:u11:software, +15:u08:manifesting, +15:u04:statistics., +12:u10:software, +15:u03:statistics., +15:u07:manifesting, +15:u02:statistics., +15:u06:manifesting, +15:u01:statistics., +15:u14:manifesting, +15:u05:manifesting, +15:u00:statistics., +15:u13:manifesting, +15:u04:manifesting, +15:u12:manifesting, +15:u03:manifesting, +15:u11:manifesting, +15:u02:manifesting, +15:u10:manifesting, +15:u01:manifesting, +12:u08:18.35.4., +15:u00:manifesting, +12:u07:18.35.4., +14:u14:structures, +12:u06:18.35.4., +14:u13:structures, +12:u14:18.35.4., +12:u05:18.35.4., +14:u12:structures, +12:u13:18.35.4., +12:u04:18.35.4., +14:u11:structures, +12:u12:18.35.4., +7:uI2:'-:, +12:u03:18.35.4., +16:u08:co_verifier:, +14:u10:structures, +12:u11:18.35.4., +7:uI1:'-:, +12:u02:18.35.4., +16:u07:co_verifier:, +12:u10:18.35.4., +13:u14:structure, +7:uI0:'-:, +12:u01:18.35.4., +16:u06:co_verifier:, +13:u13:structure, +12:u00:18.35.4., +16:u05:co_verifier:, +8:u08:532], +13:u12:structure, +16:u04:co_verifier:, +8:u07:532], +13:u11:structure, +16:u03:co_verifier:, +8:u06:532], +13:u10:structure, +16:u02:co_verifier:, +8:u05:532], +16:u01:co_verifier:, +8:u04:532], +19:u08:client-specific, +16:u00:co_verifier:, +8:u03:532], +19:u07:client-specific, +8:u02:532], +19:u06:client-specific, +8:u01:532], +19:u05:client-specific, +14:u08:principal:, +8:u00:532], +19:u04:client-specific, +14:u07:principal:, +19:u14:eia_clientowner, +19:u03:client-specific, +14:u06:principal:, +19:u13:eia_clientowner, +19:u02:client-specific, +14:u05:principal:, +19:u12:eia_clientowner, +19:u01:client-specific, +14:u04:principal:, +19:u11:eia_clientowner, +19:u00:client-specific, +14:u03:principal:, +19:u10:eia_clientowner, +14:u02:principal:, +14:u01:principal:, +14:u08:confirmed:, +14:u00:principal:, +14:u07:confirmed:, +14:u06:confirmed:, +14:u05:confirmed:, +14:u04:confirmed:, +14:u03:confirmed:, +14:u02:confirmed:, +14:u01:confirmed:, +14:u00:confirmed:, +16:u08:ownerid_arg:, +12:u08:records., +12:u07:records., +16:u07:ownerid_arg:, +12:u06:records., +16:u06:ownerid_arg:, +17:u08:verifier_arg:, +12:u05:records., +16:u14:ownerid_arg:, +16:u05:ownerid_arg:, +12:u04:records., +16:u13:ownerid_arg:, +16:u04:ownerid_arg:, +17:u07:verifier_arg:, +12:u03:records., +16:u12:ownerid_arg:, +16:u03:ownerid_arg:, +17:u06:verifier_arg:, +21:u08:old_verifier_arg:, +12:u02:records., +16:u11:ownerid_arg:, +17:u14:verifier_arg:, +16:u02:ownerid_arg:, +17:u05:verifier_arg:, +12:u01:records., +16:u10:ownerid_arg:, +17:u13:verifier_arg:, +16:u01:ownerid_arg:, +17:u04:verifier_arg:, +21:u07:old_verifier_arg:, +12:u00:records., +17:u12:verifier_arg:, +16:u00:ownerid_arg:, +17:u03:verifier_arg:, +21:u06:old_verifier_arg:, +17:u08:verifier_arg., +17:u11:verifier_arg:, +21:u14:old_verifier_arg:, +17:u02:verifier_arg:, +21:u05:old_verifier_arg:, +18:u08:principal_arg:, +17:u10:verifier_arg:, +21:u13:old_verifier_arg:, +17:u01:verifier_arg:, +21:u04:old_verifier_arg:, +17:u07:verifier_arg., +21:u12:old_verifier_arg:, +8:u23:old_, +17:u00:verifier_arg:, +21:u03:old_verifier_arg:, +17:u06:verifier_arg., +18:u07:principal_arg:, +21:u11:old_verifier_arg:, +17:u14:verifier_arg., +21:u02:old_verifier_arg:, +17:u05:verifier_arg., +18:u06:principal_arg:, +21:u10:old_verifier_arg:, +17:u13:verifier_arg., +18:u14:principal_arg:, +21:u01:old_verifier_arg:, +17:u04:verifier_arg., +18:u05:principal_arg:, +17:u12:verifier_arg., +18:u13:principal_arg:, +21:u00:old_verifier_arg:, +17:u03:verifier_arg., +18:u04:principal_arg:, +8:u08:533], +17:u11:verifier_arg., +18:u12:principal_arg:, +17:u02:verifier_arg., +18:u03:principal_arg:, +8:u07:533], +17:u10:verifier_arg., +18:u11:principal_arg:, +17:u01:verifier_arg., +18:u02:principal_arg:, +8:u06:533], +18:u10:principal_arg:, +17:u00:verifier_arg., +18:u01:principal_arg:, +22:u08:old_principal_arg:, +8:u05:533], +18:u00:principal_arg:, +8:u04:533], +22:u07:old_principal_arg:, +12:u08:header's, +8:u03:533], +22:u06:old_principal_arg:, +8:u02:533], +22:u14:old_principal_arg:, +22:u05:old_principal_arg:, +12:u07:header's, +17:u08:clientid_ret:, +8:u01:533], +22:u13:old_principal_arg:, +22:u04:old_principal_arg:, +12:u06:header's, +8:u00:533], +22:u12:old_principal_arg:, +12:u14:header's, +22:u03:old_principal_arg:, +12:u05:header's, +17:u07:clientid_ret:, +22:u11:old_principal_arg:, +12:u13:header's, +22:u02:old_principal_arg:, +12:u04:header's, +17:u06:clientid_ret:, +21:u08:old_clientid_ret:, +22:u10:old_principal_arg:, +12:u12:header's, +17:u14:clientid_ret:, +22:u01:old_principal_arg:, +12:u03:header's, +17:u05:clientid_ret:, +12:u11:header's, +17:u13:clientid_ret:, +22:u00:old_principal_arg:, +12:u02:header's, +17:u04:clientid_ret:, +21:u07:old_clientid_ret:, +12:u10:header's, +17:u12:clientid_ret:, +12:u01:header's, +17:u03:clientid_ret:, +21:u06:old_clientid_ret:, +17:u11:clientid_ret:, +21:u14:old_clientid_ret:, +12:u00:header's, +17:u02:clientid_ret:, +21:u05:old_clientid_ret:, +17:u10:clientid_ret:, +21:u13:old_clientid_ret:, +17:u01:clientid_ret:, +21:u04:old_clientid_ret:, +21:u12:old_clientid_ret:, +17:u00:clientid_ret:, +21:u03:old_clientid_ret:, +16:u08:unconfirmed:, +21:u11:old_clientid_ret:, +21:u02:old_clientid_ret:, +21:u10:old_clientid_ret:, +14:u14:confirmed:, +21:u01:old_clientid_ret:, +16:u07:unconfirmed:, +14:u13:confirmed:, +21:u00:old_clientid_ret:, +16:u06:unconfirmed:, +14:u12:confirmed:, +16:u14:unconfirmed:, +16:u05:unconfirmed:, +14:u11:confirmed:, +16:u13:unconfirmed:, +16:u04:unconfirmed:, +14:u10:confirmed:, +16:u12:unconfirmed:, +16:u03:unconfirmed:, +21:u08:EXCHANGE_ID4args,, +16:u11:unconfirmed:, +16:u02:unconfirmed:, +16:u10:unconfirmed:, +16:u01:unconfirmed:, +21:u07:EXCHANGE_ID4args,, +13:u08:scenarios, +16:u00:unconfirmed:, +21:u06:EXCHANGE_ID4args,, +13:u07:scenarios, +21:u14:exchange_id4args,, +21:u05:EXCHANGE_ID4args,, +13:u06:scenarios, +21:u13:exchange_id4args,, +21:u04:EXCHANGE_ID4args,, +13:u05:scenarios, +21:u12:exchange_id4args,, +21:u03:EXCHANGE_ID4args,, +13:u04:scenarios, +21:u11:exchange_id4args,, +21:u02:EXCHANGE_ID4args,, +13:u03:scenarios, +21:u10:exchange_id4args,, +21:u01:EXCHANGE_ID4args,, +13:u02:scenarios, +21:u00:EXCHANGE_ID4args,, +13:u01:scenarios, +30:u08:eia_clientowner.co_ownerid, +13:u00:scenarios, +30:u07:eia_clientowner.co_ownerid, +30:u06:eia_clientowner.co_ownerid, +17:u08:clientid_ret), +30:u14:eia_clientowner.co_ownerid, +30:u05:eia_clientowner.co_ownerid, +30:u13:eia_clientowner.co_ownerid, +37:u14:exchgid4_flag_upd_confirmed_rec_a, +30:u04:eia_clientowner.co_ownerid, +17:u07:clientid_ret), +30:u12:eia_clientowner.co_ownerid, +37:u13:exchgid4_flag_upd_confirmed_rec_a, +30:u03:eia_clientowner.co_ownerid, +17:u06:clientid_ret), +30:u11:eia_clientowner.co_ownerid, +37:u12:exchgid4_flag_upd_confirmed_rec_a, +17:u14:clientid_ret), +30:u02:eia_clientowner.co_ownerid, +17:u05:clientid_ret), +30:u10:eia_clientowner.co_ownerid, +37:u11:exchgid4_flag_upd_confirmed_rec_a, +17:u13:clientid_ret), +30:u01:eia_clientowner.co_ownerid, +17:u04:clientid_ret), +8:u08:534], +37:u10:exchgid4_flag_upd_confirmed_rec_a, +17:u12:clientid_ret), +30:u00:eia_clientowner.co_ownerid, +17:u03:clientid_ret), +8:u07:534], +17:u11:clientid_ret), +17:u02:clientid_ret), +8:u06:534], +17:u10:clientid_ret), +17:u01:clientid_ret), +8:u05:534], +17:u00:clientid_ret), +8:u04:534], +16:u08:ownerid_arg,, +8:u03:534], +16:u07:ownerid_arg,, +8:u02:534], +16:u06:ownerid_arg,, +8:u01:534], +16:u05:ownerid_arg,, +14:u08:Non-Update, +8:u00:534], +16:u04:ownerid_arg,, +14:u07:Non-Update, +16:u03:ownerid_arg,, +14:u06:Non-Update, +10:u08:faulty, +16:u02:ownerid_arg,, +14:u05:Non-Update, +16:u01:ownerid_arg,, +14:u04:Non-Update, +10:u07:faulty, +16:u00:ownerid_arg,, +14:u03:Non-Update, +10:u06:faulty, +14:u02:Non-Update, +10:u14:faulty, +10:u05:faulty, +14:u01:Non-Update, +10:u13:faulty, +10:u04:faulty, +14:u00:Non-Update, +10:u12:faulty, +10:u03:faulty, +10:u11:faulty, +10:u02:faulty, +10:u10:faulty, +10:u01:faulty, +10:u00:faulty, +21:u08:old_clientid_ret,, +12:u08:expired,, +9:uI2:,*,,,, +21:u07:old_clientid_ret,, +9:u08:Owner, +9:uI1:,*,,,, +21:u06:old_clientid_ret,, +12:u07:expired,, +12:u08:deleted,, +21:u14:old_clientid_ret,, +9:uI0:,*,,,, +21:u05:old_clientid_ret,, +12:u06:expired,, +9:u07:Owner, +21:u13:old_clientid_ret,, +12:u14:expired,, +21:u04:old_clientid_ret,, +12:u05:expired,, +9:u06:Owner, +12:u07:deleted,, +21:u12:old_clientid_ret,, +12:u13:expired,, +21:u03:old_clientid_ret,, +12:u04:expired,, +9:u05:Owner, +12:u06:deleted,, +21:u11:old_clientid_ret,, +12:u12:expired,, +12:u14:deleted,, +21:u02:old_clientid_ret,, +12:u03:expired,, +9:u04:Owner, +12:u05:deleted,, +21:u10:old_clientid_ret,, +12:u11:expired,, +12:u13:deleted,, +21:u01:old_clientid_ret,, +12:u02:expired,, +9:u03:Owner, +12:u04:deleted,, +12:u10:expired,, +12:u12:deleted,, +21:u00:old_clientid_ret,, +12:u01:expired,, +9:u02:Owner, +12:u03:deleted,, +8:u08:535], +12:u11:deleted,, +12:u00:expired,, +9:u01:Owner, +12:u02:deleted,, +8:u07:535], +12:u10:deleted,, +9:u00:Owner, +12:u01:deleted,, +8:u06:535], +12:u00:deleted,, +8:u05:535], +8:u04:535], +8:u03:535], +8:u02:535], +8:u01:535], +20:u08:old_clientid_ret, +8:u00:535], +20:u07:old_clientid_ret, +20:u06:old_clientid_ret, +20:u05:old_clientid_ret, +20:u04:old_clientid_ret, +12:u08:subfield, +20:u03:old_clientid_ret, +12:u07:subfield, +20:u02:old_clientid_ret, +12:u06:subfield, +20:u01:old_clientid_ret, +12:u05:subfield, +20:u00:old_clientid_ret, +12:u04:subfield, +12:u03:subfield, +12:u02:subfield, +12:u08:called),, +12:u01:subfield, +12:u00:subfield, +12:u07:called),, +12:u06:called),, +12:u14:called),, +12:u05:called),, +12:u13:called),, +12:u04:called),, +14:u08:ambiguity,, +12:u12:called),, +10:uI2:,*,*,,, +12:u03:called),, +12:u11:called),, +10:uI1:,*,*,,, +12:u02:called),, +14:u07:ambiguity,, +12:u10:called),, +10:uI0:,*,*,,, +12:u01:called),, +14:u06:ambiguity,, +14:u14:ambiguity,, +12:u00:called),, +14:u05:ambiguity,, +14:u13:ambiguity,, +13:u14:generates, +14:u04:ambiguity,, +14:u12:ambiguity,, +13:u13:generates, +14:u03:ambiguity,, +14:u11:ambiguity,, +13:u12:generates, +14:u02:ambiguity,, +14:u10:ambiguity,, +13:u11:generates, +14:u01:ambiguity,, +13:u10:generates, +14:u00:ambiguity,, +14:u08:restarted., +14:u07:restarted., +14:u06:restarted., +14:u14:restarted., +14:u05:restarted., +14:u13:restarted., +14:u04:restarted., +14:u12:restarted., +14:u03:restarted., +8:u08:536], +14:u11:restarted., +14:u02:restarted., +8:u07:536], +14:u10:restarted., +14:u01:restarted., +8:u06:536], +14:u00:restarted., +8:u05:536], +8:u04:536], +8:u03:536], +8:u02:536], +8:u01:536], +8:u00:536], +15:u14:incarnation, +15:u13:incarnation, +15:u12:incarnation, +11:u14:removed, +15:u11:incarnation, +11:u13:removed, +10:u08:purged, +15:u10:incarnation, +11:u12:removed, +10:u07:purged, +11:u11:removed, +10:u06:purged, +11:u10:removed, +10:u05:purged, +10:u04:purged, +10:u03:purged, +10:u02:purged, +10:u01:purged, +12:u08:collapse, +10:u00:purged, +12:u07:collapse, +12:u06:collapse, +12:u14:collapse, +12:u05:collapse, +12:u13:collapse, +12:u04:collapse, +12:u12:collapse, +12:u03:collapse, +12:u11:collapse, +12:u02:collapse, +12:u08:18.36.3., +12:u10:collapse, +12:u01:collapse, +12:u07:18.36.3., +12:u00:collapse, +12:u06:18.36.3., +12:u05:18.36.3., +12:u04:18.36.3., +12:u03:18.36.3., +12:u02:18.36.3., +12:u01:18.36.3., +12:u00:18.36.3., +8:u08:537], +8:u07:537], +8:u06:537], +8:u05:537], +8:u04:537], +8:u03:537], +8:u02:537], +8:u01:537], +8:u00:537], +11:u08:intact., +11:u07:intact., +11:u06:intact., +11:u14:intact., +11:u05:intact., +11:u08:illegal, +11:u13:intact., +11:u04:intact., +11:u12:intact., +8:u23:inta, +11:u03:intact., +11:u07:illegal, +11:u11:intact., +11:u02:intact., +11:u06:illegal, +11:u10:intact., +11:u01:intact., +11:u05:illegal, +11:u00:intact., +11:u04:illegal, +8:u23:ille, +11:u03:illegal, +9:uI2:,,*,,, +11:u02:illegal, +9:uI1:,,*,,, +11:u01:illegal, +9:uI0:,,*,,, +11:u00:illegal, +12:u08:18.36.1., +12:u07:18.36.1., +12:u06:18.36.1., +12:u14:18.36.1., +12:u05:18.36.1., +8:u08:538], +12:u13:18.36.1., +12:u04:18.36.1., +8:u07:538], +12:u12:18.36.1., +12:u03:18.36.1., +8:u06:538], +12:u11:18.36.1., +12:u02:18.36.1., +8:u05:538], +12:u10:18.36.1., +12:u01:18.36.1., +8:u04:538], +18:u08:channel_attrs4, +12:u00:18.36.1., +21:u08:ca_headerpadsize;, +8:u03:538], +18:u07:channel_attrs4, +8:u02:538], +18:u06:channel_attrs4, +21:u07:ca_headerpadsize;, +22:u08:ca_maxrequestsize;, +8:u01:538], +18:u05:channel_attrs4, +21:u06:ca_headerpadsize;, +8:u00:538], +18:u04:channel_attrs4, +21:u14:ca_headerpadsize;, +21:u05:ca_headerpadsize;, +22:u07:ca_maxrequestsize;, +23:u08:ca_maxresponsesize;, +18:u03:channel_attrs4, +21:u13:ca_headerpadsize;, +21:u04:ca_headerpadsize;, +22:u06:ca_maxrequestsize;, +18:u02:channel_attrs4, +21:u12:ca_headerpadsize;, +22:u14:ca_maxrequestsize;, +8:u23:ca_h, +21:u03:ca_headerpadsize;, +22:u05:ca_maxrequestsize;, +23:u07:ca_maxresponsesize;, +30:u08:ca_maxresponsesize_cached;, +18:u01:channel_attrs4, +21:u11:ca_headerpadsize;, +22:u13:ca_maxrequestsize;, +21:u02:ca_headerpadsize;, +22:u04:ca_maxrequestsize;, +23:u06:ca_maxresponsesize;, +18:u00:channel_attrs4, +21:u10:ca_headerpadsize;, +22:u12:ca_maxrequestsize;, +23:u14:ca_maxresponsesize;, +21:u01:ca_headerpadsize;, +22:u03:ca_maxrequestsize;, +23:u05:ca_maxresponsesize;, +30:u07:ca_maxresponsesize_cached;, +21:u08:ca_maxoperations;, +22:u11:ca_maxrequestsize;, +23:u13:ca_maxresponsesize;, +21:u00:ca_headerpadsize;, +22:u02:ca_maxrequestsize;, +23:u04:ca_maxresponsesize;, +30:u06:ca_maxresponsesize_cached;, +22:u10:ca_maxrequestsize;, +23:u12:ca_maxresponsesize;, +30:u14:ca_maxresponsesize_cached;, +22:u01:ca_maxrequestsize;, +23:u03:ca_maxresponsesize;, +30:u05:ca_maxresponsesize_cached;, +21:u07:ca_maxoperations;, +19:u08:ca_maxrequests;, +23:u11:ca_maxresponsesize;, +30:u13:ca_maxresponsesize_cached;, +22:u00:ca_maxrequestsize;, +23:u02:ca_maxresponsesize;, +30:u04:ca_maxresponsesize_cached;, +21:u06:ca_maxoperations;, +23:u10:ca_maxresponsesize;, +30:u12:ca_maxresponsesize_cached;, +21:u14:ca_maxoperations;, +23:u01:ca_maxresponsesize;, +30:u03:ca_maxresponsesize_cached;, +21:u05:ca_maxoperations;, +19:u07:ca_maxrequests;, +19:u08:ca_rdma_ird<1>;, +30:u11:ca_maxresponsesize_cached;, +21:u13:ca_maxoperations;, +23:u00:ca_maxresponsesize;, +30:u02:ca_maxresponsesize_cached;, +21:u04:ca_maxoperations;, +19:u06:ca_maxrequests;, +30:u10:ca_maxresponsesize_cached;, +21:u12:ca_maxoperations;, +19:u14:ca_maxrequests;, +30:u01:ca_maxresponsesize_cached;, +21:u03:ca_maxoperations;, +19:u05:ca_maxrequests;, +19:u07:ca_rdma_ird<1>;, +21:u11:ca_maxoperations;, +19:u13:ca_maxrequests;, +30:u00:ca_maxresponsesize_cached;, +21:u02:ca_maxoperations;, +19:u04:ca_maxrequests;, +19:u06:ca_rdma_ird<1>;, +21:u10:ca_maxoperations;, +19:u12:ca_maxrequests;, +19:u14:ca_rdma_ird<1>;, +21:u01:ca_maxoperations;, +19:u03:ca_maxrequests;, +19:u05:ca_rdma_ird<1>;, +19:u11:ca_maxrequests;, +19:u13:ca_rdma_ird<1>;, +21:u00:ca_maxoperations;, +19:u02:ca_maxrequests;, +19:u04:ca_rdma_ird<1>;, +39:u08:CREATE_SESSION4_FLAG_CONN_BACK_CHAN, +19:u10:ca_maxrequests;, +19:u12:ca_rdma_ird<1>;, +8:u23:ca_r, +19:u01:ca_maxrequests;, +19:u03:ca_rdma_ird<1>;, +39:u07:CREATE_SESSION4_FLAG_CONN_BACK_CHAN, +19:u11:ca_rdma_ird<1>;, +19:u00:ca_maxrequests;, +19:u02:ca_rdma_ird<1>;, +39:u06:CREATE_SESSION4_FLAG_CONN_BACK_CHAN, +34:u08:CREATE_SESSION4_FLAG_CONN_RDMA, +19:u10:ca_rdma_ird<1>;, +19:u01:ca_rdma_ird<1>;, +39:u05:CREATE_SESSION4_FLAG_CONN_BACK_CHAN, +34:u07:CREATE_SESSION4_FLAG_CONN_RDMA, +19:u00:ca_rdma_ird<1>;, +39:u04:CREATE_SESSION4_FLAG_CONN_BACK_CHAN, +34:u06:CREATE_SESSION4_FLAG_CONN_RDMA, +17:u08:csa_clientid;, +39:u03:CREATE_SESSION4_FLAG_CONN_BACK_CHAN, +34:u05:CREATE_SESSION4_FLAG_CONN_RDMA, +39:u02:CREATE_SESSION4_FLAG_CONN_BACK_CHAN, +34:u04:CREATE_SESSION4_FLAG_CONN_RDMA, +17:u07:csa_clientid;, +17:u08:csa_sequence;, +39:u01:CREATE_SESSION4_FLAG_CONN_BACK_CHAN, +34:u03:CREATE_SESSION4_FLAG_CONN_RDMA, +17:u06:csa_clientid;, +39:u00:CREATE_SESSION4_FLAG_CONN_BACK_CHAN, +34:u02:CREATE_SESSION4_FLAG_CONN_RDMA, +17:u14:csa_clientid;, +17:u05:csa_clientid;, +17:u07:csa_sequence;, +14:u08:csa_flags;, +34:u01:CREATE_SESSION4_FLAG_CONN_RDMA, +17:u13:csa_clientid;, +17:u04:csa_clientid;, +17:u06:csa_sequence;, +34:u00:CREATE_SESSION4_FLAG_CONN_RDMA, +17:u12:csa_clientid;, +17:u14:csa_sequence;, +17:u03:csa_clientid;, +17:u05:csa_sequence;, +14:u07:csa_flags;, +24:u08:csa_fore_chan_attrs;, +17:u11:csa_clientid;, +17:u13:csa_sequence;, +17:u02:csa_clientid;, +17:u04:csa_sequence;, +14:u06:csa_flags;, +17:u10:csa_clientid;, +17:u12:csa_sequence;, +14:u14:csa_flags;, +17:u01:csa_clientid;, +17:u03:csa_sequence;, +14:u05:csa_flags;, +24:u07:csa_fore_chan_attrs;, +24:u08:csa_back_chan_attrs;, +17:u11:csa_sequence;, +14:u13:csa_flags;, +18:u14:channel_attrs4, +17:u00:csa_clientid;, +17:u02:csa_sequence;, +14:u04:csa_flags;, +24:u06:csa_fore_chan_attrs;, +17:u10:csa_sequence;, +14:u12:csa_flags;, +18:u13:channel_attrs4, +24:u14:csa_fore_chan_attrs;, +17:u01:csa_sequence;, +14:u03:csa_flags;, +24:u05:csa_fore_chan_attrs;, +24:u07:csa_back_chan_attrs;, +19:u08:csa_cb_program;, +14:u11:csa_flags;, +18:u12:channel_attrs4, +24:u13:csa_fore_chan_attrs;, +17:u00:csa_sequence;, +14:u02:csa_flags;, +24:u04:csa_fore_chan_attrs;, +24:u06:csa_back_chan_attrs;, +14:u10:csa_flags;, +18:u11:channel_attrs4, +24:u12:csa_fore_chan_attrs;, +24:u14:csa_back_chan_attrs;, +14:u01:csa_flags;, +24:u03:csa_fore_chan_attrs;, +24:u05:csa_back_chan_attrs;, +19:u07:csa_cb_program;, +20:u08:csa_sec_parms<>;, +18:u10:channel_attrs4, +24:u11:csa_fore_chan_attrs;, +24:u13:csa_back_chan_attrs;, +14:u00:csa_flags;, +24:u02:csa_fore_chan_attrs;, +24:u04:csa_back_chan_attrs;, +19:u06:csa_cb_program;, +24:u10:csa_fore_chan_attrs;, +24:u12:csa_back_chan_attrs;, +19:u14:csa_cb_program;, +24:u01:csa_fore_chan_attrs;, +24:u03:csa_back_chan_attrs;, +19:u05:csa_cb_program;, +20:u07:csa_sec_parms<>;, +12:u08:18.36.2., +24:u11:csa_back_chan_attrs;, +19:u13:csa_cb_program;, +24:u00:csa_fore_chan_attrs;, +24:u02:csa_back_chan_attrs;, +19:u04:csa_cb_program;, +20:u06:csa_sec_parms<>;, +24:u10:csa_back_chan_attrs;, +19:u12:csa_cb_program;, +20:u14:csa_sec_parms<>;, +24:u01:csa_back_chan_attrs;, +19:u03:csa_cb_program;, +20:u05:csa_sec_parms<>;, +12:u07:18.36.2., +24:u08:CREATE_SESSION4resok, +19:u11:csa_cb_program;, +20:u13:csa_sec_parms<>;, +24:u00:csa_back_chan_attrs;, +19:u02:csa_cb_program;, +20:u04:csa_sec_parms<>;, +12:u06:18.36.2., +18:u08:csr_sessionid;, +24:u07:CREATE_SESSION4resok, +19:u10:csa_cb_program;, +20:u12:csa_sec_parms<>;, +12:u14:18.36.2., +19:u01:csa_cb_program;, +20:u03:csa_sec_parms<>;, +12:u05:18.36.2., +24:u06:CREATE_SESSION4resok, +20:u11:csa_sec_parms<>;, +12:u13:18.36.2., +19:u00:csa_cb_program;, +20:u02:csa_sec_parms<>;, +12:u04:18.36.2., +18:u07:csr_sessionid;, +17:u08:csr_sequence;, +24:u05:CREATE_SESSION4resok, +20:u10:csa_sec_parms<>;, +12:u12:18.36.2., +20:u01:csa_sec_parms<>;, +12:u03:18.36.2., +18:u06:csr_sessionid;, +24:u04:CREATE_SESSION4resok, +12:u11:18.36.2., +18:u14:csr_sessionid;, +20:u00:csa_sec_parms<>;, +12:u02:18.36.2., +18:u05:csr_sessionid;, +17:u07:csr_sequence;, +14:u08:csr_flags;, +24:u03:CREATE_SESSION4resok, +12:u10:18.36.2., +18:u13:csr_sessionid;, +12:u01:18.36.2., +18:u04:csr_sessionid;, +17:u06:csr_sequence;, +24:u02:CREATE_SESSION4resok, +18:u12:csr_sessionid;, +17:u14:csr_sequence;, +12:u00:18.36.2., +18:u03:csr_sessionid;, +17:u05:csr_sequence;, +14:u07:csr_flags;, +24:u08:csr_fore_chan_attrs;, +24:u01:CREATE_SESSION4resok, +18:u11:csr_sessionid;, +17:u13:csr_sequence;, +18:u02:csr_sessionid;, +17:u04:csr_sequence;, +14:u06:csr_flags;, +24:u00:CREATE_SESSION4resok, +18:u10:csr_sessionid;, +17:u12:csr_sequence;, +14:u14:csr_flags;, +18:u01:csr_sessionid;, +17:u03:csr_sequence;, +14:u05:csr_flags;, +24:u07:csr_fore_chan_attrs;, +24:u08:csr_back_chan_attrs;, +17:u11:csr_sequence;, +14:u13:csr_flags;, +18:u00:csr_sessionid;, +17:u02:csr_sequence;, +14:u04:csr_flags;, +24:u06:csr_fore_chan_attrs;, +17:u10:csr_sequence;, +14:u12:csr_flags;, +24:u14:csr_fore_chan_attrs;, +17:u01:csr_sequence;, +14:u03:csr_flags;, +24:u05:csr_fore_chan_attrs;, +24:u07:csr_back_chan_attrs;, +14:u11:csr_flags;, +24:u13:csr_fore_chan_attrs;, +17:u00:csr_sequence;, +14:u02:csr_flags;, +24:u04:csr_fore_chan_attrs;, +24:u06:csr_back_chan_attrs;, +14:u10:csr_flags;, +24:u12:csr_fore_chan_attrs;, +24:u14:csr_back_chan_attrs;, +14:u01:csr_flags;, +24:u03:csr_fore_chan_attrs;, +24:u05:csr_back_chan_attrs;, +24:u11:csr_fore_chan_attrs;, +24:u13:csr_back_chan_attrs;, +14:u00:csr_flags;, +24:u02:csr_fore_chan_attrs;, +24:u04:csr_back_chan_attrs;, +15:u08:csr_resok4;, +24:u10:csr_fore_chan_attrs;, +24:u12:csr_back_chan_attrs;, +24:u01:csr_fore_chan_attrs;, +24:u03:csr_back_chan_attrs;, +24:u11:csr_back_chan_attrs;, +24:u00:csr_fore_chan_attrs;, +24:u02:csr_back_chan_attrs;, +15:u07:csr_resok4;, +24:u10:csr_back_chan_attrs;, +24:u14:create_session4resok, +24:u01:csr_back_chan_attrs;, +15:u06:csr_resok4;, +24:u13:create_session4resok, +15:u14:csr_resok4;, +24:u00:csr_back_chan_attrs;, +15:u05:csr_resok4;, +24:u12:create_session4resok, +15:u13:csr_resok4;, +15:u04:csr_resok4;, +24:u11:create_session4resok, +15:u12:csr_resok4;, +15:u03:csr_resok4;, +24:u10:create_session4resok, +15:u11:csr_resok4;, +15:u02:csr_resok4;, +8:u08:539], +15:u10:csr_resok4;, +15:u01:csr_resok4;, +8:u07:539], +15:u00:csr_resok4;, +8:u06:539], +8:u05:539], +8:u04:539], +8:u03:539], +8:u02:539], +12:u14:18.36.3., +8:u01:539], +12:u13:18.36.3., +8:u00:539], +12:u12:18.36.3., +12:u11:18.36.3., +12:u10:18.36.3., +13:u08:preceding, +13:u07:preceding, +24:u08:NFS4ERR_NOT_ONLY_OP., +13:u06:preceding, +13:u14:preceding, +13:u05:preceding, +24:u07:NFS4ERR_NOT_ONLY_OP., +12:u08:effects:, +13:u13:preceding, +13:u04:preceding, +24:u06:NFS4ERR_NOT_ONLY_OP., +13:u12:preceding, +24:u14:nfs4err_not_only_op., +13:u03:preceding, +24:u05:NFS4ERR_NOT_ONLY_OP., +12:u07:effects:, +13:u11:preceding, +24:u13:nfs4err_not_only_op., +13:u02:preceding, +24:u04:NFS4ERR_NOT_ONLY_OP., +12:u06:effects:, +13:u10:preceding, +24:u12:nfs4err_not_only_op., +12:u14:effects:, +13:u01:preceding, +24:u03:NFS4ERR_NOT_ONLY_OP., +12:u05:effects:, +24:u11:nfs4err_not_only_op., +12:u13:effects:, +13:u00:preceding, +24:u02:NFS4ERR_NOT_ONLY_OP., +12:u04:effects:, +24:u10:nfs4err_not_only_op., +12:u12:effects:, +24:u01:NFS4ERR_NOT_ONLY_OP., +12:u03:effects:, +12:u11:effects:, +24:u00:NFS4ERR_NOT_ONLY_OP., +12:u02:effects:, +17:u08:csa_clientid:, +12:u10:effects:, +12:u01:effects:, +12:u00:effects:, +17:u07:csa_clientid:, +15:u08:associated., +17:u06:csa_clientid:, +17:u14:csa_clientid:, +17:u05:csa_clientid:, +15:u07:associated., +17:u08:csa_sequence:, +17:u13:csa_clientid:, +17:u04:csa_clientid:, +15:u06:associated., +17:u12:csa_clientid:, +15:u14:associated., +17:u03:csa_clientid:, +15:u05:associated., +17:u07:csa_sequence:, +17:u11:csa_clientid:, +15:u13:associated., +17:u02:csa_clientid:, +15:u04:associated., +17:u06:csa_sequence:, +17:u10:csa_clientid:, +15:u12:associated., +17:u14:csa_sequence:, +17:u01:csa_clientid:, +15:u03:associated., +17:u05:csa_sequence:, +17:u08:csr_sequence,, +15:u11:associated., +17:u13:csa_sequence:, +17:u00:csa_clientid:, +15:u02:associated., +17:u04:csa_sequence:, +17:u07:csr_sequence,, +15:u10:associated., +17:u12:csa_sequence:, +15:u01:associated., +17:u03:csa_sequence:, +17:u06:csr_sequence,, +17:u11:csa_sequence:, +15:u00:associated., +17:u02:csa_sequence:, +15:u08:acceptable,, +17:u05:csr_sequence,, +17:u10:csa_sequence:, +17:u01:csa_sequence:, +17:u04:csr_sequence,, +17:u00:csa_sequence:, +15:u07:acceptable,, +17:u03:csr_sequence,, +15:u06:acceptable,, +17:u02:csr_sequence,, +15:u14:acceptable,, +15:u05:acceptable,, +14:u08:csa_flags:, +17:u01:csr_sequence,, +15:u13:acceptable,, +15:u04:acceptable,, +17:u00:csr_sequence,, +15:u12:acceptable,, +15:u03:acceptable,, +14:u07:csa_flags:, +15:u11:acceptable,, +15:u02:acceptable,, +14:u06:csa_flags:, +15:u10:acceptable,, +14:u14:csa_flags:, +15:u01:acceptable,, +14:u05:csa_flags:, +8:u08:540], +14:u13:csa_flags:, +15:u00:acceptable,, +14:u04:csa_flags:, +8:u07:540], +14:u12:csa_flags:, +14:u03:csa_flags:, +8:u06:540], +14:u11:csa_flags:, +14:u02:csa_flags:, +8:u05:540], +14:u10:csa_flags:, +14:u01:csa_flags:, +33:u08:CREATE_SESSION4_FLAG_PERSIST:, +8:u04:540], +13:u08:csa_flags, +14:u00:csa_flags:, +8:u03:540], +13:u07:csa_flags, +33:u07:CREATE_SESSION4_FLAG_PERSIST:, +8:u02:540], +13:u06:csa_flags, +33:u06:CREATE_SESSION4_FLAG_PERSIST:, +8:u01:540], +13:u05:csa_flags, +33:u14:create_session4_flag_persist:, +33:u05:CREATE_SESSION4_FLAG_PERSIST:, +8:u00:540], +13:u04:csa_flags, +33:u13:create_session4_flag_persist:, +33:u04:CREATE_SESSION4_FLAG_PERSIST:, +33:u08:CREATE_SESSION4_FLAG_PERSIST., +13:u03:csa_flags, +13:u08:session),, +33:u12:create_session4_flag_persist:, +33:u03:CREATE_SESSION4_FLAG_PERSIST:, +13:u02:csa_flags, +13:u07:session),, +33:u11:create_session4_flag_persist:, +33:u02:CREATE_SESSION4_FLAG_PERSIST:, +33:u07:CREATE_SESSION4_FLAG_PERSIST., +13:u01:csa_flags, +13:u06:session),, +33:u10:create_session4_flag_persist:, +33:u01:CREATE_SESSION4_FLAG_PERSIST:, +33:u06:CREATE_SESSION4_FLAG_PERSIST., +13:u00:csa_flags, +13:u05:session),, +33:u14:create_session4_flag_persist., +33:u00:CREATE_SESSION4_FLAG_PERSIST:, +33:u05:CREATE_SESSION4_FLAG_PERSIST., +13:u04:session),, +33:u13:create_session4_flag_persist., +33:u04:CREATE_SESSION4_FLAG_PERSIST., +13:u03:session),, +33:u12:create_session4_flag_persist., +32:u14:create_session4_flag_persist, +33:u03:CREATE_SESSION4_FLAG_PERSIST., +13:u02:session),, +33:u11:create_session4_flag_persist., +32:u13:create_session4_flag_persist, +33:u02:CREATE_SESSION4_FLAG_PERSIST., +40:u08:CREATE_SESSION4_FLAG_CONN_BACK_CHAN:, +13:u01:session),, +11:u08:5.12.4), +33:u10:create_session4_flag_persist., +32:u12:create_session4_flag_persist, +33:u01:CREATE_SESSION4_FLAG_PERSIST., +13:u00:session),, +11:u07:5.12.4), +32:u11:create_session4_flag_persist, +33:u00:CREATE_SESSION4_FLAG_PERSIST., +40:u07:CREATE_SESSION4_FLAG_CONN_BACK_CHAN:, +11:u06:5.12.4), +32:u10:create_session4_flag_persist, +40:u06:CREATE_SESSION4_FLAG_CONN_BACK_CHAN:, +11:u05:5.12.4), +40:u14:create_session4_flag_conn_back_chan:, +40:u05:CREATE_SESSION4_FLAG_CONN_BACK_CHAN:, +11:u04:5.12.4), +40:u13:create_session4_flag_conn_back_chan:, +40:u04:CREATE_SESSION4_FLAG_CONN_BACK_CHAN:, +11:u03:5.12.4), +40:u12:create_session4_flag_conn_back_chan:, +40:u03:CREATE_SESSION4_FLAG_CONN_BACK_CHAN:, +11:u02:5.12.4), +11:u08:agrees,, +40:u11:create_session4_flag_conn_back_chan:, +40:u02:CREATE_SESSION4_FLAG_CONN_BACK_CHAN:, +11:u01:5.12.4), +11:u07:agrees,, +40:u10:create_session4_flag_conn_back_chan:, +13:u14:session's, +40:u01:CREATE_SESSION4_FLAG_CONN_BACK_CHAN:, +11:u00:5.12.4), +11:u06:agrees,, +13:u13:session's, +40:u00:CREATE_SESSION4_FLAG_CONN_BACK_CHAN:, +14:u08:csr_flags., +11:u05:agrees,, +13:u12:session's, +35:u08:CREATE_SESSION4_FLAG_CONN_RDMA:, +11:u04:agrees,, +13:u11:session's, +39:u14:create_session4_flag_conn_back_chan, +14:u07:csr_flags., +11:u03:agrees,, +13:u10:session's, +39:u13:create_session4_flag_conn_back_chan, +14:u06:csr_flags., +35:u07:CREATE_SESSION4_FLAG_CONN_RDMA:, +11:u02:agrees,, +39:u12:create_session4_flag_conn_back_chan, +14:u14:csr_flags., +14:u05:csr_flags., +35:u06:CREATE_SESSION4_FLAG_CONN_RDMA:, +11:u01:agrees,, +39:u11:create_session4_flag_conn_back_chan, +14:u13:csr_flags., +35:u14:create_session4_flag_conn_rdma:, +14:u04:csr_flags., +35:u05:CREATE_SESSION4_FLAG_CONN_RDMA:, +11:u00:agrees,, +39:u10:create_session4_flag_conn_back_chan, +14:u12:csr_flags., +35:u13:create_session4_flag_conn_rdma:, +14:u03:csr_flags., +35:u04:CREATE_SESSION4_FLAG_CONN_RDMA:, +9:u08:"step, +14:u11:csr_flags., +35:u12:create_session4_flag_conn_rdma:, +14:u02:csr_flags., +35:u03:CREATE_SESSION4_FLAG_CONN_RDMA:, +7:u08:up", +14:u10:csr_flags., +35:u11:create_session4_flag_conn_rdma:, +14:u01:csr_flags., +35:u02:CREATE_SESSION4_FLAG_CONN_RDMA:, +9:u07:"step, +7:u07:up", +35:u10:create_session4_flag_conn_rdma:, +14:u00:csr_flags., +35:u01:CREATE_SESSION4_FLAG_CONN_RDMA:, +9:u06:"step, +7:u06:up", +9:u14:"step, +35:u00:CREATE_SESSION4_FLAG_CONN_RDMA:, +9:u05:"step, +7:u05:up", +14:u08:csa_flags,, +9:u13:"step, +11:u14:agrees,, +9:u04:"step, +7:u04:up", +14:u07:csa_flags,, +9:u12:"step, +11:u13:agrees,, +9:u03:"step, +7:u03:up", +14:u06:csa_flags,, +9:u11:"step, +11:u12:agrees,, +9:u02:"step, +24:u08:csa_fore_chan_attrs,, +7:u02:up", +14:u05:csa_flags,, +9:u10:"step, +11:u11:agrees,, +9:u01:"step, +7:u01:up", +14:u04:csa_flags,, +24:u08:csa_fore_chan_attrs:, +11:u10:agrees,, +9:u00:"step, +24:u07:csa_fore_chan_attrs,, +7:u00:up", +14:u03:csa_flags,, +24:u07:csa_fore_chan_attrs:, +23:u08:csa_fore_chan_attrs, +24:u06:csa_fore_chan_attrs,, +14:u02:csa_flags,, +24:u06:csa_fore_chan_attrs:, +23:u07:csa_fore_chan_attrs, +24:u14:csa_fore_chan_attrs,, +24:u05:csa_fore_chan_attrs,, +14:u01:csa_flags,, +24:u05:csa_fore_chan_attrs:, +23:u06:csa_fore_chan_attrs, +24:u13:csa_fore_chan_attrs,, +24:u04:csa_fore_chan_attrs,, +14:u00:csa_flags,, +24:u04:csa_fore_chan_attrs:, +23:u05:csa_fore_chan_attrs, +24:u12:csa_fore_chan_attrs,, +24:u03:csa_fore_chan_attrs,, +24:u03:csa_fore_chan_attrs:, +23:u04:csa_fore_chan_attrs, +24:u11:csa_fore_chan_attrs,, +24:u02:csa_fore_chan_attrs,, +24:u02:csa_fore_chan_attrs:, +23:u03:csa_fore_chan_attrs, +8:u08:541], +24:u10:csa_fore_chan_attrs,, +24:u01:csa_fore_chan_attrs,, +24:u01:csa_fore_chan_attrs:, +23:u02:csa_fore_chan_attrs, +8:u07:541], +24:u00:csa_fore_chan_attrs,, +24:u00:csa_fore_chan_attrs:, +23:u01:csa_fore_chan_attrs, +8:u06:541], +23:u00:csa_fore_chan_attrs, +8:u05:541], +12:u08:client),, +8:u04:541], +8:u03:541], +12:u07:client),, +8:u02:541], +12:u06:client),, +8:u01:541], +12:u14:client),, +12:u05:client),, +8:u00:541], +12:u13:client),, +12:u04:client),, +21:u08:ca_headerpadsize:, +12:u12:client),, +12:u03:client),, +12:u11:client),, +12:u02:client),, +21:u07:ca_headerpadsize:, +12:u10:client),, +12:u01:client),, +21:u06:ca_headerpadsize:, +21:u14:ca_headerpadsize:, +12:u00:client),, +21:u05:ca_headerpadsize:, +12:u08:replier., +21:u13:ca_headerpadsize:, +21:u04:ca_headerpadsize:, +12:u07:replier., +21:u12:ca_headerpadsize:, +21:u03:ca_headerpadsize:, +12:u06:replier., +21:u11:ca_headerpadsize:, +21:u02:ca_headerpadsize:, +22:u08:ca_maxrequestsize:, +12:u05:replier., +21:u10:ca_headerpadsize:, +21:u01:ca_headerpadsize:, +12:u04:replier., +21:u00:ca_headerpadsize:, +22:u07:ca_maxrequestsize:, +12:u03:replier., +22:u06:ca_maxrequestsize:, +12:u02:replier., +22:u14:ca_maxrequestsize:, +22:u05:ca_maxrequestsize:, +12:u01:replier., +22:u13:ca_maxrequestsize:, +22:u04:ca_maxrequestsize:, +11:u08:framing, +12:u00:replier., +22:u12:ca_maxrequestsize:, +22:u03:ca_maxrequestsize:, +12:u08:headers., +22:u11:ca_maxrequestsize:, +22:u02:ca_maxrequestsize:, +11:u07:framing, +12:u07:headers., +22:u10:ca_maxrequestsize:, +22:u01:ca_maxrequestsize:, +11:u06:framing, +10:u08:header, +12:u06:headers., +11:u14:framing, +22:u00:ca_maxrequestsize:, +11:u05:framing, +12:u05:headers., +11:u13:framing, +11:u04:framing, +10:u07:header, +12:u04:headers., +11:u12:framing, +11:u03:framing, +10:u06:header, +12:u03:headers., +11:u11:framing, +11:u02:framing, +10:u05:header, +12:u02:headers., +11:u10:framing, +11:u01:framing, +10:u04:header, +23:u08:ca_maxresponsesize:, +12:u01:headers., +23:u14:nfs4err_req_too_big, +11:u00:framing, +10:u03:header, +12:u00:headers., +23:u13:nfs4err_req_too_big, +10:u02:header, +23:u07:ca_maxresponsesize:, +23:u12:nfs4err_req_too_big, +10:u01:header, +23:u06:ca_maxresponsesize:, +23:u11:nfs4err_req_too_big, +23:u14:ca_maxresponsesize:, +10:u00:header, +23:u05:ca_maxresponsesize:, +23:u10:nfs4err_req_too_big, +23:u13:ca_maxresponsesize:, +23:u04:ca_maxresponsesize:, +23:u12:ca_maxresponsesize:, +23:u03:ca_maxresponsesize:, +23:u11:ca_maxresponsesize:, +23:u02:ca_maxresponsesize:, +23:u10:ca_maxresponsesize:, +23:u01:ca_maxresponsesize:, +23:u00:ca_maxresponsesize:, +30:u08:ca_maxresponsesize_cached:, +30:u07:ca_maxresponsesize_cached:, +30:u06:ca_maxresponsesize_cached:, +30:u14:ca_maxresponsesize_cached:, +30:u05:ca_maxresponsesize_cached:, +8:u08:542], +30:u13:ca_maxresponsesize_cached:, +30:u04:ca_maxresponsesize_cached:, +8:u07:542], +30:u12:ca_maxresponsesize_cached:, +30:u03:ca_maxresponsesize_cached:, +8:u06:542], +30:u11:ca_maxresponsesize_cached:, +30:u02:ca_maxresponsesize_cached:, +8:u05:542], +30:u10:ca_maxresponsesize_cached:, +30:u01:ca_maxresponsesize_cached:, +8:u04:542], +23:u08:ca_maxresponsesize,, +30:u00:ca_maxresponsesize_cached:, +12:u08:channel,, +8:u03:542], +23:u07:ca_maxresponsesize,, +8:u02:542], +23:u06:ca_maxresponsesize,, +12:u07:channel,, +8:u01:542], +23:u05:ca_maxresponsesize,, +12:u06:channel,, +8:u00:542], +23:u04:ca_maxresponsesize,, +12:u14:channel,, +12:u05:channel,, +23:u03:ca_maxresponsesize,, +22:u08:ca_maxresponsesize, +12:u13:channel,, +12:u14:increase, +12:u04:channel,, +23:u02:ca_maxresponsesize,, +22:u07:ca_maxresponsesize, +12:u12:channel,, +12:u13:increase, +12:u03:channel,, +23:u01:ca_maxresponsesize,, +22:u06:ca_maxresponsesize, +12:u11:channel,, +12:u12:increase, +12:u02:channel,, +23:u00:ca_maxresponsesize,, +22:u05:ca_maxresponsesize, +12:u10:channel,, +12:u11:increase, +12:u01:channel,, +22:u04:ca_maxresponsesize, +12:u10:increase, +12:u00:channel,, +22:u03:ca_maxresponsesize, +11:u08:decides, +22:u02:ca_maxresponsesize, +11:u07:decides, +22:u01:ca_maxresponsesize, +11:u06:decides, +22:u00:ca_maxresponsesize, +11:u05:decides, +30:u08:ca_maxresponsesize_cached,, +11:u04:decides, +11:u03:decides, +30:u07:ca_maxresponsesize_cached,, +11:u02:decides, +30:u06:ca_maxresponsesize_cached,, +21:u08:ca_maxoperations:, +11:u01:decides, +30:u14:ca_maxresponsesize_cached,, +30:u05:ca_maxresponsesize_cached,, +11:u00:decides, +30:u13:ca_maxresponsesize_cached,, +33:u14:nfs4err_rep_too_big_to_cache,, +30:u04:ca_maxresponsesize_cached,, +21:u07:ca_maxoperations:, +30:u12:ca_maxresponsesize_cached,, +33:u13:nfs4err_rep_too_big_to_cache,, +30:u03:ca_maxresponsesize_cached,, +21:u06:ca_maxoperations:, +30:u11:ca_maxresponsesize_cached,, +33:u12:nfs4err_rep_too_big_to_cache,, +21:u14:ca_maxoperations:, +30:u02:ca_maxresponsesize_cached,, +21:u05:ca_maxoperations:, +30:u10:ca_maxresponsesize_cached,, +33:u11:nfs4err_rep_too_big_to_cache,, +21:u13:ca_maxoperations:, +30:u01:ca_maxresponsesize_cached,, +21:u04:ca_maxoperations:, +33:u10:nfs4err_rep_too_big_to_cache,, +21:u12:ca_maxoperations:, +30:u00:ca_maxresponsesize_cached,, +21:u03:ca_maxoperations:, +21:u11:ca_maxoperations:, +21:u02:ca_maxoperations:, +25:u08:NFS4ERR_TOO_MANY_OPS., +21:u10:ca_maxoperations:, +21:u01:ca_maxoperations:, +19:u08:ca_maxrequests:, +21:u00:ca_maxoperations:, +25:u07:NFS4ERR_TOO_MANY_OPS., +25:u06:NFS4ERR_TOO_MANY_OPS., +19:u07:ca_maxrequests:, +25:u14:nfs4err_too_many_ops., +25:u05:NFS4ERR_TOO_MANY_OPS., +19:u06:ca_maxrequests:, +25:u13:nfs4err_too_many_ops., +19:u14:ca_maxrequests:, +25:u04:NFS4ERR_TOO_MANY_OPS., +19:u05:ca_maxrequests:, +25:u12:nfs4err_too_many_ops., +19:u13:ca_maxrequests:, +25:u03:NFS4ERR_TOO_MANY_OPS., +19:u04:ca_maxrequests:, +14:u08:inclusive., +25:u11:nfs4err_too_many_ops., +19:u12:ca_maxrequests:, +25:u02:NFS4ERR_TOO_MANY_OPS., +19:u03:ca_maxrequests:, +25:u10:nfs4err_too_many_ops., +19:u11:ca_maxrequests:, +25:u01:NFS4ERR_TOO_MANY_OPS., +19:u02:ca_maxrequests:, +14:u07:inclusive., +19:u10:ca_maxrequests:, +25:u00:NFS4ERR_TOO_MANY_OPS., +19:u01:ca_maxrequests:, +14:u06:inclusive., +16:u08:ca_rdma_ird:, +14:u14:inclusive., +19:u00:ca_maxrequests:, +14:u05:inclusive., +14:u13:inclusive., +14:u04:inclusive., +16:u07:ca_rdma_ird:, +12:u08:element,, +14:u12:inclusive., +14:u03:inclusive., +16:u06:ca_rdma_ird:, +9:u08:depth, +14:u11:inclusive., +16:u14:ca_rdma_ird:, +14:u02:inclusive., +16:u05:ca_rdma_ird:, +12:u07:element,, +10:u08:(IRD)., +14:u10:inclusive., +16:u13:ca_rdma_ird:, +14:u01:inclusive., +16:u04:ca_rdma_ird:, +12:u06:element,, +9:u07:depth, +18:u08:csa_cb_program, +10:u07:(IRD)., +16:u12:ca_rdma_ird:, +12:u14:element,, +14:u00:inclusive., +16:u03:ca_rdma_ird:, +12:u05:element,, +9:u06:depth, +10:u06:(IRD)., +16:u11:ca_rdma_ird:, +12:u13:element,, +9:u14:depth, +16:u02:ca_rdma_ird:, +12:u04:element,, +9:u05:depth, +18:u07:csa_cb_program, +10:u05:(IRD)., +16:u10:ca_rdma_ird:, +12:u12:element,, +9:u13:depth, +16:u01:ca_rdma_ird:, +12:u03:element,, +9:u04:depth, +18:u06:csa_cb_program, +10:u04:(IRD)., +12:u11:element,, +9:u12:depth, +18:u14:csa_cb_program, +8:u23:dept, +16:u00:ca_rdma_ird:, +12:u02:element,, +9:u03:depth, +18:u05:csa_cb_program, +10:u03:(IRD)., +8:u08:543], +12:u10:element,, +9:u11:depth, +18:u13:csa_cb_program, +12:u01:element,, +9:u02:depth, +18:u04:csa_cb_program, +10:u02:(IRD)., +8:u07:543], +9:u10:depth, +18:u12:csa_cb_program, +12:u00:element,, +9:u01:depth, +18:u03:csa_cb_program, +10:u01:(IRD)., +8:u06:543], +18:u11:csa_cb_program, +9:u00:depth, +18:u02:csa_cb_program, +10:u00:(IRD)., +8:u05:543], +18:u10:csa_cb_program, +18:u01:csa_cb_program, +8:u04:543], +18:u00:csa_cb_program, +8:u03:543], +8:u02:543], +8:u01:543], +8:u00:543], +17:u08:csa_sec_parms, +17:u07:csa_sec_parms, +17:u06:csa_sec_parms, +9:u08:Three, +17:u14:csa_sec_parms, +17:u05:csa_sec_parms, +15:u08:RPCSEC_GSS., +17:u13:csa_sec_parms, +17:u04:csa_sec_parms, +9:u07:Three, +8:u08:says, +17:u12:csa_sec_parms, +17:u03:csa_sec_parms, +9:u06:Three, +15:u07:RPCSEC_GSS., +17:u11:csa_sec_parms, +17:u02:csa_sec_parms, +9:u05:Three, +15:u06:RPCSEC_GSS., +8:u07:says, +17:u10:csa_sec_parms, +15:u14:rpcsec_gss., +7:uI2::,,, +17:u01:csa_sec_parms, +9:u04:Three, +15:u05:RPCSEC_GSS., +8:u06:says, +15:u13:rpcsec_gss., +8:u14:says, +8:u23:Thre, +7:uI1::,,, +17:u00:csa_sec_parms, +9:u03:Three, +15:u04:RPCSEC_GSS., +8:u05:says, +15:u12:rpcsec_gss., +8:u13:says, +7:uI0::,,, +9:u02:Three, +15:u03:RPCSEC_GSS., +8:u04:says, +15:u11:rpcsec_gss., +8:u12:says, +7:u22:say, +8:u23:says, +9:u01:Three, +15:u02:RPCSEC_GSS., +8:u03:says, +15:u10:rpcsec_gss., +8:u11:says, +9:u00:Three, +15:u01:RPCSEC_GSS., +8:u02:says, +8:u10:says, +15:u00:RPCSEC_GSS., +8:u01:says, +8:u00:says, +14:u08:Successful, +16:u08:Acceptance",, +14:u07:Successful, +16:u07:Acceptance",, +14:u06:Successful, +16:u06:Acceptance",, +10:uI2:...,"-, +14:u05:Successful, +16:u05:Acceptance",, +10:uI1:...,"-, +9:uI2:",[]., +14:u04:Successful, +16:u04:Acceptance",, +15:u08:spi_handles, +8:u23:Succ, +10:uI0:...,"-, +9:uI1:",[]., +14:u03:Successful, +16:u03:Acceptance",, +15:u07:spi_handles, +9:uI0:",[]., +14:u02:Successful, +16:u02:Acceptance",, +15:u06:spi_handles, +28:u08:gcbp_handle_from_client,, +14:u01:Successful, +16:u01:Acceptance",, +15:u05:spi_handles, +28:u07:gcbp_handle_from_client,, +14:u00:Successful, +16:u00:Acceptance",, +15:u04:spi_handles, +28:u06:gcbp_handle_from_client,, +11:u14:handle,, +27:u08:gcbp_handle_from_client, +15:u03:spi_handles, +28:u05:gcbp_handle_from_client,, +11:u13:handle,, +12:u08:"handle", +15:u02:spi_handles, +28:u04:gcbp_handle_from_client,, +11:u12:handle,, +27:u07:gcbp_handle_from_client, +15:u01:spi_handles, +28:u03:gcbp_handle_from_client,, +11:u11:handle,, +27:u06:gcbp_handle_from_client, +12:u07:"handle", +15:u00:spi_handles, +28:u02:gcbp_handle_from_client,, +11:u10:handle,, +27:u14:gcbp_handle_from_client, +27:u05:gcbp_handle_from_client, +12:u06:"handle", +17:u08:gcbp_service,, +28:u01:gcbp_handle_from_client,, +27:u13:gcbp_handle_from_client, +12:u14:"handle", +27:u04:gcbp_handle_from_client, +12:u05:"handle", +18:u08:rpc_gss_cred_t, +28:u00:gcbp_handle_from_client,, +27:u12:gcbp_handle_from_client, +12:u13:"handle", +9:uI2:""(,", +27:u03:gcbp_handle_from_client, +12:u04:"handle", +17:u07:gcbp_service,, +16:u08:gcbp_service, +27:u11:gcbp_handle_from_client, +12:u12:"handle", +8:u23:"han, +9:uI1:""(,", +10:uI2:",[])., +27:u02:gcbp_handle_from_client, +12:u03:"handle", +17:u06:gcbp_service,, +18:u07:rpc_gss_cred_t, +27:u10:gcbp_handle_from_client, +12:u11:"handle", +17:u14:gcbp_service,, +9:uI0:""(,", +10:uI1:",[])., +27:u01:gcbp_handle_from_client, +12:u02:"handle", +17:u05:gcbp_service,, +18:u06:rpc_gss_cred_t, +16:u07:gcbp_service, +12:u10:"handle", +17:u13:gcbp_service,, +18:u14:rpc_gss_cred_t, +10:uI0:",[])., +10:uI2:,..,"", +27:u00:gcbp_handle_from_client, +12:u01:"handle", +17:u04:gcbp_service,, +18:u05:rpc_gss_cred_t, +16:u06:gcbp_service, +17:u12:gcbp_service,, +18:u13:rpc_gss_cred_t, +16:u14:gcbp_service, +10:uI1:,..,"", +12:u00:"handle", +17:u03:gcbp_service,, +18:u04:rpc_gss_cred_t, +16:u05:gcbp_service, +8:u08:544], +17:u11:gcbp_service,, +18:u12:rpc_gss_cred_t, +16:u13:gcbp_service, +10:uI0:,..,"", +15:uI2:(..,"",[])., +17:u02:gcbp_service,, +18:u03:rpc_gss_cred_t, +16:u04:gcbp_service, +8:u07:544], +17:u10:gcbp_service,, +18:u11:rpc_gss_cred_t, +16:u12:gcbp_service, +15:uI1:(..,"",[])., +17:u01:gcbp_service,, +18:u02:rpc_gss_cred_t, +16:u03:gcbp_service, +8:u06:544], +18:u10:rpc_gss_cred_t, +16:u11:gcbp_service, +15:uI0:(..,"",[])., +17:u00:gcbp_service,, +18:u01:rpc_gss_cred_t, +16:u02:gcbp_service, +8:u05:544], +16:u10:gcbp_service, +18:u00:rpc_gss_cred_t, +16:u01:gcbp_service, +8:u04:544], +16:u00:gcbp_service, +18:u08:NFS4ERR_NOENT., +8:u03:544], +8:u02:544], +18:u07:NFS4ERR_NOENT., +8:u01:544], +18:u06:NFS4ERR_NOENT., +8:u00:544], +18:u14:nfs4err_noent., +18:u05:NFS4ERR_NOENT., +18:u13:nfs4err_noent., +18:u04:NFS4ERR_NOENT., +18:u12:nfs4err_noent., +18:u03:NFS4ERR_NOENT., +18:u11:nfs4err_noent., +14:u14:seq_window, +18:u02:NFS4ERR_NOENT., +18:u10:nfs4err_noent., +14:u13:seq_window, +18:u01:NFS4ERR_NOENT., +14:u12:seq_window, +18:u00:NFS4ERR_NOENT., +14:u11:seq_window, +14:u10:seq_window, +10:uI2:..[])., +10:uI1:..[])., +10:uI0:..[])., +12:u08:18.36.4., +12:u07:18.36.4., +11:u08:records, +12:u06:18.36.4., +14:u08:introduced, +12:u14:18.36.4., +12:u05:18.36.4., +11:u07:records, +17:u08:clientid_arg:, +14:u07:introduced, +13:u08:addition:, +12:u13:18.36.4., +12:u04:18.36.4., +11:u06:records, +14:u06:introduced, +13:u07:addition:, +12:u12:18.36.4., +11:u14:records, +12:u03:18.36.4., +11:u05:records, +17:u07:clientid_arg:, +14:u05:introduced, +13:u06:addition:, +12:u11:18.36.4., +11:u13:records, +12:u02:18.36.4., +11:u04:records, +17:u06:clientid_arg:, +14:u04:introduced, +13:u05:addition:, +12:u10:18.36.4., +11:u12:records, +17:u14:clientid_arg:, +12:u01:18.36.4., +11:u03:records, +17:u05:clientid_arg:, +14:u03:introduced, +13:u04:addition:, +11:u11:records, +17:u13:clientid_arg:, +12:u00:18.36.4., +11:u02:records, +17:u04:clientid_arg:, +14:u02:introduced, +13:u03:addition:, +11:u10:records, +17:u12:clientid_arg:, +11:u01:records, +17:u03:clientid_arg:, +14:u01:introduced, +13:u02:addition:, +17:u11:clientid_arg:, +11:u00:records, +17:u02:clientid_arg:, +14:u00:introduced, +13:u01:addition:, +17:u10:clientid_arg:, +17:u01:clientid_arg:, +17:u08:distinctions., +13:u00:addition:, +17:u00:clientid_arg:, +17:u07:distinctions., +17:u06:distinctions., +17:u14:distinctions., +17:u05:distinctions., +17:u13:distinctions., +17:u04:distinctions., +12:u08:number)., +17:u12:distinctions., +17:u03:distinctions., +17:u11:distinctions., +17:u02:distinctions., +12:u07:number)., +17:u10:distinctions., +17:u01:distinctions., +12:u06:number)., +12:u14:number)., +17:u00:distinctions., +12:u05:number)., +12:u13:number)., +12:u04:number)., +8:u08:545], +12:u12:number)., +12:u03:number)., +8:u07:545], +12:u11:number)., +12:u02:number)., +8:u06:545], +12:u10:number)., +12:u01:number)., +8:u05:545], +12:u00:number)., +8:u04:545], +8:u03:545], +8:u02:545], +8:u01:545], +11:u08:itself,, +8:u00:545], +10:u14:cache,, +11:u07:itself,, +10:u13:cache,, +11:u06:itself,, +10:u12:cache,, +11:u14:itself,, +11:u05:itself,, +10:u11:cache,, +11:u13:itself,, +11:u04:itself,, +10:u10:cache,, +11:u12:itself,, +14:u14:originally, +11:u03:itself,, +11:u11:itself,, +14:u13:originally, +11:u02:itself,, +11:u10:itself,, +14:u12:originally, +11:u01:itself,, +14:u11:originally, +11:u00:itself,, +14:u10:originally, +18:u08:eir_sequenceid, +13:u08:contrived, +6:u08:-1, +18:u07:eir_sequenceid, +27:u08:NFS4ERR_SEQ_MISORDERED., +6:u07:-1, +18:u06:eir_sequenceid, +13:u07:contrived, +6:u06:-1, +18:u14:eir_sequenceid, +18:u05:eir_sequenceid, +13:u06:contrived, +27:u07:NFS4ERR_SEQ_MISORDERED., +11:u08:phases:, +6:u05:-1, +18:u13:eir_sequenceid, +13:u14:contrived, +18:u04:eir_sequenceid, +13:u05:contrived, +27:u06:NFS4ERR_SEQ_MISORDERED., +6:u04:-1, +18:u12:eir_sequenceid, +13:u13:contrived, +27:u14:nfs4err_seq_misordered., +18:u03:eir_sequenceid, +13:u04:contrived, +27:u05:NFS4ERR_SEQ_MISORDERED., +11:u07:phases:, +6:u03:-1, +18:u11:eir_sequenceid, +13:u12:contrived, +27:u13:nfs4err_seq_misordered., +18:u02:eir_sequenceid, +13:u03:contrived, +27:u04:NFS4ERR_SEQ_MISORDERED., +11:u06:phases:, +6:u02:-1, +18:u10:eir_sequenceid, +13:u11:contrived, +27:u12:nfs4err_seq_misordered., +11:u14:phases:, +18:u01:eir_sequenceid, +13:u02:contrived, +27:u03:NFS4ERR_SEQ_MISORDERED., +11:u05:phases:, +6:u01:-1, +13:u10:contrived, +27:u11:nfs4err_seq_misordered., +11:u13:phases:, +18:u00:eir_sequenceid, +13:u01:contrived, +27:u02:NFS4ERR_SEQ_MISORDERED., +11:u04:phases:, +6:u00:-1, +27:u10:nfs4err_seq_misordered., +11:u12:phases:, +13:u00:contrived, +27:u01:NFS4ERR_SEQ_MISORDERED., +11:u03:phases:, +11:u11:phases:, +27:u00:NFS4ERR_SEQ_MISORDERED., +11:u02:phases:, +11:u10:phases:, +11:u01:phases:, +11:u00:phases:, +16:u08:wraparound),, +16:u07:wraparound),, +18:u08:csa_sequenceid, +16:u06:wraparound),, +16:u14:wraparound),, +16:u05:wraparound),, +18:u07:csa_sequenceid, +16:u13:wraparound),, +27:u14:nfs4err_seq_misordered,, +16:u04:wraparound),, +18:u06:csa_sequenceid, +16:u12:wraparound),, +27:u13:nfs4err_seq_misordered,, +18:u14:csa_sequenceid, +7:u22:wra, +8:u23:wrap, +16:u03:wraparound),, +18:u05:csa_sequenceid, +8:u08:546], +16:u11:wraparound),, +27:u12:nfs4err_seq_misordered,, +18:u13:csa_sequenceid, +16:u02:wraparound),, +18:u04:csa_sequenceid, +8:u07:546], +16:u10:wraparound),, +27:u11:nfs4err_seq_misordered,, +18:u12:csa_sequenceid, +16:u01:wraparound),, +18:u03:csa_sequenceid, +8:u06:546], +27:u10:nfs4err_seq_misordered,, +18:u11:csa_sequenceid, +16:u00:wraparound),, +18:u02:csa_sequenceid, +8:u05:546], +18:u10:csa_sequenceid, +18:u01:csa_sequenceid, +19:u08:csa_sequenceid,, +8:u04:546], +18:u00:csa_sequenceid, +8:u03:546], +19:u07:csa_sequenceid,, +8:u02:546], +19:u06:csa_sequenceid,, +8:u01:546], +19:u14:csa_sequenceid,, +19:u05:csa_sequenceid,, +8:u00:546], +19:u13:csa_sequenceid,, +19:u04:csa_sequenceid,, +19:u12:csa_sequenceid,, +19:u03:csa_sequenceid,, +19:u11:csa_sequenceid,, +19:u02:csa_sequenceid,, +11:u08:skipped, +19:u10:csa_sequenceid,, +19:u01:csa_sequenceid,, +19:u00:csa_sequenceid,, +11:u07:skipped, +11:u06:skipped, +11:u14:skipped, +11:u05:skipped, +11:u13:skipped, +11:u04:skipped, +11:u12:skipped, +6:u21:sk, +7:u22:ski, +8:u23:skip, +11:u03:skipped, +11:u11:skipped, +11:u02:skipped, +11:u10:skipped, +11:u01:skipped, +12:u08:ownerid,, +11:u00:skipped, +12:u07:ownerid,, +12:u06:ownerid,, +12:u05:ownerid,, +12:u04:ownerid,, +12:u03:ownerid,, +12:u02:ownerid,, +12:u01:ownerid,, +12:u00:ownerid,, +16:u08:Unsuccessful, +16:u07:Unsuccessful, +16:u06:Unsuccessful, +16:u05:Unsuccessful, +16:u04:Unsuccessful, +16:u03:Unsuccessful, +6:u08:*,, +16:u02:Unsuccessful, +6:u07:*,, +16:u01:Unsuccessful, +6:u06:*,, +16:u00:Unsuccessful, +6:u05:*,, +8:u08:547], +11:uI2:*,*,,,*, +6:u04:*,, +8:u07:547], +11:uI1:*,*,,,*, +6:u03:*,, +8:u06:547], +11:uI0:*,*,,,*, +11:u08:Neither, +6:u02:*,, +8:u05:547], +6:u01:*,, +8:u04:547], +11:u07:Neither, +6:u00:*,, +8:u03:547], +11:u06:Neither, +8:u02:547], +11:u05:Neither, +8:u01:547], +11:u04:Neither, +8:u00:547], +8:u23:Neit, +11:u03:Neither, +11:u02:Neither, +11:u01:Neither, +11:u00:Neither, +19:u08:NFS4ERR_NOSPC)., +19:u07:NFS4ERR_NOSPC)., +19:u06:NFS4ERR_NOSPC)., +19:u05:NFS4ERR_NOSPC)., +19:u04:NFS4ERR_NOSPC)., +19:u03:NFS4ERR_NOSPC)., +19:u02:NFS4ERR_NOSPC)., +15:u08:initializes, +19:u01:NFS4ERR_NOSPC)., +15:u07:initializes, +19:u00:NFS4ERR_NOSPC)., +15:u06:initializes, +15:u05:initializes, +15:u04:initializes, +15:u03:initializes, +15:u02:initializes, +15:u01:initializes, +12:u08:non-RDMA, +15:u00:initializes, +12:u07:non-RDMA, +12:u06:non-RDMA, +12:u05:non-RDMA, +11:u08:dispose, +12:u04:non-RDMA, +11:u07:dispose, +11:u14:change,, +10:u08:slots,, +12:u03:non-RDMA, +11:u06:dispose, +11:u13:change,, +12:u02:non-RDMA, +11:u05:dispose, +11:u12:change,, +10:u07:slots,, +12:u01:non-RDMA, +11:u04:dispose, +11:u11:change,, +10:u06:slots,, +12:u00:non-RDMA, +11:u03:dispose, +11:u10:change,, +10:u14:slots,, +10:u05:slots,, +11:u02:dispose, +10:u13:slots,, +10:u04:slots,, +16:u08:Implementing, +11:u01:dispose, +10:u12:slots,, +10:u03:slots,, +11:u00:dispose, +10:u11:slots,, +10:u02:slots,, +16:u07:Implementing, +10:u10:slots,, +10:u01:slots,, +16:u06:Implementing, +13:u08:includes:, +10:u00:slots,, +16:u05:Implementing, +13:u07:includes:, +10:u08:Adding, +16:u04:Implementing, +13:u06:includes:, +10:u07:Adding, +10:u08:count., +16:u03:Implementing, +13:u05:includes:, +10:u06:Adding, +10:u07:count., +16:u02:Implementing, +13:u04:includes:, +10:u05:Adding, +10:u06:count., +16:u01:Implementing, +13:u03:includes:, +10:u04:Adding, +10:u05:count., +8:u08:548], +16:u00:Implementing, +13:u02:includes:, +10:u03:Adding, +10:u04:count., +8:u07:548], +13:u01:includes:, +10:u02:Adding, +10:u03:count., +8:u06:548], +13:u00:includes:, +10:u01:Adding, +10:u02:count., +8:u05:548], +10:u00:Adding, +10:u01:count., +8:u04:548], +10:u00:count., +8:u03:548], +8:u02:548], +8:u01:548], +10:u08:Change, +27:u08:gss_init_sec_context()., +8:u00:548], +10:u07:Change, +10:u06:Change, +27:u07:gss_init_sec_context()., +10:u05:Change, +27:u06:gss_init_sec_context()., +10:u04:Change, +27:u14:gss_init_sec_context()., +27:u05:gss_init_sec_context()., +10:u03:Change, +27:u13:gss_init_sec_context()., +27:u04:gss_init_sec_context()., +10:u02:Change, +16:u08:incremented., +27:u12:gss_init_sec_context()., +27:u03:gss_init_sec_context()., +10:u01:Change, +16:u07:incremented., +27:u11:gss_init_sec_context()., +27:u02:gss_init_sec_context()., +10:u00:Change, +16:u06:incremented., +27:u10:gss_init_sec_context()., +27:u01:gss_init_sec_context()., +16:u05:incremented., +27:u00:gss_init_sec_context()., +16:u04:incremented., +13:u08:Replacing, +16:u03:incremented., +13:u07:Replacing, +16:u14:incremented., +16:u02:incremented., +13:u06:Replacing, +16:u13:incremented., +12:u08:18.37.1., +16:u01:incremented., +13:u05:Replacing, +16:u12:incremented., +16:u00:incremented., +13:u04:Replacing, +16:u11:incremented., +12:u07:18.37.1., +13:u03:Replacing, +16:u10:incremented., +12:u06:18.37.1., +18:u08:dsa_sessionid;, +13:u02:Replacing, +12:u14:18.37.1., +12:u05:18.37.1., +13:u01:Replacing, +12:u13:18.37.1., +12:u04:18.37.1., +18:u07:dsa_sessionid;, +12:u08:18.37.2., +13:u00:Replacing, +12:u12:18.37.1., +12:u03:18.37.1., +18:u06:dsa_sessionid;, +12:u11:18.37.1., +18:u14:dsa_sessionid;, +12:u02:18.37.1., +18:u05:dsa_sessionid;, +12:u07:18.37.2., +12:u10:18.37.1., +18:u13:dsa_sessionid;, +12:u01:18.37.1., +18:u04:dsa_sessionid;, +12:u06:18.37.2., +15:u08:dsr_status;, +18:u12:dsa_sessionid;, +12:u14:18.37.2., +7:u22:dsa, +8:u23:dsa_, +12:u00:18.37.1., +18:u03:dsa_sessionid;, +12:u05:18.37.2., +18:u11:dsa_sessionid;, +12:u13:18.37.2., +18:u02:dsa_sessionid;, +12:u04:18.37.2., +15:u07:dsr_status;, +12:u08:18.37.3., +18:u10:dsa_sessionid;, +12:u12:18.37.2., +18:u01:dsa_sessionid;, +12:u03:18.37.2., +15:u06:dsr_status;, +12:u11:18.37.2., +15:u14:dsr_status;, +18:u00:dsa_sessionid;, +12:u02:18.37.2., +15:u05:dsr_status;, +12:u07:18.37.3., +12:u10:18.37.2., +15:u13:dsr_status;, +12:u01:18.37.2., +15:u04:dsr_status;, +12:u06:18.37.3., +15:u12:dsr_status;, +12:u14:18.37.3., +7:u22:dsr, +8:u23:dsr_, +12:u00:18.37.2., +15:u03:dsr_status;, +12:u05:18.37.3., +15:u11:dsr_status;, +12:u13:18.37.3., +15:u02:dsr_status;, +12:u04:18.37.3., +15:u10:dsr_status;, +12:u12:18.37.3., +15:u01:dsr_status;, +12:u03:18.37.3., +12:u11:18.37.3., +15:u00:dsr_status;, +12:u02:18.37.3., +12:u10:18.37.3., +12:u01:18.37.3., +12:u00:18.37.3., +10:uI2:.,,,,,, +10:uI1:.,,,,,, +10:uI0:.,,,,,, +8:u08:549], +8:u07:549], +8:u06:549], +8:u05:549], +8:u04:549], +8:u03:549], +8:u02:549], +8:u01:549], +8:u00:549], +9:uI2:,(..), +9:uI1:,(..), +9:uI0:,(..), +11:u08:replied, +9:u08:down,, +11:u07:replied, +11:u06:replied, +9:u07:down,, +11:u05:replied, +9:u06:down,, +21:u08:CB_BACK_CHAN_BUSY, +11:u04:replied, +9:u14:down,, +9:u05:down,, +16:u08:CB_COMPOUNDs, +11:u03:replied, +9:u13:down,, +9:u04:down,, +21:u07:CB_BACK_CHAN_BUSY, +11:u02:replied, +9:u12:down,, +9:u03:down,, +21:u06:CB_BACK_CHAN_BUSY, +16:u07:CB_COMPOUNDs, +11:u01:replied, +9:u11:down,, +21:u14:cb_back_chan_busy, +9:u02:down,, +21:u05:CB_BACK_CHAN_BUSY, +16:u06:CB_COMPOUNDs, +11:u00:replied, +9:u10:down,, +21:u13:cb_back_chan_busy, +16:u14:cb_compounds, +9:u01:down,, +21:u04:CB_BACK_CHAN_BUSY, +16:u05:CB_COMPOUNDs, +21:u12:cb_back_chan_busy, +16:u13:cb_compounds, +8:u23:CB_B, +9:u00:down,, +21:u03:CB_BACK_CHAN_BUSY, +16:u04:CB_COMPOUNDs, +21:u11:cb_back_chan_busy, +16:u12:cb_compounds, +21:u02:CB_BACK_CHAN_BUSY, +16:u03:CB_COMPOUNDs, +8:u08:550], +21:u10:cb_back_chan_busy, +16:u11:cb_compounds, +21:u01:CB_BACK_CHAN_BUSY, +16:u02:CB_COMPOUNDs, +8:u07:550], +16:u10:cb_compounds, +21:u00:CB_BACK_CHAN_BUSY, +16:u01:CB_COMPOUNDs, +8:u06:550], +16:u00:CB_COMPOUNDs, +12:u08:18.38.1., +8:u05:550], +8:u04:550], +12:u07:18.38.1., +8:u03:550], +21:u08:FREE_STATEID4args, +12:u06:18.38.1., +16:u08:fsa_stateid;, +8:u02:550], +21:u07:FREE_STATEID4args, +12:u14:18.38.1., +12:u05:18.38.1., +8:u01:550], +21:u06:FREE_STATEID4args, +12:u13:18.38.1., +12:u04:18.38.1., +16:u07:fsa_stateid;, +12:u08:18.38.2., +8:u00:550], +21:u05:FREE_STATEID4args, +12:u12:18.38.1., +12:u03:18.38.1., +16:u06:fsa_stateid;, +21:u04:FREE_STATEID4args, +12:u11:18.38.1., +16:u14:fsa_stateid;, +12:u02:18.38.1., +16:u05:fsa_stateid;, +12:u07:18.38.2., +21:u03:FREE_STATEID4args, +20:u08:FREE_STATEID4res, +12:u10:18.38.1., +16:u13:fsa_stateid;, +12:u01:18.38.1., +16:u04:fsa_stateid;, +12:u06:18.38.2., +15:u08:fsr_status;, +21:u02:FREE_STATEID4args, +20:u07:FREE_STATEID4res, +16:u12:fsa_stateid;, +12:u14:18.38.2., +7:u22:fsa, +8:u23:fsa_, +12:u00:18.38.1., +16:u03:fsa_stateid;, +12:u05:18.38.2., +21:u01:FREE_STATEID4args, +20:u06:FREE_STATEID4res, +16:u11:fsa_stateid;, +12:u13:18.38.2., +16:u02:fsa_stateid;, +12:u04:18.38.2., +15:u07:fsr_status;, +12:u08:18.38.3., +21:u00:FREE_STATEID4args, +20:u05:FREE_STATEID4res, +16:u10:fsa_stateid;, +12:u12:18.38.2., +16:u01:fsa_stateid;, +12:u03:18.38.2., +15:u06:fsr_status;, +20:u04:FREE_STATEID4res, +12:u11:18.38.2., +15:u14:fsr_status;, +16:u00:fsa_stateid;, +12:u02:18.38.2., +15:u05:fsr_status;, +12:u07:18.38.3., +20:u03:FREE_STATEID4res, +12:u10:18.38.2., +15:u13:fsr_status;, +12:u01:18.38.2., +15:u04:fsr_status;, +12:u06:18.38.3., +20:u02:FREE_STATEID4res, +15:u12:fsr_status;, +12:u14:18.38.3., +7:u22:fsr, +8:u23:fsr_, +12:u00:18.38.2., +15:u03:fsr_status;, +12:u05:18.38.3., +20:u01:FREE_STATEID4res, +15:u11:fsr_status;, +12:u13:18.38.3., +15:u02:fsr_status;, +12:u04:18.38.3., +7:u08:(of, +20:u00:FREE_STATEID4res, +15:u10:fsr_status;, +12:u12:18.38.3., +15:u01:fsr_status;, +12:u03:18.38.3., +12:u11:18.38.3., +15:u00:fsr_status;, +12:u02:18.38.3., +7:u07:(of, +12:u10:18.38.3., +12:u01:18.38.3., +7:u06:(of, +7:u14:(of, +12:u00:18.38.3., +7:u05:(of, +7:u13:(of, +22:u14:nfs4err_locks_held, +7:u04:(of, +7:u12:(of, +22:u13:nfs4err_locks_held, +7:u22:(of, +7:u23:(of, +7:u03:(of, +7:u11:(of, +22:u12:nfs4err_locks_held, +7:u02:(of, +7:u10:(of, +22:u11:nfs4err_locks_held, +7:u01:(of, +16:u08:encountering, +22:u10:nfs4err_locks_held, +7:u00:(of, +16:u07:encountering, +16:u06:encountering, +16:u05:encountering, +12:u08:18.39.1., +16:u04:encountering, +16:u03:encountering, +12:u07:18.39.1., +16:u02:encountering, +12:u06:18.39.1., +16:u01:encountering, +12:u14:18.39.1., +12:u05:18.39.1., +16:u00:encountering, +8:u08:551], +12:u13:18.39.1., +12:u04:18.39.1., +8:u07:551], +12:u12:18.39.1., +12:u03:18.39.1., +8:u06:551], +12:u11:18.39.1., +12:u02:18.39.1., +8:u05:551], +12:u10:18.39.1., +12:u01:18.39.1., +8:u04:551], +12:u00:18.39.1., +8:u03:551], +8:u02:551], +28:u08:gdda_signal_deleg_avail;, +8:u01:551], +8:u00:551], +28:u07:gdda_signal_deleg_avail;, +28:u08:gdda_notification_types;, +28:u06:gdda_signal_deleg_avail;, +16:u08:attr_notice4, +28:u14:gdda_signal_deleg_avail;, +28:u05:gdda_signal_deleg_avail;, +28:u07:gdda_notification_types;, +26:u08:gdda_child_attr_delay;, +28:u13:gdda_signal_deleg_avail;, +28:u04:gdda_signal_deleg_avail;, +28:u06:gdda_notification_types;, +16:u07:attr_notice4, +28:u12:gdda_signal_deleg_avail;, +28:u14:gdda_notification_types;, +6:u21:gd, +7:u22:gdd, +8:u23:gdda, +28:u03:gdda_signal_deleg_avail;, +28:u05:gdda_notification_types;, +16:u06:attr_notice4, +26:u07:gdda_child_attr_delay;, +24:u08:gdda_dir_attr_delay;, +28:u11:gdda_signal_deleg_avail;, +28:u13:gdda_notification_types;, +16:u14:attr_notice4, +28:u02:gdda_signal_deleg_avail;, +28:u04:gdda_notification_types;, +16:u05:attr_notice4, +26:u06:gdda_child_attr_delay;, +28:u10:gdda_signal_deleg_avail;, +28:u12:gdda_notification_types;, +16:u13:attr_notice4, +26:u14:gdda_child_attr_delay;, +28:u01:gdda_signal_deleg_avail;, +28:u03:gdda_notification_types;, +16:u04:attr_notice4, +26:u05:gdda_child_attr_delay;, +24:u07:gdda_dir_attr_delay;, +26:u08:gdda_child_attributes;, +28:u11:gdda_notification_types;, +16:u12:attr_notice4, +26:u13:gdda_child_attr_delay;, +28:u00:gdda_signal_deleg_avail;, +28:u02:gdda_notification_types;, +16:u03:attr_notice4, +26:u04:gdda_child_attr_delay;, +24:u06:gdda_dir_attr_delay;, +28:u10:gdda_notification_types;, +16:u11:attr_notice4, +26:u12:gdda_child_attr_delay;, +24:u14:gdda_dir_attr_delay;, +28:u01:gdda_notification_types;, +16:u02:attr_notice4, +26:u03:gdda_child_attr_delay;, +24:u05:gdda_dir_attr_delay;, +26:u07:gdda_child_attributes;, +24:u08:gdda_dir_attributes;, +16:u10:attr_notice4, +26:u11:gdda_child_attr_delay;, +24:u13:gdda_dir_attr_delay;, +28:u00:gdda_notification_types;, +16:u01:attr_notice4, +26:u02:gdda_child_attr_delay;, +24:u04:gdda_dir_attr_delay;, +26:u06:gdda_child_attributes;, +26:u10:gdda_child_attr_delay;, +24:u12:gdda_dir_attr_delay;, +26:u14:gdda_child_attributes;, +16:u00:attr_notice4, +26:u01:gdda_child_attr_delay;, +24:u03:gdda_dir_attr_delay;, +26:u05:gdda_child_attributes;, +24:u07:gdda_dir_attributes;, +12:u08:18.39.2., +24:u11:gdda_dir_attr_delay;, +26:u13:gdda_child_attributes;, +26:u00:gdda_child_attr_delay;, +24:u02:gdda_dir_attr_delay;, +26:u04:gdda_child_attributes;, +24:u06:gdda_dir_attributes;, +24:u10:gdda_dir_attr_delay;, +26:u12:gdda_child_attributes;, +24:u14:gdda_dir_attributes;, +24:u01:gdda_dir_attr_delay;, +26:u03:gdda_child_attributes;, +24:u05:gdda_dir_attributes;, +12:u07:18.39.2., +28:u08:GET_DIR_DELEGATION4resok, +26:u11:gdda_child_attributes;, +24:u13:gdda_dir_attributes;, +24:u00:gdda_dir_attr_delay;, +26:u02:gdda_child_attributes;, +24:u04:gdda_dir_attributes;, +12:u06:18.39.2., +20:u08:gddr_cookieverf;, +28:u07:GET_DIR_DELEGATION4resok, +26:u10:gdda_child_attributes;, +24:u12:gdda_dir_attributes;, +12:u14:18.39.2., +26:u01:gdda_child_attributes;, +24:u03:gdda_dir_attributes;, +12:u05:18.39.2., +28:u06:GET_DIR_DELEGATION4resok, +24:u11:gdda_dir_attributes;, +12:u13:18.39.2., +26:u00:gdda_child_attributes;, +24:u02:gdda_dir_attributes;, +12:u04:18.39.2., +20:u07:gddr_cookieverf;, +28:u05:GET_DIR_DELEGATION4resok, +24:u10:gdda_dir_attributes;, +12:u12:18.39.2., +24:u01:gdda_dir_attributes;, +12:u03:18.39.2., +20:u06:gddr_cookieverf;, +17:u08:gddr_stateid;, +28:u04:GET_DIR_DELEGATION4resok, +12:u11:18.39.2., +20:u14:gddr_cookieverf;, +24:u00:gdda_dir_attributes;, +12:u02:18.39.2., +20:u05:gddr_cookieverf;, +28:u03:GET_DIR_DELEGATION4resok, +12:u10:18.39.2., +20:u13:gddr_cookieverf;, +12:u01:18.39.2., +20:u04:gddr_cookieverf;, +17:u07:gddr_stateid;, +28:u02:GET_DIR_DELEGATION4resok, +9:u08:Which, +20:u12:gddr_cookieverf;, +8:u23:gddr, +12:u00:18.39.2., +20:u03:gddr_cookieverf;, +17:u06:gddr_stateid;, +22:u08:gddr_notification;, +28:u01:GET_DIR_DELEGATION4resok, +9:u07:Which, +20:u11:gddr_cookieverf;, +17:u14:gddr_stateid;, +20:u02:gddr_cookieverf;, +17:u05:gddr_stateid;, +28:u00:GET_DIR_DELEGATION4resok, +9:u06:Which, +20:u10:gddr_cookieverf;, +17:u13:gddr_stateid;, +20:u01:gddr_cookieverf;, +17:u04:gddr_stateid;, +22:u07:gddr_notification;, +26:u08:gddr_child_attributes;, +9:u05:Which, +17:u12:gddr_stateid;, +20:u00:gddr_cookieverf;, +17:u03:gddr_stateid;, +22:u06:gddr_notification;, +9:u04:Which, +17:u11:gddr_stateid;, +22:u14:gddr_notification;, +17:u02:gddr_stateid;, +22:u05:gddr_notification;, +26:u07:gddr_child_attributes;, +24:u08:gddr_dir_attributes;, +9:u03:Which, +17:u10:gddr_stateid;, +22:u13:gddr_notification;, +17:u01:gddr_stateid;, +22:u04:gddr_notification;, +26:u06:gddr_child_attributes;, +9:u02:Which, +22:u12:gddr_notification;, +26:u14:gddr_child_attributes;, +17:u00:gddr_stateid;, +22:u03:gddr_notification;, +26:u05:gddr_child_attributes;, +24:u07:gddr_dir_attributes;, +9:u01:Which, +22:u11:gddr_notification;, +26:u13:gddr_child_attributes;, +22:u02:gddr_notification;, +26:u04:gddr_child_attributes;, +24:u06:gddr_dir_attributes;, +11:u08:GDD4_OK, +9:u00:Which, +18:u08:gddrnf4_status, +22:u10:gddr_notification;, +26:u12:gddr_child_attributes;, +24:u14:gddr_dir_attributes;, +22:u01:gddr_notification;, +26:u03:gddr_child_attributes;, +24:u05:gddr_dir_attributes;, +18:u07:gddrnf4_status, +26:u11:gddr_child_attributes;, +24:u13:gddr_dir_attributes;, +22:u00:gddr_notification;, +26:u02:gddr_child_attributes;, +24:u04:gddr_dir_attributes;, +11:u07:GDD4_OK, +16:u08:GDD4_UNAVAIL, +18:u06:gddrnf4_status, +26:u10:gddr_child_attributes;, +24:u12:gddr_dir_attributes;, +26:u01:gddr_child_attributes;, +24:u03:gddr_dir_attributes;, +11:u06:GDD4_OK, +18:u05:gddrnf4_status, +24:u11:gddr_dir_attributes;, +11:u14:gdd4_ok, +26:u00:gddr_child_attributes;, +24:u02:gddr_dir_attributes;, +11:u05:GDD4_OK, +16:u07:GDD4_UNAVAIL, +18:u04:gddrnf4_status, +24:u10:gddr_dir_attributes;, +11:u13:gdd4_ok, +24:u01:gddr_dir_attributes;, +11:u04:GDD4_OK, +16:u06:GDD4_UNAVAIL, +18:u03:gddrnf4_status, +11:u12:gdd4_ok, +16:u14:gdd4_unavail, +6:u21:GD, +7:u22:GDD, +8:u23:GDD4, +24:u00:gddr_dir_attributes;, +11:u03:GDD4_OK, +16:u05:GDD4_UNAVAIL, +18:u02:gddrnf4_status, +36:u08:GET_DIR_DELEGATION4res_non_fatal, +11:u11:gdd4_ok, +16:u13:gdd4_unavail, +11:u02:GDD4_OK, +16:u04:GDD4_UNAVAIL, +18:u01:gddrnf4_status, +36:u07:GET_DIR_DELEGATION4res_non_fatal, +19:u08:(gddrnf4_status, +11:u10:gdd4_ok, +16:u12:gdd4_unavail, +11:u01:GDD4_OK, +16:u03:GDD4_UNAVAIL, +18:u00:gddrnf4_status, +36:u06:GET_DIR_DELEGATION4res_non_fatal, +19:u07:(gddrnf4_status, +12:u08:GDD4_OK:, +16:u11:gdd4_unavail, +11:u00:GDD4_OK, +16:u02:GDD4_UNAVAIL, +18:u08:gddrnf_resok4;, +36:u05:GET_DIR_DELEGATION4res_non_fatal, +19:u06:(gddrnf4_status, +12:u07:GDD4_OK:, +16:u10:gdd4_unavail, +16:u01:GDD4_UNAVAIL, +36:u04:GET_DIR_DELEGATION4res_non_fatal, +19:u05:(gddrnf4_status, +12:u06:GDD4_OK:, +16:u00:GDD4_UNAVAIL, +18:u07:gddrnf_resok4;, +36:u03:GET_DIR_DELEGATION4res_non_fatal, +19:u04:(gddrnf4_status, +12:u05:GDD4_OK:, +17:u08:GDD4_UNAVAIL:, +28:u14:get_dir_delegation4resok, +18:u06:gddrnf_resok4;, +35:u08:gddrnf_will_signal_deleg_avail;, +36:u02:GET_DIR_DELEGATION4res_non_fatal, +19:u03:(gddrnf4_status, +12:u04:GDD4_OK:, +17:u07:GDD4_UNAVAIL:, +28:u13:get_dir_delegation4resok, +18:u14:gddrnf_resok4;, +18:u05:gddrnf_resok4;, +36:u01:GET_DIR_DELEGATION4res_non_fatal, +19:u02:(gddrnf4_status, +12:u03:GDD4_OK:, +17:u06:GDD4_UNAVAIL:, +28:u12:get_dir_delegation4resok, +18:u13:gddrnf_resok4;, +18:u04:gddrnf_resok4;, +35:u07:gddrnf_will_signal_deleg_avail;, +36:u00:GET_DIR_DELEGATION4res_non_fatal, +19:u01:(gddrnf4_status, +12:u02:GDD4_OK:, +17:u05:GDD4_UNAVAIL:, +28:u11:get_dir_delegation4resok, +18:u12:gddrnf_resok4;, +18:u03:gddrnf_resok4;, +35:u06:gddrnf_will_signal_deleg_avail;, +19:u00:(gddrnf4_status, +12:u01:GDD4_OK:, +17:u04:GDD4_UNAVAIL:, +28:u10:get_dir_delegation4resok, +18:u11:gddrnf_resok4;, +35:u14:gddrnf_will_signal_deleg_avail;, +18:u02:gddrnf_resok4;, +35:u05:gddrnf_will_signal_deleg_avail;, +12:u00:GDD4_OK:, +17:u03:GDD4_UNAVAIL:, +18:u10:gddrnf_resok4;, +35:u13:gddrnf_will_signal_deleg_avail;, +18:u01:gddrnf_resok4;, +35:u04:gddrnf_will_signal_deleg_avail;, +17:u02:GDD4_UNAVAIL:, +35:u12:gddrnf_will_signal_deleg_avail;, +18:u00:gddrnf_resok4;, +35:u03:gddrnf_will_signal_deleg_avail;, +24:u08:gddr_res_non_fatal4;, +17:u01:GDD4_UNAVAIL:, +35:u11:gddrnf_will_signal_deleg_avail;, +35:u02:gddrnf_will_signal_deleg_avail;, +17:u00:GDD4_UNAVAIL:, +35:u10:gddrnf_will_signal_deleg_avail;, +35:u01:gddrnf_will_signal_deleg_avail;, +24:u07:gddr_res_non_fatal4;, +36:u14:get_dir_delegation4res_non_fatal, +35:u00:gddrnf_will_signal_deleg_avail;, +24:u06:gddr_res_non_fatal4;, +36:u13:get_dir_delegation4res_non_fatal, +24:u14:gddr_res_non_fatal4;, +24:u05:gddr_res_non_fatal4;, +36:u12:get_dir_delegation4res_non_fatal, +24:u13:gddr_res_non_fatal4;, +24:u04:gddr_res_non_fatal4;, +36:u11:get_dir_delegation4res_non_fatal, +24:u12:gddr_res_non_fatal4;, +24:u03:gddr_res_non_fatal4;, +36:u10:get_dir_delegation4res_non_fatal, +24:u11:gddr_res_non_fatal4;, +24:u02:gddr_res_non_fatal4;, +8:u08:552], +24:u10:gddr_res_non_fatal4;, +24:u01:gddr_res_non_fatal4;, +8:u07:552], +24:u00:gddr_res_non_fatal4;, +8:u06:552], +12:u08:18.39.3., +8:u05:552], +8:u04:552], +12:u07:18.39.3., +8:u03:552], +12:u06:18.39.3., +8:u02:552], +12:u14:18.39.3., +12:u05:18.39.3., +8:u01:552], +12:u13:18.39.3., +12:u04:18.39.3., +8:u00:552], +12:u12:18.39.3., +12:u03:18.39.3., +12:u11:18.39.3., +12:u02:18.39.3., +29:u08:NFS4ERR_DIRDELEG_UNAVAIL., +12:u10:18.39.3., +12:u01:18.39.3., +12:u00:18.39.3., +29:u07:NFS4ERR_DIRDELEG_UNAVAIL., +29:u06:NFS4ERR_DIRDELEG_UNAVAIL., +29:u14:nfs4err_dirdeleg_unavail., +29:u05:NFS4ERR_DIRDELEG_UNAVAIL., +9:u08:asked, +29:u13:nfs4err_dirdeleg_unavail., +29:u04:NFS4ERR_DIRDELEG_UNAVAIL., +29:u12:nfs4err_dirdeleg_unavail., +29:u03:NFS4ERR_DIRDELEG_UNAVAIL., +9:u07:asked, +17:u08:gddr_stateid,, +29:u11:nfs4err_dirdeleg_unavail., +29:u02:NFS4ERR_DIRDELEG_UNAVAIL., +9:u06:asked, +29:u10:nfs4err_dirdeleg_unavail., +9:u14:asked, +29:u01:NFS4ERR_DIRDELEG_UNAVAIL., +9:u05:asked, +17:u07:gddr_stateid,, +9:u13:asked, +29:u00:NFS4ERR_DIRDELEG_UNAVAIL., +9:u04:asked, +17:u06:gddr_stateid,, +9:u12:asked, +17:u14:gddr_stateid,, +7:u22:ask, +8:u23:aske, +9:u03:asked, +17:u05:gddr_stateid,, +9:u11:asked, +17:u13:gddr_stateid,, +9:u02:asked, +17:u04:gddr_stateid,, +9:u10:asked, +17:u12:gddr_stateid,, +9:u01:asked, +17:u03:gddr_stateid,, +17:u11:gddr_stateid,, +9:u00:asked, +17:u02:gddr_stateid,, +10:u08:inform, +17:u10:gddr_stateid,, +17:u01:gddr_stateid,, +17:u00:gddr_stateid,, +10:u07:inform, +11:u14:events., +10:u06:inform, +11:u13:events., +10:u14:inform, +10:u05:inform, +11:u12:events., +10:u13:inform, +22:u14:get_dir_delegation, +10:u04:inform, +11:u11:events., +10:u12:inform, +22:u13:get_dir_delegation, +10:u03:inform, +11:u10:events., +10:u11:inform, +22:u12:get_dir_delegation, +10:u02:inform, +10:u10:inform, +22:u11:get_dir_delegation, +10:u01:inform, +15:u08:registering, +22:u10:get_dir_delegation, +10:u00:inform, +15:u07:registering, +9:u08:honor, +15:u06:registering, +34:u08:gddrnf_will_signal_deleg_avail, +15:u14:registering, +15:u05:registering, +9:u07:honor, +15:u13:registering, +15:u04:registering, +9:u06:honor, +34:u07:gddrnf_will_signal_deleg_avail, +15:u12:registering, +9:u14:honor, +15:u03:registering, +9:u05:honor, +34:u06:gddrnf_will_signal_deleg_avail, +15:u11:registering, +9:u13:honor, +34:u14:gddrnf_will_signal_deleg_avail, +15:u02:registering, +9:u04:honor, +34:u05:gddrnf_will_signal_deleg_avail, +10:u08:"want", +15:u10:registering, +9:u12:honor, +34:u13:gddrnf_will_signal_deleg_avail, +7:u22:hon, +8:u23:hono, +15:u01:registering, +9:u03:honor, +34:u04:gddrnf_will_signal_deleg_avail, +9:u11:honor, +34:u12:gddrnf_will_signal_deleg_avail, +15:u00:registering, +9:u02:honor, +34:u03:gddrnf_will_signal_deleg_avail, +10:u07:"want", +9:u10:honor, +34:u11:gddrnf_will_signal_deleg_avail, +9:u01:honor, +34:u02:gddrnf_will_signal_deleg_avail, +10:u06:"want", +34:u10:gddrnf_will_signal_deleg_avail, +10:u14:"want", +9:u00:honor, +34:u01:gddrnf_will_signal_deleg_avail, +10:u05:"want", +10:u13:"want", +34:u00:gddrnf_will_signal_deleg_avail, +10:u04:"want", +10:u12:"want", +6:u21:"w, +7:u22:"wa, +8:u23:"wan, +10:u03:"want", +10:u11:"want", +10:u02:"want", +10:u10:"want", +10:u01:"want", +10:u00:"want", +8:u08:553], +8:u07:553], +8:u06:553], +8:u05:553], +8:u04:553], +8:u03:553], +8:u02:553], +17:u08:GDD4_UNAVAIL,, +11:u08:intact,, +8:u01:553], +17:u07:GDD4_UNAVAIL,, +10:u08:FALSE., +8:u00:553], +17:u06:GDD4_UNAVAIL,, +10:u07:FALSE., +11:u07:intact,, +13:u08:stateid)., +17:u05:GDD4_UNAVAIL,, +10:u06:FALSE., +11:u06:intact,, +12:u08:18.39.4., +17:u04:GDD4_UNAVAIL,, +10:u05:FALSE., +11:u14:intact,, +11:u05:intact,, +13:u07:stateid)., +17:u03:GDD4_UNAVAIL,, +10:u04:FALSE., +11:u13:intact,, +11:u04:intact,, +13:u06:stateid)., +12:u07:18.39.4., +17:u02:GDD4_UNAVAIL,, +10:u03:FALSE., +11:u12:intact,, +13:u14:stateid)., +9:uI2:(...., +11:u03:intact,, +13:u05:stateid)., +12:u06:18.39.4., +15:u08:synchronous, +17:u01:GDD4_UNAVAIL,, +10:u02:FALSE., +11:u11:intact,, +13:u13:stateid)., +12:u14:18.39.4., +9:uI1:(...., +11:u02:intact,, +13:u04:stateid)., +12:u05:18.39.4., +17:u00:GDD4_UNAVAIL,, +10:u01:FALSE., +11:u10:intact,, +13:u12:stateid)., +12:u13:18.39.4., +9:uI0:(...., +11:u01:intact,, +13:u03:stateid)., +12:u04:18.39.4., +15:u07:synchronous, +10:u00:FALSE., +13:u11:stateid)., +12:u12:18.39.4., +11:u00:intact,, +13:u02:stateid)., +12:u03:18.39.4., +15:u06:synchronous, +13:u10:stateid)., +12:u11:18.39.4., +15:u14:synchronous, +13:u01:stateid)., +12:u02:18.39.4., +15:u05:synchronous, +12:u10:18.39.4., +15:u13:synchronous, +13:u00:stateid)., +12:u01:18.39.4., +15:u04:synchronous, +15:u12:synchronous, +12:u00:18.39.4., +15:u03:synchronous, +15:u11:synchronous, +15:u02:synchronous, +15:u10:synchronous, +15:u01:synchronous, +21:u08:NOTIFY4_ADD_ENTRY, +15:u00:synchronous, +21:u07:NOTIFY4_ADD_ENTRY, +27:u08:(NOTIFY4_REMOVE_ENTRY),, +21:u06:NOTIFY4_ADD_ENTRY, +27:u07:(NOTIFY4_REMOVE_ENTRY),, +21:u14:notify4_add_entry, +21:u05:NOTIFY4_ADD_ENTRY, +27:u06:(NOTIFY4_REMOVE_ENTRY),, +21:u13:notify4_add_entry, +21:u04:NOTIFY4_ADD_ENTRY, +27:u05:(NOTIFY4_REMOVE_ENTRY),, +21:u12:notify4_add_entry, +10:uI2:(),(),, +21:u03:NOTIFY4_ADD_ENTRY, +27:u04:(NOTIFY4_REMOVE_ENTRY),, +21:u11:notify4_add_entry, +10:uI1:(),(),, +21:u02:NOTIFY4_ADD_ENTRY, +27:u03:(NOTIFY4_REMOVE_ENTRY),, +21:u10:notify4_add_entry, +10:uI0:(),(),, +21:u01:NOTIFY4_ADD_ENTRY, +27:u02:(NOTIFY4_REMOVE_ENTRY),, +21:u00:NOTIFY4_ADD_ENTRY, +27:u01:(NOTIFY4_REMOVE_ENTRY),, +27:u00:(NOTIFY4_REMOVE_ENTRY),, +14:u08:interested, +14:u07:interested, +14:u06:interested, +14:u05:interested, +14:u08:invalidate, +14:u04:interested, +14:u07:invalidate, +14:u03:interested, +14:u06:invalidate, +14:u02:interested, +14:u05:invalidate, +14:u01:interested, +14:u04:invalidate, +23:u08:gdda_dir_attributes, +14:u00:interested, +14:u03:invalidate, +14:u02:invalidate, +23:u07:gdda_dir_attributes, +14:u01:invalidate, +23:u06:gdda_dir_attributes, +14:u00:invalidate, +23:u14:gdda_dir_attributes, +23:u05:gdda_dir_attributes, +26:u08:(gddr_dir_attributes)., +23:u13:gdda_dir_attributes, +23:u04:gdda_dir_attributes, +25:u08:gdda_child_attributes, +23:u12:gdda_dir_attributes, +23:u03:gdda_dir_attributes, +26:u07:(gddr_dir_attributes)., +23:u11:gdda_dir_attributes, +23:u02:gdda_dir_attributes, +26:u06:(gddr_dir_attributes)., +25:u07:gdda_child_attributes, +23:u10:gdda_dir_attributes, +26:u14:(gddr_dir_attributes)., +23:u01:gdda_dir_attributes, +26:u05:(gddr_dir_attributes)., +25:u06:gdda_child_attributes, +26:u13:(gddr_dir_attributes)., +25:u14:gdda_child_attributes, +23:u00:gdda_dir_attributes, +26:u04:(gddr_dir_attributes)., +25:u05:gdda_child_attributes, +26:u12:(gddr_dir_attributes)., +25:u13:gdda_child_attributes, +7:u22:(gd, +8:u23:(gdd, +26:u03:(gddr_dir_attributes)., +25:u04:gdda_child_attributes, +8:u08:554], +26:u11:(gddr_dir_attributes)., +25:u12:gdda_child_attributes, +26:u02:(gddr_dir_attributes)., +25:u03:gdda_child_attributes, +8:u07:554], +26:u10:(gddr_dir_attributes)., +25:u11:gdda_child_attributes, +26:u01:(gddr_dir_attributes)., +25:u02:gdda_child_attributes, +8:u06:554], +25:u10:gdda_child_attributes, +26:u00:(gddr_dir_attributes)., +25:u01:gdda_child_attributes, +25:u08:gddr_child_attributes, +8:u05:554], +25:u00:gdda_child_attributes, +8:u04:554], +25:u07:gddr_child_attributes, +8:u03:554], +25:u06:gddr_child_attributes, +8:u02:554], +25:u14:gddr_child_attributes, +25:u05:gddr_child_attributes, +8:u01:554], +25:u13:gddr_child_attributes, +25:u04:gddr_child_attributes, +8:u00:554], +25:u12:gddr_child_attributes, +25:u03:gddr_child_attributes, +25:u11:gddr_child_attributes, +25:u02:gddr_child_attributes, +25:u10:gddr_child_attributes, +25:u01:gddr_child_attributes, +25:u00:gddr_child_attributes, +10:u08:factor, +10:u07:factor, +10:u06:factor, +9:u14:delay, +10:u05:factor, +9:u13:delay, +10:u04:factor, +9:u12:delay, +10:u03:factor, +9:u11:delay, +10:u02:factor, +9:u10:delay, +10:u01:factor, +10:u00:factor, +13:u08:2.6.3.1)., +13:u07:2.6.3.1)., +13:u06:2.6.3.1)., +13:u05:2.6.3.1)., +8:u08:hold, +13:u04:2.6.3.1)., +8:u07:hold, +13:u03:2.6.3.1)., +8:u06:hold, +12:u08:18.40.1., +13:u02:2.6.3.1)., +8:u05:hold, +13:u01:2.6.3.1)., +8:u04:hold, +12:u07:18.40.1., +13:u00:2.6.3.1)., +8:u03:hold, +22:u08:GETDEVICEINFO4args, +12:u06:18.40.1., +19:u08:gdia_device_id;, +8:u02:hold, +22:u07:GETDEVICEINFO4args, +12:u14:18.40.1., +12:u05:18.40.1., +8:u01:hold, +22:u06:GETDEVICEINFO4args, +12:u13:18.40.1., +12:u04:18.40.1., +19:u07:gdia_device_id;, +21:u08:gdia_layout_type;, +8:u00:hold, +22:u05:GETDEVICEINFO4args, +12:u12:18.40.1., +12:u03:18.40.1., +19:u06:gdia_device_id;, +22:u04:GETDEVICEINFO4args, +12:u11:18.40.1., +19:u14:gdia_device_id;, +12:u02:18.40.1., +19:u05:gdia_device_id;, +21:u07:gdia_layout_type;, +18:u08:gdia_maxcount;, +22:u03:GETDEVICEINFO4args, +12:u10:18.40.1., +19:u13:gdia_device_id;, +12:u01:18.40.1., +19:u04:gdia_device_id;, +21:u06:gdia_layout_type;, +22:u02:GETDEVICEINFO4args, +19:u12:gdia_device_id;, +21:u14:gdia_layout_type;, +7:u22:gdi, +8:u23:gdia, +12:u00:18.40.1., +19:u03:gdia_device_id;, +21:u05:gdia_layout_type;, +18:u07:gdia_maxcount;, +22:u08:gdia_notify_types;, +22:u01:GETDEVICEINFO4args, +19:u11:gdia_device_id;, +21:u13:gdia_layout_type;, +19:u02:gdia_device_id;, +21:u04:gdia_layout_type;, +18:u06:gdia_maxcount;, +22:u00:GETDEVICEINFO4args, +19:u10:gdia_device_id;, +21:u12:gdia_layout_type;, +18:u14:gdia_maxcount;, +19:u01:gdia_device_id;, +21:u03:gdia_layout_type;, +18:u05:gdia_maxcount;, +22:u07:gdia_notify_types;, +21:u11:gdia_layout_type;, +18:u13:gdia_maxcount;, +19:u00:gdia_device_id;, +21:u02:gdia_layout_type;, +18:u04:gdia_maxcount;, +22:u06:gdia_notify_types;, +21:u10:gdia_layout_type;, +18:u12:gdia_maxcount;, +22:u14:gdia_notify_types;, +21:u01:gdia_layout_type;, +18:u03:gdia_maxcount;, +22:u05:gdia_notify_types;, +18:u11:gdia_maxcount;, +22:u13:gdia_notify_types;, +21:u00:gdia_layout_type;, +18:u02:gdia_maxcount;, +22:u04:gdia_notify_types;, +8:u08:555], +18:u10:gdia_maxcount;, +22:u12:gdia_notify_types;, +18:u01:gdia_maxcount;, +22:u03:gdia_notify_types;, +8:u07:555], +22:u11:gdia_notify_types;, +18:u00:gdia_maxcount;, +22:u02:gdia_notify_types;, +8:u06:555], +22:u10:gdia_notify_types;, +22:u01:gdia_notify_types;, +12:u08:18.40.2., +8:u05:555], +22:u00:gdia_notify_types;, +8:u04:555], +12:u07:18.40.2., +8:u03:555], +23:u08:GETDEVICEINFO4resok, +12:u06:18.40.2., +21:u08:gdir_device_addr;, +8:u02:555], +23:u07:GETDEVICEINFO4resok, +12:u14:18.40.2., +12:u05:18.40.2., +8:u01:555], +23:u06:GETDEVICEINFO4resok, +12:u13:18.40.2., +12:u04:18.40.2., +21:u07:gdir_device_addr;, +22:u08:gdir_notification;, +8:u00:555], +23:u05:GETDEVICEINFO4resok, +12:u12:18.40.2., +12:u03:18.40.2., +21:u06:gdir_device_addr;, +23:u04:GETDEVICEINFO4resok, +12:u11:18.40.2., +21:u14:gdir_device_addr;, +12:u02:18.40.2., +21:u05:gdir_device_addr;, +22:u07:gdir_notification;, +23:u03:GETDEVICEINFO4resok, +12:u10:18.40.2., +21:u13:gdir_device_addr;, +12:u01:18.40.2., +21:u04:gdir_device_addr;, +22:u06:gdir_notification;, +23:u02:GETDEVICEINFO4resok, +21:u08:GETDEVICEINFO4res, +21:u12:gdir_device_addr;, +22:u14:gdir_notification;, +8:u23:gdir, +12:u00:18.40.2., +21:u03:gdir_device_addr;, +22:u05:gdir_notification;, +23:u01:GETDEVICEINFO4resok, +21:u07:GETDEVICEINFO4res, +21:u11:gdir_device_addr;, +22:u13:gdir_notification;, +21:u02:gdir_device_addr;, +22:u04:gdir_notification;, +16:u08:gdir_resok4;, +23:u00:GETDEVICEINFO4resok, +21:u06:GETDEVICEINFO4res, +21:u10:gdir_device_addr;, +22:u12:gdir_notification;, +21:u01:gdir_device_addr;, +22:u03:gdir_notification;, +21:u05:GETDEVICEINFO4res, +22:u11:gdir_notification;, +21:u00:gdir_device_addr;, +22:u02:gdir_notification;, +16:u07:gdir_resok4;, +21:u04:GETDEVICEINFO4res, +21:u08:NFS4ERR_TOOSMALL:, +22:u10:gdir_notification;, +23:u14:getdeviceinfo4resok, +22:u01:gdir_notification;, +16:u06:gdir_resok4;, +18:u08:gdir_mincount;, +21:u03:GETDEVICEINFO4res, +21:u07:NFS4ERR_TOOSMALL:, +23:u13:getdeviceinfo4resok, +16:u14:gdir_resok4;, +22:u00:gdir_notification;, +16:u05:gdir_resok4;, +21:u02:GETDEVICEINFO4res, +21:u06:NFS4ERR_TOOSMALL:, +23:u12:getdeviceinfo4resok, +16:u13:gdir_resok4;, +16:u04:gdir_resok4;, +18:u07:gdir_mincount;, +21:u01:GETDEVICEINFO4res, +21:u05:NFS4ERR_TOOSMALL:, +23:u11:getdeviceinfo4resok, +16:u12:gdir_resok4;, +16:u03:gdir_resok4;, +18:u06:gdir_mincount;, +21:u00:GETDEVICEINFO4res, +21:u04:NFS4ERR_TOOSMALL:, +23:u10:getdeviceinfo4resok, +16:u11:gdir_resok4;, +18:u14:gdir_mincount;, +16:u02:gdir_resok4;, +18:u05:gdir_mincount;, +12:u08:18.40.3., +21:u03:NFS4ERR_TOOSMALL:, +16:u10:gdir_resok4;, +18:u13:gdir_mincount;, +16:u01:gdir_resok4;, +18:u04:gdir_mincount;, +21:u02:NFS4ERR_TOOSMALL:, +18:u12:gdir_mincount;, +16:u00:gdir_resok4;, +18:u03:gdir_mincount;, +12:u07:18.40.3., +21:u01:NFS4ERR_TOOSMALL:, +18:u11:gdir_mincount;, +18:u02:gdir_mincount;, +12:u06:18.40.3., +21:u00:NFS4ERR_TOOSMALL:, +18:u10:gdir_mincount;, +12:u14:18.40.3., +18:u01:gdir_mincount;, +12:u05:18.40.3., +20:u08:gdia_layout_type, +12:u13:18.40.3., +18:u00:gdir_mincount;, +12:u04:18.40.3., +12:u12:18.40.3., +12:u03:18.40.3., +20:u07:gdia_layout_type, +17:u08:gdia_maxcount, +12:u11:18.40.3., +12:u02:18.40.3., +20:u06:gdia_layout_type, +17:u07:gdia_maxcount, +12:u10:18.40.3., +20:u14:gdia_layout_type, +12:u01:18.40.3., +20:u05:gdia_layout_type, +17:u06:gdia_maxcount, +20:u13:gdia_layout_type, +12:u00:18.40.3., +20:u04:gdia_layout_type, +17:u05:gdia_maxcount, +20:u12:gdia_layout_type, +20:u03:gdia_layout_type, +17:u04:gdia_maxcount, +20:u11:gdia_layout_type, +20:u02:gdia_layout_type, +17:u03:gdia_maxcount, +20:u10:gdia_layout_type, +20:u01:gdia_layout_type, +17:u02:gdia_maxcount, +20:u00:gdia_layout_type, +17:u01:gdia_maxcount, +20:u14:nfs4err_toosmall, +17:u00:gdia_maxcount, +20:u13:nfs4err_toosmall, +20:u12:nfs4err_toosmall, +20:u11:nfs4err_toosmall, +20:u10:nfs4err_toosmall, +14:u08:receiving;, +14:u07:receiving;, +14:u06:receiving;, +14:u14:receiving;, +14:u05:receiving;, +23:u08:notify_device_type4, +11:u08:3.3.7)., +14:u13:receiving;, +14:u04:receiving;, +14:u08:enumerated, +11:u07:3.3.7)., +14:u12:receiving;, +14:u03:receiving;, +23:u07:notify_device_type4, +18:u08:GETDEVICEINFO:, +11:u06:3.3.7)., +14:u11:receiving;, +14:u02:receiving;, +23:u06:notify_device_type4, +14:u07:enumerated, +11:u05:3.3.7)., +27:u08:NOTIFY_DEVICEID4_CHANGE, +14:u10:receiving;, +23:u14:notify_device_type4, +14:u01:receiving;, +23:u05:notify_device_type4, +14:u06:enumerated, +18:u07:GETDEVICEINFO:, +11:u04:3.3.7)., +27:u07:NOTIFY_DEVICEID4_CHANGE, +23:u13:notify_device_type4, +14:u14:enumerated, +14:u00:receiving;, +23:u04:notify_device_type4, +14:u05:enumerated, +18:u06:GETDEVICEINFO:, +11:u03:3.3.7)., +27:u06:NOTIFY_DEVICEID4_CHANGE, +23:u12:notify_device_type4, +14:u13:enumerated, +18:u14:getdeviceinfo:, +23:u03:notify_device_type4, +14:u04:enumerated, +18:u05:GETDEVICEINFO:, +11:u02:3.3.7)., +27:u05:NOTIFY_DEVICEID4_CHANGE, +23:u11:notify_device_type4, +14:u12:enumerated, +18:u13:getdeviceinfo:, +23:u02:notify_device_type4, +14:u03:enumerated, +18:u04:GETDEVICEINFO:, +11:u01:3.3.7)., +27:u04:NOTIFY_DEVICEID4_CHANGE, +8:u08:556], +23:u10:notify_device_type4, +14:u11:enumerated, +18:u12:getdeviceinfo:, +23:u01:notify_device_type4, +14:u02:enumerated, +18:u03:GETDEVICEINFO:, +11:u00:3.3.7)., +27:u03:NOTIFY_DEVICEID4_CHANGE, +8:u07:556], +14:u10:enumerated, +18:u11:getdeviceinfo:, +23:u00:notify_device_type4, +14:u01:enumerated, +18:u02:GETDEVICEINFO:, +27:u02:NOTIFY_DEVICEID4_CHANGE, +8:u06:556], +18:u10:getdeviceinfo:, +14:u00:enumerated, +18:u01:GETDEVICEINFO:, +27:u01:NOTIFY_DEVICEID4_CHANGE, +8:u05:556], +18:u00:GETDEVICEINFO:, +27:u00:NOTIFY_DEVICEID4_CHANGE, +8:u04:556], +10:u08:times,, +8:u03:556], +8:u02:556], +10:u07:times,, +8:u01:556], +10:u06:times,, +8:u00:556], +10:u14:times,, +10:u05:times,, +10:u13:times,, +10:u04:times,, +10:u12:times,, +10:u03:times,, +10:u11:times,, +10:u02:times,, +10:u10:times,, +10:u01:times,, +10:u00:times,, +18:u08:gdir_mincount., +18:u07:gdir_mincount., +12:u08:18.40.4., +9:uI2:(,.)., +18:u06:gdir_mincount., +9:u08:Aside, +18:u14:gdir_mincount., +9:uI1:(,.)., +18:u05:gdir_mincount., +12:u07:18.40.4., +18:u13:gdir_mincount., +9:uI0:(,.)., +18:u04:gdir_mincount., +12:u06:18.40.4., +9:u07:Aside, +18:u12:gdir_mincount., +12:u14:18.40.4., +18:u03:gdir_mincount., +12:u05:18.40.4., +9:u06:Aside, +18:u11:gdir_mincount., +12:u13:18.40.4., +9:u14:aside, +18:u02:gdir_mincount., +12:u04:18.40.4., +9:u05:Aside, +18:u10:gdir_mincount., +12:u12:18.40.4., +9:u13:aside, +18:u01:gdir_mincount., +12:u03:18.40.4., +9:u04:Aside, +13:u08:abruptly,, +12:u11:18.40.4., +9:u12:aside, +7:u22:Asi, +8:u23:Asid, +18:u00:gdir_mincount., +12:u02:18.40.4., +9:u03:Aside, +12:u10:18.40.4., +9:u11:aside, +12:u01:18.40.4., +9:u02:Aside, +13:u07:abruptly,, +9:u10:aside, +12:u00:18.40.4., +9:u01:Aside, +13:u06:abruptly,, +13:u14:abruptly,, +9:u00:Aside, +13:u05:abruptly,, +13:u13:abruptly,, +12:u14:revoked., +13:u04:abruptly,, +18:u08:GETDEVICELIST., +8:u08:gets, +13:u12:abruptly,, +12:u13:revoked., +7:u22:abr, +8:u23:abru, +13:u03:abruptly,, +8:u07:gets, +13:u11:abruptly,, +12:u12:revoked., +23:u14:cb_notify_deviceid,, +13:u02:abruptly,, +18:u07:GETDEVICELIST., +8:u06:gets, +13:u10:abruptly,, +12:u11:revoked., +23:u13:cb_notify_deviceid,, +13:u01:abruptly,, +18:u06:GETDEVICELIST., +8:u05:gets, +12:u10:revoked., +23:u12:cb_notify_deviceid,, +18:u14:getdevicelist., +13:u00:abruptly,, +18:u05:GETDEVICELIST., +8:u04:gets, +23:u11:cb_notify_deviceid,, +18:u13:getdevicelist., +18:u04:GETDEVICELIST., +8:u03:gets, +23:u10:cb_notify_deviceid,, +18:u12:getdevicelist., +18:u03:GETDEVICELIST., +8:u02:gets, +18:u11:getdevicelist., +18:u02:GETDEVICELIST., +8:u01:gets, +18:u10:getdevicelist., +18:u01:GETDEVICELIST., +8:u00:gets, +18:u00:GETDEVICELIST., +8:u08:557], +8:u07:557], +8:u06:557], +8:u05:557], +14:u08:supposedly, +8:u04:557], +12:u08:deleted., +8:u03:557], +14:u07:supposedly, +8:u02:557], +14:u06:supposedly, +12:u07:deleted., +8:u01:557], +14:u14:supposedly, +14:u05:supposedly, +12:u06:deleted., +8:u00:557], +14:u13:supposedly, +12:u14:deleted., +14:u04:supposedly, +12:u05:deleted., +14:u12:supposedly, +12:u13:deleted., +14:u03:supposedly, +12:u04:deleted., +14:u11:supposedly, +12:u12:deleted., +14:u02:supposedly, +12:u03:deleted., +14:u10:supposedly, +12:u11:deleted., +14:u01:supposedly, +12:u02:deleted., +12:u10:deleted., +14:u00:supposedly, +12:u01:deleted., +12:u00:deleted., +8:u08:harm, +8:u07:harm, +8:u06:harm, +8:u05:harm, +8:u04:harm, +8:u03:harm, +8:u02:harm, +8:u01:harm, +8:u00:harm, +12:u08:18.41.1., +12:u07:18.41.1., +22:u08:GETDEVICELIST4args, +12:u06:18.41.1., +22:u07:GETDEVICELIST4args, +12:u14:18.41.1., +12:u05:18.41.1., +21:u08:gdla_layout_type;, +22:u06:GETDEVICELIST4args, +12:u13:18.41.1., +12:u04:18.41.1., +22:u05:GETDEVICELIST4args, +12:u12:18.41.1., +12:u03:18.41.1., +21:u07:gdla_layout_type;, +22:u04:GETDEVICELIST4args, +12:u11:18.41.1., +12:u02:18.41.1., +21:u06:gdla_layout_type;, +20:u08:gdla_maxdevices;, +22:u03:GETDEVICELIST4args, +12:u10:18.41.1., +21:u14:gdla_layout_type;, +12:u01:18.41.1., +21:u05:gdla_layout_type;, +22:u02:GETDEVICELIST4args, +21:u13:gdla_layout_type;, +12:u00:18.41.1., +21:u04:gdla_layout_type;, +20:u07:gdla_maxdevices;, +16:u08:gdla_cookie;, +22:u01:GETDEVICELIST4args, +21:u12:gdla_layout_type;, +7:u22:gdl, +8:u23:gdla, +21:u03:gdla_layout_type;, +20:u06:gdla_maxdevices;, +22:u00:GETDEVICELIST4args, +21:u11:gdla_layout_type;, +20:u14:gdla_maxdevices;, +21:u02:gdla_layout_type;, +20:u05:gdla_maxdevices;, +16:u07:gdla_cookie;, +20:u08:gdla_cookieverf;, +21:u10:gdla_layout_type;, +20:u13:gdla_maxdevices;, +21:u01:gdla_layout_type;, +20:u04:gdla_maxdevices;, +16:u06:gdla_cookie;, +20:u12:gdla_maxdevices;, +16:u14:gdla_cookie;, +21:u00:gdla_layout_type;, +20:u03:gdla_maxdevices;, +16:u05:gdla_cookie;, +20:u07:gdla_cookieverf;, +12:u08:18.41.2., +20:u11:gdla_maxdevices;, +16:u13:gdla_cookie;, +20:u02:gdla_maxdevices;, +16:u04:gdla_cookie;, +20:u06:gdla_cookieverf;, +20:u10:gdla_maxdevices;, +16:u12:gdla_cookie;, +20:u14:gdla_cookieverf;, +20:u01:gdla_maxdevices;, +16:u03:gdla_cookie;, +20:u05:gdla_cookieverf;, +12:u07:18.41.2., +16:u11:gdla_cookie;, +20:u13:gdla_cookieverf;, +20:u00:gdla_maxdevices;, +16:u02:gdla_cookie;, +20:u04:gdla_cookieverf;, +12:u06:18.41.2., +16:u10:gdla_cookie;, +20:u12:gdla_cookieverf;, +12:u14:18.41.2., +16:u01:gdla_cookie;, +20:u03:gdla_cookieverf;, +12:u05:18.41.2., +8:u08:558], +20:u11:gdla_cookieverf;, +12:u13:18.41.2., +16:u00:gdla_cookie;, +20:u02:gdla_cookieverf;, +12:u04:18.41.2., +8:u07:558], +20:u10:gdla_cookieverf;, +12:u12:18.41.2., +20:u01:gdla_cookieverf;, +12:u03:18.41.2., +8:u06:558], +12:u11:18.41.2., +20:u00:gdla_cookieverf;, +12:u02:18.41.2., +8:u05:558], +12:u10:18.41.2., +12:u01:18.41.2., +8:u04:558], +23:u08:GETDEVICELIST4resok, +12:u00:18.41.2., +16:u08:gdlr_cookie;, +8:u03:558], +23:u07:GETDEVICELIST4resok, +8:u02:558], +23:u06:GETDEVICELIST4resok, +16:u07:gdlr_cookie;, +20:u08:gdlr_cookieverf;, +8:u01:558], +23:u05:GETDEVICELIST4resok, +16:u06:gdlr_cookie;, +8:u00:558], +23:u04:GETDEVICELIST4resok, +16:u14:gdlr_cookie;, +16:u05:gdlr_cookie;, +20:u07:gdlr_cookieverf;, +25:u08:gdlr_deviceid_list<>;, +23:u03:GETDEVICELIST4resok, +16:u13:gdlr_cookie;, +16:u04:gdlr_cookie;, +20:u06:gdlr_cookieverf;, +23:u02:GETDEVICELIST4resok, +16:u12:gdlr_cookie;, +20:u14:gdlr_cookieverf;, +8:u23:gdlr, +16:u03:gdlr_cookie;, +20:u05:gdlr_cookieverf;, +25:u07:gdlr_deviceid_list<>;, +13:u08:gdlr_eof;, +23:u01:GETDEVICELIST4resok, +16:u11:gdlr_cookie;, +20:u13:gdlr_cookieverf;, +16:u02:gdlr_cookie;, +20:u04:gdlr_cookieverf;, +25:u06:gdlr_deviceid_list<>;, +23:u00:GETDEVICELIST4resok, +16:u10:gdlr_cookie;, +20:u12:gdlr_cookieverf;, +25:u14:gdlr_deviceid_list<>;, +16:u01:gdlr_cookie;, +20:u03:gdlr_cookieverf;, +25:u05:gdlr_deviceid_list<>;, +13:u07:gdlr_eof;, +20:u11:gdlr_cookieverf;, +25:u13:gdlr_deviceid_list<>;, +16:u00:gdlr_cookie;, +20:u02:gdlr_cookieverf;, +25:u04:gdlr_deviceid_list<>;, +13:u06:gdlr_eof;, +21:u08:GETDEVICELIST4res, +20:u10:gdlr_cookieverf;, +25:u12:gdlr_deviceid_list<>;, +13:u14:gdlr_eof;, +20:u01:gdlr_cookieverf;, +25:u03:gdlr_deviceid_list<>;, +13:u05:gdlr_eof;, +21:u07:GETDEVICELIST4res, +25:u11:gdlr_deviceid_list<>;, +13:u13:gdlr_eof;, +20:u00:gdlr_cookieverf;, +25:u02:gdlr_deviceid_list<>;, +13:u04:gdlr_eof;, +16:u08:gdlr_resok4;, +21:u06:GETDEVICELIST4res, +25:u10:gdlr_deviceid_list<>;, +13:u12:gdlr_eof;, +25:u01:gdlr_deviceid_list<>;, +13:u03:gdlr_eof;, +21:u05:GETDEVICELIST4res, +13:u11:gdlr_eof;, +25:u00:gdlr_deviceid_list<>;, +13:u02:gdlr_eof;, +16:u07:gdlr_resok4;, +21:u04:GETDEVICELIST4res, +13:u10:gdlr_eof;, +23:u14:getdevicelist4resok, +13:u01:gdlr_eof;, +16:u06:gdlr_resok4;, +21:u03:GETDEVICELIST4res, +23:u13:getdevicelist4resok, +16:u14:gdlr_resok4;, +13:u00:gdlr_eof;, +16:u05:gdlr_resok4;, +12:u08:18.41.3., +21:u02:GETDEVICELIST4res, +23:u12:getdevicelist4resok, +16:u13:gdlr_resok4;, +16:u04:gdlr_resok4;, +21:u01:GETDEVICELIST4res, +23:u11:getdevicelist4resok, +16:u12:gdlr_resok4;, +16:u03:gdlr_resok4;, +12:u07:18.41.3., +21:u00:GETDEVICELIST4res, +23:u10:getdevicelist4resok, +16:u11:gdlr_resok4;, +16:u02:gdlr_resok4;, +12:u06:18.41.3., +16:u10:gdlr_resok4;, +12:u14:18.41.3., +16:u01:gdlr_resok4;, +12:u05:18.41.3., +12:u13:18.41.3., +16:u00:gdlr_resok4;, +12:u04:18.41.3., +12:u12:18.41.3., +12:u03:18.41.3., +21:u08:gdia_layout_type., +12:u11:18.41.3., +12:u02:18.41.3., +12:u10:18.41.3., +12:u01:18.41.3., +21:u07:gdia_layout_type., +13:u08:enumerate, +12:u00:18.41.3., +21:u06:gdia_layout_type., +19:u08:gdia_cookieverf, +13:u07:enumerate, +10:u08:18.23), +21:u14:gdia_layout_type., +21:u05:gdia_layout_type., +13:u06:enumerate, +10:u07:18.23), +21:u13:gdia_layout_type., +21:u04:gdia_layout_type., +19:u07:gdia_cookieverf, +13:u05:enumerate, +10:u06:18.23), +21:u12:gdia_layout_type., +21:u03:gdia_layout_type., +19:u06:gdia_cookieverf, +19:u08:gdla_cookieverf, +13:u04:enumerate, +10:u05:18.23), +13:u08:mappings,, +21:u11:gdia_layout_type., +19:u14:gdia_cookieverf, +9:uI2:(.)),, +21:u02:gdia_layout_type., +19:u05:gdia_cookieverf, +9:u08:zero., +13:u03:enumerate, +10:u04:18.23), +13:u07:mappings,, +21:u10:gdia_layout_type., +19:u13:gdia_cookieverf, +9:uI1:(.)),, +21:u01:gdia_layout_type., +19:u04:gdia_cookieverf, +19:u07:gdla_cookieverf, +13:u02:enumerate, +10:u03:18.23), +13:u06:mappings,, +19:u12:gdia_cookieverf, +9:uI0:(.)),, +21:u00:gdia_layout_type., +19:u03:gdia_cookieverf, +19:u06:gdla_cookieverf, +9:u07:zero., +13:u01:enumerate, +10:u02:18.23), +13:u05:mappings,, +19:u11:gdia_cookieverf, +19:u14:gdla_cookieverf, +19:u02:gdia_cookieverf, +19:u05:gdla_cookieverf, +9:u06:zero., +13:u00:enumerate, +10:u01:18.23), +13:u04:mappings,, +19:u10:gdia_cookieverf, +19:u13:gdla_cookieverf, +9:u14:zero., +19:u01:gdia_cookieverf, +19:u04:gdla_cookieverf, +9:u05:zero., +16:u08:gdlr_cookie,, +10:u00:18.23), +13:u03:mappings,, +19:u12:gdla_cookieverf, +9:u13:zero., +19:u00:gdia_cookieverf, +19:u03:gdla_cookieverf, +9:u04:zero., +13:u02:mappings,, +19:u11:gdla_cookieverf, +9:u12:zero., +19:u02:gdla_cookieverf, +9:u03:zero., +16:u07:gdlr_cookie,, +13:u01:mappings,, +19:u10:gdla_cookieverf, +9:u11:zero., +19:u01:gdla_cookieverf, +9:u02:zero., +16:u06:gdlr_cookie,, +13:u00:mappings,, +9:u10:zero., +16:u14:gdlr_cookie,, +19:u00:gdla_cookieverf, +9:u01:zero., +16:u05:gdlr_cookie,, +12:u08:18.41.4., +16:u13:gdlr_cookie,, +9:u00:zero., +16:u04:gdlr_cookie,, +16:u12:gdlr_cookie,, +16:u03:gdlr_cookie,, +12:u07:18.41.4., +16:u11:gdlr_cookie,, +16:u02:gdlr_cookie,, +12:u06:18.41.4., +16:u10:gdlr_cookie,, +12:u14:18.41.4., +16:u01:gdlr_cookie,, +12:u05:18.41.4., +12:u13:18.41.4., +16:u00:gdlr_cookie,, +12:u04:18.41.4., +12:u12:18.41.4., +12:u03:18.41.4., +12:u11:18.41.4., +12:u02:18.41.4., +12:u10:18.41.4., +12:u01:18.41.4., +8:u08:559], +12:u00:18.41.4., +8:u07:559], +8:u06:559], +8:u05:559], +12:u08:18.42.1., +8:u04:559], +8:u03:559], +12:u07:18.42.1., +8:u02:559], +12:u08:newtime4, +12:u06:18.42.1., +8:u01:559], +12:u07:newtime4, +12:u14:18.42.1., +12:u05:18.42.1., +12:u08:nt_time;, +8:u00:559], +12:u06:newtime4, +12:u13:18.42.1., +12:u04:18.42.1., +12:u05:newtime4, +12:u12:18.42.1., +12:u03:18.42.1., +12:u07:nt_time;, +12:u04:newtime4, +12:u11:18.42.1., +12:u02:18.42.1., +12:u06:nt_time;, +12:u03:newtime4, +12:u10:18.42.1., +12:u14:nt_time;, +12:u01:18.42.1., +12:u05:nt_time;, +12:u02:newtime4, +12:u13:nt_time;, +12:u00:18.42.1., +12:u04:nt_time;, +12:u01:newtime4, +12:u12:nt_time;, +6:u21:nt, +7:u22:nt_, +8:u23:nt_t, +12:u03:nt_time;, +12:u00:newtime4, +12:u11:nt_time;, +12:u02:nt_time;, +14:u08:no_offset;, +12:u10:nt_time;, +12:u01:nt_time;, +12:u00:nt_time;, +14:u07:no_offset;, +14:u06:no_offset;, +14:u14:no_offset;, +14:u05:no_offset;, +14:u13:no_offset;, +14:u04:no_offset;, +21:u08:LAYOUTCOMMIT4args, +14:u12:no_offset;, +7:u22:no_, +8:u23:no_o, +14:u03:no_offset;, +21:u07:LAYOUTCOMMIT4args, +14:u11:no_offset;, +14:u02:no_offset;, +16:u08:loca_offset;, +21:u06:LAYOUTCOMMIT4args, +14:u10:no_offset;, +14:u01:no_offset;, +21:u05:LAYOUTCOMMIT4args, +14:u00:no_offset;, +16:u07:loca_offset;, +16:u08:loca_length;, +21:u04:LAYOUTCOMMIT4args, +16:u06:loca_offset;, +21:u03:LAYOUTCOMMIT4args, +16:u14:loca_offset;, +16:u05:loca_offset;, +16:u07:loca_length;, +17:u08:loca_reclaim;, +21:u02:LAYOUTCOMMIT4args, +16:u13:loca_offset;, +16:u04:loca_offset;, +16:u06:loca_length;, +21:u01:LAYOUTCOMMIT4args, +16:u12:loca_offset;, +16:u14:loca_length;, +16:u03:loca_offset;, +16:u05:loca_length;, +17:u07:loca_reclaim;, +17:u08:loca_stateid;, +21:u00:LAYOUTCOMMIT4args, +16:u11:loca_offset;, +16:u13:loca_length;, +16:u02:loca_offset;, +16:u04:loca_length;, +17:u06:loca_reclaim;, +16:u10:loca_offset;, +16:u12:loca_length;, +17:u14:loca_reclaim;, +16:u01:loca_offset;, +16:u03:loca_length;, +17:u05:loca_reclaim;, +17:u07:loca_stateid;, +27:u08:loca_last_write_offset;, +16:u11:loca_length;, +17:u13:loca_reclaim;, +16:u00:loca_offset;, +16:u02:loca_length;, +17:u04:loca_reclaim;, +17:u06:loca_stateid;, +16:u10:loca_length;, +17:u12:loca_reclaim;, +17:u14:loca_stateid;, +16:u01:loca_length;, +17:u03:loca_reclaim;, +17:u05:loca_stateid;, +27:u07:loca_last_write_offset;, +21:u08:loca_time_modify;, +17:u11:loca_reclaim;, +17:u13:loca_stateid;, +16:u00:loca_length;, +17:u02:loca_reclaim;, +17:u04:loca_stateid;, +27:u06:loca_last_write_offset;, +17:u10:loca_reclaim;, +17:u12:loca_stateid;, +27:u14:loca_last_write_offset;, +17:u01:loca_reclaim;, +17:u03:loca_stateid;, +27:u05:loca_last_write_offset;, +21:u07:loca_time_modify;, +22:u08:loca_layoutupdate;, +17:u11:loca_stateid;, +27:u13:loca_last_write_offset;, +12:u14:newtime4, +17:u00:loca_reclaim;, +17:u02:loca_stateid;, +27:u04:loca_last_write_offset;, +21:u06:loca_time_modify;, +17:u10:loca_stateid;, +27:u12:loca_last_write_offset;, +12:u13:newtime4, +21:u14:loca_time_modify;, +17:u01:loca_stateid;, +27:u03:loca_last_write_offset;, +21:u05:loca_time_modify;, +22:u07:loca_layoutupdate;, +12:u08:18.42.2., +27:u11:loca_last_write_offset;, +12:u12:newtime4, +21:u13:loca_time_modify;, +17:u14:layoutupdate4, +8:u23:newt, +17:u00:loca_stateid;, +27:u02:loca_last_write_offset;, +21:u04:loca_time_modify;, +22:u06:loca_layoutupdate;, +27:u10:loca_last_write_offset;, +12:u11:newtime4, +21:u12:loca_time_modify;, +17:u13:layoutupdate4, +22:u14:loca_layoutupdate;, +27:u01:loca_last_write_offset;, +21:u03:loca_time_modify;, +22:u05:loca_layoutupdate;, +12:u07:18.42.2., +12:u10:newtime4, +21:u11:loca_time_modify;, +17:u12:layoutupdate4, +22:u13:loca_layoutupdate;, +27:u00:loca_last_write_offset;, +21:u02:loca_time_modify;, +22:u04:loca_layoutupdate;, +12:u06:18.42.2., +21:u10:loca_time_modify;, +17:u11:layoutupdate4, +22:u12:loca_layoutupdate;, +12:u14:18.42.2., +21:u01:loca_time_modify;, +22:u03:loca_layoutupdate;, +12:u05:18.42.2., +8:u08:560], +17:u10:layoutupdate4, +22:u11:loca_layoutupdate;, +12:u13:18.42.2., +21:u00:loca_time_modify;, +22:u02:loca_layoutupdate;, +12:u04:18.42.2., +8:u07:560], +22:u10:loca_layoutupdate;, +12:u12:18.42.2., +22:u01:loca_layoutupdate;, +12:u03:18.42.2., +8:u06:560], +12:u11:18.42.2., +22:u00:loca_layoutupdate;, +12:u02:18.42.2., +8:u05:560], +12:u10:18.42.2., +12:u01:18.42.2., +8:u04:560], +12:u00:18.42.2., +8:u03:560], +12:u08:ns_size;, +8:u02:560], +8:u01:560], +12:u07:ns_size;, +8:u00:560], +12:u06:ns_size;, +12:u14:ns_size;, +12:u05:ns_size;, +12:u13:ns_size;, +12:u04:ns_size;, +22:u08:LAYOUTCOMMIT4resok, +12:u12:ns_size;, +7:u22:ns_, +8:u23:ns_s, +12:u03:ns_size;, +17:u08:locr_newsize;, +22:u07:LAYOUTCOMMIT4resok, +12:u11:ns_size;, +12:u02:ns_size;, +22:u06:LAYOUTCOMMIT4resok, +12:u10:ns_size;, +12:u01:ns_size;, +17:u07:locr_newsize;, +22:u05:LAYOUTCOMMIT4resok, +12:u00:ns_size;, +17:u06:locr_newsize;, +22:u04:LAYOUTCOMMIT4resok, +20:u08:LAYOUTCOMMIT4res, +17:u14:locr_newsize;, +17:u05:locr_newsize;, +22:u03:LAYOUTCOMMIT4resok, +20:u07:LAYOUTCOMMIT4res, +17:u13:locr_newsize;, +17:u04:locr_newsize;, +16:u08:locr_resok4;, +22:u02:LAYOUTCOMMIT4resok, +20:u06:LAYOUTCOMMIT4res, +17:u12:locr_newsize;, +8:u23:locr, +17:u03:locr_newsize;, +22:u01:LAYOUTCOMMIT4resok, +20:u05:LAYOUTCOMMIT4res, +17:u11:locr_newsize;, +17:u02:locr_newsize;, +16:u07:locr_resok4;, +22:u00:LAYOUTCOMMIT4resok, +20:u04:LAYOUTCOMMIT4res, +17:u10:locr_newsize;, +22:u14:layoutcommit4resok, +17:u01:locr_newsize;, +16:u06:locr_resok4;, +20:u03:LAYOUTCOMMIT4res, +22:u13:layoutcommit4resok, +16:u14:locr_resok4;, +17:u00:locr_newsize;, +16:u05:locr_resok4;, +12:u08:18.42.3., +20:u02:LAYOUTCOMMIT4res, +22:u12:layoutcommit4resok, +16:u13:locr_resok4;, +16:u04:locr_resok4;, +20:u01:LAYOUTCOMMIT4res, +22:u11:layoutcommit4resok, +16:u12:locr_resok4;, +16:u03:locr_resok4;, +12:u07:18.42.3., +20:u00:LAYOUTCOMMIT4res, +22:u10:layoutcommit4resok, +16:u11:locr_resok4;, +16:u02:locr_resok4;, +12:u06:18.42.3., +16:u10:locr_resok4;, +12:u14:18.42.3., +16:u01:locr_resok4;, +12:u05:18.42.3., +12:u13:18.42.3., +16:u00:locr_resok4;, +12:u04:18.42.3., +12:u12:18.42.3., +12:u03:18.42.3., +12:u11:18.42.3., +12:u02:18.42.3., +12:u10:18.42.3., +9:uI2:),-,., +12:u01:18.42.3., +9:uI1:),-,., +12:u00:18.42.3., +21:u08:LAYOUTIOMODE4_RW., +9:uI0:),-,., +11:u08:segment, +21:u07:LAYOUTIOMODE4_RW., +23:u08:NFS4ERR_BAD_IOMODE., +21:u06:LAYOUTIOMODE4_RW., +11:u07:segment, +21:u14:layoutiomode4_rw., +21:u05:LAYOUTIOMODE4_RW., +11:u06:segment, +23:u07:NFS4ERR_BAD_IOMODE., +21:u13:layoutiomode4_rw., +11:u14:segment, +21:u04:LAYOUTIOMODE4_RW., +11:u05:segment, +23:u06:NFS4ERR_BAD_IOMODE., +21:u12:layoutiomode4_rw., +11:u13:segment, +23:u14:nfs4err_bad_iomode., +21:u03:LAYOUTIOMODE4_RW., +11:u04:segment, +23:u05:NFS4ERR_BAD_IOMODE., +21:u11:layoutiomode4_rw., +11:u12:segment, +23:u13:nfs4err_bad_iomode., +7:u22:seg, +8:u23:segm, +21:u02:LAYOUTIOMODE4_RW., +11:u03:segment, +23:u04:NFS4ERR_BAD_IOMODE., +21:u10:layoutiomode4_rw., +11:u11:segment, +23:u12:nfs4err_bad_iomode., +8:uI2:()-,, +21:u01:LAYOUTIOMODE4_RW., +11:u02:segment, +23:u03:NFS4ERR_BAD_IOMODE., +11:u10:segment, +23:u11:nfs4err_bad_iomode., +8:uI1:()-,, +21:u00:LAYOUTIOMODE4_RW., +11:u01:segment, +23:u02:NFS4ERR_BAD_IOMODE., +23:u10:nfs4err_bad_iomode., +8:uI0:()-,, +11:u00:segment, +23:u01:NFS4ERR_BAD_IOMODE., +23:u00:NFS4ERR_BAD_IOMODE., +13:u08:completes, +14:u14:requested., +14:u13:requested., +13:u07:completes, +14:u12:requested., +13:u06:completes, +14:u11:requested., +13:u14:completes, +13:u05:completes, +14:u10:requested., +13:u13:completes, +13:u04:completes, +13:u12:completes, +9:uI2:,-,,., +13:u03:completes, +13:u11:completes, +9:uI1:,-,,., +13:u02:completes, +13:u10:completes, +9:uI0:,-,,., +13:u01:completes, +13:u00:completes, +8:u08:561], +8:u07:561], +8:u06:561], +8:u05:561], +15:u08:byte-ranges, +8:u04:561], +8:u03:561], +15:u07:byte-ranges, +8:u02:561], +15:u06:byte-ranges, +8:u01:561], +15:u14:byte-ranges, +15:u05:byte-ranges, +8:u00:561], +15:u13:byte-ranges, +15:u04:byte-ranges, +15:u12:byte-ranges, +15:u03:byte-ranges, +15:u11:byte-ranges, +15:u02:byte-ranges, +15:u10:byte-ranges, +15:u01:byte-ranges, +11:u08:checks., +15:u00:byte-ranges, +11:u07:checks., +11:u06:checks., +11:u05:checks., +11:u04:checks., +21:u08:loca_layoutupdate, +11:u03:checks., +11:u02:checks., +21:u07:loca_layoutupdate, +11:u01:checks., +21:u06:loca_layoutupdate, +11:u00:checks., +21:u14:loca_layoutupdate, +21:u05:loca_layoutupdate, +21:u13:loca_layoutupdate, +21:u04:loca_layoutupdate, +21:u12:loca_layoutupdate, +21:u03:loca_layoutupdate, +21:u08:NFS4ERR_NO_GRACE., +21:u11:loca_layoutupdate, +21:u02:loca_layoutupdate, +21:u07:NFS4ERR_NO_GRACE., +21:u10:loca_layoutupdate, +21:u01:loca_layoutupdate, +21:u06:NFS4ERR_NO_GRACE., +21:u00:loca_layoutupdate, +21:u05:NFS4ERR_NO_GRACE., +21:u04:NFS4ERR_NO_GRACE., +21:u03:NFS4ERR_NO_GRACE., +21:u02:NFS4ERR_NO_GRACE., +16:u08:loca_stateid, +21:u01:NFS4ERR_NO_GRACE., +16:u07:loca_stateid, +10:u14:false., +8:uI2:',"", +21:u00:NFS4ERR_NO_GRACE., +16:u06:loca_stateid, +26:u08:loca_last_write_offset, +10:u13:false., +8:uI1:',"", +16:u05:loca_stateid, +26:u07:loca_last_write_offset, +10:u12:false., +8:uI0:',"", +16:u04:loca_stateid, +26:u06:loca_last_write_offset, +10:u11:false., +20:u08:NFS4_MAXFILEOFF., +16:u03:loca_stateid, +26:u05:loca_last_write_offset, +10:u10:false., +16:u02:loca_stateid, +26:u04:loca_last_write_offset, +20:u07:NFS4_MAXFILEOFF., +16:u01:loca_stateid, +26:u03:loca_last_write_offset, +20:u06:NFS4_MAXFILEOFF., +12:u08:updated., +16:u00:loca_stateid, +26:u02:loca_last_write_offset, +20:u14:nfs4_maxfileoff., +20:u05:NFS4_MAXFILEOFF., +26:u01:loca_last_write_offset, +20:u13:nfs4_maxfileoff., +20:u04:NFS4_MAXFILEOFF., +12:u07:updated., +26:u08:(locr_newsize.ns_size), +26:u00:loca_last_write_offset, +20:u12:nfs4_maxfileoff., +20:u03:NFS4_MAXFILEOFF., +12:u06:updated., +20:u11:nfs4_maxfileoff., +12:u14:updated., +20:u02:NFS4_MAXFILEOFF., +12:u05:updated., +26:u07:(locr_newsize.ns_size), +20:u08:loca_time_modify, +20:u10:nfs4_maxfileoff., +12:u13:updated., +20:u01:NFS4_MAXFILEOFF., +12:u04:updated., +26:u06:(locr_newsize.ns_size), +20:u07:loca_time_modify, +12:u12:updated., +26:u14:(locr_newsize.ns_size), +20:u00:NFS4_MAXFILEOFF., +12:u03:updated., +26:u05:(locr_newsize.ns_size), +20:u06:loca_time_modify, +12:u11:updated., +26:u13:(locr_newsize.ns_size), +12:u02:updated., +26:u04:(locr_newsize.ns_size), +20:u05:loca_time_modify, +12:u10:updated., +26:u12:(locr_newsize.ns_size), +12:u01:updated., +26:u03:(locr_newsize.ns_size), +20:u04:loca_time_modify, +26:u11:(locr_newsize.ns_size), +12:u00:updated., +26:u02:(locr_newsize.ns_size), +20:u03:loca_time_modify, +26:u10:(locr_newsize.ns_size), +26:u01:(locr_newsize.ns_size), +20:u02:loca_time_modify, +26:u00:(locr_newsize.ns_size), +20:u01:loca_time_modify, +20:u00:loca_time_modify, +8:u08:562], +8:u07:562], +8:u06:562], +8:u05:562], +8:u04:562], +8:u03:562], +8:u02:562], +8:u01:562], +8:u00:562], +16:u08:deallocated., +16:u07:deallocated., +16:u06:deallocated., +16:u14:deallocated., +16:u05:deallocated., +16:u13:deallocated., +16:u04:deallocated., +10:u08:behind, +16:u12:deallocated., +16:u03:deallocated., +10:u07:behind, +16:u11:deallocated., +16:u02:deallocated., +10:u06:behind, +16:u10:deallocated., +14:u14:allocation, +16:u01:deallocated., +10:u08:blocks, +10:u05:behind, +14:u13:allocation, +16:u00:deallocated., +10:u04:behind, +14:u12:allocation, +10:u07:blocks, +10:u03:behind, +14:u11:allocation, +8:uI2:,,,', +10:u06:blocks, +10:u02:behind, +14:u10:allocation, +10:u14:blocks, +8:uI1:,,,', +7:uI2:./,, +10:u05:blocks, +10:u01:behind, +10:u13:blocks, +8:uI0:,,,', +7:uI1:./,, +10:u04:blocks, +10:u00:behind, +10:u12:blocks, +21:u14:nfs4err_badlayout, +7:uI0:./,, +10:u03:blocks, +10:u11:blocks, +21:u13:nfs4err_badlayout, +10:u02:blocks, +12:u08:18.42.4., +10:u10:blocks, +21:u12:nfs4err_badlayout, +10:u01:blocks, +21:u11:nfs4err_badlayout, +10:u00:blocks, +12:u07:18.42.4., +21:u10:nfs4err_badlayout, +12:u06:18.42.4., +15:u08:layout-type, +12:u14:18.42.4., +12:u05:18.42.4., +12:u13:18.42.4., +12:u04:18.42.4., +15:u07:layout-type, +12:u12:18.42.4., +12:u03:18.42.4., +15:u06:layout-type, +12:u11:18.42.4., +15:u14:layout-type, +12:u02:18.42.4., +15:u05:layout-type, +13:u08:expansive, +12:u10:18.42.4., +15:u13:layout-type, +12:u01:18.42.4., +15:u04:layout-type, +15:u12:layout-type, +12:u00:18.42.4., +15:u03:layout-type, +13:u07:expansive, +15:u11:layout-type, +15:u02:layout-type, +13:u06:expansive, +15:u10:layout-type, +13:u14:expansive, +15:u01:layout-type, +13:u05:expansive, +11:u08:writes., +13:u13:expansive, +15:u00:layout-type, +13:u04:expansive, +11:u07:writes., +13:u12:expansive, +8:u23:expa, +13:u03:expansive, +11:u06:writes., +12:u08:graceful, +13:u11:expansive, +13:u02:expansive, +11:u05:writes., +12:u07:graceful, +13:u10:expansive, +13:u01:expansive, +11:u04:writes., +12:u06:graceful, +13:u00:expansive, +11:u03:writes., +12:u05:graceful, +11:u02:writes., +12:u04:graceful, +11:u01:writes., +12:u03:graceful, +11:u00:writes., +12:u02:graceful, +12:u01:graceful, +9:u14:check, +12:u00:graceful, +8:u08:563], +9:u13:check, +8:u07:563], +9:u12:check, +8:u06:563], +9:u11:check, +8:u05:563], +9:u10:check, +12:u08:18.43.1., +8:u04:563], +8:u03:563], +12:u07:18.43.1., +8:u02:563], +12:u06:18.43.1., +8:u01:563], +12:u14:18.43.1., +12:u05:18.43.1., +29:u08:loga_signal_layout_avail;, +8:u00:563], +12:u13:18.43.1., +12:u04:18.43.1., +12:u12:18.43.1., +12:u03:18.43.1., +29:u07:loga_signal_layout_avail;, +21:u08:loga_layout_type;, +12:u11:18.43.1., +12:u02:18.43.1., +29:u06:loga_signal_layout_avail;, +12:u10:18.43.1., +29:u14:loga_signal_layout_avail;, +12:u01:18.43.1., +29:u05:loga_signal_layout_avail;, +21:u07:loga_layout_type;, +16:u08:loga_iomode;, +29:u13:loga_signal_layout_avail;, +12:u00:18.43.1., +29:u04:loga_signal_layout_avail;, +21:u06:loga_layout_type;, +29:u12:loga_signal_layout_avail;, +21:u14:loga_layout_type;, +8:u23:loga, +29:u03:loga_signal_layout_avail;, +21:u05:loga_layout_type;, +16:u07:loga_iomode;, +16:u08:loga_offset;, +29:u11:loga_signal_layout_avail;, +21:u13:loga_layout_type;, +29:u02:loga_signal_layout_avail;, +21:u04:loga_layout_type;, +16:u06:loga_iomode;, +29:u10:loga_signal_layout_avail;, +21:u12:loga_layout_type;, +16:u14:loga_iomode;, +29:u01:loga_signal_layout_avail;, +21:u03:loga_layout_type;, +16:u05:loga_iomode;, +16:u07:loga_offset;, +16:u08:loga_length;, +21:u11:loga_layout_type;, +16:u13:loga_iomode;, +29:u00:loga_signal_layout_avail;, +21:u02:loga_layout_type;, +16:u04:loga_iomode;, +16:u06:loga_offset;, +21:u10:loga_layout_type;, +16:u12:loga_iomode;, +16:u14:loga_offset;, +21:u01:loga_layout_type;, +16:u03:loga_iomode;, +16:u05:loga_offset;, +16:u07:loga_length;, +19:u08:loga_minlength;, +16:u11:loga_iomode;, +16:u13:loga_offset;, +21:u00:loga_layout_type;, +16:u02:loga_iomode;, +16:u04:loga_offset;, +16:u06:loga_length;, +16:u10:loga_iomode;, +16:u12:loga_offset;, +16:u14:loga_length;, +16:u01:loga_iomode;, +16:u03:loga_offset;, +16:u05:loga_length;, +19:u07:loga_minlength;, +17:u08:loga_stateid;, +16:u11:loga_offset;, +16:u13:loga_length;, +16:u00:loga_iomode;, +16:u02:loga_offset;, +16:u04:loga_length;, +19:u06:loga_minlength;, +16:u10:loga_offset;, +16:u12:loga_length;, +19:u14:loga_minlength;, +16:u01:loga_offset;, +16:u03:loga_length;, +19:u05:loga_minlength;, +17:u07:loga_stateid;, +18:u08:loga_maxcount;, +16:u11:loga_length;, +19:u13:loga_minlength;, +16:u00:loga_offset;, +16:u02:loga_length;, +19:u04:loga_minlength;, +17:u06:loga_stateid;, +16:u10:loga_length;, +19:u12:loga_minlength;, +17:u14:loga_stateid;, +16:u01:loga_length;, +19:u03:loga_minlength;, +17:u05:loga_stateid;, +18:u07:loga_maxcount;, +12:u08:18.43.2., +19:u11:loga_minlength;, +17:u13:loga_stateid;, +16:u00:loga_length;, +19:u02:loga_minlength;, +17:u04:loga_stateid;, +18:u06:loga_maxcount;, +19:u10:loga_minlength;, +17:u12:loga_stateid;, +18:u14:loga_maxcount;, +19:u01:loga_minlength;, +17:u03:loga_stateid;, +18:u05:loga_maxcount;, +12:u07:18.43.2., +19:u08:LAYOUTGET4resok, +17:u11:loga_stateid;, +18:u13:loga_maxcount;, +19:u00:loga_minlength;, +17:u02:loga_stateid;, +18:u04:loga_maxcount;, +12:u06:18.43.2., +25:u08:logr_return_on_close;, +19:u07:LAYOUTGET4resok, +17:u10:loga_stateid;, +18:u12:loga_maxcount;, +12:u14:18.43.2., +17:u01:loga_stateid;, +18:u03:loga_maxcount;, +12:u05:18.43.2., +19:u06:LAYOUTGET4resok, +18:u11:loga_maxcount;, +12:u13:18.43.2., +17:u00:loga_stateid;, +18:u02:loga_maxcount;, +12:u04:18.43.2., +25:u07:logr_return_on_close;, +17:u08:logr_stateid;, +19:u05:LAYOUTGET4resok, +18:u10:loga_maxcount;, +12:u12:18.43.2., +18:u01:loga_maxcount;, +12:u03:18.43.2., +25:u06:logr_return_on_close;, +19:u04:LAYOUTGET4resok, +12:u11:18.43.2., +25:u14:logr_return_on_close;, +18:u00:loga_maxcount;, +12:u02:18.43.2., +25:u05:logr_return_on_close;, +17:u07:logr_stateid;, +18:u08:logr_layout<>;, +19:u03:LAYOUTGET4resok, +12:u10:18.43.2., +25:u13:logr_return_on_close;, +12:u01:18.43.2., +25:u04:logr_return_on_close;, +17:u06:logr_stateid;, +19:u02:LAYOUTGET4resok, +25:u12:logr_return_on_close;, +17:u14:logr_stateid;, +8:u23:logr, +12:u00:18.43.2., +25:u03:logr_return_on_close;, +17:u05:logr_stateid;, +18:u07:logr_layout<>;, +19:u01:LAYOUTGET4resok, +25:u11:logr_return_on_close;, +17:u13:logr_stateid;, +11:u14:layout4, +25:u02:logr_return_on_close;, +17:u04:logr_stateid;, +18:u06:logr_layout<>;, +19:u00:LAYOUTGET4resok, +25:u10:logr_return_on_close;, +17:u12:logr_stateid;, +11:u13:layout4, +18:u14:logr_layout<>;, +25:u01:logr_return_on_close;, +17:u03:logr_stateid;, +18:u05:logr_layout<>;, +17:u11:logr_stateid;, +11:u12:layout4, +18:u13:logr_layout<>;, +25:u00:logr_return_on_close;, +17:u02:logr_stateid;, +18:u04:logr_layout<>;, +16:u08:logr_resok4;, +17:u10:logr_stateid;, +11:u11:layout4, +18:u12:logr_layout<>;, +17:u01:logr_stateid;, +18:u03:logr_layout<>;, +11:u10:layout4, +18:u11:logr_layout<>;, +17:u00:logr_stateid;, +18:u02:logr_layout<>;, +16:u07:logr_resok4;, +27:u08:NFS4ERR_LAYOUTTRYLATER:, +18:u10:logr_layout<>;, +19:u14:layoutget4resok, +18:u01:logr_layout<>;, +16:u06:logr_resok4;, +34:u08:logr_will_signal_layout_avail;, +27:u07:NFS4ERR_LAYOUTTRYLATER:, +19:u13:layoutget4resok, +16:u14:logr_resok4;, +18:u00:logr_layout<>;, +16:u05:logr_resok4;, +27:u06:NFS4ERR_LAYOUTTRYLATER:, +19:u12:layoutget4resok, +16:u13:logr_resok4;, +16:u04:logr_resok4;, +34:u07:logr_will_signal_layout_avail;, +27:u05:NFS4ERR_LAYOUTTRYLATER:, +19:u11:layoutget4resok, +16:u12:logr_resok4;, +16:u03:logr_resok4;, +34:u06:logr_will_signal_layout_avail;, +27:u04:NFS4ERR_LAYOUTTRYLATER:, +19:u10:layoutget4resok, +16:u11:logr_resok4;, +34:u14:logr_will_signal_layout_avail;, +16:u02:logr_resok4;, +34:u05:logr_will_signal_layout_avail;, +12:u08:18.43.3., +27:u03:NFS4ERR_LAYOUTTRYLATER:, +16:u10:logr_resok4;, +34:u13:logr_will_signal_layout_avail;, +16:u01:logr_resok4;, +34:u04:logr_will_signal_layout_avail;, +27:u02:NFS4ERR_LAYOUTTRYLATER:, +34:u12:logr_will_signal_layout_avail;, +16:u00:logr_resok4;, +34:u03:logr_will_signal_layout_avail;, +12:u07:18.43.3., +27:u01:NFS4ERR_LAYOUTTRYLATER:, +34:u11:logr_will_signal_layout_avail;, +34:u02:logr_will_signal_layout_avail;, +12:u06:18.43.3., +27:u00:NFS4ERR_LAYOUTTRYLATER:, +34:u10:logr_will_signal_layout_avail;, +12:u14:18.43.3., +34:u01:logr_will_signal_layout_avail;, +12:u05:18.43.3., +12:u13:18.43.3., +34:u00:logr_will_signal_layout_avail;, +12:u04:18.43.3., +12:u12:18.43.3., +12:u03:18.43.3., +12:u11:18.43.3., +12:u02:18.43.3., +12:u10:18.43.3., +12:u01:18.43.3., +12:u00:18.43.3., +11:u08:intent., +10:uI2:),,(),, +11:u07:intent., +10:uI1:),,(),, +11:u06:intent., +10:uI0:),,(),, +11:u05:intent., +11:u04:intent., +11:u03:intent., +11:u02:intent., +8:u08:564], +11:u01:intent., +8:u07:564], +11:u00:intent., +8:u06:564], +8:u05:564], +15:u08:byte-range:, +8:u04:564], +8:u03:564], +15:u07:byte-range:, +8:u02:564], +15:u06:byte-range:, +8:u01:564], +15:u08:loga_offset, +15:u14:byte-range:, +15:u05:byte-range:, +10:u08:cover., +8:u00:564], +15:u07:loga_offset, +15:u13:byte-range:, +8:uI2:-:.,, +15:u04:byte-range:, +18:u08:loga_minlength, +15:u06:loga_offset, +15:u12:byte-range:, +8:uI1:-:.,, +15:u03:byte-range:, +10:u07:cover., +15:u05:loga_offset, +15:u11:byte-range:, +8:uI0:-:.,, +15:u02:byte-range:, +10:u06:cover., +18:u07:loga_minlength, +15:u04:loga_offset, +15:u10:byte-range:, +10:u14:cover., +15:u01:byte-range:, +10:u05:cover., +18:u06:loga_minlength, +15:u03:loga_offset, +10:u13:cover., +18:u14:loga_minlength, +15:u00:byte-range:, +10:u04:cover., +18:u05:loga_minlength, +10:u08:desire, +15:u02:loga_offset, +10:u12:cover., +18:u13:loga_minlength, +10:u03:cover., +18:u04:loga_minlength, +15:u01:loga_offset, +10:u11:cover., +18:u12:loga_minlength, +10:u02:cover., +18:u03:loga_minlength, +10:u07:desire, +15:u00:loga_offset, +10:u10:cover., +18:u11:loga_minlength, +10:u01:cover., +18:u02:loga_minlength, +10:u06:desire, +18:u10:loga_minlength, +10:u14:desire, +10:u00:cover., +18:u01:loga_minlength, +10:u05:desire, +7:u08:of,, +10:u13:desire, +18:u00:loga_minlength, +10:u04:desire, +16:u08:loga_length,, +10:u12:desire, +10:u03:desire, +7:u07:of,, +16:u07:loga_length,, +10:u11:desire, +9:uI2:--,'., +10:u02:desire, +7:u06:of,, +16:u06:loga_length,, +10:u10:desire, +7:u14:of,, +9:uI1:--,'., +10:u01:desire, +7:u05:of,, +16:u05:loga_length,, +7:u13:of,, +9:uI0:--,'., +10:u00:desire, +7:u04:of,, +16:u04:loga_length,, +7:u12:of,, +7:u22:of,, +7:u23:of,, +7:u03:of,, +15:u08:subjective,, +16:u03:loga_length,, +7:u11:of,, +7:u02:of,, +16:u02:loga_length,, +7:u10:of,, +7:u01:of,, +15:u07:subjective,, +16:u08:pre-allocate, +16:u01:loga_length,, +7:u00:of,, +15:u06:subjective,, +16:u00:loga_length,, +15:u14:subjective,, +15:u05:subjective,, +16:u07:pre-allocate, +15:u13:subjective,, +15:u04:subjective,, +16:u06:pre-allocate, +9:u08:tells, +15:u12:subjective,, +16:u14:pre-allocate, +15:u03:subjective,, +16:u05:pre-allocate, +15:u11:subjective,, +16:u13:pre-allocate, +15:u02:subjective,, +16:u04:pre-allocate, +9:u07:tells, +10:u08:prefer, +15:u10:subjective,, +16:u12:pre-allocate, +15:u01:subjective,, +16:u03:pre-allocate, +9:u06:tells, +10:u07:prefer, +16:u11:pre-allocate, +9:u14:tells, +15:u00:subjective,, +16:u02:pre-allocate, +9:u05:tells, +10:u06:prefer, +16:u10:pre-allocate, +9:u13:tells, +16:u01:pre-allocate, +9:u04:tells, +16:u08:loga_offset., +10:u05:prefer, +9:u12:tells, +7:u22:tel, +8:u23:tell, +16:u00:pre-allocate, +9:u03:tells, +10:u04:prefer, +9:u11:tells, +9:u02:tells, +16:u07:loga_offset., +10:u03:prefer, +9:u10:tells, +9:u01:tells, +16:u06:loga_offset., +20:u08:NFS4_UINT64_MAX,, +10:u02:prefer, +16:u14:loga_offset., +9:u00:tells, +16:u05:loga_offset., +10:u01:prefer, +16:u13:loga_offset., +16:u04:loga_offset., +20:u07:NFS4_UINT64_MAX,, +10:u00:prefer, +16:u12:loga_offset., +16:u03:loga_offset., +20:u06:NFS4_UINT64_MAX,, +16:u11:loga_offset., +20:u14:nfs4_uint64_max,, +16:u02:loga_offset., +20:u05:NFS4_UINT64_MAX,, +15:u08:loga_length, +16:u10:loga_offset., +20:u13:nfs4_uint64_max,, +16:u01:loga_offset., +20:u04:NFS4_UINT64_MAX,, +15:u07:loga_length, +20:u12:nfs4_uint64_max,, +16:u00:loga_offset., +20:u03:NFS4_UINT64_MAX,, +16:u08:loga_offset,, +15:u06:loga_length, +20:u11:nfs4_uint64_max,, +20:u02:NFS4_UINT64_MAX,, +15:u05:loga_length, +19:u08:loga_minlength,, +20:u10:nfs4_uint64_max,, +20:u01:NFS4_UINT64_MAX,, +16:u07:loga_offset,, +15:u04:loga_length, +19:u07:loga_minlength,, +20:u00:NFS4_UINT64_MAX,, +16:u06:loga_offset,, +15:u03:loga_length, +19:u06:loga_minlength,, +16:u14:loga_offset,, +16:u05:loga_offset,, +15:u02:loga_length, +19:u05:loga_minlength,, +16:u13:loga_offset,, +16:u04:loga_offset,, +15:u01:loga_length, +19:u04:loga_minlength,, +8:u08:565], +16:u12:loga_offset,, +16:u03:loga_offset,, +15:u00:loga_length, +19:u03:loga_minlength,, +8:u07:565], +16:u11:loga_offset,, +16:u02:loga_offset,, +19:u02:loga_minlength,, +8:u06:565], +16:u10:loga_offset,, +16:u01:loga_offset,, +19:u01:loga_minlength,, +8:u05:565], +16:u00:loga_offset,, +20:u08:NFS4_UINT64_MAX;, +19:u00:loga_minlength,, +8:u04:565], +73:u08:+-----------+-----------+----------+----------+---------------------+, +8:u03:565], +9:u08:a_off, +20:u07:NFS4_UINT64_MAX;, +8:u02:565], +9:u07:a_off, +20:u06:NFS4_UINT64_MAX;, +73:u07:+-----------+-----------+----------+----------+---------------------+, +8:u01:565], +9:u06:a_off, +20:u14:nfs4_uint64_max;, +20:u05:NFS4_UINT64_MAX;, +73:u06:+-----------+-----------+----------+----------+---------------------+, +8:u00:565], +9:u05:a_off, +20:u13:nfs4_uint64_max;, +73:u14:+-----------+-----------+----------+----------+---------------------+, +7:uI2:;;., +20:u04:NFS4_UINT64_MAX;, +73:u05:+-----------+-----------+----------+----------+---------------------+, +9:u04:a_off, +20:u12:nfs4_uint64_max;, +73:u13:+-----------+-----------+----------+----------+---------------------+, +7:uI1:;;., +20:u03:NFS4_UINT64_MAX;, +73:u04:+-----------+-----------+----------+----------+---------------------+, +9:u03:a_off, +20:u11:nfs4_uint64_max;, +73:u12:+-----------+-----------+----------+----------+---------------------+, +7:uI0:;;., +20:u02:NFS4_UINT64_MAX;, +73:u03:+-----------+-----------+----------+----------+---------------------+, +9:u02:a_off, +20:u10:nfs4_uint64_max;, +73:u11:+-----------+-----------+----------+----------+---------------------+, +20:u01:NFS4_UINT64_MAX;, +73:u02:+-----------+-----------+----------+----------+---------------------+, +9:u01:a_off, +73:u10:+-----------+-----------+----------+----------+---------------------+, +20:u00:NFS4_UINT64_MAX;, +73:u01:+-----------+-----------+----------+----------+---------------------+, +9:u00:a_off, +73:u00:+-----------+-----------+----------+----------+---------------------+, +9:u08:_READ, +9:u07:_READ, +8:u08:u64m, +9:u06:_READ, +8:u07:u64m, +9:u05:_READ, +8:u06:u64m, +9:u04:_READ, +8:u05:u64m, +9:u03:_READ, +8:u04:u64m, +9:u02:_READ, +8:u03:u64m, +9:u01:_READ, +8:u02:u64m, +9:u00:_READ, +8:u01:u64m, +6:u08:<=, +8:u00:u64m, +6:u07:<=, +6:u06:<=, +6:u05:<=, +6:u04:<=, +6:u03:<=, +6:u02:<=, +6:u01:<=, +6:u00:<=, +7:u08:_RW, +7:u07:_RW, +7:u06:_RW, +7:u05:_RW, +7:u04:_RW, +5:u08:>, +7:u03:_RW, +5:u07:>, +7:u02:_RW, +5:u06:>, +7:u01:_RW, +5:u05:>, +7:u00:_RW, +5:u04:>, +5:u03:>, +5:u02:>, +5:u01:>, +5:u00:>, +10:u08:a_off), +10:u07:a_off), +10:u06:a_off), +10:u05:a_off), +10:u04:a_off), +10:u03:a_off), +10:u02:a_off), +10:u01:a_off), +10:u00:a_off), +12:u08:a_minlen, +12:u07:a_minlen, +12:u06:a_minlen, +12:u05:a_minlen, +12:u04:a_minlen, +12:u03:a_minlen, +12:u02:a_minlen, +12:u01:a_minlen, +12:u00:a_minlen, +27:u08:NFS4ERR_LAYOUTTRYLATER., +27:u07:NFS4ERR_LAYOUTTRYLATER., +27:u06:NFS4ERR_LAYOUTTRYLATER., +27:u05:NFS4ERR_LAYOUTTRYLATER., +27:u04:NFS4ERR_LAYOUTTRYLATER., +27:u03:NFS4ERR_LAYOUTTRYLATER., +8:u08:566], +27:u02:NFS4ERR_LAYOUTTRYLATER., +8:u07:566], +27:u01:NFS4ERR_LAYOUTTRYLATER., +8:u06:566], +11:u08:Desired, +27:u00:NFS4ERR_LAYOUTTRYLATER., +8:u05:566], +8:u04:566], +11:u07:Desired, +9:u08:a_len, +8:u03:566], +11:u06:Desired, +73:u08:+------------+------------+-----------+-----------+-----------------+, +8:u02:566], +11:u05:Desired, +9:u07:a_len, +8:u01:566], +11:u04:Desired, +9:u06:a_len, +73:u07:+------------+------------+-----------+-----------+-----------------+, +8:u00:566], +9:u14:a_len, +8:uI2:.:;;, +11:u03:Desired, +9:u05:a_len, +73:u06:+------------+------------+-----------+-----------+-----------------+, +9:u13:a_len, +73:u14:+------------+------------+-----------+-----------+-----------------+, +8:uI1:.:;;, +11:u02:Desired, +9:u04:a_len, +73:u05:+------------+------------+-----------+-----------+-----------------+, +9:u12:a_len, +73:u13:+------------+------------+-----------+-----------+-----------------+, +6:u21:a_, +7:u22:a_l, +8:u23:a_le, +8:uI0:.:;;, +11:u01:Desired, +9:u03:a_len, +73:u04:+------------+------------+-----------+-----------+-----------------+, +9:u11:a_len, +73:u12:+------------+------------+-----------+-----------+-----------------+, +11:u00:Desired, +9:u02:a_len, +73:u03:+------------+------------+-----------+-----------+-----------------+, +9:u10:a_len, +73:u11:+------------+------------+-----------+-----------+-----------------+, +9:u01:a_len, +73:u02:+------------+------------+-----------+-----------+-----------------+, +73:u10:+------------+------------+-----------+-----------+-----------------+, +9:u00:a_len, +73:u01:+------------+------------+-----------+-----------+-----------------+, +73:u00:+------------+------------+-----------+-----------+-----------------+, +16:u08:loga_stateid, +16:u07:loga_stateid, +16:u06:loga_stateid, +14:u08:reflecting, +16:u05:loga_stateid, +14:u07:reflecting, +16:u04:loga_stateid, +14:u06:reflecting, +16:u03:loga_stateid, +14:u05:reflecting, +16:u02:loga_stateid, +14:u04:reflecting, +16:u01:loga_stateid, +14:u03:reflecting, +17:u08:loga_maxcount, +16:u00:loga_stateid, +14:u02:reflecting, +17:u07:loga_maxcount, +14:u01:reflecting, +17:u06:loga_maxcount, +14:u00:reflecting, +17:u05:loga_maxcount, +17:u04:loga_maxcount, +8:u08:567], +17:u03:loga_maxcount, +8:u07:567], +17:u02:loga_maxcount, +8:u06:567], +17:u01:loga_maxcount, +8:u05:567], +17:u00:loga_maxcount, +8:u04:567], +8:u03:567], +8:u02:567], +8:u01:567], +8:u00:567], +13:u08:lo_offset, +13:u07:lo_offset, +13:u08:lo_iomode, +15:u14:logr_layout, +13:u06:lo_offset, +15:u13:logr_layout, +13:u14:lo_offset, +13:u05:lo_offset, +13:u07:lo_iomode, +15:u12:logr_layout, +13:u13:lo_offset, +13:u04:lo_offset, +13:u06:lo_iomode, +15:u11:logr_layout, +13:u12:lo_offset, +13:u14:lo_iomode, +13:u03:lo_offset, +13:u05:lo_iomode, +15:u10:logr_layout, +13:u11:lo_offset, +13:u13:lo_iomode, +13:u02:lo_offset, +13:u04:lo_iomode, +13:u10:lo_offset, +13:u12:lo_iomode, +13:u01:lo_offset, +13:u03:lo_iomode, +13:u11:lo_iomode, +13:u00:lo_offset, +13:u02:lo_iomode, +13:u10:lo_iomode, +13:u01:lo_iomode, +13:u00:lo_iomode, +16:u08:logr_layout., +16:u07:logr_layout., +16:u06:logr_layout., +16:u05:logr_layout., +16:u04:logr_layout., +7:u08:N-1, +16:u03:logr_layout., +16:u02:logr_layout., +12:u08:elements, +7:u07:N-1, +16:u01:logr_layout., +12:u07:elements, +7:u06:N-1, +16:u00:logr_layout., +12:u06:elements, +7:u14:n-1, +7:u05:N-1, +12:u05:elements, +7:u13:n-1, +7:u04:N-1, +12:u04:elements, +7:u12:n-1, +6:u21:N-, +7:u22:N-1, +7:u23:N-1, +7:u03:N-1, +12:u03:elements, +8:u08:568], +7:u11:n-1, +7:u02:N-1, +12:u02:elements, +8:u07:568], +7:u10:n-1, +7:u01:N-1, +12:u01:elements, +8:u06:568], +7:u00:N-1, +12:u00:elements, +8:u05:568], +8:u04:568], +13:u08:lo_length, +8:u03:568], +20:u08:NFS4_UINT64_MAX., +8:u02:568], +13:u07:lo_length, +8:u01:568], +13:u06:lo_length, +20:u07:NFS4_UINT64_MAX., +8:u00:568], +13:u14:lo_length, +13:u05:lo_length, +20:u06:NFS4_UINT64_MAX., +13:u13:lo_length, +20:u14:nfs4_uint64_max., +13:u04:lo_length, +20:u05:NFS4_UINT64_MAX., +13:u12:lo_length, +20:u13:nfs4_uint64_max., +13:u03:lo_length, +20:u04:NFS4_UINT64_MAX., +13:u11:lo_length, +20:u12:nfs4_uint64_max., +13:u02:lo_length, +20:u03:NFS4_UINT64_MAX., +13:u10:lo_length, +20:u11:nfs4_uint64_max., +13:u01:lo_length, +20:u02:NFS4_UINT64_MAX., +20:u10:nfs4_uint64_max., +13:u00:lo_length, +20:u01:NFS4_UINT64_MAX., +20:u00:NFS4_UINT64_MAX., +24:u08:logr_return_on_close, +24:u07:logr_return_on_close, +24:u06:logr_return_on_close, +24:u05:logr_return_on_close, +24:u04:logr_return_on_close, +24:u03:logr_return_on_close, +24:u02:logr_return_on_close, +24:u01:logr_return_on_close, +24:u00:logr_return_on_close, +16:u08:logr_stateid, +12:u08:12.5.5.2, +16:u07:logr_stateid, +16:u06:logr_stateid, +12:u07:12.5.5.2, +16:u05:logr_stateid, +12:u06:12.5.5.2, +16:u04:logr_stateid, +12:u14:12.5.5.2, +12:u05:12.5.5.2, +16:u03:logr_stateid, +12:u13:12.5.5.2, +12:u04:12.5.5.2, +16:u02:logr_stateid, +17:u08:(logr_layout), +12:u12:12.5.5.2, +12:u03:12.5.5.2, +16:u01:logr_stateid, +17:u07:(logr_layout), +12:u11:12.5.5.2, +12:u02:12.5.5.2, +16:u00:logr_stateid, +17:u06:(logr_layout), +12:u10:12.5.5.2, +12:u01:12.5.5.2, +17:u05:(logr_layout), +12:u00:12.5.5.2, +17:u04:(logr_layout), +17:u03:(logr_layout), +17:u02:(logr_layout), +31:u08:NFS4ERR_UNKNOWN_LAYOUTTYPE., +17:u01:(logr_layout), +17:u00:(logr_layout), +31:u07:NFS4ERR_UNKNOWN_LAYOUTTYPE., +31:u06:NFS4ERR_UNKNOWN_LAYOUTTYPE., +31:u14:nfs4err_unknown_layouttype., +31:u05:NFS4ERR_UNKNOWN_LAYOUTTYPE., +31:u13:nfs4err_unknown_layouttype., +11:u14:matches, +31:u04:NFS4ERR_UNKNOWN_LAYOUTTYPE., +31:u12:nfs4err_unknown_layouttype., +11:u13:matches, +31:u03:NFS4ERR_UNKNOWN_LAYOUTTYPE., +8:u08:569], +31:u11:nfs4err_unknown_layouttype., +11:u12:matches, +31:u02:NFS4ERR_UNKNOWN_LAYOUTTYPE., +8:u07:569], +31:u10:nfs4err_unknown_layouttype., +11:u11:matches, +31:u01:NFS4ERR_UNKNOWN_LAYOUTTYPE., +8:u06:569], +11:u10:matches, +31:u00:NFS4ERR_UNKNOWN_LAYOUTTYPE., +8:u05:569], +8:u04:569], +8:u03:569], +15:u08:conditions,, +8:u02:569], +8:u01:569], +15:u07:conditions,, +8:u00:569], +15:u06:conditions,, +15:u14:conditions,, +15:u05:conditions,, +15:u13:conditions,, +15:u04:conditions,, +15:u12:conditions,, +15:u03:conditions,, +15:u11:conditions,, +15:u02:conditions,, +15:u10:conditions,, +15:u01:conditions,, +15:u00:conditions,, +33:u08:logr_will_signal_layout_avail, +33:u07:logr_will_signal_layout_avail, +33:u06:logr_will_signal_layout_avail, +33:u05:logr_will_signal_layout_avail, +12:u08:18.43.4., +33:u04:logr_will_signal_layout_avail, +33:u03:logr_will_signal_layout_avail, +12:u07:18.43.4., +33:u02:logr_will_signal_layout_avail, +12:u06:18.43.4., +33:u01:logr_will_signal_layout_avail, +12:u14:18.43.4., +12:u05:18.43.4., +33:u00:logr_will_signal_layout_avail, +12:u13:18.43.4., +12:u04:18.43.4., +12:u12:18.43.4., +12:u03:18.43.4., +12:u11:18.43.4., +12:u02:18.43.4., +12:u10:18.43.4., +12:u01:18.43.4., +11:u08:return., +12:u00:18.43.4., +12:uI2:,(....)., +11:u07:return., +12:u08:unusable, +12:uI1:,(....)., +11:u06:return., +12:u07:unusable, +11:u14:return., +12:uI0:,(....)., +11:u05:return., +12:u06:unusable, +11:u13:return., +11:u04:return., +12:u05:unusable, +11:u12:return., +11:u03:return., +12:u04:unusable, +11:u11:return., +11:u02:return., +12:u03:unusable, +11:u10:return., +11:u01:return., +7:u08:opt, +12:u02:unusable, +11:u00:return., +12:u01:unusable, +7:u07:opt, +12:u00:unusable, +7:u06:opt, +7:u05:opt, +7:u04:opt, +8:u08:570], +7:u23:opt, +7:u03:opt, +8:u07:570], +7:u02:opt, +8:u06:570], +7:u01:opt, +8:u05:570], +7:u00:opt, +8:u04:570], +8:u03:570], +8:u02:570], +8:u01:570], +8:u00:570], +12:u08:layout's, +12:u07:layout's, +12:u08:truncate, +12:u06:layout's, +12:u05:layout's, +12:u07:truncate, +12:u04:layout's, +12:u06:truncate, +12:u03:layout's, +12:u14:truncate, +12:u05:truncate, +12:u02:layout's, +12:u13:truncate, +12:u04:truncate, +12:u01:layout's, +12:u12:truncate, +15:u14:loga_length, +12:u03:truncate, +12:u00:layout's, +12:u11:truncate, +15:u13:loga_length, +8:uI2:'(),, +12:u02:truncate, +12:u10:truncate, +15:u12:loga_length, +8:uI1:'(),, +12:u01:truncate, +15:u11:loga_length, +8:uI0:'(),, +12:u00:truncate, +15:u10:loga_length, +28:u08:threshold4_write_iosize., +28:u07:threshold4_write_iosize., +28:u06:threshold4_write_iosize., +28:u14:threshold4_write_iosize., +28:u05:threshold4_write_iosize., +9:u08:10000, +28:u13:threshold4_write_iosize., +28:u04:threshold4_write_iosize., +28:u12:threshold4_write_iosize., +28:u03:threshold4_write_iosize., +9:u07:10000, +28:u11:threshold4_write_iosize., +28:u02:threshold4_write_iosize., +9:u06:10000, +9:u08:8192., +28:u10:threshold4_write_iosize., +9:u14:10000, +28:u01:threshold4_write_iosize., +9:u05:10000, +10:u08:60000,, +9:u13:10000, +28:u00:threshold4_write_iosize., +9:u04:10000, +9:u07:8192., +9:u12:10000, +7:u22:100, +8:u23:1000, +9:u03:10000, +9:u06:8192., +10:u07:60000,, +9:u11:10000, +9:u14:8192., +9:u02:10000, +9:u05:8192., +10:u06:60000,, +9:u10:10000, +9:u13:8192., +10:u14:60000,, +9:u01:10000, +9:u04:8192., +10:u05:60000,, +9:u12:8192., +10:u13:60000,, +6:u21:81, +7:u22:819, +8:u23:8192, +9:u00:10000, +9:u03:8192., +10:u04:60000,, +9:u11:8192., +10:u12:60000,, +6:u21:60, +7:u22:600, +8:u23:6000, +9:u02:8192., +10:u03:60000,, +9:u10:8192., +10:u11:60000,, +9:u01:8192., +10:u02:60000,, +8:u08:8192, +10:u10:60000,, +9:u00:8192., +10:u01:60000,, +14:u08:threshold,, +8:u07:8192, +10:u00:60000,, +8:u06:8192, +9:u14:minus, +8:uI2:,'(), +14:u07:threshold,, +8:u05:8192, +9:u13:minus, +8:uI1:,'(), +14:u06:threshold,, +8:u04:8192, +14:u08:preferably, +9:u12:minus, +14:u14:threshold,, +8:u23:minu, +8:uI0:,'(), +14:u05:threshold,, +8:u03:8192, +14:u07:preferably, +9:u11:minus, +14:u13:threshold,, +14:u04:threshold,, +6:u08:O,, +8:u02:8192, +14:u06:preferably, +9:u10:minus, +14:u12:threshold,, +14:u03:threshold,, +8:u01:8192, +14:u05:preferably, +14:u11:threshold,, +14:u02:threshold,, +6:u07:O,, +8:u00:8192, +14:u04:preferably, +14:u10:threshold,, +14:u01:threshold,, +6:u06:O,, +14:u03:preferably, +6:u14:o,, +14:u00:threshold,, +6:u05:O,, +14:u02:preferably, +8:u08:571], +6:u13:o,, +6:u04:O,, +14:u01:preferably, +8:u07:571], +6:u12:o,, +6:u21:O,, +6:u22:O,, +6:u23:O,, +6:u03:O,, +14:u00:preferably, +8:u06:571], +6:u11:o,, +6:u02:O,, +8:u05:571], +6:u10:o,, +6:u01:O,, +8:u04:571], +6:u00:O,, +8:u03:571], +8:u02:571], +8:u01:571], +8:u00:571], +7:uI2:),/, +7:uI1:),/, +7:u14:map, +7:uI0:),/, +7:u13:map, +13:u08:practical, +7:u12:map, +7:u23:map, +7:u11:map, +8:uI2:(*),, +13:u07:practical, +7:u10:map, +8:uI1:(*),, +13:u06:practical, +13:u14:practical, +8:uI0:(*),, +13:u05:practical, +9:u08:4096,, +13:u13:practical, +13:u04:practical, +9:u07:4096,, +13:u12:practical, +13:u03:practical, +9:u06:4096,, +13:u11:practical, +13:u02:practical, +9:u05:4096,, +13:u10:practical, +13:u01:practical, +9:u04:4096,, +13:u00:practical, +9:u03:4096,, +9:u02:4096,, +9:u01:4096,, +9:u00:4096,, +12:u08:pattern,, +12:u07:pattern,, +12:u06:pattern,, +12:u05:pattern,, +12:u08:stalling, +12:u04:pattern,, +12:u07:stalling, +12:u03:pattern,, +12:u06:stalling, +12:u02:pattern,, +12:u05:stalling, +12:u01:pattern,, +12:u04:stalling, +12:u00:pattern,, +12:u03:stalling, +12:u02:stalling, +12:u01:stalling, +12:u00:stalling, +19:u08:loga_minlength., +12:u14:pattern,, +11:u08:behinds, +19:u07:loga_minlength., +12:u13:pattern,, +19:u06:loga_minlength., +12:u12:pattern,, +11:u07:behinds, +19:u05:loga_minlength., +12:u11:pattern,, +8:u23:gets, +11:u06:behinds, +19:u04:loga_minlength., +12:u10:pattern,, +11:u14:behinds, +7:uI2:/,-, +11:u05:behinds, +19:u03:loga_minlength., +11:u13:behinds, +7:uI1:/,-, +11:u04:behinds, +19:u02:loga_minlength., +8:u08:572], +11:u12:behinds, +8:u23:behi, +7:uI0:/,-, +11:u03:behinds, +19:u01:loga_minlength., +8:u07:572], +11:u11:behinds, +11:u02:behinds, +19:u00:loga_minlength., +8:u06:572], +11:u10:behinds, +11:u01:behinds, +10:u08:queued, +8:u05:572], +11:u00:behinds, +11:u08:filer's, +8:u04:572], +17:u08:write-behinds, +10:u07:queued, +8:u03:572], +17:u07:write-behinds, +10:u06:queued, +11:u07:filer's, +9:u08:queue, +8:u02:572], +17:u06:write-behinds, +10:u14:queued, +10:u05:queued, +11:u06:filer's, +8:u01:572], +17:u05:write-behinds, +10:u13:queued, +11:u14:filer's, +10:u04:queued, +11:u05:filer's, +9:u07:queue, +8:u00:572], +17:u04:write-behinds, +10:u12:queued, +11:u13:filer's, +8:u23:queu, +10:u03:queued, +11:u04:filer's, +9:u06:queue, +17:u03:write-behinds, +10:u11:queued, +11:u12:filer's, +10:u02:queued, +11:u03:filer's, +9:u05:queue, +17:u02:write-behinds, +10:u10:queued, +11:u11:filer's, +10:u01:queued, +11:u02:filer's, +9:u04:queue, +17:u01:write-behinds, +11:u10:filer's, +10:u00:queued, +11:u01:filer's, +9:u03:queue, +17:u00:write-behinds, +11:u00:filer's, +9:u02:queue, +9:u01:queue, +13:u08:meanwhile, +9:u00:queue, +13:u07:meanwhile, +13:u06:meanwhile, +13:u14:meanwhile, +13:u05:meanwhile, +13:u13:meanwhile, +12:u14:scenario, +13:u04:meanwhile, +13:u12:meanwhile, +12:u13:scenario, +13:u03:meanwhile, +9:u08:race., +13:u11:meanwhile, +12:u12:scenario, +13:u02:meanwhile, +13:u10:meanwhile, +12:u11:scenario, +13:u01:meanwhile, +9:u07:race., +12:u10:scenario, +13:u00:meanwhile, +9:u06:race., +9:u14:race., +9:u05:race., +9:u13:race., +9:u04:race., +12:u08:18.44.1., +9:u12:race., +9:u03:race., +9:u11:race., +9:u02:race., +12:u07:18.44.1., +9:u10:race., +9:u01:race., +12:u06:18.44.1., +12:u14:18.44.1., +9:u00:race., +12:u05:18.44.1., +8:u08:573], +12:u13:18.44.1., +12:u04:18.44.1., +8:u07:573], +12:u12:18.44.1., +12:u03:18.44.1., +8:u06:573], +12:u11:18.44.1., +12:u02:18.44.1., +8:u05:573], +12:u10:18.44.1., +12:u01:18.44.1., +8:u04:573], +13:u08:Constants, +12:u00:18.44.1., +8:u03:573], +13:u07:Constants, +24:u08:LAYOUT4_RET_REC_FILE, +8:u02:573], +13:u06:Constants, +24:u07:LAYOUT4_RET_REC_FILE, +8:u01:573], +13:u05:Constants, +24:u06:LAYOUT4_RET_REC_FILE, +24:u08:LAYOUT4_RET_REC_FSID, +8:u00:573], +13:u04:Constants, +24:u05:LAYOUT4_RET_REC_FILE, +24:u07:LAYOUT4_RET_REC_FSID, +13:u03:Constants, +24:u04:LAYOUT4_RET_REC_FILE, +24:u06:LAYOUT4_RET_REC_FSID, +23:u08:LAYOUT4_RET_REC_ALL, +13:u02:Constants, +24:u03:LAYOUT4_RET_REC_FILE, +24:u05:LAYOUT4_RET_REC_FSID, +23:u07:LAYOUT4_RET_REC_ALL, +22:u08:LAYOUTRETURN4_FILE, +13:u01:Constants, +24:u02:LAYOUT4_RET_REC_FILE, +24:u04:LAYOUT4_RET_REC_FSID, +23:u06:LAYOUT4_RET_REC_ALL, +22:u08:layoutreturn_type4, +13:u00:Constants, +24:u01:LAYOUT4_RET_REC_FILE, +24:u03:LAYOUT4_RET_REC_FSID, +23:u05:LAYOUT4_RET_REC_ALL, +22:u07:layoutreturn_type4, +22:u07:LAYOUTRETURN4_FILE, +21:u08:LAYOUTRETURN4_ALL, +24:u00:LAYOUT4_RET_REC_FILE, +24:u02:LAYOUT4_RET_REC_FSID, +23:u04:LAYOUT4_RET_REC_ALL, +22:u06:layoutreturn_type4, +22:u06:LAYOUTRETURN4_FILE, +24:u01:LAYOUT4_RET_REC_FSID, +23:u03:LAYOUT4_RET_REC_ALL, +22:u05:layoutreturn_type4, +22:u14:layoutreturn4_file, +22:u05:LAYOUTRETURN4_FILE, +21:u07:LAYOUTRETURN4_ALL, +24:u00:LAYOUT4_RET_REC_FSID, +23:u02:LAYOUT4_RET_REC_ALL, +22:u04:layoutreturn_type4, +22:u13:layoutreturn4_file, +22:u04:LAYOUTRETURN4_FILE, +21:u06:LAYOUTRETURN4_ALL, +23:u01:LAYOUT4_RET_REC_ALL, +22:u03:layoutreturn_type4, +22:u08:layoutreturn_file4, +22:u12:layoutreturn4_file, +21:u14:layoutreturn4_all, +22:u03:LAYOUTRETURN4_FILE, +21:u05:LAYOUTRETURN4_ALL, +15:u08:lrf_offset;, +23:u00:LAYOUT4_RET_REC_ALL, +22:u02:layoutreturn_type4, +22:u07:layoutreturn_file4, +22:u11:layoutreturn4_file, +21:u13:layoutreturn4_all, +22:u02:LAYOUTRETURN4_FILE, +21:u04:LAYOUTRETURN4_ALL, +22:u01:layoutreturn_type4, +22:u06:layoutreturn_file4, +22:u10:layoutreturn4_file, +21:u12:layoutreturn4_all, +22:u01:LAYOUTRETURN4_FILE, +21:u03:LAYOUTRETURN4_ALL, +15:u07:lrf_offset;, +15:u08:lrf_length;, +22:u00:layoutreturn_type4, +22:u05:layoutreturn_file4, +21:u11:layoutreturn4_all, +22:u00:LAYOUTRETURN4_FILE, +21:u02:LAYOUTRETURN4_ALL, +15:u06:lrf_offset;, +22:u04:layoutreturn_file4, +21:u10:layoutreturn4_all, +15:u14:lrf_offset;, +21:u01:LAYOUTRETURN4_ALL, +15:u05:lrf_offset;, +15:u07:lrf_length;, +16:u08:lrf_stateid;, +22:u03:layoutreturn_file4, +15:u13:lrf_offset;, +21:u00:LAYOUTRETURN4_ALL, +15:u04:lrf_offset;, +15:u06:lrf_length;, +22:u02:layoutreturn_file4, +15:u12:lrf_offset;, +15:u14:lrf_length;, +6:u21:lr, +7:u22:lrf, +8:u23:lrf_, +15:u03:lrf_offset;, +15:u05:lrf_length;, +16:u07:lrf_stateid;, +22:u01:layoutreturn_file4, +15:u11:lrf_offset;, +15:u13:lrf_length;, +15:u02:lrf_offset;, +15:u04:lrf_length;, +16:u06:lrf_stateid;, +15:u08:lrf_body<>;, +22:u00:layoutreturn_file4, +15:u10:lrf_offset;, +15:u12:lrf_length;, +16:u14:lrf_stateid;, +15:u01:lrf_offset;, +15:u03:lrf_length;, +16:u05:lrf_stateid;, +15:u11:lrf_length;, +16:u13:lrf_stateid;, +15:u00:lrf_offset;, +15:u02:lrf_length;, +16:u04:lrf_stateid;, +15:u07:lrf_body<>;, +15:u10:lrf_length;, +16:u12:lrf_stateid;, +15:u01:lrf_length;, +16:u03:lrf_stateid;, +15:u06:lrf_body<>;, +17:u08:layoutreturn4, +16:u11:lrf_stateid;, +15:u14:lrf_body<>;, +15:u00:lrf_length;, +16:u02:lrf_stateid;, +15:u05:lrf_body<>;, +17:u07:layoutreturn4, +23:u08:LAYOUTRETURN4_FILE:, +16:u10:lrf_stateid;, +15:u13:lrf_body<>;, +16:u01:lrf_stateid;, +15:u04:lrf_body<>;, +14:u08:lr_layout;, +17:u06:layoutreturn4, +23:u07:LAYOUTRETURN4_FILE:, +15:u12:lrf_body<>;, +16:u00:lrf_stateid;, +15:u03:lrf_body<>;, +17:u05:layoutreturn4, +23:u06:LAYOUTRETURN4_FILE:, +15:u11:lrf_body<>;, +15:u02:lrf_body<>;, +14:u07:lr_layout;, +17:u04:layoutreturn4, +23:u05:LAYOUTRETURN4_FILE:, +15:u10:lrf_body<>;, +22:u14:layoutreturn_file4, +15:u01:lrf_body<>;, +14:u06:lr_layout;, +17:u03:layoutreturn4, +23:u04:LAYOUTRETURN4_FILE:, +22:u13:layoutreturn_file4, +14:u14:lr_layout;, +15:u00:lrf_body<>;, +14:u05:lr_layout;, +17:u02:layoutreturn4, +23:u03:LAYOUTRETURN4_FILE:, +22:u12:layoutreturn_file4, +14:u13:lr_layout;, +14:u04:lr_layout;, +17:u01:layoutreturn4, +23:u02:LAYOUTRETURN4_FILE:, +21:u08:LAYOUTRETURN4args, +22:u11:layoutreturn_file4, +14:u12:lr_layout;, +7:u22:lr_, +8:u23:lr_l, +14:u03:lr_layout;, +17:u00:layoutreturn4, +23:u01:LAYOUTRETURN4_FILE:, +21:u07:LAYOUTRETURN4args, +22:u10:layoutreturn_file4, +14:u11:lr_layout;, +14:u02:lr_layout;, +17:u08:lora_reclaim;, +23:u00:LAYOUTRETURN4_FILE:, +21:u06:LAYOUTRETURN4args, +14:u10:lr_layout;, +14:u01:lr_layout;, +21:u05:LAYOUTRETURN4args, +14:u00:lr_layout;, +17:u07:lora_reclaim;, +21:u08:lora_layout_type;, +21:u04:LAYOUTRETURN4args, +17:u06:lora_reclaim;, +21:u03:LAYOUTRETURN4args, +17:u14:lora_reclaim;, +17:u05:lora_reclaim;, +21:u07:lora_layout_type;, +16:u08:lora_iomode;, +21:u02:LAYOUTRETURN4args, +17:u13:lora_reclaim;, +17:u04:lora_reclaim;, +21:u06:lora_layout_type;, +21:u01:LAYOUTRETURN4args, +17:u12:lora_reclaim;, +21:u14:lora_layout_type;, +7:u22:lor, +8:u23:lora, +17:u03:lora_reclaim;, +21:u05:lora_layout_type;, +16:u07:lora_iomode;, +22:u08:lora_layoutreturn;, +21:u00:LAYOUTRETURN4args, +17:u11:lora_reclaim;, +21:u13:lora_layout_type;, +17:u02:lora_reclaim;, +21:u04:lora_layout_type;, +16:u06:lora_iomode;, +17:u10:lora_reclaim;, +21:u12:lora_layout_type;, +16:u14:lora_iomode;, +17:u01:lora_reclaim;, +21:u03:lora_layout_type;, +16:u05:lora_iomode;, +22:u07:lora_layoutreturn;, +12:u08:18.44.2., +21:u11:lora_layout_type;, +16:u13:lora_iomode;, +17:u14:layoutreturn4, +17:u00:lora_reclaim;, +21:u02:lora_layout_type;, +16:u04:lora_iomode;, +22:u06:lora_layoutreturn;, +21:u10:lora_layout_type;, +16:u12:lora_iomode;, +17:u13:layoutreturn4, +22:u14:lora_layoutreturn;, +21:u01:lora_layout_type;, +16:u03:lora_iomode;, +22:u05:lora_layoutreturn;, +12:u07:18.44.2., +16:u11:lora_iomode;, +17:u12:layoutreturn4, +22:u13:lora_layoutreturn;, +21:u00:lora_layout_type;, +16:u02:lora_iomode;, +22:u04:lora_layoutreturn;, +12:u06:18.44.2., +16:u10:lora_iomode;, +17:u11:layoutreturn4, +22:u12:lora_layoutreturn;, +12:u14:18.44.2., +16:u01:lora_iomode;, +22:u03:lora_layoutreturn;, +12:u05:18.44.2., +8:u08:574], +17:u10:layoutreturn4, +22:u11:lora_layoutreturn;, +12:u13:18.44.2., +16:u00:lora_iomode;, +22:u02:lora_layoutreturn;, +12:u04:18.44.2., +8:u07:574], +22:u10:lora_layoutreturn;, +12:u12:18.44.2., +22:u01:lora_layoutreturn;, +12:u03:18.44.2., +8:u06:574], +12:u11:18.44.2., +22:u00:lora_layoutreturn;, +12:u02:18.44.2., +8:u05:574], +12:u10:18.44.2., +12:u01:18.44.2., +8:u04:574], +24:u08:layoutreturn_stateid, +12:u00:18.44.2., +8:u03:574], +24:u07:layoutreturn_stateid, +16:u08:lrs_stateid;, +8:u02:574], +24:u06:layoutreturn_stateid, +8:u01:574], +24:u05:layoutreturn_stateid, +16:u07:lrs_stateid;, +8:u00:574], +24:u04:layoutreturn_stateid, +16:u06:lrs_stateid;, +24:u03:layoutreturn_stateid, +16:u14:lrs_stateid;, +16:u05:lrs_stateid;, +24:u02:layoutreturn_stateid, +16:u13:lrs_stateid;, +16:u04:lrs_stateid;, +24:u01:layoutreturn_stateid, +20:u08:LAYOUTRETURN4res, +16:u12:lrs_stateid;, +7:u22:lrs, +8:u23:lrs_, +16:u03:lrs_stateid;, +24:u00:layoutreturn_stateid, +20:u07:LAYOUTRETURN4res, +16:u11:lrs_stateid;, +16:u02:lrs_stateid;, +17:u08:lorr_stateid;, +20:u06:LAYOUTRETURN4res, +16:u10:lrs_stateid;, +16:u01:lrs_stateid;, +20:u05:LAYOUTRETURN4res, +16:u00:lrs_stateid;, +17:u07:lorr_stateid;, +20:u04:LAYOUTRETURN4res, +24:u14:layoutreturn_stateid, +17:u06:lorr_stateid;, +20:u03:LAYOUTRETURN4res, +24:u13:layoutreturn_stateid, +17:u14:lorr_stateid;, +17:u05:lorr_stateid;, +12:u08:18.44.3., +20:u02:LAYOUTRETURN4res, +24:u12:layoutreturn_stateid, +17:u13:lorr_stateid;, +17:u04:lorr_stateid;, +20:u01:LAYOUTRETURN4res, +24:u11:layoutreturn_stateid, +17:u12:lorr_stateid;, +8:u23:lorr, +17:u03:lorr_stateid;, +12:u07:18.44.3., +20:u00:LAYOUTRETURN4res, +24:u10:layoutreturn_stateid, +17:u11:lorr_stateid;, +17:u02:lorr_stateid;, +12:u06:18.44.3., +17:u10:lorr_stateid;, +12:u14:18.44.3., +17:u01:lorr_stateid;, +12:u05:18.44.3., +12:u13:18.44.3., +17:u00:lorr_stateid;, +12:u04:18.44.3., +17:u08:lr_returntype, +12:u12:18.44.3., +12:u03:18.44.3., +17:u07:lr_returntype, +12:u11:18.44.3., +12:u02:18.44.3., +17:u06:lr_returntype, +16:u08:lrf_stateid., +12:u10:18.44.3., +8:uI2:),,., +12:u01:18.44.3., +17:u05:lr_returntype, +16:u07:lrf_stateid., +8:uI1:),,., +12:u00:18.44.3., +17:u04:lr_returntype, +16:u06:lrf_stateid., +8:uI0:),,., +17:u03:lr_returntype, +16:u05:lrf_stateid., +17:u02:lr_returntype, +16:u04:lrf_stateid., +17:u14:lr_returntype, +17:u01:lr_returntype, +16:u03:lrf_stateid., +17:u13:lr_returntype, +17:u00:lr_returntype, +16:u02:lrf_stateid., +17:u12:lr_returntype, +8:u23:lr_r, +16:u01:lrf_stateid., +17:u11:lr_returntype, +16:u00:lrf_stateid., +17:u10:lr_returntype, +23:u08:LAYOUTRETURN4_FILE,, +23:u07:LAYOUTRETURN4_FILE,, +23:u06:LAYOUTRETURN4_FILE,, +23:u14:layoutreturn4_file,, +23:u05:LAYOUTRETURN4_FILE,, +23:u13:layoutreturn4_file,, +23:u04:LAYOUTRETURN4_FILE,, +23:u12:layoutreturn4_file,, +23:u03:LAYOUTRETURN4_FILE,, +23:u11:layoutreturn4_file,, +23:u02:LAYOUTRETURN4_FILE,, +23:u10:layoutreturn4_file,, +23:u01:LAYOUTRETURN4_FILE,, +23:u00:LAYOUTRETURN4_FILE,, +12:uI2:......"", +12:uI1:......"", +12:uI0:......"", +8:u08:575], +8:u07:575], +8:u06:575], +12:u08:Recalled, +8:u05:575], +8:u04:575], +12:u07:Recalled, +22:u08:LAYOUTRETURN4_ALL., +8:u03:575], +12:u06:Recalled, +8:u02:575], +12:u05:Recalled, +22:u07:LAYOUTRETURN4_ALL., +8:u01:575], +12:u04:Recalled, +22:u06:LAYOUTRETURN4_ALL., +8:u00:575], +22:u14:layoutreturn4_all., +12:u03:Recalled, +22:u05:LAYOUTRETURN4_ALL., +22:u13:layoutreturn4_all., +12:u02:Recalled, +22:u04:LAYOUTRETURN4_ALL., +22:u12:layoutreturn4_all., +12:u01:Recalled, +22:u03:LAYOUTRETURN4_ALL., +22:u11:layoutreturn4_all., +12:u00:Recalled, +22:u02:LAYOUTRETURN4_ALL., +22:u08:LAYOUTRETURN4_ALL), +22:u10:layoutreturn4_all., +22:u01:LAYOUTRETURN4_ALL., +22:u00:LAYOUTRETURN4_ALL., +22:u07:LAYOUTRETURN4_ALL), +22:u06:LAYOUTRETURN4_ALL), +22:u14:layoutreturn4_all), +22:u05:LAYOUTRETURN4_ALL), +22:u13:layoutreturn4_all), +22:u04:LAYOUTRETURN4_ALL), +22:u12:layoutreturn4_all), +22:u03:LAYOUTRETURN4_ALL), +22:u11:layoutreturn4_all), +22:u02:LAYOUTRETURN4_ALL), +22:u10:layoutreturn4_all), +22:u01:LAYOUTRETURN4_ALL), +13:uI2:..,..,..., +22:u00:LAYOUTRETURN4_ALL), +13:uI1:..,..,..., +13:uI0:..,..,..., +10:u14:delete, +10:u13:delete, +10:u12:delete, +10:u11:delete, +16:u08:lora_reclaim, +10:u10:delete, +16:u07:lora_reclaim, +16:u06:lora_reclaim, +16:u14:lora_reclaim, +16:u05:lora_reclaim, +16:u13:lora_reclaim, +16:u04:lora_reclaim, +16:u12:lora_reclaim, +16:u03:lora_reclaim, +16:u11:lora_reclaim, +16:u02:lora_reclaim, +16:u10:lora_reclaim, +16:u01:lora_reclaim, +16:u00:lora_reclaim, +23:u08:LAYOUTRECALL4_FILE,, +23:u07:LAYOUTRECALL4_FILE,, +23:u06:LAYOUTRECALL4_FILE,, +23:u14:layoutrecall4_file,, +23:u05:LAYOUTRECALL4_FILE,, +23:u13:layoutrecall4_file,, +23:u04:LAYOUTRECALL4_FILE,, +23:u12:layoutrecall4_file,, +23:u03:LAYOUTRECALL4_FILE,, +23:u11:layoutrecall4_file,, +9:u14:(from, +23:u02:LAYOUTRECALL4_FILE,, +23:u10:layoutrecall4_file,, +9:u13:(from, +23:u01:LAYOUTRECALL4_FILE,, +8:u08:576], +9:u12:(from, +7:u22:(fr, +8:u23:(fro, +23:u00:LAYOUTRECALL4_FILE,, +8:u07:576], +9:u11:(from, +8:u06:576], +9:u10:(from, +8:u05:576], +8:u04:576], +8:u03:576], +8:u02:576], +8:u01:576], +8:u00:576], +7:uI2:';,, +7:uI1:';,, +7:uI0:';,, +6:uI2:';, +15:u08:lrs_present, +6:uI1:';, +6:uI0:';, +15:u07:lrs_present, +14:u08:all-zeroes, +15:u06:lrs_present, +15:u14:lrs_present, +15:u05:lrs_present, +14:u07:all-zeroes, +15:u13:lrs_present, +15:u04:lrs_present, +14:u06:all-zeroes, +15:u12:lrs_present, +14:u14:all-zeroes, +15:u03:lrs_present, +14:u05:all-zeroes, +15:u11:lrs_present, +14:u13:all-zeroes, +12:uI2:-(....)., +15:u02:lrs_present, +14:u04:all-zeroes, +15:u10:lrs_present, +14:u12:all-zeroes, +12:uI1:-(....)., +15:u01:lrs_present, +14:u03:all-zeroes, +14:u11:all-zeroes, +12:uI0:-(....)., +15:u00:lrs_present, +14:u02:all-zeroes, +14:u10:all-zeroes, +14:u01:all-zeroes, +14:u00:all-zeroes, +18:u08:LAYOUTRETURN's, +18:u07:LAYOUTRETURN's, +18:u06:LAYOUTRETURN's, +18:u05:LAYOUTRETURN's, +18:u04:LAYOUTRETURN's, +8:u08:577], +18:u03:LAYOUTRETURN's, +8:u07:577], +18:u02:LAYOUTRETURN's, +8:u06:577], +12:u08:18.44.4., +18:u01:LAYOUTRETURN's, +8:u05:577], +18:u00:LAYOUTRETURN's, +8:u04:577], +12:u07:18.44.4., +8:u03:577], +12:u06:18.44.4., +8:u02:577], +12:u14:18.44.4., +12:u05:18.44.4., +8:u01:577], +12:u13:18.44.4., +12:u04:18.44.4., +8:u00:577], +12:u12:18.44.4., +12:u03:18.44.4., +12:u11:18.44.4., +12:u02:18.44.4., +12:u10:18.44.4., +12:u01:18.44.4., +12:u00:18.44.4., +10:uI2:(..,);, +10:uI1:(..,);, +10:uI0:(..,);, +12:u08:12.5.5.1, +12:u07:12.5.5.1, +12:u06:12.5.5.1, +12:u08:18.45.1., +12:u05:12.5.5.1, +12:u04:12.5.5.1, +12:u07:18.45.1., +12:u03:12.5.5.1, +18:u08:secinfo_style4, +12:u06:18.45.1., +12:u02:12.5.5.1, +18:u07:secinfo_style4, +12:u14:18.45.1., +12:u05:18.45.1., +12:u01:12.5.5.1, +18:u06:secinfo_style4, +12:u13:18.45.1., +12:u04:18.45.1., +12:u00:12.5.5.1, +18:u05:secinfo_style4, +12:u12:18.45.1., +12:u03:18.45.1., +18:u04:secinfo_style4, +12:u11:18.45.1., +12:u02:18.45.1., +18:u03:secinfo_style4, +12:u10:18.45.1., +12:u01:18.45.1., +18:u02:secinfo_style4, +12:u00:18.45.1., +12:u08:18.45.2., +18:u01:secinfo_style4, +18:u00:secinfo_style4, +12:u07:18.45.2., +12:u06:18.45.2., +12:u08:18.45.3., +12:u14:18.45.2., +12:u05:18.45.2., +12:u13:18.45.2., +12:u04:18.45.2., +12:u07:18.45.3., +12:u12:18.45.2., +12:u03:18.45.2., +12:u06:18.45.3., +12:u11:18.45.2., +12:u14:18.45.3., +12:u02:18.45.2., +12:u05:18.45.3., +12:u10:18.45.2., +12:u13:18.45.3., +12:u01:18.45.2., +12:u04:18.45.3., +12:u12:18.45.3., +12:u00:18.45.2., +12:u03:18.45.3., +12:u11:18.45.3., +12:u02:18.45.3., +12:u10:18.45.3., +12:u01:18.45.3., +8:u08:578], +12:u00:18.45.3., +8:u07:578], +8:u06:578], +8:u05:578], +8:u04:578], +8:u03:578], +8:u02:578], +8:u01:578], +8:u00:578], +11:u14:passed,, +11:u13:passed,, +11:u12:passed,, +11:u11:passed,, +11:u10:passed,, +16:u08:instructions, +16:u07:instructions, +16:u06:instructions, +16:u05:instructions, +16:u04:instructions, +9:u08:tries, +16:u03:instructions, +16:u02:instructions, +9:u07:tries, +14:u08:Everything, +16:u01:instructions, +9:u06:tries, +16:u00:instructions, +9:u14:tries, +9:u05:tries, +14:u07:Everything, +12:u08:18.45.4., +9:u13:tries, +9:u04:tries, +14:u06:Everything, +9:u12:tries, +14:u14:everything, +8:u23:trie, +9:u03:tries, +14:u05:Everything, +12:u07:18.45.4., +9:u11:tries, +14:u13:everything, +9:u02:tries, +14:u04:Everything, +12:u06:18.45.4., +9:u10:tries, +14:u12:everything, +12:u14:18.45.4., +9:u01:tries, +14:u03:Everything, +12:u05:18.45.4., +12:u08:18.46.1., +14:u11:everything, +12:u13:18.45.4., +9:u00:tries, +14:u02:Everything, +12:u04:18.45.4., +14:u10:everything, +12:u12:18.45.4., +14:u01:Everything, +12:u03:18.45.4., +12:u07:18.46.1., +12:u11:18.45.4., +14:u00:Everything, +12:u02:18.45.4., +12:u06:18.46.1., +17:u08:sa_sessionid;, +12:u10:18.45.4., +12:u14:18.46.1., +12:u01:18.45.4., +12:u05:18.46.1., +12:u13:18.46.1., +12:u00:18.45.4., +12:u04:18.46.1., +17:u07:sa_sessionid;, +18:u08:sa_sequenceid;, +12:u12:18.46.1., +12:u03:18.46.1., +17:u06:sa_sessionid;, +12:u11:18.46.1., +17:u14:sa_sessionid;, +12:u02:18.46.1., +17:u05:sa_sessionid;, +18:u07:sa_sequenceid;, +14:u08:sa_slotid;, +12:u10:18.46.1., +17:u13:sa_sessionid;, +12:u01:18.46.1., +17:u04:sa_sessionid;, +18:u06:sa_sequenceid;, +17:u12:sa_sessionid;, +18:u14:sa_sequenceid;, +8:u23:sa_s, +12:u00:18.46.1., +17:u03:sa_sessionid;, +18:u05:sa_sequenceid;, +14:u07:sa_slotid;, +22:u08:sa_highest_slotid;, +17:u11:sa_sessionid;, +18:u13:sa_sequenceid;, +11:u14:slotid4, +17:u02:sa_sessionid;, +18:u04:sa_sequenceid;, +14:u06:sa_slotid;, +17:u10:sa_sessionid;, +18:u12:sa_sequenceid;, +11:u13:slotid4, +14:u14:sa_slotid;, +17:u01:sa_sessionid;, +18:u03:sa_sequenceid;, +14:u05:sa_slotid;, +22:u07:sa_highest_slotid;, +17:u08:sa_cachethis;, +18:u11:sa_sequenceid;, +11:u12:slotid4, +14:u13:sa_slotid;, +17:u00:sa_sessionid;, +18:u02:sa_sequenceid;, +14:u04:sa_slotid;, +22:u06:sa_highest_slotid;, +18:u10:sa_sequenceid;, +11:u11:slotid4, +14:u12:sa_slotid;, +22:u14:sa_highest_slotid;, +18:u01:sa_sequenceid;, +14:u03:sa_slotid;, +22:u05:sa_highest_slotid;, +17:u07:sa_cachethis;, +11:u10:slotid4, +14:u11:sa_slotid;, +22:u13:sa_highest_slotid;, +18:u00:sa_sequenceid;, +14:u02:sa_slotid;, +22:u04:sa_highest_slotid;, +17:u06:sa_cachethis;, +14:u10:sa_slotid;, +22:u12:sa_highest_slotid;, +17:u14:sa_cachethis;, +8:u23:sa_h, +14:u01:sa_slotid;, +22:u03:sa_highest_slotid;, +17:u05:sa_cachethis;, +22:u11:sa_highest_slotid;, +17:u13:sa_cachethis;, +14:u00:sa_slotid;, +22:u02:sa_highest_slotid;, +17:u04:sa_cachethis;, +8:u08:579], +22:u10:sa_highest_slotid;, +17:u12:sa_cachethis;, +22:u01:sa_highest_slotid;, +17:u03:sa_cachethis;, +8:u07:579], +17:u11:sa_cachethis;, +22:u00:sa_highest_slotid;, +17:u02:sa_cachethis;, +8:u06:579], +17:u10:sa_cachethis;, +17:u01:sa_cachethis;, +12:u08:18.46.2., +8:u05:579], +17:u00:sa_cachethis;, +8:u04:579], +12:u07:18.46.2., +8:u03:579], +12:u06:18.46.2., +8:u02:579], +12:u14:18.46.2., +12:u05:18.46.2., +8:u01:579], +40:u08:SEQ4_STATUS_CB_GSS_CONTEXTS_EXPIRING, +12:u13:18.46.2., +12:u04:18.46.2., +8:u00:579], +40:u07:SEQ4_STATUS_CB_GSS_CONTEXTS_EXPIRING, +12:u12:18.46.2., +12:u03:18.46.2., +40:u06:SEQ4_STATUS_CB_GSS_CONTEXTS_EXPIRING, +12:u11:18.46.2., +12:u02:18.46.2., +40:u05:SEQ4_STATUS_CB_GSS_CONTEXTS_EXPIRING, +12:u10:18.46.2., +12:u01:18.46.2., +40:u04:SEQ4_STATUS_CB_GSS_CONTEXTS_EXPIRING, +12:u00:18.46.2., +40:u03:SEQ4_STATUS_CB_GSS_CONTEXTS_EXPIRING, +40:u02:SEQ4_STATUS_CB_GSS_CONTEXTS_EXPIRING, +42:u08:SEQ4_STATUS_EXPIRED_SOME_STATE_REVOKED, +40:u01:SEQ4_STATUS_CB_GSS_CONTEXTS_EXPIRING, +42:u07:SEQ4_STATUS_EXPIRED_SOME_STATE_REVOKED, +40:u00:SEQ4_STATUS_CB_GSS_CONTEXTS_EXPIRING, +42:u06:SEQ4_STATUS_EXPIRED_SOME_STATE_REVOKED, +42:u05:SEQ4_STATUS_EXPIRED_SOME_STATE_REVOKED, +42:u04:SEQ4_STATUS_EXPIRED_SOME_STATE_REVOKED, +42:u03:SEQ4_STATUS_EXPIRED_SOME_STATE_REVOKED, +42:u02:SEQ4_STATUS_EXPIRED_SOME_STATE_REVOKED, +42:u01:SEQ4_STATUS_EXPIRED_SOME_STATE_REVOKED, +42:u00:SEQ4_STATUS_EXPIRED_SOME_STATE_REVOKED, +33:u08:SEQ4_STATUS_BACKCHANNEL_FAULT, +33:u07:SEQ4_STATUS_BACKCHANNEL_FAULT, +15:u08:0x00000400;, +33:u06:SEQ4_STATUS_BACKCHANNEL_FAULT, +15:u07:0x00000400;, +29:u08:SEQ4_STATUS_DEVID_CHANGED, +33:u05:SEQ4_STATUS_BACKCHANNEL_FAULT, +15:u06:0x00000400;, +29:u07:SEQ4_STATUS_DEVID_CHANGED, +15:u08:0x00000800;, +33:u04:SEQ4_STATUS_BACKCHANNEL_FAULT, +15:u05:0x00000400;, +29:u06:SEQ4_STATUS_DEVID_CHANGED, +15:u07:0x00000800;, +29:u08:SEQ4_STATUS_DEVID_DELETED, +33:u03:SEQ4_STATUS_BACKCHANNEL_FAULT, +15:u04:0x00000400;, +29:u05:SEQ4_STATUS_DEVID_CHANGED, +15:u06:0x00000800;, +29:u07:SEQ4_STATUS_DEVID_DELETED, +15:u08:0x00001000;, +33:u02:SEQ4_STATUS_BACKCHANNEL_FAULT, +15:u03:0x00000400;, +29:u04:SEQ4_STATUS_DEVID_CHANGED, +15:u05:0x00000800;, +29:u06:SEQ4_STATUS_DEVID_DELETED, +15:u07:0x00001000;, +18:u08:SEQUENCE4resok, +17:u08:sr_sessionid;, +33:u01:SEQ4_STATUS_BACKCHANNEL_FAULT, +15:u02:0x00000400;, +29:u03:SEQ4_STATUS_DEVID_CHANGED, +15:u04:0x00000800;, +29:u05:SEQ4_STATUS_DEVID_DELETED, +15:u06:0x00001000;, +18:u07:SEQUENCE4resok, +33:u00:SEQ4_STATUS_BACKCHANNEL_FAULT, +15:u01:0x00000400;, +29:u02:SEQ4_STATUS_DEVID_CHANGED, +15:u03:0x00000800;, +29:u04:SEQ4_STATUS_DEVID_DELETED, +15:u05:0x00001000;, +18:u06:SEQUENCE4resok, +17:u07:sr_sessionid;, +18:u08:sr_sequenceid;, +15:u00:0x00000400;, +29:u01:SEQ4_STATUS_DEVID_CHANGED, +15:u02:0x00000800;, +29:u03:SEQ4_STATUS_DEVID_DELETED, +15:u04:0x00001000;, +18:u05:SEQUENCE4resok, +17:u06:sr_sessionid;, +29:u00:SEQ4_STATUS_DEVID_CHANGED, +15:u01:0x00000800;, +29:u02:SEQ4_STATUS_DEVID_DELETED, +15:u03:0x00001000;, +18:u04:SEQUENCE4resok, +17:u14:sr_sessionid;, +17:u05:sr_sessionid;, +18:u07:sr_sequenceid;, +14:u08:sr_slotid;, +15:u00:0x00000800;, +29:u01:SEQ4_STATUS_DEVID_DELETED, +15:u02:0x00001000;, +18:u03:SEQUENCE4resok, +17:u13:sr_sessionid;, +17:u04:sr_sessionid;, +18:u06:sr_sequenceid;, +29:u00:SEQ4_STATUS_DEVID_DELETED, +15:u01:0x00001000;, +18:u02:SEQUENCE4resok, +17:u12:sr_sessionid;, +18:u14:sr_sequenceid;, +17:u03:sr_sessionid;, +18:u05:sr_sequenceid;, +14:u07:sr_slotid;, +22:u08:sr_highest_slotid;, +15:u00:0x00001000;, +18:u01:SEQUENCE4resok, +17:u11:sr_sessionid;, +18:u13:sr_sequenceid;, +17:u02:sr_sessionid;, +18:u04:sr_sequenceid;, +14:u06:sr_slotid;, +18:u00:SEQUENCE4resok, +17:u10:sr_sessionid;, +18:u12:sr_sequenceid;, +14:u14:sr_slotid;, +17:u01:sr_sessionid;, +18:u03:sr_sequenceid;, +14:u05:sr_slotid;, +22:u07:sr_highest_slotid;, +29:u08:sr_target_highest_slotid;, +18:u11:sr_sequenceid;, +14:u13:sr_slotid;, +17:u00:sr_sessionid;, +18:u02:sr_sequenceid;, +14:u04:sr_slotid;, +22:u06:sr_highest_slotid;, +18:u10:sr_sequenceid;, +14:u12:sr_slotid;, +22:u14:sr_highest_slotid;, +18:u01:sr_sequenceid;, +14:u03:sr_slotid;, +22:u05:sr_highest_slotid;, +29:u07:sr_target_highest_slotid;, +20:u08:sr_status_flags;, +14:u11:sr_slotid;, +22:u13:sr_highest_slotid;, +18:u00:sr_sequenceid;, +14:u02:sr_slotid;, +22:u04:sr_highest_slotid;, +29:u06:sr_target_highest_slotid;, +14:u10:sr_slotid;, +22:u12:sr_highest_slotid;, +29:u14:sr_target_highest_slotid;, +8:u23:sr_h, +14:u01:sr_slotid;, +22:u03:sr_highest_slotid;, +29:u05:sr_target_highest_slotid;, +20:u07:sr_status_flags;, +22:u11:sr_highest_slotid;, +29:u13:sr_target_highest_slotid;, +14:u00:sr_slotid;, +22:u02:sr_highest_slotid;, +29:u04:sr_target_highest_slotid;, +20:u06:sr_status_flags;, +22:u10:sr_highest_slotid;, +29:u12:sr_target_highest_slotid;, +20:u14:sr_status_flags;, +8:u23:sr_t, +22:u01:sr_highest_slotid;, +29:u03:sr_target_highest_slotid;, +20:u05:sr_status_flags;, +29:u11:sr_target_highest_slotid;, +20:u13:sr_status_flags;, +22:u00:sr_highest_slotid;, +29:u02:sr_target_highest_slotid;, +20:u04:sr_status_flags;, +14:u08:sr_resok4;, +29:u10:sr_target_highest_slotid;, +20:u12:sr_status_flags;, +29:u01:sr_target_highest_slotid;, +20:u03:sr_status_flags;, +14:u07:sr_resok4;, +20:u11:sr_status_flags;, +29:u00:sr_target_highest_slotid;, +20:u02:sr_status_flags;, +14:u06:sr_resok4;, +20:u10:sr_status_flags;, +18:u14:sequence4resok, +20:u01:sr_status_flags;, +12:u08:18.46.3., +14:u05:sr_resok4;, +18:u13:sequence4resok, +20:u00:sr_status_flags;, +14:u04:sr_resok4;, +18:u12:sequence4resok, +12:u07:18.46.3., +14:u03:sr_resok4;, +18:u11:sequence4resok, +12:u06:18.46.3., +14:u02:sr_resok4;, +18:u10:sequence4resok, +12:u14:18.46.3., +12:u05:18.46.3., +14:u01:sr_resok4;, +12:u13:18.46.3., +12:u04:18.46.3., +14:u00:sr_resok4;, +12:u08:appears., +12:u12:18.46.3., +12:u03:18.46.3., +12:u07:appears., +12:u11:18.46.3., +12:u02:18.46.3., +12:u06:appears., +12:u10:18.46.3., +12:u01:18.46.3., +12:u05:appears., +12:u00:18.46.3., +12:u04:appears., +13:u08:COMPOUND., +12:u03:appears., +12:u02:appears., +13:u07:COMPOUND., +12:u01:appears., +29:u14:nfs4err_op_not_in_session, +13:u06:COMPOUND., +12:u00:appears., +29:u13:nfs4err_op_not_in_session, +13:u14:compound., +13:u05:COMPOUND., +8:u08:580], +29:u12:nfs4err_op_not_in_session, +13:u13:compound., +13:u04:COMPOUND., +8:u07:580], +29:u11:nfs4err_op_not_in_session, +13:u12:compound., +13:u03:COMPOUND., +8:u06:580], +29:u10:nfs4err_op_not_in_session, +13:u11:compound., +13:u02:COMPOUND., +8:u05:580], +13:u10:compound., +13:u01:COMPOUND., +8:u04:580], +13:u00:COMPOUND., +8:u03:580], +8:u02:580], +8:u01:580], +8:u00:580], +16:u08:sa_sessionid, +16:u07:sa_sessionid, +16:u06:sa_sessionid, +13:u08:sa_slotid, +16:u05:sa_sessionid, +13:u07:sa_slotid, +16:u04:sa_sessionid, +13:u06:sa_slotid, +16:u03:sa_sessionid, +13:u05:sa_slotid, +14:u08:sa_slotid., +16:u02:sa_sessionid, +13:u04:sa_slotid, +14:u07:sa_slotid., +21:u08:sa_highest_slotid, +16:u01:sa_sessionid, +13:u03:sa_slotid, +14:u06:sa_slotid., +21:u07:sa_highest_slotid, +29:u08:sr_target_highest_slotid., +16:u00:sa_sessionid, +13:u02:sa_slotid, +14:u05:sa_slotid., +21:u06:sa_highest_slotid, +13:u01:sa_slotid, +14:u04:sa_slotid., +21:u05:sa_highest_slotid, +29:u07:sr_target_highest_slotid., +13:u00:sa_slotid, +14:u03:sa_slotid., +21:u04:sa_highest_slotid, +29:u06:sr_target_highest_slotid., +14:u02:sa_slotid., +21:u03:sa_highest_slotid, +29:u14:sr_target_highest_slotid., +29:u05:sr_target_highest_slotid., +14:u01:sa_slotid., +21:u02:sa_highest_slotid, +29:u13:sr_target_highest_slotid., +29:u04:sr_target_highest_slotid., +14:u00:sa_slotid., +21:u01:sa_highest_slotid, +29:u12:sr_target_highest_slotid., +29:u03:sr_target_highest_slotid., +21:u00:sa_highest_slotid, +29:u11:sr_target_highest_slotid., +29:u02:sr_target_highest_slotid., +29:u10:sr_target_highest_slotid., +29:u01:sr_target_highest_slotid., +29:u00:sr_target_highest_slotid., +8:u08:581], +8:u07:581], +8:u06:581], +8:u05:581], +8:u04:581], +8:u03:581], +8:u02:581], +29:u08:SEQ4_STATUS_CB_PATH_DOWN., +8:u01:581], +8:u00:581], +29:u07:SEQ4_STATUS_CB_PATH_DOWN., +29:u06:SEQ4_STATUS_CB_PATH_DOWN., +9:u08:20.8), +29:u14:seq4_status_cb_path_down., +29:u05:SEQ4_STATUS_CB_PATH_DOWN., +9:u07:20.8), +29:u13:seq4_status_cb_path_down., +29:u04:SEQ4_STATUS_CB_PATH_DOWN., +9:u06:20.8), +29:u12:seq4_status_cb_path_down., +9:uI2:(..,,, +29:u03:SEQ4_STATUS_CB_PATH_DOWN., +9:u05:20.8), +29:u11:seq4_status_cb_path_down., +9:uI1:(..,,, +29:u02:SEQ4_STATUS_CB_PATH_DOWN., +9:u04:20.8), +29:u10:seq4_status_cb_path_down., +9:uI0:(..,,, +29:u01:SEQ4_STATUS_CB_PATH_DOWN., +9:u03:20.8), +29:u00:SEQ4_STATUS_CB_PATH_DOWN., +9:u02:20.8), +9:u01:20.8), +9:u00:20.8), +40:u14:seq4_status_cb_gss_contexts_expiring, +40:u13:seq4_status_cb_gss_contexts_expiring, +40:u12:seq4_status_cb_gss_contexts_expiring, +40:u11:seq4_status_cb_gss_contexts_expiring, +40:u10:seq4_status_cb_gss_contexts_expiring, +6:uI2:*', +6:uI1:*', +6:uI0:*', +9:u08:sent), +13:u08:(relative, +13:u07:(relative, +6:uI2:*-, +9:u07:sent), +13:u06:(relative, +6:uI1:*-, +9:u06:sent), +13:u05:(relative, +9:u14:sent), +6:uI0:*-, +9:u05:sent), +13:u04:(relative, +9:u13:sent), +9:u04:sent), +13:u03:(relative, +9:u12:sent), +9:u03:sent), +13:u02:(relative, +9:u11:sent), +9:u02:sent), +13:u01:(relative, +9:u10:sent), +9:u01:sent), +13:u00:(relative, +9:u00:sent), +8:u08:582], +8:u07:582], +8:u06:582], +8:u05:582], +8:u04:582], +8:u03:582], +8:u02:582], +11:u08:18.38),, +22:u08:DESTROY_CLIENTID),, +8:u01:582], +11:u07:18.38),, +8:u00:582], +11:u06:18.38),, +22:u07:DESTROY_CLIENTID),, +11:u05:18.38),, +22:u06:DESTROY_CLIENTID),, +11:u04:18.38),, +22:u14:destroy_clientid),, +8:uI2:(),(, +22:u05:DESTROY_CLIENTID),, +11:u03:18.38),, +22:u13:destroy_clientid),, +8:uI1:(),(, +22:u04:DESTROY_CLIENTID),, +11:u02:18.38),, +22:u12:destroy_clientid),, +42:u14:seq4_status_expired_some_state_revoked, +8:uI0:(),(, +22:u03:DESTROY_CLIENTID),, +11:u01:18.38),, +22:u11:destroy_clientid),, +42:u13:seq4_status_expired_some_state_revoked, +22:u02:DESTROY_CLIENTID),, +11:u00:18.38),, +22:u10:destroy_clientid),, +42:u12:seq4_status_expired_some_state_revoked, +22:u01:DESTROY_CLIENTID),, +42:u11:seq4_status_expired_some_state_revoked, +22:u00:DESTROY_CLIENTID),, +42:u10:seq4_status_expired_some_state_revoked, +17:u08:FREE_STATEID., +17:u07:FREE_STATEID., +17:u06:FREE_STATEID., +17:u14:free_stateid., +17:u05:FREE_STATEID., +17:u13:free_stateid., +17:u04:FREE_STATEID., +15:u08:consequence, +17:u12:free_stateid., +17:u03:FREE_STATEID., +17:u11:free_stateid., +17:u02:FREE_STATEID., +15:u07:consequence, +29:u08:SEQ4_STATUS_CB_PATH_DOWN,, +17:u10:free_stateid., +17:u01:FREE_STATEID., +15:u06:consequence, +37:u08:SEQ4_STATUS_CB_PATH_DOWN_SESSION,, +15:u14:consequence, +17:u00:FREE_STATEID., +15:u05:consequence, +29:u07:SEQ4_STATUS_CB_PATH_DOWN,, +37:u07:SEQ4_STATUS_CB_PATH_DOWN_SESSION,, +15:u13:consequence, +15:u04:consequence, +29:u06:SEQ4_STATUS_CB_PATH_DOWN,, +37:u06:SEQ4_STATUS_CB_PATH_DOWN_SESSION,, +15:u12:consequence, +29:u14:seq4_status_cb_path_down,, +15:u03:consequence, +29:u05:SEQ4_STATUS_CB_PATH_DOWN,, +37:u05:SEQ4_STATUS_CB_PATH_DOWN_SESSION,, +15:u11:consequence, +29:u13:seq4_status_cb_path_down,, +15:u02:consequence, +29:u04:SEQ4_STATUS_CB_PATH_DOWN,, +37:u04:SEQ4_STATUS_CB_PATH_DOWN_SESSION,, +15:u10:consequence, +29:u12:seq4_status_cb_path_down,, +15:u01:consequence, +29:u03:SEQ4_STATUS_CB_PATH_DOWN,, +37:u03:SEQ4_STATUS_CB_PATH_DOWN_SESSION,, +29:u11:seq4_status_cb_path_down,, +15:u00:consequence, +29:u02:SEQ4_STATUS_CB_PATH_DOWN,, +37:u02:SEQ4_STATUS_CB_PATH_DOWN_SESSION,, +29:u10:seq4_status_cb_path_down,, +29:u01:SEQ4_STATUS_CB_PATH_DOWN,, +37:u01:SEQ4_STATUS_CB_PATH_DOWN_SESSION,, +29:u00:SEQ4_STATUS_CB_PATH_DOWN,, +37:u00:SEQ4_STATUS_CB_PATH_DOWN_SESSION,, +39:u08:SEQ4_STATUS_RESTART_RECLAIM_NEEDED., +39:u07:SEQ4_STATUS_RESTART_RECLAIM_NEEDED., +20:u14:reclaim_complete, +39:u06:SEQ4_STATUS_RESTART_RECLAIM_NEEDED., +20:u13:reclaim_complete, +39:u05:SEQ4_STATUS_RESTART_RECLAIM_NEEDED., +20:u12:reclaim_complete, +33:u14:seq4_status_backchannel_fault, +39:u04:SEQ4_STATUS_RESTART_RECLAIM_NEEDED., +8:u08:583], +20:u11:reclaim_complete, +33:u13:seq4_status_backchannel_fault, +39:u03:SEQ4_STATUS_RESTART_RECLAIM_NEEDED., +8:u07:583], +20:u10:reclaim_complete, +33:u12:seq4_status_backchannel_fault, +39:u02:SEQ4_STATUS_RESTART_RECLAIM_NEEDED., +8:u06:583], +33:u11:seq4_status_backchannel_fault, +39:u01:SEQ4_STATUS_RESTART_RECLAIM_NEEDED., +8:u05:583], +33:u10:seq4_status_backchannel_fault, +39:u00:SEQ4_STATUS_RESTART_RECLAIM_NEEDED., +8:u04:583], +8:u03:583], +8:u02:583], +8:u01:583], +8:u00:583], +29:u14:seq4_status_devid_changed, +29:u13:seq4_status_devid_changed, +29:u12:seq4_status_devid_changed, +29:u11:seq4_status_devid_changed, +8:u14:stay, +29:u10:seq4_status_devid_changed, +8:u13:stay, +8:u12:stay, +29:u14:seq4_status_devid_deleted, +8:u23:stay, +8:u11:stay, +29:u13:seq4_status_devid_deleted, +8:u10:stay, +29:u12:seq4_status_devid_deleted, +29:u11:seq4_status_devid_deleted, +29:u10:seq4_status_devid_deleted, +12:u08:renewed., +12:u07:renewed., +12:u06:renewed., +12:u05:renewed., +8:u08:584], +12:u04:renewed., +8:u07:584], +12:u03:renewed., +8:u06:584], +12:u02:renewed., +8:u05:584], +11:u08:renewed, +12:u01:renewed., +8:u04:584], +12:u00:renewed., +8:u03:584], +11:u07:renewed, +12:u08:18.46.4., +8:u02:584], +11:u06:renewed, +8:u01:584], +11:u14:renewed, +11:u05:renewed, +12:u07:18.46.4., +8:u00:584], +11:u13:renewed, +11:u04:renewed, +12:u06:18.46.4., +11:u12:renewed, +12:u14:18.46.4., +11:u03:renewed, +12:u05:18.46.4., +11:u11:renewed, +12:u13:18.46.4., +11:u02:renewed, +12:u04:18.46.4., +11:u10:renewed, +12:u12:18.46.4., +11:u01:renewed, +12:u03:18.46.4., +12:u11:18.46.4., +11:u00:renewed, +12:u02:18.46.4., +12:u10:18.46.4., +12:u01:18.46.4., +12:u00:18.46.4., +24:u08:NFS4ERR_DEADSESSION., +24:u07:NFS4ERR_DEADSESSION., +24:u06:NFS4ERR_DEADSESSION., +24:u14:nfs4err_deadsession., +24:u05:NFS4ERR_DEADSESSION., +24:u13:nfs4err_deadsession., +24:u04:NFS4ERR_DEADSESSION., +24:u12:nfs4err_deadsession., +24:u03:NFS4ERR_DEADSESSION., +24:u11:nfs4err_deadsession., +24:u02:NFS4ERR_DEADSESSION., +24:u10:nfs4err_deadsession., +24:u01:NFS4ERR_DEADSESSION., +24:u00:NFS4ERR_DEADSESSION., +12:u08:18.47.1., +23:u14:nfs4err_deadsession, +12:u07:18.47.1., +21:u08:ssa_digest_input4, +23:u13:nfs4err_deadsession, +12:u06:18.47.1., +21:u07:ssa_digest_input4, +16:u08:sdi_seqargs;, +23:u12:nfs4err_deadsession, +12:u14:18.47.1., +12:u05:18.47.1., +21:u06:ssa_digest_input4, +16:u07:sdi_seqargs;, +23:u11:nfs4err_deadsession, +12:u13:18.47.1., +12:u04:18.47.1., +21:u05:ssa_digest_input4, +16:u06:sdi_seqargs;, +23:u10:nfs4err_deadsession, +12:u12:18.47.1., +12:u03:18.47.1., +14:u08:ssa_ssv<>;, +21:u04:ssa_digest_input4, +16:u05:sdi_seqargs;, +12:u11:18.47.1., +12:u02:18.47.1., +21:u03:ssa_digest_input4, +16:u04:sdi_seqargs;, +12:u10:18.47.1., +12:u01:18.47.1., +14:u07:ssa_ssv<>;, +17:u08:ssa_digest<>;, +21:u02:ssa_digest_input4, +16:u03:sdi_seqargs;, +12:u00:18.47.1., +14:u06:ssa_ssv<>;, +21:u01:ssa_digest_input4, +16:u02:sdi_seqargs;, +14:u14:ssa_ssv<>;, +14:u05:ssa_ssv<>;, +17:u07:ssa_digest<>;, +12:u08:18.47.2., +21:u00:ssa_digest_input4, +16:u01:sdi_seqargs;, +14:u13:ssa_ssv<>;, +14:u04:ssa_ssv<>;, +17:u06:ssa_digest<>;, +16:u00:sdi_seqargs;, +14:u12:ssa_ssv<>;, +17:u14:ssa_digest<>;, +7:u22:ssa, +8:u23:ssa_, +14:u03:ssa_ssv<>;, +17:u05:ssa_digest<>;, +12:u07:18.47.2., +14:u11:ssa_ssv<>;, +17:u13:ssa_digest<>;, +14:u02:ssa_ssv<>;, +17:u04:ssa_digest<>;, +12:u06:18.47.2., +14:u10:ssa_ssv<>;, +17:u12:ssa_digest<>;, +12:u14:18.47.2., +14:u01:ssa_ssv<>;, +17:u03:ssa_digest<>;, +12:u05:18.47.2., +8:u08:585], +17:u11:ssa_digest<>;, +12:u13:18.47.2., +14:u00:ssa_ssv<>;, +17:u02:ssa_digest<>;, +12:u04:18.47.2., +8:u07:585], +17:u10:ssa_digest<>;, +12:u12:18.47.2., +17:u01:ssa_digest<>;, +12:u03:18.47.2., +8:u06:585], +12:u11:18.47.2., +17:u00:ssa_digest<>;, +12:u02:18.47.2., +8:u05:585], +12:u10:18.47.2., +12:u01:18.47.2., +8:u04:585], +21:u08:ssr_digest_input4, +12:u00:18.47.2., +8:u03:585], +21:u07:ssr_digest_input4, +15:u08:sdi_seqres;, +8:u02:585], +21:u06:ssr_digest_input4, +15:u07:sdi_seqres;, +8:u01:585], +21:u05:ssr_digest_input4, +15:u06:sdi_seqres;, +17:u08:SET_SSV4resok, +17:u08:ssr_digest<>;, +8:u00:585], +21:u04:ssr_digest_input4, +15:u05:sdi_seqres;, +17:u07:SET_SSV4resok, +21:u03:ssr_digest_input4, +15:u04:sdi_seqres;, +17:u06:SET_SSV4resok, +17:u07:ssr_digest<>;, +21:u02:ssr_digest_input4, +15:u03:sdi_seqres;, +17:u05:SET_SSV4resok, +17:u06:ssr_digest<>;, +21:u01:ssr_digest_input4, +15:u02:sdi_seqres;, +17:u04:SET_SSV4resok, +17:u14:ssr_digest<>;, +17:u05:ssr_digest<>;, +21:u00:ssr_digest_input4, +15:u01:sdi_seqres;, +17:u03:SET_SSV4resok, +17:u13:ssr_digest<>;, +17:u04:ssr_digest<>;, +15:u08:ssr_resok4;, +15:u00:sdi_seqres;, +17:u02:SET_SSV4resok, +17:u12:ssr_digest<>;, +7:u22:ssr, +8:u23:ssr_, +17:u03:ssr_digest<>;, +17:u01:SET_SSV4resok, +17:u11:ssr_digest<>;, +17:u02:ssr_digest<>;, +15:u07:ssr_resok4;, +17:u00:SET_SSV4resok, +17:u10:ssr_digest<>;, +17:u14:set_ssv4resok, +17:u01:ssr_digest<>;, +15:u06:ssr_resok4;, +17:u13:set_ssv4resok, +15:u14:ssr_resok4;, +17:u00:ssr_digest<>;, +15:u05:ssr_resok4;, +12:u08:18.47.3., +17:u12:set_ssv4resok, +15:u13:ssr_resok4;, +15:u04:ssr_resok4;, +17:u11:set_ssv4resok, +15:u12:ssr_resok4;, +15:u03:ssr_resok4;, +12:u07:18.47.3., +17:u10:set_ssv4resok, +15:u11:ssr_resok4;, +15:u02:ssr_resok4;, +12:u06:18.47.3., +15:u10:ssr_resok4;, +12:u14:18.47.3., +15:u01:ssr_resok4;, +12:u05:18.47.3., +12:u13:18.47.3., +15:u00:ssr_resok4;, +12:u04:18.47.3., +12:u12:18.47.3., +12:u03:18.47.3., +12:u11:18.47.3., +12:u02:18.47.3., +12:u10:18.47.3., +12:u01:18.47.3., +12:u00:18.47.3., +9:u08:[59]), +8:uI2:(.);, +9:u07:[59]), +13:u08:subkeys),, +8:uI1:(.);, +9:u06:[59]), +9:u14:[59]), +8:uI0:(.);, +9:u05:[59]), +13:u07:subkeys),, +9:u13:[59]), +9:u04:[59]), +13:u06:subkeys),, +9:u12:[59]), +13:u14:subkeys),, +7:u22:[59, +8:u23:[59], +9:u03:[59]), +13:u05:subkeys),, +9:u11:[59]), +13:u13:subkeys),, +9:u02:[59]), +13:u04:subkeys),, +9:u10:[59]), +13:u12:subkeys),, +9:u01:[59]), +13:u03:subkeys),, +13:u11:subkeys),, +9:u00:[59]), +13:u02:subkeys),, +13:u10:subkeys),, +8:u14:ssv., +13:u01:subkeys),, +14:u08:sdi_seqres, +8:u13:ssv., +13:u00:subkeys),, +8:u12:ssv., +8:u23:SSV., +14:u07:sdi_seqres, +8:u11:ssv., +14:u06:sdi_seqres, +8:u10:ssv., +14:u14:sdi_seqres, +14:u05:sdi_seqres, +14:u08:concurrent, +14:u13:sdi_seqres, +14:u04:sdi_seqres, +14:u07:concurrent, +14:u12:sdi_seqres, +6:u21:sd, +7:u22:sdi, +8:u23:sdi_, +14:u03:sdi_seqres, +14:u06:concurrent, +14:u11:sdi_seqres, +14:u02:sdi_seqres, +14:u05:concurrent, +14:u10:sdi_seqres, +14:u01:sdi_seqres, +14:u04:concurrent, +14:u00:sdi_seqres, +14:u03:concurrent, +14:u02:concurrent, +8:u08:586], +14:u01:concurrent, +8:u07:586], +14:u00:concurrent, +8:u06:586], +8:u05:586], +8:u04:586], +8:u03:586], +8:u02:586], +12:u08:18.47.4., +8:u01:586], +8:u00:586], +16:u14:ssct_ssv_seq, +12:u07:18.47.4., +16:u13:ssct_ssv_seq, +12:u06:18.47.4., +16:u12:ssct_ssv_seq, +12:u14:18.47.4., +12:u05:18.47.4., +15:u08:ssa_digest., +16:u11:ssct_ssv_seq, +12:u13:18.47.4., +12:u04:18.47.4., +15:u07:ssa_digest., +31:u08:NFS4ERR_BAD_SESSION_DIGEST., +16:u10:ssct_ssv_seq, +12:u12:18.47.4., +13:u14:computing, +12:u03:18.47.4., +15:u06:ssa_digest., +31:u07:NFS4ERR_BAD_SESSION_DIGEST., +12:u11:18.47.4., +13:u13:computing, +12:u02:18.47.4., +14:u08:recomputed, +15:u05:ssa_digest., +31:u06:NFS4ERR_BAD_SESSION_DIGEST., +12:u08:recovers, +12:u10:18.47.4., +13:u12:computing, +12:u01:18.47.4., +15:u04:ssa_digest., +31:u05:NFS4ERR_BAD_SESSION_DIGEST., +12:u07:recovers, +13:u11:computing, +12:u00:18.47.4., +14:u07:recomputed, +15:u03:ssa_digest., +31:u04:NFS4ERR_BAD_SESSION_DIGEST., +12:u06:recovers, +13:u10:computing, +14:u06:recomputed, +15:u02:ssa_digest., +31:u03:NFS4ERR_BAD_SESSION_DIGEST., +12:u05:recovers, +14:u14:recomputed, +14:u05:recomputed, +15:u01:ssa_digest., +31:u02:NFS4ERR_BAD_SESSION_DIGEST., +12:u04:recovers, +14:u13:recomputed, +14:u04:recomputed, +15:u00:ssa_digest., +31:u01:NFS4ERR_BAD_SESSION_DIGEST., +12:u03:recovers, +14:u12:recomputed, +14:u03:recomputed, +31:u00:NFS4ERR_BAD_SESSION_DIGEST., +12:u02:recovers, +14:u11:recomputed, +14:u02:recomputed, +12:u08:ssa_ssv,, +12:u01:recovers, +14:u10:recomputed, +14:u01:recomputed, +12:u00:recovers, +14:u00:recomputed, +12:u07:ssa_ssv,, +12:u06:ssa_ssv,, +13:u08:created)., +12:u14:ssa_ssv,, +12:u05:ssa_ssv,, +13:u07:created)., +12:u13:ssa_ssv,, +12:u04:ssa_ssv,, +13:u06:created)., +12:u12:ssa_ssv,, +12:u03:ssa_ssv,, +13:u05:created)., +12:u11:ssa_ssv,, +12:u02:ssa_ssv,, +13:u04:created)., +12:u10:ssa_ssv,, +12:u01:ssa_ssv,, +11:u08:non-SSV, +13:u03:created)., +12:u00:ssa_ssv,, +13:u02:created)., +11:u07:non-SSV, +13:u01:created)., +11:u06:non-SSV, +13:u00:created)., +11:u14:non-ssv, +11:u05:non-SSV, +11:u13:non-ssv, +11:u04:non-SSV, +14:u08:protecting, +11:u12:non-ssv, +11:u03:non-SSV, +9:u08:XORed, +11:u11:non-ssv, +11:u02:non-SSV, +14:u07:protecting, +7:u08:in., +11:u10:non-ssv, +11:u01:non-SSV, +14:u06:protecting, +9:u07:XORed, +12:u08:18.48.1., +7:u07:in., +14:u14:protecting, +11:u00:non-SSV, +14:u05:protecting, +9:u06:XORed, +7:u06:in., +14:u13:protecting, +9:u14:xored, +14:u04:protecting, +9:u05:XORed, +12:u07:18.48.1., +7:u05:in., +21:u08:TEST_STATEID4args, +14:u12:protecting, +9:u13:xored, +14:u03:protecting, +9:u04:XORed, +12:u06:18.48.1., +18:u08:ts_stateids<>;, +7:u04:in., +21:u07:TEST_STATEID4args, +14:u11:protecting, +9:u12:xored, +12:u14:18.48.1., +6:u21:XO, +7:u22:XOR, +8:u23:XORe, +14:u02:protecting, +9:u03:XORed, +12:u05:18.48.1., +7:u03:in., +21:u06:TEST_STATEID4args, +14:u10:protecting, +9:u11:xored, +12:u13:18.48.1., +14:u01:protecting, +9:u02:XORed, +12:u04:18.48.1., +18:u07:ts_stateids<>;, +7:u02:in., +21:u05:TEST_STATEID4args, +9:u10:xored, +12:u12:18.48.1., +14:u00:protecting, +9:u01:XORed, +12:u03:18.48.1., +18:u06:ts_stateids<>;, +7:u01:in., +21:u04:TEST_STATEID4args, +12:u11:18.48.1., +18:u14:ts_stateids<>;, +9:u00:XORed, +12:u02:18.48.1., +18:u05:ts_stateids<>;, +7:u00:in., +21:u03:TEST_STATEID4args, +12:u10:18.48.1., +18:u13:ts_stateids<>;, +12:u01:18.48.1., +18:u04:ts_stateids<>;, +21:u02:TEST_STATEID4args, +8:u08:587], +18:u12:ts_stateids<>;, +6:u21:ts, +7:u22:ts_, +8:u23:ts_s, +12:u00:18.48.1., +18:u03:ts_stateids<>;, +21:u01:TEST_STATEID4args, +8:u07:587], +18:u11:ts_stateids<>;, +18:u02:ts_stateids<>;, +21:u00:TEST_STATEID4args, +8:u06:587], +18:u10:ts_stateids<>;, +18:u01:ts_stateids<>;, +12:u08:18.48.2., +8:u05:587], +18:u00:ts_stateids<>;, +8:u04:587], +12:u07:18.48.2., +8:u03:587], +22:u08:TEST_STATEID4resok, +12:u06:18.48.2., +23:u08:tsr_status_codes<>;, +8:u02:587], +22:u07:TEST_STATEID4resok, +12:u14:18.48.2., +12:u05:18.48.2., +8:u01:587], +22:u06:TEST_STATEID4resok, +12:u13:18.48.2., +12:u04:18.48.2., +23:u07:tsr_status_codes<>;, +8:u00:587], +22:u05:TEST_STATEID4resok, +12:u12:18.48.2., +12:u03:18.48.2., +23:u06:tsr_status_codes<>;, +22:u04:TEST_STATEID4resok, +20:u08:TEST_STATEID4res, +12:u11:18.48.2., +23:u14:tsr_status_codes<>;, +12:u02:18.48.2., +23:u05:tsr_status_codes<>;, +22:u03:TEST_STATEID4resok, +20:u07:TEST_STATEID4res, +12:u10:18.48.2., +23:u13:tsr_status_codes<>;, +12:u01:18.48.2., +23:u04:tsr_status_codes<>;, +22:u02:TEST_STATEID4resok, +20:u06:TEST_STATEID4res, +15:u08:tsr_resok4;, +23:u12:tsr_status_codes<>;, +7:u22:tsr, +8:u23:tsr_, +12:u00:18.48.2., +23:u03:tsr_status_codes<>;, +22:u01:TEST_STATEID4resok, +20:u05:TEST_STATEID4res, +15:u07:tsr_resok4;, +23:u11:tsr_status_codes<>;, +23:u02:tsr_status_codes<>;, +22:u00:TEST_STATEID4resok, +20:u04:TEST_STATEID4res, +15:u06:tsr_resok4;, +23:u10:tsr_status_codes<>;, +22:u14:test_stateid4resok, +23:u01:tsr_status_codes<>;, +12:u08:18.48.3., +20:u03:TEST_STATEID4res, +15:u05:tsr_resok4;, +22:u13:test_stateid4resok, +23:u00:tsr_status_codes<>;, +20:u02:TEST_STATEID4res, +15:u04:tsr_resok4;, +22:u12:test_stateid4resok, +12:u07:18.48.3., +20:u01:TEST_STATEID4res, +15:u03:tsr_resok4;, +22:u11:test_stateid4resok, +12:u06:18.48.3., +14:u08:definitely, +20:u00:TEST_STATEID4res, +15:u02:tsr_resok4;, +22:u10:test_stateid4resok, +12:u14:18.48.3., +12:u05:18.48.3., +15:u01:tsr_resok4;, +12:u13:18.48.3., +12:u04:18.48.3., +14:u07:definitely, +15:u00:tsr_resok4;, +12:u12:18.48.3., +13:u14:stateids., +12:u03:18.48.3., +14:u06:definitely, +12:u11:18.48.3., +13:u13:stateids., +14:u14:definitely, +12:u02:18.48.3., +14:u05:definitely, +8:u08:set:, +12:u10:18.48.3., +13:u12:stateids., +14:u13:definitely, +12:u01:18.48.3., +14:u04:definitely, +8:u07:set:, +13:u11:stateids., +14:u12:definitely, +12:u00:18.48.3., +14:u03:definitely, +8:u06:set:, +43:u08:SEQ4_STATUS_EXPIRED_ADMIN_STATE_REVOKED, +13:u10:stateids., +14:u11:definitely, +14:u02:definitely, +8:u05:set:, +43:u07:SEQ4_STATUS_EXPIRED_ADMIN_STATE_REVOKED, +48:u08:SEQ4_STATUS_EXPIRED_RECALLABLE_STATE_REVOKED, +14:u10:definitely, +14:u01:definitely, +8:u04:set:, +43:u06:SEQ4_STATUS_EXPIRED_ADMIN_STATE_REVOKED, +48:u07:SEQ4_STATUS_EXPIRED_RECALLABLE_STATE_REVOKED, +14:u00:definitely, +8:u03:set:, +43:u05:SEQ4_STATUS_EXPIRED_ADMIN_STATE_REVOKED, +48:u06:SEQ4_STATUS_EXPIRED_RECALLABLE_STATE_REVOKED, +8:u02:set:, +43:u04:SEQ4_STATUS_EXPIRED_ADMIN_STATE_REVOKED, +48:u05:SEQ4_STATUS_EXPIRED_RECALLABLE_STATE_REVOKED, +8:u01:set:, +43:u03:SEQ4_STATUS_EXPIRED_ADMIN_STATE_REVOKED, +48:u04:SEQ4_STATUS_EXPIRED_RECALLABLE_STATE_REVOKED, +12:u14:validity, +10:u08:tested, +8:u00:set:, +43:u02:SEQ4_STATUS_EXPIRED_ADMIN_STATE_REVOKED, +48:u03:SEQ4_STATUS_EXPIRED_RECALLABLE_STATE_REVOKED, +12:u13:validity, +43:u01:SEQ4_STATUS_EXPIRED_ADMIN_STATE_REVOKED, +48:u02:SEQ4_STATUS_EXPIRED_RECALLABLE_STATE_REVOKED, +12:u12:validity, +10:u07:tested, +43:u00:SEQ4_STATUS_EXPIRED_ADMIN_STATE_REVOKED, +48:u01:SEQ4_STATUS_EXPIRED_RECALLABLE_STATE_REVOKED, +12:u11:validity, +10:u06:tested, +48:u00:SEQ4_STATUS_EXPIRED_RECALLABLE_STATE_REVOKED, +12:u10:validity, +10:u14:tested, +10:u05:tested, +10:u13:tested, +10:u04:tested, +10:u12:tested, +10:u03:tested, +10:u11:tested, +10:u02:tested, +10:u10:tested, +10:u01:tested, +10:u00:tested, +15:u14:exceptions:, +15:u13:exceptions:, +15:u12:exceptions:, +15:u11:exceptions:, +8:u08:588], +15:u10:exceptions:, +8:u07:588], +8:u06:588], +8:u05:588], +8:u04:588], +8:u03:588], +8:u08:code, +8:u02:588], +8:u07:code, +8:u01:588], +8:u06:code, +8:u00:588], +8:u05:code, +15:u08:NFS4ERR_OK,, +8:u04:code, +8:u03:code, +15:u07:NFS4ERR_OK,, +12:u08:18.48.4., +8:u02:code, +15:u06:NFS4ERR_OK,, +8:u01:code, +15:u14:nfs4err_ok,, +15:u05:NFS4ERR_OK,, +12:u07:18.48.4., +13:u08:lifetime,, +8:u00:code, +15:u13:nfs4err_ok,, +15:u04:NFS4ERR_OK,, +12:u06:18.48.4., +15:u12:nfs4err_ok,, +12:u14:18.48.4., +15:u03:NFS4ERR_OK,, +12:u05:18.48.4., +13:u07:lifetime,, +12:u08:18.49.1., +15:u11:nfs4err_ok,, +12:u13:18.48.4., +15:u02:NFS4ERR_OK,, +12:u04:18.48.4., +13:u06:lifetime,, +15:u10:nfs4err_ok,, +12:u12:18.48.4., +13:u14:lifetime,, +15:u01:NFS4ERR_OK,, +12:u03:18.48.4., +13:u05:lifetime,, +12:u07:18.49.1., +12:u11:18.48.4., +13:u13:lifetime,, +15:u00:NFS4ERR_OK,, +12:u02:18.48.4., +13:u04:lifetime,, +12:u06:18.49.1., +12:u10:18.48.4., +13:u12:lifetime,, +12:u14:18.49.1., +12:u01:18.48.4., +13:u03:lifetime,, +12:u05:18.49.1., +8:u08:589], +13:u11:lifetime,, +12:u13:18.49.1., +12:u00:18.48.4., +13:u02:lifetime,, +12:u04:18.49.1., +8:u07:589], +13:u10:lifetime,, +12:u12:18.49.1., +13:u01:lifetime,, +12:u03:18.49.1., +8:u06:589], +12:u11:18.49.1., +13:u00:lifetime,, +12:u02:18.49.1., +8:u05:589], +12:u10:18.49.1., +12:u01:18.49.1., +8:u04:589], +16:u08:deleg_claim4, +12:u00:18.49.1., +8:u03:589], +16:u07:deleg_claim4, +8:u02:589], +16:u06:deleg_claim4, +8:u01:589], +16:u05:deleg_claim4, +8:u00:589], +16:u04:deleg_claim4, +16:u03:deleg_claim4, +16:u02:deleg_claim4, +16:u01:deleg_claim4, +16:u00:deleg_claim4, +21:u08:dc_delegate_type;, +21:u07:dc_delegate_type;, +21:u06:dc_delegate_type;, +21:u14:dc_delegate_type;, +21:u05:dc_delegate_type;, +13:u08:wda_want;, +21:u13:dc_delegate_type;, +21:u04:dc_delegate_type;, +21:u12:dc_delegate_type;, +6:u21:dc, +7:u22:dc_, +8:u23:dc_d, +21:u03:dc_delegate_type;, +13:u07:wda_want;, +14:u08:wda_claim;, +21:u11:dc_delegate_type;, +21:u02:dc_delegate_type;, +13:u06:wda_want;, +21:u10:dc_delegate_type;, +13:u14:wda_want;, +21:u01:dc_delegate_type;, +13:u05:wda_want;, +14:u07:wda_claim;, +12:u08:18.49.2., +13:u13:wda_want;, +16:u14:deleg_claim4, +21:u00:dc_delegate_type;, +13:u04:wda_want;, +14:u06:wda_claim;, +13:u12:wda_want;, +16:u13:deleg_claim4, +14:u14:wda_claim;, +6:u21:wd, +7:u22:wda, +8:u23:wda_, +13:u03:wda_want;, +14:u05:wda_claim;, +12:u07:18.49.2., +13:u11:wda_want;, +16:u12:deleg_claim4, +14:u13:wda_claim;, +13:u02:wda_want;, +14:u04:wda_claim;, +12:u06:18.49.2., +13:u10:wda_want;, +16:u11:deleg_claim4, +14:u12:wda_claim;, +12:u14:18.49.2., +13:u01:wda_want;, +14:u03:wda_claim;, +12:u05:18.49.2., +15:u08:wdr_resok4;, +16:u10:deleg_claim4, +14:u11:wda_claim;, +12:u13:18.49.2., +13:u00:wda_want;, +14:u02:wda_claim;, +12:u04:18.49.2., +15:u07:wdr_resok4;, +14:u10:wda_claim;, +12:u12:18.49.2., +14:u01:wda_claim;, +12:u03:18.49.2., +15:u06:wdr_resok4;, +12:u11:18.49.2., +14:u00:wda_claim;, +12:u02:18.49.2., +15:u05:wdr_resok4;, +12:u10:18.49.2., +12:u01:18.49.2., +15:u04:wdr_resok4;, +12:u00:18.49.2., +15:u03:wdr_resok4;, +15:u02:wdr_resok4;, +8:u08:590], +15:u01:wdr_resok4;, +8:u07:590], +15:u00:wdr_resok4;, +8:u06:590], +12:u08:18.49.3., +8:u05:590], +8:u04:590], +12:u07:18.49.3., +8:u03:590], +12:u06:18.49.3., +8:u02:590], +12:u14:18.49.3., +12:u05:18.49.3., +8:u01:590], +12:u13:18.49.3., +12:u04:18.49.3., +8:u00:590], +12:u12:18.49.3., +12:u03:18.49.3., +7:u08:Get, +12:u11:18.49.3., +12:u02:18.49.3., +7:u07:Get, +12:u10:18.49.3., +12:u01:18.49.3., +7:u06:Get, +12:u00:18.49.3., +7:u05:Get, +7:u04:Get, +7:u03:Get, +7:u02:Get, +7:u01:Get, +7:u00:Get, +10:u08:Cancel, +10:u07:Cancel, +22:u14:cb_wants_cancelled, +10:u06:Cancel, +22:u13:cb_wants_cancelled, +10:u05:Cancel, +22:u12:cb_wants_cancelled, +8:u23:CB_W, +10:u04:Cancel, +22:u11:cb_wants_cancelled, +28:u14:open4_share_access_write, +10:u03:Cancel, +22:u10:cb_wants_cancelled, +28:u13:open4_share_access_write, +10:u02:Cancel, +28:u12:open4_share_access_write, +10:u01:Cancel, +28:u11:open4_share_access_write, +10:u00:Cancel, +28:u10:open4_share_access_write, +20:u14:want_delegation,, +20:u13:want_delegation,, +20:u12:want_delegation,, +20:u11:want_delegation,, +8:u08:591], +20:u10:want_delegation,, +8:u07:591], +8:u06:591], +8:u05:591], +8:u04:591], +8:u03:591], +8:u02:591], +8:u01:591], +21:u08:open_delegation4,, +8:u00:591], +21:u07:open_delegation4,, +21:u06:open_delegation4,, +16:u08:"delegation", +21:u14:open_delegation4,, +21:u05:open_delegation4,, +21:u13:open_delegation4,, +21:u04:open_delegation4,, +16:u07:"delegation", +21:u12:open_delegation4,, +21:u03:open_delegation4,, +16:u06:"delegation", +38:u08:~OPEN4_SHARE_ACCESS_WANT_NO_DELEG), +14:u08:((wda_want, +21:u11:open_delegation4,, +16:u14:"delegation", +21:u02:open_delegation4,, +16:u05:"delegation", +14:u07:((wda_want, +21:u10:open_delegation4,, +16:u13:"delegation", +21:u01:open_delegation4,, +16:u04:"delegation", +38:u07:~OPEN4_SHARE_ACCESS_WANT_NO_DELEG), +14:u06:((wda_want, +16:u12:"delegation", +6:u21:"d, +7:u22:"de, +8:u23:"del, +21:u00:open_delegation4,, +16:u03:"delegation", +38:u06:~OPEN4_SHARE_ACCESS_WANT_NO_DELEG), +14:u05:((wda_want, +16:u11:"delegation", +38:u14:~open4_share_access_want_no_deleg), +7:uI2:((), +16:u02:"delegation", +38:u05:~OPEN4_SHARE_ACCESS_WANT_NO_DELEG), +14:u04:((wda_want, +16:u10:"delegation", +38:u13:~open4_share_access_want_no_deleg), +7:uI1:((), +16:u01:"delegation", +38:u04:~OPEN4_SHARE_ACCESS_WANT_NO_DELEG), +14:u03:((wda_want, +38:u12:~open4_share_access_want_no_deleg), +7:uI0:((), +16:u00:"delegation", +38:u03:~OPEN4_SHARE_ACCESS_WANT_NO_DELEG), +14:u02:((wda_want, +38:u11:~open4_share_access_want_no_deleg), +38:u02:~OPEN4_SHARE_ACCESS_WANT_NO_DELEG), +16:u08:cancellation, +14:u01:((wda_want, +38:u10:~open4_share_access_want_no_deleg), +38:u01:~OPEN4_SHARE_ACCESS_WANT_NO_DELEG), +14:u00:((wda_want, +38:u00:~OPEN4_SHARE_ACCESS_WANT_NO_DELEG), +16:u07:cancellation, +16:u06:cancellation, +16:u14:cancellation, +16:u05:cancellation, +28:u08:OPEN4_DELEGATE_NONE_EXT,, +16:u13:cancellation, +16:u04:cancellation, +16:u12:cancellation, +16:u03:cancellation, +28:u07:OPEN4_DELEGATE_NONE_EXT,, +16:u11:cancellation, +16:u02:cancellation, +28:u06:OPEN4_DELEGATE_NONE_EXT,, +16:u10:cancellation, +28:u14:open4_delegate_none_ext,, +16:u01:cancellation, +28:u05:OPEN4_DELEGATE_NONE_EXT,, +11:u08:NF4LNK,, +28:u13:open4_delegate_none_ext,, +16:u00:cancellation, +28:u04:OPEN4_DELEGATE_NONE_EXT,, +11:u07:NF4LNK,, +28:u12:open4_delegate_none_ext,, +28:u03:OPEN4_DELEGATE_NONE_EXT,, +11:u06:NF4LNK,, +28:u11:open4_delegate_none_ext,, +28:u02:OPEN4_DELEGATE_NONE_EXT,, +33:u08:wdr_resok4.od_whynone.ond_why, +11:u05:NF4LNK,, +28:u10:open4_delegate_none_ext,, +28:u01:OPEN4_DELEGATE_NONE_EXT,, +12:u08:18.49.4., +11:u04:NF4LNK,, +28:u00:OPEN4_DELEGATE_NONE_EXT,, +33:u07:wdr_resok4.od_whynone.ond_why, +11:u03:NF4LNK,, +33:u06:wdr_resok4.od_whynone.ond_why, +12:u07:18.49.4., +11:u02:NF4LNK,, +33:u14:wdr_resok4.od_whynone.ond_why, +33:u05:wdr_resok4.od_whynone.ond_why, +12:u06:18.49.4., +11:u01:NF4LNK,, +33:u13:wdr_resok4.od_whynone.ond_why, +12:u14:18.49.4., +33:u04:wdr_resok4.od_whynone.ond_why, +12:u05:18.49.4., +11:u00:NF4LNK,, +33:u12:wdr_resok4.od_whynone.ond_why, +12:u13:18.49.4., +7:u22:wdr, +8:u23:wdr_, +33:u03:wdr_resok4.od_whynone.ond_why, +12:u04:18.49.4., +33:u11:wdr_resok4.od_whynone.ond_why, +12:u12:18.49.4., +33:u02:wdr_resok4.od_whynone.ond_why, +12:u03:18.49.4., +33:u10:wdr_resok4.od_whynone.ond_why, +12:u11:18.49.4., +9:u14:treat, +33:u01:wdr_resok4.od_whynone.ond_why, +12:u02:18.49.4., +12:u10:18.49.4., +9:u13:treat, +33:u00:wdr_resok4.od_whynone.ond_why, +12:u01:18.49.4., +9:u12:treat, +12:u00:18.49.4., +9:u11:treat, +9:u10:treat, +8:u08:592], +8:u07:592], +8:u06:592], +8:u05:592], +9:u08:view., +8:u04:592], +8:u03:592], +9:u07:view., +12:u08:18.50.1., +8:u02:592], +9:u06:view., +8:u01:592], +9:u14:view., +9:u05:view., +12:u07:18.50.1., +8:u00:592], +9:u13:view., +9:u04:view., +12:u06:18.50.1., +17:u08:dca_clientid;, +9:u12:view., +12:u14:18.50.1., +9:u03:view., +12:u05:18.50.1., +9:u11:view., +12:u13:18.50.1., +9:u02:view., +12:u04:18.50.1., +17:u07:dca_clientid;, +12:u08:18.50.2., +9:u10:view., +12:u12:18.50.1., +9:u01:view., +12:u03:18.50.1., +17:u06:dca_clientid;, +12:u11:18.50.1., +17:u14:dca_clientid;, +9:u00:view., +12:u02:18.50.1., +17:u05:dca_clientid;, +12:u07:18.50.2., +12:u10:18.50.1., +17:u13:dca_clientid;, +12:u01:18.50.1., +17:u04:dca_clientid;, +12:u06:18.50.2., +15:u08:dcr_status;, +17:u12:dca_clientid;, +12:u14:18.50.2., +7:u22:dca, +8:u23:dca_, +12:u00:18.50.1., +17:u03:dca_clientid;, +12:u05:18.50.2., +17:u11:dca_clientid;, +12:u13:18.50.2., +17:u02:dca_clientid;, +12:u04:18.50.2., +15:u07:dcr_status;, +12:u08:18.50.3., +17:u10:dca_clientid;, +12:u12:18.50.2., +17:u01:dca_clientid;, +12:u03:18.50.2., +15:u06:dcr_status;, +12:u11:18.50.2., +15:u14:dcr_status;, +17:u00:dca_clientid;, +12:u02:18.50.2., +15:u05:dcr_status;, +12:u07:18.50.3., +12:u10:18.50.2., +15:u13:dcr_status;, +12:u01:18.50.2., +15:u04:dcr_status;, +12:u06:18.50.3., +9:u08:(both, +15:u12:dcr_status;, +12:u14:18.50.3., +7:u22:dcr, +8:u23:dcr_, +12:u00:18.50.2., +15:u03:dcr_status;, +12:u05:18.50.3., +9:u07:(both, +15:u11:dcr_status;, +12:u13:18.50.3., +15:u02:dcr_status;, +12:u04:18.50.3., +9:u06:(both, +15:u10:dcr_status;, +12:u12:18.50.3., +15:u01:dcr_status;, +12:u03:18.50.3., +9:u05:(both, +12:u11:18.50.3., +11:uI2:(-),,,,, +15:u00:dcr_status;, +12:u02:18.50.3., +9:u04:(both, +12:u10:18.50.3., +11:uI1:(-),,,,, +9:uI2:,/(.), +12:u01:18.50.3., +9:u03:(both, +20:u14:destroy_clientid, +11:uI0:(-),,,,, +9:uI1:,/(.), +12:u00:18.50.3., +9:u02:(both, +20:u13:destroy_clientid, +9:uI0:,/(.), +9:u01:(both, +20:u12:destroy_clientid, +25:u08:NFS4ERR_NOT_ONLY_OP)., +9:u00:(both, +20:u11:destroy_clientid, +20:u10:destroy_clientid, +25:u07:NFS4ERR_NOT_ONLY_OP)., +25:u06:NFS4ERR_NOT_ONLY_OP)., +25:u14:nfs4err_not_only_op)., +25:u05:NFS4ERR_NOT_ONLY_OP)., +12:u08:18.50.4., +13:u08:executed., +25:u13:nfs4err_not_only_op)., +25:u04:NFS4ERR_NOT_ONLY_OP)., +13:u07:executed., +25:u12:nfs4err_not_only_op)., +25:u03:NFS4ERR_NOT_ONLY_OP)., +12:u07:18.50.4., +13:u06:executed., +25:u11:nfs4err_not_only_op)., +25:u02:NFS4ERR_NOT_ONLY_OP)., +12:u06:18.50.4., +13:u05:executed., +25:u10:nfs4err_not_only_op)., +12:u14:18.50.4., +25:u01:NFS4ERR_NOT_ONLY_OP)., +12:u05:18.50.4., +13:u04:executed., +12:u13:18.50.4., +25:u00:NFS4ERR_NOT_ONLY_OP)., +12:u04:18.50.4., +13:u03:executed., +12:u12:18.50.4., +12:u03:18.50.4., +13:u02:executed., +12:u11:18.50.4., +12:u02:18.50.4., +13:u01:executed., +12:u10:18.50.4., +12:u01:18.50.4., +13:u00:executed., +12:u00:18.50.4., +8:u08:593], +8:u07:593], +8:u06:593], +8:u05:593], +12:u08:18.51.1., +8:u04:593], +9:u08:<CODE, +8:u03:593], +12:u07:18.51.1., +8:u02:593], +11:u08:BEGINS>, +12:u06:18.51.1., +9:u07:<CODE, +8:u01:593], +11:u07:BEGINS>, +12:u14:18.51.1., +12:u05:18.51.1., +9:u06:<CODE, +8:u00:593], +11:u06:BEGINS>, +12:u13:18.51.1., +9:u14:<code, +12:u04:18.51.1., +9:u05:<CODE, +11:u05:BEGINS>, +12:u12:18.51.1., +9:u13:<code, +12:u03:18.51.1., +9:u04:<CODE, +11:u04:BEGINS>, +12:u11:18.51.1., +9:u12:<code, +6:u21:<C, +7:u22:<CO, +8:u23:<COD, +12:u02:18.51.1., +9:u03:<CODE, +11:u03:BEGINS>, +12:u10:18.51.1., +9:u11:<code, +12:u01:18.51.1., +9:u02:<CODE, +11:u02:BEGINS>, +9:u10:<code, +12:u00:18.51.1., +9:u01:<CODE, +11:u01:BEGINS>, +9:u00:<CODE, +11:u00:BEGINS>, +15:u14:current_fh:, +15:u13:current_fh:, +8:u08:for., +15:u12:current_fh:, +6:u21:CU, +7:u22:CUR, +8:u23:CURR, +8:u07:for., +15:u11:current_fh:, +15:u08:rca_one_fs;, +8:u06:for., +15:u10:current_fh:, +12:u14:complete, +8:u05:for., +12:u13:complete, +15:u07:rca_one_fs;, +8:u04:for., +12:u12:complete, +15:u06:rca_one_fs;, +12:u08:18.51.2., +8:u03:for., +9:u08:ENDS>, +12:u11:complete, +15:u14:rca_one_fs;, +15:u05:rca_one_fs;, +8:u02:for., +9:u07:ENDS>, +12:u10:complete, +15:u13:rca_one_fs;, +15:u04:rca_one_fs;, +12:u07:18.51.2., +8:u01:for., +9:u06:ENDS>, +15:u12:rca_one_fs;, +15:u03:rca_one_fs;, +12:u06:18.51.2., +8:u00:for., +9:u05:ENDS>, +15:u11:rca_one_fs;, +12:u14:18.51.2., +15:u02:rca_one_fs;, +12:u05:18.51.2., +15:u08:rcr_status;, +9:u04:ENDS>, +15:u10:rca_one_fs;, +12:u13:18.51.2., +15:u01:rca_one_fs;, +12:u04:18.51.2., +9:u03:ENDS>, +12:u12:18.51.2., +15:u00:rca_one_fs;, +12:u03:18.51.2., +15:u07:rcr_status;, +9:u02:ENDS>, +12:u11:18.51.2., +12:u02:18.51.2., +15:u06:rcr_status;, +12:u08:18.51.3., +9:u01:ENDS>, +12:u10:18.51.2., +15:u14:rcr_status;, +12:u01:18.51.2., +15:u05:rcr_status;, +9:u00:ENDS>, +15:u13:rcr_status;, +12:u00:18.51.2., +15:u04:rcr_status;, +12:u07:18.51.3., +15:u12:rcr_status;, +7:u22:rcr, +8:u23:rcr_, +15:u03:rcr_status;, +12:u06:18.51.3., +12:u08:reclaim,, +15:u11:rcr_status;, +12:u14:18.51.3., +15:u02:rcr_status;, +12:u05:18.51.3., +15:u10:rcr_status;, +12:u13:18.51.3., +15:u01:rcr_status;, +12:u04:18.51.3., +12:u07:reclaim,, +12:u12:18.51.3., +15:u00:rcr_status;, +12:u03:18.51.3., +12:u06:reclaim,, +12:u11:18.51.3., +12:u14:reclaim,, +12:u02:18.51.3., +12:u05:reclaim,, +12:u10:18.51.3., +12:u13:reclaim,, +12:u01:18.51.3., +12:u04:reclaim,, +12:u12:reclaim,, +12:u00:18.51.3., +12:u03:reclaim,, +12:u11:reclaim,, +12:u02:reclaim,, +12:u10:reclaim,, +12:u01:reclaim,, +12:u00:reclaim,, +6:u08:fs, +6:u07:fs, +6:u06:fs, +6:u14:fs, +6:u05:fs, +6:u13:fs, +6:u04:fs, +6:u12:fs, +6:u22:fs, +6:u23:fs, +6:u03:fs, +8:u08:594], +6:u11:fs, +6:u02:fs, +8:u07:594], +6:u10:fs, +6:u01:fs, +8:u06:594], +6:u00:fs, +8:u05:594], +8:u04:594], +8:u03:594], +8:u02:594], +8:u01:594], +8:u00:594], +11:u14:nfs4_ok, +11:u13:nfs4_ok, +11:u12:nfs4_ok, +11:u11:nfs4_ok, +11:u10:nfs4_ok, +21:u14:reclaim_complete,, +21:u13:reclaim_complete,, +21:u12:reclaim_complete,, +21:u11:reclaim_complete,, +21:u10:reclaim_complete,, +9:u08:8.4.3, +9:u07:8.4.3, +12:u08:reclaim., +9:u06:8.4.3, +12:u07:reclaim., +9:u05:8.4.3, +12:u06:reclaim., +8:uI2:..[], +9:u04:8.4.3, +12:u05:reclaim., +8:uI1:..[], +9:u03:8.4.3, +12:u04:reclaim., +8:uI0:..[], +9:u02:8.4.3, +12:u03:reclaim., +9:u01:8.4.3, +12:u02:reclaim., +8:u08:595], +9:u00:8.4.3, +12:u01:reclaim., +8:u07:595], +12:u00:reclaim., +8:u06:595], +8:u05:595], +8:u04:595], +12:u08:18.51.4., +8:u03:595], +8:u02:595], +12:u07:18.51.4., +8:u01:595], +12:u06:18.51.4., +8:u00:595], +12:u14:18.51.4., +12:u05:18.51.4., +12:u13:18.51.4., +12:u04:18.51.4., +12:u12:18.51.4., +12:u03:18.51.4., +12:u11:18.51.4., +12:u02:18.51.4., +10:u08:sooner, +9:u08:begin, +12:u10:18.51.4., +12:u01:18.51.4., +11:u08:Latency, +9:u07:begin, +12:u00:18.51.4., +10:u07:sooner, +9:u06:begin, +10:u06:sooner, +11:u07:Latency, +9:u05:begin, +10:u14:sooner, +10:u05:sooner, +11:u06:Latency, +9:u04:begin, +10:u13:sooner, +10:u04:sooner, +11:u05:Latency, +9:u03:begin, +10:u12:sooner, +7:u22:soo, +8:u23:soon, +10:u03:sooner, +11:u04:Latency, +9:u02:begin, +10:u11:sooner, +7:u22:Lat, +8:u23:Late, +10:u02:sooner, +11:u03:Latency, +12:u08:occasion, +9:u01:begin, +10:u10:sooner, +10:u01:sooner, +11:u02:Latency, +9:u00:begin, +10:u00:sooner, +11:u01:Latency, +12:u07:occasion, +11:u00:Latency, +12:u06:occasion, +12:u14:occasion, +12:u05:occasion, +12:u13:occasion, +12:u04:occasion, +12:u12:occasion, +8:u23:occa, +12:u03:occasion, +12:u11:occasion, +12:u02:occasion, +12:u10:occasion, +12:u01:occasion, +12:u00:occasion, +11:u08:disable, +11:u07:disable, +16:u08:sufficiently, +11:u06:disable, +11:u14:disable, +11:u05:disable, +16:u07:sufficiently, +11:u13:disable, +11:u04:disable, +16:u06:sufficiently, +11:u12:disable, +16:u14:sufficiently, +11:u03:disable, +16:u05:sufficiently, +11:u11:disable, +16:u13:sufficiently, +11:u02:disable, +16:u04:sufficiently, +11:u10:disable, +16:u12:sufficiently, +11:u01:disable, +16:u03:sufficiently, +16:u08:implementers, +16:u11:sufficiently, +11:u00:disable, +16:u02:sufficiently, +16:u10:sufficiently, +16:u01:sufficiently, +16:u07:implementers, +16:u00:sufficiently, +16:u06:implementers, +16:u14:implementers, +16:u05:implementers, +16:u13:implementers, +16:u04:implementers, +16:u12:implementers, +16:u03:implementers, +16:u11:implementers, +16:u02:implementers, +16:u10:implementers, +16:u01:implementers, +16:u00:implementers, +8:u08:596], +8:u07:596], +8:u06:596], +13:u08:accepting, +8:u05:596], +8:u04:596], +13:u07:accepting, +8:u03:596], +13:u06:accepting, +8:u02:596], +13:u14:accepting, +13:u05:accepting, +15:u08:concerning., +8:u01:596], +13:u13:accepting, +13:u04:accepting, +8:u00:596], +13:u12:accepting, +13:u03:accepting, +15:u07:concerning., +13:u11:accepting, +13:u02:accepting, +15:u06:concerning., +13:u10:accepting, +15:u14:concerning., +13:u01:accepting, +15:u05:concerning., +12:u08:limited,, +15:u13:concerning., +13:u00:accepting, +15:u04:concerning., +12:u07:limited,, +15:u12:concerning., +15:u03:concerning., +12:u06:limited,, +15:u11:concerning., +15:u02:concerning., +12:u05:limited,, +15:u10:concerning., +15:u01:concerning., +12:u08:18.52.1., +12:u04:limited,, +15:u00:concerning., +12:u03:limited,, +12:u07:18.52.1., +12:u08:18.52.2., +12:u02:limited,, +12:u06:18.52.1., +12:u01:limited,, +12:u14:18.52.1., +12:u05:18.52.1., +12:u07:18.52.2., +12:u00:limited,, +12:u13:18.52.1., +12:u04:18.52.1., +12:u06:18.52.2., +12:u12:18.52.1., +12:u14:18.52.2., +12:u03:18.52.1., +12:u05:18.52.2., +12:u11:18.52.1., +12:u13:18.52.2., +12:u02:18.52.1., +12:u04:18.52.2., +12:u08:18.52.3., +12:u10:18.52.1., +12:u12:18.52.2., +12:u01:18.52.1., +12:u03:18.52.2., +12:u11:18.52.2., +12:u00:18.52.1., +12:u02:18.52.2., +12:u07:18.52.3., +12:u10:18.52.2., +12:u01:18.52.2., +12:u06:18.52.3., +12:u14:18.52.3., +12:u00:18.52.2., +12:u05:18.52.3., +12:u13:18.52.3., +12:u04:18.52.3., +12:u12:18.52.3., +12:u03:18.52.3., +12:u08:18.52.4., +12:u11:18.52.3., +12:u02:18.52.3., +12:u10:18.52.3., +12:u01:18.52.3., +12:u07:18.52.4., +12:u00:18.52.3., +12:u06:18.52.4., +12:u14:18.52.4., +12:u05:18.52.4., +12:u13:18.52.4., +12:u04:18.52.4., +12:u12:18.52.4., +12:u03:18.52.4., +12:u11:18.52.4., +12:u02:18.52.4., +12:u10:18.52.4., +12:u01:18.52.4., +12:u00:18.52.4., +8:u08:597], +8:u07:597], +8:u06:597], +8:u05:597], +8:u04:597], +8:u03:597], +12:u08:"server", +8:u02:597], +8:u01:597], +12:u07:"server", +8:u00:597], +12:u06:"server", +12:u14:"server", +12:u05:"server", +12:u13:"server", +12:u04:"server", +11:u08:19.1.1., +12:u12:"server", +13:u14:precisely, +12:u03:"server", +12:u11:"server", +13:u13:precisely, +12:u02:"server", +11:u07:19.1.1., +11:u08:19.1.2., +12:u10:"server", +13:u12:precisely, +12:u01:"server", +11:u06:19.1.1., +13:u11:precisely, +11:u14:19.1.1., +12:u00:"server", +11:u05:19.1.1., +11:u07:19.1.2., +11:u08:19.1.3., +13:u10:precisely, +11:u13:19.1.1., +11:u04:19.1.1., +11:u06:19.1.2., +11:u12:19.1.1., +11:u14:19.1.2., +11:u03:19.1.1., +11:u05:19.1.2., +11:u07:19.1.3., +11:u11:19.1.1., +11:u13:19.1.2., +11:u02:19.1.1., +11:u04:19.1.2., +11:u06:19.1.3., +11:u10:19.1.1., +11:u12:19.1.2., +11:u14:19.1.3., +11:u01:19.1.1., +11:u03:19.1.2., +11:u05:19.1.3., +11:u11:19.1.2., +11:u13:19.1.3., +11:u14:cb_null, +11:u00:19.1.1., +11:u02:19.1.2., +11:u04:19.1.3., +11:u10:19.1.2., +11:u12:19.1.3., +11:u13:cb_null, +8:u14:void, +11:u01:19.1.2., +11:u03:19.1.3., +11:u08:19.1.4., +11:u11:19.1.3., +11:u12:cb_null, +8:u13:void, +11:u00:19.1.2., +11:u02:19.1.3., +11:u10:19.1.3., +11:u11:cb_null, +8:u12:void, +11:u01:19.1.3., +11:u07:19.1.4., +11:u10:cb_null, +8:u11:void, +11:u00:19.1.3., +11:u06:19.1.4., +11:u08:19.2.1., +8:u10:void, +11:u14:19.1.4., +11:u05:19.1.4., +11:u13:19.1.4., +11:u04:19.1.4., +11:u07:19.2.1., +11:u12:19.1.4., +11:u03:19.1.4., +11:u06:19.2.1., +11:u11:19.1.4., +11:u14:19.2.1., +11:u02:19.1.4., +11:u05:19.2.1., +8:u08:598], +11:u10:19.1.4., +11:u13:19.2.1., +11:u01:19.1.4., +11:u04:19.2.1., +8:u07:598], +11:u12:19.2.1., +11:u00:19.1.4., +11:u03:19.2.1., +8:u06:598], +11:u11:19.2.1., +11:u02:19.2.1., +8:u05:598], +11:u10:19.2.1., +11:u01:19.2.1., +17:u08:OP_CB_GETATTR, +8:u04:598], +17:u08:nfs_cb_opnum4, +11:u00:19.2.1., +8:u03:598], +17:u07:nfs_cb_opnum4, +17:u07:OP_CB_GETATTR, +16:u08:OP_CB_RECALL, +8:u02:598], +17:u06:nfs_cb_opnum4, +17:u06:OP_CB_GETATTR, +8:u01:598], +17:u05:nfs_cb_opnum4, +17:u14:op_cb_getattr, +17:u05:OP_CB_GETATTR, +16:u07:OP_CB_RECALL, +8:u00:598], +17:u04:nfs_cb_opnum4, +17:u13:op_cb_getattr, +17:u04:OP_CB_GETATTR, +16:u06:OP_CB_RECALL, +22:u08:OP_CB_LAYOUTRECALL, +17:u03:nfs_cb_opnum4, +17:u12:op_cb_getattr, +16:u14:op_cb_recall, +17:u03:OP_CB_GETATTR, +16:u05:OP_CB_RECALL, +17:u02:nfs_cb_opnum4, +17:u11:op_cb_getattr, +16:u13:op_cb_recall, +17:u02:OP_CB_GETATTR, +16:u04:OP_CB_RECALL, +22:u07:OP_CB_LAYOUTRECALL, +16:u08:OP_CB_NOTIFY, +17:u01:nfs_cb_opnum4, +17:u10:op_cb_getattr, +16:u12:op_cb_recall, +17:u01:OP_CB_GETATTR, +16:u03:OP_CB_RECALL, +22:u06:OP_CB_LAYOUTRECALL, +17:u00:nfs_cb_opnum4, +16:u11:op_cb_recall, +22:u14:op_cb_layoutrecall, +17:u00:OP_CB_GETATTR, +16:u02:OP_CB_RECALL, +22:u05:OP_CB_LAYOUTRECALL, +16:u07:OP_CB_NOTIFY, +20:u08:OP_CB_PUSH_DELEG, +16:u10:op_cb_recall, +22:u13:op_cb_layoutrecall, +16:u01:OP_CB_RECALL, +22:u04:OP_CB_LAYOUTRECALL, +16:u06:OP_CB_NOTIFY, +22:u12:op_cb_layoutrecall, +16:u14:op_cb_notify, +16:u00:OP_CB_RECALL, +22:u03:OP_CB_LAYOUTRECALL, +16:u05:OP_CB_NOTIFY, +20:u07:OP_CB_PUSH_DELEG, +20:u08:OP_CB_RECALL_ANY, +22:u11:op_cb_layoutrecall, +16:u13:op_cb_notify, +22:u02:OP_CB_LAYOUTRECALL, +16:u04:OP_CB_NOTIFY, +20:u06:OP_CB_PUSH_DELEG, +22:u10:op_cb_layoutrecall, +16:u12:op_cb_notify, +20:u14:op_cb_push_deleg, +22:u01:OP_CB_LAYOUTRECALL, +16:u03:OP_CB_NOTIFY, +20:u05:OP_CB_PUSH_DELEG, +20:u07:OP_CB_RECALL_ANY, +30:u08:OP_CB_RECALLABLE_OBJ_AVAIL, +16:u11:op_cb_notify, +20:u13:op_cb_push_deleg, +22:u00:OP_CB_LAYOUTRECALL, +16:u02:OP_CB_NOTIFY, +20:u04:OP_CB_PUSH_DELEG, +20:u06:OP_CB_RECALL_ANY, +21:u08:OP_CB_RECALL_SLOT, +16:u10:op_cb_notify, +20:u12:op_cb_push_deleg, +20:u14:op_cb_recall_any, +16:u01:OP_CB_NOTIFY, +20:u03:OP_CB_PUSH_DELEG, +20:u05:OP_CB_RECALL_ANY, +30:u07:OP_CB_RECALLABLE_OBJ_AVAIL, +20:u11:op_cb_push_deleg, +20:u13:op_cb_recall_any, +16:u00:OP_CB_NOTIFY, +20:u02:OP_CB_PUSH_DELEG, +20:u04:OP_CB_RECALL_ANY, +30:u06:OP_CB_RECALLABLE_OBJ_AVAIL, +21:u07:OP_CB_RECALL_SLOT, +18:u08:OP_CB_SEQUENCE, +20:u10:op_cb_push_deleg, +20:u12:op_cb_recall_any, +30:u14:op_cb_recallable_obj_avail, +20:u01:OP_CB_PUSH_DELEG, +20:u03:OP_CB_RECALL_ANY, +30:u05:OP_CB_RECALLABLE_OBJ_AVAIL, +21:u06:OP_CB_RECALL_SLOT, +20:u11:op_cb_recall_any, +30:u13:op_cb_recallable_obj_avail, +21:u14:op_cb_recall_slot, +20:u00:OP_CB_PUSH_DELEG, +20:u02:OP_CB_RECALL_ANY, +30:u04:OP_CB_RECALLABLE_OBJ_AVAIL, +21:u05:OP_CB_RECALL_SLOT, +18:u07:OP_CB_SEQUENCE, +25:u08:OP_CB_WANTS_CANCELLED, +20:u10:op_cb_recall_any, +30:u12:op_cb_recallable_obj_avail, +21:u13:op_cb_recall_slot, +20:u01:OP_CB_RECALL_ANY, +30:u03:OP_CB_RECALLABLE_OBJ_AVAIL, +21:u04:OP_CB_RECALL_SLOT, +18:u06:OP_CB_SEQUENCE, +30:u11:op_cb_recallable_obj_avail, +21:u12:op_cb_recall_slot, +18:u14:op_cb_sequence, +20:u00:OP_CB_RECALL_ANY, +30:u02:OP_CB_RECALLABLE_OBJ_AVAIL, +21:u03:OP_CB_RECALL_SLOT, +18:u05:OP_CB_SEQUENCE, +25:u07:OP_CB_WANTS_CANCELLED, +21:u08:OP_CB_NOTIFY_LOCK, +30:u10:op_cb_recallable_obj_avail, +21:u11:op_cb_recall_slot, +18:u13:op_cb_sequence, +30:u01:OP_CB_RECALLABLE_OBJ_AVAIL, +21:u02:OP_CB_RECALL_SLOT, +18:u04:OP_CB_SEQUENCE, +25:u06:OP_CB_WANTS_CANCELLED, +21:u10:op_cb_recall_slot, +18:u12:op_cb_sequence, +25:u14:op_cb_wants_cancelled, +30:u00:OP_CB_RECALLABLE_OBJ_AVAIL, +21:u01:OP_CB_RECALL_SLOT, +18:u03:OP_CB_SEQUENCE, +25:u05:OP_CB_WANTS_CANCELLED, +21:u07:OP_CB_NOTIFY_LOCK, +25:u08:OP_CB_NOTIFY_DEVICEID, +18:u11:op_cb_sequence, +25:u13:op_cb_wants_cancelled, +21:u00:OP_CB_RECALL_SLOT, +18:u02:OP_CB_SEQUENCE, +25:u04:OP_CB_WANTS_CANCELLED, +21:u06:OP_CB_NOTIFY_LOCK, +18:u10:op_cb_sequence, +25:u12:op_cb_wants_cancelled, +21:u14:op_cb_notify_lock, +18:u01:OP_CB_SEQUENCE, +25:u03:OP_CB_WANTS_CANCELLED, +21:u05:OP_CB_NOTIFY_LOCK, +25:u07:OP_CB_NOTIFY_DEVICEID, +17:u08:OP_CB_ILLEGAL, +25:u11:op_cb_wants_cancelled, +21:u13:op_cb_notify_lock, +18:u00:OP_CB_SEQUENCE, +25:u02:OP_CB_WANTS_CANCELLED, +21:u04:OP_CB_NOTIFY_LOCK, +25:u06:OP_CB_NOTIFY_DEVICEID, +25:u10:op_cb_wants_cancelled, +21:u12:op_cb_notify_lock, +25:u14:op_cb_notify_deviceid, +25:u01:OP_CB_WANTS_CANCELLED, +21:u03:OP_CB_NOTIFY_LOCK, +25:u05:OP_CB_NOTIFY_DEVICEID, +17:u07:OP_CB_ILLEGAL, +21:u11:op_cb_notify_lock, +25:u13:op_cb_notify_deviceid, +25:u00:OP_CB_WANTS_CANCELLED, +21:u02:OP_CB_NOTIFY_LOCK, +25:u04:OP_CB_NOTIFY_DEVICEID, +17:u06:OP_CB_ILLEGAL, +21:u10:op_cb_notify_lock, +25:u12:op_cb_notify_deviceid, +17:u14:op_cb_illegal, +21:u01:OP_CB_NOTIFY_LOCK, +25:u03:OP_CB_NOTIFY_DEVICEID, +17:u05:OP_CB_ILLEGAL, +17:u08:nfs_cb_argop4, +25:u11:op_cb_notify_deviceid, +17:u13:op_cb_illegal, +21:u00:OP_CB_NOTIFY_LOCK, +25:u02:OP_CB_NOTIFY_DEVICEID, +17:u04:OP_CB_ILLEGAL, +19:u08:CB_GETATTR4args, +17:u07:nfs_cb_argop4, +18:u08:OP_CB_GETATTR:, +25:u10:op_cb_notify_deviceid, +17:u12:op_cb_illegal, +25:u01:OP_CB_NOTIFY_DEVICEID, +17:u03:OP_CB_ILLEGAL, +16:u08:opcbgetattr;, +17:u06:nfs_cb_argop4, +18:u07:OP_CB_GETATTR:, +17:u11:op_cb_illegal, +25:u00:OP_CB_NOTIFY_DEVICEID, +17:u02:OP_CB_ILLEGAL, +19:u07:CB_GETATTR4args, +17:u05:nfs_cb_argop4, +18:u06:OP_CB_GETATTR:, +17:u10:op_cb_illegal, +17:u01:OP_CB_ILLEGAL, +19:u06:CB_GETATTR4args, +16:u07:opcbgetattr;, +18:u08:CB_RECALL4args, +17:u04:nfs_cb_argop4, +18:u05:OP_CB_GETATTR:, +17:u08:OP_CB_RECALL:, +19:u14:cb_getattr4args, +17:u00:OP_CB_ILLEGAL, +19:u05:CB_GETATTR4args, +16:u06:opcbgetattr;, +15:u08:opcbrecall;, +17:u03:nfs_cb_argop4, +18:u04:OP_CB_GETATTR:, +17:u07:OP_CB_RECALL:, +19:u13:cb_getattr4args, +16:u14:opcbgetattr;, +19:u04:CB_GETATTR4args, +16:u05:opcbgetattr;, +18:u07:CB_RECALL4args, +17:u02:nfs_cb_argop4, +18:u03:OP_CB_GETATTR:, +17:u06:OP_CB_RECALL:, +19:u12:cb_getattr4args, +16:u13:opcbgetattr;, +19:u03:CB_GETATTR4args, +16:u04:opcbgetattr;, +18:u06:CB_RECALL4args, +15:u07:opcbrecall;, +24:u08:CB_LAYOUTRECALL4args, +17:u01:nfs_cb_argop4, +18:u02:OP_CB_GETATTR:, +17:u05:OP_CB_RECALL:, +23:u08:OP_CB_LAYOUTRECALL:, +19:u11:cb_getattr4args, +16:u12:opcbgetattr;, +18:u14:cb_recall4args, +8:u23:opcb, +19:u02:CB_GETATTR4args, +16:u03:opcbgetattr;, +18:u05:CB_RECALL4args, +15:u06:opcbrecall;, +21:u08:opcblayoutrecall;, +17:u00:nfs_cb_argop4, +18:u01:OP_CB_GETATTR:, +17:u04:OP_CB_RECALL:, +23:u07:OP_CB_LAYOUTRECALL:, +19:u10:cb_getattr4args, +16:u11:opcbgetattr;, +18:u13:cb_recall4args, +15:u14:opcbrecall;, +19:u01:CB_GETATTR4args, +16:u02:opcbgetattr;, +18:u04:CB_RECALL4args, +15:u05:opcbrecall;, +24:u07:CB_LAYOUTRECALL4args, +18:u00:OP_CB_GETATTR:, +17:u03:OP_CB_RECALL:, +23:u06:OP_CB_LAYOUTRECALL:, +16:u10:opcbgetattr;, +18:u12:cb_recall4args, +15:u13:opcbrecall;, +19:u00:CB_GETATTR4args, +16:u01:opcbgetattr;, +18:u03:CB_RECALL4args, +15:u04:opcbrecall;, +24:u06:CB_LAYOUTRECALL4args, +21:u07:opcblayoutrecall;, +18:u08:CB_NOTIFY4args, +17:u02:OP_CB_RECALL:, +23:u05:OP_CB_LAYOUTRECALL:, +17:u08:OP_CB_NOTIFY:, +18:u11:cb_recall4args, +15:u12:opcbrecall;, +24:u14:cb_layoutrecall4args, +16:u00:opcbgetattr;, +18:u02:CB_RECALL4args, +15:u03:opcbrecall;, +24:u05:CB_LAYOUTRECALL4args, +21:u06:opcblayoutrecall;, +15:u08:opcbnotify;, +17:u01:OP_CB_RECALL:, +23:u04:OP_CB_LAYOUTRECALL:, +17:u07:OP_CB_NOTIFY:, +18:u10:cb_recall4args, +15:u11:opcbrecall;, +24:u13:cb_layoutrecall4args, +21:u14:opcblayoutrecall;, +18:u01:CB_RECALL4args, +15:u02:opcbrecall;, +24:u04:CB_LAYOUTRECALL4args, +21:u05:opcblayoutrecall;, +18:u07:CB_NOTIFY4args, +17:u00:OP_CB_RECALL:, +23:u03:OP_CB_LAYOUTRECALL:, +17:u06:OP_CB_NOTIFY:, +15:u10:opcbrecall;, +24:u12:cb_layoutrecall4args, +21:u13:opcblayoutrecall;, +18:u00:CB_RECALL4args, +15:u01:opcbrecall;, +24:u03:CB_LAYOUTRECALL4args, +21:u04:opcblayoutrecall;, +18:u06:CB_NOTIFY4args, +15:u07:opcbnotify;, +22:u08:CB_PUSH_DELEG4args, +23:u02:OP_CB_LAYOUTRECALL:, +17:u05:OP_CB_NOTIFY:, +21:u08:OP_CB_PUSH_DELEG:, +24:u11:cb_layoutrecall4args, +21:u12:opcblayoutrecall;, +18:u14:cb_notify4args, +15:u00:opcbrecall;, +24:u02:CB_LAYOUTRECALL4args, +21:u03:opcblayoutrecall;, +18:u05:CB_NOTIFY4args, +15:u06:opcbnotify;, +19:u08:opcbpush_deleg;, +23:u01:OP_CB_LAYOUTRECALL:, +17:u04:OP_CB_NOTIFY:, +21:u07:OP_CB_PUSH_DELEG:, +24:u10:cb_layoutrecall4args, +21:u11:opcblayoutrecall;, +18:u13:cb_notify4args, +15:u14:opcbnotify;, +24:u01:CB_LAYOUTRECALL4args, +21:u02:opcblayoutrecall;, +18:u04:CB_NOTIFY4args, +15:u05:opcbnotify;, +22:u07:CB_PUSH_DELEG4args, +23:u00:OP_CB_LAYOUTRECALL:, +17:u03:OP_CB_NOTIFY:, +21:u06:OP_CB_PUSH_DELEG:, +21:u10:opcblayoutrecall;, +18:u12:cb_notify4args, +15:u13:opcbnotify;, +24:u00:CB_LAYOUTRECALL4args, +21:u01:opcblayoutrecall;, +18:u03:CB_NOTIFY4args, +15:u04:opcbnotify;, +22:u06:CB_PUSH_DELEG4args, +19:u07:opcbpush_deleg;, +22:u08:CB_RECALL_ANY4args, +17:u02:OP_CB_NOTIFY:, +21:u05:OP_CB_PUSH_DELEG:, +21:u08:OP_CB_RECALL_ANY:, +18:u11:cb_notify4args, +15:u12:opcbnotify;, +22:u14:cb_push_deleg4args, +21:u00:opcblayoutrecall;, +18:u02:CB_NOTIFY4args, +15:u03:opcbnotify;, +22:u05:CB_PUSH_DELEG4args, +19:u06:opcbpush_deleg;, +19:u08:opcbrecall_any;, +17:u01:OP_CB_NOTIFY:, +21:u04:OP_CB_PUSH_DELEG:, +21:u07:OP_CB_RECALL_ANY:, +18:u10:cb_notify4args, +15:u11:opcbnotify;, +22:u13:cb_push_deleg4args, +19:u14:opcbpush_deleg;, +18:u01:CB_NOTIFY4args, +15:u02:opcbnotify;, +22:u04:CB_PUSH_DELEG4args, +19:u05:opcbpush_deleg;, +22:u07:CB_RECALL_ANY4args, +17:u00:OP_CB_NOTIFY:, +21:u03:OP_CB_PUSH_DELEG:, +21:u06:OP_CB_RECALL_ANY:, +15:u10:opcbnotify;, +22:u12:cb_push_deleg4args, +19:u13:opcbpush_deleg;, +8:u23:CB_P, +18:u00:CB_NOTIFY4args, +15:u01:opcbnotify;, +22:u03:CB_PUSH_DELEG4args, +19:u04:opcbpush_deleg;, +22:u06:CB_RECALL_ANY4args, +19:u07:opcbrecall_any;, +32:u08:CB_RECALLABLE_OBJ_AVAIL4args, +21:u02:OP_CB_PUSH_DELEG:, +21:u05:OP_CB_RECALL_ANY:, +31:u08:OP_CB_RECALLABLE_OBJ_AVAIL:, +22:u11:cb_push_deleg4args, +19:u12:opcbpush_deleg;, +22:u14:cb_recall_any4args, +15:u00:opcbnotify;, +22:u02:CB_PUSH_DELEG4args, +19:u03:opcbpush_deleg;, +22:u05:CB_RECALL_ANY4args, +19:u06:opcbrecall_any;, +21:u01:OP_CB_PUSH_DELEG:, +21:u04:OP_CB_RECALL_ANY:, +31:u07:OP_CB_RECALLABLE_OBJ_AVAIL:, +29:u08:opcbrecallable_obj_avail;, +22:u10:cb_push_deleg4args, +19:u11:opcbpush_deleg;, +22:u13:cb_recall_any4args, +19:u14:opcbrecall_any;, +22:u01:CB_PUSH_DELEG4args, +19:u02:opcbpush_deleg;, +22:u04:CB_RECALL_ANY4args, +19:u05:opcbrecall_any;, +32:u07:CB_RECALLABLE_OBJ_AVAIL4args, +23:u08:CB_RECALL_SLOT4args, +21:u00:OP_CB_PUSH_DELEG:, +21:u03:OP_CB_RECALL_ANY:, +31:u06:OP_CB_RECALLABLE_OBJ_AVAIL:, +29:u07:opcbrecallable_obj_avail;, +22:u08:OP_CB_RECALL_SLOT:, +19:u10:opcbpush_deleg;, +22:u12:cb_recall_any4args, +19:u13:opcbrecall_any;, +22:u00:CB_PUSH_DELEG4args, +19:u01:opcbpush_deleg;, +22:u03:CB_RECALL_ANY4args, +19:u04:opcbrecall_any;, +32:u06:CB_RECALLABLE_OBJ_AVAIL4args, +20:u08:opcbrecall_slot;, +21:u02:OP_CB_RECALL_ANY:, +31:u05:OP_CB_RECALLABLE_OBJ_AVAIL:, +29:u06:opcbrecallable_obj_avail;, +22:u07:OP_CB_RECALL_SLOT:, +22:u11:cb_recall_any4args, +19:u12:opcbrecall_any;, +32:u14:cb_recallable_obj_avail4args, +19:u00:opcbpush_deleg;, +22:u02:CB_RECALL_ANY4args, +19:u03:opcbrecall_any;, +32:u05:CB_RECALLABLE_OBJ_AVAIL4args, +23:u07:CB_RECALL_SLOT4args, +21:u01:OP_CB_RECALL_ANY:, +31:u04:OP_CB_RECALLABLE_OBJ_AVAIL:, +29:u05:opcbrecallable_obj_avail;, +22:u06:OP_CB_RECALL_SLOT:, +22:u10:cb_recall_any4args, +19:u11:opcbrecall_any;, +32:u13:cb_recallable_obj_avail4args, +22:u01:CB_RECALL_ANY4args, +19:u02:opcbrecall_any;, +32:u04:CB_RECALLABLE_OBJ_AVAIL4args, +23:u06:CB_RECALL_SLOT4args, +20:u07:opcbrecall_slot;, +20:u08:CB_SEQUENCE4args, +21:u00:OP_CB_RECALL_ANY:, +31:u03:OP_CB_RECALLABLE_OBJ_AVAIL:, +29:u04:opcbrecallable_obj_avail;, +22:u05:OP_CB_RECALL_SLOT:, +19:u08:OP_CB_SEQUENCE:, +19:u10:opcbrecall_any;, +32:u12:cb_recallable_obj_avail4args, +23:u14:cb_recall_slot4args, +22:u00:CB_RECALL_ANY4args, +19:u01:opcbrecall_any;, +32:u03:CB_RECALLABLE_OBJ_AVAIL4args, +23:u05:CB_RECALL_SLOT4args, +20:u06:opcbrecall_slot;, +17:u08:opcbsequence;, +31:u02:OP_CB_RECALLABLE_OBJ_AVAIL:, +29:u03:opcbrecallable_obj_avail;, +22:u04:OP_CB_RECALL_SLOT:, +19:u07:OP_CB_SEQUENCE:, +32:u11:cb_recallable_obj_avail4args, +23:u13:cb_recall_slot4args, +20:u14:opcbrecall_slot;, +19:u00:opcbrecall_any;, +32:u02:CB_RECALLABLE_OBJ_AVAIL4args, +23:u04:CB_RECALL_SLOT4args, +20:u05:opcbrecall_slot;, +20:u07:CB_SEQUENCE4args, +31:u01:OP_CB_RECALLABLE_OBJ_AVAIL:, +29:u02:opcbrecallable_obj_avail;, +22:u03:OP_CB_RECALL_SLOT:, +19:u06:OP_CB_SEQUENCE:, +32:u10:cb_recallable_obj_avail4args, +23:u12:cb_recall_slot4args, +20:u13:opcbrecall_slot;, +32:u01:CB_RECALLABLE_OBJ_AVAIL4args, +23:u03:CB_RECALL_SLOT4args, +20:u04:opcbrecall_slot;, +20:u06:CB_SEQUENCE4args, +17:u07:opcbsequence;, +27:u08:CB_WANTS_CANCELLED4args, +31:u00:OP_CB_RECALLABLE_OBJ_AVAIL:, +29:u01:opcbrecallable_obj_avail;, +22:u02:OP_CB_RECALL_SLOT:, +19:u05:OP_CB_SEQUENCE:, +26:u08:OP_CB_WANTS_CANCELLED:, +23:u11:cb_recall_slot4args, +20:u12:opcbrecall_slot;, +20:u14:cb_sequence4args, +32:u00:CB_RECALLABLE_OBJ_AVAIL4args, +23:u02:CB_RECALL_SLOT4args, +20:u03:opcbrecall_slot;, +20:u05:CB_SEQUENCE4args, +17:u06:opcbsequence;, +24:u08:opcbwants_cancelled;, +29:u00:opcbrecallable_obj_avail;, +22:u01:OP_CB_RECALL_SLOT:, +19:u04:OP_CB_SEQUENCE:, +26:u07:OP_CB_WANTS_CANCELLED:, +23:u10:cb_recall_slot4args, +20:u11:opcbrecall_slot;, +20:u13:cb_sequence4args, +17:u14:opcbsequence;, +23:u01:CB_RECALL_SLOT4args, +20:u02:opcbrecall_slot;, +20:u04:CB_SEQUENCE4args, +17:u05:opcbsequence;, +27:u07:CB_WANTS_CANCELLED4args, +22:u00:OP_CB_RECALL_SLOT:, +19:u03:OP_CB_SEQUENCE:, +26:u06:OP_CB_WANTS_CANCELLED:, +20:u10:opcbrecall_slot;, +20:u12:cb_sequence4args, +17:u13:opcbsequence;, +23:u00:CB_RECALL_SLOT4args, +20:u01:opcbrecall_slot;, +20:u03:CB_SEQUENCE4args, +17:u04:opcbsequence;, +27:u06:CB_WANTS_CANCELLED4args, +24:u07:opcbwants_cancelled;, +23:u08:CB_NOTIFY_LOCK4args, +19:u02:OP_CB_SEQUENCE:, +26:u05:OP_CB_WANTS_CANCELLED:, +22:u08:OP_CB_NOTIFY_LOCK:, +20:u11:cb_sequence4args, +17:u12:opcbsequence;, +27:u14:cb_wants_cancelled4args, +20:u00:opcbrecall_slot;, +20:u02:CB_SEQUENCE4args, +17:u03:opcbsequence;, +27:u05:CB_WANTS_CANCELLED4args, +24:u06:opcbwants_cancelled;, +20:u08:opcbnotify_lock;, +19:u01:OP_CB_SEQUENCE:, +26:u04:OP_CB_WANTS_CANCELLED:, +22:u07:OP_CB_NOTIFY_LOCK:, +20:u10:cb_sequence4args, +17:u11:opcbsequence;, +27:u13:cb_wants_cancelled4args, +24:u14:opcbwants_cancelled;, +20:u01:CB_SEQUENCE4args, +17:u02:opcbsequence;, +27:u04:CB_WANTS_CANCELLED4args, +24:u05:opcbwants_cancelled;, +23:u07:CB_NOTIFY_LOCK4args, +19:u00:OP_CB_SEQUENCE:, +26:u03:OP_CB_WANTS_CANCELLED:, +22:u06:OP_CB_NOTIFY_LOCK:, +17:u10:opcbsequence;, +27:u12:cb_wants_cancelled4args, +24:u13:opcbwants_cancelled;, +20:u00:CB_SEQUENCE4args, +17:u01:opcbsequence;, +27:u03:CB_WANTS_CANCELLED4args, +24:u04:opcbwants_cancelled;, +23:u06:CB_NOTIFY_LOCK4args, +20:u07:opcbnotify_lock;, +27:u08:CB_NOTIFY_DEVICEID4args, +26:u02:OP_CB_WANTS_CANCELLED:, +22:u05:OP_CB_NOTIFY_LOCK:, +26:u08:OP_CB_NOTIFY_DEVICEID:, +27:u11:cb_wants_cancelled4args, +24:u12:opcbwants_cancelled;, +23:u14:cb_notify_lock4args, +17:u00:opcbsequence;, +27:u02:CB_WANTS_CANCELLED4args, +24:u03:opcbwants_cancelled;, +23:u05:CB_NOTIFY_LOCK4args, +20:u06:opcbnotify_lock;, +24:u08:opcbnotify_deviceid;, +26:u01:OP_CB_WANTS_CANCELLED:, +22:u04:OP_CB_NOTIFY_LOCK:, +26:u07:OP_CB_NOTIFY_DEVICEID:, +27:u10:cb_wants_cancelled4args, +24:u11:opcbwants_cancelled;, +23:u13:cb_notify_lock4args, +20:u14:opcbnotify_lock;, +27:u01:CB_WANTS_CANCELLED4args, +24:u02:opcbwants_cancelled;, +23:u04:CB_NOTIFY_LOCK4args, +20:u05:opcbnotify_lock;, +27:u07:CB_NOTIFY_DEVICEID4args, +26:u00:OP_CB_WANTS_CANCELLED:, +22:u03:OP_CB_NOTIFY_LOCK:, +26:u06:OP_CB_NOTIFY_DEVICEID:, +24:u10:opcbwants_cancelled;, +23:u12:cb_notify_lock4args, +20:u13:opcbnotify_lock;, +27:u00:CB_WANTS_CANCELLED4args, +24:u01:opcbwants_cancelled;, +23:u03:CB_NOTIFY_LOCK4args, +20:u04:opcbnotify_lock;, +27:u06:CB_NOTIFY_DEVICEID4args, +24:u07:opcbnotify_deviceid;, +22:u02:OP_CB_NOTIFY_LOCK:, +26:u05:OP_CB_NOTIFY_DEVICEID:, +18:u08:OP_CB_ILLEGAL:, +23:u11:cb_notify_lock4args, +20:u12:opcbnotify_lock;, +27:u14:cb_notify_deviceid4args, +24:u00:opcbwants_cancelled;, +23:u02:CB_NOTIFY_LOCK4args, +20:u03:opcbnotify_lock;, +27:u05:CB_NOTIFY_DEVICEID4args, +24:u06:opcbnotify_deviceid;, +22:u01:OP_CB_NOTIFY_LOCK:, +26:u04:OP_CB_NOTIFY_DEVICEID:, +18:u07:OP_CB_ILLEGAL:, +23:u10:cb_notify_lock4args, +20:u11:opcbnotify_lock;, +27:u13:cb_notify_deviceid4args, +24:u14:opcbnotify_deviceid;, +23:u01:CB_NOTIFY_LOCK4args, +20:u02:opcbnotify_lock;, +27:u04:CB_NOTIFY_DEVICEID4args, +24:u05:opcbnotify_deviceid;, +22:u00:OP_CB_NOTIFY_LOCK:, +26:u03:OP_CB_NOTIFY_DEVICEID:, +18:u06:OP_CB_ILLEGAL:, +20:u10:opcbnotify_lock;, +27:u12:cb_notify_deviceid4args, +24:u13:opcbnotify_deviceid;, +23:u00:CB_NOTIFY_LOCK4args, +20:u01:opcbnotify_lock;, +27:u03:CB_NOTIFY_DEVICEID4args, +24:u04:opcbnotify_deviceid;, +26:u02:OP_CB_NOTIFY_DEVICEID:, +18:u05:OP_CB_ILLEGAL:, +27:u11:cb_notify_deviceid4args, +24:u12:opcbnotify_deviceid;, +20:u00:opcbnotify_lock;, +27:u02:CB_NOTIFY_DEVICEID4args, +24:u03:opcbnotify_deviceid;, +26:u01:OP_CB_NOTIFY_DEVICEID:, +18:u04:OP_CB_ILLEGAL:, +27:u10:cb_notify_deviceid4args, +24:u11:opcbnotify_deviceid;, +27:u01:CB_NOTIFY_DEVICEID4args, +24:u02:opcbnotify_deviceid;, +26:u00:OP_CB_NOTIFY_DEVICEID:, +18:u03:OP_CB_ILLEGAL:, +8:u08:599], +24:u10:opcbnotify_deviceid;, +27:u00:CB_NOTIFY_DEVICEID4args, +24:u01:opcbnotify_deviceid;, +18:u02:OP_CB_ILLEGAL:, +8:u07:599], +24:u00:opcbnotify_deviceid;, +18:u01:OP_CB_ILLEGAL:, +8:u06:599], +18:u00:OP_CB_ILLEGAL:, +8:u05:599], +8:u04:599], +20:u08:CB_COMPOUND4args, +8:u03:599], +20:u07:CB_COMPOUND4args, +8:u02:599], +20:u06:CB_COMPOUND4args, +8:u01:599], +20:u05:CB_COMPOUND4args, +8:u00:599], +20:u04:CB_COMPOUND4args, +19:u08:callback_ident;, +20:u03:CB_COMPOUND4args, +20:u02:CB_COMPOUND4args, +19:u07:callback_ident;, +20:u01:CB_COMPOUND4args, +19:u06:callback_ident;, +20:u00:CB_COMPOUND4args, +19:u14:callback_ident;, +19:u05:callback_ident;, +11:u08:19.2.2., +19:u13:callback_ident;, +17:u14:nfs_cb_argop4, +19:u04:callback_ident;, +19:u12:callback_ident;, +17:u13:nfs_cb_argop4, +19:u03:callback_ident;, +11:u07:19.2.2., +19:u11:callback_ident;, +17:u12:nfs_cb_argop4, +19:u02:callback_ident;, +11:u06:19.2.2., +19:u10:callback_ident;, +17:u11:nfs_cb_argop4, +11:u14:19.2.2., +19:u01:callback_ident;, +11:u05:19.2.2., +8:u08:600], +17:u10:nfs_cb_argop4, +11:u13:19.2.2., +19:u00:callback_ident;, +11:u04:19.2.2., +8:u07:600], +11:u12:19.2.2., +11:u03:19.2.2., +8:u06:600], +11:u11:19.2.2., +11:u02:19.2.2., +8:u05:600], +11:u10:19.2.2., +11:u01:19.2.2., +8:u04:600], +17:u08:nfs_cb_resop4, +11:u00:19.2.2., +18:u08:CB_GETATTR4res, +8:u03:600], +17:u07:nfs_cb_resop4, +8:u02:600], +17:u06:nfs_cb_resop4, +18:u07:CB_GETATTR4res, +17:u08:CB_RECALL4res, +8:u01:600], +17:u05:nfs_cb_resop4, +18:u06:CB_GETATTR4res, +8:u00:600], +17:u04:nfs_cb_resop4, +18:u14:cb_getattr4res, +18:u05:CB_GETATTR4res, +17:u07:CB_RECALL4res, +17:u03:nfs_cb_resop4, +18:u13:cb_getattr4res, +18:u04:CB_GETATTR4res, +17:u06:CB_RECALL4res, +17:u02:nfs_cb_resop4, +18:u12:cb_getattr4res, +17:u14:cb_recall4res, +18:u03:CB_GETATTR4res, +17:u05:CB_RECALL4res, +23:u08:CB_LAYOUTRECALL4res, +17:u01:nfs_cb_resop4, +18:u11:cb_getattr4res, +17:u13:cb_recall4res, +18:u02:CB_GETATTR4res, +17:u04:CB_RECALL4res, +17:u00:nfs_cb_resop4, +18:u10:cb_getattr4res, +17:u12:cb_recall4res, +18:u01:CB_GETATTR4res, +17:u03:CB_RECALL4res, +23:u07:CB_LAYOUTRECALL4res, +17:u11:cb_recall4res, +18:u00:CB_GETATTR4res, +17:u02:CB_RECALL4res, +23:u06:CB_LAYOUTRECALL4res, +17:u08:CB_NOTIFY4res, +17:u10:cb_recall4res, +23:u14:cb_layoutrecall4res, +17:u01:CB_RECALL4res, +23:u05:CB_LAYOUTRECALL4res, +23:u13:cb_layoutrecall4res, +17:u00:CB_RECALL4res, +23:u04:CB_LAYOUTRECALL4res, +17:u07:CB_NOTIFY4res, +23:u12:cb_layoutrecall4res, +23:u03:CB_LAYOUTRECALL4res, +17:u06:CB_NOTIFY4res, +23:u11:cb_layoutrecall4res, +17:u14:cb_notify4res, +23:u02:CB_LAYOUTRECALL4res, +17:u05:CB_NOTIFY4res, +23:u10:cb_layoutrecall4res, +17:u13:cb_notify4res, +23:u01:CB_LAYOUTRECALL4res, +17:u04:CB_NOTIFY4res, +17:u12:cb_notify4res, +23:u00:CB_LAYOUTRECALL4res, +17:u03:CB_NOTIFY4res, +17:u11:cb_notify4res, +17:u02:CB_NOTIFY4res, +31:u08:CB_RECALLABLE_OBJ_AVAIL4res, +17:u10:cb_notify4res, +17:u01:CB_NOTIFY4res, +17:u00:CB_NOTIFY4res, +31:u07:CB_RECALLABLE_OBJ_AVAIL4res, +31:u06:CB_RECALLABLE_OBJ_AVAIL4res, +22:u08:CB_RECALL_SLOT4res, +31:u14:cb_recallable_obj_avail4res, +31:u05:CB_RECALLABLE_OBJ_AVAIL4res, +31:u13:cb_recallable_obj_avail4res, +29:u14:opcbrecallable_obj_avail;, +31:u04:CB_RECALLABLE_OBJ_AVAIL4res, +22:u07:CB_RECALL_SLOT4res, +31:u12:cb_recallable_obj_avail4res, +29:u13:opcbrecallable_obj_avail;, +31:u03:CB_RECALLABLE_OBJ_AVAIL4res, +22:u06:CB_RECALL_SLOT4res, +19:u08:CB_SEQUENCE4res, +31:u11:cb_recallable_obj_avail4res, +29:u12:opcbrecallable_obj_avail;, +22:u14:cb_recall_slot4res, +31:u02:CB_RECALLABLE_OBJ_AVAIL4res, +22:u05:CB_RECALL_SLOT4res, +31:u10:cb_recallable_obj_avail4res, +29:u11:opcbrecallable_obj_avail;, +22:u13:cb_recall_slot4res, +31:u01:CB_RECALLABLE_OBJ_AVAIL4res, +22:u04:CB_RECALL_SLOT4res, +19:u07:CB_SEQUENCE4res, +26:u08:CB_WANTS_CANCELLED4res, +29:u10:opcbrecallable_obj_avail;, +22:u12:cb_recall_slot4res, +31:u00:CB_RECALLABLE_OBJ_AVAIL4res, +22:u03:CB_RECALL_SLOT4res, +19:u06:CB_SEQUENCE4res, +22:u11:cb_recall_slot4res, +19:u14:cb_sequence4res, +22:u02:CB_RECALL_SLOT4res, +19:u05:CB_SEQUENCE4res, +26:u07:CB_WANTS_CANCELLED4res, +22:u10:cb_recall_slot4res, +19:u13:cb_sequence4res, +22:u01:CB_RECALL_SLOT4res, +19:u04:CB_SEQUENCE4res, +26:u06:CB_WANTS_CANCELLED4res, +22:u08:CB_NOTIFY_LOCK4res, +19:u12:cb_sequence4res, +26:u14:cb_wants_cancelled4res, +22:u00:CB_RECALL_SLOT4res, +19:u03:CB_SEQUENCE4res, +26:u05:CB_WANTS_CANCELLED4res, +19:u11:cb_sequence4res, +26:u13:cb_wants_cancelled4res, +19:u02:CB_SEQUENCE4res, +26:u04:CB_WANTS_CANCELLED4res, +22:u07:CB_NOTIFY_LOCK4res, +19:u10:cb_sequence4res, +26:u12:cb_wants_cancelled4res, +19:u01:CB_SEQUENCE4res, +26:u03:CB_WANTS_CANCELLED4res, +22:u06:CB_NOTIFY_LOCK4res, +26:u08:CB_NOTIFY_DEVICEID4res, +26:u11:cb_wants_cancelled4res, +22:u14:cb_notify_lock4res, +19:u00:CB_SEQUENCE4res, +26:u02:CB_WANTS_CANCELLED4res, +22:u05:CB_NOTIFY_LOCK4res, +26:u10:cb_wants_cancelled4res, +22:u13:cb_notify_lock4res, +26:u01:CB_WANTS_CANCELLED4res, +22:u04:CB_NOTIFY_LOCK4res, +26:u07:CB_NOTIFY_DEVICEID4res, +22:u12:cb_notify_lock4res, +26:u00:CB_WANTS_CANCELLED4res, +22:u03:CB_NOTIFY_LOCK4res, +26:u06:CB_NOTIFY_DEVICEID4res, +22:u11:cb_notify_lock4res, +26:u14:cb_notify_deviceid4res, +22:u02:CB_NOTIFY_LOCK4res, +26:u05:CB_NOTIFY_DEVICEID4res, +18:u08:CB_ILLEGAL4res, +22:u10:cb_notify_lock4res, +26:u13:cb_notify_deviceid4res, +22:u01:CB_NOTIFY_LOCK4res, +26:u04:CB_NOTIFY_DEVICEID4res, +16:u08:opcbillegal;, +26:u12:cb_notify_deviceid4res, +22:u00:CB_NOTIFY_LOCK4res, +26:u03:CB_NOTIFY_DEVICEID4res, +18:u07:CB_ILLEGAL4res, +16:u07:opcbillegal;, +26:u11:cb_notify_deviceid4res, +26:u02:CB_NOTIFY_DEVICEID4res, +18:u06:CB_ILLEGAL4res, +16:u06:opcbillegal;, +19:u08:CB_COMPOUND4res, +26:u10:cb_notify_deviceid4res, +18:u14:cb_illegal4res, +26:u01:CB_NOTIFY_DEVICEID4res, +18:u05:CB_ILLEGAL4res, +16:u05:opcbillegal;, +19:u07:CB_COMPOUND4res, +18:u13:cb_illegal4res, +26:u00:CB_NOTIFY_DEVICEID4res, +18:u04:CB_ILLEGAL4res, +16:u04:opcbillegal;, +19:u06:CB_COMPOUND4res, +18:u12:cb_illegal4res, +8:u23:CB_I, +18:u03:CB_ILLEGAL4res, +16:u03:opcbillegal;, +19:u05:CB_COMPOUND4res, +18:u11:cb_illegal4res, +18:u02:CB_ILLEGAL4res, +16:u02:opcbillegal;, +19:u04:CB_COMPOUND4res, +18:u10:cb_illegal4res, +18:u01:CB_ILLEGAL4res, +16:u01:opcbillegal;, +19:u03:CB_COMPOUND4res, +18:u00:CB_ILLEGAL4res, +16:u00:opcbillegal;, +19:u02:CB_COMPOUND4res, +17:u14:nfs_cb_resop4, +19:u01:CB_COMPOUND4res, +17:u13:nfs_cb_resop4, +19:u00:CB_COMPOUND4res, +17:u12:nfs_cb_resop4, +8:u08:601], +17:u11:nfs_cb_resop4, +8:u07:601], +17:u10:nfs_cb_resop4, +8:u06:601], +11:u08:19.2.3., +8:u05:601], +8:u04:601], +11:u07:19.2.3., +8:u03:601], +11:u06:19.2.3., +8:u02:601], +11:u14:19.2.3., +11:u05:19.2.3., +8:u01:601], +11:u13:19.2.3., +11:u04:19.2.3., +8:u00:601], +11:u12:19.2.3., +11:u03:19.2.3., +11:u11:19.2.3., +11:u02:19.2.3., +11:u10:19.2.3., +11:u01:19.2.3., +11:u00:19.2.3., +12:u08:2.10.6.4, +16:u08:minorversion, +12:u07:2.10.6.4, +12:u06:2.10.6.4, +16:u07:minorversion, +12:u05:2.10.6.4, +16:u06:minorversion, +12:u04:2.10.6.4, +16:u05:minorversion, +16:u14:minorversion, +12:u03:2.10.6.4, +16:u04:minorversion, +16:u13:minorversion, +12:u02:2.10.6.4, +16:u03:minorversion, +16:u12:minorversion, +12:u01:2.10.6.4, +16:u02:minorversion, +12:u08:incurred, +16:u11:minorversion, +12:u00:2.10.6.4, +16:u01:minorversion, +12:u07:incurred, +16:u10:minorversion, +16:u00:minorversion, +12:u06:incurred, +9:u08:"tag", +12:u05:incurred, +9:u07:"tag", +12:u04:incurred, +9:u06:"tag", +11:u08:19.2.4., +12:u03:incurred, +9:u05:"tag", +12:u02:incurred, +9:u04:"tag", +11:u07:19.2.4., +12:u01:incurred, +9:u03:"tag", +11:u06:19.2.4., +12:u00:incurred, +9:u02:"tag", +11:u14:19.2.4., +11:u05:19.2.4., +9:u01:"tag", +11:u13:19.2.4., +11:u04:19.2.4., +9:u00:"tag", +11:u12:19.2.4., +11:u03:19.2.4., +11:u11:19.2.4., +11:u02:19.2.4., +11:u10:19.2.4., +11:u01:19.2.4., +11:u08:19.2.5., +11:u00:19.2.4., +11:u07:19.2.5., +11:u06:19.2.5., +11:u14:19.2.5., +11:u05:19.2.5., +11:u13:19.2.5., +11:u04:19.2.5., +11:u12:19.2.5., +11:u03:19.2.5., +11:u11:19.2.5., +11:u02:19.2.5., +11:u10:19.2.5., +11:u14:nothing, +11:u01:19.2.5., +11:u13:nothing, +11:u00:19.2.5., +11:u12:nothing, +13:u14:includes:, +8:u23:noth, +8:u08:602], +11:u11:nothing, +13:u13:includes:, +8:u07:602], +11:u10:nothing, +13:u12:includes:, +8:u06:602], +13:u11:includes:, +8:u05:602], +13:u10:includes:, +8:u04:602], +8:u03:602], +8:u02:602], +8:u01:602], +8:u00:602], +11:u08:20.1.1., +11:u07:20.1.1., +11:u06:20.1.1., +7:u08:fh;, +11:u14:20.1.1., +11:u05:20.1.1., +7:u07:fh;, +11:u13:20.1.1., +11:u04:20.1.1., +11:u08:20.1.2., +7:u06:fh;, +11:u12:20.1.1., +11:u03:20.1.1., +7:u05:fh;, +11:u11:20.1.1., +11:u02:20.1.1., +11:u07:20.1.2., +7:u04:fh;, +20:u08:CB_GETATTR4resok, +11:u10:20.1.1., +11:u01:20.1.1., +11:u06:20.1.2., +7:u03:fh;, +20:u07:CB_GETATTR4resok, +11:u14:20.1.2., +11:u00:20.1.1., +11:u05:20.1.2., +7:u02:fh;, +20:u06:CB_GETATTR4resok, +11:u13:20.1.2., +11:u04:20.1.2., +7:u01:fh;, +20:u05:CB_GETATTR4resok, +11:u12:20.1.2., +11:u03:20.1.2., +7:u00:fh;, +20:u04:CB_GETATTR4resok, +11:u11:20.1.2., +11:u02:20.1.2., +20:u03:CB_GETATTR4resok, +11:u10:20.1.2., +11:u01:20.1.2., +20:u02:CB_GETATTR4resok, +11:u00:20.1.2., +20:u01:CB_GETATTR4resok, +20:u14:cb_getattr4resok, +20:u00:CB_GETATTR4resok, +20:u13:cb_getattr4resok, +20:u12:cb_getattr4resok, +20:u11:cb_getattr4resok, +20:u10:cb_getattr4resok, +8:u08:603], +8:u07:603], +8:u06:603], +11:u08:20.1.3., +8:u05:603], +8:u04:603], +11:u07:20.1.3., +8:u03:603], +11:u06:20.1.3., +8:u02:603], +11:u14:20.1.3., +11:u05:20.1.3., +12:u08:serviced, +8:u01:603], +11:u13:20.1.3., +11:u04:20.1.3., +8:u00:603], +11:u12:20.1.3., +11:u03:20.1.3., +12:u07:serviced, +11:u11:20.1.3., +11:u02:20.1.3., +12:u06:serviced, +11:u10:20.1.3., +12:u14:serviced, +11:u01:20.1.3., +12:u05:serviced, +12:u13:serviced, +11:u00:20.1.3., +12:u04:serviced, +11:u08:20.1.4., +12:u12:serviced, +12:u03:serviced, +12:u11:serviced, +12:u02:serviced, +11:u07:20.1.4., +12:u10:serviced, +12:u01:serviced, +11:u06:20.1.4., +17:u08:(time_modify,, +11:u14:20.1.4., +12:u00:serviced, +11:u05:20.1.4., +11:u13:20.1.4., +11:u04:20.1.4., +17:u07:(time_modify,, +11:u08:20.2.1., +11:u12:20.1.4., +11:u03:20.1.4., +17:u06:(time_modify,, +11:u11:20.1.4., +17:u14:(time_modify,, +11:u02:20.1.4., +17:u05:(time_modify,, +11:u07:20.2.1., +11:u10:20.1.4., +17:u13:(time_modify,, +11:u01:20.1.4., +17:u04:(time_modify,, +11:u06:20.2.1., +17:u12:(time_modify,, +11:u14:20.2.1., +7:u22:(ti, +8:u23:(tim, +11:u00:20.1.4., +17:u03:(time_modify,, +11:u05:20.2.1., +17:u11:(time_modify,, +11:u13:20.2.1., +17:u02:(time_modify,, +11:u04:20.2.1., +13:u08:truncate;, +17:u10:(time_modify,, +11:u12:20.2.1., +17:u01:(time_modify,, +11:u03:20.2.1., +11:u11:20.2.1., +17:u00:(time_modify,, +11:u02:20.2.1., +13:u07:truncate;, +11:u10:20.2.1., +11:u01:20.2.1., +13:u06:truncate;, +13:u14:truncate;, +11:u00:20.2.1., +13:u05:truncate;, +11:u08:20.2.2., +13:u13:truncate;, +13:u04:truncate;, +13:u12:truncate;, +7:u14:fh;, +13:u03:truncate;, +11:u07:20.2.2., +13:u11:truncate;, +7:u13:fh;, +13:u02:truncate;, +11:u06:20.2.2., +13:u10:truncate;, +7:u12:fh;, +11:u14:20.2.2., +7:u22:fh;, +7:u23:fh;, +13:u01:truncate;, +11:u05:20.2.2., +7:u11:fh;, +11:u13:20.2.2., +13:u00:truncate;, +11:u04:20.2.2., +11:u08:20.2.3., +7:u10:fh;, +11:u12:20.2.2., +11:u03:20.2.2., +11:u11:20.2.2., +11:u02:20.2.2., +11:u07:20.2.3., +11:u10:20.2.2., +11:u01:20.2.2., +11:u06:20.2.3., +11:u14:20.2.3., +11:u00:20.2.2., +11:u05:20.2.3., +11:u13:20.2.3., +11:u04:20.2.3., +11:u12:20.2.3., +11:u03:20.2.3., +11:u11:20.2.3., +11:u02:20.2.3., +11:u10:20.2.3., +11:u01:20.2.3., +11:u00:20.2.3., +8:u08:604], +8:u07:604], +8:u06:604], +8:u05:604], +8:u04:604], +8:u03:604], +11:u08:20.2.4., +8:u02:604], +8:u01:604], +11:u07:20.2.4., +8:u00:604], +11:u06:20.2.4., +11:u14:20.2.4., +11:u05:20.2.4., +11:u13:20.2.4., +11:u04:20.2.4., +11:u12:20.2.4., +11:u03:20.2.4., +11:u11:20.2.4., +11:u02:20.2.4., +11:u08:20.3.1., +11:u10:20.2.4., +11:u01:20.2.4., +11:u00:20.2.4., +11:u07:20.3.1., +11:u06:20.3.1., +11:u14:20.3.1., +11:u05:20.3.1., +11:u13:20.3.1., +11:u04:20.3.1., +22:u08:LAYOUTRECALL4_FILE, +22:u08:layoutrecall_type4, +11:u12:20.3.1., +11:u03:20.3.1., +22:u08:LAYOUTRECALL4_FSID, +22:u07:layoutrecall_type4, +11:u11:20.3.1., +11:u02:20.3.1., +22:u07:LAYOUTRECALL4_FILE, +21:u08:LAYOUTRECALL4_ALL, +22:u06:layoutrecall_type4, +11:u10:20.3.1., +11:u01:20.3.1., +22:u06:LAYOUTRECALL4_FILE, +22:u07:LAYOUTRECALL4_FSID, +22:u05:layoutrecall_type4, +22:u14:layoutrecall4_file, +11:u00:20.3.1., +22:u05:LAYOUTRECALL4_FILE, +22:u06:LAYOUTRECALL4_FSID, +21:u07:LAYOUTRECALL4_ALL, +22:u04:layoutrecall_type4, +22:u13:layoutrecall4_file, +22:u14:layoutrecall4_fsid, +22:u04:LAYOUTRECALL4_FILE, +22:u05:LAYOUTRECALL4_FSID, +21:u06:LAYOUTRECALL4_ALL, +22:u03:layoutrecall_type4, +22:u08:layoutrecall_file4, +22:u12:layoutrecall4_file, +22:u13:layoutrecall4_fsid, +21:u14:layoutrecall4_all, +22:u03:LAYOUTRECALL4_FILE, +22:u04:LAYOUTRECALL4_FSID, +21:u05:LAYOUTRECALL4_ALL, +11:u08:lor_fh;, +22:u02:layoutrecall_type4, +22:u07:layoutrecall_file4, +22:u11:layoutrecall4_file, +22:u12:layoutrecall4_fsid, +21:u13:layoutrecall4_all, +22:u02:LAYOUTRECALL4_FILE, +22:u03:LAYOUTRECALL4_FSID, +21:u04:LAYOUTRECALL4_ALL, +22:u01:layoutrecall_type4, +22:u06:layoutrecall_file4, +22:u10:layoutrecall4_file, +22:u11:layoutrecall4_fsid, +21:u12:layoutrecall4_all, +22:u01:LAYOUTRECALL4_FILE, +22:u02:LAYOUTRECALL4_FSID, +21:u03:LAYOUTRECALL4_ALL, +11:u07:lor_fh;, +15:u08:lor_offset;, +22:u00:layoutrecall_type4, +22:u05:layoutrecall_file4, +22:u10:layoutrecall4_fsid, +21:u11:layoutrecall4_all, +22:u00:LAYOUTRECALL4_FILE, +22:u01:LAYOUTRECALL4_FSID, +21:u02:LAYOUTRECALL4_ALL, +11:u06:lor_fh;, +22:u04:layoutrecall_file4, +21:u10:layoutrecall4_all, +11:u14:lor_fh;, +22:u00:LAYOUTRECALL4_FSID, +21:u01:LAYOUTRECALL4_ALL, +11:u05:lor_fh;, +15:u07:lor_offset;, +15:u08:lor_length;, +22:u03:layoutrecall_file4, +11:u13:lor_fh;, +21:u00:LAYOUTRECALL4_ALL, +11:u04:lor_fh;, +15:u06:lor_offset;, +22:u02:layoutrecall_file4, +11:u12:lor_fh;, +15:u14:lor_offset;, +8:u23:lor_, +11:u03:lor_fh;, +15:u05:lor_offset;, +15:u07:lor_length;, +16:u08:lor_stateid;, +22:u01:layoutrecall_file4, +11:u11:lor_fh;, +15:u13:lor_offset;, +11:u02:lor_fh;, +15:u04:lor_offset;, +15:u06:lor_length;, +22:u00:layoutrecall_file4, +11:u10:lor_fh;, +15:u12:lor_offset;, +15:u14:lor_length;, +11:u01:lor_fh;, +15:u03:lor_offset;, +15:u05:lor_length;, +16:u07:lor_stateid;, +15:u11:lor_offset;, +15:u13:lor_length;, +11:u00:lor_fh;, +15:u02:lor_offset;, +15:u04:lor_length;, +16:u06:lor_stateid;, +17:u08:layoutrecall4, +15:u10:lor_offset;, +15:u12:lor_length;, +16:u14:lor_stateid;, +15:u01:lor_offset;, +15:u03:lor_length;, +16:u05:lor_stateid;, +17:u07:layoutrecall4, +23:u08:LAYOUTRECALL4_FILE:, +15:u11:lor_length;, +16:u13:lor_stateid;, +15:u00:lor_offset;, +15:u02:lor_length;, +16:u04:lor_stateid;, +17:u06:layoutrecall4, +23:u07:LAYOUTRECALL4_FILE:, +15:u08:lor_layout;, +15:u10:lor_length;, +16:u12:lor_stateid;, +15:u01:lor_length;, +16:u03:lor_stateid;, +17:u05:layoutrecall4, +23:u06:LAYOUTRECALL4_FILE:, +15:u07:lor_layout;, +23:u08:LAYOUTRECALL4_FSID:, +16:u11:lor_stateid;, +15:u00:lor_length;, +16:u02:lor_stateid;, +13:u08:lor_fsid;, +17:u04:layoutrecall4, +23:u05:LAYOUTRECALL4_FILE:, +15:u06:lor_layout;, +23:u07:LAYOUTRECALL4_FSID:, +16:u10:lor_stateid;, +22:u14:layoutrecall_file4, +16:u01:lor_stateid;, +17:u03:layoutrecall4, +23:u04:LAYOUTRECALL4_FILE:, +15:u05:lor_layout;, +23:u06:LAYOUTRECALL4_FSID:, +22:u13:layoutrecall_file4, +16:u00:lor_stateid;, +13:u07:lor_fsid;, +17:u02:layoutrecall4, +23:u03:LAYOUTRECALL4_FILE:, +15:u04:lor_layout;, +23:u05:LAYOUTRECALL4_FSID:, +22:u08:LAYOUTRECALL4_ALL:, +22:u12:layoutrecall_file4, +9:u14:fsid4, +13:u06:lor_fsid;, +17:u01:layoutrecall4, +23:u02:LAYOUTRECALL4_FILE:, +15:u03:lor_layout;, +23:u04:LAYOUTRECALL4_FSID:, +22:u07:LAYOUTRECALL4_ALL:, +22:u11:layoutrecall_file4, +9:u13:fsid4, +13:u14:lor_fsid;, +13:u05:lor_fsid;, +17:u00:layoutrecall4, +23:u01:LAYOUTRECALL4_FILE:, +15:u02:lor_layout;, +23:u03:LAYOUTRECALL4_FSID:, +22:u06:LAYOUTRECALL4_ALL:, +22:u10:layoutrecall_file4, +9:u12:fsid4, +13:u13:lor_fsid;, +13:u04:lor_fsid;, +23:u00:LAYOUTRECALL4_FILE:, +15:u01:lor_layout;, +23:u02:LAYOUTRECALL4_FSID:, +22:u05:LAYOUTRECALL4_ALL:, +9:u11:fsid4, +13:u12:lor_fsid;, +13:u03:lor_fsid;, +15:u08:clora_type;, +15:u00:lor_layout;, +23:u01:LAYOUTRECALL4_FSID:, +22:u04:LAYOUTRECALL4_ALL:, +9:u10:fsid4, +13:u11:lor_fsid;, +13:u02:lor_fsid;, +23:u00:LAYOUTRECALL4_FSID:, +22:u03:LAYOUTRECALL4_ALL:, +13:u10:lor_fsid;, +13:u01:lor_fsid;, +15:u07:clora_type;, +17:u08:clora_iomode;, +22:u02:LAYOUTRECALL4_ALL:, +13:u00:lor_fsid;, +15:u06:clora_type;, +22:u01:LAYOUTRECALL4_ALL:, +15:u14:clora_type;, +15:u05:clora_type;, +17:u07:clora_iomode;, +18:u08:clora_changed;, +22:u00:LAYOUTRECALL4_ALL:, +15:u13:clora_type;, +15:u04:clora_type;, +17:u06:clora_iomode;, +15:u12:clora_type;, +17:u14:clora_iomode;, +8:u23:clor, +15:u03:clora_type;, +17:u05:clora_iomode;, +18:u07:clora_changed;, +17:u08:clora_recall;, +15:u11:clora_type;, +17:u13:clora_iomode;, +15:u02:clora_type;, +17:u04:clora_iomode;, +18:u06:clora_changed;, +15:u10:clora_type;, +17:u12:clora_iomode;, +18:u14:clora_changed;, +15:u01:clora_type;, +17:u03:clora_iomode;, +18:u05:clora_changed;, +17:u07:clora_recall;, +17:u11:clora_iomode;, +18:u13:clora_changed;, +17:u14:layoutrecall4, +15:u00:clora_type;, +17:u02:clora_iomode;, +18:u04:clora_changed;, +17:u06:clora_recall;, +17:u10:clora_iomode;, +18:u12:clora_changed;, +17:u13:layoutrecall4, +17:u14:clora_recall;, +17:u01:clora_iomode;, +18:u03:clora_changed;, +17:u05:clora_recall;, +18:u11:clora_changed;, +17:u12:layoutrecall4, +17:u13:clora_recall;, +17:u00:clora_iomode;, +18:u02:clora_changed;, +17:u04:clora_recall;, +8:u08:605], +18:u10:clora_changed;, +17:u11:layoutrecall4, +17:u12:clora_recall;, +18:u01:clora_changed;, +17:u03:clora_recall;, +8:u07:605], +17:u10:layoutrecall4, +17:u11:clora_recall;, +18:u00:clora_changed;, +17:u02:clora_recall;, +8:u06:605], +17:u10:clora_recall;, +17:u01:clora_recall;, +11:u08:20.3.2., +8:u05:605], +17:u00:clora_recall;, +8:u04:605], +11:u07:20.3.2., +8:u03:605], +11:u06:20.3.2., +17:u08:clorr_status;, +8:u02:605], +11:u14:20.3.2., +11:u05:20.3.2., +8:u01:605], +11:u13:20.3.2., +11:u04:20.3.2., +17:u07:clorr_status;, +11:u08:20.3.3., +8:u00:605], +11:u12:20.3.2., +11:u03:20.3.2., +17:u06:clorr_status;, +11:u11:20.3.2., +17:u14:clorr_status;, +11:u02:20.3.2., +17:u05:clorr_status;, +11:u07:20.3.3., +11:u10:20.3.2., +17:u13:clorr_status;, +11:u01:20.3.2., +17:u04:clorr_status;, +11:u06:20.3.3., +17:u12:clorr_status;, +11:u14:20.3.3., +11:u00:20.3.2., +17:u03:clorr_status;, +11:u05:20.3.3., +17:u11:clorr_status;, +11:u13:20.3.3., +17:u02:clorr_status;, +11:u04:20.3.3., +23:u08:layoutrecall_type4., +17:u10:clorr_status;, +11:u12:20.3.3., +17:u01:clorr_status;, +11:u03:20.3.3., +11:u11:20.3.3., +17:u00:clorr_status;, +11:u02:20.3.3., +23:u07:layoutrecall_type4., +11:u10:20.3.3., +11:u01:20.3.3., +23:u06:layoutrecall_type4., +24:u08:(LAYOUTRECALL4_ALL)., +23:u14:layoutrecall_type4., +11:u00:20.3.3., +23:u05:layoutrecall_type4., +23:u13:layoutrecall_type4., +23:u04:layoutrecall_type4., +24:u07:(LAYOUTRECALL4_ALL)., +23:u12:layoutrecall_type4., +23:u03:layoutrecall_type4., +24:u06:(LAYOUTRECALL4_ALL)., +23:u11:layoutrecall_type4., +24:u14:(layoutrecall4_all)., +23:u02:layoutrecall_type4., +24:u05:(LAYOUTRECALL4_ALL)., +23:u10:layoutrecall_type4., +24:u13:(layoutrecall4_all)., +23:u01:layoutrecall_type4., +24:u04:(LAYOUTRECALL4_ALL)., +24:u12:(layoutrecall4_all)., +7:u22:(LA, +8:u23:(LAY, +23:u00:layoutrecall_type4., +24:u03:(LAYOUTRECALL4_ALL)., +17:u08:clora_iomode,, +24:u11:(layoutrecall4_all)., +24:u02:(LAYOUTRECALL4_ALL)., +11:u08:lor_fh,, +24:u10:(layoutrecall4_all)., +24:u01:(LAYOUTRECALL4_ALL)., +17:u07:clora_iomode,, +11:u07:lor_fh,, +15:u08:lor_length., +24:u00:(LAYOUTRECALL4_ALL)., +17:u06:clora_iomode,, +11:u06:lor_fh,, +15:u07:lor_length., +22:u08:LAYOUTIOMODE4_ANY., +17:u14:clora_iomode,, +17:u05:clora_iomode,, +11:u05:lor_fh,, +15:u06:lor_length., +22:u07:LAYOUTIOMODE4_ANY., +17:u13:clora_iomode,, +17:u04:clora_iomode,, +11:u04:lor_fh,, +15:u05:lor_length., +22:u06:LAYOUTIOMODE4_ANY., +17:u12:clora_iomode,, +17:u03:clora_iomode,, +14:u08:lor_length, +11:u03:lor_fh,, +15:u04:lor_length., +22:u05:LAYOUTIOMODE4_ANY., +17:u11:clora_iomode,, +17:u02:clora_iomode,, +11:u02:lor_fh,, +15:u03:lor_length., +22:u04:LAYOUTIOMODE4_ANY., +17:u10:clora_iomode,, +17:u01:clora_iomode,, +14:u07:lor_length, +11:u01:lor_fh,, +15:u02:lor_length., +22:u03:LAYOUTIOMODE4_ANY., +15:u14:lor_length., +17:u00:clora_iomode,, +14:u06:lor_length, +11:u08:field's, +11:u00:lor_fh,, +15:u01:lor_length., +22:u02:LAYOUTIOMODE4_ANY., +15:u13:lor_length., +14:u14:lor_length, +14:u05:lor_length, +14:u08:lor_offset, +15:u00:lor_length., +22:u01:LAYOUTIOMODE4_ANY., +15:u12:lor_length., +14:u13:lor_length, +14:u04:lor_length, +11:u07:field's, +22:u00:LAYOUTIOMODE4_ANY., +15:u11:lor_length., +14:u12:lor_length, +14:u03:lor_length, +11:u06:field's, +14:u07:lor_offset, +15:u10:lor_length., +14:u11:lor_length, +11:u14:field's, +14:u02:lor_length, +11:u05:field's, +14:u06:lor_offset, +14:u10:lor_length, +11:u13:field's, +14:u14:lor_offset, +14:u01:lor_length, +11:u04:field's, +14:u05:lor_offset, +11:u12:field's, +14:u13:lor_offset, +14:u00:lor_length, +11:u03:field's, +14:u04:lor_offset, +11:u11:field's, +14:u12:lor_offset, +11:u02:field's, +14:u03:lor_offset, +11:u10:field's, +14:u11:lor_offset, +11:u01:field's, +14:u02:lor_offset, +14:u10:lor_offset, +11:u00:field's, +14:u01:lor_offset, +14:u00:lor_offset, +8:u08:606], +8:u07:606], +8:u06:606], +8:u05:606], +8:u04:606], +8:u03:606], +8:u02:606], +8:u01:606], +8:u00:606], +16:u08:acknowledges, +16:u07:acknowledges, +16:u06:acknowledges, +16:u05:acknowledges, +16:u04:acknowledges, +16:u03:acknowledges, +16:u02:acknowledges, +16:u01:acknowledges, +13:u14:mappings., +7:u08:why, +16:u00:acknowledges, +13:u13:mappings., +13:u12:mappings., +7:u07:why, +13:u11:mappings., +7:u06:why, +13:u10:mappings., +7:u14:why, +7:u05:why, +7:u13:why, +7:u04:why, +17:u08:clora_changed, +7:u12:why, +7:u22:why, +7:u23:why, +7:u03:why, +17:u07:clora_changed, +7:u11:why, +7:u02:why, +17:u06:clora_changed, +7:u10:why, +7:u01:why, +17:u05:clora_changed, +7:u00:why, +17:u04:clora_changed, +17:u03:clora_changed, +17:u02:clora_changed, +17:u01:clora_changed, +17:u14:clora_changed, +17:u00:clora_changed, +17:u13:clora_changed, +17:u12:clora_changed, +15:u08:lor_stateid, +17:u11:clora_changed, +17:u10:clora_changed, +15:u07:lor_stateid, +11:u08:20.3.4., +15:u06:lor_stateid, +15:u14:lor_stateid, +15:u05:lor_stateid, +11:u07:20.3.4., +11:u08:(recall, +15:u13:lor_stateid, +15:u04:lor_stateid, +11:u06:20.3.4., +15:u12:lor_stateid, +11:u14:20.3.4., +15:u03:lor_stateid, +11:u05:20.3.4., +11:u07:(recall, +15:u11:lor_stateid, +11:u13:20.3.4., +15:u02:lor_stateid, +11:u04:20.3.4., +11:u06:(recall, +15:u10:lor_stateid, +11:u12:20.3.4., +11:u14:(recall, +15:u01:lor_stateid, +11:u03:20.3.4., +11:u05:(recall, +11:u11:20.3.4., +11:u13:(recall, +15:u00:lor_stateid, +11:u02:20.3.4., +11:u04:(recall, +12:u08:pending), +11:u10:20.3.4., +11:u12:(recall, +8:u23:(rec, +11:u01:20.3.4., +11:u03:(recall, +12:u07:pending), +11:u11:(recall, +11:u00:20.3.4., +11:u02:(recall, +12:u06:pending), +11:u10:(recall, +11:u01:(recall, +12:u05:pending), +11:u00:(recall, +12:u04:pending), +10:u08:WRITE,, +12:u03:pending), +10:u07:WRITE,, +12:u02:pending), +10:u06:WRITE,, +12:u01:pending), +10:u05:WRITE,, +8:u08:607], +12:u00:pending), +10:u04:WRITE,, +8:u07:607], +10:u03:WRITE,, +8:u06:607], +10:u02:WRITE,, +8:u05:607], +10:u01:WRITE,, +8:u04:607], +10:u00:WRITE,, +8:u03:607], +8:u02:607], +8:u01:607], +11:u14:layout,, +8:u00:607], +11:u13:layout,, +11:u12:layout,, +11:u11:layout,, +11:u10:layout,, +17:u08:LAYOUTRETURNs, +17:u07:LAYOUTRETURNs, +17:u06:LAYOUTRETURNs, +17:u14:layoutreturns, +17:u05:LAYOUTRETURNs, +17:u13:layoutreturns, +17:u04:LAYOUTRETURNs, +17:u12:layoutreturns, +17:u03:LAYOUTRETURNs, +17:u11:layoutreturns, +17:u02:LAYOUTRETURNs, +17:u10:layoutreturns, +17:u01:LAYOUTRETURNs, +17:u00:LAYOUTRETURNs, +11:u08:20.4.1., +11:u07:20.4.1., +11:u06:20.4.1., +11:u14:20.4.1., +11:u05:20.4.1., +11:u13:20.4.1., +11:u04:20.4.1., +16:u08:notify_type4, +11:u12:20.4.1., +11:u03:20.4.1., +16:u07:notify_type4, +11:u11:20.4.1., +11:u02:20.4.1., +16:u06:notify_type4, +11:u10:20.4.1., +11:u01:20.4.1., +16:u05:notify_type4, +30:u14:notify4_change_child_attrs, +11:u00:20.4.1., +16:u04:notify_type4, +30:u13:notify4_change_child_attrs, +28:u14:notify4_change_dir_attrs, +34:u08:NOTIFY4_CHANGE_COOKIE_VERIFIER, +16:u03:notify_type4, +30:u12:notify4_change_child_attrs, +28:u13:notify4_change_dir_attrs, +16:u02:notify_type4, +30:u11:notify4_change_child_attrs, +28:u12:notify4_change_dir_attrs, +34:u07:NOTIFY4_CHANGE_COOKIE_VERIFIER, +16:u01:notify_type4, +30:u10:notify4_change_child_attrs, +28:u11:notify4_change_dir_attrs, +34:u06:NOTIFY4_CHANGE_COOKIE_VERIFIER, +16:u00:notify_type4, +11:u08:Changed, +28:u10:notify4_change_dir_attrs, +34:u14:notify4_change_cookie_verifier, +34:u05:NOTIFY4_CHANGE_COOKIE_VERIFIER, +11:u07:Changed, +17:u08:notify_entry4, +34:u13:notify4_change_cookie_verifier, +34:u04:NOTIFY4_CHANGE_COOKIE_VERIFIER, +11:u06:Changed, +17:u07:notify_entry4, +34:u12:notify4_change_cookie_verifier, +34:u03:NOTIFY4_CHANGE_COOKIE_VERIFIER, +11:u05:Changed, +17:u06:notify_entry4, +34:u11:notify4_change_cookie_verifier, +34:u02:NOTIFY4_CHANGE_COOKIE_VERIFIER, +11:u04:Changed, +17:u05:notify_entry4, +8:u08:608], +34:u10:notify4_change_cookie_verifier, +34:u01:NOTIFY4_CHANGE_COOKIE_VERIFIER, +11:u03:Changed, +17:u04:notify_entry4, +8:u07:608], +34:u00:NOTIFY4_CHANGE_COOKIE_VERIFIER, +11:u02:Changed, +17:u03:notify_entry4, +8:u06:608], +11:u01:Changed, +17:u02:notify_entry4, +8:u05:608], +12:u08:ne_file;, +11:u00:Changed, +17:u01:notify_entry4, +8:u04:608], +17:u00:notify_entry4, +8:u03:608], +12:u07:ne_file;, +13:u08:ne_attrs;, +8:u02:608], +12:u06:ne_file;, +8:u01:608], +12:u14:ne_file;, +12:u05:ne_file;, +13:u07:ne_attrs;, +8:u00:608], +12:u13:ne_file;, +12:u04:ne_file;, +13:u06:ne_attrs;, +12:u12:ne_file;, +13:u14:ne_attrs;, +7:u22:ne_, +8:u23:ne_f, +12:u03:ne_file;, +13:u05:ne_attrs;, +15:u08:prev_entry4, +12:u11:ne_file;, +13:u13:ne_attrs;, +12:u02:ne_file;, +13:u04:ne_attrs;, +18:u08:pe_prev_entry;, +15:u07:prev_entry4, +12:u10:ne_file;, +13:u12:ne_attrs;, +8:u23:ne_a, +12:u01:ne_file;, +13:u03:ne_attrs;, +15:u06:prev_entry4, +13:u11:ne_attrs;, +12:u00:ne_file;, +13:u02:ne_attrs;, +18:u07:pe_prev_entry;, +15:u05:prev_entry4, +13:u10:ne_attrs;, +17:u14:notify_entry4, +13:u01:ne_attrs;, +18:u06:pe_prev_entry;, +25:u08:pe_prev_entry_cookie;, +15:u04:prev_entry4, +17:u13:notify_entry4, +18:u14:pe_prev_entry;, +13:u00:ne_attrs;, +18:u05:pe_prev_entry;, +15:u03:prev_entry4, +17:u12:notify_entry4, +18:u13:pe_prev_entry;, +18:u04:pe_prev_entry;, +25:u07:pe_prev_entry_cookie;, +15:u02:prev_entry4, +17:u11:notify_entry4, +18:u12:pe_prev_entry;, +7:u22:pe_, +8:u23:pe_p, +18:u03:pe_prev_entry;, +25:u06:pe_prev_entry_cookie;, +15:u01:prev_entry4, +18:u08:notify_remove4, +17:u10:notify_entry4, +18:u11:pe_prev_entry;, +25:u14:pe_prev_entry_cookie;, +18:u02:pe_prev_entry;, +25:u05:pe_prev_entry_cookie;, +18:u08:nrm_old_entry;, +15:u00:prev_entry4, +18:u07:notify_remove4, +18:u10:pe_prev_entry;, +25:u13:pe_prev_entry_cookie;, +18:u01:pe_prev_entry;, +25:u04:pe_prev_entry_cookie;, +18:u06:notify_remove4, +25:u12:pe_prev_entry_cookie;, +18:u00:pe_prev_entry;, +25:u03:pe_prev_entry_cookie;, +18:u07:nrm_old_entry;, +25:u08:nrm_old_entry_cookie;, +18:u05:notify_remove4, +25:u11:pe_prev_entry_cookie;, +25:u02:pe_prev_entry_cookie;, +18:u06:nrm_old_entry;, +18:u04:notify_remove4, +25:u10:pe_prev_entry_cookie;, +18:u14:nrm_old_entry;, +25:u01:pe_prev_entry_cookie;, +18:u05:nrm_old_entry;, +25:u07:nrm_old_entry_cookie;, +18:u03:notify_remove4, +18:u13:nrm_old_entry;, +25:u00:pe_prev_entry_cookie;, +18:u04:nrm_old_entry;, +25:u06:nrm_old_entry_cookie;, +18:u02:notify_remove4, +15:u08:notify_add4, +18:u12:nrm_old_entry;, +25:u14:nrm_old_entry_cookie;, +6:u21:nr, +7:u22:nrm, +8:u23:nrm_, +18:u03:nrm_old_entry;, +25:u05:nrm_old_entry_cookie;, +18:u01:notify_remove4, +15:u07:notify_add4, +18:u11:nrm_old_entry;, +25:u13:nrm_old_entry_cookie;, +18:u02:nrm_old_entry;, +25:u04:nrm_old_entry_cookie;, +18:u00:notify_remove4, +15:u06:notify_add4, +18:u10:nrm_old_entry;, +25:u12:nrm_old_entry_cookie;, +18:u01:nrm_old_entry;, +25:u03:nrm_old_entry_cookie;, +15:u05:notify_add4, +25:u11:nrm_old_entry_cookie;, +18:u00:nrm_old_entry;, +25:u02:nrm_old_entry_cookie;, +15:u04:notify_add4, +25:u10:nrm_old_entry_cookie;, +25:u01:nrm_old_entry_cookie;, +21:u08:nad_old_entry<1>;, +15:u03:notify_add4, +25:u00:nrm_old_entry_cookie;, +15:u02:notify_add4, +21:u07:nad_old_entry<1>;, +18:u08:nad_new_entry;, +15:u01:notify_add4, +18:u14:notify_remove4, +21:u06:nad_old_entry<1>;, +15:u00:notify_add4, +18:u13:notify_remove4, +21:u14:nad_old_entry<1>;, +21:u05:nad_old_entry<1>;, +18:u07:nad_new_entry;, +18:u12:notify_remove4, +21:u13:nad_old_entry<1>;, +21:u04:nad_old_entry<1>;, +18:u06:nad_new_entry;, +28:u08:nad_new_entry_cookie<1>;, +18:u11:notify_remove4, +21:u12:nad_old_entry<1>;, +18:u14:nad_new_entry;, +7:u22:nad, +8:u23:nad_, +21:u03:nad_old_entry<1>;, +18:u05:nad_new_entry;, +18:u10:notify_remove4, +21:u11:nad_old_entry<1>;, +18:u13:nad_new_entry;, +21:u02:nad_old_entry<1>;, +18:u04:nad_new_entry;, +28:u07:nad_new_entry_cookie<1>;, +22:u08:nad_prev_entry<1>;, +21:u10:nad_old_entry<1>;, +18:u12:nad_new_entry;, +21:u01:nad_old_entry<1>;, +18:u03:nad_new_entry;, +28:u06:nad_new_entry_cookie<1>;, +18:u11:nad_new_entry;, +28:u14:nad_new_entry_cookie<1>;, +21:u00:nad_old_entry<1>;, +18:u02:nad_new_entry;, +28:u05:nad_new_entry_cookie<1>;, +22:u07:nad_prev_entry<1>;, +19:u08:nad_last_entry;, +18:u10:nad_new_entry;, +28:u13:nad_new_entry_cookie<1>;, +15:u14:prev_entry4, +18:u01:nad_new_entry;, +28:u04:nad_new_entry_cookie<1>;, +22:u06:nad_prev_entry<1>;, +28:u12:nad_new_entry_cookie<1>;, +15:u13:prev_entry4, +22:u14:nad_prev_entry<1>;, +18:u00:nad_new_entry;, +28:u03:nad_new_entry_cookie<1>;, +22:u05:nad_prev_entry<1>;, +19:u07:nad_last_entry;, +28:u11:nad_new_entry_cookie<1>;, +15:u12:prev_entry4, +22:u13:nad_prev_entry<1>;, +28:u02:nad_new_entry_cookie<1>;, +22:u04:nad_prev_entry<1>;, +19:u06:nad_last_entry;, +16:u08:notify_attr4, +28:u10:nad_new_entry_cookie<1>;, +15:u11:prev_entry4, +22:u12:nad_prev_entry<1>;, +19:u14:nad_last_entry;, +28:u01:nad_new_entry_cookie<1>;, +22:u03:nad_prev_entry<1>;, +19:u05:nad_last_entry;, +21:u08:na_changed_entry;, +16:u07:notify_attr4, +15:u10:prev_entry4, +22:u11:nad_prev_entry<1>;, +19:u13:nad_last_entry;, +28:u00:nad_new_entry_cookie<1>;, +22:u02:nad_prev_entry<1>;, +19:u04:nad_last_entry;, +16:u06:notify_attr4, +22:u10:nad_prev_entry<1>;, +19:u12:nad_last_entry;, +22:u01:nad_prev_entry<1>;, +19:u03:nad_last_entry;, +21:u07:na_changed_entry;, +16:u05:notify_attr4, +19:u11:nad_last_entry;, +22:u00:nad_prev_entry<1>;, +19:u02:nad_last_entry;, +21:u06:na_changed_entry;, +16:u04:notify_attr4, +18:u08:notify_rename4, +19:u10:nad_last_entry;, +21:u14:na_changed_entry;, +19:u01:nad_last_entry;, +21:u05:na_changed_entry;, +16:u03:notify_attr4, +18:u07:notify_rename4, +18:u08:nrn_old_entry;, +21:u13:na_changed_entry;, +19:u00:nad_last_entry;, +21:u04:na_changed_entry;, +18:u08:nrn_new_entry;, +16:u02:notify_attr4, +18:u06:notify_rename4, +18:u07:nrn_old_entry;, +21:u12:na_changed_entry;, +7:u22:na_, +8:u23:na_c, +21:u03:na_changed_entry;, +16:u01:notify_attr4, +18:u05:notify_rename4, +18:u06:nrn_old_entry;, +21:u11:na_changed_entry;, +21:u02:na_changed_entry;, +18:u07:nrn_new_entry;, +16:u00:notify_attr4, +18:u04:notify_rename4, +18:u05:nrn_old_entry;, +21:u10:na_changed_entry;, +15:u14:notify_add4, +21:u01:na_changed_entry;, +18:u06:nrn_new_entry;, +18:u03:notify_rename4, +18:u04:nrn_old_entry;, +20:u08:notify_verifier4, +15:u13:notify_add4, +18:u14:nrn_new_entry;, +21:u00:na_changed_entry;, +18:u05:nrn_new_entry;, +22:u08:nv_old_cookieverf;, +18:u02:notify_rename4, +18:u03:nrn_old_entry;, +20:u07:notify_verifier4, +15:u12:notify_add4, +18:u13:nrn_new_entry;, +18:u04:nrn_new_entry;, +18:u01:notify_rename4, +18:u02:nrn_old_entry;, +20:u06:notify_verifier4, +15:u11:notify_add4, +18:u12:nrn_new_entry;, +7:u22:nrn, +8:u23:nrn_, +18:u03:nrn_new_entry;, +22:u07:nv_old_cookieverf;, +22:u08:nv_new_cookieverf;, +18:u00:notify_rename4, +18:u01:nrn_old_entry;, +20:u05:notify_verifier4, +15:u10:notify_add4, +18:u11:nrn_new_entry;, +18:u02:nrn_new_entry;, +22:u06:nv_old_cookieverf;, +18:u00:nrn_old_entry;, +20:u04:notify_verifier4, +18:u10:nrn_new_entry;, +22:u14:nv_old_cookieverf;, +18:u01:nrn_new_entry;, +22:u05:nv_old_cookieverf;, +22:u07:nv_new_cookieverf;, +20:u03:notify_verifier4, +22:u13:nv_old_cookieverf;, +18:u00:nrn_new_entry;, +22:u04:nv_old_cookieverf;, +22:u06:nv_new_cookieverf;, +20:u02:notify_verifier4, +22:u12:nv_old_cookieverf;, +22:u14:nv_new_cookieverf;, +6:u21:nv, +7:u22:nv_, +8:u23:nv_o, +22:u03:nv_old_cookieverf;, +22:u05:nv_new_cookieverf;, +20:u01:notify_verifier4, +22:u11:nv_old_cookieverf;, +22:u13:nv_new_cookieverf;, +22:u02:nv_old_cookieverf;, +22:u04:nv_new_cookieverf;, +20:u00:notify_verifier4, +21:u08:notify_device_<>4, +22:u10:nv_old_cookieverf;, +22:u12:nv_new_cookieverf;, +8:u23:nv_n, +22:u01:nv_old_cookieverf;, +22:u03:nv_new_cookieverf;, +21:u07:notify_device_<>4, +22:u11:nv_new_cookieverf;, +22:u00:nv_old_cookieverf;, +22:u02:nv_new_cookieverf;, +21:u06:notify_device_<>4, +22:u10:nv_new_cookieverf;, +22:u01:nv_new_cookieverf;, +21:u05:notify_device_<>4, +22:u00:nv_new_cookieverf;, +21:u04:notify_device_<>4, +21:u03:notify_device_<>4, +8:u08:609], +21:u02:notify_device_<>4, +8:u07:609], +21:u01:notify_device_<>4, +8:u06:609], +21:u00:notify_device_<>4, +8:u05:609], +8:u04:609], +11:u08:notify4, +8:u03:609], +11:u07:notify4, +16:u08:notify_mask;, +8:u02:609], +11:u06:notify4, +15:u08:notifylist4, +8:u01:609], +11:u05:notify4, +16:u07:notify_mask;, +16:u08:notify_vals;, +8:u00:609], +11:u04:notify4, +16:u06:notify_mask;, +15:u07:notifylist4, +11:u03:notify4, +16:u14:notify_mask;, +16:u05:notify_mask;, +15:u06:notifylist4, +16:u07:notify_vals;, +11:u02:notify4, +16:u13:notify_mask;, +15:u14:notifylist4, +16:u04:notify_mask;, +15:u05:notifylist4, +16:u06:notify_vals;, +11:u01:notify4, +16:u12:notify_mask;, +15:u13:notifylist4, +16:u14:notify_vals;, +16:u03:notify_mask;, +15:u04:notifylist4, +16:u05:notify_vals;, +16:u08:cna_stateid;, +11:u00:notify4, +16:u11:notify_mask;, +15:u12:notifylist4, +16:u13:notify_vals;, +16:u02:notify_mask;, +15:u03:notifylist4, +16:u04:notify_vals;, +16:u10:notify_mask;, +15:u11:notifylist4, +16:u12:notify_vals;, +16:u01:notify_mask;, +15:u02:notifylist4, +16:u03:notify_vals;, +16:u07:cna_stateid;, +11:u08:cna_fh;, +15:u10:notifylist4, +16:u11:notify_vals;, +16:u00:notify_mask;, +15:u01:notifylist4, +16:u02:notify_vals;, +16:u06:cna_stateid;, +16:u10:notify_vals;, +16:u14:cna_stateid;, +15:u00:notifylist4, +16:u01:notify_vals;, +16:u05:cna_stateid;, +11:u07:cna_fh;, +18:u08:cna_changes<>;, +16:u13:cna_stateid;, +16:u00:notify_vals;, +16:u04:cna_stateid;, +11:u06:cna_fh;, +16:u12:cna_stateid;, +11:u14:cna_fh;, +6:u21:cn, +7:u22:cna, +8:u23:cna_, +16:u03:cna_stateid;, +11:u05:cna_fh;, +18:u07:cna_changes<>;, +11:u08:20.4.2., +16:u11:cna_stateid;, +11:u13:cna_fh;, +11:u14:notify4, +16:u02:cna_stateid;, +11:u04:cna_fh;, +18:u06:cna_changes<>;, +16:u10:cna_stateid;, +11:u12:cna_fh;, +11:u13:notify4, +18:u14:cna_changes<>;, +16:u01:cna_stateid;, +11:u03:cna_fh;, +18:u05:cna_changes<>;, +11:u07:20.4.2., +11:u11:cna_fh;, +11:u12:notify4, +18:u13:cna_changes<>;, +16:u00:cna_stateid;, +11:u02:cna_fh;, +18:u04:cna_changes<>;, +11:u06:20.4.2., +15:u08:cnr_status;, +11:u10:cna_fh;, +11:u11:notify4, +18:u12:cna_changes<>;, +11:u14:20.4.2., +11:u01:cna_fh;, +18:u03:cna_changes<>;, +11:u05:20.4.2., +11:u10:notify4, +18:u11:cna_changes<>;, +11:u13:20.4.2., +11:u00:cna_fh;, +18:u02:cna_changes<>;, +11:u04:20.4.2., +15:u07:cnr_status;, +11:u08:20.4.3., +18:u10:cna_changes<>;, +11:u12:20.4.2., +18:u01:cna_changes<>;, +11:u03:20.4.2., +15:u06:cnr_status;, +11:u11:20.4.2., +15:u14:cnr_status;, +18:u00:cna_changes<>;, +11:u02:20.4.2., +15:u05:cnr_status;, +11:u07:20.4.3., +11:u10:20.4.2., +15:u13:cnr_status;, +11:u01:20.4.2., +15:u04:cnr_status;, +11:u06:20.4.3., +15:u12:cnr_status;, +11:u14:20.4.3., +7:u22:cnr, +8:u23:cnr_, +11:u00:20.4.2., +15:u03:cnr_status;, +11:u05:20.4.3., +15:u11:cnr_status;, +11:u13:20.4.3., +15:u02:cnr_status;, +11:u04:20.4.3., +15:u10:cnr_status;, +11:u12:20.4.3., +15:u01:cnr_status;, +11:u03:20.4.3., +11:u11:20.4.3., +15:u00:cnr_status;, +11:u02:20.4.3., +11:u10:20.4.3., +11:u01:20.4.3., +11:u00:20.4.3., +11:u08:bitmaps, +11:u07:bitmaps, +11:u06:bitmaps, +11:u14:bitmaps, +11:u05:bitmaps, +11:u13:bitmaps, +11:u04:bitmaps, +11:u12:bitmaps, +11:u03:bitmaps, +11:u11:bitmaps, +11:u02:bitmaps, +11:u10:bitmaps, +11:u01:bitmaps, +11:u00:bitmaps, +14:u08:operation:, +14:u07:operation:, +14:u06:operation:, +14:u05:operation:, +8:u08:610], +14:u04:operation:, +8:u07:610], +14:u03:operation:, +8:u06:610], +14:u02:operation:, +8:u05:610], +14:u01:operation:, +8:u04:610], +14:u00:operation:, +8:u03:610], +8:u02:610], +8:u01:610], +8:u00:610], +11:u08:below),, +11:u07:below),, +11:u06:below),, +11:u05:below),, +19:u08:variable-length, +11:u04:below),, +11:u03:below),, +19:u07:variable-length, +11:u02:below),, +19:u06:variable-length, +11:u01:below),, +19:u14:variable-length, +19:u05:variable-length, +11:u00:below),, +19:u13:variable-length, +19:u04:variable-length, +24:u08:nad_new_entry_cookie, +19:u12:variable-length, +8:uI2:,),., +19:u03:variable-length, +12:u08:element), +12:u08:(another, +19:u11:variable-length, +8:uI1:,),., +19:u02:variable-length, +24:u07:nad_new_entry_cookie, +12:u07:(another, +19:u10:variable-length, +8:uI0:,),., +19:u01:variable-length, +24:u06:nad_new_entry_cookie, +12:u07:element), +12:u06:(another, +24:u14:nad_new_entry_cookie, +19:u00:variable-length, +24:u05:nad_new_entry_cookie, +12:u06:element), +12:u05:(another, +24:u13:nad_new_entry_cookie, +12:u14:element), +24:u04:nad_new_entry_cookie, +12:u05:element), +12:u04:(another, +24:u12:nad_new_entry_cookie, +12:u13:element), +24:u03:nad_new_entry_cookie, +12:u04:element), +12:u03:(another, +24:u11:nad_new_entry_cookie, +12:u12:element), +24:u02:nad_new_entry_cookie, +12:u03:element), +12:u02:(another, +24:u10:nad_new_entry_cookie, +12:u11:element), +24:u01:nad_new_entry_cookie, +12:u02:element), +12:u01:(another, +12:u10:element), +24:u00:nad_new_entry_cookie, +12:u01:element), +12:u00:(another, +12:u00:element), +36:u08:nrn_new_new_entry.nad_old_entry., +36:u07:nrn_new_new_entry.nad_old_entry., +36:u06:nrn_new_new_entry.nad_old_entry., +36:u14:nrn_new_new_entry.nad_old_entry., +36:u05:nrn_new_new_entry.nad_old_entry., +36:u13:nrn_new_new_entry.nad_old_entry., +36:u04:nrn_new_new_entry.nad_old_entry., +55:u08:NOTIFY4_CHANGE_CHILD_ATTRS/NOTIFY4_CHANGE_DIR_ATTRS, +36:u12:nrn_new_new_entry.nad_old_entry., +36:u03:nrn_new_new_entry.nad_old_entry., +36:u11:nrn_new_new_entry.nad_old_entry., +36:u02:nrn_new_new_entry.nad_old_entry., +55:u07:NOTIFY4_CHANGE_CHILD_ATTRS/NOTIFY4_CHANGE_DIR_ATTRS, +36:u10:nrn_new_new_entry.nad_old_entry., +36:u01:nrn_new_new_entry.nad_old_entry., +55:u06:NOTIFY4_CHANGE_CHILD_ATTRS/NOTIFY4_CHANGE_DIR_ATTRS, +55:u14:notify4_change_child_attrs/notify4_change_dir_attrs, +36:u00:nrn_new_new_entry.nad_old_entry., +55:u05:NOTIFY4_CHANGE_CHILD_ATTRS/NOTIFY4_CHANGE_DIR_ATTRS, +55:u13:notify4_change_child_attrs/notify4_change_dir_attrs, +55:u04:NOTIFY4_CHANGE_CHILD_ATTRS/NOTIFY4_CHANGE_DIR_ATTRS, +55:u12:notify4_change_child_attrs/notify4_change_dir_attrs, +55:u03:NOTIFY4_CHANGE_CHILD_ATTRS/NOTIFY4_CHANGE_DIR_ATTRS, +55:u11:notify4_change_child_attrs/notify4_change_dir_attrs, +55:u02:NOTIFY4_CHANGE_CHILD_ATTRS/NOTIFY4_CHANGE_DIR_ATTRS, +7:u08:ask, +55:u10:notify4_change_child_attrs/notify4_change_dir_attrs, +55:u01:NOTIFY4_CHANGE_CHILD_ATTRS/NOTIFY4_CHANGE_DIR_ATTRS, +7:u07:ask, +55:u00:NOTIFY4_CHANGE_CHILD_ATTRS/NOTIFY4_CHANGE_DIR_ATTRS, +7:u06:ask, +7:u05:ask, +7:u04:ask, +8:u08:611], +7:u03:ask, +8:u07:611], +7:u02:ask, +8:u06:611], +7:u01:ask, +8:u05:611], +7:u00:ask, +8:u04:611], +8:u03:611], +8:u02:611], +15:u08:system-wide, +8:u01:611], +15:u07:system-wide, +8:u00:611], +15:u06:system-wide, +15:u05:system-wide, +15:u04:system-wide, +13:u14:frequency, +15:u03:system-wide, +13:u13:frequency, +25:u08:dir_entry_notif_delay, +15:u02:system-wide, +13:u12:frequency, +15:u01:system-wide, +13:u11:frequency, +25:u07:dir_entry_notif_delay, +15:u00:system-wide, +13:u10:frequency, +25:u06:dir_entry_notif_delay, +25:u14:dir_entry_notif_delay, +25:u05:dir_entry_notif_delay, +25:u13:dir_entry_notif_delay, +25:u04:dir_entry_notif_delay, +12:u08:cookies., +25:u12:dir_entry_notif_delay, +8:u23:dir_, +25:u03:dir_entry_notif_delay, +25:u11:dir_entry_notif_delay, +25:u02:dir_entry_notif_delay, +12:u07:cookies., +25:u10:dir_entry_notif_delay, +14:u14:invalidate, +25:u01:dir_entry_notif_delay, +12:u06:cookies., +11:u08:20.5.1., +14:u13:invalidate, +12:u14:cookies., +25:u00:dir_entry_notif_delay, +12:u05:cookies., +14:u12:invalidate, +12:u13:cookies., +12:u04:cookies., +11:u07:20.5.1., +14:u11:invalidate, +12:u12:cookies., +12:u03:cookies., +11:u06:20.5.1., +12:u08:cpda_fh;, +14:u10:invalidate, +12:u11:cookies., +11:u14:20.5.1., +12:u02:cookies., +11:u05:20.5.1., +12:u10:cookies., +11:u13:20.5.1., +12:u01:cookies., +11:u04:20.5.1., +12:u07:cpda_fh;, +20:u08:cpda_delegation;, +11:u12:20.5.1., +12:u00:cookies., +11:u03:20.5.1., +12:u06:cpda_fh;, +11:u08:20.5.2., +20:u07:cpda_delegation;, +11:u11:20.5.1., +12:u14:cpda_fh;, +11:u02:20.5.1., +12:u05:cpda_fh;, +20:u06:cpda_delegation;, +11:u10:20.5.1., +12:u13:cpda_fh;, +11:u01:20.5.1., +12:u04:cpda_fh;, +11:u07:20.5.2., +20:u05:cpda_delegation;, +21:u08:CB_PUSH_DELEG4res, +12:u12:cpda_fh;, +7:u22:cpd, +8:u23:cpda, +11:u00:20.5.1., +12:u03:cpda_fh;, +11:u06:20.5.2., +20:u04:cpda_delegation;, +21:u07:CB_PUSH_DELEG4res, +16:u08:cpdr_status;, +12:u11:cpda_fh;, +11:u14:20.5.2., +12:u02:cpda_fh;, +11:u05:20.5.2., +11:u08:20.5.3., +20:u03:cpda_delegation;, +21:u06:CB_PUSH_DELEG4res, +16:u07:cpdr_status;, +12:u10:cpda_fh;, +11:u13:20.5.2., +12:u01:cpda_fh;, +11:u04:20.5.2., +20:u02:cpda_delegation;, +21:u05:CB_PUSH_DELEG4res, +16:u06:cpdr_status;, +11:u12:20.5.2., +12:u00:cpda_fh;, +11:u03:20.5.2., +11:u07:20.5.3., +20:u01:cpda_delegation;, +21:u04:CB_PUSH_DELEG4res, +16:u05:cpdr_status;, +11:u11:20.5.2., +11:u02:20.5.2., +11:u06:20.5.3., +20:u00:cpda_delegation;, +21:u03:CB_PUSH_DELEG4res, +16:u04:cpdr_status;, +11:u10:20.5.2., +11:u14:20.5.3., +11:u01:20.5.2., +11:u05:20.5.3., +21:u02:CB_PUSH_DELEG4res, +16:u03:cpdr_status;, +11:u13:20.5.3., +17:u14:cb_push_deleg, +11:u00:20.5.2., +11:u04:20.5.3., +21:u01:CB_PUSH_DELEG4res, +16:u02:cpdr_status;, +9:u08:offer, +11:u12:20.5.3., +17:u13:cb_push_deleg, +11:u03:20.5.3., +21:u00:CB_PUSH_DELEG4res, +16:u01:cpdr_status;, +9:u07:offer, +11:u11:20.5.3., +17:u12:cb_push_deleg, +11:u02:20.5.3., +16:u00:cpdr_status;, +9:u06:offer, +12:u08:delaying, +11:u10:20.5.3., +17:u11:cb_push_deleg, +11:u01:20.5.3., +9:u05:offer, +12:u07:delaying, +17:u10:cb_push_deleg, +11:u00:20.5.3., +9:u04:offer, +12:u06:delaying, +9:u03:offer, +12:u05:delaying, +9:u02:offer, +12:u04:delaying, +9:u01:offer, +12:u03:delaying, +9:u00:offer, +12:u02:delaying, +8:u08:612], +12:u01:delaying, +8:u07:612], +12:u00:delaying, +8:u06:612], +8:u05:612], +8:u04:612], +11:u08:20.5.4., +8:u03:612], +8:u02:612], +11:u07:20.5.4., +8:u01:612], +11:u06:20.5.4., +8:u00:612], +11:u14:20.5.4., +11:u05:20.5.4., +14:u08:cancelled,, +11:u13:20.5.4., +11:u04:20.5.4., +11:u12:20.5.4., +11:u03:20.5.4., +14:u07:cancelled,, +10:u08:wants., +11:u11:20.5.4., +11:u02:20.5.4., +14:u06:cancelled,, +25:u08:NFS4ERR_REJECT_DELAY,, +10:u07:wants., +11:u10:20.5.4., +14:u14:cancelled,, +11:u01:20.5.4., +14:u05:cancelled,, +10:u06:wants., +14:u13:cancelled,, +11:u00:20.5.4., +14:u04:cancelled,, +25:u07:NFS4ERR_REJECT_DELAY,, +10:u05:wants., +14:u12:cancelled,, +14:u03:cancelled,, +25:u06:NFS4ERR_REJECT_DELAY,, +11:u08:20.6.1., +10:u04:wants., +14:u11:cancelled,, +25:u14:nfs4err_reject_delay,, +14:u02:cancelled,, +25:u05:NFS4ERR_REJECT_DELAY,, +10:u03:wants., +14:u10:cancelled,, +25:u13:nfs4err_reject_delay,, +10:u14:decide, +14:u01:cancelled,, +25:u04:NFS4ERR_REJECT_DELAY,, +11:u07:20.6.1., +10:u02:wants., +28:u08:RCA4_TYPE_MASK_RDATA_DLG, +25:u12:nfs4err_reject_delay,, +10:u13:decide, +14:u00:cancelled,, +25:u03:NFS4ERR_REJECT_DELAY,, +11:u06:20.6.1., +10:u01:wants., +28:u07:RCA4_TYPE_MASK_RDATA_DLG, +25:u11:nfs4err_reject_delay,, +10:u12:decide, +11:u14:20.6.1., +25:u02:NFS4ERR_REJECT_DELAY,, +11:u05:20.6.1., +10:u00:wants., +28:u06:RCA4_TYPE_MASK_RDATA_DLG, +28:u08:RCA4_TYPE_MASK_WDATA_DLG, +25:u10:nfs4err_reject_delay,, +10:u11:decide, +11:u13:20.6.1., +25:u01:NFS4ERR_REJECT_DELAY,, +11:u04:20.6.1., +28:u05:RCA4_TYPE_MASK_RDATA_DLG, +28:u07:RCA4_TYPE_MASK_WDATA_DLG, +10:u10:decide, +11:u12:20.6.1., +25:u00:NFS4ERR_REJECT_DELAY,, +11:u03:20.6.1., +28:u04:RCA4_TYPE_MASK_RDATA_DLG, +28:u06:RCA4_TYPE_MASK_WDATA_DLG, +26:u08:RCA4_TYPE_MASK_DIR_DLG, +11:u11:20.6.1., +11:u02:20.6.1., +28:u03:RCA4_TYPE_MASK_RDATA_DLG, +28:u05:RCA4_TYPE_MASK_WDATA_DLG, +26:u07:RCA4_TYPE_MASK_DIR_DLG, +11:u10:20.6.1., +11:u01:20.6.1., +28:u02:RCA4_TYPE_MASK_RDATA_DLG, +28:u04:RCA4_TYPE_MASK_WDATA_DLG, +26:u06:RCA4_TYPE_MASK_DIR_DLG, +30:u08:RCA4_TYPE_MASK_FILE_LAYOUT, +11:u00:20.6.1., +28:u01:RCA4_TYPE_MASK_RDATA_DLG, +28:u03:RCA4_TYPE_MASK_WDATA_DLG, +26:u05:RCA4_TYPE_MASK_DIR_DLG, +30:u07:RCA4_TYPE_MASK_FILE_LAYOUT, +28:u00:RCA4_TYPE_MASK_RDATA_DLG, +28:u02:RCA4_TYPE_MASK_WDATA_DLG, +26:u04:RCA4_TYPE_MASK_DIR_DLG, +30:u06:RCA4_TYPE_MASK_FILE_LAYOUT, +29:u08:RCA4_TYPE_MASK_BLK_LAYOUT, +28:u01:RCA4_TYPE_MASK_WDATA_DLG, +26:u03:RCA4_TYPE_MASK_DIR_DLG, +30:u05:RCA4_TYPE_MASK_FILE_LAYOUT, +29:u07:RCA4_TYPE_MASK_BLK_LAYOUT, +28:u00:RCA4_TYPE_MASK_WDATA_DLG, +26:u02:RCA4_TYPE_MASK_DIR_DLG, +30:u04:RCA4_TYPE_MASK_FILE_LAYOUT, +29:u06:RCA4_TYPE_MASK_BLK_LAYOUT, +33:u08:RCA4_TYPE_MASK_OBJ_LAYOUT_MIN, +26:u01:RCA4_TYPE_MASK_DIR_DLG, +30:u03:RCA4_TYPE_MASK_FILE_LAYOUT, +29:u05:RCA4_TYPE_MASK_BLK_LAYOUT, +33:u07:RCA4_TYPE_MASK_OBJ_LAYOUT_MIN, +26:u00:RCA4_TYPE_MASK_DIR_DLG, +30:u02:RCA4_TYPE_MASK_FILE_LAYOUT, +29:u04:RCA4_TYPE_MASK_BLK_LAYOUT, +33:u06:RCA4_TYPE_MASK_OBJ_LAYOUT_MIN, +33:u08:RCA4_TYPE_MASK_OBJ_LAYOUT_MAX, +30:u01:RCA4_TYPE_MASK_FILE_LAYOUT, +29:u03:RCA4_TYPE_MASK_BLK_LAYOUT, +33:u05:RCA4_TYPE_MASK_OBJ_LAYOUT_MIN, +33:u07:RCA4_TYPE_MASK_OBJ_LAYOUT_MAX, +30:u00:RCA4_TYPE_MASK_FILE_LAYOUT, +29:u02:RCA4_TYPE_MASK_BLK_LAYOUT, +33:u04:RCA4_TYPE_MASK_OBJ_LAYOUT_MIN, +33:u06:RCA4_TYPE_MASK_OBJ_LAYOUT_MAX, +35:u08:RCA4_TYPE_MASK_OTHER_LAYOUT_MIN, +29:u01:RCA4_TYPE_MASK_BLK_LAYOUT, +33:u03:RCA4_TYPE_MASK_OBJ_LAYOUT_MIN, +33:u05:RCA4_TYPE_MASK_OBJ_LAYOUT_MAX, +35:u07:RCA4_TYPE_MASK_OTHER_LAYOUT_MIN, +7:u08:12;, +29:u00:RCA4_TYPE_MASK_BLK_LAYOUT, +33:u02:RCA4_TYPE_MASK_OBJ_LAYOUT_MIN, +33:u04:RCA4_TYPE_MASK_OBJ_LAYOUT_MAX, +35:u06:RCA4_TYPE_MASK_OTHER_LAYOUT_MIN, +7:u07:12;, +35:u08:RCA4_TYPE_MASK_OTHER_LAYOUT_MAX, +33:u01:RCA4_TYPE_MASK_OBJ_LAYOUT_MIN, +33:u03:RCA4_TYPE_MASK_OBJ_LAYOUT_MAX, +35:u05:RCA4_TYPE_MASK_OTHER_LAYOUT_MIN, +7:u06:12;, +35:u07:RCA4_TYPE_MASK_OTHER_LAYOUT_MAX, +7:u08:15;, +33:u00:RCA4_TYPE_MASK_OBJ_LAYOUT_MIN, +33:u02:RCA4_TYPE_MASK_OBJ_LAYOUT_MAX, +35:u04:RCA4_TYPE_MASK_OTHER_LAYOUT_MIN, +7:u05:12;, +35:u06:RCA4_TYPE_MASK_OTHER_LAYOUT_MAX, +7:u07:15;, +33:u01:RCA4_TYPE_MASK_OBJ_LAYOUT_MAX, +35:u03:RCA4_TYPE_MASK_OTHER_LAYOUT_MIN, +7:u04:12;, +35:u05:RCA4_TYPE_MASK_OTHER_LAYOUT_MAX, +7:u06:15;, +25:u08:craa_objects_to_keep;, +33:u00:RCA4_TYPE_MASK_OBJ_LAYOUT_MAX, +35:u02:RCA4_TYPE_MASK_OTHER_LAYOUT_MIN, +7:u03:12;, +35:u04:RCA4_TYPE_MASK_OTHER_LAYOUT_MAX, +7:u05:15;, +35:u01:RCA4_TYPE_MASK_OTHER_LAYOUT_MIN, +7:u02:12;, +35:u03:RCA4_TYPE_MASK_OTHER_LAYOUT_MAX, +7:u04:15;, +25:u07:craa_objects_to_keep;, +19:u08:craa_type_mask;, +35:u00:RCA4_TYPE_MASK_OTHER_LAYOUT_MIN, +7:u01:12;, +35:u02:RCA4_TYPE_MASK_OTHER_LAYOUT_MAX, +7:u03:15;, +25:u06:craa_objects_to_keep;, +7:u00:12;, +35:u01:RCA4_TYPE_MASK_OTHER_LAYOUT_MAX, +7:u02:15;, +25:u14:craa_objects_to_keep;, +25:u05:craa_objects_to_keep;, +19:u07:craa_type_mask;, +11:u08:20.6.2., +35:u00:RCA4_TYPE_MASK_OTHER_LAYOUT_MAX, +7:u01:15;, +25:u13:craa_objects_to_keep;, +25:u04:craa_objects_to_keep;, +19:u06:craa_type_mask;, +7:u00:15;, +25:u12:craa_objects_to_keep;, +19:u14:craa_type_mask;, +7:u22:cra, +8:u23:craa, +25:u03:craa_objects_to_keep;, +19:u05:craa_type_mask;, +11:u07:20.6.2., +21:u08:CB_RECALL_ANY4res, +25:u11:craa_objects_to_keep;, +19:u13:craa_type_mask;, +25:u02:craa_objects_to_keep;, +19:u04:craa_type_mask;, +11:u06:20.6.2., +16:u08:crar_status;, +21:u07:CB_RECALL_ANY4res, +25:u10:craa_objects_to_keep;, +19:u12:craa_type_mask;, +11:u14:20.6.2., +25:u01:craa_objects_to_keep;, +19:u03:craa_type_mask;, +11:u05:20.6.2., +21:u06:CB_RECALL_ANY4res, +19:u11:craa_type_mask;, +11:u13:20.6.2., +25:u00:craa_objects_to_keep;, +19:u02:craa_type_mask;, +11:u04:20.6.2., +16:u07:crar_status;, +11:u08:20.6.3., +21:u05:CB_RECALL_ANY4res, +19:u10:craa_type_mask;, +11:u12:20.6.2., +19:u01:craa_type_mask;, +11:u03:20.6.2., +16:u06:crar_status;, +21:u04:CB_RECALL_ANY4res, +11:u11:20.6.2., +16:u14:crar_status;, +19:u00:craa_type_mask;, +11:u02:20.6.2., +16:u05:crar_status;, +11:u07:20.6.3., +21:u03:CB_RECALL_ANY4res, +11:u10:20.6.2., +16:u13:crar_status;, +11:u01:20.6.2., +16:u04:crar_status;, +11:u06:20.6.3., +21:u02:CB_RECALL_ANY4res, +12:u08:objects,, +16:u12:crar_status;, +11:u14:20.6.3., +8:u23:crar, +11:u00:20.6.2., +16:u03:crar_status;, +11:u05:20.6.3., +21:u01:CB_RECALL_ANY4res, +12:u07:objects,, +16:u11:crar_status;, +11:u13:20.6.3., +16:u02:crar_status;, +11:u04:20.6.3., +21:u00:CB_RECALL_ANY4res, +12:u06:objects,, +16:u10:crar_status;, +11:u12:20.6.3., +16:u01:crar_status;, +11:u03:20.6.3., +12:u05:objects,, +11:u11:20.6.3., +16:u00:crar_status;, +11:u02:20.6.3., +12:u04:objects,, +11:u10:20.6.3., +11:u01:20.6.3., +12:u03:objects,, +8:u08:613], +11:u00:20.6.3., +12:u02:objects,, +8:u07:613], +12:u01:objects,, +8:u06:613], +12:u00:objects,, +8:u05:613], +8:u04:613], +8:u03:613], +8:u02:613], +8:u01:613], +8:u00:613], +11:u08:keeping, +11:u07:keeping, +11:u06:keeping, +11:u05:keeping, +11:u04:keeping, +11:u03:keeping, +11:u02:keeping, +11:u01:keeping, +11:u00:keeping, +9:u08:pools, +17:u14:requirements., +9:u07:pools, +17:u13:requirements., +9:u06:pools, +17:u12:requirements., +13:u08:involved,, +9:u05:pools, +17:u11:requirements., +9:u04:pools, +17:u10:requirements., +13:u07:involved,, +12:u08:limited., +9:u03:pools, +13:u06:involved,, +15:u08:usefulness,, +9:u02:pools, +13:u14:involved,, +13:u05:involved,, +12:u07:limited., +9:u01:pools, +13:u13:involved,, +13:u04:involved,, +12:u06:limited., +15:u07:usefulness,, +9:u00:pools, +13:u12:involved,, +12:u14:limited., +13:u03:involved,, +12:u05:limited., +15:u06:usefulness,, +13:u11:involved,, +12:u13:limited., +15:u14:usefulness,, +13:u02:involved,, +12:u04:limited., +15:u05:usefulness,, +13:u10:involved,, +12:u12:limited., +15:u13:usefulness,, +13:u01:involved,, +12:u03:limited., +15:u04:usefulness,, +12:u11:limited., +15:u12:usefulness,, +13:u00:involved,, +12:u02:limited., +15:u03:usefulness,, +12:u10:limited., +15:u11:usefulness,, +12:u01:limited., +15:u02:usefulness,, +15:u10:usefulness,, +12:u00:limited., +15:u01:usefulness,, +9:u08:area), +15:u00:usefulness,, +9:u07:area), +9:u06:area), +9:u14:area), +7:uI2:(.,, +9:u05:area), +9:u13:area), +7:uI1:(.,, +9:u04:area), +9:u12:area), +8:u23:area, +7:uI0:(.,, +9:u03:area), +9:u11:area), +28:u14:rca4_type_mask_rdata_dlg, +9:u02:area), +9:u10:area), +28:u13:rca4_type_mask_rdata_dlg, +9:u01:area), +28:u12:rca4_type_mask_rdata_dlg, +6:u21:RC, +7:u22:RCA, +8:u23:RCA4, +9:u00:area), +28:u11:rca4_type_mask_rdata_dlg, +28:u14:rca4_type_mask_wdata_dlg, +8:u08:614], +28:u10:rca4_type_mask_rdata_dlg, +28:u13:rca4_type_mask_wdata_dlg, +8:u07:614], +28:u12:rca4_type_mask_wdata_dlg, +8:u06:614], +28:u11:rca4_type_mask_wdata_dlg, +8:u05:614], +28:u10:rca4_type_mask_wdata_dlg, +8:u04:614], +8:u03:614], +8:u02:614], +8:u01:614], +8:u00:614], +26:u14:rca4_type_mask_dir_dlg, +26:u13:rca4_type_mask_dir_dlg, +26:u12:rca4_type_mask_dir_dlg, +30:u14:rca4_type_mask_file_layout, +8:u08:[44], +26:u11:rca4_type_mask_dir_dlg, +30:u13:rca4_type_mask_file_layout, +8:u07:[44], +26:u10:rca4_type_mask_dir_dlg, +30:u12:rca4_type_mask_file_layout, +29:u14:rca4_type_mask_blk_layout, +8:u06:[44], +30:u11:rca4_type_mask_file_layout, +29:u13:rca4_type_mask_blk_layout, +8:u05:[44], +30:u10:rca4_type_mask_file_layout, +29:u12:rca4_type_mask_blk_layout, +33:u14:rca4_type_mask_obj_layout_min, +16:u08:experimental, +8:u04:[44], +29:u11:rca4_type_mask_blk_layout, +33:u13:rca4_type_mask_obj_layout_min, +8:u03:[44], +29:u10:rca4_type_mask_blk_layout, +33:u12:rca4_type_mask_obj_layout_min, +35:u14:rca4_type_mask_other_layout_min, +16:u07:experimental, +8:u02:[44], +33:u11:rca4_type_mask_obj_layout_min, +35:u13:rca4_type_mask_other_layout_min, +16:u06:experimental, +8:u01:[44], +33:u10:rca4_type_mask_obj_layout_min, +35:u12:rca4_type_mask_other_layout_min, +16:u14:experimental, +16:u05:experimental, +8:u00:[44], +35:u11:rca4_type_mask_other_layout_min, +16:u13:experimental, +10:uI2:-(..)., +16:u04:experimental, +35:u10:rca4_type_mask_other_layout_min, +16:u12:experimental, +10:uI1:-(..)., +16:u03:experimental, +16:u11:experimental, +10:uI0:-(..)., +16:u02:experimental, +16:u10:experimental, +16:u01:experimental, +16:u00:experimental, +13:u08:harmless., +13:u07:harmless., +13:u06:harmless., +13:u14:harmless., +13:u05:harmless., +13:u13:harmless., +13:u04:harmless., +13:u12:harmless., +8:u23:harm, +13:u03:harmless., +8:u08:615], +13:u11:harmless., +13:u02:harmless., +8:u07:615], +13:u10:harmless., +13:u01:harmless., +8:u06:615], +13:u00:harmless., +8:u05:615], +8:u04:615], +8:u03:615], +8:u02:615], +8:u01:615], +8:u00:615], +16:u08:insufficient, +16:u07:insufficient, +16:u06:insufficient, +13:u08:optimally, +16:u14:insufficient, +16:u05:insufficient, +16:u13:insufficient, +16:u04:insufficient, +13:u07:optimally, +16:u12:insufficient, +8:u23:insu, +16:u03:insufficient, +13:u06:optimally, +16:u11:insufficient, +13:u14:optimally, +16:u02:insufficient, +13:u05:optimally, +16:u10:insufficient, +13:u13:optimally, +16:u01:insufficient, +13:u04:optimally, +13:u12:optimally, +16:u00:insufficient, +13:u03:optimally, +11:u08:20.6.4., +13:u11:optimally, +13:u02:optimally, +13:u10:optimally, +13:u01:optimally, +11:u07:20.6.4., +13:u00:optimally, +11:u06:20.6.4., +11:u14:20.6.4., +11:u05:20.6.4., +11:u13:20.6.4., +11:u04:20.6.4., +11:u12:20.6.4., +9:u14:mask., +11:u03:20.6.4., +11:u11:20.6.4., +9:u13:mask., +11:u02:20.6.4., +10:u08:usage., +11:u10:20.6.4., +9:u12:mask., +11:u01:20.6.4., +9:u11:mask., +11:u00:20.6.4., +10:u07:usage., +9:u10:mask., +10:u06:usage., +10:u14:usage., +10:u05:usage., +10:u13:usage., +10:u04:usage., +11:u08:20.7.1., +10:u12:usage., +10:u03:usage., +10:u11:usage., +10:u02:usage., +11:u07:20.7.1., +11:u08:20.7.2., +10:u10:usage., +10:u01:usage., +11:u06:20.7.1., +11:u14:20.7.1., +10:u00:usage., +11:u05:20.7.1., +11:u07:20.7.2., +11:u13:20.7.1., +11:u04:20.7.1., +11:u06:20.7.2., +16:u08:croa_status;, +11:u12:20.7.1., +11:u14:20.7.2., +11:u03:20.7.1., +11:u05:20.7.2., +11:u11:20.7.1., +11:u13:20.7.2., +11:u02:20.7.1., +11:u04:20.7.2., +16:u07:croa_status;, +11:u10:20.7.1., +11:u12:20.7.2., +11:u01:20.7.1., +11:u03:20.7.2., +16:u06:croa_status;, +11:u11:20.7.2., +16:u14:croa_status;, +11:u00:20.7.1., +11:u02:20.7.2., +16:u05:croa_status;, +11:u10:20.7.2., +16:u13:croa_status;, +11:u01:20.7.2., +16:u04:croa_status;, +8:u08:616], +16:u12:croa_status;, +7:u22:cro, +8:u23:croa, +11:u00:20.7.2., +16:u03:croa_status;, +8:u07:616], +16:u11:croa_status;, +16:u02:croa_status;, +8:u06:616], +16:u10:croa_status;, +16:u01:croa_status;, +11:u08:20.7.3., +8:u05:616], +16:u00:croa_status;, +8:u04:616], +11:u07:20.7.3., +8:u03:616], +11:u06:20.7.3., +8:u02:616], +11:u14:20.7.3., +11:u05:20.7.3., +8:u01:616], +11:u13:20.7.3., +11:u04:20.7.3., +8:u00:616], +14:u08:LAYOUTGET., +11:u12:20.7.3., +11:u03:20.7.3., +14:u07:LAYOUTGET., +11:u11:20.7.3., +11:u02:20.7.3., +14:u06:LAYOUTGET., +11:u10:20.7.3., +11:u01:20.7.3., +14:u05:LAYOUTGET., +11:u00:20.7.3., +14:u04:LAYOUTGET., +14:u03:LAYOUTGET., +14:u02:LAYOUTGET., +14:u01:LAYOUTGET., +25:u08:craa_objects_to_keep,, +14:u00:LAYOUTGET., +25:u07:craa_objects_to_keep,, +25:u06:craa_objects_to_keep,, +12:u08:responds, +25:u14:craa_objects_to_keep,, +25:u05:craa_objects_to_keep,, +10:u08:slowly, +25:u13:craa_objects_to_keep,, +25:u04:craa_objects_to_keep,, +12:u07:responds, +10:u07:slowly, +25:u12:craa_objects_to_keep,, +25:u03:craa_objects_to_keep,, +12:u06:responds, +10:u06:slowly, +25:u11:craa_objects_to_keep,, +12:u14:responds, +25:u02:craa_objects_to_keep,, +12:u05:responds, +11:u08:acquire, +10:u05:slowly, +25:u10:craa_objects_to_keep,, +12:u13:responds, +25:u01:craa_objects_to_keep,, +12:u04:responds, +10:u04:slowly, +12:u12:responds, +25:u00:craa_objects_to_keep,, +12:u03:responds, +11:u07:acquire, +10:u03:slowly, +12:u11:responds, +12:u02:responds, +11:u06:acquire, +10:u02:slowly, +12:u10:responds, +11:u14:acquire, +12:u01:responds, +11:u05:acquire, +11:u08:20.8.1., +10:u01:slowly, +11:u13:acquire, +28:u14:cb_recallable_obj_avail,, +12:u00:responds, +11:u04:acquire, +10:u00:slowly, +11:u12:acquire, +28:u13:cb_recallable_obj_avail,, +11:u03:acquire, +11:u07:20.8.1., +11:u11:acquire, +28:u12:cb_recallable_obj_avail,, +11:u02:acquire, +11:u06:20.8.1., +30:u08:rsa_target_highest_slotid;, +11:u10:acquire, +28:u11:cb_recallable_obj_avail,, +11:u14:20.8.1., +11:u01:acquire, +11:u05:20.8.1., +28:u10:cb_recallable_obj_avail,, +11:u13:20.8.1., +11:u00:acquire, +11:u04:20.8.1., +30:u07:rsa_target_highest_slotid;, +11:u08:20.8.2., +11:u12:20.8.1., +11:u03:20.8.1., +30:u06:rsa_target_highest_slotid;, +11:u11:20.8.1., +30:u14:rsa_target_highest_slotid;, +11:u02:20.8.1., +30:u05:rsa_target_highest_slotid;, +11:u07:20.8.2., +11:u10:20.8.1., +30:u13:rsa_target_highest_slotid;, +11:u01:20.8.1., +30:u04:rsa_target_highest_slotid;, +11:u06:20.8.2., +15:u08:rsr_status;, +30:u12:rsa_target_highest_slotid;, +11:u14:20.8.2., +7:u22:rsa, +8:u23:rsa_, +11:u00:20.8.1., +30:u03:rsa_target_highest_slotid;, +11:u05:20.8.2., +30:u11:rsa_target_highest_slotid;, +11:u13:20.8.2., +30:u02:rsa_target_highest_slotid;, +11:u04:20.8.2., +15:u07:rsr_status;, +11:u08:20.8.3., +30:u10:rsa_target_highest_slotid;, +11:u12:20.8.2., +30:u01:rsa_target_highest_slotid;, +11:u03:20.8.2., +15:u06:rsr_status;, +11:u11:20.8.2., +15:u14:rsr_status;, +30:u00:rsa_target_highest_slotid;, +11:u02:20.8.2., +15:u05:rsr_status;, +11:u07:20.8.3., +11:u10:20.8.2., +15:u13:rsr_status;, +11:u01:20.8.2., +15:u04:rsr_status;, +11:u06:20.8.3., +15:u12:rsr_status;, +11:u14:20.8.3., +7:u22:rsr, +8:u23:rsr_, +11:u00:20.8.2., +15:u03:rsr_status;, +11:u05:20.8.3., +15:u11:rsr_status;, +11:u13:20.8.3., +15:u02:rsr_status;, +11:u04:20.8.3., +15:u10:rsr_status;, +11:u12:20.8.3., +15:u01:rsr_status;, +11:u03:20.8.3., +11:u11:20.8.3., +15:u00:rsr_status;, +11:u02:20.8.3., +8:u08:617], +11:u10:20.8.3., +6:uI2:)', +11:u01:20.8.3., +8:u07:617], +6:uI1:)', +11:u00:20.8.3., +8:u06:617], +6:uI0:)', +8:u05:617], +8:u04:617], +12:u08:channel., +8:u03:617], +12:u07:channel., +8:u02:617], +12:u06:channel., +8:u01:617], +12:u05:channel., +8:u00:617], +12:u04:channel., +12:u03:channel., +12:u02:channel., +12:u01:channel., +30:u08:rsa_target_highest_slotid., +12:u00:channel., +30:u07:rsa_target_highest_slotid., +30:u06:rsa_target_highest_slotid., +30:u14:rsa_target_highest_slotid., +30:u05:rsa_target_highest_slotid., +11:u08:20.8.4., +30:u13:rsa_target_highest_slotid., +30:u04:rsa_target_highest_slotid., +30:u12:rsa_target_highest_slotid., +10:u14:enough, +30:u03:rsa_target_highest_slotid., +11:u07:20.8.4., +30:u11:rsa_target_highest_slotid., +10:u13:enough, +30:u02:rsa_target_highest_slotid., +11:u06:20.8.4., +13:u08:asserting, +30:u10:rsa_target_highest_slotid., +10:u12:enough, +11:u14:20.8.4., +7:u22:eno, +8:u23:enou, +30:u01:rsa_target_highest_slotid., +11:u05:20.8.4., +10:u11:enough, +11:u13:20.8.4., +30:u00:rsa_target_highest_slotid., +11:u04:20.8.4., +13:u07:asserting, +10:u10:enough, +11:u12:20.8.4., +11:u03:20.8.4., +13:u06:asserting, +11:u11:20.8.4., +13:u14:asserting, +11:u02:20.8.4., +13:u05:asserting, +11:u10:20.8.4., +13:u13:asserting, +11:u01:20.8.4., +13:u04:asserting, +30:u08:rsa_target_highest_slotid,, +13:u12:asserting, +11:u00:20.8.4., +13:u03:asserting, +13:u11:asserting, +13:u02:asserting, +30:u07:rsa_target_highest_slotid,, +13:u10:asserting, +13:u01:asserting, +30:u06:rsa_target_highest_slotid,, +11:u08:20.9.1., +30:u14:rsa_target_highest_slotid,, +13:u00:asserting, +30:u05:rsa_target_highest_slotid,, +30:u13:rsa_target_highest_slotid,, +30:u04:rsa_target_highest_slotid,, +11:u07:20.9.1., +30:u12:rsa_target_highest_slotid,, +30:u03:rsa_target_highest_slotid,, +11:u06:20.9.1., +30:u11:rsa_target_highest_slotid,, +11:u14:20.9.1., +30:u02:rsa_target_highest_slotid,, +11:u05:20.9.1., +8:u08:618], +30:u10:rsa_target_highest_slotid,, +11:u13:20.9.1., +30:u01:rsa_target_highest_slotid,, +11:u04:20.9.1., +8:u07:618], +11:u12:20.9.1., +30:u00:rsa_target_highest_slotid,, +11:u03:20.9.1., +8:u06:618], +11:u11:20.9.1., +11:u02:20.9.1., +8:u05:618], +11:u10:20.9.1., +11:u01:20.9.1., +8:u04:618], +19:u08:referring_call4, +11:u00:20.9.1., +18:u08:rc_sequenceid;, +8:u03:618], +19:u07:referring_call4, +8:u02:618], +19:u06:referring_call4, +18:u07:rc_sequenceid;, +14:u08:rc_slotid;, +8:u01:618], +19:u05:referring_call4, +18:u06:rc_sequenceid;, +8:u00:618], +19:u04:referring_call4, +18:u14:rc_sequenceid;, +18:u05:rc_sequenceid;, +14:u07:rc_slotid;, +19:u03:referring_call4, +18:u13:rc_sequenceid;, +18:u04:rc_sequenceid;, +14:u06:rc_slotid;, +19:u02:referring_call4, +24:u08:referring_call_list4, +18:u12:rc_sequenceid;, +14:u14:rc_slotid;, +7:u22:rc_, +8:u23:rc_s, +18:u03:rc_sequenceid;, +14:u05:rc_slotid;, +18:u08:rcl_sessionid;, +19:u01:referring_call4, +24:u07:referring_call_list4, +18:u11:rc_sequenceid;, +14:u13:rc_slotid;, +18:u02:rc_sequenceid;, +14:u04:rc_slotid;, +19:u00:referring_call4, +24:u06:referring_call_list4, +18:u10:rc_sequenceid;, +14:u12:rc_slotid;, +18:u01:rc_sequenceid;, +14:u03:rc_slotid;, +18:u07:rcl_sessionid;, +24:u05:referring_call_list4, +26:u08:rcl_referring_calls<>;, +14:u11:rc_slotid;, +18:u00:rc_sequenceid;, +14:u02:rc_slotid;, +18:u06:rcl_sessionid;, +24:u04:referring_call_list4, +26:u07:rcl_referring_calls<>;, +14:u10:rc_slotid;, +18:u14:rcl_sessionid;, +14:u01:rc_slotid;, +18:u05:rcl_sessionid;, +24:u03:referring_call_list4, +26:u06:rcl_referring_calls<>;, +18:u13:rcl_sessionid;, +19:u14:referring_call4, +14:u00:rc_slotid;, +18:u04:rcl_sessionid;, +18:u08:csa_sessionid;, +24:u02:referring_call_list4, +26:u05:rcl_referring_calls<>;, +18:u12:rcl_sessionid;, +19:u13:referring_call4, +7:u22:rcl, +8:u23:rcl_, +18:u03:rcl_sessionid;, +24:u01:referring_call_list4, +26:u04:rcl_referring_calls<>;, +18:u11:rcl_sessionid;, +19:u12:referring_call4, +18:u02:rcl_sessionid;, +18:u07:csa_sessionid;, +19:u08:csa_sequenceid;, +24:u00:referring_call_list4, +26:u03:rcl_referring_calls<>;, +18:u10:rcl_sessionid;, +19:u11:referring_call4, +18:u01:rcl_sessionid;, +18:u06:csa_sessionid;, +26:u02:rcl_referring_calls<>;, +19:u10:referring_call4, +18:u14:csa_sessionid;, +18:u00:rcl_sessionid;, +18:u05:csa_sessionid;, +19:u07:csa_sequenceid;, +15:u08:csa_slotid;, +26:u01:rcl_referring_calls<>;, +18:u13:csa_sessionid;, +18:u04:csa_sessionid;, +19:u06:csa_sequenceid;, +26:u00:rcl_referring_calls<>;, +18:u12:csa_sessionid;, +19:u14:csa_sequenceid;, +18:u03:csa_sessionid;, +19:u05:csa_sequenceid;, +15:u07:csa_slotid;, +23:u08:csa_highest_slotid;, +18:u11:csa_sessionid;, +19:u13:csa_sequenceid;, +18:u02:csa_sessionid;, +19:u04:csa_sequenceid;, +15:u06:csa_slotid;, +18:u10:csa_sessionid;, +19:u12:csa_sequenceid;, +15:u14:csa_slotid;, +18:u01:csa_sessionid;, +19:u03:csa_sequenceid;, +15:u05:csa_slotid;, +23:u07:csa_highest_slotid;, +18:u08:csa_cachethis;, +19:u11:csa_sequenceid;, +15:u13:csa_slotid;, +18:u00:csa_sessionid;, +19:u02:csa_sequenceid;, +15:u04:csa_slotid;, +23:u06:csa_highest_slotid;, +19:u10:csa_sequenceid;, +15:u12:csa_slotid;, +23:u14:csa_highest_slotid;, +19:u01:csa_sequenceid;, +15:u03:csa_slotid;, +23:u05:csa_highest_slotid;, +18:u07:csa_cachethis;, +31:u08:csa_referring_call_lists<>;, +15:u11:csa_slotid;, +23:u13:csa_highest_slotid;, +19:u00:csa_sequenceid;, +15:u02:csa_slotid;, +23:u04:csa_highest_slotid;, +18:u06:csa_cachethis;, +11:u08:20.9.2., +31:u07:csa_referring_call_lists<>;, +15:u10:csa_slotid;, +23:u12:csa_highest_slotid;, +18:u14:csa_cachethis;, +15:u01:csa_slotid;, +23:u03:csa_highest_slotid;, +18:u05:csa_cachethis;, +31:u06:csa_referring_call_lists<>;, +23:u11:csa_highest_slotid;, +18:u13:csa_cachethis;, +24:u14:referring_call_list4, +15:u00:csa_slotid;, +23:u02:csa_highest_slotid;, +18:u04:csa_cachethis;, +11:u07:20.9.2., +31:u05:csa_referring_call_lists<>;, +21:u08:CB_SEQUENCE4resok, +23:u10:csa_highest_slotid;, +18:u12:csa_cachethis;, +24:u13:referring_call_list4, +23:u01:csa_highest_slotid;, +18:u03:csa_cachethis;, +11:u06:20.9.2., +31:u04:csa_referring_call_lists<>;, +21:u07:CB_SEQUENCE4resok, +18:u11:csa_cachethis;, +24:u12:referring_call_list4, +11:u14:20.9.2., +23:u00:csa_highest_slotid;, +18:u02:csa_cachethis;, +11:u05:20.9.2., +31:u03:csa_referring_call_lists<>;, +21:u06:CB_SEQUENCE4resok, +18:u10:csa_cachethis;, +24:u11:referring_call_list4, +11:u13:20.9.2., +18:u01:csa_cachethis;, +11:u04:20.9.2., +19:u08:csr_sequenceid;, +31:u02:csa_referring_call_lists<>;, +21:u05:CB_SEQUENCE4resok, +24:u10:referring_call_list4, +11:u12:20.9.2., +18:u00:csa_cachethis;, +11:u03:20.9.2., +31:u01:csa_referring_call_lists<>;, +21:u04:CB_SEQUENCE4resok, +11:u11:20.9.2., +11:u02:20.9.2., +19:u07:csr_sequenceid;, +15:u08:csr_slotid;, +31:u00:csa_referring_call_lists<>;, +21:u03:CB_SEQUENCE4resok, +11:u10:20.9.2., +11:u01:20.9.2., +19:u06:csr_sequenceid;, +21:u02:CB_SEQUENCE4resok, +19:u14:csr_sequenceid;, +11:u00:20.9.2., +19:u05:csr_sequenceid;, +15:u07:csr_slotid;, +23:u08:csr_highest_slotid;, +21:u01:CB_SEQUENCE4resok, +19:u13:csr_sequenceid;, +19:u04:csr_sequenceid;, +15:u06:csr_slotid;, +21:u00:CB_SEQUENCE4resok, +19:u12:csr_sequenceid;, +15:u14:csr_slotid;, +19:u03:csr_sequenceid;, +15:u05:csr_slotid;, +23:u07:csr_highest_slotid;, +30:u08:csr_target_highest_slotid;, +19:u11:csr_sequenceid;, +15:u13:csr_slotid;, +19:u02:csr_sequenceid;, +15:u04:csr_slotid;, +23:u06:csr_highest_slotid;, +19:u10:csr_sequenceid;, +15:u12:csr_slotid;, +23:u14:csr_highest_slotid;, +19:u01:csr_sequenceid;, +15:u03:csr_slotid;, +23:u05:csr_highest_slotid;, +30:u07:csr_target_highest_slotid;, +15:u11:csr_slotid;, +23:u13:csr_highest_slotid;, +19:u00:csr_sequenceid;, +15:u02:csr_slotid;, +23:u04:csr_highest_slotid;, +30:u06:csr_target_highest_slotid;, +15:u10:csr_slotid;, +23:u12:csr_highest_slotid;, +30:u14:csr_target_highest_slotid;, +15:u01:csr_slotid;, +23:u03:csr_highest_slotid;, +30:u05:csr_target_highest_slotid;, +23:u11:csr_highest_slotid;, +30:u13:csr_target_highest_slotid;, +15:u00:csr_slotid;, +23:u02:csr_highest_slotid;, +30:u04:csr_target_highest_slotid;, +23:u10:csr_highest_slotid;, +30:u12:csr_target_highest_slotid;, +23:u01:csr_highest_slotid;, +30:u03:csr_target_highest_slotid;, +30:u11:csr_target_highest_slotid;, +23:u00:csr_highest_slotid;, +30:u02:csr_target_highest_slotid;, +30:u10:csr_target_highest_slotid;, +21:u14:cb_sequence4resok, +30:u01:csr_target_highest_slotid;, +21:u13:cb_sequence4resok, +30:u00:csr_target_highest_slotid;, +11:u08:20.9.3., +21:u12:cb_sequence4resok, +21:u11:cb_sequence4resok, +11:u07:20.9.3., +21:u10:cb_sequence4resok, +11:u06:20.9.3., +11:u14:20.9.3., +11:u05:20.9.3., +11:u13:20.9.3., +11:u04:20.9.3., +11:u12:20.9.3., +11:u03:20.9.3., +11:u11:20.9.3., +11:u02:20.9.3., +11:u10:20.9.3., +11:u01:20.9.3., +11:u00:20.9.3., +10:u14:maxima, +10:u13:maxima, +10:u12:maxima, +8:u08:619], +10:u11:maxima, +8:u07:619], +10:u10:maxima, +8:u06:619], +8:u05:619], +8:u04:619], +16:u08:CB_COMPOUND,, +8:u03:619], +8:u02:619], +16:u07:CB_COMPOUND,, +8:u01:619], +16:u06:CB_COMPOUND,, +8:u00:619], +16:u14:cb_compound,, +16:u05:CB_COMPOUND,, +16:u13:cb_compound,, +16:u04:CB_COMPOUND,, +16:u12:cb_compound,, +16:u03:CB_COMPOUND,, +28:u08:csa_referring_call_lists, +16:u11:cb_compound,, +16:u02:CB_COMPOUND,, +28:u07:csa_referring_call_lists, +16:u10:cb_compound,, +16:u01:CB_COMPOUND,, +28:u06:csa_referring_call_lists, +16:u00:CB_COMPOUND,, +28:u05:csa_referring_call_lists, +28:u04:csa_referring_call_lists, +28:u03:csa_referring_call_lists, +28:u02:csa_referring_call_lists, +28:u01:csa_referring_call_lists, +28:u00:csa_referring_call_lists, +14:u14:wraparound, +14:u13:wraparound, +14:u12:wraparound, +14:u11:wraparound, +14:u10:wraparound, +8:u08:620], +11:uI2:,)....., +8:u07:620], +11:uI1:,)....., +8:u06:620], +11:uI0:,)....., +8:u05:620], +8:u04:620], +8:u03:620], +8:u02:620], +8:u01:620], +30:u08:csr_target_highest_slotid., +8:u00:620], +30:u07:csr_target_highest_slotid., +30:u06:csr_target_highest_slotid., +30:u05:csr_target_highest_slotid., +30:u04:csr_target_highest_slotid., +30:u03:csr_target_highest_slotid., +30:u02:csr_target_highest_slotid., +12:u08:20.10.1., +30:u01:csr_target_highest_slotid., +30:u00:csr_target_highest_slotid., +12:u07:20.10.1., +12:u06:20.10.1., +35:u08:cwca_contended_wants_cancelled;, +12:u14:20.10.1., +12:u05:20.10.1., +35:u07:cwca_contended_wants_cancelled;, +35:u08:cwca_resourced_wants_cancelled;, +12:u13:20.10.1., +7:u22:Wan, +8:u23:Want, +12:u04:20.10.1., +12:u08:20.10.2., +35:u06:cwca_contended_wants_cancelled;, +35:u07:cwca_resourced_wants_cancelled;, +12:u12:20.10.1., +12:u03:20.10.1., +35:u05:cwca_contended_wants_cancelled;, +35:u06:cwca_resourced_wants_cancelled;, +12:u11:20.10.1., +12:u02:20.10.1., +12:u07:20.10.2., +35:u04:cwca_contended_wants_cancelled;, +35:u05:cwca_resourced_wants_cancelled;, +12:u10:20.10.1., +12:u01:20.10.1., +12:u06:20.10.2., +16:u08:cwcr_status;, +35:u03:cwca_contended_wants_cancelled;, +35:u04:cwca_resourced_wants_cancelled;, +12:u14:20.10.2., +12:u00:20.10.1., +12:u05:20.10.2., +35:u02:cwca_contended_wants_cancelled;, +35:u03:cwca_resourced_wants_cancelled;, +12:u13:20.10.2., +12:u04:20.10.2., +16:u07:cwcr_status;, +12:u08:20.10.3., +35:u01:cwca_contended_wants_cancelled;, +35:u02:cwca_resourced_wants_cancelled;, +12:u12:20.10.2., +12:u03:20.10.2., +16:u06:cwcr_status;, +35:u00:cwca_contended_wants_cancelled;, +35:u01:cwca_resourced_wants_cancelled;, +12:u11:20.10.2., +16:u14:cwcr_status;, +12:u02:20.10.2., +16:u05:cwcr_status;, +12:u07:20.10.3., +35:u00:cwca_resourced_wants_cancelled;, +12:u10:20.10.2., +16:u13:cwcr_status;, +12:u01:20.10.2., +16:u04:cwcr_status;, +12:u06:20.10.3., +16:u12:cwcr_status;, +12:u14:20.10.3., +6:u21:cw, +7:u22:cwc, +8:u23:cwcr, +12:u00:20.10.2., +16:u03:cwcr_status;, +12:u05:20.10.3., +16:u11:cwcr_status;, +12:u13:20.10.3., +16:u02:cwcr_status;, +12:u04:20.10.3., +34:u08:cwca_contended_wants_cancelled, +16:u10:cwcr_status;, +12:u12:20.10.3., +16:u01:cwcr_status;, +12:u03:20.10.3., +34:u07:cwca_contended_wants_cancelled, +12:u11:20.10.3., +16:u00:cwcr_status;, +12:u02:20.10.3., +34:u06:cwca_contended_wants_cancelled, +12:u10:20.10.3., +12:u01:20.10.3., +34:u05:cwca_contended_wants_cancelled, +34:u08:cwca_resourced_wants_cancelled, +12:u00:20.10.3., +34:u04:cwca_contended_wants_cancelled, +34:u07:cwca_resourced_wants_cancelled, +34:u03:cwca_contended_wants_cancelled, +34:u06:cwca_resourced_wants_cancelled, +34:u02:cwca_contended_wants_cancelled, +34:u05:cwca_resourced_wants_cancelled, +34:u01:cwca_contended_wants_cancelled, +34:u04:cwca_resourced_wants_cancelled, +34:u00:cwca_contended_wants_cancelled, +34:u03:cwca_resourced_wants_cancelled, +15:u08:re-register, +34:u02:cwca_resourced_wants_cancelled, +15:u07:re-register, +34:u01:cwca_resourced_wants_cancelled, +15:u06:re-register, +34:u00:cwca_resourced_wants_cancelled, +15:u05:re-register, +8:u08:621], +15:u04:re-register, +8:u07:621], +15:u03:re-register, +8:u06:621], +12:u08:20.10.4., +15:u02:re-register, +8:u05:621], +15:u01:re-register, +8:u04:621], +12:u07:20.10.4., +15:u00:re-register, +8:u03:621], +12:u06:20.10.4., +8:u02:621], +12:u14:20.10.4., +12:u05:20.10.4., +8:u01:621], +12:u13:20.10.4., +12:u04:20.10.4., +8:u00:621], +12:u12:20.10.4., +12:u03:20.10.4., +12:u11:20.10.4., +12:u02:20.10.4., +11:u08:putting, +12:u10:20.10.4., +12:u01:20.10.4., +12:u00:20.10.4., +11:u07:putting, +11:u06:putting, +11:u14:putting, +11:u05:putting, +12:u08:20.11.1., +11:u13:putting, +11:u04:putting, +11:u12:putting, +7:u22:put, +8:u23:putt, +11:u03:putting, +12:u07:20.11.1., +11:u11:putting, +11:u02:putting, +12:u06:20.11.1., +12:u08:cnla_fh;, +11:u10:putting, +12:u14:20.11.1., +11:u01:putting, +12:u05:20.11.1., +12:u13:20.11.1., +11:u00:putting, +12:u04:20.11.1., +12:u07:cnla_fh;, +20:u08:cnla_lock_owner;, +12:u12:20.11.1., +12:u03:20.11.1., +12:u06:cnla_fh;, +12:u08:20.11.2., +20:u07:cnla_lock_owner;, +12:u11:20.11.1., +12:u14:cnla_fh;, +12:u02:20.11.1., +12:u05:cnla_fh;, +20:u06:cnla_lock_owner;, +12:u10:20.11.1., +12:u13:cnla_fh;, +12:u01:20.11.1., +12:u04:cnla_fh;, +12:u07:20.11.2., +20:u05:cnla_lock_owner;, +12:u12:cnla_fh;, +7:u22:cnl, +8:u23:cnla, +12:u00:20.11.1., +12:u03:cnla_fh;, +12:u06:20.11.2., +16:u08:cnlr_status;, +20:u04:cnla_lock_owner;, +12:u11:cnla_fh;, +12:u14:20.11.2., +12:u02:cnla_fh;, +12:u05:20.11.2., +20:u03:cnla_lock_owner;, +12:u10:cnla_fh;, +12:u13:20.11.2., +12:u01:cnla_fh;, +12:u04:20.11.2., +16:u07:cnlr_status;, +12:u08:20.11.3., +20:u02:cnla_lock_owner;, +12:u12:20.11.2., +12:u00:cnla_fh;, +12:u03:20.11.2., +16:u06:cnlr_status;, +20:u01:cnla_lock_owner;, +12:u11:20.11.2., +16:u14:cnlr_status;, +12:u02:20.11.2., +16:u05:cnlr_status;, +12:u07:20.11.3., +20:u00:cnla_lock_owner;, +12:u10:20.11.2., +16:u13:cnlr_status;, +12:u01:20.11.2., +16:u04:cnlr_status;, +12:u06:20.11.3., +16:u12:cnlr_status;, +12:u14:20.11.3., +8:u23:cnlr, +12:u00:20.11.2., +16:u03:cnlr_status;, +12:u05:20.11.3., +16:u11:cnlr_status;, +12:u13:20.11.3., +16:u02:cnlr_status;, +12:u04:20.11.3., +16:u10:cnlr_status;, +12:u12:20.11.3., +16:u01:cnlr_status;, +12:u03:20.11.3., +12:u11:20.11.3., +16:u00:cnlr_status;, +12:u02:20.11.3., +12:u10:20.11.3., +12:u01:20.11.3., +12:u00:20.11.3., +14:u08:allocated,, +14:u07:allocated,, +14:u06:allocated,, +14:u14:allocated,, +14:u05:allocated,, +8:u08:622], +14:u13:allocated,, +14:u04:allocated,, +8:u07:622], +14:u12:allocated,, +14:u03:allocated,, +8:u06:622], +14:u11:allocated,, +14:u02:allocated,, +16:u08:represented,, +8:u05:622], +14:u10:allocated,, +14:u01:allocated,, +8:u04:622], +14:u00:allocated,, +16:u07:represented,, +8:u03:622], +16:u06:represented,, +15:u08:open-owner,, +8:u02:622], +12:u08:forward., +16:u14:represented,, +16:u05:represented,, +8:u01:622], +12:u07:forward., +16:u13:represented,, +16:u04:represented,, +15:u07:open-owner,, +8:u00:622], +12:u06:forward., +16:u12:represented,, +16:u03:represented,, +15:u06:open-owner,, +12:u08:20.11.4., +12:u05:forward., +16:u11:represented,, +15:u14:open-owner,, +16:u02:represented,, +15:u05:open-owner,, +12:u04:forward., +16:u10:represented,, +15:u13:open-owner,, +8:uI2:-,"", +16:u01:represented,, +15:u04:open-owner,, +12:u07:20.11.4., +12:u03:forward., +15:u12:open-owner,, +8:uI1:-,"", +16:u00:represented,, +15:u03:open-owner,, +12:u06:20.11.4., +12:u02:forward., +15:u11:open-owner,, +12:u14:20.11.4., +8:uI0:-,"", +15:u02:open-owner,, +12:u05:20.11.4., +12:u01:forward., +15:u10:open-owner,, +12:u13:20.11.4., +15:u01:open-owner,, +12:u04:20.11.4., +15:u08:successful., +12:u00:forward., +12:u12:20.11.4., +15:u00:open-owner,, +12:u03:20.11.4., +12:u11:20.11.4., +12:u02:20.11.4., +15:u07:successful., +9:u08:does,, +12:u10:20.11.4., +12:u01:20.11.4., +15:u06:successful., +15:u14:successful., +12:u00:20.11.4., +15:u05:successful., +9:u07:does,, +15:u13:successful., +15:u04:successful., +9:u06:does,, +15:u12:successful., +9:u14:does,, +15:u03:successful., +9:u05:does,, +15:u11:successful., +9:u13:does,, +15:u02:successful., +9:u04:does,, +15:u10:successful., +9:u12:does,, +15:u01:successful., +9:u03:does,, +9:u11:does,, +15:u00:successful., +9:u02:does,, +9:u10:does,, +9:u01:does,, +12:u08:20.12.1., +9:u00:does,, +12:u07:20.12.1., +12:u06:20.12.1., +12:u14:20.12.1., +12:u05:20.12.1., +8:u08:623], +12:u13:20.12.1., +12:u04:20.12.1., +8:u07:623], +12:u12:20.12.1., +12:u03:20.12.1., +8:u06:623], +12:u11:20.12.1., +12:u02:20.12.1., +8:u05:623], +12:u10:20.12.1., +12:u01:20.12.1., +8:u04:623], +12:u00:20.12.1., +8:u03:623], +8:u02:623], +8:u01:623], +25:u08:notify_deviceid_type4, +27:u08:NOTIFY_DEVICEID4_DELETE, +8:u00:623], +25:u07:notify_deviceid_type4, +25:u06:notify_deviceid_type4, +27:u07:NOTIFY_DEVICEID4_DELETE, +25:u05:notify_deviceid_type4, +27:u14:notify_deviceid4_change, +27:u06:NOTIFY_DEVICEID4_DELETE, +25:u04:notify_deviceid_type4, +27:u13:notify_deviceid4_change, +27:u14:notify_deviceid4_delete, +27:u05:NOTIFY_DEVICEID4_DELETE, +25:u03:notify_deviceid_type4, +27:u08:notify_deviceid_delete4, +27:u12:notify_deviceid4_change, +27:u13:notify_deviceid4_delete, +27:u04:NOTIFY_DEVICEID4_DELETE, +19:u08:ndd_layouttype;, +25:u02:notify_deviceid_type4, +27:u07:notify_deviceid_delete4, +27:u11:notify_deviceid4_change, +27:u12:notify_deviceid4_delete, +27:u03:NOTIFY_DEVICEID4_DELETE, +25:u01:notify_deviceid_type4, +27:u06:notify_deviceid_delete4, +27:u10:notify_deviceid4_change, +27:u11:notify_deviceid4_delete, +27:u02:NOTIFY_DEVICEID4_DELETE, +19:u07:ndd_layouttype;, +17:u08:ndd_deviceid;, +25:u00:notify_deviceid_type4, +27:u05:notify_deviceid_delete4, +27:u10:notify_deviceid4_delete, +27:u01:NOTIFY_DEVICEID4_DELETE, +19:u06:ndd_layouttype;, +27:u04:notify_deviceid_delete4, +19:u14:ndd_layouttype;, +27:u00:NOTIFY_DEVICEID4_DELETE, +19:u05:ndd_layouttype;, +17:u07:ndd_deviceid;, +27:u03:notify_deviceid_delete4, +19:u13:ndd_layouttype;, +19:u04:ndd_layouttype;, +17:u06:ndd_deviceid;, +27:u02:notify_deviceid_delete4, +19:u12:ndd_layouttype;, +17:u14:ndd_deviceid;, +6:u21:nd, +7:u22:ndd, +8:u23:ndd_, +19:u03:ndd_layouttype;, +17:u05:ndd_deviceid;, +27:u01:notify_deviceid_delete4, +27:u08:notify_deviceid_change4, +19:u11:ndd_layouttype;, +17:u13:ndd_deviceid;, +19:u02:ndd_layouttype;, +17:u04:ndd_deviceid;, +19:u08:ndc_layouttype;, +27:u00:notify_deviceid_delete4, +27:u07:notify_deviceid_change4, +19:u10:ndd_layouttype;, +17:u12:ndd_deviceid;, +19:u01:ndd_layouttype;, +17:u03:ndd_deviceid;, +27:u06:notify_deviceid_change4, +17:u11:ndd_deviceid;, +19:u00:ndd_layouttype;, +17:u02:ndd_deviceid;, +19:u07:ndc_layouttype;, +17:u08:ndc_deviceid;, +27:u05:notify_deviceid_change4, +17:u10:ndd_deviceid;, +17:u01:ndd_deviceid;, +19:u06:ndc_layouttype;, +27:u04:notify_deviceid_change4, +19:u14:ndc_layouttype;, +17:u00:ndd_deviceid;, +19:u05:ndc_layouttype;, +17:u07:ndc_deviceid;, +18:u08:ndc_immediate;, +27:u03:notify_deviceid_change4, +19:u13:ndc_layouttype;, +19:u04:ndc_layouttype;, +17:u06:ndc_deviceid;, +27:u02:notify_deviceid_change4, +19:u12:ndc_layouttype;, +17:u14:ndc_deviceid;, +7:u22:ndc, +8:u23:ndc_, +19:u03:ndc_layouttype;, +17:u05:ndc_deviceid;, +18:u07:ndc_immediate;, +27:u01:notify_deviceid_change4, +19:u11:ndc_layouttype;, +17:u13:ndc_deviceid;, +19:u02:ndc_layouttype;, +17:u04:ndc_deviceid;, +18:u06:ndc_immediate;, +27:u00:notify_deviceid_change4, +19:u10:ndc_layouttype;, +17:u12:ndc_deviceid;, +18:u14:ndc_immediate;, +19:u01:ndc_layouttype;, +17:u03:ndc_deviceid;, +18:u05:ndc_immediate;, +19:u08:cnda_changes<>;, +17:u11:ndc_deviceid;, +18:u13:ndc_immediate;, +19:u00:ndc_layouttype;, +17:u02:ndc_deviceid;, +18:u04:ndc_immediate;, +12:u08:20.12.2., +19:u07:cnda_changes<>;, +17:u10:ndc_deviceid;, +18:u12:ndc_immediate;, +17:u01:ndc_deviceid;, +18:u03:ndc_immediate;, +19:u06:cnda_changes<>;, +18:u11:ndc_immediate;, +17:u00:ndc_deviceid;, +18:u02:ndc_immediate;, +12:u07:20.12.2., +19:u05:cnda_changes<>;, +18:u10:ndc_immediate;, +18:u01:ndc_immediate;, +12:u06:20.12.2., +16:u08:cndr_status;, +19:u04:cnda_changes<>;, +12:u14:20.12.2., +18:u00:ndc_immediate;, +12:u05:20.12.2., +19:u03:cnda_changes<>;, +12:u13:20.12.2., +12:u04:20.12.2., +16:u07:cndr_status;, +12:u08:20.12.3., +19:u02:cnda_changes<>;, +12:u12:20.12.2., +12:u03:20.12.2., +16:u06:cndr_status;, +19:u01:cnda_changes<>;, +12:u11:20.12.2., +16:u14:cndr_status;, +12:u02:20.12.2., +16:u05:cndr_status;, +12:u07:20.12.3., +19:u00:cnda_changes<>;, +12:u10:20.12.2., +16:u13:cndr_status;, +12:u01:20.12.2., +16:u04:cndr_status;, +12:u06:20.12.3., +16:u12:cndr_status;, +12:u14:20.12.3., +7:u22:cnd, +8:u23:cndr, +12:u00:20.12.2., +16:u03:cndr_status;, +12:u05:20.12.3., +16:u11:cndr_status;, +12:u13:20.12.3., +16:u02:cndr_status;, +12:u04:20.12.3., +16:u10:cndr_status;, +12:u12:20.12.3., +16:u01:cndr_status;, +12:u03:20.12.3., +12:u11:20.12.3., +16:u00:cndr_status;, +12:u02:20.12.3., +12:u10:20.12.3., +12:u01:20.12.3., +9:u08:pairs, +12:u00:20.12.3., +9:u07:pairs, +9:u06:pairs, +9:u05:pairs, +9:u04:pairs, +17:u08:CB_COMPOUNDs., +9:u03:pairs, +17:u07:CB_COMPOUNDs., +9:u02:pairs, +17:u06:CB_COMPOUNDs., +9:u01:pairs, +17:u05:CB_COMPOUNDs., +8:u08:624], +9:u00:pairs, +17:u04:CB_COMPOUNDs., +8:u07:624], +17:u03:CB_COMPOUNDs., +8:u06:624], +17:u02:CB_COMPOUNDs., +8:u05:624], +17:u01:CB_COMPOUNDs., +8:u04:624], +17:u00:CB_COMPOUNDs., +8:u03:624], +8:u02:624], +9:u14:issue, +8:u01:624], +9:u13:issue, +14:u08:completely, +8:u00:624], +9:u12:issue, +9:u11:issue, +14:u07:completely, +9:u10:issue, +14:u06:completely, +14:u14:completely, +14:u05:completely, +14:u13:completely, +14:u04:completely, +12:u08:mapping., +14:u12:completely, +14:u03:completely, +28:u08:notify_deviceid_change4., +14:u11:completely, +14:u02:completely, +12:u07:mapping., +14:u10:completely, +14:u01:completely, +12:u06:mapping., +28:u07:notify_deviceid_change4., +18:u08:ndc_immediate,, +12:u14:mapping., +14:u00:completely, +12:u05:mapping., +28:u06:notify_deviceid_change4., +18:u07:ndc_immediate,, +12:u13:mapping., +28:u14:notify_deviceid_change4., +12:u04:mapping., +28:u05:notify_deviceid_change4., +18:u06:ndc_immediate,, +12:u12:mapping., +28:u13:notify_deviceid_change4., +12:u03:mapping., +28:u04:notify_deviceid_change4., +18:u05:ndc_immediate,, +12:u11:mapping., +28:u12:notify_deviceid_change4., +12:u02:mapping., +28:u03:notify_deviceid_change4., +18:u04:ndc_immediate,, +12:u10:mapping., +28:u11:notify_deviceid_change4., +12:u01:mapping., +28:u02:notify_deviceid_change4., +18:u03:ndc_immediate,, +28:u10:notify_deviceid_change4., +12:u00:mapping., +28:u01:notify_deviceid_change4., +27:u08:NOTIFY4_DEVICEID_DELETE, +18:u02:ndc_immediate,, +28:u00:notify_deviceid_change4., +11:u08:Deletes, +18:u01:ndc_immediate,, +8:uI2:/./,, +27:u07:NOTIFY4_DEVICEID_DELETE, +18:u00:ndc_immediate,, +8:uI1:/./,, +27:u06:NOTIFY4_DEVICEID_DELETE, +11:u07:Deletes, +27:u14:notify4_deviceid_delete, +8:uI0:/./,, +27:u05:NOTIFY4_DEVICEID_DELETE, +11:u06:Deletes, +17:u08:notification,, +27:u13:notify4_deviceid_delete, +11:u14:deletes, +27:u04:NOTIFY4_DEVICEID_DELETE, +11:u05:Deletes, +27:u12:notify4_deviceid_delete, +11:u13:deletes, +27:u03:NOTIFY4_DEVICEID_DELETE, +11:u04:Deletes, +17:u07:notification,, +27:u11:notify4_deviceid_delete, +11:u12:deletes, +27:u02:NOTIFY4_DEVICEID_DELETE, +11:u03:Deletes, +17:u06:notification,, +27:u10:notify4_deviceid_delete, +11:u11:deletes, +17:u14:notification,, +27:u01:NOTIFY4_DEVICEID_DELETE, +11:u02:Deletes, +17:u05:notification,, +11:u10:deletes, +17:u13:notification,, +27:u00:NOTIFY4_DEVICEID_DELETE, +11:u01:Deletes, +17:u04:notification,, +17:u12:notification,, +11:u00:Deletes, +17:u03:notification,, +17:u11:notification,, +17:u02:notification,, +28:u08:notify_deviceid_delete4., +17:u10:notification,, +17:u01:notification,, +17:u00:notification,, +28:u07:notify_deviceid_delete4., +28:u06:notify_deviceid_delete4., +28:u14:notify_deviceid_delete4., +28:u05:notify_deviceid_delete4., +28:u13:notify_deviceid_delete4., +28:u04:notify_deviceid_delete4., +28:u12:notify_deviceid_delete4., +28:u03:notify_deviceid_delete4., +28:u11:notify_deviceid_delete4., +28:u02:notify_deviceid_delete4., +8:u08:625], +28:u10:notify_deviceid_delete4., +28:u01:notify_deviceid_delete4., +8:u07:625], +28:u00:notify_deviceid_delete4., +8:u06:625], +12:u08:20.13.1., +8:u05:625], +8:u04:625], +12:u07:20.13.1., +12:u08:20.13.2., +8:u03:625], +12:u06:20.13.1., +8:u02:625], +12:u14:20.13.1., +12:u05:20.13.1., +12:u07:20.13.2., +8:u01:625], +12:u13:20.13.1., +12:u04:20.13.1., +12:u06:20.13.2., +8:u00:625], +15:u08:CB_ILLEGAL:, +12:u12:20.13.1., +12:u14:20.13.2., +12:u03:20.13.1., +12:u05:20.13.2., +15:u07:CB_ILLEGAL:, +12:u11:20.13.1., +12:u13:20.13.2., +12:u02:20.13.1., +12:u04:20.13.2., +15:u06:CB_ILLEGAL:, +12:u10:20.13.1., +12:u12:20.13.2., +12:u01:20.13.1., +12:u03:20.13.2., +15:u05:CB_ILLEGAL:, +12:u11:20.13.2., +12:u00:20.13.1., +12:u02:20.13.2., +15:u04:CB_ILLEGAL:, +12:u10:20.13.2., +12:u01:20.13.2., +12:u08:20.13.3., +15:u03:CB_ILLEGAL:, +12:u00:20.13.2., +15:u02:CB_ILLEGAL:, +12:u07:20.13.3., +15:u01:CB_ILLEGAL:, +12:u06:20.13.3., +15:u00:CB_ILLEGAL:, +12:u14:20.13.3., +12:u05:20.13.3., +12:u13:20.13.3., +12:u04:20.13.3., +12:u12:20.13.3., +12:u03:20.13.3., +12:u08:20.13.4., +12:u11:20.13.3., +12:u02:20.13.3., +12:u10:20.13.3., +12:u01:20.13.3., +12:u07:20.13.4., +12:u00:20.13.3., +12:u06:20.13.4., +12:u14:20.13.4., +12:u05:20.13.4., +12:u13:20.13.4., +12:u04:20.13.4., +12:u12:20.13.4., +12:u03:20.13.4., +12:u11:20.13.4., +12:u02:20.13.4., +12:u10:20.13.4., +12:u01:20.13.4., +12:u00:20.13.4., +8:uI2:,.,., +14:u14:end-to-end, +8:uI1:,.,., +14:u13:end-to-end, +17:u14:authenticates, +8:uI0:,.,., +14:u12:end-to-end, +17:u13:authenticates, +8:u23:end-, +8:u08:626], +14:u11:end-to-end, +17:u12:authenticates, +8:u07:626], +14:u10:end-to-end, +17:u11:authenticates, +8:u06:626], +17:u10:authenticates, +17:u08:Consideration, +8:u05:626], +8:u04:626], +17:u07:Consideration, +8:u03:626], +17:u06:Consideration, +8:u02:626], +14:u08:integrity,, +17:u05:Consideration, +8:u01:626], +14:u07:integrity,, +17:u04:Consideration, +8:u00:626], +14:u06:integrity,, +17:u03:Consideration, +14:u05:integrity,, +17:u02:Consideration, +14:u04:integrity,, +17:u01:Consideration, +14:u03:integrity,, +17:u00:Consideration, +14:u02:integrity,, +14:u01:integrity,, +14:u00:integrity,, +11:u08:decline, +11:u07:decline, +11:u06:decline, +11:u05:decline, +11:u04:decline, +11:u03:decline, +12:u08:choices., +11:u02:decline, +11:u01:decline, +12:u07:choices., +11:u00:decline, +12:u06:choices., +12:u14:choices., +12:u05:choices., +12:u13:choices., +12:u04:choices., +12:u12:choices., +12:u03:choices., +12:u11:choices., +12:u02:choices., +12:u10:choices., +12:u01:choices., +12:u00:choices., +12:u08:attacks., +12:u07:attacks., +12:u06:attacks., +12:u14:attacks., +12:u05:attacks., +12:u13:attacks., +12:u04:attacks., +12:u12:attacks., +12:u03:attacks., +12:u11:attacks., +12:u02:attacks., +12:u10:attacks., +10:u14:attack, +12:u01:attacks., +10:u13:attack, +12:u00:attacks., +10:u12:attack, +14:u08:mitigated., +13:u08:attacker., +10:u11:attack, +12:u08:Relative, +13:u07:attacker., +10:u10:attack, +14:u07:mitigated., +13:u06:attacker., +14:u06:mitigated., +12:u07:Relative, +13:u05:attacker., +14:u14:mitigated., +14:u05:mitigated., +12:u06:Relative, +13:u04:attacker., +14:u13:mitigated., +14:u04:mitigated., +12:u05:Relative, +13:u03:attacker., +14:u12:mitigated., +7:u22:mit, +8:u23:miti, +14:u03:mitigated., +12:u04:Relative, +13:u02:attacker., +14:u11:mitigated., +14:u02:mitigated., +12:u03:Relative, +13:u01:attacker., +14:u10:mitigated., +14:u01:mitigated., +12:u02:Relative, +13:u00:attacker., +8:u08:627], +14:u00:mitigated., +12:u01:Relative, +8:u07:627], +12:u00:Relative, +8:u06:627], +8:u05:627], +8:u04:627], +8:u03:627], +8:u02:627], +8:u01:627], +14:u08:interfered, +8:u00:627], +14:u07:interfered, +14:u06:interfered, +14:u14:interfered, +14:u05:interfered, +8:u08:[29], +14:u13:interfered, +14:u04:interfered, +14:u12:interfered, +14:u03:interfered, +8:u07:[29], +14:u11:interfered, +14:u02:interfered, +8:u06:[29], +10:u08:mutual, +14:u10:interfered, +8:u14:[29], +8:u23:note, +14:u01:interfered, +8:u05:[29], +8:u13:[29], +14:u00:interfered, +8:u04:[29], +10:u07:mutual, +8:u12:[29], +7:u22:[29, +8:u23:[29], +8:u03:[29], +10:u06:mutual, +12:u08:insecure, +8:u11:[29], +10:u14:mutual, +8:u02:[29], +10:u05:mutual, +12:u07:insecure, +8:u10:[29], +10:u13:mutual, +13:u14:provided,, +8:u01:[29], +10:u04:mutual, +12:u06:insecure, +10:u12:mutual, +13:u13:provided,, +8:u00:[29], +10:u03:mutual, +12:u05:insecure, +10:u11:mutual, +13:u12:provided,, +10:u02:mutual, +12:u04:insecure, +10:u10:mutual, +13:u11:provided,, +10:u01:mutual, +12:u03:insecure, +13:u10:provided,, +10:u00:mutual, +12:u02:insecure, +12:u01:insecure, +12:u00:insecure, +13:u08:"support", +17:u08:client-server, +13:u07:"support", +13:u06:"support", +17:u07:client-server, +13:u05:"support", +17:u06:client-server, +13:u04:"support", +8:u08:host, +17:u14:client-server, +17:u05:client-server, +13:u03:"support", +8:u07:host, +17:u13:client-server, +17:u04:client-server, +13:u02:"support", +8:u06:host, +17:u12:client-server, +17:u03:client-server, +13:u01:"support", +8:u05:host, +17:u11:client-server, +17:u02:client-server, +13:u00:"support", +8:u04:host, +17:u10:client-server, +17:u01:client-server, +8:u03:host, +17:u00:client-server, +8:u02:host, +8:u01:host, +8:u00:host, +8:u08:628], +8:u07:628], +8:u06:628], +8:u05:628], +8:u04:628], +16:u08:information), +8:u03:628], +16:u07:information), +8:u02:628], +16:u06:information), +11:u08:flight., +8:u01:628], +16:u05:information), +11:u07:flight., +8:u00:628], +16:u04:information), +11:u06:flight., +16:u03:information), +11:u05:flight., +16:u02:information), +11:u04:flight., +16:u01:information), +11:u03:flight., +11:u08:vitiate, +16:u00:information), +11:u02:flight., +11:u07:vitiate, +11:u01:flight., +11:u06:vitiate, +16:u08:destination,, +11:u00:flight., +11:u05:vitiate, +16:u07:destination,, +11:u04:vitiate, +16:u06:destination,, +11:u03:vitiate, +16:u05:destination,, +11:u02:vitiate, +16:u04:destination,, +11:u01:vitiate, +16:u03:destination,, +11:u00:vitiate, +16:u02:destination,, +16:u01:destination,, +16:u00:destination,, +13:u08:directed., +13:u08:filtering, +13:u07:filtering, +13:u07:directed., +13:u06:filtering, +13:u06:directed., +13:u05:filtering, +13:u14:directed., +13:u05:directed., +10:u08:used),, +13:u04:filtering, +14:u08:isolation,, +13:u13:directed., +13:u04:directed., +13:u03:filtering, +14:u07:isolation,, +13:u12:directed., +13:u03:directed., +10:u07:used),, +13:u02:filtering, +14:u06:isolation,, +13:u11:directed., +13:u02:directed., +10:u06:used),, +13:u01:filtering, +14:u05:isolation,, +13:u08:summarize, +13:u10:directed., +10:u14:used),, +13:u01:directed., +10:u05:used),, +17:u08:possibilities, +13:u00:filtering, +14:u04:isolation,, +13:u07:summarize, +10:u13:used),, +13:u00:directed., +10:u04:used),, +17:u08:interrogation, +14:u03:isolation,, +13:u06:summarize, +10:u12:used),, +10:u03:used),, +17:u07:possibilities, +11:u08:arrived, +14:u02:isolation,, +13:u05:summarize, +10:u11:used),, +10:u02:used),, +17:u06:possibilities, +17:u07:interrogation, +14:u01:isolation,, +13:u04:summarize, +10:u10:used),, +17:u14:possibilities, +10:u01:used),, +17:u05:possibilities, +17:u06:interrogation, +11:u07:arrived, +14:u00:isolation,, +13:u03:summarize, +17:u13:possibilities, +17:u14:interrogation, +10:u00:used),, +17:u04:possibilities, +17:u05:interrogation, +11:u06:arrived, +13:u02:summarize, +17:u12:possibilities, +17:u13:interrogation, +11:u14:arrived, +17:u03:possibilities, +17:u04:interrogation, +11:u05:arrived, +12:u08:transit., +13:u01:summarize, +17:u11:possibilities, +17:u12:interrogation, +11:u13:arrived, +17:u02:possibilities, +17:u03:interrogation, +11:u04:arrived, +13:u00:summarize, +17:u10:possibilities, +17:u11:interrogation, +11:u12:arrived, +17:u01:possibilities, +17:u02:interrogation, +11:u03:arrived, +12:u07:transit., +17:u10:interrogation, +11:u11:arrived, +17:u00:possibilities, +17:u01:interrogation, +11:u02:arrived, +12:u06:transit., +11:u10:arrived, +12:u14:transit., +17:u00:interrogation, +11:u01:arrived, +12:u05:transit., +15:u08:undesirable, +12:u13:transit., +11:u00:arrived, +12:u04:transit., +15:u07:undesirable, +12:u12:transit., +12:u03:transit., +15:u06:undesirable, +12:u11:transit., +12:u02:transit., +15:u05:undesirable, +8:u08:629], +12:u10:transit., +12:u01:transit., +15:u04:undesirable, +8:u07:629], +12:u00:transit., +15:u03:undesirable, +8:u06:629], +15:u02:undesirable, +8:u05:629], +15:u01:undesirable, +8:u04:629], +15:u00:undesirable, +8:u03:629], +8:u02:629], +8:u08:vary, +8:u01:629], +8:u00:629], +8:u07:vary, +8:u06:vary, +8:u14:vary, +8:u05:vary, +8:u13:vary, +8:u04:vary, +8:u12:vary, +8:u23:vary, +8:u03:vary, +8:u11:vary, +8:u02:vary, +8:u10:vary, +8:u01:vary, +8:u00:vary, +14:u08:Registry"., +13:u14:remaining, +13:u13:remaining, +14:u07:Registry"., +13:u12:remaining, +8:u14:iana, +14:u06:Registry"., +13:u11:remaining, +8:u13:iana, +14:u14:registry"., +14:u05:Registry"., +13:u10:remaining, +8:u12:iana, +14:u13:registry"., +6:u21:IA, +7:u22:IAN, +8:u23:IANA, +14:u04:Registry"., +8:u11:iana, +14:u12:registry"., +14:u03:Registry"., +8:u10:iana, +14:u11:registry"., +14:u02:Registry"., +14:u10:registry"., +14:u01:Registry"., +14:u00:Registry"., +9:u08:IANA., +9:u07:IANA., +17:u08:registration., +9:u06:IANA., +9:u05:IANA., +17:u07:registration., +14:u08:registry's, +9:u04:IANA., +17:u06:registration., +9:u03:IANA., +17:u14:registration., +17:u05:registration., +14:u07:registry's, +9:u02:IANA., +17:u13:registration., +17:u04:registration., +14:u06:registry's, +9:u01:IANA., +17:u12:registration., +14:u14:registry's, +17:u03:registration., +14:u05:registry's, +9:u00:IANA., +13:u08:Required,, +17:u11:registration., +14:u13:registry's, +17:u02:registration., +14:u04:registry's, +10:u08:theory, +13:u07:Required,, +17:u10:registration., +14:u12:registry's, +10:u14:basis,, +17:u01:registration., +14:u03:registry's, +13:u06:Required,, +14:u11:registry's, +10:u13:basis,, +9:uI2:,.[]., +17:u00:registration., +14:u02:registry's, +10:u07:theory, +13:u05:Required,, +14:u10:registry's, +10:u12:basis,, +9:uI1:,.[]., +14:u01:registry's, +10:u06:theory, +13:u04:Required,, +10:u11:basis,, +10:u14:theory, +9:uI0:,.[]., +14:u00:registry's, +10:u05:theory, +13:u03:Required,, +7:u08:128, +10:u10:basis,, +10:u13:theory, +10:u04:theory, +13:u02:Required,, +7:u07:128, +10:u12:theory, +8:u23:theo, +10:u03:theory, +13:u01:Required,, +7:u06:128, +10:u11:theory, +10:u02:theory, +13:u00:Required,, +7:u05:128, +10:u10:theory, +10:u01:theory, +7:u04:128, +8:u08:630], +10:u00:theory, +7:u03:128, +8:u07:630], +7:u02:128, +8:u06:630], +7:u01:128, +8:u05:630], +7:u00:128, +8:u04:630], +8:u03:630], +8:u02:630], +10:u08:prefix, +8:u01:630], +10:u07:prefix, +9:uI2:""""., +8:u00:630], +10:u06:prefix, +9:uI1:""""., +10:u05:prefix, +10:u08:"PRIV", +9:uI0:""""., +10:u04:prefix, +10:u07:"PRIV", +16:u08:permutations, +10:u03:prefix, +10:u06:"PRIV", +10:u14:prefix, +10:u02:prefix, +10:u05:"PRIV", +10:u13:prefix, +16:u07:permutations, +10:u01:prefix, +10:u04:"PRIV", +11:u08:"expe",, +10:u12:prefix, +16:u06:permutations, +10:u00:prefix, +10:u03:"PRIV", +11:u07:"expe",, +10:u11:prefix, +16:u14:permutations, +16:u05:permutations, +10:u02:"PRIV", +11:u06:"expe",, +10:u10:prefix, +16:u13:permutations, +12:uI2:"","","", +16:u04:permutations, +10:u01:"PRIV", +11:u05:"expe",, +12:u08:registry, +16:u12:permutations, +12:uI1:"","","", +21:uI2:(..,"","","",.).,, +16:u03:permutations, +10:u00:"PRIV", +11:u04:"expe",, +12:u07:registry, +16:u11:permutations, +12:uI0:"","","", +21:uI1:(..,"","","",.).,, +16:u02:permutations, +11:u03:"expe",, +12:u06:registry, +16:u10:permutations, +21:uI0:(..,"","","",.).,, +16:u01:permutations, +11:u02:"expe",, +12:u05:registry, +16:u00:permutations, +11:u01:"expe",, +12:u04:registry, +9:u08:long., +11:u00:"expe",, +12:u03:registry, +9:u07:long., +12:u02:registry, +9:u06:long., +12:u01:registry, +9:u05:long., +11:u08:22.2.1., +12:u00:registry, +9:u04:long., +9:u03:long., +11:u08:Initial, +11:u07:22.2.1., +11:u08:22.2.2., +9:u02:long., +11:u07:Initial, +11:u06:22.2.1., +9:u01:long., +11:u06:Initial, +12:u08:Updating, +11:u14:22.2.1., +11:u05:22.2.1., +11:u07:22.2.2., +9:u00:long., +11:u05:Initial, +12:u07:Updating, +14:u08:registrant, +11:u13:22.2.1., +11:u04:22.2.1., +11:u06:22.2.2., +11:u04:Initial, +12:u06:Updating, +14:u07:registrant, +11:u12:22.2.1., +11:u14:22.2.2., +11:u03:22.2.1., +11:u05:22.2.2., +11:u03:Initial, +12:u05:Updating, +14:u06:registrant, +11:u11:22.2.1., +11:u13:22.2.2., +11:u02:22.2.1., +11:u04:22.2.2., +11:u02:Initial, +12:u04:Updating, +14:u05:registrant, +11:u10:22.2.1., +11:u12:22.2.2., +11:u01:22.2.1., +11:u03:22.2.2., +11:u01:Initial, +12:u03:Updating, +14:u04:registrant, +11:u11:22.2.2., +11:u00:22.2.1., +11:u02:22.2.2., +11:u00:Initial, +12:u02:Updating, +14:u03:registrant, +11:u10:22.2.2., +11:u01:22.2.2., +12:u01:Updating, +14:u02:registrant, +11:u00:22.2.2., +12:u00:Updating, +14:u01:registrant, +14:u00:registrant, +8:u08:631], +8:u07:631], +8:u06:631], +8:u05:631], +8:u04:631], +10:u08:Hence,, +8:u03:631], +8:u02:631], +10:u07:Hence,, +8:u01:631], +10:u06:Hence,, +8:u00:631], +10:u14:hence,, +10:u05:Hence,, +10:u13:hence,, +10:u04:Hence,, +10:u12:hence,, +7:u22:Hen, +8:u23:Henc, +9:uI2:.[],., +10:u03:Hence,, +24:u08:"NOTIFY_DEVICEID4_"., +10:u11:hence,, +9:uI1:.[],., +10:u02:Hence,, +24:u07:"NOTIFY_DEVICEID4_"., +10:u10:hence,, +9:uI0:.[],., +10:u01:Hence,, +24:u06:"NOTIFY_DEVICEID4_"., +10:u00:Hence,, +24:u05:"NOTIFY_DEVICEID4_"., +24:u04:"NOTIFY_DEVICEID4_"., +11:u08:2^32-1,, +24:u03:"NOTIFY_DEVICEID4_"., +11:u07:2^32-1,, +24:u02:"NOTIFY_DEVICEID4_"., +11:u06:2^32-1,, +24:u01:"NOTIFY_DEVICEID4_"., +11:u05:2^32-1,, +24:u00:"NOTIFY_DEVICEID4_"., +11:u04:2^32-1,, +11:u03:2^32-1,, +11:u02:2^32-1,, +12:u08:RFCTBD2,, +11:u01:2^32-1,, +10:u08:RFC(s), +10:uI2:.([]),, +11:u00:2^32-1,, +10:u07:RFC(s), +12:u08:RFCTBD3,, +10:uI1:.([]),, +12:u07:RFCTBD2,, +10:u06:RFC(s), +12:u07:RFCTBD3,, +10:uI0:.([]),, +12:u06:RFCTBD2,, +10:u05:RFC(s), +12:u06:RFCTBD3,, +12:u08:US-ASCII, +12:u14:rfctbd2,, +12:u05:RFCTBD2,, +10:u04:RFC(s), +12:u05:RFCTBD3,, +12:u07:US-ASCII, +12:u13:rfctbd2,, +12:u04:RFCTBD2,, +13:u08:Approval., +10:u03:RFC(s), +12:u04:RFCTBD3,, +12:u06:US-ASCII, +12:u12:rfctbd2,, +8:u23:RFCT, +12:u03:RFCTBD2,, +10:u02:RFC(s), +12:u03:RFCTBD3,, +12:u05:US-ASCII, +12:u11:rfctbd2,, +12:u14:revision, +12:u02:RFCTBD2,, +13:u07:Approval., +10:u01:RFC(s), +12:u02:RFCTBD3,, +12:u04:US-ASCII, +12:u10:rfctbd2,, +12:u13:revision, +12:u01:RFCTBD2,, +13:u06:Approval., +12:u08:allocate, +10:u00:RFC(s), +12:u01:RFCTBD3,, +12:u03:US-ASCII, +12:u12:revision, +13:u14:approval., +12:u00:RFCTBD2,, +13:u05:Approval., +12:u00:RFCTBD3,, +12:u02:US-ASCII, +12:u11:revision, +13:u13:approval., +13:u04:Approval., +12:u07:allocate, +12:u01:US-ASCII, +12:u08:Approval, +12:u10:revision, +13:u12:approval., +13:u03:Approval., +12:u06:allocate, +10:u08:review, +12:u00:US-ASCII, +12:u07:Approval, +13:u11:approval., +12:u14:allocate, +13:u02:Approval., +12:u05:allocate, +11:u08:22.3.1., +12:u06:Approval, +13:u10:approval., +12:u13:allocate, +8:u14:iesg, +13:u01:Approval., +12:u04:allocate, +10:u07:review, +12:u05:Approval, +12:u12:allocate, +8:u13:iesg, +13:u00:Approval., +12:u03:allocate, +10:u06:review, +11:u07:22.3.1., +12:u04:Approval, +12:u11:allocate, +8:u12:iesg, +10:u14:review, +7:u22:IES, +8:u23:IESG, +12:u02:allocate, +10:u05:review, +11:u06:22.3.1., +12:u03:Approval, +12:u10:allocate, +8:u11:iesg, +10:u13:review, +11:u14:22.3.1., +12:u01:allocate, +10:u04:review, +11:u05:22.3.1., +12:u02:Approval, +8:u10:iesg, +10:u12:review, +11:u13:22.3.1., +12:u00:allocate, +10:u03:review, +11:u04:22.3.1., +12:u01:Approval, +10:u11:review, +11:u12:22.3.1., +10:u02:review, +11:u03:22.3.1., +12:u00:Approval, +8:u08:632], +10:u10:review, +11:u11:22.3.1., +10:u01:review, +11:u02:22.3.1., +8:u07:632], +11:u10:22.3.1., +10:u00:review, +11:u01:22.3.1., +8:u06:632], +11:u00:22.3.1., +72:u08:+-------------------------+-------+---------+-----+----------------+, +8:u05:632], +8:u04:632], +72:u07:+-------------------------+-------+---------+-----+----------------+, +8:u03:632], +72:u06:+-------------------------+-------+---------+-----+----------------+, +8:u02:632], +72:u14:+-------------------------+-------+---------+-----+----------------+, +72:u05:+-------------------------+-------+---------+-----+----------------+, +8:u01:632], +72:u13:+-------------------------+-------+---------+-----+----------------+, +72:u04:+-------------------------+-------+---------+-----+----------------+, +8:u00:632], +72:u12:+-------------------------+-------+---------+-----+----------------+, +72:u03:+-------------------------+-------+---------+-----+----------------+, +72:u11:+-------------------------+-------+---------+-----+----------------+, +72:u02:+-------------------------+-------+---------+-----+----------------+, +72:u10:+-------------------------+-------+---------+-----+----------------+, +72:u01:+-------------------------+-------+---------+-----+----------------+, +72:u00:+-------------------------+-------+---------+-----+----------------+, +11:u08:22.3.2., +11:u07:22.3.2., +11:u06:22.3.2., +11:u14:22.3.2., +11:u05:22.3.2., +11:u13:22.3.2., +11:u04:22.3.2., +11:u12:22.3.2., +11:u03:22.3.2., +11:u11:22.3.2., +11:u02:22.3.2., +11:u10:22.3.2., +11:u01:22.3.2., +11:u00:22.3.2., +10:u08:22.5)., +10:u07:22.5)., +10:u06:22.5)., +12:u08:Reserved, +10:u05:22.5)., +10:u04:22.5)., +12:u07:Reserved, +10:u03:22.5)., +12:u06:Reserved, +10:u02:22.5)., +12:u05:Reserved, +10:u01:22.5)., +12:u04:Reserved, +10:u00:22.5)., +8:u23:Rese, +12:u03:Reserved, +22:u08:"RCA4_TYPE_MASK_"., +12:u02:Reserved, +22:u07:"RCA4_TYPE_MASK_"., +12:u01:Reserved, +22:u06:"RCA4_TYPE_MASK_"., +12:u00:Reserved, +10:u08:higher, +22:u05:"RCA4_TYPE_MASK_"., +22:u04:"RCA4_TYPE_MASK_"., +10:u07:higher, +22:u03:"RCA4_TYPE_MASK_"., +10:u06:higher, +22:u02:"RCA4_TYPE_MASK_"., +10:u14:higher, +10:u05:higher, +22:u01:"RCA4_TYPE_MASK_"., +10:u13:higher, +10:u04:higher, +22:u00:"RCA4_TYPE_MASK_"., +10:u12:higher, +10:u03:higher, +10:u11:higher, +10:u02:higher, +10:u10:higher, +10:u01:higher, +8:u08:633], +10:u00:higher, +8:u07:633], +8:u06:633], +8:u05:633], +8:u04:633], +8:u03:633], +8:u02:633], +8:u01:633], +8:u00:633], +8:u08:RFCs, +8:u07:RFCs, +8:u06:RFCs, +11:u08:22.4.1., +8:u14:rfcs, +8:u05:RFCs, +8:u13:rfcs, +8:u04:RFCs, +11:u07:22.4.1., +8:u12:rfcs, +8:u23:RFCs, +8:u03:RFCs, +11:u06:22.4.1., +73:u08:+-------------------------------+-------+--------+-----+------------+, +8:u11:rfcs, +11:u14:22.4.1., +8:u02:RFCs, +11:u05:22.4.1., +8:u10:rfcs, +11:u13:22.4.1., +8:u01:RFCs, +11:u04:22.4.1., +73:u07:+-------------------------------+-------+--------+-----+------------+, +11:u12:22.4.1., +8:u00:RFCs, +11:u03:22.4.1., +73:u06:+-------------------------------+-------+--------+-----+------------+, +11:u11:22.4.1., +73:u14:+-------------------------------+-------+--------+-----+------------+, +11:u02:22.4.1., +73:u05:+-------------------------------+-------+--------+-----+------------+, +11:u10:22.4.1., +73:u13:+-------------------------------+-------+--------+-----+------------+, +11:u01:22.4.1., +73:u04:+-------------------------------+-------+--------+-----+------------+, +73:u12:+-------------------------------+-------+--------+-----+------------+, +11:u00:22.4.1., +73:u03:+-------------------------------+-------+--------+-----+------------+, +73:u11:+-------------------------------+-------+--------+-----+------------+, +73:u02:+-------------------------------+-------+--------+-----+------------+, +73:u10:+-------------------------------+-------+--------+-----+------------+, +73:u01:+-------------------------------+-------+--------+-----+------------+, +73:u00:+-------------------------------+-------+--------+-----+------------+, +12:u08:Versions, +12:u07:Versions, +12:u06:Versions, +12:u05:Versions, +12:u04:Versions, +12:u03:Versions, +12:u02:Versions, +12:u01:Versions, +12:u00:Versions, +5:u08:L, +5:u07:L, +5:u06:L, +5:u05:L, +5:u04:L, +5:u03:L, +5:u02:L, +5:u01:L, +5:u00:L, +8:u08:634], +8:u07:634], +8:u06:634], +11:u08:22.4.2., +8:u05:634], +8:u04:634], +11:u07:22.4.2., +8:u03:634], +11:u06:22.4.2., +8:u02:634], +11:u14:22.4.2., +11:u05:22.4.2., +8:u01:634], +11:u13:22.4.2., +11:u04:22.4.2., +8:u00:634], +11:u12:22.4.2., +11:u03:22.4.2., +11:u11:22.4.2., +11:u02:22.4.2., +10:u08:Expert, +11:u10:22.4.2., +11:u01:22.4.2., +10:u07:Expert, +11:u00:22.4.2., +11:u08:Private, +10:u06:Expert, +14:u08:0x7FFFFFFF, +10:u05:Expert, +8:u08:Use., +11:u07:Private, +10:u04:Expert, +8:u07:Use., +11:u06:Private, +14:u07:0x7FFFFFFF, +10:u03:Expert, +8:u06:Use., +11:u05:Private, +14:u06:0x7FFFFFFF, +15:u08:"LAYOUT4_"., +10:u02:Expert, +8:u05:Use., +14:u14:0x7fffffff, +11:u04:Private, +14:u05:0x7FFFFFFF, +10:u01:Expert, +8:u04:Use., +14:u13:0x7fffffff, +11:u03:Private, +14:u04:0x7FFFFFFF, +15:u07:"LAYOUT4_"., +10:u00:Expert, +8:u03:Use., +14:u12:0x7fffffff, +7:u22:0x7, +8:u23:0x7F, +11:u02:Private, +14:u03:0x7FFFFFFF, +15:u06:"LAYOUT4_"., +8:u02:Use., +14:u11:0x7fffffff, +15:u14:"layout4_"., +11:u01:Private, +14:u02:0x7FFFFFFF, +15:u05:"LAYOUT4_"., +8:u01:Use., +14:u10:0x7fffffff, +15:u13:"layout4_"., +11:u00:Private, +14:u01:0x7FFFFFFF, +15:u04:"LAYOUT4_"., +8:u00:Use., +15:u12:"layout4_"., +7:u22:"LA, +8:u23:"LAY, +14:u00:0x7FFFFFFF, +15:u03:"LAYOUT4_"., +15:u11:"layout4_"., +15:u02:"LAYOUT4_"., +15:u10:"layout4_"., +10:u14:expert, +15:u01:"LAYOUT4_"., +10:u13:expert, +15:u00:"LAYOUT4_"., +10:u12:expert, +8:u23:Expe, +10:u11:expert, +17:u08:Collectively,, +10:u10:expert, +17:u07:Collectively,, +11:u08:22.5.3., +17:u06:Collectively,, +11:u07:22.5.3., +17:u14:collectively,, +17:u05:Collectively,, +11:u06:22.5.3., +17:u13:collectively,, +17:u04:Collectively,, +11:u05:22.5.3., +17:u12:collectively,, +17:u03:Collectively,, +11:u04:22.5.3., +17:u11:collectively,, +17:u02:Collectively,, +11:u03:22.5.3., +17:u10:collectively,, +17:u01:Collectively,, +11:u02:22.5.3., +17:u00:Collectively,, +11:u01:22.5.3., +11:u00:22.5.3., +8:u08:635], +8:u07:635], +8:u06:635], +11:u08:22.5.1., +8:u05:635], +8:u04:635], +11:u07:22.5.1., +71:u08:+-----------------------+-------+----------+-----+----------------+, +8:u03:635], +11:u06:22.5.1., +8:u02:635], +11:u14:22.5.1., +11:u05:22.5.1., +71:u07:+-----------------------+-------+----------+-----+----------------+, +8:u01:635], +11:u13:22.5.1., +11:u04:22.5.1., +71:u06:+-----------------------+-------+----------+-----+----------------+, +8:u00:635], +11:u12:22.5.1., +71:u14:+-----------------------+-------+----------+-----+----------------+, +11:u03:22.5.1., +71:u05:+-----------------------+-------+----------+-----+----------------+, +11:u11:22.5.1., +71:u13:+-----------------------+-------+----------+-----+----------------+, +11:u02:22.5.1., +71:u04:+-----------------------+-------+----------+-----+----------------+, +11:u10:22.5.1., +71:u12:+-----------------------+-------+----------+-----+----------------+, +11:u01:22.5.1., +71:u03:+-----------------------+-------+----------+-----+----------------+, +71:u11:+-----------------------+-------+----------+-----+----------------+, +11:u00:22.5.1., +71:u02:+-----------------------+-------+----------+-----+----------------+, +71:u10:+-----------------------+-------+----------+-----+----------------+, +71:u01:+-----------------------+-------+----------+-----+----------------+, +71:u00:+-----------------------+-------+----------+-----+----------------+, +11:u08:22.5.2., +11:u07:22.5.2., +11:u06:22.5.2., +11:u14:22.5.2., +11:u05:22.5.2., +14:u08:Guidelines, +11:u13:22.5.2., +11:u04:22.5.2., +14:u07:Guidelines, +10:u08:author, +11:u12:22.5.2., +11:u03:22.5.2., +14:u06:Guidelines, +10:u07:author, +11:u11:22.5.2., +11:u14:22.5.3., +11:u02:22.5.2., +14:u05:Guidelines, +10:u06:author, +11:u10:22.5.2., +11:u13:22.5.3., +11:u01:22.5.2., +14:u04:Guidelines, +10:u05:author, +11:u12:22.5.3., +11:u00:22.5.2., +14:u03:Guidelines, +10:u04:author, +10:u08:Define, +11:u11:22.5.3., +14:u02:Guidelines, +10:u03:author, +10:u07:Define, +11:u10:22.5.3., +14:u01:Guidelines, +10:u02:author, +10:u06:Define, +14:u00:Guidelines, +10:u01:author, +10:u05:Define, +7:uI2:*--, +10:u00:author, +10:u04:Define, +7:uI1:*--, +10:u03:Define, +7:uI0:*--, +10:u02:Define, +10:u01:Define, +12:u08:Describe, +8:u14:turn, +10:u00:Define, +12:u07:Describe, +8:u13:turn, +6:uI2:);, +12:u06:Describe, +8:u12:turn, +7:u22:tur, +8:u23:turn, +6:uI1:);, +12:u05:Describe, +8:u11:turn, +6:uI0:);, +12:u04:Describe, +11:u08:Failure, +8:u10:turn, +12:u03:Describe, +11:u07:Failure, +12:u02:Describe, +11:u06:Failure, +7:uI2:*,:, +12:u01:Describe, +11:u05:Failure, +8:u08:636], +7:uI1:*,:, +8:uI2:.,,., +12:u00:Describe, +11:u04:Failure, +8:u07:636], +7:uI0:*,:, +8:uI1:.,,., +11:u03:Failure, +8:u06:636], +8:uI0:.,,., +11:u02:Failure, +8:u05:636], +11:u01:Failure, +8:u04:636], +11:u00:Failure, +8:u03:636], +8:u02:636], +8:u01:636], +8:u00:636], +11:u08:Include, +11:u07:Include, +11:u06:Include, +11:u05:Include, +11:u04:Include, +11:u03:Include, +11:u02:Include, +11:u01:Include, +23:u08:CB_NOTIFY_DEVICEID;, +11:u00:Include, +23:u07:CB_NOTIFY_DEVICEID;, +11:u08:explain, +23:u06:CB_NOTIFY_DEVICEID;, +23:u05:CB_NOTIFY_DEVICEID;, +11:u07:explain, +23:u04:CB_NOTIFY_DEVICEID;, +11:u06:explain, +23:u03:CB_NOTIFY_DEVICEID;, +11:u14:explain, +11:u05:explain, +23:u02:CB_NOTIFY_DEVICEID;, +11:u13:explain, +18:u14:access-control, +11:u04:explain, +23:u01:CB_NOTIFY_DEVICEID;, +11:u12:explain, +18:u13:access-control, +11:u03:explain, +10:u08:Draft., +23:u00:CB_NOTIFY_DEVICEID;, +11:u11:explain, +18:u12:access-control, +11:u02:explain, +11:u10:explain, +18:u11:access-control, +11:u01:explain, +10:u07:Draft., +18:u10:access-control, +11:u00:explain, +10:u06:Draft., +12:u08:Revision, +10:u14:draft., +10:u05:Draft., +6:u08:3", +10:u13:draft., +10:u04:Draft., +12:u07:Revision, +6:u07:3", +10:u12:draft., +10:u03:Draft., +12:u06:Revision, +6:u06:3", +10:u11:draft., +7:uI2:"--, +10:u02:Draft., +12:u05:Revision, +6:u05:3", +10:u10:draft., +7:uI1:"--, +8:uI2:"()., +10:u01:Draft., +12:u04:Revision, +6:u04:3", +8:u23:Revi, +7:uI0:"--, +8:uI1:"()., +10:u00:Draft., +12:u03:Revision, +6:u03:3", +8:uI0:"()., +12:u02:Revision, +6:u02:3", +12:u01:Revision, +6:u01:3", +12:u00:Revision, +11:u08:domain,, +6:u00:3", +11:u07:domain,, +11:u06:domain,, +11:u14:domain,, +11:u05:domain,, +11:u13:domain,, +11:u04:domain,, +11:u12:domain,, +11:u03:domain,, +8:u08:637], +11:u11:domain,, +11:u02:domain,, +8:u07:637], +11:u10:domain,, +11:u01:domain,, +8:u06:637], +11:u00:domain,, +8:u05:637], +8:u04:637], +8:u03:637], +11:u08:22.6.1., +8:u02:637], +8:u01:637], +11:u07:22.6.1., +13:u08:22.6.1.1., +8:u00:637], +11:u06:22.6.1., +12:u08:Variable, +11:u14:22.6.1., +11:u05:22.6.1., +13:u07:22.6.1.1., +11:u13:22.6.1., +11:u04:22.6.1., +13:u06:22.6.1.1., +12:u07:Variable, +11:u12:22.6.1., +13:u14:22.6.1.1., +11:u03:22.6.1., +13:u05:22.6.1.1., +12:u06:Variable, +15:u08:"ietf.org",, +11:u11:22.6.1., +13:u13:22.6.1.1., +11:u02:22.6.1., +13:u04:22.6.1.1., +12:u05:Variable, +11:u10:22.6.1., +13:u12:22.6.1.1., +9:uI2:"$",,, +11:u01:22.6.1., +13:u03:22.6.1.1., +12:u04:Variable, +15:u07:"ietf.org",, +13:u11:22.6.1.1., +8:u23:Vari, +9:uI1:"$",,, +11:uI2:(":"),-, +11:u00:22.6.1., +13:u02:22.6.1.1., +12:u03:Variable, +15:u06:"ietf.org",, +13:u10:22.6.1.1., +15:u14:"ietf.org",, +9:uI0:"$",,, +11:uI1:(":"),-, +13:u01:22.6.1.1., +12:u02:Variable, +15:u05:"ietf.org",, +15:u13:"ietf.org",, +11:uI0:(":"),-, +13:u00:22.6.1.1., +12:u01:Variable, +15:u04:"ietf.org",, +10:u08:owner), +15:u12:"ietf.org",, +7:u22:"ie, +8:u23:"iet, +12:u00:Variable, +15:u03:"ietf.org",, +10:u07:owner), +15:u11:"ietf.org",, +15:u02:"ietf.org",, +10:u06:owner), +15:u10:"ietf.org",, +15:u01:"ietf.org",, +10:u05:owner), +11:u14:chooses, +15:u00:"ietf.org",, +22:u08:"${FCFS.ietf.org:", +10:u04:owner), +11:u13:chooses, +10:u03:owner), +11:u12:chooses, +10:u14:basis., +22:u07:"${FCFS.ietf.org:", +10:u02:owner), +11:u11:chooses, +10:u13:basis., +22:u06:"${FCFS.ietf.org:", +10:u01:owner), +11:u10:chooses, +10:u12:basis., +22:u14:"${fcfs.ietf.org:", +22:u05:"${FCFS.ietf.org:", +10:u00:owner), +10:u11:basis., +22:u13:"${fcfs.ietf.org:", +11:uI2:"$..:"., +22:u04:"${FCFS.ietf.org:", +10:u10:basis., +22:u12:"${fcfs.ietf.org:", +14:u14:registrant, +6:u21:"$, +7:u22:"${, +8:u23:"${F, +11:uI1:"$..:"., +22:u03:"${FCFS.ietf.org:", +22:u11:"${fcfs.ietf.org:", +14:u13:registrant, +11:uI0:"$..:"., +22:u02:"${FCFS.ietf.org:", +8:u08:":",, +22:u10:"${fcfs.ietf.org:", +14:u12:registrant, +22:u01:"${FCFS.ietf.org:", +14:u11:registrant, +22:u00:"${FCFS.ietf.org:", +8:u07:":",, +14:u10:registrant, +8:u06:":",, +8:u14:":",, +8:uI2:"$",, +8:u05:":",, +8:u13:":",, +8:uI1:"$",, +14:uI2:":","$.."., +8:u04:":",, +8:u12:":",, +6:u21:":, +7:u22:":", +8:u23:":",, +8:uI0:"$",, +14:uI1:":","$.."., +8:u03:":",, +8:u11:":",, +14:uI0:":","$.."., +8:u02:":",, +8:u10:":",, +9:uI2:().(), +8:u01:":",, +8:u14:etc., +9:uI1:().(), +8:u00:":",, +8:u13:etc., +9:uI0:().(), +8:u12:etc., +8:u11:etc., +8:u10:etc., +11:u14:contact, +11:u13:contact, +11:u12:contact, +8:u08:638], +11:u11:contact, +8:u07:638], +11:u10:contact, +8:u06:638], +15:u08:22.6.1.1.1., +8:u05:638], +8:u04:638], +15:u07:22.6.1.1.1., +60:u08:+------------------------+----------+------------------+, +8:u03:638], +15:u06:22.6.1.1.1., +8:u02:638], +15:u14:22.6.1.1.1., +15:u05:22.6.1.1.1., +60:u07:+------------------------+----------+------------------+, +8:u01:638], +15:u13:22.6.1.1.1., +15:u04:22.6.1.1.1., +60:u06:+------------------------+----------+------------------+, +8:u00:638], +15:u12:22.6.1.1.1., +60:u14:+------------------------+----------+------------------+, +15:u03:22.6.1.1.1., +60:u05:+------------------------+----------+------------------+, +9:u08:Point, +15:u11:22.6.1.1.1., +60:u13:+------------------------+----------+------------------+, +56:uI2:----------------------------------------------------, +6:uI2:52, +15:u02:22.6.1.1.1., +60:u04:+------------------------+----------+------------------+, +9:u07:Point, +15:u10:22.6.1.1.1., +60:u12:+------------------------+----------+------------------+, +56:uI1:----------------------------------------------------, +6:uI1:52, +15:u01:22.6.1.1.1., +60:u03:+------------------------+----------+------------------+, +9:u06:Point, +24:u08:${ietf.org:CPU_ARCH}, +60:u11:+------------------------+----------+------------------+, +56:uI0:----------------------------------------------------, +6:uI0:52, +15:u00:22.6.1.1.1., +60:u02:+------------------------+----------+------------------+, +9:u05:Point, +24:u07:${ietf.org:CPU_ARCH}, +60:u10:+------------------------+----------+------------------+, +60:u01:+------------------------+----------+------------------+, +9:u04:Point, +24:u06:${ietf.org:CPU_ARCH}, +60:u00:+------------------------+----------+------------------+, +9:u03:Point, +24:u05:${ietf.org:CPU_ARCH}, +23:u08:${ietf.org:OS_TYPE}, +9:u02:Point, +24:u04:${ietf.org:CPU_ARCH}, +23:u07:${ietf.org:OS_TYPE}, +9:u01:Point, +24:u03:${ietf.org:CPU_ARCH}, +23:u06:${ietf.org:OS_TYPE}, +9:u00:Point, +24:u02:${ietf.org:CPU_ARCH}, +23:u05:${ietf.org:OS_TYPE}, +26:u08:${ietf.org:OS_VERSION}, +24:u01:${ietf.org:CPU_ARCH}, +23:u04:${ietf.org:OS_TYPE}, +26:u07:${ietf.org:OS_VERSION}, +24:u00:${ietf.org:CPU_ARCH}, +23:u03:${ietf.org:OS_TYPE}, +26:u06:${ietf.org:OS_VERSION}, +23:u02:${ietf.org:OS_TYPE}, +26:u05:${ietf.org:OS_VERSION}, +23:u01:${ietf.org:OS_TYPE}, +26:u04:${ietf.org:OS_VERSION}, +11:u08:22.6.3., +23:u00:${ietf.org:OS_TYPE}, +26:u03:${ietf.org:OS_VERSION}, +26:u02:${ietf.org:OS_VERSION}, +11:u07:22.6.3., +26:u01:${ietf.org:OS_VERSION}, +24:u14:${ietf.org:cpu_arch}, +11:u06:22.6.3., +26:u00:${ietf.org:OS_VERSION}, +24:u13:${ietf.org:cpu_arch}, +11:u14:22.6.3., +13:uI2:$.:$.:..., +11:u05:22.6.3., +24:u12:${ietf.org:cpu_arch}, +11:u13:22.6.3., +5:u20:$, +6:u21:${, +7:u22:${i, +8:u23:${ie, +13:uI1:$.:$.:..., +11:u04:22.6.3., +24:u11:${ietf.org:cpu_arch}, +11:u12:22.6.3., +13:uI0:$.:$.:..., +8:uI2:$.:,, +11:u03:22.6.3., +15:u08:22.6.1.1.2., +24:u10:${ietf.org:cpu_arch}, +11:u11:22.6.3., +8:uI1:$.:,, +11:u02:22.6.3., +11:u10:22.6.3., +26:u14:${ietf.org:os_version}, +8:uI0:$.:,, +9:uI2:$.:.,, +11:u01:22.6.3., +15:u07:22.6.1.1.2., +26:u13:${ietf.org:os_version}, +9:uI1:$.:.,, +11:u00:22.6.3., +15:u06:22.6.1.1.2., +26:u12:${ietf.org:os_version}, +15:u14:22.6.1.1.2., +9:uI0:$.:.,, +15:u05:22.6.1.1.2., +14:u08:assignment, +26:u11:${ietf.org:os_version}, +15:u13:22.6.1.1.2., +15:u04:22.6.1.1.2., +26:u10:${ietf.org:os_version}, +15:u12:22.6.1.1.2., +15:u03:22.6.1.1.2., +14:u07:assignment, +11:u08:22.6.2., +15:u11:22.6.1.1.2., +15:u02:22.6.1.1.2., +14:u06:assignment, +15:u10:22.6.1.1.2., +14:u14:assignment, +15:u01:22.6.1.1.2., +14:u05:assignment, +11:u07:22.6.2., +14:u13:assignment, +15:u00:22.6.1.1.2., +14:u04:assignment, +11:u06:22.6.2., +15:u08:Assignments, +14:u12:assignment, +11:u14:22.6.2., +14:u03:assignment, +11:u05:22.6.2., +14:u11:assignment, +11:u13:22.6.2., +10:uI2:...$.:, +14:u02:assignment, +11:u04:22.6.2., +15:u07:Assignments, +14:u10:assignment, +11:u12:22.6.2., +10:uI1:...$.:, +8:uI2:"$.:, +14:u01:assignment, +11:u03:22.6.2., +15:u06:Assignments, +11:u11:22.6.2., +10:uI0:...$.:, +8:uI1:"$.:, +14:u00:assignment, +11:u02:22.6.2., +15:u05:Assignments, +11:u10:22.6.2., +8:uI0:"$.:, +11:u01:22.6.2., +15:u04:Assignments, +8:u23:Assi, +10:uI2:.-$.:., +11:u00:22.6.2., +15:u03:Assignments, +10:uI1:.-$.:., +15:u02:Assignments, +10:uI0:.-$.:., +15:u01:Assignments, +9:uI2:.$.:., +15:u00:Assignments, +8:u08:639], +9:uI1:.$.:., +8:u07:639], +9:uI0:.$.:., +8:u06:639], +8:u05:639], +8:u04:639], +8:u03:639], +12:u08:permits), +8:u02:639], +12:u07:permits), +8:u01:639], +12:u06:permits), +13:u08:22.6.2.1., +8:u00:639], +12:u05:permits), +12:u04:permits), +13:u07:22.6.2.1., +13:u08:22.6.2.2., +12:u03:permits), +13:u06:22.6.2.1., +12:u02:permits), +13:u14:22.6.2.1., +13:u05:22.6.2.1., +13:u07:22.6.2.2., +12:u01:permits), +13:u13:22.6.2.1., +13:u04:22.6.2.1., +13:u06:22.6.2.2., +12:u00:permits), +13:u12:22.6.2.1., +13:u14:22.6.2.2., +13:u03:22.6.2.1., +13:u05:22.6.2.2., +13:u11:22.6.2.1., +13:u13:22.6.2.2., +13:u02:22.6.2.1., +13:u04:22.6.2.2., +13:u10:22.6.2.1., +13:u12:22.6.2.2., +13:u01:22.6.2.1., +13:u03:22.6.2.2., +13:u11:22.6.2.2., +8:uI2:/--., +13:u00:22.6.2.1., +13:u02:22.6.2.2., +13:u10:22.6.2.2., +8:uI1:/--., +13:u01:22.6.2.2., +8:uI0:/--., +13:u00:22.6.2.2., +13:u08:22.6.3.1., +13:u07:22.6.3.1., +13:u08:22.6.3.2., +13:u06:22.6.3.1., +13:u14:22.6.3.1., +13:u05:22.6.3.1., +13:u07:22.6.3.2., +13:u13:22.6.3.1., +13:u04:22.6.3.1., +13:u06:22.6.3.2., +13:u12:22.6.3.1., +13:u14:22.6.3.2., +13:u03:22.6.3.1., +13:u05:22.6.3.2., +13:u11:22.6.3.1., +13:u13:22.6.3.2., +13:u02:22.6.3.1., +13:u04:22.6.3.2., +13:u10:22.6.3.1., +13:u12:22.6.3.2., +13:u01:22.6.3.1., +13:u03:22.6.3.2., +8:u08:640], +13:u11:22.6.3.2., +13:u00:22.6.3.1., +13:u02:22.6.3.2., +8:u07:640], +13:u10:22.6.3.2., +13:u01:22.6.3.2., +8:u06:640], +13:u00:22.6.3.2., +8:u05:640], +8:u04:640], +7:u08:[1], +8:u03:640], +8:u02:640], +7:u07:[1], +8:u01:640], +7:u06:[1], +7:u08:[2], +8:u00:640], +7:u14:[1], +7:u05:[1], +11:u08:Eisler,, +7:u13:[1], +12:u14:bradner,, +7:u04:[1], +7:u07:[2], +14:u08:Standard",, +7:u12:[1], +12:u13:bradner,, +7:u22:[1], +7:u23:[1], +7:u03:[1], +7:u06:[2], +11:u07:Eisler,, +7:u08:[3], +7:u08:STD, +7:u11:[1], +12:u12:bradner,, +7:u14:[2], +7:u22:Bra, +8:u23:Brad, +9:uI2:",,,., +7:u02:[1], +7:u05:[2], +11:u06:Eisler,, +14:u07:Standard",, +12:u08:Thurlow,, +7:u07:STD, +7:u10:[1], +12:u11:bradner,, +7:u13:[2], +11:u14:eisler,, +9:uI1:",,,., +7:u01:[1], +7:u04:[2], +11:u05:Eisler,, +14:u06:Standard",, +7:u07:[3], +7:u06:STD, +12:u10:bradner,, +7:u12:[2], +11:u13:eisler,, +14:u14:standard",, +7:u22:[2], +7:u23:[2], +9:uI0:",,,., +11:uI2:,.,.,":, +7:u00:[1], +7:u03:[2], +11:u04:Eisler,, +14:u05:Standard",, +7:u06:[3], +12:u07:Thurlow,, +7:u05:STD, +7:u11:[2], +11:u12:eisler,, +14:u13:standard",, +7:u14:[3], +7:u22:Eis, +8:u23:Eisl, +11:uI1:,.,.,":, +7:u02:[2], +11:u03:Eisler,, +14:u04:Standard",, +7:u05:[3], +12:u06:Thurlow,, +7:u04:STD, +7:u10:[2], +11:u11:eisler,, +14:u12:standard",, +7:u13:[3], +12:u14:thurlow,, +11:uI0:,.,.,":, +7:u01:[2], +11:u02:Eisler,, +14:u03:Standard",, +7:u04:[3], +12:u05:Thurlow,, +7:u03:STD, +11:u10:eisler,, +14:u11:standard",, +7:u12:[3], +12:u13:thurlow,, +7:u22:[3], +7:u23:[3], +9:uI2:,.,":, +7:u00:[2], +11:u01:Eisler,, +14:u02:Standard",, +7:u03:[3], +12:u04:Thurlow,, +7:u02:STD, +14:u10:standard",, +7:u11:[3], +12:u12:thurlow,, +7:u14:[4], +8:u23:Thur, +9:uI1:,.,":, +8:uI2:",,., +11:u00:Eisler,, +14:u01:Standard",, +7:u02:[3], +12:u03:Thurlow,, +8:u08:Zhu,, +7:u01:STD, +7:u10:[3], +12:u11:thurlow,, +7:u13:[4], +9:uI0:,.,":, +8:uI1:",,., +14:u00:Standard",, +7:u01:[3], +12:u02:Thurlow,, +7:u00:STD, +7:u08:L.,, +12:u10:thurlow,, +7:u12:[4], +19:u14:specification",, +7:u23:[4], +8:uI0:",,., +7:u00:[3], +12:u01:Thurlow,, +8:u07:Zhu,, +7:u07:L.,, +7:u11:[4], +19:u13:specification",, +12:u00:Thurlow,, +8:u06:Zhu,, +9:u08:2005., +7:u06:L.,, +13:u08:(GSS-API), +7:u10:[4], +19:u12:specification",, +8:u14:zhu,, +8:u05:Zhu,, +7:u08:[6], +7:u05:L.,, +13:u07:(GSS-API), +19:u11:specification",, +8:u13:zhu,, +8:u04:Zhu,, +9:u07:2005., +7:u04:L.,, +13:u06:(GSS-API), +19:u10:specification",, +8:u12:zhu,, +7:u22:Zhu, +8:u23:Zhu,, +8:u03:Zhu,, +9:u06:2005., +7:u07:[6], +7:u03:L.,, +13:u05:(GSS-API), +8:u11:zhu,, +9:u14:2005., +10:uI2:(-)",,, +8:u02:Zhu,, +9:u05:2005., +7:u06:[6], +7:u02:L.,, +13:u04:(GSS-API), +8:u10:zhu,, +9:u13:2005., +7:u14:[6], +10:uI1:(-)",,, +8:u01:Zhu,, +9:u04:2005., +7:u05:[6], +24:u08:(www.opengroup.org),, +7:u01:L.,, +13:u03:(GSS-API), +7:u08:Std, +9:u12:2005., +7:u13:[6], +8:u23:2005, +10:uI0:(-)",,, +8:u00:Zhu,, +9:u03:2005., +7:u04:[6], +7:u08:[7], +7:u00:L.,, +13:u02:(GSS-API), +7:u07:Std, +9:u11:2005., +7:u12:[6], +6:u21:[6, +7:u22:[6], +7:u23:[6], +9:u02:2005., +7:u03:[6], +24:u07:(www.opengroup.org),, +9:u08:Linn,, +13:u01:(GSS-API), +7:u06:Std, +9:u10:2005., +7:u11:[6], +9:u01:2005., +7:u02:[6], +24:u06:(www.opengroup.org),, +7:u07:[7], +13:u00:(GSS-API), +7:u05:Std, +7:u08:J.,, +7:u10:[6], +24:u14:(www.opengroup.org),, +9:u00:2005., +7:u01:[6], +24:u05:(www.opengroup.org),, +7:u06:[7], +9:u07:Linn,, +7:u08:[8], +7:u04:Std, +7:u07:J.,, +24:u13:(www.opengroup.org),, +7:u14:[7], +12:uI2:(..),",., +7:u00:[6], +24:u04:(www.opengroup.org),, +7:u05:[7], +9:u06:Linn,, +10:u08:Recio,, +7:u03:Std, +7:u06:J.,, +24:u12:(www.opengroup.org),, +7:u13:[7], +9:u14:linn,, +7:u22:(ww, +8:u23:(www, +12:uI1:(..),",., +24:u03:(www.opengroup.org),, +7:u04:[7], +9:u05:Linn,, +7:u07:[8], +11:u08:Garcia,, +7:u02:Std, +7:u05:J.,, +24:u11:(www.opengroup.org),, +7:u12:[7], +9:u13:linn,, +7:u23:[7], +12:uI0:(..),",., +24:u02:(www.opengroup.org),, +7:u03:[7], +9:u04:Linn,, +7:u06:[8], +10:u07:Recio,, +7:u01:Std, +7:u04:J.,, +6:u08:"A, +24:u10:(www.opengroup.org),, +7:u11:[7], +9:u12:linn,, +7:u14:[8], +8:u23:Linn, +9:uI2:,",,., +24:u01:(www.opengroup.org),, +7:u02:[7], +9:u03:Linn,, +7:u05:[8], +10:u06:Recio,, +11:u07:Garcia,, +7:u08:[9], +7:u00:Std, +7:u03:J.,, +6:u07:"A, +7:u10:[7], +9:u11:linn,, +7:u13:[8], +10:u14:recio,, +9:uI1:,",,., +24:u00:(www.opengroup.org),, +7:u01:[7], +9:u02:Linn,, +7:u04:[8], +10:u05:Recio,, +11:u06:Garcia,, +7:u02:J.,, +6:u06:"A, +9:u10:linn,, +7:u12:[8], +10:u13:recio,, +11:u14:garcia,, +6:u21:[8, +7:u22:[8], +7:u23:[8], +9:uI0:,",,., +7:u00:[7], +9:u01:Linn,, +7:u03:[8], +10:u04:Recio,, +11:u05:Garcia,, +7:u07:[9], +9:u08:2009., +7:u01:J.,, +6:u05:"A, +7:u11:[8], +10:u12:recio,, +11:u13:garcia,, +8:u23:Reci, +9:u00:Linn,, +7:u02:[8], +10:u03:Recio,, +11:u04:Garcia,, +7:u06:[9], +8:u08:[10], +7:u00:J.,, +6:u04:"A, +7:u10:[8], +10:u11:recio,, +11:u12:garcia,, +7:u14:[9], +6:u21:Ga, +7:u22:Gar, +8:u23:Garc, +7:u01:[8], +10:u02:Recio,, +11:u03:Garcia,, +7:u05:[9], +9:u07:2009., +12:u08:Shepler,, +6:u03:"A, +10:u10:recio,, +11:u11:garcia,, +7:u13:[9], +7:u00:[8], +10:u01:Recio,, +11:u02:Garcia,, +7:u04:[9], +9:u06:2009., +8:u07:[10], +6:u02:"A, +11:u10:garcia,, +7:u12:[9], +9:u14:2009., +6:u21:[9, +7:u22:[9], +7:u23:[9], +11:uI2:,.,"",,, +10:u00:Recio,, +11:u01:Garcia,, +7:u03:[9], +9:u05:2009., +8:u06:[10], +12:u07:Shepler,, +6:u01:"A, +7:u11:[9], +9:u13:2009., +8:u14:[10], +11:uI1:,.,"",,, +11:u00:Garcia,, +7:u02:[9], +9:u04:2009., +8:u05:[10], +12:u06:Shepler,, +6:u00:"A, +7:u10:[9], +9:u12:2009., +8:u13:[10], +12:u14:shepler,, +8:u23:2009, +11:uI0:,.,"",,, +7:u01:[9], +9:u03:2009., +8:u04:[10], +12:u05:Shepler,, +8:u08:[11], +9:u08:5662,, +9:u11:2009., +8:u12:[10], +12:u13:shepler,, +12:u14:"network, +7:u22:[10, +8:u23:[10], +18:uI2:,.,.,,.,.,.,.,, +7:u00:[9], +9:u02:2009., +8:u03:[10], +12:u04:Shepler,, +9:u07:5662,, +9:u10:2009., +8:u11:[10], +12:u12:shepler,, +12:u13:"network, +7:u22:She, +8:u23:Shep, +18:uI1:,.,.,,.,.,.,.,, +9:u01:2009., +8:u02:[10], +12:u03:Shepler,, +8:u07:[11], +9:u06:5662,, +8:u10:[10], +12:u11:shepler,, +12:u12:"network, +8:u23:"Net, +18:uI0:,.,.,,.,.,.,.,, +9:u00:2009., +8:u01:[10], +12:u02:Shepler,, +8:u06:[11], +9:u05:5662,, +12:u10:shepler,, +12:u11:"network, +8:u14:[11], +8:u00:[10], +12:u01:Shepler,, +8:u05:[11], +9:u04:5662,, +12:u10:"network, +8:u13:[11], +12:u00:Shepler,, +8:u04:[11], +9:u03:5662,, +8:u12:[11], +7:u22:[11, +8:u23:[11], +8:u03:[11], +9:u02:5662,, +8:u11:[11], +8:u02:[11], +9:u01:5662,, +8:u10:[11], +8:u01:[11], +9:u00:5662,, +8:u08:641], +8:u00:[11], +8:u07:641], +8:u06:641], +8:u08:[12], +8:u05:641], +8:u04:641], +8:u07:[12], +9:u08:(RPC), +8:u03:641], +8:u06:[12], +8:u02:641], +8:u14:[12], +8:u05:[12], +9:u07:(RPC), +8:u08:[13], +8:u01:641], +9:u08:5665,, +8:u13:[12], +8:u04:[12], +9:u06:(RPC), +8:u00:641], +9:u07:5665,, +8:u12:[12], +9:u14:(rpc), +7:u22:[12, +8:u23:[12], +8:u03:[12], +9:u05:(RPC), +8:u07:[13], +9:u06:5665,, +8:u11:[12], +9:u13:(rpc), +8:u02:[12], +9:u04:(RPC), +8:u06:[13], +11:u08:1003.1,, +9:u05:5665,, +8:u10:[12], +9:u12:(rpc), +8:u14:[13], +8:u01:[12], +9:u03:(RPC), +8:u05:[13], +9:u04:5665,, +8:u08:2004, +9:u11:(rpc), +8:u13:[13], +8:u00:[12], +9:u02:(RPC), +8:u04:[13], +11:u07:1003.1,, +8:u08:[14], +9:u03:5665,, +8:u07:2004, +16:u08:1931624232",, +9:u10:(rpc), +8:u12:[13], +7:u22:[13, +8:u23:[13], +10:uI2:,"'()', +9:u01:(RPC), +8:u03:[13], +11:u06:1003.1,, +9:u02:5665,, +8:u06:2004, +16:u07:1931624232",, +8:u11:[13], +11:u14:1003.1,, +10:uI1:,"'()', +9:u00:(RPC), +8:u02:[13], +11:u05:1003.1,, +8:u07:[14], +9:u01:5665,, +8:u05:2004, +16:u06:1931624232",, +8:u10:[13], +11:u13:1003.1,, +8:u14:isbn, +10:uI0:,"'()', +12:uI2:.,,(..),, +8:u01:[13], +11:u04:1003.1,, +8:u06:[14], +9:u00:5665,, +8:u04:2004, +16:u05:1931624232",, +11:u12:1003.1,, +8:u13:isbn, +8:u14:[14], +8:u23:1003, +12:uI1:.,,(..),, +8:u00:[13], +11:u03:1003.1,, +8:u05:[14], +8:u03:2004, +16:u04:1931624232",, +11:u11:1003.1,, +8:u12:isbn, +8:u13:[14], +7:u22:ISB, +8:u23:ISBN, +12:uI0:.,,(..),, +11:u02:1003.1,, +8:u04:[14], +8:u08:[15], +8:u02:2004, +16:u03:1931624232",, +11:u10:1003.1,, +8:u11:isbn, +8:u12:[14], +7:u22:[14, +8:u23:[14], +11:u01:1003.1,, +8:u03:[14], +8:u01:2004, +16:u02:1931624232",, +8:u10:isbn, +8:u11:[14], +11:u00:1003.1,, +8:u02:[14], +8:u07:[15], +8:u00:2004, +16:u01:1931624232",, +8:u10:[14], +8:u01:[14], +8:u06:[15], +16:u00:1931624232",, +8:u14:[15], +8:u00:[14], +8:u05:[15], +8:u13:[15], +8:u04:[15], +8:u08:[16], +8:u12:[15], +8:u03:[15], +12:u08:Hoffman,, +8:u11:[15], +8:u02:[15], +8:u07:[16], +21:u08:Internationalized, +8:u10:[15], +8:u01:[15], +8:u06:[16], +12:u07:Hoffman,, +11:u08:Strings, +8:u14:[16], +8:u00:[15], +8:u05:[16], +12:u06:Hoffman,, +21:u07:Internationalized, +8:u08:[17], +11:u07:Strings, +9:u08:2002., +8:u13:[16], +12:u14:hoffman,, +8:u04:[16], +12:u05:Hoffman,, +21:u06:Internationalized, +11:u06:Strings, +9:u07:2002., +8:u12:[16], +12:u13:hoffman,, +21:u14:internationalized, +7:u22:[16, +8:u23:[16], +8:u03:[16], +12:u04:Hoffman,, +21:u05:Internationalized, +8:u07:[17], +11:u05:Strings, +9:u06:2002., +8:u11:[16], +12:u12:hoffman,, +21:u13:internationalized, +7:u22:Hof, +8:u23:Hoff, +11:uI2:("")",,, +8:u02:[16], +12:u03:Hoffman,, +21:u04:Internationalized, +8:u06:[17], +11:u04:Strings, +9:u05:2002., +8:u10:[16], +12:u11:hoffman,, +21:u12:internationalized, +8:u14:[17], +11:uI1:("")",,, +8:u01:[16], +12:u02:Hoffman,, +21:u03:Internationalized, +8:u05:[17], +11:u03:Strings, +9:u04:2002., +12:u10:hoffman,, +21:u11:internationalized, +8:u13:[17], +11:uI0:("")",,, +8:u00:[16], +12:u01:Hoffman,, +21:u02:Internationalized, +8:u04:[17], +8:u08:[18], +11:u02:Strings, +9:u03:2002., +21:u10:internationalized, +8:u12:[17], +12:u00:Hoffman,, +21:u01:Internationalized, +8:u03:[17], +11:u01:Strings, +9:u02:2002., +8:u11:[17], +21:u00:Internationalized, +8:u02:[17], +8:u07:[18], +16:u08:"Information, +11:u00:Strings, +9:u01:2002., +16:u08:Organization, +8:u10:[17], +8:u01:[17], +8:u06:[18], +9:u00:2002., +16:u07:Organization, +8:u14:[18], +8:u00:[17], +8:u05:[18], +16:u07:"Information, +16:u08:Multilingual, +16:u06:Organization, +8:u13:[18], +17:u14:international, +8:u04:[18], +16:u06:"Information, +8:u08:[19], +16:u05:Organization, +11:u08:Plane",, +8:u12:[18], +17:u13:international, +16:u14:"information, +7:u22:[18, +8:u23:[18], +8:u03:[18], +16:u05:"Information, +16:u07:Multilingual, +15:u08:Alvestrand,, +16:u04:Organization, +11:u07:Plane",, +8:u11:[18], +17:u12:international, +16:u13:"information, +8:u02:[18], +16:u04:"Information, +16:u06:Multilingual, +8:u07:[19], +15:u08:Languages",, +16:u03:Organization, +11:u06:Plane",, +7:u08:H.,, +8:u10:[18], +17:u11:international, +16:u12:"information, +16:u14:multilingual, +7:u22:"In, +8:u23:"Inf, +8:uI2:()-:, +8:u01:[18], +16:u03:"Information, +16:u05:Multilingual, +8:u06:[19], +15:u07:Alvestrand,, +8:u08:[20], +16:u02:Organization, +11:u05:Plane",, +7:u07:H.,, +17:u10:international, +16:u11:"information, +16:u13:multilingual, +8:u14:[19], +8:uI1:()-:, +9:uI2:",-,., +8:u00:[18], +16:u02:"Information, +16:u04:Multilingual, +8:u05:[19], +15:u06:Alvestrand,, +15:u07:Languages",, +16:u01:Organization, +11:u04:Plane",, +7:u06:H.,, +16:u10:"information, +16:u12:multilingual, +8:u13:[19], +15:u14:alvestrand,, +8:uI0:()-:, +9:uI1:",-,., +16:u01:"Information, +16:u03:Multilingual, +8:u04:[19], +15:u05:Alvestrand,, +15:u06:Languages",, +8:u07:[20], +11:u08:Profile, +16:u00:Organization, +11:u03:Plane",, +7:u05:H.,, +16:u11:multilingual, +8:u12:[19], +15:u13:alvestrand,, +15:u14:languages",, +7:u22:[19, +8:u23:[19], +9:uI0:",-,., +16:u00:"Information, +16:u02:Multilingual, +8:u03:[19], +15:u04:Alvestrand,, +15:u05:Languages",, +8:u06:[20], +11:u02:Plane",, +7:u04:H.,, +16:u10:multilingual, +8:u11:[19], +15:u12:alvestrand,, +15:u13:languages",, +8:u14:[20], +7:u22:Alv, +8:u23:Alve, +16:u01:Multilingual, +8:u02:[19], +15:u03:Alvestrand,, +15:u04:Languages",, +8:u05:[20], +11:u07:Profile, +8:u08:[21], +11:u01:Plane",, +7:u03:H.,, +9:u08:3491,, +8:u10:[19], +15:u11:alvestrand,, +15:u12:languages",, +8:u13:[20], +16:u00:Multilingual, +8:u01:[19], +15:u02:Alvestrand,, +15:u03:Languages",, +8:u04:[20], +11:u06:Profile, +11:u00:Plane",, +7:u02:H.,, +9:u07:3491,, +15:u10:alvestrand,, +15:u11:languages",, +8:u12:[20], +11:u14:profile, +7:u22:[20, +8:u23:[20], +10:uI2:,..,":, +8:u00:[19], +15:u01:Alvestrand,, +15:u02:Languages",, +8:u03:[20], +11:u05:Profile, +8:u07:[21], +7:u01:H.,, +9:u06:3491,, +15:u10:languages",, +8:u11:[20], +11:u13:profile, +10:uI1:,..,":, +15:u00:Alvestrand,, +15:u01:Languages",, +8:u02:[20], +11:u04:Profile, +8:u06:[21], +7:u00:H.,, +9:u05:3491,, +8:u10:[20], +11:u12:profile, +8:u14:[21], +8:u23:Prof, +10:uI0:,..,":, +15:u00:Languages",, +8:u01:[20], +11:u03:Profile, +8:u05:[21], +9:u04:3491,, +11:u11:profile, +8:u13:[21], +8:u00:[20], +11:u02:Profile, +8:u04:[21], +9:u03:3491,, +11:u10:profile, +8:u12:[21], +7:u22:[21, +8:u23:[21], +11:u01:Profile, +8:u03:[21], +9:u02:3491,, +8:u11:[21], +11:u00:Profile, +8:u02:[21], +9:u01:3491,, +8:u10:[21], +8:u01:[21], +9:u00:3491,, +8:u08:642], +8:u00:[21], +8:u07:642], +8:u06:642], +8:u08:[22], +8:u05:642], +8:u04:642], +8:u07:[22], +8:u03:642], +8:u06:[22], +8:u02:642], +8:u14:[22], +8:u05:[22], +8:u01:642], +8:u13:[22], +8:u04:[22], +8:u08:[23], +8:u00:642], +8:u12:[22], +7:u22:[22, +8:u23:[22], +8:u03:[22], +8:u11:[22], +8:u02:[22], +8:u07:[23], +8:u10:[22], +8:u01:[22], +8:u06:[23], +8:u14:[23], +8:u00:[22], +8:u05:[23], +8:u13:[23], +8:u04:[23], +8:u08:[24], +8:u12:[23], +7:u22:[23, +8:u23:[23], +8:u03:[23], +8:u11:[23], +8:u02:[23], +8:u07:[24], +8:u10:[23], +8:u01:[23], +8:u06:[24], +8:u14:[24], +8:u00:[23], +8:u05:[24], +8:u13:[24], +8:u04:[24], +8:u08:[25], +8:u12:[24], +7:u22:[24, +8:u23:[24], +8:u03:[24], +11:u08:Schaad,, +8:u11:[24], +8:u02:[24], +8:u07:[25], +14:u08:Algorithms, +8:u10:[24], +8:u01:[24], +8:u06:[25], +11:u07:Schaad,, +8:u14:[25], +8:u00:[24], +8:u05:[25], +11:u06:Schaad,, +14:u07:Algorithms, +8:u13:[25], +11:u14:schaad,, +8:u04:[25], +11:u05:Schaad,, +14:u06:Algorithms, +15:u08:Certificate, +8:u12:[25], +11:u13:schaad,, +7:u22:[25, +8:u23:[25], +8:u03:[25], +11:u04:Schaad,, +14:u05:Algorithms, +8:u08:[26], +15:u07:Certificate, +8:u11:[25], +11:u12:schaad,, +8:u23:Scha, +8:u02:[25], +11:u03:Schaad,, +14:u04:Algorithms, +12:u08:National, +15:u06:Certificate, +8:u10:[25], +11:u11:schaad,, +7:u22:Alg, +8:u23:Algo, +8:u01:[25], +11:u02:Schaad,, +14:u03:Algorithms, +8:u07:[26], +18:u08:"Cryptographic, +15:u05:Certificate, +13:u08:Institute, +11:u10:schaad,, +8:u00:[25], +11:u01:Schaad,, +14:u02:Algorithms, +8:u06:[26], +12:u07:National, +58:u08:http://csrc.nist.gov/groups/ST/crypto_apps_infra/csor/, +15:u04:Certificate, +13:u07:Institute, +8:u14:[26], +11:u00:Schaad,, +14:u01:Algorithms, +8:u05:[26], +12:u06:National, +18:u07:"Cryptographic, +20:u08:algorithms.html,, +15:u03:Certificate, +13:u06:Institute, +8:u13:[26], +12:u14:national, +14:u00:Algorithms, +8:u04:[26], +12:u05:National, +18:u06:"Cryptographic, +58:u07:http://csrc.nist.gov/groups/ST/crypto_apps_infra/csor/, +8:u08:[27], +15:u02:Certificate, +13:u05:Institute, +8:u12:[26], +12:u13:national, +18:u14:"cryptographic, +7:u22:[26, +8:u23:[26], +8:u03:[26], +12:u04:National, +18:u05:"Cryptographic, +58:u06:http://csrc.nist.gov/groups/ST/crypto_apps_infra/csor/, +20:u07:algorithms.html,, +12:u08:Adamson,, +15:u01:Certificate, +13:u04:Institute, +8:u11:[26], +12:u12:national, +18:u13:"cryptographic, +58:u14:http://csrc.nist.gov/groups/st/crypto_apps_infra/csor/, +7:u22:Nat, +8:u23:Nati, +8:u02:[26], +12:u03:National, +18:u04:"Cryptographic, +58:u05:http://csrc.nist.gov/groups/ST/crypto_apps_infra/csor/, +20:u06:algorithms.html,, +8:u07:[27], +15:u00:Certificate, +13:u03:Institute, +8:u10:[26], +12:u11:national, +18:u12:"cryptographic, +58:u13:http://csrc.nist.gov/groups/st/crypto_apps_infra/csor/, +20:u14:algorithms.html,, +6:u21:"C, +7:u22:"Cr, +8:u23:"Cry, +14:uI2:://../////, +8:u01:[26], +12:u02:National, +18:u03:"Cryptographic, +58:u04:http://csrc.nist.gov/groups/ST/crypto_apps_infra/csor/, +20:u05:algorithms.html,, +8:u06:[27], +12:u07:Adamson,, +13:u02:Institute, +12:u10:national, +18:u11:"cryptographic, +58:u12:http://csrc.nist.gov/groups/st/crypto_apps_infra/csor/, +20:u13:algorithms.html,, +8:u14:[27], +14:uI1:://../////, +8:u00:[26], +12:u01:National, +18:u02:"Cryptographic, +58:u03:http://csrc.nist.gov/groups/ST/crypto_apps_infra/csor/, +20:u04:algorithms.html,, +8:u05:[27], +12:u06:Adamson,, +8:u08:[28], +13:u01:Institute, +9:u08:2016,, +18:u10:"cryptographic, +58:u11:http://csrc.nist.gov/groups/st/crypto_apps_infra/csor/, +20:u12:algorithms.html,, +8:u13:[27], +12:u14:adamson,, +14:uI0:://../////, +12:u00:National, +18:u01:"Cryptographic, +58:u02:http://csrc.nist.gov/groups/ST/crypto_apps_infra/csor/, +20:u03:algorithms.html,, +8:u04:[27], +12:u05:Adamson,, +11:u08:Neuman,, +13:u00:Institute, +9:u07:2016,, +58:u10:http://csrc.nist.gov/groups/st/crypto_apps_infra/csor/, +20:u11:algorithms.html,, +8:u12:[27], +12:u13:adamson,, +11:uI2:,..,"(), +18:u00:"Cryptographic, +58:u01:http://csrc.nist.gov/groups/ST/crypto_apps_infra/csor/, +20:u02:algorithms.html,, +8:u03:[27], +12:u04:Adamson,, +8:u07:[28], +9:u06:2016,, +20:u10:algorithms.html,, +8:u11:[27], +12:u12:adamson,, +7:u22:Ada, +8:u23:Adam, +11:uI1:,..,"(), +58:u00:http://csrc.nist.gov/groups/ST/crypto_apps_infra/csor/, +20:u01:algorithms.html,, +8:u02:[27], +12:u03:Adamson,, +8:u06:[28], +11:u07:Neuman,, +9:u05:2016,, +8:u10:[27], +12:u11:adamson,, +8:u14:[28], +11:uI0:,..,"(), +20:u00:algorithms.html,, +8:u01:[27], +12:u02:Adamson,, +8:u05:[28], +11:u06:Neuman,, +46:u08:<https://www.rfc-editor.org/info/rfc4120>., +9:u04:2016,, +21:u08:10.17487/RFC4120,, +12:u10:adamson,, +8:u13:[28], +11:u14:neuman,, +8:u00:[27], +12:u01:Adamson,, +8:u04:[28], +11:u05:Neuman,, +9:u03:2016,, +21:u07:10.17487/RFC4120,, +8:u12:[28], +11:u13:neuman,, +7:u22:[28, +8:u23:[28], +12:u00:Adamson,, +8:u03:[28], +11:u04:Neuman,, +46:u07:<https://www.rfc-editor.org/info/rfc4120>., +11:u08:Arends,, +9:u02:2016,, +21:u06:10.17487/RFC4120,, +8:u11:[28], +11:u12:neuman,, +7:u22:Neu, +8:u23:Neum, +8:u02:[28], +11:u03:Neuman,, +46:u06:<https://www.rfc-editor.org/info/rfc4120>., +9:u01:2016,, +21:u05:10.17487/RFC4120,, +8:u10:[28], +11:u11:neuman,, +46:u14:<https://www.rfc-editor.org/info/rfc4120>., +8:u01:[28], +11:u02:Neuman,, +46:u05:<https://www.rfc-editor.org/info/rfc4120>., +11:u07:Arends,, +9:u00:2016,, +21:u04:10.17487/RFC4120,, +8:u08:"DNS, +11:u10:neuman,, +46:u13:<https://www.rfc-editor.org/info/rfc4120>., +8:u00:[28], +11:u01:Neuman,, +46:u04:<https://www.rfc-editor.org/info/rfc4120>., +11:u06:Arends,, +46:u08:<https://www.rfc-editor.org/info/rfc4033>., +21:u03:10.17487/RFC4120,, +8:u07:"DNS, +9:u08:4033,, +46:u12:<https://www.rfc-editor.org/info/rfc4120>., +11:u14:arends,, +11:u00:Neuman,, +46:u03:<https://www.rfc-editor.org/info/rfc4120>., +11:u05:Arends,, +8:u08:[30], +21:u02:10.17487/RFC4120,, +8:u06:"DNS, +9:u07:4033,, +46:u11:<https://www.rfc-editor.org/info/rfc4120>., +11:u13:arends,, +9:u14:rose,, +46:u02:<https://www.rfc-editor.org/info/rfc4120>., +11:u04:Arends,, +46:u07:<https://www.rfc-editor.org/info/rfc4033>., +21:u01:10.17487/RFC4120,, +8:u05:"DNS, +9:u06:4033,, +46:u10:<https://www.rfc-editor.org/info/rfc4120>., +11:u12:arends,, +9:u13:rose,, +8:u23:Aren, +46:u01:<https://www.rfc-editor.org/info/rfc4120>., +11:u03:Arends,, +46:u06:<https://www.rfc-editor.org/info/rfc4033>., +8:u07:[30], +16:u08:Multi-Domain, +21:u00:10.17487/RFC4120,, +8:u04:"DNS, +9:u05:4033,, +11:u11:arends,, +9:u12:rose,, +46:u14:<https://www.rfc-editor.org/info/rfc4033>., +7:u22:Ros, +8:u23:Rose, +46:u00:<https://www.rfc-editor.org/info/rfc4120>., +11:u02:Arends,, +46:u05:<https://www.rfc-editor.org/info/rfc4033>., +8:u06:[30], +8:u03:"DNS, +9:u04:4033,, +13:u08:Namespace, +11:u10:arends,, +9:u11:rose,, +46:u13:<https://www.rfc-editor.org/info/rfc4033>., +8:u14:[30], +11:u01:Arends,, +46:u04:<https://www.rfc-editor.org/info/rfc4033>., +8:u05:[30], +16:u07:Multi-Domain, +46:u08:<https://www.rfc-editor.org/info/rfc8000>., +8:u02:"DNS, +9:u03:4033,, +13:u07:Namespace, +21:u08:10.17487/RFC8000,, +9:u10:rose,, +46:u12:<https://www.rfc-editor.org/info/rfc4033>., +8:u13:[30], +11:u00:Arends,, +46:u03:<https://www.rfc-editor.org/info/rfc4033>., +8:u04:[30], +16:u06:Multi-Domain, +8:u01:"DNS, +9:u02:4033,, +13:u06:Namespace, +21:u07:10.17487/RFC8000,, +46:u11:<https://www.rfc-editor.org/info/rfc4033>., +8:u12:[30], +16:u14:multi-domain, +7:u22:[30, +8:u23:[30], +46:u02:<https://www.rfc-editor.org/info/rfc4033>., +8:u03:[30], +16:u05:Multi-Domain, +46:u07:<https://www.rfc-editor.org/info/rfc8000>., +8:u00:"DNS, +9:u01:4033,, +13:u05:Namespace, +21:u06:10.17487/RFC8000,, +46:u10:<https://www.rfc-editor.org/info/rfc4033>., +8:u11:[30], +16:u13:multi-domain, +46:u01:<https://www.rfc-editor.org/info/rfc4033>., +8:u02:[30], +16:u04:Multi-Domain, +46:u06:<https://www.rfc-editor.org/info/rfc8000>., +9:u00:4033,, +13:u04:Namespace, +21:u05:10.17487/RFC8000,, +8:u10:[30], +16:u12:multi-domain, +46:u14:<https://www.rfc-editor.org/info/rfc8000>., +46:u00:<https://www.rfc-editor.org/info/rfc4033>., +8:u01:[30], +16:u03:Multi-Domain, +46:u05:<https://www.rfc-editor.org/info/rfc8000>., +13:u03:Namespace, +21:u04:10.17487/RFC8000,, +8:u08:643], +16:u11:multi-domain, +46:u13:<https://www.rfc-editor.org/info/rfc8000>., +8:u00:[30], +16:u02:Multi-Domain, +46:u04:<https://www.rfc-editor.org/info/rfc8000>., +13:u02:Namespace, +21:u03:10.17487/RFC8000,, +8:u07:643], +16:u10:multi-domain, +46:u12:<https://www.rfc-editor.org/info/rfc8000>., +16:u01:Multi-Domain, +46:u03:<https://www.rfc-editor.org/info/rfc8000>., +13:u01:Namespace, +21:u02:10.17487/RFC8000,, +8:u06:643], +46:u11:<https://www.rfc-editor.org/info/rfc8000>., +16:u00:Multi-Domain, +46:u02:<https://www.rfc-editor.org/info/rfc8000>., +8:u08:[31], +13:u00:Namespace, +21:u01:10.17487/RFC8000,, +8:u05:643], +46:u10:<https://www.rfc-editor.org/info/rfc8000>., +46:u01:<https://www.rfc-editor.org/info/rfc8000>., +10:u08:Lever,, +21:u00:10.17487/RFC8000,, +8:u04:643], +46:u00:<https://www.rfc-editor.org/info/rfc8000>., +8:u07:[31], +10:u08:Memory, +8:u03:643], +8:u06:[31], +10:u07:Lever,, +7:u08:1",, +8:u02:643], +8:u14:[31], +8:u05:[31], +10:u06:Lever,, +10:u07:Memory, +46:u08:<https://www.rfc-editor.org/info/rfc8166>., +8:u01:643], +8:u13:[31], +10:u14:lever,, +8:u04:[31], +10:u05:Lever,, +10:u06:Memory, +7:u07:1",, +8:u08:[32], +8:u00:643], +8:u12:[31], +10:u13:lever,, +7:u22:[31, +8:u23:[31], +15:uI2:,.,.,,.,.,", +8:u03:[31], +10:u04:Lever,, +10:u05:Memory, +7:u06:1",, +46:u07:<https://www.rfc-editor.org/info/rfc8166>., +8:u11:[31], +10:u12:lever,, +7:u14:1",, +7:u22:Lev, +8:u23:Leve, +15:uI1:,.,.,,.,.,", +8:u02:[31], +10:u03:Lever,, +10:u04:Memory, +7:u05:1",, +46:u06:<https://www.rfc-editor.org/info/rfc8166>., +8:u07:[32], +8:u10:[31], +10:u11:lever,, +7:u13:1",, +46:u14:<https://www.rfc-editor.org/info/rfc8166>., +7:u22:Mem, +8:u23:Memo, +15:uI0:,.,.,,.,.,", +8:u01:[31], +10:u02:Lever,, +10:u03:Memory, +7:u04:1",, +46:u05:<https://www.rfc-editor.org/info/rfc8166>., +8:u06:[32], +17:u08:RPC-over-RDMA, +10:u10:lever,, +7:u12:1",, +46:u13:<https://www.rfc-editor.org/info/rfc8166>., +8:u14:[32], +7:u22:1",, +7:u23:1",, +8:u00:[31], +10:u01:Lever,, +10:u02:Memory, +7:u03:1",, +46:u04:<https://www.rfc-editor.org/info/rfc8166>., +8:u05:[32], +46:u08:<https://www.rfc-editor.org/info/rfc8267>., +17:u07:RPC-over-RDMA, +21:u08:10.17487/RFC8267,, +7:u11:1",, +46:u12:<https://www.rfc-editor.org/info/rfc8166>., +8:u13:[32], +10:u00:Lever,, +10:u01:Memory, +7:u02:1",, +46:u03:<https://www.rfc-editor.org/info/rfc8166>., +8:u04:[32], +17:u06:RPC-over-RDMA, +21:u07:10.17487/RFC8267,, +7:u10:1",, +46:u11:<https://www.rfc-editor.org/info/rfc8166>., +8:u12:[32], +7:u22:[32, +8:u23:[32], +11:uI2:,.,"()-, +10:u00:Memory, +7:u01:1",, +46:u02:<https://www.rfc-editor.org/info/rfc8166>., +8:u03:[32], +46:u07:<https://www.rfc-editor.org/info/rfc8267>., +8:u08:[33], +17:u05:RPC-over-RDMA, +21:u06:10.17487/RFC8267,, +46:u10:<https://www.rfc-editor.org/info/rfc8166>., +8:u11:[32], +11:uI1:,.,"()-, +9:uI2:--",,, +7:u00:1",, +46:u01:<https://www.rfc-editor.org/info/rfc8166>., +8:u02:[32], +46:u06:<https://www.rfc-editor.org/info/rfc8267>., +17:u04:RPC-over-RDMA, +21:u05:10.17487/RFC8267,, +8:u10:[32], +46:u14:<https://www.rfc-editor.org/info/rfc8267>., +11:uI0:,.,"()-, +9:uI1:--",,, +46:u00:<https://www.rfc-editor.org/info/rfc8166>., +8:u01:[32], +46:u05:<https://www.rfc-editor.org/info/rfc8267>., +8:u07:[33], +10:u08:Beame,, +17:u03:RPC-over-RDMA, +21:u04:10.17487/RFC8267,, +46:u13:<https://www.rfc-editor.org/info/rfc8267>., +9:uI0:--",,, +8:u00:[32], +46:u04:<https://www.rfc-editor.org/info/rfc8267>., +8:u06:[33], +9:u08:(NFS), +17:u02:RPC-over-RDMA, +21:u03:10.17487/RFC8267,, +46:u12:<https://www.rfc-editor.org/info/rfc8267>., +8:u14:[33], +46:u03:<https://www.rfc-editor.org/info/rfc8267>., +8:u05:[33], +10:u07:Beame,, +8:u08:[34], +17:u01:RPC-over-RDMA, +21:u02:10.17487/RFC8267,, +46:u11:<https://www.rfc-editor.org/info/rfc8267>., +8:u13:[33], +46:u02:<https://www.rfc-editor.org/info/rfc8267>., +8:u04:[33], +10:u06:Beame,, +9:u07:(NFS), +14:u08:Callaghan,, +17:u00:RPC-over-RDMA, +21:u01:10.17487/RFC8267,, +46:u10:<https://www.rfc-editor.org/info/rfc8267>., +8:u12:[33], +10:u14:beame,, +7:u22:[33, +8:u23:[33], +46:u01:<https://www.rfc-editor.org/info/rfc8267>., +8:u03:[33], +10:u05:Beame,, +9:u06:(NFS), +8:u07:[34], +21:u00:10.17487/RFC8267,, +8:u11:[33], +10:u13:beame,, +9:u14:(nfs), +46:u00:<https://www.rfc-editor.org/info/rfc8267>., +8:u02:[33], +10:u04:Beame,, +9:u05:(NFS), +8:u06:[34], +14:u07:Callaghan,, +8:u08:[35], +8:u10:[33], +10:u12:beame,, +9:u13:(nfs), +8:u14:[34], +7:u22:Bea, +8:u23:Beam, +10:uI2:()",,., +8:u01:[33], +10:u03:Beame,, +9:u04:(NFS), +8:u05:[34], +14:u06:Callaghan,, +10:u11:beame,, +9:u12:(nfs), +8:u13:[34], +14:u14:callaghan,, +10:uI1:()",,., +8:u00:[33], +10:u02:Beame,, +9:u03:(NFS), +8:u04:[34], +14:u05:Callaghan,, +8:u07:[35], +10:u10:beame,, +9:u11:(nfs), +8:u12:[34], +14:u13:callaghan,, +10:uI0:()",,., +10:u01:Beame,, +9:u02:(NFS), +8:u03:[34], +14:u04:Callaghan,, +8:u06:[35], +8:u08:[36], +9:u10:(nfs), +8:u11:[34], +14:u12:callaghan,, +8:u14:[35], +10:u00:Beame,, +9:u01:(NFS), +8:u02:[34], +14:u03:Callaghan,, +8:u05:[35], +8:u10:[34], +14:u11:callaghan,, +8:u13:[35], +9:u00:(NFS), +8:u01:[34], +14:u02:Callaghan,, +8:u04:[35], +8:u07:[36], +14:u10:callaghan,, +8:u12:[35], +9:uI2:,.,"-, +8:u00:[34], +14:u01:Callaghan,, +8:u03:[35], +8:u06:[36], +8:u11:[35], +8:u14:[36], +9:uI1:,.,"-, +14:u00:Callaghan,, +8:u02:[35], +8:u05:[36], +8:u08:[37], +9:u08:2623,, +8:u10:[35], +8:u13:[36], +9:uI0:,.,"-, +8:u01:[35], +8:u04:[36], +13:u08:Juszczak,, +9:u07:2623,, +8:u12:[36], +7:u22:[36, +8:u23:[36], +8:u00:[35], +8:u03:[36], +8:u07:[37], +9:u06:2623,, +8:u11:[36], +7:uI2:'",, +8:u02:[36], +8:u06:[37], +13:u07:Juszczak,, +9:u08:1990., +9:u05:2623,, +8:u10:[36], +8:u14:[37], +7:uI1:'",, +8:u01:[36], +8:u05:[37], +13:u06:Juszczak,, +8:u08:[38], +9:u04:2623,, +8:u13:[37], +13:u14:juszczak,, +7:uI0:'",, +8:u00:[36], +8:u04:[37], +13:u05:Juszczak,, +9:u07:1990., +13:u08:Reynolds,, +9:u03:2623,, +8:u12:[37], +13:u13:juszczak,, +8:u03:[37], +13:u04:Juszczak,, +9:u06:1990., +8:u07:[38], +9:u02:2623,, +8:u11:[37], +13:u12:juszczak,, +9:u14:1990., +8:u23:Jusz, +8:u02:[37], +13:u03:Juszczak,, +9:u05:1990., +8:u06:[38], +13:u07:Reynolds,, +8:u08:[39], +9:u01:2623,, +8:u10:[37], +13:u11:juszczak,, +9:u13:1990., +8:u14:[38], +8:u01:[37], +13:u02:Juszczak,, +9:u04:1990., +8:u05:[38], +13:u06:Reynolds,, +15:u08:Srinivasan,, +9:u00:2623,, +13:u10:juszczak,, +9:u12:1990., +8:u13:[38], +13:u14:reynolds,, +7:u22:199, +8:u23:1990, +8:u00:[37], +13:u01:Juszczak,, +9:u03:1990., +8:u04:[38], +13:u05:Reynolds,, +8:u07:[39], +9:u11:1990., +8:u12:[38], +13:u13:reynolds,, +7:u22:[38, +8:u23:[38], +13:u00:Juszczak,, +9:u02:1990., +8:u03:[38], +13:u04:Reynolds,, +8:u06:[39], +15:u07:Srinivasan,, +8:u08:[40], +9:u08:1833,, +9:u10:1990., +8:u11:[38], +13:u12:reynolds,, +8:u14:[39], +7:u22:Rey, +8:u23:Reyn, +9:uI2:-",,., +9:u01:1990., +8:u02:[38], +13:u03:Reynolds,, +8:u05:[39], +15:u06:Srinivasan,, +10:u08:Werme,, +9:u07:1833,, +8:u10:[38], +13:u11:reynolds,, +8:u13:[39], +15:u14:srinivasan,, +9:uI1:-",,., +9:u00:1990., +8:u01:[38], +13:u02:Reynolds,, +8:u04:[39], +15:u05:Srinivasan,, +8:u07:[40], +9:u06:1833,, +13:u10:reynolds,, +8:u12:[39], +15:u13:srinivasan,, +7:u22:[39, +8:u23:[39], +9:uI0:-",,., +10:uI2:,.,"",, +8:u00:[38], +13:u01:Reynolds,, +8:u03:[39], +15:u04:Srinivasan,, +8:u06:[40], +10:u07:Werme,, +8:u08:[41], +9:u05:1833,, +5:u08:,, +8:u11:[39], +15:u12:srinivasan,, +8:u14:[40], +6:u21:Sr, +7:u22:Sri, +8:u23:Srin, +10:uI1:,.,"",, +13:u00:Reynolds,, +8:u02:[39], +15:u03:Srinivasan,, +8:u05:[40], +10:u06:Werme,, +12:u08:Nowicki,, +9:u04:1833,, +5:u07:,, +8:u10:[39], +15:u11:srinivasan,, +8:u13:[40], +10:u14:werme,, +10:uI0:,.,"",, +8:u01:[39], +15:u02:Srinivasan,, +8:u04:[40], +10:u05:Werme,, +8:u07:[41], +19:u08:specification",, +9:u03:1833,, +5:u06:,, +15:u10:srinivasan,, +8:u12:[40], +10:u13:werme,, +7:u22:[40, +8:u23:[40], +8:u00:[39], +15:u01:Srinivasan,, +8:u03:[40], +10:u04:Werme,, +8:u06:[41], +12:u07:Nowicki,, +8:u08:[42], +9:u02:1833,, +5:u05:,, +8:u11:[40], +10:u12:werme,, +8:u14:[41], +6:u21:We, +7:u22:Wer, +8:u23:Werm, +15:u00:Srinivasan,, +8:u02:[40], +10:u03:Werme,, +8:u05:[41], +12:u06:Nowicki,, +19:u07:specification",, +10:u08:Bhide,, +9:u01:1833,, +5:u04:,, +8:u10:[40], +10:u11:werme,, +8:u13:[41], +12:u14:nowicki,, +8:u01:[40], +10:u02:Werme,, +8:u04:[41], +12:u05:Nowicki,, +19:u06:specification",, +8:u07:[42], +9:u00:1833,, +5:u03:,, +10:u10:werme,, +8:u12:[41], +12:u13:nowicki,, +7:u22:[41, +8:u23:[41], +8:u00:[40], +10:u01:Werme,, +8:u03:[41], +12:u04:Nowicki,, +19:u05:specification",, +8:u06:[42], +10:u07:Bhide,, +5:u02:,, +8:u11:[41], +12:u12:nowicki,, +8:u14:[42], +8:u23:Nowi, +10:u00:Werme,, +8:u02:[41], +12:u03:Nowicki,, +19:u04:specification",, +8:u05:[42], +10:u06:Bhide,, +5:u01:,, +9:u08:1991., +8:u10:[41], +12:u11:nowicki,, +8:u13:[42], +10:u14:bhide,, +8:u01:[41], +12:u02:Nowicki,, +19:u03:specification",, +8:u04:[42], +10:u05:Bhide,, +11:u08:Halevy,, +5:u00:,, +9:u07:1991., +12:u10:nowicki,, +8:u12:[42], +10:u13:bhide,, +8:u00:[41], +12:u01:Nowicki,, +19:u02:specification",, +8:u03:[42], +10:u04:Bhide,, +9:u06:1991., +8:u11:[42], +10:u12:bhide,, +6:u21:Bh, +7:u22:Bhi, +8:u23:Bhid, +12:u00:Nowicki,, +19:u01:specification",, +8:u02:[42], +10:u03:Bhide,, +11:u07:Halevy,, +9:u05:1991., +8:u10:[42], +10:u11:bhide,, +8:u14:[43], +19:u00:specification",, +8:u01:[42], +10:u02:Bhide,, +11:u06:Halevy,, +9:u04:1991., +10:u10:bhide,, +8:u13:[43], +11:u14:halevy,, +8:u00:[42], +10:u01:Bhide,, +11:u05:Halevy,, +9:u03:1991., +8:u12:[43], +11:u13:halevy,, +7:u22:[43, +8:u23:[43], +10:u00:Bhide,, +11:u04:Halevy,, +9:u02:1991., +8:u08:644], +8:u11:[43], +11:u12:halevy,, +7:u22:Hal, +8:u23:Hale, +11:u03:Halevy,, +9:u01:1991., +8:u07:644], +8:u10:[43], +11:u11:halevy,, +11:u02:Halevy,, +9:u00:1991., +8:u06:644], +11:u10:halevy,, +11:u01:Halevy,, +8:u05:644], +11:u00:Halevy,, +10:u08:Black,, +8:u04:644], +10:u08:(pNFS), +8:u03:644], +7:u08:D.,, +10:u07:Black,, +8:u08:[45], +8:u02:644], +7:u07:D.,, +16:u08:Block/Volume, +8:u14:[44], +10:u06:Black,, +10:u07:(pNFS), +8:u01:644], +7:u06:D.,, +16:u07:Block/Volume, +8:u13:[44], +10:u14:black,, +10:u05:Black,, +10:u06:(pNFS), +8:u07:[45], +8:u00:644], +7:u05:D.,, +16:u06:Block/Volume, +8:u12:[44], +10:u13:black,, +10:u14:(pnfs), +10:u04:Black,, +10:u05:(pNFS), +8:u06:[45], +8:u08:[46], +7:u04:D.,, +16:u05:Block/Volume, +9:u08:1996., +8:u11:[44], +10:u12:black,, +10:u13:(pnfs), +8:u14:[45], +6:u21:Bl, +7:u22:Bla, +8:u23:Blac, +11:uI2:()/",,., +10:u03:Black,, +10:u04:(pNFS), +8:u05:[45], +7:u03:D.,, +16:u04:Block/Volume, +9:u07:1996., +8:u10:[44], +10:u11:black,, +10:u12:(pnfs), +8:u13:[45], +7:u22:(pN, +8:u23:(pNF, +11:uI1:()/",,., +10:u02:Black,, +10:u03:(pNFS), +8:u04:[45], +8:u07:[46], +7:u02:D.,, +16:u03:Block/Volume, +9:u06:1996., +10:u10:black,, +10:u11:(pnfs), +8:u12:[45], +11:uI0:()/",,., +10:u01:Black,, +10:u02:(pNFS), +8:u03:[45], +8:u06:[46], +8:u08:[47], +7:u01:D.,, +16:u02:Block/Volume, +9:u05:1996., +10:u10:(pnfs), +8:u11:[45], +8:u14:[46], +10:u00:Black,, +10:u01:(pNFS), +8:u02:[45], +8:u05:[46], +9:u08:IESG,, +7:u00:D.,, +16:u01:Block/Volume, +9:u04:1996., +8:u10:[45], +8:u13:[46], +10:u00:(pNFS), +8:u01:[45], +8:u04:[46], +8:u07:[47], +16:u00:Block/Volume, +9:u03:1996., +9:u08:"IESG, +8:u12:[46], +7:u22:[46, +8:u23:[46], +8:u00:[45], +8:u03:[46], +8:u06:[47], +9:u07:IESG,, +8:u08:[48], +9:u02:1996., +9:u07:"IESG, +8:u11:[46], +8:u14:[47], +8:u02:[46], +8:u05:[47], +9:u06:IESG,, +9:u01:1996., +9:u06:"IESG, +8:u10:[46], +8:u13:[47], +9:u14:iesg,, +8:u01:[46], +8:u04:[47], +9:u05:IESG,, +8:u07:[48], +9:u00:1996., +9:u05:"IESG, +8:u12:[47], +9:u13:iesg,, +7:u22:[47, +8:u23:[47], +8:u00:[46], +8:u03:[47], +9:u04:IESG,, +8:u06:[48], +8:u08:[49], +9:u04:"IESG, +9:u08:2624,, +8:u11:[47], +9:u12:iesg,, +8:u14:[48], +8:u02:[47], +9:u03:IESG,, +8:u05:[48], +9:u03:"IESG, +9:u07:2624,, +8:u10:[47], +9:u11:iesg,, +8:u13:[48], +8:u01:[47], +9:u02:IESG,, +8:u04:[48], +8:u07:[49], +7:u08:3W,, +9:u02:"IESG, +9:u06:2624,, +9:u10:iesg,, +8:u12:[48], +7:u22:[48, +8:u23:[48], +8:u00:[47], +9:u01:IESG,, +8:u03:[48], +8:u06:[49], +8:u08:[50], +9:u01:"IESG, +9:u05:2624,, +8:u11:[48], +8:u14:[49], +9:u00:IESG,, +8:u02:[48], +8:u05:[49], +7:u07:3W,, +10:u08:Floyd,, +9:u00:"IESG, +9:u04:2624,, +8:u10:[48], +8:u13:[49], +8:u01:[48], +8:u04:[49], +7:u06:3W,, +8:u07:[50], +12:u08:Periodic, +9:u03:2624,, +6:u08:S., +8:u12:[49], +7:u14:3w,, +7:u22:[49, +8:u23:[49], +8:uI2:,":,, +8:u00:[48], +8:u03:[49], +7:u05:3W,, +8:u06:[50], +10:u07:Floyd,, +9:u02:2624,, +6:u07:S., +8:u11:[49], +7:u13:3w,, +8:u14:[50], +8:uI1:,":,, +11:uI2:,---",., +8:u02:[49], +7:u04:3W,, +8:u05:[50], +10:u06:Floyd,, +12:u07:Periodic, +8:u08:[51], +9:u01:2624,, +6:u06:S., +9:u08:2(2),, +8:u10:[49], +7:u12:3w,, +8:u13:[50], +10:u14:floyd,, +6:u21:3W, +7:u22:3W,, +7:u23:3W,, +8:uI0:,":,, +11:uI1:,---",., +8:u01:[49], +7:u03:3W,, +8:u04:[50], +10:u05:Floyd,, +12:u06:Periodic, +11:u08:Satran,, +9:u00:2624,, +6:u05:S., +9:u07:2(2),, +7:u11:3w,, +8:u12:[50], +10:u13:floyd,, +12:u14:periodic, +11:uI0:,---",., +8:u00:[49], +7:u02:3W,, +8:u03:[50], +10:u04:Floyd,, +12:u05:Periodic, +8:u07:[51], +6:u04:S., +9:u06:2(2),, +7:u10:3w,, +8:u11:[50], +10:u12:floyd,, +12:u13:periodic, +7:u22:Flo, +8:u23:Floy, +7:uI2:",/, +7:u01:3W,, +8:u02:[50], +10:u03:Floyd,, +12:u04:Periodic, +8:u06:[51], +11:u07:Satran,, +13:u08:(iSCSI)",, +6:u03:S., +9:u05:2(2),, +6:u08:E., +8:u10:[50], +10:u11:floyd,, +12:u12:periodic, +8:u14:[51], +8:u23:Peri, +7:uI1:",/, +11:uI2:(),.-,., +7:u00:3W,, +8:u01:[50], +10:u02:Floyd,, +12:u03:Periodic, +8:u05:[51], +11:u06:Satran,, +8:u08:[52], +6:u02:S., +9:u04:2(2),, +6:u07:E., +10:u10:floyd,, +12:u11:periodic, +8:u13:[51], +11:u14:satran,, +7:uI0:",/, +11:uI1:(),.-,., +8:u00:[50], +10:u01:Floyd,, +12:u02:Periodic, +8:u04:[51], +11:u05:Satran,, +13:u07:(iSCSI)",, +12:u08:Snively,, +6:u01:S., +9:u03:2(2),, +6:u06:E., +12:u10:periodic, +8:u12:[51], +11:u13:satran,, +7:u22:[51, +8:u23:[51], +11:uI0:(),.-,., +10:u00:Floyd,, +12:u01:Periodic, +8:u03:[51], +11:u04:Satran,, +13:u06:(iSCSI)",, +8:u07:[52], +13:u08:(FCP-2)",, +6:u00:S., +9:u02:2(2),, +6:u05:E., +8:u11:[51], +11:u12:satran,, +13:u14:(iscsi)",, +7:u22:Sat, +8:u23:Satr, +12:u00:Periodic, +8:u02:[51], +11:u03:Satran,, +13:u05:(iSCSI)",, +8:u06:[52], +12:u07:Snively,, +8:u08:[53], +9:u01:2(2),, +6:u04:E., +15:u08:ANSI/INCITS, +8:u10:[51], +11:u11:satran,, +13:u13:(iscsi)",, +8:u14:[52], +8:u01:[51], +11:u02:Satran,, +13:u04:(iSCSI)",, +8:u05:[52], +12:u06:Snively,, +13:u07:(FCP-2)",, +10:u08:Weber,, +9:u00:2(2),, +6:u03:E., +15:u07:ANSI/INCITS, +11:u10:satran,, +13:u12:(iscsi)",, +8:u13:[52], +12:u14:snively,, +7:u22:(iS, +8:u23:(iSC, +8:u00:[51], +11:u01:Satran,, +13:u03:(iSCSI)",, +8:u04:[52], +12:u05:Snively,, +13:u06:(FCP-2)",, +8:u07:[53], +6:u02:E., +15:u06:ANSI/INCITS, +13:u11:(iscsi)",, +8:u12:[52], +12:u13:snively,, +13:u14:(fcp-2)",, +9:uI2:,.,",, +11:u00:Satran,, +13:u02:(iSCSI)",, +8:u03:[52], +12:u04:Snively,, +13:u05:(FCP-2)",, +8:u06:[53], +10:u07:Weber,, +56:u08:<http://www.t10.org/ftp/t10/drafts/osd/osd-r10.pdf>., +6:u01:E., +15:u05:ANSI/INCITS, +13:u08:400-2004,, +13:u10:(iscsi)",, +8:u11:[52], +12:u12:snively,, +13:u13:(fcp-2)",, +8:u14:[53], +6:u21:Sn, +7:u22:Sni, +8:u23:Sniv, +9:uI1:,.,",, +13:uI2:(-)",/-,., +13:u01:(iSCSI)",, +8:u02:[52], +12:u03:Snively,, +13:u04:(FCP-2)",, +8:u05:[53], +10:u06:Weber,, +8:u08:[54], +6:u00:E., +15:u04:ANSI/INCITS, +13:u07:400-2004,, +8:u10:[52], +12:u11:snively,, +13:u12:(fcp-2)",, +8:u13:[53], +10:u14:weber,, +6:u21:(F, +7:u22:(FC, +8:u23:(FCP, +9:uI0:,.,",, +13:uI1:(-)",/-,., +13:u00:(iSCSI)",, +8:u01:[52], +12:u02:Snively,, +13:u03:(FCP-2)",, +8:u04:[53], +10:u05:Weber,, +56:u07:<http://www.t10.org/ftp/t10/drafts/osd/osd-r10.pdf>., +10:u08:Carns,, +15:u03:ANSI/INCITS, +13:u06:400-2004,, +12:u10:snively,, +13:u11:(fcp-2)",, +8:u12:[53], +10:u13:weber,, +15:u14:ansi/incits, +7:u22:[53, +8:u23:[53], +13:uI0:(-)",/-,., +13:uI2:,.,"-()",, +8:u00:[52], +12:u01:Snively,, +13:u02:(FCP-2)",, +8:u03:[53], +10:u04:Weber,, +56:u06:<http://www.t10.org/ftp/t10/drafts/osd/osd-r10.pdf>., +8:u07:[54], +15:u02:ANSI/INCITS, +13:u05:400-2004,, +13:u10:(fcp-2)",, +8:u11:[53], +10:u12:weber,, +15:u13:ansi/incits, +56:u14:<http://www.t10.org/ftp/t10/drafts/osd/osd-r10.pdf>., +7:u22:Web, +8:u23:Webe, +13:uI1:,.,"-()",, +8:uI2:/-,,, +12:u00:Snively,, +13:u01:(FCP-2)",, +8:u02:[53], +10:u03:Weber,, +56:u05:<http://www.t10.org/ftp/t10/drafts/osd/osd-r10.pdf>., +8:u06:[54], +10:u07:Carns,, +15:u01:ANSI/INCITS, +13:u04:400-2004,, +8:u10:[53], +10:u11:weber,, +15:u12:ansi/incits, +56:u13:<http://www.t10.org/ftp/t10/drafts/osd/osd-r10.pdf>., +8:u14:[54], +6:u21:AN, +7:u22:ANS, +8:u23:ANSI, +13:uI0:,.,"-()",, +8:uI1:/-,,, +17:uI2:://../////-.., +13:u00:(FCP-2)",, +8:u01:[53], +10:u02:Weber,, +56:u04:<http://www.t10.org/ftp/t10/drafts/osd/osd-r10.pdf>., +8:u05:[54], +10:u06:Carns,, +8:u08:[55], +15:u00:ANSI/INCITS, +13:u03:400-2004,, +10:u10:weber,, +15:u11:ansi/incits, +56:u12:<http://www.t10.org/ftp/t10/drafts/osd/osd-r10.pdf>., +8:u13:[54], +10:u14:carns,, +8:uI0:/-,,, +17:uI1:://../////-.., +8:u00:[53], +10:u01:Weber,, +56:u03:<http://www.t10.org/ftp/t10/drafts/osd/osd-r10.pdf>., +8:u04:[54], +10:u05:Carns,, +13:u02:400-2004,, +15:u10:ansi/incits, +56:u11:<http://www.t10.org/ftp/t10/drafts/osd/osd-r10.pdf>., +8:u12:[54], +10:u13:carns,, +7:u22:[54, +8:u23:[54], +17:uI0:://../////-.., +17:uI2:,.,,.,,.,.,":, +10:u00:Weber,, +56:u02:<http://www.t10.org/ftp/t10/drafts/osd/osd-r10.pdf>., +8:u03:[54], +10:u04:Carns,, +8:u07:[55], +13:u01:400-2004,, +56:u10:<http://www.t10.org/ftp/t10/drafts/osd/osd-r10.pdf>., +8:u11:[54], +10:u12:carns,, +8:u23:Carn, +17:uI1:,.,,.,,.,.,":, +7:uI2:.",, +56:u01:<http://www.t10.org/ftp/t10/drafts/osd/osd-r10.pdf>., +8:u02:[54], +10:u03:Carns,, +8:u06:[55], +8:u08:[56], +13:u00:400-2004,, +8:u10:[54], +10:u11:carns,, +8:u14:[55], +17:uI0:,.,,.,,.,.,":, +7:uI1:.",, +56:u00:<http://www.t10.org/ftp/t10/drafts/osd/osd-r10.pdf>., +8:u01:[54], +10:u02:Carns,, +8:u05:[55], +10:u10:carns,, +8:u13:[55], +7:uI0:.",, +8:u00:[54], +10:u01:Carns,, +8:u04:[55], +8:u07:[56], +8:u08:[57], +8:u12:[55], +6:u14:6,, +7:u22:[55, +8:u23:[55], +10:u00:Carns,, +8:u03:[55], +8:u06:[56], +9:u08:Chiu,, +8:u11:[55], +6:u13:6,, +8:u14:[56], +10:uI2:,.,",., +8:u02:[55], +8:u05:[56], +8:u07:[57], +15:u08:Negotiation, +8:u10:[55], +6:u12:6,, +8:u13:[56], +6:u21:6,, +6:u22:6,, +6:u23:6,, +10:uI1:,.,",., +8:u01:[55], +8:u04:[56], +8:u06:[57], +9:u07:Chiu,, +8:u08:[58], +6:u11:6,, +8:u12:[56], +8:u14:[57], +7:u22:[56, +8:u23:[56], +10:uI0:,.,",., +12:uI2:,.,"",,., +8:u00:[55], +8:u03:[56], +8:u05:[57], +9:u06:Chiu,, +15:u07:Negotiation, +6:u10:6,, +8:u11:[56], +8:u13:[57], +9:u14:chiu,, +12:uI1:,.,"",,., +8:u02:[56], +8:u04:[57], +9:u05:Chiu,, +15:u06:Negotiation, +8:u07:[58], +8:u10:[56], +8:u12:[57], +9:u13:chiu,, +7:u22:[57, +8:u23:[57], +12:uI0:,.,"",,., +8:u01:[56], +8:u03:[57], +9:u04:Chiu,, +15:u05:Negotiation, +8:u06:[58], +8:u11:[57], +9:u12:chiu,, +8:u14:[58], +8:u23:Chiu, +8:u00:[56], +8:u02:[57], +9:u03:Chiu,, +15:u04:Negotiation, +8:u05:[58], +8:u10:[57], +9:u11:chiu,, +8:u13:[58], +11:u14:narten,, +7:u22:Neg, +8:u23:Nego, +8:u01:[57], +9:u02:Chiu,, +15:u03:Negotiation, +8:u04:[58], +9:u10:chiu,, +8:u12:[58], +11:u13:narten,, +7:u22:[58, +8:u23:[58], +8:u00:[57], +9:u01:Chiu,, +15:u02:Negotiation, +8:u03:[58], +8:u11:[58], +11:u12:narten,, +7:u22:Nar, +8:u23:Nart, +9:u00:Chiu,, +15:u01:Negotiation, +8:u02:[58], +8:u08:645], +8:u10:[58], +11:u11:narten,, +15:u00:Negotiation, +8:u01:[58], +8:u07:645], +11:u10:narten,, +8:u00:[58], +8:u06:645], +8:u08:[59], +8:u05:645], +13:u08:Krawczyk,, +8:u04:645], +8:u07:[59], +11:u08:Hashing, +8:u03:645], +8:u06:[59], +13:u07:Krawczyk,, +9:u08:1997., +8:u02:645], +8:u14:[59], +8:u05:[59], +13:u06:Krawczyk,, +11:u07:Hashing, +8:u01:645], +8:u13:[59], +13:u14:krawczyk,, +8:u04:[59], +13:u05:Krawczyk,, +11:u06:Hashing, +9:u07:1997., +8:u00:645], +8:u12:[59], +13:u13:krawczyk,, +11:u14:hashing, +15:uI2:,.,,.,.,":-, +8:u03:[59], +13:u04:Krawczyk,, +11:u05:Hashing, +9:u06:1997., +8:u11:[59], +13:u12:krawczyk,, +11:u13:hashing, +9:u14:1997., +7:u22:Kra, +8:u23:Kraw, +15:uI1:,.,,.,.,":-, +8:u02:[59], +13:u03:Krawczyk,, +11:u04:Hashing, +9:u05:1997., +8:u10:[59], +13:u11:krawczyk,, +11:u12:hashing, +9:u13:1997., +8:u14:[60], +7:u22:Has, +8:u23:Hash, +15:uI0:,.,,.,.,":-, +8:u01:[59], +13:u02:Krawczyk,, +11:u03:Hashing, +9:u04:1997., +46:u08:<https://www.rfc-editor.org/info/rfc5661>., +13:u10:krawczyk,, +11:u11:hashing, +9:u12:1997., +8:u13:[60], +8:u23:1997, +8:u00:[59], +13:u01:Krawczyk,, +11:u02:Hashing, +9:u03:1997., +8:u08:[61], +11:u10:hashing, +9:u11:1997., +8:u12:[60], +7:u22:[60, +8:u23:[60], +13:u00:Krawczyk,, +11:u01:Hashing, +9:u02:1997., +46:u07:<https://www.rfc-editor.org/info/rfc5661>., +11:u08:Noveck,, +9:u10:1997., +8:u11:[60], +14:u14:protocol",, +11:u00:Hashing, +9:u01:1997., +46:u06:<https://www.rfc-editor.org/info/rfc5661>., +8:u07:[61], +14:u08:Versions",, +8:u10:[60], +14:u13:protocol",, +46:u14:<https://www.rfc-editor.org/info/rfc5661>., +9:u00:1997., +46:u05:<https://www.rfc-editor.org/info/rfc5661>., +8:u06:[61], +11:u07:Noveck,, +46:u08:<https://www.rfc-editor.org/info/rfc8178>., +14:u12:protocol",, +46:u13:<https://www.rfc-editor.org/info/rfc5661>., +8:u14:[61], +46:u04:<https://www.rfc-editor.org/info/rfc5661>., +8:u05:[61], +14:u07:Versions",, +8:u08:[62], +14:u11:protocol",, +46:u12:<https://www.rfc-editor.org/info/rfc5661>., +8:u13:[61], +11:u14:noveck,, +46:u03:<https://www.rfc-editor.org/info/rfc5661>., +8:u04:[61], +14:u06:Versions",, +46:u07:<https://www.rfc-editor.org/info/rfc8178>., +11:u08:Haynes,, +14:u10:protocol",, +46:u11:<https://www.rfc-editor.org/info/rfc5661>., +8:u12:[61], +11:u13:noveck,, +14:u14:versions",, +7:u22:[61, +8:u23:[61], +46:u02:<https://www.rfc-editor.org/info/rfc5661>., +8:u03:[61], +14:u05:Versions",, +46:u06:<https://www.rfc-editor.org/info/rfc8178>., +8:u07:[62], +46:u10:<https://www.rfc-editor.org/info/rfc5661>., +8:u11:[61], +11:u12:noveck,, +14:u13:versions",, +46:u14:<https://www.rfc-editor.org/info/rfc8178>., +46:u01:<https://www.rfc-editor.org/info/rfc5661>., +8:u02:[61], +14:u04:Versions",, +46:u05:<https://www.rfc-editor.org/info/rfc8178>., +8:u06:[62], +11:u07:Haynes,, +8:u10:[61], +11:u11:noveck,, +14:u12:versions",, +46:u13:<https://www.rfc-editor.org/info/rfc8178>., +8:u14:[62], +46:u00:<https://www.rfc-editor.org/info/rfc5661>., +8:u01:[61], +14:u03:Versions",, +46:u04:<https://www.rfc-editor.org/info/rfc8178>., +8:u05:[62], +11:u06:Haynes,, +8:u08:[63], +11:u10:noveck,, +14:u11:versions",, +46:u12:<https://www.rfc-editor.org/info/rfc8178>., +8:u13:[62], +11:u14:haynes,, +8:u00:[61], +14:u02:Versions",, +46:u03:<https://www.rfc-editor.org/info/rfc8178>., +8:u04:[62], +11:u05:Haynes,, +14:u10:versions",, +46:u11:<https://www.rfc-editor.org/info/rfc8178>., +8:u12:[62], +11:u13:haynes,, +7:u22:[62, +8:u23:[62], +13:uI2:,.,..,.,", +14:u01:Versions",, +46:u02:<https://www.rfc-editor.org/info/rfc8178>., +8:u03:[62], +11:u04:Haynes,, +8:u07:[63], +12:u08:"NFSv4.0, +46:u10:<https://www.rfc-editor.org/info/rfc8178>., +8:u11:[62], +11:u12:haynes,, +7:u22:Hay, +8:u23:Hayn, +13:uI1:,.,..,.,", +14:u00:Versions",, +46:u01:<https://www.rfc-editor.org/info/rfc8178>., +8:u02:[62], +11:u03:Haynes,, +8:u06:[63], +14:u08:Migration:, +8:u10:[62], +11:u11:haynes,, +8:u14:[63], +13:uI0:,.,..,.,", +46:u00:<https://www.rfc-editor.org/info/rfc8178>., +8:u01:[62], +11:u02:Haynes,, +8:u05:[63], +12:u07:"NFSv4.0, +46:u08:<https://www.rfc-editor.org/info/rfc7931>., +14:u07:Migration:, +21:u08:10.17487/RFC7931,, +11:u10:haynes,, +8:u13:[63], +8:u00:[62], +11:u01:Haynes,, +8:u04:[63], +12:u06:"NFSv4.0, +8:u08:[64], +14:u06:Migration:, +21:u07:10.17487/RFC7931,, +8:u12:[63], +12:u14:"nfsv4.0, +7:u22:[63, +8:u23:[63], +17:uI2:,.,.,,.,,.,.,, +11:u00:Haynes,, +8:u03:[63], +12:u05:"NFSv4.0, +46:u07:<https://www.rfc-editor.org/info/rfc7931>., +14:u05:Migration:, +21:u06:10.17487/RFC7931,, +8:u11:[63], +12:u13:"nfsv4.0, +17:uI1:,.,.,,.,,.,.,, +10:uI2:".:",,, +8:u02:[63], +12:u04:"NFSv4.0, +46:u06:<https://www.rfc-editor.org/info/rfc7931>., +8:u07:[64], +11:u08:Types",, +14:u04:Migration:, +21:u05:10.17487/RFC7931,, +8:u10:[63], +12:u12:"nfsv4.0, +46:u14:<https://www.rfc-editor.org/info/rfc7931>., +7:u22:"NF, +8:u23:"NFS, +17:uI0:,.,.,,.,,.,.,, +10:uI1:".:",,, +8:u01:[63], +12:u03:"NFSv4.0, +46:u05:<https://www.rfc-editor.org/info/rfc7931>., +8:u06:[64], +46:u08:<https://www.rfc-editor.org/info/rfc8434>., +14:u03:Migration:, +21:u04:10.17487/RFC7931,, +12:u11:"nfsv4.0, +46:u13:<https://www.rfc-editor.org/info/rfc7931>., +8:u14:[64], +10:uI0:".:",,, +8:u00:[63], +12:u02:"NFSv4.0, +46:u04:<https://www.rfc-editor.org/info/rfc7931>., +8:u05:[64], +11:u07:Types",, +8:u08:[65], +14:u02:Migration:, +21:u03:10.17487/RFC7931,, +12:u10:"nfsv4.0, +46:u12:<https://www.rfc-editor.org/info/rfc7931>., +8:u13:[64], +12:u01:"NFSv4.0, +46:u03:<https://www.rfc-editor.org/info/rfc7931>., +8:u04:[64], +11:u06:Types",, +46:u07:<https://www.rfc-editor.org/info/rfc8434>., +12:u08:Farrell,, +14:u01:Migration:, +21:u02:10.17487/RFC7931,, +46:u11:<https://www.rfc-editor.org/info/rfc7931>., +8:u12:[64], +11:u14:types",, +7:u22:[64, +8:u23:[64], +10:uI2:,.,"(), +12:u00:"NFSv4.0, +46:u02:<https://www.rfc-editor.org/info/rfc7931>., +8:u03:[64], +11:u05:Types",, +46:u06:<https://www.rfc-editor.org/info/rfc8434>., +8:u07:[65], +12:u08:Attack",, +14:u00:Migration:, +21:u01:10.17487/RFC7931,, +46:u10:<https://www.rfc-editor.org/info/rfc7931>., +8:u11:[64], +11:u13:types",, +46:u14:<https://www.rfc-editor.org/info/rfc8434>., +10:uI1:,.,"(), +46:u01:<https://www.rfc-editor.org/info/rfc7931>., +8:u02:[64], +11:u04:Types",, +46:u05:<https://www.rfc-editor.org/info/rfc8434>., +8:u06:[65], +12:u07:Farrell,, +21:u00:10.17487/RFC7931,, +8:u10:[64], +11:u12:types",, +46:u13:<https://www.rfc-editor.org/info/rfc8434>., +8:u14:[65], +10:uI0:,.,"(), +46:u00:<https://www.rfc-editor.org/info/rfc7931>., +8:u01:[64], +11:u03:Types",, +46:u04:<https://www.rfc-editor.org/info/rfc8434>., +8:u05:[65], +12:u06:Farrell,, +12:u07:Attack",, +8:u08:[66], +46:u08:<https://www.rfc-editor.org/info/rfc7258>., +11:u11:types",, +46:u12:<https://www.rfc-editor.org/info/rfc8434>., +8:u13:[65], +12:u14:farrell,, +8:u00:[64], +11:u02:Types",, +46:u03:<https://www.rfc-editor.org/info/rfc8434>., +8:u04:[65], +12:u05:Farrell,, +12:u06:Attack",, +46:u07:<https://www.rfc-editor.org/info/rfc7258>., +11:u10:types",, +46:u11:<https://www.rfc-editor.org/info/rfc8434>., +8:u12:[65], +12:u13:farrell,, +12:u14:attack",, +7:u22:[65, +8:u23:[65], +11:u01:Types",, +46:u02:<https://www.rfc-editor.org/info/rfc8434>., +8:u03:[65], +12:u04:Farrell,, +12:u05:Attack",, +8:u07:[66], +8:u08:Text, +46:u06:<https://www.rfc-editor.org/info/rfc7258>., +46:u10:<https://www.rfc-editor.org/info/rfc8434>., +8:u11:[65], +12:u12:farrell,, +12:u13:attack",, +7:u22:Far, +8:u23:Farr, +11:u00:Types",, +46:u01:<https://www.rfc-editor.org/info/rfc8434>., +8:u02:[65], +12:u03:Farrell,, +12:u04:Attack",, +8:u06:[66], +46:u05:<https://www.rfc-editor.org/info/rfc7258>., +8:u10:[65], +12:u11:farrell,, +12:u12:attack",, +8:u14:[66], +8:u23:Atta, +46:u00:<https://www.rfc-editor.org/info/rfc8434>., +8:u01:[65], +12:u02:Farrell,, +12:u03:Attack",, +8:u05:[66], +8:u07:Text, +46:u08:<https://www.rfc-editor.org/info/rfc3552>., +46:u04:<https://www.rfc-editor.org/info/rfc7258>., +21:u08:10.17487/RFC3552,, +12:u10:farrell,, +12:u11:attack",, +8:u13:[66], +13:u14:rescorla,, +8:u00:[65], +12:u01:Farrell,, +12:u02:Attack",, +8:u04:[66], +8:u06:Text, +46:u03:<https://www.rfc-editor.org/info/rfc7258>., +21:u07:10.17487/RFC3552,, +12:u10:attack",, +8:u12:[66], +13:u13:rescorla,, +8:u14:text, +7:u22:[66, +8:u23:[66], +12:u00:Farrell,, +12:u01:Attack",, +8:u03:[66], +8:u05:Text, +46:u07:<https://www.rfc-editor.org/info/rfc3552>., +46:u02:<https://www.rfc-editor.org/info/rfc7258>., +21:u06:10.17487/RFC3552,, +8:u11:[66], +13:u12:rescorla,, +8:u13:text, +8:u23:Resc, +12:u00:Attack",, +8:u02:[66], +8:u04:Text, +46:u06:<https://www.rfc-editor.org/info/rfc3552>., +46:u01:<https://www.rfc-editor.org/info/rfc7258>., +21:u05:10.17487/RFC3552,, +8:u10:[66], +13:u11:rescorla,, +8:u12:text, +46:u14:<https://www.rfc-editor.org/info/rfc3552>., +7:u22:Tex, +8:u23:Text, +8:u01:[66], +8:u03:Text, +46:u05:<https://www.rfc-editor.org/info/rfc3552>., +46:u00:<https://www.rfc-editor.org/info/rfc7258>., +21:u04:10.17487/RFC3552,, +8:u08:646], +13:u10:rescorla,, +8:u11:text, +46:u13:<https://www.rfc-editor.org/info/rfc3552>., +8:u00:[66], +8:u02:Text, +46:u04:<https://www.rfc-editor.org/info/rfc3552>., +21:u03:10.17487/RFC3552,, +8:u07:646], +8:u10:text, +46:u12:<https://www.rfc-editor.org/info/rfc3552>., +8:u01:Text, +46:u03:<https://www.rfc-editor.org/info/rfc3552>., +21:u02:10.17487/RFC3552,, +8:u06:646], +46:u11:<https://www.rfc-editor.org/info/rfc3552>., +8:u00:Text, +46:u02:<https://www.rfc-editor.org/info/rfc3552>., +21:u01:10.17487/RFC3552,, +8:u05:646], +46:u10:<https://www.rfc-editor.org/info/rfc3552>., +46:u01:<https://www.rfc-editor.org/info/rfc3552>., +21:u00:10.17487/RFC3552,, +8:u04:646], +46:u00:<https://www.rfc-editor.org/info/rfc3552>., +8:u03:646], +8:u02:646], +8:u01:646], +8:u00:646], +16:u08:co-operating, +16:u07:co-operating, +16:u06:co-operating, +16:u14:co-operating, +16:u05:co-operating, +13:u08:clarified, +16:u13:co-operating, +16:u04:co-operating, +13:u07:clarified, +16:u12:co-operating, +7:u22:co-, +8:u23:co-o, +16:u03:co-operating, +13:u06:clarified, +16:u11:co-operating, +16:u02:co-operating, +13:u05:clarified, +16:u10:co-operating, +16:u01:co-operating, +13:u04:clarified, +16:u00:co-operating, +13:u03:clarified, +13:u02:clarified, +13:u01:clarified, +13:u00:clarified, +19:u08:simultaneously., +19:u07:simultaneously., +19:u06:simultaneously., +19:u14:simultaneously., +19:u05:simultaneously., +19:u13:simultaneously., +19:u04:simultaneously., +19:u12:simultaneously., +19:u03:simultaneously., +19:u11:simultaneously., +19:u02:simultaneously., +8:u08:647], +19:u10:simultaneously., +19:u01:simultaneously., +8:u07:647], +19:u00:simultaneously., +8:u06:647], +8:u05:647], +8:u04:647], +8:u03:647], +8:u08:laid, +8:u02:647], +8:u07:laid, +12:u08:majority, +9:u08:[60]., +8:u01:647], +8:u06:laid, +12:u07:majority, +8:u00:647], +8:u05:laid, +12:u06:majority, +9:u07:[60]., +8:u04:laid, +12:u05:majority, +9:u06:[60]., +8:u03:laid, +12:u04:majority, +9:u14:[60]., +9:u05:[60]., +8:u02:laid, +12:u03:majority, +14:u08:Reorganize, +9:u13:[60]., +8:uI2:[].-, +9:u04:[60]., +8:u01:laid, +12:u02:majority, +14:u07:Reorganize, +9:u12:[60]., +8:uI1:[].-, +9:u03:[60]., +8:u00:laid, +12:u01:majority, +14:u06:Reorganize, +9:u11:[60]., +8:uI0:[].-, +9:u02:[60]., +12:u00:majority, +14:u05:Reorganize, +9:u10:[60]., +9:u01:[60]., +14:u04:Reorganize, +9:u00:[60]., +14:u03:Reorganize, +11:u08:Provide, +10:u14:former, +14:u02:Reorganize, +11:u07:Provide, +10:u13:former, +14:u01:Reorganize, +11:u06:Provide, +10:u12:former, +14:u00:Reorganize, +11:u05:Provide, +10:u11:former, +11:u04:Provide, +16:u08:Specifically, +10:u10:former, +11:u03:Provide, +16:u07:Specifically, +11:u02:Provide, +16:u06:Specifically, +11:u01:Provide, +16:u05:Specifically, +11:u00:Provide, +16:u04:Specifically, +16:u03:Specifically, +16:u02:Specifically, +16:u01:Specifically, +16:u00:Specifically, +9:u08:[60],, +9:u07:[60],, +9:u06:[60],, +14:u08:corrected., +9:u14:[60],, +9:u05:[60],, +14:u07:corrected., +9:u13:[60],, +9:u04:[60],, +14:u06:corrected., +9:u12:[60],, +9:u03:[60],, +14:u05:corrected., +9:u11:[60],, +7:u14:b.2, +9:u02:[60],, +14:u04:corrected., +9:u10:[60],, +7:u13:b.2, +9:u01:[60],, +14:u03:corrected., +7:u12:b.2, +7:u23:B.2, +9:u00:[60],, +14:u02:corrected., +7:u11:b.2, +14:u08:clarified., +14:u01:corrected., +7:u10:b.2, +14:u00:corrected., +14:u07:clarified., +14:u06:clarified., +14:u14:clarified., +14:u05:clarified., +8:u08:648], +14:u13:clarified., +14:u04:clarified., +8:u07:648], +14:u12:clarified., +14:u03:clarified., +8:u06:648], +14:u11:clarified., +14:u02:clarified., +8:u05:648], +14:u10:clarified., +14:u01:clarified., +8:u04:648], +14:u00:clarified., +8:u03:648], +8:u02:648], +8:u01:648], +12:u08:details,, +8:u00:648], +12:u07:details,, +12:u06:details,, +12:u05:details,, +14:u08:adequately, +12:u04:details,, +12:u03:details,, +14:u07:adequately, +12:u02:details,, +14:u06:adequately, +12:u01:details,, +14:u14:adequately, +14:u05:adequately, +12:u00:details,, +14:u13:adequately, +14:u04:adequately, +13:u08:replacing, +14:u12:adequately, +7:u22:ade, +8:u23:adeq, +14:u03:adequately, +14:u11:adequately, +14:u02:adequately, +13:u07:replacing, +14:u10:adequately, +14:u01:adequately, +13:u06:replacing, +13:u14:replacing, +14:u00:adequately, +13:u05:replacing, +13:u13:replacing, +8:uI2:-[]:, +13:u04:replacing, +13:u12:replacing, +8:uI1:-[]:, +13:u03:replacing, +13:u11:replacing, +9:u14:start, +8:uI0:-[]:, +13:u02:replacing, +13:u10:replacing, +9:u13:start, +13:u01:replacing, +8:u08:11.4, +9:u12:start, +13:u00:replacing, +8:u07:11.4, +9:u11:start, +8:u06:11.4, +9:u10:start, +8:u05:11.4, +11:uI2:..([])., +8:u04:11.4, +11:uI1:..([])., +8:u03:11.4, +11:uI0:..([])., +8:u02:11.4, +8:u01:11.4, +12:u08:entitled, +8:u00:11.4, +14:u08:"Effecting, +12:u07:entitled, +14:u07:"Effecting, +8:u08:11.8, +12:u06:entitled, +14:u06:"Effecting, +8:u07:11.8, +12:u14:entitled, +12:u05:entitled, +14:u05:"Effecting, +8:u06:11.8, +10:u08:B.1.2., +12:u13:entitled, +12:u04:entitled, +14:u04:"Effecting, +8:u05:11.8, +10:u07:B.1.2., +12:u12:entitled, +12:u03:entitled, +14:u03:"Effecting, +8:u04:11.8, +10:u06:B.1.2., +12:u11:entitled, +12:u02:entitled, +14:u02:"Effecting, +8:u03:11.8, +10:u05:B.1.2., +10:u08:11.16,, +12:u10:entitled, +12:u01:entitled, +14:u01:"Effecting, +8:u02:11.8, +10:u04:B.1.2., +10:u07:11.16,, +12:u00:entitled, +14:u00:"Effecting, +8:u01:11.8, +10:u03:B.1.2., +10:u06:11.16,, +8:u00:11.8, +10:u02:B.1.2., +10:u05:11.16,, +8:uI2:.,.., +10:u01:B.1.2., +10:u04:11.16,, +8:uI1:.,.., +10:u00:B.1.2., +10:u03:11.16,, +8:u08:649], +8:uI0:.,.., +10:u02:11.16,, +8:u07:649], +10:u01:11.16,, +8:u06:649], +10:u00:11.16,, +8:u05:649], +8:u04:649], +8:u03:649], +8:u02:649], +9:u14:clear, +18:u08:distinguished., +8:u01:649], +9:u13:clear, +11:u14:trunked, +10:u08:B.1.1., +8:u00:649], +9:u12:clear, +11:u13:trunked, +18:u07:distinguished., +15:u08:Previously,, +19:u08:Re-organization, +9:u11:clear, +11:u12:trunked, +18:u06:distinguished., +10:u07:B.1.1., +19:u07:Re-organization, +9:u10:clear, +11:u11:trunked, +18:u14:distinguished., +18:u05:distinguished., +10:u06:B.1.1., +15:u07:Previously,, +19:u06:Re-organization, +11:u10:trunked, +18:u13:distinguished., +10:u14:b.1.1., +18:u04:distinguished., +10:u05:B.1.1., +15:u06:Previously,, +19:u05:Re-organization, +18:u12:distinguished., +10:u13:b.1.1., +15:u14:previously,, +12:uI2:...-..[], +18:u03:distinguished., +10:u04:B.1.1., +15:u05:Previously,, +19:u04:Re-organization, +18:u11:distinguished., +10:u12:b.1.1., +15:u13:previously,, +12:uI1:...-..[], +18:u02:distinguished., +10:u03:B.1.1., +15:u04:Previously,, +19:u03:Re-organization, +18:u10:distinguished., +10:u11:b.1.1., +15:u12:previously,, +12:uI0:...-..[], +18:u01:distinguished., +10:u02:B.1.1., +15:u03:Previously,, +19:u02:Re-organization, +10:u10:b.1.1., +15:u11:previously,, +18:u00:distinguished., +10:u01:B.1.1., +15:u02:Previously,, +19:u01:Re-organization, +15:u10:previously,, +10:u00:B.1.1., +15:u01:Previously,, +19:u00:Re-organization, +15:u00:Previously,, +10:u08:11.4.3, +10:u07:11.4.3, +13:uI2:..,..,..(, +10:u06:11.4.3, +10:u14:11.4.3, +13:uI1:..,..,..(, +11:uI2:)..,..,, +10:u05:11.4.3, +10:u13:11.4.3, +13:uI0:..,..,..(, +11:uI1:)..,..,, +15:uI2:..[]...,..., +10:u04:11.4.3, +10:u12:11.4.3, +10:u14:b.1.2., +11:uI0:)..,..,, +15:uI1:..[]...,..., +10:u03:11.4.3, +10:u08:below:, +10:u11:11.4.3, +10:u13:b.1.2., +15:uI0:..[]...,..., +10:u02:11.4.3, +10:u07:below:, +10:u10:11.4.3, +10:u12:b.1.2., +10:u01:11.4.3, +10:u06:below:, +10:u11:b.1.2., +10:u00:11.4.3, +10:u05:below:, +10:u10:b.1.2., +10:u04:below:, +10:u03:below:, +10:u02:below:, +8:u08:650], +10:u01:below:, +8:u07:650], +10:u00:below:, +8:u06:650], +8:u05:650], +9:u08:shift, +8:u04:650], +8:u03:650], +9:u07:shift, +8:u02:650], +9:u06:shift, +9:u08:[60]), +8:u01:650], +9:u14:shift, +9:u05:shift, +8:u00:650], +9:u13:shift, +9:u04:shift, +9:u07:[60]), +9:u12:shift, +7:u22:shi, +8:u23:shif, +9:u03:shift, +9:u06:[60]), +9:u11:shift, +9:u14:[60]), +9:u02:shift, +9:u05:[60]), +9:u10:shift, +9:u13:[60]), +9:u01:shift, +9:u04:[60]), +9:u12:[60]), +9:u00:shift, +9:u03:[60]), +9:u11:[60]), +9:u02:[60]), +9:u10:[60]), +9:u01:[60]), +9:u00:[60]), +13:u08:occurred,, +13:u07:occurred,, +13:u06:occurred,, +13:u14:occurred,, +13:u05:occurred,, +13:u13:occurred,, +13:u04:occurred,, +13:u12:occurred,, +13:u03:occurred,, +19:u08:re-organization, +13:u11:occurred,, +13:u02:occurred,, +19:u07:re-organization, +13:u10:occurred,, +13:u01:occurred,, +7:u08:wit, +19:u06:re-organization, +13:u00:occurred,, +19:u05:re-organization, +7:u07:wit, +19:u04:re-organization, +7:u06:wit, +19:u03:re-organization, +7:u14:wit, +7:u05:wit, +19:u02:re-organization, +7:u13:wit, +7:u04:wit, +19:u01:re-organization, +7:u12:wit, +7:u23:wit, +7:u03:wit, +19:u00:re-organization, +7:u11:wit, +7:u02:wit, +7:u10:wit, +7:u01:wit, +7:u00:wit, +17:u08:Consequently,, +17:u07:Consequently,, +17:u06:Consequently,, +10:uI2:.,.,.., +17:u05:Consequently,, +10:uI1:.,.,.., +14:uI2:,.,.,.,.[], +17:u04:Consequently,, +10:uI0:.,.,.., +14:uI1:,.,.,.,.[], +13:uI2:.,.,.,.,., +17:u03:Consequently,, +9:u08:11.10, +14:uI0:,.,.,.,.[], +13:uI1:.,.,.,.,., +9:uI2:-,.[], +17:u02:Consequently,, +9:u07:11.10, +13:uI0:.,.,.,.,., +9:uI1:-,.[], +17:u01:Consequently,, +9:u06:11.10, +9:uI0:-,.[], +17:u00:Consequently,, +9:u05:11.10, +8:u08:651], +9:uI2:...,., +9:u04:11.10, +8:u07:651], +9:uI1:...,., +9:u03:11.10, +8:u06:651], +9:uI0:...,., +9:u02:11.10, +8:u05:651], +9:u01:11.10, +8:u04:651], +9:u00:11.10, +8:u03:651], +8:u02:651], +14:u08:11.10.4.1,, +8:u01:651], +10:uI2:..()[], +8:u00:651], +10:uI1:..()[], +14:u07:11.10.4.1,, +10:uI0:..()[], +19:uI2:..,.....,...,.., +14:u06:11.10.4.1,, +14:u14:11.10.4.1,, +19:uI1:..,.....,...,.., +15:uI2:[]..,..,..,, +14:u05:11.10.4.1,, +11:u08:dealing, +14:u13:11.10.4.1,, +19:uI0:..,.....,...,.., +15:uI1:[]..,..,..,, +11:uI2:...,..., +14:u04:11.10.4.1,, +11:u07:dealing, +14:u12:11.10.4.1,, +15:uI0:[]..,..,..,, +11:uI1:...,..., +14:u03:11.10.4.1,, +11:u06:dealing, +14:u11:11.10.4.1,, +11:uI0:...,..., +14:u02:11.10.4.1,, +10:u08:B.1.3., +11:u05:dealing, +14:u10:11.10.4.1,, +14:u01:11.10.4.1,, +11:u04:dealing, +11:u08:Updates, +14:uI2:..,.....[], +14:u00:11.10.4.1,, +10:u07:B.1.3., +11:u03:dealing, +11:u07:Updates, +14:uI1:..,.....[], +12:uI2:..,..,.., +10:u06:B.1.3., +11:u02:dealing, +11:u06:Updates, +10:u14:b.1.3., +14:uI0:..,.....[], +12:uI1:..,..,.., +10:u05:B.1.3., +11:u01:dealing, +11:u05:Updates, +10:u13:b.1.3., +12:uI0:..,..,.., +10:u04:B.1.3., +11:u00:dealing, +11:u04:Updates, +10:u12:b.1.3., +10:u03:B.1.3., +11:u03:Updates, +10:u11:b.1.3., +10:u02:B.1.3., +11:u02:Updates, +10:u10:b.1.3., +10:u01:B.1.3., +11:u01:Updates, +10:u00:B.1.3., +11:u00:Updates, +8:uI2:.[]), +8:uI1:.[]), +8:uI0:.[]), +18:u08:fli_valid_for,, +18:u07:fli_valid_for,, +18:u06:fli_valid_for,, +18:u14:fli_valid_for,, +18:u05:fli_valid_for,, +18:u13:fli_valid_for,, +18:u04:fli_valid_for,, +18:u12:fli_valid_for,, +18:u03:fli_valid_for,, +18:u11:fli_valid_for,, +18:u02:fli_valid_for,, +11:u08:RFC8178, +18:u10:fli_valid_for,, +18:u01:fli_valid_for,, +9:u08:[61]., +18:u00:fli_valid_for,, +11:u07:RFC8178, +11:u08:Revised, +9:u07:[61]., +11:u06:RFC8178, +9:u06:[61]., +11:u14:rfc8178, +11:u05:RFC8178, +11:u07:Revised, +9:u05:[61]., +11:u13:rfc8178, +11:u04:RFC8178, +11:u06:Revised, +9:u04:[61]., +11:u12:rfc8178, +11:u14:revised, +8:u23:RFC8, +11:u03:RFC8178, +11:u05:Revised, +9:u03:[61]., +11:u11:rfc8178, +11:u13:revised, +11:u02:RFC8178, +11:u04:Revised, +9:u02:[61]., +8:u08:652], +11:u10:rfc8178, +11:u12:revised, +11:u01:RFC8178, +11:u03:Revised, +9:u01:[61]., +8:u07:652], +11:u11:revised, +11:u00:RFC8178, +11:u02:Revised, +9:u00:[61]., +8:u06:652], +11:u10:revised, +11:u01:Revised, +8:u05:652], +11:u00:Revised, +8:u04:652], +8:u03:652], +11:u08:assumes, +8:u02:652], +11:u07:assumes, +8:u01:652], +11:u06:assumes, +8:u00:652], +11:u05:assumes, +8:uI2:[])/, +11:u04:assumes, +8:uI1:[])/, +11:u03:assumes, +8:uI0:[])/, +11:u02:assumes, +11:u01:assumes, +11:u00:assumes, +15:u08:differences, +15:u07:differences, +15:u06:differences, +15:u14:differences, +15:u05:differences, +10:u08:15.1.9, +15:u13:differences, +15:u04:differences, +10:u08:B.2.1., +10:u07:15.1.9, +15:u12:differences, +15:u03:differences, +10:u06:15.1.9, +15:u11:differences, +15:u02:differences, +10:u07:B.2.1., +10:u05:15.1.9, +15:u10:differences, +15:u01:differences, +10:u06:B.2.1., +10:u04:15.1.9, +10:u14:b.2.1., +15:u00:differences, +10:u05:B.2.1., +10:u03:15.1.9, +10:u13:b.2.1., +10:u04:B.2.1., +10:u02:15.1.9, +10:u12:b.2.1., +10:u03:B.2.1., +10:u01:15.1.9, +10:u11:b.2.1., +10:u02:B.2.1., +10:u00:15.1.9, +10:u10:b.2.1., +10:u01:B.2.1., +10:u00:B.2.1., +13:u08:occurring, +13:u07:occurring, +13:u06:occurring, +13:u14:occurring, +13:u05:occurring, +13:u13:occurring, +13:u04:occurring, +13:u12:occurring, +13:u03:occurring, +13:u11:occurring, +13:u02:occurring, +13:u10:occurring, +13:u01:occurring, +13:u00:occurring, +9:u08:"MUST, +8:u08:NOT", +9:u07:"MUST, +8:u07:NOT", +9:u06:"MUST, +8:u06:NOT", +9:u14:"must, +9:u05:"MUST, +8:u05:NOT", +8:u08:653], +9:u13:"must, +9:u04:"MUST, +8:u04:NOT", +8:u07:653], +9:u12:"must, +7:u22:"MU, +8:u23:"MUS, +9:u03:"MUST, +8:u03:NOT", +8:u06:653], +9:u11:"must, +9:u02:"MUST, +8:u02:NOT", +8:u05:653], +9:u10:"must, +9:u01:"MUST, +8:u01:NOT", +8:u04:653], +9:u00:"MUST, +8:u00:NOT", +8:u03:653], +8:u02:653], +8:u01:653], +8:u00:653], +20:u08:CREATE_SESSSION,, +20:u07:CREATE_SESSSION,, +20:u06:CREATE_SESSSION,, +20:u14:create_sesssion,, +20:u05:CREATE_SESSSION,, +20:u13:create_sesssion,, +20:u04:CREATE_SESSSION,, +20:u12:create_sesssion,, +20:u03:CREATE_SESSSION,, +20:u11:create_sesssion,, +20:u02:CREATE_SESSSION,, +20:u10:create_sesssion,, +20:u01:CREATE_SESSSION,, +14:u08:Publishing, +20:u00:CREATE_SESSSION,, +13:u08:corrected, +14:u07:Publishing, +14:u06:Publishing, +13:u07:corrected, +10:u08:B.2.2., +14:u14:publishing, +14:u05:Publishing, +13:u06:corrected, +14:u13:publishing, +13:u14:corrected, +14:u04:Publishing, +13:u05:corrected, +10:u07:B.2.2., +14:u12:publishing, +13:u13:corrected, +14:u03:Publishing, +13:u04:corrected, +10:u06:B.2.2., +14:u11:publishing, +13:u12:corrected, +10:u14:b.2.2., +14:u02:Publishing, +13:u03:corrected, +10:u05:B.2.2., +14:u10:publishing, +13:u11:corrected, +10:u13:b.2.2., +14:u01:Publishing, +13:u02:corrected, +10:u04:B.2.2., +13:u10:corrected, +10:u12:b.2.2., +14:u00:Publishing, +13:u01:corrected, +10:u03:B.2.2., +10:u11:b.2.2., +8:uI2:[].., +13:u00:corrected, +10:u02:B.2.2., +10:u10:b.2.2., +8:uI1:[].., +10:u01:B.2.2., +8:uI0:[].., +10:u00:B.2.2., +8:u08:654], +8:u07:654], +8:u06:654], +8:u05:654], +8:u04:654], +8:u03:654], +8:u02:654], +8:u01:654], +8:u00:654], +11:u14:issues,, +11:u13:issues,, +9:uI2:,""[], +11:u12:issues,, +9:uI1:,""[], +11:u11:issues,, +9:uI0:,""[], +11:u10:issues,, +18:u08:unavailability, +18:u07:unavailability, +18:u06:unavailability, +18:u14:unavailability, +18:u05:unavailability, +16:u08:description,, +18:u13:unavailability, +18:u04:unavailability, +17:u08:misleadingly,, +18:u12:unavailability, +18:u03:unavailability, +16:u07:description,, +13:u08:involved., +17:u07:misleadingly,, +18:u11:unavailability, +18:u02:unavailability, +16:u06:description,, +17:u06:misleadingly,, +18:u10:unavailability, +16:u14:description,, +18:u01:unavailability, +16:u05:description,, +13:u07:involved., +17:u05:misleadingly,, +16:u13:description,, +18:u00:unavailability, +16:u04:description,, +13:u06:involved., +12:u08:periods,, +17:u04:misleadingly,, +16:u12:description,, +13:u14:involved., +16:u03:description,, +13:u05:involved., +17:u03:misleadingly,, +16:u11:description,, +13:u13:involved., +16:u02:description,, +13:u04:involved., +12:u07:periods,, +17:u02:misleadingly,, +19:u08:reclaim-related, +16:u10:description,, +13:u12:involved., +16:u01:description,, +13:u03:involved., +12:u06:periods,, +17:u01:misleadingly,, +19:u07:reclaim-related, +13:u11:involved., +12:u14:periods,, +16:u00:description,, +13:u02:involved., +12:u05:periods,, +17:u00:misleadingly,, +19:u06:reclaim-related, +13:u10:involved., +12:u13:periods,, +13:u01:involved., +12:u04:periods,, +10:u08:Beside, +19:u05:reclaim-related, +12:u12:periods,, +8:uI2:-[],, +13:u00:involved., +12:u03:periods,, +19:u04:reclaim-related, +12:u11:periods,, +8:uI1:-[],, +12:u02:periods,, +10:u07:Beside, +19:u03:reclaim-related, +12:u10:periods,, +8:uI0:-[],, +12:u01:periods,, +10:u06:Beside, +19:u02:reclaim-related, +10:u14:beside, +12:u00:periods,, +10:u05:Beside, +19:u01:reclaim-related, +10:u13:beside, +10:u04:Beside, +19:u00:reclaim-related, +10:u12:beside, +10:u03:Beside, +10:u11:beside, +10:u02:Beside, +10:u10:beside, +10:u01:Beside, +10:u00:Beside, +11:u08:uniform, +11:u07:uniform, +16:u14:incompatible, +11:u06:uniform, +16:u13:incompatible, +11:u05:uniform, +16:u12:incompatible, +11:u04:uniform, +8:u08:655], +16:u11:incompatible, +11:u03:uniform, +8:u07:655], +16:u10:incompatible, +11:u02:uniform, +8:u06:655], +11:u01:uniform, +8:u05:655], +11:u00:uniform, +8:u04:655], +8:u03:655], +8:u02:655], +8:u01:655], +8:u00:655], +14:u08:suggesting, +11:u14:dealing, +14:u07:suggesting, +11:u13:dealing, +14:u06:suggesting, +11:u12:dealing, +14:u05:suggesting, +11:u11:dealing, +14:u04:suggesting, +11:u10:dealing, +14:u03:suggesting, +14:u02:suggesting, +14:u01:suggesting, +10:u08:accord, +14:u00:suggesting, +10:u07:accord, +10:u06:accord, +10:u05:accord, +9:uI2:[]()., +10:u04:accord, +9:uI1:[]()., +10:u03:accord, +9:uI0:[]()., +10:u02:accord, +10:u01:accord, +10:u00:accord, +10:u08:pretty, +10:u07:pretty, +16:u08:satisfactory, +10:u06:pretty, +10:u14:pretty, +10:u05:pretty, +16:u07:satisfactory, +10:u13:pretty, +10:u04:pretty, +16:u06:satisfactory, +10:u12:pretty, +16:u14:satisfactory, +8:u23:pret, +10:u03:pretty, +16:u05:satisfactory, +10:u11:pretty, +16:u13:satisfactory, +10:u02:pretty, +16:u04:satisfactory, +10:u10:pretty, +16:u12:satisfactory, +10:u01:pretty, +16:u03:satisfactory, +16:u11:satisfactory, +10:u00:pretty, +16:u02:satisfactory, +16:u10:satisfactory, +16:u01:satisfactory, +16:u00:satisfactory, +12:u08:revising, +12:u07:revising, +12:u06:revising, +12:u05:revising, +8:u08:656], +12:u04:revising, +8:u07:656], +12:u03:revising, +8:u06:656], +12:u02:revising, +8:u05:656], +13:u08:pervasive, +12:u01:revising, +8:u04:656], +12:u00:revising, +8:u03:656], +13:u07:pervasive, +8:u02:656], +13:u06:pervasive, +8:u01:656], +13:u14:pervasive, +13:u05:pervasive, +8:u00:656], +13:u13:pervasive, +13:u04:pervasive, +13:u12:pervasive, +8:u23:perv, +13:u03:pervasive, +13:u11:pervasive, +13:u02:pervasive, +14:u08:of-service, +12:u08:mischief, +13:u10:pervasive, +13:u01:pervasive, +12:u07:mischief, +11:u08:attacks, +13:u00:pervasive, +14:u07:of-service, +12:u06:mischief, +11:u07:attacks, +14:u06:of-service, +12:u05:mischief, +11:u06:attacks, +14:u14:of-service, +14:u05:of-service, +12:u04:mischief, +11:u05:attacks, +14:u13:of-service, +14:u04:of-service, +12:u03:mischief, +11:u04:attacks, +14:u12:of-service, +7:u22:of-, +8:u23:of-s, +14:u03:of-service, +12:u02:mischief, +11:u03:attacks, +14:u08:addressed., +14:u11:of-service, +14:u02:of-service, +12:u01:mischief, +11:u02:attacks, +14:u07:addressed., +14:u10:of-service, +14:u01:of-service, +12:u00:mischief, +11:u01:attacks, +14:u06:addressed., +14:u00:of-service, +11:u00:attacks, +14:u05:addressed., +14:u04:addressed., +14:u03:addressed., +14:u02:addressed., +14:u01:addressed., +14:u00:addressed., +8:u08:657], +8:u07:657], +8:u06:657], +10:u08:NFv4.1, +8:u05:657], +8:u04:657], +7:u08:bis, +10:u07:NFv4.1, +8:u03:657], +7:u07:bis, +10:u06:NFv4.1, +8:u08:D.1., +8:u02:657], +7:u06:bis, +10:u14:nfv4.1, +10:u05:NFv4.1, +8:u01:657], +7:u05:bis, +10:u13:nfv4.1, +10:u04:NFv4.1, +8:u07:D.1., +10:u08:Netapp, +8:u00:657], +7:u04:bis, +10:u12:nfv4.1, +7:u22:NFv, +8:u23:NFv4, +10:u03:NFv4.1, +8:u06:D.1., +7:u03:bis, +10:u11:nfv4.1, +8:u14:d.1., +10:u02:NFv4.1, +8:u05:D.1., +10:u07:Netapp, +7:u02:bis, +13:u08:exploring, +10:u10:nfv4.1, +8:u13:d.1., +10:u01:NFv4.1, +8:u04:D.1., +10:u06:Netapp, +7:u01:bis, +13:u07:exploring, +8:u12:d.1., +7:u22:D.1, +8:u23:D.1., +10:u00:NFv4.1, +8:u03:D.1., +10:u05:Netapp, +13:u08:attention, +7:u00:bis, +13:u06:exploring, +8:u11:d.1., +8:u02:D.1., +10:u04:Netapp, +13:u05:exploring, +8:u10:d.1., +8:u23:Neta, +8:u01:D.1., +10:u03:Netapp, +13:u07:attention, +13:u04:exploring, +8:u00:D.1., +10:u02:Netapp, +13:u06:attention, +13:u03:exploring, +13:u14:attention, +10:u01:Netapp, +13:u05:attention, +13:u02:exploring, +13:u13:attention, +10:u00:Netapp, +13:u04:attention, +13:u01:exploring, +13:u12:attention, +13:u03:attention, +13:u00:exploring, +13:u11:attention, +13:u02:attention, +13:u10:attention, +13:u01:attention, +13:u00:attention, +8:u08:Rick, +10:u08:helped, +10:u07:helped, +13:u08:Macklem's, +11:u14:issues., +8:u07:Rick, +10:u06:helped, +13:u07:Macklem's, +11:u13:issues., +8:u06:Rick, +10:u05:helped, +13:u06:Macklem's, +11:u12:issues., +8:u14:rick, +8:u05:Rick, +8:u08:D.2., +10:u04:helped, +13:u05:Macklem's, +13:u08:comments., +11:u11:issues., +8:u13:rick, +8:u04:Rick, +10:u03:helped, +13:u04:Macklem's, +13:u07:comments., +11:u10:issues., +8:u12:rick, +8:u23:Rick, +8:u03:Rick, +8:u07:D.2., +10:u08:Eisler, +10:u02:helped, +13:u03:Macklem's, +13:u06:comments., +8:u11:rick, +8:u02:Rick, +8:u06:D.2., +12:u08:Burnett., +10:u01:helped, +13:u02:Macklem's, +13:u05:comments., +8:u10:rick, +8:u14:d.2., +8:u01:Rick, +8:u05:D.2., +10:u07:Eisler, +10:u00:helped, +13:u01:Macklem's, +13:u04:comments., +8:u13:d.2., +8:u00:Rick, +8:u04:D.2., +10:u06:Eisler, +12:u07:Burnett., +11:u08:Talpey,, +13:u00:Macklem's, +13:u03:comments., +8:u12:d.2., +10:u14:eisler, +7:u22:D.2, +8:u23:D.2., +8:u03:D.2., +10:u05:Eisler, +12:u06:Burnett., +14:u08:Antonelli,, +13:u02:comments., +11:u08:Spencer, +8:u11:d.2., +10:u13:eisler, +12:u14:burnett., +8:u02:D.2., +10:u04:Eisler, +12:u05:Burnett., +11:u07:Talpey,, +9:u08:Trond, +13:u01:comments., +11:u07:Spencer, +9:u08:Brent, +8:u10:d.2., +10:u12:eisler, +12:u13:burnett., +8:u01:D.2., +10:u03:Eisler, +12:u04:Burnett., +11:u06:Talpey,, +14:u07:Antonelli,, +11:u08:Wittle., +13:u00:comments., +11:u06:Spencer, +9:u07:Brent, +14:u08:Myklebust,, +10:u11:eisler, +12:u12:burnett., +11:u14:talpey,, +7:u22:Bur, +8:u23:Burn, +8:u00:D.2., +10:u02:Eisler, +12:u03:Burnett., +11:u05:Talpey,, +14:u06:Antonelli,, +9:u07:Trond, +11:u05:Spencer, +9:u06:Brent, +14:u07:Myklebust,, +10:u10:eisler, +12:u11:burnett., +11:u13:talpey,, +14:u14:antonelli,, +10:u01:Eisler, +12:u02:Burnett., +11:u04:Talpey,, +14:u05:Antonelli,, +9:u06:Trond, +11:u07:Wittle., +11:u04:Spencer, +9:u05:Brent, +14:u06:Myklebust,, +12:u10:burnett., +11:u12:talpey,, +14:u13:antonelli,, +9:u14:trond, +7:u22:Tal, +8:u23:Talp, +10:u00:Eisler, +12:u01:Burnett., +11:u03:Talpey,, +14:u04:Antonelli,, +9:u05:Trond, +11:u06:Wittle., +12:u08:Burnett,, +11:u03:Spencer, +9:u04:Brent, +14:u05:Myklebust,, +11:u11:talpey,, +14:u12:antonelli,, +9:u13:trond, +11:u14:wittle., +8:u23:Anto, +12:u00:Burnett., +11:u02:Talpey,, +14:u03:Antonelli,, +9:u04:Trond, +11:u05:Wittle., +10:u08:Brown,, +11:u02:Spencer, +9:u03:Brent, +14:u04:Myklebust,, +11:u10:talpey,, +14:u11:antonelli,, +9:u12:trond, +11:u13:wittle., +7:u22:Tro, +8:u23:Tron, +11:u01:Talpey,, +14:u02:Antonelli,, +9:u03:Trond, +11:u04:Wittle., +12:u07:Burnett,, +11:u01:Spencer, +9:u02:Brent, +14:u03:Myklebust,, +14:u10:antonelli,, +9:u11:trond, +11:u12:wittle., +8:u23:Witt, +11:u00:Talpey,, +14:u01:Antonelli,, +9:u02:Trond, +11:u03:Wittle., +12:u06:Burnett,, +10:u07:Brown,, +11:u00:Spencer, +9:u01:Brent, +14:u02:Myklebust,, +9:u10:trond, +11:u11:wittle., +12:u14:burnett,, +14:u00:Antonelli,, +9:u01:Trond, +11:u02:Wittle., +12:u05:Burnett,, +10:u06:Brown,, +9:u00:Brent, +14:u01:Myklebust,, +11:u10:wittle., +12:u13:burnett,, +10:u14:brown,, +9:u00:Trond, +11:u01:Wittle., +12:u04:Burnett,, +10:u05:Brown,, +14:u00:Myklebust,, +8:u08:658], +12:u12:burnett,, +10:u13:brown,, +11:u00:Wittle., +12:u03:Burnett,, +10:u04:Brown,, +8:u07:658], +12:u11:burnett,, +10:u12:brown,, +7:u22:Bro, +8:u23:Brow, +12:u02:Burnett,, +10:u03:Brown,, +8:u06:658], +12:u10:burnett,, +10:u11:brown,, +12:u01:Burnett,, +10:u02:Brown,, +8:u05:658], +10:u10:brown,, +12:u00:Burnett,, +10:u01:Brown,, +15:u08:contributed, +8:u04:658], +10:u00:Brown,, +8:u08:Carl, +8:u03:658], +15:u07:contributed, +8:u02:658], +15:u06:contributed, +8:u07:Carl, +11:u08:Falkner, +8:u01:658], +15:u14:contributed, +15:u05:contributed, +8:u06:Carl, +8:u00:658], +15:u13:contributed, +8:u14:carl, +15:u04:contributed, +8:u05:Carl, +11:u07:Falkner, +11:u08:Gibson., +15:u12:contributed, +8:u13:carl, +15:u03:contributed, +8:u04:Carl, +11:u06:Falkner, +8:u08:Gary, +15:u11:contributed, +8:u12:carl, +11:u14:falkner, +15:u02:contributed, +8:u03:Carl, +11:u05:Falkner, +11:u07:Gibson., +8:u07:Gary, +15:u10:contributed, +8:u11:carl, +11:u13:falkner, +15:u01:contributed, +8:u02:Carl, +11:u04:Falkner, +11:u06:Gibson., +8:u06:Gary, +8:u10:carl, +11:u12:falkner, +11:u14:gibson., +7:u22:Fal, +8:u23:Falk, +15:u00:contributed, +8:u01:Carl, +11:u03:Falkner, +11:u05:Gibson., +8:u05:Gary, +11:u11:falkner, +11:u13:gibson., +8:u00:Carl, +11:u02:Falkner, +11:u04:Gibson., +9:u08:Welch, +8:u04:Gary, +11:u10:falkner, +11:u12:gibson., +7:u22:Gib, +8:u23:Gibs, +11:u01:Falkner, +11:u03:Gibson., +9:u08:Benny, +8:u03:Gary, +11:u11:gibson., +11:u00:Falkner, +11:u02:Gibson., +9:u07:Welch, +8:u02:Gary, +11:u10:gibson., +11:u01:Gibson., +9:u06:Welch, +9:u07:Benny, +8:u01:Gary, +9:u14:welch, +11:u00:Gibson., +9:u05:Welch, +9:u06:Benny, +9:u08:Peter, +8:u00:Gary, +9:u13:welch, +9:u14:benny, +9:u04:Welch, +9:u05:Benny, +11:u08:Fredric, +12:u08:Corbett,, +9:u12:welch, +9:u13:benny, +7:u22:Wel, +8:u23:Welc, +9:u03:Welch, +9:u04:Benny, +9:u07:Peter, +12:u07:Corbett,, +10:u08:Isaman, +9:u11:welch, +9:u12:benny, +7:u22:Ben, +8:u23:Benn, +9:u02:Welch, +9:u03:Benny, +9:u06:Peter, +11:u07:Fredric, +10:u08:Audrey, +12:u06:Corbett,, +10:u07:Isaman, +9:u10:welch, +9:u11:benny, +9:u14:peter, +9:u01:Welch, +9:u02:Benny, +9:u05:Peter, +11:u06:Fredric, +14:u08:ordination, +12:u05:Corbett,, +10:u06:Isaman, +7:u08:Van, +9:u10:benny, +9:u13:peter, +11:u14:fredric, +9:u00:Welch, +9:u01:Benny, +9:u04:Peter, +11:u05:Fredric, +10:u07:Audrey, +12:u04:Corbett,, +10:u05:Isaman, +7:u07:Van, +9:u12:peter, +11:u13:fredric, +8:u23:Pete, +9:u00:Benny, +9:u03:Peter, +11:u04:Fredric, +10:u06:Audrey, +14:u07:ordination, +11:u08:Richard, +12:u03:Corbett,, +10:u04:Isaman, +7:u06:Van, +9:u11:peter, +11:u12:fredric, +10:u14:audrey, +8:u23:Fred, +9:u02:Peter, +11:u03:Fredric, +10:u05:Audrey, +14:u06:ordination, +11:u08:design., +12:u02:Corbett,, +10:u03:Isaman, +7:u05:Van, +12:u08:Jernigan, +9:u10:peter, +11:u11:fredric, +10:u13:audrey, +14:u14:ordination, +9:u01:Peter, +11:u02:Fredric, +10:u04:Audrey, +14:u05:ordination, +11:u07:Richard, +12:u01:Corbett,, +10:u02:Isaman, +7:u04:Van, +12:u07:Jernigan, +11:u10:fredric, +10:u12:audrey, +14:u13:ordination, +7:u22:Aud, +8:u23:Audr, +9:u00:Peter, +11:u01:Fredric, +10:u03:Audrey, +14:u04:ordination, +11:u06:Richard, +11:u07:design., +12:u00:Corbett,, +10:u01:Isaman, +7:u03:Van, +12:u06:Jernigan, +10:u08:formal, +10:u11:audrey, +14:u12:ordination, +11:u14:richard, +11:u00:Fredric, +10:u02:Audrey, +14:u03:ordination, +11:u05:Richard, +11:u06:design., +10:u00:Isaman, +7:u02:Van, +12:u05:Jernigan, +10:u07:formal, +10:u10:audrey, +14:u11:ordination, +11:u13:richard, +11:u14:design., +10:u01:Audrey, +14:u02:ordination, +11:u04:Richard, +11:u05:design., +7:u01:Van, +12:u04:Jernigan, +10:u06:formal, +14:u10:ordination, +11:u12:richard, +11:u13:design., +10:u00:Audrey, +14:u01:ordination, +11:u03:Richard, +11:u04:design., +9:u08:Rahul, +7:u00:Van, +12:u03:Jernigan, +10:u05:formal, +9:u08:ACLs,, +11:u11:richard, +11:u12:design., +14:u00:ordination, +11:u02:Richard, +11:u03:design., +12:u02:Jernigan, +10:u04:formal, +9:u07:ACLs,, +9:u08:Iyer,, +11:u10:richard, +11:u11:design., +11:u01:Richard, +11:u02:design., +9:u07:Rahul, +12:u01:Jernigan, +10:u03:formal, +9:u06:ACLs,, +9:u07:Iyer,, +10:u08:Yoder., +11:u10:design., +8:uI2:..':, +11:u00:Richard, +11:u01:design., +9:u06:Rahul, +13:u08:Doeppner,, +12:u00:Jernigan, +10:u02:formal, +9:u05:ACLs,, +9:u06:Iyer,, +10:u07:Yoder., +13:u08:Sessions,, +9:u14:rahul, +8:uI1:..':, +8:uI2:,:,,, +11:u00:design., +9:u05:Rahul, +12:u08:Macklem,, +10:u01:formal, +9:u04:ACLs,, +9:u05:Iyer,, +10:u06:Yoder., +13:u07:Sessions,, +9:u13:rahul, +8:u14:alan, +8:uI0:..':, +8:uI1:,:,,, +9:u04:Rahul, +13:u07:Doeppner,, +10:u00:formal, +9:u03:ACLs,, +9:u04:Iyer,, +10:u05:Yoder., +13:u06:Sessions,, +9:u12:rahul, +8:u13:alan, +7:u22:Rah, +8:u23:Rahu, +8:uI0:,:,,, +9:u03:Rahul, +13:u06:Doeppner,, +12:u07:Macklem,, +9:u02:ACLs,, +9:u03:Iyer,, +10:u04:Yoder., +13:u05:Sessions,, +9:u11:rahul, +8:u12:alan, +13:u14:doeppner,, +7:u22:Ala, +8:u23:Alan, +9:u02:Rahul, +13:u05:Doeppner,, +12:u06:Macklem,, +9:u01:ACLs,, +9:u02:Iyer,, +10:u03:Yoder., +13:u04:Sessions,, +9:u10:rahul, +8:u11:alan, +13:u13:doeppner,, +12:u14:macklem,, +9:u01:Rahul, +13:u04:Doeppner,, +12:u05:Macklem,, +12:u08:Goodson,, +9:u00:ACLs,, +9:u01:Iyer,, +10:u02:Yoder., +13:u03:Sessions,, +9:u08:David, +8:u10:alan, +13:u12:doeppner,, +12:u13:macklem,, +7:u22:Doe, +8:u23:Doep, +9:u00:Rahul, +13:u03:Doeppner,, +12:u04:Macklem,, +9:u00:Iyer,, +10:u01:Yoder., +13:u02:Sessions,, +9:u07:David, +13:u11:doeppner,, +12:u12:macklem,, +7:u22:Mac, +8:u23:Mack, +13:u02:Doeppner,, +12:u03:Macklem,, +12:u07:Goodson,, +10:u00:Yoder., +13:u01:Sessions,, +9:u06:David, +13:u10:doeppner,, +12:u11:macklem,, +13:u01:Doeppner,, +12:u02:Macklem,, +12:u06:Goodson,, +13:u00:Sessions,, +9:u05:David, +12:u10:macklem,, +12:u14:goodson,, +13:u00:Doeppner,, +12:u01:Macklem,, +12:u05:Goodson,, +9:u04:David, +12:u13:goodson,, +12:u00:Macklem,, +12:u04:Goodson,, +9:u03:David, +8:u08:659], +12:u12:goodson,, +7:u22:Goo, +8:u23:Good, +12:u03:Goodson,, +9:u02:David, +8:u07:659], +12:u11:goodson,, +12:u02:Goodson,, +9:u01:David, +8:u06:659], +12:u10:goodson,, +12:u01:Goodson,, +9:u00:David, +8:u05:659], +12:u00:Goodson,, +11:u08:Ellard,, +8:u04:659], +8:u03:659], +9:u08:Craig, +11:u07:Ellard,, +12:u08:Thurlow., +8:u02:659], +9:u07:Craig, +11:u08:Theresa, +11:u06:Ellard,, +8:u01:659], +9:u06:Craig, +11:u07:Theresa, +11:u14:ellard,, +11:u05:Ellard,, +12:u07:Thurlow., +8:u00:659], +9:u05:Craig, +11:u06:Theresa, +11:u13:ellard,, +11:u04:Ellard,, +12:u06:Thurlow., +9:u04:Craig, +11:u05:Theresa, +8:u08:Marc, +11:u12:ellard,, +12:u14:thurlow., +7:u22:Ell, +8:u23:Ella, +11:u03:Ellard,, +12:u05:Thurlow., +9:u03:Craig, +11:u04:Theresa, +8:u07:Marc, +11:u11:ellard,, +12:u13:thurlow., +11:u02:Ellard,, +12:u04:Thurlow., +15:u08:inspectors:, +9:u02:Craig, +11:u03:Theresa, +8:u06:Marc, +11:u10:ellard,, +12:u12:thurlow., +11:u01:Ellard,, +12:u03:Thurlow., +9:u08:Khan,, +9:u01:Craig, +11:u02:Theresa, +8:u05:Marc, +8:u08:Mike, +12:u11:thurlow., +14:u14:myklebust,, +11:u00:Ellard,, +12:u02:Thurlow., +15:u07:inspectors:, +9:u00:Craig, +11:u01:Theresa, +8:u04:Marc, +8:u07:Mike, +12:u10:thurlow., +14:u13:myklebust,, +12:u01:Thurlow., +15:u06:inspectors:, +9:u07:Khan,, +11:u00:Theresa, +8:u03:Marc, +8:u06:Mike, +14:u12:myklebust,, +15:u14:inspectors:, +7:u22:Myk, +8:u23:Mykl, +12:u00:Thurlow., +15:u05:inspectors:, +9:u06:Khan,, +11:u08:Isaman,, +8:u02:Marc, +8:u05:Mike, +14:u11:myklebust,, +15:u13:inspectors:, +9:u14:khan,, +8:uI2::,,,, +15:u04:inspectors:, +9:u05:Khan,, +8:u01:Marc, +8:u04:Mike, +10:u08:Saadia, +14:u10:myklebust,, +15:u12:inspectors:, +9:u13:khan,, +8:uI1::,,,, +15:u03:inspectors:, +9:u04:Khan,, +11:u07:Isaman,, +8:u00:Marc, +8:u03:Mike, +10:u07:Saadia, +15:u11:inspectors:, +9:u12:khan,, +8:u14:mike, +6:u21:Kh, +7:u22:Kha, +8:u23:Khan, +8:uI0::,,,, +15:u02:inspectors:, +9:u03:Khan,, +11:u06:Isaman,, +8:u02:Mike, +10:u06:Saadia, +9:u08:Final, +15:u10:inspectors:, +9:u11:khan,, +8:u13:mike, +11:u14:isaman,, +15:u01:inspectors:, +9:u02:Khan,, +11:u05:Isaman,, +9:u08:Garth, +8:u01:Mike, +10:u05:Saadia, +9:u07:Final, +9:u10:khan,, +8:u12:mike, +11:u13:isaman,, +7:u22:Mik, +8:u23:Mike, +15:u00:inspectors:, +9:u01:Khan,, +11:u04:Isaman,, +8:u00:Mike, +10:u04:Saadia, +9:u06:Final, +8:u11:mike, +11:u12:isaman,, +6:u21:Is, +7:u22:Isa, +8:u23:Isam, +9:u00:Khan,, +11:u03:Isaman,, +9:u07:Garth, +10:u03:Saadia, +9:u05:Final, +10:u08:Suchit, +8:u10:mike, +11:u11:isaman,, +11:u02:Isaman,, +9:u06:Garth, +10:u02:Saadia, +9:u04:Final, +10:u07:Suchit, +8:u08:Renu, +11:u10:isaman,, +9:u14:garth, +11:u01:Isaman,, +9:u05:Garth, +10:u01:Saadia, +9:u03:Final, +10:u06:Suchit, +8:u07:Renu, +9:u13:garth, +9:u14:iyer,, +11:u00:Isaman,, +9:u04:Garth, +10:u00:Saadia, +9:u02:Final, +10:u05:Suchit, +8:u06:Renu, +9:u12:garth, +9:u13:iyer,, +8:u23:Gart, +9:u03:Garth, +9:u01:Final, +10:u04:Suchit, +8:u05:Renu, +9:u11:garth, +9:u12:iyer,, +6:u21:Iy, +7:u22:Iye, +8:u23:Iyer, +9:u02:Garth, +11:u08:Gordon,, +9:u00:Final, +10:u03:Suchit, +8:u04:Renu, +8:u08:Andy, +9:u10:garth, +9:u11:iyer,, +9:u01:Garth, +7:u08:Amy, +10:u02:Suchit, +8:u03:Renu, +8:u07:Andy, +9:u10:iyer,, +9:u00:Garth, +11:u07:Gordon,, +10:u01:Suchit, +8:u02:Renu, +8:u06:Andy, +11:u08:Weaver,, +11:u06:Gordon,, +7:u07:Amy, +9:u08:Chris, +10:u00:Suchit, +8:u01:Renu, +8:u05:Andy, +11:u07:Weaver,, +10:u08:Arkko,, +11:u14:gordon,, +11:u05:Gordon,, +7:u06:Amy, +8:u08:Olga, +8:u00:Renu, +8:u04:Andy, +11:u06:Weaver,, +10:u07:Arkko,, +11:u08:Newman,, +11:u13:gordon,, +7:u14:amy, +11:u04:Gordon,, +7:u05:Amy, +9:u07:Chris, +11:u08:Ricardo, +8:u03:Andy, +11:u05:Weaver,, +10:u06:Arkko,, +11:u07:Newman,, +16:u08:Kornievskaia, +11:u12:gordon,, +7:u13:amy, +7:u22:Gor, +8:u23:Gord, +11:u03:Gordon,, +7:u04:Amy, +9:u06:Chris, +8:u07:Olga, +19:u08:underspecified., +8:u02:Andy, +11:u04:Weaver,, +10:u05:Arkko,, +11:u06:Newman,, +16:u07:Kornievskaia, +11:u08:Labiaga, +11:u11:gordon,, +7:u12:amy, +9:u14:chris, +6:u21:Am, +7:u22:Amy, +7:u23:Amy, +11:u02:Gordon,, +7:u03:Amy, +9:u05:Chris, +8:u06:Olga, +11:u07:Ricardo, +8:u01:Andy, +11:u03:Weaver,, +10:u04:Arkko,, +11:u05:Newman,, +16:u06:Kornievskaia, +11:u07:Labiaga, +11:u10:gordon,, +7:u11:amy, +9:u13:chris, +8:u14:olga, +11:u01:Gordon,, +7:u02:Amy, +9:u04:Chris, +8:u05:Olga, +11:u06:Ricardo, +19:u07:underspecified., +9:u08:Sunil, +8:u00:Andy, +11:u02:Weaver,, +10:u03:Arkko,, +11:u04:Newman,, +16:u05:Kornievskaia, +11:u06:Labiaga, +7:u10:amy, +9:u12:chris, +8:u13:olga, +11:u14:ricardo, +11:u00:Gordon,, +7:u01:Amy, +9:u03:Chris, +8:u04:Olga, +11:u05:Ricardo, +19:u06:underspecified., +16:u08:Finkelstein,, +11:u01:Weaver,, +10:u02:Arkko,, +11:u03:Newman,, +16:u04:Kornievskaia, +11:u05:Labiaga, +11:u08:Bhargo,, +9:u11:chris, +8:u12:olga, +11:u13:ricardo, +19:u14:underspecified., +6:u21:Ol, +7:u22:Olg, +8:u23:Olga, +7:u00:Amy, +9:u02:Chris, +8:u03:Olga, +11:u04:Ricardo, +19:u05:underspecified., +9:u07:Sunil, +11:u00:Weaver,, +10:u01:Arkko,, +11:u02:Newman,, +16:u03:Kornievskaia, +11:u04:Labiaga, +11:u07:Bhargo,, +9:u08:Jason, +9:u10:chris, +8:u11:olga, +11:u12:ricardo, +19:u13:underspecified., +8:u23:Rica, +9:u01:Chris, +8:u02:Olga, +11:u03:Ricardo, +19:u04:underspecified., +9:u06:Sunil, +16:u07:Finkelstein,, +11:u08:Picken,, +10:u00:Arkko,, +11:u01:Newman,, +16:u02:Kornievskaia, +11:u03:Labiaga, +11:u06:Bhargo,, +9:u07:Jason, +12:u08:Labiaga,, +8:u10:olga, +11:u11:ricardo, +19:u12:underspecified., +9:u14:sunil, +9:u00:Chris, +8:u01:Olga, +11:u02:Ricardo, +19:u03:underspecified., +9:u05:Sunil, +16:u06:Finkelstein,, +11:u00:Newman,, +16:u01:Kornievskaia, +11:u02:Labiaga, +11:u05:Bhargo,, +9:u06:Jason, +12:u07:Labiaga,, +11:u08:Archana, +11:u10:ricardo, +19:u11:underspecified., +9:u13:sunil, +16:u14:finkelstein,, +8:u23:Thos, +8:u00:Olga, +11:u01:Ricardo, +19:u02:underspecified., +9:u04:Sunil, +16:u05:Finkelstein,, +11:u07:Picken,, +16:u00:Kornievskaia, +11:u01:Labiaga, +11:u04:Bhargo,, +9:u05:Jason, +12:u06:Labiaga,, +11:u07:Archana, +10:u08:Varga., +19:u10:underspecified., +9:u12:sunil, +16:u13:finkelstein,, +8:u23:Suni, +9:uI2:,,.,,, +11:u00:Ricardo, +19:u01:underspecified., +9:u03:Sunil, +16:u04:Finkelstein,, +11:u06:Picken,, +11:u00:Labiaga, +11:u03:Bhargo,, +9:u04:Jason, +12:u05:Labiaga,, +11:u06:Archana, +10:u07:Varga., +9:u11:sunil, +16:u12:finkelstein,, +11:u14:picken,, +8:u23:Fink, +9:uI1:,,.,,, +19:u00:underspecified., +9:u02:Sunil, +16:u03:Finkelstein,, +11:u05:Picken,, +11:u02:Bhargo,, +9:u03:Jason, +12:u04:Labiaga,, +11:u05:Archana, +10:u06:Varga., +9:u10:sunil, +16:u11:finkelstein,, +11:u13:picken,, +9:uI0:,,.,,, +9:u01:Sunil, +16:u02:Finkelstein,, +11:u04:Picken,, +11:u01:Bhargo,, +9:u02:Jason, +12:u03:Labiaga,, +11:u04:Archana, +10:u05:Varga., +8:u08:660], +16:u10:finkelstein,, +11:u12:picken,, +7:u22:Pic, +8:u23:Pick, +9:u00:Sunil, +16:u01:Finkelstein,, +11:u03:Picken,, +11:u00:Bhargo,, +9:u01:Jason, +12:u02:Labiaga,, +11:u03:Archana, +10:u04:Varga., +8:u07:660], +11:u11:picken,, +16:u00:Finkelstein,, +11:u02:Picken,, +9:u00:Jason, +12:u01:Labiaga,, +11:u02:Archana, +10:u03:Varga., +8:u06:660], +11:u10:picken,, +11:u01:Picken,, +12:u00:Labiaga,, +11:u01:Archana, +10:u02:Varga., +8:u05:660], +11:u00:Picken,, +11:u00:Archana, +10:u01:Varga., +8:u04:660], +10:u00:Varga., +8:u03:660], +8:u08:1601, +8:u02:660], +12:u08:Waltham,, +8:u01:660], +11:u08:Trapelo, +9:u14:david, +8:u07:1601, +8:u00:660], +11:u07:Trapelo, +6:u08:MA, +9:u13:david, +8:u06:1601, +12:u07:Waltham,, +11:u06:Trapelo, +6:u07:MA, +9:u12:david, +8:u14:1601, +7:u22:Dav, +8:u23:Davi, +8:u05:1601, +12:u06:Waltham,, +10:u08:EMail:, +11:u05:Trapelo, +6:u06:MA, +19:u08:+1-781-768-5347, +9:u11:david, +8:u13:1601, +12:u14:waltham,, +8:u04:1601, +12:u05:Waltham,, +11:u04:Trapelo, +6:u05:MA, +19:u07:+1-781-768-5347, +22:u08:dnoveck@netapp.com, +9:u10:david, +8:u12:1601, +12:u13:waltham,, +7:u22:160, +8:u23:1601, +8:u03:1601, +12:u04:Waltham,, +10:u07:EMail:, +10:u08:Oracle, +11:u03:Trapelo, +6:u04:MA, +19:u06:+1-781-768-5347, +22:u07:dnoveck@netapp.com, +8:u11:1601, +12:u12:waltham,, +7:u22:Wal, +8:u23:Walt, +8:u02:1601, +12:u03:Waltham,, +10:u06:EMail:, +8:u08:1015, +11:u02:Trapelo, +6:u03:MA, +19:u05:+1-781-768-5347, +22:u06:dnoveck@netapp.com, +15:u08:Corporation, +8:u10:1601, +12:u11:waltham,, +8:uI2::---, +8:u01:1601, +12:u02:Waltham,, +10:u05:EMail:, +10:u07:Oracle, +7:u08:Ann, +11:u01:Trapelo, +6:u02:MA, +19:u04:+1-781-768-5347, +22:u05:dnoveck@netapp.com, +15:u07:Corporation, +11:u08:Granger, +12:u10:waltham,, +8:uI1::---, +8:u00:1601, +12:u01:Waltham,, +10:u04:EMail:, +10:u06:Oracle, +8:u07:1015, +10:u08:United, +11:u00:Trapelo, +6:u01:MA, +19:u03:+1-781-768-5347, +22:u04:dnoveck@netapp.com, +15:u06:Corporation, +11:u07:Granger, +10:u08:Arbor,, +6:u21:EM, +7:u22:EMa, +8:u23:EMai, +8:uI0::---, +12:u00:Waltham,, +10:u03:EMail:, +10:u05:Oracle, +8:u06:1015, +7:u07:Ann, +6:u00:MA, +19:u02:+1-781-768-5347, +22:u03:dnoveck@netapp.com, +15:u05:Corporation, +11:u06:Granger, +10:u07:Arbor,, +10:u08:States, +8:u14:1015, +10:u02:EMail:, +10:u04:Oracle, +8:u05:1015, +7:u06:Ann, +10:u07:United, +19:u01:+1-781-768-5347, +22:u02:dnoveck@netapp.com, +15:u04:Corporation, +11:u05:Granger, +10:u06:Arbor,, +10:u07:States, +6:u08:+1, +8:u13:1015, +7:u14:ann, +7:u22:Ora, +8:u23:Orac, +10:u01:EMail:, +10:u03:Oracle, +8:u04:1015, +7:u05:Ann, +10:u06:United, +19:u00:+1-781-768-5347, +22:u01:dnoveck@netapp.com, +15:u03:Corporation, +11:u04:Granger, +10:u05:Arbor,, +10:u06:States, +6:u07:+1, +26:u08:chuck.lever@oracle.com, +8:u12:1015, +7:u13:ann, +10:u14:united, +7:u22:101, +8:u23:1015, +10:u00:EMail:, +10:u02:Oracle, +8:u03:1015, +7:u04:Ann, +10:u05:United, +22:u00:dnoveck@netapp.com, +15:u02:Corporation, +11:u03:Granger, +10:u04:Arbor,, +10:u05:States, +6:u06:+1, +26:u07:chuck.lever@oracle.com, +8:u11:1015, +7:u12:ann, +10:u13:united, +7:u22:Ann, +7:u23:Ann, +10:u01:Oracle, +8:u02:1015, +7:u03:Ann, +10:u04:United, +15:u01:Corporation, +11:u02:Granger, +10:u03:Arbor,, +10:u04:States, +6:u05:+1, +26:u06:chuck.lever@oracle.com, +8:u10:1015, +7:u11:ann, +10:u12:united, +10:u00:Oracle, +8:u01:1015, +7:u02:Ann, +10:u03:United, +15:u00:Corporation, +11:u01:Granger, +10:u02:Arbor,, +10:u03:States, +6:u04:+1, +26:u05:chuck.lever@oracle.com, +8:u08:661], +7:u10:ann, +10:u11:united, +8:u00:1015, +7:u01:Ann, +10:u02:United, +11:u00:Granger, +10:u01:Arbor,, +10:u02:States, +6:u03:+1, +26:u04:chuck.lever@oracle.com, +8:u07:661], +10:u10:united, +7:u00:Ann, +10:u01:United, +10:u00:Arbor,, +10:u01:States, +6:u02:+1, +26:u03:chuck.lever@oracle.com, +8:u06:661], +10:u00:United, +10:u00:States, +6:u01:+1, +26:u02:chuck.lever@oracle.com, +8:u05:661], +6:u00:+1, +26:u01:chuck.lever@oracle.com, +8:u04:661], +11:u06:Previdi, +6:u14:s., +11:u05:Previdi, +6:u13:s., +11:u04:Previdi, +12:u08:Filsfils, +6:u12:s., +6:u21:S., +6:u22:S., +6:u23:S., +11:u03:Previdi, +12:u07:Filsfils, +6:u11:s., +11:u02:Previdi, +12:u06:Filsfils, +6:u10:s., +13:u08:Microsoft, +11:u01:Previdi, +12:u05:Filsfils, +10:u08:Mattes, +11:u00:Previdi, +12:u04:Filsfils, +10:u07:Mattes, +13:u07:Microsoft, +12:u03:Filsfils, +10:u06:Mattes, +9:u08:Rosen, +13:u06:Microsoft, +12:u02:Filsfils, +10:u05:Mattes, +9:u07:Rosen, +13:u14:microsoft, +13:u05:Microsoft, +12:u01:Filsfils, +10:u04:Mattes, +9:u06:Rosen, +8:u08:Jain, +13:u13:microsoft, +6:u14:e., +13:u04:Microsoft, +10:u08:Google, +12:u00:Filsfils, +10:u03:Mattes, +9:u05:Rosen, +8:u07:Jain, +7:u08:Lin, +13:u12:microsoft, +6:u13:e., +8:u23:Micr, +13:u03:Microsoft, +10:u02:Mattes, +9:u04:Rosen, +8:u06:Jain, +7:u07:Lin, +13:u11:microsoft, +6:u12:e., +6:u21:E., +6:u22:E., +6:u23:E., +13:u02:Microsoft, +10:u07:Google, +15:u08:Advertising, +10:u01:Mattes, +9:u03:Rosen, +8:u05:Jain, +7:u06:Lin, +13:u10:microsoft, +6:u11:e., +13:u01:Microsoft, +10:u06:Google, +47:u08:draft-ietf-idr-segment-routing-te-policy-07, +10:u00:Mattes, +9:u02:Rosen, +8:u04:Jain, +7:u05:Lin, +11:u08:Segment, +6:u10:e., +10:u14:google, +13:u00:Microsoft, +10:u05:Google, +15:u07:Advertising, +9:u01:Rosen, +8:u03:Jain, +7:u04:Lin, +11:u07:Segment, +10:u13:google, +10:u04:Google, +15:u06:Advertising, +47:u07:draft-ietf-idr-segment-routing-te-policy-07, +9:u00:Rosen, +8:u02:Jain, +7:u03:Lin, +11:u06:Segment, +10:u12:google, +15:u14:advertising, +8:u23:Goog, +10:u03:Google, +15:u05:Advertising, +47:u06:draft-ietf-idr-segment-routing-te-policy-07, +8:u01:Jain, +7:u02:Lin, +11:u05:Segment, +10:u11:google, +15:u13:advertising, +47:u14:draft-ietf-idr-segment-routing-te-policy-07, +10:u02:Google, +15:u04:Advertising, +47:u05:draft-ietf-idr-segment-routing-te-policy-07, +8:u00:Jain, +7:u01:Lin, +11:u04:Segment, +10:u10:google, +15:u12:advertising, +47:u13:draft-ietf-idr-segment-routing-te-policy-07, +7:u22:Adv, +8:u23:Adve, +10:u01:Google, +15:u03:Advertising, +47:u04:draft-ietf-idr-segment-routing-te-policy-07, +7:u00:Lin, +11:u03:Segment, +6:u08:SR, +15:u11:advertising, +47:u12:draft-ietf-idr-segment-routing-te-policy-07, +10:u00:Google, +15:u02:Advertising, +47:u03:draft-ietf-idr-segment-routing-te-policy-07, +11:u02:Segment, +6:u07:SR, +15:u10:advertising, +47:u11:draft-ietf-idr-segment-routing-te-policy-07, +15:u01:Advertising, +47:u02:draft-ietf-idr-segment-routing-te-policy-07, +11:u01:Segment, +6:u06:SR, +47:u10:draft-ietf-idr-segment-routing-te-policy-07, +15:u00:Advertising, +47:u01:draft-ietf-idr-segment-routing-te-policy-07, +11:u00:Segment, +6:u05:SR, +47:u00:draft-ietf-idr-segment-routing-te-policy-07, +14:u08:distribute, +6:u04:SR, +17:u08:Encapsulation, +6:u03:SR, +14:u07:distribute, +6:u02:SR, +12:uI2:,..,,,,., +14:u06:distribute, +17:u07:Encapsulation, +6:u01:SR, +14:u14:distribute, +12:uI1:,..,,,,., +14:u05:distribute, +17:u06:Encapsulation, +6:u00:SR, +14:u13:distribute, +12:uI0:,..,,,,., +14:u04:distribute, +17:u05:Encapsulation, +14:u12:distribute, +14:u03:distribute, +17:u04:Encapsulation, +14:u11:distribute, +7:u22:Enc, +8:u23:Enca, +14:u02:distribute, +17:u03:Encapsulation, +14:u10:distribute, +14:u01:distribute, +17:u02:Encapsulation, +14:u00:distribute, +17:u01:Encapsulation, +17:u00:Encapsulation, +12:u08:Previdi,, +12:u07:Previdi,, +12:u06:Previdi,, +12:u14:previdi,, +12:u05:Previdi,, +12:u13:previdi,, +12:u04:Previdi,, +12:u12:previdi,, +12:u03:Previdi,, +12:u11:previdi,, +12:u02:Previdi,, +12:u10:previdi,, +12:u01:Previdi,, +12:u00:Previdi,, +7:u22:Seg, +8:u23:Segm, +14:u08:Preference, +14:u07:Preference, +14:u06:Preference, +11:u08:Binding, +10:u08:2.4.4., +14:u05:Preference, +11:u07:Binding, +25:uI2:...-................., +10:u08:2.4.5., +14:u04:Preference, +11:u06:Binding, +25:uI1:...-................., +10:u07:2.4.4., +10:u08:2.4.6., +14:u03:Preference, +11:u05:Binding, +25:uI0:...-................., +10:u06:2.4.4., +10:u07:2.4.5., +14:u02:Preference, +11:u04:Binding, +10:u14:2.4.4., +24:uI2:...-................, +10:u05:2.4.4., +10:u06:2.4.5., +10:u07:2.4.6., +14:u01:Preference, +11:u03:Binding, +10:u13:2.4.4., +10:u14:2.4.5., +24:uI1:...-................, +17:uI2:...-........., +10:u04:2.4.4., +10:u05:2.4.5., +10:u06:2.4.6., +14:u00:Preference, +11:u02:Binding, +10:u12:2.4.4., +10:u13:2.4.5., +10:u14:2.4.6., +24:uI0:...-................, +17:uI1:...-........., +23:uI2:...-..............., +10:u03:2.4.4., +10:u04:2.4.5., +10:u05:2.4.6., +11:u01:Binding, +17:u08:Configuration, +10:u11:2.4.4., +10:u12:2.4.5., +10:u13:2.4.6., +17:uI0:...-........., +23:uI1:...-..............., +10:u02:2.4.4., +10:u03:2.4.5., +10:u04:2.4.6., +11:u00:Binding, +17:u07:Configuration, +13:u08:Reception, +10:u10:2.4.4., +10:u11:2.4.5., +10:u12:2.4.6., +23:uI0:...-..............., +10:u01:2.4.4., +10:u02:2.4.5., +10:u03:2.4.6., +17:u06:Configuration, +13:u07:Reception, +14:u08:Acceptance, +10:u10:2.4.5., +10:u11:2.4.6., +10:u00:2.4.4., +10:u01:2.4.5., +10:u02:2.4.6., +17:u05:Configuration, +13:u06:Reception, +14:u07:Acceptance, +10:u08:Usable, +10:u10:2.4.6., +10:u00:2.4.5., +10:u01:2.4.6., +10:u08:4.2.4., +17:u04:Configuration, +13:u05:Reception, +14:u06:Acceptance, +10:u07:Usable, +11:u08:Passing, +10:u00:2.4.6., +17:u03:Configuration, +13:u04:Reception, +14:u05:Acceptance, +10:u06:Usable, +11:u07:Passing, +15:u08:Propagation, +10:u07:4.2.4., +17:u02:Configuration, +13:u03:Reception, +14:u04:Acceptance, +10:u05:Usable, +11:u06:Passing, +15:u07:Propagation, +12:u08:Flowspec, +10:u06:4.2.4., +17:u01:Configuration, +13:u02:Reception, +14:u03:Acceptance, +10:u04:Usable, +11:u05:Passing, +15:u06:Propagation, +12:u07:Flowspec, +10:u14:4.2.4., +10:u05:4.2.4., +17:u00:Configuration, +13:u01:Reception, +14:u02:Acceptance, +10:u03:Usable, +11:u04:Passing, +15:u05:Propagation, +12:u06:Flowspec, +10:u13:4.2.4., +10:u04:4.2.4., +13:u00:Reception, +14:u01:Acceptance, +10:u02:Usable, +11:u03:Passing, +15:u04:Propagation, +12:u05:Flowspec, +10:u12:4.2.4., +10:u03:4.2.4., +14:u00:Acceptance, +10:u01:Usable, +11:u02:Passing, +15:u03:Propagation, +12:u04:Flowspec, +10:u11:4.2.4., +10:u02:4.2.4., +10:u08:(SAFI), +10:u00:Usable, +11:u01:Passing, +15:u02:Propagation, +12:u03:Flowspec, +10:u10:4.2.4., +10:u01:4.2.4., +11:u00:Passing, +15:u01:Propagation, +12:u02:Flowspec, +14:u08:Parameters, +10:u00:4.2.4., +10:u07:(SAFI), +15:u00:Propagation, +12:u01:Flowspec, +14:u07:Parameters, +10:u06:(SAFI), +12:u00:Flowspec, +14:u06:Parameters, +9:u08:Types, +10:u14:(safi), +10:u05:(SAFI), +14:u05:Parameters, +9:u07:Types, +10:u13:(safi), +26:uI2:()...................., +10:u04:(SAFI), +14:u04:Parameters, +9:u06:Types, +10:u12:(safi), +7:u22:(SA, +8:u23:(SAF, +26:uI1:()...................., +10:u03:(SAFI), +14:u03:Parameters, +9:u05:Types, +10:u11:(safi), +26:uI0:()...................., +10:u02:(SAFI), +14:u02:Parameters, +9:u04:Types, +10:u10:(safi), +10:u01:(SAFI), +14:u01:Parameters, +9:u03:Types, +10:u00:(SAFI), +14:u00:Parameters, +9:u02:Types, +12:u08:sub-TLVs, +9:u01:Types, +9:u00:Types, +12:u07:sub-TLVs, +12:u06:sub-TLVs, +12:u14:sub-tlvs, +12:u05:sub-TLVs, +12:u13:sub-tlvs, +29:uI2:-........................, +12:u04:sub-TLVs, +12:u12:sub-tlvs, +8:u23:sub-, +29:uI1:-........................, +12:u03:sub-TLVs, +12:u11:sub-tlvs, +29:uI0:-........................, +15:uI2:..:........, +12:u02:sub-TLVs, +12:u10:sub-tlvs, +15:uI1:..:........, +17:uI2:..:.........., +12:u01:sub-TLVs, +15:uI0:..:........, +17:uI1:..:.........., +12:u00:sub-TLVs, +17:uI0:..:.........., +11:u08:headend, +11:u07:headend, +7:u08:(SR, +11:u08:ordered, +11:u06:headend, +7:u07:(SR, +44:u08:[I-D.ietf-spring-segment-routing-policy], +11:u05:headend, +7:u06:(SR, +11:u07:ordered, +11:u04:headend, +7:u05:(SR, +11:u06:ordered, +44:u07:[I-D.ietf-spring-segment-routing-policy], +11:u03:headend, +7:u04:(SR, +11:u14:ordered, +11:u05:ordered, +44:u06:[I-D.ietf-spring-segment-routing-policy], +50:u08:[I-D.filsfils-spring-sr-policy-considerations], +11:u02:headend, +7:u03:(SR, +11:u13:ordered, +44:u14:[i-d.ietf-spring-segment-routing-policy], +11:u04:ordered, +44:u05:[I-D.ietf-spring-segment-routing-policy], +11:u01:headend, +7:u02:(SR, +11:u12:ordered, +44:u13:[i-d.ietf-spring-segment-routing-policy], +11:u03:ordered, +44:u04:[I-D.ietf-spring-segment-routing-policy], +50:u07:[I-D.filsfils-spring-sr-policy-considerations], +11:u00:headend, +7:u01:(SR, +11:u11:ordered, +44:u12:[i-d.ietf-spring-segment-routing-policy], +11:u02:ordered, +44:u03:[I-D.ietf-spring-segment-routing-policy], +50:u06:[I-D.filsfils-spring-sr-policy-considerations], +7:u00:(SR, +11:u10:ordered, +44:u11:[i-d.ietf-spring-segment-routing-policy], +50:u14:[i-d.filsfils-spring-sr-policy-considerations], +11:u01:ordered, +44:u02:[I-D.ietf-spring-segment-routing-policy], +50:u05:[I-D.filsfils-spring-sr-policy-considerations], +45:u08:[I-D.ietf-spring-segment-routing-policy]:, +44:u10:[i-d.ietf-spring-segment-routing-policy], +50:u13:[i-d.filsfils-spring-sr-policy-considerations], +11:u00:ordered, +44:u01:[I-D.ietf-spring-segment-routing-policy], +50:u04:[I-D.filsfils-spring-sr-policy-considerations], +50:u12:[i-d.filsfils-spring-sr-policy-considerations], +44:u00:[I-D.ietf-spring-segment-routing-policy], +50:u03:[I-D.filsfils-spring-sr-policy-considerations], +45:u07:[I-D.ietf-spring-segment-routing-policy]:, +50:u11:[i-d.filsfils-spring-sr-policy-considerations], +50:u02:[I-D.filsfils-spring-sr-policy-considerations], +45:u06:[I-D.ietf-spring-segment-routing-policy]:, +50:u10:[i-d.filsfils-spring-sr-policy-considerations], +45:u14:[i-d.ietf-spring-segment-routing-policy]:, +50:u01:[I-D.filsfils-spring-sr-policy-considerations], +45:u05:[I-D.ietf-spring-segment-routing-policy]:, +45:u13:[i-d.ietf-spring-segment-routing-policy]:, +13:uI2:[-.----]:, +50:u00:[I-D.filsfils-spring-sr-policy-considerations], +45:u04:[I-D.ietf-spring-segment-routing-policy]:, +11:u08:Policy., +45:u12:[i-d.ietf-spring-segment-routing-policy]:, +13:uI1:[-.----]:, +45:u03:[I-D.ietf-spring-segment-routing-policy]:, +45:u11:[i-d.ietf-spring-segment-routing-policy]:, +13:uI0:[-.----]:, +45:u02:[I-D.ietf-spring-segment-routing-policy]:, +11:u07:Policy., +45:u10:[i-d.ietf-spring-segment-routing-policy]:, +45:u01:[I-D.ietf-spring-segment-routing-policy]:, +11:u06:Policy., +10:u08:plane., +45:u00:[I-D.ietf-spring-segment-routing-policy]:, +11:u05:Policy., +10:u07:plane., +11:u04:Policy., +10:u06:plane., +11:u03:Policy., +10:u05:plane., +11:u02:Policy., +10:u04:plane., +11:u01:Policy., +10:u03:plane., +11:u00:Policy., +10:u02:plane., +10:u01:plane., +10:u00:plane., +8:u08:lies, +8:u07:lies, +8:u06:lies, +8:u05:lies, +8:u04:lies, +8:u03:lies, +7:u08:BGP, +8:u02:lies, +7:u07:BGP, +8:u01:lies, +7:u06:BGP, +8:u00:lies, +7:u05:BGP, +11:u14:headend, +7:u04:BGP, +11:u13:headend, +7:u03:BGP, +11:u12:headend, +7:u02:BGP, +11:u11:headend, +7:u01:BGP, +11:u10:headend, +7:u00:BGP, +6:u14:sr, +6:u13:sr, +6:u12:sr, +6:u22:SR, +6:u23:SR, +6:u11:sr, +6:u10:sr, +12:u08:tailored, +12:u07:tailored, +12:u06:tailored, +12:u14:tailored, +12:u05:tailored, +12:u08:Policies, +12:u13:tailored, +17:u14:advertisement, +12:u04:tailored, +12:u12:tailored, +17:u13:advertisement, +7:u22:tai, +8:u23:tail, +12:u03:tailored, +12:u07:Policies, +8:u08:end,, +12:u11:tailored, +17:u12:advertisement, +12:u02:tailored, +12:u06:Policies, +12:u10:tailored, +17:u11:advertisement, +10:uI2:,(..,), +12:u01:tailored, +12:u05:Policies, +8:u07:end,, +12:u08:traverse, +17:u10:advertisement, +10:uI1:,(..,), +12:u00:tailored, +12:u04:Policies, +8:u06:end,, +8:u14:end,, +10:uI0:,(..,), +12:u03:Policies, +8:u05:end,, +12:u07:traverse, +8:u13:end,, +12:u02:Policies, +8:u04:end,, +12:u06:traverse, +8:u12:end,, +12:u14:traverse, +8:u23:end,, +12:u01:Policies, +8:u03:end,, +12:u05:traverse, +19:u08:advertisements,, +8:u11:end,, +12:u13:traverse, +10:uI2:(,[])., +12:u00:Policies, +8:u02:end,, +12:u04:traverse, +8:u10:end,, +12:u12:traverse, +10:uI1:(,[])., +8:u01:end,, +12:u03:traverse, +19:u07:advertisements,, +12:u11:traverse, +10:uI0:(,[])., +8:u00:end,, +12:u02:traverse, +19:u06:advertisements,, +12:u10:traverse, +19:u14:advertisements,, +12:u01:traverse, +19:u05:advertisements,, +19:u13:advertisements,, +12:u00:traverse, +19:u04:advertisements,, +19:u12:advertisements,, +13:u14:possible,, +19:u03:advertisements,, +19:u11:advertisements,, +13:u13:possible,, +19:u02:advertisements,, +19:u10:advertisements,, +13:u12:possible,, +19:u01:advertisements,, +13:u11:possible,, +19:u00:advertisements,, +13:u10:possible,, +12:u08:head-end, +12:u07:head-end, +16:u08:([RFC4360])., +12:u06:head-end, +12:u14:head-end, +12:u05:head-end, +16:u07:([RFC4360])., +12:u13:head-end, +12:u04:head-end, +16:u06:([RFC4360])., +15:u08:components:, +12:u12:head-end, +16:u14:([rfc4360])., +12:u03:head-end, +16:u05:([RFC4360])., +15:u07:components:, +12:u11:head-end, +16:u13:([rfc4360])., +12:u02:head-end, +16:u04:([RFC4360])., +15:u06:components:, +12:u10:head-end, +16:u12:([rfc4360])., +7:u22:([R, +8:u23:([RF, +12:u01:head-end, +16:u03:([RFC4360])., +15:u05:components:, +16:u11:([rfc4360])., +12:u00:head-end, +16:u02:([RFC4360])., +15:u04:components:, +16:u10:([rfc4360])., +16:u01:([RFC4360])., +15:u03:components:, +33:u08:[I-D.ietf-idr-tunnel-encaps]), +16:u00:([RFC4360])., +15:u02:components:, +33:u07:[I-D.ietf-idr-tunnel-encaps]), +11:u08:Policy,, +15:u08:([RFC4360]), +15:u01:components:, +33:u06:[I-D.ietf-idr-tunnel-encaps]), +11:u07:Policy,, +15:u00:components:, +33:u05:[I-D.ietf-idr-tunnel-encaps]), +11:u06:Policy,, +12:uI2:[-.---]), +15:u07:([RFC4360]), +33:u04:[I-D.ietf-idr-tunnel-encaps]), +11:u05:Policy,, +12:uI1:[-.---]), +15:u06:([RFC4360]), +33:u03:[I-D.ietf-idr-tunnel-encaps]), +11:u04:Policy,, +15:u14:([rfc4360]), +12:uI0:[-.---]), +15:u05:([RFC4360]), +33:u02:[I-D.ietf-idr-tunnel-encaps]), +11:u03:Policy,, +15:u13:([rfc4360]), +15:u04:([RFC4360]), +45:u08:[I-D.ietf-spring-segment-routing-policy]., +33:u01:[I-D.ietf-idr-tunnel-encaps]), +11:u02:Policy,, +15:u12:([rfc4360]), +15:u03:([RFC4360]), +33:u00:[I-D.ietf-idr-tunnel-encaps]), +11:u01:Policy,, +15:u11:([rfc4360]), +33:u14:[i-d.ietf-idr-tunnel-encaps]), +15:u02:([RFC4360]), +45:u07:[I-D.ietf-spring-segment-routing-policy]., +11:u00:Policy,, +6:u08:3), +15:u10:([rfc4360]), +33:u13:[i-d.ietf-idr-tunnel-encaps]), +15:u01:([RFC4360]), +45:u06:[I-D.ietf-spring-segment-routing-policy]., +6:u07:3), +33:u12:[i-d.ietf-idr-tunnel-encaps]), +45:u14:[i-d.ietf-spring-segment-routing-policy]., +15:u00:([RFC4360]), +45:u05:[I-D.ietf-spring-segment-routing-policy]., +6:u06:3), +33:u11:[i-d.ietf-idr-tunnel-encaps]), +45:u13:[i-d.ietf-spring-segment-routing-policy]., +45:u04:[I-D.ietf-spring-segment-routing-policy]., +6:u05:3), +33:u10:[i-d.ietf-idr-tunnel-encaps]), +45:u12:[i-d.ietf-spring-segment-routing-policy]., +45:u03:[I-D.ietf-spring-segment-routing-policy]., +6:u04:3), +45:u11:[i-d.ietf-spring-segment-routing-policy]., +45:u02:[I-D.ietf-spring-segment-routing-policy]., +6:u03:3), +45:u10:[i-d.ietf-spring-segment-routing-policy]., +45:u01:[I-D.ietf-spring-segment-routing-policy]., +6:u02:3), +45:u00:[I-D.ietf-spring-segment-routing-policy]., +6:u01:3), +6:u00:3), +15:u08:Parameters", +15:u07:Parameters", +7:uI2::,(, +15:u06:Parameters", +7:uI1::,(, +15:u05:Parameters", +7:uI0::,(, +9:uI2:()")., +15:u04:Parameters", +9:uI1:()")., +15:u03:Parameters", +9:uI0:()")., +15:u02:Parameters", +24:u08:+------------------+, +15:u01:Parameters", +15:u00:Parameters", +24:u07:+------------------+, +8:u08:NLRI, +24:u06:+------------------+, +8:u07:NLRI, +24:u14:+------------------+, +24:u05:+------------------+, +8:u06:NLRI, +24:u13:+------------------+, +24:u04:+------------------+, +8:u05:NLRI, +17:u08:Distinguisher, +24:u12:+------------------+, +24:u03:+------------------+, +8:u04:NLRI, +17:u07:Distinguisher, +24:u11:+------------------+, +24:u02:+------------------+, +8:u03:NLRI, +17:u06:Distinguisher, +24:u10:+------------------+, +24:u01:+------------------+, +8:u02:NLRI, +17:u05:Distinguisher, +24:u00:+------------------+, +8:u01:NLRI, +17:u04:Distinguisher, +8:u00:NLRI, +17:u03:Distinguisher, +17:u02:Distinguisher, +12:u08:Endpoint, +17:u01:Distinguisher, +12:u07:Endpoint, +10:u08:where:, +17:u00:Distinguisher, +12:u06:Endpoint, +12:u05:Endpoint, +10:u07:where:, +14:u08:[RFC4760]., +12:u04:Endpoint, +10:u06:where:, +12:u03:Endpoint, +10:u14:where:, +10:u05:where:, +14:u07:[RFC4760]., +12:u02:Endpoint, +18:u08:Distinguisher:, +10:u13:where:, +10:u04:where:, +14:u06:[RFC4760]., +12:u08:semantic, +12:u01:Endpoint, +18:u07:Distinguisher:, +10:u12:where:, +14:u14:[rfc4760]., +10:u03:where:, +14:u05:[RFC4760]., +12:u00:Endpoint, +18:u06:Distinguisher:, +10:u11:where:, +14:u13:[rfc4760]., +10:u02:where:, +14:u04:[RFC4760]., +12:u07:semantic, +18:u05:Distinguisher:, +10:u10:where:, +14:u12:[rfc4760]., +10:u01:where:, +14:u03:[RFC4760]., +12:u06:semantic, +18:u04:Distinguisher:, +14:u11:[rfc4760]., +12:u14:semantic, +10:u00:where:, +14:u02:[RFC4760]., +12:u05:semantic, +18:u03:Distinguisher:, +14:u10:[rfc4760]., +12:u13:semantic, +14:u01:[RFC4760]., +12:u04:semantic, +18:u02:Distinguisher:, +12:u12:semantic, +14:u00:[RFC4760]., +12:u03:semantic, +18:u01:Distinguisher:, +12:u11:semantic, +12:u02:semantic, +18:u00:Distinguisher:, +12:u10:semantic, +12:u01:semantic, +13:u08:Endpoint:, +12:u14:prefixes, +12:u00:semantic, +13:u07:Endpoint:, +12:u13:prefixes, +14:u08:(16-octet), +13:u06:Endpoint:, +12:u12:prefixes, +13:u05:Endpoint:, +12:u11:prefixes, +14:u07:(16-octet), +11:u08:Payload, +13:u04:Endpoint:, +9:u08:color, +12:u10:prefixes, +14:u06:(16-octet), +13:u03:Endpoint:, +9:u07:color, +14:u14:(16-octet), +9:uI2:).(-), +14:u05:(16-octet), +11:u07:Payload, +13:u02:Endpoint:, +9:u06:color, +14:u13:(16-octet), +9:uI1:).(-), +14:u04:(16-octet), +11:u06:Payload, +13:u08:[RFC4271], +13:u01:Endpoint:, +9:u05:color, +14:u12:(16-octet), +7:u22:(16, +8:u23:(16-, +9:uI0:).(-), +14:u03:(16-octet), +11:u05:Payload, +13:u00:Endpoint:, +9:u04:color, +14:u11:(16-octet), +14:u02:(16-octet), +11:u04:Payload, +13:u07:[RFC4271], +9:u03:color, +14:u10:(16-octet), +7:u22:Pay, +8:u23:Payl, +14:u01:(16-octet), +11:u03:Payload, +13:u06:[RFC4271], +14:u08:registry)., +9:u02:color, +15:u08:"Subsequent, +13:u14:[rfc4271], +14:u00:(16-octet), +11:u02:Payload, +13:u05:[RFC4271], +9:u01:color, +15:u07:"Subsequent, +13:u13:[rfc4271], +11:u01:Payload, +13:u04:[RFC4271], +14:u07:registry)., +9:u00:color, +15:u06:"Subsequent, +13:u12:[rfc4271], +11:u00:Payload, +13:u03:[RFC4271], +14:u06:registry)., +15:u05:"Subsequent, +13:u11:[rfc4271], +14:u14:registry)., +8:uI2:"()", +13:u02:[RFC4271], +14:u05:registry)., +15:u04:"Subsequent, +13:u10:[rfc4271], +14:u13:registry)., +8:uI1:"()", +13:u01:[RFC4271], +14:u04:registry)., +15:u03:"Subsequent, +14:u12:registry)., +8:uI0:"()", +13:u00:[RFC4271], +14:u03:registry)., +15:u02:"Subsequent, +14:u11:registry)., +14:u02:registry)., +15:u01:"Subsequent, +14:u10:registry)., +14:u01:registry)., +15:u00:"Subsequent, +14:u00:registry)., +15:u14:independent, +15:u13:independent, +15:u12:independent, +13:u08:attendant, +15:u11:independent, +8:uI2:,-;-, +15:u10:independent, +8:uI1:,-;-, +7:uI2:,;-, +13:u07:attendant, +8:uI0:,-;-, +7:uI1:,;-, +13:u06:attendant, +13:u14:attendant, +7:uI0:,;-, +13:u05:attendant, +13:u13:attendant, +13:u04:attendant, +13:u12:attendant, +13:u03:attendant, +13:u11:attendant, +13:u02:attendant, +10:u08:rules., +13:u10:attendant, +13:u01:attendant, +10:u07:rules., +13:u00:attendant, +10:u06:rules., +14:u08:(endpoint,, +13:u08:installed, +10:u05:rules., +14:u07:(endpoint,, +9:u08:NLRIs, +10:u04:rules., +14:u06:(endpoint,, +13:u07:installed, +10:u03:rules., +14:u05:(endpoint,, +9:uI2:(,)-,, +13:u06:installed, +9:u07:NLRIs, +10:u02:rules., +14:u04:(endpoint,, +18:u08:advertisements, +13:u14:installed, +9:uI1:(,)-,, +13:u05:installed, +9:u06:NLRIs, +10:u01:rules., +14:u03:(endpoint,, +18:u07:advertisements, +13:u13:installed, +9:u14:nlris, +9:uI0:(,)-,, +13:u04:installed, +9:u05:NLRIs, +45:u08:[I-D.ietf-spring-segment-routing-policy],, +10:u00:rules., +14:u02:(endpoint,, +18:u06:advertisements, +13:u12:installed, +9:u13:nlris, +13:u03:installed, +9:u04:NLRIs, +14:u01:(endpoint,, +18:u05:advertisements, +13:u11:installed, +9:u12:nlris, +6:u21:NL, +7:u22:NLR, +8:u23:NLRI, +13:u02:installed, +9:u03:NLRIs, +45:u07:[I-D.ietf-spring-segment-routing-policy],, +14:u00:(endpoint,, +18:u04:advertisements, +13:u10:installed, +9:u11:nlris, +13:u01:installed, +9:u02:NLRIs, +45:u06:[I-D.ietf-spring-segment-routing-policy],, +18:u03:advertisements, +9:u10:nlris, +45:u14:[i-d.ietf-spring-segment-routing-policy],, +13:u00:installed, +9:u01:NLRIs, +45:u05:[I-D.ietf-spring-segment-routing-policy],, +18:u02:advertisements, +45:u13:[i-d.ietf-spring-segment-routing-policy],, +14:uI2:[-.----],., +9:u00:NLRIs, +45:u04:[I-D.ietf-spring-segment-routing-policy],, +18:u01:advertisements, +15:u08:Tunnel-Type, +45:u12:[i-d.ietf-spring-segment-routing-policy],, +14:uI1:[-.----],., +45:u03:[I-D.ietf-spring-segment-routing-policy],, +18:u00:advertisements, +15:u07:Tunnel-Type, +6:u08:8), +45:u11:[i-d.ietf-spring-segment-routing-policy],, +14:uI0:[-.----],., +45:u02:[I-D.ietf-spring-segment-routing-policy],, +15:u06:Tunnel-Type, +6:u07:8), +45:u10:[i-d.ietf-spring-segment-routing-policy],, +45:u01:[I-D.ietf-spring-segment-routing-policy],, +15:u05:Tunnel-Type, +6:u06:8), +8:uI2:-(,(, +45:u00:[I-D.ietf-spring-segment-routing-policy],, +15:u04:Tunnel-Type, +6:u05:8), +8:uI1:-(,(, +15:u03:Tunnel-Type, +6:u04:8), +8:uI0:-(,(, +15:u02:Tunnel-Type, +6:u03:8), +15:u01:Tunnel-Type, +6:u02:8), +15:u00:Tunnel-Type, +6:u01:8), +6:u00:8), +15:u08:Attributes:, +15:u07:Attributes:, +10:u08:Encaps, +15:u06:Attributes:, +10:u07:Encaps, +9:u08:Type:, +15:u14:attributes:, +8:uI2::,-,, +15:u05:Attributes:, +10:u06:Encaps, +9:u07:Type:, +7:u08:SID, +15:u13:attributes:, +8:uI1::,-,, +15:u04:Attributes:, +10:u05:Encaps, +9:u06:Type:, +7:u07:SID, +15:u12:attributes:, +8:uI0::,-,, +15:u03:Attributes:, +10:u04:Encaps, +9:u05:Type:, +7:u06:SID, +15:u11:attributes:, +15:u02:Attributes:, +10:u03:Encaps, +9:u04:Type:, +7:u05:SID, +15:u10:attributes:, +15:u01:Attributes:, +10:u02:Encaps, +9:u03:Type:, +7:u04:SID, +8:u23:Bind, +15:u00:Attributes:, +10:u08:Weight, +10:u01:Encaps, +9:u02:Type:, +7:u03:SID, +8:u08:List, +8:u23:Pref, +10:u00:Encaps, +9:u01:Type:, +7:u02:SID, +8:u07:List, +10:u07:Weight, +9:u00:Type:, +7:u01:SID, +8:u06:List, +10:u06:Weight, +7:u00:SID, +8:u05:List, +10:u14:weight, +8:u23:Expl, +10:u05:Weight, +8:u04:List, +10:u13:weight, +10:u04:Weight, +8:u03:List, +10:u12:weight, +7:u22:Wei, +8:u23:Weig, +10:u03:Weight, +8:u02:List, +10:u11:weight, +10:u02:Weight, +8:u01:List, +10:u10:weight, +10:u01:Weight, +33:u08:[I-D.ietf-idr-tunnel-encaps]., +8:u00:List, +10:u00:Weight, +33:u07:[I-D.ietf-idr-tunnel-encaps]., +33:u06:[I-D.ietf-idr-tunnel-encaps]., +33:u14:[i-d.ietf-idr-tunnel-encaps]., +33:u05:[I-D.ietf-idr-tunnel-encaps]., +9:u08:List,, +15:u08:Preference,, +33:u13:[i-d.ietf-idr-tunnel-encaps]., +33:u04:[I-D.ietf-idr-tunnel-encaps]., +15:u07:Preference,, +33:u12:[i-d.ietf-idr-tunnel-encaps]., +7:uI2:-(", +33:u03:[I-D.ietf-idr-tunnel-encaps]., +9:u07:List,, +15:u06:Preference,, +33:u11:[i-d.ietf-idr-tunnel-encaps]., +7:uI1:-(", +33:u02:[I-D.ietf-idr-tunnel-encaps]., +9:u06:List,, +15:u05:Preference,, +33:u10:[i-d.ietf-idr-tunnel-encaps]., +9:u14:list,, +7:uI0:-(", +10:uI2:,,,,,-, +33:u01:[I-D.ietf-idr-tunnel-encaps]., +9:u05:List,, +15:u04:Preference,, +9:u13:list,, +10:uI1:,,,,,-, +33:u00:[I-D.ietf-idr-tunnel-encaps]., +9:u04:List,, +13:u08:withdraw", +15:u03:Preference,, +9:u12:list,, +10:uI0:,,,,,-, +9:u03:List,, +15:u02:Preference,, +12:u08:strategy, +9:u11:list,, +9:u02:List,, +13:u07:withdraw", +15:u01:Preference,, +12:u07:strategy, +15:u08:occurrences, +9:u10:list,, +12:u14:appears,, +9:uI2:""."", +9:u01:List,, +13:u06:withdraw", +15:u00:Preference,, +12:u06:strategy, +15:u07:occurrences, +12:u13:appears,, +13:u14:withdraw", +9:uI1:""."", +8:uI2:,"--, +9:u00:List,, +13:u05:withdraw", +12:u05:strategy, +15:u06:occurrences, +12:u12:appears,, +13:u13:withdraw", +9:uI0:""."", +8:uI1:,"--, +13:u04:withdraw", +12:u04:strategy, +15:u05:occurrences, +9:u08:List., +12:u11:appears,, +13:u12:withdraw", +8:uI0:,"--, +13:u03:withdraw", +12:u03:strategy, +15:u04:occurrences, +9:u07:List., +12:u10:appears,, +13:u11:withdraw", +13:u02:withdraw", +33:u08:[I-D.ietf-idr-tunnel-encaps],, +12:u02:strategy, +15:u03:occurrences, +9:u06:List., +13:u10:withdraw", +13:u01:withdraw", +14:u08:encodings., +12:u01:strategy, +15:u02:occurrences, +9:u05:List., +13:u00:withdraw", +33:u07:[I-D.ietf-idr-tunnel-encaps],, +12:u00:strategy, +15:u01:occurrences, +9:u04:List., +33:u06:[I-D.ietf-idr-tunnel-encaps],, +14:u07:encodings., +15:u00:occurrences, +9:u03:List., +33:u14:[i-d.ietf-idr-tunnel-encaps],, +33:u05:[I-D.ietf-idr-tunnel-encaps],, +14:u06:encodings., +9:u02:List., +33:u13:[i-d.ietf-idr-tunnel-encaps],, +14:u14:encodings., +33:u04:[I-D.ietf-idr-tunnel-encaps],, +14:u05:encodings., +9:u01:List., +33:u12:[i-d.ietf-idr-tunnel-encaps],, +14:u13:encodings., +33:u03:[I-D.ietf-idr-tunnel-encaps],, +14:u04:encodings., +9:u00:List., +33:u11:[i-d.ietf-idr-tunnel-encaps],, +14:u12:encodings., +33:u02:[I-D.ietf-idr-tunnel-encaps],, +14:u03:encodings., +33:u10:[i-d.ietf-idr-tunnel-encaps],, +14:u11:encodings., +33:u01:[I-D.ietf-idr-tunnel-encaps],, +14:u02:encodings., +14:u10:encodings., +33:u00:[I-D.ietf-idr-tunnel-encaps],, +14:u01:encodings., +13:u08:encodings, +14:u00:encodings., +13:u07:encodings, +13:u06:encodings, +9:u08:Color, +13:u14:encodings, +13:u05:encodings, +9:u07:Color, +13:u13:encodings, +13:u04:encodings, +9:u06:Color, +13:u12:encodings, +13:u03:encodings, +9:u05:Color, +13:u11:encodings, +13:u02:encodings, +9:u04:Color, +13:u10:encodings, +13:u01:encodings, +9:u03:Color, +13:u00:encodings, +9:u02:Color, +9:u01:Color, +6:uI2:-", +9:u00:Color, +6:uI1:-", +7:uI2:-"., +6:uI0:-", +7:uI1:-"., +7:uI0:-"., +9:uI2::"-"., +9:uI1::"-"., +9:uI0::"-"., +9:u08:once,, +9:u07:once,, +9:u06:once,, +9:u14:once,, +9:u05:once,, +9:u13:once,, +12:u14:strategy, +9:uI2:,"--", +9:u04:once,, +9:u12:once,, +12:u13:strategy, +9:uI1:,"--", +9:u03:once,, +9:u11:once,, +12:u12:strategy, +9:uI0:,"--", +9:u02:once,, +9:u10:once,, +12:u11:strategy, +9:u01:once,, +12:u10:strategy, +9:u00:once,, +12:u08:RESERVED, +7:u22:Len, +8:u23:Leng, +12:u07:RESERVED, +12:u06:RESERVED, +12:u05:RESERVED, +12:u04:RESERVED, +8:u23:RESE, +12:u03:RESERVED, +12:u02:RESERVED, +12:u01:RESERVED, +12:u00:RESERVED, +11:u08:Length:, +11:u07:Length:, +10:u08:Flags:, +12:u08:receipt., +11:u06:Length:, +10:u07:Flags:, +11:u05:Length:, +10:u06:Flags:, +12:u07:receipt., +11:u04:Length:, +10:u05:Flags:, +12:u06:receipt., +11:u03:Length:, +10:u04:Flags:, +12:u14:receipt., +12:u05:receipt., +11:u02:Length:, +10:u03:Flags:, +12:u13:receipt., +12:u04:receipt., +11:u01:Length:, +10:u02:Flags:, +12:u12:receipt., +12:u03:receipt., +11:u00:Length:, +10:u01:Flags:, +12:u11:receipt., +12:u02:receipt., +10:u00:Flags:, +12:u10:receipt., +12:u01:receipt., +13:u08:RESERVED:, +12:u00:receipt., +13:u07:RESERVED:, +13:u06:RESERVED:, +15:u08:Preference:, +13:u05:RESERVED:, +15:u07:Preference:, +11:u08:sub-TLV, +13:u04:RESERVED:, +15:u06:Preference:, +13:u03:RESERVED:, +15:u05:Preference:, +11:u07:sub-TLV, +13:u02:RESERVED:, +15:u04:Preference:, +11:u06:sub-TLV, +13:u01:RESERVED:, +15:u03:Preference:, +11:u14:sub-tlv, +11:u05:sub-TLV, +13:u00:RESERVED:, +15:u02:Preference:, +11:u13:sub-tlv, +11:u04:sub-TLV, +15:u01:Preference:, +11:u12:sub-tlv, +11:u03:sub-TLV, +15:u00:Preference:, +11:u11:sub-tlv, +11:u02:sub-TLV, +11:u10:sub-tlv, +11:u01:sub-TLV, +11:u00:sub-TLV, +21:u08:+-+-+-+-+-+-+-+-+, +7:uI2::.(, +9:u08:|S|I|, +7:uI1::.(, +21:u07:+-+-+-+-+-+-+-+-+, +7:uI0::.(, +7:uI2:.):, +21:u06:+-+-+-+-+-+-+-+-+, +9:u07:|S|I|, +21:u14:+-+-+-+-+-+-+-+-+, +7:uI1:.):, +21:u05:+-+-+-+-+-+-+-+-+, +9:u06:|S|I|, +21:u13:+-+-+-+-+-+-+-+-+, +9:u14:|s|i|, +7:uI0:.):, +21:u04:+-+-+-+-+-+-+-+-+, +9:u05:|S|I|, +21:u12:+-+-+-+-+-+-+-+-+, +9:u13:|s|i|, +21:u03:+-+-+-+-+-+-+-+-+, +9:u04:|S|I|, +11:u08:S-Flag:, +21:u11:+-+-+-+-+-+-+-+-+, +9:u12:|s|i|, +7:u22:|S|, +8:u23:|S|I, +21:u02:+-+-+-+-+-+-+-+-+, +9:u03:|S|I|, +11:u07:S-Flag:, +21:u10:+-+-+-+-+-+-+-+-+, +9:u11:|s|i|, +21:u01:+-+-+-+-+-+-+-+-+, +9:u02:|S|I|, +11:u06:S-Flag:, +9:u10:|s|i|, +21:u00:+-+-+-+-+-+-+-+-+, +9:u01:|S|I|, +11:u05:S-Flag:, +12:uI2:*-:"--"., +9:u00:|S|I|, +11:u04:S-Flag:, +12:uI1:*-:"--"., +11:u03:S-Flag:, +12:uI0:*-:"--"., +11:u02:S-Flag:, +11:u01:S-Flag:, +11:u00:S-Flag:, +11:u08:I-Flag:, +11:u07:I-Flag:, +11:u06:I-Flag:, +11:u05:I-Flag:, +10:u08:Unused, +10:uI2:*-:""., +11:u04:I-Flag:, +10:u07:Unused, +10:uI1:*-:""., +11:u03:I-Flag:, +10:u06:Unused, +10:uI0:*-:""., +11:u02:I-Flag:, +10:u05:Unused, +11:u01:I-Flag:, +10:u04:Unused, +11:u00:I-Flag:, +10:u03:Unused, +10:u02:Unused, +10:u01:Unused, +7:uI2::,., +10:u00:Unused, +10:u14:format, +7:uI1::,., +10:u13:format, +7:uI0::,., +10:u12:format, +10:u11:format, +10:u10:format, +7:u08:TTL, +6:u08:TC, +6:u07:TC, +7:u07:TTL, +6:u06:TC, +7:u06:TTL, +6:u05:TC, +7:u14:ttl, +7:u05:TTL, +6:u04:TC, +7:u13:ttl, +7:u04:TTL, +6:u03:TC, +7:u12:ttl, +6:u21:TT, +7:u22:TTL, +7:u23:TTL, +7:u03:TTL, +6:u02:TC, +7:u11:ttl, +7:u02:TTL, +6:u01:TC, +7:u10:ttl, +7:u01:TTL, +6:u00:TC, +7:u00:TTL, +14:uI2:[-.----].-, +14:uI1:[-.----].-, +7:u08:TLV, +14:uI0:[-.----].-, +13:u08:codepoint, +7:u07:TLV, +13:u07:codepoint, +7:u06:TLV, +13:u06:codepoint, +7:u14:tlv, +13:uI2:[-.---],-, +7:u05:TLV, +13:u05:codepoint, +7:u13:tlv, +13:uI1:[-.---],-, +7:u04:TLV, +13:u04:codepoint, +7:u12:tlv, +7:u23:TLV, +13:uI0:[-.---],-, +7:u03:TLV, +13:u03:codepoint, +7:u11:tlv, +7:u02:TLV, +13:u02:codepoint, +7:u10:tlv, +7:u01:TLV, +13:u01:codepoint, +7:u00:TLV, +13:u00:codepoint, +11:u08:fields), +11:u07:fields), +11:u06:fields), +11:u14:fields), +11:u05:fields), +13:u08:sub-TLVs:, +11:u13:fields), +8:uI2:)--., +11:u04:fields), +13:u07:sub-TLVs:, +11:u12:fields), +8:uI1:)--., +11:u03:fields), +14:u08:Validation, +13:u06:sub-TLVs:, +11:u11:fields), +8:uI0:)--., +11:u02:fields), +13:u05:sub-TLVs:, +11:u10:fields), +11:u01:fields), +14:u07:Validation, +13:u04:sub-TLVs:, +11:u00:fields), +14:u06:Validation, +12:u08:2.4.3.1., +13:u03:sub-TLVs:, +14:u14:validation, +14:u05:Validation, +13:u02:sub-TLVs:, +14:u13:validation, +14:u04:Validation, +12:u07:2.4.3.1., +9:u08:list., +13:u01:sub-TLVs:, +14:u12:validation, +14:u03:Validation, +12:u06:2.4.3.1., +13:u00:sub-TLVs:, +14:u11:validation, +12:u14:2.4.3.1., +14:u02:Validation, +12:u05:2.4.3.1., +9:u07:list., +14:u10:validation, +12:u13:2.4.3.1., +14:u01:Validation, +12:u04:2.4.3.1., +9:u06:list., +12:u12:2.4.3.1., +9:u14:list., +14:u00:Validation, +12:u03:2.4.3.1., +9:u05:list., +12:u11:2.4.3.1., +9:u13:list., +12:u02:2.4.3.1., +9:u04:list., +12:u10:2.4.3.1., +9:u12:list., +12:u01:2.4.3.1., +9:u03:list., +9:u11:list., +12:u00:2.4.3.1., +9:u02:list., +9:u10:list., +9:u01:list., +9:u00:list., +8:u23:insi, +13:u08:Sub-TLVs", +13:u07:Sub-TLVs", +9:u14:type:, +13:u06:Sub-TLVs", +9:u13:type:, +13:u14:sub-tlvs", +7:uI2::(", +13:u05:Sub-TLVs", +9:u12:type:, +13:u13:sub-tlvs", +11:u14:length:, +7:uI1::(", +8:uI2:-")., +13:u04:Sub-TLVs", +9:u11:type:, +13:u12:sub-tlvs", +11:u13:length:, +10:u14:flags:, +8:u23:Sub-, +7:uI0::(", +8:uI1:-")., +13:u03:Sub-TLVs", +12:u08:2.4.3.2., +9:u10:type:, +13:u11:sub-tlvs", +11:u12:length:, +10:u13:flags:, +8:uI0:-")., +13:u02:Sub-TLVs", +13:u10:sub-tlvs", +11:u11:length:, +10:u12:flags:, +13:u14:reserved:, +13:u01:Sub-TLVs", +12:u07:2.4.3.2., +11:u10:length:, +10:u11:flags:, +13:u13:reserved:, +13:u00:Sub-TLVs", +12:u06:2.4.3.2., +10:u10:flags:, +13:u12:reserved:, +12:u14:2.4.3.2., +12:u05:2.4.3.2., +13:u11:reserved:, +12:u13:2.4.3.2., +12:u04:2.4.3.2., +13:u10:reserved:, +12:u12:2.4.3.2., +12:u03:2.4.3.2., +12:u11:2.4.3.2., +11:uI2:(..,).-, +12:u02:2.4.3.2., +12:u10:2.4.3.2., +11:uI1:(..,).-, +12:u01:2.4.3.2., +11:uI0:(..,).-, +12:u00:2.4.3.2., +13:u08:Segments:, +13:u07:Segments:, +13:u06:Segments:, +13:u14:segments:, +13:u05:Segments:, +13:u13:segments:, +13:u04:Segments:, +13:u12:segments:, +13:u03:Segments:, +13:u11:segments:, +13:u02:Segments:, +13:u10:segments:, +13:u01:Segments:, +13:u00:Segments:, +14:u08:2.4.3.2.1., +14:u07:2.4.3.2.1., +10:u08:Type-1, +14:u06:2.4.3.2.1., +10:u07:Type-1, +10:u08:label., +14:u14:2.4.3.2.1., +14:u05:2.4.3.2.1., +10:u06:Type-1, +10:u07:label., +14:u13:2.4.3.2.1., +11:uI2:.....:,, +14:u04:2.4.3.2.1., +10:u05:Type-1, +10:u06:label., +14:u12:2.4.3.2.1., +11:uI1:.....:,, +14:u03:2.4.3.2.1., +10:u04:Type-1, +10:u05:label., +14:u11:2.4.3.2.1., +11:uI0:.....:,, +14:u02:2.4.3.2.1., +10:u03:Type-1, +10:u04:label., +14:u10:2.4.3.2.1., +14:u01:2.4.3.2.1., +10:u02:Type-1, +10:u03:label., +14:u00:2.4.3.2.1., +10:u01:Type-1, +10:u02:label., +10:u00:Type-1, +10:u01:label., +10:u00:label., +10:u08:Label:, +10:uI2::....., +10:u07:Label:, +7:u08:TC:, +10:uI1::....., +10:u06:Label:, +7:u07:TC:, +6:u08:S:, +10:uI0::....., +10:u05:Label:, +7:u06:TC:, +6:u07:S:, +8:u08:TTL:, +10:u04:Label:, +7:u05:TC:, +6:u06:S:, +8:u07:TTL:, +10:u03:Label:, +7:u04:TC:, +6:u05:S:, +8:u06:TTL:, +8:uI2::--., +10:u02:Label:, +7:u03:TC:, +6:u04:S:, +8:u05:TTL:, +8:uI1::--., +10:u01:Label:, +7:u02:TC:, +6:u03:S:, +8:u04:TTL:, +8:uI0::--., +10:u00:Label:, +7:u01:TC:, +6:u02:S:, +8:u03:TTL:, +7:u00:TC:, +6:u01:S:, +8:u02:TTL:, +6:u00:S:, +8:u01:TTL:, +8:u00:TTL:, +14:u08:reception., +14:u07:reception., +14:u06:reception., +14:u05:reception., +14:u04:reception., +8:u08:puts, +14:u03:reception., +14:u02:reception., +8:u07:puts, +11:u08:fields., +14:u01:reception., +8:u06:puts, +14:u00:reception., +8:u14:puts, +8:u05:puts, +11:u07:fields., +8:u13:puts, +8:u04:puts, +11:u06:fields., +14:u08:2.4.3.2.2., +8:u12:puts, +11:u14:fields., +8:u23:puts, +8:u03:puts, +11:u05:fields., +8:u11:puts, +11:u13:fields., +8:u02:puts, +11:u04:fields., +14:u07:2.4.3.2.2., +10:u08:Type-2, +8:u10:puts, +11:u12:fields., +8:u01:puts, +11:u03:fields., +14:u06:2.4.3.2.2., +10:u07:Type-2, +11:u11:fields., +14:u14:2.4.3.2.2., +8:u00:puts, +11:u02:fields., +14:u05:2.4.3.2.2., +10:u06:Type-2, +11:u10:fields., +14:u13:2.4.3.2.2., +11:u01:fields., +14:u04:2.4.3.2.2., +10:u05:Type-2, +14:u12:2.4.3.2.2., +11:u00:fields., +14:u03:2.4.3.2.2., +10:u04:Type-2, +14:u11:2.4.3.2.2., +14:u02:2.4.3.2.2., +10:u03:Type-2, +14:u10:2.4.3.2.2., +14:u01:2.4.3.2.2., +10:u02:Type-2, +14:u00:2.4.3.2.2., +10:u01:Type-2, +10:u00:Type-2, +8:u08:SRv6, +8:u07:SRv6, +8:u06:SRv6, +8:u14:srv6, +8:u05:SRv6, +8:u13:srv6, +8:u04:SRv6, +8:u12:srv6, +7:u22:SRv, +8:u23:SRv6, +8:u03:SRv6, +8:u11:srv6, +8:u02:SRv6, +8:u10:srv6, +8:u01:SRv6, +8:u00:SRv6, +43:u08:[I-D.ietf-6man-segment-routing-header]., +43:u07:[I-D.ietf-6man-segment-routing-header]., +43:u06:[I-D.ietf-6man-segment-routing-header]., +43:u14:[i-d.ietf-6man-segment-routing-header]., +43:u05:[I-D.ietf-6man-segment-routing-header]., +43:u13:[i-d.ietf-6man-segment-routing-header]., +43:u04:[I-D.ietf-6man-segment-routing-header]., +43:u12:[i-d.ietf-6man-segment-routing-header]., +43:u03:[I-D.ietf-6man-segment-routing-header]., +43:u11:[i-d.ietf-6man-segment-routing-header]., +43:u02:[I-D.ietf-6man-segment-routing-header]., +14:u08:2.4.3.2.3., +43:u10:[i-d.ietf-6man-segment-routing-header]., +43:u01:[I-D.ietf-6man-segment-routing-header]., +43:u00:[I-D.ietf-6man-segment-routing-header]., +14:u07:2.4.3.2.3., +10:u08:Type-3, +14:u06:2.4.3.2.3., +10:u07:Type-3, +14:u14:2.4.3.2.3., +14:u05:2.4.3.2.3., +10:u06:Type-3, +14:u13:2.4.3.2.3., +10:uI2:.....:, +14:u04:2.4.3.2.3., +10:u05:Type-3, +14:u12:2.4.3.2.3., +10:uI1:.....:, +14:u03:2.4.3.2.3., +10:u04:Type-3, +14:u11:2.4.3.2.3., +10:uI0:.....:, +14:u02:2.4.3.2.3., +10:u03:Type-3, +14:u10:2.4.3.2.3., +14:u01:2.4.3.2.3., +10:u02:Type-3, +14:u00:2.4.3.2.3., +10:u01:Type-3, +10:u00:Type-3, +8:u08:IPv4, +8:u07:IPv4, +8:u06:IPv4, +8:u14:ipv4, +8:u05:IPv4, +8:u13:ipv4, +8:u04:IPv4, +14:u08:(optional,, +8:u12:ipv4, +8:u23:IPv4, +8:u03:IPv4, +14:u07:(optional,, +8:u11:ipv4, +8:u02:IPv4, +14:u06:(optional,, +8:u10:ipv4, +7:u14:sid, +8:u01:IPv4, +14:u05:(optional,, +7:u13:sid, +8:u00:IPv4, +14:u04:(optional,, +7:u12:sid, +6:u21:SI, +7:u22:SID, +7:u23:SID, +14:u03:(optional,, +7:u11:sid, +14:u02:(optional,, +7:u10:sid, +14:u01:(optional,, +14:u00:(optional,, +9:u08:3.1.1, +8:u08:SRPM, +9:u07:3.1.1, +9:u06:3.1.1, +8:u07:SRPM, +12:u08:encoded,, +9:u05:3.1.1, +15:uI2:..[-.---],-, +8:u06:SRPM, +9:u04:3.1.1, +8:u14:srpm, +15:uI1:..[-.---],-, +8:u05:SRPM, +12:u07:encoded,, +9:u03:3.1.1, +8:u13:srpm, +15:uI0:..[-.---],-, +8:u04:SRPM, +12:u06:encoded,, +9:u02:3.1.1, +8:u12:srpm, +12:u14:encoded,, +7:u22:SRP, +8:u23:SRPM, +8:u03:SRPM, +12:u05:encoded,, +9:u01:3.1.1, +8:u08:SID:, +8:u11:srpm, +12:u13:encoded,, +8:u02:SRPM, +12:u04:encoded,, +9:u00:3.1.1, +8:u07:SID:, +8:u10:srpm, +12:u12:encoded,, +8:u01:SRPM, +12:u03:encoded,, +8:u06:SID:, +12:u11:encoded,, +8:u00:SRPM, +12:u02:encoded,, +10:u08:label,, +8:u05:SID:, +12:u10:encoded,, +12:u01:encoded,, +8:u04:SID:, +7:u08:TC,, +12:u00:encoded,, +10:u07:label,, +8:u03:SID:, +7:u07:TC,, +10:u06:label,, +8:u02:SID:, +7:u06:TC,, +10:u14:label,, +10:u05:label,, +8:u01:SID:, +7:u05:TC,, +10:u13:label,, +11:uI2:,,....., +10:u04:label,, +8:u00:SID:, +7:u04:TC,, +10:u12:label,, +11:uI1:,,....., +10:u03:label,, +7:u03:TC,, +10:u11:label,, +11:uI0:,,....., +10:u02:label,, +7:u02:TC,, +10:u10:label,, +10:u01:label,, +7:u01:TC,, +10:u00:label,, +7:u00:TC,, +14:u08:2.4.3.2.4., +14:u07:2.4.3.2.4., +10:u08:Type-4, +14:u06:2.4.3.2.4., +10:u07:Type-4, +14:u14:2.4.3.2.4., +14:u05:2.4.3.2.4., +10:u06:Type-4, +14:u13:2.4.3.2.4., +14:u04:2.4.3.2.4., +10:u05:Type-4, +14:u12:2.4.3.2.4., +14:u03:2.4.3.2.4., +10:u04:Type-4, +14:u11:2.4.3.2.4., +14:u02:2.4.3.2.4., +10:u03:Type-4, +14:u10:2.4.3.2.4., +14:u01:2.4.3.2.4., +10:u02:Type-4, +14:u00:2.4.3.2.4., +10:u01:Type-4, +10:u00:Type-4, +14:u08:2.4.3.2.5., +14:u07:2.4.3.2.5., +10:u08:Type-5, +14:u06:2.4.3.2.5., +10:u07:Type-5, +14:u08:Identifier, +14:u14:2.4.3.2.5., +14:u05:2.4.3.2.5., +10:u06:Type-5, +14:u07:Identifier, +14:u13:2.4.3.2.5., +14:u04:2.4.3.2.5., +10:u05:Type-5, +14:u06:Identifier, +14:u12:2.4.3.2.5., +14:u03:2.4.3.2.5., +10:u04:Type-5, +14:u05:Identifier, +14:u11:2.4.3.2.5., +14:u02:2.4.3.2.5., +10:u03:Type-5, +14:u04:Identifier, +14:u10:2.4.3.2.5., +14:u01:2.4.3.2.5., +10:u02:Type-5, +14:u03:Identifier, +14:u00:2.4.3.2.5., +10:u01:Type-5, +14:u02:Identifier, +10:u00:Type-5, +14:u01:Identifier, +14:u00:Identifier, +9:u08:Local, +9:u07:Local, +9:u06:Local, +9:u05:Local, +9:u04:Local, +9:u03:Local, +9:u02:Local, +9:u01:Local, +9:u00:Local, +35:u08:[I-D.ietf-pce-segment-routing]., +35:u07:[I-D.ietf-pce-segment-routing]., +35:u06:[I-D.ietf-pce-segment-routing]., +35:u14:[i-d.ietf-pce-segment-routing]., +35:u05:[I-D.ietf-pce-segment-routing]., +35:u13:[i-d.ietf-pce-segment-routing]., +35:u04:[I-D.ietf-pce-segment-routing]., +35:u12:[i-d.ietf-pce-segment-routing]., +35:u03:[I-D.ietf-pce-segment-routing]., +35:u11:[i-d.ietf-pce-segment-routing]., +35:u02:[I-D.ietf-pce-segment-routing]., +35:u10:[i-d.ietf-pce-segment-routing]., +35:u01:[I-D.ietf-pce-segment-routing]., +35:u00:[I-D.ietf-pce-segment-routing]., +14:u08:2.4.3.2.6., +14:u07:2.4.3.2.6., +13:u08:adjacency, +10:u08:Type-6, +14:u06:2.4.3.2.6., +10:u07:Type-6, +14:u14:2.4.3.2.6., +14:u05:2.4.3.2.6., +13:u07:adjacency, +10:u06:Type-6, +14:u13:2.4.3.2.6., +14:u04:2.4.3.2.6., +13:u06:adjacency, +10:u05:Type-6, +14:u12:2.4.3.2.6., +13:u14:adjacency, +14:u03:2.4.3.2.6., +13:u05:adjacency, +10:u04:Type-6, +14:u11:2.4.3.2.6., +13:u13:adjacency, +10:u14:label., +14:u02:2.4.3.2.6., +13:u04:adjacency, +10:u03:Type-6, +14:u10:2.4.3.2.6., +13:u12:adjacency, +10:u13:label., +8:u23:adja, +14:u01:2.4.3.2.6., +13:u03:adjacency, +10:u02:Type-6, +13:u11:adjacency, +10:u12:label., +14:u00:2.4.3.2.6., +13:u02:adjacency, +10:u01:Type-6, +13:u10:adjacency, +10:u11:label., +13:u01:adjacency, +10:u00:Type-6, +10:u10:label., +13:u00:adjacency, +14:u08:2.4.3.2.7., +14:u07:2.4.3.2.7., +14:u06:2.4.3.2.7., +10:u08:Type-7, +14:u14:2.4.3.2.7., +14:u05:2.4.3.2.7., +10:u07:Type-7, +14:u13:2.4.3.2.7., +8:u14:pair, +14:u04:2.4.3.2.7., +10:u06:Type-7, +8:u08:ID),, +14:u12:2.4.3.2.7., +8:u13:pair, +14:u03:2.4.3.2.7., +10:u05:Type-7, +8:u07:ID),, +11:u08:(Remote, +14:u11:2.4.3.2.7., +8:u12:pair, +14:u02:2.4.3.2.7., +10:u04:Type-7, +8:u06:ID),, +11:u07:(Remote, +14:u10:2.4.3.2.7., +8:u11:pair, +14:u01:2.4.3.2.7., +10:u03:Type-7, +8:u05:ID),, +11:u06:(Remote, +8:u10:pair, +14:u00:2.4.3.2.7., +10:u02:Type-7, +8:u04:ID),, +11:u05:(Remote, +10:u01:Type-7, +8:u03:ID),, +11:u04:(Remote, +10:u00:Type-7, +8:u02:ID),, +11:u03:(Remote, +8:u01:ID),, +11:u02:(Remote, +8:u00:ID),, +11:u01:(Remote, +11:u00:(Remote, +12:u08:Address,, +12:u07:Address,, +12:u06:Address,, +12:u05:Address,, +12:u04:Address,, +14:u08:2.4.3.2.8., +12:u03:Address,, +12:u02:Address,, +14:u07:2.4.3.2.8., +12:u01:Address,, +14:u06:2.4.3.2.8., +10:u08:Type-8, +14:u14:2.4.3.2.8., +12:u00:Address,, +14:u05:2.4.3.2.8., +10:u07:Type-8, +14:u13:2.4.3.2.8., +14:u04:2.4.3.2.8., +10:u06:Type-8, +14:u12:2.4.3.2.8., +14:u03:2.4.3.2.8., +10:u05:Type-8, +14:u11:2.4.3.2.8., +14:u02:2.4.3.2.8., +10:u04:Type-8, +14:u10:2.4.3.2.8., +14:u01:2.4.3.2.8., +10:u03:Type-8, +14:u00:2.4.3.2.8., +10:u02:Type-8, +10:u01:Type-8, +10:u00:Type-8, +14:u08:2.4.3.2.9., +14:u07:2.4.3.2.9., +10:u08:Type-9, +14:u06:2.4.3.2.9., +10:u07:Type-9, +14:u14:2.4.3.2.9., +14:u05:2.4.3.2.9., +10:u06:Type-9, +14:u13:2.4.3.2.9., +14:u04:2.4.3.2.9., +10:u05:Type-9, +14:u12:2.4.3.2.9., +14:u03:2.4.3.2.9., +10:u04:Type-9, +14:u11:2.4.3.2.9., +14:u02:2.4.3.2.9., +10:u03:Type-9, +14:u10:2.4.3.2.9., +14:u01:2.4.3.2.9., +10:u02:Type-9, +14:u00:2.4.3.2.9., +10:u01:Type-9, +10:u00:Type-9, +9:u08:octet, +9:u07:octet, +9:u06:octet, +9:u14:octet, +9:u05:octet, +9:u13:octet, +9:u04:octet, +9:u12:octet, +7:u22:oct, +8:u23:octe, +9:u03:octet, +9:u11:octet, +9:u02:octet, +9:u10:octet, +9:u01:octet, +9:u00:octet, +15:u08:2.4.3.2.10., +15:u07:2.4.3.2.10., +15:u06:2.4.3.2.10., +11:u08:Type-10, +15:u14:2.4.3.2.10., +15:u05:2.4.3.2.10., +11:u07:Type-10, +15:u13:2.4.3.2.10., +15:u04:2.4.3.2.10., +11:u06:Type-10, +15:u12:2.4.3.2.10., +15:u03:2.4.3.2.10., +11:u05:Type-10, +15:u11:2.4.3.2.10., +15:u02:2.4.3.2.10., +11:u04:Type-10, +15:u10:2.4.3.2.10., +8:u14:id),, +15:u01:2.4.3.2.10., +11:u03:Type-10, +8:u13:id),, +8:uI2:),,(, +15:u00:2.4.3.2.10., +11:u02:Type-10, +8:u12:id),, +7:u22:ID), +8:u23:ID),, +8:uI1:),,(, +11:u01:Type-10, +8:u11:id),, +8:uI0:),,(, +11:u00:Type-10, +8:u10:id),, +15:u08:2.4.3.2.11., +15:u07:2.4.3.2.11., +15:u06:2.4.3.2.11., +11:u08:Type-11, +15:u14:2.4.3.2.11., +15:u05:2.4.3.2.11., +11:u07:Type-11, +15:u13:2.4.3.2.11., +15:u04:2.4.3.2.11., +11:u06:Type-11, +15:u12:2.4.3.2.11., +15:u03:2.4.3.2.11., +11:u05:Type-11, +15:u11:2.4.3.2.11., +15:u02:2.4.3.2.11., +11:u04:Type-11, +15:u10:2.4.3.2.11., +15:u01:2.4.3.2.11., +11:u03:Type-11, +15:u00:2.4.3.2.11., +11:u02:Type-11, +11:u01:Type-11, +11:u00:Type-11, +15:u08:2.4.3.2.12., +15:u07:2.4.3.2.12., +11:u08:"Flags", +15:u06:2.4.3.2.12., +15:u14:2.4.3.2.12., +15:u05:2.4.3.2.12., +11:u07:"Flags", +15:u13:2.4.3.2.12., +15:u04:2.4.3.2.12., +11:u06:"Flags", +15:u12:2.4.3.2.12., +11:u14:"flags", +15:u03:2.4.3.2.12., +11:u05:"Flags", +9:u08:|V|A|, +15:u11:2.4.3.2.12., +11:u13:"flags", +8:uI2:""(", +15:u02:2.4.3.2.12., +11:u04:"Flags", +15:u10:2.4.3.2.12., +11:u12:"flags", +6:u21:"F, +7:u22:"Fl, +8:u23:"Fla, +8:uI1:""(", +8:uI2:".):, +15:u01:2.4.3.2.12., +11:u03:"Flags", +9:u07:|V|A|, +11:u11:"flags", +8:uI0:""(", +8:uI1:".):, +15:u00:2.4.3.2.12., +11:u02:"Flags", +9:u06:|V|A|, +11:u10:"flags", +9:u14:|v|a|, +8:uI0:".):, +11:u01:"Flags", +9:u05:|V|A|, +11:u08:V-Flag:, +9:u13:|v|a|, +11:u00:"Flags", +9:u04:|V|A|, +17:u08:verification", +9:u12:|v|a|, +6:u21:|V, +7:u22:|V|, +8:u23:|V|A, +9:u03:|V|A|, +11:u07:V-Flag:, +9:u11:|v|a|, +9:u02:|V|A|, +11:u06:V-Flag:, +17:u07:verification", +9:u10:|v|a|, +11:u14:v-flag:, +9:u01:|V|A|, +11:u05:V-Flag:, +17:u06:verification", +11:u13:v-flag:, +17:u14:verification", +7:uI2:-:", +9:u00:|V|A|, +11:u04:V-Flag:, +17:u05:verification", +11:u12:v-flag:, +17:u13:verification", +6:u21:V-, +7:u22:V-F, +8:u23:V-Fl, +7:uI1:-:", +11:u03:V-Flag:, +17:u04:verification", +11:u11:v-flag:, +17:u12:verification", +7:uI0:-:", +11:u02:V-Flag:, +17:u03:verification", +11:u10:v-flag:, +17:u11:verification", +11:u01:V-Flag:, +17:u02:verification", +17:u10:verification", +11:u00:V-Flag:, +17:u01:verification", +11:u08:A-Flag:, +17:u00:verification", +7:u08:"SR, +11:u07:A-Flag:, +14:u08:Algorithm", +11:u06:A-Flag:, +7:u07:"SR, +14:u07:Algorithm", +11:u14:a-flag:, +11:u05:A-Flag:, +7:u06:"SR, +14:u06:Algorithm", +11:u13:a-flag:, +7:u14:"sr, +11:u04:A-Flag:, +7:u05:"SR, +14:u05:Algorithm", +11:u12:a-flag:, +7:u13:"sr, +6:u21:A-, +7:u22:A-F, +8:u23:A-Fl, +11:u03:A-Flag:, +7:u04:"SR, +14:u04:Algorithm", +11:u11:a-flag:, +7:u12:"sr, +7:u22:"SR, +7:u23:"SR, +11:u02:A-Flag:, +7:u03:"SR, +14:u03:Algorithm", +11:u10:a-flag:, +7:u11:"sr, +10:u14:unused, +11:u01:A-Flag:, +7:u02:"SR, +14:u02:Algorithm", +10:u08:V-Flag, +7:u10:"sr, +10:u13:unused, +11:u00:A-Flag:, +7:u01:"SR, +14:u01:Algorithm", +10:u07:V-Flag, +10:u08:A-Flag, +10:u12:unused, +7:u22:Unu, +8:u23:Unus, +7:u00:"SR, +14:u00:Algorithm", +10:u06:V-Flag, +10:u07:A-Flag, +10:u11:unused, +10:u05:V-Flag, +10:u06:A-Flag, +10:u10:unused, +10:u04:V-Flag, +10:u05:A-Flag, +8:uI2:-,.-, +10:u03:V-Flag, +10:u04:A-Flag, +8:uI1:-,.-, +10:u02:V-Flag, +10:u03:A-Flag, +10:u08:labels, +8:uI0:-,.-, +10:u01:V-Flag, +10:u02:A-Flag, +10:u07:labels, +13:u08:unlabeled, +10:u00:V-Flag, +10:u01:A-Flag, +10:u06:labels, +10:u00:A-Flag, +10:u05:labels, +13:u07:unlabeled, +10:u04:labels, +13:u06:unlabeled, +10:u03:labels, +13:u14:unlabeled, +13:u05:unlabeled, +10:u02:labels, +13:u13:unlabeled, +13:u04:unlabeled, +10:u01:labels, +8:u08:ENLP, +13:u12:unlabeled, +8:u23:unla, +13:u03:unlabeled, +10:u00:labels, +8:u07:ENLP, +13:u11:unlabeled, +13:u02:unlabeled, +8:u06:ENLP, +13:u10:unlabeled, +13:u01:unlabeled, +8:u05:ENLP, +13:u08:[RFC7606], +13:u00:unlabeled, +8:u04:ENLP, +13:u07:[RFC7606], +8:u03:ENLP, +13:u06:[RFC7606], +7:u08:4.1, +8:uI2:"--", +8:u02:ENLP, +13:u05:[RFC7606], +7:u07:4.1, +8:uI1:"--", +8:u01:ENLP, +13:u04:[RFC7606], +7:u06:4.1, +8:uI0:"--", +8:u00:ENLP, +13:u03:[RFC7606], +7:u05:4.1, +14:uI2:.[-.----]., +13:u02:[RFC7606], +7:u04:4.1, +14:uI1:.[-.----]., +13:u01:[RFC7606], +7:u03:4.1, +14:uI0:.[-.----]., +13:u00:[RFC7606], +7:u02:4.1, +7:u01:4.1, +7:u00:4.1, +10:u08:Where:, +8:u14:enlp, +8:u13:enlp, +10:u07:Where:, +8:u12:enlp, +7:u22:ENL, +8:u23:ENLP, +10:u06:Where:, +8:u11:enlp, +10:u05:Where:, +8:u10:enlp, +10:u04:Where:, +10:u03:Where:, +10:u02:Where:, +10:u01:Where:, +8:u08:TBD1, +10:u00:Where:, +8:u07:TBD1, +8:u06:TBD1, +9:u08:8.3)., +8:u05:TBD1, +9:u07:8.3)., +8:u04:TBD1, +9:u06:8.3)., +8:u03:TBD1, +9:u05:8.3)., +8:u02:TBD1, +9:u04:8.3)., +8:u01:TBD1, +9:u03:8.3)., +17:u08:ENLP(Explicit, +8:u00:TBD1, +9:u02:8.3)., +9:u01:8.3)., +17:u07:ENLP(Explicit, +11:u08:steered, +9:u00:8.3)., +17:u06:ENLP(Explicit, +17:u14:enlp(explicit, +17:u05:ENLP(Explicit, +11:u07:steered, +17:u13:enlp(explicit, +10:u14:labels, +17:u04:ENLP(Explicit, +11:u06:steered, +13:u08:Reserved., +17:u12:enlp(explicit, +10:u13:labels, +11:u14:steered, +17:u03:ENLP(Explicit, +11:u05:steered, +13:u07:Reserved., +8:u08:Push, +17:u11:enlp(explicit, +10:u12:labels, +11:u13:steered, +17:u02:ENLP(Explicit, +11:u04:steered, +13:u06:Reserved., +8:u07:Push, +17:u10:enlp(explicit, +10:u11:labels, +11:u12:steered, +6:u14:0:, +8:u23:stee, +17:u01:ENLP(Explicit, +11:u03:steered, +13:u05:Reserved., +8:u06:Push, +10:u10:labels, +11:u11:steered, +6:u13:0:, +6:u14:1:, +17:u00:ENLP(Explicit, +11:u02:steered, +13:u04:Reserved., +8:u05:Push, +11:u10:steered, +6:u12:0:, +6:u13:1:, +11:u14:packet,, +6:u21:0:, +6:u22:0:, +6:u23:0:, +11:u01:steered, +13:u03:Reserved., +8:u04:Push, +6:u11:0:, +6:u12:1:, +11:u13:packet,, +6:u21:1:, +6:u22:1:, +6:u23:1:, +11:u00:steered, +13:u02:Reserved., +8:u03:Push, +6:u10:0:, +6:u11:1:, +11:u12:packet,, +6:u14:2:, +13:u01:Reserved., +8:u02:Push, +6:u10:1:, +11:u11:packet,, +6:u13:2:, +13:u00:Reserved., +8:u01:Push, +11:u10:packet,, +6:u12:2:, +6:u21:2:, +6:u22:2:, +6:u23:2:, +8:u00:Push, +6:u11:2:, +6:u14:3:, +6:u10:2:, +6:u13:3:, +9:u08:-255:, +6:u12:3:, +6:u21:3:, +6:u22:3:, +6:u23:3:, +9:u07:-255:, +6:u11:3:, +6:u14:4:, +9:u06:-255:, +6:u10:3:, +6:u13:4:, +9:u05:-255:, +6:u12:4:, +6:u21:4:, +6:u22:4:, +6:u23:4:, +9:u04:-255:, +6:u11:4:, +9:u03:-255:, +6:u10:4:, +9:u02:-255:, +9:u01:-255:, +9:u00:-255:, +12:u08:operator, +12:u07:operator, +12:u06:operator, +12:u05:operator, +12:u04:operator, +12:u03:operator, +12:u02:operator, +12:u01:operator, +12:u00:operator, +8:u08:TBD2, +8:u07:TBD2, +8:u06:TBD2, +13:u08:Priority:, +8:u05:TBD2, +8:u04:TBD2, +13:u07:Priority:, +8:u03:TBD2, +13:u06:Priority:, +8:u02:TBD2, +13:u14:priority:, +13:u05:Priority:, +8:u01:TBD2, +13:u13:priority:, +13:u04:Priority:, +8:u00:TBD2, +13:u12:priority:, +13:u03:Priority:, +13:u11:priority:, +13:u02:Priority:, +13:u10:priority:, +13:u01:Priority:, +13:u00:Priority:, +8:u08:TBD3, +8:u07:TBD3, +8:u06:TBD3, +8:u05:TBD3, +13:u08:Variable., +8:u04:TBD3, +13:u07:Variable., +8:u03:TBD3, +13:u06:Variable., +8:u02:TBD3, +13:u05:Variable., +8:u01:TBD3, +13:u04:Variable., +13:u08:printable, +8:u00:TBD3, +13:u03:Variable., +13:u07:printable, +32:u08:[I-D.ietf-idr-tunnel-encaps], +13:u02:Variable., +13:u06:printable, +13:u01:Variable., +13:u05:printable, +32:u07:[I-D.ietf-idr-tunnel-encaps], +13:u00:Variable., +13:u04:printable, +32:u06:[I-D.ietf-idr-tunnel-encaps], +13:u03:printable, +32:u14:[i-d.ietf-idr-tunnel-encaps], +32:u05:[I-D.ietf-idr-tunnel-encaps], +13:u02:printable, +32:u13:[i-d.ietf-idr-tunnel-encaps], +32:u04:[I-D.ietf-idr-tunnel-encaps], +13:u01:printable, +32:u12:[i-d.ietf-idr-tunnel-encaps], +32:u03:[I-D.ietf-idr-tunnel-encaps], +13:u00:printable, +32:u11:[i-d.ietf-idr-tunnel-encaps], +32:u02:[I-D.ietf-idr-tunnel-encaps], +6:u08:|C, +32:u10:[i-d.ietf-idr-tunnel-encaps], +12:uI2:[-.---]:, +32:u01:[I-D.ietf-idr-tunnel-encaps], +6:u08:O|, +12:uI1:[-.---]:, +32:u00:[I-D.ietf-idr-tunnel-encaps], +6:u07:|C, +6:u07:O|, +12:uI0:[-.---]:, +6:u06:|C, +6:u06:O|, +6:u14:|c, +6:u05:|C, +6:u05:O|, +6:u13:|c, +6:u04:|C, +6:u04:O|, +6:u12:|c, +6:u22:|C, +6:u23:|C, +6:u03:|C, +6:u03:O|, +6:u11:|c, +6:u02:|C, +6:u02:O|, +6:u10:|c, +6:u01:|C, +6:u01:O|, +6:u00:|C, +6:u00:O|, +6:u08:CO, +6:u07:CO, +13:u08:Policies., +6:u06:CO, +6:u05:CO, +13:u07:Policies., +6:u04:CO, +13:u06:Policies., +6:u03:CO, +13:u05:Policies., +6:u02:CO, +13:u04:Policies., +6:u01:CO, +13:u03:Policies., +6:u00:CO, +13:u02:Policies., +13:u01:Policies., +13:u00:Policies., +15:u08:controller., +15:u07:controller., +13:u08:endpoint>, +15:u06:controller., +15:u14:controller., +15:u05:controller., +13:u07:endpoint>, +15:u13:controller., +15:u04:controller., +13:u06:endpoint>, +17:u08:distinguisher, +15:u12:controller., +13:u14:endpoint>, +15:u03:controller., +13:u05:endpoint>, +17:u07:distinguisher, +9:u08:among, +15:u11:controller., +13:u13:endpoint>, +15:u02:controller., +13:u04:endpoint>, +17:u06:distinguisher, +9:u07:among, +15:u10:controller., +13:u12:endpoint>, +15:u01:controller., +13:u03:endpoint>, +18:u08:advertisement,, +17:u05:distinguisher, +9:u06:among, +13:u11:endpoint>, +15:u00:controller., +13:u02:endpoint>, +17:u04:distinguisher, +9:u05:among, +13:u10:endpoint>, +13:u01:endpoint>, +18:u07:advertisement,, +17:u03:distinguisher, +9:u04:among, +13:u08:head-ends, +13:u00:endpoint>, +18:u06:advertisement,, +17:u02:distinguisher, +9:u03:among, +13:u07:head-ends, +18:u14:advertisement,, +18:u05:advertisement,, +17:u01:distinguisher, +9:u02:among, +13:u06:head-ends, +18:u13:advertisement,, +18:u04:advertisement,, +17:u00:distinguisher, +9:u01:among, +13:u05:head-ends, +18:u12:advertisement,, +18:u03:advertisement,, +11:u08:update., +9:u00:among, +13:u04:head-ends, +18:u11:advertisement,, +18:u02:advertisement,, +13:u03:head-ends, +18:u10:advertisement,, +18:u01:advertisement,, +11:u07:update., +13:u02:head-ends, +18:u00:advertisement,, +11:u06:update., +8:u08:it's, +13:u01:head-ends, +11:u14:update., +11:u05:update., +13:u00:head-ends, +11:u13:update., +11:u04:update., +8:u07:it's, +11:u12:update., +11:u03:update., +8:u06:it's, +11:u11:update., +8:u14:it's, +11:u02:update., +8:u05:it's, +11:u10:update., +8:u13:it's, +11:u01:update., +8:u04:it's, +8:u12:it's, +7:u22:it', +8:u23:it's, +11:u00:update., +8:u03:it's, +8:u11:it's, +8:u02:it's, +8:u10:it's, +7:uI2:'.:, +8:u01:it's, +7:uI1:'.:, +8:u00:it's, +7:uI0:'.:, +14:u08:endpoint)., +14:u07:endpoint)., +14:u06:endpoint)., +11:u08:format., +14:u14:endpoint)., +14:u05:endpoint)., +14:u13:endpoint)., +14:u04:endpoint)., +11:u07:format., +16:u08:NO_ADVERTISE, +14:u12:endpoint)., +14:u03:endpoint)., +11:u06:format., +14:u08:community,, +14:u11:endpoint)., +11:u14:format., +14:u02:endpoint)., +11:u05:format., +16:u07:NO_ADVERTISE, +23:u08:"treat-as-withdraw", +14:u07:community,, +14:u10:endpoint)., +11:u13:format., +14:u01:endpoint)., +11:u04:format., +16:u06:NO_ADVERTISE, +14:u06:community,, +11:u12:format., +16:u14:no_advertise, +14:u00:endpoint)., +11:u03:format., +16:u05:NO_ADVERTISE, +23:u07:"treat-as-withdraw", +14:u05:community,, +11:u11:format., +16:u13:no_advertise, +11:u02:format., +16:u04:NO_ADVERTISE, +23:u06:"treat-as-withdraw", +14:u04:community,, +11:u10:format., +16:u12:no_advertise, +23:u14:"treat-as-withdraw", +7:u22:NO_, +8:u23:NO_A, +11:u01:format., +16:u03:NO_ADVERTISE, +23:u05:"treat-as-withdraw", +14:u03:community,, +16:u11:no_advertise, +23:u13:"treat-as-withdraw", +11:uI2:"--"[]., +11:u00:format., +16:u02:NO_ADVERTISE, +23:u04:"treat-as-withdraw", +14:u02:community,, +16:u10:no_advertise, +23:u12:"treat-as-withdraw", +6:u21:"t, +7:u22:"tr, +8:u23:"tre, +11:uI1:"--"[]., +16:u01:NO_ADVERTISE, +23:u03:"treat-as-withdraw", +14:u01:community,, +23:u11:"treat-as-withdraw", +13:u14:codepoint, +11:uI0:"--"[]., +16:u00:NO_ADVERTISE, +23:u02:"treat-as-withdraw", +14:u00:community,, +23:u10:"treat-as-withdraw", +13:u13:codepoint, +8:uI2:,()", +23:u01:"treat-as-withdraw", +13:u12:codepoint, +8:uI1:,()", +23:u00:"treat-as-withdraw", +13:u11:codepoint, +8:uI0:,()", +13:u10:codepoint, +9:u14:noted, +9:u13:noted, +9:u12:noted, +9:u11:noted, +9:u10:noted, +12:u08:breaking, +12:u07:breaking, +7:u08:2.4, +12:u06:breaking, +7:u07:2.4, +12:u05:breaking, +7:u06:2.4, +12:u04:breaking, +7:u05:2.4, +12:u03:breaking, +7:u04:2.4, +12:u02:breaking, +7:u03:2.4, +12:u01:breaking, +7:u02:2.4, +12:u08:default,, +9:u14:among, +12:u00:breaking, +7:u01:2.4, +12:u07:default,, +9:u13:among, +7:u00:2.4, +12:u06:default,, +9:u12:among, +8:u23:amon, +12:u05:default,, +9:u11:among, +12:u04:default,, +9:u10:among, +12:u03:default,, +12:u02:default,, +12:u01:default,, +12:u00:default,, +16:u08:([RFC5575])., +16:u07:([RFC5575])., +16:u06:([RFC5575])., +13:u08:sub-TLVs., +16:u14:([rfc5575])., +16:u05:([RFC5575])., +16:u13:([rfc5575])., +11:uI2:([]).,-, +16:u04:([RFC5575])., +13:u07:sub-TLVs., +9:u08:steer, +11:u08:imposed, +16:u12:([rfc5575])., +11:uI1:([]).,-, +13:uI2:[-.----],, +16:u03:([RFC5575])., +13:u06:sub-TLVs., +9:u08:NLRI., +11:u07:imposed, +16:u11:([rfc5575])., +13:u14:sub-tlvs., +11:uI0:([]).,-, +13:uI1:[-.----],, +16:u02:([RFC5575])., +13:u05:sub-TLVs., +9:u07:steer, +11:u06:imposed, +16:u10:([rfc5575])., +13:u13:sub-tlvs., +13:uI0:[-.----],, +11:uI2:-.(..,), +16:u01:([RFC5575])., +13:u04:sub-TLVs., +9:u06:steer, +9:u07:NLRI., +10:u08:Kausik, +11:u05:imposed, +13:u12:sub-tlvs., +9:u14:steer, +11:uI1:-.(..,), +16:u00:([RFC5575])., +13:u03:sub-TLVs., +9:u05:steer, +9:u06:NLRI., +11:u04:imposed, +12:u08:Majumdar, +13:u11:sub-tlvs., +9:u13:steer, +9:u14:nlri., +11:uI0:-.(..,), +13:u02:sub-TLVs., +9:u04:steer, +9:u05:NLRI., +10:u07:Kausik, +11:u03:imposed, +12:u07:Majumdar, +13:u10:sub-tlvs., +9:u12:steer, +9:u13:nlri., +13:u01:sub-TLVs., +9:u03:steer, +9:u04:NLRI., +10:u06:Kausik, +11:u02:imposed, +12:u06:Majumdar, +9:u11:steer, +9:u12:nlri., +10:u14:kausik, +13:u00:sub-TLVs., +9:u02:steer, +9:u03:NLRI., +10:u05:Kausik, +9:u08:Zafar, +11:u01:imposed, +12:u05:Majumdar, +22:u08:kmajumda@cisco.com, +9:u10:steer, +9:u11:nlri., +10:u13:kausik, +9:u01:steer, +9:u02:NLRI., +10:u04:Kausik, +11:u00:imposed, +12:u04:Majumdar, +22:u07:kmajumda@cisco.com, +7:u08:Ali, +9:u10:nlri., +10:u12:kausik, +8:u23:Kaus, +9:u00:steer, +9:u01:NLRI., +10:u03:Kausik, +9:u07:Zafar, +12:u03:Majumdar, +22:u06:kmajumda@cisco.com, +7:u07:Ali, +10:u11:kausik, +9:u00:NLRI., +10:u02:Kausik, +9:u06:Zafar, +12:u02:Majumdar, +22:u05:kmajumda@cisco.com, +7:u06:Ali, +10:u10:kausik, +9:u14:zafar, +10:u01:Kausik, +9:u05:Zafar, +12:u01:Majumdar, +22:u04:kmajumda@cisco.com, +7:u05:Ali, +18:u08:zali@cisco.com, +9:u13:zafar, +10:u00:Kausik, +9:u04:Zafar, +12:u00:Majumdar, +22:u03:kmajumda@cisco.com, +7:u04:Ali, +18:u07:zali@cisco.com, +9:u12:zafar, +6:u21:Za, +7:u22:Zaf, +8:u23:Zafa, +9:u03:Zafar, +22:u02:kmajumda@cisco.com, +7:u03:Ali, +18:u06:zali@cisco.com, +9:u11:zafar, +9:u02:Zafar, +22:u01:kmajumda@cisco.com, +7:u02:Ali, +18:u05:zali@cisco.com, +9:u10:zafar, +9:u01:Zafar, +22:u00:kmajumda@cisco.com, +7:u01:Ali, +18:u04:zali@cisco.com, +9:u00:Zafar, +7:u00:Ali, +18:u03:zali@cisco.com, +9:u08:Arjun, +18:u02:zali@cisco.com, +18:u01:zali@cisco.com, +15:u08:Sreekantiah, +9:u07:Arjun, +18:u00:zali@cisco.com, +15:u07:Sreekantiah, +9:u06:Arjun, +15:u06:Sreekantiah, +9:u14:arjun, +9:u05:Arjun, +8:u08:Acee, +15:u05:Sreekantiah, +22:u08:asreekan@cisco.com, +9:u13:arjun, +9:u04:Arjun, +15:u04:Sreekantiah, +22:u07:asreekan@cisco.com, +10:u08:Lindem, +9:u12:arjun, +7:u22:Arj, +8:u23:Arju, +9:u03:Arjun, +8:u07:Acee, +15:u03:Sreekantiah, +22:u06:asreekan@cisco.com, +10:u07:Lindem, +9:u11:arjun, +9:u02:Arjun, +8:u06:Acee, +15:u02:Sreekantiah, +22:u05:asreekan@cisco.com, +10:u06:Lindem, +9:u10:arjun, +8:u14:acee, +9:u01:Arjun, +8:u05:Acee, +8:u08:Siva, +15:u01:Sreekantiah, +22:u04:asreekan@cisco.com, +10:u05:Lindem, +18:u08:acee@cisco.com, +8:u13:acee, +9:u00:Arjun, +8:u04:Acee, +15:u00:Sreekantiah, +22:u03:asreekan@cisco.com, +10:u04:Lindem, +18:u07:acee@cisco.com, +13:u08:Sivabalan, +8:u12:acee, +7:u22:Ace, +8:u23:Acee, +8:u03:Acee, +8:u07:Siva, +22:u02:asreekan@cisco.com, +10:u03:Lindem, +18:u06:acee@cisco.com, +13:u07:Sivabalan, +8:u11:acee, +8:u02:Acee, +8:u06:Siva, +22:u01:asreekan@cisco.com, +10:u02:Lindem, +18:u05:acee@cisco.com, +13:u06:Sivabalan, +8:u10:acee, +8:u14:siva, +8:u01:Acee, +8:u05:Siva, +11:u08:Imtiyaz, +22:u00:asreekan@cisco.com, +10:u01:Lindem, +18:u04:acee@cisco.com, +13:u05:Sivabalan, +19:u08:msiva@cisco.com, +8:u13:siva, +8:u00:Acee, +8:u04:Siva, +10:u08:Arista, +10:u00:Lindem, +18:u03:acee@cisco.com, +13:u04:Sivabalan, +19:u07:msiva@cisco.com, +12:u08:Mohammad, +8:u12:siva, +7:u22:Siv, +8:u23:Siva, +8:u03:Siva, +11:u07:Imtiyaz, +9:u08:India, +18:u02:acee@cisco.com, +13:u03:Sivabalan, +19:u06:msiva@cisco.com, +12:u07:Mohammad, +8:u11:siva, +8:u02:Siva, +11:u06:Imtiyaz, +10:u07:Arista, +18:u01:acee@cisco.com, +13:u02:Sivabalan, +19:u05:msiva@cisco.com, +12:u06:Mohammad, +8:u10:siva, +11:u14:imtiyaz, +8:u01:Siva, +11:u05:Imtiyaz, +10:u06:Arista, +9:u07:India, +10:u08:Gaurav, +18:u00:acee@cisco.com, +13:u01:Sivabalan, +19:u04:msiva@cisco.com, +12:u05:Mohammad, +22:u08:imtiyaz@arista.com, +11:u13:imtiyaz, +10:u14:arista, +8:u00:Siva, +11:u04:Imtiyaz, +10:u05:Arista, +9:u06:India, +13:u00:Sivabalan, +19:u03:msiva@cisco.com, +12:u04:Mohammad, +22:u07:imtiyaz@arista.com, +9:u08:Dawra, +11:u12:imtiyaz, +10:u13:arista, +9:u14:india, +7:u22:Imt, +8:u23:Imti, +11:u03:Imtiyaz, +10:u04:Arista, +9:u05:India, +10:u07:Gaurav, +19:u02:msiva@cisco.com, +12:u03:Mohammad, +22:u06:imtiyaz@arista.com, +9:u07:Dawra, +11:u11:imtiyaz, +10:u12:arista, +9:u13:india, +7:u22:Ari, +8:u23:Aris, +11:u02:Imtiyaz, +10:u03:Arista, +9:u04:India, +10:u06:Gaurav, +19:u01:msiva@cisco.com, +12:u02:Mohammad, +22:u05:imtiyaz@arista.com, +9:u06:Dawra, +11:u10:imtiyaz, +10:u11:arista, +9:u12:india, +10:u14:gaurav, +11:u01:Imtiyaz, +10:u02:Arista, +9:u03:India, +10:u05:Gaurav, +19:u00:msiva@cisco.com, +12:u01:Mohammad, +22:u04:imtiyaz@arista.com, +9:u05:Dawra, +25:u08:gdawra.ietf@gmail.com, +10:u10:arista, +9:u11:india, +10:u13:gaurav, +11:u00:Imtiyaz, +10:u01:Arista, +9:u02:India, +10:u04:Gaurav, +12:u00:Mohammad, +22:u03:imtiyaz@arista.com, +9:u04:Dawra, +25:u07:gdawra.ietf@gmail.com, +9:u10:india, +10:u12:gaurav, +7:u22:Gau, +8:u23:Gaur, +10:u00:Arista, +9:u01:India, +10:u03:Gaurav, +12:u08:Scudder,, +22:u02:imtiyaz@arista.com, +9:u03:Dawra, +25:u06:gdawra.ietf@gmail.com, +10:u11:gaurav, +9:u00:India, +10:u02:Gaurav, +14:u08:Talaulikar, +22:u01:imtiyaz@arista.com, +9:u02:Dawra, +25:u05:gdawra.ietf@gmail.com, +14:u08:Przemyslaw, +10:u10:gaurav, +10:u01:Gaurav, +12:u07:Scudder,, +22:u00:imtiyaz@arista.com, +9:u01:Dawra, +25:u04:gdawra.ietf@gmail.com, +14:u07:Przemyslaw, +10:u00:Gaurav, +12:u06:Scudder,, +14:u07:Talaulikar, +9:u00:Dawra, +25:u03:gdawra.ietf@gmail.com, +14:u06:Przemyslaw, +12:u14:scudder,, +12:u05:Scudder,, +14:u06:Talaulikar, +25:u02:gdawra.ietf@gmail.com, +14:u05:Przemyslaw, +12:u13:scudder,, +14:u14:talaulikar, +12:u04:Scudder,, +14:u05:Talaulikar, +25:u01:gdawra.ietf@gmail.com, +14:u04:Przemyslaw, +12:u12:scudder,, +14:u13:talaulikar, +7:u22:Scu, +8:u23:Scud, +12:u03:Scudder,, +14:u04:Talaulikar, +25:u00:gdawra.ietf@gmail.com, +14:u03:Przemyslaw, +12:u11:scudder,, +14:u12:talaulikar, +8:u23:Tala, +12:u02:Scudder,, +14:u03:Talaulikar, +19:u08:Internet-Draft,, +14:u02:Przemyslaw, +12:u10:scudder,, +14:u11:talaulikar, +12:u01:Scudder,, +14:u02:Talaulikar, +14:u01:Przemyslaw, +14:u10:talaulikar, +12:u00:Scudder,, +14:u01:Talaulikar, +19:u07:Internet-Draft,, +10:u08:assist, +14:u00:Przemyslaw, +14:u00:Talaulikar, +19:u06:Internet-Draft,, +9:u08:RFCs., +19:u14:internet-draft,, +19:u05:Internet-Draft,, +10:u07:assist, +8:u08:here, +10:u08:Please, +19:u13:internet-draft,, +9:uI2:-,[]., +19:u04:Internet-Draft,, +10:u06:assist, +9:u07:RFCs., +10:u07:Please, +19:u12:internet-draft,, +10:u14:assist, +9:uI1:-,[]., +19:u03:Internet-Draft,, +10:u05:assist, +9:u06:RFCs., +8:u07:here, +10:u06:Please, +19:u11:internet-draft,, +10:u13:assist, +9:u14:rfcs., +9:uI0:-,[]., +19:u02:Internet-Draft,, +10:u04:assist, +9:u05:RFCs., +8:u06:here, +10:u05:Please, +19:u10:internet-draft,, +10:u12:assist, +9:u13:rfcs., +19:u01:Internet-Draft,, +10:u03:assist, +9:u04:RFCs., +8:u05:here, +10:u04:Please, +10:u11:assist, +9:u12:rfcs., +19:u00:Internet-Draft,, +10:u02:assist, +9:u03:RFCs., +8:u04:here, +10:u03:Please, +10:u10:assist, +9:u11:rfcs., +7:u22:her, +8:u23:here, +10:u01:assist, +9:u02:RFCs., +8:u03:here, +10:u02:Please, +9:u10:rfcs., +10:u00:assist, +9:u01:RFCs., +8:u02:here, +10:u01:Please, +9:u00:RFCs., +8:u01:here, +12:u08:supplied, +10:u00:Please, +8:u00:here, +12:u07:supplied, +13:u08:features., +13:u08:construed, +12:u06:supplied, +13:u07:construed, +12:u14:supplied, +12:u05:supplied, +13:u07:features., +13:u06:construed, +12:u13:supplied, +12:u04:supplied, +13:u06:features., +13:u05:construed, +12:u12:supplied, +13:u14:features., +12:u03:supplied, +13:u05:features., +13:u04:construed, +12:u11:supplied, +13:u13:features., +12:u02:supplied, +13:u04:features., +13:u03:construed, +9:u08:code,, +12:u10:supplied, +13:u12:features., +12:u01:supplied, +13:u03:features., +13:u02:construed, +9:u07:code,, +12:u08:feedback, +13:u11:features., +8:uI2:[],", +12:u00:supplied, +13:u02:features., +13:u01:construed, +9:u06:code,, +12:u07:feedback, +13:u10:features., +8:uI1:[],", +13:u01:features., +13:u00:construed, +9:u05:code,, +12:u06:feedback, +8:uI0:[],", +13:u00:features., +9:u04:code,, +12:u05:feedback, +9:u08:early, +9:u03:code,, +12:u04:feedback, +9:u07:early, +15:u08:forthcoming, +9:u02:code,, +12:u03:feedback, +9:u06:early, +15:u07:forthcoming, +12:u08:testing,, +9:u01:code,, +12:u02:feedback, +9:u05:early, +15:u06:forthcoming, +12:u07:testing,, +9:u00:code,, +12:u01:feedback, +9:u04:early, +15:u05:forthcoming, +12:u06:testing,, +12:u00:feedback, +9:u03:early, +15:u04:forthcoming, +12:u05:testing,, +9:u02:early, +15:u03:forthcoming, +12:u04:testing,, +9:u01:early, +15:u02:forthcoming, +12:u03:testing,, +17:u08:IANA-assigned, +9:u00:early, +15:u01:forthcoming, +12:u02:testing,, +17:u07:IANA-assigned, +15:u00:forthcoming, +12:u01:testing,, +17:u06:IANA-assigned, +12:u00:testing,, +17:u05:IANA-assigned, +17:u04:IANA-assigned, +17:u03:IANA-assigned, +17:u02:IANA-assigned, +17:u01:IANA-assigned, +17:u00:IANA-assigned, +10:u08:Family, +13:u08:Codepoint, +15:u08:Identifiers, +14:u14:parameters, +9:uI2:..:(), +10:u07:Family, +15:u07:Identifiers, +14:u13:parameters, +9:uI1:..:(), +10:u06:Family, +13:u07:Codepoint, +15:u06:Identifiers, +14:u12:parameters, +10:u14:family, +9:uI0:..:(), +10:u05:Family, +13:u06:Codepoint, +51:u08:-----------------------------------------------, +15:u05:Identifiers, +14:u11:parameters, +10:u13:family, +8:uI2:()":, +10:u04:Family, +13:u05:Codepoint, +15:u04:Identifiers, +14:u10:parameters, +10:u12:family, +7:u22:Fam, +8:u23:Fami, +8:uI1:()":, +10:u03:Family, +13:u04:Codepoint, +51:u07:-----------------------------------------------, +15:u03:Identifiers, +10:u11:family, +7:u22:Cod, +8:u23:Code, +8:uI0:()":, +10:u02:Family, +13:u03:Codepoint, +51:u06:-----------------------------------------------, +15:u02:Identifiers, +10:u10:family, +51:u14:-----------------------------------------------, +10:u01:Family, +13:u02:Codepoint, +51:u05:-----------------------------------------------, +15:u01:Identifiers, +51:u13:-----------------------------------------------, +6:u14:73, +10:u00:Family, +13:u01:Codepoint, +51:u04:-----------------------------------------------, +15:u00:Identifiers, +51:u12:-----------------------------------------------, +6:u13:73, +13:u00:Codepoint, +51:u03:-----------------------------------------------, +51:u11:-----------------------------------------------, +6:u12:73, +6:u21:73, +6:u22:73, +6:u23:73, +51:u02:-----------------------------------------------, +51:u10:-----------------------------------------------, +6:u11:73, +51:u01:-----------------------------------------------, +6:u10:73, +51:u00:-----------------------------------------------, +54:u08:--------------------------------------------------, +6:uI2:":, +6:uI1:":, +54:u07:--------------------------------------------------, +6:uI0:":, +54:u06:--------------------------------------------------, +54:u14:--------------------------------------------------, +54:u05:--------------------------------------------------, +54:u13:--------------------------------------------------, +6:u14:15, +54:uI2:--------------------------------------------------, +6:uI2:50, +54:u04:--------------------------------------------------, +54:u12:--------------------------------------------------, +6:u13:15, +54:uI1:--------------------------------------------------, +6:uI1:50, +54:u03:--------------------------------------------------, +54:u11:--------------------------------------------------, +6:u12:15, +6:u22:15, +6:u23:15, +54:uI0:--------------------------------------------------, +6:uI0:50, +54:u02:--------------------------------------------------, +54:u10:--------------------------------------------------, +6:u11:15, +54:u01:--------------------------------------------------, +6:u10:15, +54:u00:--------------------------------------------------, +58:u08:------------------------------------------------------, +7:uI2:-":, +7:uI1:-":, +58:u07:------------------------------------------------------, +7:uI0:-":, +58:u06:------------------------------------------------------, +58:u14:------------------------------------------------------, +58:u05:------------------------------------------------------, +58:u13:------------------------------------------------------, +6:u14:12, +58:u04:------------------------------------------------------, +58:u12:------------------------------------------------------, +6:u13:12, +58:u03:------------------------------------------------------, +58:u11:------------------------------------------------------, +6:u12:12, +6:u22:12, +6:u23:12, +58:u02:------------------------------------------------------, +58:u10:------------------------------------------------------, +6:u11:12, +6:u14:13, +58:u01:------------------------------------------------------, +6:u10:12, +6:u13:13, +58:u00:------------------------------------------------------, +6:u12:13, +6:u22:13, +6:u23:13, +6:u11:13, +7:u14:128, +6:u10:13, +7:u13:128, +7:u12:128, +7:u22:128, +7:u23:128, +7:u11:128, +8:u14:tbd1, +7:u10:128, +8:u13:tbd1, +8:u12:tbd1, +8:u23:TBD1, +8:u11:tbd1, +8:u14:tbd2, +8:u10:tbd1, +8:u13:tbd2, +8:u12:tbd2, +8:u23:TBD2, +8:u11:tbd2, +8:u14:tbd3, +8:u10:tbd2, +8:u13:tbd3, +10:u08:TLVs"., +8:u12:tbd3, +8:u23:TBD3, +10:u08:Served, +8:u11:tbd3, +10:u07:TLVs"., +11:u08:(FCFS)", +8:u10:tbd3, +10:u06:TLVs"., +10:u07:Served, +11:u07:(FCFS)", +11:u08:Sub-TLV, +10:u14:tlvs"., +10:u05:TLVs"., +10:u06:Served, +11:u06:(FCFS)", +11:u07:Sub-TLV, +10:u13:tlvs"., +10:u04:TLVs"., +10:u05:Served, +11:u05:(FCFS)", +11:u06:Sub-TLV, +10:u12:tlvs"., +10:uI2:()"[]., +10:u03:TLVs"., +10:u04:Served, +11:u04:(FCFS)", +11:u05:Sub-TLV, +10:u11:tlvs"., +10:uI1:()"[]., +10:u02:TLVs"., +10:u03:Served, +11:u03:(FCFS)", +11:u04:Sub-TLV, +10:u10:tlvs"., +10:uI0:()"[]., +10:u01:TLVs"., +10:u02:Served, +11:u02:(FCFS)", +11:u03:Sub-TLV, +10:u00:TLVs"., +10:u01:Served, +11:u01:(FCFS)", +11:u02:Sub-TLV, +10:u00:Served, +11:u00:(FCFS)", +11:u01:Sub-TLV, +11:u00:Sub-TLV, +85:u08:---------------------------------------------------------------------------------, +85:u07:---------------------------------------------------------------------------------, +85:u06:---------------------------------------------------------------------------------, +85:u14:---------------------------------------------------------------------------------, +85:u05:---------------------------------------------------------------------------------, +85:u13:---------------------------------------------------------------------------------, +85:uI2:---------------------------------------------------------------------------------, +6:uI2:81, +85:u04:---------------------------------------------------------------------------------, +85:u12:---------------------------------------------------------------------------------, +85:uI1:---------------------------------------------------------------------------------, +6:uI1:81, +85:u03:---------------------------------------------------------------------------------, +85:u11:---------------------------------------------------------------------------------, +85:uI0:---------------------------------------------------------------------------------, +6:uI0:81, +85:u02:---------------------------------------------------------------------------------, +85:u10:---------------------------------------------------------------------------------, +85:u01:---------------------------------------------------------------------------------, +85:u00:---------------------------------------------------------------------------------, +9:u08:Node,, +9:u07:Node,, +9:u06:Node,, +9:u05:Node,, +16:u08:Local/Remote, +9:u04:Node,, +16:u07:Local/Remote, +9:u03:Node,, +16:u06:Local/Remote, +9:u02:Node,, +16:u05:Local/Remote, +6:uI2:/-, +9:u01:Node,, +16:u04:Local/Remote, +6:uI1:/-, +9:u00:Node,, +16:u03:Local/Remote, +6:uI0:/-, +16:u02:Local/Remote, +16:u01:Local/Remote, +16:u00:Local/Remote, +6:u14:11, +6:u13:11, +6:u12:11, +6:u22:11, +6:u23:11, +6:u11:11, +6:u10:11, +11:u08:Flags"., +11:u07:Flags"., +11:u06:Flags"., +7:u08:Bit, +11:u14:flags"., +11:u05:Flags"., +11:u13:flags"., +11:u04:Flags"., +7:u07:Bit, +11:u12:flags"., +11:u03:Flags"., +7:u06:Bit, +11:u11:flags"., +11:u02:Flags"., +7:u05:Bit, +11:u10:flags"., +11:u01:Flags"., +7:u04:Bit, +23:u08:Specified-BSID-Only, +7:u23:Bit, +11:u00:Flags"., +7:u03:Bit, +7:u02:Bit, +23:u07:Specified-BSID-Only, +7:u01:Bit, +23:u06:Specified-BSID-Only, +8:u08:Drop, +23:u14:specified-bsid-only, +7:u00:Bit, +23:u05:Specified-BSID-Only, +23:u13:specified-bsid-only, +23:u04:Specified-BSID-Only, +8:u07:Drop, +7:u08:2-7, +23:u12:specified-bsid-only, +23:u03:Specified-BSID-Only, +8:u06:Drop, +14:u08:Unassigned, +23:u11:specified-bsid-only, +8:u14:drop, +23:u02:Specified-BSID-Only, +8:u05:Drop, +7:u07:2-7, +23:u10:specified-bsid-only, +8:u13:drop, +23:u01:Specified-BSID-Only, +8:u04:Drop, +7:u06:2-7, +14:u07:Unassigned, +8:u12:drop, +7:u14:2-7, +7:u22:Dro, +8:u23:Drop, +23:u00:Specified-BSID-Only, +8:u03:Drop, +7:u05:2-7, +14:u06:Unassigned, +8:u11:drop, +7:u13:2-7, +14:u14:unassigned, +8:u02:Drop, +7:u04:2-7, +14:u05:Unassigned, +8:u10:drop, +7:u12:2-7, +14:u13:unassigned, +7:u22:2-7, +7:u23:2-7, +8:u01:Drop, +7:u03:2-7, +14:u04:Unassigned, +7:u11:2-7, +14:u12:unassigned, +7:u22:Una, +8:u23:Unas, +8:u00:Drop, +7:u02:2-7, +14:u03:Unassigned, +7:u10:2-7, +14:u11:unassigned, +7:u01:2-7, +14:u02:Unassigned, +14:u10:unassigned, +7:u00:2-7, +14:u01:Unassigned, +14:u00:Unassigned, +10:u08:Patel,, +10:u07:Patel,, +20:u08:tunnel-encaps-12, +10:u06:Patel,, +34:u08:[I-D.ietf-pce-segment-routing], +10:u14:patel,, +10:u05:Patel,, +20:u07:tunnel-encaps-12, +14:u08:Sivabalan,, +10:u13:patel,, +7:u14:bgp, +10:u04:Patel,, +20:u06:tunnel-encaps-12, +34:u07:[I-D.ietf-pce-segment-routing], +10:u12:patel,, +7:u13:bgp, +20:u14:tunnel-encaps-12, +8:u23:Pate, +10:u03:Patel,, +20:u05:tunnel-encaps-12, +34:u06:[I-D.ietf-pce-segment-routing], +14:u07:Sivabalan,, +37:u08:draft-ietf-pce-segment-routing-16, +10:u11:patel,, +7:u12:bgp, +20:u13:tunnel-encaps-12, +34:u14:[i-d.ietf-pce-segment-routing], +6:u21:BG, +7:u22:BGP, +7:u23:BGP, +10:u02:Patel,, +20:u04:tunnel-encaps-12, +34:u05:[I-D.ietf-pce-segment-routing], +14:u06:Sivabalan,, +10:u10:patel,, +7:u11:bgp, +20:u12:tunnel-encaps-12, +34:u13:[i-d.ietf-pce-segment-routing], +14:u14:sivabalan,, +10:u01:Patel,, +20:u03:tunnel-encaps-12, +34:u04:[I-D.ietf-pce-segment-routing], +14:u05:Sivabalan,, +37:u07:draft-ietf-pce-segment-routing-16, +37:u08:[I-D.ietf-spring-segment-routing], +7:u10:bgp, +20:u11:tunnel-encaps-12, +34:u12:[i-d.ietf-pce-segment-routing], +14:u13:sivabalan,, +10:u00:Patel,, +20:u02:tunnel-encaps-12, +34:u03:[I-D.ietf-pce-segment-routing], +14:u04:Sivabalan,, +37:u06:draft-ietf-pce-segment-routing-16, +20:u10:tunnel-encaps-12, +34:u11:[i-d.ietf-pce-segment-routing], +14:u12:sivabalan,, +37:u14:draft-ietf-pce-segment-routing-16, +20:u01:tunnel-encaps-12, +34:u02:[I-D.ietf-pce-segment-routing], +14:u03:Sivabalan,, +37:u05:draft-ietf-pce-segment-routing-16, +37:u07:[I-D.ietf-spring-segment-routing], +14:u08:Litkowski,, +34:u10:[i-d.ietf-pce-segment-routing], +14:u11:sivabalan,, +37:u13:draft-ietf-pce-segment-routing-16, +20:u00:tunnel-encaps-12, +34:u01:[I-D.ietf-pce-segment-routing], +14:u02:Sivabalan,, +37:u04:draft-ietf-pce-segment-routing-16, +37:u06:[I-D.ietf-spring-segment-routing], +14:u10:sivabalan,, +37:u12:draft-ietf-pce-segment-routing-16, +37:u14:[i-d.ietf-spring-segment-routing], +34:u00:[I-D.ietf-pce-segment-routing], +14:u01:Sivabalan,, +37:u03:draft-ietf-pce-segment-routing-16, +37:u05:[I-D.ietf-spring-segment-routing], +14:u07:Litkowski,, +40:u08:draft-ietf-spring-segment-routing-15, +37:u11:draft-ietf-pce-segment-routing-16, +37:u13:[i-d.ietf-spring-segment-routing], +13:u14:filsfils,, +14:u00:Sivabalan,, +37:u02:draft-ietf-pce-segment-routing-16, +37:u04:[I-D.ietf-spring-segment-routing], +14:u06:Litkowski,, +40:u07:draft-ietf-spring-segment-routing-15, +37:u10:draft-ietf-pce-segment-routing-16, +37:u12:[i-d.ietf-spring-segment-routing], +13:u13:filsfils,, +14:u14:litkowski,, +37:u01:draft-ietf-pce-segment-routing-16, +37:u03:[I-D.ietf-spring-segment-routing], +14:u05:Litkowski,, +40:u06:draft-ietf-spring-segment-routing-15, +37:u11:[i-d.ietf-spring-segment-routing], +13:u12:filsfils,, +14:u13:litkowski,, +8:u23:Fils, +10:uI2:,.,.,", +37:u00:draft-ietf-pce-segment-routing-16, +37:u02:[I-D.ietf-spring-segment-routing], +14:u04:Litkowski,, +24:u08:bogdanov@google.com,, +40:u05:draft-ietf-spring-segment-routing-15, +37:u10:[i-d.ietf-spring-segment-routing], +13:u11:filsfils,, +14:u12:litkowski,, +7:u22:Lit, +8:u23:Litk, +10:uI1:,.,.,", +37:u01:[I-D.ietf-spring-segment-routing], +14:u03:Litkowski,, +40:u04:draft-ietf-spring-segment-routing-15, +7:u08:b.,, +13:u10:filsfils,, +14:u11:litkowski,, +10:uI0:,.,.,", +37:u00:[I-D.ietf-spring-segment-routing], +14:u02:Litkowski,, +24:u07:bogdanov@google.com,, +13:u08:policy-03, +40:u03:draft-ietf-spring-segment-routing-15, +7:u07:b.,, +14:u10:litkowski,, +14:u01:Litkowski,, +24:u06:bogdanov@google.com,, +40:u02:draft-ietf-spring-segment-routing-15, +7:u06:b.,, +24:u14:bogdanov@google.com,, +15:uI2:,.,,.,..,.,, +14:u00:Litkowski,, +24:u05:bogdanov@google.com,, +13:u07:policy-03, +40:u01:draft-ietf-spring-segment-routing-15, +7:u05:b.,, +24:u13:bogdanov@google.com,, +15:uI1:,.,,.,..,.,, +11:uI2:.,.,.,", +24:u04:bogdanov@google.com,, +13:u06:policy-03, +40:u00:draft-ietf-spring-segment-routing-15, +7:u04:b.,, +24:u12:bogdanov@google.com,, +13:u14:policy-03, +7:u22:bog, +8:u23:bogd, +15:uI0:,.,,.,..,.,, +11:uI1:.,.,.,", +24:u03:bogdanov@google.com,, +13:u05:policy-03, +7:u03:b.,, +24:u11:bogdanov@google.com,, +13:u13:policy-03, +11:uI0:.,.,.,", +24:u02:bogdanov@google.com,, +13:u04:policy-03, +13:u08:[RFC3032], +7:u02:b.,, +24:u10:bogdanov@google.com,, +13:u12:policy-03, +24:u01:bogdanov@google.com,, +13:u03:policy-03, +7:u01:b.,, +10:u08:Rosen,, +13:u11:policy-03, +24:u00:bogdanov@google.com,, +13:u02:policy-03, +13:u07:[RFC3032], +14:u08:Encoding",, +7:u00:b.,, +10:u07:Rosen,, +13:u10:policy-03, +13:u01:policy-03, +13:u06:[RFC3032], +46:u08:<https://www.rfc-editor.org/info/rfc3032>., +10:u06:Rosen,, +13:u14:[rfc3032], +13:u00:policy-03, +13:u05:[RFC3032], +14:u07:Encoding",, +10:u05:Rosen,, +13:u13:[rfc3032], +14:u14:farinacci,, +18:uI2:[],.,,.,,.,,.,, +13:u04:[RFC3032], +14:u06:Encoding",, +46:u07:<https://www.rfc-editor.org/info/rfc3032>., +10:u08:Border, +10:u04:Rosen,, +12:u08:Rekhter,, +13:u12:[rfc3032], +14:u13:farinacci,, +14:u14:encoding",, +18:uI1:[],.,,.,,.,,.,, +13:u03:[RFC3032], +14:u05:Encoding",, +46:u06:<https://www.rfc-editor.org/info/rfc3032>., +10:u03:Rosen,, +12:u07:Rekhter,, +11:u08:Gateway, +13:u11:[rfc3032], +14:u12:farinacci,, +14:u13:encoding",, +46:u14:<https://www.rfc-editor.org/info/rfc3032>., +8:u23:Fari, +18:uI0:[],.,,.,,.,,.,, +13:u02:[RFC3032], +14:u04:Encoding",, +46:u05:<https://www.rfc-editor.org/info/rfc3032>., +10:u07:Border, +46:u08:<https://www.rfc-editor.org/info/rfc4271>., +10:u02:Rosen,, +12:u06:Rekhter,, +11:u07:Gateway, +21:u08:10.17487/RFC4271,, +13:u10:[rfc3032], +14:u11:farinacci,, +14:u12:encoding",, +46:u13:<https://www.rfc-editor.org/info/rfc3032>., +8:u23:Enco, +13:u01:[RFC3032], +14:u03:Encoding",, +46:u04:<https://www.rfc-editor.org/info/rfc3032>., +10:u06:Border, +10:u01:Rosen,, +12:u05:Rekhter,, +11:u06:Gateway, +21:u07:10.17487/RFC4271,, +14:u10:farinacci,, +14:u11:encoding",, +46:u12:<https://www.rfc-editor.org/info/rfc3032>., +10:u14:border, +21:uI2:[],.,.,,.,.,.,.,", +13:u00:[RFC3032], +14:u02:Encoding",, +46:u03:<https://www.rfc-editor.org/info/rfc3032>., +10:u05:Border, +46:u07:<https://www.rfc-editor.org/info/rfc4271>., +10:u00:Rosen,, +12:u04:Rekhter,, +11:u05:Gateway, +21:u06:10.17487/RFC4271,, +14:u10:encoding",, +46:u11:<https://www.rfc-editor.org/info/rfc3032>., +10:u13:border, +21:uI1:[],.,.,,.,.,.,.,", +14:u01:Encoding",, +46:u02:<https://www.rfc-editor.org/info/rfc3032>., +10:u04:Border, +46:u06:<https://www.rfc-editor.org/info/rfc4271>., +12:u03:Rekhter,, +11:u04:Gateway, +21:u05:10.17487/RFC4271,, +46:u10:<https://www.rfc-editor.org/info/rfc3032>., +10:u12:border, +46:u14:<https://www.rfc-editor.org/info/rfc4271>., +8:u23:Bord, +21:uI0:[],.,.,,.,.,.,.,", +14:u00:Encoding",, +46:u01:<https://www.rfc-editor.org/info/rfc3032>., +10:u03:Border, +46:u05:<https://www.rfc-editor.org/info/rfc4271>., +12:u02:Rekhter,, +11:u03:Gateway, +21:u04:10.17487/RFC4271,, +10:u11:border, +46:u13:<https://www.rfc-editor.org/info/rfc4271>., +46:u00:<https://www.rfc-editor.org/info/rfc3032>., +10:u02:Border, +46:u04:<https://www.rfc-editor.org/info/rfc4271>., +12:u01:Rekhter,, +11:u02:Gateway, +21:u03:10.17487/RFC4271,, +10:u10:border, +46:u12:<https://www.rfc-editor.org/info/rfc4271>., +10:u01:Border, +46:u03:<https://www.rfc-editor.org/info/rfc4271>., +12:u00:Rekhter,, +11:u01:Gateway, +21:u02:10.17487/RFC4271,, +46:u11:<https://www.rfc-editor.org/info/rfc4271>., +10:u00:Border, +46:u02:<https://www.rfc-editor.org/info/rfc4271>., +13:u08:[RFC4360], +11:u00:Gateway, +21:u01:10.17487/RFC4271,, +46:u10:<https://www.rfc-editor.org/info/rfc4271>., +46:u01:<https://www.rfc-editor.org/info/rfc4271>., +15:u08:Communities, +21:u00:10.17487/RFC4271,, +11:u08:Sangli,, +46:u00:<https://www.rfc-editor.org/info/rfc4271>., +13:u07:[RFC4360], +11:u07:Sangli,, +15:u08:Attribute",, +13:u06:[RFC4360], +15:u07:Communities, +13:u08:[RFC4760], +11:u06:Sangli,, +15:u07:Attribute",, +13:u14:[rfc4360], +13:u05:[RFC4360], +15:u06:Communities, +18:u08:"Multiprotocol, +11:u05:Sangli,, +15:u06:Attribute",, +10:u08:Bates,, +13:u13:[rfc4360], +15:u14:communities, +13:u04:[RFC4360], +15:u05:Communities, +13:u07:[RFC4760], +11:u04:Sangli,, +15:u05:Attribute",, +10:u07:Bates,, +13:u12:[rfc4360], +15:u13:communities, +12:u14:february, +13:u03:[RFC4360], +15:u04:Communities, +13:u06:[RFC4760], +18:u07:"Multiprotocol, +46:u08:<https://www.rfc-editor.org/info/rfc4760>., +11:u03:Sangli,, +15:u04:Attribute",, +10:u06:Bates,, +21:u08:10.17487/RFC4760,, +13:u11:[rfc4360], +15:u12:communities, +12:u13:february, +13:u14:[rfc4760], +8:u23:Comm, +13:u02:[RFC4360], +15:u03:Communities, +13:u05:[RFC4760], +18:u06:"Multiprotocol, +13:u08:[RFC5575], +11:u02:Sangli,, +15:u03:Attribute",, +10:u05:Bates,, +21:u07:10.17487/RFC4760,, +13:u10:[rfc4360], +15:u11:communities, +12:u12:february, +13:u13:[rfc4760], +18:u14:"multiprotocol, +7:u22:Feb, +8:u23:Febr, +13:u01:[RFC4360], +15:u02:Communities, +13:u04:[RFC4760], +18:u05:"Multiprotocol, +46:u07:<https://www.rfc-editor.org/info/rfc4760>., +11:u01:Sangli,, +15:u02:Attribute",, +10:u04:Bates,, +21:u06:10.17487/RFC4760,, +15:u10:communities, +12:u11:february, +13:u12:[rfc4760], +18:u13:"multiprotocol, +9:uI2:"-",,, +13:u00:[RFC4360], +15:u01:Communities, +13:u03:[RFC4760], +18:u04:"Multiprotocol, +46:u06:<https://www.rfc-editor.org/info/rfc4760>., +13:u07:[RFC5575], +11:u08:Rules",, +11:u00:Sangli,, +15:u01:Attribute",, +10:u03:Bates,, +21:u05:10.17487/RFC4760,, +12:u10:february, +13:u11:[rfc4760], +18:u12:"multiprotocol, +46:u14:<https://www.rfc-editor.org/info/rfc4760>., +7:u22:"Mu, +8:u23:"Mul, +9:uI1:"-",,, +15:u00:Communities, +13:u02:[RFC4760], +18:u03:"Multiprotocol, +46:u05:<https://www.rfc-editor.org/info/rfc4760>., +13:u06:[RFC5575], +46:u08:<https://www.rfc-editor.org/info/rfc5575>., +15:u00:Attribute",, +10:u02:Bates,, +21:u04:10.17487/RFC4760,, +13:u10:[rfc4760], +18:u11:"multiprotocol, +46:u13:<https://www.rfc-editor.org/info/rfc4760>., +13:u14:[rfc5575], +9:uI0:"-",,, +13:u01:[RFC4760], +18:u02:"Multiprotocol, +46:u04:<https://www.rfc-editor.org/info/rfc4760>., +13:u05:[RFC5575], +11:u07:Rules",, +10:u01:Bates,, +21:u03:10.17487/RFC4760,, +18:u10:"multiprotocol, +46:u12:<https://www.rfc-editor.org/info/rfc4760>., +13:u13:[rfc5575], +13:u00:[RFC4760], +18:u01:"Multiprotocol, +46:u03:<https://www.rfc-editor.org/info/rfc4760>., +13:u04:[RFC5575], +11:u06:Rules",, +46:u07:<https://www.rfc-editor.org/info/rfc5575>., +10:u00:Bates,, +21:u02:10.17487/RFC4760,, +9:u08:Chen,, +46:u11:<https://www.rfc-editor.org/info/rfc4760>., +13:u12:[rfc5575], +11:u14:rules",, +18:u00:"Multiprotocol, +46:u02:<https://www.rfc-editor.org/info/rfc4760>., +13:u03:[RFC5575], +11:u05:Rules",, +46:u06:<https://www.rfc-editor.org/info/rfc5575>., +21:u01:10.17487/RFC4760,, +9:u07:Chen,, +12:u08:"Revised, +46:u10:<https://www.rfc-editor.org/info/rfc4760>., +13:u11:[rfc5575], +11:u13:rules",, +46:u14:<https://www.rfc-editor.org/info/rfc5575>., +46:u01:<https://www.rfc-editor.org/info/rfc4760>., +13:u02:[RFC5575], +11:u04:Rules",, +46:u05:<https://www.rfc-editor.org/info/rfc5575>., +46:u08:<https://www.rfc-editor.org/info/rfc7606>., +21:u00:10.17487/RFC4760,, +9:u06:Chen,, +12:u07:"Revised, +9:u08:7606,, +13:u10:[rfc5575], +11:u12:rules",, +46:u13:<https://www.rfc-editor.org/info/rfc5575>., +13:u14:[rfc7606], +6:u21:Ru, +7:u22:Rul, +8:u23:Rule, +46:u00:<https://www.rfc-editor.org/info/rfc4760>., +13:u01:[RFC5575], +11:u03:Rules",, +46:u04:<https://www.rfc-editor.org/info/rfc5575>., +9:u05:Chen,, +12:u06:"Revised, +9:u07:7606,, +11:u11:rules",, +46:u12:<https://www.rfc-editor.org/info/rfc5575>., +13:u13:[rfc7606], +20:uI2:[],.,.,,.,.,,.,., +13:u00:[RFC5575], +11:u02:Rules",, +46:u03:<https://www.rfc-editor.org/info/rfc5575>., +46:u07:<https://www.rfc-editor.org/info/rfc7606>., +9:u04:Chen,, +12:u05:"Revised, +9:u06:7606,, +11:u10:rules",, +46:u11:<https://www.rfc-editor.org/info/rfc5575>., +13:u12:[rfc7606], +20:uI1:[],.,.,,.,.,,.,., +11:u01:Rules",, +46:u02:<https://www.rfc-editor.org/info/rfc5575>., +46:u06:<https://www.rfc-editor.org/info/rfc7606>., +9:u03:Chen,, +12:u04:"Revised, +9:u05:7606,, +46:u10:<https://www.rfc-editor.org/info/rfc5575>., +13:u11:[rfc7606], +46:u14:<https://www.rfc-editor.org/info/rfc7606>., +20:uI0:[],.,.,,.,.,,.,., +11:u00:Rules",, +46:u01:<https://www.rfc-editor.org/info/rfc5575>., +46:u05:<https://www.rfc-editor.org/info/rfc7606>., +9:u02:Chen,, +12:u03:"Revised, +9:u04:7606,, +13:u10:[rfc7606], +46:u13:<https://www.rfc-editor.org/info/rfc7606>., +46:u00:<https://www.rfc-editor.org/info/rfc5575>., +46:u04:<https://www.rfc-editor.org/info/rfc7606>., +9:u01:Chen,, +12:u02:"Revised, +9:u03:7606,, +46:u12:<https://www.rfc-editor.org/info/rfc7606>., +46:u03:<https://www.rfc-editor.org/info/rfc7606>., +9:u00:Chen,, +12:u01:"Revised, +9:u02:7606,, +46:u11:<https://www.rfc-editor.org/info/rfc7606>., +46:u02:<https://www.rfc-editor.org/info/rfc7606>., +12:u00:"Revised, +9:u01:7606,, +46:u10:<https://www.rfc-editor.org/info/rfc7606>., +46:u01:<https://www.rfc-editor.org/info/rfc7606>., +9:u00:7606,, +46:u00:<https://www.rfc-editor.org/info/rfc7606>., +20:u08:Considerations",, +11:u08:Mattes,, +21:u08:considerations-03, +11:u07:Mattes,, +36:u08:draft-filsfils-spring-sr-policy-, +20:u07:Considerations",, +42:u08:[I-D.ietf-6man-segment-routing-header], +11:u06:Mattes,, +36:u07:draft-filsfils-spring-sr-policy-, +20:u06:Considerations",, +21:u07:considerations-03, +11:u05:Mattes,, +36:u06:draft-filsfils-spring-sr-policy-, +20:u14:considerations",, +20:u05:Considerations",, +21:u06:considerations-03, +42:u07:[I-D.ietf-6man-segment-routing-header], +15:u08:Matsushima,, +11:u04:Mattes,, +36:u05:draft-filsfils-spring-sr-policy-, +20:u13:considerations",, +21:u14:considerations-03, +20:u04:Considerations",, +21:u05:considerations-03, +42:u06:[I-D.ietf-6man-segment-routing-header], +11:u03:Mattes,, +36:u04:draft-filsfils-spring-sr-policy-, +20:u12:considerations",, +21:u13:considerations-03, +42:u14:[i-d.ietf-6man-segment-routing-header], +20:u03:Considerations",, +21:u04:considerations-03, +42:u05:[I-D.ietf-6man-segment-routing-header], +15:u07:Matsushima,, +13:u08:header-21, +11:u02:Mattes,, +36:u03:draft-filsfils-spring-sr-policy-, +20:u11:considerations",, +21:u12:considerations-03, +42:u13:[i-d.ietf-6man-segment-routing-header], +20:u02:Considerations",, +21:u03:considerations-03, +42:u04:[I-D.ietf-6man-segment-routing-header], +15:u06:Matsushima,, +39:u08:[I-D.ietf-idr-flowspec-redirect-ip], +11:u01:Mattes,, +36:u02:draft-filsfils-spring-sr-policy-, +20:u10:considerations",, +21:u11:considerations-03, +42:u12:[i-d.ietf-6man-segment-routing-header], +15:u14:matsushima,, +20:u01:Considerations",, +21:u02:considerations-03, +42:u03:[I-D.ietf-6man-segment-routing-header], +15:u05:Matsushima,, +13:u07:header-21, +11:u08:Uttaro,, +11:u00:Mattes,, +36:u01:draft-filsfils-spring-sr-policy-, +21:u10:considerations-03, +42:u11:[i-d.ietf-6man-segment-routing-header], +15:u13:matsushima,, +12:uI2:,.,...,", +20:u00:Considerations",, +21:u01:considerations-03, +42:u02:[I-D.ietf-6man-segment-routing-header], +15:u04:Matsushima,, +13:u06:header-21, +39:u07:[I-D.ietf-idr-flowspec-redirect-ip], +12:u08:Simpson,, +36:u00:draft-filsfils-spring-sr-policy-, +42:u10:[i-d.ietf-6man-segment-routing-header], +15:u12:matsushima,, +13:u14:header-21, +7:u22:Mat, +8:u23:Mats, +12:uI1:,.,...,", +21:u00:considerations-03, +42:u01:[I-D.ietf-6man-segment-routing-header], +15:u03:Matsushima,, +13:u05:header-21, +39:u06:[I-D.ietf-idr-flowspec-redirect-ip], +11:u07:Uttaro,, +15:u11:matsushima,, +13:u13:header-21, +39:u14:[i-d.ietf-idr-flowspec-redirect-ip], +12:uI0:,.,...,", +42:u00:[I-D.ietf-6man-segment-routing-header], +15:u02:Matsushima,, +13:u04:header-21, +39:u05:[I-D.ietf-idr-flowspec-redirect-ip], +11:u06:Uttaro,, +12:u07:Simpson,, +12:u08:Action",, +15:u10:matsushima,, +13:u12:header-21, +39:u13:[i-d.ietf-idr-flowspec-redirect-ip], +11:u14:uttaro,, +15:u01:Matsushima,, +13:u03:header-21, +39:u04:[I-D.ietf-idr-flowspec-redirect-ip], +11:u05:Uttaro,, +12:u06:Simpson,, +13:u08:[RFC4456], +12:u07:Action",, +13:u11:header-21, +39:u12:[i-d.ietf-idr-flowspec-redirect-ip], +11:u13:uttaro,, +12:u14:simpson,, +15:u00:Matsushima,, +13:u02:header-21, +39:u03:[I-D.ietf-idr-flowspec-redirect-ip], +11:u04:Uttaro,, +12:u05:Simpson,, +15:u08:Reflection:, +12:u06:Action",, +13:u10:header-21, +39:u11:[i-d.ietf-idr-flowspec-redirect-ip], +11:u12:uttaro,, +12:u13:simpson,, +6:u21:Ut, +7:u22:Utt, +8:u23:Utta, +13:u01:header-21, +39:u02:[I-D.ietf-idr-flowspec-redirect-ip], +11:u03:Uttaro,, +12:u04:Simpson,, +13:u07:[RFC4456], +12:u08:(IBGP)",, +12:u05:Action",, +39:u10:[i-d.ietf-idr-flowspec-redirect-ip], +11:u11:uttaro,, +12:u12:simpson,, +13:uI2:",------(, +13:u00:header-21, +39:u01:[I-D.ietf-idr-flowspec-redirect-ip], +11:u02:Uttaro,, +12:u03:Simpson,, +13:u06:[RFC4456], +15:u07:Reflection:, +46:u08:<https://www.rfc-editor.org/info/rfc4456>., +12:u04:Action",, +11:u10:uttaro,, +12:u11:simpson,, +13:u14:[rfc4456], +13:uI1:",------(, +39:u00:[I-D.ietf-idr-flowspec-redirect-ip], +11:u01:Uttaro,, +12:u02:Simpson,, +13:u05:[RFC4456], +15:u06:Reflection:, +12:u07:(IBGP)",, +12:u03:Action",, +12:u10:simpson,, +13:u13:[rfc4456], +15:u14:reflection:, +13:uI0:",------(, +11:u00:Uttaro,, +12:u01:Simpson,, +13:u04:[RFC4456], +15:u05:Reflection:, +12:u06:(IBGP)",, +46:u07:<https://www.rfc-editor.org/info/rfc4456>., +12:u02:Action",, +13:u12:[rfc4456], +15:u13:reflection:, +12:u14:(ibgp)",, +12:u00:Simpson,, +13:u03:[RFC4456], +15:u04:Reflection:, +12:u05:(IBGP)",, +46:u06:<https://www.rfc-editor.org/info/rfc4456>., +12:u01:Action",, +13:u11:[rfc4456], +15:u12:reflection:, +12:u13:(ibgp)",, +46:u14:<https://www.rfc-editor.org/info/rfc4456>., +8:u23:Refl, +13:u02:[RFC4456], +15:u03:Reflection:, +12:u04:(IBGP)",, +46:u05:<https://www.rfc-editor.org/info/rfc4456>., +12:u00:Action",, +13:u10:[rfc4456], +15:u11:reflection:, +12:u12:(ibgp)",, +46:u13:<https://www.rfc-editor.org/info/rfc4456>., +7:u22:(IB, +8:u23:(IBG, +13:u01:[RFC4456], +15:u02:Reflection:, +12:u03:(IBGP)",, +46:u04:<https://www.rfc-editor.org/info/rfc4456>., +15:u10:reflection:, +12:u11:(ibgp)",, +46:u12:<https://www.rfc-editor.org/info/rfc4456>., +13:u00:[RFC4456], +15:u01:Reflection:, +12:u02:(IBGP)",, +46:u03:<https://www.rfc-editor.org/info/rfc4456>., +12:u10:(ibgp)",, +46:u11:<https://www.rfc-editor.org/info/rfc4456>., +15:u00:Reflection:, +12:u01:(IBGP)",, +46:u02:<https://www.rfc-editor.org/info/rfc4456>., +13:u08:[RFC7942], +46:u10:<https://www.rfc-editor.org/info/rfc4456>., +12:u00:(IBGP)",, +46:u01:<https://www.rfc-editor.org/info/rfc4456>., +9:u08:Code:, +12:u08:Sheffer,, +46:u00:<https://www.rfc-editor.org/info/rfc4456>., +13:u07:[RFC7942], +12:u07:Sheffer,, +13:u06:[RFC7942], +9:u07:Code:, +46:u08:<https://www.rfc-editor.org/info/rfc7942>., +12:u06:Sheffer,, +9:u08:7942,, +13:u14:[rfc7942], +13:u05:[RFC7942], +9:u06:Code:, +12:u05:Sheffer,, +9:u07:7942,, +13:u13:[rfc7942], +9:u14:code:, +13:u04:[RFC7942], +9:u05:Code:, +46:u07:<https://www.rfc-editor.org/info/rfc7942>., +11:u08:Stefano, +12:u04:Sheffer,, +9:u06:7942,, +13:u12:[rfc7942], +9:u13:code:, +8:uI2::",,, +13:u03:[RFC7942], +9:u04:Code:, +46:u06:<https://www.rfc-editor.org/info/rfc7942>., +12:u03:Sheffer,, +9:u05:7942,, +11:u08:Previdi, +13:u11:[rfc7942], +9:u12:code:, +46:u14:<https://www.rfc-editor.org/info/rfc7942>., +8:uI1::",,, +13:u02:[RFC7942], +9:u03:Code:, +46:u05:<https://www.rfc-editor.org/info/rfc7942>., +11:u07:Stefano, +6:u08:IT, +12:u02:Sheffer,, +9:u04:7942,, +11:u07:Previdi, +13:u10:[rfc7942], +9:u11:code:, +46:u13:<https://www.rfc-editor.org/info/rfc7942>., +8:uI0::",,, +13:u01:[RFC7942], +9:u02:Code:, +46:u04:<https://www.rfc-editor.org/info/rfc7942>., +11:u06:Stefano, +12:u01:Sheffer,, +9:u03:7942,, +9:u10:code:, +46:u12:<https://www.rfc-editor.org/info/rfc7942>., +11:u14:stefano, +13:u00:[RFC7942], +9:u01:Code:, +46:u03:<https://www.rfc-editor.org/info/rfc7942>., +11:u05:Stefano, +6:u07:IT, +12:u08:Clarence, +12:u00:Sheffer,, +9:u02:7942,, +23:u08:stefano@previdi.net, +46:u11:<https://www.rfc-editor.org/info/rfc7942>., +11:u13:stefano, +9:u00:Code:, +46:u02:<https://www.rfc-editor.org/info/rfc7942>., +11:u04:Stefano, +6:u06:IT, +9:u01:7942,, +23:u07:stefano@previdi.net, +46:u10:<https://www.rfc-editor.org/info/rfc7942>., +11:u12:stefano, +7:u22:Ste, +8:u23:Stef, +46:u01:<https://www.rfc-editor.org/info/rfc7942>., +11:u03:Stefano, +6:u05:IT, +12:u07:Clarence, +12:u08:Brussels, +9:u00:7942,, +23:u06:stefano@previdi.net, +11:u11:stefano, +46:u00:<https://www.rfc-editor.org/info/rfc7942>., +11:u02:Stefano, +6:u04:IT, +12:u06:Clarence, +6:u08:BE, +23:u05:stefano@previdi.net, +11:u10:stefano, +12:u14:clarence, +6:u21:IT, +6:u22:IT, +6:u23:IT, +11:u01:Stefano, +6:u03:IT, +12:u05:Clarence, +12:u07:Brussels, +23:u04:stefano@previdi.net, +12:u13:clarence, +11:u00:Stefano, +6:u02:IT, +12:u04:Clarence, +12:u06:Brussels, +6:u07:BE, +8:u08:Paul, +23:u03:stefano@previdi.net, +22:u08:cfilsfil@cisco.com, +12:u12:clarence, +12:u14:brussels, +6:u01:IT, +12:u03:Clarence, +12:u05:Brussels, +6:u06:BE, +23:u02:stefano@previdi.net, +22:u07:cfilsfil@cisco.com, +12:u11:clarence, +12:u13:brussels, +6:u00:IT, +12:u02:Clarence, +12:u04:Brussels, +6:u05:BE, +8:u07:Paul, +23:u01:stefano@previdi.net, +22:u06:cfilsfil@cisco.com, +12:u10:clarence, +12:u12:brussels, +7:u22:Bru, +8:u23:Brus, +12:u01:Clarence, +12:u03:Brussels, +6:u04:BE, +8:u06:Paul, +12:u08:Redmond,, +23:u00:stefano@previdi.net, +22:u05:cfilsfil@cisco.com, +12:u11:brussels, +8:u14:paul, +6:u21:BE, +6:u22:BE, +6:u23:BE, +12:u00:Clarence, +12:u02:Brussels, +6:u03:BE, +8:u05:Paul, +22:u04:cfilsfil@cisco.com, +6:u08:WA, +12:u10:brussels, +8:u13:paul, +12:u01:Brussels, +6:u02:BE, +8:u04:Paul, +12:u07:Redmond,, +22:u03:cfilsfil@cisco.com, +6:u07:WA, +8:u12:paul, +7:u22:Pau, +8:u23:Paul, +12:u00:Brussels, +6:u01:BE, +8:u03:Paul, +12:u06:Redmond,, +22:u02:cfilsfil@cisco.com, +6:u06:WA, +26:u08:pamattes@microsoft.com, +8:u11:paul, +12:u14:redmond,, +6:u00:BE, +8:u02:Paul, +12:u05:Redmond,, +22:u01:cfilsfil@cisco.com, +6:u05:WA, +26:u07:pamattes@microsoft.com, +8:u10:paul, +12:u13:redmond,, +8:u01:Paul, +12:u04:Redmond,, +22:u00:cfilsfil@cisco.com, +6:u04:WA, +26:u06:pamattes@microsoft.com, +12:u12:redmond,, +8:u23:Redm, +8:u00:Paul, +12:u03:Redmond,, +13:u08:Westford,, +6:u03:WA, +26:u05:pamattes@microsoft.com, +12:u11:redmond,, +8:u14:eric, +12:u02:Redmond,, +6:u02:WA, +26:u04:pamattes@microsoft.com, +12:u10:redmond,, +8:u13:eric, +12:u01:Redmond,, +13:u07:Westford,, +6:u01:WA, +26:u03:pamattes@microsoft.com, +8:u12:eric, +12:u00:Redmond,, +13:u06:Westford,, +13:u08:Dhanendra, +6:u00:WA, +26:u02:pamattes@microsoft.com, +22:u08:erosen@juniper.net, +8:u11:eric, +13:u14:westford,, +13:u05:Westford,, +26:u01:pamattes@microsoft.com, +22:u07:erosen@juniper.net, +8:u10:eric, +13:u13:westford,, +13:u04:Westford,, +13:u07:Dhanendra, +26:u00:pamattes@microsoft.com, +22:u06:erosen@juniper.net, +13:u12:westford,, +7:u22:Wes, +8:u23:West, +13:u03:Westford,, +13:u06:Dhanendra, +22:u05:erosen@juniper.net, +28:u08:dhanendra.ietf@gmail.com, +13:u11:westford,, +13:u14:dhanendra, +13:u02:Westford,, +13:u05:Dhanendra, +22:u04:erosen@juniper.net, +28:u07:dhanendra.ietf@gmail.com, +13:u10:westford,, +13:u13:dhanendra, +13:u01:Westford,, +13:u04:Dhanendra, +22:u03:erosen@juniper.net, +28:u06:dhanendra.ietf@gmail.com, +13:u12:dhanendra, +6:u21:Dh, +7:u22:Dha, +8:u23:Dhan, +13:u00:Westford,, +13:u03:Dhanendra, +22:u02:erosen@juniper.net, +28:u05:dhanendra.ietf@gmail.com, +13:u11:dhanendra, +13:u02:Dhanendra, +22:u01:erosen@juniper.net, +28:u04:dhanendra.ietf@gmail.com, +13:u10:dhanendra, +13:u01:Dhanendra, +22:u00:erosen@juniper.net, +28:u03:dhanendra.ietf@gmail.com, +13:u00:Dhanendra, +10:u08:Steven, +28:u02:dhanendra.ietf@gmail.com, +28:u01:dhanendra.ietf@gmail.com, +10:u07:Steven, +28:u00:dhanendra.ietf@gmail.com, +10:u06:Steven, +24:u08:stevenlin@google.com, +10:u14:steven, +10:u05:Steven, +24:u07:stevenlin@google.com, +10:u13:steven, +10:u04:Steven, +24:u06:stevenlin@google.com, +10:u12:steven, +8:u23:Stev, +10:u03:Steven, +24:u05:stevenlin@google.com, +10:u11:steven, +10:u02:Steven, +24:u04:stevenlin@google.com, +10:u10:steven, +10:u01:Steven, +24:u03:stevenlin@google.com, +10:u00:Steven, +24:u02:stevenlin@google.com, +24:u01:stevenlin@google.com, +9:u05:CCAMP, +6:u06:I., +8:u06:Busi, +9:u07:Draft, +9:u13:ccamp, +6:u14:i., +9:u04:CCAMP, +6:u05:I., +8:u05:Busi, +9:u06:Draft, +9:u12:ccamp, +6:u13:i., +8:u23:CCAM, +9:u03:CCAMP, +6:u04:I., +7:u08:Old, +8:u04:Busi, +9:u05:Draft, +8:u08:King, +9:u11:ccamp, +6:u12:i., +6:u21:I., +6:u22:I., +6:u23:I., +9:u02:CCAMP, +6:u03:I., +6:u08:H., +8:u03:Busi, +9:u04:Draft, +8:u07:King, +7:u08:Dog, +9:u10:ccamp, +6:u11:i., +9:u01:CCAMP, +6:u02:I., +7:u07:Old, +8:u02:Busi, +9:u03:Draft, +8:u06:King, +7:u07:Dog, +9:u08:Zheng, +6:u10:i., +9:u00:CCAMP, +6:u01:I., +7:u06:Old, +6:u07:H., +6:u08:Y., +8:u01:Busi, +9:u02:Draft, +8:u05:King, +7:u06:Dog, +9:u07:Zheng, +6:u00:I., +7:u05:Old, +6:u06:H., +9:u08:CAICT, +8:u00:Busi, +9:u01:Draft, +8:u04:King, +7:u05:Dog, +9:u06:Zheng, +6:u08:Xu, +6:u14:h., +7:u04:Old, +6:u05:H., +6:u07:Y., +9:u00:Draft, +8:u03:King, +7:u04:Dog, +9:u05:Zheng, +6:u07:Xu, +6:u13:h., +7:u22:Old, +7:u23:Old, +7:u03:Old, +6:u04:H., +6:u06:Y., +9:u07:CAICT, +8:u02:King, +7:u03:Dog, +9:u04:Zheng, +6:u06:Xu, +6:u12:h., +6:u14:y., +6:u21:H., +6:u22:H., +6:u23:H., +7:u02:Old, +6:u03:H., +6:u05:Y., +9:u06:CAICT, +8:u01:King, +7:u02:Dog, +9:u03:Zheng, +6:u05:Xu, +6:u11:h., +6:u13:y., +9:u14:caict, +7:u01:Old, +6:u02:H., +6:u04:Y., +9:u05:CAICT, +51:u08:draft-ietf-ccamp-transport-nbi-app-statement-06, +8:u00:King, +7:u01:Dog, +9:u02:Zheng, +6:u04:Xu, +14:u08:Northbound, +6:u10:h., +6:u12:y., +9:u13:caict, +6:u21:Y., +6:u22:Y., +6:u23:Y., +7:u00:Old, +6:u01:H., +6:u03:Y., +9:u04:CAICT, +7:u00:Dog, +9:u01:Zheng, +6:u03:Xu, +14:u07:Northbound, +6:u11:y., +9:u12:caict, +6:u21:CA, +7:u22:CAI, +8:u23:CAIC, +6:u00:H., +6:u02:Y., +9:u03:CAICT, +51:u07:draft-ietf-ccamp-transport-nbi-app-statement-06, +9:u00:Zheng, +6:u02:Xu, +14:u06:Northbound, +6:u10:y., +9:u11:caict, +6:u01:Y., +9:u02:CAICT, +51:u06:draft-ietf-ccamp-transport-nbi-app-statement-06, +6:u01:Xu, +14:u05:Northbound, +9:u10:caict, +51:u14:draft-ietf-ccamp-transport-nbi-app-statement-06, +6:u00:Y., +9:u01:CAICT, +51:u05:draft-ietf-ccamp-transport-nbi-app-statement-06, +6:u00:Xu, +14:u04:Northbound, +51:u13:draft-ietf-ccamp-transport-nbi-app-statement-06, +9:u00:CAICT, +51:u04:draft-ietf-ccamp-transport-nbi-app-statement-06, +14:u03:Northbound, +51:u12:draft-ietf-ccamp-transport-nbi-app-statement-06, +51:u03:draft-ietf-ccamp-transport-nbi-app-statement-06, +14:u02:Northbound, +51:u11:draft-ietf-ccamp-transport-nbi-app-statement-06, +51:u02:draft-ietf-ccamp-transport-nbi-app-statement-06, +11:u08:Drafts., +14:u01:Northbound, +51:u10:draft-ietf-ccamp-transport-nbi-app-statement-06, +51:u01:draft-ietf-ccamp-transport-nbi-app-statement-06, +14:u00:Northbound, +51:u00:draft-ietf-ccamp-transport-nbi-app-statement-06, +11:u07:Drafts., +10:u08:months, +9:uI2:(),,., +11:u06:Drafts., +11:u14:drafts., +9:uI1:(),,., +11:u05:Drafts., +10:u07:months, +11:u13:drafts., +9:uI0:(),,., +11:u04:Drafts., +10:u06:months, +11:u12:drafts., +10:u14:months, +11:u03:Drafts., +10:u05:months, +46:u08:http://www.ietf.org/ietf/1id-abstracts.txt, +11:u11:drafts., +10:u13:months, +11:u02:Drafts., +10:u04:months, +11:u10:drafts., +10:u12:months, +7:u22:mon, +8:u23:mont, +11:u01:Drafts., +10:u03:months, +46:u07:http://www.ietf.org/ietf/1id-abstracts.txt, +35:u08:http://www.ietf.org/shadow.html, +10:u11:months, +11:u00:Drafts., +10:u02:months, +46:u06:http://www.ietf.org/ietf/1id-abstracts.txt, +10:u10:months, +46:u14:http://www.ietf.org/ietf/1id-abstracts.txt, +10:u01:months, +46:u05:http://www.ietf.org/ietf/1id-abstracts.txt, +35:u07:http://www.ietf.org/shadow.html, +9:u08:Busi,, +46:u13:http://www.ietf.org/ietf/1id-abstracts.txt, +13:uI2:://..//-., +10:u00:months, +46:u04:http://www.ietf.org/ietf/1id-abstracts.txt, +35:u06:http://www.ietf.org/shadow.html, +9:u08:King,, +46:u12:http://www.ietf.org/ietf/1id-abstracts.txt, +35:u14:http://www.ietf.org/shadow.html, +13:uI1:://..//-., +46:u03:http://www.ietf.org/ietf/1id-abstracts.txt, +35:u05:http://www.ietf.org/shadow.html, +9:u07:Busi,, +9:u07:King,, +10:u08:March,, +46:u11:http://www.ietf.org/ietf/1id-abstracts.txt, +35:u13:http://www.ietf.org/shadow.html, +13:uI0:://..//-., +46:u02:http://www.ietf.org/ietf/1id-abstracts.txt, +35:u04:http://www.ietf.org/shadow.html, +9:u06:Busi,, +9:u06:King,, +10:u07:March,, +46:u10:http://www.ietf.org/ietf/1id-abstracts.txt, +35:u12:http://www.ietf.org/shadow.html, +9:u14:busi,, +46:u01:http://www.ietf.org/ietf/1id-abstracts.txt, +35:u03:http://www.ietf.org/shadow.html, +9:u05:Busi,, +9:u05:King,, +10:u06:March,, +35:u11:http://www.ietf.org/shadow.html, +9:u13:busi,, +46:u00:http://www.ietf.org/ietf/1id-abstracts.txt, +35:u02:http://www.ietf.org/shadow.html, +9:u04:Busi,, +9:u04:King,, +10:u05:March,, +35:u10:http://www.ietf.org/shadow.html, +9:u12:busi,, +7:u22:Bus, +8:u23:Busi, +35:u01:http://www.ietf.org/shadow.html, +9:u03:Busi,, +9:u03:King,, +10:u04:March,, +9:u11:busi,, +35:u00:http://www.ietf.org/shadow.html, +9:u02:Busi,, +9:u02:King,, +10:u03:March,, +9:u10:busi,, +9:u01:Busi,, +9:u01:King,, +10:u02:March,, +9:u00:Busi,, +9:u00:King,, +10:u01:March,, +10:u00:March,, +12:u08:warranty, +7:u08:4.e, +7:u07:4.e, +12:u07:warranty, +7:u06:4.e, +12:u06:warranty, +7:u05:4.e, +12:u14:warranty, +12:u05:warranty, +12:u08:deployed, +7:u04:4.e, +14:u08:Wavelength, +12:u13:warranty, +12:u04:warranty, +7:u03:4.e, +14:u07:Wavelength, +12:u12:warranty, +7:u22:war, +8:u23:warr, +12:u03:warranty, +12:u07:deployed, +7:u02:4.e, +14:u06:Wavelength, +12:u11:warranty, +12:u02:warranty, +12:u06:deployed, +16:u08:increasingly, +7:u01:4.e, +14:u05:Wavelength, +12:u10:warranty, +12:u14:deployed, +12:u01:warranty, +12:u05:deployed, +7:u00:4.e, +14:u04:Wavelength, +12:u08:Software, +12:u13:deployed, +9:u14:often, +12:u00:warranty, +12:u04:deployed, +16:u07:increasingly, +14:u03:Wavelength, +12:u07:Software, +16:u08:well-defined, +12:u12:deployed, +9:u13:often, +12:u03:deployed, +16:u06:increasingly, +14:u02:Wavelength, +12:u06:Software, +16:u07:well-defined, +12:u11:deployed, +9:u12:often, +16:u14:increasingly, +7:u22:oft, +8:u23:ofte, +12:u02:deployed, +16:u05:increasingly, +13:u08:networks., +14:u01:Wavelength, +12:u05:Software, +16:u06:well-defined, +12:u10:deployed, +9:u11:often, +16:u13:increasingly, +12:u01:deployed, +16:u04:increasingly, +14:u00:Wavelength, +12:u04:Software, +16:u05:well-defined, +9:u10:often, +16:u12:increasingly, +12:u00:deployed, +16:u03:increasingly, +13:u07:networks., +12:u03:Software, +16:u04:well-defined, +16:u11:increasingly, +16:u02:increasingly, +13:u06:networks., +12:u02:Software, +16:u03:well-defined, +16:u10:increasingly, +13:u14:networks., +16:u01:increasingly, +13:u05:networks., +10:u08:(TEAS), +12:u01:Software, +16:u02:well-defined, +13:u13:networks., +16:u00:increasingly, +13:u04:networks., +15:u08:particular), +12:u00:Software, +16:u01:well-defined, +13:u12:networks., +15:uI2:(..),(..,)., +13:u03:networks., +10:u07:(TEAS), +16:u00:well-defined, +13:u11:networks., +15:uI1:(..),(..,)., +13:u02:networks., +10:u06:(TEAS), +15:u07:particular), +13:u10:networks., +10:u14:(teas), +15:uI0:(..),(..,)., +13:u01:networks., +10:u05:(TEAS), +15:u06:particular), +68:u08:Introduction...................................................4, +10:u13:(teas), +15:u14:particular), +13:u00:networks., +10:u04:(TEAS), +15:u05:particular), +68:u07:Introduction...................................................4, +10:u12:(teas), +15:u13:particular), +8:u23:(TEA, +7:uI2:)-., +10:u03:(TEAS), +15:u04:particular), +68:u06:Introduction...................................................4, +63:u08:Assumptions...............................................5, +10:u11:(teas), +15:u12:particular), +7:uI1:)-., +10:u02:(TEAS), +15:u03:particular), +68:u05:Introduction...................................................4, +63:u07:Assumptions...............................................5, +68:u08:Terminology....................................................6, +10:u10:(teas), +15:u11:particular), +7:uI0:)-., +56:uI2:...................................................., +10:u01:(TEAS), +15:u02:particular), +68:u04:Introduction...................................................4, +63:u06:Assumptions...............................................5, +68:u07:Terminology....................................................6, +15:u10:particular), +56:uI1:...................................................., +38:uI2:.................................., +10:u00:(TEAS), +15:u01:particular), +68:u03:Introduction...................................................4, +63:u05:Assumptions...............................................5, +68:u06:Terminology....................................................6, +12:u08:Topology, +56:uI0:...................................................., +38:uI1:.................................., +53:uI2:................................................., +6:uI2:49, +15:u00:particular), +68:u02:Introduction...................................................4, +63:u04:Assumptions...............................................5, +68:u05:Terminology....................................................6, +12:u07:Topology, +8:u08:JSON, +38:uI0:.................................., +53:uI1:................................................., +57:uI2:....................................................., +6:uI1:49, +68:u01:Introduction...................................................4, +63:u03:Assumptions...............................................5, +68:u04:Terminology....................................................6, +12:u06:Topology, +8:u07:JSON, +53:uI0:................................................., +57:uI1:....................................................., +35:uI2:..............................., +6:uI0:49, +68:u00:Introduction...................................................4, +63:u02:Assumptions...............................................5, +68:u03:Terminology....................................................6, +12:u05:Topology, +8:u06:JSON, +57:uI0:....................................................., +35:uI1:..............................., +63:u01:Assumptions...............................................5, +68:u02:Terminology....................................................6, +12:u04:Topology, +8:u05:JSON, +35:uI0:..............................., +55:uI2:..................................................., +63:u00:Assumptions...............................................5, +68:u01:Terminology....................................................6, +12:u03:Topology, +8:u04:JSON, +55:uI1:..................................................., +68:u00:Terminology....................................................6, +12:u02:Topology, +8:u03:JSON, +55:uI0:..................................................., +12:u01:Topology, +8:u02:JSON, +13:u08:Scenarios, +12:u00:Topology, +8:u01:JSON, +13:u07:Scenarios, +8:u00:JSON, +13:u06:Scenarios, +13:u05:Scenarios, +47:uI2:..........................................., +6:uI2:43, +13:u04:Scenarios, +7:u08:ODU, +47:uI1:..........................................., +6:uI1:43, +13:u03:Scenarios, +7:u07:ODU, +7:u08:EPL, +47:uI0:..........................................., +42:uI2:......................................, +6:uI0:43, +6:uI2:38, +13:u02:Scenarios, +7:u06:ODU, +7:u07:EPL, +42:uI1:......................................, +6:uI1:38, +13:u01:Scenarios, +7:u05:ODU, +7:u06:EPL, +8:u08:EVPL, +42:uI0:......................................, +48:uI2:............................................, +6:uI0:38, +13:u00:Scenarios, +7:u04:ODU, +7:u05:EPL, +8:u07:EVPL, +18:u08:Multi-function, +48:uI1:............................................, +7:u03:ODU, +7:u04:EPL, +8:u06:EVPL, +18:u07:Multi-function, +48:uI0:............................................, +33:uI2:............................., +7:u02:ODU, +7:u03:EPL, +8:u05:EVPL, +18:u06:Multi-function, +10:u08:Linear, +33:uI1:............................., +46:uI2:.........................................., +6:uI2:42, +7:u01:ODU, +7:u02:EPL, +8:u04:EVPL, +18:u05:Multi-function, +10:u07:Linear, +13:u08:Segmented, +33:uI0:............................., +46:uI1:.........................................., +37:uI2:..-.............................., +6:uI1:42, +6:uI2:33, +7:u00:ODU, +7:u01:EPL, +8:u03:EVPL, +18:u04:Multi-function, +10:u06:Linear, +13:u07:Segmented, +63:u08:Notification.............................................23, +46:uI0:.........................................., +37:uI1:..-.............................., +6:uI0:42, +6:uI1:33, +7:u00:EPL, +8:u02:EVPL, +18:u03:Multi-function, +10:u05:Linear, +13:u06:Segmented, +63:u07:Notification.............................................23, +37:uI0:..-.............................., +33:uI2:...(--)......................, +6:uI0:33, +8:u01:EVPL, +18:u02:Multi-function, +10:u04:Linear, +13:u05:Segmented, +63:u06:Notification.............................................23, +8:u08:YANG, +33:uI1:...(--)......................, +39:uI2:..................................., +10:u08:5.1.1., +8:u00:EVPL, +18:u01:Multi-function, +10:u03:Linear, +13:u04:Segmented, +63:u05:Notification.............................................23, +8:u07:YANG, +33:uI0:...(--)......................, +39:uI1:..................................., +51:uI2:..............................................., +10:u08:5.1.2., +18:u00:Multi-function, +10:u02:Linear, +13:u03:Segmented, +63:u04:Notification.............................................23, +8:u06:YANG, +39:uI0:..................................., +51:uI1:..............................................., +10:u07:5.1.1., +10:u08:5.1.3., +10:u01:Linear, +13:u02:Segmented, +63:u03:Notification.............................................23, +8:u05:YANG, +51:uI0:..............................................., +10:u06:5.1.1., +10:u07:5.1.2., +10:u08:5.1.4., +10:u00:Linear, +13:u01:Segmented, +63:u02:Notification.............................................23, +8:u04:YANG, +10:u14:5.1.1., +10:u05:5.1.1., +10:u06:5.1.2., +10:u07:5.1.3., +13:u00:Segmented, +63:u01:Notification.............................................23, +8:u03:YANG, +16:u08:Multi-domain, +10:u13:5.1.1., +10:u14:5.1.2., +10:u04:5.1.1., +10:u05:5.1.2., +10:u06:5.1.3., +10:u07:5.1.4., +10:u08:5.2.1., +63:u00:Notification.............................................23, +8:u02:YANG, +16:u07:Multi-domain, +10:u12:5.1.1., +10:u13:5.1.2., +10:u14:5.1.3., +10:u03:5.1.1., +10:u04:5.1.2., +10:u05:5.1.3., +10:u06:5.1.4., +12:u08:5.2.1.1., +8:u01:YANG, +16:u06:Multi-domain, +10:u11:5.1.1., +10:u12:5.1.2., +10:u13:5.1.3., +10:u14:5.1.4., +10:u02:5.1.1., +10:u03:5.1.2., +10:u04:5.1.3., +10:u05:5.1.4., +10:u07:5.2.1., +10:u08:5.2.2., +8:u00:YANG, +16:u05:Multi-domain, +10:u08:Single, +10:u10:5.1.1., +10:u11:5.1.2., +10:u12:5.1.3., +10:u13:5.1.4., +31:uI2:...-......................., +10:u01:5.1.1., +10:u02:5.1.2., +10:u03:5.1.3., +10:u04:5.1.4., +10:u06:5.2.1., +12:u07:5.2.1.1., +12:u08:5.2.2.1., +16:u04:Multi-domain, +10:u07:Single, +10:u10:5.1.2., +10:u11:5.1.3., +10:u12:5.1.4., +10:u14:5.2.1., +31:uI1:...-......................., +10:u00:5.1.1., +10:u01:5.1.2., +10:u02:5.1.3., +10:u03:5.1.4., +10:u05:5.2.1., +12:u06:5.2.1.1., +10:u07:5.2.2., +10:u08:5.2.3., +16:u03:Multi-domain, +10:u06:Single, +10:u10:5.1.3., +10:u11:5.1.4., +10:u13:5.2.1., +12:u14:5.2.1.1., +31:uI0:...-......................., +40:uI2:...................................., +10:u00:5.1.2., +10:u01:5.1.3., +10:u02:5.1.4., +10:u04:5.2.1., +12:u05:5.2.1.1., +10:u06:5.2.2., +12:u07:5.2.2.1., +12:u08:5.2.3.1., +16:u02:Multi-domain, +10:u05:Single, +10:u10:5.1.4., +10:u12:5.2.1., +12:u13:5.2.1.1., +10:u14:5.2.2., +40:uI1:...................................., +34:uI2:.............................., +10:u00:5.1.3., +10:u01:5.1.4., +10:u03:5.2.1., +12:u04:5.2.1.1., +10:u05:5.2.2., +12:u06:5.2.2.1., +10:u07:5.2.3., +10:u08:5.2.4., +16:u01:Multi-domain, +10:u04:Single, +10:u11:5.2.1., +12:u12:5.2.1.1., +10:u13:5.2.2., +12:u14:5.2.2.1., +40:uI0:...................................., +34:uI1:.............................., +10:u00:5.1.4., +10:u02:5.2.1., +12:u03:5.2.1.1., +10:u04:5.2.2., +12:u05:5.2.2.1., +10:u06:5.2.3., +12:u07:5.2.3.1., +16:u00:Multi-domain, +10:u03:Single, +10:u10:5.2.1., +12:u11:5.2.1.1., +10:u12:5.2.2., +12:u13:5.2.2.1., +10:u14:5.2.3., +34:uI0:.............................., +10:u01:5.2.1., +12:u02:5.2.1.1., +10:u03:5.2.2., +12:u04:5.2.2.1., +10:u05:5.2.3., +12:u06:5.2.3.1., +10:u07:5.2.4., +10:u08:5.3.1., +10:u02:Single, +12:u10:5.2.1.1., +10:u11:5.2.2., +12:u12:5.2.2.1., +10:u13:5.2.3., +12:u14:5.2.3.1., +10:u00:5.2.1., +12:u01:5.2.1.1., +10:u02:5.2.2., +12:u03:5.2.2.1., +10:u04:5.2.3., +12:u05:5.2.3.1., +10:u06:5.2.4., +10:u01:Single, +10:u10:5.2.2., +12:u11:5.2.2.1., +10:u12:5.2.3., +12:u13:5.2.3.1., +10:u14:5.2.4., +12:u00:5.2.1.1., +10:u01:5.2.2., +12:u02:5.2.2.1., +10:u03:5.2.3., +12:u04:5.2.3.1., +10:u05:5.2.4., +10:u07:5.3.1., +10:u00:Single, +63:u08:Notifications............................................44, +12:u10:5.2.2.1., +10:u11:5.2.3., +12:u12:5.2.3.1., +10:u13:5.2.4., +10:u00:5.2.2., +12:u01:5.2.2.1., +10:u02:5.2.3., +12:u03:5.2.3.1., +10:u04:5.2.4., +10:u06:5.3.1., +63:u07:Notifications............................................44, +10:u10:5.2.3., +12:u11:5.2.3.1., +10:u12:5.2.4., +10:u14:5.3.1., +12:u00:5.2.2.1., +10:u01:5.2.3., +12:u02:5.2.3.1., +10:u03:5.2.4., +10:u05:5.3.1., +63:u06:Notifications............................................44, +12:u10:5.2.3.1., +10:u11:5.2.4., +10:u13:5.3.1., +10:u00:5.2.3., +12:u01:5.2.3.1., +10:u02:5.2.4., +10:u04:5.3.1., +63:u05:Notifications............................................44, +10:u10:5.2.4., +10:u12:5.3.1., +50:uI2:.............................................., +12:u00:5.2.3.1., +10:u01:5.2.4., +10:u03:5.3.1., +63:u04:Notifications............................................44, +68:u08:References....................................................45, +10:u11:5.3.1., +50:uI1:.............................................., +10:u00:5.2.4., +10:u02:5.3.1., +63:u03:Notifications............................................44, +68:u07:References....................................................45, +10:u10:5.3.1., +50:uI0:.............................................., +44:uI2:........................................, +6:uI2:40, +10:u01:5.3.1., +63:u02:Notifications............................................44, +68:u06:References....................................................45, +44:uI1:........................................, +6:uI1:40, +10:u00:5.3.1., +63:u01:Notifications............................................44, +68:u05:References....................................................45, +68:u08:Acknowledgments...............................................47, +44:uI0:........................................, +6:uI0:40, +63:u00:Notifications............................................44, +68:u04:References....................................................45, +68:u07:Acknowledgments...............................................47, +43:uI2:......................................., +6:uI2:39, +68:u03:References....................................................45, +68:u06:Acknowledgments...............................................47, +43:uI1:......................................., +41:uI2:....................................., +6:uI1:39, +68:u02:References....................................................45, +68:u05:Acknowledgments...............................................47, +16:u08:Manipulation, +43:uI0:......................................., +41:uI1:....................................., +52:uI2:................................................, +6:uI0:39, +6:uI2:48, +8:u08:A.3., +68:u01:References....................................................45, +68:u04:Acknowledgments...............................................47, +16:u07:Manipulation, +12:u08:Comments, +41:uI0:....................................., +52:uI1:................................................, +6:uI1:48, +8:u08:A.4., +68:u00:References....................................................45, +68:u03:Acknowledgments...............................................47, +16:u06:Manipulation, +12:u07:Comments, +52:uI0:................................................, +6:uI0:48, +8:u07:A.3., +68:u08:approach......................................................51, +68:u02:Acknowledgments...............................................47, +16:u05:Manipulation, +12:u06:Comments, +8:u06:A.3., +8:u07:A.4., +68:u01:Acknowledgments...............................................47, +16:u04:Manipulation, +12:u05:Comments, +8:u14:a.3., +36:uI2:................................, +8:u05:A.3., +8:u06:A.4., +68:u07:approach......................................................51, +68:u00:Acknowledgments...............................................47, +16:u03:Manipulation, +12:u04:Comments, +8:u13:a.3., +8:u14:a.4., +36:uI1:................................, +8:u04:A.3., +8:u05:A.4., +68:u06:approach......................................................51, +16:u02:Manipulation, +12:u03:Comments, +8:u12:a.3., +8:u13:a.4., +68:u14:approach......................................................51, +7:u22:A.3, +8:u23:A.3., +36:uI0:................................, +8:u03:A.3., +8:u04:A.4., +68:u05:approach......................................................51, +16:u01:Manipulation, +12:u02:Comments, +8:u11:a.3., +8:u12:a.4., +68:u13:approach......................................................51, +7:u22:A.4, +8:u23:A.4., +58:uI2:......................................................, +8:u02:A.3., +8:u03:A.4., +68:u04:approach......................................................51, +16:u00:Manipulation, +12:u01:Comments, +8:u10:a.3., +8:u11:a.4., +68:u12:approach......................................................51, +58:uI1:......................................................, +8:u01:A.3., +8:u02:A.4., +68:u03:approach......................................................51, +12:u00:Comments, +8:u10:a.4., +68:u11:approach......................................................51, +58:uI0:......................................................, +8:u00:A.3., +8:u01:A.4., +68:u02:approach......................................................51, +12:u08:Detailed, +68:u10:approach......................................................51, +8:u00:A.4., +68:u01:approach......................................................51, +68:u00:approach......................................................51, +12:u07:Detailed, +12:u06:Detailed, +12:u05:Detailed, +12:u04:Detailed, +12:u03:Detailed, +8:u14:json, +12:u02:Detailed, +8:u13:json, +25:uI2::--.................., +12:u01:Detailed, +8:u12:json, +6:u21:JS, +7:u22:JSO, +8:u23:JSON, +25:uI1::--.................., +12:u00:Detailed, +10:u08:B.2.3., +8:u11:json, +25:uI0::--.................., +8:u10:json, +19:uI2::---..........., +10:u07:B.2.3., +19:uI1::---..........., +10:u06:B.2.3., +10:u14:b.2.3., +19:uI0::---..........., +20:uI2::---............, +10:u05:B.2.3., +10:u13:b.2.3., +20:uI1::---............, +10:u04:B.2.3., +18:u08:interconnects,, +10:u12:b.2.3., +20:uI0::---............, +10:u03:B.2.3., +14:u08:enterprise, +10:u11:b.2.3., +10:u02:B.2.3., +18:u07:interconnects,, +11:u08:Carrier, +10:u10:b.2.3., +10:u01:B.2.3., +18:u06:interconnects,, +14:u07:enterprise, +13:u08:propriety, +11:u07:Carrier, +18:u14:interconnects,, +10:u00:B.2.3., +18:u05:interconnects,, +14:u06:enterprise, +11:u06:Carrier, +18:u13:interconnects,, +14:u14:enterprise, +18:u04:interconnects,, +14:u05:enterprise, +13:u07:propriety, +11:u05:Carrier, +18:u12:interconnects,, +14:u13:enterprise, +18:u03:interconnects,, +14:u04:enterprise, +13:u06:propriety, +11:u04:Carrier, +18:u11:interconnects,, +14:u12:enterprise, +13:u14:propriety, +18:u02:interconnects,, +14:u03:enterprise, +13:u05:propriety, +11:u03:Carrier, +18:u10:interconnects,, +14:u11:enterprise, +13:u13:propriety, +18:u01:interconnects,, +14:u02:enterprise, +13:u04:propriety, +11:u02:Carrier, +14:u10:enterprise, +13:u12:propriety, +18:u00:interconnects,, +14:u01:enterprise, +13:u03:propriety, +11:u01:Carrier, +13:u11:propriety, +14:u00:enterprise, +13:u02:propriety, +16:u08:standardized, +11:u00:Carrier, +28:u08:coordination/automation., +13:u10:propriety, +13:u01:propriety, +28:u07:coordination/automation., +16:u14:multi-vendor, +13:u00:propriety, +16:u07:standardized, +28:u06:coordination/automation., +12:u08:RESTCONF, +16:u13:multi-vendor, +16:u14:provisioning, +16:u06:standardized, +28:u05:coordination/automation., +12:u07:RESTCONF, +16:u12:multi-vendor, +16:u13:provisioning, +16:u14:standardized, +16:u05:standardized, +28:u04:coordination/automation., +12:u06:RESTCONF, +16:u11:multi-vendor, +16:u12:provisioning, +16:u13:standardized, +16:u04:standardized, +28:u03:coordination/automation., +12:u05:RESTCONF, +16:u10:multi-vendor, +16:u11:provisioning, +16:u12:standardized, +12:uI2:(..,[])., +16:u03:standardized, +16:u08:multi-domain, +28:u02:coordination/automation., +12:u04:RESTCONF, +16:u10:provisioning, +16:u11:standardized, +12:uI1:(..,[])., +16:u02:standardized, +28:u01:coordination/automation., +12:u03:RESTCONF, +14:u08:scenarios., +16:u10:standardized, +12:uI0:(..,[])., +16:u01:standardized, +16:u07:multi-domain, +28:u00:coordination/automation., +12:u02:RESTCONF, +14:u07:scenarios., +16:u00:standardized, +16:u06:multi-domain, +12:u01:RESTCONF, +14:u06:scenarios., +7:uI2:)(), +16:u05:multi-domain, +12:u00:RESTCONF, +14:u05:scenarios., +7:uI1:)(), +16:u04:multi-domain, +14:u04:scenarios., +7:uI0:)(), +16:u03:multi-domain, +9:u08:Multi, +14:u03:scenarios., +16:u02:multi-domain, +14:u02:scenarios., +14:u14:engineered, +16:u01:multi-domain, +9:u07:Multi, +14:u01:scenarios., +10:u08:(PNC),, +14:u13:engineered, +10:uI2:(),[]., +16:u00:multi-domain, +9:u06:Multi, +14:u00:scenarios., +10:u07:(PNC),, +14:u12:engineered, +9:u14:multi, +10:uI1:(),[]., +9:u05:Multi, +10:u06:(PNC),, +14:u11:engineered, +9:u13:multi, +10:uI0:(),[]., +9:u04:Multi, +10:u05:(PNC),, +14:u10:engineered, +9:u12:multi, +9:uI2:(),)., +9:u03:Multi, +10:u04:(PNC),, +9:u11:multi, +9:uI1:(),)., +9:u02:Multi, +10:u03:(PNC),, +9:u10:multi, +9:uI0:(),)., +9:u01:Multi, +10:u02:(PNC),, +9:u00:Multi, +10:u01:(PNC),, +10:u00:(PNC),, +14:u08:[RFC8453]., +14:u07:[RFC8453]., +12:u08:analysis, +14:u06:[RFC8453]., +12:u07:analysis, +9:u08:(CNC), +14:u05:[RFC8453]., +12:u06:analysis, +9:u07:(CNC), +14:u04:[RFC8453]., +12:u05:analysis, +9:u06:(CNC), +14:u03:[RFC8453]., +12:u04:analysis, +9:u05:(CNC), +14:u02:[RFC8453]., +12:u03:analysis, +9:u04:(CNC), +13:u08:considers, +14:u01:[RFC8453]., +12:u02:analysis, +9:u03:(CNC), +8:u08:ACTN, +7:u08:OTN, +14:u00:[RFC8453]., +12:u01:analysis, +9:u02:(CNC), +8:u07:ACTN, +13:u07:considers, +12:u00:analysis, +9:u01:(CNC), +8:u06:ACTN, +13:u06:considers, +7:u07:OTN, +9:u00:(CNC), +8:u05:ACTN, +13:u14:considers, +9:uI2:[-].,, +13:u05:considers, +7:u06:OTN, +8:u04:ACTN, +13:u13:considers, +7:u14:otn, +9:uI1:[-].,, +13:u04:considers, +7:u05:OTN, +10:u08:Signal, +8:u03:ACTN, +16:u08:augmentation, +13:u12:considers, +7:u13:otn, +8:u14:yang, +9:uI0:[-].,, +13:u03:considers, +7:u04:OTN, +8:u02:ACTN, +16:u07:augmentation, +13:u11:considers, +7:u12:otn, +8:u13:yang, +6:u21:OT, +7:u22:OTN, +7:u23:OTN, +13:u02:considers, +7:u03:OTN, +10:u07:Signal, +8:u01:ACTN, +16:u06:augmentation, +12:u08:Ethernet, +13:u10:considers, +7:u11:otn, +8:u12:yang, +6:u21:YA, +7:u22:YAN, +8:u23:YANG, +13:u01:considers, +7:u02:OTN, +10:u06:Signal, +8:u00:ACTN, +16:u05:augmentation, +12:u07:Ethernet, +7:u08:ONF, +7:u10:otn, +8:u11:yang, +13:u00:considers, +7:u01:OTN, +10:u05:Signal, +16:u04:augmentation, +12:u06:Ethernet, +7:u07:ONF, +8:u10:yang, +7:u22:Top, +8:u23:Topo, +7:u00:OTN, +10:u04:Signal, +16:u03:augmentation, +12:u05:Ethernet, +7:u06:ONF, +10:u03:Signal, +16:u02:augmentation, +12:u04:Ethernet, +7:u05:ONF, +10:u02:Signal, +16:u01:augmentation, +12:u03:Ethernet, +7:u04:ONF, +15:u08:Assumptions, +8:uI2:[-]-, +10:u01:Signal, +16:u00:augmentation, +12:u02:Ethernet, +7:u03:ONF, +15:u07:Assumptions, +8:uI1:[-]-, +10:u00:Signal, +12:u01:Ethernet, +7:u02:ONF, +15:u06:Assumptions, +8:uI0:[-]-, +12:u00:Ethernet, +7:u01:ONF, +15:u05:Assumptions, +7:u00:ONF, +15:u04:Assumptions, +15:u03:Assumptions, +8:u08:PNC,, +15:u02:Assumptions, +8:u07:PNC,, +15:u08:Termination, +15:u01:Assumptions, +8:u06:PNC,, +15:u07:Termination, +15:u00:Assumptions, +8:u05:PNC,, +15:u06:Termination, +8:u04:PNC,, +15:u05:Termination, +32:u08:route-object-include-exclude, +11:u14:source,, +8:u03:PNC,, +15:u04:Termination, +32:u07:route-object-include-exclude, +11:u13:source,, +10:uI2:,,----, +8:u02:PNC,, +15:u03:Termination, +32:u06:route-object-include-exclude, +11:u12:source,, +10:uI1:,,----, +8:u01:PNC,, +15:u02:Termination, +32:u05:route-object-include-exclude, +11:u11:source,, +10:uI0:,,----, +8:u00:PNC,, +15:u01:Termination, +32:u04:route-object-include-exclude, +11:u10:source,, +15:u00:Termination, +32:u03:route-object-include-exclude, +13:u08:[TE-TOPO], +32:u02:route-object-include-exclude, +13:u07:[TE-TOPO], +32:u01:route-object-include-exclude, +13:u06:[TE-TOPO], +32:u00:route-object-include-exclude, +13:u05:[TE-TOPO], +13:u04:[TE-TOPO], +13:u03:[TE-TOPO], +13:u02:[TE-TOPO], +13:u01:[TE-TOPO], +13:u00:[TE-TOPO], +12:u08:modelled, +9:uI2:.[-]., +12:u07:modelled, +9:uI1:.[-]., +12:u06:modelled, +10:u08:TOPO];, +12:u14:modelled, +9:uI0:.[-]., +12:u05:modelled, +12:u13:modelled, +8:uI2:[-];, +12:u04:modelled, +10:u07:TOPO];, +11:u08:signals, +12:u12:modelled, +8:uI1:[-];, +12:u03:modelled, +10:u06:TOPO];, +12:u08:SIGNAL]., +12:u11:modelled, +10:u14:topo];, +8:uI0:[-];, +6:uI2:[-, +12:u02:modelled, +10:u05:TOPO];, +11:u07:signals, +12:u10:modelled, +10:u13:topo];, +6:uI1:[-, +6:uI2:];, +12:u01:modelled, +10:u04:TOPO];, +11:u06:signals, +12:u07:SIGNAL]., +10:u12:topo];, +11:u14:signals, +6:u21:TO, +7:u22:TOP, +8:u23:TOPO, +6:uI0:[-, +6:uI1:];, +12:u00:modelled, +10:u03:TOPO];, +11:u05:signals, +12:u06:SIGNAL]., +10:u11:topo];, +11:u13:signals, +12:u14:signal]., +6:uI0:];, +10:u02:TOPO];, +11:u04:signals, +12:u05:SIGNAL]., +15:u08:wavelength,, +10:u10:topo];, +11:u12:signals, +12:u13:signal]., +6:uI2:]., +10:u01:TOPO];, +11:u03:signals, +12:u04:SIGNAL]., +11:u11:signals, +12:u12:signal]., +7:u22:SIG, +8:u23:SIGN, +6:uI1:]., +10:u00:TOPO];, +11:u02:signals, +12:u03:SIGNAL]., +15:u07:wavelength,, +11:u08:Domain:, +11:u10:signals, +12:u11:signal]., +9:u14:links, +6:uI0:]., +11:u01:signals, +12:u02:SIGNAL]., +15:u06:wavelength,, +12:u10:signal]., +9:u13:links, +15:u14:wavelength,, +11:u00:signals, +12:u01:SIGNAL]., +15:u05:wavelength,, +11:u07:Domain:, +9:u12:links, +15:u13:wavelength,, +12:u00:SIGNAL]., +15:u04:wavelength,, +11:u06:Domain:, +9:u11:links, +15:u12:wavelength,, +11:u14:domain:, +7:u22:wav, +8:u23:wave, +15:u03:wavelength,, +11:u05:Domain:, +9:u10:links, +15:u11:wavelength,, +11:u13:domain:, +8:uI2::[]", +15:u02:wavelength,, +11:u04:Domain:, +15:u10:wavelength,, +11:u12:domain:, +7:u22:Dom, +8:u23:Doma, +8:uI1::[]", +15:u01:wavelength,, +11:u03:Domain:, +11:u11:domain:, +8:uI0::[]", +15:u00:wavelength,, +11:u02:Domain:, +11:u10:domain:, +11:u01:Domain:, +11:u08:E-LINE:, +10:u08:vendor, +11:u00:Domain:, +8:u08:EPL:, +10:u07:vendor, +12:u14:elements, +11:u07:E-LINE:, +9:u08:EVPL:, +10:u06:vendor, +12:u13:elements, +10:u14:types,, +11:u06:E-LINE:, +8:u07:EPL:, +8:u08:OTN:, +10:u05:vendor, +12:u12:elements, +10:u13:types,, +11:u14:e-line:, +11:u05:E-LINE:, +8:u06:EPL:, +9:u07:EVPL:, +12:u08:Service:, +10:u04:vendor, +11:u08:Optical, +12:u11:elements, +10:u12:types,, +11:u13:e-line:, +8:u14:epl:, +11:u04:E-LINE:, +8:u05:EPL:, +9:u06:EVPL:, +8:u07:OTN:, +10:u03:vendor, +11:u07:Optical, +12:u10:elements, +10:u11:types,, +11:u12:e-line:, +8:u13:epl:, +9:u14:evpl:, +6:u21:E-, +7:u22:E-L, +8:u23:E-LI, +11:u03:E-LINE:, +8:u04:EPL:, +9:u05:EVPL:, +8:u06:OTN:, +12:u07:Service:, +10:u02:vendor, +11:u06:Optical, +10:u10:types,, +11:u11:e-line:, +8:u12:epl:, +9:u13:evpl:, +8:u14:otn:, +6:u21:EP, +7:u22:EPL, +8:u23:EPL:, +11:u02:E-LINE:, +8:u03:EPL:, +9:u04:EVPL:, +8:u05:OTN:, +12:u06:Service:, +10:u01:vendor, +11:u05:Optical, +14:u08:operator's, +11:u10:e-line:, +8:u11:epl:, +9:u12:evpl:, +8:u13:otn:, +12:u14:service:, +7:u22:EVP, +8:u23:EVPL, +11:u01:E-LINE:, +8:u02:EPL:, +9:u03:EVPL:, +8:u04:OTN:, +12:u05:Service:, +10:u00:vendor, +11:u04:Optical, +14:u07:operator's, +8:u10:epl:, +9:u11:evpl:, +8:u12:otn:, +12:u13:service:, +8:u23:OTN:, +11:u00:E-LINE:, +8:u01:EPL:, +9:u02:EVPL:, +8:u03:OTN:, +12:u04:Service:, +11:u03:Optical, +14:u06:operator's, +9:u10:evpl:, +8:u11:otn:, +12:u12:service:, +8:u00:EPL:, +9:u01:EVPL:, +8:u02:OTN:, +12:u03:Service:, +11:u02:Optical, +14:u05:operator's, +8:u10:otn:, +12:u11:service:, +8:uI2:'[]., +9:u00:EVPL:, +8:u01:OTN:, +12:u02:Service:, +11:u01:Optical, +14:u04:operator's, +12:u10:service:, +8:uI1:'[]., +8:u00:OTN:, +12:u01:Service:, +11:u00:Optical, +14:u03:operator's, +8:uI0:'[]., +12:u00:Service:, +14:u02:operator's, +10:u08:Model:, +13:u08:uniformly, +14:u01:operator's, +10:u07:Model:, +14:u00:operator's, +10:u06:Model:, +13:u07:uniformly, +8:u08:UNI:, +10:u05:Model:, +13:u06:uniformly, +9:u08:MDSC:, +10:u04:Model:, +13:u14:uniformly, +13:u05:uniformly, +8:u07:UNI:, +8:u08:CNC:, +10:u03:Model:, +13:u13:uniformly, +13:u04:uniformly, +8:u06:UNI:, +9:u07:MDSC:, +8:u08:PNC:, +10:u02:Model:, +13:u12:uniformly, +8:u14:uni:, +8:u23:unif, +13:u03:uniformly, +8:u05:UNI:, +9:u06:MDSC:, +8:u07:CNC:, +10:u01:Model:, +13:u11:uniformly, +8:u13:uni:, +9:u14:mdsc:, +13:u02:uniformly, +8:u04:UNI:, +9:u05:MDSC:, +8:u06:CNC:, +8:u07:PNC:, +10:u00:Model:, +13:u10:uniformly, +8:u12:uni:, +9:u13:mdsc:, +8:u14:cnc:, +8:u23:UNI:, +13:u01:uniformly, +8:u03:UNI:, +9:u04:MDSC:, +8:u05:CNC:, +8:u06:PNC:, +8:u11:uni:, +9:u12:mdsc:, +8:u13:cnc:, +8:u14:pnc:, +8:u23:MDSC, +13:u00:uniformly, +8:u02:UNI:, +9:u03:MDSC:, +8:u04:CNC:, +8:u05:PNC:, +8:u10:uni:, +9:u11:mdsc:, +8:u12:cnc:, +8:u13:pnc:, +6:u21:CN, +7:u22:CNC, +8:u23:CNC:, +8:u01:UNI:, +9:u02:MDSC:, +8:u03:CNC:, +8:u04:PNC:, +9:u10:mdsc:, +8:u11:cnc:, +8:u12:pnc:, +6:u21:PN, +7:u22:PNC, +8:u23:PNC:, +8:u00:UNI:, +9:u01:MDSC:, +8:u02:CNC:, +8:u03:PNC:, +10:u08:<node>, +8:u10:cnc:, +8:u11:pnc:, +9:u00:MDSC:, +8:u01:CNC:, +8:u02:PNC:, +20:u08:[<processing>]{,, +8:u10:pnc:, +8:u00:CNC:, +8:u01:PNC:, +10:u07:<node>, +20:u07:[<processing>]{,, +8:u00:PNC:, +10:u06:<node>, +20:u06:[<processing>]{,, +10:u14:<node>, +10:u05:<node>, +19:u08:"[(switching)]", +20:u05:[<processing>]{,, +10:u13:<node>, +9:uI2:[],[], +10:u04:<node>, +20:u04:[<processing>]{,, +10:u12:<node>, +6:u21:<n, +7:u22:<no, +8:u23:<nod, +9:uI1:[],[], +10:u03:<node>, +19:u07:"[(switching)]", +20:u03:[<processing>]{,, +10:u11:<node>, +9:uI0:[],[], +10:u02:<node>, +19:u06:"[(switching)]", +20:u02:[<processing>]{,, +10:u10:<node>, +19:u14:"[(switching)]", +10:u01:<node>, +19:u05:"[(switching)]", +20:u01:[<processing>]{,, +19:u13:"[(switching)]", +10:uI2:"[()]", +10:u00:<node>, +19:u04:"[(switching)]", +20:u00:[<processing>]{,, +19:u12:"[(switching)]", +6:u21:"[, +7:u22:"[(, +8:u23:"[(s, +10:uI1:"[()]", +17:uI2:"[()-]"[-()],, +19:u03:"[(switching)]", +10:u08:[(PKT), +19:u11:"[(switching)]", +10:uI0:"[()]", +17:uI1:"[()-]"[-()],, +19:u02:"[(switching)]", +10:u07:[(PKT), +9:u08:[ODU2, +19:u10:"[(switching)]", +17:uI0:"[()-]"[-()],, +19:u01:"[(switching)]", +10:u06:[(PKT), +9:u07:[ODU2, +19:u00:"[(switching)]", +10:u05:[(PKT), +9:u06:[ODU2, +25:uI2:[()-],[()],[()],[()],, +10:u04:[(PKT), +9:u05:[ODU2, +25:uI1:[()-],[()],[()],[()],, +9:uI2:[-()], +10:u03:[(PKT), +9:u04:[ODU2, +25:uI0:[()-],[()],[()],[()],, +9:uI1:[-()], +10:u02:[(PKT), +9:u03:[ODU2, +8:u08:ODU2, +9:uI0:[-()], +10:u01:[(PKT), +9:u02:[ODU2, +8:u07:ODU2, +10:u00:[(PKT), +9:u01:[ODU2, +8:u06:ODU2, +9:u00:[ODU2, +8:u05:ODU2, +8:u04:ODU2, +8:u03:ODU2, +8:u02:ODU2, +8:u01:ODU2, +8:u00:ODU2, +6:u08:{,, +6:u07:{,, +6:u06:{,, +12:u08:selected, +6:u05:{,, +22:u08:working/protection, +6:u04:{,, +16:u08:arbitrarily,, +12:u07:selected, +6:u03:{,, +16:u07:arbitrarily,, +12:u06:selected, +22:u07:working/protection, +6:u02:{,, +16:u06:arbitrarily,, +12:u14:selected, +12:u05:selected, +22:u06:working/protection, +6:u01:{,, +16:u05:arbitrarily,, +12:u13:selected, +22:u14:working/protection, +12:u04:selected, +22:u05:working/protection, +6:u00:{,, +16:u04:arbitrarily,, +12:u12:selected, +22:u13:working/protection, +12:u03:selected, +22:u04:working/protection, +16:u03:arbitrarily,, +12:u11:selected, +22:u12:working/protection, +12:u02:selected, +22:u03:working/protection, +13:u08:Different, +16:u02:arbitrarily,, +12:u10:selected, +22:u11:working/protection, +12:u01:selected, +22:u02:working/protection, +16:u01:arbitrarily,, +22:u10:working/protection, +12:u00:selected, +22:u01:working/protection, +13:u07:Different, +16:u00:arbitrarily,, +12:u08:mnemonic, +22:u00:working/protection, +13:u06:Different, +12:u07:mnemonic, +8:u08:S3),, +13:u05:Different, +12:u06:mnemonic, +8:u07:S3),, +13:u04:Different, +12:u05:mnemonic, +8:u06:S3),, +13:u03:Different, +12:u04:mnemonic, +8:u05:S3),, +16:uI2:),(..,),"-",, +13:u02:Different, +12:u03:mnemonic, +8:u04:S3),, +16:uI1:),(..,),"-",, +9:uI2:"-".,, +13:u01:Different, +12:u02:mnemonic, +8:u03:S3),, +16:uI0:),(..,),"-",, +9:uI1:"-".,, +13:u00:Different, +12:u01:mnemonic, +8:u02:S3),, +9:uI0:"-".,, +12:u00:mnemonic, +8:u01:S3),, +8:u00:S3),, +7:u08:"//, +9:uI2:"//"., +13:u08:comment":, +9:uI1:"//"., +7:u07:"//, +13:u07:comment":, +9:uI0:"//"., +7:u06:"//, +13:u06:comment":, +7:u14:"//, +7:u05:"//, +13:u05:comment":, +7:u13:"//, +12:uI2:"//":"",, +7:u04:"//, +13:u08:numbering, +13:u04:comment":, +7:u12:"//, +7:u22:"//, +7:u23:"//, +12:uI1:"//":"",, +7:u03:"//, +13:u03:comment":, +7:u11:"//, +12:uI0:"//":"",, +7:u02:"//, +13:u07:numbering, +13:u02:comment":, +12:u08:entities, +7:u10:"//, +7:u01:"//, +13:u06:numbering, +11:u08:comment, +13:u01:comment":, +12:u07:entities, +13:u14:numbering, +7:u00:"//, +13:u05:numbering, +13:u00:comment":, +12:u06:entities, +13:u13:numbering, +13:u04:numbering, +11:u07:comment, +12:u05:entities, +13:u12:numbering, +13:u03:numbering, +11:u06:comment, +12:u04:entities, +13:u11:numbering, +11:u14:comment, +13:u02:numbering, +11:u05:comment, +12:u03:entities, +13:u10:numbering, +11:u13:comment, +13:u01:numbering, +11:u04:comment, +12:u02:entities, +11:u12:comment, +9:uI2:,(--), +13:u00:numbering, +11:u03:comment, +12:u01:entities, +11:u11:comment, +9:uI1:,(--), +11:u02:comment, +12:u00:entities, +11:u10:comment, +9:uI0:,(--), +11:u01:comment, +14:u08:"10.0.0.3", +11:u00:comment, +14:u07:"10.0.0.3", +17:u08:"te-node-id":, +14:u06:"10.0.0.3", +16:u08:te-node-id":, +14:u05:"10.0.0.3", +16:u07:te-node-id":, +15:u08:"10.0.0.3",, +9:uI2:"...", +17:u07:"te-node-id":, +14:u04:"10.0.0.3", +16:u06:te-node-id":, +15:u07:"10.0.0.3",, +9:uI1:"...", +17:u06:"te-node-id":, +14:u08:name/value, +14:u03:"10.0.0.3", +16:u05:te-node-id":, +15:u06:"10.0.0.3",, +8:u08:step, +17:u14:"te-node-id":, +9:uI0:"...", +16:uI2:"//--":"--",, +17:u05:"te-node-id":, +16:u08:definitions., +14:u02:"10.0.0.3", +16:u04:te-node-id":, +15:u05:"10.0.0.3",, +8:u07:step, +17:u13:"te-node-id":, +16:uI1:"//--":"--",, +15:uI2:"--":"...",, +17:u04:"te-node-id":, +14:u07:name/value, +14:u01:"10.0.0.3", +16:u03:te-node-id":, +15:u04:"10.0.0.3",, +8:u06:step, +17:u12:"te-node-id":, +7:u22:"te, +8:u23:"te-, +16:uI0:"//--":"--",, +15:uI1:"--":"...",, +17:u03:"te-node-id":, +14:u06:name/value, +16:u07:definitions., +14:u00:"10.0.0.3", +16:u02:te-node-id":, +15:u03:"10.0.0.3",, +8:u05:step, +17:u11:"te-node-id":, +14:u14:name/value, +15:uI0:"--":"...",, +17:u02:"te-node-id":, +14:u05:name/value, +16:u06:definitions., +16:u01:te-node-id":, +15:u02:"10.0.0.3",, +8:u04:step, +17:u10:"te-node-id":, +14:u13:name/value, +16:u14:definitions., +17:u01:"te-node-id":, +14:u04:name/value, +16:u05:definitions., +16:u00:te-node-id":, +15:u01:"10.0.0.3",, +8:u03:step, +14:u12:name/value, +16:u13:definitions., +17:u00:"te-node-id":, +14:u03:name/value, +16:u04:definitions., +15:u00:"10.0.0.3",, +8:u02:step, +14:u11:name/value, +16:u12:definitions., +14:u02:name/value, +16:u03:definitions., +12:u08:customer, +8:u01:step, +14:u10:name/value, +16:u11:definitions., +14:u01:name/value, +16:u02:definitions., +8:u00:step, +16:u10:definitions., +14:u00:name/value, +16:u01:definitions., +12:u07:customer, +11:u14:domains, +16:u00:definitions., +12:u06:customer, +11:u13:domains, +12:u14:customer, +12:u05:customer, +11:u12:domains, +12:u13:customer, +12:u04:customer, +11:u11:domains, +12:u12:customer, +7:u22:cus, +8:u23:cust, +12:u03:customer, +28:u08:........................, +11:u10:domains, +12:u11:customer, +12:u02:customer, +13:u08:........., +12:u10:customer, +12:u01:customer, +28:u07:........................, +12:u00:customer, +28:u06:........................, +13:u07:........., +28:u14:........................, +28:u05:........................, +13:u06:........., +28:u13:........................, +13:u14:........., +28:u04:........................, +13:u05:........., +28:u12:........................, +13:u13:........., +8:u23:...., +28:u03:........................, +13:u04:........., +28:u11:........................, +13:u12:........., +28:u02:........................, +13:u03:........., +28:u10:........................, +13:u11:........., +28:u01:........................, +13:u02:........., +17:u08:............., +13:u10:........., +28:u00:........................, +13:u01:........., +13:u08:Customer:, +13:u00:........., +17:u07:............., +17:u06:............., +13:u07:Customer:, +17:u14:............., +17:u05:............., +13:u06:Customer:, +17:u13:............., +13:u14:customer:, +17:u04:............., +13:u05:Customer:, +17:u12:............., +13:u13:customer:, +17:u03:............., +13:u04:Customer:, +17:u11:............., +13:u12:customer:, +6:u21:Cu, +7:u22:Cus, +8:u23:Cust, +17:u02:............., +13:u03:Customer:, +17:u10:............., +13:u11:customer:, +17:u01:............., +13:u02:Customer:, +13:u10:customer:, +17:u00:............., +13:u01:Customer:, +12:u08:-------+, +13:u00:Customer:, +12:u07:-------+, +12:u06:-------+, +12:u05:-------+, +12:u04:-------+, +12:u03:-------+, +12:u02:-------+, +12:u01:-------+, +14:u08:.........., +12:u00:-------+, +14:u07:.........., +13:u08:-------S3, +14:u06:.........., +13:u07:-------S3, +14:u14:.........., +14:u05:.........., +13:u06:-------S3, +14:u13:.........., +14:u04:.........., +13:u05:-------S3, +14:u12:.........., +16:uI2:------------, +14:u03:.........., +13:u04:-------S3, +14:u11:.........., +16:uI1:------------, +14:u02:.........., +13:u03:-------S3, +14:u10:.........., +16:uI0:------------, +14:u01:.........., +13:u02:-------S3, +14:u00:.........., +13:u01:-------S3, +13:u00:-------S3, +6:u08:S2, +13:u08:--------+, +6:u07:S2, +13:u08::Customer, +13:u07:--------+, +6:u06:S2, +13:u06:--------+, +6:u14:s2, +6:u05:S2, +13:u07::Customer, +13:u05:--------+, +6:u13:s2, +6:u04:S2, +13:u06::Customer, +13:u04:--------+, +6:u12:s2, +13:u14::customer, +6:u21:S2, +6:u22:S2, +6:u23:S2, +6:u03:S2, +13:u05::Customer, +13:u03:--------+, +6:u11:s2, +13:u13::customer, +6:u02:S2, +13:u04::Customer, +13:u02:--------+, +6:u10:s2, +13:u12::customer, +6:u21::C, +7:u22::Cu, +8:u23::Cus, +6:u01:S2, +13:u03::Customer, +13:u01:--------+, +13:u11::customer, +6:u00:S2, +13:u02::Customer, +13:u00:--------+, +13:u10::customer, +13:u01::Customer, +13:u00::Customer, +6:u08:S5, +6:u07:S5, +6:u06:S5, +6:u14:s5, +6:u05:S5, +6:u13:s5, +6:u04:S5, +6:u12:s5, +6:u21:S5, +6:u22:S5, +6:u23:S5, +6:u03:S5, +6:u11:s5, +6:u02:S5, +6:u10:s5, +6:u01:S5, +11:u08:------+, +6:u00:S5, +11:u07:------+, +11:u06:------+, +7:u08:S31, +11:u05:------+, +11:u04:------+, +15:u08:---------R5, +7:u07:S31, +11:u03:------+, +15:u07:---------R5, +7:u06:S31, +11:u02:------+, +15:u06:---------R5, +7:u14:s31, +7:u05:S31, +11:u01:------+, +15:u05:---------R5, +7:u13:s31, +13:uI2:---------, +7:u04:S31, +11:u00:------+, +15:u04:---------R5, +7:u12:s31, +6:u21:S3, +7:u22:S31, +7:u23:S31, +13:uI1:---------, +7:u03:S31, +15:u03:---------R5, +7:u11:s31, +13:uI0:---------, +7:u02:S31, +15:u02:---------R5, +7:u10:s31, +7:u01:S31, +15:u01:---------R5, +7:u00:S31, +15:u00:---------R5, +7:u08:S33, +13:u08:-------S6, +13:u07:-------S6, +12:u08:------R6, +7:u07:S33, +13:u06:-------S6, +12:u07:------R6, +7:u06:S33, +13:u05:-------S6, +12:u06:------R6, +7:u14:s33, +25:uI2:---------------------, +7:u05:S33, +13:u04:-------S6, +12:u05:------R6, +7:u13:s33, +25:uI1:---------------------, +7:u04:S33, +13:u03:-------S6, +12:u04:------R6, +7:u12:s33, +7:u22:S33, +7:u23:S33, +25:uI0:---------------------, +7:u03:S33, +13:u02:-------S6, +12:u03:------R6, +7:u11:s33, +7:u02:S33, +13:u01:-------S6, +12:u02:------R6, +7:u10:s33, +7:u01:S33, +13:u00:-------S6, +12:u01:------R6, +7:u00:S33, +12:u08::......., +12:u00:------R6, +12:u07::......., +12:u06::......., +12:u14::......., +12:u05::......., +12:u13::......., +6:u14:r4, +12:uI2::......., +12:u04::......., +6:u08::/, +12:u12::......., +6:u13:r4, +6:u21::., +7:u22::.., +8:u23::..., +12:uI1::......., +12:u03::......., +7:u08:S34, +12:u11::......., +6:u12:r4, +6:u21:R4, +6:u22:R4, +6:u23:R4, +12:uI0::......., +12:u02::......., +6:u07::/, +12:u10::......., +6:u11:r4, +12:u01::......., +6:u06::/, +7:u07:S34, +6:u10:r4, +6:u14::/, +12:u00::......., +6:u05::/, +7:u06:S34, +6:u13::/, +7:u14:s34, +6:u04::/, +7:u05:S34, +28:u08::..........|.......|...:, +6:u12::/, +7:u13:s34, +6:u21::/, +6:u22::/, +6:u23::/, +6:u03::/, +7:u04:S34, +6:u11::/, +7:u12:s34, +7:u22:S34, +7:u23:S34, +6:u02::/, +7:u03:S34, +28:u07::..........|.......|...:, +6:u10::/, +7:u11:s34, +6:u01::/, +7:u02:S34, +28:u06::..........|.......|...:, +7:u10:s34, +28:u14::..........|.......|...:, +6:u00::/, +7:u01:S34, +28:u05::..........|.......|...:, +28:u13::..........|.......|...:, +26:uI2::....................:, +7:u00:S34, +28:u04::..........|.......|...:, +13:u08:........:, +28:u12::..........|.......|...:, +26:uI1::....................:, +28:u03::..........|.......|...:, +28:u11::..........|.......|...:, +26:uI0::....................:, +28:u02::..........|.......|...:, +13:u07:........:, +28:u10::..........|.......|...:, +28:u01::..........|.......|...:, +13:u06:........:, +18:u08:/:.../.......:, +13:u14:........:, +28:u00::..........|.......|...:, +13:u05:........:, +13:u13:........:, +13:uI2:........:, +13:u04:........:, +18:u07:/:.../.......:, +13:u12:........:, +13:uI1:........:, +13:u03:........:, +18:u06:/:.../.......:, +13:u11:........:, +18:u14:/:.../.......:, +13:uI0:........:, +13:u02:........:, +18:u05:/:.../.......:, +13:u10:........:, +18:u13:/:.../.......:, +18:uI2:/:.../.......:, +13:u01:........:, +18:u04:/:.../.......:, +18:u12:/:.../.......:, +6:u21:/:, +7:u22:/:., +8:u23:/:.., +18:uI1:/:.../.......:, +13:u00:........:, +18:u03:/:.../.......:, +18:u11:/:.../.......:, +18:uI0:/:.../.......:, +18:u02:/:.../.......:, +37:u08:...........|.......|..../..../..., +18:u10:/:.../.......:, +18:u01:/:.../.......:, +18:u00:/:.../.......:, +37:u07:...........|.......|..../..../..., +37:u06:...........|.......|..../..../..., +37:u14:...........|.......|..../..../..., +37:u05:...........|.......|..../..../..., +37:u13:...........|.......|..../..../..., +35:uI2:....................../..../..., +37:u04:...........|.......|..../..../..., +37:u12:...........|.......|..../..../..., +35:uI1:....................../..../..., +37:u03:...........|.......|..../..../..., +37:u11:...........|.......|..../..../..., +35:uI0:....................../..../..., +37:u02:...........|.......|..../..../..., +37:u10:...........|.......|..../..../..., +37:u01:...........|.......|..../..../..., +18:u08:.............., +37:u00:...........|.......|..../..../..., +18:u07:.............., +18:u06:.............., +18:u14:.............., +18:u05:.............., +18:u13:.............., +18:u04:.............., +18:u12:.............., +18:u03:.............., +18:u11:.............., +18:u02:.............., +18:u10:.............., +18:u01:.............., +18:u00:.............., +7:u08:S11, +11:u08:----S12, +7:u07:S11, +11:u07:----S12, +7:u06:S11, +11:u06:----S12, +7:u14:s11, +7:u05:S11, +11:u05:----S12, +7:u13:s11, +7:u04:S11, +11:u04:----S12, +7:u12:s11, +7:u22:S11, +7:u23:S11, +7:u03:S11, +11:u03:----S12, +7:u11:s11, +7:u02:S11, +11:u02:----S12, +7:u10:s11, +7:u01:S11, +11:u01:----S12, +7:u00:S11, +11:u00:----S12, +7:u08:S13, +7:u08:S14, +7:u07:S13, +7:u06:S13, +7:u07:S14, +7:u08:S15, +7:u14:s13, +7:u05:S13, +7:u06:S14, +7:u07:S15, +7:u13:s13, +7:u14:s14, +7:u04:S13, +7:u05:S14, +7:u06:S15, +7:u12:s13, +7:u13:s14, +7:u22:S13, +7:u23:S13, +7:u03:S13, +7:u04:S14, +7:u05:S15, +7:u11:s13, +7:u12:s14, +7:u22:S14, +7:u23:S14, +7:u02:S13, +7:u03:S14, +7:u04:S15, +7:u10:s13, +7:u11:s14, +7:u01:S13, +7:u02:S14, +7:u03:S15, +7:u10:s14, +7:u00:S13, +7:u01:S14, +7:u02:S15, +7:u00:S14, +7:u01:S15, +7:u00:S15, +7:u08:S16, +7:u07:S16, +7:u06:S16, +7:u14:s16, +7:u05:S16, +7:u13:s16, +7:u04:S16, +7:u12:s16, +7:u22:S16, +7:u23:S16, +7:u03:S16, +7:u11:s16, +7:u02:S16, +7:u08:S17, +7:u10:s16, +7:u01:S16, +9:u08:--S18, +7:u00:S16, +7:u07:S17, +9:u07:--S18, +7:u06:S17, +9:u06:--S18, +7:u14:s17, +7:u05:S17, +9:u05:--S18, +7:u13:s17, +7:u04:S17, +9:u04:--S18, +7:u12:s17, +7:u22:S17, +7:u23:S17, +7:u03:S17, +9:u03:--S18, +7:u11:s17, +7:u02:S17, +9:u02:--S18, +7:u10:s17, +7:u01:S17, +7:u08:S19, +9:u01:--S18, +7:u00:S17, +9:u00:--S18, +11:u08:----S20, +7:u07:S19, +11:u07:----S20, +7:u06:S19, +11:u06:----S20, +7:u14:s19, +7:u05:S19, +37:u08::...............................:, +11:u05:----S20, +7:u13:s19, +7:u04:S19, +18:u08::............., +11:u04:----S20, +7:u12:s19, +7:u22:S19, +7:u23:S19, +7:u03:S19, +37:u07::...............................:, +11:u03:----S20, +7:u11:s19, +7:u02:S19, +37:u06::...............................:, +18:u07::............., +11:u02:----S20, +7:u10:s19, +37:u14::...............................:, +7:u01:S19, +37:u05::...............................:, +18:u06::............., +6:u08:Si, +11:u01:----S20, +37:u13::...............................:, +18:u14::............., +37:uI2::...............................:, +7:u00:S19, +37:u04::...............................:, +18:u05::............., +11:u00:----S20, +37:u12::...............................:, +18:u13::............., +37:uI1::...............................:, +18:uI2::............., +37:u03::...............................:, +18:u04::............., +6:u07:Si, +17:u08:(intra-domain, +37:u11::...............................:, +18:u12::............., +37:uI0::...............................:, +18:uI1::............., +37:u02::...............................:, +18:u03::............., +6:u06:Si, +37:u10::...............................:, +18:u11::............., +6:u14:si, +18:uI0::............., +37:u01::...............................:, +18:u02::............., +6:u05:Si, +17:u07:(intra-domain, +18:u10::............., +6:u13:si, +37:u00::...............................:, +18:u01::............., +6:u04:Si, +17:u06:(intra-domain, +20:u08:physical/optical, +6:u12:si, +17:u14:(intra-domain, +6:u22:Si, +6:u23:Si, +18:u00::............., +6:u03:Si, +17:u05:(intra-domain, +20:u08:interconnections, +6:u11:si, +17:u13:(intra-domain, +9:uI2:(--)-, +6:u02:Si, +17:u04:(intra-domain, +20:u07:physical/optical, +20:u07:interconnections, +6:u10:si, +17:u12:(intra-domain, +8:u23:(int, +9:uI1:(--)-, +6:u01:Si, +17:u03:(intra-domain, +20:u06:physical/optical, +20:u06:interconnections, +17:u11:(intra-domain, +20:u14:physical/optical, +9:uI0:(--)-, +6:u00:Si, +17:u02:(intra-domain, +20:u05:physical/optical, +20:u05:interconnections, +17:u10:(intra-domain, +20:u13:physical/optical, +17:u01:(intra-domain, +20:u04:physical/optical, +20:u04:interconnections, +20:u12:physical/optical, +17:u00:(intra-domain, +20:u03:physical/optical, +20:u03:interconnections, +20:u11:physical/optical, +20:u02:physical/optical, +20:u02:interconnections, +20:u10:physical/optical, +20:u01:physical/optical, +20:u01:interconnections, +20:u00:physical/optical, +20:u00:interconnections, +16:u08:technologies, +16:u07:technologies, +9:u08:STM-N, +16:u06:technologies, +9:u07:STM-N, +16:u05:technologies, +9:u06:STM-N, +16:u04:technologies, +9:u05:STM-N, +9:uI2:,-).., +16:u03:technologies, +9:u04:STM-N, +9:u08:OTU2), +9:uI1:,-).., +16:u02:technologies, +9:u03:STM-N, +9:u07:OTU2), +9:uI0:,-).., +16:u01:technologies, +9:u02:STM-N, +9:u06:OTU2), +14:u08:functional, +16:u00:technologies, +9:u01:STM-N, +9:u05:OTU2), +7:uI2:)(-, +9:u00:STM-N, +9:u04:OTU2), +7:uI1:)(-, +14:u07:functional, +9:u03:OTU2), +7:uI0:)(-, +14:u06:functional, +9:u02:OTU2), +14:u14:functional, +14:u05:functional, +9:u01:OTU2), +14:u13:functional, +14:u04:functional, +9:u00:OTU2), +14:u12:functional, +14:u03:functional, +18:u08:--------------, +14:u11:functional, +14:u02:functional, +14:u10:functional, +14:u01:functional, +18:u07:--------------, +14:u00:functional, +18:u06:--------------, +18:u14:--------------, +18:u05:--------------, +7:u08:CNC, +18:u13:--------------, +18:u04:--------------, +18:u12:--------------, +18:u03:--------------, +7:u07:CNC, +18:u11:--------------, +18:u02:--------------, +7:u06:CNC, +18:u10:--------------, +7:u14:cnc, +18:u01:--------------, +7:u05:CNC, +7:u13:cnc, +18:u00:--------------, +7:u04:CNC, +7:u12:cnc, +7:u23:CNC, +7:u03:CNC, +48:u08:....................|......................., +7:u11:cnc, +7:u02:CNC, +7:u08:CMI, +7:u10:cnc, +7:u01:CNC, +48:u07:....................|......................., +20:u08:----------------, +7:u07:CMI, +7:u00:CNC, +48:u06:....................|......................., +7:u06:CMI, +48:u14:....................|......................., +48:u05:....................|......................., +20:u07:----------------, +7:u05:CMI, +48:u13:....................|......................., +48:u04:....................|......................., +20:u06:----------------, +7:u04:CMI, +48:u12:....................|......................., +20:u14:----------------, +48:u03:....................|......................., +20:u05:----------------, +8:u08:MDSC, +7:u03:CMI, +48:u11:....................|......................., +20:u13:----------------, +48:u02:....................|......................., +20:u04:----------------, +7:u02:CMI, +48:u10:....................|......................., +20:u12:----------------, +48:u01:....................|......................., +20:u03:----------------, +8:u07:MDSC, +7:u01:CMI, +20:u11:----------------, +48:u00:....................|......................., +20:u02:----------------, +8:u06:MDSC, +7:u00:CMI, +20:u10:----------------, +8:u14:mdsc, +20:u01:----------------, +8:u05:MDSC, +8:u13:mdsc, +20:u00:----------------, +8:u04:MDSC, +8:u12:mdsc, +8:u03:MDSC, +8:u11:mdsc, +8:u02:MDSC, +8:u10:mdsc, +8:u01:MDSC, +8:u00:MDSC, +48:u08:............../.....|......\................, +8:u08:MPIs, +48:u07:............../.....|......\................, +8:u07:MPIs, +48:u06:............../.....|......\................, +8:u06:MPIs, +48:u14:............../.....|......\................, +48:u05:............../.....|......\................, +8:u05:MPIs, +48:u13:............../.....|......\................, +46:uI2:............../..........................., +48:u04:............../.....|......\................, +14:u08:----------, +8:u04:MPIs, +48:u12:............../.....|......\................, +46:uI1:............../..........................., +48:u03:............../.....|......\................, +8:u03:MPIs, +48:u11:............../.....|......\................, +46:uI0:............../..........................., +48:u02:............../.....|......\................, +14:u07:----------, +8:u02:MPIs, +48:u10:............../.....|......\................, +48:u01:............../.....|......\................, +14:u06:----------, +8:u01:MPIs, +14:u14:----------, +48:u00:............../.....|......\................, +14:u05:----------, +8:u08:PNC2, +8:u00:MPIs, +14:u13:----------, +14:u04:----------, +14:u12:----------, +14:u03:----------, +8:u07:PNC2, +14:u11:----------, +14:u02:----------, +8:u06:PNC2, +14:u10:----------, +8:u14:pnc2, +14:u01:----------, +8:u05:PNC2, +8:u13:pnc2, +14:u00:----------, +8:u04:PNC2, +8:u12:pnc2, +8:u23:PNC2, +8:u03:PNC2, +8:u11:pnc2, +8:u02:PNC2, +8:u10:pnc2, +8:u01:PNC2, +8:u00:PNC2, +8:u08:PNC1, +8:u07:PNC1, +9:u08:-----, +8:u06:PNC1, +8:u14:pnc1, +8:u05:PNC1, +9:u07:-----, +8:u13:pnc1, +8:u04:PNC1, +9:u06:-----, +5:u08:(, +8:u12:pnc1, +9:u14:-----, +8:u23:PNC1, +8:u03:PNC1, +9:u05:-----, +5:u08:), +8:u11:pnc1, +9:u13:-----, +8:u02:PNC1, +9:u04:-----, +5:u07:(, +8:u10:pnc1, +9:u12:-----, +8:u01:PNC1, +9:u03:-----, +5:u06:(, +5:u07:), +9:u11:-----, +5:u14:(, +8:u00:PNC1, +9:u02:-----, +5:u05:(, +5:u06:), +9:u10:-----, +5:u13:(, +5:u14:), +9:u01:-----, +5:u04:(, +5:u05:), +5:u12:(, +5:u13:), +5:u21:(, +5:u22:(, +5:u23:(, +9:u00:-----, +5:u03:(, +5:u04:), +5:u11:(, +5:u12:), +5:u20:), +5:u21:), +5:u22:), +5:u23:), +5:u02:(, +5:u03:), +8:u08:PNC3, +5:u10:(, +5:u11:), +5:u01:(, +5:u02:), +5:u10:), +5:u00:(, +5:u01:), +8:u07:PNC3, +5:u00:), +8:u06:PNC3, +8:u14:pnc3, +8:u05:PNC3, +8:u13:pnc3, +8:u04:PNC3, +8:u12:pnc3, +8:u23:PNC3, +8:u03:PNC3, +8:u11:pnc3, +8:u02:PNC3, +8:u10:pnc3, +8:u01:PNC3, +8:u00:PNC3, +17:u08:technologies., +8:u14:care, +17:u07:technologies., +8:u13:care, +17:u06:technologies., +8:u12:care, +17:u14:technologies., +17:u05:technologies., +8:u11:care, +17:u13:technologies., +17:u04:technologies., +8:u10:care, +17:u12:technologies., +17:u03:technologies., +17:u11:technologies., +17:u02:technologies., +17:u10:technologies., +17:u01:technologies., +17:u00:technologies., +24:u08:equivalent/analogous, +24:u07:equivalent/analogous, +8:u14:actn, +24:u06:equivalent/analogous, +8:u13:actn, +24:u14:equivalent/analogous, +24:u05:equivalent/analogous, +8:u12:actn, +24:u13:equivalent/analogous, +7:u22:ACT, +8:u23:ACTN, +24:u04:equivalent/analogous, +8:u11:actn, +24:u12:equivalent/analogous, +24:u03:equivalent/analogous, +8:u10:actn, +24:u11:equivalent/analogous, +24:u02:equivalent/analogous, +8:u08:[MEF, +24:u10:equivalent/analogous, +9:uI2:-[-],, +24:u01:equivalent/analogous, +8:u07:[MEF, +9:uI1:-[-],, +24:u00:equivalent/analogous, +8:u06:[MEF, +9:uI0:-[-],, +8:u05:[MEF, +8:u04:[MEF, +8:u03:[MEF, +8:uI2::[],, +8:u02:[MEF, +8:uI1::[],, +8:u01:[MEF, +8:uI0::[],, +8:u00:[MEF, +17:u08:multi-domain., +17:u07:multi-domain., +17:u06:multi-domain., +17:u14:multi-domain., +17:u05:multi-domain., +17:u13:multi-domain., +17:u04:multi-domain., +17:u12:multi-domain., +17:u03:multi-domain., +17:u11:multi-domain., +17:u02:multi-domain., +17:u10:multi-domain., +18:u14:configurations, +17:u01:multi-domain., +18:u13:configurations, +17:u00:multi-domain., +18:u12:configurations, +18:u11:configurations, +18:u10:configurations, +12:u08:abstract, +16:u08:"Abstraction, +12:u07:abstract, +12:u06:abstract, +16:u07:"Abstraction, +12:u05:abstract, +16:u06:"Abstraction, +12:u04:abstract, +16:u14:"abstraction, +16:u05:"Abstraction, +12:u03:abstract, +16:u13:"abstraction, +16:u04:"Abstraction, +12:u02:abstract, +16:u12:"abstraction, +7:u22:"Ab, +8:u23:"Abs, +16:u03:"Abstraction, +12:u01:abstract, +16:u11:"abstraction, +16:u02:"Abstraction, +12:u00:abstract, +16:u10:"abstraction, +16:u01:"Abstraction, +16:u00:"Abstraction, +12:u08:Provides, +12:u07:Provides, +12:u06:Provides, +6:uI2:.", +12:u05:Provides, +6:uI1:.", +14:u08:[RFC8453],, +12:u04:Provides, +10:u08:design, +6:uI0:.", +12:u03:Provides, +10:u07:design, +14:u07:[RFC8453],, +12:u02:Provides, +10:u06:design, +9:u08:White, +14:u06:[RFC8453],, +12:u01:Provides, +10:u05:design, +9:u07:White, +14:u14:[rfc8453],, +14:u05:[RFC8453],, +12:u00:Provides, +10:u04:design, +9:u06:White, +14:u13:[rfc8453],, +8:uI2:[],:, +14:u04:[RFC8453],, +10:u03:design, +9:u05:White, +13:u08:topology;, +14:u12:[rfc8453],, +8:uI1:[],:, +14:u03:[RFC8453],, +10:u02:design, +9:u04:White, +13:u07:topology;, +9:u08:Black, +14:u11:[rfc8453],, +8:uI0:[],:, +14:u02:[RFC8453],, +14:u08:disclosing, +10:u01:design, +9:u03:White, +13:u06:topology;, +9:u07:Black, +14:u10:[rfc8453],, +14:u01:[RFC8453],, +10:u00:design, +9:u02:White, +13:u05:topology;, +9:u06:Black, +14:u00:[RFC8453],, +14:u07:disclosing, +9:u01:White, +13:u04:topology;, +9:u05:Black, +8:u08:Grey, +14:u06:disclosing, +9:u00:White, +13:u03:topology;, +9:u04:Black, +8:u07:Grey, +9:u08:white, +14:u14:disclosing, +14:u05:disclosing, +13:u02:topology;, +9:u03:Black, +8:u06:Grey, +9:u07:white, +14:u13:disclosing, +14:u04:disclosing, +13:u01:topology;, +9:u02:Black, +8:u05:Grey, +9:u06:white, +17:u08:differentiate, +14:u12:disclosing, +14:u03:disclosing, +9:u08:-Grey, +13:u00:topology;, +9:u01:Black, +8:u04:Grey, +9:u05:white, +17:u07:differentiate, +14:u11:disclosing, +14:u02:disclosing, +9:u00:Black, +8:u03:Grey, +9:u04:white, +17:u06:differentiate, +14:u10:disclosing, +14:u01:disclosing, +9:u07:-Grey, +8:u02:Grey, +9:u03:white, +17:u05:differentiate, +12:u14:internal, +14:u00:disclosing, +9:u06:-Grey, +14:u08:abstracted, +8:u01:Grey, +9:u02:white, +17:u04:differentiate, +12:u13:internal, +9:u14:-grey, +9:u05:-Grey, +8:u00:Grey, +9:u01:white, +17:u03:differentiate, +12:u12:internal, +9:u13:-grey, +9:u04:-Grey, +14:u07:abstracted, +9:u00:white, +17:u02:differentiate, +7:u08:PNC, +12:u11:internal, +9:u12:-grey, +7:u22:-Gr, +8:u23:-Gre, +9:u03:-Grey, +14:u06:abstracted, +17:u01:differentiate, +7:u07:PNC, +12:u10:internal, +9:u11:-grey, +14:u14:abstracted, +9:u02:-Grey, +14:u05:abstracted, +17:u00:differentiate, +7:u06:PNC, +9:u10:-grey, +14:u13:abstracted, +9:u01:-Grey, +14:u04:abstracted, +7:u05:PNC, +14:u12:abstracted, +9:u00:-Grey, +14:u03:abstracted, +7:u04:PNC, +14:u11:abstracted, +14:u02:abstracted, +7:u03:PNC, +14:u10:abstracted, +14:u01:abstracted, +7:u02:PNC, +14:u00:abstracted, +7:u01:PNC, +7:u00:PNC, +11:u08:analyze, +11:u07:analyze, +17:u08:abstractions,, +11:u06:analyze, +11:u05:analyze, +17:u07:abstractions,, +9:u08:MPI1,, +11:u04:analyze, +17:u06:abstractions,, +11:u03:analyze, +17:u14:abstractions,, +17:u05:abstractions,, +9:u07:MPI1,, +11:u02:analyze, +17:u13:abstractions,, +17:u04:abstractions,, +9:u06:MPI1,, +11:u01:analyze, +17:u12:abstractions,, +9:u14:mpi1,, +17:u03:abstractions,, +9:u05:MPI1,, +11:u00:analyze, +17:u11:abstractions,, +9:u13:mpi1,, +17:u02:abstractions,, +9:u04:MPI1,, +14:u08:topologies, +17:u10:abstractions,, +9:u12:mpi1,, +7:u22:MPI, +8:u23:MPI1, +17:u01:abstractions,, +9:u03:MPI1,, +9:u11:mpi1,, +17:u00:abstractions,, +9:u02:MPI1,, +14:u07:topologies, +14:u08:oversight,, +9:u10:mpi1,, +9:u01:MPI1,, +14:u06:topologies, +14:u14:topologies, +9:u00:MPI1,, +14:u05:topologies, +14:u07:oversight,, +14:u13:topologies, +14:u04:topologies, +14:u06:oversight,, +14:u12:topologies, +14:u14:oversight,, +14:u03:topologies, +14:u05:oversight,, +14:u08:customers', +14:u11:topologies, +14:u13:oversight,, +14:u02:topologies, +14:u04:oversight,, +10:u08:needs:, +14:u10:topologies, +14:u12:oversight,, +14:u01:topologies, +14:u03:oversight,, +14:u07:customers', +10:u07:needs:, +14:u11:oversight,, +14:u00:topologies, +14:u02:oversight,, +14:u06:customers', +10:u06:needs:, +14:u10:oversight,, +14:u14:customers', +14:u01:oversight,, +14:u05:customers', +10:u05:needs:, +14:u13:customers', +6:uI2:':, +14:u00:oversight,, +14:u04:customers', +10:u04:needs:, +14:u12:customers', +6:uI1:':, +14:u03:customers', +10:u03:needs:, +14:u11:customers', +6:uI0:':, +14:u02:customers', +17:u08:connectivity., +10:u02:needs:, +14:u10:customers', +14:u01:customers', +10:u01:needs:, +14:u00:customers', +17:u07:connectivity., +10:u00:needs:, +17:u06:connectivity., +17:u14:connectivity., +17:u05:connectivity., +17:u13:connectivity., +17:u04:connectivity., +8:u08:foo), +17:u12:connectivity., +9:u14:(e.g., +17:u03:connectivity., +17:u11:connectivity., +9:u13:(e.g., +17:u02:connectivity., +8:u07:foo), +17:u10:connectivity., +9:u12:(e.g., +17:u01:connectivity., +8:u06:foo), +9:u11:(e.g., +8:u14:foo), +17:u00:connectivity., +8:u05:foo), +9:u10:(e.g., +8:u13:foo), +9:uI2:)(-),, +8:u04:foo), +8:u12:foo), +7:u22:foo, +8:u23:foo), +9:uI1:)(-),, +8:u03:foo), +8:u11:foo), +9:uI0:)(-),, +8:u02:foo), +8:u10:foo), +8:u01:foo), +9:u08:PNCs., +8:u00:foo), +9:u07:PNCs., +9:u06:PNCs., +9:u05:PNCs., +9:u04:PNCs., +9:u03:PNCs., +18:u08:pre-configured, +9:u02:PNCs., +9:u01:PNCs., +18:u07:pre-configured, +9:u00:PNCs., +20:u14:interconnections, +18:u06:pre-configured, +20:u13:interconnections, +18:u14:pre-configured, +18:u05:pre-configured, +10:u08:ODU2)., +20:u12:interconnections, +18:u13:pre-configured, +18:u04:pre-configured, +20:u11:interconnections, +18:u12:pre-configured, +18:u03:pre-configured, +10:u07:ODU2)., +20:u10:interconnections, +18:u11:pre-configured, +14:u14:interfaces, +18:u02:pre-configured, +10:u06:ODU2)., +7:u08:S1,, +18:u10:pre-configured, +14:u13:interfaces, +10:u14:odu2)., +18:u01:pre-configured, +10:u05:ODU2)., +7:u08:S2,, +14:u12:interfaces, +10:u13:odu2)., +18:u00:pre-configured, +10:u04:ODU2)., +7:u07:S1,, +7:u07:S2,, +17:u08:(multi-domain, +14:u11:interfaces, +10:u12:odu2)., +6:u21:OD, +7:u22:ODU, +8:u23:ODU2, +10:u03:ODU2)., +7:u06:S1,, +7:u06:S2,, +17:u07:(multi-domain, +14:u10:interfaces, +10:u11:odu2)., +7:u14:s1,, +10:u02:ODU2)., +7:u05:S1,, +7:u05:S2,, +17:u06:(multi-domain, +13:u08:[(ODU2)],, +10:u10:odu2)., +7:u13:s1,, +10:u01:ODU2)., +7:u04:S1,, +7:u04:S2,, +17:u05:(multi-domain, +13:u07:[(ODU2)],, +7:u12:s1,, +7:u22:S1,, +7:u23:S1,, +8:uI2:(-):, +10:u00:ODU2)., +7:u03:S1,, +7:u03:S2,, +17:u04:(multi-domain, +13:u06:[(ODU2)],, +7:u11:s1,, +8:uI1:(-):, +25:uI2:[()-],[(]),[(]),[(]),, +7:u02:S1,, +7:u02:S2,, +17:u03:(multi-domain, +13:u05:[(ODU2)],, +7:u10:s1,, +7:u14:s15, +8:uI0:(-):, +25:uI1:[()-],[(]),[(]),[(]),, +19:uI2:[()],[()],[()],, +7:u01:S1,, +7:u01:S2,, +17:u02:(multi-domain, +13:u04:[(ODU2)],, +7:u13:s15, +25:uI0:[()-],[(]),[(]),[(]),, +19:uI1:[()],[()],[()],, +19:uI2:[()],[()],[-()], +7:u00:S1,, +7:u00:S2,, +17:u01:(multi-domain, +13:u03:[(ODU2)],, +7:u12:s15, +7:u22:S15, +7:u23:S15, +19:uI0:[()],[()],[()],, +19:uI1:[()],[()],[-()], +17:u00:(multi-domain, +13:u02:[(ODU2)],, +9:u08:PNCs,, +7:u11:s15, +19:uI0:[()],[()],[-()], +13:u01:[(ODU2)],, +9:u07:PNCs,, +7:u10:s15, +11:u14:decides, +13:u00:[(ODU2)],, +9:u06:PNCs,, +11:u13:decides, +9:u05:PNCs,, +11:u12:decides, +13:u08:request):, +9:u04:PNCs,, +11:u11:decides, +9:u03:PNCs,, +11:u10:decides, +13:u07:request):, +9:u02:PNCs,, +13:u06:request):, +9:u01:PNCs,, +13:u14:request):, +13:u05:request):, +9:u00:PNCs,, +13:u13:request):, +13:u04:request):, +13:u12:request):, +13:u03:request):, +13:u11:request):, +13:u02:request):, +13:u10:request):, +7:u14:cmi, +13:u01:request):, +7:u13:cmi, +13:u00:request):, +7:u12:cmi, +6:u21:CM, +7:u22:CMI, +7:u23:CMI, +7:u11:cmi, +7:u10:cmi, +7:u08:(up, +7:u07:(up, +7:u06:(up, +7:u14:(up, +7:u05:(up, +7:u13:(up, +7:u04:(up, +7:u12:(up, +7:u22:(up, +7:u23:(up, +7:u03:(up, +8:u08:S31,, +7:u11:(up, +7:u02:(up, +8:u08:S33,, +7:u10:(up, +7:u01:(up, +8:u07:S31,, +8:u07:S33,, +7:u00:(up, +8:u06:S31,, +8:u06:S33,, +8:u14:s31,, +8:u05:S31,, +8:u05:S33,, +8:u13:s31,, +9:uI2:,,,(-, +8:u04:S31,, +8:u04:S33,, +8:u12:s31,, +8:u23:S31,, +9:uI1:,,,(-, +8:u03:S31,, +8:u03:S33,, +8:u11:s31,, +9:uI0:,,,(-, +21:uI2:[()-],[-()],[()],, +8:u02:S31,, +8:u02:S33,, +8:u10:s31,, +21:uI1:[()-],[-()],[()],, +24:uI2:[()],[()),[()],[()],, +8:u01:S31,, +8:u01:S33,, +21:uI0:[()-],[-()],[()],, +24:uI1:[()],[()),[()],[()],, +20:uI2:[()],[()-],[-()], +8:u00:S31,, +8:u00:S33,, +24:uI0:[()],[()),[()],[()],, +20:uI1:[()],[()-],[-()], +20:uI0:[()],[()-],[-()], +6:u08:S3, +7:u08:S18, +6:u07:S3, +14:u14:coordinate, +6:u06:S3, +11:u08:[(ODU2), +14:u13:coordinate, +7:u07:S18, +6:u05:S3, +11:u07:[(ODU2), +14:u12:coordinate, +8:u23:coor, +7:u06:S18, +6:u04:S3, +11:u06:[(ODU2), +14:u11:coordinate, +7:u14:s18, +10:uI2:,[-()], +7:u05:S18, +6:u03:S3, +11:u05:[(ODU2), +14:u10:coordinate, +7:u13:s18, +10:uI1:,[-()], +10:uI2:[()-]., +7:u04:S18, +6:u02:S3, +11:u04:[(ODU2), +7:u12:s18, +7:u22:S18, +7:u23:S18, +10:uI0:,[-()], +10:uI1:[()-]., +7:u03:S18, +6:u08:S6, +6:u01:S3, +11:u03:[(ODU2), +7:u11:s18, +10:uI0:[()-]., +7:u02:S18, +6:u00:S3, +11:u02:[(ODU2), +7:u10:s18, +7:u01:S18, +6:u07:S6, +11:u01:[(ODU2), +7:u00:S18, +6:u06:S6, +11:u00:[(ODU2), +6:u14:s6, +20:uI2:[()-],[-()][()],, +6:u05:S6, +6:u13:s6, +20:uI1:[()-],[-()][()],, +15:uI2:[()-],[-()], +6:u04:S6, +6:u12:s6, +6:u21:S6, +6:u22:S6, +6:u23:S6, +20:uI0:[()-],[-()][()],, +15:uI1:[()-],[-()], +6:u03:S6, +6:u11:s6, +15:uI0:[()-],[-()], +6:u02:S6, +6:u10:s6, +6:u01:S6, +6:u00:S6, +7:u08:S6,, +9:u08:PNC1., +7:u07:S6,, +7:u06:S6,, +9:u07:PNC1., +10:u08:[ITU-T, +7:u05:S6,, +9:u06:PNC1., +10:u08:layers, +7:u04:S6,, +10:u08:G.709], +9:u14:pnc1., +9:u05:PNC1., +10:u07:[ITU-T, +7:u03:S6,, +10:u07:G.709], +9:u13:pnc1., +9:u04:PNC1., +10:u06:[ITU-T, +10:u07:layers, +7:u02:S6,, +10:u06:G.709], +9:u12:pnc1., +10:u14:[itu-t, +9:u03:PNC1., +10:u05:[ITU-T, +10:u06:layers, +15:u08:InfiniBand,, +7:u01:S6,, +10:u05:G.709], +9:u11:pnc1., +10:u13:[itu-t, +10:u14:layers, +8:uI2:[-.], +9:u02:PNC1., +10:u04:[ITU-T, +10:u05:layers, +7:u00:S6,, +10:u04:G.709], +9:u08:etc.), +9:u10:pnc1., +10:u12:[itu-t, +10:u13:layers, +7:u22:[IT, +8:u23:[ITU, +8:uI1:[-.], +9:u01:PNC1., +10:u03:[ITU-T, +10:u04:layers, +15:u07:InfiniBand,, +10:u03:G.709], +9:u07:etc.), +10:u11:[itu-t, +10:u12:layers, +8:uI0:[-.], +9:u00:PNC1., +10:u02:[ITU-T, +10:u03:layers, +15:u06:InfiniBand,, +10:u02:G.709], +9:u06:etc.), +10:u10:[itu-t, +10:u11:layers, +15:u14:infiniband,, +12:uI2:(..,,-,,, +10:u01:[ITU-T, +10:u02:layers, +15:u05:InfiniBand,, +10:u01:G.709], +9:u05:etc.), +7:u08:SDH, +10:u10:layers, +15:u13:infiniband,, +12:uI1:(..,,-,,, +7:uI2:,.), +10:u00:[ITU-T, +10:u01:layers, +15:u04:InfiniBand,, +10:u00:G.709], +9:u04:etc.), +7:u07:SDH, +15:u12:infiniband,, +8:u23:Infi, +12:uI0:(..,,-,,, +7:uI1:,.), +10:u00:layers, +15:u03:InfiniBand,, +9:u03:etc.), +7:u06:SDH, +15:u11:infiniband,, +7:uI0:,.), +15:u02:InfiniBand,, +9:u02:etc.), +7:u05:SDH, +15:u10:infiniband,, +15:u01:InfiniBand,, +9:u01:etc.), +7:u04:SDH, +8:u08:S15,, +15:u00:InfiniBand,, +9:u00:etc.), +7:u03:SDH, +8:u07:S15,, +6:u14:s3, +7:u02:SDH, +8:u06:S15,, +6:u13:s3, +7:u01:SDH, +8:u05:S15,, +6:u12:s3, +6:u22:S3, +6:u23:S3, +7:u00:SDH, +8:u04:S15,, +6:u11:s3, +8:u03:S15,, +6:u10:s3, +23:uI2:[()--],[--()],[()],, +8:u02:S15,, +23:uI1:[()--],[--()],[()],, +24:uI2:[()],[()],[()],[()],, +8:u01:S15,, +11:u08:needed,, +23:uI0:[()--],[--()],[()],, +24:uI1:[()],[()],[()],[()],, +22:uI2:[()],[()--],[--()], +19:u08:configurations,, +8:u00:S15,, +11:u07:needed,, +24:uI0:[()],[()],[()],[()],, +22:uI1:[()],[()--],[--()], +11:u06:needed,, +22:uI0:[()],[()--],[--()], +19:u07:configurations,, +11:u05:needed,, +19:u06:configurations,, +11:u04:needed,, +19:u14:configurations,, +19:u05:configurations,, +11:u03:needed,, +19:u13:configurations,, +19:u04:configurations,, +11:u02:needed,, +19:u12:configurations,, +11:uI2:,[--()], +19:u03:configurations,, +11:u01:needed,, +19:u11:configurations,, +11:uI1:,[--()], +11:uI2:[()--]., +19:u02:configurations,, +11:u00:needed,, +19:u10:configurations,, +11:uI0:,[--()], +11:uI1:[()--]., +19:u01:configurations,, +11:uI0:[()--]., +19:u00:configurations,, +17:uI2:[()--],[--()], +17:uI1:[()--],[--()], +17:uI0:[()--],[--()], +18:u08:(single-domain, +18:u07:(single-domain, +18:u06:(single-domain, +18:u14:(single-domain, +18:u05:(single-domain, +18:u13:(single-domain, +18:u04:(single-domain, +18:u12:(single-domain, +8:u23:(sin, +18:u03:(single-domain, +18:u11:(single-domain, +18:u02:(single-domain, +18:u10:(single-domain, +18:u01:(single-domain, +18:u00:(single-domain, +16:u08:connections:, +16:u07:connections:, +16:u06:connections:, +11:u08:[(ODU0), +16:u05:connections:, +11:u07:[(ODU0), +16:u04:connections:, +11:u06:[(ODU0), +13:u08:[(ODU0)],, +16:u03:connections:, +11:u05:[(ODU0), +13:u07:[(ODU0)],, +16:u02:connections:, +11:u04:[(ODU0), +13:u06:[(ODU0)],, +16:u01:connections:, +11:u03:[(ODU0), +13:u05:[(ODU0)],, +16:u00:connections:, +11:u02:[(ODU0), +13:u04:[(ODU0)],, +11:u01:[(ODU0), +13:u03:[(ODU0)],, +11:u00:[(ODU0), +13:u02:[(ODU0)],, +13:u08:request)., +13:u01:[(ODU0)],, +13:u07:request)., +13:u00:[(ODU0)],, +13:u06:request)., +13:u05:request)., +13:u04:request)., +13:u03:request)., +13:u02:request)., +13:u01:request)., +13:u00:request)., +10:u08:STM-64, +10:u07:STM-64, +10:u06:STM-64, +10:u14:stm-64, +10:u05:STM-64, +18:u08:configuration), +7:u08:MPI, +10:u13:stm-64, +10:u04:STM-64, +7:u07:MPI, +10:u12:stm-64, +7:u22:STM, +8:u23:STM-, +10:u03:STM-64, +18:u07:configuration), +7:u06:MPI, +8:u08:4.3:, +10:u11:stm-64, +10:u02:STM-64, +18:u06:configuration), +7:u05:MPI, +8:u07:4.3:, +10:u10:stm-64, +18:u14:configuration), +10:u01:STM-64, +18:u05:configuration), +7:u04:MPI, +8:u06:4.3:, +12:u08:(section, +18:u13:configuration), +10:u00:STM-64, +18:u04:configuration), +7:u03:MPI, +8:u05:4.3:, +12:u07:(section, +18:u12:configuration), +8:uI2:.:,-, +18:u03:configuration), +7:u02:MPI, +8:u04:4.3:, +12:u06:(section, +18:u11:configuration), +8:uI1:.:,-, +10:uI2:-(..),, +18:u02:configuration), +7:u01:MPI, +8:u03:4.3:, +12:u05:(section, +18:u10:configuration), +8:uI0:.:,-, +10:uI1:-(..),, +14:uI2:(..)-(..)., +18:u01:configuration), +7:u00:MPI, +8:u02:4.3:, +12:u04:(section, +10:uI0:-(..),, +14:uI1:(..)-(..)., +18:u00:configuration), +20:u08:multi-functional, +8:u01:4.3:, +12:u03:(section, +14:uI0:(..)-(..)., +9:uI2:(,-,), +8:u00:4.3:, +12:u02:(section, +9:uI1:(,-,), +20:u07:multi-functional, +17:u08:respectively,, +12:u01:(section, +9:uI0:(,-,), +20:u06:multi-functional, +8:u08:Line, +12:u00:(section, +20:u14:multi-functional, +20:u05:multi-functional, +17:u07:respectively,, +20:u13:multi-functional, +20:u04:multi-functional, +17:u06:respectively,, +8:u07:Line, +20:u12:multi-functional, +17:u14:respectively,, +20:u03:multi-functional, +17:u05:respectively,, +8:u06:Line, +20:u11:multi-functional, +17:u13:respectively,, +20:u02:multi-functional, +17:u04:respectively,, +8:u05:Line, +20:u10:multi-functional, +17:u12:respectively,, +20:u01:multi-functional, +17:u03:respectively,, +8:u04:Line, +17:u11:respectively,, +8:u23:Line, +20:u00:multi-functional, +17:u02:respectively,, +8:u03:Line, +17:u10:respectively,, +17:u01:respectively,, +8:u02:Line, +17:u00:respectively,, +8:u01:Line, +8:u00:Line, +9:u08:MDSC,, +9:u07:MDSC,, +9:u06:MDSC,, +9:u05:MDSC,, +9:u04:MDSC,, +9:u03:MDSC,, +9:u02:MDSC,, +9:u01:MDSC,, +9:u00:MDSC,, +18:u08:bidirectional., +14:u14:mechanism,, +15:u08:Restoration, +14:u13:mechanism,, +18:u07:bidirectional., +14:u12:mechanism,, +18:u06:bidirectional., +15:u07:Restoration, +14:u11:mechanism,, +18:u14:bidirectional., +7:uI2:),:, +18:u05:bidirectional., +15:u06:Restoration, +14:u10:mechanism,, +18:u13:bidirectional., +15:u14:restoration, +7:uI1:),:, +18:u04:bidirectional., +15:u05:Restoration, +18:u12:bidirectional., +15:u13:restoration, +7:uI0:),:, +18:u03:bidirectional., +15:u04:Restoration, +18:u11:bidirectional., +15:u12:restoration, +18:u02:bidirectional., +15:u03:Restoration, +18:u10:bidirectional., +15:u11:restoration, +18:u01:bidirectional., +15:u02:Restoration, +15:u10:restoration, +18:u00:bidirectional., +15:u01:Restoration, +15:u00:Restoration, +7:u08:4.3, +7:u07:4.3, +10:u08:linear, +11:uI2:...(--), +7:u06:4.3, +7:u14:4.3, +11:uI1:...(--), +7:u05:4.3, +10:u07:linear, +7:u13:4.3, +11:uI0:...(--), +7:u04:4.3, +10:u06:linear, +7:u12:4.3, +10:u14:linear, +7:u23:4.3, +7:u03:4.3, +10:u05:linear, +7:u11:4.3, +10:u13:linear, +7:u02:4.3, +10:u04:linear, +7:u10:4.3, +10:u12:linear, +7:u01:4.3, +10:u03:linear, +10:u11:linear, +7:u00:4.3, +10:u02:linear, +10:u10:linear, +10:u01:linear, +7:u08:1+1, +10:u00:linear, +12:u08:G.808.1], +18:u08:unidirectional, +7:u07:1+1, +18:u07:unidirectional, +7:u06:1+1, +12:u07:G.808.1], +18:u06:unidirectional, +7:u14:1+1, +7:u05:1+1, +12:u06:G.808.1], +18:u05:unidirectional, +11:u08:entity,, +7:u13:1+1, +12:u14:g.808.1], +7:uI2:,[-, +7:u04:1+1, +12:u05:G.808.1], +18:u04:unidirectional, +11:u07:entity,, +7:u12:1+1, +12:u13:g.808.1], +6:u21:1+, +7:u22:1+1, +7:u23:1+1, +7:uI1:,[-, +16:uI2:..][-..],[]., +7:u03:1+1, +12:u04:G.808.1], +18:u03:unidirectional, +11:u06:entity,, +7:u11:1+1, +12:u12:g.808.1], +7:u22:G.8, +8:u23:G.80, +7:uI0:,[-, +16:uI1:..][-..],[]., +7:u02:1+1, +12:u03:G.808.1], +18:u02:unidirectional, +11:u05:entity,, +7:u10:1+1, +12:u11:g.808.1], +16:uI0:..][-..],[]., +12:uI2:,[-..],(, +7:u01:1+1, +12:u02:G.808.1], +18:u01:unidirectional, +11:u04:entity,, +12:u10:g.808.1], +12:uI1:,[-..],(, +8:uI2:,[]), +7:u00:1+1, +12:u01:G.808.1], +11:u08:Working, +18:u00:unidirectional, +11:u03:entity,, +12:uI0:,[-..],(, +8:uI1:,[]), +12:u00:G.808.1], +7:u08:S3,, +11:u02:entity,, +8:uI0:,[]), +11:u07:Working, +11:u01:entity,, +11:u06:Working, +7:u07:S3,, +11:u00:entity,, +7:u06:S3,, +7:u14:s3,, +7:u05:S3,, +8:u08:S32,, +7:u13:s3,, +7:u04:S3,, +8:u08:S12,, +7:u12:s3,, +8:u14:s15,, +7:u22:S3,, +7:u23:S3,, +7:u03:S3,, +8:u07:S32,, +8:u08:S17,, +7:u11:s3,, +8:u13:s15,, +7:u02:S3,, +8:u06:S32,, +8:u07:S12,, +8:u07:S17,, +7:u10:s3,, +8:u12:s15,, +8:u14:s32,, +8:u23:S15,, +7:u01:S3,, +8:u05:S32,, +8:u06:S12,, +8:u06:S17,, +8:u08:pass, +8:u11:s15,, +8:u13:s32,, +8:u14:s12,, +7:u00:S3,, +8:u04:S32,, +8:u05:S12,, +8:u05:S17,, +8:u07:pass, +8:u10:s15,, +8:u12:s32,, +8:u13:s12,, +7:u22:S32, +8:u23:S32,, +8:u03:S32,, +8:u04:S12,, +8:u08:S11,, +8:u04:S17,, +8:u06:pass, +7:u08:S5,, +8:u11:s32,, +8:u12:s12,, +7:u22:S12, +8:u23:S12,, +8:u02:S32,, +8:u03:S12,, +8:u03:S17,, +8:u05:pass, +7:u07:S5,, +8:u10:s32,, +8:u11:s12,, +8:u01:S32,, +8:u02:S12,, +8:u07:S11,, +8:u02:S17,, +8:u04:pass, +7:u06:S5,, +8:u10:s12,, +8:u00:S32,, +8:u01:S12,, +8:u06:S11,, +8:u01:S17,, +8:u03:pass, +7:u05:S5,, +8:u14:s11,, +8:u00:S12,, +8:u05:S11,, +8:u00:S17,, +8:u02:pass, +7:u04:S5,, +8:u13:s11,, +8:u04:S11,, +8:u01:pass, +7:u03:S5,, +8:u08:PNCs, +8:u12:s11,, +8:u23:S11,, +8:u03:S11,, +8:u00:pass, +7:u02:S5,, +8:u07:PNCs, +8:u11:s11,, +8:u02:S11,, +7:u01:S5,, +8:u06:PNCs, +8:u10:s11,, +8:u01:S11,, +7:u00:S5,, +8:u05:PNCs, +8:u00:S11,, +8:u04:PNCs, +12:uI2:,[-..],., +14:u08:switching,, +8:u03:PNCs, +12:uI1:,[-..],., +8:u02:PNCs, +12:uI0:,[-..],., +14:u07:switching,, +8:u01:PNCs, +14:u06:switching,, +8:u00:PNCs, +14:u14:switching,, +14:u05:switching,, +14:u13:switching,, +14:u04:switching,, +14:u12:switching,, +14:u03:switching,, +14:u11:switching,, +14:u02:switching,, +14:u10:switching,, +14:u01:switching,, +14:u00:switching,, +12:u14:failures, +12:u13:failures, +12:u12:failures, +12:u11:failures, +12:u10:failures, +13:u08:function,, +11:u08:realize, +11:u07:realize, +13:u07:function,, +11:u06:realize, +13:u06:function,, +11:u05:realize, +13:u14:function,, +13:u05:function,, +11:u04:realize, +13:u13:function,, +13:u04:function,, +11:u03:realize, +9:u08:Alarm, +13:u12:function,, +13:u03:function,, +11:u02:realize, +9:u07:Alarm, +13:u11:function,, +13:u02:function,, +11:u01:realize, +9:u06:Alarm, +8:u08:4.2,, +13:u10:function,, +13:u01:function,, +11:u00:realize, +9:u05:Alarm, +8:u07:4.2,, +13:u00:function,, +9:u04:Alarm, +8:u06:4.2,, +9:u03:Alarm, +8:u05:4.2,, +9:u02:Alarm, +8:u04:4.2,, +9:u01:Alarm, +8:u03:4.2,, +9:u00:Alarm, +8:u02:4.2,, +8:u01:4.2,, +9:u08:MDSC., +8:u00:4.2,, +9:u07:MDSC., +9:u06:MDSC., +9:u14:mdsc., +9:u05:MDSC., +9:u13:mdsc., +9:u04:MDSC., +9:u12:mdsc., +9:u03:MDSC., +14:u08:constraint, +9:u11:mdsc., +9:u02:MDSC., +9:u10:mdsc., +9:u01:MDSC., +14:u07:constraint, +9:u00:MDSC., +14:u06:constraint, +14:u14:constraint, +14:u05:constraint, +14:u13:constraint, +14:u04:constraint, +14:u12:constraint, +14:u03:constraint, +14:u11:constraint, +14:u02:constraint, +14:u10:constraint, +14:u01:constraint, +7:u08:be:, +14:u00:constraint, +6:u08:S8, +7:u07:be:, +10:u08:(PKT)], +7:u06:be:, +13:u08:[(ODU2]),, +6:u07:S8, +7:u05:be:, +13:u07:[(ODU2]),, +6:u06:S8, +10:u07:(PKT)], +7:u04:be:, +13:u06:[(ODU2]),, +6:u14:s8, +6:u05:S8, +10:u06:(PKT)], +7:u03:be:, +13:u05:[(ODU2]),, +6:u13:s8, +10:u14:(pkt)], +26:uI2:[(]),[(]),[(]),[(]),[-, +6:u04:S8, +10:u05:(PKT)], +7:u02:be:, +13:u04:[(ODU2]),, +6:u12:s8, +10:u13:(pkt)], +6:u21:S8, +6:u22:S8, +6:u23:S8, +26:uI1:[(]),[(]),[(]),[(]),[-, +7:uI2:()], +6:u03:S8, +10:u04:(PKT)], +7:u01:be:, +13:u03:[(ODU2]),, +6:u11:s8, +10:u12:(pkt)], +6:u21:(P, +7:u22:(PK, +8:u23:(PKT, +26:uI0:[(]),[(]),[(]),[(]),[-, +7:uI1:()], +6:u02:S8, +10:u03:(PKT)], +7:u00:be:, +13:u02:[(ODU2]),, +6:u10:s8, +10:u11:(pkt)], +7:uI0:()], +6:u01:S8, +10:u02:(PKT)], +13:u01:[(ODU2]),, +10:u10:(pkt)], +6:u00:S8, +10:u01:(PKT)], +13:u00:[(ODU2]),, +10:u00:(PKT)], +15:u14:computation, +9:u08:MPIs,, +15:u13:computation, +15:u12:computation, +9:u07:MPIs,, +15:u11:computation, +9:u06:MPIs,, +15:u10:computation, +9:u14:mpis,, +9:u05:MPIs,, +8:u08:MPI., +9:u13:mpis,, +9:u04:MPIs,, +8:u07:MPI., +9:u12:mpis,, +8:u23:MPIs, +9:u03:MPIs,, +8:u06:MPI., +9:u11:mpis,, +9:u02:MPIs,, +8:u05:MPI., +9:u10:mpis,, +9:u01:MPIs,, +8:u04:MPI., +9:u00:MPIs,, +8:u03:MPI., +8:u02:MPI., +7:u08:5.1, +8:u01:MPI., +7:u07:5.1, +8:u00:MPI., +7:u06:5.1, +7:u08:5.2, +7:u05:5.1, +7:u07:5.2, +7:u04:5.1, +7:u06:5.2, +7:u03:5.1, +7:u05:5.2, +7:u08:5.3, +16:u08:intra-domain, +7:u02:5.1, +7:u04:5.2, +7:u07:5.3, +7:u01:5.1, +7:u03:5.2, +7:u06:5.3, +16:u07:intra-domain, +7:u00:5.1, +7:u02:5.2, +7:u05:5.3, +16:u06:intra-domain, +7:u01:5.2, +7:u04:5.3, +16:u14:intra-domain, +16:u05:intra-domain, +7:u00:5.2, +7:u03:5.3, +16:u13:intra-domain, +16:u04:intra-domain, +14:u08:[TE-TOPO],, +7:u02:5.3, +14:u08:[RFC8345],, +16:u12:intra-domain, +16:u03:intra-domain, +7:u01:5.3, +14:u07:[RFC8345],, +16:u11:intra-domain, +16:u02:intra-domain, +14:u07:[TE-TOPO],, +7:u00:5.3, +14:u06:[RFC8345],, +16:u10:intra-domain, +16:u01:intra-domain, +14:u06:[TE-TOPO],, +14:u05:[RFC8345],, +14:u08:[OTN-TOPO], +14:u14:[te-topo],, +16:u00:intra-domain, +14:u05:[TE-TOPO],, +14:u04:[RFC8345],, +14:u07:[OTN-TOPO], +14:u13:[te-topo],, +10:uI2:[-],-,, +14:u04:[TE-TOPO],, +20:u08:[CLIENT-SIGNAL]., +14:u03:[RFC8345],, +14:u06:[OTN-TOPO], +14:u12:[te-topo],, +8:u23:[TE-, +10:uI1:[-],-,, +14:u03:[TE-TOPO],, +14:u02:[RFC8345],, +14:u05:[OTN-TOPO], +14:u11:[te-topo],, +10:uI0:[-],-,, +14:u02:[TE-TOPO],, +20:u07:[CLIENT-SIGNAL]., +14:u01:[RFC8345],, +14:u04:[OTN-TOPO], +14:u10:[te-topo],, +14:u01:[TE-TOPO],, +20:u06:[CLIENT-SIGNAL]., +14:u00:[RFC8345],, +14:u03:[OTN-TOPO], +20:u14:[client-signal]., +14:u00:[TE-TOPO],, +20:u05:[CLIENT-SIGNAL]., +9:u08:4.3.2, +14:u02:[OTN-TOPO], +20:u13:[client-signal]., +9:uI2:[-].-, +20:u04:[CLIENT-SIGNAL]., +14:u01:[OTN-TOPO], +20:u12:[client-signal]., +7:u22:[CL, +8:u23:[CLI, +9:uI1:[-].-, +20:u03:[CLIENT-SIGNAL]., +9:u07:4.3.2, +14:u00:[OTN-TOPO], +20:u11:[client-signal]., +9:uI0:[-].-, +20:u02:[CLIENT-SIGNAL]., +9:u06:4.3.2, +20:u10:[client-signal]., +9:u14:4.3.2, +20:u01:[CLIENT-SIGNAL]., +9:u05:4.3.2, +18:u08:augmentations,, +9:u13:4.3.2, +14:u14:configured, +20:u00:[CLIENT-SIGNAL]., +9:u04:4.3.2, +23:u08:technology-specific, +9:u12:4.3.2, +14:u13:configured, +9:u03:4.3.2, +18:u07:augmentations,, +9:u11:4.3.2, +14:u12:configured, +9:u02:4.3.2, +18:u06:augmentations,, +23:u07:technology-specific, +9:u10:4.3.2, +14:u11:configured, +18:u14:augmentations,, +9:u01:4.3.2, +18:u05:augmentations,, +23:u06:technology-specific, +14:u10:configured, +18:u13:augmentations,, +23:u14:technology-specific, +9:uI2:,[-],, +9:u00:4.3.2, +18:u04:augmentations,, +23:u05:technology-specific, +18:u12:augmentations,, +23:u13:technology-specific, +9:uI1:,[-],, +10:uI2:-,[-]., +18:u03:augmentations,, +23:u04:technology-specific, +18:u11:augmentations,, +23:u12:technology-specific, +9:uI0:,[-],, +10:uI1:-,[-]., +18:u02:augmentations,, +23:u03:technology-specific, +18:u10:augmentations,, +23:u11:technology-specific, +10:uI0:-,[-]., +18:u01:augmentations,, +23:u02:technology-specific, +23:u10:technology-specific, +11:uI2:(..,-)., +18:u00:augmentations,, +23:u01:technology-specific, +10:u08:(where, +11:uI1:(..,-)., +23:u00:technology-specific, +10:u07:(where, +11:uI0:(..,-)., +10:u06:(where, +10:u05:(where, +12:u14:ethernet, +10:u04:(where, +12:u13:ethernet, +10:u03:(where, +12:u12:ethernet, +10:u02:(where, +12:u11:ethernet, +10:u01:(where, +12:u10:ethernet, +10:u00:(where, +17:u08:augmentations, +15:u08:[OTN-TOPO],, +17:u07:augmentations, +15:u07:[OTN-TOPO],, +17:u06:augmentations, +15:u06:[OTN-TOPO],, +17:u14:augmentations, +17:u05:augmentations, +15:u05:[OTN-TOPO],, +17:u13:augmentations, +13:uI2:[-],(..,), +17:u04:augmentations, +39:u08:..................................., +15:u04:[OTN-TOPO],, +17:u12:augmentations, +13:uI1:[-],(..,), +17:u03:augmentations, +15:u03:[OTN-TOPO],, +17:u11:augmentations, +13:uI0:[-],(..,), +17:u02:augmentations, +39:u07:..................................., +15:u02:[OTN-TOPO],, +17:u10:augmentations, +7:uI2:/),, +17:u01:augmentations, +39:u06:..................................., +15:u01:[OTN-TOPO],, +39:u14:..................................., +7:uI1:/),, +17:u00:augmentations, +39:u05:..................................., +23:u08:+-----------------+, +15:u00:[OTN-TOPO],, +39:u13:..................................., +7:uI0:/),, +39:u04:..................................., +39:u12:..................................., +39:u03:..................................., +23:u07:+-----------------+, +39:u11:..................................., +39:u02:..................................., +23:u06:+-----------------+, +39:u10:..................................., +23:u14:+-----------------+, +39:u01:..................................., +23:u05:+-----------------+, +23:u13:+-----------------+, +39:u00:..................................., +23:u04:+-----------------+, +23:u12:+-----------------+, +23:u03:+-----------------+, +19:u08:(R1)----------|, +23:u11:+-----------------+, +23:u02:+-----------------+, +20:u08:|----------(S31), +23:u10:+-----------------+, +23:u01:+-----------------+, +19:u07:(R1)----------|, +23:u00:+-----------------+, +19:u06:(R1)----------|, +20:u07:|----------(S31), +9:u08:AN1-1, +19:u14:(r1)----------|, +19:u05:(R1)----------|, +20:u06:|----------(S31), +9:u07:AN1-1, +9:u08:AN1-7, +19:u13:(r1)----------|, +20:u14:|----------(s31), +16:uI2:()----------, +19:u04:(R1)----------|, +20:u05:|----------(S31), +9:u06:AN1-1, +9:u07:AN1-7, +19:u12:(r1)----------|, +20:u13:|----------(s31), +7:u22:(R1, +8:u23:(R1), +16:uI1:()----------, +16:uI2:----------(), +19:u03:(R1)----------|, +20:u04:|----------(S31), +9:u05:AN1-1, +9:u06:AN1-7, +19:u11:(r1)----------|, +20:u12:|----------(s31), +16:uI0:()----------, +16:uI1:----------(), +19:u02:(R1)----------|, +20:u03:|----------(S31), +9:u04:AN1-1, +9:u05:AN1-7, +19:u10:(r1)----------|, +20:u11:|----------(s31), +16:uI0:----------(), +19:u01:(R1)----------|, +20:u02:|----------(S31), +19:u08:(R3)----------|, +9:u03:AN1-1, +9:u04:AN1-7, +20:u10:|----------(s31), +19:u00:(R1)----------|, +20:u01:|----------(S31), +9:u02:AN1-1, +9:u03:AN1-7, +20:u00:|----------(S31), +19:u07:(R3)----------|, +9:u01:AN1-1, +9:u02:AN1-7, +19:u06:(R3)----------|, +9:u00:AN1-1, +9:u01:AN1-7, +19:u14:(r3)----------|, +19:u05:(R3)----------|, +7:u08:AN1, +9:u00:AN1-7, +9:u08:AN1-2, +19:u13:(r3)----------|, +19:u04:(R3)----------|, +9:u07:AN1-2, +19:u12:(r3)----------|, +7:u22:(R3, +8:u23:(R3), +19:u03:(R3)----------|, +7:u07:AN1, +9:u06:AN1-2, +19:u11:(r3)----------|, +19:u02:(R3)----------|, +7:u06:AN1, +9:u05:AN1-2, +19:u10:(r3)----------|, +7:u14:an1, +19:u01:(R3)----------|, +7:u05:AN1, +9:u04:AN1-2, +7:u13:an1, +19:u00:(R3)----------|, +7:u04:AN1, +9:u03:AN1-2, +7:u12:an1, +7:u22:AN1, +7:u23:AN1, +7:u03:AN1, +9:u02:AN1-2, +7:u11:an1, +7:u02:AN1, +19:u08:(R4)----------|, +9:u01:AN1-2, +7:u10:an1, +7:u01:AN1, +20:u08:|----------(S32), +9:u00:AN1-2, +7:u00:AN1, +19:u07:(R4)----------|, +19:u06:(R4)----------|, +20:u07:|----------(S32), +9:u08:AN1-3, +19:u14:(r4)----------|, +19:u05:(R4)----------|, +20:u06:|----------(S32), +9:u07:AN1-3, +9:u08:AN1-6, +19:u13:(r4)----------|, +20:u14:|----------(s32), +19:u04:(R4)----------|, +20:u05:|----------(S32), +9:u06:AN1-3, +9:u07:AN1-6, +19:u12:(r4)----------|, +20:u13:|----------(s32), +7:u22:(R4, +8:u23:(R4), +19:u03:(R4)----------|, +20:u04:|----------(S32), +9:u05:AN1-3, +9:u06:AN1-6, +19:u11:(r4)----------|, +20:u12:|----------(s32), +19:u02:(R4)----------|, +20:u03:|----------(S32), +9:u04:AN1-3, +9:u05:AN1-6, +19:u10:(r4)----------|, +20:u11:|----------(s32), +19:u01:(R4)----------|, +20:u02:|----------(S32), +9:u03:AN1-3, +9:u04:AN1-6, +20:u10:|----------(s32), +19:u00:(R4)----------|, +20:u01:|----------(S32), +9:u02:AN1-3, +9:u03:AN1-6, +20:u00:|----------(S32), +9:u01:AN1-3, +9:u02:AN1-6, +9:u00:AN1-3, +9:u01:AN1-6, +9:u00:AN1-6, +9:u08:AN1-4, +9:u07:AN1-4, +9:u08:AN1-5, +9:u06:AN1-4, +39:u08::..........|..........|...........:, +9:u07:AN1-5, +9:u14:an1-4, +9:u05:AN1-4, +9:u06:AN1-5, +9:u13:an1-4, +9:u04:AN1-4, +39:u07::..........|..........|...........:, +9:u05:AN1-5, +9:u12:an1-4, +8:u23:AN1-, +9:u03:AN1-4, +39:u06::..........|..........|...........:, +9:u08:(S11), +9:u04:AN1-5, +9:u11:an1-4, +39:u14::..........|..........|...........:, +9:u02:AN1-4, +39:u05::..........|..........|...........:, +9:u08:(S12), +9:u03:AN1-5, +9:u10:an1-4, +39:u13::..........|..........|...........:, +9:u01:AN1-4, +39:u04::..........|..........|...........:, +9:u07:(S11), +9:u02:AN1-5, +39:u12::..........|..........|...........:, +9:u00:AN1-4, +39:u03::..........|..........|...........:, +9:u06:(S11), +9:u07:(S12), +9:u01:AN1-5, +39:u11::..........|..........|...........:, +9:u14:(s11), +39:u02::..........|..........|...........:, +9:u05:(S11), +9:u06:(S12), +9:u00:AN1-5, +39:u10::..........|..........|...........:, +9:u13:(s11), +9:u14:(s12), +39:u01::..........|..........|...........:, +9:u04:(S11), +9:u05:(S12), +9:u12:(s11), +9:u13:(s12), +7:u22:(S1, +8:u23:(S11, +39:u00::..........|..........|...........:, +9:u03:(S11), +9:u04:(S12), +9:u11:(s11), +9:u12:(s12), +8:u23:(S12, +9:u02:(S11), +9:u03:(S12), +9:u10:(s11), +9:u11:(s12), +9:u01:(S11), +9:u02:(S12), +9:u10:(s12), +9:u00:(S11), +9:u01:(S12), +9:u00:(S12), +19:u08:(R2)----------|, +19:u07:(R2)----------|, +19:u06:(R2)----------|, +19:u14:(r2)----------|, +19:u05:(R2)----------|, +9:u08:AN1-8, +19:u13:(r2)----------|, +19:u04:(R2)----------|, +9:u07:AN1-8, +19:u12:(r2)----------|, +7:u22:(R2, +8:u23:(R2), +19:u03:(R2)----------|, +9:u06:AN1-8, +19:u11:(r2)----------|, +19:u02:(R2)----------|, +9:u05:AN1-8, +19:u10:(r2)----------|, +19:u01:(R2)----------|, +9:u04:AN1-8, +19:u00:(R2)----------|, +9:u03:AN1-8, +9:u02:AN1-8, +9:u01:AN1-8, +9:u00:AN1-8, +39:u08::.................................:, +39:u07::.................................:, +39:u06::.................................:, +39:u14::.................................:, +39:u05::.................................:, +39:u13::.................................:, +39:uI2::.................................:, +39:u04::.................................:, +39:u12::.................................:, +39:uI1::.................................:, +39:u03::.................................:, +39:u11::.................................:, +39:uI0::.................................:, +39:u02::.................................:, +39:u10::.................................:, +10:uI2:-(..,), +39:u01::.................................:, +9:u08:S31)., +10:uI1:-(..,), +39:u00::.................................:, +9:u07:S31)., +10:uI0:-(..,), +18:u08:multi-function, +9:u06:S31)., +9:u08:trail, +9:u05:S31)., +18:u07:multi-function, +9:u04:S31)., +18:u06:multi-function, +9:u07:trail, +9:u03:S31)., +18:u14:multi-function, +18:u05:multi-function, +9:u06:trail, +9:u02:S31)., +18:u13:multi-function, +9:u14:trail, +18:u04:multi-function, +9:u05:trail, +9:u01:S31)., +18:u12:multi-function, +9:u13:trail, +18:u03:multi-function, +9:u04:trail, +9:u00:S31)., +18:u11:multi-function, +9:u12:trail, +18:u02:multi-function, +9:u03:trail, +18:u10:multi-function, +9:u11:trail, +18:u01:multi-function, +9:u02:trail, +9:u10:trail, +18:u00:multi-function, +9:u01:trail, +9:u00:trail, +13:u08:Therefore, +13:u07:Therefore, +13:u06:Therefore, +13:u05:Therefore, +15:u08:abstracting, +13:u04:Therefore, +15:u07:abstracting, +13:u03:Therefore, +16:u08:connections;, +15:u06:abstracting, +13:u02:Therefore, +15:u05:abstracting, +13:u01:Therefore, +16:u07:connections;, +15:u04:abstracting, +13:u00:Therefore, +16:u06:connections;, +15:u03:abstracting, +16:u14:connections;, +16:u05:connections;, +15:u02:abstracting, +16:u13:connections;, +16:u04:connections;, +15:u01:abstracting, +16:u12:connections;, +16:u03:connections;, +15:u00:abstracting, +16:u11:connections;, +16:u02:connections;, +16:u10:connections;, +16:u01:connections;, +16:u00:connections;, +20:u08:classifications., +15:u14:abstracting, +15:u13:abstracting, +20:u07:classifications., +15:u12:abstracting, +20:u06:classifications., +15:u11:abstracting, +20:u14:classifications., +20:u05:classifications., +15:u10:abstracting, +20:u13:classifications., +20:u04:classifications., +20:u12:classifications., +20:u03:classifications., +20:u11:classifications., +20:u02:classifications., +20:u10:classifications., +20:u01:classifications., +38:u08:.................................., +20:u00:classifications., +38:u07:.................................., +38:u06:.................................., +38:u14:.................................., +38:u05:.................................., +38:u13:.................................., +38:u04:.................................., +38:u12:.................................., +38:u03:.................................., +38:u11:.................................., +38:u02:.................................., +38:u10:.................................., +38:u01:.................................., +38:u00:.................................., +7:u22:Phy, +8:u23:Phys, +9:u08:|S1-1, +9:u07:|S1-1, +10:u08:|S2-3:, +9:u06:|S1-1, +9:u14:|s1-1, +9:u05:|S1-1, +10:u07:|S2-3:, +9:u13:|s1-1, +9:u04:|S1-1, +10:u06:|S2-3:, +9:u12:|s1-1, +10:u14:|s2-3:, +7:u22:|S1, +8:u23:|S1-, +9:u03:|S1-1, +10:u05:|S2-3:, +9:u11:|s1-1, +10:u13:|s2-3:, +9:u02:|S1-1, +10:u04:|S2-3:, +14:u08:S2-1+----+, +9:u10:|s1-1, +10:u12:|s2-3:, +7:u22:|S2, +8:u23:|S2-, +9:u01:|S1-1, +10:u03:|S2-3:, +10:u11:|s2-3:, +21:uI2:---------------(), +9:u00:|S1-1, +10:u02:|S2-3:, +14:u07:S2-1+----+, +10:u10:|s2-3:, +21:uI1:---------------(), +10:u01:|S2-3:, +14:u06:S2-1+----+, +9:u08:S1-2/, +14:u14:s2-1+----+, +21:uI0:---------------(), +10:u00:|S2-3:, +14:u05:S2-1+----+, +9:u08:|S2-2, +14:u13:s2-1+----+, +14:u04:S2-1+----+, +9:u07:S1-2/, +14:u12:s2-1+----+, +7:u22:S2-, +8:u23:S2-1, +14:u03:S2-1+----+, +9:u06:S1-2/, +9:u07:|S2-2, +9:u08:S3-4/, +14:u11:s2-1+----+, +9:u14:s1-2/, +14:u02:S2-1+----+, +9:u05:S1-2/, +9:u06:|S2-2, +14:u10:s2-1+----+, +9:u13:s1-2/, +9:u14:|s2-2, +14:u01:S2-1+----+, +9:u04:S1-2/, +9:u05:|S2-2, +9:u07:S3-4/, +9:u12:s1-2/, +9:u13:|s2-2, +7:u22:S1-, +8:u23:S1-2, +14:u00:S2-1+----+, +9:u03:S1-2/, +9:u04:|S2-2, +9:u06:S3-4/, +9:u11:s1-2/, +9:u12:|s2-2, +9:u14:s3-4/, +9:u02:S1-2/, +9:u03:|S2-2, +9:u05:S3-4/, +9:u10:s1-2/, +9:u11:|s2-2, +9:u13:s3-4/, +9:u01:S1-2/, +9:u02:|S2-2, +9:u04:S3-4/, +9:u10:|s2-2, +9:u12:s3-4/, +7:u22:S3-, +8:u23:S3-4, +9:u00:S1-2/, +9:u01:|S2-2, +9:u03:S3-4/, +9:u11:s3-4/, +9:u00:|S2-2, +9:u02:S3-4/, +9:u10:s3-4/, +9:u01:S3-4/, +9:u00:S3-4/, +6:u08:|3, +6:u08:1|, +6:u07:|3, +6:u07:1|, +6:u06:|3, +6:u06:1|, +6:u14:|3, +6:u05:|3, +16:u08:(R1)-------|, +6:u05:1|, +6:u13:|3, +6:u04:|3, +6:u04:1|, +6:u12:|3, +6:u21:|3, +6:u22:|3, +6:u23:|3, +6:u03:|3, +16:u07:(R1)-------|, +6:u03:1|, +6:u11:|3, +6:u02:|3, +16:u06:(R1)-------|, +15:u08::S3-1+----+, +6:u02:1|, +6:u10:|3, +16:u14:(r1)-------|, +6:u01:|3, +16:u05:(R1)-------|, +6:u01:1|, +16:u13:(r1)-------|, +6:u00:|3, +16:u04:(R1)-------|, +15:u07::S3-1+----+, +6:u00:1|, +16:u12:(r1)-------|, +16:u03:(R1)-------|, +15:u06::S3-1+----+, +16:u11:(r1)-------|, +15:u14::s3-1+----+, +16:u02:(R1)-------|, +15:u05::S3-1+----+, +16:u10:(r1)-------|, +15:u13::s3-1+----+, +10:uI2::-----, +16:u01:(R1)-------|, +15:u04::S3-1+----+, +8:u08:S3-2, +15:u12::s3-1+----+, +6:u21::S, +7:u22::S3, +8:u23::S3-, +10:uI1::-----, +16:u00:(R1)-------|, +15:u03::S3-1+----+, +9:u08:\S4-2, +15:u11::s3-1+----+, +10:uI0::-----, +15:u02::S3-1+----+, +8:u07:S3-2, +15:u10::s3-1+----+, +15:u01::S3-1+----+, +8:u06:S3-2, +9:u07:\S4-2, +8:u14:s3-2, +15:u00::S3-1+----+, +8:u05:S3-2, +9:u06:\S4-2, +8:u13:s3-2, +9:u14:\s4-2, +8:u04:S3-2, +9:u05:\S4-2, +9:u08:\S5-1, +8:u12:s3-2, +9:u13:\s4-2, +8:u23:S3-2, +8:u03:S3-2, +9:u04:\S4-2, +8:u11:s3-2, +9:u12:\s4-2, +6:u21:\S, +7:u22:\S4, +8:u23:\S4-, +8:u02:S3-2, +9:u03:\S4-2, +9:u07:\S5-1, +8:u10:s3-2, +9:u11:\s4-2, +8:u01:S3-2, +9:u02:\S4-2, +9:u06:\S5-1, +9:u10:\s4-2, +9:u14:\s5-1, +8:u00:S3-2, +9:u01:\S4-2, +9:u05:\S5-1, +9:u13:\s5-1, +9:u00:\S4-2, +9:u04:\S5-1, +9:u12:\s5-1, +7:u22:\S5, +8:u23:\S5-, +9:u03:\S5-1, +9:u11:\s5-1, +9:u02:\S5-1, +9:u10:\s5-1, +9:u01:\S5-1, +9:u00:\S5-1, +10:u08:\S8-2|, +10:u07:\S8-2|, +10:u06:\S8-2|, +10:u14:\s8-2|, +10:u05:\S8-2|, +10:u13:\s8-2|, +10:u04:\S8-2|, +10:u12:\s8-2|, +7:u22:\S8, +8:u23:\S8-, +10:u03:\S8-2|, +10:u11:\s8-2|, +10:u02:\S8-2|, +10:u10:\s8-2|, +10:u01:\S8-2|, +10:u00:\S8-2|, +18:u08:(R2)--------2/, +9:u08:|S8-1, +6:u08:\3, +9:u07:|S8-1, +18:u07:(R2)--------2/, +9:u06:|S8-1, +18:u06:(R2)--------2/, +6:u07:\3, +9:u05:|S8-1, +18:u14:(r2)--------2/, +18:u05:(R2)--------2/, +6:u06:\3, +9:u08::S6-1, +9:u04:|S8-1, +18:u13:(r2)--------2/, +6:u14:\3, +15:uI2:()--------/, +18:u04:(R2)--------2/, +6:u05:\3, +6:u08:\1, +9:u03:|S8-1, +18:u12:(r2)--------2/, +6:u13:\3, +15:uI1:()--------/, +18:u03:(R2)--------2/, +6:u04:\3, +9:u07::S6-1, +6:u08:\|, +9:u02:|S8-1, +18:u11:(r2)--------2/, +6:u12:\3, +6:u21:\3, +6:u22:\3, +6:u23:\3, +15:uI0:()--------/, +18:u02:(R2)--------2/, +6:u03:\3, +9:u06::S6-1, +6:u07:\1, +9:u01:|S8-1, +18:u10:(r2)--------2/, +6:u11:\3, +9:u14::s6-1, +18:u01:(R2)--------2/, +6:u02:\3, +9:u05::S6-1, +6:u06:\1, +6:u07:\|, +9:u00:|S8-1, +6:u10:\3, +9:u13::s6-1, +6:u14:\1, +7:uI2::-/, +18:u00:(R2)--------2/, +6:u01:\3, +9:u04::S6-1, +6:u05:\1, +6:u06:\|, +9:u12::s6-1, +6:u13:\1, +6:u14:\|, +7:u22::S6, +8:u23::S6-, +7:uI1::-/, +6:u00:\3, +9:u03::S6-1, +6:u04:\1, +6:u05:\|, +9:u11::s6-1, +6:u12:\1, +6:u13:\|, +6:u21:\1, +6:u22:\1, +6:u23:\1, +7:uI0::-/, +9:u02::S6-1, +6:u03:\1, +6:u04:\|, +9:u10::s6-1, +6:u11:\1, +6:u12:\|, +6:u21:\|, +6:u22:\|, +6:u23:\|, +9:u01::S6-1, +6:u02:\1, +6:u03:\|, +6:u10:\1, +6:u11:\|, +9:u00::S6-1, +6:u01:\1, +6:u02:\|, +6:u10:\|, +6:u00:\1, +6:u01:\|, +6:u00:\|, +10:u08:|S8-5:, +16:u08:(R3)-------|, +10:u07:|S8-5:, +16:u08::S6-2+----+4, +10:u06:|S8-5:, +16:u07:(R3)-------|, +12:u08:2+----+4, +10:u14:|s8-5:, +10:u05:|S8-5:, +16:u06:(R3)-------|, +16:u07::S6-2+----+4, +12:u07:2+----+4, +10:u13:|s8-5:, +16:u14:(r3)-------|, +10:u04:|S8-5:, +16:u05:(R3)-------|, +16:u06::S6-2+----+4, +12:u06:2+----+4, +10:u12:|s8-5:, +16:u13:(r3)-------|, +16:u14::s6-2+----+4, +7:u22:|S8, +8:u23:|S8-, +28:uI2:()--------------------(), +10:u03:|S8-5:, +16:u04:(R3)-------|, +16:u05::S6-2+----+4, +12:u05:2+----+4, +10:u11:|s8-5:, +16:u12:(r3)-------|, +16:u13::s6-2+----+4, +28:uI1:()--------------------(), +18:uI2::-------------, +10:u02:|S8-5:, +16:u03:(R3)-------|, +16:u04::S6-2+----+4, +12:u04:2+----+4, +10:u10:|s8-5:, +16:u11:(r3)-------|, +16:u12::s6-2+----+4, +28:uI0:()--------------------(), +18:uI1::-------------, +10:u01:|S8-5:, +16:u02:(R3)-------|, +16:u03::S6-2+----+4, +12:u03:2+----+4, +16:u10:(r3)-------|, +16:u11::s6-2+----+4, +18:uI0::-------------, +10:u00:|S8-5:, +16:u01:(R3)-------|, +16:u02::S6-2+----+4, +16:u08:(R3)--------, +12:u02:2+----+4, +16:u10::s6-2+----+4, +16:u00:(R3)-------|, +16:u01::S6-2+----+4, +8:u08:S7-3, +12:u01:2+----+4, +16:u00::S6-2+----+4, +16:u07:(R3)--------, +12:u00:2+----+4, +16:u06:(R3)--------, +8:u07:S7-3, +9:u08::S6-3, +8:u08:S8-4, +16:u14:(r3)--------, +16:u05:(R3)--------, +8:u06:S7-3, +8:u07:S8-4, +16:u13:(r3)--------, +8:u14:s7-3, +14:uI2:()--------, +16:u04:(R3)--------, +8:u05:S7-3, +9:u07::S6-3, +8:u06:S8-4, +16:u12:(r3)--------, +8:u13:s7-3, +14:uI1:()--------, +16:u03:(R3)--------, +8:u04:S7-3, +9:u06::S6-3, +8:u05:S8-4, +16:u11:(r3)--------, +8:u12:s7-3, +9:u14::s6-3, +6:u21:S7, +7:u22:S7-, +8:u23:S7-3, +14:uI0:()--------, +16:u02:(R3)--------, +8:u03:S7-3, +9:u05::S6-3, +38:u08::...............|........|.......:, +8:u04:S8-4, +16:u10:(r3)--------, +8:u11:s7-3, +9:u13::s6-3, +16:u01:(R3)--------, +8:u02:S7-3, +9:u04::S6-3, +8:u03:S8-4, +8:u10:s7-3, +9:u12::s6-3, +16:u00:(R3)--------, +8:u01:S7-3, +9:u03::S6-3, +38:u07::...............|........|.......:, +8:u02:S8-4, +9:u11::s6-3, +8:u00:S7-3, +9:u02::S6-3, +38:u06::...............|........|.......:, +8:u01:S8-4, +9:u10::s6-3, +38:u14::...............|........|.......:, +9:u01::S6-3, +38:u05::...............|........|.......:, +8:u00:S8-4, +38:u13::...............|........|.......:, +36:uI2::..............................:, +9:u00::S6-3, +38:u04::...............|........|.......:, +38:u12::...............|........|.......:, +36:uI1::..............................:, +38:u03::...............|........|.......:, +38:u11::...............|........|.......:, +36:uI0::..............................:, +38:u02::...............|........|.......:, +38:u10::...............|........|.......:, +38:u01::...............|........|.......:, +38:u00::...............|........|.......:, +7:u14:mpi, +7:u13:mpi, +7:u12:mpi, +7:u23:MPI, +7:u11:mpi, +7:u10:mpi, +7:u08:ETH, +11:u08:(Figure, +7:u07:ETH, +6:u08:5), +7:u06:ETH, +11:u07:(Figure, +6:u07:5), +7:u14:eth, +7:u05:ETH, +11:u06:(Figure, +8:u08:S2-3, +6:u06:5), +6:u08:4), +7:u13:eth, +11:u14:(figure, +7:u04:ETH, +11:u05:(Figure, +6:u05:5), +6:u07:4), +7:u12:eth, +11:u13:(figure, +6:u21:ET, +7:u22:ETH, +7:u23:ETH, +7:u03:ETH, +11:u04:(Figure, +8:u07:S2-3, +8:u08:S3-1, +6:u04:5), +6:u06:4), +7:u11:eth, +11:u12:(figure, +7:u22:(Fi, +8:u23:(Fig, +7:u02:ETH, +11:u03:(Figure, +8:u06:S2-3, +6:u03:5), +6:u05:4), +7:u10:eth, +11:u11:(figure, +8:u14:s2-3, +7:u01:ETH, +11:u02:(Figure, +8:u05:S2-3, +8:u07:S3-1, +6:u02:5), +6:u04:4), +11:u10:(figure, +8:u13:s2-3, +9:u14:an1-7, +7:u00:ETH, +11:u01:(Figure, +8:u04:S2-3, +8:u06:S3-1, +8:u08:S6-1, +6:u01:5), +6:u03:4), +8:u12:s2-3, +9:u13:an1-7, +8:u14:s3-1, +8:u23:S2-3, +11:u00:(Figure, +8:u03:S2-3, +8:u05:S3-1, +6:u00:5), +6:u02:4), +8:u11:s2-3, +9:u12:an1-7, +8:u13:s3-1, +9:u14:an1-1, +8:u02:S2-3, +8:u04:S3-1, +8:u07:S6-1, +8:u08:S6-2, +6:u01:4), +8:u10:s2-3, +9:u11:an1-7, +8:u12:s3-1, +9:u13:an1-1, +8:u23:S3-1, +8:u01:S2-3, +8:u03:S3-1, +8:u06:S6-1, +6:u00:4), +9:u10:an1-7, +8:u11:s3-1, +9:u12:an1-1, +8:u14:s6-1, +8:u00:S2-3, +8:u02:S3-1, +8:u05:S6-1, +8:u07:S6-2, +8:u08:S6-3, +8:u10:s3-1, +9:u11:an1-1, +8:u13:s6-1, +9:u14:an1-8, +8:u01:S3-1, +8:u04:S6-1, +8:u06:S6-2, +9:u10:an1-1, +8:u12:s6-1, +9:u13:an1-8, +8:u14:s6-2, +7:u22:S6-, +8:u23:S6-1, +8:u00:S3-1, +8:u03:S6-1, +8:u05:S6-2, +8:u07:S6-3, +8:u11:s6-1, +9:u12:an1-8, +8:u13:s6-2, +9:u14:an1-2, +8:u02:S6-1, +8:u04:S6-2, +8:u06:S6-3, +8:u10:s6-1, +9:u11:an1-8, +8:u12:s6-2, +9:u13:an1-2, +8:u14:s6-3, +8:u23:S6-2, +8:u01:S6-1, +8:u03:S6-2, +8:u05:S6-3, +9:u10:an1-8, +8:u11:s6-2, +9:u12:an1-2, +8:u13:s6-3, +9:u14:an1-3, +8:u00:S6-1, +8:u02:S6-2, +8:u04:S6-3, +8:u10:s6-2, +9:u11:an1-2, +8:u12:s6-3, +9:u13:an1-3, +8:u23:S6-3, +8:u01:S6-2, +8:u03:S6-3, +8:u08:S8-5, +9:u10:an1-2, +8:u11:s6-3, +9:u12:an1-3, +8:u00:S6-2, +8:u02:S6-3, +8:u10:s6-3, +9:u11:an1-3, +8:u14:s8-4, +8:u01:S6-3, +8:u07:S8-5, +9:u10:an1-3, +8:u13:s8-4, +9:u14:an1-5, +8:u00:S6-3, +8:u06:S8-5, +19:u08:topology.json"), +9:u08:B.1.1, +8:u12:s8-4, +9:u13:an1-5, +8:u14:s8-5, +7:u22:S8-, +8:u23:S8-4, +8:u05:S8-5, +9:u07:B.1.1, +8:u11:s8-4, +9:u12:an1-5, +8:u13:s8-5, +9:u14:an1-6, +8:u04:S8-5, +19:u07:topology.json"), +9:u06:B.1.1, +9:u08:PNC1,, +8:u10:s8-4, +9:u11:an1-5, +8:u12:s8-5, +9:u13:an1-6, +8:u23:S8-5, +8:u03:S8-5, +19:u06:topology.json"), +9:u05:B.1.1, +9:u07:PNC1,, +9:u08:MPI1., +9:u10:an1-5, +8:u11:s8-5, +9:u12:an1-6, +19:u14:topology.json"), +10:uI2:..("--, +8:u02:S8-5, +19:u05:topology.json"), +9:u04:B.1.1, +9:u06:PNC1,, +9:u07:MPI1., +8:u10:s8-5, +9:u11:an1-6, +19:u13:topology.json"), +10:uI1:..("--, +7:uI2:."), +8:u01:S8-5, +19:u04:topology.json"), +9:u03:B.1.1, +9:u05:PNC1,, +9:u06:MPI1., +9:u10:an1-6, +19:u12:topology.json"), +10:uI0:..("--, +7:uI1:."), +15:uI2:,[],[-][-],, +8:u00:S8-5, +19:u03:topology.json"), +9:u02:B.1.1, +9:u04:PNC1,, +9:u05:MPI1., +19:u11:topology.json"), +7:uI0:."), +15:uI1:,[],[-][-],, +19:u02:topology.json"), +9:u01:B.1.1, +9:u03:PNC1,, +9:u04:MPI1., +10:u08:shown;, +19:u10:topology.json"), +15:uI0:,[],[-][-],, +19:u01:topology.json"), +9:u00:B.1.1, +9:u02:PNC1,, +9:u03:MPI1., +10:u07:shown;, +19:u00:topology.json"), +9:u01:PNC1,, +9:u02:MPI1., +10:u06:shown;, +9:u00:PNC1,, +9:u01:MPI1., +10:u05:shown;, +9:u00:MPI1., +10:u04:shown;, +10:u03:shown;, +10:u02:shown;, +10:u01:shown;, +10:u00:shown;, +12:u14:included, +8:uI2:"//", +12:u13:included, +8:uI1:"//", +12:u12:included, +8:uI0:"//", +8:uI2:--)., +12:u11:included, +8:uI1:--)., +12:u10:included, +8:uI0:--)., +9:u08:(MPI2, +9:u07:(MPI2, +9:u06:(MPI2, +9:u05:(MPI2, +12:uI2:(),(..,), +9:u04:(MPI2, +12:uI1:(),(..,), +9:u03:(MPI2, +12:uI0:(),(..,), +9:u02:(MPI2, +9:u01:(MPI2, +9:u00:(MPI2, +9:u14:(mpi2, +9:u13:(mpi2, +9:u12:(mpi2, +7:u22:(MP, +8:u23:(MPI, +9:u11:(mpi2, +9:u10:(mpi2, +14:u08:Topology),, +14:u07:Topology),, +10:u08:links;, +14:u06:Topology),, +14:u05:Topology),, +10:u07:links;, +14:u04:Topology),, +10:u06:links;, +14:u03:Topology),, +10:u14:links;, +10:u05:links;, +14:u02:Topology),, +10:u13:links;, +10:u04:links;, +10:u08:links., +14:u01:Topology),, +10:u12:links;, +10:u03:links;, +14:u00:Topology),, +10:u11:links;, +10:u02:links;, +10:u07:links., +10:u10:links;, +10:u01:links;, +10:u06:links., +10:u14:links., +10:u00:links;, +10:u05:links., +10:u13:links., +10:u04:links., +10:u12:links., +10:u03:links., +10:u11:links., +10:u02:links., +10:u10:links., +10:u01:links., +14:u08:topology),, +10:u00:links., +9:u08:merge, +14:u07:topology),, +7:u14:own, +14:u06:topology),, +7:u13:own, +7:uI2:-(-, +9:u07:merge, +14:u05:topology),, +7:u12:own, +7:u23:own, +7:uI1:-(-, +11:uI2:),.[-]., +9:u06:merge, +14:u04:topology),, +7:u11:own, +9:u14:merge, +7:uI0:-(-, +11:uI1:),.[-]., +9:u05:merge, +14:u03:topology),, +7:u10:own, +9:u13:merge, +11:uI0:),.[-]., +9:u04:merge, +14:u02:topology),, +9:u12:merge, +9:u03:merge, +14:u01:topology),, +9:u11:merge, +9:uI2:[]),-, +9:u02:merge, +14:u00:topology),, +9:u10:merge, +9:uI1:[]),-, +9:u01:merge, +9:uI0:[]),-, +9:u00:merge, +9:u14:pncs,, +9:u13:pncs,, +9:u12:pncs,, +8:u23:PNCs, +9:u11:pncs,, +9:u10:pncs,, +10:u08:TOPO]:, +10:u07:TOPO]:, +15:u08:terminating, +10:u06:TOPO]:, +15:u07:terminating, +10:u14:topo]:, +8:uI2:-,[-, +10:u05:TOPO]:, +15:u06:terminating, +10:u13:topo]:, +8:uI1:-,[-, +8:uI2:]:-,, +10:u04:TOPO]:, +15:u05:terminating, +10:u12:topo]:, +8:uI0:-,[-, +8:uI1:]:-,, +10:u03:TOPO]:, +15:u04:terminating, +10:u11:topo]:, +13:u14:topology., +8:uI0:]:-,, +10:u02:TOPO]:, +15:u03:terminating, +10:u10:topo]:, +13:u13:topology., +10:u01:TOPO]:, +15:u02:terminating, +13:u12:topology., +10:u00:TOPO]:, +15:u01:terminating, +13:u11:topology., +12:u14:domains., +15:u00:terminating, +13:u10:topology., +12:u13:domains., +12:u12:domains., +14:uI2:(..,-,[])., +12:u11:domains., +14:uI1:(..,-,[])., +12:u10:domains., +14:uI0:(..,-,[])., +11:u08:plug-id, +11:u07:plug-id, +11:u06:plug-id, +11:u05:plug-id, +11:u04:plug-id, +14:u08:authority,, +11:u03:plug-id, +13:u08:authority, +11:u02:plug-id, +14:u07:authority,, +11:u01:plug-id, +14:u06:authority,, +13:u07:authority, +11:u00:plug-id, +14:u14:authority,, +14:u05:authority,, +13:u06:authority, +14:u13:authority,, +13:u14:authority, +14:u04:authority,, +13:u05:authority, +14:u12:authority,, +13:u13:authority, +14:u03:authority,, +13:u04:authority, +10:u08:5.1.1,, +14:u11:authority,, +13:u12:authority, +14:u02:authority,, +13:u03:authority, +10:u07:5.1.1,, +14:u10:authority,, +13:u11:authority, +14:u01:authority,, +13:u02:authority, +10:u06:5.1.1,, +13:u10:authority, +14:u00:authority,, +13:u01:authority, +10:u05:5.1.1,, +13:uI2:..,....,-, +13:u00:authority, +10:u04:5.1.1,, +13:uI1:..,....,-, +10:u03:5.1.1,, +13:uI0:..,....,-, +10:u02:5.1.1,, +10:u01:5.1.1,, +10:u00:5.1.1,, +9:u14:black, +9:u13:black, +9:u12:black, +9:u11:black, +9:u10:black, +21:u08:(R1)------------+, +21:u07:(R1)------------+, +21:u06:(R1)------------+, +11:u08:(White), +21:u14:(r1)------------+, +21:u05:(R1)------------+, +11:u07:(White), +21:u13:(r1)------------+, +18:uI2:()------------, +21:u04:(R1)------------+, +11:u06:(White), +21:u12:(r1)------------+, +18:uI1:()------------, +21:u03:(R1)------------+, +11:u05:(White), +21:u11:(r1)------------+, +18:uI0:()------------, +8:uI2::():, +21:u02:(R1)------------+, +20:u08:(R2)-----------+, +11:u04:(White), +21:u10:(r1)------------+, +8:uI1::():, +21:u01:(R1)------------+, +11:u03:(White), +8:uI0::():, +21:u00:(R1)------------+, +20:u07:(R2)-----------+, +11:u02:(White), +20:u06:(R2)-----------+, +11:u01:(White), +20:u14:(r2)-----------+, +20:u05:(R2)-----------+, +11:u00:(White), +20:u13:(r2)-----------+, +18:uI2:()-----------/, +20:u04:(R2)-----------+, +20:u12:(r2)-----------+, +18:uI1:()-----------/, +20:u03:(R2)-----------+, +20:u11:(r2)-----------+, +18:uI0:()-----------/, +20:u02:(R2)-----------+, +20:u10:(r2)-----------+, +20:u01:(R2)-----------+, +20:u00:(R2)-----------+, +22:u08:(R3)-----------AN1, +7:u08:--+, +22:u07:(R3)-----------AN1, +7:u07:--+, +22:u06:(R3)-----------AN1, +7:u06:--+, +22:u14:(r3)-----------an1, +22:u05:(R3)-----------AN1, +7:u05:--+, +13:u08:-----(R5), +22:u13:(r3)-----------an1, +19:uI2:()-------------, +22:u04:(R3)-----------AN1, +7:u08:/|\, +7:u04:--+, +13:u07:-----(R5), +22:u12:(r3)-----------an1, +19:uI1:()-------------, +22:u03:(R3)-----------AN1, +7:u03:--+, +13:u06:-----(R5), +22:u11:(r3)-----------an1, +19:uI0:()-------------, +22:u02:(R3)-----------AN1, +7:u07:/|\, +7:u02:--+, +13:u05:-----(R5), +22:u10:(r3)-----------an1, +11:uI2:-----(), +22:u01:(R3)-----------AN1, +7:u06:/|\, +7:u01:--+, +13:u04:-----(R5), +7:u14:/|\, +11:uI1:-----(), +22:u00:(R3)-----------AN1, +7:u05:/|\, +7:u00:--+, +13:u03:-----(R5), +7:u13:/|\, +11:uI0:-----(), +7:u04:/|\, +13:u02:-----(R5), +7:u12:/|\, +6:u21:/|, +7:u22:/|\, +7:u23:/|\, +7:u03:/|\, +13:u01:-----(R5), +7:u11:/|\, +7:u02:/|\, +13:u00:-----(R5), +7:u10:/|\, +7:u01:/|\, +20:u08:(R4)-----------+, +7:u00:/|\, +17:u08:+---------S32, +20:u07:(R4)-----------+, +20:u06:(R4)-----------+, +17:u07:+---------S32, +10:u08:--(R6), +20:u14:(r4)-----------+, +20:u05:(R4)-----------+, +17:u06:+---------S32, +10:u07:--(R6), +20:u13:(r4)-----------+, +17:u14:+---------s32, +17:uI2:()-----------, +20:u04:(R4)-----------+, +17:u05:+---------S32, +10:u06:--(R6), +20:u12:(r4)-----------+, +17:u13:+---------s32, +17:uI1:()-----------, +20:u03:(R4)-----------+, +17:u04:+---------S32, +10:u05:--(R6), +20:u11:(r4)-----------+, +17:u12:+---------s32, +17:uI0:()-----------, +20:u02:(R4)-----------+, +17:u03:+---------S32, +10:u04:--(R6), +20:u10:(r4)-----------+, +17:u11:+---------s32, +20:u01:(R4)-----------+, +17:u02:+---------S32, +10:u03:--(R6), +17:u10:+---------s32, +20:u00:(R4)-----------+, +17:u01:+---------S32, +10:u02:--(R6), +17:u00:+---------S32, +10:u01:--(R6), +9:u08:+---+, +10:u00:--(R6), +9:u07:+---+, +9:u06:+---+, +9:u14:+---+, +9:u05:+---+, +9:u13:+---+, +9:u04:+---+, +9:u12:+---+, +9:u03:+---+, +6:u08:/:, +9:u11:+---+, +9:u02:+---+, +6:u07:/:, +9:u10:+---+, +9:u01:+---+, +6:u06:/:, +9:u00:+---+, +6:u05:/:, +28:uI2::....................:/:, +6:u04:/:, +28:uI1::....................:/:, +6:u03:/:, +17:u08::../........:, +28:uI0::....................:/:, +6:u02:/:, +17:u07::../........:, +6:u01:/:, +17:u06::../........:, +6:u00:/:, +17:u05::../........:, +18:uI2:/:../........:, +37:u08:...........|.......|.../..../...., +17:u04::../........:, +18:uI1:/:../........:, +17:u03::../........:, +18:uI0:/:../........:, +37:u07:...........|.......|.../..../...., +17:u02::../........:, +37:u06:...........|.......|.../..../...., +17:u01::../........:, +37:u14:...........|.......|.../..../...., +37:u05:...........|.......|.../..../...., +17:u00::../........:, +37:u13:...........|.......|.../..../...., +35:uI2:...................../..../...., +37:u04:...........|.......|.../..../...., +37:u12:...........|.......|.../..../...., +35:uI1:...................../..../...., +37:u03:...........|.......|.../..../...., +37:u11:...........|.......|.../..../...., +35:uI0:...................../..../...., +37:u02:...........|.......|.../..../...., +37:u10:...........|.......|.../..../...., +37:u01:...........|.......|.../..../...., +37:u00:...........|.......|.../..../...., +6:u08:|/, +6:u07:|/, +6:u06:|/, +11:u08:+---AN2, +6:u14:|/, +6:u05:|/, +23:u08:---------------(R7), +6:u13:|/, +6:u04:|/, +11:u07:+---AN2, +23:u07:---------------(R7), +6:u12:|/, +6:u21:|/, +6:u22:|/, +6:u23:|/, +6:u03:|/, +11:u06:+---AN2, +9:u08:AN2-1, +23:u06:---------------(R7), +6:u11:|/, +11:u14:+---an2, +6:u02:|/, +11:u05:+---AN2, +23:u05:---------------(R7), +6:u10:|/, +11:u13:+---an2, +24:uI2:------------------(), +6:u01:|/, +11:u04:+---AN2, +9:u07:AN2-1, +23:u04:---------------(R7), +11:u12:+---an2, +24:uI1:------------------(), +6:u00:|/, +11:u03:+---AN2, +9:u06:AN2-1, +23:u03:---------------(R7), +11:u11:+---an2, +9:u14:an2-1, +24:uI0:------------------(), +11:u02:+---AN2, +9:u05:AN2-1, +23:u02:---------------(R7), +25:u08:+----------------(R8), +11:u10:+---an2, +9:u13:an2-1, +11:u01:+---AN2, +9:u04:AN2-1, +23:u01:---------------(R7), +25:u07:+----------------(R8), +9:u12:an2-1, +7:u22:AN2, +8:u23:AN2-, +11:u00:+---AN2, +9:u03:AN2-1, +23:u00:---------------(R7), +25:u06:+----------------(R8), +9:u11:an2-1, +9:u02:AN2-1, +25:u05:+----------------(R8), +9:u10:an2-1, +22:uI2:----------------(), +9:u01:AN2-1, +27:u08:+------------------(R9), +25:u04:+----------------(R8), +22:uI1:----------------(), +9:u00:AN2-1, +25:u03:+----------------(R8), +22:uI0:----------------(), +27:u07:+------------------(R9), +25:u02:+----------------(R8), +27:u06:+------------------(R9), +25:u01:+----------------(R8), +27:u14:+------------------(r9), +27:u05:+------------------(R9), +25:u00:+----------------(R8), +27:u13:+------------------(r9), +27:u04:+------------------(R9), +27:u12:+------------------(r9), +27:u03:+------------------(R9), +27:u11:+------------------(r9), +27:u02:+------------------(R9), +27:u10:+------------------(r9), +27:u01:+------------------(R9), +27:u00:+------------------(R9), +11:uI2:(..,,,), +11:uI1:(..,,,), +11:uI0:(..,,,), +7:u08:{1}, +7:u07:{1}, +7:u06:{1}, +7:u08:{2}, +7:u05:{1}, +7:u04:{1}, +7:u07:{2}, +7:u03:{1}, +7:u08:{3}, +5:u21:V, +5:u22:V, +5:u23:V, +7:u06:{2}, +7:u02:{1}, +7:u07:{3}, +7:u14:{2}, +7:u05:{2}, +7:u01:{1}, +7:u06:{3}, +7:u13:{2}, +7:u04:{2}, +7:u00:{1}, +7:u05:{3}, +7:u12:{2}, +6:u21:{2, +7:u22:{2}, +7:u23:{2}, +7:u03:{2}, +7:u04:{3}, +7:u11:{2}, +7:u02:{2}, +7:u03:{3}, +7:u10:{2}, +7:u01:{2}, +7:u02:{3}, +7:u00:{2}, +9:u08:{3.1}, +7:u01:{3}, +7:u00:{3}, +9:u07:{3.1}, +9:u06:{3.1}, +15:u08:+---------+, +9:u14:{3.1}, +9:u05:{3.1}, +10:u08:|{3.2}, +9:u13:{3.1}, +9:u04:{3.1}, +15:u07:+---------+, +9:u12:{3.1}, +6:u21:{3, +7:u22:{3., +8:u23:{3.1, +9:u03:{3.1}, +15:u06:+---------+, +10:u07:|{3.2}, +9:u11:{3.1}, +15:u14:+---------+, +9:u02:{3.1}, +15:u05:+---------+, +10:u06:|{3.2}, +9:u10:{3.1}, +15:u13:+---------+, +10:u14:|{3.2}, +9:u01:{3.1}, +15:u04:+---------+, +10:u05:|{3.2}, +15:u12:+---------+, +10:u13:|{3.2}, +9:u00:{3.1}, +15:u03:+---------+, +10:u04:|{3.2}, +15:u11:+---------+, +10:u12:|{3.2}, +6:u21:|{, +7:u22:|{3, +8:u23:|{3., +15:u02:+---------+, +10:u03:|{3.2}, +15:u10:+---------+, +10:u11:|{3.2}, +15:u01:+---------+, +10:u02:|{3.2}, +10:u10:|{3.2}, +15:u00:+---------+, +10:u01:|{3.2}, +10:u00:|{3.2}, +10:u08:|{3.3}, +10:u07:|{3.3}, +10:u06:|{3.3}, +10:u14:|{3.3}, +10:u05:|{3.3}, +10:u13:|{3.3}, +10:u04:|{3.3}, +10:u12:|{3.3}, +10:u03:|{3.3}, +10:u11:|{3.3}, +10:u02:|{3.3}, +10:u10:|{3.3}, +10:u01:|{3.3}, +10:u00:|{3.3}, +9:u08:{4.2}, +9:u07:{4.2}, +9:u06:{4.2}, +9:u05:{4.2}, +9:u04:{4.2}, +9:u03:{4.2}, +9:u02:{4.2}, +9:u01:{4.2}, +9:u00:{4.2}, +13:u08:(Network), +13:u07:(Network), +13:u06:(Network), +13:u14:(network), +13:u05:(Network), +13:u13:(network), +13:u04:(Network), +13:u12:(network), +7:u22:(Ne, +8:u23:(Net, +13:u03:(Network), +13:u11:(network), +13:u02:(Network), +13:u10:(network), +13:u01:(Network), +9:u08:{4.1}, +13:u00:(Network), +6:u08:_), +9:u07:{4.1}, +9:u06:{4.1}, +6:u07:_), +9:u05:{4.1}, +6:u06:_), +9:u04:{4.1}, +6:u14:_), +6:u05:_), +9:u03:{4.1}, +6:u13:_), +6:u04:_), +9:u02:{4.1}, +6:u12:_), +5:u20:_, +6:u21:_), +6:u22:_), +6:u23:_), +6:u03:_), +9:u01:{4.1}, +6:u11:_), +6:u02:_), +16:u08:C==========D, +9:u00:{4.1}, +6:u10:_), +6:u01:_), +6:u00:_), +16:u07:C==========D, +9:u08:{4.3}, +16:u06:C==========D, +9:u07:{4.3}, +16:u14:c==========d, +16:u05:C==========D, +9:u06:{4.3}, +16:u13:c==========d, +16:u04:C==========D, +9:u05:{4.3}, +16:u12:c==========d, +6:u21:C=, +7:u22:C==, +8:u23:C===, +16:u03:C==========D, +9:u04:{4.3}, +16:u11:c==========d, +16:u02:C==========D, +9:u03:{4.3}, +16:u10:c==========d, +6:uI2:/(, +16:u01:C==========D, +9:u02:{4.3}, +6:uI1:/(, +16:u00:C==========D, +9:u01:{4.3}, +6:uI0:/(, +9:u00:{4.3}, +6:u08:)/, +6:u07:)/, +6:u06:)/, +17:u08:A===========B, +6:u14:)/, +6:u05:)/, +6:u13:)/, +6:uI2:)/, +6:u04:)/, +17:u07:A===========B, +6:u12:)/, +6:u21:)/, +6:u22:)/, +6:u23:)/, +6:uI1:)/, +6:u03:)/, +17:u06:A===========B, +6:u11:)/, +17:u14:a===========b, +6:uI0:)/, +6:u02:)/, +17:u05:A===========B, +6:u08:\(, +6:u10:)/, +17:u13:a===========b, +6:u01:)/, +17:u04:A===========B, +17:u12:a===========b, +6:u21:A=, +7:u22:A==, +8:u23:A===, +6:u00:)/, +17:u03:A===========B, +6:u07:\(, +8:u08:AP-1, +17:u11:a===========b, +17:u02:A===========B, +6:u06:\(, +17:u10:a===========b, +6:u14:\(, +17:u01:A===========B, +6:u05:\(, +8:u07:AP-1, +6:u13:\(, +17:u00:A===========B, +6:u04:\(, +8:u06:AP-1, +17:u08:X===========Z, +6:u12:\(, +8:u14:ap-1, +6:u21:\(, +6:u22:\(, +6:u23:\(, +6:u03:\(, +8:u05:AP-1, +6:u11:\(, +8:u13:ap-1, +6:u02:\(, +8:u04:AP-1, +17:u07:X===========Z, +6:u10:\(, +8:u12:ap-1, +7:u22:AP-, +8:u23:AP-1, +6:u01:\(, +8:u03:AP-1, +17:u06:X===========Z, +8:u11:ap-1, +17:u14:x===========z, +6:u00:\(, +8:u02:AP-1, +17:u05:X===========Z, +8:u10:ap-1, +17:u13:x===========z, +8:u01:AP-1, +17:u04:X===========Z, +17:u12:x===========z, +6:u21:X=, +7:u22:X==, +8:u23:X===, +8:u00:AP-1, +17:u03:X===========Z, +8:u08:AP-2, +17:u11:x===========z, +17:u02:X===========Z, +17:u10:x===========z, +17:u01:X===========Z, +8:u07:AP-2, +17:u00:X===========Z, +8:u06:AP-2, +8:u14:ap-2, +8:u05:AP-2, +8:u13:ap-2, +8:u04:AP-2, +8:u12:ap-2, +8:u23:AP-2, +8:u03:AP-2, +8:u11:ap-2, +8:u02:AP-2, +8:u10:ap-2, +8:u01:AP-2, +8:u00:AP-2, +7:u08:<->, +7:u07:<->, +7:u06:<->, +15:u08:adaptations, +7:u14:<->, +7:u05:<->, +7:u13:<->, +7:u04:<->, +15:u07:adaptations, +7:u12:<->, +7:u22:<->, +7:u23:<->, +7:u03:<->, +15:u06:adaptations, +7:u11:<->, +15:u14:adaptations, +7:u02:<->, +15:u05:adaptations, +7:u10:<->, +15:u13:adaptations, +7:u01:<->, +15:u04:adaptations, +15:u12:adaptations, +7:u00:<->, +15:u03:adaptations, +15:u11:adaptations, +15:u02:adaptations, +15:u10:adaptations, +10:uI2:..,--,, +15:u01:adaptations, +13:u08:topology,, +10:uI1:..,--,, +15:u00:adaptations, +13:u07:topology,, +10:uI0:..,--,, +13:u06:topology,, +13:u05:topology,, +13:u04:topology,, +12:u08:segments, +13:u03:topology,, +9:uI2:(.,.., +13:u02:topology,, +9:uI1:(.,.., +12:u07:segments, +13:u01:topology,, +9:uI0:(.,.., +12:u06:segments, +13:u00:topology,, +12:u14:segments, +12:u05:segments, +12:u13:segments, +12:u04:segments, +12:u12:segments, +12:u03:segments, +12:u11:segments, +13:uI2:-(,.,..)., +12:u02:segments, +17:u08:specifically,, +12:u10:segments, +13:uI1:-(,.,..)., +12:u01:segments, +8:u14:(via, +13:uI0:-(,.,..)., +12:u00:segments, +17:u07:specifically,, +8:u13:(via, +17:u06:specifically,, +8:u12:(via, +17:u14:specifically,, +6:u21:(v, +7:u22:(vi, +8:u23:(via, +17:u05:specifically,, +8:u11:(via, +17:u13:specifically,, +17:u04:specifically,, +8:u10:(via, +17:u12:specifically,, +17:u03:specifically,, +17:u11:specifically,, +16:u14:inter-domain, +17:u02:specifically,, +17:u10:specifically,, +16:u13:inter-domain, +17:u01:specifically,, +16:u12:inter-domain, +17:u00:specifically,, +16:u11:inter-domain, +8:u14:pncs, +11:u08:Further, +16:u10:inter-domain, +8:u13:pncs, +13:uI2:()(..,-)., +11:u07:Further, +17:u08:sub-sections., +8:u12:pncs, +13:uI1:()(..,-)., +11:u06:Further, +17:u07:sub-sections., +8:u11:pncs, +13:uI0:()(..,-)., +11:u05:Further, +17:u06:sub-sections., +8:u10:pncs, +11:u04:Further, +17:u05:sub-sections., +11:u03:Further, +17:u04:sub-sections., +11:u02:Further, +17:u03:sub-sections., +11:u01:Further, +17:u02:sub-sections., +11:u00:Further, +17:u01:sub-sections., +8:u08:5.1,, +17:u00:sub-sections., +8:u07:5.1,, +8:u06:5.1,, +8:u08:CMI,, +8:u14:5.1,, +8:u05:5.1,, +8:u13:5.1,, +8:u04:5.1,, +8:u07:CMI,, +8:u12:5.1,, +8:u23:5.1,, +8:u03:5.1,, +8:u06:CMI,, +8:u11:5.1,, +8:u14:cmi,, +8:u02:5.1,, +8:u05:CMI,, +8:u10:5.1,, +8:u13:cmi,, +8:u01:5.1,, +8:u04:CMI,, +8:u12:cmi,, +8:u23:CMI,, +8:u00:5.1,, +8:u03:CMI,, +8:u11:cmi,, +8:u02:CMI,, +13:u08:Topology,, +8:u10:cmi,, +8:u01:CMI,, +6:u08:7), +13:u07:Topology,, +8:u00:CMI,, +13:u06:Topology,, +6:u07:7), +13:u05:Topology,, +6:u06:7), +13:u04:Topology,, +14:u08:Topologies, +6:u14:7), +6:u05:7), +13:u03:Topology,, +14:u07:Topologies, +6:u13:7), +6:u04:7), +13:u02:Topology,, +14:u06:Topologies, +6:u12:7), +6:u21:7), +6:u22:7), +6:u23:7), +6:u03:7), +8:u08:MPI1, +13:u01:Topology,, +14:u05:Topologies, +6:u11:7), +6:u02:7), +13:u00:Topology,, +14:u04:Topologies, +6:u10:7), +6:u01:7), +8:u07:MPI1, +14:u03:Topologies, +6:u00:7), +8:u06:MPI1, +14:u02:Topologies, +8:u14:mpi1, +8:u05:MPI1, +11:u08:Transit, +14:u01:Topologies, +8:u13:mpi1, +10:u14:model,, +8:u04:MPI1, +14:u00:Topologies, +11:u08:Tunnel), +8:u12:mpi1, +10:u13:model,, +10:uI2:,[-],-, +8:u03:MPI1, +11:u07:Transit, +19:u08:include-exclude, +11:u07:Tunnel), +8:u11:mpi1, +10:u12:model,, +10:uI1:,[-],-, +9:uI2:,[-]:, +8:u02:MPI1, +11:u06:Transit, +9:u08:path:, +11:u06:Tunnel), +8:u10:mpi1, +10:u11:model,, +11:u14:transit, +10:uI0:,[-],-, +9:uI1:,[-]:, +8:u01:MPI1, +11:u05:Transit, +19:u07:include-exclude, +11:u05:Tunnel), +10:u10:model,, +11:u13:transit, +9:uI0:,[-]:, +8:u00:MPI1, +11:u04:Transit, +19:u06:include-exclude, +9:u07:path:, +11:u04:Tunnel), +11:u12:transit, +19:u14:include-exclude, +11:u03:Transit, +19:u05:include-exclude, +9:u06:path:, +11:u03:Tunnel), +7:u08:LTP, +11:u11:transit, +19:u13:include-exclude, +9:u14:path:, +11:u02:Transit, +19:u04:include-exclude, +9:u05:path:, +11:u02:Tunnel), +7:u07:LTP, +11:u10:transit, +19:u12:include-exclude, +9:u13:path:, +11:u01:Transit, +19:u03:include-exclude, +9:u04:path:, +11:u01:Tunnel), +7:u06:LTP, +19:u11:include-exclude, +9:u12:path:, +11:u00:Transit, +19:u02:include-exclude, +9:u03:path:, +11:u00:Tunnel), +7:u05:LTP, +19:u10:include-exclude, +9:u11:path:, +19:u01:include-exclude, +9:u02:path:, +7:u04:LTP, +9:u10:path:, +19:u00:include-exclude, +9:u01:path:, +7:u03:LTP, +9:u00:path:, +7:u02:LTP, +7:u01:LTP, +7:u00:LTP, +10:u08:matter, +12:u08:domain1), +12:u07:domain1), +10:u07:matter, +12:u06:domain1), +10:u06:matter, +12:u05:domain1), +10:u14:matter, +10:u05:matter, +12:u04:domain1), +10:u08:links), +10:u13:matter, +10:u04:matter, +12:u03:domain1), +10:u07:links), +10:u12:matter, +10:u03:matter, +12:u08:domain)., +12:u02:domain1), +10:u06:links), +10:u11:matter, +10:u02:matter, +12:u01:domain1), +10:u05:links), +10:u10:matter, +10:u01:matter, +12:u07:domain)., +12:u00:domain1), +10:u04:links), +10:u00:matter, +12:u06:domain)., +10:u03:links), +12:u14:domain)., +12:u05:domain)., +10:u02:links), +12:u13:domain)., +12:u04:domain)., +10:u01:links), +12:u12:domain)., +12:u03:domain)., +10:u00:links), +12:u11:domain)., +12:u02:domain)., +12:u10:domain)., +12:u01:domain)., +12:u00:domain)., +17:u08:config.json"), +9:u08:B.2.1, +12:u08:Segment), +9:u07:B.2.1, +17:u07:config.json"), +9:u06:B.2.1, +17:u06:config.json"), +12:u07:Segment), +9:u05:B.2.1, +16:u08:[OTN-TUNNEL], +17:u14:config.json"), +11:uI2:..("---, +17:u05:config.json"), +12:u06:Segment), +8:u08:AN-1, +9:u04:B.2.1, +16:u07:[OTN-TUNNEL], +10:u08:knows,, +17:u13:config.json"), +12:u14:segment), +11:uI1:..("---, +8:uI2:.")(, +17:u04:config.json"), +12:u05:Segment), +9:u03:B.2.1, +16:u06:[OTN-TUNNEL], +10:u07:knows,, +17:u12:config.json"), +12:u13:segment), +11:uI0:..("---, +8:uI1:.")(, +9:uI2:),[-], +17:u03:config.json"), +12:u04:Segment), +8:u07:AN-1, +9:u02:B.2.1, +16:u05:[OTN-TUNNEL], +10:u06:knows,, +17:u11:config.json"), +12:u12:segment), +8:uI0:.")(, +9:uI1:),[-], +17:u02:config.json"), +12:u03:Segment), +8:u06:AN-1, +9:u01:B.2.1, +16:u04:[OTN-TUNNEL], +10:u05:knows,, +17:u10:config.json"), +12:u11:segment), +8:u14:an-1, +9:uI0:),[-], +17:u01:config.json"), +12:u02:Segment), +8:u05:AN-1, +9:u00:B.2.1, +16:u03:[OTN-TUNNEL], +10:u04:knows,, +12:u10:segment), +8:u13:an-1, +17:u00:config.json"), +12:u01:Segment), +8:u04:AN-1, +16:u02:[OTN-TUNNEL], +10:u03:knows,, +8:u12:an-1, +7:u22:AN-, +8:u23:AN-1, +12:u00:Segment), +8:u03:AN-1, +16:u01:[OTN-TUNNEL], +10:u02:knows,, +8:u11:an-1, +8:u14:odu2, +8:u02:AN-1, +16:u00:[OTN-TUNNEL], +10:u01:knows,, +8:u10:an-1, +8:u13:odu2, +8:u01:AN-1, +20:u08:cross-connection, +10:u00:knows,, +14:u08:configures, +8:u12:odu2, +8:u00:AN-1, +14:u07:configures, +8:u11:odu2, +20:u07:cross-connection, +14:u06:configures, +8:u10:odu2, +20:u06:cross-connection, +14:u05:configures, +20:u14:cross-connection, +20:u05:cross-connection, +14:u04:configures, +9:u08:TPN),, +20:u13:cross-connection, +20:u04:cross-connection, +14:u03:configures, +9:u07:TPN),, +20:u12:cross-connection, +14:u14:configures, +8:u23:cros, +20:u03:cross-connection, +14:u02:configures, +9:u06:TPN),, +20:u11:cross-connection, +14:u13:configures, +20:u02:cross-connection, +14:u01:configures, +9:u05:TPN),, +20:u10:cross-connection, +14:u12:configures, +20:u01:cross-connection, +14:u00:configures, +9:u04:TPN),, +14:u11:configures, +20:u00:cross-connection, +9:u03:TPN),, +14:u10:configures, +9:u02:TPN),, +11:u08:Tunnels, +9:u01:TPN),, +9:u00:TPN),, +11:u07:Tunnels, +11:u06:Tunnels, +11:u14:tunnels, +11:u05:Tunnels, +11:u13:tunnels, +11:u04:Tunnels, +11:u12:tunnels, +6:u14:up, +11:u03:Tunnels, +11:u11:tunnels, +6:u13:up, +11:u02:Tunnels, +11:u10:tunnels, +6:u12:up, +6:u22:up, +6:u23:up, +11:u01:Tunnels, +6:u11:up, +11:u00:Tunnels, +6:u10:up, +8:u08:PCN1, +8:u07:PCN1, +8:u06:PCN1, +8:u08:OTU2, +8:u05:PCN1, +8:u04:PCN1, +10:u08:trails, +8:u07:OTU2, +8:u03:PCN1, +10:u07:trails, +8:u06:OTU2, +8:u02:PCN1, +10:u06:trails, +8:u14:otu2, +8:u05:OTU2, +8:u01:PCN1, +10:u05:trails, +8:u13:otu2, +8:u04:OTU2, +8:u00:PCN1, +10:u04:trails, +8:u12:otu2, +7:u22:OTU, +8:u23:OTU2, +8:u03:OTU2, +10:u03:trails, +8:u11:otu2, +8:u02:OTU2, +10:u02:trails, +8:u10:otu2, +8:u01:OTU2, +10:u01:trails, +10:u14:expose, +8:u00:OTU2, +10:u00:trails, +10:u13:expose, +10:u12:expose, +10:u11:expose, +10:u10:expose, +11:u08:exposed, +11:u07:exposed, +11:u06:exposed, +13:u14:topology,, +11:u05:exposed, +13:u13:topology,, +11:u04:exposed, +13:u12:topology,, +11:u03:exposed, +13:u11:topology,, +11:u02:exposed, +13:u10:topology,, +11:u01:exposed, +11:u00:exposed, +8:u08:LTP,, +9:u08:(Head, +8:u07:LTP,, +8:u06:LTP,, +9:u07:(Head, +9:u08:PNC3,, +8:u14:ltp,, +8:uI2:,,/-, +8:u05:LTP,, +9:u06:(Head, +9:u07:PNC3,, +8:u08:MPI3, +8:u13:ltp,, +9:u14:(head, +8:uI1:,,/-, +8:u04:LTP,, +9:u05:(Head, +8:u08:MPI2, +9:u06:PNC3,, +8:u07:MPI3, +9:u08:PNC2,, +8:u12:ltp,, +9:u13:(head, +6:u21:LT, +7:u22:LTP, +8:u23:LTP,, +8:uI0:,,/-, +8:u03:LTP,, +9:u04:(Head, +9:u05:PNC3,, +8:u06:MPI3, +9:u07:PNC2,, +8:u11:ltp,, +9:u12:(head, +6:u21:(H, +7:u22:(He, +8:u23:(Hea, +8:u02:LTP,, +9:u03:(Head, +8:u07:MPI2, +9:u04:PNC3,, +8:u05:MPI3, +9:u06:PNC2,, +8:u10:ltp,, +9:u11:(head, +8:u01:LTP,, +9:u02:(Head, +8:u06:MPI2, +9:u08:(Tail, +9:u03:PNC3,, +8:u04:MPI3, +9:u05:PNC2,, +9:u10:(head, +8:u14:mpi2, +8:u00:LTP,, +9:u01:(Head, +8:u05:MPI2, +9:u02:PNC3,, +8:u03:MPI3, +9:u04:PNC2,, +8:u13:mpi2, +9:u00:(Head, +8:u04:MPI2, +9:u07:(Tail, +9:u01:PNC3,, +8:u02:MPI3, +9:u03:PNC2,, +8:u12:mpi2, +8:u23:MPI2, +8:u03:MPI2, +9:u06:(Tail, +9:u00:PNC3,, +8:u01:MPI3, +9:u02:PNC2,, +8:u11:mpi2, +9:u14:(tail, +8:u02:MPI2, +9:u05:(Tail, +8:u00:MPI3, +9:u01:PNC2,, +8:u10:mpi2, +9:u13:(tail, +8:u01:MPI2, +9:u04:(Tail, +9:u00:PNC2,, +9:u12:(tail, +7:u22:(Ta, +8:u23:(Tai, +8:u00:MPI2, +9:u03:(Tail, +9:u11:(tail, +9:u02:(Tail, +12:u08:Tunnel):, +9:u10:(tail, +9:u01:(Tail, +9:u00:(Tail, +12:u07:Tunnel):, +12:u06:Tunnel):, +12:u14:tunnel):, +12:u05:Tunnel):, +12:u13:tunnel):, +12:u04:Tunnel):, +12:u12:tunnel):, +12:u03:Tunnel):, +12:u11:tunnel):, +12:u02:Tunnel):, +12:u10:tunnel):, +12:u01:Tunnel):, +9:u08:B.2.2, +12:u00:Tunnel):, +9:u07:B.2.2, +11:u08:TUNNEL], +9:u06:B.2.2, +9:u05:B.2.2, +11:u07:TUNNEL], +11:u08:from/to, +9:u04:B.2.2, +9:uI2:.")(), +11:u06:TUNNEL], +11:u08:thought, +9:u03:B.2.2, +11:u14:tunnel], +9:uI1:.")(), +10:uI2:,[-][-, +11:u05:TUNNEL], +11:u07:from/to, +9:u02:B.2.2, +11:u13:tunnel], +9:uI0:.")(), +10:uI1:,[-][-, +11:u04:TUNNEL], +11:u06:from/to, +11:u07:thought, +9:u01:B.2.2, +11:u12:tunnel], +11:u14:from/to, +6:u21:TU, +7:u22:TUN, +8:u23:TUNN, +10:uI0:,[-][-, +11:u03:TUNNEL], +11:u05:from/to, +11:u06:thought, +9:u00:B.2.2, +11:u11:tunnel], +11:u13:from/to, +11:u14:thought, +10:uI2:/-,(),, +11:u02:TUNNEL], +11:u04:from/to, +11:u05:thought, +11:u10:tunnel], +11:u12:from/to, +11:u13:thought, +10:uI1:/-,(),, +11:u01:TUNNEL], +11:u03:from/to, +11:u04:thought, +11:u11:from/to, +11:u12:thought, +10:uI0:/-,(),, +9:uI2:,[-]., +11:u00:TUNNEL], +11:u02:from/to, +11:u03:thought, +11:u10:from/to, +11:u11:thought, +9:uI1:,[-]., +11:u01:from/to, +11:u02:thought, +11:u10:thought, +9:uI0:,[-]., +11:u00:from/to, +11:u01:thought, +9:u08:B.2.3, +11:u00:thought, +9:u07:B.2.3, +9:u06:B.2.3, +9:u05:B.2.3, +9:u04:B.2.3, +9:u03:B.2.3, +8:uI2:,[-], +9:u02:B.2.3, +8:uI1:,[-], +16:u08:computation,, +9:u01:B.2.3, +8:uI0:,[-], +9:u00:B.2.3, +16:u07:computation,, +16:u06:computation,, +16:u14:computation,, +16:u05:computation,, +16:u13:computation,, +16:u04:computation,, +16:u12:computation,, +16:u03:computation,, +16:u11:computation,, +16:u02:computation,, +16:u10:computation,, +16:u01:computation,, +16:u00:computation,, +14:u08:functions,, +14:u07:functions,, +14:u06:functions,, +14:uI2:[-()][()-], +14:u05:functions,, +14:uI1:[-()][()-], +12:u08:steering, +14:u04:functions,, +14:uI0:[-()][()-], +21:u08:cross-connections, +14:u03:functions,, +12:u07:steering, +14:u02:functions,, +12:u06:steering, +21:u07:cross-connections, +11:u08:(ODU2)], +14:u01:functions,, +12:u14:steering, +12:u05:steering, +21:u06:cross-connections, +14:u00:functions,, +12:u13:steering, +21:u14:cross-connections, +12:u04:steering, +21:u05:cross-connections, +11:u07:(ODU2)], +10:u08:S18-R8, +12:u12:steering, +21:u13:cross-connections, +12:u03:steering, +21:u04:cross-connections, +11:u06:(ODU2)], +12:u11:steering, +21:u12:cross-connections, +11:u14:(odu2)], +7:uI2:-[-, +12:u02:steering, +21:u03:cross-connections, +11:u05:(ODU2)], +10:u07:S18-R8, +12:u10:steering, +21:u11:cross-connections, +11:u13:(odu2)], +7:uI1:-[-, +13:uI2:()][()-],, +12:u01:steering, +21:u02:cross-connections, +11:u04:(ODU2)], +10:u06:S18-R8, +21:u10:cross-connections, +11:u12:(odu2)], +10:u14:s18-r8, +7:u22:(OD, +8:u23:(ODU, +7:uI0:-[-, +13:uI1:()][()-],, +12:u00:steering, +21:u01:cross-connections, +11:u03:(ODU2)], +10:u05:S18-R8, +11:u11:(odu2)], +10:u13:s18-r8, +13:uI0:()][()-],, +21:u00:cross-connections, +11:u02:(ODU2)], +10:u04:S18-R8, +11:u10:(odu2)], +10:u12:s18-r8, +8:u23:S18-, +11:u01:(ODU2)], +10:u03:S18-R8, +10:u11:s18-r8, +11:u00:(ODU2)], +10:u02:S18-R8, +10:u10:s18-r8, +10:u01:S18-R8, +10:u00:S18-R8, +9:u08:MPI1;, +9:u08:LTPs,, +9:u07:MPI1;, +9:uI2:(--),, +9:u06:MPI1;, +9:uI1:(--),, +9:u07:LTPs,, +9:u05:MPI1;, +9:uI0:(--),, +9:u06:LTPs,, +9:u04:MPI1;, +9:u14:ltps,, +9:u05:LTPs,, +9:u03:MPI1;, +9:u13:ltps,, +9:u04:LTPs,, +9:u02:MPI1;, +9:u12:ltps,, +8:u23:LTPs, +9:uI2:(--)., +9:u03:LTPs,, +9:u01:MPI1;, +8:u08:10GE, +9:u11:ltps,, +9:uI1:(--)., +9:u02:LTPs,, +9:u00:MPI1;, +8:u07:10GE, +9:u10:ltps,, +9:uI0:(--)., +9:u01:LTPs,, +8:u06:10GE, +9:u00:LTPs,, +8:u05:10GE, +8:uI2:--(-, +8:u04:10GE, +8:uI1:--(-, +8:u03:10GE, +8:uI0:--(-, +8:u02:10GE, +8:u01:10GE, +8:uI2:-,.,, +8:u00:10GE, +8:uI1:-,.,, +8:uI0:-,.,, +11:u14:to/from, +11:u08:[STM-64, +11:u13:to/from, +11:u12:to/from, +9:u14:pnc1,, +7:u22:to/, +8:u23:to/f, +11:u07:[STM-64, +13:u08:configure, +11:u11:to/from, +9:u13:pnc1,, +11:u06:[STM-64, +11:u10:to/from, +9:u12:pnc1,, +11:u14:[stm-64, +11:u05:[STM-64, +13:u07:configure, +9:u11:pnc1,, +11:u13:[stm-64, +16:uI2:[--()][()--], +11:u04:[STM-64, +13:u06:configure, +9:u10:pnc1,, +11:u12:[stm-64, +13:u14:configure, +7:u22:[ST, +8:u23:[STM, +16:uI1:[--()][()--], +11:u03:[STM-64, +13:u05:configure, +11:u11:[stm-64, +13:u13:configure, +16:uI0:[--()][()--], +11:u02:[STM-64, +13:u04:configure, +11:u10:[stm-64, +13:u12:configure, +11:u01:[STM-64, +13:u03:configure, +11:u08:5.2.2.1, +13:u11:configure, +11:u00:[STM-64, +13:u02:configure, +13:u10:configure, +13:u01:configure, +11:u07:5.2.2.1, +13:u00:configure, +11:u06:5.2.2.1, +11:u14:5.2.2.1, +11:u05:5.2.2.1, +11:u13:5.2.2.1, +9:uI2:...-,, +11:u04:5.2.2.1, +11:u12:5.2.2.1, +9:uI1:...-,, +11:u03:5.2.2.1, +11:u11:5.2.2.1, +9:uI0:...-,, +11:u02:5.2.2.1, +11:u10:5.2.2.1, +11:u01:5.2.2.1, +11:u00:5.2.2.1, +12:u08:5.2.2.1,, +12:u07:5.2.2.1,, +12:u06:5.2.2.1,, +12:u14:5.2.2.1,, +12:u05:5.2.2.1,, +12:u13:5.2.2.1,, +9:uI2:...,:, +12:u04:5.2.2.1,, +12:u12:5.2.2.1,, +9:uI1:...,:, +12:u03:5.2.2.1,, +12:u11:5.2.2.1,, +9:uI0:...,:, +12:u02:5.2.2.1,, +16:u08:respectively, +12:u10:5.2.2.1,, +12:u01:5.2.2.1,, +12:u00:5.2.2.1,, +16:u07:respectively, +16:u06:respectively, +16:u14:respectively, +16:u05:respectively, +16:u13:respectively, +16:u04:respectively, +7:u08:R2,, +16:u12:respectively, +16:u03:respectively, +16:u11:respectively, +11:u14:exposed, +16:u02:respectively, +7:u07:R2,, +16:u10:respectively, +11:u13:exposed, +16:u01:respectively, +7:u06:R2,, +11:u12:exposed, +7:u14:r2,, +16:u00:respectively, +7:u05:R2,, +7:u08:R8,, +11:u11:exposed, +7:u13:r2,, +7:u04:R2,, +11:u10:exposed, +7:u12:r2,, +7:u22:R2,, +7:u23:R2,, +7:u03:R2,, +7:u07:R8,, +7:u11:r2,, +7:u02:R2,, +7:u06:R8,, +7:u10:r2,, +7:u14:r8,, +7:u01:R2,, +7:u05:R8,, +7:u13:r8,, +7:u00:R2,, +7:u04:R8,, +7:u12:r8,, +6:u21:R8, +7:u22:R8,, +7:u23:R8,, +7:u03:R8,, +7:u11:r8,, +7:u02:R8,, +7:u10:r8,, +7:u01:R8,, +7:u00:R8,, +14:u14:functions,, +14:u13:functions,, +18:u08:classification, +14:u12:functions,, +18:u07:classification, +14:u11:functions,, +18:u06:classification, +14:u10:functions,, +18:u05:classification, +18:u04:classification, +18:u03:classification, +18:u02:classification, +18:u01:classification, +18:u00:classification, +8:u14:10ge, +8:u13:10ge, +8:u12:10ge, +7:u22:10G, +8:u23:10GE, +8:u11:10ge, +8:u10:10ge, +19:u08:[CLIENT-SIGNAL], +10:u08:model., +6:u14:20, +19:u07:[CLIENT-SIGNAL], +10:u07:model., +6:u13:20, +19:u06:[CLIENT-SIGNAL], +10:u06:model., +6:u12:20, +19:u14:[client-signal], +6:u22:20, +6:u23:20, +19:u05:[CLIENT-SIGNAL], +10:u05:model., +6:u11:20, +19:u13:[client-signal], +19:u04:[CLIENT-SIGNAL], +10:u04:model., +6:u10:20, +19:u12:[client-signal], +19:u03:[CLIENT-SIGNAL], +10:u03:model., +19:u11:[client-signal], +19:u02:[CLIENT-SIGNAL], +10:u02:model., +19:u10:[client-signal], +19:u01:[CLIENT-SIGNAL], +10:u01:model., +19:u00:[CLIENT-SIGNAL], +13:u08:COMPUTE]., +10:u00:model., +13:u07:COMPUTE]., +13:u06:COMPUTE]., +14:u08:technology, +13:u14:compute]., +9:uI2:[-][-, +13:u05:COMPUTE]., +14:u07:technology, +13:u13:compute]., +9:uI1:[-][-, +13:u04:COMPUTE]., +14:u06:technology, +13:u12:compute]., +9:uI0:[-][-, +13:u03:COMPUTE]., +14:u05:technology, +13:u11:compute]., +13:u02:COMPUTE]., +14:u04:technology, +13:u10:compute]., +13:u01:COMPUTE]., +14:u03:technology, +13:u00:COMPUTE]., +14:u02:technology, +14:u08:Inherently, +14:u01:technology, +16:u08:partitioning, +14:u00:technology, +14:u07:Inherently, +14:u14:scenarios., +14:u06:Inherently, +16:u07:partitioning, +14:u13:scenarios., +14:u14:inherently, +14:u05:Inherently, +16:u06:partitioning, +14:u12:scenarios., +14:u13:inherently, +16:u14:partitioning, +14:u04:Inherently, +16:u05:partitioning, +14:u11:scenarios., +14:u12:inherently, +16:u13:partitioning, +14:u03:Inherently, +16:u04:partitioning, +14:u08:signaling., +14:u10:scenarios., +14:u11:inherently, +16:u12:partitioning, +14:u02:Inherently, +16:u03:partitioning, +12:u08:suitable, +14:u10:inherently, +16:u11:partitioning, +14:u01:Inherently, +16:u02:partitioning, +14:u07:signaling., +16:u10:partitioning, +14:u00:Inherently, +16:u01:partitioning, +14:u06:signaling., +12:u07:suitable, +14:u14:signaling., +16:u00:partitioning, +14:u05:signaling., +12:u06:suitable, +14:u13:signaling., +12:u14:suitable, +14:u04:signaling., +12:u05:suitable, +14:u12:signaling., +12:u13:suitable, +14:u03:signaling., +12:u04:suitable, +14:u11:signaling., +12:u12:suitable, +7:u22:sui, +8:u23:suit, +14:u02:signaling., +12:u03:suitable, +14:u10:signaling., +12:u11:suitable, +14:u01:signaling., +12:u02:suitable, +12:u10:suitable, +14:u00:signaling., +12:u01:suitable, +12:u00:suitable, +13:u08:[RFC4427], +16:u08:Restoration), +11:u08:Mannie,, +13:u07:[RFC4427], +11:u07:Mannie,, +13:u06:[RFC4427], +16:u07:Restoration), +13:u08:[RFC4655], +11:u06:Mannie,, +13:u14:[rfc4427], +13:u05:[RFC4427], +16:u06:Restoration), +11:u05:Mannie,, +11:u08:Farrel,, +13:u13:[rfc4427], +16:u14:restoration), +14:uI2:[],.,,.,"(, +13:u04:[RFC4427], +16:u05:Restoration), +13:u07:[RFC4655], +13:u08:[RFC7926], +11:u04:Mannie,, +11:u07:Farrel,, +12:u08:RFC4655,, +13:u12:[rfc4427], +16:u13:restoration), +14:uI1:[],.,,.,"(, +13:u03:[RFC4427], +16:u04:Restoration), +13:u06:[RFC4655], +11:u03:Mannie,, +11:u06:Farrel,, +12:u07:RFC4655,, +13:u11:[rfc4427], +16:u12:restoration), +13:u14:[rfc4655], +14:uI0:[],.,,.,"(, +13:u02:[RFC4427], +16:u03:Restoration), +13:u05:[RFC4655], +13:u07:[RFC7926], +11:u02:Mannie,, +11:u05:Farrel,, +12:u06:RFC4655,, +13:u10:[rfc4427], +16:u11:restoration), +13:u13:[rfc4655], +14:uI2:[],..,"()-, +13:u01:[RFC4427], +16:u02:Restoration), +13:u04:[RFC4655], +13:u06:[RFC7926], +13:u08:[RFC8345], +11:u01:Mannie,, +11:u04:Farrel,, +12:u05:RFC4655,, +16:u10:restoration), +13:u12:[rfc4655], +13:u14:[rfc7926], +14:uI1:[],..,"()-, +13:u00:[RFC4427], +16:u01:Restoration), +13:u03:[RFC4655], +13:u05:[RFC7926], +11:u00:Mannie,, +11:u03:Farrel,, +12:u04:RFC4655,, +10:u08:Clemm,, +13:u11:[rfc4655], +13:u13:[rfc7926], +14:uI0:[],..,"()-, +16:u00:Restoration), +13:u02:[RFC4655], +13:u04:[RFC7926], +13:u07:[RFC8345], +11:u02:Farrel,, +12:u03:RFC4655,, +10:u07:Clemm,, +16:u08:Topologies",, +13:u10:[rfc4655], +13:u12:[rfc7926], +13:u01:[RFC4655], +13:u03:[RFC7926], +13:u06:[RFC8345], +11:u01:Farrel,, +12:u02:RFC4655,, +10:u06:Clemm,, +16:u07:Topologies",, +13:u11:[rfc7926], +13:u14:[rfc8345], +13:u00:[RFC4655], +13:u02:[RFC7926], +13:u05:[RFC8345], +11:u00:Farrel,, +12:u01:RFC4655,, +10:u05:Clemm,, +16:u06:Topologies",, +13:u10:[rfc7926], +13:u13:[rfc8345], +14:uI2:[],.,,..,", +13:u01:[RFC7926], +13:u04:[RFC8345], +12:u00:RFC4655,, +10:u04:Clemm,, +16:u05:Topologies",, +13:u12:[rfc8345], +14:uI1:[],.,,..,", +13:u00:[RFC7926], +13:u03:[RFC8345], +10:u03:Clemm,, +16:u04:Topologies",, +11:u08:optical, +13:u11:[rfc8345], +14:uI0:[],.,,..,", +13:u02:[RFC8345], +10:u02:Clemm,, +16:u03:Topologies",, +11:u07:optical, +13:u10:[rfc8345], +13:u01:[RFC8345], +16:u08:protection",, +10:u01:Clemm,, +16:u02:Topologies",, +11:u06:optical, +15:uI2:[-.]-.(/),", +13:u00:[RFC8345], +10:u00:Clemm,, +16:u01:Topologies",, +11:u05:optical, +15:uI1:[-.]-.(/),", +16:u07:protection",, +16:u00:Topologies",, +11:u04:optical, +12:u08:G.873.1], +15:uI0:[-.]-.(/),", +17:uI2:[-..]-..(/),", +16:u06:protection",, +11:u03:optical, +12:u07:G.873.1], +16:u14:protection",, +17:uI1:[-..]-..(/),", +16:u05:protection",, +33:u08:draft-ietf-teas-yang-te-topo,, +11:u02:optical, +12:u06:G.873.1], +16:u13:protection",, +17:uI0:[-..]-..(/),", +16:u04:protection",, +11:u01:optical, +12:u05:G.873.1], +16:u12:protection",, +16:u03:protection",, +33:u07:draft-ietf-teas-yang-te-topo,, +11:u00:optical, +12:u04:G.873.1], +10:u08:Zheng,, +16:u11:protection",, +13:u14:[te-topo], +10:uI2:():",., +16:u02:protection",, +33:u06:draft-ietf-teas-yang-te-topo,, +9:u08:yang,, +12:u03:G.873.1], +10:u07:Zheng,, +16:u10:protection",, +13:u13:[te-topo], +33:u14:draft-ietf-teas-yang-te-topo,, +10:uI1:():",., +14:uI2:[-],..,"",, +16:u01:protection",, +33:u05:draft-ietf-teas-yang-te-topo,, +12:u02:G.873.1], +10:u06:Zheng,, +13:u12:[te-topo], +33:u13:draft-ietf-teas-yang-te-topo,, +14:u14:[otn-topo], +10:uI0:():",., +14:uI1:[-],..,"",, +11:uI2:-----,., +16:u00:protection",, +33:u04:draft-ietf-teas-yang-te-topo,, +9:u07:yang,, +12:u01:G.873.1], +10:u05:Zheng,, +13:u11:[te-topo], +33:u12:draft-ietf-teas-yang-te-topo,, +14:u13:[otn-topo], +14:uI0:[-],..,"",, +11:uI1:-----,., +33:u03:draft-ietf-teas-yang-te-topo,, +9:u06:yang,, +12:u00:G.873.1], +10:u04:Zheng,, +13:u10:[te-topo], +33:u11:draft-ietf-teas-yang-te-topo,, +14:u12:[otn-topo], +9:u14:yang,, +6:u21:[O, +7:u22:[OT, +8:u23:[OTN, +11:uI0:-----,., +33:u02:draft-ietf-teas-yang-te-topo,, +9:u05:yang,, +10:u03:Zheng,, +33:u10:draft-ietf-teas-yang-te-topo,, +14:u11:[otn-topo], +9:u13:yang,, +33:u01:draft-ietf-teas-yang-te-topo,, +9:u04:yang,, +10:u02:Zheng,, +14:u10:[otn-topo], +9:u12:yang,, +6:u21:ya, +7:u22:yan, +8:u23:yang, +33:u00:draft-ietf-teas-yang-te-topo,, +9:u03:yang,, +17:u08:[CLIENT-TOPO], +10:u01:Zheng,, +9:u11:yang,, +9:u02:yang,, +14:u08:Topology",, +10:u00:Zheng,, +9:u10:yang,, +9:u01:yang,, +17:u07:[CLIENT-TOPO], +13:u08:progress., +39:u08:draft-zheng-ccamp-client-topo-yang,, +9:u00:yang,, +17:u06:[CLIENT-TOPO], +14:u07:Topology",, +15:u08:[TE-TUNNEL], +39:u07:draft-zheng-ccamp-client-topo-yang,, +17:u14:[client-topo], +17:u05:[CLIENT-TOPO], +14:u06:Topology",, +13:u07:progress., +39:u06:draft-zheng-ccamp-client-topo-yang,, +9:u08:Saad,, +17:u13:[client-topo], +14:u14:topology",, +13:uI2:[-],..,"-, +17:u04:[CLIENT-TOPO], +14:u05:Topology",, +13:u06:progress., +15:u07:[TE-TUNNEL], +7:u08:te,, +39:u05:draft-zheng-ccamp-client-topo-yang,, +9:u07:Saad,, +17:u12:[client-topo], +14:u13:topology",, +13:u14:progress., +13:uI1:[-],..,"-, +12:uI2:",-----,, +17:u03:[CLIENT-TOPO], +14:u04:Topology",, +13:u05:progress., +15:u06:[TE-TUNNEL], +18:u08:[PATH-COMPUTE], +39:u04:draft-zheng-ccamp-client-topo-yang,, +9:u06:Saad,, +17:u11:[client-topo], +14:u12:topology",, +13:u13:progress., +15:u14:[te-tunnel], +13:uI0:[-],..,"-, +12:uI1:",-----,, +17:u02:[CLIENT-TOPO], +14:u03:Topology",, +13:u04:progress., +15:u05:[TE-TUNNEL], +7:u07:te,, +39:u03:draft-zheng-ccamp-client-topo-yang,, +9:u05:Saad,, +17:u10:[client-topo], +14:u11:topology",, +13:u12:progress., +15:u13:[te-tunnel], +12:uI0:",-----,, +17:u01:[CLIENT-TOPO], +14:u02:Topology",, +13:u03:progress., +15:u04:[TE-TUNNEL], +7:u06:te,, +18:u07:[PATH-COMPUTE], +39:u02:draft-zheng-ccamp-client-topo-yang,, +9:u04:Saad,, +14:u10:topology",, +13:u11:progress., +15:u12:[te-tunnel], +7:u14:te,, +10:uI2:",----, +17:u00:[CLIENT-TOPO], +14:u01:Topology",, +13:u02:progress., +15:u03:[TE-TUNNEL], +7:u05:te,, +18:u06:[PATH-COMPUTE], +39:u01:draft-zheng-ccamp-client-topo-yang,, +9:u03:Saad,, +13:u10:progress., +15:u11:[te-tunnel], +7:u13:te,, +18:u14:[path-compute], +10:uI1:",----, +14:u00:Topology",, +13:u01:progress., +15:u02:[TE-TUNNEL], +7:u04:te,, +18:u05:[PATH-COMPUTE], +39:u00:draft-zheng-ccamp-client-topo-yang,, +9:u02:Saad,, +15:u10:[te-tunnel], +7:u12:te,, +18:u13:[path-compute], +7:u22:te,, +7:u23:te,, +10:uI0:",----, +14:uI2:[-],.,,.,", +13:u00:progress., +15:u01:[TE-TUNNEL], +7:u03:te,, +18:u04:[PATH-COMPUTE], +32:u08:ietf-ccamp-otn-tunnel-model,, +9:u01:Saad,, +7:u11:te,, +18:u12:[path-compute], +8:u23:[PAT, +14:uI1:[-],.,,.,", +15:u00:[TE-TUNNEL], +7:u02:te,, +18:u03:[PATH-COMPUTE], +9:u00:Saad,, +7:u10:te,, +18:u11:[path-compute], +16:u14:[otn-tunnel], +14:uI0:[-],.,,.,", +7:u01:te,, +18:u02:[PATH-COMPUTE], +32:u07:ietf-ccamp-otn-tunnel-model,, +18:u10:[path-compute], +16:u13:[otn-tunnel], +10:u14:zheng,, +7:u00:te,, +18:u01:[PATH-COMPUTE], +32:u06:ietf-ccamp-otn-tunnel-model,, +16:u12:[otn-tunnel], +10:u13:zheng,, +32:u14:ietf-ccamp-otn-tunnel-model,, +12:uI2:,..,"",-, +18:u00:[PATH-COMPUTE], +32:u05:ietf-ccamp-otn-tunnel-model,, +23:u08:client-signal-yang,, +16:u11:[otn-tunnel], +10:u12:zheng,, +32:u13:ietf-ccamp-otn-tunnel-model,, +7:u22:Zhe, +8:u23:Zhen, +12:uI1:,..,"",-, +10:uI2:----,., +32:u04:ietf-ccamp-otn-tunnel-model,, +16:u10:[otn-tunnel], +10:u11:zheng,, +32:u12:ietf-ccamp-otn-tunnel-model,, +12:uI0:,..,"",-, +10:uI1:----,., +32:u03:ietf-ccamp-otn-tunnel-model,, +23:u07:client-signal-yang,, +13:u08:[RFC5151], +10:u10:zheng,, +32:u11:ietf-ccamp-otn-tunnel-model,, +10:uI0:----,., +32:u02:ietf-ccamp-otn-tunnel-model,, +23:u06:client-signal-yang,, +32:u10:ietf-ccamp-otn-tunnel-model,, +23:u14:client-signal-yang,, +32:u01:ietf-ccamp-otn-tunnel-model,, +23:u05:client-signal-yang,, +13:u07:[RFC5151], +14:u08:--Resource, +23:u13:client-signal-yang,, +8:uI2:--,., +32:u00:ietf-ccamp-otn-tunnel-model,, +23:u04:client-signal-yang,, +13:u06:[RFC5151], +14:u07:--Resource, +13:u08:(RSVP-TE), +23:u12:client-signal-yang,, +13:u14:[rfc5151], +8:uI1:--,., +23:u03:client-signal-yang,, +13:u05:[RFC5151], +13:u08:[RFC6898], +14:u06:--Resource, +13:u07:(RSVP-TE), +23:u11:client-signal-yang,, +13:u13:[rfc5151], +8:uI0:--,., +23:u02:client-signal-yang,, +13:u04:[RFC5151], +14:u05:--Resource, +13:u06:(RSVP-TE), +23:u10:client-signal-yang,, +13:u12:[rfc5151], +23:u01:client-signal-yang,, +13:u03:[RFC5151], +13:u07:[RFC6898], +14:u04:--Resource, +13:u05:(RSVP-TE), +13:u11:[rfc5151], +9:u14:2008., +23:u00:client-signal-yang,, +13:u02:[RFC5151], +13:u06:[RFC6898], +13:u08:[RFC8040], +14:u03:--Resource, +13:u04:(RSVP-TE), +13:u10:[rfc5151], +9:u13:2008., +13:u14:[rfc6898], +13:u01:[RFC5151], +13:u05:[RFC6898], +14:u02:--Resource, +13:u03:(RSVP-TE), +12:u08:Bierman,, +9:u12:2008., +13:u13:[rfc6898], +13:u00:[RFC5151], +13:u04:[RFC6898], +13:u07:[RFC8040], +13:u08:[RFC8309], +14:u01:--Resource, +13:u02:(RSVP-TE), +12:u07:Bierman,, +9:u11:2008., +13:u12:[rfc6898], +13:u03:[RFC6898], +13:u06:[RFC8040], +14:u00:--Resource, +13:u01:(RSVP-TE), +12:u06:Bierman,, +7:u08:Wu,, +9:u10:2008., +13:u11:[rfc6898], +13:u14:[rfc8040], +13:u02:[RFC6898], +13:u05:[RFC8040], +13:u07:[RFC8309], +15:u08:[ACTN-YANG], +13:u00:(RSVP-TE), +12:u05:Bierman,, +7:u07:Wu,, +13:u10:[rfc6898], +13:u13:[rfc8040], +14:uI2:[],..,"",,, +13:u01:[RFC6898], +13:u04:[RFC8040], +13:u06:[RFC8309], +12:u04:Bierman,, +7:u06:Wu,, +10:u08:Zhang,, +13:u12:[rfc8040], +13:u14:[rfc8309], +14:uI1:[],..,"",,, +13:u00:[RFC6898], +13:u03:[RFC8040], +13:u05:[RFC8309], +15:u07:[ACTN-YANG], +31:u08:draft-zhang-teas-actn-yang,, +12:u03:Bierman,, +7:u05:Wu,, +10:u07:Zhang,, +13:u11:[rfc8040], +13:u13:[rfc8309], +14:uI0:[],..,"",,, +13:u02:[RFC8040], +13:u04:[RFC8309], +15:u06:[ACTN-YANG], +14:u08:[RFC-FOLD], +12:u02:Bierman,, +7:u04:Wu,, +10:u06:Zhang,, +13:u10:[rfc8040], +13:u12:[rfc8309], +15:u14:[actn-yang], +13:u01:[RFC8040], +13:u03:[RFC8309], +15:u05:[ACTN-YANG], +31:u07:draft-zhang-teas-actn-yang,, +12:u01:Bierman,, +7:u03:Wu,, +10:u05:Zhang,, +11:u08:Watsen,, +13:u11:[rfc8309], +15:u13:[actn-yang], +13:u00:[RFC8040], +13:u02:[RFC8309], +15:u04:[ACTN-YANG], +31:u06:draft-zhang-teas-actn-yang,, +14:u07:[RFC-FOLD], +12:u08:folding,, +12:u00:Bierman,, +7:u02:Wu,, +10:u04:Zhang,, +11:u07:Watsen,, +13:u10:[rfc8309], +15:u12:[actn-yang], +31:u14:draft-zhang-teas-actn-yang,, +7:u22:[AC, +8:u23:[ACT, +13:u01:[RFC8309], +15:u03:[ACTN-YANG], +31:u05:draft-zhang-teas-actn-yang,, +14:u06:[RFC-FOLD], +7:u01:Wu,, +10:u03:Zhang,, +11:u06:Watsen,, +15:u11:[actn-yang], +31:u13:draft-zhang-teas-actn-yang,, +14:u14:[rfc-fold], +13:u00:[RFC8309], +15:u02:[ACTN-YANG], +31:u04:draft-zhang-teas-actn-yang,, +14:u05:[RFC-FOLD], +12:u07:folding,, +7:u00:Wu,, +10:u02:Zhang,, +11:u05:Watsen,, +15:u10:[actn-yang], +31:u12:draft-zhang-teas-actn-yang,, +14:u13:[rfc-fold], +15:u01:[ACTN-YANG], +31:u03:draft-zhang-teas-actn-yang,, +14:u04:[RFC-FOLD], +12:u06:folding,, +10:u01:Zhang,, +11:u04:Watsen,, +31:u11:draft-zhang-teas-actn-yang,, +14:u12:[rfc-fold], +12:u14:folding,, +11:uI2:-",----, +15:u00:[ACTN-YANG], +31:u02:draft-zhang-teas-actn-yang,, +14:u03:[RFC-FOLD], +12:u05:folding,, +10:u00:Zhang,, +11:u03:Watsen,, +31:u10:draft-zhang-teas-actn-yang,, +14:u11:[rfc-fold], +12:u13:folding,, +11:uI1:-",----, +31:u01:draft-zhang-teas-actn-yang,, +14:u02:[RFC-FOLD], +12:u04:folding,, +11:u02:Watsen,, +14:u10:[rfc-fold], +12:u12:folding,, +8:u23:fold, +11:uI0:-",----, +31:u00:draft-zhang-teas-actn-yang,, +14:u01:[RFC-FOLD], +12:u03:folding,, +17:u08:[TE-TUTORIAL], +11:u01:Watsen,, +12:u11:folding,, +14:u00:[RFC-FOLD], +12:u02:folding,, +11:u00:Watsen,, +12:u08:Bryskin,, +12:u10:folding,, +12:u01:folding,, +17:u07:[TE-TUTORIAL], +20:u08:tunnel-modeling,, +12:u07:Bryskin,, +12:u00:folding,, +17:u06:[TE-TUTORIAL], +8:u08:[ONF, +12:u06:Bryskin,, +17:u14:[te-tutorial], +17:u05:[TE-TUTORIAL], +20:u07:tunnel-modeling,, +12:u05:Bryskin,, +11:u08:TR-527], +17:u13:[te-tutorial], +17:u04:[TE-TUTORIAL], +20:u06:tunnel-modeling,, +8:u07:[ONF, +12:u04:Bryskin,, +11:u07:TR-527], +17:u12:[te-tutorial], +20:u14:tunnel-modeling,, +17:u03:[TE-TUTORIAL], +20:u05:tunnel-modeling,, +8:u06:[ONF, +58:u08:<https://github.com/OpenNetworkingFoundation/Snowmass-, +12:u03:Bryskin,, +11:u06:TR-527], +11:u08:GitHub], +17:u11:[te-tutorial], +20:u13:tunnel-modeling,, +8:u14:[onf, +17:u02:[TE-TUTORIAL], +20:u04:tunnel-modeling,, +8:u05:[ONF, +21:u08:ONFOpenTransport>, +12:u02:Bryskin,, +11:u05:TR-527], +11:u07:GitHub], +17:u10:[te-tutorial], +20:u12:tunnel-modeling,, +8:u13:[onf, +10:uI2:[-]-,", +17:u01:[TE-TUTORIAL], +20:u03:tunnel-modeling,, +8:u04:[ONF, +58:u07:<https://github.com/OpenNetworkingFoundation/Snowmass-, +12:u01:Bryskin,, +11:u04:TR-527], +11:u06:GitHub], +20:u11:tunnel-modeling,, +8:u12:[onf, +7:u22:[ON, +8:u23:[ONF, +10:uI1:[-]-,", +17:u00:[TE-TUTORIAL], +20:u02:tunnel-modeling,, +8:u03:[ONF, +58:u06:<https://github.com/OpenNetworkingFoundation/Snowmass-, +21:u07:ONFOpenTransport>, +10:u08:(LSO):, +12:u00:Bryskin,, +11:u03:TR-527], +11:u05:GitHub], +20:u10:tunnel-modeling,, +8:u11:[onf, +58:u14:<https://github.com/opennetworkingfoundation/snowmass-, +10:uI0:[-]-,", +20:u01:tunnel-modeling,, +8:u02:[ONF, +58:u05:<https://github.com/OpenNetworkingFoundation/Snowmass-, +21:u06:ONFOpenTransport>, +11:u02:TR-527], +11:u04:GitHub], +8:u10:[onf, +58:u13:<https://github.com/opennetworkingfoundation/snowmass-, +21:u14:onfopentransport>, +11:uI2:://.//-, +20:u00:tunnel-modeling,, +8:u01:[ONF, +58:u04:<https://github.com/OpenNetworkingFoundation/Snowmass-, +21:u05:ONFOpenTransport>, +10:u07:(LSO):, +62:u08:<https://www.mef.net/Assets/Technical_Specifications/PDF/M, +11:u01:TR-527], +11:u03:GitHub], +7:u08:MEF, +58:u12:<https://github.com/opennetworkingfoundation/snowmass-, +21:u13:onfopentransport>, +8:u14:[mef, +11:uI1:://.//-, +8:u00:[ONF, +58:u03:<https://github.com/OpenNetworkingFoundation/Snowmass-, +21:u04:ONFOpenTransport>, +10:u06:(LSO):, +14:u08:EF_55.pdf>, +11:u00:TR-527], +11:u02:GitHub], +7:u07:MEF, +58:u11:<https://github.com/opennetworkingfoundation/snowmass-, +21:u12:onfopentransport>, +8:u13:[mef, +10:u14:(lso):, +7:u22:ONF, +8:u23:ONFO, +11:uI0:://.//-, +58:u02:<https://github.com/OpenNetworkingFoundation/Snowmass-, +21:u03:ONFOpenTransport>, +10:u05:(LSO):, +62:u07:<https://www.mef.net/Assets/Technical_Specifications/PDF/M, +11:u01:GitHub], +7:u06:MEF, +58:u10:<https://github.com/opennetworkingfoundation/snowmass-, +21:u11:onfopentransport>, +8:u12:[mef, +10:u13:(lso):, +6:u21:[M, +7:u22:[ME, +8:u23:[MEF, +9:uI2:():",, +58:u01:<https://github.com/OpenNetworkingFoundation/Snowmass-, +21:u02:ONFOpenTransport>, +10:u04:(LSO):, +62:u06:<https://www.mef.net/Assets/Technical_Specifications/PDF/M, +14:u07:EF_55.pdf>, +11:u00:GitHub], +7:u05:MEF, +21:u10:onfopentransport>, +8:u11:[mef, +10:u12:(lso):, +62:u14:<https://www.mef.net/assets/technical_specifications/pdf/m, +7:u22:(LS, +8:u23:(LSO, +9:uI1:():",, +58:u00:<https://github.com/OpenNetworkingFoundation/Snowmass-, +21:u01:ONFOpenTransport>, +10:u03:(LSO):, +62:u05:<https://www.mef.net/Assets/Technical_Specifications/PDF/M, +14:u06:EF_55.pdf>, +7:u04:MEF, +8:u10:[mef, +10:u11:(lso):, +62:u13:<https://www.mef.net/assets/technical_specifications/pdf/m, +14:u14:ef_55.pdf>, +9:uI0:():",, +13:uI2:://..////, +21:u00:ONFOpenTransport>, +10:u02:(LSO):, +62:u04:<https://www.mef.net/Assets/Technical_Specifications/PDF/M, +14:u05:EF_55.pdf>, +7:u03:MEF, +10:u10:(lso):, +62:u12:<https://www.mef.net/assets/technical_specifications/pdf/m, +14:u13:ef_55.pdf>, +13:uI1:://..////, +10:u01:(LSO):, +62:u03:<https://www.mef.net/Assets/Technical_Specifications/PDF/M, +14:u04:EF_55.pdf>, +7:u02:MEF, +62:u11:<https://www.mef.net/assets/technical_specifications/pdf/m, +14:u12:ef_55.pdf>, +6:u21:EF, +7:u22:EF_, +8:u23:EF_5, +13:uI0:://..////, +10:u00:(LSO):, +62:u02:<https://www.mef.net/Assets/Technical_Specifications/PDF/M, +14:u03:EF_55.pdf>, +7:u01:MEF, +9:u08:(NBI), +62:u10:<https://www.mef.net/assets/technical_specifications/pdf/m, +14:u11:ef_55.pdf>, +10:u14:design, +62:u01:<https://www.mef.net/Assets/Technical_Specifications/PDF/M, +14:u02:EF_55.pdf>, +12:u08:Belotti,, +7:u00:MEF, +9:u07:(NBI), +14:u10:ef_55.pdf>, +10:u13:design, +62:u00:<https://www.mef.net/Assets/Technical_Specifications/PDF/M, +14:u01:EF_55.pdf>, +12:u08:Gonzalez, +9:u06:(NBI), +8:u08:Tara, +10:u12:design, +14:u00:EF_55.pdf>, +12:u07:Belotti,, +9:u05:(NBI), +8:u07:Tara, +10:u11:design, +12:u06:Belotti,, +12:u07:Gonzalez, +15:u08:foundations, +9:u04:(NBI), +8:u06:Tara, +10:u10:design, +12:u14:belotti,, +12:u05:Belotti,, +12:u06:Gonzalez, +9:u03:(NBI), +8:u05:Tara, +12:u13:belotti,, +12:u14:gonzalez, +12:u04:Belotti,, +12:u05:Gonzalez, +15:u07:foundations, +9:u02:(NBI), +8:u04:Tara, +12:u12:belotti,, +12:u13:gonzalez, +7:u22:Bel, +8:u23:Belo, +12:u03:Belotti,, +12:u04:Gonzalez, +15:u06:foundations, +9:u01:(NBI), +8:u03:Tara, +12:u11:belotti,, +12:u12:gonzalez, +15:u14:foundations, +12:u02:Belotti,, +12:u03:Gonzalez, +15:u05:foundations, +9:u00:(NBI), +8:u02:Tara, +10:u08:Vishnu, +12:u10:belotti,, +12:u11:gonzalez, +15:u13:foundations, +12:u01:Belotti,, +12:u02:Gonzalez, +15:u04:foundations, +8:u01:Tara, +10:u07:Vishnu, +12:u10:gonzalez, +15:u12:foundations, +12:u00:Belotti,, +12:u01:Gonzalez, +15:u03:foundations, +8:u00:Tara, +10:u06:Vishnu, +15:u11:foundations, +12:u14:bryskin,, +12:uI2:[-][-],,, +12:u00:Gonzalez, +15:u02:foundations, +13:u08:examples., +10:u05:Vishnu, +15:u10:foundations, +12:u13:bryskin,, +12:uI1:[-][-],,, +15:u01:foundations, +10:u04:Vishnu, +12:u12:bryskin,, +8:u23:Brys, +12:uI0:[-][-],,, +15:u00:foundations, +13:u07:examples., +20:u08:H2020-ICT-2016-2, +10:u03:Vishnu, +12:u11:bryskin,, +9:u14:input, +13:u06:examples., +10:u02:Vishnu, +14:u08:METRO-HAUL, +12:u10:bryskin,, +9:u13:input, +13:u14:examples., +13:u05:examples., +20:u07:H2020-ICT-2016-2, +10:u01:Vishnu, +14:u07:METRO-HAUL, +9:u12:input, +13:u13:examples., +7:u22:inp, +8:u23:inpu, +13:u04:examples., +20:u06:H2020-ICT-2016-2, +10:u00:Vishnu, +14:u06:METRO-HAUL, +9:u11:input, +13:u12:examples., +20:u14:h2020-ict-2016-2, +13:u03:examples., +20:u05:H2020-ICT-2016-2, +14:u05:METRO-HAUL, +9:u10:input, +13:u11:examples., +20:u13:h2020-ict-2016-2, +13:uI2:----(..)., +13:u02:examples., +20:u04:H2020-ICT-2016-2, +14:u04:METRO-HAUL, +13:u10:examples., +20:u12:h2020-ict-2016-2, +6:u21:H2, +7:u22:H20, +8:u23:H202, +13:uI1:----(..)., +10:uI2:--...., +13:u01:examples., +20:u03:H2020-ICT-2016-2, +14:u03:METRO-HAUL, +20:u11:h2020-ict-2016-2, +13:uI0:----(..)., +10:uI1:--...., +13:u00:examples., +20:u02:H2020-ICT-2016-2, +14:u02:METRO-HAUL, +20:u10:h2020-ict-2016-2, +10:uI0:--...., +20:u01:H2020-ICT-2016-2, +14:u01:METRO-HAUL, +20:u00:H2020-ICT-2016-2, +14:u00:METRO-HAUL, +9:u08:piece, +13:u08:objective, +13:u07:objective, +9:u07:piece, +13:u06:objective, +9:u06:piece, +13:u05:objective, +9:u14:piece, +9:u05:piece, +13:u04:objective, +9:u13:piece, +9:u04:piece, +13:u03:objective, +7:u08:I-D, +9:u12:piece, +7:u22:pie, +8:u23:piec, +9:u03:piece, +13:u02:objective, +7:u07:I-D, +9:u11:piece, +9:u02:piece, +6:u08:We, +13:u01:objective, +7:u06:I-D, +9:u08:chars, +9:u10:piece, +9:u01:piece, +13:u00:objective, +7:u05:I-D, +9:u07:chars, +9:u00:piece, +6:u07:We, +7:u04:I-D, +9:u06:chars, +6:u14:72, +10:uI2:'"-"-:, +6:u06:We, +15:u08:[RFC-FOLD]., +7:u03:I-D, +9:u05:chars, +10:u08:width., +6:u13:72, +10:uI1:'"-"-:, +6:u05:We, +7:u02:I-D, +9:u04:chars, +10:u07:width., +6:u12:72, +6:u21:72, +6:u22:72, +6:u23:72, +10:uI0:'"-"-:, +6:u04:We, +15:u07:[RFC-FOLD]., +13:u08:printing., +7:u01:I-D, +9:u03:chars, +10:u06:width., +11:u08:editors, +6:u11:72, +6:u22:We, +6:u23:We, +10:uI2:"-",.., +6:u03:We, +15:u06:[RFC-FOLD]., +7:u00:I-D, +9:u02:chars, +10:u05:width., +11:u07:editors, +6:u10:72, +15:u14:[rfc-fold]., +10:uI1:"-",.., +6:u02:We, +15:u05:[RFC-FOLD]., +13:u07:printing., +12:u08:comments, +9:u01:chars, +10:u04:width., +11:u06:editors, +15:u13:[rfc-fold]., +10:uI0:"-",.., +11:uI2:[-]."-", +6:u01:We, +15:u04:[RFC-FOLD]., +13:u06:printing., +9:u00:chars, +10:u03:width., +11:u05:editors, +15:u12:[rfc-fold]., +13:u14:printing., +11:uI1:[-]."-", +6:u00:We, +15:u03:[RFC-FOLD]., +13:u05:printing., +12:u07:comments, +10:u02:width., +11:u04:editors, +15:u11:[rfc-fold]., +13:u13:printing., +11:uI0:[-]."-", +15:u02:[RFC-FOLD]., +13:u04:printing., +12:u06:comments, +10:u01:width., +11:u03:editors, +15:u10:[rfc-fold]., +13:u12:printing., +12:u14:comments, +15:u01:[RFC-FOLD]., +13:u03:printing., +12:u05:comments, +10:u00:width., +11:u02:editors, +13:u11:printing., +12:u13:comments, +15:u00:[RFC-FOLD]., +13:u02:printing., +12:u04:comments, +11:u01:editors, +13:u10:printing., +12:u12:comments, +13:u01:printing., +12:u03:comments, +11:u00:editors, +12:u11:comments, +13:u00:printing., +12:u02:comments, +13:u08:unfold_it, +12:u10:comments, +12:u01:comments, +12:u08:stripper, +12:u00:comments, +13:u07:unfold_it, +15:u08:Folded-JSON, +13:u06:unfold_it, +12:u07:stripper, +17:u08:Unfolded-JSON, +13:u14:unfold_it, +13:u05:unfold_it, +12:u06:stripper, +15:u07:Folded-JSON, +9:u08:Naked, +13:u13:unfold_it, +12:u14:stripper, +13:u04:unfold_it, +12:u05:stripper, +15:u06:Folded-JSON, +17:u07:Unfolded-JSON, +14:u08:<--fold_it, +13:u12:unfold_it, +12:u13:stripper, +15:u14:folded-json, +13:u03:unfold_it, +12:u04:stripper, +15:u05:Folded-JSON, +17:u06:Unfolded-JSON, +9:u07:Naked, +13:u08:<--author, +13:u11:unfold_it, +12:u12:stripper, +15:u13:folded-json, +17:u14:unfolded-json, +13:u02:unfold_it, +12:u03:stripper, +15:u04:Folded-JSON, +17:u05:Unfolded-JSON, +9:u06:Naked, +14:u07:<--fold_it, +15:u08:<=72-chars?, +9:u08:edits, +13:u10:unfold_it, +12:u11:stripper, +15:u12:folded-json, +17:u13:unfolded-json, +9:u14:naked, +8:u23:Fold, +13:u01:unfold_it, +12:u02:stripper, +15:u03:Folded-JSON, +17:u04:Unfolded-JSON, +9:u05:Naked, +14:u06:<--fold_it, +13:u07:<--author, +9:u07:edits, +12:u10:stripper, +15:u11:folded-json, +17:u12:unfolded-json, +9:u13:naked, +14:u14:<--fold_it, +7:u22:Unf, +8:u23:Unfo, +13:u00:unfold_it, +12:u01:stripper, +15:u02:Folded-JSON, +17:u03:Unfolded-JSON, +9:u04:Naked, +14:u05:<--fold_it, +13:u06:<--author, +15:u07:<=72-chars?, +9:u06:edits, +15:u10:folded-json, +17:u11:unfolded-json, +9:u12:naked, +14:u13:<--fold_it, +13:u14:<--author, +7:u22:Nak, +8:u23:Nake, +12:u00:stripper, +15:u01:Folded-JSON, +17:u02:Unfolded-JSON, +9:u03:Naked, +14:u04:<--fold_it, +13:u05:<--author, +15:u06:<=72-chars?, +9:u05:edits, +17:u10:unfolded-json, +9:u11:naked, +14:u12:<--fold_it, +13:u13:<--author, +15:u14:<=72-chars?, +8:u23:<--f, +15:u00:Folded-JSON, +17:u01:Unfolded-JSON, +9:u02:Naked, +14:u03:<--fold_it, +13:u04:<--author, +15:u05:<=72-chars?, +9:u04:edits, +9:u10:naked, +14:u11:<--fold_it, +13:u12:<--author, +15:u13:<=72-chars?, +8:u23:<--a, +6:uI2:-?, +17:u00:Unfolded-JSON, +9:u01:Naked, +14:u02:<--fold_it, +13:u03:<--author, +15:u04:<=72-chars?, +9:u03:edits, +9:u08:JSON?, +14:u10:<--fold_it, +13:u11:<--author, +15:u12:<=72-chars?, +6:u21:<=, +7:u22:<=7, +8:u23:<=72, +6:uI1:-?, +9:u00:Naked, +14:u01:<--fold_it, +13:u02:<--author, +15:u03:<=72-chars?, +9:u02:edits, +9:u07:JSON?, +13:u10:<--author, +15:u11:<=72-chars?, +6:uI0:-?, +14:u00:<--fold_it, +13:u01:<--author, +15:u02:<=72-chars?, +9:u01:edits, +9:u06:JSON?, +15:u10:<=72-chars?, +13:u00:<--author, +15:u01:<=72-chars?, +17:u08:JSON-encoding, +9:u00:edits, +9:u05:JSON?, +15:u00:<=72-chars?, +9:u04:JSON?, +17:u07:JSON-encoding, +9:u03:JSON?, +17:u06:JSON-encoding, +9:u02:JSON?, +17:u14:json-encoding, +17:u05:JSON-encoding, +9:u01:JSON?, +17:u13:json-encoding, +17:u04:JSON-encoding, +9:u00:JSON?, +17:u12:json-encoding, +17:u03:JSON-encoding, +17:u11:json-encoding, +17:u02:JSON-encoding, +17:u10:json-encoding, +17:u01:JSON-encoding, +17:u00:JSON-encoding, +7:u08:Our, +7:u07:Our, +7:u06:Our, +7:u14:our, +7:u05:Our, +7:u08:at:, +7:u13:our, +7:u04:Our, +7:u07:at:, +7:u12:our, +6:u21:Ou, +7:u22:Our, +7:u23:Our, +7:u03:Our, +13:u08:key-value, +7:u06:at:, +7:u11:our, +7:u02:Our, +14:u08:-free-form, +7:u05:at:, +7:u10:our, +13:uI2::://.//-/, +7:u01:Our, +13:u07:key-value, +7:u04:at:, +15:u08:descriptive, +13:uI1::://.//-/, +7:u00:Our, +13:u06:key-value, +14:u07:-free-form, +19:u08:-machine-usable, +7:u03:at:, +15:u07:descriptive, +13:u14:key-value, +13:uI0::://.//-/, +13:u05:key-value, +14:u06:-free-form, +36:u08:"ietf-routing-types@2017-12-04":, +7:u02:at:, +15:u06:descriptive, +14:u08:directives, +13:u13:key-value, +14:u14:-free-form, +10:uI2:-"//":, +13:u04:key-value, +14:u05:-free-form, +19:u07:-machine-usable, +7:u01:at:, +15:u05:descriptive, +14:u07:directives, +15:u08:"rfc8294",}, +13:u12:key-value, +14:u13:-free-form, +8:u23:key-, +10:uI1:-"//":, +16:uI2:--,.."//":"", +13:u03:key-value, +14:u04:-free-form, +19:u06:-machine-usable, +36:u07:"ietf-routing-types@2017-12-04":, +7:u00:at:, +15:u04:descriptive, +14:u06:directives, +15:u07:"rfc8294",}, +12:u08:download, +13:u11:key-value, +14:u12:-free-form, +19:u14:-machine-usable, +6:u21:-f, +7:u22:-fr, +8:u23:-fre, +10:uI0:-"//":, +16:uI1:--,.."//":"", +13:u02:key-value, +14:u03:-free-form, +19:u05:-machine-usable, +36:u06:"ietf-routing-types@2017-12-04":, +15:u03:descriptive, +14:u05:directives, +15:u06:"rfc8294",}, +12:u07:download, +11:u08:extract, +13:u10:key-value, +14:u11:-free-form, +19:u13:-machine-usable, +36:u14:"ietf-routing-types@2017-12-04":, +16:uI0:--,.."//":"", +13:uI2:--.."//":, +13:u01:key-value, +14:u02:-free-form, +19:u04:-machine-usable, +36:u05:"ietf-routing-types@2017-12-04":, +11:u08:rapidly, +15:u02:descriptive, +14:u04:directives, +15:u05:"rfc8294",}, +12:u06:download, +11:u07:extract, +14:u10:-free-form, +19:u12:-machine-usable, +36:u13:"ietf-routing-types@2017-12-04":, +6:u21:-m, +7:u22:-ma, +8:u23:-mac, +13:uI1:--.."//":, +14:uI2:"----":"",, +13:u00:key-value, +14:u01:-free-form, +19:u03:-machine-usable, +36:u04:"ietf-routing-types@2017-12-04":, +15:u01:descriptive, +14:u03:directives, +15:u04:"rfc8294",}, +12:u05:download, +11:u06:extract, +13:u08:evolving., +19:u11:-machine-usable, +36:u12:"ietf-routing-types@2017-12-04":, +13:uI0:--.."//":, +14:uI1:"----":"",, +14:u00:-free-form, +19:u02:-machine-usable, +36:u03:"ietf-routing-types@2017-12-04":, +11:u07:rapidly, +15:u00:descriptive, +14:u02:directives, +15:u03:"rfc8294",}, +12:u04:download, +11:u05:extract, +13:u07:evolving., +19:u10:-machine-usable, +36:u11:"ietf-routing-types@2017-12-04":, +14:uI0:"----":"",, +19:u01:-machine-usable, +36:u02:"ietf-routing-types@2017-12-04":, +11:u06:rapidly, +14:u01:directives, +15:u02:"rfc8294",}, +12:u03:download, +11:u04:extract, +13:u06:evolving., +8:u08:idea, +36:u10:"ietf-routing-types@2017-12-04":, +11:u14:rapidly, +19:u00:-machine-usable, +36:u01:"ietf-routing-types@2017-12-04":, +11:u05:rapidly, +12:u08:schemas,, +14:u00:directives, +15:u01:"rfc8294",}, +12:u02:download, +11:u03:extract, +13:u05:evolving., +8:u07:idea, +11:u13:rapidly, +36:u00:"ietf-routing-types@2017-12-04":, +11:u04:rapidly, +10:u08:Useful, +15:u00:"rfc8294",}, +12:u01:download, +11:u02:extract, +13:u04:evolving., +8:u06:idea, +11:u12:rapidly, +7:u22:rap, +8:u23:rapi, +11:u03:rapidly, +12:u07:schemas,, +7:u08:(2), +12:u00:download, +11:u01:extract, +13:u03:evolving., +8:u05:idea, +11:u11:rapidly, +11:u02:rapidly, +12:u06:schemas,, +10:u07:Useful, +15:u08:YANG-module, +11:u00:extract, +13:u02:evolving., +8:u04:idea, +11:u10:rapidly, +12:u14:schemas,, +11:u01:rapidly, +12:u05:schemas,, +10:u06:Useful, +7:u07:(2), +13:u01:evolving., +8:u03:idea, +8:u08:--->, +12:u13:schemas,, +11:u00:rapidly, +12:u04:schemas,, +10:u05:Useful, +7:u06:(2), +15:u07:YANG-module, +13:u00:evolving., +8:u02:idea, +8:u07:--->, +12:u12:schemas,, +7:u14:(2), +13:uI2::://.////, +12:u03:schemas,, +10:u04:Useful, +7:u05:(2), +15:u06:YANG-module, +8:u01:idea, +8:u06:--->, +12:u11:schemas,, +7:u13:(2), +15:u14:yang-module, +8:u23:Usef, +13:uI1::://.////, +12:u02:schemas,, +10:u03:Useful, +7:u04:(2), +15:u05:YANG-module, +8:u00:idea, +8:u05:--->, +7:u08:(1), +12:u10:schemas,, +7:u12:(2), +15:u13:yang-module, +7:u22:(2), +7:u23:(2), +13:uI0::://.////, +13:uI2:-----(,,), +12:u01:schemas,, +10:u02:Useful, +7:u03:(2), +15:u04:YANG-module, +8:u04:--->, +7:u07:(1), +7:u11:(2), +15:u12:yang-module, +13:uI1:-----(,,), +12:u00:schemas,, +10:u01:Useful, +7:u02:(2), +15:u03:YANG-module, +8:u03:--->, +7:u06:(1), +7:u10:(2), +15:u11:yang-module, +13:uI0:-----(,,), +10:u00:Useful, +7:u01:(2), +15:u02:YANG-module, +16:u08:Config/state, +8:u02:--->, +7:u05:(1), +15:u10:yang-module, +7:u00:(2), +15:u01:YANG-module, +8:u01:--->, +7:u04:(1), +13:u08:JTOX-file, +15:u00:YANG-module, +16:u07:Config/state, +8:u00:--->, +7:u03:(1), +13:u07:JTOX-file, +7:u08:(4), +16:u06:Config/state, +7:u02:(1), +13:u06:JTOX-file, +7:u07:(4), +16:u14:config/state, +16:u05:Config/state, +7:u01:(1), +13:u05:JTOX-file, +7:u06:(4), +16:u13:config/state, +16:u04:Config/state, +7:u00:(1), +13:u04:JTOX-file, +7:u05:(4), +16:u12:config/state, +16:u03:Config/state, +13:u03:JTOX-file, +7:u04:(4), +16:u11:config/state, +16:u02:Config/state, +13:u02:JTOX-file, +7:u03:(4), +16:u10:config/state, +16:u01:Config/state, +13:u01:JTOX-file, +7:u02:(4), +16:u00:Config/state, +13:u00:JTOX-file, +7:u01:(4), +7:u00:(4), +26:u08:JSON-file------------>, +7:u08:(3), +12:u08:XML-file, +26:u07:JSON-file------------>, +12:u07:XML-file, +26:u06:JSON-file------------>, +7:u07:(3), +12:u06:XML-file, +26:u14:json-file------------>, +26:u05:JSON-file------------>, +7:u06:(3), +12:u05:XML-file, +26:u13:json-file------------>, +7:u14:(3), +26:u04:JSON-file------------>, +7:u05:(3), +12:u04:XML-file, +26:u12:json-file------------>, +7:u13:(3), +26:u03:JSON-file------------>, +7:u04:(3), +12:u03:XML-file, +26:u11:json-file------------>, +7:u12:(3), +6:u21:(3, +7:u22:(3), +7:u23:(3), +26:u02:JSON-file------------>, +7:u03:(3), +12:u02:XML-file, +26:u10:json-file------------>, +7:u11:(3), +26:u01:JSON-file------------>, +7:u02:(3), +12:u01:XML-file, +7:u10:(3), +26:u00:JSON-file------------>, +7:u01:(3), +12:u00:XML-file, +7:u00:(3), +8:u08:+-->, +7:u14:(1), +20:u08:JSON-file------>, +7:u13:(1), +8:u07:+-->, +7:u12:(1), +7:u22:(1), +7:u23:(1), +8:u06:+-->, +20:u07:JSON-file------>, +7:u11:(1), +8:u14:+-->, +8:u05:+-->, +20:u06:JSON-file------>, +7:u10:(1), +8:u13:+-->, +20:u14:json-file------>, +8:u04:+-->, +20:u05:JSON-file------>, +9:u08:pyang, +8:u12:+-->, +20:u13:json-file------>, +8:u23:+-->, +17:uI2:------------/, +8:u03:+-->, +20:u04:JSON-file------>, +9:u07:pyang, +8:u11:+-->, +20:u12:json-file------>, +17:uI1:------------/, +8:u02:+-->, +20:u03:JSON-file------>, +8:u08:(1)., +9:u06:pyang, +7:u08:1.1, +8:u10:+-->, +20:u11:json-file------>, +17:uI0:------------/, +8:u01:+-->, +20:u02:JSON-file------>, +9:u05:pyang, +7:u07:1.1, +20:u10:json-file------>, +8:u00:+-->, +20:u01:JSON-file------>, +8:u07:(1)., +9:u04:pyang, +7:u06:1.1, +20:u00:JSON-file------>, +8:u06:(1)., +9:u03:pyang, +7:u05:1.1, +8:u14:(1)., +8:u05:(1)., +9:u02:pyang, +7:u04:1.1, +8:u13:(1)., +8:u04:(1)., +9:u01:pyang, +7:u03:1.1, +8:u12:(1)., +8:u23:(1)., +8:u03:(1)., +9:u00:pyang, +7:u02:1.1, +8:u11:(1)., +8:u02:(1)., +7:u01:1.1, +8:u10:(1)., +8:u01:(1)., +7:u00:1.1, +8:u00:(1)., +10:u08:FOLD]., +10:u07:FOLD]., +10:u06:FOLD]., +10:u14:fold]., +10:u05:FOLD]., +10:u13:fold]., +10:u04:FOLD]., +10:u12:fold]., +6:u21:FO, +7:u22:FOL, +8:u23:FOLD, +10:u03:FOLD]., +10:u11:fold]., +10:u02:FOLD]., +10:u10:fold]., +10:u01:FOLD]., +10:u00:FOLD]., +14:u08:==========, +14:u07:==========, +14:u06:==========, +15:u08:__TITLE__":, +14:u14:==========, +14:u05:==========, +15:u07:__TITLE__":, +21:u08:__LAST_UPDATE__":, +14:u13:==========, +9:uI2::''(), +14:u04:==========, +15:u06:__TITLE__":, +21:u07:__LAST_UPDATE__":, +28:u08:__MISSING_ATTRIBUTES__":, +14:u12:==========, +6:u21:==, +7:u22:===, +8:u23:====, +9:uI1::''(), +14:u03:==========, +15:u05:__TITLE__":, +21:u06:__LAST_UPDATE__":, +28:u07:__MISSING_ATTRIBUTES__":, +26:u08:__REFERENCE_DRAFTS__":, +14:u11:==========, +9:uI0::''(), +14:u02:==========, +32:u08:"ietf-otn-types@2017-10-30":, +15:u04:__TITLE__":, +21:u05:__LAST_UPDATE__":, +28:u06:__MISSING_ATTRIBUTES__":, +26:u07:__REFERENCE_DRAFTS__":, +14:u08:"rfc8294",, +14:u10:==========, +13:uI2:"//":",",, +14:u01:==========, +9:u08:\01",, +15:u03:__TITLE__":, +21:u04:__LAST_UPDATE__":, +28:u05:__MISSING_ATTRIBUTES__":, +26:u06:__REFERENCE_DRAFTS__":, +14:u07:"rfc8294",, +40:u08:"draft-ietf-ccamp-otn-tunnel-model-\, +13:uI1:"//":",",, +10:uI2:"//":,, +14:u00:==========, +32:u07:"ietf-otn-types@2017-10-30":, +30:u08:"ietf-network@2018-02-26":, +15:u02:__TITLE__":, +21:u03:__LAST_UPDATE__":, +28:u04:__MISSING_ATTRIBUTES__":, +26:u05:__REFERENCE_DRAFTS__":, +14:u06:"rfc8294",, +40:u07:"draft-ietf-ccamp-otn-tunnel-model-\, +13:uI0:"//":",",, +10:uI1:"//":,, +9:uI2:"//":, +32:u06:"ietf-otn-types@2017-10-30":, +9:u07:\01",, +39:u08:"ietf-network-topology@2018-02-26":, +15:u01:__TITLE__":, +21:u02:__LAST_UPDATE__":, +28:u03:__MISSING_ATTRIBUTES__":, +26:u04:__REFERENCE_DRAFTS__":, +14:u05:"rfc8294",, +40:u06:"draft-ietf-ccamp-otn-tunnel-model-\, +14:u08:"rfc8345",, +32:u14:"ietf-otn-types@2017-10-30":, +10:uI0:"//":,, +9:uI1:"//":, +32:u05:"ietf-otn-types@2017-10-30":, +9:u06:\01",, +30:u07:"ietf-network@2018-02-26":, +31:u08:"ietf-te-types@2018-06-12":, +15:u00:__TITLE__":, +21:u01:__LAST_UPDATE__":, +28:u02:__MISSING_ATTRIBUTES__":, +26:u03:__REFERENCE_DRAFTS__":, +14:u04:"rfc8294",, +40:u05:"draft-ietf-ccamp-otn-tunnel-model-\, +14:u07:"rfc8345",, +32:u13:"ietf-otn-types@2017-10-30":, +9:u14:\01",, +9:uI0:"//":, +18:uI2:"----":"------, +32:u04:"ietf-otn-types@2017-10-30":, +9:u05:\01",, +30:u06:"ietf-network@2018-02-26":, +39:u07:"ietf-network-topology@2018-02-26":, +34:u08:"ietf-te-topology@2018-06-15":, +21:u00:__LAST_UPDATE__":, +28:u01:__MISSING_ATTRIBUTES__":, +26:u02:__REFERENCE_DRAFTS__":, +14:u03:"rfc8294",, +40:u04:"draft-ietf-ccamp-otn-tunnel-model-\, +14:u06:"rfc8345",, +33:u08:"draft-ietf-teas-yang-te-15",, +32:u12:"ietf-otn-types@2017-10-30":, +9:u13:\01",, +30:u14:"ietf-network@2018-02-26":, +18:uI1:"----":"------, +32:u03:"ietf-otn-types@2017-10-30":, +9:u04:\01",, +30:u05:"ietf-network@2018-02-26":, +39:u06:"ietf-network-topology@2018-02-26":, +31:u07:"ietf-te-types@2018-06-12":, +35:u08:"ietf-otn-topology@2017-10-30":, +28:u00:__MISSING_ATTRIBUTES__":, +26:u01:__REFERENCE_DRAFTS__":, +14:u02:"rfc8294",, +40:u03:"draft-ietf-ccamp-otn-tunnel-model-\, +14:u05:"rfc8345",, +33:u07:"draft-ietf-teas-yang-te-15",, +38:u08:"draft-ietf-teas-yang-te-topo-18",, +32:u11:"ietf-otn-types@2017-10-30":, +9:u12:\01",, +30:u13:"ietf-network@2018-02-26":, +39:u14:"ietf-network-topology@2018-02-26":, +6:u21:\0, +7:u22:\01, +8:u23:\01", +18:uI0:"----":"------, +13:uI2:"---":"",, +32:u02:"ietf-otn-types@2017-10-30":, +9:u03:\01",, +30:u04:"ietf-network@2018-02-26":, +39:u05:"ietf-network-topology@2018-02-26":, +31:u06:"ietf-te-types@2018-06-12":, +34:u07:"ietf-te-topology@2018-06-15":, +8:u08:\02", +26:u00:__REFERENCE_DRAFTS__":, +14:u01:"rfc8294",, +40:u02:"draft-ietf-ccamp-otn-tunnel-model-\, +14:u04:"rfc8345",, +33:u06:"draft-ietf-teas-yang-te-15",, +38:u07:"draft-ietf-teas-yang-te-topo-18",, +37:u08:"draft-ietf-ccamp-otn-topo-yang-\, +32:u10:"ietf-otn-types@2017-10-30":, +9:u11:\01",, +30:u12:"ietf-network@2018-02-26":, +39:u13:"ietf-network-topology@2018-02-26":, +31:u14:"ietf-te-types@2018-06-12":, +13:uI1:"---":"",, +32:u01:"ietf-otn-types@2017-10-30":, +9:u02:\01",, +30:u03:"ietf-network@2018-02-26":, +39:u04:"ietf-network-topology@2018-02-26":, +31:u05:"ietf-te-types@2018-06-12":, +34:u06:"ietf-te-topology@2018-06-15":, +35:u07:"ietf-otn-topology@2017-10-30":, +14:u00:"rfc8294",, +40:u01:"draft-ietf-ccamp-otn-tunnel-model-\, +14:u03:"rfc8345",, +33:u05:"draft-ietf-teas-yang-te-15",, +38:u06:"draft-ietf-teas-yang-te-topo-18",, +37:u07:"draft-ietf-ccamp-otn-topo-yang-\, +9:u10:\01",, +30:u11:"ietf-network@2018-02-26":, +39:u12:"ietf-network-topology@2018-02-26":, +31:u13:"ietf-te-types@2018-06-12":, +34:u14:"ietf-te-topology@2018-06-15":, +13:uI0:"---":"",, +19:uI2:"----":"-----",, +32:u00:"ietf-otn-types@2017-10-30":, +9:u01:\01",, +30:u02:"ietf-network@2018-02-26":, +39:u03:"ietf-network-topology@2018-02-26":, +31:u04:"ietf-te-types@2018-06-12":, +34:u05:"ietf-te-topology@2018-06-15":, +35:u06:"ietf-otn-topology@2017-10-30":, +8:u07:\02", +40:u00:"draft-ietf-ccamp-otn-tunnel-model-\, +14:u02:"rfc8345",, +33:u04:"draft-ietf-teas-yang-te-15",, +38:u05:"draft-ietf-teas-yang-te-topo-18",, +37:u06:"draft-ietf-ccamp-otn-topo-yang-\, +30:u10:"ietf-network@2018-02-26":, +39:u11:"ietf-network-topology@2018-02-26":, +31:u12:"ietf-te-types@2018-06-12":, +34:u13:"ietf-te-topology@2018-06-15":, +35:u14:"ietf-otn-topology@2017-10-30":, +19:uI1:"----":"-----",, +20:uI2:"----":"------",, +9:u00:\01",, +30:u01:"ietf-network@2018-02-26":, +39:u02:"ietf-network-topology@2018-02-26":, +31:u03:"ietf-te-types@2018-06-12":, +34:u04:"ietf-te-topology@2018-06-15":, +35:u05:"ietf-otn-topology@2017-10-30":, +8:u06:\02", +16:u08:"operation":, +14:u01:"rfc8345",, +33:u03:"draft-ietf-teas-yang-te-15",, +38:u04:"draft-ietf-teas-yang-te-topo-18",, +37:u05:"draft-ietf-ccamp-otn-topo-yang-\, +28:u08:__RESTCONF_OPERATION__":, +39:u10:"ietf-network-topology@2018-02-26":, +31:u11:"ietf-te-types@2018-06-12":, +34:u12:"ietf-te-topology@2018-06-15":, +35:u13:"ietf-otn-topology@2017-10-30":, +8:u14:\02", +19:uI0:"----":"-----",, +20:uI1:"----":"------",, +30:u00:"ietf-network@2018-02-26":, +39:u01:"ietf-network-topology@2018-02-26":, +31:u02:"ietf-te-types@2018-06-12":, +34:u03:"ietf-te-topology@2018-06-15":, +35:u04:"ietf-otn-topology@2017-10-30":, +8:u05:\02", +10:u08:"url":, +14:u00:"rfc8345",, +33:u02:"draft-ietf-teas-yang-te-15",, +38:u03:"draft-ietf-teas-yang-te-topo-18",, +37:u04:"draft-ietf-ccamp-otn-topo-yang-\, +28:u07:__RESTCONF_OPERATION__":, +10:u08:"GET",, +31:u10:"ietf-te-types@2018-06-12":, +34:u11:"ietf-te-topology@2018-06-15":, +35:u12:"ietf-otn-topology@2017-10-30":, +8:u13:\02", +20:uI0:"----":"------",, +39:u00:"ietf-network-topology@2018-02-26":, +31:u01:"ietf-te-types@2018-06-12":, +34:u02:"ietf-te-topology@2018-06-15":, +35:u03:"ietf-otn-topology@2017-10-30":, +8:u04:\02", +16:u07:"operation":, +33:u01:"draft-ietf-teas-yang-te-15",, +38:u02:"draft-ietf-teas-yang-te-topo-18",, +37:u03:"draft-ietf-ccamp-otn-topo-yang-\, +28:u06:__RESTCONF_OPERATION__":, +10:u07:"GET",, +62:u08:"http://{{PNC1-ADDR}}/restconf/data/ietf-network:networks", +34:u10:"ietf-te-topology@2018-06-15":, +35:u11:"ietf-otn-topology@2017-10-30":, +8:u12:\02", +7:u22:\02, +8:u23:\02", +31:u00:"ietf-te-types@2018-06-12":, +34:u01:"ietf-te-topology@2018-06-15":, +35:u02:"ietf-otn-topology@2017-10-30":, +8:u03:\02", +16:u06:"operation":, +10:u07:"url":, +28:u08:"ietf-network:networks":, +33:u00:"draft-ietf-teas-yang-te-15",, +38:u01:"draft-ietf-teas-yang-te-topo-18",, +37:u02:"draft-ietf-ccamp-otn-topo-yang-\, +28:u05:__RESTCONF_OPERATION__":, +10:u06:"GET",, +62:u07:"http://{{PNC1-ADDR}}/restconf/data/ietf-network:networks", +35:u10:"ietf-otn-topology@2017-10-30":, +8:u11:\02", +16:u14:"operation":, +34:u00:"ietf-te-topology@2018-06-15":, +35:u01:"ietf-otn-topology@2017-10-30":, +8:u02:\02", +16:u05:"operation":, +10:u06:"url":, +14:u08:"network":, +38:u00:"draft-ietf-teas-yang-te-topo-18",, +37:u01:"draft-ietf-ccamp-otn-topo-yang-\, +28:u04:__RESTCONF_OPERATION__":, +10:u05:"GET",, +62:u06:"http://{{PNC1-ADDR}}/restconf/data/ietf-network:networks", +8:u10:\02", +16:u13:"operation":, +10:u14:"url":, +10:uI2:"":"",, +35:u00:"ietf-otn-topology@2017-10-30":, +8:u01:\02", +16:u04:"operation":, +10:u05:"url":, +28:u07:"ietf-network:networks":, +37:u00:"draft-ietf-ccamp-otn-topo-yang-\, +28:u03:__RESTCONF_OPERATION__":, +10:u04:"GET",, +62:u05:"http://{{PNC1-ADDR}}/restconf/data/ietf-network:networks", +5:u08:[, +16:u12:"operation":, +10:u13:"url":, +7:u22:"op, +8:u23:"ope, +10:uI1:"":"",, +18:uI2:"":"://-///-:", +8:u00:\02", +16:u03:"operation":, +10:u04:"url":, +28:u06:"ietf-network:networks":, +14:u07:"network":, +17:u08:"network-id":, +28:u02:__RESTCONF_OPERATION__":, +10:u03:"GET",, +62:u04:"http://{{PNC1-ADDR}}/restconf/data/ietf-network:networks", +5:u07:[, +16:u11:"operation":, +10:u12:"url":, +28:u14:"ietf-network:networks":, +7:u22:"ur, +8:u23:"url, +10:uI0:"":"",, +18:uI1:"":"://-///-:", +16:u02:"operation":, +10:u03:"url":, +28:u05:"ietf-network:networks":, +14:u06:"network":, +19:u08:\ack-topology",, +28:u01:__RESTCONF_OPERATION__":, +10:u02:"GET",, +62:u03:"http://{{PNC1-ADDR}}/restconf/data/ietf-network:networks", +5:u06:[, +51:u08:"providerId/201/clientId/300/topologyId/otn-bl\, +16:u10:"operation":, +10:u11:"url":, +28:u13:"ietf-network:networks":, +14:u14:"network":, +18:uI0:"":"://-///-:", +9:uI2:"-:":, +16:u01:"operation":, +10:u02:"url":, +28:u04:"ietf-network:networks":, +14:u05:"network":, +17:u07:"network-id":, +20:u08:"network-types":, +28:u00:__RESTCONF_OPERATION__":, +10:u01:"GET",, +62:u02:"http://{{PNC1-ADDR}}/restconf/data/ietf-network:networks", +5:u05:[, +51:u07:"providerId/201/clientId/300/topologyId/otn-bl\, +10:u10:"url":, +28:u12:"ietf-network:networks":, +14:u13:"network":, +9:uI1:"-:":, +8:uI2:"":[, +16:u00:"operation":, +10:u01:"url":, +28:u03:"ietf-network:networks":, +14:u04:"network":, +17:u06:"network-id":, +19:u07:\ack-topology",, +35:u08:"ietf-te-topology:te-topology":, +10:u00:"GET",, +62:u01:"http://{{PNC1-ADDR}}/restconf/data/ietf-network:networks", +5:u04:[, +51:u06:"providerId/201/clientId/300/topologyId/otn-bl\, +28:u11:"ietf-network:networks":, +14:u12:"network":, +17:u14:"network-id":, +6:u21:"n, +7:u22:"ne, +8:u23:"net, +9:uI0:"-:":, +8:uI1:"":[, +10:u00:"url":, +28:u02:"ietf-network:networks":, +14:u03:"network":, +17:u05:"network-id":, +19:u06:\ack-topology",, +20:u07:"network-types":, +37:u08:"ietf-otn-topology:otn-topology":, +62:u00:"http://{{PNC1-ADDR}}/restconf/data/ietf-network:networks", +5:u03:[, +51:u05:"providerId/201/clientId/300/topologyId/otn-bl\, +28:u10:"ietf-network:networks":, +14:u11:"network":, +17:u13:"network-id":, +19:u14:\ack-topology",, +8:uI0:"":[, +15:uI2:"-":"/////-, +28:u01:"ietf-network:networks":, +14:u02:"network":, +17:u04:"network-id":, +19:u05:\ack-topology",, +20:u06:"network-types":, +35:u07:"ietf-te-topology:te-topology":, +5:u02:[, +51:u04:"providerId/201/clientId/300/topologyId/otn-bl\, +14:u10:"network":, +17:u12:"network-id":, +19:u13:\ack-topology",, +20:u14:"network-types":, +15:uI1:"-":"/////-, +28:u00:"ietf-network:networks":, +14:u01:"network":, +17:u03:"network-id":, +19:u04:\ack-topology",, +20:u05:"network-types":, +35:u06:"ietf-te-topology:te-topology":, +37:u07:"ietf-otn-topology:otn-topology":, +5:u01:[, +51:u03:"providerId/201/clientId/300/topologyId/otn-bl\, +17:u11:"network-id":, +19:u12:\ack-topology",, +20:u13:"network-types":, +35:u14:"ietf-te-topology:te-topology":, +6:u21:\a, +7:u22:\ac, +8:u23:\ack, +15:uI0:"-":"/////-, +8:uI2:"-":, +14:u00:"network":, +17:u02:"network-id":, +19:u03:\ack-topology",, +20:u04:"network-types":, +35:u05:"ietf-te-topology:te-topology":, +37:u06:"ietf-otn-topology:otn-topology":, +35:u08:"ietf-te-topology:provider-id":, +5:u00:[, +51:u02:"providerId/201/clientId/300/topologyId/otn-bl\, +17:u10:"network-id":, +19:u11:\ack-topology",, +20:u12:"network-types":, +35:u13:"ietf-te-topology:te-topology":, +37:u14:"ietf-otn-topology:otn-topology":, +8:uI1:"-":, +11:uI2:"--:-":, +17:u01:"network-id":, +19:u02:\ack-topology",, +20:u03:"network-types":, +35:u04:"ietf-te-topology:te-topology":, +37:u05:"ietf-otn-topology:otn-topology":, +33:u08:"ietf-te-topology:client-id":, +51:u01:"providerId/201/clientId/300/topologyId/otn-bl\, +8:u08:201,, +19:u10:\ack-topology",, +20:u11:"network-types":, +35:u12:"ietf-te-topology:te-topology":, +37:u13:"ietf-otn-topology:otn-topology":, +8:uI0:"-":, +11:uI1:"--:-":, +17:u00:"network-id":, +19:u01:\ack-topology",, +20:u02:"network-types":, +35:u03:"ietf-te-topology:te-topology":, +37:u04:"ietf-otn-topology:otn-topology":, +35:u07:"ietf-te-topology:provider-id":, +38:u08:"ietf-te-topology:te-topology-id":, +51:u00:"providerId/201/clientId/300/topologyId/otn-bl\, +8:u07:201,, +8:u08:300,, +20:u10:"network-types":, +35:u11:"ietf-te-topology:te-topology":, +37:u12:"ietf-otn-topology:otn-topology":, +11:uI0:"--:-":, +19:u00:\ack-topology",, +20:u01:"network-types":, +35:u02:"ietf-te-topology:te-topology":, +37:u03:"ietf-otn-topology:otn-topology":, +35:u06:"ietf-te-topology:provider-id":, +33:u07:"ietf-te-topology:client-id":, +8:u06:201,, +8:u07:300,, +25:u08:"otn-black-topology",, +35:u10:"ietf-te-topology:te-topology":, +37:u11:"ietf-otn-topology:otn-topology":, +35:u14:"ietf-te-topology:provider-id":, +20:u00:"network-types":, +35:u01:"ietf-te-topology:te-topology":, +37:u02:"ietf-otn-topology:otn-topology":, +35:u05:"ietf-te-topology:provider-id":, +33:u06:"ietf-te-topology:client-id":, +38:u07:"ietf-te-topology:te-topology-id":, +10:u08:\ider,, +8:u05:201,, +8:u06:300,, +25:u07:"otn-black-topology",, +25:u08:ietf-te-topology:te":, +37:u10:"ietf-otn-topology:otn-topology":, +35:u13:"ietf-te-topology:provider-id":, +33:u14:"ietf-te-topology:client-id":, +12:uI2:"--:-":,, +35:u00:"ietf-te-topology:te-topology":, +37:u01:"ietf-otn-topology:otn-topology":, +35:u04:"ietf-te-topology:provider-id":, +33:u05:"ietf-te-topology:client-id":, +38:u06:"ietf-te-topology:te-topology-id":, +26:u08:"ietf-te-topology:te":, +8:u04:201,, +8:u05:300,, +25:u06:"otn-black-topology",, +25:u07:ietf-te-topology:te":, +35:u12:"ietf-te-topology:provider-id":, +33:u13:"ietf-te-topology:client-id":, +38:u14:"ietf-te-topology:te-topology-id":, +12:uI1:"--:-":,, +37:u00:"ietf-otn-topology:otn-topology":, +35:u03:"ietf-te-topology:provider-id":, +33:u04:"ietf-te-topology:client-id":, +38:u05:"ietf-te-topology:te-topology-id":, +10:u07:\ider,, +11:u08:"name":, +8:u03:201,, +8:u04:300,, +25:u05:"otn-black-topology",, +25:u06:ietf-te-topology:te":, +35:u11:"ietf-te-topology:provider-id":, +33:u12:"ietf-te-topology:client-id":, +38:u13:"ietf-te-topology:te-topology-id":, +12:uI0:"--:-":,, +17:uI2:"--:--":"--",, +35:u02:"ietf-te-topology:provider-id":, +33:u03:"ietf-te-topology:client-id":, +38:u04:"ietf-te-topology:te-topology-id":, +10:u06:\ider,, +26:u07:"ietf-te-topology:te":, +8:u02:201,, +8:u03:300,, +25:u04:"otn-black-topology",, +25:u05:ietf-te-topology:te":, +8:u08:"OTN, +35:u10:"ietf-te-topology:provider-id":, +33:u11:"ietf-te-topology:client-id":, +38:u12:"ietf-te-topology:te-topology-id":, +10:u14:\ider,, +17:uI1:"--:--":"--",, +14:uI2:"//--:":":, +35:u01:"ietf-te-topology:provider-id":, +33:u02:"ietf-te-topology:client-id":, +38:u03:"ietf-te-topology:te-topology-id":, +10:u05:\ider,, +26:u06:"ietf-te-topology:te":, +11:u07:"name":, +8:u01:201,, +8:u02:300,, +25:u03:"otn-black-topology",, +25:u04:ietf-te-topology:te":, +8:u07:"OTN, +33:u10:"ietf-te-topology:client-id":, +38:u11:"ietf-te-topology:te-topology-id":, +10:u13:\ider,, +26:u14:"ietf-te-topology:te":, +17:uI0:"--:--":"--",, +14:uI1:"//--:":":, +9:uI2:,--",, +35:u00:"ietf-te-topology:provider-id":, +33:u01:"ietf-te-topology:client-id":, +38:u02:"ietf-te-topology:te-topology-id":, +10:u04:\ider,, +26:u05:"ietf-te-topology:te":, +11:u06:"name":, +8:u08:\ure, +8:u00:201,, +8:u01:300,, +25:u02:"otn-black-topology",, +25:u03:ietf-te-topology:te":, +8:u06:"OTN, +23:u08:ietf-network:node":, +38:u10:"ietf-te-topology:te-topology-id":, +10:u12:\ider,, +26:u13:"ietf-te-topology:te":, +11:u14:"name":, +6:u21:\i, +7:u22:\id, +8:u23:\ide, +14:uI0:"//--:":":, +9:uI1:,--",, +10:uI2:"--:":, +33:u00:"ietf-te-topology:client-id":, +38:u01:"ietf-te-topology:te-topology-id":, +10:u03:\ider,, +26:u04:"ietf-te-topology:te":, +11:u05:"name":, +24:u08:"ietf-network:node":, +8:u00:300,, +25:u01:"otn-black-topology",, +25:u02:ietf-te-topology:te":, +8:u05:"OTN, +23:u07:ietf-network:node":, +12:u08:update",, +10:u11:\ider,, +26:u12:"ietf-te-topology:te":, +11:u13:"name":, +9:uI0:,--",, +10:uI1:"--:":, +9:uI2:"":"", +38:u00:"ietf-te-topology:te-topology-id":, +10:u02:\ider,, +26:u03:"ietf-te-topology:te":, +11:u04:"name":, +8:u07:\ure, +25:u00:"otn-black-topology",, +25:u01:ietf-te-topology:te":, +8:u04:"OTN, +23:u06:ietf-network:node":, +12:u07:update",, +10:u10:\ider,, +26:u11:"ietf-te-topology:te":, +11:u12:"name":, +7:u22:"na, +8:u23:"nam, +10:uI0:"--:":, +9:uI1:"":"", +10:u01:\ider,, +26:u02:"ietf-te-topology:te":, +11:u03:"name":, +8:u06:\ure, +24:u07:"ietf-network:node":, +25:u00:ietf-te-topology:te":, +8:u03:"OTN, +23:u05:ietf-network:node":, +12:u06:update",, +26:u10:"ietf-te-topology:te":, +11:u11:"name":, +8:u14:\ure, +9:uI0:"":"", +12:uI2:"//-:":", +10:u00:\ider,, +26:u01:"ietf-te-topology:te":, +11:u02:"name":, +8:u05:\ure, +24:u06:"ietf-network:node":, +8:u02:"OTN, +23:u04:ietf-network:node":, +12:u05:update",, +30:u08:__NODE__:__DESCRIPTION__":, +11:u10:"name":, +8:u13:\ure, +24:u14:"ietf-network:node":, +12:uI1:"//-:":", +26:u00:"ietf-te-topology:te":, +11:u01:"name":, +8:u04:\ure, +24:u05:"ietf-network:node":, +8:u01:"OTN, +23:u03:ietf-network:node":, +12:u04:update",, +30:u07:__NODE__:__DESCRIPTION__":, +8:u12:\ure, +24:u13:"ietf-network:node":, +6:u21:\u, +7:u22:\ur, +8:u23:\ure, +12:uI0:"//-:":", +10:uI2:"-:":[, +11:u00:"name":, +8:u03:\ure, +24:u04:"ietf-network:node":, +8:u00:"OTN, +23:u02:ietf-network:node":, +12:u03:update",, +30:u06:__NODE__:__DESCRIPTION__":, +8:u11:\ure, +24:u12:"ietf-network:node":, +10:uI1:"-:":[, +8:u02:\ure, +24:u03:"ietf-network:node":, +23:u01:ietf-network:node":, +12:u02:update",, +30:u05:__NODE__:__DESCRIPTION__":, +8:u10:\ure, +24:u11:"ietf-network:node":, +10:uI0:"-:":[, +10:uI2:"//:":, +8:u01:\ure, +24:u02:"ietf-network:node":, +23:u00:ietf-network:node":, +12:u01:update",, +30:u04:__NODE__:__DESCRIPTION__":, +24:u10:"ietf-network:node":, +10:uI1:"//:":, +8:u00:\ure, +24:u01:"ietf-network:node":, +12:u00:update",, +30:u03:__NODE__:__DESCRIPTION__":, +10:uI0:"//:":, +24:u00:"ietf-network:node":, +17:u08:"identifier":, +30:u02:__NODE__:__DESCRIPTION__":, +10:u08:"AN1",, +11:u08:"type":, +30:u01:__NODE__:__DESCRIPTION__":, +10:u07:"AN1",, +15:u08:"10.0.0.1",, +17:u07:"identifier":, +13:u08:"physical, +30:u00:__NODE__:__DESCRIPTION__":, +10:u06:"AN1",, +15:u07:"10.0.0.1",, +13:u08:"Abstract, +17:u06:"identifier":, +11:u07:"type":, +10:u05:"AN1",, +15:u06:"10.0.0.1",, +13:u07:"Abstract, +13:u08:node(s)":, +17:u14:"identifier":, +17:u05:"identifier":, +11:u06:"type":, +13:u07:"physical, +14:u08:"node-id":, +10:u04:"AN1",, +15:u05:"10.0.0.1",, +13:u06:"Abstract, +13:u07:node(s)":, +17:u13:"identifier":, +11:u14:"type":, +13:uI2:"":"...",, +17:u04:"identifier":, +11:u05:"type":, +13:u06:"physical, +34:u08:"ietf-te-topology:te-node-id":, +10:u03:"AN1",, +15:u04:"10.0.0.1",, +13:u05:"Abstract, +13:u06:node(s)":, +17:u12:"identifier":, +11:u13:"type":, +13:u14:"physical, +7:u22:"id, +8:u23:"ide, +13:uI1:"":"...",, +17:u03:"identifier":, +11:u04:"type":, +13:u05:"physical, +14:u07:"node-id":, +10:u02:"AN1",, +15:u03:"10.0.0.1",, +13:u04:"Abstract, +13:u05:node(s)":, +17:u11:"identifier":, +11:u12:"type":, +13:u13:"physical, +7:u22:"ty, +8:u23:"typ, +13:uI0:"":"...",, +11:uI2:"()":"", +17:u02:"identifier":, +11:u03:"type":, +13:u04:"physical, +14:u06:"node-id":, +34:u07:"ietf-te-topology:te-node-id":, +25:u08:"te-node-attributes":, +10:u01:"AN1",, +15:u02:"10.0.0.1",, +13:u03:"Abstract, +13:u04:node(s)":, +17:u10:"identifier":, +11:u11:"type":, +13:u12:"physical, +14:u14:"node-id":, +7:u22:"ph, +8:u23:"phy, +11:uI1:"()":"", +17:u01:"identifier":, +11:u02:"type":, +13:u03:"physical, +14:u05:"node-id":, +34:u06:"ietf-te-topology:te-node-id":, +10:u00:"AN1",, +15:u01:"10.0.0.1",, +13:u02:"Abstract, +13:u03:node(s)":, +11:u10:"type":, +13:u11:"physical, +14:u13:"node-id":, +34:u14:"ietf-te-topology:te-node-id":, +11:uI0:"()":"", +14:uI2:"-":"...",, +17:u00:"identifier":, +11:u01:"type":, +13:u02:"physical, +14:u04:"node-id":, +34:u05:"ietf-te-topology:te-node-id":, +25:u07:"te-node-attributes":, +19:u08:"admin-status":, +15:u00:"10.0.0.1",, +13:u01:"Abstract, +13:u02:node(s)":, +11:u08:"AN11",, +13:u10:"physical, +14:u12:"node-id":, +34:u13:"ietf-te-topology:te-node-id":, +7:u22:"no, +8:u23:"nod, +14:uI1:"-":"...",, +18:uI2:"--:--":"...",, +11:u00:"type":, +13:u01:"physical, +14:u03:"node-id":, +34:u04:"ietf-te-topology:te-node-id":, +25:u06:"te-node-attributes":, +13:u00:"Abstract, +13:u01:node(s)":, +11:u07:"AN11",, +9:u08:"up",, +14:u11:"node-id":, +34:u12:"ietf-te-topology:te-node-id":, +25:u14:"te-node-attributes":, +14:uI0:"-":"...",, +18:uI1:"--:--":"...",, +13:u00:"physical, +14:u02:"node-id":, +34:u03:"ietf-te-topology:te-node-id":, +25:u05:"te-node-attributes":, +19:u07:"admin-status":, +7:u08:\TE, +13:u00:node(s)":, +11:u06:"AN11",, +9:u07:"up",, +15:u08:__DISCUSS__, +14:u10:"node-id":, +34:u11:"ietf-te-topology:te-node-id":, +25:u13:"te-node-attributes":, +18:uI0:"--:--":"...",, +9:uI2:"--":, +14:u01:"node-id":, +34:u02:"ietf-te-topology:te-node-id":, +25:u04:"te-node-attributes":, +19:u06:"admin-status":, +11:u05:"AN11",, +9:u06:"up",, +15:u07:__DISCUSS__, +34:u10:"ietf-te-topology:te-node-id":, +25:u12:"te-node-attributes":, +19:u14:"admin-status":, +9:uI1:"--":, +14:u00:"node-id":, +34:u01:"ietf-te-topology:te-node-id":, +25:u03:"te-node-attributes":, +19:u05:"admin-status":, +7:u07:\TE, +11:u04:"AN11",, +9:u05:"up",, +15:u06:__DISCUSS__, +25:u11:"te-node-attributes":, +19:u13:"admin-status":, +9:uI0:"--":, +11:uI2:"-":"",, +34:u00:"ietf-te-topology:te-node-id":, +25:u02:"te-node-attributes":, +19:u04:"admin-status":, +7:u06:\TE, +11:u03:"AN11",, +9:u04:"up",, +15:u05:__DISCUSS__, +25:u10:"te-node-attributes":, +19:u12:"admin-status":, +7:u14:\te, +7:u22:"ad, +8:u23:"adm, +11:uI1:"-":"",, +11:uI2:"//-":", +25:u01:"te-node-attributes":, +19:u03:"admin-status":, +7:u05:\TE, +18:u08:"oper-status":, +11:u02:"AN11",, +9:u03:"up",, +15:u04:__DISCUSS__, +19:u11:"admin-status":, +7:u13:\te, +11:uI0:"-":"",, +11:uI1:"//-":", +25:u00:"te-node-attributes":, +19:u02:"admin-status":, +7:u04:\TE, +11:u01:"AN11",, +9:u02:"up",, +15:u03:__DISCUSS__, +19:u10:"admin-status":, +7:u12:\te, +6:u21:\T, +7:u22:\TE, +7:u23:\TE, +11:uI0:"//-":", +19:u01:"admin-status":, +7:u03:\TE, +18:u07:"oper-status":, +11:u00:"AN11",, +9:u01:"up",, +15:u02:__DISCUSS__, +7:u11:\te, +19:u00:"admin-status":, +7:u02:\TE, +18:u06:"oper-status":, +46:u08:"ietf-network-topology:termination-point":, +9:u00:"up",, +15:u01:__DISCUSS__, +7:u10:\te, +18:u14:"oper-status":, +7:u01:\TE, +18:u05:"oper-status":, +15:u00:__DISCUSS__, +18:u13:"oper-status":, +7:u00:\TE, +18:u04:"oper-status":, +46:u07:"ietf-network-topology:termination-point":, +18:u12:"oper-status":, +13:uI2:"//--":[], +18:u03:"oper-status":, +46:u06:"ietf-network-topology:termination-point":, +29:u08:__DESCRIPTION__:__LTP__":, +18:u11:"oper-status":, +46:u14:"ietf-network-topology:termination-point":, +13:uI1:"//--":[], +18:u02:"oper-status":, +46:u05:"ietf-network-topology:termination-point":, +9:u08:"link, +29:u07:__DESCRIPTION__:__LTP__":, +10:u08:"AN1-1, +18:u10:"oper-status":, +46:u13:"ietf-network-topology:termination-point":, +13:uI0:"//--":[], +12:uI2:"--:-":[, +18:u01:"oper-status":, +46:u04:"ietf-network-topology:termination-point":, +29:u06:__DESCRIPTION__:__LTP__":, +10:u07:"AN1-1, +13:u08:type(s)":, +46:u12:"ietf-network-topology:termination-point":, +12:uI1:"--:-":[, +18:u00:"oper-status":, +46:u03:"ietf-network-topology:termination-point":, +9:u07:"link, +24:u08:"unnumberd/ifIndex":, +29:u05:__DESCRIPTION__:__LTP__":, +10:u06:"AN1-1, +13:u07:type(s)":, +10:u08:node":, +46:u11:"ietf-network-topology:termination-point":, +12:uI0:"--:-":[, +46:u02:"ietf-network-topology:termination-point":, +9:u06:"link, +9:u08:"port, +29:u04:__DESCRIPTION__:__LTP__":, +10:u05:"AN1-1, +13:u06:type(s)":, +10:u07:node":, +46:u10:"ietf-network-topology:termination-point":, +9:u14:"link, +11:uI2:"":"-",, +46:u01:"ietf-network-topology:termination-point":, +9:u05:"link, +24:u07:"unnumberd/ifIndex":, +14:u08:"connected, +29:u03:__DESCRIPTION__:__LTP__":, +10:u04:"AN1-1, +13:u05:type(s)":, +10:u06:node":, +10:u08:type":, +9:u13:"link, +11:uI1:"":"-",, +13:uI2:"()":"-",, +46:u00:"ietf-network-topology:termination-point":, +9:u04:"link, +24:u06:"unnumberd/ifIndex":, +9:u07:"port, +29:u02:__DESCRIPTION__:__LTP__":, +10:u03:"AN1-1, +13:u04:type(s)":, +10:u05:node":, +10:u07:type":, +8:u08:to":, +9:u12:"link, +24:u14:"unnumberd/ifindex":, +11:uI0:"":"-",, +13:uI1:"()":"-",, +9:u03:"link, +24:u05:"unnumberd/ifIndex":, +9:u06:"port, +14:u07:"connected, +12:u08:"tp-id":, +29:u01:__DESCRIPTION__:__LTP__":, +10:u02:"AN1-1, +13:u03:type(s)":, +10:u04:node":, +10:u06:type":, +8:u07:to":, +9:u11:"link, +24:u13:"unnumberd/ifindex":, +9:u14:"port, +13:uI0:"()":"-",, +9:uI2:"/":,, +9:u02:"link, +24:u04:"unnumberd/ifIndex":, +9:u05:"port, +14:u06:"connected, +32:u08:"ietf-te-topology:te-tp-id":, +29:u00:__DESCRIPTION__:__LTP__":, +10:u01:"AN1-1, +13:u02:type(s)":, +10:u03:node":, +10:u05:type":, +8:u06:to":, +8:u08:"1",, +9:u10:"link, +24:u12:"unnumberd/ifindex":, +9:u13:"port, +14:u14:"connected, +7:u22:"un, +8:u23:"unn, +9:uI1:"/":,, +9:u01:"link, +24:u03:"unnumberd/ifIndex":, +9:u04:"port, +14:u05:"connected, +12:u07:"tp-id":, +10:u00:"AN1-1, +13:u01:type(s)":, +10:u02:node":, +10:u04:type":, +8:u05:to":, +8:u07:"1",, +24:u11:"unnumberd/ifindex":, +9:u12:"port, +14:u13:"connected, +7:u22:"po, +8:u23:"por, +9:uI0:"/":,, +9:u00:"link, +24:u02:"unnumberd/ifIndex":, +9:u03:"port, +14:u04:"connected, +12:u06:"tp-id":, +32:u07:"ietf-te-topology:te-tp-id":, +13:u00:type(s)":, +10:u01:node":, +10:u03:type":, +8:u04:to":, +8:u06:"1",, +24:u10:"unnumberd/ifindex":, +9:u11:"port, +14:u12:"connected, +12:u14:"tp-id":, +7:u22:"co, +8:u23:"con, +24:u01:"unnumberd/ifIndex":, +9:u02:"port, +14:u03:"connected, +12:u05:"tp-id":, +32:u06:"ietf-te-topology:te-tp-id":, +10:u00:node":, +10:u02:type":, +8:u03:to":, +8:u05:"1",, +9:u10:"port, +14:u11:"connected, +12:u13:"tp-id":, +32:u14:"ietf-te-topology:te-tp-id":, +24:u00:"unnumberd/ifIndex":, +9:u01:"port, +14:u02:"connected, +12:u04:"tp-id":, +32:u05:"ietf-te-topology:te-tp-id":, +10:u01:type":, +8:u02:to":, +8:u04:"1",, +14:u10:"connected, +12:u12:"tp-id":, +32:u13:"ietf-te-topology:te-tp-id":, +7:u22:"tp, +8:u23:"tp-, +13:uI2:"--:--":,, +9:u00:"port, +14:u01:"connected, +12:u03:"tp-id":, +32:u04:"ietf-te-topology:te-tp-id":, +8:u08:\See, +10:u00:type":, +8:u01:to":, +8:u03:"1",, +12:u11:"tp-id":, +32:u12:"ietf-te-topology:te-tp-id":, +13:uI1:"--:--":,, +14:u00:"connected, +12:u02:"tp-id":, +32:u03:"ietf-te-topology:te-tp-id":, +8:u00:to":, +8:u02:"1",, +12:u10:"tp-id":, +32:u11:"ietf-te-topology:te-tp-id":, +13:uI0:"--:--":,, +12:u01:"tp-id":, +32:u02:"ietf-te-topology:te-tp-id":, +8:u07:\See, +8:u08:\k",, +8:u01:"1",, +32:u10:"ietf-te-topology:te-tp-id":, +12:u00:"tp-id":, +32:u01:"ietf-te-topology:te-tp-id":, +8:u06:\See, +8:u00:"1",, +8:u14:\see, +12:uI2:"//--":", +32:u00:"ietf-te-topology:te-tp-id":, +8:u05:\See, +8:u07:\k",, +10:u08:\Links, +15:u08:__COMMENT__, +8:u13:\see, +12:uI1:"//--":", +14:uI2:(/...//)",, +8:u04:\See, +8:u06:\k",, +15:u07:__COMMENT__, +8:u12:\see, +8:u14:\k",, +7:u22:\Se, +8:u23:\See, +12:uI0:"//--":", +14:uI1:(/...//)",, +13:uI2:"//---":", +8:u03:\See, +8:u05:\k",, +10:u07:\Links, +15:u06:__COMMENT__, +8:u11:\see, +8:u13:\k",, +14:uI0:(/...//)",, +13:uI1:"//---":", +8:u02:\See, +8:u04:\k",, +10:u06:\Links, +14:u08:\d-types":, +15:u05:__COMMENT__, +8:u10:\see, +8:u12:\k",, +10:u14:\links, +6:u21:\k, +7:u22:\k", +8:u23:\k",, +13:uI0:"//---":", +14:uI2:"//---":":, +8:u01:\See, +8:u03:\k",, +10:u05:\Links, +15:u04:__COMMENT__, +9:u08:"List, +8:u11:\k",, +10:u13:\links, +14:uI1:"//---":":, +8:u00:\See, +8:u02:\k",, +10:u04:\Links, +14:u07:\d-types":, +15:u03:__COMMENT__, +9:u07:"List, +8:u10:\k",, +10:u12:\links, +6:u21:\L, +7:u22:\Li, +8:u23:\Lin, +14:uI0:"//---":":, +8:u01:\k",, +10:u03:\Links, +14:u06:\d-types":, +15:u02:__COMMENT__, +9:u06:"List, +10:u11:\links, +14:u14:\d-types":, +11:uI2:"//--:-, +8:u00:\k",, +10:u02:\Links, +14:u05:\d-types":, +15:u01:__COMMENT__, +9:u05:"List, +10:u10:\links, +14:u13:\d-types":, +11:uI1:"//--:-, +11:uI2:-":"?",, +10:u01:\Links, +14:u04:\d-types":, +15:u00:__COMMENT__, +9:u04:"List, +14:u12:\d-types":, +6:u21:\d, +7:u22:\d-, +8:u23:\d-t, +11:uI0:"//--:-, +11:uI1:-":"?",, +13:uI2:"//--:-":, +10:u00:\Links, +14:u03:\d-types":, +9:u03:"List, +14:u11:\d-types":, +11:uI0:-":"?",, +13:uI1:"//--:-":, +14:u02:\d-types":, +9:u08:\true, +9:u02:"List, +14:u10:\d-types":, +13:uI0:"//--:-":, +14:u01:\d-types":, +9:u01:"List, +14:u00:\d-types":, +9:u07:\true, +9:u00:"List, +9:u06:\true, +9:u14:\true, +9:u05:\true, +9:u13:\true, +9:u04:\true, +9:u12:\true, +6:u21:\t, +7:u22:\tr, +8:u23:\tru, +9:u03:\true, +10:u08:"AN1-2, +9:u11:\true, +9:u02:\true, +10:u07:"AN1-2, +9:u10:\true, +9:u01:\true, +10:u06:"AN1-2, +9:u00:\true, +10:u05:"AN1-2, +10:u04:"AN1-2, +10:u03:"AN1-2, +10:u02:"AN1-2, +10:u01:"AN1-2, +8:u08:"2",, +10:u00:"AN1-2, +8:u07:"2",, +8:u06:"2",, +8:u05:"2",, +8:u04:"2",, +8:u03:"2",, +8:u02:"2",, +7:u08:\in, +8:u01:"2",, +8:u00:"2",, +10:u08:Link",, +7:u07:\in, +10:u07:Link",, +7:u06:\in, +10:u06:Link",, +7:u14:\in, +14:uI2:"//---":"-, +7:u05:\in, +10:u05:Link",, +11:u08:"Empty?, +7:u13:\in, +14:uI1:"//---":"-, +7:u04:\in, +10:u08:\false, +10:u04:Link",, +11:u07:"Empty?, +15:u08:__DEFAULT__, +7:u12:\in, +7:u22:\in, +7:u23:\in, +14:uI0:"//---":"-, +7:u03:\in, +10:u03:Link",, +11:u06:"Empty?, +15:u07:__DEFAULT__, +7:u11:\in, +7:u02:\in, +10:u07:\false, +10:u02:Link",, +11:u05:"Empty?, +15:u06:__DEFAULT__, +7:u10:\in, +14:uI2:-":"?(-)",, +7:u01:\in, +10:u06:\false, +10:u01:Link",, +11:u04:"Empty?, +15:u05:__DEFAULT__, +10:u14:\false, +14:uI1:-":"?(-)",, +7:u00:\in, +10:u05:\false, +10:u00:Link",, +11:u03:"Empty?, +15:u04:__DEFAULT__, +10:u13:\false, +14:uI0:-":"?(-)",, +10:u04:\false, +11:u02:"Empty?, +15:u03:__DEFAULT__, +10:u12:\false, +6:u21:\f, +7:u22:\fa, +8:u23:\fal, +10:u03:\false, +11:u01:"Empty?, +15:u02:__DEFAULT__, +10:u08:"AN1-3, +10:u11:\false, +10:u02:\false, +11:u00:"Empty?, +15:u01:__DEFAULT__, +10:u07:"AN1-3, +10:u10:\false, +10:u01:\false, +15:u00:__DEFAULT__, +10:u06:"AN1-3, +10:u00:\false, +10:u05:"AN1-3, +10:u04:"AN1-3, +10:u03:"AN1-3, +10:u02:"AN1-3, +10:u01:"AN1-3, +8:u08:"3",, +10:u00:"AN1-3, +8:u07:"3",, +8:u06:"3",, +8:u05:"3",, +8:u04:"3",, +8:u03:"3",, +8:u02:"3",, +8:u01:"3",, +8:u00:"3",, +10:u08:"AN1-4, +10:u07:"AN1-4, +10:u06:"AN1-4, +10:u05:"AN1-4, +10:u04:"AN1-4, +10:u03:"AN1-4, +10:u02:"AN1-4, +10:u01:"AN1-4, +8:u08:"4",, +10:u00:"AN1-4, +8:u07:"4",, +8:u06:"4",, +8:u05:"4",, +8:u04:"4",, +8:u03:"4",, +8:u02:"4",, +8:u01:"4",, +8:u00:"4",, +10:u08:"AN1-5, +10:u07:"AN1-5, +10:u06:"AN1-5, +10:u05:"AN1-5, +10:u04:"AN1-5, +10:u03:"AN1-5, +10:u02:"AN1-5, +10:u01:"AN1-5, +8:u08:"5",, +10:u00:"AN1-5, +8:u07:"5",, +8:u06:"5",, +8:u05:"5",, +8:u04:"5",, +8:u03:"5",, +8:u02:"5",, +8:u01:"5",, +8:u00:"5",, +10:u08:"AN1-6, +10:u07:"AN1-6, +10:u06:"AN1-6, +10:u05:"AN1-6, +10:u04:"AN1-6, +10:u03:"AN1-6, +10:u02:"AN1-6, +10:u01:"AN1-6, +8:u08:"6",, +10:u00:"AN1-6, +8:u07:"6",, +8:u06:"6",, +8:u05:"6",, +8:u04:"6",, +8:u03:"6",, +8:u02:"6",, +8:u01:"6",, +8:u00:"6",, +10:u08:"AN1-7, +10:u07:"AN1-7, +10:u06:"AN1-7, +10:u05:"AN1-7, +10:u04:"AN1-7, +10:u03:"AN1-7, +10:u02:"AN1-7, +10:u01:"AN1-7, +10:u00:"AN1-7, +8:u08:"7",, +8:u07:"7",, +8:u06:"7",, +8:u05:"7",, +8:u04:"7",, +8:u03:"7",, +8:u02:"7",, +8:u01:"7",, +8:u00:"7",, +5:u08:], +5:u07:], +6:u08:],, +5:u06:], +5:u14:], +5:u05:], +6:u07:],, +6:u08:\d, +32:u08:ietf-network-topology:link":, +5:u13:], +5:uI2:], +5:u04:], +6:u06:],, +33:u08:"ietf-network-topology:link":, +32:u07:ietf-network-topology:link":, +5:u12:], +6:u14:],, +5:u20:], +5:u21:], +5:u22:], +5:u23:], +5:uI1:], +5:u03:], +6:u05:],, +6:u07:\d, +32:u06:ietf-network-topology:link":, +5:u11:], +6:u13:],, +5:uI0:], +6:uI2:],, +5:u02:], +6:u04:],, +6:u06:\d, +33:u07:"ietf-network-topology:link":, +32:u05:ietf-network-topology:link":, +5:u10:], +6:u12:],, +6:u14:\d, +6:u21:],, +6:u22:],, +6:u23:],, +6:uI1:],, +13:uI2:"//--:":", +5:u01:], +6:u03:],, +6:u05:\d, +33:u06:"ietf-network-topology:link":, +32:u04:ietf-network-topology:link":, +30:u08:__DESCRIPTION__:__LINK__":, +6:u11:],, +6:u13:\d, +33:u14:"ietf-network-topology:link":, +6:uI0:],, +13:uI1:"//--:":", +5:u00:], +6:u02:],, +6:u04:\d, +33:u05:"ietf-network-topology:link":, +32:u03:ietf-network-topology:link":, +30:u07:__DESCRIPTION__:__LINK__":, +11:u08:"Access, +6:u10:],, +6:u12:\d, +33:u13:"ietf-network-topology:link":, +6:u22:\d, +6:u23:\d, +13:uI0:"//--:":", +11:uI2:"--:":[, +6:u01:],, +6:u03:\d, +33:u04:"ietf-network-topology:link":, +32:u02:ietf-network-topology:link":, +30:u06:__DESCRIPTION__:__LINK__":, +11:u07:"Access, +11:u08:"access, +6:u11:\d, +33:u12:"ietf-network-topology:link":, +11:uI1:"--:":[, +6:u00:],, +6:u02:\d, +33:u03:"ietf-network-topology:link":, +32:u01:ietf-network-topology:link":, +30:u05:__DESCRIPTION__:__LINK__":, +11:u06:"Access, +11:u07:"access, +10:u08:link":, +6:u10:\d, +33:u11:"ietf-network-topology:link":, +11:uI0:"--:":[, +6:u01:\d, +33:u02:"ietf-network-topology:link":, +14:u08:"link-id":, +32:u00:ietf-network-topology:link":, +30:u04:__DESCRIPTION__:__LINK__":, +11:u05:"Access, +11:u06:"access, +10:u07:link":, +33:u10:"ietf-network-topology:link":, +6:u00:\d, +33:u01:"ietf-network-topology:link":, +30:u03:__DESCRIPTION__:__LINK__":, +11:u04:"Access, +11:u05:"access, +10:u06:link":, +35:u08:"teNodeId/10.0.0.1/teLinkId/1",, +33:u00:"ietf-network-topology:link":, +14:u07:"link-id":, +25:u08:"te-link-attributes":, +30:u02:__DESCRIPTION__:__LINK__":, +11:u03:"Access, +11:u04:"access, +10:u05:link":, +35:u07:"teNodeId/10.0.0.1/teLinkId/1",, +10:uI2:"":"-", +14:u06:"link-id":, +30:u01:__DESCRIPTION__:__LINK__":, +11:u02:"Access, +11:u03:"access, +10:u04:link":, +35:u06:"teNodeId/10.0.0.1/teLinkId/1",, +14:u14:"link-id":, +10:uI1:"":"-", +14:u05:"link-id":, +25:u07:"te-link-attributes":, +30:u00:__DESCRIPTION__:__LINK__":, +11:u01:"Access, +11:u02:"access, +10:u03:link":, +35:u05:"teNodeId/10.0.0.1/teLinkId/1",, +14:u13:"link-id":, +10:uI0:"":"-", +17:uI2:"-":"/...//",, +14:u04:"link-id":, +25:u06:"te-link-attributes":, +12:u08:\o-point, +11:u00:"Access, +11:u01:"access, +10:u02:link":, +35:u04:"teNodeId/10.0.0.1/teLinkId/1",, +14:u12:"link-id":, +25:u14:"te-link-attributes":, +17:uI1:"-":"/...//",, +14:u03:"link-id":, +25:u05:"te-link-attributes":, +18:u08:"access-type":, +11:u00:"access, +10:u01:link":, +35:u03:"teNodeId/10.0.0.1/teLinkId/1",, +14:u11:"link-id":, +25:u13:"te-link-attributes":, +17:uI0:"-":"/...//",, +14:u02:"link-id":, +25:u04:"te-link-attributes":, +12:u07:\o-point, +10:u00:link":, +35:u02:"teNodeId/10.0.0.1/teLinkId/1",, +21:u08:"point-to-point",, +14:u10:"link-id":, +25:u12:"te-link-attributes":, +14:u01:"link-id":, +25:u03:"te-link-attributes":, +12:u06:\o-point, +18:u07:"access-type":, +35:u01:"teNodeId/10.0.0.1/teLinkId/1",, +21:u07:"point-to-point",, +25:u11:"te-link-attributes":, +12:u14:\o-point, +12:uI2:"//-":"-, +14:u00:"link-id":, +25:u02:"te-link-attributes":, +12:u05:\o-point, +18:u06:"access-type":, +35:u00:"teNodeId/10.0.0.1/teLinkId/1",, +21:u06:"point-to-point",, +25:u10:"te-link-attributes":, +12:u13:\o-point, +18:u14:"access-type":, +12:uI1:"//-":"-, +8:uI2:-?",, +25:u01:"te-link-attributes":, +12:u04:\o-point, +18:u05:"access-type":, +21:u05:"point-to-point",, +12:u12:\o-point, +18:u13:"access-type":, +6:u21:\o, +7:u22:\o-, +8:u23:\o-p, +12:uI0:"//-":"-, +8:uI1:-?",, +13:uI2:"-":"--",, +25:u00:"te-link-attributes":, +12:u03:\o-point, +18:u04:"access-type":, +21:u04:"point-to-point",, +12:u11:\o-point, +18:u12:"access-type":, +7:u22:"ac, +8:u23:"acc, +8:uI0:-?",, +13:uI1:"-":"--",, +13:uI2:"//-":":-, +12:u02:\o-point, +18:u03:"access-type":, +21:u03:"point-to-point",, +12:u10:\o-point, +18:u11:"access-type":, +13:uI0:"-":"--",, +13:uI1:"//-":":-, +12:u01:\o-point, +18:u02:"access-type":, +21:u02:"point-to-point",, +18:u10:"access-type":, +13:uI0:"//-":":-, +12:u00:\o-point, +18:u01:"access-type":, +21:u01:"point-to-point",, +18:u00:"access-type":, +21:u00:"point-to-point",, +13:u08:\Topology, +13:u08:authors",, +13:u07:\Topology, +37:u08:"interface-switching-capability":, +13:u07:authors",, +13:u06:\Topology, +13:u06:authors",, +13:u14:\topology, +10:uI2:"//":", +13:u05:\Topology, +37:u07:"interface-switching-capability":, +27:u08:"switching-capability":, +13:u05:authors",, +13:u13:\topology, +10:uI1:"//":", +13:u04:\Topology, +37:u06:"interface-switching-capability":, +11:u08:\-otn",, +13:u04:authors",, +29:u08:"ietf-te-types:switching\, +13:u12:\topology, +37:u14:"interface-switching-capability":, +7:u22:\To, +8:u23:\Top, +10:uI0:"//":", +13:u03:\Topology, +37:u05:"interface-switching-capability":, +27:u07:"switching-capability":, +15:u08:"encoding":, +13:u03:authors",, +29:u07:"ietf-te-types:switching\, +13:u11:\topology, +37:u13:"interface-switching-capability":, +10:uI2:"--":[, +13:u02:\Topology, +37:u04:"interface-switching-capability":, +27:u06:"switching-capability":, +11:u07:\-otn",, +24:u08:"max-lsp-bandwidth":, +13:u02:authors",, +29:u06:"ietf-te-types:switching\, +38:u08:"ietf-te-types:lsp-encoding-oduk",, +13:u10:\topology, +37:u12:"interface-switching-capability":, +27:u14:"switching-capability":, +8:u23:"int, +10:uI1:"--":[, +13:u01:\Topology, +37:u03:"interface-switching-capability":, +27:u05:"switching-capability":, +11:u06:\-otn",, +15:u07:"encoding":, +13:u01:authors",, +29:u05:"ietf-te-types:switching\, +38:u07:"ietf-te-types:lsp-encoding-oduk",, +37:u11:"interface-switching-capability":, +27:u13:"switching-capability":, +11:u14:\-otn",, +10:uI0:"--":[, +12:uI2:"-":"--:, +13:u00:\Topology, +37:u02:"interface-switching-capability":, +27:u04:"switching-capability":, +11:u05:\-otn",, +15:u06:"encoding":, +24:u07:"max-lsp-bandwidth":, +15:u08:"priority":, +13:u00:authors",, +29:u04:"ietf-te-types:switching\, +38:u06:"ietf-te-types:lsp-encoding-oduk",, +37:u10:"interface-switching-capability":, +27:u12:"switching-capability":, +11:u13:\-otn",, +15:u14:"encoding":, +7:u22:"sw, +8:u23:"swi, +12:uI1:"-":"--:, +37:u01:"interface-switching-capability":, +27:u03:"switching-capability":, +11:u04:\-otn",, +15:u05:"encoding":, +24:u06:"max-lsp-bandwidth":, +29:u03:"ietf-te-types:switching\, +38:u05:"ietf-te-types:lsp-encoding-oduk",, +27:u11:"switching-capability":, +11:u12:\-otn",, +15:u13:"encoding":, +24:u14:"max-lsp-bandwidth":, +7:u22:\-o, +8:u23:\-ot, +12:uI0:"-":"--:, +15:uI2:"":"--:--",, +37:u00:"interface-switching-capability":, +27:u02:"switching-capability":, +11:u03:\-otn",, +15:u04:"encoding":, +24:u05:"max-lsp-bandwidth":, +15:u07:"priority":, +29:u02:"ietf-te-types:switching\, +38:u04:"ietf-te-types:lsp-encoding-oduk",, +27:u10:"switching-capability":, +11:u11:\-otn",, +15:u12:"encoding":, +24:u13:"max-lsp-bandwidth":, +7:u22:"en, +8:u23:"enc, +15:uI1:"":"--:--",, +27:u01:"switching-capability":, +11:u02:\-otn",, +15:u03:"encoding":, +24:u04:"max-lsp-bandwidth":, +15:u06:"priority":, +29:u01:"ietf-te-types:switching\, +38:u03:"ietf-te-types:lsp-encoding-oduk",, +11:u10:\-otn",, +15:u11:"encoding":, +24:u12:"max-lsp-bandwidth":, +15:u14:"priority":, +7:u22:"ma, +8:u23:"max, +15:uI0:"":"--:--",, +27:u00:"switching-capability":, +11:u01:\-otn",, +15:u02:"encoding":, +24:u03:"max-lsp-bandwidth":, +15:u05:"priority":, +29:u00:"ietf-te-types:switching\, +38:u02:"ietf-te-types:lsp-encoding-oduk",, +15:u10:"encoding":, +24:u11:"max-lsp-bandwidth":, +15:u13:"priority":, +8:uI2:"":,, +11:u00:\-otn",, +15:u01:"encoding":, +24:u02:"max-lsp-bandwidth":, +15:u04:"priority":, +38:u01:"ietf-te-types:lsp-encoding-oduk",, +24:u10:"max-lsp-bandwidth":, +15:u12:"priority":, +8:u23:"pri, +8:uI1:"":,, +12:uI2:"//-":"", +15:u00:"encoding":, +24:u01:"max-lsp-bandwidth":, +15:u03:"priority":, +38:u00:"ietf-te-types:lsp-encoding-oduk",, +15:u11:"priority":, +8:uI0:"":,, +12:uI1:"//-":"", +24:u00:"max-lsp-bandwidth":, +15:u02:"priority":, +15:u10:"priority":, +12:uI0:"//-":"", +15:u01:"priority":, +15:u00:"priority":, +6:u08:\e, +27:u08:"link-protection-type":, +15:u08:unprotected, +6:u07:\e, +25:u08:"max-link-bandwidth":, +15:u07:unprotected, +18:u08:"unprotected",, +6:u06:\e, +27:u07:"link-protection-type":, +15:u06:unprotected, +18:u07:"unprotected",, +6:u14:\e, +6:u05:\e, +27:u06:"link-protection-type":, +25:u07:"max-link-bandwidth":, +15:u05:unprotected, +18:u06:"unprotected",, +6:u13:\e, +27:u14:"link-protection-type":, +7:uI2:?",, +6:u04:\e, +27:u05:"link-protection-type":, +25:u06:"max-link-bandwidth":, +30:u08:"max-resv-link-bandwidth":, +15:u04:unprotected, +18:u05:"unprotected",, +6:u12:\e, +27:u13:"link-protection-type":, +25:u14:"max-link-bandwidth":, +6:u21:\e, +6:u22:\e, +6:u23:\e, +7:uI1:?",, +12:uI2:"--":"",, +6:u03:\e, +27:u04:"link-protection-type":, +25:u05:"max-link-bandwidth":, +15:u03:unprotected, +18:u04:"unprotected",, +6:u11:\e, +27:u12:"link-protection-type":, +25:u13:"max-link-bandwidth":, +7:uI0:?",, +12:uI1:"--":"",, +6:u02:\e, +27:u03:"link-protection-type":, +25:u04:"max-link-bandwidth":, +30:u07:"max-resv-link-bandwidth":, +15:u02:unprotected, +18:u03:"unprotected",, +6:u10:\e, +27:u11:"link-protection-type":, +25:u12:"max-link-bandwidth":, +12:uI0:"--":"",, +6:u01:\e, +27:u02:"link-protection-type":, +25:u03:"max-link-bandwidth":, +30:u06:"max-resv-link-bandwidth":, +27:u08:"unreserved-bandwidth":, +15:u01:unprotected, +18:u02:"unprotected",, +27:u10:"link-protection-type":, +25:u11:"max-link-bandwidth":, +30:u14:"max-resv-link-bandwidth":, +6:u00:\e, +27:u01:"link-protection-type":, +25:u02:"max-link-bandwidth":, +30:u05:"max-resv-link-bandwidth":, +15:u00:unprotected, +18:u01:"unprotected",, +25:u10:"max-link-bandwidth":, +30:u13:"max-resv-link-bandwidth":, +10:uI2:"---":, +27:u00:"link-protection-type":, +25:u01:"max-link-bandwidth":, +30:u04:"max-resv-link-bandwidth":, +27:u07:"unreserved-bandwidth":, +18:u00:"unprotected",, +30:u12:"max-resv-link-bandwidth":, +10:uI1:"---":, +25:u00:"max-link-bandwidth":, +30:u03:"max-resv-link-bandwidth":, +27:u06:"unreserved-bandwidth":, +30:u11:"max-resv-link-bandwidth":, +27:u14:"unreserved-bandwidth":, +10:uI0:"---":, +30:u02:"max-resv-link-bandwidth":, +27:u05:"unreserved-bandwidth":, +30:u10:"max-resv-link-bandwidth":, +27:u13:"unreserved-bandwidth":, +9:uI2:"-":[, +30:u01:"max-resv-link-bandwidth":, +27:u04:"unreserved-bandwidth":, +27:u12:"unreserved-bandwidth":, +8:u23:"unr, +9:uI1:"-":[, +30:u00:"max-resv-link-bandwidth":, +27:u03:"unreserved-bandwidth":, +27:u11:"unreserved-bandwidth":, +9:uI0:"-":[, +27:u02:"unreserved-bandwidth":, +27:u10:"unreserved-bandwidth":, +27:u01:"unreserved-bandwidth":, +27:u00:"unreserved-bandwidth":, +8:u08:\nal, +13:u08:__EMPTY__, +13:u07:__EMPTY__, +10:u08:link",, +8:u07:\nal, +12:u08:\opology, +13:u06:__EMPTY__, +10:u07:link",, +8:u06:\nal, +13:u05:__EMPTY__, +10:u06:link",, +12:u08:authors", +8:u14:\nal, +8:u05:\nal, +12:u07:\opology, +13:u08:"source":, +13:u04:__EMPTY__, +10:u05:link",, +12:u07:authors", +8:u13:\nal, +8:u04:\nal, +12:u06:\opology, +18:u08:"source-node":, +13:u03:__EMPTY__, +10:u04:link",, +12:u06:authors", +8:u12:\nal, +12:u14:\opology, +6:u21:\n, +7:u22:\na, +8:u23:\nal, +8:u03:\nal, +12:u05:\opology, +13:u07:"source":, +16:u08:"source-tp":, +13:u02:__EMPTY__, +10:u03:link",, +12:u05:authors", +8:u11:\nal, +12:u13:\opology, +8:u02:\nal, +12:u04:\opology, +13:u06:"source":, +18:u07:"source-node":, +13:u01:__EMPTY__, +10:u02:link",, +12:u04:authors", +8:u10:\nal, +12:u12:\opology, +13:u14:"source":, +7:u22:\op, +8:u23:\opo, +8:u01:\nal, +12:u03:\opology, +13:u05:"source":, +18:u06:"source-node":, +16:u07:"source-tp":, +13:u00:__EMPTY__, +10:u01:link",, +12:u03:authors", +12:u11:\opology, +13:u13:"source":, +18:u14:"source-node":, +8:u00:\nal, +12:u02:\opology, +13:u04:"source":, +18:u05:"source-node":, +16:u06:"source-tp":, +10:u00:link",, +12:u02:authors", +12:u10:\opology, +13:u12:"source":, +18:u13:"source-node":, +16:u14:"source-tp":, +12:u01:\opology, +13:u03:"source":, +18:u04:"source-node":, +16:u05:"source-tp":, +12:u01:authors", +13:u11:"source":, +18:u12:"source-node":, +16:u13:"source-tp":, +12:u00:\opology, +13:u02:"source":, +18:u03:"source-node":, +16:u04:"source-tp":, +12:u00:authors", +13:u10:"source":, +18:u11:"source-node":, +16:u12:"source-tp":, +13:u01:"source":, +18:u02:"source-node":, +16:u03:"source-tp":, +18:u10:"source-node":, +16:u11:"source-tp":, +13:u00:"source":, +18:u01:"source-node":, +16:u02:"source-tp":, +16:u10:"source-tp":, +18:u00:"source-node":, +16:u01:"source-tp":, +16:u00:"source-tp":, +11:uI2:"//":"", +17:u08:"Inter-domain, +11:uI1:"//":"", +17:u07:"Inter-domain, +17:u08:"inter-domain, +11:uI0:"//":"", +17:u06:"Inter-domain, +17:u07:"inter-domain, +17:u05:"Inter-domain, +17:u06:"inter-domain, +12:uI2:"":"--",, +17:u04:"Inter-domain, +17:u05:"inter-domain, +35:u08:"teNodeId/10.0.0.1/teLinkId/2",, +12:uI1:"":"--",, +17:u03:"Inter-domain, +17:u04:"inter-domain, +35:u07:"teNodeId/10.0.0.1/teLinkId/2",, +12:uI0:"":"--",, +17:u02:"Inter-domain, +17:u03:"inter-domain, +35:u06:"teNodeId/10.0.0.1/teLinkId/2",, +17:u01:"Inter-domain, +17:u02:"inter-domain, +35:u05:"teNodeId/10.0.0.1/teLinkId/2",, +17:u00:"Inter-domain, +17:u01:"inter-domain, +35:u04:"teNodeId/10.0.0.1/teLinkId/2",, +17:u00:"inter-domain, +35:u03:"teNodeId/10.0.0.1/teLinkId/2",, +35:u02:"teNodeId/10.0.0.1/teLinkId/2",, +35:u01:"teNodeId/10.0.0.1/teLinkId/2",, +35:u00:"teNodeId/10.0.0.1/teLinkId/2",, +8:u08:\d?", +8:u07:\d?", +8:u06:\d?", +8:u14:\d?", +8:u05:\d?", +8:u13:\d?", +6:uI2:?", +8:u04:\d?", +8:u12:\d?", +7:u22:\d?, +8:u23:\d?", +6:uI1:?", +8:u03:\d?", +8:u11:\d?", +6:uI0:?", +8:u02:\d?", +8:u10:\d?", +8:u01:\d?", +8:u00:\d?", +16:uI2:"//-":",...", +16:uI1:"//-":",...", +16:uI0:"//-":",...", +12:uI2:"//":"-", +12:uI1:"//":"-", +12:uI0:"//":"-", +35:u08:"teNodeId/10.0.0.1/teLinkId/3",, +35:u07:"teNodeId/10.0.0.1/teLinkId/3",, +35:u06:"teNodeId/10.0.0.1/teLinkId/3",, +35:u05:"teNodeId/10.0.0.1/teLinkId/3",, +35:u04:"teNodeId/10.0.0.1/teLinkId/3",, +35:u03:"teNodeId/10.0.0.1/teLinkId/3",, +35:u02:"teNodeId/10.0.0.1/teLinkId/3",, +35:u01:"teNodeId/10.0.0.1/teLinkId/3",, +35:u00:"teNodeId/10.0.0.1/teLinkId/3",, +35:u08:"teNodeId/10.0.0.1/teLinkId/4",, +35:u07:"teNodeId/10.0.0.1/teLinkId/4",, +35:u06:"teNodeId/10.0.0.1/teLinkId/4",, +35:u05:"teNodeId/10.0.0.1/teLinkId/4",, +35:u04:"teNodeId/10.0.0.1/teLinkId/4",, +35:u03:"teNodeId/10.0.0.1/teLinkId/4",, +35:u02:"teNodeId/10.0.0.1/teLinkId/4",, +35:u01:"teNodeId/10.0.0.1/teLinkId/4",, +35:u00:"teNodeId/10.0.0.1/teLinkId/4",, +35:u08:"teNodeId/10.0.0.1/teLinkId/5",, +35:u07:"teNodeId/10.0.0.1/teLinkId/5",, +35:u06:"teNodeId/10.0.0.1/teLinkId/5",, +35:u05:"teNodeId/10.0.0.1/teLinkId/5",, +35:u04:"teNodeId/10.0.0.1/teLinkId/5",, +35:u03:"teNodeId/10.0.0.1/teLinkId/5",, +35:u02:"teNodeId/10.0.0.1/teLinkId/5",, +35:u01:"teNodeId/10.0.0.1/teLinkId/5",, +35:u00:"teNodeId/10.0.0.1/teLinkId/5",, +35:u08:"teNodeId/10.0.0.1/teLinkId/6",, +35:u07:"teNodeId/10.0.0.1/teLinkId/6",, +35:u06:"teNodeId/10.0.0.1/teLinkId/6",, +35:u05:"teNodeId/10.0.0.1/teLinkId/6",, +35:u04:"teNodeId/10.0.0.1/teLinkId/6",, +35:u03:"teNodeId/10.0.0.1/teLinkId/6",, +35:u02:"teNodeId/10.0.0.1/teLinkId/6",, +35:u01:"teNodeId/10.0.0.1/teLinkId/6",, +35:u00:"teNodeId/10.0.0.1/teLinkId/6",, +34:u08:"teNodeId/10.0.0.1teLinkId/7",, +34:u07:"teNodeId/10.0.0.1teLinkId/7",, +34:u06:"teNodeId/10.0.0.1teLinkId/7",, +34:u05:"teNodeId/10.0.0.1teLinkId/7",, +16:uI2:"-":"/.../",, +34:u04:"teNodeId/10.0.0.1teLinkId/7",, +16:uI1:"-":"/.../",, +34:u03:"teNodeId/10.0.0.1teLinkId/7",, +16:uI0:"-":"/.../",, +34:u02:"teNodeId/10.0.0.1teLinkId/7",, +34:u01:"teNodeId/10.0.0.1teLinkId/7",, +34:u00:"teNodeId/10.0.0.1teLinkId/7",, +5:u08:@, +5:u07:@, +9:uI2::---., +5:u06:@, +9:uI1::---., +5:u05:@, +9:uI0::---., +5:u04:@, +5:u03:@, +5:u02:@, +5:u01:@, +5:u00:@, +32:u08:"ietf-otn-types@2018-06-07":, +9:u08:\02",, +32:u07:"ietf-otn-types@2018-06-07":, +31:u08:"ietf-te-types@2018-07-01":, +32:u06:"ietf-otn-types@2018-06-07":, +9:u07:\02",, +25:u08:"ietf-te@2018-07-01":, +33:u08:"draft-ietf-teas-yang-te-16",, +32:u14:"ietf-otn-types@2018-06-07":, +32:u05:"ietf-otn-types@2018-06-07":, +9:u06:\02",, +31:u07:"ietf-te-types@2018-07-01":, +33:u08:"ietf-otn-tunnel@2018-06-07":, +33:u07:"draft-ietf-teas-yang-te-16",, +32:u13:"ietf-otn-types@2018-06-07":, +9:u14:\02",, +32:u04:"ietf-otn-types@2018-06-07":, +9:u05:\02",, +31:u06:"ietf-te-types@2018-07-01":, +25:u07:"ietf-te@2018-07-01":, +9:u08:\-02", +33:u06:"draft-ietf-teas-yang-te-16",, +39:u08:"draft-ietf-ccamp-otn-tunnel-model\, +32:u12:"ietf-otn-types@2018-06-07":, +9:u13:\02",, +31:u14:"ietf-te-types@2018-07-01":, +32:u03:"ietf-otn-types@2018-06-07":, +9:u04:\02",, +31:u05:"ietf-te-types@2018-07-01":, +25:u06:"ietf-te@2018-07-01":, +33:u07:"ietf-otn-tunnel@2018-06-07":, +33:u05:"draft-ietf-teas-yang-te-16",, +39:u07:"draft-ietf-ccamp-otn-tunnel-model\, +32:u11:"ietf-otn-types@2018-06-07":, +9:u12:\02",, +31:u13:"ietf-te-types@2018-07-01":, +25:u14:"ietf-te@2018-07-01":, +32:u02:"ietf-otn-types@2018-06-07":, +9:u03:\02",, +31:u04:"ietf-te-types@2018-07-01":, +25:u05:"ietf-te@2018-07-01":, +33:u06:"ietf-otn-tunnel@2018-06-07":, +9:u07:\-02", +33:u04:"draft-ietf-teas-yang-te-16",, +39:u06:"draft-ietf-ccamp-otn-tunnel-model\, +32:u10:"ietf-otn-types@2018-06-07":, +9:u11:\02",, +31:u12:"ietf-te-types@2018-07-01":, +25:u13:"ietf-te@2018-07-01":, +33:u14:"ietf-otn-tunnel@2018-06-07":, +18:uI2:"---":"-----",, +32:u01:"ietf-otn-types@2018-06-07":, +9:u02:\02",, +31:u03:"ietf-te-types@2018-07-01":, +25:u04:"ietf-te@2018-07-01":, +33:u05:"ietf-otn-tunnel@2018-06-07":, +9:u06:\-02", +33:u03:"draft-ietf-teas-yang-te-16",, +39:u05:"draft-ietf-ccamp-otn-tunnel-model\, +9:u10:\02",, +31:u11:"ietf-te-types@2018-07-01":, +25:u12:"ietf-te@2018-07-01":, +33:u13:"ietf-otn-tunnel@2018-06-07":, +9:u14:\-02", +18:uI1:"---":"-----",, +17:uI2:"----":"-----, +32:u00:"ietf-otn-types@2018-06-07":, +9:u01:\02",, +31:u02:"ietf-te-types@2018-07-01":, +25:u03:"ietf-te@2018-07-01":, +33:u04:"ietf-otn-tunnel@2018-06-07":, +9:u05:\-02", +33:u02:"draft-ietf-teas-yang-te-16",, +39:u04:"draft-ietf-ccamp-otn-tunnel-model\, +10:u08:"PUT",, +31:u10:"ietf-te-types@2018-07-01":, +25:u11:"ietf-te@2018-07-01":, +33:u12:"ietf-otn-tunnel@2018-06-07":, +9:u13:\-02", +18:uI0:"---":"-----",, +17:uI1:"----":"-----, +9:u00:\02",, +31:u01:"ietf-te-types@2018-07-01":, +25:u02:"ietf-te@2018-07-01":, +33:u03:"ietf-otn-tunnel@2018-06-07":, +9:u04:\-02", +33:u01:"draft-ietf-teas-yang-te-16",, +39:u03:"draft-ietf-ccamp-otn-tunnel-model\, +10:u07:"PUT",, +51:u08:"http://{{PNC1-ADDR}}/restconf/data/ietf-te:te", +25:u10:"ietf-te@2018-07-01":, +33:u11:"ietf-otn-tunnel@2018-06-07":, +9:u12:\-02", +7:u22:\-0, +8:u23:\-02, +17:uI0:"----":"-----, +31:u00:"ietf-te-types@2018-07-01":, +25:u01:"ietf-te@2018-07-01":, +33:u02:"ietf-otn-tunnel@2018-06-07":, +9:u03:\-02", +17:u08:"ietf-te:te":, +33:u00:"draft-ietf-teas-yang-te-16",, +39:u02:"draft-ietf-ccamp-otn-tunnel-model\, +10:u06:"PUT",, +51:u07:"http://{{PNC1-ADDR}}/restconf/data/ietf-te:te", +33:u10:"ietf-otn-tunnel@2018-06-07":, +9:u11:\-02", +25:u00:"ietf-te@2018-07-01":, +33:u01:"ietf-otn-tunnel@2018-06-07":, +9:u02:\-02", +14:u08:"tunnels":, +39:u01:"draft-ietf-ccamp-otn-tunnel-model\, +10:u05:"PUT",, +51:u06:"http://{{PNC1-ADDR}}/restconf/data/ietf-te:te", +9:u10:\-02", +33:u00:"ietf-otn-tunnel@2018-06-07":, +9:u01:\-02", +17:u07:"ietf-te:te":, +13:u08:"tunnel":, +39:u00:"draft-ietf-ccamp-otn-tunnel-model\, +10:u04:"PUT",, +51:u05:"http://{{PNC1-ADDR}}/restconf/data/ietf-te:te", +9:u00:\-02", +17:u06:"ietf-te:te":, +14:u07:"tunnels":, +10:u03:"PUT",, +51:u04:"http://{{PNC1-ADDR}}/restconf/data/ietf-te:te", +17:u14:"ietf-te:te":, +17:u05:"ietf-te:te":, +14:u06:"tunnels":, +13:u07:"tunnel":, +10:u02:"PUT",, +51:u03:"http://{{PNC1-ADDR}}/restconf/data/ietf-te:te", +17:u13:"ietf-te:te":, +14:u14:"tunnels":, +17:u04:"ietf-te:te":, +14:u05:"tunnels":, +13:u06:"tunnel":, +10:u01:"PUT",, +51:u02:"http://{{PNC1-ADDR}}/restconf/data/ietf-te:te", +24:u08:"mpi1-odu2-service",, +17:u12:"ietf-te:te":, +14:u13:"tunnels":, +13:u14:"tunnel":, +17:u03:"ietf-te:te":, +14:u04:"tunnels":, +13:u05:"tunnel":, +10:u00:"PUT",, +51:u01:"http://{{PNC1-ADDR}}/restconf/data/ietf-te:te", +24:u07:"mpi1-odu2-service",, +16:u08:identifier":, +17:u11:"ietf-te:te":, +14:u12:"tunnels":, +13:u13:"tunnel":, +7:u22:"tu, +8:u23:"tun, +17:u02:"ietf-te:te":, +14:u03:"tunnels":, +13:u04:"tunnel":, +18:u08:"description":, +51:u00:"http://{{PNC1-ADDR}}/restconf/data/ietf-te:te", +24:u06:"mpi1-odu2-service",, +16:u07:identifier":, +17:u10:"ietf-te:te":, +14:u11:"tunnels":, +13:u12:"tunnel":, +17:u01:"ietf-te:te":, +14:u02:"tunnels":, +13:u03:"tunnel":, +6:u08:\l, +24:u05:"mpi1-odu2-service",, +16:u06:identifier":, +9:u08:"ODU2, +14:u10:"tunnels":, +13:u11:"tunnel":, +17:u00:"ietf-te:te":, +14:u01:"tunnels":, +13:u02:"tunnel":, +18:u07:"description":, +24:u04:"mpi1-odu2-service",, +16:u05:identifier":, +9:u07:"ODU2, +13:u10:"tunnel":, +15:uI2:"//":"---",, +14:u00:"tunnels":, +13:u01:"tunnel":, +18:u06:"description":, +6:u07:\l, +24:u03:"mpi1-odu2-service",, +16:u04:identifier":, +9:u06:"ODU2, +18:u14:"description":, +15:uI1:"//":"---",, +13:u00:"tunnel":, +18:u05:"description":, +6:u06:\l, +21:u08:"switching-type":, +24:u02:"mpi1-odu2-service",, +16:u03:identifier":, +9:u05:"ODU2, +36:u08:"ietf-te-types:lsp-encoding-oduk, +18:u13:"description":, +6:u14:\l, +15:uI0:"//":"---",, +8:uI2:"":", +18:u04:"description":, +6:u05:\l, +24:u01:"mpi1-odu2-service",, +16:u02:identifier":, +9:u04:"ODU2, +36:u07:"ietf-te-types:lsp-encoding-oduk, +34:u08:"ietf-te-types:switching-otn",, +18:u12:"description":, +6:u13:\l, +8:u23:"des, +8:uI1:"":", +18:u03:"description":, +6:u04:\l, +21:u07:"switching-type":, +24:u00:"mpi1-odu2-service",, +16:u01:identifier":, +9:u03:"ODU2, +36:u06:"ietf-te-types:lsp-encoding-oduk, +34:u07:"ietf-te-types:switching-otn",, +12:u08:source":, +18:u11:"description":, +6:u12:\l, +6:u21:\l, +6:u22:\l, +6:u23:\l, +8:uI0:"":", +13:uI2:"//-":"",, +18:u02:"description":, +6:u03:\l, +21:u06:"switching-type":, +16:u00:identifier":, +9:u02:"ODU2, +36:u05:"ietf-te-types:lsp-encoding-oduk, +34:u06:"ietf-te-types:switching-otn",, +12:u07:source":, +17:u08:destination":, +18:u10:"description":, +6:u11:\l, +21:u14:"switching-type":, +13:uI1:"//-":"",, +18:u01:"description":, +6:u02:\l, +21:u05:"switching-type":, +9:u01:"ODU2, +36:u04:"ietf-te-types:lsp-encoding-oduk, +34:u05:"ietf-te-types:switching-otn",, +12:u06:source":, +17:u07:destination":, +15:u08:src-tp-id":, +6:u10:\l, +21:u13:"switching-type":, +13:uI0:"//-":"",, +15:uI2:"-":"--:-",, +18:u00:"description":, +6:u01:\l, +21:u04:"switching-type":, +9:u00:"ODU2, +36:u03:"ietf-te-types:lsp-encoding-oduk, +34:u04:"ietf-te-types:switching-otn",, +12:u05:source":, +17:u06:destination":, +15:u07:src-tp-id":, +15:u08:dst-tp-id":, +21:u12:"switching-type":, +15:uI1:"-":"--:-",, +13:uI2:"//":":",, +6:u00:\l, +21:u03:"switching-type":, +36:u02:"ietf-te-types:lsp-encoding-oduk, +34:u03:"ietf-te-types:switching-otn",, +12:u04:source":, +17:u05:destination":, +15:u06:src-tp-id":, +15:u07:dst-tp-id":, +39:u08:ietf-otn-tunnel:src-client-signal":, +21:u11:"switching-type":, +15:uI0:"-":"--:-",, +13:uI1:"//":":",, +21:u02:"switching-type":, +36:u01:"ietf-te-types:lsp-encoding-oduk, +34:u02:"ietf-te-types:switching-otn",, +12:u03:source":, +17:u04:destination":, +15:u05:src-tp-id":, +15:u06:dst-tp-id":, +39:u07:ietf-otn-tunnel:src-client-signal":, +21:u10:"switching-type":, +13:uI0:"//":":",, +15:uI2:"//--":":",, +21:u01:"switching-type":, +36:u00:"ietf-te-types:lsp-encoding-oduk, +34:u01:"ietf-te-types:switching-otn",, +12:u02:source":, +17:u03:destination":, +15:u04:src-tp-id":, +15:u05:dst-tp-id":, +39:u06:ietf-otn-tunnel:src-client-signal":, +39:u08:ietf-otn-tunnel:dst-client-signal":, +15:uI1:"//--":":",, +21:u00:"switching-type":, +20:u08:"bidirectional":, +34:u00:"ietf-te-types:switching-otn",, +12:u01:source":, +17:u02:destination":, +15:u03:src-tp-id":, +15:u04:dst-tp-id":, +39:u05:ietf-otn-tunnel:src-client-signal":, +39:u07:ietf-otn-tunnel:dst-client-signal":, +15:uI0:"//--":":",, +16:uI2:"//--:--":":, +12:u00:source":, +17:u01:destination":, +15:u02:src-tp-id":, +15:u03:dst-tp-id":, +39:u04:ietf-otn-tunnel:src-client-signal":, +39:u06:ietf-otn-tunnel:dst-client-signal":, +9:u08:true,, +16:uI1:"//--:--":":, +20:u07:"bidirectional":, +17:u00:destination":, +15:u01:src-tp-id":, +15:u02:dst-tp-id":, +39:u03:ietf-otn-tunnel:src-client-signal":, +39:u05:ietf-otn-tunnel:dst-client-signal":, +9:u07:true,, +16:u08:protection":, +16:uI0:"//--:--":":, +20:u06:"bidirectional":, +15:u00:src-tp-id":, +15:u01:dst-tp-id":, +39:u02:ietf-otn-tunnel:src-client-signal":, +39:u04:ietf-otn-tunnel:dst-client-signal":, +9:u06:true,, +16:u07:protection":, +6:u08:__, +20:u14:"bidirectional":, +20:u05:"bidirectional":, +15:u00:dst-tp-id":, +39:u01:ietf-otn-tunnel:src-client-signal":, +39:u03:ietf-otn-tunnel:dst-client-signal":, +9:u05:true,, +16:u06:protection":, +6:u07:__, +20:u13:"bidirectional":, +20:u04:"bidirectional":, +39:u00:ietf-otn-tunnel:src-client-signal":, +39:u02:ietf-otn-tunnel:dst-client-signal":, +9:u04:true,, +16:u05:protection":, +6:u06:__, +20:u12:"bidirectional":, +6:u21:"b, +7:u22:"bi, +8:u23:"bid, +20:u03:"bidirectional":, +39:u01:ietf-otn-tunnel:dst-client-signal":, +9:u03:true,, +16:u04:protection":, +6:u05:__, +20:u11:"bidirectional":, +20:u02:"bidirectional":, +39:u00:ietf-otn-tunnel:dst-client-signal":, +9:u02:true,, +16:u03:protection":, +6:u04:__, +20:u10:"bidirectional":, +20:u01:"bidirectional":, +9:u01:true,, +16:u02:protection":, +6:u03:__, +20:u00:"bidirectional":, +9:u00:true,, +16:u01:protection":, +6:u02:__, +16:u00:protection":, +6:u01:__, +6:u00:__, +17:u08:restoration":, +17:u07:restoration":, +17:u06:restoration":, +17:u05:restoration":, +29:u08:"te-topology-identifier":, +17:u04:restoration":, +28:u08:te-topology-identifier":, +18:u08:"provider-id":, +17:u03:restoration":, +28:u07:te-topology-identifier":, +29:u07:"te-topology-identifier":, +16:u08:"client-id":, +17:u02:restoration":, +28:u06:te-topology-identifier":, +29:u06:"te-topology-identifier":, +18:u07:"provider-id":, +18:u08:"topology-id":, +17:u01:restoration":, +28:u05:te-topology-identifier":, +29:u14:"te-topology-identifier":, +14:uI2:"//--":"",, +29:u05:"te-topology-identifier":, +18:u06:"provider-id":, +16:u07:"client-id":, +17:u00:restoration":, +28:u04:te-topology-identifier":, +24:u08:"otn-black-topology", +29:u13:"te-topology-identifier":, +18:u14:"provider-id":, +14:uI1:"//--":"",, +29:u04:"te-topology-identifier":, +18:u05:"provider-id":, +16:u06:"client-id":, +18:u07:"topology-id":, +19:u08:"te-bandwidth":, +28:u03:te-topology-identifier":, +24:u07:"otn-black-topology", +29:u12:"te-topology-identifier":, +18:u13:"provider-id":, +16:u14:"client-id":, +14:uI0:"//--":"",, +9:uI2:"-":,, +29:u03:"te-topology-identifier":, +18:u04:"provider-id":, +16:u05:"client-id":, +18:u06:"topology-id":, +31:u08:"ietf-otn-tunnel:odu-type":, +28:u02:te-topology-identifier":, +24:u06:"otn-black-topology", +29:u11:"te-topology-identifier":, +18:u12:"provider-id":, +16:u13:"client-id":, +18:u14:"topology-id":, +9:uI1:"-":,, +29:u02:"te-topology-identifier":, +18:u03:"provider-id":, +16:u04:"client-id":, +18:u05:"topology-id":, +19:u07:"te-bandwidth":, +28:u01:te-topology-identifier":, +24:u05:"otn-black-topology", +30:u08:"ietf-otn-types:prot-ODU2", +29:u10:"te-topology-identifier":, +18:u11:"provider-id":, +16:u12:"client-id":, +18:u13:"topology-id":, +9:uI0:"-":,, +12:uI2:"-":"--", +29:u01:"te-topology-identifier":, +18:u02:"provider-id":, +16:u03:"client-id":, +18:u04:"topology-id":, +19:u06:"te-bandwidth":, +31:u07:"ietf-otn-tunnel:odu-type":, +28:u00:te-topology-identifier":, +24:u04:"otn-black-topology", +30:u07:"ietf-otn-types:prot-ODU2", +18:u10:"provider-id":, +16:u11:"client-id":, +18:u12:"topology-id":, +19:u14:"te-bandwidth":, +7:u22:"to, +8:u23:"top, +12:uI1:"-":"--", +29:u00:"te-topology-identifier":, +18:u01:"provider-id":, +16:u02:"client-id":, +18:u03:"topology-id":, +19:u05:"te-bandwidth":, +31:u06:"ietf-otn-tunnel:odu-type":, +24:u08:"p2p-primary-paths":, +24:u03:"otn-black-topology", +30:u06:"ietf-otn-types:prot-ODU2", +23:u08:hierarchical-link":, +16:u10:"client-id":, +18:u11:"topology-id":, +19:u13:"te-bandwidth":, +31:u14:"ietf-otn-tunnel:odu-type":, +12:uI0:"-":"--", +18:u00:"provider-id":, +16:u01:"client-id":, +18:u02:"topology-id":, +19:u04:"te-bandwidth":, +31:u05:"ietf-otn-tunnel:odu-type":, +23:u08:"p2p-primary-path":, +24:u02:"otn-black-topology", +30:u05:"ietf-otn-types:prot-ODU2", +23:u07:hierarchical-link":, +18:u10:"topology-id":, +19:u12:"te-bandwidth":, +31:u13:"ietf-otn-tunnel:odu-type":, +17:uI2:"--:-":"--:-", +16:u00:"client-id":, +18:u01:"topology-id":, +19:u03:"te-bandwidth":, +31:u04:"ietf-otn-tunnel:odu-type":, +24:u07:"p2p-primary-paths":, +24:u01:"otn-black-topology", +30:u04:"ietf-otn-types:prot-ODU2", +23:u06:hierarchical-link":, +19:u11:"te-bandwidth":, +31:u12:"ietf-otn-tunnel:odu-type":, +17:uI1:"--:-":"--:-", +18:u00:"topology-id":, +19:u02:"te-bandwidth":, +31:u03:"ietf-otn-tunnel:odu-type":, +24:u06:"p2p-primary-paths":, +23:u07:"p2p-primary-path":, +24:u00:"otn-black-topology", +30:u03:"ietf-otn-types:prot-ODU2", +23:u05:hierarchical-link":, +19:u10:"te-bandwidth":, +31:u11:"ietf-otn-tunnel:odu-type":, +24:u14:"p2p-primary-paths":, +17:uI0:"--:-":"--:-", +14:uI2:"//-":":",, +19:u01:"te-bandwidth":, +31:u02:"ietf-otn-tunnel:odu-type":, +24:u05:"p2p-primary-paths":, +23:u06:"p2p-primary-path":, +17:u08:"path-scope":, +30:u02:"ietf-otn-types:prot-ODU2", +23:u04:hierarchical-link":, +37:u08:"mpi1-odu2-service-primary-path",, +31:u10:"ietf-otn-tunnel:odu-type":, +24:u13:"p2p-primary-paths":, +23:u14:"p2p-primary-path":, +14:uI1:"//-":":",, +19:u00:"te-bandwidth":, +31:u01:"ietf-otn-tunnel:odu-type":, +24:u04:"p2p-primary-paths":, +23:u05:"p2p-primary-path":, +30:u01:"ietf-otn-types:prot-ODU2", +23:u03:hierarchical-link":, +37:u07:"mpi1-odu2-service-primary-path",, +39:u08:"ietf-te-types:path-scope-segment",, +24:u12:"p2p-primary-paths":, +23:u13:"p2p-primary-path":, +7:u22:"p2, +8:u23:"p2p, +14:uI0:"//-":":",, +31:u00:"ietf-otn-tunnel:odu-type":, +24:u03:"p2p-primary-paths":, +23:u04:"p2p-primary-path":, +17:u07:"path-scope":, +10:u08:\needs, +30:u00:"ietf-otn-types:prot-ODU2", +23:u02:hierarchical-link":, +37:u06:"mpi1-odu2-service-primary-path",, +39:u07:"ietf-te-types:path-scope-segment",, +18:u08:te-bandwidth":, +24:u11:"p2p-primary-paths":, +23:u12:"p2p-primary-path":, +24:u02:"p2p-primary-paths":, +23:u03:"p2p-primary-path":, +17:u06:"path-scope":, +29:u08:"explicit-route-objects":, +23:u01:hierarchical-link":, +37:u05:"mpi1-odu2-service-primary-path",, +39:u06:"ietf-te-types:path-scope-segment",, +18:u07:te-bandwidth":, +24:u10:"p2p-primary-paths":, +23:u11:"p2p-primary-path":, +17:u14:"path-scope":, +14:uI2:"":"----",, +24:u01:"p2p-primary-paths":, +23:u02:"p2p-primary-path":, +17:u05:"path-scope":, +10:u07:\needs, +35:u08:"route-object-include-exclude":, +23:u00:hierarchical-link":, +37:u04:"mpi1-odu2-service-primary-path",, +39:u05:"ietf-te-types:path-scope-segment",, +18:u06:te-bandwidth":, +23:u10:"p2p-primary-path":, +17:u13:"path-scope":, +14:uI1:"":"----",, +16:uI2:"-":"--:--",, +24:u00:"p2p-primary-paths":, +23:u01:"p2p-primary-path":, +17:u04:"path-scope":, +10:u06:\needs, +29:u07:"explicit-route-objects":, +37:u03:"mpi1-odu2-service-primary-path",, +39:u04:"ietf-te-types:path-scope-segment",, +18:u05:te-bandwidth":, +17:u12:"path-scope":, +10:u14:\needs, +14:uI0:"":"----",, +16:uI1:"-":"--:--",, +12:uI2:"//-":":, +23:u00:"p2p-primary-path":, +17:u03:"path-scope":, +10:u05:\needs, +29:u06:"explicit-route-objects":, +35:u07:"route-object-include-exclude":, +37:u02:"mpi1-odu2-service-primary-path",, +39:u03:"ietf-te-types:path-scope-segment",, +18:u04:te-bandwidth":, +17:u11:"path-scope":, +10:u13:\needs, +29:u14:"explicit-route-objects":, +16:uI0:"-":"--:--",, +12:uI1:"//-":":, +17:u02:"path-scope":, +10:u04:\needs, +29:u05:"explicit-route-objects":, +35:u06:"route-object-include-exclude":, +12:u08:\terface, +37:u01:"mpi1-odu2-service-primary-path",, +39:u02:"ietf-te-types:path-scope-segment",, +18:u03:te-bandwidth":, +17:u10:"path-scope":, +10:u12:\needs, +29:u13:"explicit-route-objects":, +35:u14:"route-object-include-exclude":, +7:u22:\ne, +8:u23:\nee, +12:uI0:"//-":":, +17:u01:"path-scope":, +10:u03:\needs, +29:u04:"explicit-route-objects":, +35:u05:"route-object-include-exclude":, +12:u08:"index":, +37:u00:"mpi1-odu2-service-primary-path",, +39:u01:"ietf-te-types:path-scope-segment",, +18:u02:te-bandwidth":, +12:u08:(S3-1)",, +10:u11:\needs, +29:u12:"explicit-route-objects":, +35:u13:"route-object-include-exclude":, +11:uI2:"---":[, +17:u00:"path-scope":, +10:u02:\needs, +29:u03:"explicit-route-objects":, +35:u04:"route-object-include-exclude":, +12:u07:\terface, +27:u08:"explicit-route-usage":, +39:u00:"ietf-te-types:path-scope-segment",, +18:u01:te-bandwidth":, +12:u07:(S3-1)",, +10:u10:\needs, +29:u11:"explicit-route-objects":, +35:u12:"route-object-include-exclude":, +6:u21:"r, +7:u22:"ro, +8:u23:"rou, +11:uI1:"---":[, +10:u01:\needs, +29:u02:"explicit-route-objects":, +35:u03:"route-object-include-exclude":, +12:u06:\terface, +12:u07:"index":, +17:u08:\nclude-ero",, +18:u00:te-bandwidth":, +12:u06:(S3-1)",, +27:u08:"ietf-te-types:route-i\, +29:u10:"explicit-route-objects":, +35:u11:"route-object-include-exclude":, +12:u14:\terface, +11:uI0:"---":[, +11:uI2:"//":"-, +10:u00:\needs, +29:u01:"explicit-route-objects":, +35:u02:"route-object-include-exclude":, +12:u05:\terface, +12:u06:"index":, +27:u07:"explicit-route-usage":, +20:u08:"num-unnum-hop":, +12:u05:(S3-1)",, +27:u07:"ietf-te-types:route-i\, +35:u10:"route-object-include-exclude":, +12:u13:\terface, +12:u14:"index":, +11:uI1:"//":"-, +9:uI2:(-)",, +29:u00:"explicit-route-objects":, +35:u01:"route-object-include-exclude":, +12:u04:\terface, +12:u05:"index":, +27:u06:"explicit-route-usage":, +17:u07:\nclude-ero",, +12:u04:(S3-1)",, +27:u06:"ietf-te-types:route-i\, +12:u12:\terface, +12:u13:"index":, +27:u14:"explicit-route-usage":, +7:u22:\te, +8:u23:\ter, +11:uI0:"//":"-, +9:uI1:(-)",, +35:u00:"route-object-include-exclude":, +12:u03:\terface, +12:u04:"index":, +27:u05:"explicit-route-usage":, +17:u06:\nclude-ero",, +20:u07:"num-unnum-hop":, +12:u03:(S3-1)",, +27:u05:"ietf-te-types:route-i\, +13:u08:node-id":, +12:u11:\terface, +12:u12:"index":, +27:u13:"explicit-route-usage":, +17:u14:\nclude-ero",, +8:u23:"ind, +9:uI0:(-)",, +14:uI2:"--":"--:-, +12:u02:\terface, +12:u03:"index":, +27:u04:"explicit-route-usage":, +17:u05:\nclude-ero",, +20:u06:"num-unnum-hop":, +12:u02:(S3-1)",, +27:u04:"ietf-te-types:route-i\, +13:u07:node-id":, +12:u10:\terface, +12:u11:"index":, +27:u12:"explicit-route-usage":, +17:u13:\nclude-ero",, +20:u14:"num-unnum-hop":, +14:uI1:"--":"--:-, +12:u01:\terface, +12:u02:"index":, +27:u03:"explicit-route-usage":, +17:u04:\nclude-ero",, +20:u05:"num-unnum-hop":, +17:u08:"link-tp-id":, +12:u01:(S3-1)",, +27:u03:"ietf-te-types:route-i\, +13:u06:node-id":, +16:u08:link-tp-id":, +12:u10:"index":, +27:u11:"explicit-route-usage":, +17:u12:\nclude-ero",, +20:u13:"num-unnum-hop":, +7:u22:\nc, +8:u23:\ncl, +14:uI0:"--":"--:-, +12:u00:\terface, +12:u01:"index":, +27:u02:"explicit-route-usage":, +17:u03:\nclude-ero",, +20:u04:"num-unnum-hop":, +15:u08:"hop-type":, +12:u00:(S3-1)",, +27:u02:"ietf-te-types:route-i\, +13:u05:node-id":, +16:u07:link-tp-id":, +27:u10:"explicit-route-usage":, +17:u11:\nclude-ero",, +20:u12:"num-unnum-hop":, +7:u22:"nu, +8:u23:"num, +12:u00:"index":, +27:u01:"explicit-route-usage":, +17:u02:\nclude-ero",, +20:u03:"num-unnum-hop":, +17:u07:"link-tp-id":, +16:u08:"direction":, +27:u01:"ietf-te-types:route-i\, +13:u04:node-id":, +16:u06:link-tp-id":, +13:u08:"STRICT",, +17:u10:\nclude-ero",, +20:u11:"num-unnum-hop":, +27:u00:"explicit-route-usage":, +17:u01:\nclude-ero",, +20:u02:"num-unnum-hop":, +17:u06:"link-tp-id":, +15:u07:"hop-type":, +27:u00:"ietf-te-types:route-i\, +13:u03:node-id":, +16:u05:link-tp-id":, +13:u07:"STRICT",, +14:u08:"INCOMING", +20:u10:"num-unnum-hop":, +17:u14:"link-tp-id":, +15:uI2:"//--":"-",, +17:u00:\nclude-ero",, +20:u01:"num-unnum-hop":, +17:u05:"link-tp-id":, +15:u06:"hop-type":, +16:u07:"direction":, +13:u02:node-id":, +16:u04:link-tp-id":, +13:u06:"STRICT",, +14:u07:"INCOMING", +17:u13:"link-tp-id":, +15:u14:"hop-type":, +15:uI1:"//--":"-",, +10:uI2:"--":,, +20:u00:"num-unnum-hop":, +17:u04:"link-tp-id":, +15:u05:"hop-type":, +16:u06:"direction":, +13:u01:node-id":, +16:u03:link-tp-id":, +13:u05:"STRICT",, +14:u06:"INCOMING", +17:u12:"link-tp-id":, +15:u13:"hop-type":, +16:u14:"direction":, +15:uI0:"//--":"-",, +10:uI1:"--":,, +17:u03:"link-tp-id":, +15:u04:"hop-type":, +16:u05:"direction":, +13:u00:node-id":, +16:u02:link-tp-id":, +13:u04:"STRICT",, +14:u05:"INCOMING", +17:u11:"link-tp-id":, +15:u12:"hop-type":, +16:u13:"direction":, +7:u22:"ho, +8:u23:"hop, +10:uI0:"--":,, +17:u02:"link-tp-id":, +15:u03:"hop-type":, +16:u04:"direction":, +8:u08:\bel, +16:u01:link-tp-id":, +13:u03:"STRICT",, +14:u04:"INCOMING", +17:u10:"link-tp-id":, +15:u11:"hop-type":, +16:u12:"direction":, +7:u22:"di, +8:u23:"dir, +17:u01:"link-tp-id":, +15:u02:"hop-type":, +16:u03:"direction":, +16:u00:link-tp-id":, +13:u02:"STRICT",, +14:u03:"INCOMING", +9:u08:(ODU2, +15:u10:"hop-type":, +16:u11:"direction":, +17:u00:"link-tp-id":, +15:u01:"hop-type":, +16:u02:"direction":, +8:u07:\bel, +13:u01:"STRICT",, +14:u02:"INCOMING", +9:u07:(ODU2, +16:u10:"direction":, +15:u00:"hop-type":, +16:u01:"direction":, +8:u06:\bel, +13:u00:"STRICT",, +14:u01:"INCOMING", +9:u06:(ODU2, +8:u14:\bel, +16:u00:"direction":, +8:u05:\bel, +14:u00:"INCOMING", +9:u05:(ODU2, +8:u13:\bel, +9:uI2:()-",, +8:u04:\bel, +9:u04:(ODU2, +8:u12:\bel, +6:u21:\b, +7:u22:\be, +8:u23:\bel, +9:uI1:()-",, +8:u03:\bel, +9:u03:(ODU2, +8:u11:\bel, +9:uI0:()-",, +8:u02:\bel, +9:u02:(ODU2, +8:u10:\bel, +8:u01:\bel, +9:u01:(ODU2, +8:u00:\bel, +16:u08:"label-hop":, +9:u00:(ODU2, +9:u08:20199, +15:u08:"te-label":, +9:u07:20199, +16:u07:"label-hop":, +9:u06:20199, +16:u06:"label-hop":, +15:u07:"te-label":, +8:u08:\ODU, +9:u05:20199, +16:u14:"label-hop":, +16:u05:"label-hop":, +15:u06:"te-label":, +9:u04:20199, +9:u08:(ODUk, +16:u13:"label-hop":, +15:u14:"te-label":, +16:u04:"label-hop":, +15:u05:"te-label":, +8:u07:\ODU, +9:u03:20199, +9:u07:(ODUk, +16:u12:"label-hop":, +15:u13:"te-label":, +7:u22:"la, +8:u23:"lab, +16:u03:"label-hop":, +15:u04:"te-label":, +8:u06:\ODU, +9:u02:20199, +9:u06:(ODUk, +16:u11:"label-hop":, +15:u12:"te-label":, +8:u14:\odu, +16:u02:"label-hop":, +15:u03:"te-label":, +8:u05:\ODU, +9:u01:20199, +9:u05:(ODUk, +12:u08:"FORWARD, +16:u10:"label-hop":, +15:u11:"te-label":, +8:u13:\odu, +9:uI2:()?",, +16:u01:"label-hop":, +15:u02:"te-label":, +8:u04:\ODU, +9:u00:20199, +9:u04:(ODUk, +12:u07:"FORWARD, +15:u10:"te-label":, +8:u12:\odu, +6:u21:\O, +7:u22:\OD, +8:u23:\ODU, +9:uI1:()?",, +16:u00:"label-hop":, +15:u01:"te-label":, +8:u03:\ODU, +9:u03:(ODUk, +12:u06:"FORWARD, +8:u11:\odu, +9:uI0:()?",, +15:u00:"te-label":, +8:u02:\ODU, +9:u02:(ODUk, +12:u05:"FORWARD, +8:u10:\odu, +8:u01:\ODU, +9:u01:(ODUk, +12:u04:"FORWARD, +8:u00:\ODU, +11:u08:\erface, +9:u00:(ODUk, +12:u03:"FORWARD, +12:u02:"FORWARD, +12:u08:(S2-1)",, +11:u07:\erface, +12:u01:"FORWARD, +12:u07:(S2-1)",, +11:u06:\erface, +12:u00:"FORWARD, +12:u06:(S2-1)",, +11:u14:\erface, +11:u05:\erface, +12:u05:(S2-1)",, +11:u13:\erface, +11:u04:\erface, +12:u04:(S2-1)",, +11:u12:\erface, +7:u22:\er, +8:u23:\erf, +11:u03:\erface, +12:u03:(S2-1)",, +11:u11:\erface, +11:u02:\erface, +12:u02:(S2-1)",, +11:u10:\erface, +11:u01:\erface, +12:u01:(S2-1)",, +11:u00:\erface, +12:u00:(S2-1)",, +14:u08:"OUTGOING", +14:u07:"OUTGOING", +14:u06:"OUTGOING", +14:u05:"OUTGOING", +7:u08:\el, +14:u04:"OUTGOING", +14:u03:"OUTGOING", +7:u07:\el, +14:u02:"OUTGOING", +7:u06:\el, +14:u01:"OUTGOING", +7:u14:\el, +7:u05:\el, +14:u00:"OUTGOING", +7:u13:\el, +7:u04:\el, +7:u12:\el, +7:u22:\el, +7:u23:\el, +7:u03:\el, +26:u08:"ietf-otn-tunnel:tpn":, +7:u11:\el, +7:u02:\el, +26:u08:"ietf-otn-tunnel:tsg":, +7:u10:\el, +7:u01:\el, +26:u07:"ietf-otn-tunnel:tpn":, +13:u08:\-1.25G",, +24:u08:"ietf-otn-types:tsg\, +7:u00:\el, +26:u06:"ietf-otn-tunnel:tpn":, +26:u07:"ietf-otn-tunnel:tsg":, +30:u08:"ietf-otn-tunnel:ts-list":, +24:u07:"ietf-otn-types:tsg\, +26:u14:"ietf-otn-tunnel:tpn":, +26:u05:"ietf-otn-tunnel:tpn":, +26:u06:"ietf-otn-tunnel:tsg":, +13:u07:\-1.25G",, +24:u06:"ietf-otn-types:tsg\, +10:u08:"1-8",, +26:u13:"ietf-otn-tunnel:tpn":, +26:u14:"ietf-otn-tunnel:tsg":, +11:uI2:"--:":,, +26:u04:"ietf-otn-tunnel:tpn":, +26:u05:"ietf-otn-tunnel:tsg":, +13:u06:\-1.25G",, +30:u07:"ietf-otn-tunnel:ts-list":, +24:u05:"ietf-otn-types:tsg\, +10:u07:"1-8",, +26:u12:"ietf-otn-tunnel:tpn":, +26:u13:"ietf-otn-tunnel:tsg":, +13:u14:\-1.25g",, +11:uI1:"--:":,, +14:uI2:"--:":"--:, +26:u03:"ietf-otn-tunnel:tpn":, +26:u04:"ietf-otn-tunnel:tsg":, +13:u05:\-1.25G",, +30:u06:"ietf-otn-tunnel:ts-list":, +24:u04:"ietf-otn-types:tsg\, +10:u06:"1-8",, +26:u11:"ietf-otn-tunnel:tpn":, +26:u12:"ietf-otn-tunnel:tsg":, +13:u13:\-1.25g",, +30:u14:"ietf-otn-tunnel:ts-list":, +11:uI0:"--:":,, +14:uI1:"--:":"--:, +8:uI2:-.",, +26:u02:"ietf-otn-tunnel:tpn":, +26:u03:"ietf-otn-tunnel:tsg":, +13:u04:\-1.25G",, +30:u05:"ietf-otn-tunnel:ts-list":, +24:u03:"ietf-otn-types:tsg\, +10:u05:"1-8",, +26:u10:"ietf-otn-tunnel:tpn":, +26:u11:"ietf-otn-tunnel:tsg":, +13:u12:\-1.25g",, +30:u13:"ietf-otn-tunnel:ts-list":, +7:u22:\-1, +8:u23:\-1., +14:uI0:"--:":"--:, +8:uI1:-.",, +15:uI2:"--:-":"-",, +26:u01:"ietf-otn-tunnel:tpn":, +26:u02:"ietf-otn-tunnel:tsg":, +13:u03:\-1.25G",, +30:u04:"ietf-otn-tunnel:ts-list":, +24:u02:"ietf-otn-types:tsg\, +10:u04:"1-8",, +26:u10:"ietf-otn-tunnel:tsg":, +13:u11:\-1.25g",, +30:u12:"ietf-otn-tunnel:ts-list":, +8:uI0:-.",, +15:uI1:"--:-":"-",, +26:u00:"ietf-otn-tunnel:tpn":, +26:u01:"ietf-otn-tunnel:tsg":, +13:u02:\-1.25G",, +30:u03:"ietf-otn-tunnel:ts-list":, +24:u01:"ietf-otn-types:tsg\, +10:u03:"1-8",, +13:u10:\-1.25g",, +30:u11:"ietf-otn-tunnel:ts-list":, +15:uI0:"--:-":"-",, +26:u00:"ietf-otn-tunnel:tsg":, +13:u01:\-1.25G",, +30:u02:"ietf-otn-tunnel:ts-list":, +24:u00:"ietf-otn-types:tsg\, +10:u02:"1-8",, +30:u10:"ietf-otn-tunnel:ts-list":, +13:u00:\-1.25G",, +30:u01:"ietf-otn-tunnel:ts-list":, +10:u01:"1-8",, +30:u00:"ietf-otn-tunnel:ts-list":, +10:u00:"1-8",, +49:u08:https://github.com/danielkinguk/transport-nbi, +14:u08:incomplete, +14:u07:incomplete, +49:u07:https://github.com/danielkinguk/transport-nbi, +14:u06:incomplete, +49:u06:https://github.com/danielkinguk/transport-nbi, +14:u05:incomplete, +49:u14:https://github.com/danielkinguk/transport-nbi, +49:u05:https://github.com/danielkinguk/transport-nbi, +14:u04:incomplete, +49:u13:https://github.com/danielkinguk/transport-nbi, +49:u04:https://github.com/danielkinguk/transport-nbi, +14:u03:incomplete, +49:u12:https://github.com/danielkinguk/transport-nbi, +49:u03:https://github.com/danielkinguk/transport-nbi, +14:u02:incomplete, +49:u11:https://github.com/danielkinguk/transport-nbi, +49:u02:https://github.com/danielkinguk/transport-nbi, +14:u01:incomplete, +49:u10:https://github.com/danielkinguk/transport-nbi, +49:u01:https://github.com/danielkinguk/transport-nbi, +14:u00:incomplete, +49:u00:https://github.com/danielkinguk/transport-nbi, +9:u08:Italo, +8:u08:Busi, +9:u07:Italo, +8:u07:Busi, +9:u06:Italo, +10:u08:Daniel, +25:u08:italo.busi@huawei.com, +9:u14:italo, +9:u05:Italo, +25:u07:italo.busi@huawei.com, +9:u13:italo, +9:u04:Italo, +10:u07:Daniel, +25:u06:italo.busi@huawei.com, +9:u12:italo, +7:u22:Ita, +8:u23:Ital, +9:u03:Italo, +10:u06:Daniel, +11:u08:Haomian, +25:u05:italo.busi@huawei.com, +23:u08:daniel@olddog.co.uk, +9:u11:italo, +10:u14:daniel, +9:u02:Italo, +10:u05:Daniel, +25:u04:italo.busi@huawei.com, +23:u07:daniel@olddog.co.uk, +9:u10:italo, +10:u13:daniel, +9:u01:Italo, +10:u04:Daniel, +11:u07:Haomian, +25:u03:italo.busi@huawei.com, +23:u06:daniel@olddog.co.uk, +10:u12:daniel, +8:u23:Dani, +9:u00:Italo, +10:u03:Daniel, +11:u06:Haomian, +10:u08:Yunbin, +25:u02:italo.busi@huawei.com, +23:u05:daniel@olddog.co.uk, +27:u08:zhenghaomian@huawei.com, +10:u11:daniel, +11:u14:haomian, +10:u02:Daniel, +11:u05:Haomian, +25:u01:italo.busi@huawei.com, +23:u04:daniel@olddog.co.uk, +27:u07:zhenghaomian@huawei.com, +10:u10:daniel, +11:u13:haomian, +10:u01:Daniel, +11:u04:Haomian, +10:u07:Yunbin, +25:u00:italo.busi@huawei.com, +23:u03:daniel@olddog.co.uk, +27:u06:zhenghaomian@huawei.com, +11:u12:haomian, +7:u22:Hao, +8:u23:Haom, +10:u00:Daniel, +11:u03:Haomian, +10:u06:Yunbin, +8:u08:Yang, +23:u02:daniel@olddog.co.uk, +27:u05:zhenghaomian@huawei.com, +20:u08:xuyunbin@ritt.cn, +11:u11:haomian, +10:u14:yunbin, +11:u02:Haomian, +10:u05:Yunbin, +23:u01:daniel@olddog.co.uk, +27:u04:zhenghaomian@huawei.com, +20:u07:xuyunbin@ritt.cn, +8:u08:Zhao, +11:u10:haomian, +10:u13:yunbin, +11:u01:Haomian, +10:u04:Yunbin, +8:u07:Yang, +23:u00:daniel@olddog.co.uk, +27:u03:zhenghaomian@huawei.com, +20:u06:xuyunbin@ritt.cn, +8:u07:Zhao, +10:u08:Mobile, +10:u12:yunbin, +6:u21:Yu, +7:u22:Yun, +8:u23:Yunb, +11:u00:Haomian, +10:u03:Yunbin, +8:u06:Yang, +10:u08:Sergio, +27:u02:zhenghaomian@huawei.com, +20:u05:xuyunbin@ritt.cn, +8:u06:Zhao, +10:u07:Mobile, +31:u08:zhaoyangyjy@chinamobile.com, +10:u11:yunbin, +10:u02:Yunbin, +8:u05:Yang, +9:u08:Nokia, +27:u01:zhenghaomian@huawei.com, +20:u04:xuyunbin@ritt.cn, +8:u05:Zhao, +10:u06:Mobile, +31:u07:zhaoyangyjy@chinamobile.com, +11:u08:Belotti, +10:u10:yunbin, +10:u01:Yunbin, +8:u04:Yang, +10:u07:Sergio, +27:u00:zhenghaomian@huawei.com, +20:u03:xuyunbin@ritt.cn, +8:u04:Zhao, +10:u05:Mobile, +31:u06:zhaoyangyjy@chinamobile.com, +11:u07:Belotti, +6:u21:Ya, +7:u22:Yan, +8:u23:Yang, +10:u00:Yunbin, +8:u03:Yang, +10:u06:Sergio, +9:u07:Nokia, +13:u08:Gianmarco, +20:u02:xuyunbin@ritt.cn, +8:u03:Zhao, +10:u04:Mobile, +31:u05:zhaoyangyjy@chinamobile.com, +11:u06:Belotti, +28:u08:sergio.belotti@nokia.com, +10:u14:sergio, +8:u02:Yang, +10:u05:Sergio, +9:u06:Nokia, +20:u01:xuyunbin@ritt.cn, +8:u02:Zhao, +10:u03:Mobile, +31:u04:zhaoyangyjy@chinamobile.com, +11:u05:Belotti, +28:u07:sergio.belotti@nokia.com, +10:u13:sergio, +9:u14:nokia, +8:u01:Yang, +10:u04:Sergio, +9:u05:Nokia, +13:u07:Gianmarco, +20:u00:xuyunbin@ritt.cn, +8:u01:Zhao, +10:u02:Mobile, +31:u03:zhaoyangyjy@chinamobile.com, +11:u04:Belotti, +28:u06:sergio.belotti@nokia.com, +10:u12:sergio, +9:u13:nokia, +8:u23:Serg, +8:u00:Yang, +10:u03:Sergio, +9:u04:Nokia, +13:u06:Gianmarco, +8:u00:Zhao, +10:u01:Mobile, +31:u02:zhaoyangyjy@chinamobile.com, +11:u03:Belotti, +28:u05:sergio.belotti@nokia.com, +32:u08:gianmarco.bruno@ericsson.com, +10:u11:sergio, +9:u12:nokia, +13:u14:gianmarco, +7:u22:Nok, +8:u23:Noki, +10:u02:Sergio, +9:u03:Nokia, +13:u05:Gianmarco, +10:u00:Mobile, +31:u01:zhaoyangyjy@chinamobile.com, +11:u02:Belotti, +28:u04:sergio.belotti@nokia.com, +32:u07:gianmarco.bruno@ericsson.com, +10:u10:sergio, +9:u11:nokia, +13:u13:gianmarco, +10:u01:Sergio, +9:u02:Nokia, +13:u04:Gianmarco, +31:u00:zhaoyangyjy@chinamobile.com, +11:u01:Belotti, +28:u03:sergio.belotti@nokia.com, +32:u06:gianmarco.bruno@ericsson.com, +9:u10:nokia, +13:u12:gianmarco, +7:u22:Gia, +8:u23:Gian, +10:u00:Sergio, +9:u01:Nokia, +13:u03:Gianmarco, +11:u00:Belotti, +28:u02:sergio.belotti@nokia.com, +32:u05:gianmarco.bruno@ericsson.com, +13:u11:gianmarco, +9:u00:Nokia, +13:u02:Gianmarco, +28:u01:sergio.belotti@nokia.com, +32:u04:gianmarco.bruno@ericsson.com, +13:u10:gianmarco, +13:u01:Gianmarco, +9:u08:Young, +28:u00:sergio.belotti@nokia.com, +32:u03:gianmarco.bruno@ericsson.com, +13:u00:Gianmarco, +8:u08:Sung, +32:u02:gianmarco.bruno@ericsson.com, +7:u08:Lee, +9:u07:Young, +32:u01:gianmarco.bruno@ericsson.com, +7:u07:Lee, +8:u08:Kyun, +9:u06:Young, +8:u07:Sung, +10:u08:Victor, +32:u00:gianmarco.bruno@ericsson.com, +7:u06:Lee, +8:u07:Kyun, +25:u08:younglee.tx@gmail.com, +9:u14:young, +9:u05:Young, +8:u06:Sung, +7:u05:Lee, +8:u06:Kyun, +25:u07:younglee.tx@gmail.com, +9:u08:Lopez, +9:u13:young, +8:u14:sung, +9:u04:Young, +8:u05:Sung, +10:u07:Victor, +7:u04:Lee, +8:u05:Kyun, +25:u06:younglee.tx@gmail.com, +9:u07:Lopez, +9:u12:young, +8:u13:sung, +7:u22:You, +8:u23:Youn, +9:u03:Young, +8:u04:Sung, +10:u06:Victor, +9:u08:Carlo, +7:u03:Lee, +8:u04:Kyun, +25:u05:younglee.tx@gmail.com, +9:u06:Lopez, +38:u08:victor.lopezalvarez@telefonica.com, +9:u11:young, +8:u12:sung, +10:u14:victor, +8:u23:Sung, +9:u02:Young, +8:u03:Sung, +10:u05:Victor, +7:u02:Lee, +8:u03:Kyun, +25:u04:younglee.tx@gmail.com, +9:u05:Lopez, +38:u07:victor.lopezalvarez@telefonica.com, +13:u08:Perocchio, +9:u10:young, +8:u11:sung, +10:u13:victor, +9:u01:Young, +8:u02:Sung, +10:u04:Victor, +9:u07:Carlo, +7:u01:Lee, +8:u02:Kyun, +25:u03:younglee.tx@gmail.com, +9:u04:Lopez, +38:u06:victor.lopezalvarez@telefonica.com, +13:u07:Perocchio, +8:u10:sung, +10:u12:victor, +7:u22:Vic, +8:u23:Vict, +9:u00:Young, +8:u01:Sung, +10:u03:Victor, +9:u06:Carlo, +10:u08:Ricard, +7:u00:Lee, +8:u01:Kyun, +25:u02:younglee.tx@gmail.com, +9:u03:Lopez, +38:u05:victor.lopezalvarez@telefonica.com, +13:u06:Perocchio, +32:u08:carlo.perocchio@ericsson.com, +10:u11:victor, +9:u14:carlo, +8:u00:Sung, +10:u02:Victor, +9:u05:Carlo, +8:u08:CTTC, +8:u00:Kyun, +25:u01:younglee.tx@gmail.com, +9:u02:Lopez, +38:u04:victor.lopezalvarez@telefonica.com, +13:u05:Perocchio, +32:u07:carlo.perocchio@ericsson.com, +11:u08:Vilalta, +10:u10:victor, +9:u13:carlo, +10:u01:Victor, +9:u04:Carlo, +10:u07:Ricard, +25:u00:younglee.tx@gmail.com, +9:u01:Lopez, +38:u03:victor.lopezalvarez@telefonica.com, +13:u04:Perocchio, +32:u06:carlo.perocchio@ericsson.com, +11:u07:Vilalta, +9:u12:carlo, +10:u00:Victor, +9:u03:Carlo, +10:u06:Ricard, +8:u07:CTTC, +9:u00:Lopez, +38:u02:victor.lopezalvarez@telefonica.com, +13:u03:Perocchio, +32:u05:carlo.perocchio@ericsson.com, +11:u06:Vilalta, +26:u08:ricard.vilalta@cttc.es, +9:u11:carlo, +10:u14:ricard, +9:u02:Carlo, +10:u05:Ricard, +8:u06:CTTC, +14:u08:Hochschule, +38:u01:victor.lopezalvarez@telefonica.com, +13:u02:Perocchio, +32:u04:carlo.perocchio@ericsson.com, +11:u05:Vilalta, +26:u07:ricard.vilalta@cttc.es, +10:u08:Scharf, +9:u10:carlo, +10:u13:ricard, +8:u14:cttc, +9:u01:Carlo, +10:u04:Ricard, +8:u05:CTTC, +38:u00:victor.lopezalvarez@telefonica.com, +13:u01:Perocchio, +32:u03:carlo.perocchio@ericsson.com, +11:u04:Vilalta, +26:u06:ricard.vilalta@cttc.es, +10:u07:Scharf, +13:u08:Esslingen, +10:u12:ricard, +8:u13:cttc, +9:u00:Carlo, +10:u03:Ricard, +8:u04:CTTC, +14:u07:Hochschule, +13:u00:Perocchio, +32:u02:carlo.perocchio@ericsson.com, +11:u03:Vilalta, +26:u05:ricard.vilalta@cttc.es, +10:u06:Scharf, +13:u07:Esslingen, +34:u08:michael.scharf@hs-esslingen.de, +10:u11:ricard, +8:u12:cttc, +6:u21:CT, +7:u22:CTT, +8:u23:CTTC, +10:u02:Ricard, +8:u03:CTTC, +14:u06:Hochschule, +32:u01:carlo.perocchio@ericsson.com, +11:u02:Vilalta, +26:u04:ricard.vilalta@cttc.es, +10:u05:Scharf, +13:u06:Esslingen, +34:u07:michael.scharf@hs-esslingen.de, +10:u10:ricard, +8:u11:cttc, +14:u14:hochschule, +10:u01:Ricard, +8:u02:CTTC, +14:u05:Hochschule, +32:u00:carlo.perocchio@ericsson.com, +11:u01:Vilalta, +26:u03:ricard.vilalta@cttc.es, +10:u04:Scharf, +13:u05:Esslingen, +34:u06:michael.scharf@hs-esslingen.de, +8:u10:cttc, +14:u13:hochschule, +10:u00:Ricard, +8:u01:CTTC, +14:u04:Hochschule, +11:u00:Vilalta, +26:u02:ricard.vilalta@cttc.es, +10:u03:Scharf, +13:u04:Esslingen, +34:u05:michael.scharf@hs-esslingen.de, +14:u12:hochschule, +7:u22:Hoc, +8:u23:Hoch, +8:uI2::.-., +8:u00:CTTC, +14:u03:Hochschule, +26:u01:ricard.vilalta@cttc.es, +10:u02:Scharf, +13:u03:Esslingen, +34:u04:michael.scharf@hs-esslingen.de, +14:u11:hochschule, +8:uI1::.-., +14:u02:Hochschule, +26:u00:ricard.vilalta@cttc.es, +10:u01:Scharf, +13:u02:Esslingen, +34:u03:michael.scharf@hs-esslingen.de, +14:u10:hochschule, +8:uI0::.-., +14:u01:Hochschule, +10:u00:Scharf, +13:u01:Esslingen, +34:u02:michael.scharf@hs-esslingen.de, +14:u00:Hochschule, +13:u00:Esslingen, +34:u01:michael.scharf@hs-esslingen.de, +9:u08:PARC,, +12:u05:Research, +9:u06:Mosko, +8:u08:Inc., +6:u14:m., +9:u07:PARC,, +6:u08:I., +12:u04:Research, +9:u05:Mosko, +8:u07:Inc., +16:u08:Experimental, +6:u13:m., +9:u06:PARC,, +12:u03:Research, +9:u04:Mosko, +8:u06:Inc., +16:u07:Experimental, +9:u08:Solis, +6:u12:m., +9:u14:parc,, +6:u21:M., +6:u22:M., +6:u23:M., +9:u05:PARC,, +6:u07:I., +12:u08:LinkedIn, +12:u02:Research, +9:u03:Mosko, +8:u05:Inc., +16:u06:Experimental, +9:u07:Solis, +6:u11:m., +9:u13:parc,, +9:u04:PARC,, +12:u01:Research, +9:u02:Mosko, +8:u04:Inc., +16:u05:Experimental, +9:u06:Solis, +6:u10:m., +9:u12:parc,, +6:u21:PA, +7:u22:PAR, +8:u23:PARC, +9:u03:PARC,, +12:u07:LinkedIn, +12:u00:Research, +9:u01:Mosko, +8:u03:Inc., +16:u04:Experimental, +9:u05:Solis, +8:u08:Wood, +9:u11:parc,, +9:u02:PARC,, +12:u06:LinkedIn, +9:u00:Mosko, +8:u02:Inc., +16:u03:Experimental, +9:u04:Solis, +8:u07:Wood, +9:u10:parc,, +12:u14:linkedin, +9:u01:PARC,, +12:u05:LinkedIn, +19:u08:Content-Centric, +8:u01:Inc., +16:u02:Experimental, +9:u03:Solis, +8:u06:Wood, +12:u13:linkedin, +9:u00:PARC,, +12:u04:LinkedIn, +8:u00:Inc., +16:u01:Experimental, +9:u02:Solis, +8:u05:Wood, +12:u12:linkedin, +14:u14:university, +12:u03:LinkedIn, +19:u07:Content-Centric, +16:u00:Experimental, +9:u01:Solis, +8:u04:Wood, +12:u11:linkedin, +14:u13:university, +12:u02:LinkedIn, +19:u06:Content-Centric, +16:u08:hierarchical, +9:u00:Solis, +8:u03:Wood, +12:u10:linkedin, +14:u12:university, +19:u14:content-centric, +8:u23:Univ, +12:u01:LinkedIn, +19:u05:Content-Centric, +8:u02:Wood, +14:u11:university, +19:u13:content-centric, +12:u00:LinkedIn, +19:u04:Content-Centric, +16:u07:hierarchical, +8:u01:Wood, +14:u10:university, +19:u12:content-centric, +19:u03:Content-Centric, +16:u06:hierarchical, +8:u00:Wood, +19:u11:content-centric, +16:u14:hierarchical, +19:u02:Content-Centric, +16:u05:hierarchical, +19:u10:content-centric, +16:u13:hierarchical, +19:u01:Content-Centric, +16:u04:hierarchical, +16:u12:hierarchical, +7:u22:hie, +8:u23:hier, +19:u00:Content-Centric, +16:u03:hierarchical, +16:u11:hierarchical, +16:u02:hierarchical, +12:u08:research, +16:u10:hierarchical, +16:u01:hierarchical, +9:u08:ICNRG, +16:u00:hierarchical, +12:u07:research, +16:u08:participants, +12:u06:research, +9:u07:ICNRG, +16:u07:participants, +12:u14:research, +12:u05:research, +9:u06:ICNRG, +16:u06:participants, +12:u13:research, +9:u14:icnrg, +12:u04:research, +9:u05:ICNRG, +16:u05:participants, +12:u12:research, +9:u13:icnrg, +12:u03:research, +9:u04:ICNRG, +16:u04:participants, +12:u11:research, +9:u12:icnrg, +7:u22:ICN, +8:u23:ICNR, +12:u02:research, +9:u03:ICNRG, +15:u08:evaluation., +16:u03:participants, +12:u10:research, +9:u11:icnrg, +12:u01:research, +9:u02:ICNRG, +16:u02:participants, +9:u10:icnrg, +12:u00:research, +9:u01:ICNRG, +15:u07:evaluation., +14:u08:community., +16:u01:participants, +9:u00:ICNRG, +15:u06:evaluation., +16:u00:participants, +15:u14:evaluation., +15:u05:evaluation., +14:u07:community., +11:u08:(IRTF)., +15:u13:evaluation., +15:u04:evaluation., +14:u06:community., +11:u07:(IRTF)., +15:u12:evaluation., +14:u14:community., +7:u22:eva, +8:u23:eval, +15:u03:evaluation., +14:u05:community., +23:u08:Information-Centric, +11:u06:(IRTF)., +15:u11:evaluation., +14:u13:community., +15:u02:evaluation., +14:u04:community., +12:u08:Research, +11:u05:(IRTF)., +15:u10:evaluation., +14:u12:community., +15:u01:evaluation., +14:u03:community., +23:u07:Information-Centric, +11:u04:(IRTF)., +14:u11:community., +8:u23:Forc, +15:u00:evaluation., +14:u02:community., +23:u06:Information-Centric, +12:u07:Research, +11:u03:(IRTF)., +8:u08:IRSG, +14:u10:community., +23:u14:information-centric, +14:u01:community., +23:u05:Information-Centric, +12:u06:Research, +11:u02:(IRTF)., +8:u07:IRSG, +23:u13:information-centric, +14:u00:community., +23:u04:Information-Centric, +11:u01:(IRTF)., +8:u06:IRSG, +23:u12:information-centric, +23:u03:Information-Centric, +44:u08:https://www.rfc-editor.org/info/rfc8609., +11:u00:(IRTF)., +8:u05:IRSG, +23:u11:information-centric, +23:u02:Information-Centric, +10:u08:Mosko,, +8:u04:IRSG, +23:u10:information-centric, +23:u01:Information-Centric, +44:u07:https://www.rfc-editor.org/info/rfc8609., +8:u03:IRSG, +23:u00:Information-Centric, +44:u06:https://www.rfc-editor.org/info/rfc8609., +10:u07:Mosko,, +8:u02:IRSG, +44:u14:https://www.rfc-editor.org/info/rfc8609., +44:u05:https://www.rfc-editor.org/info/rfc8609., +10:u06:Mosko,, +8:u01:IRSG, +44:u13:https://www.rfc-editor.org/info/rfc8609., +10:u14:mosko,, +44:u04:https://www.rfc-editor.org/info/rfc8609., +10:u05:Mosko,, +8:u08:CCNx, +8:u00:IRSG, +8:u08:8609, +44:u12:https://www.rfc-editor.org/info/rfc8609., +10:u13:mosko,, +44:u03:https://www.rfc-editor.org/info/rfc8609., +10:u04:Mosko,, +8:u07:8609, +44:u11:https://www.rfc-editor.org/info/rfc8609., +10:u12:mosko,, +8:u23:Mosk, +44:u02:https://www.rfc-editor.org/info/rfc8609., +10:u03:Mosko,, +8:u07:CCNx, +8:u06:8609, +44:u10:https://www.rfc-editor.org/info/rfc8609., +10:u11:mosko,, +44:u01:https://www.rfc-editor.org/info/rfc8609., +10:u02:Mosko,, +8:u06:CCNx, +8:u05:8609, +10:u10:mosko,, +8:u14:ccnx, +44:u00:https://www.rfc-editor.org/info/rfc8609., +10:u01:Mosko,, +8:u05:CCNx, +8:u04:8609, +8:u13:ccnx, +10:u00:Mosko,, +8:u04:CCNx, +8:u03:8609, +8:u12:ccnx, +7:u22:CCN, +8:u23:CCNx, +8:u03:CCNx, +8:u02:8609, +8:u11:ccnx, +8:u02:CCNx, +8:u01:8609, +8:u10:ccnx, +8:u01:CCNx, +8:u00:8609, +8:u00:CCNx, +21:u08:Type-Length-Value, +21:u07:Type-Length-Value, +21:u06:Type-Length-Value, +11:u08:Overall, +21:u05:Type-Length-Value, +11:u07:Overall, +24:uI2:.--()..............., +21:u04:Type-Length-Value, +11:u06:Overall, +9:u08:Fixed, +24:uI1:.--()..............., +10:u08:3.2.1., +21:u03:Type-Length-Value, +11:u05:Overall, +9:u07:Fixed, +24:uI0:.--()..............., +21:u02:Type-Length-Value, +11:u04:Overall, +9:u06:Fixed, +12:u08:Interest, +10:u07:3.2.1., +12:u08:3.2.1.1., +21:u01:Type-Length-Value, +11:u03:Overall, +9:u05:Fixed, +12:u07:Interest, +10:u06:3.2.1., +21:u00:Type-Length-Value, +11:u02:Overall, +9:u04:Fixed, +12:u06:Interest, +10:u14:3.2.1., +10:u05:3.2.1., +12:u07:3.2.1.1., +10:u08:3.2.2., +11:u01:Overall, +9:u03:Fixed, +12:u05:Interest, +10:u13:3.2.1., +10:u04:3.2.1., +12:u06:3.2.1.1., +11:u00:Overall, +9:u02:Fixed, +12:u04:Interest, +11:u08:Content, +10:u12:3.2.1., +12:u14:3.2.1.1., +10:u03:3.2.1., +12:u05:3.2.1.1., +10:u07:3.2.2., +10:u08:3.2.3., +9:u01:Fixed, +12:u03:Interest, +11:u07:Content, +10:u11:3.2.1., +12:u13:3.2.1.1., +10:u02:3.2.1., +12:u04:3.2.1.1., +10:u06:3.2.2., +12:u08:3.2.3.1., +9:u00:Fixed, +12:u02:Interest, +11:u06:Content, +10:u10:3.2.1., +12:u12:3.2.1.1., +10:u14:3.2.2., +10:u01:3.2.1., +12:u03:3.2.1.1., +10:u05:3.2.2., +10:u07:3.2.3., +12:u08:3.2.3.2., +12:u01:Interest, +11:u05:Content, +12:u11:3.2.1.1., +10:u13:3.2.2., +10:u00:3.2.1., +12:u02:3.2.1.1., +10:u04:3.2.2., +10:u06:3.2.3., +12:u07:3.2.3.1., +12:u08:3.2.3.3., +12:u00:Interest, +11:u04:Content, +12:u10:3.2.1.1., +10:u12:3.2.2., +10:u14:3.2.3., +12:u01:3.2.1.1., +10:u03:3.2.2., +10:u05:3.2.3., +12:u06:3.2.3.1., +12:u07:3.2.3.2., +11:u03:Content, +10:u11:3.2.2., +10:u13:3.2.3., +12:u14:3.2.3.1., +12:u00:3.2.1.1., +10:u02:3.2.2., +10:u04:3.2.3., +12:u05:3.2.3.1., +12:u06:3.2.3.2., +12:u07:3.2.3.3., +11:u02:Content, +10:u10:3.2.2., +10:u12:3.2.3., +12:u13:3.2.3.1., +12:u14:3.2.3.2., +10:u01:3.2.2., +10:u03:3.2.3., +12:u04:3.2.3.1., +12:u05:3.2.3.2., +12:u06:3.2.3.3., +11:u01:Content, +7:u08:Pad, +10:u11:3.2.3., +12:u12:3.2.3.1., +12:u13:3.2.3.2., +12:u14:3.2.3.3., +10:u00:3.2.2., +10:u02:3.2.3., +12:u03:3.2.3.1., +12:u04:3.2.3.2., +12:u05:3.2.3.3., +11:u00:Content, +7:u07:Pad, +25:u08:Organization-Specific, +10:u10:3.2.3., +12:u11:3.2.3.1., +12:u12:3.2.3.2., +12:u13:3.2.3.3., +10:u01:3.2.3., +12:u02:3.2.3.1., +12:u03:3.2.3.2., +12:u04:3.2.3.3., +7:u06:Pad, +25:u07:Organization-Specific, +8:u08:Hash, +12:u10:3.2.3.1., +12:u11:3.2.3.2., +12:u12:3.2.3.3., +10:u00:3.2.3., +12:u01:3.2.3.1., +12:u02:3.2.3.2., +12:u03:3.2.3.3., +7:u05:Pad, +25:u06:Organization-Specific, +8:u07:Hash, +12:u10:3.2.3.2., +12:u11:3.2.3.3., +12:u00:3.2.3.1., +12:u01:3.2.3.2., +12:u02:3.2.3.3., +10:u08:3.4.1., +7:u04:Pad, +25:u05:Organization-Specific, +8:u06:Hash, +12:u10:3.2.3.3., +21:uI2:...-............., +12:u00:3.2.3.2., +12:u01:3.2.3.3., +10:u08:3.4.2., +7:u03:Pad, +25:u04:Organization-Specific, +8:u05:Hash, +21:uI1:...-............., +12:u00:3.2.3.3., +10:u07:3.4.1., +10:u08:3.4.3., +7:u02:Pad, +25:u03:Organization-Specific, +8:u04:Hash, +15:u08:Recommended, +21:uI0:...-............., +10:u06:3.4.1., +10:u07:3.4.2., +7:u01:Pad, +25:u02:Organization-Specific, +8:u03:Hash, +15:u07:Recommended, +10:u14:3.4.1., +25:uI2:..--................., +10:u05:3.4.1., +10:u06:3.4.2., +10:u07:3.4.3., +7:u00:Pad, +25:u01:Organization-Specific, +8:u02:Hash, +15:u06:Recommended, +13:u08:Top-Level, +10:u13:3.4.1., +10:u14:3.4.2., +25:uI1:..--................., +10:u04:3.4.1., +10:u05:3.4.2., +10:u06:3.4.3., +10:u08:3.6.1., +25:u00:Organization-Specific, +8:u01:Hash, +15:u05:Recommended, +13:u07:Top-Level, +10:u12:3.4.1., +10:u13:3.4.2., +10:u14:3.4.3., +25:uI0:..--................., +10:u03:3.4.1., +10:u04:3.4.2., +10:u05:3.4.3., +12:u08:3.6.1.1., +8:u00:Hash, +15:u04:Recommended, +13:u06:Top-Level, +10:u11:3.4.1., +10:u12:3.4.2., +10:u13:3.4.3., +10:u02:3.4.1., +10:u03:3.4.2., +10:u04:3.4.3., +10:u07:3.6.1., +12:u08:3.6.1.2., +15:u03:Recommended, +13:u05:Top-Level, +10:u10:3.4.1., +10:u11:3.4.2., +10:u12:3.4.3., +28:uI2:..-....................., +10:u01:3.4.1., +10:u02:3.4.2., +10:u03:3.4.3., +10:u06:3.6.1., +12:u07:3.6.1.1., +10:u08:3.6.2., +15:u02:Recommended, +13:u04:Top-Level, +10:u10:3.4.2., +10:u11:3.4.3., +10:u14:3.6.1., +28:uI1:..-....................., +10:u00:3.4.1., +10:u01:3.4.2., +10:u02:3.4.3., +10:u05:3.6.1., +12:u06:3.6.1.1., +12:u07:3.6.1.2., +12:u08:3.6.2.1., +15:u01:Recommended, +13:u03:Top-Level, +10:u10:3.4.3., +10:u13:3.6.1., +12:u14:3.6.1.1., +28:uI0:..-....................., +10:u00:3.4.2., +10:u01:3.4.3., +10:u04:3.6.1., +12:u05:3.6.1.1., +12:u06:3.6.1.2., +10:u07:3.6.2., +12:u08:3.6.2.2., +15:u00:Recommended, +13:u02:Top-Level, +10:u12:3.6.1., +12:u13:3.6.1.1., +12:u14:3.6.1.2., +10:u00:3.4.3., +10:u03:3.6.1., +12:u04:3.6.1.1., +12:u05:3.6.1.2., +10:u06:3.6.2., +12:u07:3.6.2.1., +10:u08:3.6.3., +13:u01:Top-Level, +10:u11:3.6.1., +12:u12:3.6.1.1., +12:u13:3.6.1.2., +10:u14:3.6.2., +10:u02:3.6.1., +12:u03:3.6.1.1., +12:u04:3.6.1.2., +10:u05:3.6.2., +12:u06:3.6.2.1., +12:u07:3.6.2.2., +10:u08:3.6.4., +13:u00:Top-Level, +10:u10:3.6.1., +12:u11:3.6.1.1., +12:u12:3.6.1.2., +10:u13:3.6.2., +12:u14:3.6.2.1., +10:u01:3.6.1., +12:u02:3.6.1.1., +12:u03:3.6.1.2., +10:u04:3.6.2., +12:u05:3.6.2.1., +12:u06:3.6.2.2., +10:u07:3.6.3., +12:u08:3.6.4.1., +12:u10:3.6.1.1., +12:u11:3.6.1.2., +10:u12:3.6.2., +12:u13:3.6.2.1., +12:u14:3.6.2.2., +10:u00:3.6.1., +12:u01:3.6.1.1., +12:u02:3.6.1.2., +10:u03:3.6.2., +12:u04:3.6.2.1., +12:u05:3.6.2.2., +10:u06:3.6.3., +10:u07:3.6.4., +12:u08:3.6.4.2., +12:u10:3.6.1.2., +10:u11:3.6.2., +12:u12:3.6.2.1., +12:u13:3.6.2.2., +10:u14:3.6.3., +12:u00:3.6.1.1., +12:u01:3.6.1.2., +10:u02:3.6.2., +12:u03:3.6.2.1., +12:u04:3.6.2.2., +10:u05:3.6.3., +10:u06:3.6.4., +12:u07:3.6.4.1., +10:u10:3.6.2., +12:u11:3.6.2.1., +12:u12:3.6.2.2., +10:u13:3.6.3., +10:u14:3.6.4., +12:u00:3.6.1.2., +10:u01:3.6.2., +12:u02:3.6.2.1., +12:u03:3.6.2.2., +10:u04:3.6.3., +10:u05:3.6.4., +12:u06:3.6.4.1., +12:u07:3.6.4.2., +12:u10:3.6.2.1., +12:u11:3.6.2.2., +10:u12:3.6.3., +10:u13:3.6.4., +12:u14:3.6.4.1., +10:u00:3.6.2., +12:u01:3.6.2.1., +12:u02:3.6.2.2., +10:u03:3.6.3., +10:u04:3.6.4., +12:u05:3.6.4.1., +12:u06:3.6.4.2., +12:u10:3.6.2.2., +10:u11:3.6.3., +10:u12:3.6.4., +12:u13:3.6.4.1., +12:u14:3.6.4.2., +12:u00:3.6.2.1., +12:u01:3.6.2.2., +10:u02:3.6.3., +10:u03:3.6.4., +12:u04:3.6.4.1., +12:u05:3.6.4.2., +10:u10:3.6.3., +10:u11:3.6.4., +12:u12:3.6.4.1., +12:u13:3.6.4.2., +12:u00:3.6.2.2., +10:u01:3.6.3., +10:u02:3.6.4., +12:u03:3.6.4.1., +12:u04:3.6.4.2., +10:u10:3.6.4., +12:u11:3.6.4.1., +12:u12:3.6.4.2., +10:u00:3.6.3., +10:u01:3.6.4., +12:u02:3.6.4.1., +12:u03:3.6.4.2., +12:u10:3.6.4.1., +12:u11:3.6.4.2., +10:u00:3.6.4., +12:u01:3.6.4.1., +12:u02:3.6.4.2., +12:u10:3.6.4.2., +12:u00:3.6.4.1., +12:u01:3.6.4.2., +12:u00:3.6.4.2., +24:uI2:..--................, +8:u08:4.8., +24:uI1:..--................, +24:uI2:..-................., +8:u08:4.9., +24:uI0:..--................, +24:uI1:..-................., +8:u07:4.8., +9:u08:4.10., +24:u08:Validation-Dependent, +24:uI0:..-................., +8:u06:4.8., +8:u07:4.9., +24:u07:Validation-Dependent, +8:u14:4.8., +8:u05:4.8., +8:u06:4.9., +9:u07:4.10., +24:u06:Validation-Dependent, +8:u13:4.8., +8:u14:4.9., +8:u04:4.8., +8:u05:4.9., +9:u06:4.10., +24:u05:Validation-Dependent, +8:u12:4.8., +8:u13:4.9., +9:u14:4.10., +7:u22:4.8, +8:u23:4.8., +8:u03:4.8., +8:u04:4.9., +9:u05:4.10., +24:u04:Validation-Dependent, +8:u11:4.8., +8:u12:4.9., +9:u13:4.10., +7:u22:4.9, +8:u23:4.9., +8:u02:4.8., +8:u03:4.9., +9:u04:4.10., +24:u03:Validation-Dependent, +8:u10:4.8., +8:u11:4.9., +9:u12:4.10., +8:u23:4.10, +8:u01:4.8., +8:u02:4.9., +9:u03:4.10., +24:u02:Validation-Dependent, +8:u10:4.9., +9:u11:4.10., +8:u00:4.8., +8:u01:4.9., +9:u02:4.10., +24:u01:Validation-Dependent, +9:u10:4.10., +8:u00:4.9., +9:u01:4.10., +24:u00:Validation-Dependent, +9:u00:4.10., +14:u08:[RFC8569]., +14:u07:[RFC8569]., +14:u06:[RFC8569]., +14:u14:[rfc8569]., +14:u05:[RFC8569]., +10:u08:signer, +14:u13:[rfc8569]., +14:u04:[RFC8569]., +13:u08:forwarder, +14:u12:[rfc8569]., +14:u03:[RFC8569]., +10:u07:signer, +14:u11:[rfc8569]., +14:u02:[RFC8569]., +10:u06:signer, +13:u07:forwarder, +14:u10:[rfc8569]., +10:u14:signer, +14:u01:[RFC8569]., +10:u05:signer, +13:u06:forwarder, +10:u13:signer, +13:u14:forwarder, +14:u00:[RFC8569]., +10:u04:signer, +13:u05:forwarder, +10:u12:signer, +13:u13:forwarder, +10:u03:signer, +13:u04:forwarder, +10:u11:signer, +13:u12:forwarder, +10:u02:signer, +13:u03:forwarder, +10:u10:signer, +13:u11:forwarder, +10:uI2:-()[]., +10:u01:signer, +13:u02:forwarder, +15:u08:compliance., +13:u10:forwarder, +10:uI1:-()[]., +10:u00:signer, +13:u01:forwarder, +10:uI0:-()[]., +13:u00:forwarder, +15:u07:compliance., +15:u06:compliance., +15:u14:compliance., +15:u05:compliance., +15:u13:compliance., +15:u04:compliance., +15:u12:compliance., +15:u03:compliance., +14:u08:[compress], +15:u11:compliance., +15:u02:compliance., +14:u07:[compress], +15:u10:compliance., +15:u01:compliance., +14:u06:[compress], +8:u08:TLV., +15:u00:compliance., +14:u05:[compress], +8:u07:TLV., +10:uI2:,[][]., +14:u04:[compress], +8:u06:TLV., +10:uI1:,[][]., +14:u03:[compress], +8:u05:TLV., +10:uI0:,[][]., +14:u02:[compress], +8:u04:TLV., +14:u01:[compress], +8:u03:TLV., +14:u00:[compress], +8:u02:TLV., +8:u01:TLV., +8:u00:TLV., +13:u08:top-level, +13:u07:top-level, +13:u06:top-level, +13:u05:top-level, +13:u04:top-level, +14:u08:[RFC8569],, +13:u03:top-level, +14:u07:[RFC8569],, +13:u02:top-level, +14:u06:[RFC8569],, +13:u01:top-level, +14:u05:[RFC8569],, +14:u08:[CCNxURI],, +13:u00:top-level, +14:u04:[RFC8569],, +14:u07:[CCNxURI],, +12:u14:interest, +14:u03:[RFC8569],, +14:u06:[CCNxURI],, +12:u13:interest, +15:u08:containers., +14:u02:[RFC8569],, +14:u05:[CCNxURI],, +12:u12:interest, +14:u01:[RFC8569],, +14:u04:[CCNxURI],, +12:u11:interest, +15:u07:containers., +11:u08:Packets, +14:u00:[RFC8569],, +14:u03:[CCNxURI],, +12:u10:interest, +15:u06:containers., +14:u02:[CCNxURI],, +15:u14:containers., +15:u05:containers., +11:u07:Packets, +14:u01:[CCNxURI],, +10:u08:nested, +15:u13:containers., +15:u04:containers., +11:u06:Packets, +18:u08:possibilities., +14:u00:[CCNxURI],, +10:u07:nested, +15:u12:containers., +15:u03:containers., +11:u05:Packets, +10:u06:nested, +15:u11:containers., +15:u02:containers., +11:u04:Packets, +18:u07:possibilities., +10:u05:nested, +12:u08:vertical, +15:u10:containers., +15:u01:containers., +11:u03:Packets, +18:u06:possibilities., +10:u04:nested, +12:u07:vertical, +9:u08:slash, +18:u14:possibilities., +15:u00:containers., +11:u02:Packets, +18:u05:possibilities., +10:u03:nested, +12:u06:vertical, +9:u07:slash, +18:u13:possibilities., +11:u01:Packets, +18:u04:possibilities., +7:u08:ICN, +10:u02:nested, +12:u05:vertical, +9:u06:slash, +18:u12:possibilities., +11:u00:Packets, +18:u03:possibilities., +10:u01:nested, +12:u04:vertical, +9:u05:slash, +18:u11:possibilities., +8:uI2:"/",, +18:u02:possibilities., +7:u07:ICN, +12:u08:members., +10:u00:nested, +12:u03:vertical, +9:u04:slash, +18:u10:possibilities., +8:uI1:"/",, +18:u01:possibilities., +7:u06:ICN, +12:u02:vertical, +9:u03:slash, +7:u14:icn, +8:uI0:"/",, +18:u00:possibilities., +7:u05:ICN, +12:u07:members., +11:u08:approve, +12:u01:vertical, +9:u02:slash, +7:u13:icn, +7:u04:ICN, +12:u06:members., +12:u00:vertical, +9:u01:slash, +7:u12:icn, +12:u14:members., +7:u23:ICN, +7:u03:ICN, +12:u05:members., +11:u07:approve, +9:u00:slash, +7:u11:icn, +12:u13:members., +11:u14:members, +7:u02:ICN, +12:u04:members., +11:u06:approve, +7:u10:icn, +12:u12:members., +11:u13:members, +11:u14:approve, +8:u23:memb, +7:u01:ICN, +12:u03:members., +11:u05:approve, +12:u11:members., +11:u12:members, +11:u13:approve, +7:u00:ICN, +12:u02:members., +11:u04:approve, +12:u10:members., +11:u11:members, +11:u12:approve, +12:u01:members., +11:u03:approve, +11:u10:members, +11:u11:approve, +12:u00:members., +11:u02:approve, +11:u10:approve, +11:u01:approve, +11:u00:approve, +7:u14:bcp, +7:u13:bcp, +7:u12:bcp, +6:u21:BC, +7:u22:BCP, +7:u23:BCP, +7:u11:bcp, +7:u10:bcp, +13:u08:[CCNxURI], +13:u07:[CCNxURI], +13:u08:Interest:, +13:u06:[CCNxURI], +13:u07:Interest:, +11:uI2:"://".., +13:u05:[CCNxURI], +13:u06:Interest:, +11:uI1:"://".., +8:u08:said, +13:u04:[CCNxURI], +13:u05:Interest:, +11:uI0:"://".., +13:u03:[CCNxURI], +13:u04:Interest:, +8:u07:said, +13:u02:[CCNxURI], +13:u03:Interest:, +8:u06:said, +9:u08:bound, +13:u01:[CCNxURI], +13:u02:Interest:, +8:u14:said, +8:u05:said, +13:u00:[CCNxURI], +13:u01:Interest:, +8:u13:said, +8:u04:said, +9:u07:bound, +13:u00:Interest:, +8:u12:said, +7:u22:sai, +8:u23:said, +8:u03:said, +9:u06:bound, +12:u08:packets., +8:u11:said, +9:u14:bound, +8:u02:said, +9:u05:bound, +8:u10:said, +9:u13:bound, +8:u01:said, +9:u04:bound, +12:u07:packets., +11:u08:lengths, +9:u12:bound, +9:uI2:.--(), +8:u00:said, +9:u03:bound, +12:u06:packets., +11:u07:lengths, +9:u11:bound, +12:u14:packets., +9:uI1:.--(), +9:u02:bound, +12:u05:packets., +11:u06:lengths, +9:u10:bound, +12:u13:packets., +9:uI0:.--(), +9:u01:bound, +12:u04:packets., +11:u05:lengths, +12:u12:packets., +9:u00:bound, +12:u03:packets., +11:u04:lengths, +12:u11:packets., +12:u02:packets., +11:u03:lengths, +12:u10:packets., +12:u01:packets., +11:u02:lengths, +12:u08:envelope, +12:u00:packets., +11:u01:lengths, +12:u07:envelope, +11:u00:lengths, +12:u06:envelope, +12:u05:envelope, +12:u04:envelope, +12:u03:envelope, +73:u08:+--------+------------------+---------------------------------------+, +12:u02:envelope, +12:u01:envelope, +73:u07:+--------+------------------+---------------------------------------+, +12:u00:envelope, +10:u08:Abbrev, +73:u06:+--------+------------------+---------------------------------------+, +10:u07:Abbrev, +73:u14:+--------+------------------+---------------------------------------+, +73:u05:+--------+------------------+---------------------------------------+, +10:u06:Abbrev, +73:u13:+--------+------------------+---------------------------------------+, +73:u04:+--------+------------------+---------------------------------------+, +10:u05:Abbrev, +73:u12:+--------+------------------+---------------------------------------+, +73:u03:+--------+------------------+---------------------------------------+, +10:u04:Abbrev, +73:u11:+--------+------------------+---------------------------------------+, +73:u02:+--------+------------------+---------------------------------------+, +10:u03:Abbrev, +9:u08:T_ORG, +73:u10:+--------+------------------+---------------------------------------+, +73:u01:+--------+------------------+---------------------------------------+, +10:u02:Abbrev, +9:u07:T_ORG, +73:u00:+--------+------------------+---------------------------------------+, +10:u01:Abbrev, +9:u06:T_ORG, +10:u00:Abbrev, +9:u05:T_ORG, +9:u04:T_ORG, +9:u03:T_ORG, +9:u02:T_ORG, +9:u01:T_ORG, +9:u00:T_ORG, +9:u08:T_PAD, +9:u07:T_PAD, +9:u06:T_PAD, +8:u08:Adds, +9:u05:T_PAD, +8:u07:Adds, +9:u04:T_PAD, +8:u06:Adds, +9:u03:T_PAD, +8:u05:Adds, +9:u02:T_PAD, +8:u04:Adds, +11:u08:3.3.1)., +9:u01:T_PAD, +8:u03:Adds, +11:u07:3.3.1)., +9:u00:T_PAD, +8:u02:Adds, +11:u06:3.3.1)., +8:u01:Adds, +11:u05:3.3.1)., +8:u00:Adds, +11:u04:3.3.1)., +11:u03:3.3.1)., +11:u02:3.3.1)., +7:u08:n/a, +11:u01:3.3.1)., +7:u07:n/a, +11:u00:3.3.1)., +7:u06:n/a, +7:u05:n/a, +7:u04:n/a, +7:u03:n/a, +7:u02:n/a, +7:u01:n/a, +7:u00:n/a, +13:u08:contexts., +13:u07:contexts., +13:u06:contexts., +14:u08:alignment., +13:u05:contexts., +13:u04:contexts., +14:u07:alignment., +13:u03:contexts., +9:u14:t_pad, +14:u06:alignment., +13:u02:contexts., +9:u13:t_pad, +14:u14:alignment., +14:u05:alignment., +13:u01:contexts., +9:u12:t_pad, +14:u13:alignment., +6:u21:T_, +7:u22:T_P, +8:u23:T_PA, +14:u04:alignment., +69:u08:+---------------+---------------+---------------+---------------+, +13:u00:contexts., +9:u11:t_pad, +14:u12:alignment., +14:u03:alignment., +9:u10:t_pad, +14:u11:alignment., +14:u02:alignment., +69:u07:+---------------+---------------+---------------+---------------+, +14:u10:alignment., +14:u01:alignment., +69:u06:+---------------+---------------+---------------+---------------+, +69:u14:+---------------+---------------+---------------+---------------+, +14:u00:alignment., +69:u05:+---------------+---------------+---------------+---------------+, +69:u13:+---------------+---------------+---------------+---------------+, +69:u04:+---------------+---------------+---------------+---------------+, +69:u12:+---------------+---------------+---------------+---------------+, +69:u03:+---------------+---------------+---------------+---------------+, +69:u11:+---------------+---------------+---------------+---------------+, +69:u02:+---------------+---------------+---------------+---------------+, +69:u10:+---------------+---------------+---------------+---------------+, +69:u01:+---------------+---------------+---------------+---------------+, +69:u00:+---------------+---------------+---------------+---------------+, +11:u08:headers, +11:u07:headers, +11:u06:headers, +11:u05:headers, +11:u04:headers, +11:u03:headers, +11:u02:headers, +11:u01:headers, +11:u00:headers, +14:u08:PacketType, +16:u08:PacketLength, +14:u07:PacketType, +14:u06:PacketType, +16:u07:PacketLength, +14:u05:PacketType, +16:u06:PacketLength, +14:u04:PacketType, +16:u14:packetlength, +16:u05:PacketLength, +23:u08:PacketType-specific, +14:u03:PacketType, +16:u13:packetlength, +16:u04:PacketLength, +14:u02:PacketType, +16:u12:packetlength, +16:u03:PacketLength, +23:u07:PacketType-specific, +14:u01:PacketType, +16:u08:HeaderLength, +16:u11:packetlength, +16:u02:PacketLength, +23:u06:PacketType-specific, +14:u00:PacketType, +16:u07:HeaderLength, +16:u10:packetlength, +23:u14:packettype-specific, +16:u01:PacketLength, +23:u05:PacketType-specific, +16:u06:HeaderLength, +23:u13:packettype-specific, +16:u00:PacketLength, +23:u04:PacketType-specific, +16:u05:HeaderLength, +23:u12:packettype-specific, +23:u03:PacketType-specific, +16:u04:HeaderLength, +23:u11:packettype-specific, +23:u02:PacketType-specific, +16:u03:HeaderLength, +17:u08:PacketPayload, +23:u10:packettype-specific, +23:u01:PacketType-specific, +16:u02:HeaderLength, +17:u07:PacketPayload, +23:u00:PacketType-specific, +16:u01:HeaderLength, +17:u06:PacketPayload, +16:u00:HeaderLength, +17:u05:PacketPayload, +17:u04:PacketPayload, +13:u08:excluding, +17:u03:PacketPayload, +17:u02:PacketPayload, +13:u07:excluding, +17:u01:PacketPayload, +13:u06:excluding, +17:u00:PacketPayload, +13:u14:excluding, +13:u05:excluding, +13:u13:excluding, +13:u04:excluding, +13:u12:excluding, +13:u03:excluding, +13:u11:excluding, +13:u02:excluding, +13:u10:excluding, +11:u14:headers, +13:u01:excluding, +11:u13:headers, +13:u00:excluding, +11:u12:headers, +11:u11:headers, +11:u10:headers, +14:u08:discarding, +8:uI2:/()/, +14:u07:discarding, +8:uI1:/()/, +14:u06:discarding, +8:uI0:/()/, +11:u08:Object,, +14:u05:discarding, +17:u14:packetpayload, +14:u04:discarding, +17:u13:packetpayload, +11:u07:Object,, +14:u03:discarding, +17:u12:packetpayload, +11:u06:Object,, +14:u02:discarding, +17:u11:packetpayload, +11:u05:Object,, +14:u01:discarding, +17:u10:packetpayload, +11:u04:Object,, +14:u00:discarding, +11:u03:Object,, +11:u02:Object,, +11:u01:Object,, +11:u00:Object,, +11:u08:--which, +18:u08:PacketPayload., +11:u07:--which, +11:u06:--which, +18:u07:PacketPayload., +11:u14:--which, +11:u05:--which, +18:u06:PacketPayload., +11:u13:--which, +18:u14:packetpayload., +11:u04:--which, +18:u05:PacketPayload., +21:u08:ContentObjectHash, +11:u12:--which, +18:u13:packetpayload., +7:u22:--w, +8:u23:--wh, +11:u03:--which, +18:u04:PacketPayload., +21:u07:ContentObjectHash, +8:u08:tail, +11:u11:--which, +18:u12:packetpayload., +11:u02:--which, +18:u03:PacketPayload., +21:u06:ContentObjectHash, +8:u07:tail, +11:u10:--which, +18:u11:packetpayload., +11:u01:--which, +18:u02:PacketPayload., +21:u05:ContentObjectHash, +8:u06:tail, +18:u10:packetpayload., +11:u00:--which, +18:u01:PacketPayload., +21:u04:ContentObjectHash, +8:u05:tail, +12:u08:Version:, +18:u00:PacketPayload., +21:u03:ContentObjectHash, +8:u04:tail, +12:u07:Version:, +17:u08:HeaderLength:, +21:u02:ContentObjectHash, +8:u03:tail, +12:u06:Version:, +17:u07:HeaderLength:, +21:u01:ContentObjectHash, +8:u02:tail, +12:u05:Version:, +17:u06:HeaderLength:, +15:u08:PacketType:, +21:u00:ContentObjectHash, +8:u01:tail, +12:u04:Version:, +17:u05:HeaderLength:, +15:u07:PacketType:, +17:u08:PacketLength:, +8:u00:tail, +12:u03:Version:, +17:u04:HeaderLength:, +15:u06:PacketType:, +17:u07:PacketLength:, +12:u02:Version:, +17:u03:HeaderLength:, +15:u05:PacketType:, +17:u06:PacketLength:, +12:u01:Version:, +17:u02:HeaderLength:, +15:u04:PacketType:, +17:u05:PacketLength:, +12:u00:Version:, +17:u01:HeaderLength:, +15:u03:PacketType:, +17:u04:PacketLength:, +17:u00:HeaderLength:, +15:u02:PacketType:, +17:u03:PacketLength:, +15:u01:PacketType:, +17:u02:PacketLength:, +12:u08:(Content, +15:u00:PacketType:, +17:u01:PacketLength:, +12:u07:(Content, +17:u00:PacketLength:, +12:u06:(Content, +12:u05:(Content, +13:u08:(Version), +12:u04:(Content, +13:u07:(Version), +16:u14:headerlength, +12:u08:itself)., +12:u03:(Content, +13:u06:(Version), +16:u13:headerlength, +12:u02:(Content, +13:u05:(Version), +16:u12:headerlength, +9:uI2:()--., +12:u07:itself)., +12:u01:(Content, +13:u04:(Version), +16:u11:headerlength, +9:uI1:()--., +12:u06:itself)., +12:u00:(Content, +13:u03:(Version), +15:u08:PacketType., +16:u10:headerlength, +12:u14:itself)., +9:uI0:()--., +12:u05:itself)., +13:u02:(Version), +15:u07:PacketType., +12:u13:itself)., +12:u04:itself)., +13:u01:(Version), +15:u06:PacketType., +12:u12:itself)., +12:u03:itself)., +13:u00:(Version), +15:u05:PacketType., +12:u11:itself)., +12:u02:itself)., +15:u04:PacketType., +12:u10:itself)., +12:u01:itself)., +15:u03:PacketType., +12:u00:itself)., +15:u02:PacketType., +15:u01:PacketType., +15:u00:PacketType., +15:u08:PT_INTEREST, +15:u07:PT_INTEREST, +15:u06:PT_INTEREST, +15:u05:PT_INTEREST, +12:u08:HopLimit, +15:u04:PT_INTEREST, +15:u03:PT_INTEREST, +12:u07:HopLimit, +15:u02:PT_INTEREST, +12:u06:HopLimit, +15:u01:PT_INTEREST, +12:u14:hoplimit, +12:u05:HopLimit, +15:u00:PT_INTEREST, +12:u13:hoplimit, +12:u04:HopLimit, +12:u12:hoplimit, +8:u23:HopL, +12:u03:HopLimit, +12:u11:hoplimit, +12:u02:HopLimit, +12:u10:hoplimit, +12:u01:HopLimit, +12:u00:HopLimit, +15:u08:decremented, +10:u08:travel, +15:u07:decremented, +15:u06:decremented, +10:u07:travel, +15:u14:decremented, +15:u05:decremented, +10:u06:travel, +15:u13:decremented, +10:u14:travel, +15:u04:decremented, +10:u05:travel, +15:u12:decremented, +10:u13:travel, +15:u03:decremented, +10:u04:travel, +15:u11:decremented, +10:u12:travel, +15:u02:decremented, +10:u03:travel, +15:u10:decremented, +10:u11:travel, +15:u01:decremented, +10:u02:travel, +10:u10:travel, +15:u00:decremented, +10:u01:travel, +10:u00:travel, +9:uI2:[].;,, +9:uI1:[].;,, +9:uI0:[].;,, +14:u08:PT_CONTENT, +14:u07:PT_CONTENT, +14:u06:PT_CONTENT, +14:u05:PT_CONTENT, +14:u04:PT_CONTENT, +14:u03:PT_CONTENT, +14:u02:PT_CONTENT, +14:u01:PT_CONTENT, +14:u00:PT_CONTENT, +13:u08:PT_RETURN, +13:u07:PT_RETURN, +13:u06:PT_RETURN, +13:u14:pt_return, +13:u05:PT_RETURN, +13:u13:pt_return, +13:u04:PT_RETURN, +13:u12:pt_return, +6:u21:PT, +7:u22:PT_, +8:u23:PT_R, +13:u03:PT_RETURN, +13:u11:pt_return, +13:u02:PT_RETURN, +13:u10:pt_return, +13:u01:PT_RETURN, +13:u00:PT_RETURN, +14:u08:ReturnCode, +14:u07:ReturnCode, +14:u06:ReturnCode, +14:u05:ReturnCode, +14:u04:ReturnCode, +14:u03:ReturnCode, +14:u02:ReturnCode, +13:u08:decrement, +14:u01:ReturnCode, +14:u00:ReturnCode, +13:u07:decrement, +13:u06:decrement, +13:u14:decrement, +13:u05:decrement, +13:u13:decrement, +13:u04:decrement, +13:u12:decrement, +13:u03:decrement, +13:u11:decrement, +13:u02:decrement, +13:u10:decrement, +13:u01:decrement, +13:u00:decrement, +73:u08:+-------------------------------------+-----------------------------+, +73:u07:+-------------------------------------+-----------------------------+, +73:u06:+-------------------------------------+-----------------------------+, +73:u14:+-------------------------------------+-----------------------------+, +73:u05:+-------------------------------------+-----------------------------+, +73:u13:+-------------------------------------+-----------------------------+, +73:u04:+-------------------------------------+-----------------------------+, +73:u12:+-------------------------------------+-----------------------------+, +73:u03:+-------------------------------------+-----------------------------+, +73:u11:+-------------------------------------+-----------------------------+, +73:u02:+-------------------------------------+-----------------------------+, +21:u08:T_RETURN_NO_ROUTE, +73:u10:+-------------------------------------+-----------------------------+, +73:u01:+-------------------------------------+-----------------------------+, +73:u00:+-------------------------------------+-----------------------------+, +21:u07:T_RETURN_NO_ROUTE, +21:u06:T_RETURN_NO_ROUTE, +21:u14:t_return_no_route, +21:u05:T_RETURN_NO_ROUTE, +21:u13:t_return_no_route, +21:u04:T_RETURN_NO_ROUTE, +21:u12:t_return_no_route, +7:u22:T_R, +8:u23:T_RE, +21:u03:T_RETURN_NO_ROUTE, +21:u11:t_return_no_route, +21:u02:T_RETURN_NO_ROUTE, +27:u08:T_RETURN_LIMIT_EXCEEDED, +21:u10:t_return_no_route, +21:u01:T_RETURN_NO_ROUTE, +21:u00:T_RETURN_NO_ROUTE, +27:u07:T_RETURN_LIMIT_EXCEEDED, +7:u08:Hop, +27:u06:T_RETURN_LIMIT_EXCEEDED, +7:u07:Hop, +27:u14:t_return_limit_exceeded, +27:u05:T_RETURN_LIMIT_EXCEEDED, +7:u06:Hop, +27:u13:t_return_limit_exceeded, +27:u04:T_RETURN_LIMIT_EXCEEDED, +7:u05:Hop, +27:u12:t_return_limit_exceeded, +27:u03:T_RETURN_LIMIT_EXCEEDED, +7:u04:Hop, +27:u11:t_return_limit_exceeded, +27:u02:T_RETURN_LIMIT_EXCEEDED, +25:u08:T_RETURN_NO_RESOURCES, +7:u03:Hop, +27:u10:t_return_limit_exceeded, +27:u01:T_RETURN_LIMIT_EXCEEDED, +7:u02:Hop, +27:u00:T_RETURN_LIMIT_EXCEEDED, +25:u07:T_RETURN_NO_RESOURCES, +7:u01:Hop, +25:u06:T_RETURN_NO_RESOURCES, +7:u00:Hop, +25:u14:t_return_no_resources, +25:u05:T_RETURN_NO_RESOURCES, +25:u13:t_return_no_resources, +25:u04:T_RETURN_NO_RESOURCES, +25:u12:t_return_no_resources, +25:u03:T_RETURN_NO_RESOURCES, +25:u11:t_return_no_resources, +25:u02:T_RETURN_NO_RESOURCES, +23:u08:T_RETURN_PATH_ERROR, +25:u10:t_return_no_resources, +25:u01:T_RETURN_NO_RESOURCES, +25:u00:T_RETURN_NO_RESOURCES, +23:u07:T_RETURN_PATH_ERROR, +23:u06:T_RETURN_PATH_ERROR, +23:u14:t_return_path_error, +23:u05:T_RETURN_PATH_ERROR, +23:u13:t_return_path_error, +23:u04:T_RETURN_PATH_ERROR, +23:u12:t_return_path_error, +23:u03:T_RETURN_PATH_ERROR, +23:u11:t_return_path_error, +23:u02:T_RETURN_PATH_ERROR, +23:u08:T_RETURN_PROHIBITED, +23:u10:t_return_path_error, +23:u01:T_RETURN_PATH_ERROR, +23:u00:T_RETURN_PATH_ERROR, +23:u07:T_RETURN_PROHIBITED, +23:u06:T_RETURN_PROHIBITED, +23:u14:t_return_prohibited, +23:u05:T_RETURN_PROHIBITED, +23:u13:t_return_prohibited, +23:u04:T_RETURN_PROHIBITED, +23:u12:t_return_prohibited, +23:u03:T_RETURN_PROHIBITED, +23:u11:t_return_prohibited, +23:u02:T_RETURN_PROHIBITED, +22:u08:T_RETURN_CONGESTED, +23:u10:t_return_prohibited, +23:u01:T_RETURN_PROHIBITED, +23:u00:T_RETURN_PROHIBITED, +22:u07:T_RETURN_CONGESTED, +13:u08:Congested, +22:u06:T_RETURN_CONGESTED, +13:u07:Congested, +22:u14:t_return_congested, +22:u05:T_RETURN_CONGESTED, +13:u06:Congested, +22:u13:t_return_congested, +22:u04:T_RETURN_CONGESTED, +13:u05:Congested, +22:u12:t_return_congested, +22:u03:T_RETURN_CONGESTED, +13:u04:Congested, +22:u11:t_return_congested, +22:u02:T_RETURN_CONGESTED, +26:u08:T_RETURN_MTU_TOO_LARGE, +13:u03:Congested, +22:u10:t_return_congested, +22:u01:T_RETURN_CONGESTED, +13:u02:Congested, +22:u00:T_RETURN_CONGESTED, +26:u07:T_RETURN_MTU_TOO_LARGE, +13:u01:Congested, +7:u08:MTU, +26:u06:T_RETURN_MTU_TOO_LARGE, +13:u00:Congested, +7:u07:MTU, +26:u14:t_return_mtu_too_large, +26:u05:T_RETURN_MTU_TOO_LARGE, +7:u06:MTU, +26:u13:t_return_mtu_too_large, +26:u04:T_RETURN_MTU_TOO_LARGE, +7:u05:MTU, +26:u12:t_return_mtu_too_large, +26:u03:T_RETURN_MTU_TOO_LARGE, +7:u04:MTU, +26:u11:t_return_mtu_too_large, +26:u02:T_RETURN_MTU_TOO_LARGE, +7:u03:MTU, +39:u08:T_RETURN_UNSUPPORTED_HASH_RESTRICTI, +26:u10:t_return_mtu_too_large, +26:u01:T_RETURN_MTU_TOO_LARGE, +6:u08:ON, +7:u02:MTU, +39:u07:T_RETURN_UNSUPPORTED_HASH_RESTRICTI, +26:u00:T_RETURN_MTU_TOO_LARGE, +7:u01:MTU, +39:u06:T_RETURN_UNSUPPORTED_HASH_RESTRICTI, +6:u07:ON, +7:u00:MTU, +39:u05:T_RETURN_UNSUPPORTED_HASH_RESTRICTI, +17:u08:shRestriction, +6:u06:ON, +39:u04:T_RETURN_UNSUPPORTED_HASH_RESTRICTI, +17:u07:shRestriction, +6:u05:ON, +39:u03:T_RETURN_UNSUPPORTED_HASH_RESTRICTI, +17:u06:shRestriction, +6:u04:ON, +39:u02:T_RETURN_UNSUPPORTED_HASH_RESTRICTI, +17:u05:shRestriction, +6:u22:ON, +6:u23:ON, +6:u03:ON, +39:u01:T_RETURN_UNSUPPORTED_HASH_RESTRICTI, +17:u04:shRestriction, +6:u02:ON, +31:u08:T_RETURN_MALFORMED_INTEREST, +39:u00:T_RETURN_UNSUPPORTED_HASH_RESTRICTI, +17:u03:shRestriction, +6:u01:ON, +17:u02:shRestriction, +6:u00:ON, +31:u07:T_RETURN_MALFORMED_INTEREST, +17:u01:shRestriction, +13:u08:Malformed, +31:u06:T_RETURN_MALFORMED_INTEREST, +17:u00:shRestriction, +13:u07:Malformed, +31:u14:t_return_malformed_interest, +31:u05:T_RETURN_MALFORMED_INTEREST, +13:u06:Malformed, +31:u13:t_return_malformed_interest, +31:u04:T_RETURN_MALFORMED_INTEREST, +13:u05:Malformed, +31:u12:t_return_malformed_interest, +31:u03:T_RETURN_MALFORMED_INTEREST, +13:u04:Malformed, +31:u11:t_return_malformed_interest, +31:u02:T_RETURN_MALFORMED_INTEREST, +13:u03:Malformed, +31:u10:t_return_malformed_interest, +31:u01:T_RETURN_MALFORMED_INTEREST, +13:u02:Malformed, +31:u00:T_RETURN_MALFORMED_INTEREST, +13:u01:Malformed, +13:u00:Malformed, +7:u08:pad, +10:u08:3-byte, +7:u07:pad, +10:u08:4-byte, +11:u08:7)-byte, +7:u06:pad, +10:u07:4-byte, +11:u08:Length., +10:u07:3-byte, +7:u05:pad, +10:u06:4-byte, +11:u07:Length., +10:u06:3-byte, +11:u07:7)-byte, +7:u04:pad, +10:u05:4-byte, +11:u06:Length., +10:u14:3-byte, +11:uI2:-,,-,-,, +10:u05:3-byte, +11:u06:7)-byte, +23:u08:ValidationAlgorithm, +7:u03:pad, +10:u04:4-byte, +11:u05:Length., +10:u13:3-byte, +11:u14:7)-byte, +11:uI1:-,,-,-,, +14:uI2:-.-(,,,,,,, +10:u04:3-byte, +11:u05:7)-byte, +7:u02:pad, +10:u03:4-byte, +11:u04:Length., +10:u12:3-byte, +11:u13:7)-byte, +6:u21:3-, +7:u22:3-b, +8:u23:3-by, +11:uI0:-,,-,-,, +14:uI1:-.-(,,,,,,, +10:u03:3-byte, +11:u04:7)-byte, +23:u07:ValidationAlgorithm, +7:u01:pad, +10:u02:4-byte, +11:u03:Length., +10:u11:3-byte, +11:u12:7)-byte, +12:u14:inserted, +7:u22:7)-, +8:u23:7)-b, +14:uI0:-.-(,,,,,,, +10:u02:3-byte, +11:u03:7)-byte, +23:u06:ValidationAlgorithm, +7:u00:pad, +10:u01:4-byte, +11:u02:Length., +10:u10:3-byte, +11:u11:7)-byte, +12:u13:inserted, +23:u14:validationalgorithm, +10:u01:3-byte, +11:u02:7)-byte, +23:u05:ValidationAlgorithm, +10:u00:4-byte, +11:u01:Length., +11:u10:7)-byte, +12:u12:inserted, +23:u13:validationalgorithm, +10:u00:3-byte, +11:u01:7)-byte, +23:u04:ValidationAlgorithm, +11:u00:Length., +12:u11:inserted, +23:u12:validationalgorithm, +11:u00:7)-byte, +23:u03:ValidationAlgorithm, +12:u10:inserted, +23:u11:validationalgorithm, +23:u02:ValidationAlgorithm, +23:u10:validationalgorithm, +23:u01:ValidationAlgorithm, +23:u00:ValidationAlgorithm, +25:u08:Organization-specific, +25:u07:Organization-specific, +25:u06:Organization-specific, +16:u08:organization, +25:u14:organization-specific, +25:u05:Organization-specific, +25:u13:organization-specific, +9:u14:t_org, +25:u04:Organization-specific, +16:u07:organization, +25:u12:organization-specific, +9:u13:t_org, +7:u22:Org, +8:u23:Orga, +25:u03:Organization-specific, +16:u06:organization, +25:u11:organization-specific, +9:u12:t_org, +16:u14:organization, +7:u22:T_O, +8:u23:T_OR, +25:u02:Organization-specific, +16:u05:organization, +25:u10:organization-specific, +9:u11:t_org, +16:u13:organization, +25:u01:Organization-specific, +16:u04:organization, +9:u10:t_org, +16:u12:organization, +7:u22:org, +8:u23:orga, +10:uI2:""[-],, +25:u00:Organization-specific, +16:u03:organization, +16:u11:organization, +10:uI1:""[-],, +16:u02:organization, +16:u10:organization, +10:uI0:""[-],, +16:u01:organization, +16:u00:organization, +12:u08:(3+value, +12:u07:(3+value, +12:u06:(3+value, +10:u08:PEN[0], +12:u05:(3+value, +12:u04:(3+value, +10:u07:PEN[0], +10:u08:PEN[1], +12:u03:(3+value, +10:u06:PEN[0], +12:u02:(3+value, +10:u14:pen[0], +10:u05:PEN[0], +10:u07:PEN[1], +10:u08:PEN[2], +12:u01:(3+value, +10:u13:pen[0], +10:u04:PEN[0], +10:u06:PEN[1], +12:u00:(3+value, +10:u12:pen[0], +10:u14:pen[1], +6:u21:PE, +7:u22:PEN, +8:u23:PEN[, +10:u03:PEN[0], +10:u05:PEN[1], +10:u07:PEN[2], +10:u11:pen[0], +10:u13:pen[1], +10:u02:PEN[0], +10:u04:PEN[1], +10:u06:PEN[2], +53:u08:+---------------+---------------+---------------+, +10:u10:pen[0], +10:u12:pen[1], +10:u14:pen[2], +10:u01:PEN[0], +10:u03:PEN[1], +10:u05:PEN[2], +10:u11:pen[1], +10:u13:pen[2], +10:u00:PEN[0], +10:u02:PEN[1], +10:u04:PEN[2], +53:u07:+---------------+---------------+---------------+, +10:u10:pen[1], +10:u12:pen[2], +10:u01:PEN[1], +10:u03:PEN[2], +53:u06:+---------------+---------------+---------------+, +10:u08:Vendor, +10:u11:pen[2], +53:u14:+---------------+---------------+---------------+, +10:u00:PEN[1], +10:u02:PEN[2], +53:u05:+---------------+---------------+---------------+, +12:u08:Specific, +10:u10:pen[2], +53:u13:+---------------+---------------+---------------+, +49:uI2:---------------------------------------------, +6:uI2:45, +10:u01:PEN[2], +53:u04:+---------------+---------------+---------------+, +10:u07:Vendor, +12:u07:Specific, +53:u12:+---------------+---------------+---------------+, +49:uI1:---------------------------------------------, +6:uI1:45, +10:u00:PEN[2], +53:u03:+---------------+---------------+---------------+, +10:u06:Vendor, +12:u06:Specific, +53:u11:+---------------+---------------+---------------+, +10:u14:vendor, +49:uI0:---------------------------------------------, +6:uI0:45, +53:u02:+---------------+---------------+---------------+, +10:u05:Vendor, +12:u05:Specific, +53:u10:+---------------+---------------+---------------+, +10:u13:vendor, +53:u01:+---------------+---------------+---------------+, +10:u04:Vendor, +12:u04:Specific, +10:u12:vendor, +7:u22:Ven, +8:u23:Vend, +53:u00:+---------------+---------------+---------------+, +10:u03:Vendor, +12:u03:Specific, +10:u11:vendor, +10:u02:Vendor, +12:u02:Specific, +10:u10:vendor, +10:u01:Vendor, +12:u01:Specific, +10:u00:Vendor, +12:u00:Specific, +10:u08:LENGTH, +10:u07:LENGTH, +10:u06:LENGTH, +10:u05:LENGTH, +15:u08:truncations, +10:u04:LENGTH, +15:u07:truncations, +10:u03:LENGTH, +15:u06:truncations, +10:u02:LENGTH, +15:u05:truncations, +10:u01:LENGTH, +15:u04:truncations, +10:u00:LENGTH, +15:u03:truncations, +15:u02:truncations, +15:u01:truncations, +15:u00:truncations, +19:u08:ContentObject's, +9:u08:KeyId, +19:u07:ContentObject's, +9:u07:KeyId, +19:u06:ContentObject's, +9:u06:KeyId, +19:u14:contentobject's, +19:u05:ContentObject's, +9:u05:KeyId, +19:u13:contentobject's, +19:u04:ContentObject's, +9:u04:KeyId, +19:u12:contentobject's, +19:u03:ContentObject's, +9:u03:KeyId, +19:u11:contentobject's, +19:u02:ContentObject's, +9:u02:KeyId, +19:u10:contentobject's, +19:u01:ContentObject's, +9:u01:KeyId, +19:u00:ContentObject's, +42:u08:+-----------+------------------------+, +9:u00:KeyId, +42:u07:+-----------+------------------------+, +42:u06:+-----------+------------------------+, +11:u08:Lengths, +42:u14:+-----------+------------------------+, +42:u05:+-----------+------------------------+, +12:u08:(octets), +42:u13:+-----------+------------------------+, +42:u04:+-----------+------------------------+, +11:u07:Lengths, +12:u07:(octets), +42:u12:+-----------+------------------------+, +10:u14:abbrev, +42:u03:+-----------+------------------------+, +11:u06:Lengths, +12:u06:(octets), +42:u11:+-----------+------------------------+, +10:u13:abbrev, +11:u14:lengths, +42:u02:+-----------+------------------------+, +11:u05:Lengths, +12:u05:(octets), +13:u08:T_SHA-256, +42:u10:+-----------+------------------------+, +10:u12:abbrev, +11:u13:lengths, +7:u22:Abb, +8:u23:Abbr, +42:u01:+-----------+------------------------+, +11:u04:Lengths, +12:u04:(octets), +13:u07:T_SHA-256, +10:u11:abbrev, +11:u12:lengths, +42:u00:+-----------+------------------------+, +11:u03:Lengths, +12:u03:(octets), +13:u06:T_SHA-256, +10:u10:abbrev, +11:u11:lengths, +11:u02:Lengths, +12:u02:(octets), +13:u05:T_SHA-256, +11:u10:lengths, +6:u14:32, +11:u01:Lengths, +12:u01:(octets), +13:u04:T_SHA-256, +6:u13:32, +11:u00:Lengths, +12:u00:(octets), +13:u03:T_SHA-256, +6:u12:32, +6:u22:32, +6:u23:32, +7:u08:64,, +13:u02:T_SHA-256, +13:u08:T_SHA-512, +6:u11:32, +13:u01:T_SHA-256, +13:u07:T_SHA-512, +6:u10:32, +7:u07:64,, +13:u00:T_SHA-256, +13:u06:T_SHA-512, +7:u06:64,, +13:u05:T_SHA-512, +7:u14:64,, +7:u05:64,, +13:u04:T_SHA-512, +7:u13:64,, +7:u04:64,, +13:u03:T_SHA-512, +7:u12:64,, +6:u21:64, +7:u22:64,, +7:u23:64,, +7:u03:64,, +13:u02:T_SHA-512, +7:u11:64,, +7:u02:64,, +13:u01:T_SHA-512, +7:u10:64,, +7:u01:64,, +13:u00:T_SHA-512, +7:u00:64,, +6:u21:n/, +7:u22:n/a, +7:u23:n/a, +9:u08:T_FOO, +9:u07:T_FOO, +9:u06:T_FOO, +9:u14:t_foo, +9:u05:T_FOO, +9:u13:t_foo, +9:u04:T_FOO, +9:u12:t_foo, +6:u14:36, +7:u22:T_F, +8:u23:T_FO, +9:u03:T_FOO, +12:u08:T_SHA512, +9:u11:t_foo, +6:u13:36, +9:u02:T_FOO, +9:u10:t_foo, +6:u12:36, +6:u21:36, +6:u22:36, +6:u23:36, +9:u01:T_FOO, +12:u07:T_SHA512, +6:u11:36, +9:u00:T_FOO, +12:u06:T_SHA512, +6:u10:36, +12:u14:t_sha512, +12:u05:T_SHA512, +12:u13:t_sha512, +12:u04:T_SHA512, +12:u12:t_sha512, +7:u22:T_S, +8:u23:T_SH, +12:u03:T_SHA512, +11:u08:32-byte, +12:u11:t_sha512, +12:u02:T_SHA512, +12:u10:t_sha512, +12:u01:T_SHA512, +11:u07:32-byte, +12:u00:T_SHA512, +11:u06:32-byte, +11:u14:32-byte, +11:u05:32-byte, +11:u13:32-byte, +11:u04:32-byte, +11:u12:32-byte, +11:u03:32-byte, +11:u11:32-byte, +11:u02:32-byte, +11:u10:32-byte, +11:u01:32-byte, +11:u08:KeyLink, +11:u00:32-byte, +12:uI2::,[],[]., +11:u07:KeyLink, +12:uI1::,[],[]., +11:u06:KeyLink, +11:u14:keylink, +12:uI0::,[],[]., +11:u05:KeyLink, +11:u13:keylink, +11:u04:KeyLink, +11:u12:keylink, +7:u22:Key, +8:u23:KeyL, +11:u03:KeyLink, +11:u11:keylink, +11:u02:KeyLink, +11:u10:keylink, +11:u01:KeyLink, +11:u00:KeyLink, +13:u08:document:, +73:u08:+-------------+--------------------+--------------------------------+, +13:u07:document:, +13:u06:document:, +73:u07:+-------------+--------------------+--------------------------------+, +13:u14:document:, +13:u05:document:, +73:u06:+-------------+--------------------+--------------------------------+, +13:u13:document:, +73:u14:+-------------+--------------------+--------------------------------+, +13:u04:document:, +73:u05:+-------------+--------------------+--------------------------------+, +13:u12:document:, +73:u13:+-------------+--------------------+--------------------------------+, +13:u03:document:, +73:u04:+-------------+--------------------+--------------------------------+, +13:u11:document:, +73:u12:+-------------+--------------------+--------------------------------+, +13:u02:document:, +73:u03:+-------------+--------------------+--------------------------------+, +13:u10:document:, +73:u11:+-------------+--------------------+--------------------------------+, +13:u01:document:, +73:u02:+-------------+--------------------+--------------------------------+, +73:u10:+-------------+--------------------+--------------------------------+, +13:u00:document:, +73:u01:+-------------+--------------------+--------------------------------+, +73:u00:+-------------+--------------------+--------------------------------+, +13:u08:T_INTLIFE, +13:u07:T_INTLIFE, +13:u06:T_INTLIFE, +13:u05:T_INTLIFE, +13:u04:T_INTLIFE, +13:u03:T_INTLIFE, +13:u02:T_INTLIFE, +13:u01:T_INTLIFE, +13:u00:T_INTLIFE, +15:u08:T_CACHETIME, +15:u07:T_CACHETIME, +15:u06:T_CACHETIME, +15:u05:T_CACHETIME, +15:u04:T_CACHETIME, +15:u03:T_CACHETIME, +15:u02:T_CACHETIME, +10:u08:3.4.2), +15:u01:T_CACHETIME, +15:u00:T_CACHETIME, +10:u07:3.4.2), +10:u06:3.4.2), +10:u14:3.4.2), +10:u05:3.4.2), +10:u13:3.4.2), +10:u04:3.4.2), +10:u12:3.4.2), +10:u03:3.4.2), +10:u11:3.4.2), +10:u02:3.4.2), +10:u10:3.4.2), +10:u01:3.4.2), +13:u08:T_MSGHASH, +10:u00:3.4.2), +13:u07:T_MSGHASH, +13:u06:T_MSGHASH, +13:u05:T_MSGHASH, +13:u04:T_MSGHASH, +13:u03:T_MSGHASH, +11:u08:3.3.3)., +13:u02:T_MSGHASH, +11:u07:3.3.3)., +13:u01:T_MSGHASH, +11:u06:3.3.3)., +13:u00:T_MSGHASH, +11:u05:3.3.3)., +18:u08:specifications, +11:u04:3.3.3)., +11:u03:3.3.3)., +18:u07:specifications, +11:u02:3.3.3)., +18:u06:specifications, +11:u01:3.3.3)., +18:u14:specifications, +18:u05:specifications, +11:u00:3.3.3)., +18:u13:specifications, +18:u04:specifications, +18:u12:specifications, +18:u03:specifications, +10:u08:elicit, +18:u11:specifications, +18:u02:specifications, +18:u10:specifications, +18:u01:specifications, +10:u07:elicit, +18:u00:specifications, +10:u06:elicit, +10:u14:elicit, +10:u05:elicit, +10:u13:elicit, +10:u04:elicit, +10:u12:elicit, +8:u23:elic, +10:u03:elicit, +10:u11:elicit, +10:u02:elicit, +10:u10:elicit, +10:u01:elicit, +10:u00:elicit, +13:u14:t_intlife, +13:u13:t_intlife, +13:u12:t_intlife, +7:u22:T_I, +8:u23:T_IN, +13:u11:t_intlife, +13:u10:t_intlife, +12:u08:Lifetime, +11:u08:(Length, +12:u07:Lifetime, +11:u07:(Length, +12:u06:Lifetime, +11:u06:(Length, +12:u05:Lifetime, +11:u05:(Length, +12:u04:Lifetime, +11:u04:(Length, +7:u22:Lif, +8:u23:Life, +12:u03:Lifetime, +11:u03:(Length, +12:u02:Lifetime, +11:u02:(Length, +12:u01:Lifetime, +11:u01:(Length, +12:u00:Lifetime, +11:u00:(Length, +12:u08:contrast, +12:u07:contrast, +12:u06:contrast, +12:u05:contrast, +10:uI2:(....), +12:u04:contrast, +11:u08:needing, +10:uI1:(....), +12:u03:contrast, +10:uI0:(....), +12:u02:contrast, +11:u07:needing, +12:u01:contrast, +11:u06:needing, +11:u14:needing, +12:u00:contrast, +11:u05:needing, +11:u13:needing, +12:u14:attacker, +11:u04:needing, +9:u08:UTC)., +11:u08:expires, +11:u12:needing, +12:u13:attacker, +11:u03:needing, +11:u07:expires, +11:u11:needing, +12:u12:attacker, +11:u02:needing, +9:u07:UTC)., +11:u06:expires, +11:u10:needing, +12:u11:attacker, +11:u01:needing, +9:u06:UTC)., +11:u05:expires, +12:u10:attacker, +9:u14:utc)., +11:u00:needing, +9:u05:UTC)., +11:u04:expires, +9:u13:utc)., +8:uI2:).-., +9:u04:UTC)., +11:u03:expires, +9:u12:utc)., +7:u22:UTC, +8:u23:UTC), +8:uI1:).-., +9:u03:UTC)., +11:u02:expires, +9:u11:utc)., +8:uI0:).-., +9:u02:UTC)., +11:u01:expires, +9:u10:utc)., +9:u01:UTC)., +11:u00:expires, +9:u00:UTC)., +15:u14:t_cachetime, +15:u13:t_cachetime, +15:u12:t_cachetime, +7:u22:T_C, +8:u23:T_CA, +15:u11:t_cachetime, +15:u10:t_cachetime, +8:u08:hop., +8:u07:hop., +8:u06:hop., +8:u05:hop., +32:u08:ContentObjectHashRestriction, +8:u04:hop., +32:u07:ContentObjectHashRestriction, +8:u03:hop., +32:u06:ContentObjectHashRestriction, +8:u02:hop., +32:u05:ContentObjectHashRestriction, +8:u01:hop., +32:u04:ContentObjectHashRestriction, +8:u00:hop., +32:u03:ContentObjectHashRestriction, +32:u02:ContentObjectHashRestriction, +14:u08:autonomous, +32:u01:ContentObjectHashRestriction, +32:u00:ContentObjectHashRestriction, +14:u07:autonomous, +14:u06:autonomous, +14:u14:autonomous, +14:u05:autonomous, +14:u13:autonomous, +14:u04:autonomous, +14:u12:autonomous, +14:u03:autonomous, +14:u11:autonomous, +14:u02:autonomous, +14:u10:autonomous, +14:u01:autonomous, +14:u00:autonomous, +11:u08:(length, +13:u14:t_msghash, +11:u07:(length, +13:u13:t_msghash, +11:u06:(length, +13:u12:t_msghash, +11:u14:(length, +7:u22:T_M, +8:u23:T_MS, +11:u05:(length, +13:u11:t_msghash, +11:u13:(length, +11:u04:(length, +13:u10:t_msghash, +11:u12:(length, +7:u22:(le, +8:u23:(len, +11:u03:(length, +11:u11:(length, +11:u02:(length, +11:u10:(length, +11:u01:(length, +11:u00:(length, +73:u08:+----------------------+------------+-------------------------------+, +73:u07:+----------------------+------------+-------------------------------+, +73:u06:+----------------------+------------+-------------------------------+, +73:u14:+----------------------+------------+-------------------------------+, +73:u05:+----------------------+------------+-------------------------------+, +73:u13:+----------------------+------------+-------------------------------+, +73:u04:+----------------------+------------+-------------------------------+, +73:u12:+----------------------+------------+-------------------------------+, +73:u03:+----------------------+------------+-------------------------------+, +73:u11:+----------------------+------------+-------------------------------+, +73:u02:+----------------------+------------+-------------------------------+, +73:u10:+----------------------+------------+-------------------------------+, +73:u01:+----------------------+------------+-------------------------------+, +73:u00:+----------------------+------------+-------------------------------+, +14:u08:T_INTEREST, +14:u07:T_INTEREST, +14:u06:T_INTEREST, +14:u14:t_interest, +14:u05:T_INTEREST, +14:u13:t_interest, +14:u04:T_INTEREST, +14:u12:t_interest, +14:u03:T_INTEREST, +14:u11:t_interest, +14:u02:T_INTEREST, +14:u10:t_interest, +14:u01:T_INTEREST, +8:u08:3.6), +14:u00:T_INTEREST, +8:u07:3.6), +8:u06:3.6), +8:u14:3.6), +8:u05:3.6), +8:u13:3.6), +8:u04:3.6), +8:u12:3.6), +8:u23:3.6), +8:u03:3.6), +8:u11:3.6), +8:u02:3.6), +8:u10:3.6), +8:u01:3.6), +12:u08:T_OBJECT, +8:u00:3.6), +12:u07:T_OBJECT, +12:u06:T_OBJECT, +12:u14:t_object, +12:u05:T_OBJECT, +12:u13:t_object, +12:u04:T_OBJECT, +12:u12:t_object, +8:u23:T_OB, +12:u03:T_OBJECT, +12:u11:t_object, +12:u02:T_OBJECT, +12:u10:t_object, +12:u01:T_OBJECT, +12:u00:T_OBJECT, +20:u08:T_VALIDATION_ALG, +20:u07:T_VALIDATION_ALG, +20:u06:T_VALIDATION_ALG, +20:u14:t_validation_alg, +20:u05:T_VALIDATION_ALG, +20:u13:t_validation_alg, +20:u04:T_VALIDATION_ALG, +20:u12:t_validation_alg, +7:u22:T_V, +8:u23:T_VA, +20:u03:T_VALIDATION_ALG, +20:u11:t_validation_alg, +20:u02:T_VALIDATION_ALG, +20:u10:t_validation_alg, +20:u01:T_VALIDATION_ALG, +20:u00:T_VALIDATION_ALG, +12:u08:3.6.4.1), +12:u07:3.6.4.1), +12:u06:3.6.4.1), +12:u05:3.6.4.1), +8:u08:Code, +11:uI2:...)(),, +12:u04:3.6.4.1), +8:u07:Code, +11:uI1:...)(),, +12:u03:3.6.4.1), +8:u06:Code, +11:uI0:...)(),, +12:u02:3.6.4.1), +8:u05:Code, +14:u08:signature., +12:u01:3.6.4.1), +8:u04:Code, +14:u07:signature., +12:u00:3.6.4.1), +8:u03:Code, +14:u06:signature., +8:u02:Code, +14:u05:signature., +8:u01:Code, +14:u04:signature., +8:u00:Code, +14:u03:signature., +14:u02:signature., +24:u08:T_VALIDATION_PAYLOAD, +14:u01:signature., +24:u07:T_VALIDATION_PAYLOAD, +14:u00:signature., +24:u06:T_VALIDATION_PAYLOAD, +24:u05:T_VALIDATION_PAYLOAD, +24:u04:T_VALIDATION_PAYLOAD, +24:u03:T_VALIDATION_PAYLOAD, +24:u02:T_VALIDATION_PAYLOAD, +24:u01:T_VALIDATION_PAYLOAD, +24:u00:T_VALIDATION_PAYLOAD, +12:u08:3.6.4.2), +12:u07:3.6.4.2), +12:u06:3.6.4.2), +12:u05:3.6.4.2), +8:uI2:...), +12:u04:3.6.4.2), +8:uI1:...), +12:u03:3.6.4.2), +8:uI0:...), +12:u02:3.6.4.2), +12:u01:3.6.4.2), +12:u00:3.6.4.2), +8:u08:TLV", +12:u08:Payload., +8:u07:TLV", +8:u06:TLV", +12:u07:Payload., +8:u05:TLV", +12:u06:Payload., +8:u04:TLV", +12:u14:payload., +12:u05:Payload., +8:u03:TLV", +8:u08:TLV,, +12:u13:payload., +12:u04:Payload., +8:u02:TLV", +8:u07:TLV,, +12:u12:payload., +12:u03:Payload., +8:u01:TLV", +8:u06:TLV,, +12:u11:payload., +12:u02:Payload., +8:u00:TLV", +8:u05:TLV,, +12:u10:payload., +12:u01:Payload., +8:u04:TLV,, +12:u00:Payload., +8:u03:TLV,, +8:u02:TLV,, +15:u08:MessageType, +8:u01:TLV,, +8:u00:TLV,, +15:u07:MessageType, +17:u08:MessageLength, +15:u06:MessageType, +15:u14:messagetype, +15:u05:MessageType, +17:u07:MessageLength, +15:u13:messagetype, +15:u04:MessageType, +17:u06:MessageLength, +15:u12:messagetype, +17:u14:messagelength, +15:u03:MessageType, +17:u05:MessageLength, +9:u08:(Type, +15:u11:messagetype, +17:u13:messagelength, +15:u02:MessageType, +17:u04:MessageLength, +15:u10:messagetype, +17:u12:messagelength, +15:u01:MessageType, +17:u03:MessageLength, +9:u07:(Type, +17:u11:messagelength, +15:u00:MessageType, +17:u02:MessageLength, +9:u06:(Type, +17:u10:messagelength, +17:u01:MessageLength, +9:u05:(Type, +12:u08:(Various, +17:u00:MessageLength, +9:u04:(Type, +10:u08:Types), +7:u22:(Ty, +8:u23:(Typ, +9:u03:(Type, +12:u07:(Various, +10:u07:Types), +9:u02:(Type, +12:u06:(Various, +10:u06:Types), +12:u14:(various, +9:u01:(Type, +12:u05:(Various, +10:u05:Types), +12:u13:(various, +9:u00:(Type, +12:u04:(Various, +10:u04:Types), +12:u12:(various, +6:u21:(V, +7:u22:(Va, +8:u23:(Var, +12:u03:(Various, +10:u03:Types), +12:u11:(various, +12:u02:(Various, +73:u08:+-----------+---------------+---------------------------------------+, +10:u02:Types), +12:u10:(various, +12:u01:(Various, +10:u01:Types), +12:u00:(Various, +73:u07:+-----------+---------------+---------------------------------------+, +10:u00:Types), +73:u06:+-----------+---------------+---------------------------------------+, +73:u14:+-----------+---------------+---------------------------------------+, +73:u05:+-----------+---------------+---------------------------------------+, +73:u13:+-----------+---------------+---------------------------------------+, +73:u04:+-----------+---------------+---------------------------------------+, +73:u12:+-----------+---------------+---------------------------------------+, +73:u03:+-----------+---------------+---------------------------------------+, +73:u11:+-----------+---------------+---------------------------------------+, +73:u02:+-----------+---------------+---------------------------------------+, +73:u10:+-----------+---------------+---------------------------------------+, +73:u01:+-----------+---------------+---------------------------------------+, +10:u08:T_NAME, +73:u00:+-----------+---------------+---------------------------------------+, +10:u07:T_NAME, +10:u06:T_NAME, +10:u14:t_name, +10:u05:T_NAME, +10:u08:3.6.1), +10:u13:t_name, +10:u04:T_NAME, +10:u12:t_name, +7:u22:T_N, +8:u23:T_NA, +10:u03:T_NAME, +10:u07:3.6.1), +10:u11:t_name, +10:u02:T_NAME, +10:u06:3.6.1), +10:u10:t_name, +10:u14:3.6.1), +10:u01:T_NAME, +10:u05:3.6.1), +10:u13:3.6.1), +10:u00:T_NAME, +10:u04:3.6.1), +10:u12:3.6.1), +10:u03:3.6.1), +11:u08:Object., +10:u11:3.6.1), +10:u02:3.6.1), +11:u07:Object., +10:u10:3.6.1), +10:u01:3.6.1), +11:u06:Object., +10:u00:3.6.1), +11:u05:Object., +11:u04:Object., +11:u03:Object., +11:u02:Object., +13:u08:T_PAYLOAD, +11:u01:Object., +13:u07:T_PAYLOAD, +11:u00:Object., +13:u06:T_PAYLOAD, +13:u05:T_PAYLOAD, +13:u04:T_PAYLOAD, +13:u03:T_PAYLOAD, +13:u02:T_PAYLOAD, +13:u01:T_PAYLOAD, +13:u00:T_PAYLOAD, +10:u08:3.6.3), +10:u07:3.6.3), +10:u06:3.6.3), +10:u14:3.6.3), +10:u05:3.6.3), +10:u13:3.6.3), +10:u04:3.6.3), +10:u12:3.6.3), +10:u03:3.6.3), +10:u11:3.6.3), +10:u02:3.6.3), +10:u10:3.6.3), +10:u01:3.6.3), +10:u00:3.6.3), +13:u08:notation,, +13:u07:notation,, +13:u06:notation,, +13:u14:[ccnxuri], +13:u05:notation,, +13:u08:encoding,, +13:u13:[ccnxuri], +8:u14:(the, +11:uI2:[],":/", +13:u04:notation,, +13:u07:encoding,, +13:u12:[ccnxuri], +8:u13:(the, +8:u23:[CCN, +11:uI1:[],":/", +13:u03:notation,, +13:u06:encoding,, +13:u11:[ccnxuri], +8:u12:(the, +8:u23:(the, +11:uI0:[],":/", +13:u02:notation,, +13:u05:encoding,, +13:u10:[ccnxuri], +8:u11:(the, +10:uI2:,":/"., +13:u01:notation,, +13:u04:encoding,, +8:u10:(the, +10:uI1:,":/"., +13:u00:notation,, +13:u03:encoding,, +10:uI0:,":/"., +13:u02:encoding,, +13:u01:encoding,, +13:u00:encoding,, +73:u08:+---------------+-------------+-------------------------------------+, +73:u07:+---------------+-------------+-------------------------------------+, +73:u06:+---------------+-------------+-------------------------------------+, +73:u14:+---------------+-------------+-------------------------------------+, +73:u05:+---------------+-------------+-------------------------------------+, +73:u13:+---------------+-------------+-------------------------------------+, +73:u04:+---------------+-------------+-------------------------------------+, +73:u12:+---------------+-------------+-------------------------------------+, +73:u03:+---------------+-------------+-------------------------------------+, +73:u11:+---------------+-------------+-------------------------------------+, +73:u02:+---------------+-------------+-------------------------------------+, +17:u08:T_NAMESEGMENT, +73:u10:+---------------+-------------+-------------------------------------+, +73:u01:+---------------+-------------+-------------------------------------+, +17:u07:T_NAMESEGMENT, +73:u00:+---------------+-------------+-------------------------------------+, +17:u06:T_NAMESEGMENT, +17:u05:T_NAMESEGMENT, +17:u04:T_NAMESEGMENT, +17:u03:T_NAMESEGMENT, +17:u02:T_NAMESEGMENT, +17:u01:T_NAMESEGMENT, +17:u00:T_NAMESEGMENT, +12:u08:3.6.1.1), +12:u07:3.6.1.1), +12:u06:3.6.1.1), +12:u14:3.6.1.1), +12:u05:3.6.1.1), +12:u13:3.6.1.1), +12:u04:3.6.1.1), +12:u12:3.6.1.1), +12:u03:3.6.1.1), +12:u11:3.6.1.1), +12:u02:3.6.1.1), +10:u08:T_IPID, +12:u10:3.6.1.1), +12:u01:3.6.1.1), +12:u00:3.6.1.1), +10:u07:T_IPID, +10:u06:T_IPID, +10:u14:t_ipid, +10:u05:T_IPID, +10:u13:t_ipid, +10:u04:T_IPID, +10:u12:t_ipid, +8:u23:T_IP, +10:u03:T_IPID, +10:u11:t_ipid, +10:u02:T_IPID, +10:u10:t_ipid, +10:u01:T_IPID, +10:u00:T_IPID, +12:u08:3.6.1.2), +12:u07:3.6.1.2), +12:u06:3.6.1.2), +12:u14:3.6.1.2), +12:u05:3.6.1.2), +12:u13:3.6.1.2), +12:u04:3.6.1.2), +12:u12:3.6.1.2), +12:u03:3.6.1.2), +12:u11:3.6.1.2), +12:u02:3.6.1.2), +12:u10:3.6.1.2), +12:u01:3.6.1.2), +12:u00:3.6.1.2), +12:u08:payloads, +12:u07:payloads, +12:u06:payloads, +12:u05:payloads, +12:u04:payloads, +12:u03:payloads, +12:u02:payloads, +12:u01:payloads, +12:u00:payloads, +12:u08:T_APP:00, +6:u08:-|, +12:u07:T_APP:00, +6:u07:-|, +12:u06:T_APP:00, +14:u08:T_APP:4096, +6:u06:-|, +12:u14:t_app:00, +12:u05:T_APP:00, +6:u05:-|, +12:u13:t_app:00, +12:u04:T_APP:00, +14:u07:T_APP:4096, +6:u04:-|, +12:u12:t_app:00, +7:u22:T_A, +8:u23:T_AP, +12:u03:T_APP:00, +14:u06:T_APP:4096, +6:u03:-|, +12:u11:t_app:00, +14:u14:t_app:4096, +12:u02:T_APP:00, +14:u05:T_APP:4096, +6:u02:-|, +12:u10:t_app:00, +14:u13:t_app:4096, +12:u01:T_APP:00, +14:u04:T_APP:4096, +6:u01:-|, +14:u12:t_app:4096, +12:u00:T_APP:00, +14:u03:T_APP:4096, +6:u00:-|, +14:u11:t_app:4096, +14:u02:T_APP:4096, +14:u10:t_app:4096, +14:u01:T_APP:4096, +14:u00:T_APP:4096, +8:u08:4096, +8:u07:4096, +7:u08:put, +8:u06:4096, +13:u08:segments., +8:u14:4096, +8:u05:4096, +7:u07:put, +8:u13:4096, +8:u04:4096, +7:u06:put, +13:u07:segments., +8:u12:4096, +7:u14:put, +6:u21:40, +7:u22:409, +8:u23:4096, +8:u03:4096, +7:u05:put, +13:u06:segments., +8:u11:4096, +7:u13:put, +13:u14:segments., +8:u02:4096, +7:u04:put, +13:u05:segments., +8:u10:4096, +7:u12:put, +13:u13:segments., +7:u23:put, +8:u01:4096, +7:u03:put, +13:u04:segments., +7:u11:put, +13:u12:segments., +12:uI2:,":///":, +8:u00:4096, +7:u02:put, +13:u03:segments., +7:u10:put, +13:u11:segments., +12:uI1:,":///":, +7:u01:put, +13:u02:segments., +13:u10:segments., +12:uI0:,":///":, +7:u00:put, +13:u01:segments., +12:u08:(T_NAME), +13:u00:segments., +12:u07:(T_NAME), +8:u08:0x14, +12:u06:(T_NAME), +8:u08:(20), +12:u14:(t_name), +12:u05:(T_NAME), +8:u07:0x14, +8:u07:(20), +12:u13:(t_name), +12:u04:(T_NAME), +8:u06:0x14, +8:u06:(20), +12:u12:(t_name), +8:u14:0x14, +7:u22:(T_, +8:u23:(T_N, +12:u03:(T_NAME), +8:u05:0x14, +20:u08:(T_NAME_SEGMENT), +8:u05:(20), +12:u11:(t_name), +8:u13:0x14, +12:u02:(T_NAME), +8:u04:0x14, +8:u04:(20), +12:u10:(t_name), +8:u12:0x14, +7:u22:0x1, +8:u23:0x14, +12:u01:(T_NAME), +8:u03:0x14, +20:u07:(T_NAME_SEGMENT), +8:u08:0x03, +8:u03:(20), +8:u11:0x14, +12:u00:(T_NAME), +8:u02:0x14, +20:u06:(T_NAME_SEGMENT), +8:u02:(20), +8:u10:0x14, +20:u14:(t_name_segment), +8:u01:0x14, +20:u05:(T_NAME_SEGMENT), +8:u07:0x03, +8:u01:(20), +20:u13:(t_name_segment), +8:u00:0x14, +20:u04:(T_NAME_SEGMENT), +8:u06:0x03, +8:u00:(20), +20:u12:(t_name_segment), +8:u14:0x03, +20:u03:(T_NAME_SEGMENT), +8:u05:0x03, +5:u08:f, +20:u11:(t_name_segment), +8:u13:0x03, +20:u02:(T_NAME_SEGMENT), +8:u04:0x03, +20:u10:(t_name_segment), +8:u12:0x03, +8:u23:0x03, +20:u01:(T_NAME_SEGMENT), +8:u03:0x03, +5:u07:f, +8:u11:0x03, +20:u00:(T_NAME_SEGMENT), +8:u02:0x03, +5:u06:f, +21:u08:|(T_NAME_SEGMENT), +8:u10:0x03, +5:u14:f, +8:u01:0x03, +5:u05:f, +5:u13:f, +8:u00:0x03, +5:u04:f, +21:u07:|(T_NAME_SEGMENT), +5:u12:f, +5:u21:f, +5:u22:f, +5:u23:f, +5:u03:f, +21:u06:|(T_NAME_SEGMENT), +5:u11:f, +21:u14:|(t_name_segment), +5:u02:f, +21:u05:|(T_NAME_SEGMENT), +5:u10:f, +21:u13:|(t_name_segment), +5:u01:f, +21:u04:|(T_NAME_SEGMENT), +21:u12:|(t_name_segment), +6:u21:|(, +7:u22:|(T, +8:u23:|(T_, +5:u00:f, +21:u03:|(T_NAME_SEGMENT), +5:u08:b, +21:u11:|(t_name_segment), +21:u02:|(T_NAME_SEGMENT), +21:u10:|(t_name_segment), +21:u01:|(T_NAME_SEGMENT), +5:u07:b, +21:u00:|(T_NAME_SEGMENT), +5:u06:b, +5:u14:b, +5:u05:b, +5:u13:b, +5:u04:b, +5:u08:r, +5:u12:b, +5:u21:b, +5:u22:b, +5:u23:b, +5:u03:b, +5:u11:b, +5:u02:b, +5:u07:r, +5:u10:b, +5:u01:b, +5:u06:r, +5:u14:r, +5:u00:b, +5:u05:r, +5:u13:r, +5:u04:r, +5:u12:r, +5:u21:r, +5:u22:r, +5:u23:r, +5:u03:r, +8:u08:0x02, +5:u11:r, +5:u02:r, +5:u10:r, +5:u01:r, +8:u07:0x02, +5:u08:h, +5:u00:r, +8:u06:0x02, +8:u14:0x02, +8:u05:0x02, +5:u07:h, +8:u13:0x02, +8:u04:0x02, +5:u06:h, +8:u12:0x02, +5:u14:h, +8:u23:0x02, +8:u03:0x02, +5:u05:h, +8:u11:0x02, +5:u13:h, +8:u02:0x02, +5:u04:h, +8:u10:0x02, +5:u12:h, +5:u14:i, +5:u21:h, +5:u22:h, +5:u23:h, +8:u01:0x02, +5:u03:h, +5:u11:h, +5:u13:i, +8:u00:0x02, +5:u02:h, +5:u10:h, +5:u12:i, +5:u21:i, +5:u22:i, +5:u23:i, +5:u01:h, +21:u08:InterestPayloadID, +5:u11:i, +5:u00:h, +16:u08:multiplexing, +21:u07:InterestPayloadID, +5:u10:i, +13:u08:payloads., +21:u06:InterestPayloadID, +16:u07:multiplexing, +21:u05:InterestPayloadID, +16:u06:multiplexing, +13:u07:payloads., +21:u04:InterestPayloadID, +16:u05:multiplexing, +13:u06:payloads., +13:u08:one-octet, +21:u03:InterestPayloadID, +13:u14:payloads., +16:u04:multiplexing, +13:u05:payloads., +21:u02:InterestPayloadID, +13:u13:payloads., +16:u03:multiplexing, +13:u04:payloads., +13:u07:one-octet, +21:u01:InterestPayloadID, +13:u12:payloads., +16:u02:multiplexing, +13:u03:payloads., +13:u06:one-octet, +21:u00:InterestPayloadID, +13:u11:payloads., +13:u14:one-octet, +16:u01:multiplexing, +13:u02:payloads., +13:u05:one-octet, +13:u10:payloads., +13:u13:one-octet, +21:u14:interestpayloadid, +16:u00:multiplexing, +13:u01:payloads., +13:u04:one-octet, +13:u12:one-octet, +21:u13:interestpayloadid, +8:u23:one-, +13:u00:payloads., +13:u03:one-octet, +13:u11:one-octet, +21:u12:interestpayloadid, +13:u02:one-octet, +13:u10:one-octet, +21:u11:interestpayloadid, +13:u01:one-octet, +21:u10:interestpayloadid, +13:u00:one-octet, +15:u14:algorithms., +15:u13:algorithms., +15:u12:algorithms., +15:u11:algorithms., +15:u10:algorithms., +15:u08:denominator, +15:u07:denominator, +22:u08:InterestPayloadID,, +15:u06:denominator, +22:u07:InterestPayloadID,, +15:u14:denominator, +15:u05:denominator, +13:u08:signature, +22:u06:InterestPayloadID,, +15:u13:denominator, +15:u04:denominator, +21:u08:ValidationPayload, +22:u05:InterestPayloadID,, +15:u12:denominator, +15:u03:denominator, +13:u07:signature, +22:u04:InterestPayloadID,, +15:u11:denominator, +15:u02:denominator, +13:u06:signature, +21:u07:ValidationPayload, +22:u03:InterestPayloadID,, +15:u10:denominator, +13:u14:signature, +15:u01:denominator, +13:u05:signature, +21:u06:ValidationPayload, +22:u02:InterestPayloadID,, +13:u13:signature, +21:u14:validationpayload, +15:u00:denominator, +13:u04:signature, +21:u05:ValidationPayload, +22:u01:InterestPayloadID,, +13:u12:signature, +21:u13:validationpayload, +13:u03:signature, +21:u04:ValidationPayload, +22:u00:InterestPayloadID,, +13:u11:signature, +21:u12:validationpayload, +13:u02:signature, +21:u03:ValidationPayload, +13:u10:signature, +21:u11:validationpayload, +13:u01:signature, +21:u02:ValidationPayload, +12:u08:message:, +21:u10:validationpayload, +13:u00:signature, +21:u01:ValidationPayload, +12:u08:selector, +21:u00:ValidationPayload, +12:u07:message:, +12:u06:message:, +12:u07:selector, +12:u14:message:, +12:u05:message:, +12:u06:selector, +12:u13:message:, +12:u14:selector, +12:u04:message:, +12:u05:selector, +12:u12:message:, +12:u13:selector, +12:u03:message:, +12:u04:selector, +12:u11:message:, +12:u12:selector, +12:u02:message:, +12:u03:selector, +12:u10:message:, +12:u11:selector, +12:u01:message:, +12:u02:selector, +12:u10:selector, +12:u00:message:, +12:u01:selector, +12:u00:selector, +73:u08:+----------------+------------------------------+-------------------+, +73:u07:+----------------+------------------------------+-------------------+, +73:u06:+----------------+------------------------------+-------------------+, +73:u14:+----------------+------------------------------+-------------------+, +73:u05:+----------------+------------------------------+-------------------+, +73:u13:+----------------+------------------------------+-------------------+, +73:u04:+----------------+------------------------------+-------------------+, +73:u12:+----------------+------------------------------+-------------------+, +73:u03:+----------------+------------------------------+-------------------+, +73:u11:+----------------+------------------------------+-------------------+, +73:u02:+----------------+------------------------------+-------------------+, +73:u10:+----------------+------------------------------+-------------------+, +73:u01:+----------------+------------------------------+-------------------+, +73:u00:+----------------+------------------------------+-------------------+, +16:u08:T_KEYIDRESTR, +16:u07:T_KEYIDRESTR, +16:u06:T_KEYIDRESTR, +14:u08:3.6.2.1.1), +16:u05:T_KEYIDRESTR, +16:u04:T_KEYIDRESTR, +14:u07:3.6.2.1.1), +16:u03:T_KEYIDRESTR, +14:u06:3.6.2.1.1), +16:u02:T_KEYIDRESTR, +14:u14:3.6.2.1.1), +14:u05:3.6.2.1.1), +16:u01:T_KEYIDRESTR, +14:u13:3.6.2.1.1), +9:uI2:....), +14:u04:3.6.2.1.1), +16:u00:T_KEYIDRESTR, +14:u12:3.6.2.1.1), +9:uI1:....), +14:u03:3.6.2.1.1), +10:u08:3.3.3), +14:u11:3.6.2.1.1), +9:uI0:....), +14:u02:3.6.2.1.1), +10:u07:3.3.3), +14:u10:3.6.2.1.1), +14:u01:3.6.2.1.1), +10:u06:3.3.3), +14:u00:3.6.2.1.1), +10:u05:3.3.3), +10:u04:3.3.3), +10:u03:3.3.3), +10:u02:3.3.3), +10:u01:3.3.3), +10:u00:3.3.3), +18:u08:T_OBJHASHRESTR, +18:u07:T_OBJHASHRESTR, +18:u06:T_OBJHASHRESTR, +18:u05:T_OBJHASHRESTR, +14:u08:3.6.2.1.2), +18:u04:T_OBJHASHRESTR, +14:u07:3.6.2.1.2), +18:u03:T_OBJHASHRESTR, +14:u06:3.6.2.1.2), +18:u02:T_OBJHASHRESTR, +14:u05:3.6.2.1.2), +18:u01:T_OBJHASHRESTR, +14:u04:3.6.2.1.2), +18:u00:T_OBJHASHRESTR, +14:u03:3.6.2.1.2), +14:u02:3.6.2.1.2), +14:u01:3.6.2.1.2), +14:u00:3.6.2.1.2), +13:u08:Interest., +13:u07:Interest., +13:u06:Interest., +14:u08:3.6.2.1.1., +13:u05:Interest., +13:u04:Interest., +20:u08:KeyIdRestriction, +14:u07:3.6.2.1.1., +13:u03:Interest., +20:u07:KeyIdRestriction, +14:u06:3.6.2.1.1., +13:u02:Interest., +20:u06:KeyIdRestriction, +14:u14:3.6.2.1.1., +14:u05:3.6.2.1.1., +14:u08:3.6.2.1.2., +13:u01:Interest., +20:u05:KeyIdRestriction, +14:u13:3.6.2.1.1., +14:u04:3.6.2.1.1., +13:u00:Interest., +20:u04:KeyIdRestriction, +14:u12:3.6.2.1.1., +14:u03:3.6.2.1.1., +14:u07:3.6.2.1.2., +20:u03:KeyIdRestriction, +14:u11:3.6.2.1.1., +13:u14:interest., +14:u02:3.6.2.1.1., +14:u06:3.6.2.1.2., +15:u08:restriction, +20:u02:KeyIdRestriction, +14:u10:3.6.2.1.1., +13:u13:interest., +14:u14:3.6.2.1.2., +14:u01:3.6.2.1.1., +14:u05:3.6.2.1.2., +20:u01:KeyIdRestriction, +13:u12:interest., +14:u13:3.6.2.1.2., +14:u00:3.6.2.1.1., +14:u04:3.6.2.1.2., +15:u07:restriction, +20:u00:KeyIdRestriction, +13:u11:interest., +14:u12:3.6.2.1.2., +14:u03:3.6.2.1.2., +15:u06:restriction, +13:u10:interest., +14:u11:3.6.2.1.2., +15:u14:restriction, +14:u02:3.6.2.1.2., +15:u05:restriction, +14:u10:3.6.2.1.2., +15:u13:restriction, +14:u01:3.6.2.1.2., +15:u04:restriction, +15:u12:restriction, +11:uI2:((..))., +14:u00:3.6.2.1.2., +15:u03:restriction, +15:u11:restriction, +11:uI1:((..))., +15:u02:restriction, +15:u10:restriction, +6:u21:LE, +7:u22:LEN, +8:u23:LENG, +11:uI0:((..))., +15:u01:restriction, +15:u00:restriction, +14:u08:(LENGTH+4), +18:u14:t_objhashrestr, +14:u07:(LENGTH+4), +18:u13:t_objhashrestr, +14:u06:(LENGTH+4), +18:u12:t_objhashrestr, +14:u14:(length+4), +14:u05:(LENGTH+4), +18:u11:t_objhashrestr, +14:u13:(length+4), +14:u04:(LENGTH+4), +18:u10:t_objhashrestr, +14:u12:(length+4), +7:u22:(LE, +8:u23:(LEN, +14:u03:(LENGTH+4), +14:u11:(length+4), +14:u02:(LENGTH+4), +14:u10:(length+4), +14:u01:(LENGTH+4), +14:u00:(LENGTH+4), +10:u08:octets, +10:u07:octets, +10:u06:octets, +10:u05:octets, +10:u04:octets, +15:u08:PayloadType, +10:u03:octets, +10:u02:octets, +14:u08:(optional), +15:u07:PayloadType, +10:u01:octets, +14:u07:(optional), +15:u06:PayloadType, +10:u00:octets, +14:u06:(optional), +15:u14:payloadtype, +15:u05:PayloadType, +14:u05:(optional), +15:u13:payloadtype, +15:u04:PayloadType, +14:u04:(optional), +15:u12:payloadtype, +15:u03:PayloadType, +14:u03:(optional), +15:u11:payloadtype, +15:u02:PayloadType, +14:u02:(optional), +15:u10:payloadtype, +15:u01:PayloadType, +14:u01:(optional), +15:u00:PayloadType, +14:u00:(optional), +73:u08:+-------------+-------------+---------------------------------------+, +73:u07:+-------------+-------------+---------------------------------------+, +73:u06:+-------------+-------------+---------------------------------------+, +73:u14:+-------------+-------------+---------------------------------------+, +73:u05:+-------------+-------------+---------------------------------------+, +73:u13:+-------------+-------------+---------------------------------------+, +73:u04:+-------------+-------------+---------------------------------------+, +73:u12:+-------------+-------------+---------------------------------------+, +73:u03:+-------------+-------------+---------------------------------------+, +73:u11:+-------------+-------------+---------------------------------------+, +73:u02:+-------------+-------------+---------------------------------------+, +73:u10:+-------------+-------------+---------------------------------------+, +73:u01:+-------------+-------------+---------------------------------------+, +73:u00:+-------------+-------------+---------------------------------------+, +15:u08:T_PAYLDTYPE, +15:u07:T_PAYLDTYPE, +15:u06:T_PAYLDTYPE, +15:u05:T_PAYLDTYPE, +15:u04:T_PAYLDTYPE, +15:u03:T_PAYLDTYPE, +15:u02:T_PAYLDTYPE, +15:u01:T_PAYLDTYPE, +14:u08:3.6.2.2.1), +15:u00:T_PAYLDTYPE, +14:u07:3.6.2.2.1), +14:u06:3.6.2.2.1), +14:u05:3.6.2.2.1), +14:u04:3.6.2.2.1), +14:u03:3.6.2.2.1), +12:u08:T_EXPIRY, +14:u02:3.6.2.2.1), +14:u01:3.6.2.2.1), +12:u07:T_EXPIRY, +14:u00:3.6.2.2.1), +12:u06:T_EXPIRY, +12:u14:t_expiry, +12:u05:T_EXPIRY, +12:u13:t_expiry, +12:u04:T_EXPIRY, +12:u12:t_expiry, +7:u22:T_E, +8:u23:T_EX, +12:u03:T_EXPIRY, +12:u11:t_expiry, +12:u02:T_EXPIRY, +12:u10:t_expiry, +12:u01:T_EXPIRY, +14:u08:3.6.2.2.2), +12:u00:T_EXPIRY, +14:u07:3.6.2.2.2), +14:u06:3.6.2.2.2), +14:u05:3.6.2.2.2), +14:u04:3.6.2.2.2), +8:u08:UTC., +14:u03:3.6.2.2.2), +8:u07:UTC., +14:u02:3.6.2.2.2), +8:u06:UTC., +14:u01:3.6.2.2.2), +8:u05:UTC., +14:u00:3.6.2.2.2), +8:u04:UTC., +8:u03:UTC., +8:u02:UTC., +8:u01:UTC., +8:u00:UTC., +14:u08:3.6.2.2.1., +14:u07:3.6.2.2.1., +14:u06:3.6.2.2.1., +14:u14:3.6.2.2.1., +14:u05:3.6.2.2.1., +23:u08:T_PAYLOADTYPE_DATA:, +14:u13:3.6.2.2.1., +14:u04:3.6.2.2.1., +23:u07:T_PAYLOADTYPE_DATA:, +22:u08:T_PAYLOADTYPE_KEY:, +14:u12:3.6.2.2.1., +14:u03:3.6.2.2.1., +23:u06:T_PAYLOADTYPE_DATA:, +22:u07:T_PAYLOADTYPE_KEY:, +23:u08:T_PAYLOADTYPE_LINK:, +14:u11:3.6.2.2.1., +14:u02:3.6.2.2.1., +23:u05:T_PAYLOADTYPE_DATA:, +22:u06:T_PAYLOADTYPE_KEY:, +23:u07:T_PAYLOADTYPE_LINK:, +14:u10:3.6.2.2.1., +14:u01:3.6.2.2.1., +23:u04:T_PAYLOADTYPE_DATA:, +22:u05:T_PAYLOADTYPE_KEY:, +23:u06:T_PAYLOADTYPE_LINK:, +14:u00:3.6.2.2.1., +23:u03:T_PAYLOADTYPE_DATA:, +22:u04:T_PAYLOADTYPE_KEY:, +23:u05:T_PAYLOADTYPE_LINK:, +15:u08:DER-encoded, +23:u02:T_PAYLOADTYPE_DATA:, +22:u03:T_PAYLOADTYPE_KEY:, +23:u04:T_PAYLOADTYPE_LINK:, +15:u07:DER-encoded, +23:u01:T_PAYLOADTYPE_DATA:, +22:u02:T_PAYLOADTYPE_KEY:, +23:u03:T_PAYLOADTYPE_LINK:, +15:u06:DER-encoded, +23:u00:T_PAYLOADTYPE_DATA:, +22:u01:T_PAYLOADTYPE_KEY:, +23:u02:T_PAYLOADTYPE_LINK:, +15:u05:DER-encoded, +22:u00:T_PAYLOADTYPE_KEY:, +23:u01:T_PAYLOADTYPE_LINK:, +15:u04:DER-encoded, +10:uI2:(..).,, +23:u00:T_PAYLOADTYPE_LINK:, +15:u03:DER-encoded, +10:uI1:(..).,, +15:u02:DER-encoded, +10:uI0:(..).,, +15:u01:DER-encoded, +15:u00:DER-encoded, +15:u14:t_payldtype, +15:u13:t_payldtype, +15:u12:t_payldtype, +21:u08:+---------------+, +15:u11:t_payldtype, +15:u10:t_payldtype, +21:u07:+---------------+, +14:u08:3.6.2.2.2., +7:u08:20:, +21:u06:+---------------+, +7:u07:20:, +14:u08:ExpiryTime, +21:u14:+---------------+, +21:u05:+---------------+, +14:u07:3.6.2.2.2., +7:u06:20:, +14:u07:ExpiryTime, +21:u13:+---------------+, +19:uI2:---------------, +21:u04:+---------------+, +14:u06:3.6.2.2.2., +7:u05:20:, +14:u06:ExpiryTime, +21:u12:+---------------+, +14:u14:3.6.2.2.2., +19:uI1:---------------, +21:u03:+---------------+, +14:u05:3.6.2.2.2., +7:u04:20:, +14:u05:ExpiryTime, +21:u11:+---------------+, +14:u13:3.6.2.2.2., +19:uI0:---------------, +21:u02:+---------------+, +14:u04:3.6.2.2.2., +7:u03:20:, +14:u04:ExpiryTime, +21:u10:+---------------+, +14:u12:3.6.2.2.2., +21:u01:+---------------+, +14:u03:3.6.2.2.2., +7:u02:20:, +14:u03:ExpiryTime, +14:u11:3.6.2.2.2., +21:u00:+---------------+, +14:u02:3.6.2.2.2., +12:u08:missing,, +7:u01:20:, +14:u02:ExpiryTime, +14:u10:3.6.2.2.2., +14:u01:3.6.2.2.2., +7:u00:20:, +14:u01:ExpiryTime, +14:u00:3.6.2.2.2., +12:u07:missing,, +14:u00:ExpiryTime, +12:u06:missing,, +12:u14:missing,, +12:u05:missing,, +12:u13:missing,, +12:u04:missing,, +12:u12:missing,, +8:u23:miss, +12:u03:missing,, +12:u11:missing,, +12:u02:missing,, +12:u10:missing,, +12:u01:missing,, +12:u00:missing,, +14:u14:expirytime, +14:u13:expirytime, +14:u12:expirytime, +7:u08:21:, +14:u11:expirytime, +7:u07:21:, +14:u10:expirytime, +7:u06:21:, +7:u05:21:, +7:u04:21:, +7:u03:21:, +7:u02:21:, +7:u01:21:, +7:u00:21:, +13:u14:t_payload, +13:u13:t_payload, +13:u12:t_payload, +13:u11:t_payload, +12:u08:Contents, +13:u10:t_payload, +12:u07:Contents, +12:u06:Contents, +12:u05:Contents, +7:u08:22:, +12:u04:Contents, +7:u07:22:, +12:u03:Contents, +7:u06:22:, +13:u08:Interests, +12:u02:Contents, +7:u05:22:, +13:u07:Interests, +12:u01:Contents, +7:u04:22:, +13:u06:Interests, +13:u08:contained, +12:u00:Contents, +7:u03:22:, +13:u05:Interests, +13:u07:contained, +7:u02:22:, +13:u04:Interests, +13:u06:contained, +18:u08:Authentication, +7:u01:22:, +13:u03:Interests, +13:u05:contained, +7:u00:22:, +13:u02:Interests, +13:u04:contained, +18:u07:Authentication, +10:u08:CRC32C, +13:u01:Interests, +13:u03:contained, +18:u06:Authentication, +13:u00:Interests, +13:u02:contained, +18:u05:Authentication, +10:u07:CRC32C, +8:u08:CRC,, +13:u01:contained, +18:u04:Authentication, +10:u06:CRC32C, +13:u00:contained, +13:u08:checksum,, +10:u14:crc32c, +18:u03:Authentication, +10:u05:CRC32C, +8:u07:CRC,, +13:u07:checksum,, +10:u13:crc32c, +18:u02:Authentication, +10:u04:CRC32C, +8:u06:CRC,, +13:u06:checksum,, +10:u12:crc32c, +8:u14:crc,, +7:u22:CRC, +8:u23:CRC3, +18:u01:Authentication, +10:u03:CRC32C, +8:u05:CRC,, +13:u05:checksum,, +10:u11:crc32c, +8:u13:crc,, +18:u00:Authentication, +10:u02:CRC32C, +8:u04:CRC,, +13:u04:checksum,, +10:u10:crc32c, +8:u12:crc,, +8:u23:CRC,, +10:u01:CRC32C, +8:u03:CRC,, +13:u03:checksum,, +8:u11:crc,, +10:u00:CRC32C, +8:u02:CRC,, +13:u02:checksum,, +8:u10:crc,, +8:u01:CRC,, +13:u01:checksum,, +14:u08:elaborated, +8:u00:CRC,, +7:u08:Id,, +13:u00:checksum,, +14:u07:elaborated, +12:u08:Complete, +14:u06:elaborated, +7:u07:Id,, +14:u05:elaborated, +7:u06:Id,, +12:u07:Complete, +14:u04:elaborated, +8:uI2:---,, +7:u05:Id,, +12:u06:Complete, +14:u03:elaborated, +8:uI1:---,, +7:u04:Id,, +12:u05:Complete, +14:u02:elaborated, +7:u22:Id,, +7:u23:Id,, +8:uI0:---,, +7:u03:Id,, +12:u04:Complete, +14:u01:elaborated, +7:u02:Id,, +12:u03:Complete, +14:u00:elaborated, +7:u01:Id,, +12:u02:Complete, +7:u00:Id,, +12:u01:Complete, +12:u00:Complete, +23:u08:ValidationAlgLength, +23:u07:ValidationAlgLength, +23:u06:ValidationAlgLength, +23:u14:validationalglength, +23:u05:ValidationAlgLength, +18:u08:ValidationType, +23:u13:validationalglength, +23:u04:ValidationAlgLength, +23:u12:validationalglength, +23:u03:ValidationAlgLength, +18:u07:ValidationType, +23:u11:validationalglength, +23:u02:ValidationAlgLength, +18:u06:ValidationType, +23:u10:validationalglength, +18:u14:validationtype, +23:u01:ValidationAlgLength, +18:u05:ValidationType, +18:u13:validationtype, +23:u00:ValidationAlgLength, +18:u04:ValidationType, +18:u12:validationtype, +18:u03:ValidationType, +28:u08:ValidationType-dependent, +18:u11:validationtype, +18:u02:ValidationType, +28:u07:ValidationType-dependent, +18:u10:validationtype, +18:u01:ValidationType, +28:u06:ValidationType-dependent, +18:u00:ValidationType, +73:u08:+-----------------+---------------+---------------------------------+, +28:u05:ValidationType-dependent, +7:u08:23:, +28:u04:ValidationType-dependent, +7:u07:23:, +73:u07:+-----------------+---------------+---------------------------------+, +28:u03:ValidationType-dependent, +7:u06:23:, +73:u06:+-----------------+---------------+---------------------------------+, +28:u02:ValidationType-dependent, +7:u05:23:, +73:u14:+-----------------+---------------+---------------------------------+, +73:u05:+-----------------+---------------+---------------------------------+, +28:u01:ValidationType-dependent, +7:u04:23:, +73:u13:+-----------------+---------------+---------------------------------+, +73:u04:+-----------------+---------------+---------------------------------+, +28:u00:ValidationType-dependent, +7:u03:23:, +73:u12:+-----------------+---------------+---------------------------------+, +73:u03:+-----------------+---------------+---------------------------------+, +7:u02:23:, +73:u11:+-----------------+---------------+---------------------------------+, +73:u02:+-----------------+---------------+---------------------------------+, +7:u01:23:, +73:u10:+-----------------+---------------+---------------------------------+, +73:u01:+-----------------+---------------+---------------------------------+, +7:u00:23:, +73:u00:+-----------------+---------------+---------------------------------+, +12:u08:T_CRC32C, +12:u07:T_CRC32C, +12:u06:T_CRC32C, +12:u14:t_crc32c, +12:u05:T_CRC32C, +14:u08:Castagnoli, +12:u13:t_crc32c, +12:u04:T_CRC32C, +14:u07:Castagnoli, +12:u12:t_crc32c, +8:u23:T_CR, +12:u03:T_CRC32C, +14:u06:Castagnoli, +12:u11:t_crc32c, +12:u02:T_CRC32C, +14:u05:Castagnoli, +12:u10:t_crc32c, +12:u01:T_CRC32C, +14:u04:Castagnoli, +12:u00:T_CRC32C, +14:u03:Castagnoli, +14:u02:Castagnoli, +14:u08:3.6.4.1.1), +14:u01:Castagnoli, +14:u00:Castagnoli, +14:u07:3.6.4.1.1), +14:u06:3.6.4.1.1), +14:u14:3.6.4.1.1), +14:u05:3.6.4.1.1), +14:u13:3.6.4.1.1), +14:u04:3.6.4.1.1), +14:u12:3.6.4.1.1), +14:u03:3.6.4.1.1), +14:u11:3.6.4.1.1), +14:u02:3.6.4.1.1), +17:u08:T_HMAC-SHA256, +14:u10:3.6.4.1.1), +14:u01:3.6.4.1.1), +17:u07:T_HMAC-SHA256, +14:u00:3.6.4.1.1), +17:u06:T_HMAC-SHA256, +17:u05:T_HMAC-SHA256, +17:u04:T_HMAC-SHA256, +17:u03:T_HMAC-SHA256, +9:u08:hash., +17:u02:T_HMAC-SHA256, +9:u07:hash., +17:u01:T_HMAC-SHA256, +9:u06:hash., +14:u08:3.6.4.1.2), +17:u00:T_HMAC-SHA256, +9:u05:hash., +9:u04:hash., +14:u07:3.6.4.1.2), +9:u03:hash., +14:u06:3.6.4.1.2), +9:u02:hash., +14:u14:3.6.4.1.2), +14:u05:3.6.4.1.2), +9:u01:hash., +14:u13:3.6.4.1.2), +14:u04:3.6.4.1.2), +9:u00:hash., +14:u12:3.6.4.1.2), +14:u03:3.6.4.1.2), +14:u11:3.6.4.1.2), +14:u02:3.6.4.1.2), +16:u08:T_RSA-SHA256, +14:u10:3.6.4.1.2), +14:u01:3.6.4.1.2), +14:u08:RSA-SHA256, +14:u00:3.6.4.1.2), +16:u07:T_RSA-SHA256, +16:u06:T_RSA-SHA256, +14:u07:RSA-SHA256, +16:u14:t_rsa-sha256, +16:u05:T_RSA-SHA256, +14:u06:RSA-SHA256, +16:u13:t_rsa-sha256, +14:u14:rsa-sha256, +16:u04:T_RSA-SHA256, +14:u05:RSA-SHA256, +16:u12:t_rsa-sha256, +14:u13:rsa-sha256, +8:u23:T_RS, +16:u03:T_RSA-SHA256, +14:u04:RSA-SHA256, +10:u08:SHA256, +16:u11:t_rsa-sha256, +14:u12:rsa-sha256, +7:u22:RSA, +8:u23:RSA-, +16:u02:T_RSA-SHA256, +14:u03:RSA-SHA256, +10:u07:SHA256, +16:u10:t_rsa-sha256, +14:u11:rsa-sha256, +16:u01:T_RSA-SHA256, +14:u02:RSA-SHA256, +10:u06:SHA256, +14:u10:rsa-sha256, +16:u00:T_RSA-SHA256, +14:u01:RSA-SHA256, +14:u08:3.6.4.1.3), +10:u05:SHA256, +14:u00:RSA-SHA256, +10:u04:SHA256, +14:u07:3.6.4.1.3), +10:u03:SHA256, +14:u06:3.6.4.1.3), +10:u02:SHA256, +14:u14:3.6.4.1.3), +14:u05:3.6.4.1.3), +10:u01:SHA256, +14:u13:3.6.4.1.3), +14:u04:3.6.4.1.3), +10:u00:SHA256, +14:u12:3.6.4.1.3), +14:u03:3.6.4.1.3), +14:u11:3.6.4.1.3), +14:u02:3.6.4.1.3), +14:u08:SECP-256K1, +19:u08:T_EC-SECP-256K1, +14:u10:3.6.4.1.3), +14:u01:3.6.4.1.3), +19:u07:T_EC-SECP-256K1, +14:u00:3.6.4.1.3), +14:u07:SECP-256K1, +19:u06:T_EC-SECP-256K1, +14:u06:SECP-256K1, +19:u05:T_EC-SECP-256K1, +14:u14:secp-256k1, +14:u05:SECP-256K1, +19:u04:T_EC-SECP-256K1, +14:u13:secp-256k1, +14:u04:SECP-256K1, +19:u03:T_EC-SECP-256K1, +14:u12:secp-256k1, +8:u23:SECP, +14:u03:SECP-256K1, +19:u02:T_EC-SECP-256K1, +14:u11:secp-256k1, +14:u02:SECP-256K1, +19:u01:T_EC-SECP-256K1, +14:u10:secp-256k1, +14:u01:SECP-256K1, +19:u00:T_EC-SECP-256K1, +14:u00:SECP-256K1, +13:uI2:....)[])., +13:uI1:....)[])., +13:uI0:....)[])., +14:u08:SECP-384R1, +19:u08:T_EC-SECP-384R1, +19:u07:T_EC-SECP-384R1, +14:u07:SECP-384R1, +19:u06:T_EC-SECP-384R1, +14:u06:SECP-384R1, +19:u05:T_EC-SECP-384R1, +14:u14:secp-384r1, +14:u05:SECP-384R1, +19:u04:T_EC-SECP-384R1, +14:u13:secp-384r1, +14:u04:SECP-384R1, +19:u03:T_EC-SECP-384R1, +14:u12:secp-384r1, +14:u03:SECP-384R1, +19:u02:T_EC-SECP-384R1, +14:u11:secp-384r1, +14:u02:SECP-384R1, +19:u01:T_EC-SECP-384R1, +14:u10:secp-384r1, +14:u01:SECP-384R1, +19:u00:T_EC-SECP-384R1, +14:u00:SECP-384R1, +14:u08:3.6.4.1.1., +8:u08:MICs, +14:u07:3.6.4.1.1., +17:u08:verification., +14:u06:3.6.4.1.1., +8:u07:MICs, +14:u14:3.6.4.1.1., +14:u05:3.6.4.1.1., +8:u06:MICs, +17:u07:verification., +14:u13:3.6.4.1.1., +8:u14:mics, +14:u04:3.6.4.1.1., +8:u05:MICs, +17:u06:verification., +14:u12:3.6.4.1.1., +8:u13:mics, +17:u14:verification., +14:u03:3.6.4.1.1., +8:u04:MICs, +17:u05:verification., +14:u11:3.6.4.1.1., +8:u12:mics, +17:u13:verification., +7:u22:MIC, +8:u23:MICs, +14:u02:3.6.4.1.1., +8:u03:MICs, +17:u04:verification., +14:u10:3.6.4.1.1., +8:u11:mics, +17:u12:verification., +14:u01:3.6.4.1.1., +8:u02:MICs, +17:u03:verification., +8:u10:mics, +17:u11:verification., +14:u00:3.6.4.1.1., +8:u01:MICs, +17:u02:verification., +14:u08:3.6.4.1.2., +17:u10:verification., +8:u00:MICs, +17:u01:verification., +8:u08:MACs, +17:u00:verification., +14:u07:3.6.4.1.2., +14:u06:3.6.4.1.2., +8:u07:MACs, +14:u14:3.6.4.1.2., +14:u05:3.6.4.1.2., +8:u06:MACs, +14:u13:3.6.4.1.2., +8:u14:macs, +14:u04:3.6.4.1.2., +8:u05:MACs, +14:u12:3.6.4.1.2., +8:u13:macs, +14:u03:3.6.4.1.2., +8:u04:MACs, +14:u11:3.6.4.1.2., +8:u12:macs, +8:u23:MACs, +14:u02:3.6.4.1.2., +8:u03:MACs, +14:u10:3.6.4.1.2., +8:u11:macs, +14:u01:3.6.4.1.2., +8:u02:MACs, +14:u08:3.6.4.1.3., +8:u10:macs, +14:u00:3.6.4.1.2., +8:u01:MACs, +13:u08:Signature, +8:u00:MACs, +14:u07:3.6.4.1.3., +13:u07:Signature, +14:u06:3.6.4.1.3., +13:u06:Signature, +14:u14:3.6.4.1.3., +14:u05:3.6.4.1.3., +15:u08:parameters,, +13:u05:Signature, +14:u13:3.6.4.1.3., +14:u04:3.6.4.1.3., +13:u04:Signature, +14:u12:3.6.4.1.3., +14:u03:3.6.4.1.3., +15:u07:parameters,, +13:u03:Signature, +12:u08:locating, +14:u11:3.6.4.1.3., +14:u02:3.6.4.1.3., +15:u06:parameters,, +14:u08:3.6.4.1.4., +13:u02:Signature, +12:u07:locating, +14:u10:3.6.4.1.3., +15:u14:parameters,, +14:u01:3.6.4.1.3., +15:u05:parameters,, +13:u01:Signature, +12:u06:locating, +15:u13:parameters,, +14:u00:3.6.4.1.3., +15:u04:parameters,, +14:u07:3.6.4.1.4., +13:u00:Signature, +12:u05:locating, +15:u12:parameters,, +9:uI2:'()--, +15:u03:parameters,, +14:u06:3.6.4.1.4., +12:u04:locating, +15:u11:parameters,, +14:u14:3.6.4.1.4., +9:uI1:'()--, +15:u02:parameters,, +14:u05:3.6.4.1.4., +12:u03:locating, +8:u08:Ids,, +15:u10:parameters,, +14:u13:3.6.4.1.4., +9:uI0:'()--, +10:uI2:.....-, +15:u01:parameters,, +14:u04:3.6.4.1.4., +12:u02:locating, +8:u07:Ids,, +14:u12:3.6.4.1.4., +10:uI1:.....-, +15:u00:parameters,, +14:u03:3.6.4.1.4., +12:u01:locating, +8:u06:Ids,, +14:u11:3.6.4.1.4., +10:uI0:.....-, +14:u02:3.6.4.1.4., +12:u00:locating, +8:u05:Ids,, +14:u10:3.6.4.1.4., +14:u01:3.6.4.1.4., +8:u04:Ids,, +7:u23:Key, +14:u00:3.6.4.1.4., +8:u03:Ids,, +8:u02:Ids,, +8:u01:Ids,, +8:u00:Ids,, +9:u08:Below, +73:u08:+-------------+-----------------+-----------------------------------+, +9:u07:Below, +9:u06:Below, +73:u07:+-------------+-----------------+-----------------------------------+, +9:u05:Below, +73:u06:+-------------+-----------------+-----------------------------------+, +73:u14:+-------------+-----------------+-----------------------------------+, +9:u04:Below, +73:u05:+-------------+-----------------+-----------------------------------+, +73:u13:+-------------+-----------------+-----------------------------------+, +9:u03:Below, +73:u04:+-------------+-----------------+-----------------------------------+, +73:u12:+-------------+-----------------+-----------------------------------+, +9:u02:Below, +73:u03:+-------------+-----------------+-----------------------------------+, +73:u11:+-------------+-----------------+-----------------------------------+, +9:u01:Below, +73:u02:+-------------+-----------------+-----------------------------------+, +73:u10:+-------------+-----------------+-----------------------------------+, +9:u00:Below, +73:u01:+-------------+-----------------+-----------------------------------+, +73:u00:+-------------+-----------------+-----------------------------------+, +11:u08:T_KEYID, +11:u07:T_KEYID, +15:u08:SignerKeyId, +11:u06:T_KEYID, +11:u14:t_keyid, +11:u05:T_KEYID, +15:u07:SignerKeyId, +11:u13:t_keyid, +11:u04:T_KEYID, +15:u06:SignerKeyId, +11:u12:t_keyid, +15:u14:signerkeyid, +7:u22:T_K, +8:u23:T_KE, +11:u03:T_KEYID, +15:u05:SignerKeyId, +11:u11:t_keyid, +15:u13:signerkeyid, +11:u02:T_KEYID, +15:u04:SignerKeyId, +11:u10:t_keyid, +15:u12:signerkeyid, +11:u01:T_KEYID, +15:u03:SignerKeyId, +15:u11:signerkeyid, +11:u00:T_KEYID, +15:u02:SignerKeyId, +15:u10:signerkeyid, +15:u01:SignerKeyId, +15:u00:SignerKeyId, +16:u08:3.6.4.1.4.1), +16:u07:3.6.4.1.4.1), +16:u06:3.6.4.1.4.1), +16:u14:3.6.4.1.4.1), +16:u05:3.6.4.1.4.1), +16:u13:3.6.4.1.4.1), +11:uI2:.....)., +16:u04:3.6.4.1.4.1), +16:u12:3.6.4.1.4.1), +11:uI1:.....)., +16:u03:3.6.4.1.4.1), +16:u11:3.6.4.1.4.1), +11:uI0:.....)., +16:u02:3.6.4.1.4.1), +15:u08:T_PUBLICKEY, +16:u10:3.6.4.1.4.1), +16:u01:3.6.4.1.4.1), +15:u07:T_PUBLICKEY, +16:u00:3.6.4.1.4.1), +15:u06:T_PUBLICKEY, +15:u05:T_PUBLICKEY, +15:u04:T_PUBLICKEY, +15:u03:T_PUBLICKEY, +15:u02:T_PUBLICKEY, +15:u01:T_PUBLICKEY, +15:u00:T_PUBLICKEY, +16:u08:3.6.4.1.4.2), +16:u07:3.6.4.1.4.2), +16:u06:3.6.4.1.4.2), +16:u14:3.6.4.1.4.2), +16:u05:3.6.4.1.4.2), +16:u13:3.6.4.1.4.2), +10:uI2:.....), +16:u04:3.6.4.1.4.2), +16:u12:3.6.4.1.4.2), +10:uI1:.....), +16:u03:3.6.4.1.4.2), +16:u11:3.6.4.1.4.2), +10:uI0:.....), +16:u02:3.6.4.1.4.2), +10:u08:T_CERT, +16:u10:3.6.4.1.4.2), +16:u01:3.6.4.1.4.2), +16:u00:3.6.4.1.4.2), +10:u07:T_CERT, +10:u06:T_CERT, +10:u14:t_cert, +10:u05:T_CERT, +10:u13:t_cert, +10:u04:T_CERT, +10:u12:t_cert, +15:u14:certificate, +8:u23:T_CE, +10:u03:T_CERT, +10:u11:t_cert, +15:u13:certificate, +10:u02:T_CERT, +10:u10:t_cert, +15:u12:certificate, +10:u01:T_CERT, +15:u11:certificate, +10:u00:T_CERT, +15:u10:certificate, +16:u08:3.6.4.1.4.3), +16:u07:3.6.4.1.4.3), +16:u06:3.6.4.1.4.3), +16:u14:3.6.4.1.4.3), +16:u05:3.6.4.1.4.3), +16:u13:3.6.4.1.4.3), +16:u04:3.6.4.1.4.3), +16:u12:3.6.4.1.4.3), +16:u03:3.6.4.1.4.3), +16:u11:3.6.4.1.4.3), +16:u02:3.6.4.1.4.3), +13:u08:T_KEYLINK, +16:u10:3.6.4.1.4.3), +16:u01:3.6.4.1.4.3), +13:u07:T_KEYLINK, +16:u00:3.6.4.1.4.3), +13:u06:T_KEYLINK, +13:u05:T_KEYLINK, +13:u04:T_KEYLINK, +13:u03:T_KEYLINK, +13:u02:T_KEYLINK, +13:u01:T_KEYLINK, +13:u00:T_KEYLINK, +16:u08:3.6.4.1.4.4), +16:u07:3.6.4.1.4.4), +16:u06:3.6.4.1.4.4), +16:u14:3.6.4.1.4.4), +16:u05:3.6.4.1.4.4), +16:u13:3.6.4.1.4.4), +16:u04:3.6.4.1.4.4), +16:u12:3.6.4.1.4.4), +16:u03:3.6.4.1.4.4), +16:u11:3.6.4.1.4.4), +16:u02:3.6.4.1.4.4), +13:u08:T_SIGTIME, +16:u10:3.6.4.1.4.4), +16:u01:3.6.4.1.4.4), +13:u07:T_SIGTIME, +16:u00:3.6.4.1.4.4), +13:u06:T_SIGTIME, +13:u05:T_SIGTIME, +13:u04:T_SIGTIME, +13:u03:T_SIGTIME, +13:u02:T_SIGTIME, +13:u01:T_SIGTIME, +16:u08:3.6.4.1.4.5), +13:u00:T_SIGTIME, +16:u07:3.6.4.1.4.5), +16:u06:3.6.4.1.4.5), +16:u14:3.6.4.1.4.5), +16:u05:3.6.4.1.4.5), +16:u08:3.6.4.1.4.1., +16:u13:3.6.4.1.4.5), +16:u04:3.6.4.1.4.5), +16:u12:3.6.4.1.4.5), +16:u03:3.6.4.1.4.5), +16:u07:3.6.4.1.4.1., +16:u11:3.6.4.1.4.5), +16:u02:3.6.4.1.4.5), +16:u06:3.6.4.1.4.1., +16:u10:3.6.4.1.4.5), +16:u14:3.6.4.1.4.1., +16:u01:3.6.4.1.4.5), +16:u05:3.6.4.1.4.1., +15:u08:[RFC5280])., +16:u13:3.6.4.1.4.1., +16:u00:3.6.4.1.4.5), +16:u04:3.6.4.1.4.1., +15:u07:[RFC5280])., +16:u12:3.6.4.1.4.1., +16:u03:3.6.4.1.4.1., +15:u06:[RFC5280])., +16:u11:3.6.4.1.4.1., +9:uI2:.(..., +16:u02:3.6.4.1.4.1., +15:u05:[RFC5280])., +16:u10:3.6.4.1.4.1., +9:uI1:.(..., +9:uI2:[]).,, +16:u01:3.6.4.1.4.1., +15:u04:[RFC5280])., +9:uI0:.(..., +9:uI1:[]).,, +16:u00:3.6.4.1.4.1., +15:u03:[RFC5280])., +9:uI0:[]).,, +15:u02:[RFC5280])., +15:u01:[RFC5280])., +15:u00:[RFC5280])., +12:u08:LENGTH+4, +12:u07:LENGTH+4, +12:u06:LENGTH+4, +12:u14:length+4, +12:u05:LENGTH+4, +9:u08:<hash, +12:u13:length+4, +12:u04:LENGTH+4, +9:u08:type>, +12:u12:length+4, +12:u03:LENGTH+4, +9:u07:<hash, +9:u07:type>, +12:u11:length+4, +12:u02:LENGTH+4, +9:u06:<hash, +9:u06:type>, +12:u10:length+4, +9:u14:<hash, +12:u01:LENGTH+4, +9:u05:<hash, +9:u05:type>, +9:u13:<hash, +12:u00:LENGTH+4, +9:u04:<hash, +9:u04:type>, +9:u12:<hash, +7:u22:<ha, +8:u23:<has, +9:u03:<hash, +9:u03:type>, +9:u11:<hash, +9:u02:<hash, +9:u02:type>, +9:u10:<hash, +9:u01:<hash, +9:u01:type>, +9:u00:<hash, +9:u00:type>, +16:u08:3.6.4.1.4.2., +7:u08:24:, +7:u07:24:, +16:u07:3.6.4.1.4.2., +9:u08:X.509, +7:u06:24:, +16:u06:3.6.4.1.4.2., +7:u05:24:, +16:u08:certificate., +16:u14:3.6.4.1.4.2., +16:u05:3.6.4.1.4.2., +9:u07:X.509, +7:u04:24:, +16:u07:certificate., +16:u13:3.6.4.1.4.2., +16:u04:3.6.4.1.4.2., +9:u06:X.509, +7:u03:24:, +16:u06:certificate., +16:u12:3.6.4.1.4.2., +9:u14:x.509, +16:u03:3.6.4.1.4.2., +9:u05:X.509, +7:u02:24:, +16:u05:certificate., +16:u11:3.6.4.1.4.2., +9:u13:x.509, +16:u02:3.6.4.1.4.2., +9:u04:X.509, +7:u01:24:, +16:u04:certificate., +16:u10:3.6.4.1.4.2., +9:u12:x.509, +7:u22:X.5, +8:u23:X.50, +16:u01:3.6.4.1.4.2., +9:u03:X.509, +7:u00:24:, +16:u03:certificate., +9:u11:x.509, +16:u00:3.6.4.1.4.2., +9:u02:X.509, +16:u02:certificate., +9:u10:x.509, +9:u01:X.509, +16:u01:certificate., +9:u00:X.509, +16:u00:certificate., +15:u14:t_publickey, +15:u13:t_publickey, +15:u12:t_publickey, +8:u23:T_PU, +15:u11:t_publickey, +15:u10:t_publickey, +16:u08:3.6.4.1.4.3., +7:u08:25:, +7:u07:25:, +16:u07:3.6.4.1.4.3., +7:u06:25:, +16:u06:3.6.4.1.4.3., +7:u05:25:, +16:u14:3.6.4.1.4.3., +16:u05:3.6.4.1.4.3., +7:u04:25:, +16:u13:3.6.4.1.4.3., +16:u04:3.6.4.1.4.3., +7:u03:25:, +16:u12:3.6.4.1.4.3., +16:u03:3.6.4.1.4.3., +7:u02:25:, +16:u11:3.6.4.1.4.3., +12:uI2:(.....)., +16:u02:3.6.4.1.4.3., +7:u01:25:, +16:u10:3.6.4.1.4.3., +12:uI1:(.....)., +16:u01:3.6.4.1.4.3., +7:u00:25:, +12:uI0:(.....)., +16:u00:3.6.4.1.4.3., +16:u08:(DER-encoded, +16:u07:(DER-encoded, +16:u06:(DER-encoded, +16:u05:(DER-encoded, +7:u08:26:, +8:uI2:(-.), +16:u04:(DER-encoded, +7:u07:26:, +8:uI1:(-.), +16:u03:(DER-encoded, +7:u06:26:, +8:uI0:(-.), +16:u02:(DER-encoded, +7:u05:26:, +16:u01:(DER-encoded, +7:u04:26:, +16:u00:(DER-encoded, +7:u03:26:, +16:u08:3.6.4.1.4.4., +7:u02:26:, +7:u01:26:, +16:u07:3.6.4.1.4.4., +7:u00:26:, +16:u06:3.6.4.1.4.4., +16:u14:3.6.4.1.4.4., +16:u05:3.6.4.1.4.4., +8:u08:key., +16:u13:3.6.4.1.4.4., +16:u04:3.6.4.1.4.4., +18:u08:ContentObject,, +16:u12:3.6.4.1.4.4., +16:u03:3.6.4.1.4.4., +8:u07:key., +16:u11:3.6.4.1.4.4., +16:u02:3.6.4.1.4.4., +8:u06:key., +18:u07:ContentObject,, +16:u10:3.6.4.1.4.4., +8:u14:key., +16:u01:3.6.4.1.4.4., +8:u05:key., +18:u06:ContentObject,, +8:u13:key., +18:u14:contentobject,, +16:u00:3.6.4.1.4.4., +8:u04:key., +18:u05:ContentObject,, +8:u12:key., +18:u13:contentobject,, +8:u23:key., +8:u03:key., +18:u04:ContentObject,, +69:u08:+---------------+---------------+-------------------------------+, +8:u11:key., +18:u12:contentobject,, +8:u02:key., +18:u03:ContentObject,, +8:u10:key., +18:u11:contentobject,, +8:u01:key., +18:u02:ContentObject,, +69:u07:+---------------+---------------+-------------------------------+, +18:u10:contentobject,, +8:u00:key., +18:u01:ContentObject,, +69:u06:+---------------+---------------+-------------------------------+, +69:u14:+---------------+---------------+-------------------------------+, +18:u00:ContentObject,, +69:u05:+---------------+---------------+-------------------------------+, +69:u13:+---------------+---------------+-------------------------------+, +69:u04:+---------------+---------------+-------------------------------+, +69:u12:+---------------+---------------+-------------------------------+, +13:u14:t_keylink, +69:u03:+---------------+---------------+-------------------------------+, +69:u11:+---------------+---------------+-------------------------------+, +13:u13:t_keylink, +69:u02:+---------------+---------------+-------------------------------+, +69:u10:+---------------+---------------+-------------------------------+, +13:u12:t_keylink, +69:u01:+---------------+---------------+-------------------------------+, +13:u11:t_keylink, +69:u00:+---------------+---------------+-------------------------------+, +13:u10:t_keylink, +16:u08:3.6.4.1.4.5., +7:u08:27:, +7:u07:27:, +17:u08:SignatureTime, +16:u07:3.6.4.1.4.5., +7:u06:27:, +17:u07:SignatureTime, +16:u06:3.6.4.1.4.5., +7:u05:27:, +17:u06:SignatureTime, +16:u14:3.6.4.1.4.5., +16:u05:3.6.4.1.4.5., +7:u04:27:, +17:u05:SignatureTime, +16:u13:3.6.4.1.4.5., +16:u04:3.6.4.1.4.5., +7:u03:27:, +17:u04:SignatureTime, +16:u12:3.6.4.1.4.5., +16:u03:3.6.4.1.4.5., +7:u02:27:, +17:u03:SignatureTime, +16:u11:3.6.4.1.4.5., +16:u02:3.6.4.1.4.5., +7:u01:27:, +17:u02:SignatureTime, +16:u10:3.6.4.1.4.5., +16:u01:3.6.4.1.4.5., +7:u00:27:, +17:u01:SignatureTime, +16:u00:3.6.4.1.4.5., +17:u00:SignatureTime, +8:u08:HMAC, +8:u07:HMAC, +8:u06:HMAC, +8:u05:HMAC, +17:u14:signaturetime, +8:u04:HMAC, +17:u13:signaturetime, +8:u03:HMAC, +17:u12:signaturetime, +8:u02:HMAC, +17:u11:signaturetime, +8:u01:HMAC, +17:u10:signaturetime, +8:u00:HMAC, +13:u14:t_sigtime, +13:u13:t_sigtime, +13:u12:t_sigtime, +8:u23:T_SI, +13:u11:t_sigtime, +13:u10:t_sigtime, +7:u08:28:, +7:u07:28:, +7:u06:28:, +7:u05:28:, +7:u04:28:, +7:u03:28:, +14:u08:3.6.4.1.5., +7:u02:28:, +7:u01:28:, +14:u07:3.6.4.1.5., +7:u00:28:, +14:u06:3.6.4.1.5., +14:u14:3.6.4.1.5., +14:u05:3.6.4.1.5., +14:u13:3.6.4.1.5., +14:u04:3.6.4.1.5., +14:u12:3.6.4.1.5., +14:u03:3.6.4.1.5., +14:u11:3.6.4.1.5., +14:u02:3.6.4.1.5., +14:u10:3.6.4.1.5., +14:u01:3.6.4.1.5., +14:u00:3.6.4.1.5., +7:u08:29:, +7:u07:29:, +7:u06:29:, +7:u05:29:, +7:u04:29:, +7:u03:29:, +7:u02:29:, +7:u01:29:, +7:u00:29:, +6:u14:40, +6:u13:40, +6:u12:40, +6:u22:40, +6:u23:40, +6:u11:40, +6:u10:40, +17:u14:t_hmac-sha256, +17:u13:t_hmac-sha256, +17:u12:t_hmac-sha256, +7:u22:T_H, +8:u23:T_HM, +17:u11:t_hmac-sha256, +17:u10:t_hmac-sha256, +69:u08:/---------------+---------------+-------------------------------+, +9:u14:keyid, +69:u07:/---------------+---------------+-------------------------------+, +7:u08:30:, +9:u13:keyid, +69:u06:/---------------+---------------+-------------------------------+, +7:u07:30:, +9:u12:keyid, +69:u14:/---------------+---------------+-------------------------------+, +8:u23:KeyI, +69:u05:/---------------+---------------+-------------------------------+, +7:u06:30:, +9:u11:keyid, +69:u13:/---------------+---------------+-------------------------------+, +66:uI2:/-------------------------------------------------------------, +69:u04:/---------------+---------------+-------------------------------+, +7:u05:30:, +9:u10:keyid, +69:u12:/---------------+---------------+-------------------------------+, +66:uI1:/-------------------------------------------------------------, +69:u03:/---------------+---------------+-------------------------------+, +7:u04:30:, +69:u11:/---------------+---------------+-------------------------------+, +66:uI0:/-------------------------------------------------------------, +69:u02:/---------------+---------------+-------------------------------+, +7:u03:30:, +69:u10:/---------------+---------------+-------------------------------+, +69:u01:/---------------+---------------+-------------------------------+, +7:u02:30:, +69:u00:/---------------+---------------+-------------------------------+, +14:u08:public-key, +7:u01:30:, +7:u00:30:, +14:u07:public-key, +14:u06:public-key, +14:u14:public-key, +14:u05:public-key, +14:u13:public-key, +14:u04:public-key, +14:u12:public-key, +14:u03:public-key, +14:u11:public-key, +14:u02:public-key, +14:u10:public-key, +14:u01:public-key, +14:u00:public-key, +6:u14:44, +6:u13:44, +6:u12:44, +6:u21:44, +6:u22:44, +6:u23:44, +6:u11:44, +6:u10:44, +7:u08:31:, +7:u07:31:, +7:u06:31:, +7:u05:31:, +7:u04:31:, +7:u03:31:, +7:u02:31:, +7:u01:31:, +7:u00:31:, +27:u08:ValidationPayloadLength, +27:u07:ValidationPayloadLength, +24:u14:t_validation_payload, +27:u06:ValidationPayloadLength, +24:u13:t_validation_payload, +27:u05:ValidationPayloadLength, +18:u08:Type-dependent, +24:u12:t_validation_payload, +27:u04:ValidationPayloadLength, +18:u07:Type-dependent, +24:u11:t_validation_payload, +27:u03:ValidationPayloadLength, +18:u06:Type-dependent, +24:u10:t_validation_payload, +27:u02:ValidationPayloadLength, +18:u05:Type-dependent, +7:u08:32:, +27:u01:ValidationPayloadLength, +18:u04:Type-dependent, +7:u07:32:, +27:u00:ValidationPayloadLength, +18:u03:Type-dependent, +7:u06:32:, +18:u02:Type-dependent, +7:u05:32:, +18:u01:Type-dependent, +7:u04:32:, +18:u00:Type-dependent, +7:u03:32:, +7:u02:32:, +7:u01:32:, +7:u00:32:, +13:u08:expanding, +10:u08:types., +13:u07:expanding, +20:u08:"Content-Centric, +15:u14:registered., +13:u06:expanding, +10:u07:types., +18:u08:subregistries., +15:u13:registered., +13:u14:expanding, +13:u05:expanding, +10:u06:types., +20:u07:"Content-Centric, +15:u12:registered., +13:u13:expanding, +10:u14:types., +13:u04:expanding, +10:u05:types., +20:u06:"Content-Centric, +18:u07:subregistries., +15:u11:registered., +13:u12:expanding, +10:u13:types., +20:u14:"content-centric, +8:uI2:.[],, +13:u03:expanding, +10:u04:types., +20:u05:"Content-Centric, +18:u06:subregistries., +15:u10:registered., +13:u11:expanding, +10:u12:types., +20:u13:"content-centric, +18:u14:subregistries., +8:uI1:.[],, +13:u02:expanding, +10:u03:types., +20:u04:"Content-Centric, +18:u05:subregistries., +13:u08:Required., +13:u10:expanding, +10:u11:types., +20:u12:"content-centric, +18:u13:subregistries., +7:u22:"Co, +8:u23:"Con, +8:uI0:.[],, +13:u01:expanding, +10:u02:types., +20:u03:"Content-Centric, +18:u04:subregistries., +61:u08:+------+-------------+----------------------------------+, +10:u10:types., +20:u11:"content-centric, +18:u12:subregistries., +8:u23:subr, +13:u00:expanding, +10:u01:types., +20:u02:"Content-Centric, +18:u03:subregistries., +13:u07:Required., +20:u10:"content-centric, +18:u11:subregistries., +10:u00:types., +20:u01:"Content-Centric, +18:u02:subregistries., +13:u06:Required., +61:u07:+------+-------------+----------------------------------+, +18:u10:subregistries., +20:u00:"Content-Centric, +18:u01:subregistries., +13:u05:Required., +61:u06:+------+-------------+----------------------------------+, +61:u14:+------+-------------+----------------------------------+, +18:u00:subregistries., +13:u04:Required., +61:u05:+------+-------------+----------------------------------+, +61:u13:+------+-------------+----------------------------------+, +13:u03:Required., +61:u04:+------+-------------+----------------------------------+, +61:u12:+------+-------------+----------------------------------+, +13:u02:Required., +61:u03:+------+-------------+----------------------------------+, +61:u11:+------+-------------+----------------------------------+, +13:u01:Required., +61:u02:+------+-------------+----------------------------------+, +61:u10:+------+-------------+----------------------------------+, +13:u00:Required., +61:u01:+------+-------------+----------------------------------+, +8:u08:0x00, +61:u00:+------+-------------+----------------------------------+, +8:u07:0x00, +8:u06:0x00, +8:u05:0x00, +8:u04:0x00, +8:u03:0x00, +8:u08:0x01, +8:u02:0x00, +8:u07:0x01, +8:u01:0x00, +8:u06:0x01, +8:u00:0x00, +8:u05:0x01, +8:u04:0x01, +8:u03:0x01, +8:u02:0x01, +8:u01:0x01, +8:u00:0x01, +73:u08:+------+---------------------------------------+--------------------+, +10:u08:octet., +10:u07:octet., +73:u07:+------+---------------------------------------+--------------------+, +10:u06:octet., +73:u06:+------+---------------------------------------+--------------------+, +10:u05:octet., +73:u14:+------+---------------------------------------+--------------------+, +73:u05:+------+---------------------------------------+--------------------+, +10:u04:octet., +73:u13:+------+---------------------------------------+--------------------+, +73:u04:+------+---------------------------------------+--------------------+, +10:u03:octet., +73:u12:+------+---------------------------------------+--------------------+, +73:u03:+------+---------------------------------------+--------------------+, +10:u02:octet., +73:u11:+------+---------------------------------------+--------------------+, +73:u02:+------+---------------------------------------+--------------------+, +10:u01:octet., +73:u10:+------+---------------------------------------+--------------------+, +73:u01:+------+---------------------------------------+--------------------+, +10:u00:octet., +73:u00:+------+---------------------------------------+--------------------+, +8:u08:0x04, +8:u07:0x04, +8:u06:0x04, +8:u05:0x04, +8:u04:0x04, +8:u03:0x04, +8:u02:0x04, +8:u01:0x04, +8:u00:0x04, +8:u08:0x05, +8:u07:0x05, +8:u06:0x05, +8:u05:0x05, +8:u04:0x05, +8:u03:0x05, +8:u02:0x05, +8:u01:0x05, +8:u00:0x05, +8:u08:0x06, +8:u07:0x06, +8:u06:0x06, +8:u05:0x06, +8:u04:0x06, +8:u03:0x06, +8:u02:0x06, +8:u01:0x06, +8:u00:0x06, +8:u08:0x07, +8:u07:0x07, +8:u06:0x07, +8:u05:0x07, +8:u04:0x07, +8:u03:0x07, +8:u02:0x07, +8:u01:0x07, +8:u00:0x07, +8:u08:0x08, +8:u07:0x08, +8:u06:0x08, +8:u05:0x08, +8:u04:0x08, +8:u03:0x08, +8:u02:0x08, +8:u01:0x08, +8:u00:0x08, +8:u08:0x09, +8:u07:0x09, +8:u06:0x09, +8:u05:0x09, +8:u04:0x09, +8:u03:0x09, +8:u02:0x09, +8:u01:0x09, +8:u00:0x09, +18:u08:0x0000-0xFFFF., +18:u07:0x0000-0xFFFF., +18:u06:0x0000-0xFFFF., +18:u14:0x0000-0xffff., +18:u05:0x0000-0xFFFF., +18:u13:0x0000-0xffff., +18:u04:0x0000-0xFFFF., +18:u12:0x0000-0xffff., +18:u03:0x0000-0xFFFF., +18:u11:0x0000-0xffff., +18:u02:0x0000-0xFFFF., +18:u10:0x0000-0xffff., +18:u01:0x0000-0xFFFF., +18:u00:0x0000-0xFFFF., +10:u08:0x0000, +10:u07:0x0000, +10:u06:0x0000, +10:u14:0x0000, +10:u05:0x0000, +10:u13:0x0000, +10:u04:0x0000, +10:u12:0x0000, +10:u03:0x0000, +10:u11:0x0000, +10:u02:0x0000, +10:u10:0x0000, +10:u01:0x0000, +10:u00:0x0000, +10:u08:0x0001, +10:u07:0x0001, +10:u06:0x0001, +10:u14:0x0001, +10:u05:0x0001, +10:u13:0x0001, +10:u04:0x0001, +10:u12:0x0001, +10:u03:0x0001, +10:u11:0x0001, +7:uI2:--(, +10:u02:0x0001, +8:u08:3.4), +10:u10:0x0001, +7:uI1:--(, +10:u01:0x0001, +7:uI0:--(, +10:u00:0x0001, +8:u07:3.4), +8:u06:3.4), +8:u14:3.4), +8:u05:3.4), +8:u13:3.4), +8:u04:3.4), +8:u12:3.4), +8:u23:3.4), +8:u03:3.4), +8:u11:3.4), +8:u02:3.4), +10:u08:0x0002, +8:u10:3.4), +8:u01:3.4), +8:u00:3.4), +10:u07:0x0002, +10:u06:0x0002, +10:u14:0x0002, +10:u05:0x0002, +10:u13:0x0002, +10:u04:0x0002, +10:u12:0x0002, +10:u03:0x0002, +10:u11:0x0002, +10:u02:0x0002, +10:u10:0x0002, +10:u01:0x0002, +10:u00:0x0002, +10:u08:0x0003, +10:u07:0x0003, +10:u06:0x0003, +10:u14:0x0003, +10:u05:0x0003, +10:u13:0x0003, +10:u04:0x0003, +10:u12:0x0003, +10:u03:0x0003, +10:u11:0x0003, +10:u02:0x0003, +10:u10:0x0003, +10:u01:0x0003, +10:u00:0x0003, +10:u08:0x0004, +5:u08:-, +10:u07:0x0004, +5:u07:-, +10:u06:0x0004, +5:u06:-, +10:u14:0x0004, +10:u05:0x0004, +5:u05:-, +10:u13:0x0004, +10:u04:0x0004, +10:u08:0x0007, +5:u04:-, +10:u12:0x0004, +10:u03:0x0004, +5:u03:-, +10:u11:0x0004, +10:u02:0x0004, +10:u07:0x0007, +5:u02:-, +10:u10:0x0004, +10:u01:0x0004, +10:u06:0x0007, +5:u01:-, +10:u14:0x0007, +10:u00:0x0004, +10:u05:0x0007, +5:u00:-, +10:u13:0x0007, +10:u04:0x0007, +10:u12:0x0007, +10:u03:0x0007, +10:u11:0x0007, +10:u02:0x0007, +10:u10:0x0007, +10:u01:0x0007, +10:u00:0x0007, +10:u08:0x0FFE, +10:u07:0x0FFE, +10:u06:0x0FFE, +10:u14:0x0ffe, +10:u05:0x0FFE, +10:u13:0x0ffe, +10:u04:0x0FFE, +10:u12:0x0ffe, +8:u23:0x0F, +10:u03:0x0FFE, +10:u11:0x0ffe, +10:u02:0x0FFE, +10:u10:0x0ffe, +7:u14:pad, +10:u01:0x0FFE, +7:u13:pad, +10:u00:0x0FFE, +7:u12:pad, +7:u23:Pad, +7:u11:pad, +10:u08:0x0FFF, +7:u10:pad, +10:u07:0x0FFF, +10:u06:0x0FFF, +10:u14:0x0fff, +10:u05:0x0FFF, +10:u13:0x0fff, +10:u04:0x0FFF, +10:u12:0x0fff, +10:u03:0x0FFF, +10:u11:0x0fff, +10:u02:0x0FFF, +10:u08:3.3.2), +10:u10:0x0fff, +10:u01:0x0FFF, +10:u00:0x0FFF, +10:u07:3.3.2), +10:u06:3.3.2), +10:u14:3.3.2), +10:u05:3.3.2), +10:u13:3.3.2), +10:u04:3.3.2), +10:u12:3.3.2), +10:u03:3.3.2), +10:u11:3.3.2), +10:u02:3.3.2), +17:u08:0x1000-0x1FFF, +10:u10:3.3.2), +10:u01:3.3.2), +17:u07:0x1000-0x1FFF, +10:u00:3.3.2), +17:u06:0x1000-0x1FFF, +17:u05:0x1000-0x1FFF, +17:u04:0x1000-0x1FFF, +17:u03:0x1000-0x1FFF, +17:u02:0x1000-0x1FFF, +17:u01:0x1000-0x1FFF, +17:u00:0x1000-0x1FFF, +69:u08:+--------+----------------------+-------------------------------+, +69:u07:+--------+----------------------+-------------------------------+, +69:u06:+--------+----------------------+-------------------------------+, +69:u14:+--------+----------------------+-------------------------------+, +69:u05:+--------+----------------------+-------------------------------+, +69:u13:+--------+----------------------+-------------------------------+, +69:u04:+--------+----------------------+-------------------------------+, +69:u12:+--------+----------------------+-------------------------------+, +69:u03:+--------+----------------------+-------------------------------+, +69:u11:+--------+----------------------+-------------------------------+, +69:u02:+--------+----------------------+-------------------------------+, +69:u10:+--------+----------------------+-------------------------------+, +69:u01:+--------+----------------------+-------------------------------+, +69:u00:+--------+----------------------+-------------------------------+, +73:u08:+--------------+------------------+---------------------------------+, +73:u07:+--------------+------------------+---------------------------------+, +73:u06:+--------------+------------------+---------------------------------+, +73:u14:+--------------+------------------+---------------------------------+, +73:u05:+--------------+------------------+---------------------------------+, +73:u13:+--------------+------------------+---------------------------------+, +73:u04:+--------------+------------------+---------------------------------+, +73:u12:+--------------+------------------+---------------------------------+, +73:u03:+--------------+------------------+---------------------------------+, +73:u11:+--------------+------------------+---------------------------------+, +73:u02:+--------------+------------------+---------------------------------+, +73:u10:+--------------+------------------+---------------------------------+, +73:u01:+--------------+------------------+---------------------------------+, +73:u00:+--------------+------------------+---------------------------------+, +10:u08:0x0010, +10:u07:0x0010, +10:u06:0x0010, +10:u14:0x0010, +10:u05:0x0010, +10:u13:0x0010, +10:u04:0x0010, +10:u12:0x0010, +10:u03:0x0010, +10:u11:0x0010, +10:u02:0x0010, +10:u08:0x0013, +10:u10:0x0010, +10:u01:0x0010, +10:u00:0x0010, +10:u07:0x0013, +10:u06:0x0013, +10:u14:0x0013, +10:u05:0x0013, +10:u13:0x0013, +10:u04:0x0013, +10:u12:0x0013, +10:u03:0x0013, +10:u11:0x0013, +10:u02:0x0013, +10:u10:0x0013, +10:u01:0x0013, +10:u00:0x0013, +10:u08:0x1000, +10:u07:0x1000, +10:u06:0x1000, +10:u14:0x1000, +10:u05:0x1000, +10:u13:0x1000, +10:u04:0x1000, +10:u08:0x1FFF, +10:u12:0x1000, +8:u23:0x10, +10:u03:0x1000, +10:u11:0x1000, +10:u02:0x1000, +10:u07:0x1FFF, +10:u10:0x1000, +10:u01:0x1000, +10:u06:0x1FFF, +10:u14:0x1fff, +10:u00:0x1000, +10:u05:0x1FFF, +10:u13:0x1fff, +10:u04:0x1FFF, +10:u12:0x1fff, +8:u23:0x1F, +10:u03:0x1FFF, +10:u11:0x1fff, +10:u02:0x1FFF, +10:u10:0x1fff, +10:u01:0x1FFF, +10:u00:0x1FFF, +73:u08:+---------------+----------------+----------------------------------+, +73:u07:+---------------+----------------+----------------------------------+, +73:u06:+---------------+----------------+----------------------------------+, +73:u14:+---------------+----------------+----------------------------------+, +73:u05:+---------------+----------------+----------------------------------+, +73:u13:+---------------+----------------+----------------------------------+, +73:u04:+---------------+----------------+----------------------------------+, +73:u12:+---------------+----------------+----------------------------------+, +73:u03:+---------------+----------------+----------------------------------+, +73:u11:+---------------+----------------+----------------------------------+, +73:u02:+---------------+----------------+----------------------------------+, +73:u10:+---------------+----------------+----------------------------------+, +73:u01:+---------------+----------------+----------------------------------+, +73:u00:+---------------+----------------+----------------------------------+, +10:u08:0x0005, +10:u07:0x0005, +10:u06:0x0005, +10:u14:0x0005, +10:u05:0x0005, +10:u13:0x0005, +10:u04:0x0005, +10:u12:0x0005, +10:u03:0x0005, +10:u11:0x0005, +10:u02:0x0005, +10:u10:0x0005, +10:u01:0x0005, +10:u00:0x0005, +12:u08:3.6.2.2), +12:u07:3.6.2.2), +12:u06:3.6.2.2), +12:u05:3.6.2.2), +12:u04:3.6.2.2), +12:u03:3.6.2.2), +10:u08:0x0006, +12:u02:3.6.2.2), +12:u01:3.6.2.2), +10:u07:0x0006, +12:u00:3.6.2.2), +10:u06:0x0006, +10:u14:0x0006, +10:u05:0x0006, +10:u13:0x0006, +10:u04:0x0006, +10:u12:0x0006, +10:u03:0x0006, +10:u11:0x0006, +10:u02:0x0006, +10:u10:0x0006, +10:u01:0x0006, +10:u00:0x0006, +10:u08:0x000C, +10:u07:0x000C, +10:u06:0x000C, +10:u14:0x000c, +10:u05:0x000C, +10:u13:0x000c, +10:u04:0x000C, +10:u12:0x000c, +10:u03:0x000C, +10:u11:0x000c, +10:u02:0x000C, +10:u10:0x000c, +10:u01:0x000C, +10:u00:0x000C, +14:u08:0x00-0xFF., +69:u08:+------+--------------------+-----------------------------------+, +14:u07:0x00-0xFF., +14:u06:0x00-0xFF., +69:u07:+------+--------------------+-----------------------------------+, +14:u14:0x00-0xff., +14:u05:0x00-0xFF., +69:u06:+------+--------------------+-----------------------------------+, +14:u13:0x00-0xff., +69:u14:+------+--------------------+-----------------------------------+, +14:u04:0x00-0xFF., +69:u05:+------+--------------------+-----------------------------------+, +14:u12:0x00-0xff., +69:u13:+------+--------------------+-----------------------------------+, +14:u03:0x00-0xFF., +69:u04:+------+--------------------+-----------------------------------+, +14:u11:0x00-0xff., +69:u12:+------+--------------------+-----------------------------------+, +14:u02:0x00-0xFF., +69:u03:+------+--------------------+-----------------------------------+, +14:u10:0x00-0xff., +69:u11:+------+--------------------+-----------------------------------+, +14:u01:0x00-0xFF., +69:u02:+------+--------------------+-----------------------------------+, +69:u10:+------+--------------------+-----------------------------------+, +14:u00:0x00-0xFF., +69:u01:+------+--------------------+-----------------------------------+, +69:u00:+------+--------------------+-----------------------------------+, +73:u08:+---------------+-----------------+---------------------------------+, +11:u08:octets., +11:u07:octets., +73:u07:+---------------+-----------------+---------------------------------+, +11:u06:octets., +73:u06:+---------------+-----------------+---------------------------------+, +11:u05:octets., +73:u14:+---------------+-----------------+---------------------------------+, +73:u05:+---------------+-----------------+---------------------------------+, +11:u04:octets., +73:u13:+---------------+-----------------+---------------------------------+, +73:u04:+---------------+-----------------+---------------------------------+, +11:u03:octets., +73:u12:+---------------+-----------------+---------------------------------+, +73:u03:+---------------+-----------------+---------------------------------+, +11:u02:octets., +73:u11:+---------------+-----------------+---------------------------------+, +73:u02:+---------------+-----------------+---------------------------------+, +11:u01:octets., +73:u10:+---------------+-----------------+---------------------------------+, +73:u01:+---------------+-----------------+---------------------------------+, +11:u00:octets., +73:u00:+---------------+-----------------+---------------------------------+, +12:u14:3.6.4.1), +12:u13:3.6.4.1), +12:u12:3.6.4.1), +12:u11:3.6.4.1), +12:u10:3.6.4.1), +11:u14:octets., +11:u13:octets., +11:u12:octets., +11:u11:octets., +11:u10:octets., +10:u08:0x0009, +10:u07:0x0009, +10:u06:0x0009, +10:u14:0x0009, +10:u05:0x0009, +10:u13:0x0009, +10:u04:0x0009, +10:u12:0x0009, +10:u03:0x0009, +10:u11:0x0009, +10:u02:0x0009, +10:u10:0x0009, +24:u14:validation-dependent, +10:u01:0x0009, +24:u13:validation-dependent, +10:u00:0x0009, +24:u12:validation-dependent, +14:u08:3.6.4.1.4), +24:u11:validation-dependent, +14:u07:3.6.4.1.4), +24:u10:validation-dependent, +14:u06:3.6.4.1.4), +14:u05:3.6.4.1.4), +14:u04:3.6.4.1.4), +14:u03:3.6.4.1.4), +10:u08:0x000A, +14:u02:3.6.4.1.4), +14:u01:3.6.4.1.4), +10:u07:0x000A, +14:u00:3.6.4.1.4), +18:u08:T_PUBLICKEYLOC, +10:u06:0x000A, +18:u07:T_PUBLICKEYLOC, +10:u14:0x000a, +10:u05:0x000A, +18:u06:T_PUBLICKEYLOC, +10:u13:0x000a, +10:u04:0x000A, +18:u05:T_PUBLICKEYLOC, +10:u12:0x000a, +10:u03:0x000A, +18:u04:T_PUBLICKEYLOC, +10:u11:0x000a, +10:u02:0x000A, +18:u03:T_PUBLICKEYLOC, +10:u10:0x000a, +10:u01:0x000A, +18:u02:T_PUBLICKEYLOC, +10:u00:0x000A, +18:u01:T_PUBLICKEYLOC, +18:u00:T_PUBLICKEYLOC, +10:u08:0x000B, +10:u07:0x000B, +10:u06:0x000B, +10:u14:0x000b, +10:u05:0x000B, +10:u13:0x000b, +10:u04:0x000B, +10:u12:0x000b, +10:u03:0x000B, +10:u11:0x000b, +10:u02:0x000B, +10:u10:0x000b, +10:u01:0x000B, +10:u00:0x000B, +10:u08:0x000D, +10:u07:0x000D, +10:u08:T_LINK, +10:u06:0x000D, +10:u14:0x000d, +10:u05:0x000D, +10:u07:T_LINK, +10:u13:0x000d, +10:u04:0x000D, +10:u06:T_LINK, +10:u12:0x000d, +10:u14:t_link, +10:u03:0x000D, +10:u05:T_LINK, +10:u11:0x000d, +10:u13:t_link, +10:u02:0x000D, +10:u04:T_LINK, +10:u10:0x000d, +10:u12:t_link, +7:u22:T_L, +8:u23:T_LI, +10:u01:0x000D, +10:u03:T_LINK, +10:u11:t_link, +10:u00:0x000D, +10:u02:T_LINK, +10:u10:t_link, +10:u01:T_LINK, +10:u00:T_LINK, +10:u08:0x000E, +10:u07:0x000E, +10:u06:0x000E, +10:u14:0x000e, +10:u05:0x000E, +10:u13:0x000e, +10:u04:0x000E, +10:u12:0x000e, +10:u03:0x000E, +10:u11:0x000e, +10:u02:0x000E, +10:u10:0x000e, +10:u01:0x000E, +10:u00:0x000E, +10:u08:0x000F, +10:u07:0x000F, +10:u06:0x000F, +10:u14:0x000f, +10:u05:0x000F, +10:u13:0x000f, +10:u04:0x000F, +10:u12:0x000f, +10:u03:0x000F, +10:u11:0x000f, +10:u02:0x000F, +10:u10:0x000f, +10:u01:0x000F, +10:u00:0x000F, +73:u08:+---------------+-----------+---------------------------------------+, +73:u07:+---------------+-----------+---------------------------------------+, +73:u06:+---------------+-----------+---------------------------------------+, +73:u14:+---------------+-----------+---------------------------------------+, +73:u05:+---------------+-----------+---------------------------------------+, +73:u13:+---------------+-----------+---------------------------------------+, +73:u04:+---------------+-----------+---------------------------------------+, +73:u12:+---------------+-----------+---------------------------------------+, +73:u03:+---------------+-----------+---------------------------------------+, +73:u11:+---------------+-----------+---------------------------------------+, +73:u02:+---------------+-----------+---------------------------------------+, +73:u10:+---------------+-----------+---------------------------------------+, +73:u01:+---------------+-----------+---------------------------------------+, +73:u00:+---------------+-----------+---------------------------------------+, +10:u08:Format, +10:u07:Format, +10:u06:Format, +10:u05:Format, +10:u04:Format, +10:u03:Format, +10:u02:Format, +10:u01:Format, +10:u00:Format, +12:u08:tunnels., +12:u07:tunnels., +12:u06:tunnels., +12:u14:tunnels., +12:u05:tunnels., +12:u13:tunnels., +12:u04:tunnels., +14:u08:high-layer, +12:u12:tunnels., +12:u03:tunnels., +12:u11:tunnels., +12:u02:tunnels., +14:u07:high-layer, +11:u08:SHA-256, +12:u10:tunnels., +12:u01:tunnels., +14:u06:high-layer, +10:u08:ECDSA), +14:u14:high-layer, +12:u00:tunnels., +14:u05:high-layer, +11:u07:SHA-256, +14:u13:high-layer, +13:uI2:-(..,[])., +14:u04:high-layer, +11:u06:SHA-256, +10:u07:ECDSA), +14:u12:high-layer, +11:u14:sha-256, +13:uI1:-(..,[])., +14:u03:high-layer, +11:u05:SHA-256, +10:u06:ECDSA), +14:u11:high-layer, +11:u13:sha-256, +10:u14:ecdsa), +13:uI0:-(..,[])., +17:uI2:-),(..,),(..,, +14:u02:high-layer, +11:u04:SHA-256, +10:u05:ECDSA), +14:u10:high-layer, +11:u12:sha-256, +10:u13:ecdsa), +9:u14:will,, +8:u23:SHA-, +17:uI1:-),(..,),(..,, +14:u01:high-layer, +11:u03:SHA-256, +10:u04:ECDSA), +14:u08:Signatures, +11:u11:sha-256, +10:u12:ecdsa), +9:u13:will,, +6:u21:EC, +7:u22:ECD, +8:u23:ECDS, +17:uI0:-),(..,),(..,, +14:u00:high-layer, +11:u02:SHA-256, +10:u03:ECDSA), +14:u07:Signatures, +11:u10:sha-256, +10:u11:ecdsa), +9:u12:will,, +11:u01:SHA-256, +10:u02:ECDSA), +14:u06:Signatures, +10:u10:ecdsa), +9:u11:will,, +11:u00:SHA-256, +10:u01:ECDSA), +14:u05:Signatures, +14:u08:guideline,, +9:u10:will,, +10:u00:ECDSA), +13:u08:Interest,, +14:u04:Signatures, +14:u07:guideline,, +19:u08:unintentionally, +14:u03:Signatures, +14:u06:guideline,, +19:u07:unintentionally, +11:u14:general, +13:u07:Interest,, +14:u02:Signatures, +14:u05:guideline,, +19:u06:unintentionally, +11:u13:general, +13:u06:Interest,, +14:u01:Signatures, +14:u04:guideline,, +19:u05:unintentionally, +11:u12:general, +13:u05:Interest,, +14:u00:Signatures, +14:u03:guideline,, +19:u04:unintentionally, +11:u11:general, +13:u04:Interest,, +12:u08:[mobile], +14:u02:guideline,, +19:u03:unintentionally, +11:u10:general, +13:u03:Interest,, +14:u01:guideline,, +19:u02:unintentionally, +10:u08:[ace]., +13:u02:Interest,, +12:u07:[mobile], +14:u00:guideline,, +19:u01:unintentionally, +10:u07:[ace]., +13:u01:Interest,, +12:u06:[mobile], +19:u00:unintentionally, +10:u06:[ace]., +12:u14:[mobile], +13:u00:Interest,, +12:u05:[mobile], +10:u05:[ace]., +12:u13:[mobile], +12:u04:[mobile], +10:u04:[ace]., +12:u12:[mobile], +6:u21:[m, +7:u22:[mo, +8:u23:[mob, +12:u03:[mobile], +10:u03:[ace]., +12:u11:[mobile], +12:u02:[mobile], +10:u02:[ace]., +12:u10:[mobile], +12:u01:[mobile], +10:u01:[ace]., +12:u00:[mobile], +10:u00:[ace]., +20:u08:PublicKeyLocator, +16:u08:certificate), +11:u14:arrives, +20:u07:PublicKeyLocator, +11:u13:arrives, +20:u06:PublicKeyLocator, +16:u07:certificate), +11:u12:arrives, +20:u14:publickeylocator, +20:u05:PublicKeyLocator, +16:u06:certificate), +7:u08:1.3, +11:u11:arrives, +20:u13:publickeylocator, +16:u14:certificate), +20:u04:PublicKeyLocator, +16:u05:certificate), +7:u07:1.3, +11:u10:arrives, +20:u12:publickeylocator, +16:u13:certificate), +20:u03:PublicKeyLocator, +16:u04:certificate), +7:u06:1.3, +20:u11:publickeylocator, +16:u12:certificate), +7:u14:tls, +20:u02:PublicKeyLocator, +16:u03:certificate), +7:u05:1.3, +20:u10:publickeylocator, +16:u11:certificate), +7:u13:tls, +9:u14:trust, +20:u01:PublicKeyLocator, +16:u02:certificate), +7:u04:1.3, +16:u10:certificate), +7:u12:tls, +9:u13:trust, +7:u23:TLS, +20:u00:PublicKeyLocator, +16:u01:certificate), +7:u03:1.3, +7:u11:tls, +9:u12:trust, +8:u23:Trus, +16:u00:certificate), +7:u02:1.3, +7:u10:tls, +9:u11:trust, +11:uI2:(..,[]), +7:u01:1.3, +9:u08:hides, +9:u10:trust, +11:uI1:(..,[]), +7:u00:1.3, +9:u07:hides, +13:u14:interests, +11:uI0:(..,[]), +9:u06:hides, +13:u13:interests, +13:u08:mobility,, +9:u05:hides, +13:u08:ephemeral, +13:u12:interests, +10:u14:layer., +13:u08:Broadcast, +9:u04:hides, +13:u07:ephemeral, +13:u11:interests, +10:u13:layer., +13:u07:mobility,, +9:u03:hides, +13:u06:ephemeral, +13:u10:interests, +10:u12:layer., +13:u06:mobility,, +13:u07:Broadcast, +9:u02:hides, +13:u05:ephemeral, +10:u11:layer., +13:u14:mobility,, +13:u05:mobility,, +13:u06:Broadcast, +9:u01:hides, +13:u04:ephemeral, +10:u10:layer., +13:u13:mobility,, +13:u14:broadcast, +13:u04:mobility,, +13:u05:Broadcast, +9:u00:hides, +13:u03:ephemeral, +13:u12:mobility,, +13:u13:broadcast, +13:u03:mobility,, +13:u04:Broadcast, +13:u02:ephemeral, +13:u11:mobility,, +13:u12:broadcast, +8:u23:Broa, +13:u02:mobility,, +13:u03:Broadcast, +13:u01:ephemeral, +13:u10:mobility,, +13:u11:broadcast, +13:u01:mobility,, +13:u02:Broadcast, +13:u00:ephemeral, +12:u08:lengths., +13:u10:broadcast, +13:u00:mobility,, +13:u01:Broadcast, +12:u07:lengths., +14:u14:compromise, +13:u00:Broadcast, +12:u06:lengths., +14:u13:compromise, +12:u05:lengths., +14:u12:compromise, +12:u04:lengths., +14:u11:compromise, +12:u03:lengths., +14:u10:compromise, +12:u08:illegal., +12:u02:lengths., +8:uI2:-.-., +12:u01:lengths., +8:uI1:-.-., +12:u07:illegal., +12:u00:lengths., +8:uI0:-.-., +12:u06:illegal., +12:u14:illegal., +12:u05:illegal., +12:u13:illegal., +12:u04:illegal., +15:u08:components,, +12:u12:illegal., +12:u03:illegal., +12:u11:illegal., +12:u02:illegal., +15:u07:components,, +12:u10:illegal., +12:u01:illegal., +15:u06:components,, +15:u14:components,, +12:u00:illegal., +15:u05:components,, +15:u13:components,, +15:u04:components,, +15:u12:components,, +15:u03:components,, +15:u11:components,, +15:u02:components,, +15:u10:components,, +15:u01:components,, +15:u00:components,, +8:u14:hop., +8:u13:hop., +10:u08:negate, +8:u12:hop., +8:u23:hop., +10:u07:negate, +8:u11:hop., +13:u08:[RFC8569], +10:u06:negate, +8:u10:hop., +10:u05:negate, +13:u07:[RFC8569], +10:u04:negate, +13:u06:[RFC8569], +10:u03:negate, +13:u14:[rfc8569], +13:u05:[RFC8569], +10:u02:negate, +13:u13:[rfc8569], +13:u04:[RFC8569], +15:u08:restricted,, +10:u01:negate, +13:u12:[rfc8569], +13:u03:[RFC8569], +10:u00:negate, +13:u11:[rfc8569], +13:u02:[RFC8569], +15:u07:restricted,, +13:u10:[rfc8569], +13:u01:[RFC8569], +15:u06:restricted,, +15:u14:restricted,, +13:u00:[RFC8569], +15:u05:restricted,, +9:u08:Store, +15:u13:restricted,, +15:u04:restricted,, +15:u12:restricted,, +15:u03:restricted,, +9:u07:Store, +15:u11:restricted,, +15:u02:restricted,, +9:u06:Store, +15:u10:restricted,, +15:u01:restricted,, +9:u05:Store, +15:u00:restricted,, +9:u04:Store, +9:u03:Store, +9:u02:Store, +9:u01:Store, +9:u00:Store, +12:u08:respond., +12:u07:respond., +14:u08:user-level, +12:u06:respond., +14:u07:user-level, +12:u14:respond., +12:u05:respond., +14:u06:user-level, +12:u13:respond., +12:u04:respond., +14:u05:user-level, +12:u12:respond., +12:u03:respond., +14:u04:user-level, +12:u11:respond., +12:u02:respond., +14:u03:user-level, +12:u10:respond., +12:u01:respond., +14:u02:user-level, +12:u00:respond., +14:u01:user-level, +14:u14:signature., +14:u00:user-level, +14:u13:signature., +14:u12:signature., +11:u08:buffer., +14:u11:signature., +14:u10:signature., +11:u07:buffer., +14:u08:algorithm,, +8:u08:hop,, +11:u06:buffer., +8:u07:hop,, +11:u14:buffer., +11:u05:buffer., +14:u07:algorithm,, +8:u06:hop,, +11:u13:buffer., +11:u04:buffer., +14:u06:algorithm,, +8:u05:hop,, +11:u12:buffer., +14:u14:algorithm,, +11:u03:buffer., +14:u05:algorithm,, +8:u04:hop,, +11:u11:buffer., +14:u13:algorithm,, +11:u02:buffer., +14:u04:algorithm,, +8:u03:hop,, +11:u10:buffer., +14:u12:algorithm,, +11:u01:buffer., +14:u03:algorithm,, +8:u02:hop,, +14:u11:algorithm,, +11:u00:buffer., +14:u02:algorithm,, +8:u01:hop,, +14:u10:algorithm,, +14:u01:algorithm,, +8:u00:hop,, +14:u00:algorithm,, +15:u08:insensitive, +13:u08:hostname., +15:u07:insensitive, +13:u07:hostname., +15:u06:insensitive, +10:u08:symbol, +13:u06:hostname., +17:u08:human-entered, +15:u14:insensitive, +15:u05:insensitive, +13:u05:hostname., +17:u07:human-entered, +14:u08:mismatches, +15:u13:insensitive, +15:u04:insensitive, +10:u07:symbol, +12:u08:routable, +13:u04:hostname., +17:u06:human-entered, +14:u07:mismatches, +15:u12:insensitive, +15:u03:insensitive, +10:u06:symbol, +17:u08:registrations, +13:u03:hostname., +17:u05:human-entered, +14:u06:mismatches, +15:u11:insensitive, +10:u14:symbol, +15:u02:insensitive, +10:u05:symbol, +12:u07:routable, +13:u02:hostname., +17:u04:human-entered, +14:u05:mismatches, +15:u10:insensitive, +10:u13:symbol, +15:u01:insensitive, +10:u04:symbol, +12:u06:routable, +17:u07:registrations, +16:u08:conventions,, +13:u01:hostname., +17:u03:human-entered, +14:u04:mismatches, +10:u12:symbol, +12:u14:routable, +15:u00:insensitive, +10:u03:symbol, +12:u05:routable, +17:u06:registrations, +13:u00:hostname., +17:u02:human-entered, +14:u03:mismatches, +10:u11:symbol, +12:u13:routable, +17:u14:registrations, +14:uI2:--,":/."--, +10:u02:symbol, +12:u04:routable, +17:u05:registrations, +16:u07:conventions,, +15:u08:approaches,, +17:u01:human-entered, +14:u02:mismatches, +10:u10:symbol, +12:u12:routable, +17:u13:registrations, +14:uI1:--,":/."--, +10:uI2:":/."., +10:u01:symbol, +12:u03:routable, +17:u04:registrations, +16:u06:conventions,, +17:u00:human-entered, +14:u01:mismatches, +12:u11:routable, +17:u12:registrations, +16:u14:conventions,, +14:uI0:--,":/."--, +10:uI1:":/."., +10:u00:symbol, +12:u02:routable, +17:u03:registrations, +16:u05:conventions,, +15:u07:approaches,, +14:u00:mismatches, +12:u10:routable, +17:u11:registrations, +16:u13:conventions,, +10:uI0:":/."., +12:u01:routable, +17:u02:registrations, +16:u04:conventions,, +15:u06:approaches,, +17:u10:registrations, +16:u12:conventions,, +15:u14:approaches,, +12:u00:routable, +17:u01:registrations, +16:u03:conventions,, +15:u05:approaches,, +16:u11:conventions,, +15:u13:approaches,, +17:u00:registrations, +16:u02:conventions,, +15:u04:approaches,, +16:u10:conventions,, +15:u12:approaches,, +16:u01:conventions,, +15:u03:approaches,, +15:u11:approaches,, +16:u00:conventions,, +15:u02:approaches,, +15:u10:approaches,, +15:u01:approaches,, +15:u00:approaches,, +9:u08:[ace], +10:u08:Shang,, +9:u07:[ace], +13:u08:"NDN-ACE:, +7:u08:W.,, +9:u06:[ace], +10:u07:Shang,, +7:u07:W.,, +9:u14:[ace], +9:u05:[ace], +10:u06:Shang,, +13:u07:"NDN-ACE:, +7:u06:W.,, +9:u13:[ace], +10:u14:shang,, +9:u04:[ace], +10:u05:Shang,, +13:u06:"NDN-ACE:, +31:u08:12/ndn-0036-1-ndn-ace.pdf>., +7:u05:W.,, +55:u08:<http://new.named-data.net/wp-content/uploads/2015/, +9:u12:[ace], +10:u13:shang,, +13:u14:"ndn-ace:, +6:u21:[a, +7:u22:[ac, +8:u23:[ace, +9:u03:[ace], +10:u04:Shang,, +13:u05:"NDN-ACE:, +12:u08:[ccnxke], +7:u04:W.,, +55:u07:<http://new.named-data.net/wp-content/uploads/2015/, +9:u11:[ace], +10:u12:shang,, +13:u13:"ndn-ace:, +8:u23:Shan, +7:uI2:"-:, +9:u02:[ace], +10:u03:Shang,, +13:u04:"NDN-ACE:, +31:u07:12/ndn-0036-1-ndn-ace.pdf>., +7:u03:W.,, +55:u06:<http://new.named-data.net/wp-content/uploads/2015/, +9:u10:[ace], +10:u11:shang,, +13:u12:"ndn-ace:, +7:u22:"ND, +8:u23:"NDN, +7:uI1:"-:, +8:uI2:",-,, +9:u01:[ace], +10:u02:Shang,, +13:u03:"NDN-ACE:, +31:u06:12/ndn-0036-1-ndn-ace.pdf>., +12:u07:[ccnxke], +7:u02:W.,, +55:u05:<http://new.named-data.net/wp-content/uploads/2015/, +10:u10:shang,, +13:u11:"ndn-ace:, +31:u14:12/ndn-0036-1-ndn-ace.pdf>., +7:uI0:"-:, +8:uI1:",-,, +16:uI2:,://.-./-///, +9:u00:[ace], +10:u01:Shang,, +13:u02:"NDN-ACE:, +31:u05:12/ndn-0036-1-ndn-ace.pdf>., +12:u06:[ccnxke], +23:u08:ccnxkeyexchange-02,, +7:u01:W.,, +55:u04:<http://new.named-data.net/wp-content/uploads/2015/, +13:u10:"ndn-ace:, +31:u13:12/ndn-0036-1-ndn-ace.pdf>., +12:u14:[ccnxke], +8:uI0:",-,, +16:uI1:,://.-./-///, +11:uI2:/----.., +10:u00:Shang,, +13:u01:"NDN-ACE:, +31:u04:12/ndn-0036-1-ndn-ace.pdf>., +12:u05:[ccnxke], +7:u00:W.,, +55:u03:<http://new.named-data.net/wp-content/uploads/2015/, +31:u12:12/ndn-0036-1-ndn-ace.pdf>., +12:u13:[ccnxke], +7:u22:12/, +8:u23:12/n, +16:uI0:,://.-./-///, +11:uI1:/----.., +13:u00:"NDN-ACE:, +31:u03:12/ndn-0036-1-ndn-ace.pdf>., +12:u04:[ccnxke], +23:u07:ccnxkeyexchange-02,, +13:u08:Progress,, +55:u02:<http://new.named-data.net/wp-content/uploads/2015/, +31:u11:12/ndn-0036-1-ndn-ace.pdf>., +12:u12:[ccnxke], +6:u21:[c, +7:u22:[cc, +8:u23:[ccn, +11:uI0:/----.., +31:u02:12/ndn-0036-1-ndn-ace.pdf>., +12:u03:[ccnxke], +23:u06:ccnxkeyexchange-02,, +11:u08:[CCNxz], +55:u01:<http://new.named-data.net/wp-content/uploads/2015/, +39:u08:draft-mosko-icnrg-ccnxurischeme-01,, +31:u10:12/ndn-0036-1-ndn-ace.pdf>., +12:u11:[ccnxke], +23:u14:ccnxkeyexchange-02,, +11:uI2:.",,---, +31:u01:12/ndn-0036-1-ndn-ace.pdf>., +12:u02:[ccnxke], +23:u05:ccnxkeyexchange-02,, +13:u07:Progress,, +55:u00:<http://new.named-data.net/wp-content/uploads/2015/, +39:u07:draft-mosko-icnrg-ccnxurischeme-01,, +12:u10:[ccnxke], +23:u13:ccnxkeyexchange-02,, +11:uI1:.",,---, +31:u00:12/ndn-0036-1-ndn-ace.pdf>., +12:u01:[ccnxke], +23:u04:ccnxkeyexchange-02,, +13:u06:Progress,, +11:u07:[CCNxz], +10:u08:Code",, +39:u06:draft-mosko-icnrg-ccnxurischeme-01,, +23:u12:ccnxkeyexchange-02,, +13:u14:progress,, +7:u22:ccn, +8:u23:ccnx, +11:uI0:.",,---, +13:uI2:[],..,"",, +12:u00:[ccnxke], +23:u03:ccnxkeyexchange-02,, +13:u05:Progress,, +11:u06:[CCNxz], +36:u08:<https://github.com/PARC/CCNxz>., +39:u05:draft-mosko-icnrg-ccnxurischeme-01,, +23:u11:ccnxkeyexchange-02,, +13:u13:progress,, +11:u14:[ccnxz], +13:uI1:[],..,"",, +11:uI2:,----,., +23:u02:ccnxkeyexchange-02,, +13:u04:Progress,, +11:u05:[CCNxz], +10:u07:Code",, +39:u04:draft-mosko-icnrg-ccnxurischeme-01,, +23:u10:ccnxkeyexchange-02,, +13:u12:progress,, +11:u13:[ccnxz], +8:u23:Prog, +13:uI0:[],..,"",, +11:uI1:,----,., +23:u01:ccnxkeyexchange-02,, +13:u03:Progress,, +11:u04:[CCNxz], +10:u06:Code",, +36:u07:<https://github.com/PARC/CCNxz>., +39:u03:draft-mosko-icnrg-ccnxurischeme-01,, +13:u11:progress,, +11:u12:[ccnxz], +10:u14:code",, +11:uI0:,----,., +23:u00:ccnxkeyexchange-02,, +13:u02:Progress,, +11:u03:[CCNxz], +10:u05:Code",, +36:u06:<https://github.com/PARC/CCNxz>., +39:u02:draft-mosko-icnrg-ccnxurischeme-01,, +13:u10:progress,, +11:u11:[ccnxz], +10:u13:code",, +36:u14:<https://github.com/parc/ccnxz>., +13:u01:Progress,, +11:u02:[CCNxz], +10:u04:Code",, +36:u05:<https://github.com/PARC/CCNxz>., +39:u01:draft-mosko-icnrg-ccnxurischeme-01,, +11:u10:[ccnxz], +10:u12:code",, +36:u13:<https://github.com/parc/ccnxz>., +11:uI2:://.//., +13:u00:Progress,, +11:u01:[CCNxz], +10:u03:Code",, +36:u04:<https://github.com/PARC/CCNxz>., +39:u00:draft-mosko-icnrg-ccnxurischeme-01,, +10:u11:code",, +36:u12:<https://github.com/parc/ccnxz>., +11:uI1:://.//., +11:u00:[CCNxz], +10:u02:Code",, +36:u03:<https://github.com/PARC/CCNxz>., +10:u10:code",, +36:u11:<https://github.com/parc/ccnxz>., +11:uI0:://.//., +10:u01:Code",, +36:u02:<https://github.com/PARC/CCNxz>., +36:u10:<https://github.com/parc/ccnxz>., +10:u00:Code",, +36:u01:<https://github.com/PARC/CCNxz>., +36:u00:<https://github.com/PARC/CCNxz>., +61:u08:<https://datatracker.ietf.org/meeting/interim-2016-icnrg-, +11:u08:Interim, +48:u08:02/materials/slides-interim-2016-icnrg-2-7>., +11:u07:Interim, +14:u14:[compress], +61:u07:<https://datatracker.ietf.org/meeting/interim-2016-icnrg-, +9:u08:[ECC], +11:u06:Interim, +14:u13:[compress], +13:uI2:[],.,"-",, +61:u06:<https://datatracker.ietf.org/meeting/interim-2016-icnrg-, +48:u07:02/materials/slides-interim-2016-icnrg-2-7>., +12:u08:Certicom, +11:u05:Interim, +14:u12:[compress], +61:u14:<https://datatracker.ietf.org/meeting/interim-2016-icnrg-, +7:u22:[co, +8:u23:[com, +13:uI1:[],.,"-",, +61:u05:<https://datatracker.ietf.org/meeting/interim-2016-icnrg-, +48:u06:02/materials/slides-interim-2016-icnrg-2-7>., +9:u07:[ECC], +11:u04:Interim, +13:u08:Research,, +14:u11:[compress], +61:u13:<https://datatracker.ietf.org/meeting/interim-2016-icnrg-, +48:u14:02/materials/slides-interim-2016-icnrg-2-7>., +13:uI0:[],.,"-",, +14:uI2:://..//---, +61:u04:<https://datatracker.ietf.org/meeting/interim-2016-icnrg-, +48:u05:02/materials/slides-interim-2016-icnrg-2-7>., +9:u06:[ECC], +12:u07:Certicom, +38:u08:<http://www.secg.org/sec2-v2.pdf>., +11:u03:Interim, +13:u07:Research,, +16:u08:Parameters",, +14:u10:[compress], +61:u12:<https://datatracker.ietf.org/meeting/interim-2016-icnrg-, +48:u13:02/materials/slides-interim-2016-icnrg-2-7>., +9:u14:[ecc], +14:uI1:://..//---, +12:uI2://-----., +61:u03:<https://datatracker.ietf.org/meeting/interim-2016-icnrg-, +48:u04:02/materials/slides-interim-2016-icnrg-2-7>., +9:u05:[ECC], +12:u06:Certicom, +10:u08:[esic], +11:u02:Interim, +13:u06:Research,, +16:u07:Parameters",, +61:u11:<https://datatracker.ietf.org/meeting/interim-2016-icnrg-, +48:u12:02/materials/slides-interim-2016-icnrg-2-7>., +9:u13:[ecc], +12:u14:certicom, +6:u21:02, +7:u22:02/, +8:u23:02/m, +14:uI0:://..//---, +12:uI1://-----., +61:u02:<https://datatracker.ietf.org/meeting/interim-2016-icnrg-, +48:u03:02/materials/slides-interim-2016-icnrg-2-7>., +9:u04:[ECC], +12:u05:Certicom, +38:u07:<http://www.secg.org/sec2-v2.pdf>., +11:u01:Interim, +13:u05:Research,, +16:u06:Parameters",, +61:u10:<https://datatracker.ietf.org/meeting/interim-2016-icnrg-, +48:u11:02/materials/slides-interim-2016-icnrg-2-7>., +9:u12:[ecc], +12:u13:certicom, +7:u22:[EC, +8:u23:[ECC, +12:uI0://-----., +7:uI2:,":, +61:u01:<https://datatracker.ietf.org/meeting/interim-2016-icnrg-, +48:u02:02/materials/slides-interim-2016-icnrg-2-7>., +9:u03:[ECC], +12:u04:Certicom, +38:u06:<http://www.secg.org/sec2-v2.pdf>., +10:u07:[esic], +12:u08:(ESIC)",, +11:u00:Interim, +13:u04:Research,, +16:u05:Parameters",, +48:u10:02/materials/slides-interim-2016-icnrg-2-7>., +9:u11:[ecc], +12:u12:certicom, +38:u14:<http://www.secg.org/sec2-v2.pdf>., +7:uI1:,":, +61:u00:<https://datatracker.ietf.org/meeting/interim-2016-icnrg-, +48:u01:02/materials/slides-interim-2016-icnrg-2-7>., +9:u02:[ECC], +12:u03:Certicom, +38:u05:<http://www.secg.org/sec2-v2.pdf>., +10:u06:[esic], +13:u03:Research,, +16:u04:Parameters",, +9:u10:[ecc], +12:u11:certicom, +38:u13:<http://www.secg.org/sec2-v2.pdf>., +10:u14:[esic], +7:uI0:,":, +13:uI2:://../-.., +48:u00:02/materials/slides-interim-2016-icnrg-2-7>., +9:u01:[ECC], +12:u02:Certicom, +38:u04:<http://www.secg.org/sec2-v2.pdf>., +10:u05:[esic], +12:u07:(ESIC)",, +14:u08:[IANA-PEN], +13:u02:Research,, +16:u03:Parameters",, +12:u10:certicom, +38:u12:<http://www.secg.org/sec2-v2.pdf>., +10:u13:[esic], +13:uI1:://../-.., +9:u00:[ECC], +12:u01:Certicom, +38:u03:<http://www.secg.org/sec2-v2.pdf>., +10:u04:[esic], +12:u06:(ESIC)",, +57:u08:<http://www.iana.org/assignments/enterprise-numbers>., +13:u01:Research,, +16:u02:Parameters",, +9:u08:IANA,, +38:u11:<http://www.secg.org/sec2-v2.pdf>., +10:u12:[esic], +12:u14:(esic)",, +6:u21:[e, +7:u22:[es, +8:u23:[esi, +13:uI0:://../-.., +12:u00:Certicom, +38:u02:<http://www.secg.org/sec2-v2.pdf>., +10:u03:[esic], +12:u05:(ESIC)",, +14:u07:[IANA-PEN], +13:u00:Research,, +16:u01:Parameters",, +9:u07:IANA,, +38:u10:<http://www.secg.org/sec2-v2.pdf>., +10:u11:[esic], +12:u13:(esic)",, +14:uI2:()",,----,, +38:u01:<http://www.secg.org/sec2-v2.pdf>., +10:u02:[esic], +12:u04:(ESIC)",, +14:u06:[IANA-PEN], +57:u07:<http://www.iana.org/assignments/enterprise-numbers>., +16:u00:Parameters",, +9:u06:IANA,, +10:u10:[esic], +12:u12:(esic)",, +14:u14:[iana-pen], +7:u22:(ES, +8:u23:(ESI, +14:uI1:()",,----,, +38:u00:<http://www.secg.org/sec2-v2.pdf>., +10:u01:[esic], +12:u03:(ESIC)",, +14:u05:[IANA-PEN], +57:u06:<http://www.iana.org/assignments/enterprise-numbers>., +9:u05:IANA,, +12:u11:(esic)",, +14:u13:[iana-pen], +57:u14:<http://www.iana.org/assignments/enterprise-numbers>., +14:uI0:()",,----,, +11:uI2:[-],"",, +10:u00:[esic], +12:u02:(ESIC)",, +14:u04:[IANA-PEN], +57:u05:<http://www.iana.org/assignments/enterprise-numbers>., +43:u08:<http://dl.ifip.org/db/conf/networking/, +9:u04:IANA,, +12:u10:(esic)",, +14:u12:[iana-pen], +57:u13:<http://www.iana.org/assignments/enterprise-numbers>., +7:u22:[IA, +8:u23:[IAN, +11:uI1:[-],"",, +12:u01:(ESIC)",, +14:u03:[IANA-PEN], +57:u04:<http://www.iana.org/assignments/enterprise-numbers>., +35:u08:networking2017/1570334964.pdf>., +9:u03:IANA,, +14:u11:[iana-pen], +57:u12:<http://www.iana.org/assignments/enterprise-numbers>., +11:uI0:[-],"",, +12:u00:(ESIC)",, +14:u02:[IANA-PEN], +57:u03:<http://www.iana.org/assignments/enterprise-numbers>., +43:u07:<http://dl.ifip.org/db/conf/networking/, +9:u08:[nnc], +9:u02:IANA,, +14:u10:[iana-pen], +57:u11:<http://www.iana.org/assignments/enterprise-numbers>., +14:u01:[IANA-PEN], +57:u02:<http://www.iana.org/assignments/enterprise-numbers>., +43:u06:<http://dl.ifip.org/db/conf/networking/, +35:u07:networking2017/1570334964.pdf>., +13:u08:Jacobson,, +9:u01:IANA,, +57:u10:<http://www.iana.org/assignments/enterprise-numbers>., +43:u14:<http://dl.ifip.org/db/conf/networking/, +9:uI2:-",,,, +14:u00:[IANA-PEN], +57:u01:<http://www.iana.org/assignments/enterprise-numbers>., +43:u05:<http://dl.ifip.org/db/conf/networking/, +35:u06:networking2017/1570334964.pdf>., +9:u07:[nnc], +11:u08:Briggs,, +9:u00:IANA,, +7:u08:V.,, +43:u13:<http://dl.ifip.org/db/conf/networking/, +35:u14:networking2017/1570334964.pdf>., +9:uI1:-",,,, +57:u00:<http://www.iana.org/assignments/enterprise-numbers>., +43:u04:<http://dl.ifip.org/db/conf/networking/, +35:u05:networking2017/1570334964.pdf>., +9:u06:[nnc], +13:u07:Jacobson,, +7:u07:V.,, +43:u12:<http://dl.ifip.org/db/conf/networking/, +35:u13:networking2017/1570334964.pdf>., +9:u14:[nnc], +9:uI0:-",,,, +43:u03:<http://dl.ifip.org/db/conf/networking/, +35:u04:networking2017/1570334964.pdf>., +9:u05:[nnc], +13:u06:Jacobson,, +11:u07:Briggs,, +12:u08:Emerging, +7:u06:V.,, +43:u11:<http://dl.ifip.org/db/conf/networking/, +35:u12:networking2017/1570334964.pdf>., +9:u13:[nnc], +13:u14:jacobson,, +43:u02:<http://dl.ifip.org/db/conf/networking/, +35:u03:networking2017/1570334964.pdf>., +9:u04:[nnc], +13:u05:Jacobson,, +11:u06:Briggs,, +9:u08:'09),, +7:u05:V.,, +43:u10:<http://dl.ifip.org/db/conf/networking/, +35:u11:networking2017/1570334964.pdf>., +9:u12:[nnc], +13:u13:jacobson,, +11:u14:briggs,, +6:u21:[n, +7:u22:[nn, +8:u23:[nnc, +43:u01:<http://dl.ifip.org/db/conf/networking/, +35:u02:networking2017/1570334964.pdf>., +9:u03:[nnc], +13:u04:Jacobson,, +11:u05:Briggs,, +12:u07:Emerging, +13:u08:[RFC5280], +7:u04:V.,, +35:u10:networking2017/1570334964.pdf>., +9:u11:[nnc], +13:u12:jacobson,, +11:u13:briggs,, +7:u22:Jac, +8:u23:Jaco, +12:uI2:,.,.,"",, +43:u00:<http://dl.ifip.org/db/conf/networking/, +35:u01:networking2017/1570334964.pdf>., +9:u02:[nnc], +13:u03:Jacobson,, +11:u04:Briggs,, +12:u06:Emerging, +9:u07:'09),, +12:u08:Housley,, +7:u03:V.,, +11:u08:Cooper,, +9:u10:[nnc], +13:u11:jacobson,, +11:u12:briggs,, +12:u14:emerging, +7:u22:Bri, +8:u23:Brig, +12:uI1:,.,.,"",, +35:u00:networking2017/1570334964.pdf>., +9:u01:[nnc], +13:u02:Jacobson,, +11:u03:Briggs,, +12:u05:Emerging, +9:u06:'09),, +13:u07:[RFC5280], +7:u02:V.,, +11:u07:Cooper,, +13:u10:jacobson,, +11:u11:briggs,, +12:u13:emerging, +9:u14:'09),, +12:uI0:,.,.,"",, +9:u00:[nnc], +13:u01:Jacobson,, +11:u02:Briggs,, +12:u04:Emerging, +9:u05:'09),, +13:u06:[RFC5280], +12:u07:Housley,, +9:u08:(CRL), +7:u01:V.,, +11:u06:Cooper,, +11:u10:briggs,, +12:u12:emerging, +9:u13:'09),, +13:u14:[rfc5280], +7:u22:Eme, +8:u23:Emer, +18:uI2:'),,://.././.., +13:u00:Jacobson,, +11:u01:Briggs,, +12:u03:Emerging, +9:u04:'09),, +13:u05:[RFC5280], +12:u06:Housley,, +46:u08:<https://www.rfc-editor.org/info/rfc5280>., +7:u00:V.,, +11:u05:Cooper,, +13:u08:Profile",, +12:u11:emerging, +9:u12:'09),, +13:u13:[rfc5280], +12:u14:housley,, +6:u21:'0, +7:u22:'09, +8:u23:'09), +18:uI1:'),,://.././.., +11:u00:Briggs,, +12:u02:Emerging, +9:u03:'09),, +13:u04:[RFC5280], +12:u05:Housley,, +9:u07:(CRL), +13:u08:[RFC7927], +11:u04:Cooper,, +13:u07:Profile",, +12:u10:emerging, +9:u11:'09),, +13:u12:[rfc5280], +12:u13:housley,, +18:uI0:'),,://.././.., +11:uI2:,.,.,"., +12:u01:Emerging, +9:u02:'09),, +13:u03:[RFC5280], +12:u04:Housley,, +9:u06:(CRL), +46:u07:<https://www.rfc-editor.org/info/rfc5280>., +11:u08:Corujo,, +11:u03:Cooper,, +13:u06:Profile",, +13:u08:Kutscher,, +9:u10:'09),, +13:u11:[rfc5280], +12:u12:housley,, +9:u14:(crl), +7:u22:Hou, +8:u23:Hous, +11:uI1:,.,.,"., +12:u00:Emerging, +9:u01:'09),, +13:u02:[RFC5280], +12:u03:Housley,, +9:u05:(CRL), +46:u06:<https://www.rfc-editor.org/info/rfc5280>., +13:u07:[RFC7927], +24:u08:"Information-Centric, +11:u02:Cooper,, +13:u05:Profile",, +13:u07:Kutscher,, +13:u10:[rfc5280], +12:u11:housley,, +9:u13:(crl), +46:u14:<https://www.rfc-editor.org/info/rfc5280>., +11:uI0:,.,.,"., +9:u00:'09),, +13:u01:[RFC5280], +12:u02:Housley,, +9:u04:(CRL), +46:u05:<https://www.rfc-editor.org/info/rfc5280>., +13:u06:[RFC7927], +11:u07:Corujo,, +16:u08:Challenges",, +11:u01:Cooper,, +13:u04:Profile",, +13:u06:Kutscher,, +12:u10:housley,, +9:u12:(crl), +46:u13:<https://www.rfc-editor.org/info/rfc5280>., +13:u14:[rfc7927], +7:u22:(CR, +8:u23:(CRL, +13:u00:[RFC5280], +12:u01:Housley,, +9:u03:(CRL), +46:u04:<https://www.rfc-editor.org/info/rfc5280>., +13:u05:[RFC7927], +11:u06:Corujo,, +24:u07:"Information-Centric, +46:u08:<https://www.rfc-editor.org/info/rfc7927>., +11:u00:Cooper,, +13:u03:Profile",, +13:u05:Kutscher,, +9:u11:(crl), +46:u12:<https://www.rfc-editor.org/info/rfc5280>., +13:u13:[rfc7927], +11:u14:corujo,, +12:u00:Housley,, +9:u02:(CRL), +46:u03:<https://www.rfc-editor.org/info/rfc5280>., +13:u04:[RFC7927], +11:u05:Corujo,, +24:u06:"Information-Centric, +16:u07:Challenges",, +13:u08:[RFC7945], +13:u02:Profile",, +13:u04:Kutscher,, +9:u10:(crl), +46:u11:<https://www.rfc-editor.org/info/rfc5280>., +13:u12:[rfc7927], +11:u13:corujo,, +24:u14:"information-centric, +9:u01:(CRL), +46:u02:<https://www.rfc-editor.org/info/rfc5280>., +13:u03:[RFC7927], +11:u04:Corujo,, +24:u05:"Information-Centric, +16:u06:Challenges",, +46:u07:<https://www.rfc-editor.org/info/rfc7927>., +13:u01:Profile",, +13:u03:Kutscher,, +16:u08:Pentikousis,, +46:u10:<https://www.rfc-editor.org/info/rfc5280>., +13:u11:[rfc7927], +11:u12:corujo,, +24:u13:"information-centric, +16:u14:challenges",, +7:u22:Cor, +8:u23:Coru, +8:uI2:"-(), +9:u00:(CRL), +46:u01:<https://www.rfc-editor.org/info/rfc5280>., +13:u02:[RFC7927], +11:u03:Corujo,, +24:u04:"Information-Centric, +16:u05:Challenges",, +46:u06:<https://www.rfc-editor.org/info/rfc7927>., +13:u07:[RFC7945], +13:u00:Profile",, +13:u02:Kutscher,, +16:u07:Pentikousis,, +13:u10:[rfc7927], +11:u11:corujo,, +24:u12:"information-centric, +16:u13:challenges",, +46:u14:<https://www.rfc-editor.org/info/rfc7927>., +8:uI1:"-(), +46:u00:<https://www.rfc-editor.org/info/rfc5280>., +13:u01:[RFC7927], +11:u02:Corujo,, +24:u03:"Information-Centric, +16:u04:Challenges",, +46:u05:<https://www.rfc-editor.org/info/rfc7927>., +13:u06:[RFC7945], +13:u01:Kutscher,, +16:u06:Pentikousis,, +11:u10:corujo,, +24:u11:"information-centric, +16:u12:challenges",, +46:u13:<https://www.rfc-editor.org/info/rfc7927>., +13:u14:[rfc7945], +8:u23:Chal, +8:uI0:"-(), +13:u00:[RFC7927], +11:u01:Corujo,, +24:u02:"Information-Centric, +16:u03:Challenges",, +46:u04:<https://www.rfc-editor.org/info/rfc7927>., +13:u05:[RFC7945], +46:u08:<https://www.rfc-editor.org/info/rfc7945>., +13:u00:Kutscher,, +16:u05:Pentikousis,, +21:u08:10.17487/RFC7945,, +24:u10:"information-centric, +16:u11:challenges",, +46:u12:<https://www.rfc-editor.org/info/rfc7927>., +13:u13:[rfc7945], +11:u00:Corujo,, +24:u01:"Information-Centric, +16:u02:Challenges",, +46:u03:<https://www.rfc-editor.org/info/rfc7927>., +13:u04:[RFC7945], +16:u04:Pentikousis,, +21:u07:10.17487/RFC7945,, +16:u10:challenges",, +46:u11:<https://www.rfc-editor.org/info/rfc7927>., +13:u12:[rfc7945], +24:u00:"Information-Centric, +16:u01:Challenges",, +46:u02:<https://www.rfc-editor.org/info/rfc7927>., +13:u03:[RFC7945], +46:u07:<https://www.rfc-editor.org/info/rfc7945>., +16:u03:Pentikousis,, +21:u06:10.17487/RFC7945,, +46:u10:<https://www.rfc-editor.org/info/rfc7927>., +13:u11:[rfc7945], +16:u00:Challenges",, +46:u01:<https://www.rfc-editor.org/info/rfc7927>., +13:u02:[RFC7945], +46:u06:<https://www.rfc-editor.org/info/rfc7945>., +16:u02:Pentikousis,, +21:u05:10.17487/RFC7945,, +13:u10:[rfc7945], +46:u14:<https://www.rfc-editor.org/info/rfc7945>., +46:u00:<https://www.rfc-editor.org/info/rfc7927>., +13:u01:[RFC7945], +46:u05:<https://www.rfc-editor.org/info/rfc7945>., +16:u01:Pentikousis,, +21:u04:10.17487/RFC7945,, +46:u13:<https://www.rfc-editor.org/info/rfc7945>., +13:u00:[RFC7945], +46:u04:<https://www.rfc-editor.org/info/rfc7945>., +16:u00:Pentikousis,, +21:u03:10.17487/RFC7945,, +46:u12:<https://www.rfc-editor.org/info/rfc7945>., +46:u03:<https://www.rfc-editor.org/info/rfc7945>., +21:u02:10.17487/RFC7945,, +46:u11:<https://www.rfc-editor.org/info/rfc7945>., +46:u02:<https://www.rfc-editor.org/info/rfc7945>., +21:u01:10.17487/RFC7945,, +46:u10:<https://www.rfc-editor.org/info/rfc7945>., +46:u01:<https://www.rfc-editor.org/info/rfc7945>., +21:u00:10.17487/RFC7945,, +46:u00:<https://www.rfc-editor.org/info/rfc7945>., +10:u08:(CCNx), +46:u08:<https://www.rfc-editor.org/info/rfc8569>., +10:u07:(CCNx), +21:u08:10.17487/RFC8569,, +10:u06:(CCNx), +21:u07:10.17487/RFC8569,, +46:u07:<https://www.rfc-editor.org/info/rfc8569>., +10:u05:(CCNx), +21:u06:10.17487/RFC8569,, +46:u06:<https://www.rfc-editor.org/info/rfc8569>., +10:u04:(CCNx), +21:u05:10.17487/RFC8569,, +9:u08:Mosko, +46:u14:<https://www.rfc-editor.org/info/rfc8569>., +46:u05:<https://www.rfc-editor.org/info/rfc8569>., +8:u08:Palo, +10:u03:(CCNx), +21:u04:10.17487/RFC8569,, +9:u07:Mosko, +46:u13:<https://www.rfc-editor.org/info/rfc8569>., +46:u04:<https://www.rfc-editor.org/info/rfc8569>., +10:u02:(CCNx), +21:u03:10.17487/RFC8569,, +9:u08:Alto,, +46:u12:<https://www.rfc-editor.org/info/rfc8569>., +8:u14:marc, +46:u03:<https://www.rfc-editor.org/info/rfc8569>., +8:u07:Palo, +10:u01:(CCNx), +21:u02:10.17487/RFC8569,, +9:u07:Alto,, +46:u11:<https://www.rfc-editor.org/info/rfc8569>., +8:u13:marc, +46:u02:<https://www.rfc-editor.org/info/rfc8569>., +8:u06:Palo, +10:u00:(CCNx), +21:u01:10.17487/RFC8569,, +9:u06:Alto,, +7:u08:+01, +46:u10:<https://www.rfc-editor.org/info/rfc8569>., +8:u12:marc, +8:u14:palo, +46:u01:<https://www.rfc-editor.org/info/rfc8569>., +8:u05:Palo, +11:u08:Ignacio, +21:u00:10.17487/RFC8569,, +9:u05:Alto,, +7:u07:+01, +19:u08:mmosko@parc.com, +8:u11:marc, +8:u13:palo, +46:u00:<https://www.rfc-editor.org/info/rfc8569>., +8:u04:Palo, +9:u04:Alto,, +7:u06:+01, +19:u07:mmosko@parc.com, +8:u10:marc, +8:u12:palo, +7:u22:Pal, +8:u23:Palo, +8:u03:Palo, +11:u07:Ignacio, +12:u08:Mountain, +9:u03:Alto,, +7:u05:+01, +19:u06:mmosko@parc.com, +8:u11:palo, +8:u02:Palo, +11:u06:Ignacio, +9:u02:Alto,, +7:u04:+01, +19:u05:mmosko@parc.com, +9:u08:View,, +8:u10:palo, +11:u14:ignacio, +8:u01:Palo, +11:u05:Ignacio, +12:u07:Mountain, +9:u01:Alto,, +7:u03:+01, +19:u04:mmosko@parc.com, +9:u07:View,, +11:u13:ignacio, +8:u00:Palo, +11:u04:Ignacio, +12:u06:Mountain, +15:u08:Christopher, +9:u00:Alto,, +7:u02:+01, +19:u03:mmosko@parc.com, +9:u06:View,, +23:u08:nsolis@linkedin.com, +11:u12:ignacio, +12:u14:mountain, +8:u23:Igna, +11:u03:Ignacio, +12:u05:Mountain, +7:u01:+01, +19:u02:mmosko@parc.com, +9:u05:View,, +23:u07:nsolis@linkedin.com, +11:u11:ignacio, +12:u13:mountain, +11:u02:Ignacio, +12:u04:Mountain, +15:u07:Christopher, +11:u08:Irvine,, +7:u00:+01, +19:u01:mmosko@parc.com, +9:u04:View,, +23:u06:nsolis@linkedin.com, +11:u10:ignacio, +12:u12:mountain, +7:u22:Mou, +8:u23:Moun, +11:u01:Ignacio, +12:u03:Mountain, +15:u06:Christopher, +19:u00:mmosko@parc.com, +9:u03:View,, +23:u05:nsolis@linkedin.com, +14:u08:California, +12:u11:mountain, +15:u14:christopher, +11:u00:Ignacio, +12:u02:Mountain, +15:u05:Christopher, +11:u07:Irvine,, +9:u02:View,, +23:u04:nsolis@linkedin.com, +14:u07:California, +12:u10:mountain, +15:u13:christopher, +12:u01:Mountain, +15:u04:Christopher, +11:u06:Irvine,, +9:u01:View,, +23:u03:nsolis@linkedin.com, +14:u06:California, +15:u12:christopher, +11:u14:irvine,, +12:u00:Mountain, +15:u03:Christopher, +11:u05:Irvine,, +9:u00:View,, +23:u02:nsolis@linkedin.com, +14:u05:California, +18:u08:woodc1@uci.edu, +15:u11:christopher, +11:u13:irvine,, +15:u02:Christopher, +11:u04:Irvine,, +23:u01:nsolis@linkedin.com, +14:u04:California, +18:u07:woodc1@uci.edu, +15:u10:christopher, +11:u12:irvine,, +7:u22:Irv, +8:u23:Irvi, +15:u01:Christopher, +11:u03:Irvine,, +23:u00:nsolis@linkedin.com, +14:u03:California, +18:u06:woodc1@uci.edu, +11:u11:irvine,, +15:u00:Christopher, +11:u02:Irvine,, +14:u02:California, +18:u05:woodc1@uci.edu, +11:u10:irvine,, +11:u01:Irvine,, +14:u01:California, +18:u04:woodc1@uci.edu, +11:u00:Irvine,, +14:u00:California, +18:u03:woodc1@uci.edu, +18:u02:woodc1@uci.edu, +18:u01:woodc1@uci.edu, +9:u06:Wilde, +9:u05:Wilde, +9:u04:Wilde, +9:u03:Wilde, +12:u08:Relation, +9:u02:Wilde, +12:u07:Relation, +9:u01:Wilde, +12:u06:Relation, +13:u08:provider., +9:u00:Wilde, +12:u05:Relation, +13:u08:services", +12:u04:Relation, +10:u08:Often,, +13:u07:provider., +12:u03:Relation, +10:u07:Often,, +13:u06:provider., +13:u07:services", +12:u02:Relation, +10:u06:Often,, +13:u14:provider., +13:u05:provider., +13:u06:services", +12:u01:Relation, +10:u05:Often,, +13:u13:provider., +13:u14:services", +13:u04:provider., +13:u05:services", +12:u00:Relation, +10:u04:Often,, +13:u12:provider., +13:u13:services", +8:uI2:"""., +13:u03:provider., +13:u04:services", +13:u08:automated, +10:u03:Often,, +9:u08:human, +13:u11:provider., +13:u12:services", +8:uI1:"""., +13:u02:provider., +13:u03:services", +10:u02:Often,, +9:u07:human, +14:u08:consumers., +13:u10:provider., +13:u11:services", +8:uI0:"""., +13:u01:provider., +13:u02:services", +13:u07:automated, +10:u01:Often,, +9:u06:human, +14:u07:consumers., +13:u10:services", +13:u00:provider., +13:u01:services", +13:u06:automated, +11:u08:status., +10:u00:Often,, +9:u05:human, +14:u06:consumers., +13:u14:automated, +13:u00:services", +13:u05:automated, +9:u04:human, +14:u05:consumers., +13:u13:automated, +13:u04:automated, +11:u07:status., +9:u03:human, +14:u04:consumers., +13:u12:automated, +13:u03:automated, +11:u06:status., +9:u02:human, +14:u03:consumers., +13:u11:automated, +11:u14:status., +13:u02:automated, +11:u05:status., +9:u01:human, +14:u02:consumers., +13:u10:automated, +11:u13:status., +13:u01:automated, +11:u04:status., +9:u00:human, +14:u01:consumers., +11:u12:status., +13:u00:automated, +11:u03:status., +14:u00:consumers., +11:u11:status., +11:u02:status., +11:u10:status., +11:u01:status., +12:u08:approved, +11:u00:status., +13:u08:Standard;, +12:u07:approved, +12:u06:approved, +13:u07:Standard;, +12:u14:approved, +12:u05:approved, +13:u06:Standard;, +44:u08:https://www.rfc-editor.org/info/rfc8631., +12:u13:approved, +13:u14:standard;, +12:u04:approved, +13:u05:Standard;, +9:u08:Wilde, +12:u12:approved, +13:u13:standard;, +12:u03:approved, +13:u04:Standard;, +44:u07:https://www.rfc-editor.org/info/rfc8631., +12:u11:approved, +13:u12:standard;, +12:u02:approved, +13:u03:Standard;, +44:u06:https://www.rfc-editor.org/info/rfc8631., +9:u07:Wilde, +12:u10:approved, +13:u11:standard;, +44:u14:https://www.rfc-editor.org/info/rfc8631., +12:u01:approved, +13:u02:Standard;, +44:u05:https://www.rfc-editor.org/info/rfc8631., +13:u10:standard;, +44:u13:https://www.rfc-editor.org/info/rfc8631., +9:u14:wilde, +12:u00:approved, +13:u01:Standard;, +44:u04:https://www.rfc-editor.org/info/rfc8631., +8:u08:8631, +44:u12:https://www.rfc-editor.org/info/rfc8631., +9:u13:wilde, +13:u00:Standard;, +44:u03:https://www.rfc-editor.org/info/rfc8631., +8:u07:8631, +44:u11:https://www.rfc-editor.org/info/rfc8631., +9:u12:wilde, +7:u22:Wil, +8:u23:Wild, +44:u02:https://www.rfc-editor.org/info/rfc8631., +8:u06:8631, +44:u10:https://www.rfc-editor.org/info/rfc8631., +9:u11:wilde, +44:u01:https://www.rfc-editor.org/info/rfc8631., +8:u05:8631, +9:u10:wilde, +44:u00:https://www.rfc-editor.org/info/rfc8631., +8:u04:8631, +8:u03:8631, +8:u02:8631, +8:u01:8631, +8:u00:8631, +7:u08:Web, +7:u07:Web, +7:u06:Web, +15:u08:Documenting, +7:u05:Web, +15:u07:Documenting, +7:u04:Web, +15:u06:Documenting, +14:u08:Describing, +7:u03:Web, +15:u05:Documenting, +14:u07:Describing, +7:u02:Web, +15:u04:Documenting, +14:u06:Describing, +11:u08:Unified, +7:u01:Web, +15:u03:Documenting, +14:u05:Describing, +11:u07:Unified, +7:u00:Web, +15:u02:Documenting, +14:u04:Describing, +11:u06:Unified, +15:u01:Documenting, +14:u03:Describing, +11:u05:Unified, +19:uI2:../............, +15:u00:Documenting, +14:u02:Describing, +11:u04:Unified, +19:uI1:../............, +14:u01:Describing, +11:u03:Unified, +19:uI0:../............, +14:u00:Describing, +11:u02:Unified, +11:u01:Unified, +18:uI2:..-..........., +11:u00:Unified, +18:uI1:..-..........., +18:uI0:..-..........., +21:uI2:..:-............., +21:uI1:..:-............., +21:uI0:..:-............., +22:uI2:..:..............., +22:uI1:..:..............., +22:uI0:..:..............., +12:u08:interact, +13:u08:specifics, +12:u07:interact, +12:u06:interact, +13:u07:specifics, +30:u08:[W3C.REC-webarch-20041215], +12:u14:interact, +12:u05:interact, +13:u06:specifics, +30:u07:[W3C.REC-webarch-20041215], +12:u13:interact, +13:u14:specifics, +12:u04:interact, +13:u05:specifics, +30:u06:[W3C.REC-webarch-20041215], +12:u12:interact, +13:u13:specifics, +12:u03:interact, +13:u04:specifics, +30:u05:[W3C.REC-webarch-20041215], +12:u11:interact, +13:u12:specifics, +11:uI2:[.--],,, +12:u02:interact, +13:u03:specifics, +30:u04:[W3C.REC-webarch-20041215], +12:u10:interact, +13:u11:specifics, +11:uI1:[.--],,, +12:u01:interact, +13:u02:specifics, +30:u03:[W3C.REC-webarch-20041215], +13:u10:specifics, +11:uI0:[.--],,, +12:u00:interact, +13:u01:specifics, +30:u02:[W3C.REC-webarch-20041215], +13:u00:specifics, +30:u01:[W3C.REC-webarch-20041215], +30:u00:[W3C.REC-webarch-20041215], +12:u08:category, +12:u07:category, +12:u08:machines, +12:u06:category, +9:u08:--for, +12:u14:category, +12:u05:category, +12:u07:machines, +9:u07:--for, +12:u13:category, +12:u04:category, +12:u06:machines, +9:u06:--for, +12:u12:category, +12:u14:machines, +7:u22:cat, +8:u23:cate, +12:u03:category, +12:u05:machines, +9:u05:--for, +12:u11:category, +12:u13:machines, +12:u02:category, +12:u04:machines, +9:u04:--for, +12:u10:category, +12:u12:machines, +12:u01:category, +12:u03:machines, +15:u08:consumption, +9:u03:--for, +12:u11:machines, +8:uI2:"",-, +12:u00:category, +12:u02:machines, +9:u02:--for, +12:u10:machines, +8:uI1:"",-, +12:u01:machines, +15:u07:consumption, +9:u01:--for, +8:uI0:"",-, +12:u00:machines, +15:u06:consumption, +9:u00:--for, +19:u08:human-oriented,, +15:u14:consumption, +15:u05:consumption, +16:u08:complemented, +19:u07:human-oriented,, +15:u13:consumption, +11:u14:typical, +15:u04:consumption, +19:u06:human-oriented,, +15:u12:consumption, +11:u13:typical, +15:u03:consumption, +16:u07:complemented, +19:u05:human-oriented,, +13:u08:technical, +15:u11:consumption, +11:u12:typical, +15:u02:consumption, +16:u06:complemented, +14:u08:audiences,, +19:u04:human-oriented,, +13:u07:technical, +15:u10:consumption, +11:u11:typical, +16:u14:complemented, +15:u01:consumption, +16:u05:complemented, +19:u03:human-oriented,, +13:u06:technical, +11:u10:typical, +16:u13:complemented, +15:u00:consumption, +16:u04:complemented, +14:u07:audiences,, +19:u02:human-oriented,, +13:u05:technical, +16:u12:complemented, +16:u03:complemented, +14:u06:audiences,, +19:u01:human-oriented,, +13:u04:technical, +16:u11:complemented, +14:u14:audiences,, +16:u02:complemented, +14:u05:audiences,, +19:u00:human-oriented,, +13:u03:technical, +16:u10:complemented, +14:u13:audiences,, +16:u01:complemented, +14:u04:audiences,, +13:u02:technical, +13:u08:Generally, +14:u12:audiences,, +7:u22:aud, +8:u23:audi, +16:u00:complemented, +14:u03:audiences,, +13:u01:technical, +13:u07:Generally, +14:u11:audiences,, +14:u02:audiences,, +13:u00:technical, +13:u06:Generally, +14:u10:audiences,, +14:u01:audiences,, +13:u05:Generally, +14:u00:audiences,, +13:u04:Generally, +13:u03:Generally, +13:u08:metadata., +13:u02:Generally, +13:u07:metadata., +13:u01:Generally, +13:u06:metadata., +13:u00:Generally, +13:u05:metadata., +13:u04:metadata., +13:u03:metadata., +13:u02:metadata., +13:u01:metadata., +13:u00:metadata., +15:u08:operational, +15:u07:operational, +15:u06:operational, +15:u05:operational, +15:u04:operational, +15:u03:operational, +15:u02:operational, +12:u08:purpose., +15:u01:operational, +12:u07:purpose., +15:u00:operational, +12:u06:purpose., +12:u05:purpose., +12:u04:purpose., +12:u03:purpose., +12:u02:purpose., +8:u08:"Web, +12:u01:purpose., +8:u08:API", +12:u00:purpose., +13:u08:Services", +8:u07:"Web, +13:u07:Services", +8:u06:"Web, +8:u07:API", +31:u08:[W3C.REC-webarch-20041215],, +13:u06:Services", +8:u14:"web, +8:u05:"Web, +8:u06:API", +13:u05:Services", +8:u13:"web, +8:u14:api", +10:uI2:""""(", +8:u04:"Web, +8:u05:API", +31:u07:[W3C.REC-webarch-20041215],, +13:u04:Services", +8:u12:"web, +8:u13:api", +6:u21:"W, +7:u22:"We, +8:u23:"Web, +10:uI1:""""(", +9:uI2:""")., +8:u03:"Web, +8:u04:API", +31:u06:[W3C.REC-webarch-20041215],, +13:u03:Services", +8:u11:"web, +8:u12:api", +31:u14:[w3c.rec-webarch-20041215],, +8:u23:API", +10:uI0:""""(", +9:uI1:""")., +8:u02:"Web, +8:u03:API", +31:u05:[W3C.REC-webarch-20041215],, +13:u02:Services", +8:u10:"web, +8:u11:api", +31:u13:[w3c.rec-webarch-20041215],, +9:uI0:""")., +12:uI2:[.--],-,, +8:u01:"Web, +8:u02:API", +31:u04:[W3C.REC-webarch-20041215],, +13:u01:Services", +9:u08:typed, +8:u10:api", +31:u12:[w3c.rec-webarch-20041215],, +7:u22:[W3, +8:u23:[W3C, +12:uI1:[.--],-,, +8:u00:"Web, +8:u01:API", +31:u03:[W3C.REC-webarch-20041215],, +13:u00:Services", +9:u07:typed, +31:u11:[w3c.rec-webarch-20041215],, +12:uI0:[.--],-,, +8:u00:API", +31:u02:[W3C.REC-webarch-20041215],, +9:u06:typed, +31:u10:[w3c.rec-webarch-20041215],, +31:u01:[W3C.REC-webarch-20041215],, +9:u05:typed, +31:u00:[W3C.REC-webarch-20041215],, +9:u04:typed, +7:u22:Usi, +8:u23:Usin, +12:u08:reinvent, +9:u03:typed, +9:u02:typed, +12:u07:reinvent, +9:u01:typed, +10:u08:recent, +12:u06:reinvent, +14:u08:popularity, +9:u00:typed, +10:u07:recent, +14:u08:languages,, +12:u14:reinvent, +12:u05:reinvent, +10:u06:recent, +14:u07:languages,, +12:u13:reinvent, +12:u04:reinvent, +14:u07:popularity, +13:u08:languages, +10:u05:recent, +14:u06:languages,, +12:u12:reinvent, +7:u22:rei, +8:u23:rein, +12:u03:reinvent, +14:u06:popularity, +10:u04:recent, +14:u05:languages,, +12:u11:reinvent, +14:u14:popularity, +12:u02:reinvent, +14:u05:popularity, +13:u07:languages, +10:u03:recent, +14:u04:languages,, +12:u10:reinvent, +14:u13:popularity, +13:u14:services., +12:u01:reinvent, +14:u04:popularity, +13:u06:languages, +10:u02:recent, +14:u03:languages,, +14:u12:popularity, +13:u13:services., +13:u14:languages, +7:u22:pop, +8:u23:popu, +12:u00:reinvent, +14:u03:popularity, +13:u05:languages, +10:u01:recent, +14:u02:languages,, +14:u11:popularity, +13:u12:services., +13:u13:languages, +14:u02:popularity, +13:u04:languages, +10:u00:recent, +14:u01:languages,, +14:u10:popularity, +13:u11:services., +13:u12:languages, +7:u22:lan, +8:u23:lang, +14:u01:popularity, +13:u03:languages, +14:u00:languages,, +13:u10:services., +13:u11:languages, +14:u00:popularity, +13:u02:languages, +13:u10:languages, +13:u01:languages, +13:u00:languages, +17:u08:documentation, +17:u07:documentation, +17:u06:documentation, +17:u14:documentation, +17:u05:documentation, +17:u13:documentation, +17:u04:documentation, +17:u12:documentation, +17:u03:documentation, +17:u11:documentation, +17:u02:documentation, +17:u10:documentation, +17:u01:documentation, +17:u00:documentation, +11:u08:Typical, +8:u08:PDF., +11:u07:Typical, +17:u08:Documentation, +11:u06:Typical, +8:u07:PDF., +11:u05:Typical, +8:u06:PDF., +17:u07:Documentation, +8:u14:pdf., +11:u04:Typical, +8:u05:PDF., +17:u06:Documentation, +8:u13:pdf., +11:u03:Typical, +8:u04:PDF., +17:u05:Documentation, +8:u12:pdf., +6:u21:PD, +7:u22:PDF, +8:u23:PDF., +11:u02:Typical, +8:u03:PDF., +17:u04:Documentation, +8:u11:pdf., +7:u22:Doc, +8:u23:Docu, +11:u01:Typical, +8:u02:PDF., +17:u03:Documentation, +8:u10:pdf., +11:u00:Typical, +8:u01:PDF., +17:u02:Documentation, +8:u00:PDF., +17:u01:Documentation, +17:u00:Documentation, +13:u08:Framework, +13:u08:landscape, +13:u07:landscape, +10:u08:(RDF),, +13:u07:Framework, +13:u06:landscape, +10:u07:(RDF),, +13:u06:Framework, +13:u05:landscape, +10:u06:(RDF),, +13:u05:Framework, +16:u08:Descriptions, +13:u04:landscape, +10:u05:(RDF),, +13:u04:Framework, +13:u03:landscape, +10:u04:(RDF),, +8:u23:Fram, +13:u03:Framework, +16:u07:Descriptions, +13:u02:landscape, +10:u03:(RDF),, +13:u02:Framework, +16:u06:Descriptions, +13:u01:landscape, +10:u02:(RDF),, +16:u14:descriptions, +13:u01:Framework, +16:u05:Descriptions, +13:u00:landscape, +10:u01:(RDF),, +16:u13:descriptions, +13:u00:Framework, +16:u04:Descriptions, +10:u00:(RDF),, +16:u12:descriptions, +16:u03:Descriptions, +16:u11:descriptions, +16:u02:Descriptions, +16:u10:descriptions, +10:uI2:(),"",, +16:u01:Descriptions, +10:uI1:(),"",, +16:u00:Descriptions, +10:uI0:(),"",, +9:u08:3.2),, +9:u07:3.2),, +9:u06:3.2),, +9:u05:3.2),, +9:u04:3.2),, +9:u03:3.2),, +9:uI2:""[],, +9:u02:3.2),, +9:uI1:""[],, +13:u08:metadata,, +9:u01:3.2),, +9:uI0:""[],, +9:u00:3.2),, +13:u07:metadata,, +13:u06:metadata,, +13:u14:metadata,, +13:u05:metadata,, +17:u08:"service-doc", +13:u13:metadata,, +13:u04:metadata,, +8:u08:URI., +17:u07:"service-doc", +13:u12:metadata,, +13:u03:metadata,, +17:u06:"service-doc", +13:u11:metadata,, +13:u02:metadata,, +8:u07:URI., +17:u05:"service-doc", +13:u10:metadata,, +13:u01:metadata,, +8:u06:URI., +17:u04:"service-doc", +8:u14:uri., +13:u00:metadata,, +8:u05:URI., +17:u03:"service-doc", +18:u08:"service-desc", +8:u13:uri., +8:u04:URI., +17:u02:"service-doc", +18:u07:"service-desc", +8:u12:uri., +8:u23:URI., +8:u03:URI., +17:u01:"service-doc", +18:u06:"service-desc", +8:u11:uri., +8:u02:URI., +17:u00:"service-doc", +18:u05:"service-desc", +8:u10:uri., +8:u01:URI., +14:u08:libraries,, +18:u04:"service-desc", +8:u00:URI., +18:u03:"service-desc", +14:u07:libraries,, +18:u02:"service-desc", +14:u06:libraries,, +18:u01:"service-desc", +18:u08:"service-meta", +14:u14:libraries,, +14:u05:libraries,, +18:u00:"service-desc", +18:u07:"service-meta", +14:u13:libraries,, +14:u04:libraries,, +18:u06:"service-meta", +8:u08:kind, +14:u12:libraries,, +7:u22:lib, +8:u23:libr, +14:u03:libraries,, +10:u08:facets, +18:u05:"service-meta", +8:u07:kind, +10:u08:users,, +14:u11:libraries,, +14:u02:libraries,, +18:u04:"service-meta", +8:u06:kind, +10:u07:users,, +14:u10:libraries,, +14:u01:libraries,, +10:u07:facets, +16:u08:consumption., +18:u03:"service-meta", +8:u05:kind, +10:u06:users,, +14:u00:libraries,, +10:u06:facets, +18:u02:"service-meta", +8:u04:kind, +10:u05:users,, +10:u14:facets, +10:u05:facets, +16:u07:consumption., +18:u01:"service-meta", +8:u03:kind, +10:u04:users,, +10:u13:facets, +10:u04:facets, +16:u06:consumption., +18:u00:"service-meta", +8:u02:kind, +10:u03:users,, +10:u12:facets, +16:u14:consumption., +10:u03:facets, +16:u05:consumption., +8:u01:kind, +10:u02:users,, +20:u08:representations,, +10:u11:facets, +16:u13:consumption., +10:u02:facets, +16:u04:consumption., +8:u00:kind, +10:u01:users,, +20:u07:representations,, +10:u10:facets, +16:u12:consumption., +10:u01:facets, +16:u03:consumption., +10:u00:users,, +20:u06:representations,, +16:u11:consumption., +10:u00:facets, +16:u02:consumption., +20:u05:representations,, +16:u10:consumption., +16:u01:consumption., +20:u04:representations,, +16:u00:consumption., +20:u03:representations,, +20:u02:representations,, +20:u01:representations,, +20:u00:representations,, +9:u08:meta", +9:u07:meta", +9:u06:meta", +9:u14:meta", +9:u05:meta", +9:u13:meta", +9:u04:meta", +12:u08:classify, +9:u12:meta", +9:u03:meta", +9:u11:meta", +9:u02:meta", +12:u07:classify, +16:u08:identifiable, +9:u10:meta", +9:u01:meta", +12:u06:classify, +12:u14:classify, +9:u00:meta", +12:u05:classify, +16:u07:identifiable, +12:u13:classify, +12:u04:classify, +16:u06:identifiable, +10:u08:hosted, +12:u12:classify, +16:u14:identifiable, +12:u03:classify, +16:u05:identifiable, +12:u11:classify, +16:u13:identifiable, +12:u02:classify, +16:u04:identifiable, +10:u07:hosted, +12:u10:classify, +16:u12:identifiable, +7:u14:web, +12:u01:classify, +16:u03:identifiable, +10:u06:hosted, +16:u11:identifiable, +7:u13:web, +10:u14:hosted, +12:u00:classify, +16:u02:identifiable, +10:u05:hosted, +16:u10:identifiable, +7:u12:web, +10:u13:hosted, +7:u23:Web, +16:u01:identifiable, +10:u04:hosted, +7:u11:web, +10:u12:hosted, +7:u22:hos, +8:u23:host, +16:u00:identifiable, +10:u03:hosted, +13:u08:resource,, +12:u08:"status", +7:u10:web, +10:u11:hosted, +10:u02:hosted, +12:u07:"status", +10:u10:hosted, +10:u01:hosted, +13:u07:resource,, +12:u06:"status", +13:u08:service's, +10:u00:hosted, +13:u06:resource,, +12:u05:"status", +13:u07:service's, +13:u14:resource,, +13:u05:resource,, +12:u04:"status", +13:u06:service's, +13:u13:resource,, +13:u04:resource,, +12:u03:"status", +13:u05:service's, +13:u12:resource,, +13:u03:resource,, +12:u02:"status", +13:u04:service's, +13:u11:resource,, +13:u02:resource,, +12:u01:"status", +13:u03:service's, +13:u10:resource,, +13:u01:resource,, +10:u08:light", +12:u00:"status", +13:u02:service's, +13:u00:resource,, +13:u01:service's, +10:u07:light", +14:u08:subsystems, +13:u00:service's, +10:u06:light", +10:u14:light", +10:u05:light", +14:u07:subsystems, +10:u13:light", +10:u04:light", +14:u06:subsystems, +10:u12:light", +14:u14:subsystems, +10:u03:light", +14:u05:subsystems, +10:u11:light", +14:u13:subsystems, +10:u02:light", +14:u04:subsystems, +10:u10:light", +14:u12:subsystems, +10:u01:light", +14:u03:subsystems, +14:u11:subsystems, +10:u00:light", +14:u02:subsystems, +14:u10:subsystems, +14:u01:subsystems, +14:u00:subsystems, +7:u08:4.2, +7:u07:4.2, +16:u08:Description:, +7:u06:4.2, +7:u05:4.2, +16:u07:Description:, +14:u08:Reference:, +7:u04:4.2, +16:u06:Description:, +7:u03:4.2, +16:u14:description:, +16:u05:Description:, +14:u07:Reference:, +7:u02:4.2, +16:u13:description:, +16:u04:Description:, +14:u06:Reference:, +7:u01:4.2, +16:u12:description:, +14:u14:reference:, +16:u03:Description:, +14:u05:Reference:, +7:u00:4.2, +16:u11:description:, +14:u13:reference:, +16:u02:Description:, +14:u04:Reference:, +16:u10:description:, +14:u12:reference:, +16:u01:Description:, +14:u03:Reference:, +14:u11:reference:, +16:u00:Description:, +14:u02:Reference:, +14:u10:reference:, +14:u01:Reference:, +14:u00:Reference:, +14:u08:publishing, +14:u07:publishing, +14:u06:publishing, +14:u05:publishing, +11:u08:exploit, +14:u04:publishing, +14:u03:publishing, +11:u07:exploit, +13:u14:service's, +14:u02:publishing, +11:u06:exploit, +13:u13:service's, +11:u14:exploit, +14:u01:publishing, +11:u05:exploit, +12:u08:trusting, +13:u12:service's, +11:u13:exploit, +14:u00:publishing, +11:u04:exploit, +13:u11:service's, +11:u12:exploit, +11:u03:exploit, +12:u07:trusting, +8:u08:safe, +13:u10:service's, +11:u11:exploit, +11:u02:exploit, +12:u06:trusting, +11:u10:exploit, +12:u14:trusting, +11:u01:exploit, +12:u05:trusting, +8:u07:safe, +12:u13:trusting, +11:u00:exploit, +12:u04:trusting, +8:u06:safe, +12:u12:trusting, +8:u14:safe, +8:u23:trus, +12:u03:trusting, +8:u05:safe, +12:u11:trusting, +8:u13:safe, +12:u02:trusting, +8:u04:safe, +12:u10:trusting, +8:u12:safe, +12:u01:trusting, +8:u03:safe, +8:u11:safe, +12:u00:trusting, +8:u02:safe, +8:u10:safe, +8:u01:safe, +8:u00:safe, +13:u08:[RFC8288], +15:u08:Nottingham,, +13:u07:[RFC8288], +46:u08:<https://www.rfc-editor.org/info/rfc8288>., +15:u07:Nottingham,, +21:u08:10.17487/RFC8288,, +13:u06:[RFC8288], +15:u06:Nottingham,, +21:u07:10.17487/RFC8288,, +13:u14:[rfc8288], +13:u05:[RFC8288], +46:u07:<https://www.rfc-editor.org/info/rfc8288>., +15:u05:Nottingham,, +21:u06:10.17487/RFC8288,, +13:u13:[rfc8288], +13:uI2:[],.,"",,, +13:u04:[RFC8288], +46:u06:<https://www.rfc-editor.org/info/rfc8288>., +15:u04:Nottingham,, +21:u05:10.17487/RFC8288,, +13:u12:[rfc8288], +46:u14:<https://www.rfc-editor.org/info/rfc8288>., +13:uI1:[],.,"",,, +13:u03:[RFC8288], +46:u05:<https://www.rfc-editor.org/info/rfc8288>., +15:u03:Nottingham,, +21:u04:10.17487/RFC8288,, +13:u11:[rfc8288], +46:u13:<https://www.rfc-editor.org/info/rfc8288>., +13:uI0:[],.,"",,, +13:u02:[RFC8288], +46:u04:<https://www.rfc-editor.org/info/rfc8288>., +15:u02:Nottingham,, +21:u03:10.17487/RFC8288,, +13:u10:[rfc8288], +46:u12:<https://www.rfc-editor.org/info/rfc8288>., +13:u01:[RFC8288], +46:u03:<https://www.rfc-editor.org/info/rfc8288>., +15:u01:Nottingham,, +21:u02:10.17487/RFC8288,, +46:u11:<https://www.rfc-editor.org/info/rfc8288>., +13:u00:[RFC8288], +46:u02:<https://www.rfc-editor.org/info/rfc8288>., +15:u00:Nottingham,, +21:u01:10.17487/RFC8288,, +46:u10:<https://www.rfc-editor.org/info/rfc8288>., +46:u01:<https://www.rfc-editor.org/info/rfc8288>., +13:u08:[RFC5023], +21:u00:10.17487/RFC8288,, +46:u00:<https://www.rfc-editor.org/info/rfc8288>., +13:u08:Gregorio,, +13:u07:[RFC5023], +13:u07:Gregorio,, +13:u06:[RFC5023], +13:u06:Gregorio,, +13:u14:[rfc5023], +13:u05:[RFC5023], +11:u08:Jacobs,, +13:u05:Gregorio,, +13:u13:[rfc5023], +13:u04:[RFC5023], +8:u08:Web,, +13:u04:Gregorio,, +13:u12:[rfc5023], +13:u03:[RFC5023], +11:u07:Jacobs,, +18:u08:Recommendation, +13:u03:Gregorio,, +10:u08:Volume, +13:u11:[rfc5023], +30:u14:[w3c.rec-webarch-20041215], +13:u02:[RFC5023], +11:u06:Jacobs,, +8:u07:Web,, +53:u08:<http://www.w3.org/TR/2004/REC-webarch-20041215>., +13:u02:Gregorio,, +10:u07:Volume, +25:u08:REC-webarch-20041215,, +13:u10:[rfc5023], +30:u13:[w3c.rec-webarch-20041215], +11:u14:jacobs,, +9:uI2:[.--], +13:u01:[RFC5023], +11:u05:Jacobs,, +8:u06:Web,, +18:u07:Recommendation, +13:u01:Gregorio,, +10:u06:Volume, +25:u07:REC-webarch-20041215,, +30:u12:[w3c.rec-webarch-20041215], +11:u13:jacobs,, +8:u14:web,, +9:uI1:[.--], +13:u00:[RFC5023], +11:u04:Jacobs,, +8:u05:Web,, +18:u06:Recommendation, +53:u07:<http://www.w3.org/TR/2004/REC-webarch-20041215>., +10:u08:Thanks, +13:u00:Gregorio,, +10:u05:Volume, +25:u06:REC-webarch-20041215,, +30:u11:[w3c.rec-webarch-20041215], +11:u12:jacobs,, +8:u13:web,, +9:uI0:[.--], +11:u03:Jacobs,, +8:u04:Web,, +18:u05:Recommendation, +53:u06:<http://www.w3.org/TR/2004/REC-webarch-20041215>., +12:u08:Benjamin, +10:u04:Volume, +25:u05:REC-webarch-20041215,, +30:u10:[w3c.rec-webarch-20041215], +11:u11:jacobs,, +8:u12:web,, +53:u14:<http://www.w3.org/tr/2004/rec-webarch-20041215>., +8:u23:Web,, +11:u02:Jacobs,, +8:u03:Web,, +18:u04:Recommendation, +53:u05:<http://www.w3.org/TR/2004/REC-webarch-20041215>., +10:u07:Thanks, +10:u03:Volume, +25:u04:REC-webarch-20041215,, +10:u08:Kaduk,, +11:u10:jacobs,, +8:u11:web,, +53:u13:<http://www.w3.org/tr/2004/rec-webarch-20041215>., +15:uI2:://..///--., +11:u01:Jacobs,, +8:u02:Web,, +18:u03:Recommendation, +53:u04:<http://www.w3.org/TR/2004/REC-webarch-20041215>., +10:u06:Thanks, +12:u07:Benjamin, +10:u02:Volume, +25:u03:REC-webarch-20041215,, +10:u07:Kaduk,, +8:u10:web,, +53:u12:<http://www.w3.org/tr/2004/rec-webarch-20041215>., +10:u14:thanks, +15:uI1:://..///--., +11:u00:Jacobs,, +8:u01:Web,, +18:u02:Recommendation, +53:u03:<http://www.w3.org/TR/2004/REC-webarch-20041215>., +10:u05:Thanks, +12:u06:Benjamin, +8:u08:Erik, +10:u01:Volume, +25:u02:REC-webarch-20041215,, +10:u06:Kaduk,, +53:u11:<http://www.w3.org/tr/2004/rec-webarch-20041215>., +10:u13:thanks, +12:u14:benjamin, +15:uI0:://..///--., +8:u00:Web,, +18:u01:Recommendation, +53:u02:<http://www.w3.org/TR/2004/REC-webarch-20041215>., +10:u04:Thanks, +12:u05:Benjamin, +10:u00:Volume, +25:u01:REC-webarch-20041215,, +10:u05:Kaduk,, +53:u10:<http://www.w3.org/tr/2004/rec-webarch-20041215>., +10:u12:thanks, +12:u13:benjamin, +7:u22:Tha, +8:u23:Than, +18:u00:Recommendation, +53:u01:<http://www.w3.org/TR/2004/REC-webarch-20041215>., +10:u03:Thanks, +12:u04:Benjamin, +8:u07:Erik, +25:u00:REC-webarch-20041215,, +10:u04:Kaduk,, +23:u08:erik.wilde@dret.net, +10:u11:thanks, +12:u12:benjamin, +8:u23:Benj, +53:u00:<http://www.w3.org/TR/2004/REC-webarch-20041215>., +10:u02:Thanks, +12:u03:Benjamin, +8:u06:Erik, +28:u08:http://dret.net/netdret/, +10:u03:Kaduk,, +23:u07:erik.wilde@dret.net, +10:u10:thanks, +12:u11:benjamin, +8:u14:erik, +10:u01:Thanks, +12:u02:Benjamin, +8:u05:Erik, +10:u02:Kaduk,, +23:u06:erik.wilde@dret.net, +12:u10:benjamin, +8:u13:erik, +10:u00:Thanks, +12:u01:Benjamin, +8:u04:Erik, +28:u07:http://dret.net/netdret/, +10:u01:Kaduk,, +23:u05:erik.wilde@dret.net, +8:u12:erik, +8:u23:Erik, +12:u00:Benjamin, +8:u03:Erik, +28:u06:http://dret.net/netdret/, +10:u00:Kaduk,, +23:u04:erik.wilde@dret.net, +8:u11:erik, +28:u14:http://dret.net/netdret/, +8:u02:Erik, +28:u05:http://dret.net/netdret/, +23:u03:erik.wilde@dret.net, +8:u10:erik, +28:u13:http://dret.net/netdret/, +10:uI2:://.//, +8:u01:Erik, +28:u04:http://dret.net/netdret/, +23:u02:erik.wilde@dret.net, +28:u12:http://dret.net/netdret/, +10:uI1:://.//, +8:u00:Erik, +28:u03:http://dret.net/netdret/, +23:u01:erik.wilde@dret.net, +28:u11:http://dret.net/netdret/, +10:uI0:://.//, +28:u02:http://dret.net/netdret/, +23:u00:erik.wilde@dret.net, +28:u10:http://dret.net/netdret/, +28:u01:http://dret.net/netdret/, +12:u06:Selander, +12:u08:Mattsson, +6:u14:g., +6:u08:F., +12:u05:Selander, +12:u07:Mattsson, +8:u08:7252, +12:u04:Selander, +12:u06:Mattsson, +8:u07:7252, +13:u08:Palombini, +6:u07:F., +12:u03:Selander, +12:u05:Mattsson, +8:u06:7252, +13:u07:Palombini, +6:u06:F., +12:u02:Selander, +12:u04:Mattsson, +8:u05:7252, +13:u06:Palombini, +6:u08:AB, +6:u14:f., +6:u05:F., +12:u01:Selander, +12:u03:Mattsson, +8:u04:7252, +13:u05:Palombini, +6:u07:AB, +6:u13:f., +6:u04:F., +8:u08:RISE, +12:u00:Selander, +12:u02:Mattsson, +8:u03:7252, +13:u04:Palombini, +6:u06:AB, +9:u08:Seitz, +6:u12:f., +6:u21:F., +6:u22:F., +6:u23:F., +6:u03:F., +12:u01:Mattsson, +8:u02:7252, +13:u03:Palombini, +6:u05:AB, +9:u07:Seitz, +6:u11:f., +6:u02:F., +8:u07:RISE, +12:u00:Mattsson, +8:u01:7252, +13:u02:Palombini, +6:u04:AB, +9:u06:Seitz, +6:u10:f., +6:u01:F., +8:u06:RISE, +8:u00:7252, +13:u01:Palombini, +6:u03:AB, +9:u05:Seitz, +8:u14:rise, +6:u00:F., +8:u05:RISE, +13:u00:Palombini, +6:u02:AB, +9:u04:Seitz, +8:u13:rise, +8:u04:RISE, +16:u08:Environments, +6:u01:AB, +9:u03:Seitz, +8:u12:rise, +7:u22:RIS, +8:u23:RISE, +8:u03:RISE, +6:u00:AB, +9:u02:Seitz, +13:u08:(OSCORE),, +8:u11:rise, +8:u02:RISE, +16:u07:Environments, +11:u08:Signing, +9:u01:Seitz, +13:u07:(OSCORE),, +15:u08:Constrained, +8:u10:rise, +8:u01:RISE, +16:u06:Environments, +9:u00:Seitz, +13:u06:(OSCORE),, +15:u07:Constrained, +8:u00:RISE, +16:u05:Environments, +11:u07:Signing, +10:u08:OSCORE, +13:u05:(OSCORE),, +15:u06:Constrained, +16:u04:Environments, +11:u06:Signing, +13:u04:(OSCORE),, +15:u05:Constrained, +11:u14:signing, +7:u22:Env, +8:u23:Envi, +16:u03:Environments, +11:u05:Signing, +10:u07:OSCORE, +13:u03:(OSCORE),, +15:u04:Constrained, +11:u13:signing, +9:uI2:().--, +16:u02:Environments, +11:u04:Signing, +10:u06:OSCORE, +13:u02:(OSCORE),, +15:u03:Constrained, +11:u12:signing, +10:u14:oscore, +9:uI1:().--, +16:u01:Environments, +11:u03:Signing, +10:u05:OSCORE, +13:u01:(OSCORE),, +15:u02:Constrained, +11:u11:signing, +10:u13:oscore, +9:uI0:().--, +16:u00:Environments, +11:u02:Signing, +10:u04:OSCORE, +13:u00:(OSCORE),, +15:u01:Constrained, +11:u10:signing, +10:u12:oscore, +6:u21:OS, +7:u22:OSC, +8:u23:OSCO, +11:u01:Signing, +10:u03:OSCORE, +15:u00:Constrained, +10:u11:oscore, +11:u00:Signing, +10:u02:OSCORE, +10:u10:oscore, +10:u01:OSCORE, +10:u00:OSCORE, +44:u08:https://www.rfc-editor.org/info/rfc8613., +44:u07:https://www.rfc-editor.org/info/rfc8613., +44:u06:https://www.rfc-editor.org/info/rfc8613., +44:u14:https://www.rfc-editor.org/info/rfc8613., +44:u05:https://www.rfc-editor.org/info/rfc8613., +44:u13:https://www.rfc-editor.org/info/rfc8613., +44:u04:https://www.rfc-editor.org/info/rfc8613., +8:u08:8613, +44:u12:https://www.rfc-editor.org/info/rfc8613., +44:u03:https://www.rfc-editor.org/info/rfc8613., +8:u07:8613, +44:u11:https://www.rfc-editor.org/info/rfc8613., +44:u02:https://www.rfc-editor.org/info/rfc8613., +8:u06:8613, +44:u10:https://www.rfc-editor.org/info/rfc8613., +44:u01:https://www.rfc-editor.org/info/rfc8613., +8:u05:8613, +44:u00:https://www.rfc-editor.org/info/rfc8613., +8:u04:8613, +8:u03:8613, +8:u02:8613, +8:u01:8613, +8:u00:8613, +8:u08:AEAD, +8:u07:AEAD, +13:u08:Plaintext, +8:u06:AEAD, +13:u07:Plaintext, +22:uI2:..''.............., +8:u05:AEAD, +13:u06:Plaintext, +22:uI1:..''.............., +8:u04:AEAD, +13:u05:Plaintext, +12:u08:Encoding, +22:uI0:..''.............., +8:u03:AEAD, +13:u04:Plaintext, +12:u07:Encoding, +8:u02:AEAD, +13:u03:Plaintext, +12:u06:Encoding, +8:u01:AEAD, +13:u02:Plaintext, +12:u05:Encoding, +8:u00:AEAD, +13:u01:Plaintext, +12:u04:Encoding, +13:u00:Plaintext, +12:u03:Encoding, +12:u02:Encoding, +12:u01:Encoding, +13:u08:Freshness, +12:u00:Encoding, +13:u07:Freshness, +10:u08:Replay, +13:u06:Freshness, +10:u07:Replay, +10:u08:Losing, +13:u05:Freshness, +10:u06:Replay, +10:u07:Losing, +14:u08:Processing, +13:u04:Freshness, +10:u05:Replay, +10:u06:Losing, +14:u07:Processing, +14:u08:Protecting, +13:u03:Freshness, +10:u04:Replay, +10:u05:Losing, +14:u06:Processing, +14:u07:Protecting, +13:u02:Freshness, +10:u03:Replay, +10:u04:Losing, +14:u05:Processing, +14:u06:Protecting, +13:u01:Freshness, +10:u02:Replay, +10:u03:Losing, +14:u04:Processing, +14:u05:Protecting, +13:u00:Freshness, +10:u01:Replay, +10:u02:Losing, +14:u03:Processing, +14:u04:Protecting, +10:u00:Replay, +10:u01:Losing, +14:u02:Processing, +14:u03:Protecting, +16:u08:CoAP-to-CoAP, +10:u00:Losing, +14:u01:Processing, +14:u02:Protecting, +16:u07:CoAP-to-CoAP, +8:u08:HTTP, +14:u00:Processing, +14:u01:Protecting, +16:u06:CoAP-to-CoAP, +8:u07:HTTP, +14:u00:Protecting, +16:u05:CoAP-to-CoAP, +8:u06:HTTP, +16:u08:CoAP-to-HTTP, +23:uI2:.--................, +16:u04:CoAP-to-CoAP, +8:u05:HTTP, +16:u07:CoAP-to-HTTP, +16:u08:HTTP-to-CoAP, +23:uI1:.--................, +16:u03:CoAP-to-CoAP, +8:u04:HTTP, +16:u06:CoAP-to-HTTP, +16:u07:HTTP-to-CoAP, +23:uI0:.--................, +16:u02:CoAP-to-CoAP, +8:u03:HTTP, +16:u05:CoAP-to-HTTP, +16:u06:HTTP-to-CoAP, +12:u08:Example:, +26:uI2:..--.................., +16:u01:CoAP-to-CoAP, +8:u02:HTTP, +16:u04:CoAP-to-HTTP, +16:u05:HTTP-to-CoAP, +12:u07:Example:, +26:uI1:..--.................., +16:u00:CoAP-to-CoAP, +8:u01:HTTP, +16:u03:CoAP-to-HTTP, +16:u04:HTTP-to-CoAP, +12:u06:Example:, +26:uI0:..--.................., +8:u00:HTTP, +16:u02:CoAP-to-HTTP, +16:u03:HTTP-to-CoAP, +12:u05:Example:, +14:u08:End-to-end, +16:u01:CoAP-to-HTTP, +16:u02:HTTP-to-CoAP, +12:u04:Example:, +14:u07:End-to-end, +16:u00:CoAP-to-HTTP, +16:u01:HTTP-to-CoAP, +12:u03:Example:, +14:u06:End-to-end, +10:u08:Master, +16:u00:HTTP-to-CoAP, +12:u02:Example:, +14:u05:End-to-end, +10:u07:Master, +12:u01:Example:, +14:u04:End-to-end, +10:u06:Master, +12:u00:Example:, +14:u03:End-to-end, +10:u05:Master, +14:u02:End-to-end, +10:u04:Master, +14:u01:End-to-end, +10:u03:Master, +14:u00:End-to-end, +10:u02:Master, +10:u01:Master, +10:u00:Master, +17:u08:Cryptographic, +17:u07:Cryptographic, +17:u06:Cryptographic, +17:u05:Cryptographic, +17:u04:Cryptographic, +8:u08:COSE, +17:u03:Cryptographic, +8:u07:COSE, +17:u02:Cryptographic, +8:u06:COSE, +17:u01:Cryptographic, +8:u05:COSE, +17:u00:Cryptographic, +8:u04:COSE, +8:u03:COSE, +8:u02:COSE, +8:u01:COSE, +8:u00:COSE, +20:uI2:..-............., +20:uI1:..-............., +20:uI0:..-............., +10:u08:Secure, +10:u07:Secure, +10:u06:Secure, +10:u05:Secure, +10:u04:Secure, +8:u08:C.1., +10:u03:Secure, +8:u08:C.2., +10:u02:Secure, +8:u08:Test, +8:u07:C.1., +8:u08:C.3., +10:u01:Secure, +8:u07:Test, +8:u06:C.1., +8:u07:C.2., +8:u08:C.4., +10:u00:Secure, +8:u06:Test, +8:u14:c.1., +8:u05:C.1., +8:u06:C.2., +8:u07:C.3., +8:u08:C.5., +8:u05:Test, +8:u13:c.1., +8:u14:c.2., +12:uI2:..:....., +8:u04:C.1., +8:u05:C.2., +8:u06:C.3., +8:u07:C.4., +8:u08:C.6., +8:u04:Test, +8:u12:c.1., +8:u13:c.2., +8:u14:c.3., +7:u22:C.1, +8:u23:C.1., +12:uI1:..:....., +11:uI2:..:...., +8:u03:C.1., +8:u04:C.2., +8:u05:C.3., +8:u06:C.4., +8:u07:C.5., +8:u08:C.7., +8:u03:Test, +8:u11:c.1., +8:u12:c.2., +8:u13:c.3., +8:u14:c.4., +7:u22:C.2, +8:u23:C.2., +12:uI0:..:....., +11:uI1:..:...., +13:uI2:..:......, +8:u02:C.1., +8:u03:C.2., +8:u04:C.3., +8:u05:C.4., +8:u06:C.5., +8:u07:C.6., +8:u08:C.8., +8:u02:Test, +8:u10:c.1., +8:u11:c.2., +8:u12:c.3., +8:u13:c.4., +8:u14:c.5., +7:u22:C.3, +8:u23:C.3., +11:uI0:..:...., +13:uI1:..:......, +18:uI2:..:,.........., +8:u01:C.1., +8:u02:C.2., +8:u03:C.3., +8:u04:C.4., +8:u05:C.5., +8:u06:C.6., +8:u07:C.7., +8:u01:Test, +8:u10:c.2., +8:u11:c.3., +8:u12:c.4., +8:u13:c.5., +8:u14:c.6., +7:u22:C.4, +8:u23:C.4., +13:uI0:..:......, +18:uI1:..:,.........., +8:u00:C.1., +8:u01:C.2., +8:u02:C.3., +8:u03:C.4., +8:u04:C.5., +8:u05:C.6., +8:u06:C.7., +8:u07:C.8., +8:u00:Test, +8:u10:c.3., +8:u11:c.4., +8:u12:c.5., +8:u13:c.6., +8:u14:c.7., +7:u22:C.5, +8:u23:C.5., +18:uI0:..:,.........., +8:u00:C.2., +8:u01:C.3., +8:u02:C.4., +8:u03:C.5., +8:u04:C.6., +8:u05:C.7., +8:u06:C.8., +10:u08:Threat, +8:u10:c.4., +8:u11:c.5., +8:u12:c.6., +8:u13:c.7., +8:u14:c.8., +7:u22:C.6, +8:u23:C.6., +17:uI2:..:,........., +8:u00:C.3., +8:u01:C.4., +8:u02:C.5., +8:u03:C.6., +8:u04:C.7., +8:u05:C.8., +8:u08:D.3., +10:u07:Threat, +14:u08:Supporting, +8:u10:c.5., +8:u11:c.6., +8:u12:c.7., +8:u13:c.8., +7:u22:C.7, +8:u23:C.7., +17:uI1:..:,........., +9:uI2:..:,., +8:u00:C.4., +8:u01:C.5., +8:u02:C.6., +8:u03:C.7., +8:u04:C.8., +8:u08:D.4., +10:u06:Threat, +14:u07:Supporting, +8:u10:c.6., +8:u11:c.7., +8:u12:c.8., +7:u22:C.8, +8:u23:C.8., +17:uI0:..:,........., +9:uI1:..:,., +8:u00:C.5., +8:u01:C.6., +8:u02:C.7., +8:u03:C.8., +8:u07:D.3., +8:u08:D.5., +10:u05:Threat, +14:u06:Supporting, +14:u08:Uniqueness, +8:u10:c.7., +8:u11:c.8., +9:uI0:..:,., +8:u00:C.6., +8:u01:C.7., +8:u02:C.8., +8:u06:D.3., +8:u07:D.4., +10:u04:Threat, +14:u05:Supporting, +14:u07:Uniqueness, +15:u08:Unprotected, +8:u10:c.8., +8:u14:d.3., +8:u00:C.7., +8:u01:C.8., +8:u05:D.3., +8:u06:D.4., +8:u07:D.5., +10:u03:Threat, +14:u04:Supporting, +14:u06:Uniqueness, +15:u07:Unprotected, +8:u13:d.3., +8:u14:d.4., +8:u00:C.8., +8:u04:D.3., +8:u05:D.4., +8:u06:D.5., +10:u02:Threat, +14:u03:Supporting, +14:u05:Uniqueness, +15:u06:Unprotected, +8:u12:d.3., +8:u13:d.4., +8:u14:d.5., +7:u22:D.3, +8:u23:D.3., +24:uI2:..(,)..............., +8:u03:D.3., +8:u04:D.4., +8:u05:D.5., +10:u01:Threat, +14:u02:Supporting, +14:u04:Uniqueness, +15:u05:Unprotected, +8:u11:d.3., +8:u12:d.4., +8:u13:d.5., +7:u22:D.4, +8:u23:D.4., +24:uI1:..(,)..............., +8:u02:D.3., +8:u03:D.4., +8:u04:D.5., +10:u00:Threat, +14:u01:Supporting, +14:u03:Uniqueness, +15:u04:Unprotected, +8:u10:d.3., +8:u11:d.4., +8:u12:d.5., +19:u14:acknowledgments, +7:u22:D.5, +8:u23:D.5., +24:uI0:..(,)..............., +8:u01:D.3., +8:u02:D.4., +8:u03:D.5., +14:u00:Supporting, +14:u02:Uniqueness, +15:u03:Unprotected, +8:u10:d.4., +8:u11:d.5., +19:u13:acknowledgments, +8:u00:D.3., +8:u01:D.4., +8:u02:D.5., +14:u01:Uniqueness, +15:u02:Unprotected, +8:u10:d.5., +19:u12:acknowledgments, +8:u00:D.4., +8:u01:D.5., +14:u00:Uniqueness, +15:u01:Unprotected, +19:u11:acknowledgments, +8:u00:D.5., +15:u00:Unprotected, +19:u10:acknowledgments, +14:u08:[RFC7228];, +14:u07:[RFC7228];, +14:u06:[RFC7228];, +11:u08:proxies, +14:u14:[rfc7228];, +14:u05:[RFC7228];, +14:u13:[rfc7228];, +10:uI2:[];[]., +14:u04:[RFC7228];, +11:u07:proxies, +14:u12:[rfc7228];, +10:uI1:[];[]., +14:u03:[RFC7228];, +11:u06:proxies, +14:u11:[rfc7228];, +11:u14:proxies, +10:uI0:[];[]., +15:uI2:[].--,--,--, +14:u02:[RFC7228];, +11:u05:proxies, +14:u10:[rfc7228];, +11:u13:proxies, +15:uI1:[].--,--,--, +14:u01:[RFC7228];, +11:u04:proxies, +11:u08:inject,, +11:u12:proxies, +15:uI0:[].--,--,--, +14:u00:[RFC7228];, +11:u03:proxies, +11:u08:delete,, +11:u11:proxies, +11:u02:proxies, +11:u07:inject,, +11:u07:delete,, +11:u08:(D)TLS., +11:u10:proxies, +11:u01:proxies, +11:u06:inject,, +11:u06:delete,, +11:u07:(D)TLS., +11:u14:inject,, +11:u00:proxies, +11:u05:inject,, +12:u08:mappable, +11:u05:delete,, +11:u06:(D)TLS., +12:u08:(OSCORE), +11:u13:inject,, +11:u04:inject,, +11:u04:delete,, +11:u05:(D)TLS., +12:u07:(OSCORE), +11:u12:inject,, +11:u03:inject,, +12:u07:mappable, +11:u03:delete,, +11:u04:(D)TLS., +12:u06:(OSCORE), +11:u11:inject,, +11:u02:inject,, +12:u06:mappable, +11:u02:delete,, +11:u03:(D)TLS., +12:u05:(OSCORE), +11:u10:inject,, +12:u14:mappable, +11:u01:inject,, +12:u05:mappable, +14:u08:[RFC7641],, +11:u01:delete,, +11:u02:(D)TLS., +12:u04:(OSCORE), +12:u13:mappable, +11:u00:inject,, +12:u04:mappable, +11:u00:delete,, +11:u01:(D)TLS., +12:u03:(OSCORE), +14:u08:Block-wise, +12:u12:mappable, +12:u03:mappable, +14:u07:[RFC7641],, +11:u00:(D)TLS., +12:u02:(OSCORE), +14:u07:Block-wise, +12:u11:mappable, +8:u14:coap, +9:uI2:--[]., +12:u02:mappable, +14:u06:[RFC7641],, +16:u08:intermediary, +12:u01:(OSCORE), +14:u06:Block-wise, +12:u10:mappable, +8:u13:coap, +14:u14:[rfc7641],, +9:uI1:--[]., +12:u01:mappable, +14:u05:[RFC7641],, +12:u00:(OSCORE), +14:u05:Block-wise, +8:u12:coap, +14:u13:[rfc7641],, +7:u22:CoA, +8:u23:CoAP, +9:uI0:--[]., +15:uI2:[],-[],-[],, +12:u00:mappable, +14:u04:[RFC7641],, +16:u07:intermediary, +14:u04:Block-wise, +12:u08:protects, +8:u11:coap, +14:u12:[rfc7641],, +15:uI1:[],-[],-[],, +14:u03:[RFC7641],, +16:u06:intermediary, +14:u03:Block-wise, +12:u07:protects, +8:u10:coap, +14:u11:[rfc7641],, +16:u14:intermediary, +15:uI0:[],-[],-[],, +14:u02:[RFC7641],, +16:u05:intermediary, +14:u02:Block-wise, +12:u06:protects, +13:u08:"RESTful", +14:u10:[rfc7641],, +16:u13:intermediary, +9:uI2:[--]., +14:u01:[RFC7641],, +16:u04:intermediary, +14:u01:Block-wise, +12:u05:protects, +13:u07:"RESTful", +11:u08:[REST]., +16:u12:intermediary, +9:uI1:[--]., +14:u00:[RFC7641],, +16:u03:intermediary, +14:u00:Block-wise, +12:u04:protects, +13:u06:"RESTful", +11:u07:[REST]., +16:u11:intermediary, +9:uI0:[--]., +10:uI2:,,.(),, +16:u02:intermediary, +12:u03:protects, +13:u05:"RESTful", +11:u06:[REST]., +16:u10:intermediary, +10:uI1:,,.(),, +16:u01:intermediary, +12:u02:protects, +13:u04:"RESTful", +11:u05:[REST]., +10:uI0:,,.(),, +16:u00:intermediary, +10:u08:differ, +12:u01:protects, +13:u03:"RESTful", +11:u04:[REST]., +12:u00:protects, +13:u02:"RESTful", +11:u03:[REST]., +10:u07:differ, +13:u01:"RESTful", +11:u02:[REST]., +10:u06:differ, +13:u00:"RESTful", +11:u01:[REST]., +10:u14:differ, +10:u05:differ, +11:u00:[REST]., +10:u13:differ, +10:u04:differ, +10:u12:differ, +10:u03:differ, +10:u11:differ, +10:u02:differ, +21:u08:[CoAP-802.15.4])., +10:u10:differ, +10:u01:differ, +10:u00:differ, +21:u07:[CoAP-802.15.4])., +21:u06:[CoAP-802.15.4])., +21:u14:[coap-802.15.4])., +11:uI2:,,-(..,, +21:u05:[CoAP-802.15.4])., +21:u13:[coap-802.15.4])., +9:u14:http., +11:uI1:,,-(..,, +11:uI2:[-..])., +21:u04:[CoAP-802.15.4])., +21:u12:[coap-802.15.4])., +9:u13:http., +7:u22:[Co, +8:u23:[CoA, +11:uI0:,,-(..,, +11:uI1:[-..])., +21:u03:[CoAP-802.15.4])., +21:u11:[coap-802.15.4])., +9:u12:http., +6:u21:HT, +7:u22:HTT, +8:u23:HTTP, +11:uI0:[-..])., +21:u02:[CoAP-802.15.4])., +21:u10:[coap-802.15.4])., +9:u11:http., +21:u01:[CoAP-802.15.4])., +9:u10:http., +21:u00:[CoAP-802.15.4])., +41:u08:+-----------------------------------+, +41:u07:+-----------------------------------+, +41:u06:+-----------------------------------+, +41:u14:+-----------------------------------+, +41:u05:+-----------------------------------+, +41:u13:+-----------------------------------+, +41:u04:+-----------------------------------+, +41:u12:+-----------------------------------+, +41:u03:+-----------------------------------+, +41:u11:+-----------------------------------+, +41:u02:+-----------------------------------+, +41:u08:|-----------------------------------|, +41:u10:+-----------------------------------+, +41:u01:+-----------------------------------+, +41:u00:+-----------------------------------+, +41:u07:|-----------------------------------|, +41:u06:|-----------------------------------|, +41:u14:|-----------------------------------|, +41:u05:|-----------------------------------|, +41:u13:|-----------------------------------|, +41:u04:|-----------------------------------|, +41:u12:|-----------------------------------|, +41:u03:|-----------------------------------|, +13:u08:Messaging, +41:u11:|-----------------------------------|, +41:u02:|-----------------------------------|, +13:u07:Messaging, +41:u10:|-----------------------------------|, +41:u01:|-----------------------------------|, +13:u06:Messaging, +41:u00:|-----------------------------------|, +13:u05:Messaging, +13:u04:Messaging, +40:uI2:-----------------------------------/, +13:u03:Messaging, +40:uI1:-----------------------------------/, +13:u02:Messaging, +40:uI0:-----------------------------------/, +13:u01:Messaging, +13:u00:Messaging, +9:u08:proxy, +9:u07:proxy, +9:u06:proxy, +10:uI2:--[],-, +9:u05:proxy, +8:u08:hops, +16:u14:coap-to-http, +10:uI1:--[],-, +9:uI2:.--[], +9:u04:proxy, +8:u07:hops, +16:u13:coap-to-http, +10:uI0:--[],-, +9:uI1:.--[], +9:u03:proxy, +8:u06:hops, +16:u12:coap-to-http, +9:uI0:.--[], +9:u02:proxy, +8:u05:hops, +16:u11:coap-to-http, +10:uI2:--,..,, +9:u01:proxy, +8:u04:hops, +16:u10:coap-to-http, +10:uI1:--,..,, +9:u00:proxy, +8:u08:band, +8:u03:hops, +10:uI0:--,..,, +8:u02:hops, +8:u07:band, +10:u08:(COSE), +8:u01:hops, +12:u08:solution, +8:u06:band, +8:u00:hops, +12:u07:solution, +14:u08:[RFC8152],, +8:u14:band, +8:u05:band, +10:u07:(COSE), +12:u06:solution, +14:u07:[RFC8152],, +8:u13:band, +13:u14:technical, +8:u04:band, +10:u06:(COSE), +12:u05:solution, +14:u06:[RFC8152],, +8:u12:band, +13:u13:technical, +10:u14:(cose), +8:u03:band, +10:u05:(COSE), +12:u04:solution, +14:u05:[RFC8152],, +8:u11:band, +13:u12:technical, +10:u13:(cose), +13:uI2:()[],--,,, +8:u02:band, +10:u04:(COSE), +12:u03:solution, +14:u04:[RFC8152],, +8:u10:band, +13:u11:technical, +10:u12:(cose), +8:u23:(COS, +13:uI1:()[],--,,, +8:u01:band, +10:u03:(COSE), +12:u02:solution, +14:u03:[RFC8152],, +14:u08:transforms, +13:u10:technical, +10:u11:(cose), +13:uI0:()[],--,,, +8:u00:band, +10:u02:(COSE), +12:u01:solution, +14:u02:[RFC8152],, +14:u07:transforms, +12:u08:sending,, +10:u10:(cose), +10:u01:(COSE), +12:u00:solution, +14:u01:[RFC8152],, +14:u06:transforms, +12:u07:sending,, +12:u14:solution, +11:uI2:(.)(.)., +10:u00:(COSE), +14:u00:[RFC8152],, +14:u05:transforms, +12:u06:sending,, +8:u08:way:, +12:u13:solution, +11:uI1:(.)(.)., +7:uI2:/"", +14:u04:transforms, +12:u05:sending,, +8:u07:way:, +12:u12:solution, +11:uI0:(.)(.)., +7:uI1:/"", +14:u03:transforms, +12:u04:sending,, +8:u06:way:, +12:u11:solution, +7:uI0:/"", +14:u02:transforms, +12:u03:sending,, +8:u05:way:, +16:u08:payload/HTTP, +12:u10:solution, +7:u14:(if, +14:u01:transforms, +12:u02:sending,, +8:u04:way:, +16:u07:payload/HTTP, +7:u13:(if, +14:u00:transforms, +12:u01:sending,, +8:u03:way:, +16:u06:payload/HTTP, +13:u08:messages,, +7:u12:(if, +7:u22:(if, +7:u23:(if, +12:u00:sending,, +8:u02:way:, +16:u05:payload/HTTP, +13:u07:messages,, +7:u11:(if, +8:u01:way:, +16:u04:payload/HTTP, +13:u06:messages,, +7:u10:(if, +8:u00:way:, +16:u03:payload/HTTP, +13:u05:messages,, +16:u02:payload/HTTP, +13:u04:messages,, +16:u01:payload/HTTP, +13:u03:messages,, +16:u00:payload/HTTP, +13:u02:messages,, +13:u01:messages,, +13:u00:messages,, +11:u08:Header,, +10:u08:Token,, +11:u07:Header,, +10:u07:Token,, +11:u06:Header,, +12:u08:Options:, +10:u06:Token,, +11:u14:header,, +11:u05:Header,, +10:u05:Token,, +11:u08:OSCORE,, +11:u13:header,, +11:u04:Header,, +12:u07:Options:, +10:u04:Token,, +11:u07:OSCORE,, +11:u12:header,, +11:u03:Header,, +12:u06:Options:, +12:u08:Payload:, +10:u03:Token,, +11:u06:OSCORE,, +11:u11:header,, +12:u14:options:, +11:u02:Header,, +12:u05:Options:, +10:u02:Token,, +11:u05:OSCORE,, +11:u10:header,, +12:u13:options:, +10:uI2::,...,, +11:u01:Header,, +12:u04:Options:, +12:u07:Payload:, +52:u08:+--------------------------------------------->|, +10:u01:Token,, +11:u04:OSCORE,, +12:u12:options:, +10:uI1::,...,, +11:u00:Header,, +12:u03:Options:, +12:u06:Payload:, +10:u00:Token,, +11:u03:OSCORE,, +12:u11:options:, +12:u14:payload:, +10:uI0::,...,, +12:u02:Options:, +12:u05:Payload:, +52:u07:+--------------------------------------------->|, +11:u02:OSCORE,, +12:u10:options:, +12:u13:payload:, +12:u01:Options:, +12:u04:Payload:, +52:u06:+--------------------------------------------->|, +52:u08:|<---------------------------------------------+, +11:u01:OSCORE,, +12:u12:payload:, +52:u14:+--------------------------------------------->|, +12:u00:Options:, +12:u03:Payload:, +52:u05:+--------------------------------------------->|, +11:u00:OSCORE,, +12:u11:payload:, +52:u13:+--------------------------------------------->|, +12:u02:Payload:, +52:u04:+--------------------------------------------->|, +52:u07:|<---------------------------------------------+, +12:u10:payload:, +52:u12:+--------------------------------------------->|, +12:u01:Payload:, +52:u03:+--------------------------------------------->|, +52:u06:|<---------------------------------------------+, +52:u11:+--------------------------------------------->|, +52:u14:|<---------------------------------------------+, +12:u00:Payload:, +52:u02:+--------------------------------------------->|, +52:u05:|<---------------------------------------------+, +52:u10:+--------------------------------------------->|, +52:u13:|<---------------------------------------------+, +52:u01:+--------------------------------------------->|, +52:u04:|<---------------------------------------------+, +52:u12:|<---------------------------------------------+, +52:u00:+--------------------------------------------->|, +52:u03:|<---------------------------------------------+, +52:u11:|<---------------------------------------------+, +9:uI2:-.():, +52:u02:|<---------------------------------------------+, +52:u10:|<---------------------------------------------+, +9:uI1:-.():, +52:u01:|<---------------------------------------------+, +9:uI0:-.():, +52:u00:|<---------------------------------------------+, +10:u08:(CDDL), +10:u08:(CBOR), +10:u07:(CBOR), +13:u08:[RFC8610], +10:u07:(CDDL), +10:u06:(CBOR), +13:u07:[RFC8610], +14:u08:[RFC7228]., +10:u06:(CDDL), +10:u05:(CBOR), +13:u06:[RFC8610], +14:u07:[RFC7228]., +10:u14:(cddl), +10:u05:(CDDL), +10:u04:(CBOR), +13:u05:[RFC8610], +14:u06:[RFC7228]., +10:u13:(cddl), +10:u04:(CDDL), +10:u03:(CBOR), +13:u04:[RFC8610], +14:u05:[RFC7228]., +10:u12:(cddl), +7:u22:(CD, +8:u23:(CDD, +10:u03:(CDDL), +15:u08:"hop-by-hop, +10:u02:(CBOR), +13:u03:[RFC8610], +14:u04:[RFC7228]., +10:u11:(cddl), +14:uI2:[],-[],-[], +10:u02:(CDDL), +10:u01:(CBOR), +13:u02:[RFC8610], +14:u03:[RFC7228]., +19:u08:fragmentation"), +10:u10:(cddl), +14:uI1:[],-[],-[], +10:u01:(CDDL), +15:u07:"hop-by-hop, +10:u00:(CBOR), +13:u01:[RFC8610], +14:u02:[RFC7228]., +19:u07:fragmentation"), +14:uI0:[],-[],-[], +8:uI2:""--, +10:u00:(CDDL), +15:u06:"hop-by-hop, +13:u00:[RFC8610], +14:u01:[RFC7228]., +19:u06:fragmentation"), +19:u08:intermediaries,, +15:u14:"hop-by-hop, +8:uI1:""--, +14:uI2:."--"("--", +15:u05:"hop-by-hop, +14:u00:[RFC7228]., +19:u05:fragmentation"), +19:u07:intermediaries,, +15:u13:"hop-by-hop, +8:uI0:""--, +14:uI1:."--"("--", +14:uI2:"--")"--",, +15:u04:"hop-by-hop, +19:u04:fragmentation"), +19:u06:intermediaries,, +15:u12:"hop-by-hop, +14:uI0:."--"("--", +14:uI1:"--")"--",, +15:u03:"hop-by-hop, +19:u03:fragmentation"), +19:u05:intermediaries,, +15:u11:"hop-by-hop, +14:uI0:"--")"--",, +15:u02:"hop-by-hop, +19:u02:fragmentation"), +19:u04:intermediaries,, +15:u10:"hop-by-hop, +15:u01:"hop-by-hop, +19:u01:fragmentation"), +19:u03:intermediaries,, +15:u00:"hop-by-hop, +19:u00:fragmentation"), +19:u02:intermediaries,, +19:u01:intermediaries,, +19:u00:intermediaries,, +11:u08:Secret,, +8:u08:Key,, +11:u07:Secret,, +11:u06:Secret,, +8:u07:Key,, +11:u14:secret,, +11:u05:Secret,, +8:u06:Key,, +11:u08:extends, +11:u13:secret,, +8:u14:key,, +11:u04:Secret,, +8:u05:Key,, +10:u08:"Table, +11:u12:secret,, +8:u13:key,, +11:u03:Secret,, +8:u04:Key,, +11:u07:extends, +10:u07:"Table, +11:u11:secret,, +8:u12:key,, +8:u23:Key,, +11:u02:Secret,, +8:u03:Key,, +11:u06:extends, +10:u06:"Table, +11:u10:secret,, +8:u11:key,, +11:u14:extends, +11:u01:Secret,, +8:u02:Key,, +11:u05:extends, +73:u08:+------+---+---+---+---+----------------+--------+--------+---------+, +10:u05:"Table, +12:u08:forward,, +8:u10:key,, +11:u13:extends, +10:uI2:":"[]), +11:u00:Secret,, +8:u01:Key,, +11:u04:extends, +10:u04:"Table, +12:u07:forward,, +11:u12:extends, +10:uI1:":"[]), +8:u00:Key,, +11:u03:extends, +73:u07:+------+---+---+---+---+----------------+--------+--------+---------+, +10:u03:"Table, +12:u06:forward,, +7:u08:No., +11:u11:extends, +10:uI0:":"[]), +11:u02:extends, +73:u06:+------+---+---+---+---+----------------+--------+--------+---------+, +10:u02:"Table, +12:u05:forward,, +7:u07:No., +11:u10:extends, +73:u14:+------+---+---+---+---+----------------+--------+--------+---------+, +11:u01:extends, +73:u05:+------+---+---+---+---+----------------+--------+--------+---------+, +10:u01:"Table, +12:u04:forward,, +7:u06:No., +73:u13:+------+---+---+---+---+----------------+--------+--------+---------+, +63:uI2:-----------------------------------------------------------, +6:uI2:59, +11:u00:extends, +73:u04:+------+---+---+---+---+----------------+--------+--------+---------+, +10:u00:"Table, +12:u03:forward,, +7:u05:No., +73:u12:+------+---+---+---+---+----------------+--------+--------+---------+, +63:uI1:-----------------------------------------------------------, +6:uI1:59, +73:u03:+------+---+---+---+---+----------------+--------+--------+---------+, +12:u02:forward,, +7:u04:No., +73:u11:+------+---+---+---+---+----------------+--------+--------+---------+, +63:uI0:-----------------------------------------------------------, +6:uI0:59, +73:u02:+------+---+---+---+---+----------------+--------+--------+---------+, +12:u01:forward,, +7:u03:No., +73:u10:+------+---+---+---+---+----------------+--------+--------+---------+, +73:u01:+------+---+---+---+---+----------------+--------+--------+---------+, +12:u00:forward,, +7:u02:No., +73:u00:+------+---+---+---+---+----------------+--------+--------+---------+, +7:u01:No., +7:u00:No., +7:u08:(*), +7:u07:(*), +9:u08:0-255, +7:u06:(*), +9:u07:0-255, +5:u08:U, +7:u05:(*), +9:u06:0-255, +7:u04:(*), +9:u05:0-255, +5:u07:U, +7:u03:(*), +9:u04:0-255, +5:u14:c, +5:u06:U, +7:u02:(*), +9:u03:0-255, +5:u13:c, +5:u14:u, +5:u05:U, +7:u01:(*), +9:u02:0-255, +5:u12:c, +5:u13:u, +5:u14:n, +5:u21:C, +5:u22:C, +5:u23:C, +5:u04:U, +7:u00:(*), +9:u01:0-255, +5:u11:c, +5:u12:u, +5:u13:n, +5:u21:U, +5:u22:U, +5:u23:U, +5:u03:U, +9:u00:0-255, +5:u10:c, +5:u11:u, +5:u12:n, +7:u14:(*), +5:u21:N, +5:u22:N, +5:u23:N, +5:u02:U, +5:u10:u, +5:u11:n, +7:u13:(*), +5:u21:R, +5:u22:R, +5:u23:R, +8:uI2:(*)., +5:u01:U, +5:u10:n, +7:u12:(*), +6:u21:(*, +7:u22:(*), +7:u23:(*), +8:uI1:(*)., +5:u00:U, +7:u11:(*), +8:uI0:(*)., +7:u10:(*), +9:u08:SHALL, +9:u07:SHALL, +9:u06:SHALL, +9:u05:SHALL, +9:u04:SHALL, +9:u03:SHALL, +9:u02:SHALL, +17:u08:Authenticated, +9:u01:SHALL, +9:u00:SHALL, +17:u07:Authenticated, +17:u06:Authenticated, +17:u14:authenticated, +17:u05:Authenticated, +17:u13:authenticated, +9:uI2:(,[]), +17:u04:Authenticated, +17:u12:authenticated, +9:uI1:(,[]), +17:u03:Authenticated, +17:u11:authenticated, +9:uI0:(,[]), +17:u02:Authenticated, +17:u10:authenticated, +13:u14:function., +17:u01:Authenticated, +13:u13:function., +17:u00:Authenticated, +13:u12:function., +13:u11:function., +13:u10:function., +9:u08:carry, +9:u07:carry, +13:u08:Context",, +9:u06:carry, +9:u14:carry, +9:u05:carry, +13:u07:Context",, +9:u13:carry, +9:u04:carry, +13:u06:Context",, +9:u12:carry, +13:u14:context",, +8:uI2:"",", +9:u03:carry, +13:u05:Context",, +9:u11:carry, +13:u13:context",, +8:uI1:"",", +9:uI2:",""., +9:u02:carry, +13:u04:Context",, +9:u10:carry, +13:u12:context",, +8:uI0:"",", +9:uI1:",""., +9:u01:carry, +13:u03:Context",, +13:u11:context",, +9:uI0:",""., +9:u00:carry, +13:u02:Context",, +13:u10:context",, +13:u01:Context",, +13:u00:Context",, +11:u08:Context, +11:u07:Context, +11:u06:Context, +11:u05:Context, +27:u08:.---------------------., +11:u04:Context, +11:u03:Context, +27:u07:.---------------------., +11:u02:Context, +27:u06:.---------------------., +27:u14:.---------------------., +11:u01:Context, +27:u05:.---------------------., +27:u13:.---------------------., +27:uI2:.---------------------., +11:u00:Context, +27:u04:.---------------------., +27:u12:.---------------------., +6:u21:.-, +7:u22:.--, +8:u23:.---, +27:uI1:.---------------------., +27:u03:.---------------------., +27:u11:.---------------------., +27:uI0:.---------------------., +27:u02:.---------------------., +27:u08:+---------------------+, +27:u10:.---------------------., +27:u01:.---------------------., +27:u00:.---------------------., +27:u07:+---------------------+, +27:u06:+---------------------+, +27:u14:+---------------------+, +27:u05:+---------------------+, +27:u13:+---------------------+, +27:u04:+---------------------+, +27:u12:+---------------------+, +27:u03:+---------------------+, +27:u11:+---------------------+, +27:u02:+---------------------+, +27:u10:+---------------------+, +27:u01:+---------------------+, +13:u08:Recipient, +27:u00:+---------------------+, +13:u07:Recipient, +27:u08:'---------------------', +13:u06:Recipient, +13:u05:Recipient, +27:u07:'---------------------', +13:u04:Recipient, +27:u06:'---------------------', +13:u03:Recipient, +27:u14:'---------------------', +27:u05:'---------------------', +13:u02:Recipient, +27:u13:'---------------------', +27:uI2:'---------------------', +27:u04:'---------------------', +13:u01:Recipient, +27:u12:'---------------------', +6:u21:'-, +7:u22:'--, +8:u23:'---, +27:uI1:'---------------------', +27:u03:'---------------------', +12:u08:Retrieve, +13:u00:Recipient, +27:u11:'---------------------', +27:uI0:'---------------------', +27:u02:'---------------------', +27:u10:'---------------------', +27:u01:'---------------------', +12:u07:Retrieve, +27:u00:'---------------------', +12:u06:Retrieve, +12:u05:Retrieve, +9:u08:Token, +12:u04:Retrieve, +8:u23:Retr, +12:u03:Retrieve, +9:u07:Token, +11:u08:Protect, +12:u02:Retrieve, +9:u06:Token, +7:u08:kid, +12:u01:Retrieve, +9:u05:Token, +11:u07:Protect, +12:u00:Retrieve, +9:u04:Token, +11:u06:Protect, +7:u07:kid, +7:u22:Tok, +8:u23:Toke, +9:u03:Token, +11:u05:Protect, +7:u06:kid, +29:u08:+---------------------->|, +7:u14:kid, +9:u02:Token, +11:u04:Protect, +7:u05:kid, +7:u13:kid, +9:u01:Token, +11:u03:Protect, +7:u04:kid, +29:u07:+---------------------->|, +7:u12:kid, +7:u22:kid, +7:u23:kid, +9:u00:Token, +11:u02:Protect, +7:u03:kid, +29:u06:+---------------------->|, +7:u11:kid, +29:u14:+---------------------->|, +11:u01:Protect, +7:u02:kid, +29:u05:+---------------------->|, +7:u10:kid, +29:u13:+---------------------->|, +26:uI2:----------------------, +11:u00:Protect, +7:u01:kid, +29:u04:+---------------------->|, +10:u08:Verify, +29:u12:+---------------------->|, +26:uI1:----------------------, +7:u00:kid, +29:u03:+---------------------->|, +10:u07:Verify, +29:u11:+---------------------->|, +26:uI0:----------------------, +29:u02:+---------------------->|, +10:u06:Verify, +29:u10:+---------------------->|, +29:u01:+---------------------->|, +10:u05:Verify, +29:u00:+---------------------->|, +10:u04:Verify, +10:u03:Verify, +10:u02:Verify, +10:u01:Verify, +10:u00:Verify, +13:u14:recipient, +13:u13:recipient, +13:u12:recipient, +13:u11:recipient, +13:u10:recipient, +14:u08:[RFC5869]), +8:u08:HKDF, +8:u07:HKDF, +14:u07:[RFC5869]), +8:u06:HKDF, +7:u08:IV., +14:u06:[RFC5869]), +8:u05:HKDF, +7:u07:IV., +14:u14:[rfc5869]), +8:uI2:.-(,, +14:u05:[RFC5869]), +8:u04:HKDF, +7:u06:IV., +9:u08:12.3), +14:u13:[rfc5869]), +8:uI1:.-(,, +9:uI2:[]),,, +14:u04:[RFC5869]), +8:u08:salt, +8:u03:HKDF, +7:u05:IV., +9:u07:12.3), +14:u12:[rfc5869]), +8:uI0:.-(,, +9:uI1:[]),,, +14:u03:[RFC5869]), +8:u02:HKDF, +7:u04:IV., +9:u06:12.3), +14:u11:[rfc5869]), +9:uI0:[]),,, +14:u02:[RFC5869]), +8:u07:salt, +8:u01:HKDF, +7:u03:IV., +9:u05:12.3), +14:u10:[rfc5869]), +14:u01:[RFC5869]), +8:u06:salt, +8:u00:HKDF, +7:u02:IV., +9:u04:12.3), +8:u14:salt, +14:u00:[RFC5869]), +8:u05:salt, +7:u01:IV., +9:u03:12.3), +8:u13:salt, +8:u04:salt, +7:u00:IV., +9:u02:12.3), +8:u12:salt, +7:u22:sal, +8:u23:salt, +8:u03:salt, +9:u08:Salt,, +9:u01:12.3), +8:u11:salt, +10:u14:derive, +8:u02:salt, +9:u00:12.3), +8:u10:salt, +10:u13:derive, +8:u01:salt, +9:u07:Salt,, +9:u08:5.2)., +10:u12:derive, +8:u00:salt, +9:u06:Salt,, +9:u07:5.2)., +10:u11:derive, +9:u14:salt,, +9:u05:Salt,, +9:u06:5.2)., +10:u10:derive, +9:u13:salt,, +9:u04:Salt,, +14:u08:uniqueness, +9:u05:5.2)., +9:u12:salt,, +7:u22:Sal, +8:u23:Salt, +9:u03:Salt,, +9:u04:5.2)., +9:u11:salt,, +9:u02:Salt,, +14:u07:uniqueness, +9:u03:5.2)., +14:u08:Algorithm., +9:u10:salt,, +9:u01:Salt,, +14:u06:uniqueness, +9:u02:5.2)., +14:u07:Algorithm., +14:u14:uniqueness, +9:u00:Salt,, +14:u05:uniqueness, +9:u01:5.2)., +14:u06:Algorithm., +14:u13:uniqueness, +8:u14:aead, +14:u04:uniqueness, +9:u00:5.2)., +14:u05:Algorithm., +14:u12:uniqueness, +8:u13:aead, +14:u03:uniqueness, +14:u04:Algorithm., +14:u11:uniqueness, +8:u12:aead, +6:u21:AE, +7:u22:AEA, +8:u23:AEAD, +14:u02:uniqueness, +14:u03:Algorithm., +14:u10:uniqueness, +8:u11:aead, +14:u01:uniqueness, +14:u02:Algorithm., +8:u10:aead, +14:u00:uniqueness, +18:u08:Initialization, +14:u01:Algorithm., +11:u08:nonces., +14:u00:Algorithm., +11:u07:nonces., +18:u14:notifications., +18:u07:Initialization, +11:u06:nonces., +18:u13:notifications., +9:uI2:.""[], +18:u06:Initialization, +11:u05:nonces., +18:u12:notifications., +18:u14:initialization, +9:uI1:.""[], +18:u05:Initialization, +11:u04:nonces., +18:u11:notifications., +18:u13:initialization, +9:uI0:.""[], +18:u04:Initialization, +11:u03:nonces., +18:u10:notifications., +18:u12:initialization, +18:u03:Initialization, +11:u02:nonces., +18:u11:initialization, +18:u02:Initialization, +11:u01:nonces., +18:u10:initialization, +18:u01:Initialization, +11:u00:nonces., +18:u00:Initialization, +13:u08:received., +13:u07:received., +13:u08:immutable, +13:u06:received., +13:u05:received., +13:u07:immutable, +13:u04:received., +13:u06:immutable, +13:u03:received., +13:u14:immutable, +13:u05:immutable, +13:u02:received., +13:u13:immutable, +13:u04:immutable, +13:u01:received., +13:u12:immutable, +13:u03:immutable, +13:u00:received., +13:u11:immutable, +13:u02:immutable, +13:u10:immutable, +13:u01:immutable, +12:u08:Context,, +13:u00:immutable, +12:u07:Context,, +10:u08:roles., +12:u06:Context,, +12:u05:Context,, +10:u07:roles., +12:u04:Context,, +10:u06:roles., +10:u14:roles., +12:u03:Context,, +10:u05:roles., +10:u13:roles., +12:u02:Context,, +10:u04:roles., +10:u12:roles., +12:u01:Context,, +10:u03:roles., +19:u08:preestablished:, +10:u11:roles., +12:u00:Context,, +10:u02:roles., +19:u07:preestablished:, +10:u10:roles., +10:u01:roles., +19:u06:preestablished:, +10:u00:roles., +19:u05:preestablished:, +19:u04:preestablished:, +19:u03:preestablished:, +19:u02:preestablished:, +19:u01:preestablished:, +19:u00:preestablished:, +11:u08:Default, +11:u07:Default, +11:u06:Default, +11:u05:Default, +12:uI2:*----(:), +11:u04:Default, +12:uI1:*----(:), +11:u03:Default, +12:uI0:*----(:), +11:u02:Default, +11:u01:Default, +11:u00:Default, +11:u08:4.1.2.6, +11:u07:4.1.2.6, +11:u06:4.1.2.6, +7:uI2:*-(, +11:u05:4.1.2.6, +7:uI1:*-(, +11:u04:4.1.2.6, +13:u08:specific., +7:uI0:*-(, +11:u03:4.1.2.6, +13:u07:specific., +11:u02:4.1.2.6, +13:u06:specific., +11:u01:4.1.2.6, +13:u05:specific., +14:u08:Derivation, +11:u00:4.1.2.6, +13:u04:specific., +14:u07:Derivation, +13:u03:specific., +14:u06:Derivation, +6:u08:IV, +13:u02:specific., +14:u05:Derivation, +13:u01:specific., +14:u04:Derivation, +6:u07:IV, +14:u08:[RFC5869]:, +13:u00:specific., +14:u03:Derivation, +9:uI2:[].-., +6:u06:IV, +14:u02:Derivation, +6:u14:iv, +9:uI1:[].-., +6:u05:IV, +14:u07:[RFC5869]:, +14:u01:Derivation, +6:u13:iv, +9:uI0:[].-., +6:u04:IV, +14:u06:[RFC5869]:, +14:u00:Derivation, +6:u12:iv, +14:u14:[rfc5869]:, +6:u21:IV, +6:u22:IV, +6:u23:IV, +6:u03:IV, +14:u05:[RFC5869]:, +6:u11:iv, +14:u13:[rfc5869]:, +6:u02:IV, +14:u04:[RFC5869]:, +7:u08:IKM, +6:u10:iv, +14:u12:[rfc5869]:, +6:u01:IV, +14:u03:[RFC5869]:, +12:u08:notation, +7:u07:IKM, +8:u08:info, +14:u11:[rfc5869]:, +6:u00:IV, +14:u02:[RFC5869]:, +7:u06:IKM, +8:u07:info, +14:u10:[rfc5869]:, +14:u01:[RFC5869]:, +12:u07:notation, +7:u05:IKM, +8:u06:info, +14:u00:[RFC5869]:, +12:u06:notation, +14:u08:id_context, +7:u04:IKM, +8:u05:info, +12:u14:notation, +12:u05:notation, +12:u08:alg_aead, +7:u03:IKM, +8:u04:info, +12:u13:notation, +8:u14:info, +8:uI2:[]):, +12:u04:notation, +14:u07:id_context, +7:u02:IKM, +8:u03:info, +12:u12:notation, +8:u13:info, +8:u23:nota, +8:uI1:[]):, +5:uI2:[, +12:u03:notation, +14:u06:id_context, +12:u07:alg_aead, +7:u01:IKM, +8:u02:info, +12:u11:notation, +8:u12:info, +14:u14:id_context, +8:uI0:[]):, +5:uI1:[, +12:u02:notation, +14:u05:id_context, +12:u06:alg_aead, +7:u00:IKM, +8:u01:info, +12:u10:notation, +8:u11:info, +14:u13:id_context, +12:u14:alg_aead, +6:u22:id, +6:u23:id, +5:uI0:[, +12:u01:notation, +14:u04:id_context, +12:u05:alg_aead, +8:u00:info, +8:u10:info, +14:u12:id_context, +12:u13:alg_aead, +7:u22:id_, +8:u23:id_c, +12:u00:notation, +14:u03:id_context, +12:u04:alg_aead, +14:u11:id_context, +12:u12:alg_aead, +5:u14:l, +8:u23:alg_, +14:u02:id_context, +12:u03:alg_aead, +14:u10:id_context, +12:u11:alg_aead, +5:u13:l, +14:u01:id_context, +12:u02:alg_aead, +12:u10:alg_aead, +5:u12:l, +5:u21:L, +5:u22:L, +5:u23:L, +14:u00:id_context, +12:u01:alg_aead, +5:u11:l, +12:u00:alg_aead, +5:u10:l, +12:u08:deriving, +12:u07:deriving, +12:u06:deriving, +12:u14:deriving, +12:u05:deriving, +12:u13:deriving, +12:u04:deriving, +12:u12:deriving, +12:u03:deriving, +12:u11:deriving, +12:u02:deriving, +10:u08:bytes., +12:u10:deriving, +12:u01:deriving, +12:u00:deriving, +10:u07:bytes., +14:u08:[RFC8152]), +10:u06:bytes., +10:u14:bytes., +10:u05:bytes., +14:u07:[RFC8152]), +10:u13:bytes., +10:u04:bytes., +14:u06:[RFC8152]), +10:u12:bytes., +14:u14:[rfc8152]), +11:uI2:,----(., +10:u03:bytes., +14:u05:[RFC8152]), +7:u08:PRK, +10:u11:bytes., +14:u13:[rfc8152]), +11:uI1:,----(., +10:u02:bytes., +14:u04:[RFC8152]), +10:u10:bytes., +14:u12:[rfc8152]), +11:uI0:,----(., +10:u01:bytes., +14:u03:[RFC8152]), +7:u07:PRK, +14:u11:[rfc8152]), +9:u14:phase, +10:uI2:-----,, +10:u00:bytes., +14:u02:[RFC8152]), +7:u06:PRK, +14:u10:[rfc8152]), +9:u13:phase, +7:u14:prk, +10:uI1:-----,, +14:u01:[RFC8152]), +7:u05:PRK, +9:u12:phase, +7:u13:prk, +10:uI0:-----,, +9:uI2:--(,), +14:u00:[RFC8152]), +7:u04:PRK, +9:u11:phase, +7:u12:prk, +7:u22:PRK, +7:u23:PRK, +9:uI1:--(,), +7:u03:PRK, +9:u10:phase, +7:u11:prk, +9:uI0:--(,), +7:u02:PRK, +7:u10:prk, +7:u01:PRK, +7:u00:PRK, +10:uI2:(.[])., +10:uI1:(.[])., +10:uI0:(.[])., +9:u08:7.4)., +9:u07:7.4)., +9:u06:7.4)., +14:u08:[RFC6347]), +9:u05:7.4)., +14:u07:[RFC6347]), +8:uI2:.).-, +9:u04:7.4)., +14:u06:[RFC6347]), +8:uI1:.).-, +9:uI2:/(..., +9:u03:7.4)., +14:u05:[RFC6347]), +8:uI0:.).-, +9:uI1:/(..., +9:u02:7.4)., +14:u04:[RFC6347]), +9:uI0:/(..., +9:u01:7.4)., +14:u03:[RFC6347]), +7:uI2:,(,, +9:u00:7.4)., +14:u02:[RFC6347]), +7:uI1:,(,, +12:uI2:,,),..,(, +14:u01:[RFC6347]), +7:uI0:,(,, +12:uI1:,,),..,(, +14:u00:[RFC6347]), +12:uI0:,,),..,(, +16:u08:out-of-band., +9:u08:party, +9:u07:party, +16:u07:out-of-band., +9:u06:party, +16:u06:out-of-band., +9:u05:party, +10:u08:equals, +16:u14:out-of-band., +13:uI2:(..,[-]),, +16:u05:out-of-band., +9:u04:party, +10:u07:equals, +21:u08:AES-CCM-16-64-128, +16:u13:out-of-band., +13:uI1:(..,[-]),, +8:uI2:--.(, +16:u04:out-of-band., +9:u03:party, +10:u06:equals, +21:u07:AES-CCM-16-64-128, +16:u12:out-of-band., +13:uI0:(..,[-]),, +8:uI1:--.(, +16:u03:out-of-band., +13:u08:endpoint., +9:u02:party, +10:u05:equals, +21:u06:AES-CCM-16-64-128, +16:u11:out-of-band., +8:uI0:--.(, +16:u02:out-of-band., +9:u01:party, +10:u04:equals, +21:u05:AES-CCM-16-64-128, +16:u10:out-of-band., +9:uI2:----., +16:u01:out-of-band., +13:u07:endpoint., +9:u00:party, +10:u03:equals, +21:u04:AES-CCM-16-64-128, +13:u08:Contexts,, +9:uI1:----., +16:u00:out-of-band., +13:u06:endpoint., +10:u02:equals, +21:u03:AES-CCM-16-64-128, +13:u07:Contexts,, +13:u14:endpoint., +9:uI0:----., +13:u05:endpoint., +10:u01:equals, +21:u02:AES-CCM-16-64-128, +13:u06:Contexts,, +13:u13:endpoint., +13:u04:endpoint., +10:u00:equals, +21:u01:AES-CCM-16-64-128, +13:u05:Contexts,, +13:u12:endpoint., +13:u03:endpoint., +21:u00:AES-CCM-16-64-128, +13:u04:Contexts,, +13:u11:endpoint., +13:u02:endpoint., +13:u03:Contexts,, +13:u10:endpoint., +13:u01:endpoint., +13:u02:Contexts,, +13:u00:endpoint., +13:u01:Contexts,, +14:u08:randomness, +13:u00:Contexts,, +14:u07:randomness, +9:u08:B.2)., +14:u06:randomness, +9:u07:B.2)., +14:u05:randomness, +9:u06:B.2)., +14:u04:randomness, +9:u05:B.2)., +14:u03:randomness, +9:u04:B.2)., +14:u02:randomness, +9:u03:B.2)., +14:u01:randomness, +9:u02:B.2)., +14:u00:randomness, +9:u01:B.2)., +9:u00:B.2)., +12:u14:protects, +12:u13:protects, +12:u12:protects, +12:u11:protects, +14:u08:conceptual, +12:u10:protects, +14:u07:conceptual, +14:u06:conceptual, +12:u08:message,, +15:u08:transformed, +14:u14:conceptual, +14:u05:conceptual, +15:u07:transformed, +14:u13:conceptual, +14:u04:conceptual, +12:u07:message,, +15:u06:transformed, +14:u12:conceptual, +14:u03:conceptual, +12:u06:message,, +15:u05:transformed, +15:u08:intervening, +14:u11:conceptual, +12:u14:message,, +14:u02:conceptual, +12:u05:message,, +15:u04:transformed, +15:u07:intervening, +14:u10:conceptual, +12:u13:message,, +14:u01:conceptual, +12:u04:message,, +20:u08:request/response, +15:u03:transformed, +15:u06:intervening, +12:u12:message,, +14:u00:conceptual, +12:u03:message,, +15:u02:transformed, +15:u05:intervening, +12:u11:message,, +12:u02:message,, +20:u07:request/response, +15:u01:transformed, +15:u04:intervening, +12:u10:message,, +12:u01:message,, +20:u06:request/response, +15:u00:transformed, +15:u03:intervening, +20:u14:request/response, +12:u00:message,, +20:u05:request/response, +15:u02:intervening, +9:u08:Class, +20:u13:request/response, +20:u04:request/response, +15:u01:intervening, +9:u07:Class, +20:u12:request/response, +20:u03:request/response, +15:u00:intervening, +9:u06:Class, +20:u11:request/response, +20:u02:request/response, +14:u08:ciphertext, +9:u05:Class, +20:u10:request/response, +20:u01:request/response, +9:u04:Class, +20:u00:request/response, +14:u07:ciphertext, +9:u03:Class, +14:u06:ciphertext, +9:u02:Class, +14:u14:ciphertext, +14:u05:ciphertext, +9:u01:Class, +14:u13:ciphertext, +14:u04:ciphertext, +9:u00:Class, +14:u12:ciphertext, +7:u22:cip, +8:u23:ciph, +14:u03:ciphertext, +14:u11:ciphertext, +14:u02:ciphertext, +14:u10:ciphertext, +14:u01:ciphertext, +14:u00:ciphertext, +7:u08:U)., +10:uI2:,""()., +7:u07:U)., +10:uI1:,""()., +7:u06:U)., +10:uI0:,""()., +9:uI2:,,""(, +7:u05:U)., +9:uI1:,,""(, +7:u04:U)., +8:u23:Clas, +9:uI0:,,""(, +7:u03:U)., +7:u02:U)., +7:u01:U)., +7:u00:U)., +11:u08:summary, +11:u07:summary, +11:u06:summary, +11:u08:Options, +11:u05:summary, +11:u04:summary, +11:u07:Options, +18:u08:Specifications, +11:u03:summary, +11:u06:Options, +11:u02:summary, +11:u05:Options, +18:u07:Specifications, +11:u01:summary, +11:u04:Options, +18:u06:Specifications, +11:u00:summary, +11:u03:Options, +18:u05:Specifications, +11:u02:Options, +18:u04:Specifications, +11:u01:Options, +18:u03:Specifications, +9:u08:Inner, +11:u00:Options, +18:u02:Specifications, +9:u07:Inner, +18:u01:Specifications, +9:u06:Inner, +18:u00:Specifications, +9:u05:Inner, +9:u14:inner, +9:u04:Inner, +9:u13:inner, +9:u03:Inner, +9:u12:inner, +7:u22:Inn, +8:u23:Inne, +9:u02:Inner, +9:u11:inner, +9:u01:Inner, +9:u10:inner, +9:u00:Inner, +38:u08:+------+-----------------+---+---+, +38:u07:+------+-----------------+---+---+, +38:u06:+------+-----------------+---+---+, +38:u14:+------+-----------------+---+---+, +38:u05:+------+-----------------+---+---+, +38:u13:+------+-----------------+---+---+, +38:u04:+------+-----------------+---+---+, +38:u12:+------+-----------------+---+---+, +38:u03:+------+-----------------+---+---+, +38:u11:+------+-----------------+---+---+, +38:u02:+------+-----------------+---+---+, +5:u08:x, +38:u10:+------+-----------------+---+---+, +38:u01:+------+-----------------+---+---+, +5:u07:x, +38:u00:+------+-----------------+---+---+, +5:u06:x, +5:u05:x, +5:u04:x, +5:u03:x, +5:u02:x, +5:u01:x, +5:u00:x, +7:u08:258, +7:u07:258, +7:u06:258, +7:u05:258, +7:u04:258, +7:u03:258, +5:u14:e, +9:u08:Outer, +7:u02:258, +5:u13:e, +7:u01:258, +9:u07:Outer, +5:u12:e, +5:u21:E, +5:u22:E, +5:u23:E, +7:u00:258, +9:u06:Outer, +5:u11:e, +9:u05:Outer, +5:u10:e, +9:u14:outer, +9:u04:Outer, +9:u13:outer, +11:u08:option,, +9:u03:Outer, +9:u12:outer, +7:u22:Out, +8:u23:Oute, +9:u02:Outer, +9:u11:outer, +11:u07:option,, +9:u01:Outer, +9:u10:outer, +12:u14:message., +11:u06:option,, +9:u00:Outer, +12:u13:message., +11:u14:option,, +11:u05:option,, +12:u12:message., +11:u13:option,, +9:uI2:,.[],, +11:u04:option,, +12:u11:message., +11:u12:option,, +9:uI1:,.[],, +11:u03:option,, +12:u10:message., +11:u11:option,, +9:uI0:,.[],, +11:u02:option,, +11:u10:option,, +11:u01:option,, +11:u00:option,, +14:u08:repeatable, +14:u07:repeatable, +14:u06:repeatable, +10:u08:4.1.3., +14:u14:repeatable, +14:u05:repeatable, +14:u13:repeatable, +14:u04:repeatable, +10:u07:4.1.3., +12:u08:4.1.3.1., +14:u12:repeatable, +8:u23:repe, +14:u03:repeatable, +10:u06:4.1.3., +11:u08:Max-Age, +14:u11:repeatable, +10:u14:4.1.3., +14:u02:repeatable, +10:u05:4.1.3., +12:u07:4.1.3.1., +11:u07:Max-Age, +14:u10:repeatable, +10:u13:4.1.3., +14:u01:repeatable, +10:u04:4.1.3., +12:u06:4.1.3.1., +11:u06:Max-Age, +10:u12:4.1.3., +12:u14:4.1.3.1., +14:u00:repeatable, +10:u03:4.1.3., +12:u05:4.1.3.1., +11:u05:Max-Age, +10:u11:4.1.3., +12:u13:4.1.3.1., +10:u02:4.1.3., +12:u04:4.1.3.1., +11:u04:Max-Age, +10:u10:4.1.3., +12:u12:4.1.3.1., +10:u01:4.1.3., +12:u03:4.1.3.1., +11:u03:Max-Age, +12:u11:4.1.3.1., +10:uI2:([]),-, +10:u00:4.1.3., +12:u02:4.1.3.1., +11:u02:Max-Age, +12:u10:4.1.3.1., +10:uI1:([]),-, +12:u01:4.1.3.1., +11:u01:Max-Age, +10:uI0:([]),-, +12:u00:4.1.3.1., +11:u00:Max-Age, +8:u08:8.2,, +8:u07:8.2,, +8:u06:8.2,, +12:u08:relieves, +8:u14:8.2,, +8:u05:8.2,, +8:u13:8.2,, +9:uI2:.,.,,, +8:u04:8.2,, +12:u07:relieves, +11:u08:option., +8:u12:8.2,, +8:u23:8.2,, +9:uI1:.,.,,, +8:u03:8.2,, +12:u06:relieves, +8:u11:8.2,, +12:u14:relieves, +9:uI0:.,.,,, +8:u02:8.2,, +12:u05:relieves, +11:u07:option., +13:u08:(Changed), +8:u10:8.2,, +12:u13:relieves, +8:u01:8.2,, +12:u04:relieves, +11:u06:option., +11:u08:Observe, +14:u08:responses,, +12:u12:relieves, +11:u14:option., +8:u00:8.2,, +12:u03:relieves, +11:u05:option., +13:u07:(Changed), +14:u07:responses,, +12:u11:relieves, +11:u13:option., +12:u02:relieves, +11:u04:option., +13:u06:(Changed), +11:u07:Observe, +14:u06:responses,, +12:u10:relieves, +11:u12:option., +13:u14:(changed), +12:u01:relieves, +11:u03:option., +13:u05:(Changed), +11:u06:Observe, +14:u05:responses,, +11:u11:option., +13:u13:(changed), +11:u14:observe, +12:uI2:(),-(.)., +12:u00:relieves, +11:u02:option., +13:u04:(Changed), +11:u05:Observe, +12:u08:4.1.3.2., +14:u04:responses,, +11:u10:option., +13:u12:(changed), +11:u13:observe, +7:u22:(Ch, +8:u23:(Cha, +12:uI1:(),-(.)., +11:u01:option., +13:u03:(Changed), +11:u04:Observe, +14:u03:responses,, +12:u08:Uri-Host, +13:u11:(changed), +11:u12:observe, +8:u23:Obse, +12:uI0:(),-(.)., +11:u00:option., +13:u02:(Changed), +11:u03:Observe, +12:u07:4.1.3.2., +14:u02:responses,, +12:u07:Uri-Host, +13:u10:(changed), +11:u11:observe, +13:u01:(Changed), +11:u02:Observe, +12:u06:4.1.3.2., +14:u01:responses,, +12:u06:Uri-Host, +10:u08:5.10.1, +11:u10:observe, +12:u14:4.1.3.2., +13:u00:(Changed), +11:u01:Observe, +12:u05:4.1.3.2., +14:u00:responses,, +12:u05:Uri-Host, +10:u07:5.10.1, +9:u08:5.4.4, +12:u13:4.1.3.2., +10:uI2:....--, +11:u00:Observe, +12:u04:4.1.3.2., +12:u04:Uri-Host, +10:u06:5.10.1, +9:u07:5.4.4, +12:u08:privacy., +12:u12:4.1.3.2., +10:uI1:....--, +12:u03:4.1.3.2., +12:u03:Uri-Host, +10:u05:5.10.1, +9:u06:5.4.4, +12:u07:privacy., +12:u11:4.1.3.2., +10:uI0:....--, +10:uI2:..[]),, +12:u02:4.1.3.2., +12:u02:Uri-Host, +10:u04:5.10.1, +9:u05:5.4.4, +12:u06:privacy., +12:u08:Uri-Port, +12:u10:4.1.3.2., +10:uI1:..[]),, +12:u01:4.1.3.2., +12:u01:Uri-Host, +10:u03:5.10.1, +9:u04:5.4.4, +12:u05:privacy., +12:u07:Uri-Port, +12:u08:4.1.3.3., +10:uI0:..[]),, +12:u00:4.1.3.2., +12:u00:Uri-Host, +10:u02:5.10.1, +9:u03:5.4.4, +12:u04:privacy., +12:u06:Uri-Port, +12:u07:4.1.3.3., +9:uI2:,-,-,, +10:u01:5.10.1, +9:u02:5.4.4, +12:u03:privacy., +12:u05:Uri-Port, +12:u06:4.1.3.3., +9:uI1:,-,-,, +8:uI2:-.-,, +10:u00:5.10.1, +9:u01:5.4.4, +12:u02:privacy., +12:u04:Uri-Port, +12:u05:4.1.3.3., +9:uI0:,-,-,, +8:uI1:-.-,, +9:u00:5.4.4, +12:u01:privacy., +12:u03:Uri-Port, +12:u04:4.1.3.3., +8:uI0:-.-,, +12:u00:privacy., +12:u02:Uri-Port, +12:u03:4.1.3.3., +12:u01:Uri-Port, +12:u02:4.1.3.3., +9:u08:Port,, +12:u00:Uri-Port, +12:u01:4.1.3.3., +12:u00:4.1.3.3., +9:u07:Port,, +16:u14:manipulation, +9:u06:Port,, +16:u13:manipulation, +9:u14:port,, +8:uI2:(-,-, +9:u05:Port,, +13:u08:Proxy-Uri, +16:u12:manipulation, +9:u13:port,, +8:u23:Mani, +8:uI1:(-,-, +7:uI2:,/), +9:u04:Port,, +13:u07:Proxy-Uri, +16:u11:manipulation, +9:u12:port,, +8:uI0:(-,-, +7:uI1:,/), +9:u03:Port,, +13:u08:Uri-Host,, +13:u06:Proxy-Uri, +16:u10:manipulation, +9:u11:port,, +12:u14:4.1.3.3., +7:uI0:,/), +9:u02:Port,, +13:u05:Proxy-Uri, +13:u08:Uri-Port,, +9:u10:port,, +12:u13:4.1.3.3., +9:u01:Port,, +13:u07:Uri-Host,, +12:u08:Uri-Path, +13:u04:Proxy-Uri, +13:u07:Uri-Port,, +7:u08:6.4, +12:u12:4.1.3.3., +13:u14:proxy-uri, +9:u00:Port,, +13:u06:Uri-Host,, +13:u03:Proxy-Uri, +13:u06:Uri-Port,, +7:u07:6.4, +12:u11:4.1.3.3., +13:u13:proxy-uri, +13:u14:uri-host,, +13:u05:Uri-Host,, +12:u07:Uri-Path, +13:u02:Proxy-Uri, +13:u05:Uri-Port,, +7:u06:6.4, +12:u10:4.1.3.3., +13:u12:proxy-uri, +13:u13:uri-host,, +11:uI2:-,-,-,-, +13:u04:Uri-Host,, +12:u06:Uri-Path, +15:u08:composition, +13:u01:Proxy-Uri, +13:u04:Uri-Port,, +7:u05:6.4, +13:u11:proxy-uri, +13:u12:uri-host,, +12:u14:uri-path, +6:u21:Ur, +7:u22:Uri, +8:u23:Uri-, +11:uI1:-,-,-,-, +13:u03:Uri-Host,, +12:u05:Uri-Path, +13:u00:Proxy-Uri, +13:u03:Uri-Port,, +7:u04:6.4, +13:u10:proxy-uri, +13:u11:uri-host,, +12:u13:uri-path, +11:uI0:-,-,-,-, +13:u02:Uri-Host,, +12:u04:Uri-Path, +15:u07:composition, +13:u02:Uri-Port,, +7:u03:6.4, +13:u10:uri-host,, +12:u12:uri-path, +13:u01:Uri-Host,, +12:u03:Uri-Path, +15:u06:composition, +13:u01:Uri-Port,, +7:u02:6.4, +12:u11:uri-path, +15:u14:composition, +13:u00:Uri-Host,, +12:u02:Uri-Path, +15:u05:composition, +9:u08:Uri-*, +13:u00:Uri-Port,, +7:u01:6.4, +12:u10:uri-path, +15:u13:composition, +9:uI2:-,-,-, +12:u01:Uri-Path, +15:u04:composition, +15:u08:[RFC7252])., +7:u00:6.4, +15:u12:composition, +9:uI1:-,-,-, +12:u00:Uri-Path, +15:u03:composition, +9:u07:Uri-*, +16:u08:OSCORE-aware, +15:u11:composition, +9:uI0:-,-,-, +15:u02:composition, +9:u06:Uri-*, +15:u07:[RFC7252])., +16:u07:OSCORE-aware, +15:u10:composition, +9:u14:uri-*, +15:u01:composition, +9:u05:Uri-*, +15:u06:[RFC7252])., +11:u08:to-HTTP, +16:u06:OSCORE-aware, +9:u13:uri-*, +15:u14:[rfc7252])., +7:uI2:-*(, +15:u00:composition, +9:u04:Uri-*, +15:u05:[RFC7252])., +18:u08:cross-protocol, +16:u05:OSCORE-aware, +9:u12:uri-*, +15:u13:[rfc7252])., +7:uI1:-*(, +9:uI2:[]).-, +9:u03:Uri-*, +15:u04:[RFC7252])., +11:u07:to-HTTP, +16:u04:OSCORE-aware, +12:u08:proxying, +9:u11:uri-*, +15:u12:[rfc7252])., +7:uI0:-*(, +9:uI1:[]).-, +9:u02:Uri-*, +15:u03:[RFC7252])., +11:u06:to-HTTP, +18:u07:cross-protocol, +15:u08:decomposing, +16:u03:OSCORE-aware, +12:u07:proxying, +9:u10:uri-*, +15:u11:[rfc7252])., +11:u14:to-http, +9:uI0:[]).-, +9:u01:Uri-*, +15:u02:[RFC7252])., +11:u05:to-HTTP, +18:u06:cross-protocol, +16:u02:OSCORE-aware, +12:u06:proxying, +15:u10:[rfc7252])., +11:u13:to-http, +18:u14:cross-protocol, +9:uI2:-(.)., +9:u00:Uri-*, +15:u01:[RFC7252])., +11:u04:to-HTTP, +18:u05:cross-protocol, +15:u07:decomposing, +16:u01:OSCORE-aware, +12:u05:proxying, +11:u12:to-http, +18:u13:cross-protocol, +8:u23:to-H, +9:uI1:-(.)., +15:u00:[RFC7252])., +11:u03:to-HTTP, +18:u04:cross-protocol, +15:u06:decomposing, +16:u00:OSCORE-aware, +12:u04:proxying, +11:u11:to-http, +18:u12:cross-protocol, +15:u14:decomposing, +9:uI0:-(.)., +11:u02:to-HTTP, +18:u03:cross-protocol, +15:u05:decomposing, +12:u03:proxying, +11:u10:to-http, +18:u11:cross-protocol, +15:u13:decomposing, +11:u01:to-HTTP, +18:u02:cross-protocol, +15:u04:decomposing, +12:u02:proxying, +18:u10:cross-protocol, +15:u12:decomposing, +11:u00:to-HTTP, +18:u01:cross-protocol, +15:u03:decomposing, +12:u01:proxying, +16:u08:Proxy-Scheme, +15:u11:decomposing, +18:u00:cross-protocol, +15:u02:decomposing, +12:u00:proxying, +16:u07:Proxy-Scheme, +15:u10:decomposing, +13:uI2:-"://./?", +15:u01:decomposing, +16:u06:Proxy-Scheme, +13:uI1:-"://./?", +15:u00:decomposing, +16:u05:Proxy-Scheme, +13:uI0:-"://./?", +16:u04:Proxy-Scheme, +13:u08:Uri-Query, +8:uI2:-".", +16:u03:Proxy-Scheme, +13:u07:Uri-Query, +8:uI1:-".", +9:uI2:-""(), +16:u02:Proxy-Scheme, +13:u06:Uri-Query, +8:uI0:-".", +9:uI1:-""(), +16:u01:Proxy-Scheme, +13:u05:Uri-Query, +9:uI0:-""(), +16:u00:Proxy-Scheme, +13:u04:Uri-Query, +13:u03:Uri-Query, +13:u02:Uri-Query, +13:u01:Uri-Query, +11:u08:object:, +13:u00:Uri-Query, +10:u08:4.1.1;, +10:u07:4.1.1;, +11:u07:object:, +10:u06:4.1.1;, +11:u06:object:, +10:u05:4.1.1;, +11:u14:object:, +8:uI2:..;,, +11:u05:object:, +10:u04:4.1.1;, +11:u13:object:, +8:uI1:..;,, +11:u04:object:, +10:u03:4.1.1;, +11:u12:object:, +8:uI0:..;,, +11:u03:object:, +10:u02:4.1.1;, +11:u11:object:, +11:u02:object:, +12:u08:4.1.3.4., +10:u01:4.1.1;, +11:u10:object:, +11:u01:object:, +10:u00:4.1.1;, +11:u00:object:, +12:u07:4.1.3.4., +13:u08:[RFC7959], +11:uI2:-"://.", +12:u06:4.1.3.4., +14:u08:block-wise, +13:u07:[RFC7959], +12:u14:4.1.3.4., +11:uI1:-"://.", +9:uI2:..[]., +12:u05:4.1.3.4., +11:u08:Size2),, +13:u06:[RFC7959], +14:u08:transfers., +12:u13:4.1.3.4., +14:u14:block-wise, +11:uI0:-"://.", +9:uI1:..[]., +12:u04:4.1.3.4., +14:u07:block-wise, +16:u08:segmentation, +13:u05:[RFC7959], +14:u07:transfers., +12:u12:4.1.3.4., +14:u13:block-wise, +9:uI0:..[]., +12:u03:4.1.3.4., +14:u06:block-wise, +11:u07:Size2),, +12:u08:options,, +13:u04:[RFC7959], +14:u06:transfers., +12:u11:4.1.3.4., +14:u12:block-wise, +7:u22:Blo, +8:u23:Bloc, +12:u02:4.1.3.4., +14:u05:block-wise, +11:u06:Size2),, +16:u07:segmentation, +13:u03:[RFC7959], +14:u05:transfers., +12:u10:4.1.3.4., +14:u11:block-wise, +11:u14:size2),, +10:uI2:-.(,,,, +12:u01:4.1.3.4., +14:u04:block-wise, +11:u05:Size2),, +16:u06:segmentation, +12:u07:options,, +13:u02:[RFC7959], +14:u04:transfers., +14:u10:block-wise, +11:u13:size2),, +16:u14:segmentation, +10:uI1:-.(,,,, +12:u00:4.1.3.4., +14:u03:block-wise, +11:u04:Size2),, +16:u05:segmentation, +12:u06:options,, +13:u01:[RFC7959], +14:u03:transfers., +11:u12:size2),, +16:u13:segmentation, +12:u14:options,, +7:u22:Siz, +8:u23:Size, +10:uI0:-.(,,,, +14:u02:block-wise, +11:u03:Size2),, +16:u04:segmentation, +12:u05:options,, +13:u00:[RFC7959], +14:u02:transfers., +11:u11:size2),, +16:u12:segmentation, +12:u13:options,, +14:u01:block-wise, +11:u02:Size2),, +16:u03:segmentation, +12:u04:options,, +14:u01:transfers., +11:u10:size2),, +16:u11:segmentation, +12:u12:options,, +14:u00:block-wise, +11:u01:Size2),, +16:u02:segmentation, +12:u03:options,, +14:u08:4.1.3.4.1., +14:u00:transfers., +16:u10:segmentation, +12:u11:options,, +11:u00:Size2),, +16:u01:segmentation, +12:u02:options,, +12:u10:options,, +16:u00:segmentation, +12:u01:options,, +14:u07:4.1.3.4.1., +12:u00:options,, +14:u06:4.1.3.4.1., +14:u14:4.1.3.4.1., +14:u05:4.1.3.4.1., +9:u08:Block, +14:u13:4.1.3.4.1., +14:u04:4.1.3.4.1., +9:u07:Block, +14:u12:4.1.3.4.1., +13:u14:[rfc7959], +14:u03:4.1.3.4.1., +14:u08:[RFC7959]., +9:u06:Block, +14:u11:4.1.3.4.1., +13:u13:[rfc7959], +14:u02:4.1.3.4.1., +14:u08:4.1.3.4.2., +9:u05:Block, +14:u10:4.1.3.4.1., +13:u12:[rfc7959], +14:u01:4.1.3.4.1., +14:u07:[RFC7959]., +11:u08:Proxies, +9:u04:Block, +13:u11:[rfc7959], +14:u00:4.1.3.4.1., +14:u06:[RFC7959]., +14:u07:4.1.3.4.2., +9:u03:Block, +13:u10:[rfc7959], +14:u14:[rfc7959]., +14:u05:[RFC7959]., +14:u06:4.1.3.4.2., +11:u07:Proxies, +9:u02:Block, +14:u13:[rfc7959]., +14:u14:4.1.3.4.2., +14:u04:[RFC7959]., +14:u05:4.1.3.4.2., +11:u06:Proxies, +14:u08:protected., +9:u01:Block, +14:u12:[rfc7959]., +14:u13:4.1.3.4.2., +14:u03:[RFC7959]., +14:u04:4.1.3.4.2., +11:u05:Proxies, +9:u00:Block, +14:u11:[rfc7959]., +14:u12:4.1.3.4.2., +14:u02:[RFC7959]., +14:u03:4.1.3.4.2., +11:u04:Proxies, +14:u07:protected., +17:u08:indefinitely,, +14:u10:[rfc7959]., +14:u11:4.1.3.4.2., +14:u01:[RFC7959]., +14:u02:4.1.3.4.2., +11:u03:Proxies, +14:u06:protected., +17:u07:indefinitely,, +14:u10:4.1.3.4.2., +14:u14:protected., +14:u00:[RFC7959]., +14:u01:4.1.3.4.2., +11:u02:Proxies, +14:u05:protected., +17:u06:indefinitely,, +14:u13:protected., +14:u00:4.1.3.4.2., +11:u01:Proxies, +14:u04:protected., +17:u05:indefinitely,, +14:u12:protected., +11:u00:Proxies, +14:u03:protected., +17:u04:indefinitely,, +14:u11:protected., +14:u02:protected., +17:u03:indefinitely,, +14:u10:protected., +14:u01:protected., +17:u02:indefinitely,, +14:u00:protected., +17:u01:indefinitely,, +17:u00:indefinitely,, +16:u08:unfragmented, +12:u08:Messages, +16:u07:unfragmented, +16:u06:unfragmented, +13:u08:exceeding, +12:u07:Messages, +16:u05:unfragmented, +13:u07:exceeding, +12:u06:Messages, +16:u04:unfragmented, +13:u06:exceeding, +12:u05:Messages, +16:u03:unfragmented, +13:u05:exceeding, +12:u04:Messages, +16:u02:unfragmented, +13:u04:exceeding, +12:u03:Messages, +16:u01:unfragmented, +13:u03:exceeding, +9:u14:shall, +12:u02:Messages, +16:u00:unfragmented, +13:u02:exceeding, +9:u13:shall, +12:u01:Messages, +14:u08:discarded., +13:u01:exceeding, +9:u12:shall, +8:u23:SHAL, +12:u00:Messages, +13:u00:exceeding, +9:u11:shall, +14:u07:discarded., +9:u10:shall, +14:u06:discarded., +14:u14:discarded., +14:u05:discarded., +14:u13:discarded., +14:u04:discarded., +14:u12:discarded., +14:u03:discarded., +24:u08:[CoAP-ECHO-REQ-TAG]., +14:u11:discarded., +14:u02:discarded., +12:u08:4.1.3.5., +14:u10:discarded., +14:u01:discarded., +24:u07:[CoAP-ECHO-REQ-TAG]., +14:u00:discarded., +24:u06:[CoAP-ECHO-REQ-TAG]., +12:u07:4.1.3.5., +13:u08:[RFC7641], +24:u14:[coap-echo-req-tag]., +24:u05:[CoAP-ECHO-REQ-TAG]., +12:u06:4.1.3.5., +13:u07:[RFC7641], +24:u13:[coap-echo-req-tag]., +12:u14:4.1.3.5., +10:uI2:[---]., +24:u04:[CoAP-ECHO-REQ-TAG]., +12:u05:4.1.3.5., +12:u08:omitted., +13:u06:[RFC7641], +24:u12:[coap-echo-req-tag]., +12:u13:4.1.3.5., +10:uI1:[---]., +24:u03:[CoAP-ECHO-REQ-TAG]., +12:u04:4.1.3.5., +13:u05:[RFC7641], +24:u11:[coap-echo-req-tag]., +12:u12:4.1.3.5., +10:uI0:[---]., +24:u02:[CoAP-ECHO-REQ-TAG]., +12:u03:4.1.3.5., +12:u07:omitted., +13:u04:[RFC7641], +24:u10:[coap-echo-req-tag]., +12:u11:4.1.3.5., +24:u01:[CoAP-ECHO-REQ-TAG]., +12:u02:4.1.3.5., +12:u06:omitted., +13:u03:[RFC7641], +12:u10:4.1.3.5., +12:u14:omitted., +8:uI2:[],-, +24:u00:[CoAP-ECHO-REQ-TAG]., +12:u01:4.1.3.5., +12:u05:omitted., +13:u02:[RFC7641], +16:u08:observations, +12:u13:omitted., +8:uI1:[],-, +12:u00:4.1.3.5., +12:u04:omitted., +13:u01:[RFC7641], +16:u07:observations, +12:u12:omitted., +6:u21:om, +7:u22:omi, +8:u23:omit, +8:uI0:[],-, +12:u03:omitted., +13:u00:[RFC7641], +16:u06:observations, +12:u11:omitted., +14:uI2:..[--],..,, +12:u02:omitted., +16:u05:observations, +12:u10:omitted., +14:uI1:..[--],..,, +12:u01:omitted., +16:u04:observations, +14:uI0:..[--],..,, +12:u00:omitted., +16:u03:observations, +18:u08:registrations,, +16:u02:observations, +16:u01:observations, +18:u07:registrations,, +16:u00:observations, +18:u06:registrations,, +18:u08:cancellations,, +18:u14:registrations,, +18:u05:registrations,, +18:u07:cancellations,, +18:u13:registrations,, +18:u04:registrations,, +18:u06:cancellations,, +18:u12:registrations,, +18:u03:registrations,, +18:u05:cancellations,, +18:u11:registrations,, +8:uI2:,.[], +18:u02:registrations,, +18:u04:cancellations,, +18:u10:registrations,, +8:uI1:,.[], +18:u01:registrations,, +18:u03:cancellations,, +13:u14:messages,, +8:uI0:,.[], +18:u00:registrations,, +18:u02:cancellations,, +13:u13:messages,, +18:u01:cancellations,, +13:u12:messages,, +18:u00:cancellations,, +13:u11:messages,, +13:u10:messages,, +8:u08:POST, +8:u07:POST, +14:u08:4.1.3.5.1., +8:u06:POST, +8:u05:POST, +17:u08:Registrations, +14:u07:4.1.3.5.1., +8:u04:POST, +17:u07:Registrations, +14:u06:4.1.3.5.1., +19:u08:(cancellation)., +8:u03:POST, +17:u06:Registrations, +14:u14:4.1.3.5.1., +11:uI2:.()(.)., +14:u05:4.1.3.5.1., +8:u02:POST, +17:u05:Registrations, +14:u13:4.1.3.5.1., +11:uI1:.()(.)., +14:u04:4.1.3.5.1., +19:u07:(cancellation)., +8:u01:POST, +17:u04:Registrations, +14:u12:4.1.3.5.1., +11:uI0:.()(.)., +14:u03:4.1.3.5.1., +19:u06:(cancellation)., +8:u00:POST, +17:u03:Registrations, +11:u08:Partial, +14:u11:4.1.3.5.1., +19:u14:(cancellation)., +7:uI2:;(), +14:u02:4.1.3.5.1., +19:u05:(cancellation)., +17:u02:Registrations, +11:u07:Partial, +14:u10:4.1.3.5.1., +19:u13:(cancellation)., +7:uI1:;(), +14:u01:4.1.3.5.1., +19:u04:(cancellation)., +17:u01:Registrations, +11:u06:Partial, +19:u12:(cancellation)., +8:u23:(can, +7:uI0:;(), +14:u00:4.1.3.5.1., +19:u03:(cancellation)., +18:u08:Intermediaries, +17:u00:Registrations, +11:u05:Partial, +9:u08:5.4)., +19:u11:(cancellation)., +19:u02:(cancellation)., +11:u04:Partial, +9:u07:5.4)., +19:u10:(cancellation)., +19:u01:(cancellation)., +18:u07:Intermediaries, +13:u08:transform, +11:u03:Partial, +9:u06:5.4)., +7:uI2:''(, +19:u00:(cancellation)., +18:u06:Intermediaries, +11:u02:Partial, +9:u05:5.4)., +18:u14:intermediaries, +7:uI1:''(, +18:u05:Intermediaries, +13:u07:transform, +11:u01:Partial, +9:u04:5.4)., +18:u13:intermediaries, +7:uI0:''(, +18:u04:Intermediaries, +13:u06:transform, +11:u00:Partial, +9:u03:5.4)., +18:u12:intermediaries, +13:u14:transform, +18:u03:Intermediaries, +13:u05:transform, +9:u02:5.4)., +18:u11:intermediaries, +13:u13:transform, +18:u02:Intermediaries, +13:u04:transform, +9:u01:5.4)., +18:u10:intermediaries, +13:u12:transform, +18:u01:Intermediaries, +13:u03:transform, +9:u00:5.4)., +13:u11:transform, +18:u00:Intermediaries, +13:u02:transform, +13:u10:transform, +13:u01:transform, +13:u00:transform, +14:u08:[RFC7641]), +14:u07:[RFC7641]), +14:u06:[RFC7641]), +14:u14:[rfc7641]), +14:u05:[RFC7641]), +10:u08:coming, +14:u13:[rfc7641]), +14:u04:[RFC7641]), +18:u08:OSCORE-unaware, +10:u07:coming, +14:u12:[rfc7641]), +14:u03:[RFC7641]), +10:u06:coming, +14:u11:[rfc7641]), +14:u02:[RFC7641]), +18:u07:OSCORE-unaware, +14:u08:triggered., +10:u05:coming, +14:u10:[rfc7641]), +14:u01:[RFC7641]), +18:u06:OSCORE-unaware, +10:u04:coming, +18:u14:oscore-unaware, +14:u00:[RFC7641]), +18:u05:OSCORE-unaware, +14:u07:triggered., +12:u08:replayed, +10:u03:coming, +13:u08:canceling, +18:u13:oscore-unaware, +18:u04:OSCORE-unaware, +14:u06:triggered., +10:u02:coming, +13:u07:canceling, +18:u12:oscore-unaware, +14:u14:triggered., +18:u03:OSCORE-unaware, +14:u05:triggered., +12:u07:replayed, +10:u01:coming, +13:u06:canceling, +18:u11:oscore-unaware, +14:u13:triggered., +18:u02:OSCORE-unaware, +14:u04:triggered., +12:u06:replayed, +10:u00:coming, +13:u05:canceling, +18:u10:oscore-unaware, +14:u12:triggered., +12:u14:replayed, +18:u01:OSCORE-unaware, +14:u03:triggered., +12:u05:replayed, +13:u04:canceling, +14:u11:triggered., +12:u13:replayed, +18:u00:OSCORE-unaware, +14:u02:triggered., +12:u04:replayed, +13:u03:canceling, +14:u10:triggered., +12:u12:replayed, +14:u01:triggered., +12:u03:replayed, +13:u02:canceling, +12:u11:replayed, +14:u00:triggered., +12:u02:replayed, +13:u01:canceling, +12:u10:replayed, +12:u01:replayed, +13:u00:canceling, +12:u00:replayed, +18:u08:intermediaries, +18:u07:intermediaries, +18:u06:intermediaries, +18:u05:intermediaries, +18:u04:intermediaries, +14:u08:4.1.3.5.2., +10:uI2:(.[]);, +18:u03:intermediaries, +10:uI1:(.[]);, +18:u02:intermediaries, +14:u07:4.1.3.5.2., +10:uI0:(.[]);, +18:u01:intermediaries, +14:u06:4.1.3.5.2., +14:u14:4.1.3.5.2., +18:u00:intermediaries, +14:u05:4.1.3.5.2., +14:u13:4.1.3.5.2., +14:u04:4.1.3.5.2., +11:u08:replay,, +14:u12:4.1.3.5.2., +14:u03:4.1.3.5.2., +11:u07:replay,, +15:u08:Observation, +14:u11:4.1.3.5.2., +14:u02:4.1.3.5.2., +11:u06:replay,, +15:u07:Observation, +14:u10:4.1.3.5.2., +14:u01:4.1.3.5.2., +11:u05:replay,, +15:u06:Observation, +14:u00:4.1.3.5.2., +11:u04:replay,, +15:u05:Observation, +11:u03:replay,, +15:u04:Observation, +10:u08:7.4.1., +11:u02:replay,, +15:u03:Observation, +10:u07:7.4.1., +11:u01:replay,, +15:u02:Observation, +10:u06:7.4.1., +7:u08:3.2, +11:u00:replay,, +15:u01:Observation, +10:u05:7.4.1., +7:u07:3.2, +15:u00:Observation, +10:u04:7.4.1., +7:u06:3.2, +12:u08:ordering, +10:u03:7.4.1., +7:u05:3.2, +9:uI2:.[])., +10:u02:7.4.1., +7:u04:3.2, +9:uI1:.[])., +12:u07:ordering, +10:u01:7.4.1., +7:u03:3.2, +7:u08:IVs, +9:uI0:.[])., +12:u06:ordering, +10:u00:7.4.1., +7:u02:3.2, +7:u07:IVs, +12:u14:ordering, +12:u05:ordering, +7:u01:3.2, +7:u06:IVs, +12:u13:ordering, +12:u04:ordering, +7:u00:3.2, +7:u05:IVs, +12:u12:ordering, +12:u03:ordering, +7:u04:IVs, +12:u11:ordering, +8:u23:Part, +12:u02:ordering, +7:u03:IVs, +12:u10:ordering, +12:u01:ordering, +7:u02:IVs, +12:u00:ordering, +7:u01:IVs, +7:u00:IVs, +11:u08:oldest., +11:u07:oldest., +11:u06:oldest., +11:u14:oldest., +11:u05:oldest., +11:u13:oldest., +11:u04:oldest., +11:u12:oldest., +8:u23:olde, +11:u03:oldest., +11:u11:oldest., +11:u02:oldest., +12:u08:4.1.3.6., +11:u10:oldest., +11:u01:oldest., +15:u08:No-Response, +11:u00:oldest., +12:u07:4.1.3.6., +15:u07:No-Response, +13:u08:[RFC7967], +12:u06:4.1.3.6., +15:u06:No-Response, +13:u07:[RFC7967], +12:u14:4.1.3.6., +12:u05:4.1.3.6., +15:u05:No-Response, +13:u06:[RFC7967], +12:u13:4.1.3.6., +15:u14:no-response, +12:u04:4.1.3.6., +15:u04:No-Response, +13:u05:[RFC7967], +12:u12:4.1.3.6., +15:u13:no-response, +12:u03:4.1.3.6., +15:u03:No-Response, +13:u04:[RFC7967], +12:u11:4.1.3.6., +15:u12:no-response, +7:u22:No-, +8:u23:No-R, +12:u02:4.1.3.6., +15:u02:No-Response, +13:u03:[RFC7967], +12:u10:4.1.3.6., +15:u11:no-response, +12:u01:4.1.3.6., +15:u01:No-Response, +13:u02:[RFC7967], +15:u10:no-response, +12:u00:4.1.3.6., +13:u08:(suppress, +15:u00:No-Response, +13:u01:[RFC7967], +8:uI2:,-.-, +13:u00:[RFC7967], +8:uI1:,-.-, +13:u07:(suppress, +8:uI0:,-.-, +13:u06:(suppress, +13:u14:(suppress, +13:u05:(suppress, +12:u08:4.1.3.7., +13:u13:(suppress, +13:u04:(suppress, +13:u12:(suppress, +8:u23:(sup, +13:u03:(suppress, +12:u07:4.1.3.7., +13:u11:(suppress, +13:u02:(suppress, +12:u06:4.1.3.7., +13:u10:(suppress, +12:u14:4.1.3.7., +13:u01:(suppress, +12:u05:4.1.3.7., +12:u13:4.1.3.7., +13:u00:(suppress, +12:u04:4.1.3.7., +10:u08:whole,, +12:u12:4.1.3.7., +12:u03:4.1.3.7., +10:u07:whole,, +12:u11:4.1.3.7., +12:u02:4.1.3.7., +10:u06:whole,, +12:u10:4.1.3.7., +12:u01:4.1.3.7., +10:u05:whole,, +12:u00:4.1.3.7., +10:u04:whole,, +9:uI2:(.).:, +10:u03:whole,, +9:uI1:(.).:, +10:u02:whole,, +9:uI0:(.).:, +32:u08:+------------------+---+---+, +10:u01:whole,, +10:u00:whole,, +32:u07:+------------------+---+---+, +9:u08:Field, +32:u06:+------------------+---+---+, +9:u07:Field, +32:u14:+------------------+---+---+, +32:u05:+------------------+---+---+, +9:u06:Field, +32:u13:+------------------+---+---+, +32:u04:+------------------+---+---+, +9:u05:Field, +32:u12:+------------------+---+---+, +32:u03:+------------------+---+---+, +9:u04:Field, +32:u11:+------------------+---+---+, +32:u02:+------------------+---+---+, +9:u03:Field, +32:u10:+------------------+---+---+, +32:u01:+------------------+---+---+, +9:u02:Field, +32:u00:+------------------+---+---+, +9:u01:Field, +9:u00:Field, +11:u08:header), +11:u07:header), +11:u08:cannot,, +11:u06:header), +11:u07:cannot,, +11:u14:header), +11:u05:header), +11:u06:cannot,, +11:u13:header), +8:uI2:)/;,, +11:u04:header), +11:u05:cannot,, +11:u12:header), +8:uI1:)/;,, +11:u03:header), +11:u04:cannot,, +11:u11:header), +8:uI0:)/;,, +11:u02:header), +11:u03:cannot,, +11:u10:header), +11:u01:header), +11:u02:cannot,, +9:uI2:([]),, +11:u00:header), +11:u01:cannot,, +9:uI1:([]),, +11:u00:cannot,, +7:u08:GET, +9:uI0:([]),, +7:u07:GET, +7:u06:GET, +7:u05:GET, +7:u04:GET, +7:u03:GET, +7:u02:GET, +7:u01:GET, +7:u00:GET, +8:u08:5.3), +10:uI2:.().(), +8:u07:5.3), +10:uI1:.().(), +8:u06:5.3), +10:uI0:.().(), +8:u05:5.3), +8:u04:5.3), +7:u14:u)., +8:u03:5.3), +7:u13:u)., +8:u02:5.3), +7:u12:u)., +6:u21:U), +7:u22:U)., +7:u23:U)., +8:u01:5.3), +7:u11:u)., +8:u00:5.3), +7:u10:u)., +13:u08:recreates, +13:u07:recreates, +13:u06:recreates, +13:u14:recreates, +13:u05:recreates, +13:u13:recreates, +13:u04:recreates, +13:u12:recreates, +8:u23:recr, +13:u03:recreates, +12:u08:coincide, +13:u11:recreates, +9:uI2:(.-.), +13:u02:recreates, +13:u10:recreates, +9:uI1:(.-.), +13:u01:recreates, +12:u07:coincide, +9:uI0:(.-.), +13:u00:recreates, +12:u06:coincide, +12:u08:Settings, +12:u14:coincide, +12:u05:coincide, +12:u13:coincide, +12:u04:coincide, +12:u07:Settings, +12:u12:coincide, +7:u22:coi, +8:u23:coin, +12:u03:coincide, +12:u06:Settings, +12:u11:coincide, +12:u14:settings, +12:u02:coincide, +12:u05:Settings, +12:u10:coincide, +12:u13:settings, +12:u01:coincide, +12:u04:Settings, +12:u12:settings, +12:u00:coincide, +12:u03:Settings, +12:u11:settings, +12:u02:Settings, +12:u10:settings, +12:u01:Settings, +12:u00:Settings, +9:uI2:.,.(), +9:uI1:.,.(), +10:u08:(Class, +9:uI0:.,.(), +7:u08:E)., +10:u07:(Class, +7:u07:E)., +10:u06:(Class, +7:u06:E)., +10:u14:(class, +10:u05:(Class, +7:u05:E)., +10:u13:(class, +10:u04:(Class, +7:u04:E)., +13:u08:unaltered, +10:u12:(class, +8:u14:code, +7:u22:(Cl, +8:u23:(Cla, +10:u03:(Class, +7:u03:E)., +13:u07:unaltered, +10:u11:(class, +8:u13:code, +10:u02:(Class, +7:u02:E)., +13:u06:unaltered, +10:u10:(class, +8:u12:code, +10:u01:(Class, +7:u01:E)., +13:u05:unaltered, +8:u11:code, +10:u00:(Class, +7:u00:E)., +13:u04:unaltered, +8:u10:code, +13:u03:unaltered, +13:u02:unaltered, +13:u08:[RFC8152], +13:u01:unaltered, +13:u00:unaltered, +13:u07:[RFC8152], +13:u06:[RFC8152], +13:u14:[rfc8152], +13:u05:[RFC8152], +13:u13:[rfc8152], +12:uI2:[].----,, +13:u04:[RFC8152], +13:u12:[rfc8152], +12:uI1:[].----,, +13:u03:[RFC8152], +9:u08:(AAD), +13:u11:[rfc8152], +12:uI0:[].----,, +13:u02:[RFC8152], +11:u08:denotes, +13:u10:[rfc8152], +13:u01:[RFC8152], +9:u07:(AAD), +11:u07:denotes, +13:u00:[RFC8152], +9:u06:(AAD), +11:u06:denotes, +9:u14:(aad), +9:u05:(AAD), +11:u05:denotes, +9:u13:(aad), +9:u04:(AAD), +11:u04:denotes, +9:u12:(aad), +7:u22:(AA, +8:u23:(AAD, +9:u03:(AAD), +11:u03:denotes, +9:u11:(aad), +9:u02:(AAD), +11:u02:denotes, +11:u08:Number., +9:u10:(aad), +9:u01:(AAD), +11:u01:denotes, +11:u07:Number., +9:u00:(AAD), +11:u00:denotes, +11:u06:Number., +8:uI2:*''., +11:u05:Number., +8:uI1:*''., +11:u04:Number., +8:uI0:*''., +11:u03:Number., +11:u02:Number., +11:u01:Number., +11:u00:Number., +13:u08:(Appendix, +13:u07:(Appendix, +13:u06:(Appendix, +13:u05:(Appendix, +13:u04:(Appendix, +9:uI2:*''.., +13:u03:(Appendix, +19:u08:[Group-OSCORE]., +9:uI1:*''.., +13:u02:(Appendix, +19:u07:[Group-OSCORE]., +15:u08:Optionally,, +9:uI0:*''.., +13:u01:(Appendix, +19:u06:[Group-OSCORE]., +15:u07:Optionally,, +13:u00:(Appendix, +19:u05:[Group-OSCORE]., +15:u06:Optionally,, +19:u04:[Group-OSCORE]., +15:u05:Optionally,, +12:uI2:*,''(.)., +19:u03:[Group-OSCORE]., +15:u04:Optionally,, +12:uI1:*,''(.)., +19:u02:[Group-OSCORE]., +15:u03:Optionally,, +12:uI0:*,''(.)., +19:u01:[Group-OSCORE]., +15:u02:Optionally,, +19:u00:[Group-OSCORE]., +15:u01:Optionally,, +15:u00:Optionally,, +9:u08:5.3),, +9:u07:5.3),, +14:u08:[RFC8152]., +9:u06:5.3),, +14:u07:[RFC8152]., +11:uI2:),(.),(, +9:u05:5.3),, +14:u06:[RFC8152]., +11:uI1:),(.),(, +11:uI2:.),(.)., +9:u04:5.3),, +14:u05:[RFC8152]., +11:uI0:),(.),(, +11:uI1:.),(.)., +9:u03:5.3),, +14:u04:[RFC8152]., +11:uI0:.),(.)., +9:u02:5.3),, +14:u03:[RFC8152]., +9:u01:5.3),, +14:u02:[RFC8152]., +9:u00:5.3),, +14:u01:[RFC8152]., +14:u00:[RFC8152]., +73:u08:+----------+--------+------------+----------------+-----------------+, +8:u14:cose, +73:u07:+----------+--------+------------+----------------+-----------------+, +8:u13:cose, +73:u06:+----------+--------+------------+----------------+-----------------+, +8:u12:cose, +73:u14:+----------+--------+------------+----------------+-----------------+, +7:u22:COS, +8:u23:COSE, +73:u05:+----------+--------+------------+----------------+-----------------+, +8:u11:cose, +73:u13:+----------+--------+------------+----------------+-----------------+, +73:u04:+----------+--------+------------+----------------+-----------------+, +8:u10:cose, +73:u12:+----------+--------+------------+----------------+-----------------+, +73:u03:+----------+--------+------------+----------------+-----------------+, +73:u11:+----------+--------+------------+----------------+-----------------+, +73:u02:+----------+--------+------------+----------------+-----------------+, +73:u10:+----------+--------+------------+----------------+-----------------+, +73:u01:+----------+--------+------------+----------------+-----------------+, +73:u00:+----------+--------+------------+----------------+-----------------+, +8:u08:'kid, +12:u08:context', +8:u07:'kid, +12:u07:context', +8:u06:'kid, +12:u06:context', +8:u14:'kid, +8:u05:'kid, +12:u05:context', +8:u13:'kid, +8:u04:'kid, +12:u04:context', +11:u08:blocked, +8:u12:'kid, +6:u21:'k, +7:u22:'ki, +8:u23:'kid, +8:u03:'kid, +12:u03:context', +11:u07:blocked, +8:u11:'kid, +8:u02:'kid, +13:u08:[IV-GEN]., +12:u02:context', +11:u06:blocked, +14:u08:high-level, +8:u10:'kid, +8:u01:'kid, +12:u01:context', +11:u05:blocked, +14:u07:high-level, +8:u00:'kid, +13:u07:[IV-GEN]., +12:u00:context', +11:u04:blocked, +14:u06:high-level, +13:u06:[IV-GEN]., +11:u03:blocked, +14:u05:high-level, +12:u08:left-pad, +13:u14:[iv-gen]., +13:u05:[IV-GEN]., +11:u02:blocked, +14:u04:high-level, +12:u07:left-pad, +13:u13:[iv-gen]., +13:u04:[IV-GEN]., +11:u01:blocked, +14:u03:high-level, +12:u06:left-pad, +12:u08:(ID_PIV), +13:u12:[iv-gen]., +7:u22:[IV, +8:u23:[IV-, +13:u03:[IV-GEN]., +10:u08:padded, +11:u00:blocked, +14:u02:high-level, +12:u05:left-pad, +12:u07:(ID_PIV), +15:u08:concatenate, +13:u11:[iv-gen]., +9:uI2:.-(),, +13:u02:[IV-GEN]., +14:u01:high-level, +12:u04:left-pad, +12:u06:(ID_PIV), +15:u07:concatenate, +10:u08:ID_PIV, +13:u10:[iv-gen]., +9:uI1:.-(),, +13:u01:[IV-GEN]., +10:u07:padded, +14:u00:high-level, +12:u03:left-pad, +12:u05:(ID_PIV), +15:u06:concatenate, +10:u07:ID_PIV, +9:uI0:.-(),, +13:u00:[IV-GEN]., +10:u06:padded, +12:u02:left-pad, +12:u04:(ID_PIV), +15:u05:concatenate, +10:u06:ID_PIV, +10:u14:padded, +10:u05:padded, +12:u01:left-pad, +12:u03:(ID_PIV), +15:u04:concatenate, +10:u05:ID_PIV, +10:u13:padded, +10:u04:padded, +12:u00:left-pad, +12:u02:(ID_PIV), +15:u03:concatenate, +10:u04:ID_PIV, +6:u08:S,, +10:u12:padded, +10:u03:padded, +12:u01:(ID_PIV), +15:u02:concatenate, +10:u03:ID_PIV, +6:u07:S,, +10:u11:padded, +10:u02:padded, +12:u00:(ID_PIV), +15:u01:concatenate, +10:u02:ID_PIV, +6:u06:S,, +10:u10:padded, +10:u01:padded, +15:u00:concatenate, +10:u01:ID_PIV, +6:u05:S,, +10:u00:padded, +10:u00:ID_PIV, +6:u04:S,, +6:u03:S,, +13:u08:overhead., +6:u02:S,, +6:u01:S,, +13:u07:overhead., +6:u00:S,, +13:u06:overhead., +13:u14:overhead., +13:u05:overhead., +13:u13:overhead., +13:u04:overhead., +13:u12:overhead., +13:u03:overhead., +13:u11:overhead., +13:u02:overhead., +13:u10:overhead., +13:u01:overhead., +13:u00:overhead., +11:u08:<-nonce, +9:uI2:,...-, +54:u08:+---+-------------------+--------+---------+-----+, +9:uI1:,...-, +11:u07:<-nonce, +9:uI0:,...-, +11:u06:<-nonce, +54:u07:+---+-------------------+--------+---------+-----+, +5:u08:S, +11:u14:<-nonce, +11:u05:<-nonce, +54:u06:+---+-------------------+--------+---------+-----+, +5:u07:S, +11:u13:<-nonce, +54:u14:+---+-------------------+--------+---------+-----+, +11:u04:<-nonce, +54:u05:+---+-------------------+--------+---------+-----+, +5:u06:S, +11:u12:<-nonce, +54:u13:+---+-------------------+--------+---------+-----+, +7:u22:<-n, +8:u23:<-no, +11:u03:<-nonce, +54:u04:+---+-------------------+--------+---------+-----+, +5:u05:S, +11:u11:<-nonce, +54:u12:+---+-------------------+--------+---------+-----+, +11:u02:<-nonce, +54:u03:+---+-------------------+--------+---------+-----+, +5:u04:S, +11:u10:<-nonce, +54:u11:+---+-------------------+--------+---------+-----+, +11:u01:<-nonce, +54:u02:+---+-------------------+--------+---------+-----+, +26:u08:<----------------nonce, +5:u03:S, +54:u10:+---+-------------------+--------+---------+-----+, +11:u00:<-nonce, +54:u01:+---+-------------------+--------+---------+-----+, +5:u02:S, +54:u00:+---+-------------------+--------+---------+-----+, +26:u07:<----------------nonce, +54:u08:+------------------------------------------------+, +5:u01:S, +26:u06:<----------------nonce, +5:u00:S, +26:u14:<----------------nonce, +26:u05:<----------------nonce, +54:u07:+------------------------------------------------+, +26:u13:<----------------nonce, +26:u04:<----------------nonce, +54:u06:+------------------------------------------------+, +26:u12:<----------------nonce, +54:u14:+------------------------------------------------+, +26:u03:<----------------nonce, +54:u05:+------------------------------------------------+, +12:u08:|->(XOR), +26:u11:<----------------nonce, +54:u13:+------------------------------------------------+, +52:uI2:------------------------------------------------, +26:u02:<----------------nonce, +54:u04:+------------------------------------------------+, +26:u10:<----------------nonce, +54:u12:+------------------------------------------------+, +52:uI1:------------------------------------------------, +26:u01:<----------------nonce, +54:u03:+------------------------------------------------+, +12:u07:|->(XOR), +54:u11:+------------------------------------------------+, +52:uI0:------------------------------------------------, +26:u00:<----------------nonce, +54:u02:+------------------------------------------------+, +12:u06:|->(XOR), +54:u10:+------------------------------------------------+, +12:u14:|->(xor), +54:u01:+------------------------------------------------+, +12:u05:|->(XOR), +12:u13:|->(xor), +54:u00:+------------------------------------------------+, +12:u04:|->(XOR), +12:u12:|->(xor), +7:u22:|->, +8:u23:|->(, +12:u03:|->(XOR), +12:u11:|->(xor), +12:u02:|->(XOR), +12:u10:|->(xor), +12:u01:|->(XOR), +12:u00:|->(XOR), +9:u08:Nonce, +10:u08:|<---+, +9:u07:Nonce, +9:u06:Nonce, +10:u07:|<---+, +9:u05:Nonce, +10:u06:|<---+, +10:u14:|<---+, +9:u04:Nonce, +10:u05:|<---+, +10:u13:|<---+, +8:u23:Nonc, +9:u03:Nonce, +10:u04:|<---+, +13:u08:plaintext, +10:u12:|<---+, +9:u02:Nonce, +10:u03:|<---+, +13:u07:plaintext, +10:u11:|<---+, +9:u01:Nonce, +10:u02:|<---+, +14:u08:[RFC7252];, +13:u06:plaintext, +10:u10:|<---+, +9:u00:Nonce, +10:u01:|<---+, +13:u05:plaintext, +10:u00:|<---+, +14:u07:[RFC7252];, +13:u04:plaintext, +14:u06:[RFC7252];, +13:u03:plaintext, +14:u14:[rfc7252];, +14:u05:[RFC7252];, +13:u02:plaintext, +14:u13:[rfc7252];, +14:u04:[RFC7252];, +11:u08:option;, +13:u01:plaintext, +14:u12:[rfc7252];, +14:u03:[RFC7252];, +13:u00:plaintext, +14:u11:[rfc7252];, +14:u02:[RFC7252];, +11:u07:option;, +12:u08:prefixed, +14:u10:[rfc7252];, +14:u01:[RFC7252];, +11:u06:option;, +11:u14:option;, +14:u00:[RFC7252];, +11:u05:option;, +12:u07:prefixed, +11:u13:option;, +11:u04:option;, +12:u06:prefixed, +11:u12:option;, +12:u14:prefixed, +11:u03:option;, +12:u05:prefixed, +11:u11:option;, +12:u13:prefixed, +11:u02:option;, +12:u04:prefixed, +11:u10:option;, +12:u12:prefixed, +11:u01:option;, +12:u03:prefixed, +12:u11:prefixed, +11:u00:option;, +12:u02:prefixed, +12:u10:prefixed, +12:u01:prefixed, +12:u00:prefixed, +6:u08:|1, +6:u07:|1, +9:uI2:()..., +6:u06:|1, +9:u08:(only, +6:u14:|1, +9:uI1:()..., +6:u05:|1, +6:u13:|1, +9:uI0:()..., +6:u04:|1, +9:u07:(only, +6:u12:|1, +6:u21:|1, +6:u22:|1, +6:u23:|1, +6:u03:|1, +9:u06:(only, +6:u11:|1, +9:u14:(only, +6:u02:|1, +9:u05:(only, +16:u08:external_aad, +6:u10:|1, +9:u13:(only, +6:u01:|1, +9:u04:(only, +16:u07:external_aad, +10:u08:below,, +9:u12:(only, +7:u22:(on, +8:u23:(onl, +6:u00:|1, +9:u03:(only, +16:u06:external_aad, +10:u07:below,, +6:u08:E:, +9:u11:(only, +9:u02:(only, +13:u08:aad_array, +16:u05:external_aad, +10:u06:below,, +6:u07:E:, +9:u10:(only, +9:u01:(only, +18:u08:oscore_version, +16:u04:external_aad, +10:u05:below,, +6:u06:E:, +9:u00:(only, +13:u07:aad_array, +16:u03:external_aad, +10:u04:below,, +6:u05:E:, +16:u14:external_aad, +13:u06:aad_array, +18:u07:oscore_version, +15:u08:request_kid, +16:u02:external_aad, +10:u03:below,, +6:u04:E:, +16:u13:external_aad, +13:u14:aad_array, +13:u05:aad_array, +18:u06:oscore_version, +15:u08:request_piv, +16:u01:external_aad, +10:u02:below,, +6:u03:E:, +16:u12:external_aad, +13:u13:aad_array, +18:u14:oscore_version, +13:u04:aad_array, +18:u05:oscore_version, +15:u07:request_kid, +16:u00:external_aad, +10:u01:below,, +6:u02:E:, +16:u11:external_aad, +13:u12:aad_array, +18:u13:oscore_version, +6:u21:aa, +7:u22:aad, +8:u23:aad_, +13:u03:aad_array, +18:u04:oscore_version, +15:u06:request_kid, +15:u07:request_piv, +10:u00:below,, +6:u01:E:, +16:u10:external_aad, +13:u11:aad_array, +18:u12:oscore_version, +15:u14:request_kid, +8:u23:osco, +10:uI2::[:/],, +13:u02:aad_array, +18:u03:oscore_version, +15:u05:request_kid, +15:u06:request_piv, +6:u00:E:, +13:u10:aad_array, +18:u11:oscore_version, +15:u13:request_kid, +15:u14:request_piv, +10:uI1::[:/],, +13:u01:aad_array, +18:u02:oscore_version, +15:u04:request_kid, +15:u05:request_piv, +18:u10:oscore_version, +15:u12:request_kid, +15:u13:request_piv, +10:uI0::[:/],, +13:u00:aad_array, +18:u01:oscore_version, +15:u03:request_kid, +15:u04:request_piv, +19:u08:oscore_version:, +15:u11:request_kid, +15:u12:request_piv, +18:u00:oscore_version, +15:u02:request_kid, +15:u03:request_piv, +19:u07:oscore_version:, +15:u10:request_kid, +15:u11:request_piv, +15:u01:request_kid, +15:u02:request_piv, +19:u06:oscore_version:, +15:u10:request_piv, +15:u00:request_kid, +15:u01:request_piv, +19:u05:oscore_version:, +15:u08:algorithms:, +15:u00:request_piv, +19:u04:oscore_version:, +15:u07:algorithms:, +19:u03:oscore_version:, +15:u06:algorithms:, +13:u08:alg_aead:, +19:u02:oscore_version:, +15:u05:algorithms:, +13:u07:alg_aead:, +8:uI2::(),, +19:u01:oscore_version:, +15:u04:algorithms:, +13:u06:alg_aead:, +16:u08:request_kid:, +8:uI1::(),, +19:u00:oscore_version:, +15:u03:algorithms:, +13:u05:alg_aead:, +16:u07:request_kid:, +8:uI0::(),, +15:u02:algorithms:, +13:u04:alg_aead:, +16:u06:request_kid:, +16:u08:request_piv:, +15:u01:algorithms:, +13:u03:alg_aead:, +16:u05:request_kid:, +16:u07:request_piv:, +15:u00:algorithms:, +13:u02:alg_aead:, +16:u04:request_kid:, +16:u06:request_piv:, +13:u01:alg_aead:, +16:u03:request_kid:, +16:u05:request_piv:, +13:u00:alg_aead:, +16:u02:request_kid:, +16:u04:request_piv:, +16:u01:request_kid:, +16:u03:request_piv:, +16:u00:request_kid:, +16:u02:request_piv:, +16:u01:request_piv:, +16:u00:request_piv:, +12:u08:options:, +12:u07:options:, +12:u06:options:, +14:u08:[RFC7252],, +12:u05:options:, +14:u07:[RFC7252],, +9:uI2::(..), +9:u08:band;, +12:u04:options:, +14:u06:[RFC7252],, +9:uI1::(..), +12:u03:options:, +14:u05:[RFC7252],, +9:uI0::(..), +9:u07:band;, +12:u02:options:, +14:u04:[RFC7252],, +9:u06:band;, +12:u01:options:, +14:u03:[RFC7252],, +9:u14:band;, +9:u05:band;, +12:u00:options:, +14:u02:[RFC7252],, +9:u13:band;, +9:u04:band;, +14:u01:[RFC7252],, +9:u12:band;, +9:u03:band;, +14:u00:[RFC7252],, +7:u08:AAD, +9:u11:band;, +9:u02:band;, +7:u07:AAD, +9:u10:band;, +10:uI2:,,..,,, +9:u01:band;, +7:u06:AAD, +7:u08:E):, +10:uI1:,,..,,, +9:u00:band;, +7:u05:AAD, +7:u07:E):, +10:uI0:,,..,,, +7:u04:AAD, +7:u06:E):, +9:uI2:[]([], +7:u03:AAD, +7:u05:E):, +9:u08:(10),, +7:u14:aad, +9:uI1:[]([], +7:u02:AAD, +7:u04:E):, +9:u07:(10),, +7:u13:aad, +9:uI0:[]([], +12:uI2:["",'',], +7:u01:AAD, +7:u03:E):, +9:u06:(10),, +7:u12:aad, +21:u14:aes-ccm-16-64-128, +6:u21:AA, +7:u22:AAD, +7:u23:AAD, +12:uI1:["",'',], +7:u00:AAD, +7:u02:E):, +9:u05:(10),, +7:u11:aad, +21:u13:aes-ccm-16-64-128, +12:uI0:["",'',], +12:uI2:----(),,, +7:u01:E):, +9:u04:(10),, +7:u10:aad, +21:u12:aes-ccm-16-64-128, +7:u22:AES, +8:u23:AES-, +12:uI1:----(),,, +7:u00:E):, +9:u03:(10),, +21:u11:aes-ccm-16-64-128, +12:uI0:----(),,, +9:u02:(10),, +21:u10:aes-ccm-16-64-128, +9:u01:(10),, +14:u08:aad_array:, +9:u00:(10),, +14:u07:aad_array:, +17:u08:external_aad:, +14:u06:aad_array:, +17:u07:external_aad:, +8:u08:AAD:, +14:u05:aad_array:, +17:u06:external_aad:, +8:u07:AAD:, +14:u04:aad_array:, +17:u05:external_aad:, +8:u06:AAD:, +14:u03:aad_array:, +17:u04:external_aad:, +8:u05:AAD:, +14:u02:aad_array:, +17:u03:external_aad:, +8:u04:AAD:, +11:u08:Concise, +14:u01:aad_array:, +17:u02:external_aad:, +8:u03:AAD:, +11:u07:Concise, +14:u00:aad_array:, +17:u01:external_aad:, +8:u02:AAD:, +11:u06:Concise, +17:u00:external_aad:, +8:u01:AAD:, +11:u05:Concise, +10:u08:signed, +8:u00:AAD:, +11:u04:Concise, +10:u07:signed, +11:u03:Concise, +10:u06:signed, +11:u02:Concise, +10:u05:signed, +11:u01:Concise, +10:u04:signed, +11:u00:Concise, +10:u03:signed, +10:u02:signed, +10:u01:signed, +10:u08:larger, +10:u00:signed, +13:u08:optimized, +13:u07:optimized, +10:u07:larger, +13:u06:optimized, +13:u08:stateless, +10:u06:larger, +14:u08:per-packet, +13:u05:optimized, +13:u07:stateless, +10:u14:larger, +10:u05:larger, +13:u04:optimized, +13:u06:stateless, +10:u13:larger, +10:u04:larger, +14:u07:per-packet, +13:u03:optimized, +13:u05:stateless, +10:u12:larger, +10:u03:larger, +14:u06:per-packet, +13:u02:optimized, +13:u04:stateless, +17:u08:COSE_Encrypt0, +10:u11:larger, +14:u14:per-packet, +10:u02:larger, +14:u05:per-packet, +13:u01:optimized, +13:u03:stateless, +17:u07:COSE_Encrypt0, +10:u10:larger, +14:u13:per-packet, +10:u01:larger, +14:u04:per-packet, +13:u00:optimized, +13:u02:stateless, +17:u06:COSE_Encrypt0, +14:u12:per-packet, +10:u00:larger, +14:u03:per-packet, +13:u01:stateless, +17:u05:COSE_Encrypt0, +14:u11:per-packet, +14:u02:per-packet, +13:u00:stateless, +17:u04:COSE_Encrypt0, +14:u10:per-packet, +14:u01:per-packet, +17:u03:COSE_Encrypt0, +14:u00:per-packet, +11:u08:value),, +17:u02:COSE_Encrypt0, +12:u08:'Partial, +17:u01:COSE_Encrypt0, +12:u07:'Partial, +11:u07:value),, +59:u08:+-+-+-+-+-+-+-+-+--------------------------------------, +17:u00:COSE_Encrypt0, +12:u06:'Partial, +11:u06:value),, +6:u08:|0, +12:u05:'Partial, +11:u14:value),, +10:uI2:'',''(, +11:u05:value),, +59:u07:+-+-+-+-+-+-+-+-+--------------------------------------, +12:u04:'Partial, +11:u13:value),, +10:uI1:'',''(, +9:uI2:),'':, +11:u04:value),, +59:u06:+-+-+-+-+-+-+-+-+--------------------------------------, +6:u07:|0, +12:u03:'Partial, +11:u12:value),, +59:u14:+-+-+-+-+-+-+-+-+--------------------------------------, +10:uI0:'',''(, +9:uI1:),'':, +11:u03:value),, +59:u05:+-+-+-+-+-+-+-+-+--------------------------------------, +6:u06:|0, +7:u08:<-1, +12:u02:'Partial, +11:u11:value),, +59:u13:+-+-+-+-+-+-+-+-+--------------------------------------, +6:u14:|0, +9:uI0:),'':, +11:u02:value),, +59:u04:+-+-+-+-+-+-+-+-+--------------------------------------, +6:u05:|0, +60:u08:+------------+----------------------+------------------+, +12:u01:'Partial, +11:u10:value),, +59:u12:+-+-+-+-+-+-+-+-+--------------------------------------, +6:u13:|0, +11:u01:value),, +59:u03:+-+-+-+-+-+-+-+-+--------------------------------------, +6:u04:|0, +7:u07:<-1, +12:u00:'Partial, +59:u11:+-+-+-+-+-+-+-+-+--------------------------------------, +6:u12:|0, +6:u21:|0, +6:u22:|0, +6:u23:|0, +11:u00:value),, +59:u02:+-+-+-+-+-+-+-+-+--------------------------------------, +6:u03:|0, +7:u06:<-1, +60:u07:+------------+----------------------+------------------+, +5:u08:s, +59:u10:+-+-+-+-+-+-+-+-+--------------------------------------, +6:u11:|0, +7:u14:<-1, +59:u01:+-+-+-+-+-+-+-+-+--------------------------------------, +6:u02:|0, +7:u05:<-1, +60:u06:+------------+----------------------+------------------+, +5:u07:s, +6:u10:|0, +7:u13:<-1, +60:u14:+------------+----------------------+------------------+, +59:u00:+-+-+-+-+-+-+-+-+--------------------------------------, +6:u01:|0, +7:u04:<-1, +60:u05:+------------+----------------------+------------------+, +5:u06:s, +7:u12:<-1, +60:u13:+------------+----------------------+------------------+, +7:u22:<-1, +7:u23:<-1, +6:u00:|0, +7:u03:<-1, +60:u04:+------------+----------------------+------------------+, +5:u05:s, +7:u11:<-1, +60:u12:+------------+----------------------+------------------+, +13:uI2:()()()..., +7:u02:<-1, +60:u03:+------------+----------------------+------------------+, +14:u08:parameter:, +5:u04:s, +7:u10:<-1, +60:u11:+------------+----------------------+------------------+, +13:uI1:()()()..., +7:u01:<-1, +60:u02:+------------+----------------------+------------------+, +5:u03:s, +60:u10:+------------+----------------------+------------------+, +13:uI0:()()()..., +7:u00:<-1, +60:u01:+------------+----------------------+------------------+, +14:u07:parameter:, +6:u08:n., +5:u02:s, +60:u00:+------------+----------------------+------------------+, +14:u06:parameter:, +5:u01:s, +14:u14:parameter:, +14:u05:parameter:, +6:u07:n., +5:u00:s, +14:u13:parameter:, +14:u04:parameter:, +6:u06:n., +14:u12:parameter:, +6:u14:n., +14:u03:parameter:, +6:u05:n., +14:u11:parameter:, +6:u13:n., +14:u02:parameter:, +6:u04:n., +14:u10:parameter:, +6:u12:n., +13:u14:reserved., +6:u21:n., +6:u22:n., +6:u23:n., +14:u01:parameter:, +6:u03:n., +6:u11:n., +13:u13:reserved., +14:u00:parameter:, +6:u02:n., +6:u10:n., +13:u12:reserved., +9:uI2:*'',., +6:u01:n., +13:u11:reserved., +9:uI1:*'',., +6:u00:n., +13:u10:reserved., +9:uI0:*'',., +12:u14:context', +12:u13:context', +9:uI2:'(.)., +12:u12:context', +9:uI1:'(.)., +12:u11:context', +9:uI0:'(.)., +12:u10:context', +17:u08:decompression, +17:u07:decompression, +17:u06:decompression, +17:u14:decompression, +17:u05:decompression, +17:u13:decompression, +17:u04:decompression, +17:u12:decompression, +17:u03:decompression, +17:u11:decompression, +17:u02:decompression, +9:u08:5.1),, +17:u10:decompression, +17:u01:decompression, +9:u07:5.1),, +17:u00:decompression, +9:u06:5.1),, +9:u05:5.1),, +13:uI2:(.),''()., +9:u04:5.1),, +6:u08:(k, +13:uI1:(.),''()., +8:uI2:'',', +9:u03:5.1),, +6:u07:(k, +13:uI0:(.),''()., +8:uI1:'',', +9:u02:5.1),, +6:u06:(k, +8:uI0:'',', +9:uI2:'','', +9:u01:5.1),, +6:u05:(k, +9:uI1:'','', +9:u00:5.1),, +6:u04:(k, +9:uI0:'','', +12:u08:section,, +6:u03:(k, +6:u02:(k, +12:u07:section,, +6:u01:(k, +12:u06:section,, +6:u00:(k, +12:u14:section,, +11:uI2:,'','',, +12:u05:section,, +12:u13:section,, +11:uI1:,'','',, +12:u04:section,, +12:u12:section,, +11:uI0:,'','',, +12:u03:section,, +12:u11:section,, +12:u02:section,, +12:u10:section,, +12:u01:section,, +12:u00:section,, +11:u08:known)., +11:u07:known)., +11:u06:known)., +11:u14:known)., +11:u05:known)., +11:u13:known)., +11:u04:known)., +11:u12:known)., +11:u03:known)., +11:u11:known)., +11:u02:known)., +11:u10:known)., +11:u01:known)., +11:u00:known)., +9:u08:0x25,, +11:u08:Request, +9:u07:0x25,, +9:u06:0x25,, +8:u08:h'',, +9:u14:0x25,, +9:u05:0x25,, +9:u13:0x25,, +9:u04:0x25,, +8:u07:h'',, +36:u08:h'aea0155667924dff8a24e4cb35b9',, +12:u08:4:h'25',, +9:u12:0x25,, +5:u14:[, +7:u22:0x2, +8:u23:0x25, +9:u03:0x25,, +8:u06:h'',, +12:u07:4:h'25',, +9:u11:0x25,, +5:u13:[, +8:u14:h'',, +9:u02:0x25,, +8:u05:h'',, +36:u07:h'aea0155667924dff8a24e4cb35b9',, +12:u06:4:h'25',, +9:u10:0x25,, +5:u12:[, +8:u13:h'',, +5:u21:[, +5:u22:[, +5:u23:[, +9:u01:0x25,, +8:u04:h'',, +36:u06:h'aea0155667924dff8a24e4cb35b9',, +12:u05:4:h'25',, +5:u11:[, +8:u12:h'',, +36:u14:h'aea0155667924dff8a24e4cb35b9',, +6:u21:h', +7:u22:h'', +8:u23:h'',, +12:uI2::'',:'',, +9:u00:0x25,, +8:u03:h'',, +36:u05:h'aea0155667924dff8a24e4cb35b9',, +12:u04:4:h'25',, +9:u08:byte:, +5:u10:[, +8:u11:h'',, +36:u13:h'aea0155667924dff8a24e4cb35b9',, +12:uI1::'',:'',, +8:u02:h'',, +36:u04:h'aea0155667924dff8a24e4cb35b9',, +12:u03:4:h'25',, +9:u07:byte:, +8:u10:h'',, +36:u12:h'aea0155667924dff8a24e4cb35b9',, +7:u22:h'a, +8:u23:h'ae, +12:uI0::'',:'',, +8:u01:h'',, +36:u03:h'aea0155667924dff8a24e4cb35b9',, +12:u02:4:h'25',, +9:u06:byte:, +34:u08:0xaea0155667924dff8a24e4cb35b9, +36:u11:h'aea0155667924dff8a24e4cb35b9',, +8:u00:h'',, +36:u02:h'aea0155667924dff8a24e4cb35b9',, +12:u01:4:h'25',, +9:u05:byte:, +34:u07:0xaea0155667924dff8a24e4cb35b9, +36:u10:h'aea0155667924dff8a24e4cb35b9',, +36:u01:h'aea0155667924dff8a24e4cb35b9',, +12:u00:4:h'25',, +9:u04:byte:, +34:u06:0xaea0155667924dff8a24e4cb35b9, +36:u00:h'aea0155667924dff8a24e4cb35b9',, +9:u03:byte:, +34:u05:0xaea0155667924dff8a24e4cb35b9, +9:u02:byte:, +34:u04:0xaea0155667924dff8a24e4cb35b9, +9:u01:byte:, +34:u03:0xaea0155667924dff8a24e4cb35b9, +9:u00:byte:, +34:u02:0xaea0155667924dff8a24e4cb35b9, +10:u08:4:h'',, +34:u01:0xaea0155667924dff8a24e4cb35b9, +10:u07:4:h'',, +34:u00:0xaea0155667924dff8a24e4cb35b9, +10:u06:4:h'',, +10:u05:4:h'',, +10:u04:4:h'',, +10:u03:4:h'',, +10:u02:4:h'',, +10:u01:4:h'',, +10:u00:4:h'',, +16:uI2::'',:'',:'',, +16:uI1::'',:'',:'',, +16:uI0::'',:'',:'',, +8:u08:0xae, +8:u07:0xae, +8:u06:0xae, +8:u05:0xae, +8:u04:0xae, +7:u08:{},, +8:u03:0xae, +8:u02:0xae, +7:u07:{},, +8:u01:0xae, +7:u06:{},, +8:u00:0xae, +7:u14:{},, +7:u05:{},, +7:u13:{},, +7:u04:{},, +7:u12:{},, +7:u22:{},, +7:u23:{},, +7:u03:{},, +7:u11:{},, +7:u02:{},, +7:u10:{},, +7:u01:{},, +7:u00:{},, +11:u08:6:h'07', +11:u07:6:h'07', +11:u06:6:h'07', +11:u05:6:h'07', +8:uI2::'',, +11:u04:6:h'07', +8:uI1::'',, +11:u03:6:h'07', +8:uI0::'',, +11:u02:6:h'07', +11:u01:6:h'07', +11:u00:6:h'07', +20:u08:[CoAP-Actuators], +20:u07:[CoAP-Actuators], +20:u06:[CoAP-Actuators], +9:u08:'kid', +20:u14:[coap-actuators], +20:u05:[CoAP-Actuators], +9:u07:'kid', +20:u13:[coap-actuators], +19:u14:intermediaries,, +20:u04:[CoAP-Actuators], +9:u06:'kid', +20:u12:[coap-actuators], +19:u13:intermediaries,, +20:u03:[CoAP-Actuators], +9:u05:'kid', +20:u11:[coap-actuators], +19:u12:intermediaries,, +20:u02:[CoAP-Actuators], +9:u04:'kid', +20:u10:[coap-actuators], +19:u11:intermediaries,, +20:u01:[CoAP-Actuators], +9:u03:'kid', +19:u10:intermediaries,, +20:u00:[CoAP-Actuators], +9:u02:'kid', +9:u01:'kid', +9:u00:'kid', +17:u08:concurrently,, +10:u08:7.2.1., +17:u07:concurrently,, +17:u06:concurrently,, +10:u07:7.2.1., +17:u05:concurrently,, +10:u06:7.2.1., +17:u04:concurrently,, +7:u08:12), +10:u14:7.2.1., +10:u05:7.2.1., +17:u03:concurrently,, +7:u07:12), +10:u13:7.2.1., +10:u04:7.2.1., +17:u02:concurrently,, +7:u06:12), +10:u12:7.2.1., +10:u03:7.2.1., +17:u01:concurrently,, +7:u05:12), +10:u11:7.2.1., +10:u02:7.2.1., +17:u00:concurrently,, +7:u04:12), +10:u10:7.2.1., +10:u01:7.2.1., +7:u03:12), +10:u00:7.2.1., +7:u02:12), +12:u08:stronger, +7:u01:12), +9:u08:older, +7:u00:12), +9:u07:older, +11:u08:demands, +12:u07:stronger, +9:u06:older, +11:u07:demands, +12:u06:stronger, +9:u05:older, +11:u06:demands, +12:u14:stronger, +12:u05:stronger, +9:u04:older, +11:u05:demands, +12:u13:stronger, +12:u04:stronger, +9:u03:older, +11:u04:demands, +12:u12:stronger, +12:u03:stronger, +9:u02:older, +11:u03:demands, +12:u11:stronger, +12:uI2:,[---])., +12:u02:stronger, +9:u01:older, +11:u02:demands, +12:u10:stronger, +12:uI1:,[---])., +12:u01:stronger, +9:u00:older, +11:u01:demands, +12:uI0:,[---])., +12:u00:stronger, +11:u00:demands, +13:u08:freshness, +13:u08:recipient, +13:u07:freshness, +13:u06:freshness, +13:u07:recipient, +13:u14:freshness, +13:u05:freshness, +13:u06:recipient, +13:u13:freshness, +13:u04:freshness, +13:u05:recipient, +13:u12:freshness, +8:u23:fres, +13:u03:freshness, +13:u04:recipient, +13:u11:freshness, +8:u23:reci, +13:u02:freshness, +13:u03:recipient, +13:u10:freshness, +13:u01:freshness, +13:u02:recipient, +13:u00:freshness, +13:u01:recipient, +13:u00:recipient, +14:u08:diagnostic, +14:u07:diagnostic, +14:u06:diagnostic, +14:u14:diagnostic, +14:u05:diagnostic, +14:u13:diagnostic, +14:u04:diagnostic, +14:u12:diagnostic, +7:u22:dia, +8:u23:diag, +14:u03:diagnostic, +14:u11:diagnostic, +14:u02:diagnostic, +14:u10:diagnostic, +14:u01:diagnostic, +14:u00:diagnostic, +13:u08:Responses, +11:u08:3.2.2)., +11:u07:3.2.2)., +13:u07:Responses, +11:u06:3.2.2)., +13:u06:Responses, +11:u05:3.2.2)., +13:u05:Responses, +11:u04:3.2.2)., +13:u04:Responses, +11:u03:3.2.2)., +13:u03:Responses, +11:u02:3.2.2)., +13:u02:Responses, +11:u01:3.2.2)., +13:u01:Responses, +11:u00:3.2.2)., +13:u00:Responses, +10:u14:7.4.1., +10:u13:7.4.1., +10:u12:7.4.1., +10:u11:7.4.1., +10:u08:oldest, +10:u10:7.4.1., +10:u07:oldest, +10:u06:oldest, +10:u14:oldest, +10:u05:oldest, +10:u13:oldest, +10:u04:oldest, +10:u12:oldest, +10:u03:oldest, +10:u11:oldest, +10:u02:oldest, +10:u10:oldest, +10:u01:oldest, +10:u00:oldest, +13:u08:processes, +13:u07:processes, +13:u06:processes, +13:u14:processes, +13:u05:processes, +13:u13:processes, +13:u04:processes, +13:u08:overwrite, +13:u12:processes, +13:u03:processes, +13:u07:overwrite, +13:u11:processes, +13:u02:processes, +13:u06:overwrite, +13:u10:processes, +13:u01:processes, +13:u05:overwrite, +13:u00:processes, +13:u04:overwrite, +13:u03:overwrite, +13:u02:overwrite, +14:u14:acceptance, +11:u08:reboot., +13:u01:overwrite, +14:u13:acceptance, +13:u00:overwrite, +14:u12:acceptance, +11:u07:reboot., +14:u11:acceptance, +11:u06:reboot., +14:u10:acceptance, +11:u14:reboot., +11:u05:reboot., +11:u08:mutable, +11:u13:reboot., +11:u04:reboot., +11:u12:reboot., +7:u22:reb, +8:u23:rebo, +11:u03:reboot., +11:u07:mutable, +9:u08:fresh, +11:u11:reboot., +11:u02:reboot., +11:u06:mutable, +11:u10:reboot., +11:u14:mutable, +11:u01:reboot., +11:u05:mutable, +9:u07:fresh, +11:u13:mutable, +11:u00:reboot., +11:u04:mutable, +9:u06:fresh, +11:u12:mutable, +9:u14:fresh, +8:u23:muta, +11:u03:mutable, +9:u05:fresh, +11:u11:mutable, +9:u13:fresh, +11:u02:mutable, +9:u04:fresh, +11:u10:mutable, +9:u12:fresh, +11:u01:mutable, +9:u03:fresh, +9:u11:fresh, +11:u00:mutable, +9:u02:fresh, +9:u10:fresh, +9:u01:fresh, +9:u00:fresh, +12:u08:example., +12:u07:example., +12:u06:example., +12:u14:example., +12:u05:example., +12:u13:example., +12:u04:example., +12:u12:example., +12:u03:example., +11:u08:secrecy, +12:u11:example., +12:u02:example., +12:u10:example., +12:u01:example., +11:u07:secrecy, +12:u00:example., +11:u06:secrecy, +11:u14:secrecy, +11:u05:secrecy, +11:u13:secrecy, +11:u04:secrecy, +11:u12:secrecy, +8:u23:secr, +11:u03:secrecy, +11:u11:secrecy, +11:u02:secrecy, +11:u10:secrecy, +9:uI2:-,..,, +11:u01:secrecy, +9:uI1:-,..,, +11:u00:secrecy, +9:uI0:-,..,, +12:u08:secrecy., +12:u07:secrecy., +12:u06:secrecy., +12:u14:secrecy., +12:u05:secrecy., +12:u13:secrecy., +12:u04:secrecy., +12:u12:secrecy., +12:u03:secrecy., +12:u11:secrecy., +12:u02:secrecy., +12:u10:secrecy., +12:u01:secrecy., +8:uI2:,[]/, +12:u00:secrecy., +8:uI1:,[]/, +8:uI0:,[]/, +15:u14:observation, +15:u13:observation, +15:u12:observation, +15:u11:observation, +15:u10:observation, +11:u08:Compose, +11:u07:Compose, +11:u06:Compose, +10:u08:Encode, +11:u05:Compose, +10:u07:Encode, +11:u04:Compose, +10:u06:Encode, +11:u03:Compose, +10:u05:Encode, +11:u02:Compose, +10:u04:Encode, +11:u08:Encrypt, +11:u01:Compose, +10:u03:Encode, +11:u07:Encrypt, +11:u00:Compose, +10:u02:Encode, +11:u06:Encrypt, +10:u01:Encode, +11:u05:Encrypt, +10:u00:Encode, +11:u04:Encrypt, +11:u03:Encrypt, +11:u02:Encrypt, +11:u01:Encrypt, +11:u00:Encrypt, +11:u08:Discard, +12:u08:If-Match, +11:u07:Discard, +11:u06:Discard, +12:u07:If-Match, +11:u05:Discard, +8:uI2:.('', +12:u06:If-Match, +11:u04:Discard, +14:u08:Decompress, +12:u14:if-match, +8:uI1:.('', +12:u05:If-Match, +16:u08:additionally, +11:u03:Discard, +14:u07:Decompress, +12:u13:if-match, +8:uI0:.('', +12:u04:If-Match, +11:u02:Discard, +14:u06:Decompress, +12:u12:if-match, +7:u22:If-, +8:u23:If-M, +12:u03:If-Match, +16:u07:additionally, +11:u01:Discard, +14:u05:Decompress, +12:u11:if-match, +12:u02:If-Match, +16:u06:additionally, +11:u00:Discard, +14:u04:Decompress, +12:u10:if-match, +16:u14:additionally, +12:u01:If-Match, +16:u05:additionally, +14:u03:Decompress, +16:u13:additionally, +8:uI2:'',., +12:u00:If-Match, +16:u04:additionally, +14:u02:Decompress, +16:u12:additionally, +8:uI1:'',., +16:u03:additionally, +14:u01:Decompress, +16:u11:additionally, +8:uI0:'',., +16:u02:additionally, +14:u00:Decompress, +16:u10:additionally, +16:u01:additionally, +11:u08:decode,, +16:u00:additionally, +11:u07:decode,, +11:u06:decode,, +11:u08:"Failed, +11:u14:decode,, +11:u05:decode,, +11:u13:decode,, +11:u04:decode,, +11:u07:"Failed, +11:u12:decode,, +11:u03:decode,, +11:u06:"Failed, +11:u11:decode,, +11:u14:"failed, +11:u02:decode,, +11:u05:"Failed, +11:u10:decode,, +11:u13:"failed, +11:u01:decode,, +11:u04:"Failed, +11:u12:"failed, +7:u22:"Fa, +8:u23:"Fai, +11:u00:decode,, +11:u03:"Failed, +13:u08:"Security, +11:u11:"failed, +11:u02:"Failed, +11:u10:"failed, +11:u01:"Failed, +13:u07:"Security, +11:u00:"Failed, +13:u06:"Security, +11:u08:Window,, +13:u14:"security, +13:u05:"Security, +11:u07:Window,, +13:u13:"security, +13:u04:"Security, +11:u06:Window,, +11:u08:Compute, +13:u12:"security, +8:u23:"Sec, +13:u03:"Security, +11:u05:Window,, +11:u07:Compute, +7:u08:IV,, +13:u11:"security, +13:u02:"Security, +11:u04:Window,, +11:u06:Compute, +7:u07:IV,, +13:u10:"security, +13:u01:"Security, +11:u03:Window,, +11:u05:Compute, +7:u06:IV,, +13:u00:"Security, +11:u02:Window,, +11:u04:Compute, +7:u05:IV,, +11:u01:Window,, +11:u03:Compute, +7:u04:IV,, +11:u00:Window,, +11:u02:Compute, +7:u03:IV,, +11:u01:Compute, +7:u02:IV,, +11:u00:Compute, +7:u01:IV,, +11:u08:Decrypt, +7:u00:IV,, +11:u07:Decrypt, +11:u06:Decrypt, +11:u05:Decrypt, +11:u04:Decrypt, +9:uI2:.[].(, +11:u03:Decrypt, +9:uI1:.[].(, +15:u08:"Decryption, +11:u02:Decrypt, +9:uI0:.[].(, +11:u01:Decrypt, +12:u08:failed"., +15:u07:"Decryption, +11:u00:Decrypt, +12:u07:failed"., +15:u06:"Decryption, +12:u06:failed"., +15:u14:"decryption, +15:u05:"Decryption, +12:u05:failed"., +7:u08:Add, +15:u13:"decryption, +15:u04:"Decryption, +12:u04:failed"., +7:u07:Add, +15:u12:"decryption, +8:u23:"Dec, +15:u03:"Decryption, +12:u03:failed"., +7:u06:Add, +15:u11:"decryption, +15:u02:"Decryption, +12:u02:failed"., +7:u05:Add, +15:u10:"decryption, +15:u01:"Decryption, +10:u08:other:, +12:u01:failed"., +7:u04:Add, +15:u00:"Decryption, +12:u00:failed"., +7:u03:Add, +10:u07:other:, +7:u02:Add, +10:u06:other:, +7:u01:Add, +10:u14:other:, +10:u05:other:, +7:u00:Add, +10:u13:other:, +6:u14:a., +10:u04:other:, +10:u12:other:, +6:u13:a., +10:u03:other:, +10:u11:other:, +6:u12:a., +6:u22:A., +6:u23:A., +10:u02:other:, +10:u10:other:, +6:u11:a., +10:u01:other:, +6:u10:a., +10:u00:other:, +9:u08:(step, +9:u07:(step, +9:u06:(step, +9:u05:(step, +9:u04:(step, +8:uI2:,(,,, +9:u03:(step, +8:uI1:,(,,, +9:u02:(step, +8:uI0:,(,,, +9:u01:(step, +9:u00:(step, +6:uI2:*(, +6:uI1:*(, +6:uI0:*(, +10:u08:8.3.1., +10:u07:8.3.1., +10:u06:8.3.1., +10:u14:8.3.1., +10:u05:8.3.1., +10:u13:8.3.1., +10:u04:8.3.1., +10:u12:8.3.1., +10:u03:8.3.1., +10:u11:8.3.1., +10:u02:8.3.1., +10:u10:8.3.1., +10:u01:8.3.1., +10:u00:8.3.1., +7:uI2:*.:, +7:uI1:*.:, +7:uI0:*.:, +10:u08:Insert, +10:u07:Insert, +10:u06:Insert, +10:u14:insert, +10:u05:Insert, +10:u13:insert, +10:u04:Insert, +10:u12:insert, +8:u23:Inse, +10:u03:Insert, +10:u11:insert, +10:u02:Insert, +10:u10:insert, +10:u01:Insert, +13:u08:4.1.3.5.2, +10:u00:Insert, +12:u08:verified, +13:u07:4.1.3.5.2, +14:u08:initialize, +13:u06:4.1.3.5.2, +14:u07:initialize, +18:u08:notification),, +12:u07:verified, +13:u05:4.1.3.5.2, +14:u06:initialize, +18:u07:notification),, +12:uI2:......,:, +12:u06:verified, +11:u08:Replace, +13:u04:4.1.3.5.2, +14:u05:initialize, +18:u06:notification),, +12:u14:verified, +12:uI1:......,:, +12:u05:verified, +13:u03:4.1.3.5.2, +14:u04:initialize, +18:u05:notification),, +12:u13:verified, +12:uI0:......,:, +12:u04:verified, +11:u07:Replace, +13:u02:4.1.3.5.2, +14:u03:initialize, +18:u04:notification),, +12:u12:verified, +12:u03:verified, +11:u06:Replace, +13:u01:4.1.3.5.2, +14:u02:initialize, +18:u03:notification),, +12:u11:verified, +11:u14:replace, +12:u02:verified, +11:u05:Replace, +13:u00:4.1.3.5.2, +14:u01:initialize, +18:u02:notification),, +12:u10:verified, +11:u13:replace, +12:u01:verified, +11:u04:Replace, +18:u08:re-registering, +14:u00:initialize, +18:u01:notification),, +10:u08:cancel, +11:u12:replace, +12:u00:verified, +11:u03:Replace, +18:u00:notification),, +10:u07:cancel, +11:u11:replace, +11:u02:Replace, +18:u07:re-registering, +10:u06:cancel, +11:u10:replace, +11:u01:Replace, +18:u06:re-registering, +7:u08:web, +10:u05:cancel, +18:u14:re-registering, +11:u00:Replace, +18:u05:re-registering, +13:u08:[RFC6690], +10:u04:cancel, +18:u13:re-registering, +18:u04:re-registering, +7:u07:web, +10:u03:cancel, +18:u12:re-registering, +18:u03:re-registering, +7:u06:web, +13:u07:[RFC6690], +10:u02:cancel, +9:u08:"osc", +18:u11:re-registering, +18:u02:re-registering, +7:u05:web, +13:u06:[RFC6690], +10:u01:cancel, +9:u07:"osc", +18:u10:re-registering, +13:u14:[rfc6690], +11:uI2:[],..,-, +18:u01:re-registering, +7:u04:web, +13:u05:[RFC6690], +10:u00:cancel, +9:u06:"osc", +13:u13:[rfc6690], +7:u22:web, +7:u23:web, +11:uI1:[],..,-, +18:u00:re-registering, +7:u03:web, +13:u04:[RFC6690], +7:u08:run, +9:u05:"osc", +13:u12:[rfc6690], +11:uI0:[],..,-, +7:u02:web, +13:u03:[RFC6690], +9:u04:"osc", +11:u08:OSCORE., +13:u11:[rfc6690], +7:u01:web, +13:u02:[RFC6690], +7:u07:run, +9:u03:"osc", +11:u07:OSCORE., +13:u10:[rfc6690], +7:u00:web, +13:u01:[RFC6690], +7:u06:run, +9:u02:"osc", +11:u06:OSCORE., +7:u14:run, +13:u00:[RFC6690], +7:u05:run, +9:u01:"osc", +11:u05:OSCORE., +7:u13:run, +7:u04:run, +9:u00:"osc", +11:u04:OSCORE., +7:u12:run, +7:u23:run, +7:u03:run, +11:u03:OSCORE., +7:u11:run, +7:u02:run, +11:u02:OSCORE., +7:u10:run, +7:u01:run, +11:u01:OSCORE., +7:u00:run, +11:u00:OSCORE., +8:u08:REQ:, +14:u14:resources,, +8:u08:RES:, +14:u13:resources,, +8:u07:REQ:, +24:u08:</sensors/temp>;osc,, +8:u08:2.05, +14:u12:resources,, +8:u06:REQ:, +8:u07:RES:, +32:u08:</sensors/light>;if="sensor", +8:u07:2.05, +14:u11:resources,, +8:u14:req:, +8:u05:REQ:, +8:u06:RES:, +24:u07:</sensors/temp>;osc,, +8:u06:2.05, +14:u10:resources,, +8:u13:req:, +8:u14:res:, +9:uI2::/.-/, +8:u04:REQ:, +8:u05:RES:, +24:u06:</sensors/temp>;osc,, +32:u07:</sensors/light>;if="sensor", +8:u05:2.05, +8:u12:req:, +8:u13:res:, +24:u14:</sensors/temp>;osc,, +8:u23:REQ:, +9:uI1::/.-/, +8:u03:REQ:, +8:u04:RES:, +24:u05:</sensors/temp>;osc,, +32:u06:</sensors/light>;if="sensor", +8:u04:2.05, +8:u11:req:, +8:u12:res:, +24:u13:</sensors/temp>;osc,, +32:u14:</sensors/light>;if="sensor", +8:u23:RES:, +9:uI0::/.-/, +8:uI2://;,, +8:u02:REQ:, +8:u03:RES:, +24:u04:</sensors/temp>;osc,, +32:u05:</sensors/light>;if="sensor", +8:u03:2.05, +8:u10:req:, +8:u11:res:, +24:u12:</sensors/temp>;osc,, +32:u13:</sensors/light>;if="sensor", +6:u21:</, +7:u22:</s, +8:u23:</se, +8:uI1://;,, +9:uI2://;"", +8:u01:REQ:, +8:u02:RES:, +24:u03:</sensors/temp>;osc,, +32:u04:</sensors/light>;if="sensor", +8:u02:2.05, +8:u10:res:, +24:u11:</sensors/temp>;osc,, +32:u12:</sensors/light>;if="sensor", +8:uI0://;,, +9:uI1://;"", +8:u00:REQ:, +8:u01:RES:, +24:u02:</sensors/temp>;osc,, +32:u03:</sensors/light>;if="sensor", +19:u08:[CoAP-E2E-Sec]., +8:u01:2.05, +24:u10:</sensors/temp>;osc,, +32:u11:</sensors/light>;if="sensor", +9:uI0://;"", +8:u00:RES:, +24:u01:</sensors/temp>;osc,, +32:u02:</sensors/light>;if="sensor", +8:u00:2.05, +32:u10:</sensors/light>;if="sensor", +24:u00:</sensors/temp>;osc,, +32:u01:</sensors/light>;if="sensor", +19:u07:[CoAP-E2E-Sec]., +32:u00:</sensors/light>;if="sensor", +19:u06:[CoAP-E2E-Sec]., +19:u14:[coap-e2e-sec]., +19:u05:[CoAP-E2E-Sec]., +19:u13:[coap-e2e-sec]., +12:uI2:[--].()-, +19:u04:[CoAP-E2E-Sec]., +19:u12:[coap-e2e-sec]., +12:uI1:[--].()-, +9:uI2:[].(), +19:u03:[CoAP-E2E-Sec]., +12:u08:proxies,, +19:u11:[coap-e2e-sec]., +12:uI0:[--].()-, +9:uI1:[].(), +19:u02:[CoAP-E2E-Sec]., +19:u10:[coap-e2e-sec]., +9:uI0:[].(), +19:u01:[CoAP-E2E-Sec]., +12:u07:proxies,, +19:u00:[CoAP-E2E-Sec]., +12:u06:proxies,, +12:u14:proxies,, +12:u05:proxies,, +12:u13:proxies,, +12:u04:proxies,, +12:u12:proxies,, +12:u03:proxies,, +12:u11:proxies,, +13:u14:[rfc7641], +12:u02:proxies,, +12:u10:proxies,, +13:u13:[rfc7641], +15:u14:optionally,, +10:uI2:[]...., +12:u01:proxies,, +13:u12:[rfc7641], +15:u13:optionally,, +16:u14:oscore-aware, +10:uI1:[]...., +12:u00:proxies,, +13:u11:[rfc7641], +15:u12:optionally,, +16:u13:oscore-aware, +10:uI0:[]...., +10:u08:proxy:, +13:u10:[rfc7641], +15:u11:optionally,, +16:u12:oscore-aware, +15:u10:optionally,, +16:u11:oscore-aware, +10:u07:proxy:, +16:u10:oscore-aware, +10:u06:proxy:, +10:u14:proxy:, +11:uI2:(...),-, +10:u05:proxy:, +10:u13:proxy:, +11:uI1:(...),-, +10:u04:proxy:, +10:u12:proxy:, +11:uI0:(...),-, +10:u03:proxy:, +10:u11:proxy:, +10:u02:proxy:, +10:u10:proxy:, +10:u01:proxy:, +10:u00:proxy:, +16:u08:Content-Type, +16:u07:Content-Type, +16:u06:Content-Type, +16:u05:Content-Type, +11:uI2:-'/'(.), +16:u04:Content-Type, +11:uI1:-'/'(.), +18:u08:specification:, +16:u03:Content-Type, +11:uI0:-'/'(.), +16:u02:Content-Type, +9:u08:ALPHA, +18:u07:specification:, +18:u08:base64url-char, +16:u01:Content-Type, +9:u07:ALPHA, +10:uI2:-()[],, +18:u06:specification:, +16:u00:Content-Type, +9:u06:ALPHA, +18:u14:specification:, +10:uI1:-()[],, +18:u05:specification:, +18:u07:base64url-char, +9:u05:ALPHA, +18:u13:specification:, +10:uI0:-()[],, +10:uI2::()(),, +18:u04:specification:, +18:u06:base64url-char, +9:u04:ALPHA, +18:u12:specification:, +18:u14:base64url-char, +10:uI1::()(),, +18:u03:specification:, +18:u05:base64url-char, +9:u03:ALPHA, +18:u11:specification:, +18:u13:base64url-char, +10:uI0::()(),, +13:uI2:-//"-"/"", +18:u02:specification:, +18:u04:base64url-char, +9:u02:ALPHA, +15:u08:hop-by-hop., +18:u10:specification:, +18:u12:base64url-char, +13:uI1:-//"-"/"", +18:u01:specification:, +18:u03:base64url-char, +9:u01:ALPHA, +15:u07:hop-by-hop., +18:u11:base64url-char, +13:uI0:-//"-"/"", +18:u00:specification:, +18:u02:base64url-char, +15:u08:[RFC7231])., +9:u00:ALPHA, +15:u06:hop-by-hop., +18:u10:base64url-char, +9:uI2:(.[]), +18:u01:base64url-char, +15:u05:hop-by-hop., +9:uI1:(.[]), +18:u00:base64url-char, +15:u07:[RFC7231])., +15:u04:hop-by-hop., +10:u14:cache), +9:uI0:(.[]), +11:uI2:(..,-:-, +15:u06:[RFC7231])., +15:u08:[RFC7230])., +15:u03:hop-by-hop., +10:u13:cache), +15:u14:[rfc7231])., +11:uI1:(..,-:-, +8:uI2:)(.., +15:u05:[RFC7231])., +15:u02:hop-by-hop., +10:u12:cache), +15:u13:[rfc7231])., +11:uI0:(..,-:-, +8:uI1:)(.., +15:u04:[RFC7231])., +15:u07:[RFC7230])., +15:u01:hop-by-hop., +10:u11:cache), +15:u12:[rfc7231])., +8:uI0:)(.., +15:u03:[RFC7231])., +15:u06:[RFC7230])., +15:u00:hop-by-hop., +10:u10:cache), +15:u11:[rfc7231])., +15:u14:[rfc7230])., +15:u02:[RFC7231])., +15:u05:[RFC7230])., +15:u10:[rfc7231])., +15:u13:[rfc7230])., +15:u01:[RFC7231])., +15:u04:[RFC7230])., +15:u12:[rfc7230])., +15:u00:[RFC7231])., +15:u03:[RFC7230])., +15:u11:[rfc7230])., +15:u02:[RFC7230])., +15:u10:[rfc7230])., +15:u01:[RFC7230])., +15:u00:[RFC7230])., +14:u08:([RFC8075], +13:u08:redirects, +13:u07:redirects, +15:u08:[RFC7252]),, +14:u07:([RFC8075], +13:u06:redirects, +15:u07:[RFC7252]),, +14:u06:([RFC8075], +13:u05:redirects, +15:u06:[RFC7252]),, +14:u14:([rfc8075], +14:u05:([RFC8075], +13:u04:redirects, +15:u05:[RFC7252]),, +14:u13:([rfc8075], +11:uI2:([][]),, +14:u04:([RFC8075], +13:u03:redirects, +15:u04:[RFC7252]),, +14:u12:([rfc8075], +11:uI1:([][]),, +10:uI2:.----,, +14:u03:([RFC8075], +13:u02:redirects, +15:u03:[RFC7252]),, +14:u11:([rfc8075], +11:uI0:([][]),, +10:uI1:.----,, +14:u02:([RFC8075], +13:u01:redirects, +15:u02:[RFC7252]),, +14:u10:([rfc8075], +10:uI0:.----,, +14:u01:([RFC8075], +13:u00:redirects, +15:u01:[RFC7252]),, +14:u00:([RFC8075], +15:u00:[RFC7252]),, +8:u14:body, +8:u13:body, +8:u12:body, +7:u22:bod, +8:u23:body, +12:u08:(Found)., +7:u08:308, +8:u11:body, +7:u07:308, +8:u10:body, +12:u07:(Found)., +12:u08:redirect, +7:u06:308, +12:u06:(Found)., +7:u05:308, +12:u14:(found)., +12:u05:(Found)., +12:u07:redirect, +7:u04:308, +12:u13:(found)., +12:u04:(Found)., +12:u06:redirect, +7:u03:308, +12:u12:(found)., +12:u14:redirect, +7:u22:(Fo, +8:u23:(Fou, +12:u03:(Found)., +12:u05:redirect, +7:u02:308, +12:u11:(found)., +12:u13:redirect, +12:u02:(Found)., +12:u04:redirect, +7:u01:308, +8:u08:10.1, +12:u10:(found)., +12:u12:redirect, +8:u23:redi, +12:u01:(Found)., +12:u03:redirect, +7:u00:308, +8:u07:10.1, +12:u11:redirect, +12:u00:(Found)., +12:u02:redirect, +8:u06:10.1, +12:u10:redirect, +12:u01:redirect, +8:u05:10.1, +8:u14:http, +9:uI2:.[]--, +12:u00:redirect, +8:u04:10.1, +6:u08:AA, +8:u13:http, +9:uI1:.[]--, +8:u03:10.1, +6:u07:AA, +8:u12:http, +9:uI0:.[]--, +8:u02:10.1, +6:u06:AA, +8:u11:http, +8:u01:10.1, +6:u05:AA, +8:u10:http, +7:uI2:*;,, +8:u00:10.1, +6:u04:AA, +14:u08:[RFC7515]., +7:uI1:*;,, +8:uI2:*(.), +6:u03:AA, +14:u07:[RFC7515]., +7:uI0:*;,, +8:uI1:*(.), +6:u02:AA, +14:u06:[RFC7515]., +10:u08:13.5),, +8:uI0:*(.), +6:u01:AA, +14:u05:[RFC7515]., +10:u07:13.5),, +6:u00:AA, +14:u04:[RFC7515]., +10:u06:13.5),, +9:uI2:-'/'(, +14:u03:[RFC7515]., +10:u05:13.5),, +9:uI1:-'/'(, +9:uI2:.),-., +14:u02:[RFC7515]., +10:u04:13.5),, +9:uI0:-'/'(, +9:uI1:.),-., +14:u01:[RFC7515]., +10:u03:13.5),, +9:uI0:.),-., +14:u00:[RFC7515]., +10:u02:13.5),, +10:u01:13.5),, +10:u00:13.5),, +8:u08:10.2, +8:u07:10.2, +10:u08:proxy., +8:u06:10.2, +10:u07:proxy., +8:u05:10.2, +10:u06:proxy., +16:u14:http-to-coap, +8:u04:10.2, +10:u05:proxy., +16:u13:http-to-coap, +8:u03:10.2, +10:u04:proxy., +16:u12:http-to-coap, +13:u08:base64url, +8:u02:10.2, +10:u03:proxy., +16:u11:http-to-coap, +8:u01:10.2, +10:u02:proxy., +16:u10:http-to-coap, +13:u07:base64url, +8:u00:10.2, +10:u01:proxy., +8:uI2:();,, +13:u06:base64url, +10:u00:proxy., +13:u14:base64url, +8:uI1:();,, +13:u05:base64url, +13:u13:base64url, +8:uI0:();,, +13:u04:base64url, +13:u12:base64url, +13:u03:base64url, +14:u08:Restricted, +13:u11:base64url, +13:u02:base64url, +12:u08:mapping,, +13:u10:base64url, +13:u01:base64url, +14:u07:Restricted, +13:u00:base64url, +14:u06:Restricted, +12:u07:mapping,, +14:u05:Restricted, +12:u06:mapping,, +12:u14:mapping,, +14:u04:Restricted, +12:u05:mapping,, +12:u13:mapping,, +14:u03:Restricted, +12:u04:mapping,, +12:u12:mapping,, +14:u02:Restricted, +12:u03:mapping,, +12:u11:mapping,, +14:u01:Restricted, +12:u02:mapping,, +12:u10:mapping,, +14:u00:Restricted, +12:u01:mapping,, +13:u08:[RFC8075], +12:u00:mapping,, +13:u07:[RFC8075], +13:u06:[RFC8075], +13:u05:[RFC8075], +13:u04:[RFC8075], +13:u03:[RFC8075], +13:u02:[RFC8075], +13:u01:[RFC8075], +13:u00:[RFC8075], +15:u08:[RFC8075])., +15:u07:[RFC8075])., +15:u06:[RFC8075])., +15:u14:[rfc8075])., +9:uI2:""(.., +15:u05:[RFC8075])., +15:u13:[rfc8075])., +7:u22:Map, +8:u23:Mapp, +9:uI1:""(.., +15:u04:[RFC8075])., +15:u12:[rfc8075])., +9:uI0:""(.., +15:u03:[RFC8075])., +15:u11:[rfc8075])., +15:u02:[RFC8075])., +9:u08:[HTTP, +15:u10:[rfc8075])., +15:u01:[RFC8075])., +15:u00:[RFC8075])., +9:u07:[HTTP, +12:u08:HTTP/1.1, +60:u08:http://proxy.url/hc/?target_uri=coap://server.url/orders, +9:u06:[HTTP, +60:u07:http://proxy.url/hc/?target_uri=coap://server.url/orders, +9:u14:[http, +9:u05:[HTTP, +12:u07:HTTP/1.1, +60:u06:http://proxy.url/hc/?target_uri=coap://server.url/orders, +9:u13:[http, +8:uI2:[--], +9:u04:[HTTP, +12:u06:HTTP/1.1, +17:u08:Content-Type:, +60:u05:http://proxy.url/hc/?target_uri=coap://server.url/orders, +54:u08:http://proxy.url/hc/?target_uri=coap://server.url/, +9:u12:[http, +12:u14:http/1.1, +7:u22:[HT, +8:u23:[HTT, +8:uI1:[--], +16:uI2:://.//?://./, +9:u03:[HTTP, +12:u05:HTTP/1.1, +11:u08:OSCORE:, +60:u04:http://proxy.url/hc/?target_uri=coap://server.url/orders, +54:u07:http://proxy.url/hc/?target_uri=coap://server.url/, +22:u08:application/oscore, +9:u11:[http, +12:u13:http/1.1, +7:u23:GET, +8:uI0:[--], +16:uI1:://.//?://./, +9:u02:[HTTP, +12:u04:HTTP/1.1, +17:u07:Content-Type:, +9:u08:Body:, +60:u03:http://proxy.url/hc/?target_uri=coap://server.url/orders, +54:u06:http://proxy.url/hc/?target_uri=coap://server.url/, +22:u07:application/oscore, +7:u08:CSU, +9:u10:[http, +12:u12:http/1.1, +8:u14:post, +16:uI0:://.//?://./, +9:u01:[HTTP, +12:u03:HTTP/1.1, +17:u06:Content-Type:, +11:u07:OSCORE:, +9:u08:[CoAP, +60:u02:http://proxy.url/hc/?target_uri=coap://server.url/orders, +54:u05:http://proxy.url/hc/?target_uri=coap://server.url/, +22:u06:application/oscore, +7:u07:CSU, +6:u08:09, +12:u11:http/1.1, +8:u13:post, +17:u14:content-type:, +18:uI2:://.//?://.//., +9:u00:[HTTP, +12:u02:HTTP/1.1, +17:u05:Content-Type:, +11:u06:OSCORE:, +9:u07:Body:, +60:u01:http://proxy.url/hc/?target_uri=coap://server.url/orders, +54:u04:http://proxy.url/hc/?target_uri=coap://server.url/, +22:u05:application/oscore, +7:u06:CSU, +6:u07:09, +12:u10:http/1.1, +8:u12:post, +17:u13:content-type:, +11:u14:oscore:, +8:u23:POST, +18:uI1:://.//?://.//., +7:uI2:-:/, +12:u01:HTTP/1.1, +17:u04:Content-Type:, +11:u05:OSCORE:, +9:u06:Body:, +9:u07:[CoAP, +60:u00:http://proxy.url/hc/?target_uri=coap://server.url/orders, +54:u03:http://proxy.url/hc/?target_uri=coap://server.url/, +22:u04:application/oscore, +7:u05:CSU, +6:u06:09, +22:u08:coap://server.url/, +8:u11:post, +17:u12:content-type:, +11:u13:oscore:, +9:u14:body:, +18:uI0:://.//?://.//., +7:uI1:-:/, +12:u00:HTTP/1.1, +17:u03:Content-Type:, +11:u04:OSCORE:, +9:u05:Body:, +9:u06:[CoAP, +54:u02:http://proxy.url/hc/?target_uri=coap://server.url/, +22:u03:application/oscore, +7:u04:CSU, +6:u05:09, +22:u07:coap://server.url/, +8:u10:post, +17:u11:content-type:, +11:u12:oscore:, +9:u13:body:, +9:u14:[coap, +7:uI0:-:/, +17:u02:Content-Type:, +11:u03:OSCORE:, +9:u04:Body:, +9:u05:[CoAP, +54:u01:http://proxy.url/hc/?target_uri=coap://server.url/, +22:u02:application/oscore, +7:u03:CSU, +6:u04:09, +22:u06:coap://server.url/, +17:u10:content-type:, +11:u11:oscore:, +9:u12:body:, +9:u13:[coap, +7:u22:Bod, +8:u23:Body, +17:u01:Content-Type:, +11:u02:OSCORE:, +9:u03:Body:, +9:u04:[CoAP, +54:u00:http://proxy.url/hc/?target_uri=coap://server.url/, +22:u01:application/oscore, +7:u02:CSU, +6:u03:09, +22:u05:coap://server.url/, +11:u10:oscore:, +9:u11:body:, +9:u12:[coap, +9:uI2:://./, +17:u00:Content-Type:, +11:u01:OSCORE:, +9:u02:Body:, +9:u03:[CoAP, +22:u00:application/oscore, +7:u01:CSU, +6:u02:09, +22:u04:coap://server.url/, +28:u08:coap://server.url/orders, +9:u10:body:, +9:u11:[coap, +9:uI1:://./, +11:u00:OSCORE:, +9:u01:Body:, +9:u02:[CoAP, +7:u00:CSU, +6:u01:09, +22:u03:coap://server.url/, +28:u07:coap://server.url/orders, +9:u10:[coap, +9:uI0:://./, +9:u00:Body:, +9:u01:[CoAP, +19:u08:Content-Format:, +6:u00:09, +22:u02:coap://server.url/, +28:u06:coap://server.url/orders, +9:u00:[CoAP, +22:u01:coap://server.url/, +28:u05:coap://server.url/orders, +19:u07:Content-Format:, +22:u00:coap://server.url/, +28:u04:coap://server.url/orders, +16:u08:Exterminate!, +8:u14:2.05, +19:u06:Content-Format:, +8:u08:2.04, +28:u03:coap://server.url/orders, +16:u07:Exterminate!, +8:u13:2.05, +19:u14:content-format:, +19:u05:Content-Format:, +28:u02:coap://server.url/orders, +16:u06:Exterminate!, +8:u12:2.05, +19:u13:content-format:, +7:u22:2.0, +8:u23:2.05, +19:u04:Content-Format:, +8:u07:2.04, +28:u01:coap://server.url/orders, +16:u05:Exterminate!, +11:u08:[empty], +8:u11:2.05, +19:u12:content-format:, +7:uI2::!!, +19:u03:Content-Format:, +8:u06:2.04, +28:u00:coap://server.url/orders, +16:u04:Exterminate!, +11:u07:[empty], +8:u10:2.05, +19:u11:content-format:, +8:u14:2.04, +7:uI1::!!, +19:u02:Content-Format:, +8:u05:2.04, +16:u03:Exterminate!, +11:u06:[empty], +19:u10:content-format:, +8:u13:2.04, +7:uI0::!!, +19:u01:Content-Format:, +8:u04:2.04, +16:u02:Exterminate!, +11:u05:[empty], +7:u08:200, +8:u12:2.04, +8:u23:2.04, +19:u00:Content-Format:, +8:u03:2.04, +16:u01:Exterminate!, +11:u04:[empty], +7:u07:200, +8:u11:2.04, +10:uI2::...[], +8:u02:2.04, +16:u00:Exterminate!, +11:u03:[empty], +7:u06:200, +8:u10:2.04, +10:uI1::...[], +8:u01:2.04, +11:u02:[empty], +7:u05:200, +10:uI0::...[], +8:u00:2.04, +11:u01:[empty], +7:u04:200, +11:u00:[empty], +7:u03:200, +7:u02:200, +14:u08:text/plain, +7:u01:200, +14:u07:text/plain, +7:u00:200, +14:u06:text/plain, +14:u05:text/plain, +14:u04:text/plain, +14:u03:text/plain, +14:u02:text/plain, +14:u01:text/plain, +14:u00:text/plain, +14:u08:(Content),, +14:u07:(Content),, +14:u06:(Content),, +14:u05:(Content),, +14:u04:(Content),, +14:u03:(Content),, +14:u02:(Content),, +14:u01:(Content),, +38:u08:Proxy-Uri=http://server.url/orders, +14:u00:(Content),, +21:u08:coap://proxy.url/, +21:u07:coap://proxy.url/, +38:u07:Proxy-Uri=http://server.url/orders, +21:u06:coap://proxy.url/, +38:u06:Proxy-Uri=http://server.url/orders, +32:u08:Proxy-Uri=http://server.url/, +21:u05:coap://proxy.url/, +38:u14:proxy-uri=http://server.url/orders, +38:u05:Proxy-Uri=http://server.url/orders, +21:u04:coap://proxy.url/, +38:u13:proxy-uri=http://server.url/orders, +10:uI2:-://./, +38:u04:Proxy-Uri=http://server.url/orders, +32:u07:Proxy-Uri=http://server.url/, +21:u03:coap://proxy.url/, +38:u12:proxy-uri=http://server.url/orders, +10:uI1:-://./, +38:u03:Proxy-Uri=http://server.url/orders, +32:u06:Proxy-Uri=http://server.url/, +21:u02:coap://proxy.url/, +38:u11:proxy-uri=http://server.url/orders, +32:u14:proxy-uri=http://server.url/, +10:uI0:-://./, +38:u02:Proxy-Uri=http://server.url/orders, +32:u05:Proxy-Uri=http://server.url/, +21:u01:coap://proxy.url/, +38:u10:proxy-uri=http://server.url/orders, +32:u13:proxy-uri=http://server.url/, +38:u01:Proxy-Uri=http://server.url/orders, +32:u04:Proxy-Uri=http://server.url/, +21:u00:coap://proxy.url/, +22:u08:http://server.url/, +32:u12:proxy-uri=http://server.url/, +38:u00:Proxy-Uri=http://server.url/orders, +32:u03:Proxy-Uri=http://server.url/, +22:u07:http://server.url/, +32:u11:proxy-uri=http://server.url/, +32:u02:Proxy-Uri=http://server.url/, +22:u06:http://server.url/, +32:u10:proxy-uri=http://server.url/, +32:u01:Proxy-Uri=http://server.url/, +22:u05:http://server.url/, +32:u00:Proxy-Uri=http://server.url/, +22:u04:http://server.url/, +22:u03:http://server.url/, +28:u08:http://server.url/orders, +22:u02:http://server.url/, +28:u07:http://server.url/orders, +22:u01:http://server.url/, +28:u06:http://server.url/orders, +22:u00:http://server.url/, +28:u05:http://server.url/orders, +28:u04:http://server.url/orders, +28:u03:http://server.url/orders, +28:u02:http://server.url/orders, +28:u01:http://server.url/orders, +28:u00:http://server.url/orders, +13:u08:(Content), +13:u07:(Content), +13:u06:(Content), +13:u14:(content), +13:u05:(Content), +12:u08:overview, +13:u13:(content), +13:u04:(Content), +12:u07:overview, +13:u12:(content), +8:u23:(Con, +13:u03:(Content), +12:u06:overview, +13:u11:(content), +13:u02:(Content), +12:u05:overview, +13:u10:(content), +13:u01:(Content), +12:u04:overview, +13:u00:(Content), +12:u03:overview, +16:u08:perspective,, +12:u02:overview, +15:u08:trustworthy, +12:u01:overview, +15:u07:trustworthy, +16:u07:perspective,, +12:u08:commands, +12:u00:overview, +15:u06:trustworthy, +16:u06:perspective,, +10:u08:"raise, +15:u05:trustworthy, +16:u14:perspective,, +16:u05:perspective,, +12:u07:commands, +15:u04:trustworthy, +13:u08:bridge")., +16:u13:perspective,, +16:u04:perspective,, +12:u06:commands, +10:u07:"raise, +15:u03:trustworthy, +13:u07:bridge")., +16:u12:perspective,, +12:u14:commands, +16:u03:perspective,, +12:u05:commands, +10:u06:"raise, +10:u08:(D)TLS, +15:u02:trustworthy, +13:u06:bridge")., +16:u11:perspective,, +12:u13:commands, +10:u14:"raise, +11:uI2:("","",, +16:u02:perspective,, +12:u04:commands, +10:u05:"raise, +15:u01:trustworthy, +13:u05:bridge")., +16:u10:perspective,, +12:u12:commands, +10:u13:"raise, +11:uI1:("","",, +16:u01:perspective,, +12:u03:commands, +10:u04:"raise, +10:u07:(D)TLS, +15:u00:trustworthy, +13:u04:bridge")., +12:u11:commands, +10:u12:"raise, +7:u22:"ra, +8:u23:"rai, +11:uI0:("","",, +16:u00:perspective,, +12:u02:commands, +10:u03:"raise, +10:u06:(D)TLS, +13:u03:bridge")., +7:u08:4)., +12:u10:commands, +10:u11:"raise, +10:u14:(d)tls, +12:u01:commands, +10:u02:"raise, +10:u05:(D)TLS, +13:u02:bridge")., +7:u07:4)., +10:u10:"raise, +10:u13:(d)tls, +10:uI2:()--.-, +12:u00:commands, +10:u01:"raise, +10:u04:(D)TLS, +13:u01:bridge")., +7:u06:4)., +10:u12:(d)tls, +7:u22:(D), +8:u23:(D)T, +10:uI1:()--.-, +10:u00:"raise, +10:u03:(D)TLS, +13:u00:bridge")., +7:u05:4)., +10:u11:(d)tls, +10:uI0:()--.-, +10:uI2:).(),-, +10:u02:(D)TLS, +7:u04:4)., +9:u08:HTTP,, +10:u10:(d)tls, +10:uI1:).(),-, +8:uI2:-,--, +10:u01:(D)TLS, +7:u03:4)., +9:u07:HTTP,, +10:uI0:).(),-, +8:uI1:-,--, +10:u00:(D)TLS, +7:u02:4)., +9:u06:HTTP,, +9:u08:CoAP., +8:uI0:-,--, +7:u01:4)., +9:u05:HTTP,, +9:u07:CoAP., +7:u00:4)., +9:u04:HTTP,, +9:u06:CoAP., +9:u03:HTTP,, +9:u05:CoAP., +9:u02:HTTP,, +9:u04:CoAP., +9:u01:HTTP,, +9:u03:CoAP., +9:u00:HTTP,, +9:u02:CoAP., +9:u01:CoAP., +16:u08:manipulated., +9:u00:CoAP., +16:u07:manipulated., +16:u06:manipulated., +16:u14:manipulated., +16:u05:manipulated., +16:u13:manipulated., +12:u14:analyzed, +16:u04:manipulated., +16:u12:manipulated., +12:u13:analyzed, +16:u03:manipulated., +16:u11:manipulated., +12:u12:analyzed, +16:u02:manipulated., +16:u10:manipulated., +12:u11:analyzed, +16:u01:manipulated., +12:u10:analyzed, +16:u00:manipulated., +9:u08:(ACE), +9:u07:(ACE), +9:u06:(ACE), +9:u14:(ace), +9:u05:(ACE), +9:u13:(ace), +10:uI2:()[-]., +9:u04:(ACE), +9:u12:(ace), +10:uI1:()[-]., +9:u03:(ACE), +9:u11:(ace), +10:uI0:()[-]., +9:u02:(ACE), +9:u10:(ace), +9:u01:(ACE), +9:u00:(ACE), +13:u08:[RFC5869], +10:u08:(IKM)., +13:u07:[RFC5869], +15:u08:Informally,, +13:u06:[RFC5869], +10:u07:(IKM)., +13:u14:[rfc5869], +13:u05:[RFC5869], +10:u06:(IKM)., +15:u07:Informally,, +13:u13:[rfc5869], +10:u14:(ikm)., +13:u04:[RFC5869], +10:u05:(IKM)., +15:u06:Informally,, +13:u12:[rfc5869], +10:u13:(ikm)., +15:u14:informally,, +13:u03:[RFC5869], +10:u04:(IKM)., +15:u05:Informally,, +21:u08:cryptographically, +13:u11:[rfc5869], +10:u12:(ikm)., +15:u13:informally,, +7:u22:(IK, +8:u23:(IKM, +13:u02:[RFC5869], +10:u03:(IKM)., +15:u04:Informally,, +21:u07:cryptographically, +13:u10:[rfc5869], +10:u11:(ikm)., +15:u12:informally,, +13:u01:[RFC5869], +10:u02:(IKM)., +15:u03:Informally,, +15:u08:randomness., +21:u06:cryptographically, +10:u10:(ikm)., +15:u11:informally,, +13:u00:[RFC5869], +10:u01:(IKM)., +15:u02:Informally,, +21:u05:cryptographically, +15:u10:informally,, +10:u00:(IKM)., +15:u01:Informally,, +15:u07:randomness., +21:u04:cryptographically, +15:u00:Informally,, +15:u06:randomness., +21:u08:[OSCORE-PROFILE],, +21:u03:cryptographically, +15:u14:randomness., +15:u05:randomness., +21:u02:cryptographically, +15:u13:randomness., +15:u04:randomness., +21:u07:[OSCORE-PROFILE],, +21:u01:cryptographically, +10:u08:random, +15:u12:randomness., +8:u23:rand, +15:u03:randomness., +21:u06:[OSCORE-PROFILE],, +21:u00:cryptographically, +10:u07:random, +15:u11:randomness., +21:u14:[oscore-profile],, +15:u02:randomness., +21:u05:[OSCORE-PROFILE],, +10:u06:random, +15:u10:randomness., +21:u13:[oscore-profile],, +15:u01:randomness., +21:u04:[OSCORE-PROFILE],, +10:u05:random, +21:u12:[oscore-profile],, +7:u22:[OS, +8:u23:[OSC, +15:u00:randomness., +21:u03:[OSCORE-PROFILE],, +10:u04:random, +21:u11:[oscore-profile],, +21:u02:[OSCORE-PROFILE],, +10:u03:random, +21:u10:[oscore-profile],, +21:u01:[OSCORE-PROFILE],, +10:u02:random, +21:u00:[OSCORE-PROFILE],, +10:u01:random, +10:u00:random, +7:u08:try, +7:u07:try, +7:u06:try, +7:u05:try, +12:u08:attacks,, +7:u04:try, +12:u07:attacks,, +7:u03:try, +12:u06:attacks,, +7:u02:try, +12:u05:attacks,, +7:u01:try, +12:u04:attacks,, +7:u00:try, +12:u03:attacks,, +12:u02:attacks,, +12:u01:attacks,, +12:u00:attacks,, +22:u08:algorithm-specific, +12:uI2:([---])., +12:uI1:([---])., +22:u07:algorithm-specific, +12:uI0:([---])., +22:u06:algorithm-specific, +8:u08:5.2), +22:u14:algorithm-specific, +22:u05:algorithm-specific, +8:u07:5.2), +22:u13:algorithm-specific, +22:u04:algorithm-specific, +8:u06:5.2), +22:u12:algorithm-specific, +22:u03:algorithm-specific, +8:u05:5.2), +22:u11:algorithm-specific, +22:u02:algorithm-specific, +14:u08:repeatedly, +8:u04:5.2), +22:u10:algorithm-specific, +22:u01:algorithm-specific, +8:u03:5.2), +10:uI2:----*., +22:u00:algorithm-specific, +14:u07:repeatedly, +15:u08:per-context, +8:u02:5.2), +10:uI1:----*., +14:u06:repeatedly, +8:u01:5.2), +18:u08:initialization, +14:u14:repeatedly, +10:uI0:----*., +14:u05:repeatedly, +15:u07:per-context, +8:u00:5.2), +18:u07:initialization, +14:u13:repeatedly, +14:u04:repeatedly, +15:u06:per-context, +18:u06:initialization, +14:u12:repeatedly, +15:u14:per-context, +14:u03:repeatedly, +15:u05:per-context, +18:u05:initialization, +14:u11:repeatedly, +15:u13:per-context, +8:u14:keys, +14:u02:repeatedly, +15:u04:per-context, +18:u04:initialization, +14:u10:repeatedly, +15:u12:per-context, +8:u13:keys, +10:uI2:(.[]),, +14:u01:repeatedly, +15:u03:per-context, +18:u03:initialization, +15:u11:per-context, +8:u12:keys, +8:u23:keys, +10:uI1:(.[]),, +10:uI2:([]).,, +14:u00:repeatedly, +15:u02:per-context, +18:u02:initialization, +15:u10:per-context, +8:u11:keys, +10:uI0:(.[]),, +10:uI1:([]).,, +15:u01:per-context, +18:u01:initialization, +8:u10:keys, +10:uI0:([]).,, +15:u00:per-context, +18:u00:initialization, +20:u08:OSCORE-protected, +20:u07:OSCORE-protected, +20:u06:OSCORE-protected, +20:u05:OSCORE-protected, +20:u04:OSCORE-protected, +20:u03:OSCORE-protected, +20:u02:OSCORE-protected, +20:u01:OSCORE-protected, +12:u08:discards, +20:u00:OSCORE-protected, +12:u07:discards, +12:u06:discards, +11:u08:reduced, +12:u05:discards, +12:u04:discards, +11:u07:reduced, +12:u03:discards, +11:u06:reduced, +12:u08:actuator, +12:u02:discards, +11:u14:reduced, +11:u05:reduced, +12:u08:personal, +12:u01:discards, +18:u08:communication,, +11:u13:reduced, +11:u04:reduced, +12:u07:actuator, +12:u00:discards, +18:u07:communication,, +11:u08:sphere., +11:u12:reduced, +11:u03:reduced, +12:u06:actuator, +12:u07:personal, +18:u06:communication,, +11:u07:sphere., +11:u11:reduced, +12:u14:actuator, +11:u02:reduced, +12:u05:actuator, +12:u06:personal, +18:u05:communication,, +11:u06:sphere., +11:u10:reduced, +12:u13:actuator, +12:u14:personal, +11:u01:reduced, +12:u04:actuator, +12:u05:personal, +18:u04:communication,, +11:u05:sphere., +12:u12:actuator, +12:u13:personal, +11:u00:reduced, +12:u03:actuator, +12:u04:personal, +18:u03:communication,, +11:u04:sphere., +12:u11:actuator, +12:u12:personal, +12:u02:actuator, +12:u03:personal, +18:u02:communication,, +11:u03:sphere., +12:u10:actuator, +12:u11:personal, +12:u01:actuator, +12:u02:personal, +18:u01:communication,, +11:u02:sphere., +12:u10:personal, +12:u00:actuator, +12:u01:personal, +16:u08:transporting, +18:u00:communication,, +11:u01:sphere., +12:u00:personal, +11:u00:sphere., +16:u07:transporting, +16:u06:transporting, +16:u14:transporting, +16:u05:transporting, +13:u08:context',, +16:u13:transporting, +16:u04:transporting, +16:u12:transporting, +16:u03:transporting, +13:u07:context',, +16:u11:transporting, +16:u02:transporting, +13:u06:context',, +16:u10:transporting, +13:u14:context',, +9:uI2:.,''', +16:u01:transporting, +13:u05:context',, +13:u13:context',, +9:uI1:.,''', +16:u00:transporting, +13:u04:context',, +13:u12:context',, +9:uI0:.,''', +8:uI2:,.'', +13:u03:context',, +13:u11:context',, +8:uI1:,.'', +13:u02:context',, +13:u10:context',, +15:u14:unprotected, +8:uI0:,.'', +13:u01:context',, +15:u13:unprotected, +13:u00:context',, +15:u12:unprotected, +7:u22:Unp, +8:u23:Unpr, +15:u11:unprotected, +15:u10:unprotected, +7:u08:7.5, +7:u07:7.5, +13:u08:mitigated, +7:u06:7.5, +13:u07:mitigated, +7:u05:7.5, +13:u06:mitigated, +7:u04:7.5, +13:u05:mitigated, +7:u03:7.5, +13:u04:mitigated, +13:u08:analysis., +7:u02:7.5, +13:u03:mitigated, +13:u07:analysis., +7:u01:7.5, +13:u02:mitigated, +13:u06:analysis., +7:u00:7.5, +13:u01:mitigated, +13:u05:analysis., +13:u00:mitigated, +13:u04:analysis., +13:u03:analysis., +13:u02:analysis., +15:u14:parameters", +7:uI2:''", +13:u01:analysis., +15:u13:parameters", +7:uI1:''", +13:u00:analysis., +15:u12:parameters", +7:uI0:''", +15:u11:parameters", +15:u10:parameters", +52:u08:+--------+-----------------+-------------------+, +52:u07:+--------+-----------------+-------------------+, +52:u06:+--------+-----------------+-------------------+, +52:u14:+--------+-----------------+-------------------+, +52:u05:+--------+-----------------+-------------------+, +52:u13:+--------+-----------------+-------------------+, +52:u04:+--------+-----------------+-------------------+, +52:u12:+--------+-----------------+-------------------+, +52:u03:+--------+-----------------+-------------------+, +52:u11:+--------+-----------------+-------------------+, +52:u02:+--------+-----------------+-------------------+, +52:u10:+--------+-----------------+-------------------+, +52:u01:+--------+-----------------+-------------------+, +13:u08:[RFC8613], +52:u00:+--------+-----------------+-------------------+, +13:u07:[RFC8613], +13:u06:[RFC8613], +13:u05:[RFC8613], +13:u04:[RFC8613], +13:u03:[RFC8613], +13:u02:[RFC8613], +13:u01:[RFC8613], +13:u00:[RFC8613], +12:u08:Numbers", +12:u07:Numbers", +64:u08:+--------+-----------------+-------------------------------+, +12:u06:Numbers", +12:u14:numbers", +12:u05:Numbers", +64:u07:+--------+-----------------+-------------------------------+, +12:u13:numbers", +12:u04:Numbers", +64:u06:+--------+-----------------+-------------------------------+, +12:u12:numbers", +64:u14:+--------+-----------------+-------------------------------+, +12:u03:Numbers", +64:u05:+--------+-----------------+-------------------------------+, +12:u11:numbers", +64:u13:+--------+-----------------+-------------------------------+, +12:u02:Numbers", +64:u04:+--------+-----------------+-------------------------------+, +12:u10:numbers", +64:u12:+--------+-----------------+-------------------------------+, +12:u01:Numbers", +64:u03:+--------+-----------------+-------------------------------+, +64:u11:+--------+-----------------+-------------------------------+, +12:u00:Numbers", +64:u02:+--------+-----------------+-------------------------------+, +64:u10:+--------+-----------------+-------------------------------+, +64:u01:+--------+-----------------+-------------------------------+, +64:u00:+--------+-----------------+-------------------------------+, +8:u08:ETag, +8:u07:ETag, +8:u06:ETag, +8:u05:ETag, +8:u04:ETag, +8:u03:ETag, +17:u08:If-None-Match, +8:u02:ETag, +17:u07:If-None-Match, +8:u01:ETag, +17:u06:If-None-Match, +8:u00:ETag, +17:u05:If-None-Match, +17:u04:If-None-Match, +17:u03:If-None-Match, +17:u02:If-None-Match, +17:u01:If-None-Match, +17:u00:If-None-Match, +17:u08:Location-Path, +17:u07:Location-Path, +17:u06:Location-Path, +17:u05:Location-Path, +17:u04:Location-Path, +17:u03:Location-Path, +17:u02:Location-Path, +17:u01:Location-Path, +17:u00:Location-Path, +18:u08:Content-Format, +18:u07:Content-Format, +18:u06:Content-Format, +18:u05:Content-Format, +9:uI2:-[][], +18:u04:Content-Format, +9:uI1:-[][], +18:u03:Content-Format, +9:uI0:-[][], +18:u02:Content-Format, +18:u01:Content-Format, +18:u00:Content-Format, +10:u08:Accept, +10:u07:Accept, +10:u06:Accept, +10:u05:Accept, +10:u04:Accept, +18:u08:Location-Query, +10:u03:Accept, +18:u07:Location-Query, +10:u02:Accept, +18:u06:Location-Query, +10:u01:Accept, +18:u05:Location-Query, +10:u08:Block2, +10:u00:Accept, +18:u04:Location-Query, +10:u07:Block2, +18:u03:Location-Query, +10:u06:Block2, +18:u02:Location-Query, +10:u05:Block2, +10:u08:Block1, +18:u01:Location-Query, +10:u04:Block2, +10:u07:Block1, +10:uI2:[][][], +18:u00:Location-Query, +10:u03:Block2, +10:u06:Block1, +10:uI1:[][][], +10:u02:Block2, +10:u05:Block1, +9:u08:Size2, +10:uI0:[][][], +10:u01:Block2, +10:u04:Block1, +9:u07:Size2, +10:u00:Block2, +10:u03:Block1, +9:u06:Size2, +10:u02:Block1, +9:u05:Size2, +10:u01:Block1, +9:u04:Size2, +10:u00:Block1, +9:u03:Size2, +9:u02:Size2, +9:u01:Size2, +9:u00:Size2, +9:u08:Size1, +9:u07:Size1, +9:u06:Size1, +9:u05:Size1, +9:u04:Size1, +9:u03:Size1, +9:u02:Size1, +10:u08:Future, +9:u01:Size1, +9:u00:Size1, +13:u08:additions, +10:u07:Future, +13:u07:additions, +10:u06:Future, +13:u06:additions, +10:u05:Future, +13:u05:additions, +10:u04:Future, +13:u04:additions, +7:u22:Fut, +8:u23:Futu, +10:u03:Future, +69:u08:+------------+--------+---------------------+-------------------+, +13:u03:additions, +10:u02:Future, +13:u02:additions, +10:u01:Future, +69:u07:+------------+--------+---------------------+-------------------+, +13:u01:additions, +11:u08:Applies, +10:u00:Future, +69:u06:+------------+--------+---------------------+-------------------+, +13:u00:additions, +11:u07:Applies, +69:u14:+------------+--------+---------------------+-------------------+, +69:u05:+------------+--------+---------------------+-------------------+, +11:u06:Applies, +69:u13:+------------+--------+---------------------+-------------------+, +69:u04:+------------+--------+---------------------+-------------------+, +11:u05:Applies, +69:u12:+------------+--------+---------------------+-------------------+, +69:u03:+------------+--------+---------------------+-------------------+, +11:u04:Applies, +8:u08:7.xx, +69:u11:+------------+--------+---------------------+-------------------+, +69:u02:+------------+--------+---------------------+-------------------+, +11:u03:Applies, +8:u07:7.xx, +69:u10:+------------+--------+---------------------+-------------------+, +69:u01:+------------+--------+---------------------+-------------------+, +11:u02:Applies, +8:u06:7.xx, +69:u00:+------------+--------+---------------------+-------------------+, +11:u01:Applies, +8:u05:7.xx, +11:u00:Applies, +8:u04:7.xx, +8:u03:7.xx, +8:u02:7.xx, +8:u01:7.xx, +8:u00:7.xx, +69:u08:+-------------------+----------+----------+---------------------+, +69:u07:+-------------------+----------+----------+---------------------+, +69:u06:+-------------------+----------+----------+---------------------+, +69:u14:+-------------------+----------+----------+---------------------+, +69:u05:+-------------------+----------+----------+---------------------+, +69:u13:+-------------------+----------+----------+---------------------+, +69:u04:+-------------------+----------+----------+---------------------+, +69:u12:+-------------------+----------+----------+---------------------+, +69:u03:+-------------------+----------+----------+---------------------+, +69:u11:+-------------------+----------+----------+---------------------+, +69:u02:+-------------------+----------+----------+---------------------+, +8:u08:http, +69:u10:+-------------------+----------+----------+---------------------+, +69:u01:+-------------------+----------+----------+---------------------+, +8:u07:http, +69:u00:+-------------------+----------+----------+---------------------+, +8:u06:http, +8:u05:http, +8:u04:http, +8:u03:http, +8:u02:http, +8:u01:http, +8:u00:http, +10:u08:"Media, +10:u08:Types", +10:u07:"Media, +10:u07:Types", +10:u06:"Media, +10:u06:Types", +10:u14:"media, +10:u05:"Media, +11:u08:Subtype, +10:u05:Types", +9:u08:name:, +10:u13:"media, +10:u04:"Media, +10:u04:Types", +9:u07:name:, +10:u12:"media, +7:u22:"Me, +8:u23:"Med, +10:u03:"Media, +11:u07:Subtype, +10:u03:Types", +9:u06:name:, +15:u08:parameters:, +10:u11:"media, +10:u02:"Media, +11:u06:Subtype, +10:u02:Types", +9:u05:name:, +15:u07:parameters:, +10:u10:"media, +10:u01:"Media, +11:u05:Subtype, +10:u01:Types", +9:u04:name:, +15:u06:parameters:, +19:u08:considerations:, +10:u00:"Media, +11:u04:Subtype, +10:u00:Types", +9:u03:name:, +15:u05:parameters:, +19:u07:considerations:, +8:u23:Subt, +11:u03:Subtype, +20:u08:Interoperability, +9:u02:name:, +15:u04:parameters:, +19:u06:considerations:, +14:u08:[RFC8613]., +11:u02:Subtype, +13:u08:Published, +9:u01:name:, +15:u03:parameters:, +19:u05:considerations:, +14:u07:[RFC8613]., +11:u01:Subtype, +20:u07:Interoperability, +9:u00:name:, +15:u02:parameters:, +19:u04:considerations:, +14:u06:[RFC8613]., +11:u00:Subtype, +20:u06:Interoperability, +13:u07:Published, +15:u01:parameters:, +19:u03:considerations:, +14:u05:[RFC8613]., +20:u05:Interoperability, +13:u06:Published, +15:u00:parameters:, +19:u02:considerations:, +14:u04:[RFC8613]., +20:u04:Interoperability, +13:u05:Published, +19:u01:considerations:, +14:u03:[RFC8613]., +20:u03:Interoperability, +13:u04:Published, +19:u00:considerations:, +14:u02:[RFC8613]., +20:u02:Interoperability, +13:u03:Published, +14:u01:[RFC8613]., +20:u01:Interoperability, +13:u02:Published, +14:u00:[RFC8613]., +9:u08:Magic, +20:u00:Interoperability, +13:u01:Published, +9:u07:Magic, +13:u00:Published, +9:u06:Magic, +13:u08:Macintosh, +7:uI2:*:/, +9:u05:Magic, +13:u07:Macintosh, +7:uI1:*:/, +9:uI2:*():/, +9:u04:Magic, +13:u06:Macintosh, +7:uI0:*:/, +9:uI1:*():/, +9:u03:Magic, +13:u05:Macintosh, +9:uI0:*():/, +9:u02:Magic, +13:u04:Macintosh, +9:u01:Magic, +13:u03:Macintosh, +10:u08:Person, +9:u00:Magic, +13:u02:Macintosh, +13:u01:Macintosh, +10:u07:Person, +13:u00:Macintosh, +19:u08:<iesg@ietf.org>, +10:u06:Person, +16:u08:Restrictions, +19:u07:<iesg@ietf.org>, +10:u08:usage:, +10:u14:person, +10:u05:Person, +11:u08:Author:, +19:u06:<iesg@ietf.org>, +10:u07:usage:, +10:u13:person, +10:u04:Person, +16:u07:Restrictions, +19:u05:<iesg@ietf.org>, +10:u06:usage:, +10:u08:Goeran, +10:u12:person, +8:u23:Pers, +10:u03:Person, +16:u06:Restrictions, +11:u07:Author:, +15:u08:Provisional, +19:u04:<iesg@ietf.org>, +10:u05:usage:, +10:u07:Goeran, +15:u08:Controller:, +10:u11:person, +16:u14:restrictions, +10:u02:Person, +16:u05:Restrictions, +11:u06:Author:, +19:u03:<iesg@ietf.org>, +10:u04:usage:, +10:u06:Goeran, +15:u07:Controller:, +17:u08:registration?, +10:u10:person, +16:u13:restrictions, +11:u14:author:, +10:u01:Person, +16:u04:Restrictions, +11:u05:Author:, +15:u07:Provisional, +19:u02:<iesg@ietf.org>, +10:u03:usage:, +10:u05:Goeran, +15:u06:Controller:, +17:u07:registration?, +16:u12:restrictions, +11:u13:author:, +10:u00:Person, +16:u03:Restrictions, +11:u04:Author:, +15:u06:Provisional, +19:u01:<iesg@ietf.org>, +10:u02:usage:, +10:u04:Goeran, +15:u05:Controller:, +17:u06:registration?, +16:u11:restrictions, +11:u12:author:, +16:u02:Restrictions, +11:u03:Author:, +15:u05:Provisional, +19:u00:<iesg@ietf.org>, +10:u01:usage:, +10:u03:Goeran, +15:u04:Controller:, +17:u05:registration?, +16:u10:restrictions, +11:u11:author:, +16:u01:Restrictions, +11:u02:Author:, +15:u04:Provisional, +10:u00:usage:, +10:u02:Goeran, +15:u03:Controller:, +17:u04:registration?, +11:u10:author:, +16:u00:Restrictions, +11:u01:Author:, +15:u03:Provisional, +10:u01:Goeran, +15:u02:Controller:, +17:u03:registration?, +11:u00:Author:, +15:u02:Provisional, +70:u08:+----------------------+----------+----------+-------------------+, +10:u00:Goeran, +15:u01:Controller:, +17:u02:registration?, +15:u01:Provisional, +15:u00:Controller:, +17:u01:registration?, +15:u00:Provisional, +70:u07:+----------------------+----------+----------+-------------------+, +17:u00:registration?, +70:u06:+----------------------+----------+----------+-------------------+, +70:u14:+----------------------+----------+----------+-------------------+, +70:u05:+----------------------+----------+----------+-------------------+, +70:u13:+----------------------+----------+----------+-------------------+, +70:u04:+----------------------+----------+----------+-------------------+, +70:u12:+----------------------+----------+----------+-------------------+, +70:u03:+----------------------+----------+----------+-------------------+, +70:u11:+----------------------+----------+----------+-------------------+, +70:u02:+----------------------+----------+----------+-------------------+, +70:u10:+----------------------+----------+----------+-------------------+, +70:u01:+----------------------+----------+----------+-------------------+, +70:u00:+----------------------+----------+----------+-------------------+, +11:u08:"OSCORE, +9:u08:"CoRE, +10:u08:Review, +9:u07:"CoRE, +11:u07:"OSCORE, +9:u06:"CoRE, +11:u06:"OSCORE, +10:u07:Review, +9:u05:"CoRE, +11:u14:"oscore, +11:u05:"OSCORE, +10:u06:Review, +9:u04:"CoRE, +11:u13:"oscore, +11:u04:"OSCORE, +10:u05:Review, +9:u03:"CoRE, +11:u12:"oscore, +7:u22:"OS, +8:u23:"OSC, +11:u03:"OSCORE, +10:u04:Review, +9:u02:"CoRE, +11:u11:"oscore, +11:u02:"OSCORE, +10:u03:Review, +9:u01:"CoRE, +11:u10:"oscore, +11:u01:"OSCORE, +10:u02:Review, +9:u00:"CoRE, +11:u00:"OSCORE, +10:u01:Review, +10:u00:Review, +8:u14:bit., +8:u13:bit., +8:u12:bit., +8:u23:bit., +8:u11:bit., +8:u10:bit., +12:u08:Position, +12:u07:Position, +12:u06:Position, +10:u08:expand, +12:u05:Position, +76:u08:+--------------+-------------+-----------------------------+-----------+, +10:u07:expand, +8:u08:8-63, +12:u04:Position, +10:u06:expand, +8:u07:8-63, +7:u22:Pos, +8:u23:Posi, +12:u03:Position, +76:u07:+--------------+-------------+-----------------------------+-----------+, +10:u05:expand, +8:u06:8-63, +12:u02:Position, +76:u06:+--------------+-------------+-----------------------------+-----------+, +10:u04:expand, +8:u05:8-63, +76:u14:+--------------+-------------+-----------------------------+-----------+, +12:u01:Position, +76:u05:+--------------+-------------+-----------------------------+-----------+, +10:u03:expand, +8:u04:8-63, +76:u13:+--------------+-------------+-----------------------------+-----------+, +71:uI2:-------------------------------------------------------------------, +6:uI2:67, +12:u00:Position, +76:u04:+--------------+-------------+-----------------------------+-----------+, +10:u02:expand, +8:u03:8-63, +76:u12:+--------------+-------------+-----------------------------+-----------+, +71:uI1:-------------------------------------------------------------------, +6:uI1:67, +76:u03:+--------------+-------------+-----------------------------+-----------+, +10:u01:expand, +8:u02:8-63, +76:u11:+--------------+-------------+-----------------------------+-----------+, +71:uI0:-------------------------------------------------------------------, +6:uI0:67, +76:u02:+--------------+-------------+-----------------------------+-----------+, +10:u00:expand, +8:u01:8-63, +76:u10:+--------------+-------------+-----------------------------+-----------+, +76:u01:+--------------+-------------+-----------------------------+-----------+, +8:u00:8-63, +76:u00:+--------------+-------------+-----------------------------+-----------+, +7:u08:Kid, +7:u07:Kid, +7:u06:Kid, +7:u05:Kid, +7:u04:Kid, +7:u03:Kid, +7:u02:Kid, +7:u01:Kid, +7:u00:Kid, +7:u08:5-7, +7:u07:5-7, +7:u06:5-7, +7:u14:5-7, +7:u05:5-7, +7:u13:5-7, +7:u04:5-7, +7:u12:5-7, +6:u21:5-, +7:u22:5-7, +7:u23:5-7, +7:u03:5-7, +7:u11:5-7, +7:u02:5-7, +7:u10:5-7, +7:u01:5-7, +7:u00:5-7, +8:u14:8-63, +8:u13:8-63, +8:u12:8-63, +6:u21:8-, +7:u22:8-6, +8:u23:8-63, +8:u11:8-63, +10:u08:expert, +8:u10:8-63, +10:u07:expert, +10:u06:expert, +10:u05:expert, +10:u04:expert, +10:u03:expert, +10:u02:expert, +11:u08:points., +10:u01:expert, +11:u07:points., +10:u00:expert, +11:u06:points., +11:u05:points., +11:u04:points., +11:u03:points., +8:u14:left, +11:u02:points., +8:u13:left, +11:u01:points., +8:u12:left, +7:u22:lef, +8:u23:left, +11:u00:points., +8:u11:left, +7:u08:on., +8:u10:left, +11:u08:Experts, +7:u07:on., +11:u07:Experts, +7:u06:on., +11:u06:Experts, +13:u08:expansion, +7:u14:on., +7:u05:on., +11:u05:Experts, +13:u07:expansion, +7:u13:on., +7:u04:on., +11:u04:Experts, +13:u06:expansion, +7:u12:on., +7:u22:on., +7:u23:on., +7:u03:on., +11:u03:Experts, +13:u05:expansion, +7:u11:on., +7:u02:on., +11:u02:Experts, +13:u04:expansion, +7:u10:on., +7:u01:on., +11:u01:Experts, +13:u03:expansion, +7:u00:on., +13:u08:[RFC4086], +11:u00:Experts, +13:u02:expansion, +15:u08:"Randomness, +13:u01:expansion, +12:u08:Eastlake, +13:u07:[RFC4086], +13:u00:expansion, +12:u07:Eastlake, +13:u06:[RFC4086], +15:u07:"Randomness, +46:u08:<https://www.rfc-editor.org/info/rfc4086>., +12:u06:Eastlake, +21:u08:10.17487/RFC4086,, +13:u14:[rfc4086], +13:u05:[RFC4086], +15:u06:"Randomness, +13:u08:[RFC4648], +12:u05:Eastlake, +21:u07:10.17487/RFC4086,, +13:u13:[rfc4086], +15:u14:"randomness, +14:uI2:[],.,,.,.,, +13:u04:[RFC4086], +15:u05:"Randomness, +46:u07:<https://www.rfc-editor.org/info/rfc4086>., +15:u08:Encodings",, +12:u04:Eastlake, +21:u06:10.17487/RFC4086,, +14:u08:Josefsson,, +13:u12:[rfc4086], +15:u13:"randomness, +14:uI1:[],.,,.,.,, +9:uI2:"",,,, +13:u03:[RFC4086], +15:u04:"Randomness, +46:u06:<https://www.rfc-editor.org/info/rfc4086>., +13:u07:[RFC4648], +46:u08:<https://www.rfc-editor.org/info/rfc4648>., +12:u03:Eastlake, +21:u05:10.17487/RFC4086,, +14:u07:Josefsson,, +13:u11:[rfc4086], +15:u12:"randomness, +46:u14:<https://www.rfc-editor.org/info/rfc4086>., +14:uI0:[],.,,.,.,, +9:uI1:"",,,, +13:u02:[RFC4086], +15:u03:"Randomness, +46:u05:<https://www.rfc-editor.org/info/rfc4086>., +13:u06:[RFC4648], +15:u07:Encodings",, +12:u02:Eastlake, +21:u04:10.17487/RFC4086,, +14:u06:Josefsson,, +13:u10:[rfc4086], +15:u11:"randomness, +46:u13:<https://www.rfc-editor.org/info/rfc4086>., +13:u14:[rfc4648], +9:uI0:"",,,, +13:u01:[RFC4086], +15:u02:"Randomness, +46:u04:<https://www.rfc-editor.org/info/rfc4086>., +13:u05:[RFC4648], +15:u06:Encodings",, +46:u07:<https://www.rfc-editor.org/info/rfc4648>., +12:u01:Eastlake, +21:u03:10.17487/RFC4086,, +14:u05:Josefsson,, +15:u10:"randomness, +46:u12:<https://www.rfc-editor.org/info/rfc4086>., +13:u13:[rfc4648], +15:u14:encodings",, +12:uI2:[],.,",,, +13:u00:[RFC4086], +15:u01:"Randomness, +46:u03:<https://www.rfc-editor.org/info/rfc4086>., +13:u04:[RFC4648], +15:u05:Encodings",, +46:u06:<https://www.rfc-editor.org/info/rfc4648>., +12:u00:Eastlake, +21:u02:10.17487/RFC4086,, +14:u04:Josefsson,, +46:u11:<https://www.rfc-editor.org/info/rfc4086>., +13:u12:[rfc4648], +15:u13:encodings",, +46:u14:<https://www.rfc-editor.org/info/rfc4648>., +12:uI1:[],.,",,, +15:u00:"Randomness, +46:u02:<https://www.rfc-editor.org/info/rfc4086>., +13:u03:[RFC4648], +15:u04:Encodings",, +46:u05:<https://www.rfc-editor.org/info/rfc4648>., +46:u08:<https://www.rfc-editor.org/info/rfc5234>., +21:u01:10.17487/RFC4086,, +14:u03:Josefsson,, +46:u10:<https://www.rfc-editor.org/info/rfc4086>., +13:u11:[rfc4648], +15:u12:encodings",, +46:u13:<https://www.rfc-editor.org/info/rfc4648>., +12:uI0:[],.,",,, +46:u01:<https://www.rfc-editor.org/info/rfc4086>., +13:u02:[RFC4648], +15:u03:Encodings",, +46:u04:<https://www.rfc-editor.org/info/rfc4648>., +21:u00:10.17487/RFC4086,, +14:u02:Josefsson,, +13:u10:[rfc4648], +15:u11:encodings",, +46:u12:<https://www.rfc-editor.org/info/rfc4648>., +46:u00:<https://www.rfc-editor.org/info/rfc4086>., +13:u01:[RFC4648], +15:u02:Encodings",, +46:u03:<https://www.rfc-editor.org/info/rfc4648>., +46:u07:<https://www.rfc-editor.org/info/rfc5234>., +14:u01:Josefsson,, +15:u10:encodings",, +46:u11:<https://www.rfc-editor.org/info/rfc4648>., +13:u00:[RFC4648], +15:u01:Encodings",, +46:u02:<https://www.rfc-editor.org/info/rfc4648>., +46:u06:<https://www.rfc-editor.org/info/rfc5234>., +14:u00:Josefsson,, +46:u10:<https://www.rfc-editor.org/info/rfc4648>., +46:u14:<https://www.rfc-editor.org/info/rfc5234>., +15:u00:Encodings",, +46:u01:<https://www.rfc-editor.org/info/rfc4648>., +46:u05:<https://www.rfc-editor.org/info/rfc5234>., +13:u08:[RFC7049], +46:u13:<https://www.rfc-editor.org/info/rfc5234>., +46:u00:<https://www.rfc-editor.org/info/rfc4648>., +46:u04:<https://www.rfc-editor.org/info/rfc5234>., +46:u12:<https://www.rfc-editor.org/info/rfc5234>., +46:u03:<https://www.rfc-editor.org/info/rfc5234>., +13:u07:[RFC7049], +12:u08:(CBOR)",, +46:u11:<https://www.rfc-editor.org/info/rfc5234>., +46:u02:<https://www.rfc-editor.org/info/rfc5234>., +13:u06:[RFC7049], +13:u08:[RFC7230], +12:u07:(CBOR)",, +9:u08:2013,, +46:u10:<https://www.rfc-editor.org/info/rfc5234>., +13:u14:[rfc7049], +46:u01:<https://www.rfc-editor.org/info/rfc5234>., +13:u05:[RFC7049], +12:u06:(CBOR)",, +9:u07:2013,, +13:u08:Fielding,, +13:u13:[rfc7049], +46:u00:<https://www.rfc-editor.org/info/rfc5234>., +13:u04:[RFC7049], +13:u07:[RFC7230], +12:u05:(CBOR)",, +9:u06:2013,, +13:u07:Fielding,, +15:u08:(HTTP/1.1):, +13:u12:[rfc7049], +13:u03:[RFC7049], +13:u06:[RFC7230], +46:u08:<https://www.rfc-editor.org/info/rfc7230>., +12:u04:(CBOR)",, +9:u05:2013,, +13:u06:Fielding,, +15:u07:(HTTP/1.1):, +9:u08:7230,, +13:u11:[rfc7049], +13:u14:[rfc7230], +13:u02:[RFC7049], +13:u05:[RFC7230], +13:u08:[RFC7231], +12:u03:(CBOR)",, +9:u04:2013,, +13:u05:Fielding,, +15:u06:(HTTP/1.1):, +9:u07:7230,, +13:u10:[rfc7049], +13:u13:[rfc7230], +13:u01:[RFC7049], +13:u04:[RFC7230], +46:u07:<https://www.rfc-editor.org/info/rfc7230>., +12:u02:(CBOR)",, +9:u03:2013,, +13:u04:Fielding,, +15:u05:(HTTP/1.1):, +9:u06:7230,, +13:u12:[rfc7230], +11:uI2:(/.):",, +13:u00:[RFC7049], +13:u03:[RFC7230], +46:u06:<https://www.rfc-editor.org/info/rfc7230>., +13:u07:[RFC7231], +12:u01:(CBOR)",, +9:u02:2013,, +13:u03:Fielding,, +15:u04:(HTTP/1.1):, +9:u05:7230,, +13:u11:[rfc7230], +46:u14:<https://www.rfc-editor.org/info/rfc7230>., +11:uI1:(/.):",, +13:u02:[RFC7230], +46:u05:<https://www.rfc-editor.org/info/rfc7230>., +13:u06:[RFC7231], +46:u08:<https://www.rfc-editor.org/info/rfc7231>., +12:u00:(CBOR)",, +9:u01:2013,, +13:u02:Fielding,, +15:u03:(HTTP/1.1):, +9:u04:7230,, +21:u08:10.17487/RFC7231,, +13:u10:[rfc7230], +46:u13:<https://www.rfc-editor.org/info/rfc7230>., +13:u14:[rfc7231], +11:uI0:(/.):",, +13:u01:[RFC7230], +46:u04:<https://www.rfc-editor.org/info/rfc7230>., +13:u05:[RFC7231], +9:u00:2013,, +13:u01:Fielding,, +15:u02:(HTTP/1.1):, +9:u03:7230,, +21:u07:10.17487/RFC7231,, +46:u12:<https://www.rfc-editor.org/info/rfc7230>., +13:u13:[rfc7231], +13:u00:[RFC7230], +46:u03:<https://www.rfc-editor.org/info/rfc7230>., +13:u04:[RFC7231], +46:u07:<https://www.rfc-editor.org/info/rfc7231>., +13:u00:Fielding,, +15:u01:(HTTP/1.1):, +9:u02:7230,, +21:u06:10.17487/RFC7231,, +46:u11:<https://www.rfc-editor.org/info/rfc7230>., +13:u12:[rfc7231], +12:uI2:(/.):",,, +46:u02:<https://www.rfc-editor.org/info/rfc7230>., +13:u03:[RFC7231], +46:u06:<https://www.rfc-editor.org/info/rfc7231>., +15:u00:(HTTP/1.1):, +9:u01:7230,, +21:u05:10.17487/RFC7231,, +46:u10:<https://www.rfc-editor.org/info/rfc7230>., +13:u11:[rfc7231], +46:u14:<https://www.rfc-editor.org/info/rfc7231>., +12:uI1:(/.):",,, +46:u01:<https://www.rfc-editor.org/info/rfc7230>., +13:u02:[RFC7231], +46:u05:<https://www.rfc-editor.org/info/rfc7231>., +9:u00:7230,, +21:u04:10.17487/RFC7231,, +13:u10:[rfc7231], +46:u13:<https://www.rfc-editor.org/info/rfc7231>., +12:uI0:(/.):",,, +46:u00:<https://www.rfc-editor.org/info/rfc7230>., +13:u01:[RFC7231], +46:u04:<https://www.rfc-editor.org/info/rfc7231>., +21:u03:10.17487/RFC7231,, +46:u12:<https://www.rfc-editor.org/info/rfc7231>., +13:u00:[RFC7231], +46:u03:<https://www.rfc-editor.org/info/rfc7231>., +21:u02:10.17487/RFC7231,, +46:u11:<https://www.rfc-editor.org/info/rfc7231>., +46:u02:<https://www.rfc-editor.org/info/rfc7231>., +21:u01:10.17487/RFC7231,, +46:u10:<https://www.rfc-editor.org/info/rfc7231>., +46:u01:<https://www.rfc-editor.org/info/rfc7231>., +21:u00:10.17487/RFC7231,, +46:u00:<https://www.rfc-editor.org/info/rfc7231>., +11:u08:Hartke,, +11:u07:Hartke,, +46:u08:<https://www.rfc-editor.org/info/rfc7641>., +11:u06:Hartke,, +21:u08:10.17487/RFC7641,, +11:u05:Hartke,, +21:u07:10.17487/RFC7641,, +46:u07:<https://www.rfc-editor.org/info/rfc7641>., +11:u04:Hartke,, +21:u06:10.17487/RFC7641,, +46:u06:<https://www.rfc-editor.org/info/rfc7641>., +11:u03:Hartke,, +21:u05:10.17487/RFC7641,, +46:u14:<https://www.rfc-editor.org/info/rfc7641>., +46:u05:<https://www.rfc-editor.org/info/rfc7641>., +46:u08:<https://www.rfc-editor.org/info/rfc7959>., +11:u02:Hartke,, +21:u04:10.17487/RFC7641,, +21:u08:10.17487/RFC7959,, +46:u13:<https://www.rfc-editor.org/info/rfc7641>., +46:u04:<https://www.rfc-editor.org/info/rfc7641>., +11:u01:Hartke,, +21:u03:10.17487/RFC7641,, +21:u07:10.17487/RFC7959,, +46:u12:<https://www.rfc-editor.org/info/rfc7641>., +14:uI2:[],..,.,"-, +46:u03:<https://www.rfc-editor.org/info/rfc7641>., +46:u07:<https://www.rfc-editor.org/info/rfc7959>., +11:u00:Hartke,, +21:u02:10.17487/RFC7641,, +21:u06:10.17487/RFC7959,, +15:u08:Castellani,, +46:u11:<https://www.rfc-editor.org/info/rfc7641>., +14:uI1:[],..,.,"-, +46:u02:<https://www.rfc-editor.org/info/rfc7641>., +46:u06:<https://www.rfc-editor.org/info/rfc7959>., +21:u01:10.17487/RFC7641,, +21:u05:10.17487/RFC7959,, +15:u07:Castellani,, +9:u08:Dijk,, +46:u10:<https://www.rfc-editor.org/info/rfc7641>., +46:u14:<https://www.rfc-editor.org/info/rfc7959>., +14:uI0:[],..,.,"-, +46:u01:<https://www.rfc-editor.org/info/rfc7641>., +46:u05:<https://www.rfc-editor.org/info/rfc7959>., +21:u00:10.17487/RFC7641,, +21:u04:10.17487/RFC7959,, +15:u06:Castellani,, +9:u07:Dijk,, +46:u13:<https://www.rfc-editor.org/info/rfc7959>., +13:u14:[rfc8075], +46:u00:<https://www.rfc-editor.org/info/rfc7641>., +46:u04:<https://www.rfc-editor.org/info/rfc7959>., +46:u08:<https://www.rfc-editor.org/info/rfc8075>., +21:u03:10.17487/RFC7959,, +15:u05:Castellani,, +9:u06:Dijk,, +21:u08:10.17487/RFC8075,, +46:u12:<https://www.rfc-editor.org/info/rfc7959>., +13:u13:[rfc8075], +46:u03:<https://www.rfc-editor.org/info/rfc7959>., +13:u08:[RFC8132], +21:u02:10.17487/RFC7959,, +15:u04:Castellani,, +9:u05:Dijk,, +21:u07:10.17487/RFC8075,, +46:u11:<https://www.rfc-editor.org/info/rfc7959>., +13:u12:[rfc8075], +8:uI2:.,":, +46:u02:<https://www.rfc-editor.org/info/rfc7959>., +46:u07:<https://www.rfc-editor.org/info/rfc8075>., +9:u08:FETCH, +21:u01:10.17487/RFC7959,, +15:u03:Castellani,, +9:u04:Dijk,, +21:u06:10.17487/RFC8075,, +46:u10:<https://www.rfc-editor.org/info/rfc7959>., +13:u11:[rfc8075], +8:uI1:.,":, +46:u01:<https://www.rfc-editor.org/info/rfc7959>., +46:u06:<https://www.rfc-editor.org/info/rfc8075>., +13:u07:[RFC8132], +12:u08:(CoAP)",, +21:u00:10.17487/RFC7959,, +15:u02:Castellani,, +9:u03:Dijk,, +21:u05:10.17487/RFC8075,, +11:u08:Methods, +13:u10:[rfc8075], +46:u14:<https://www.rfc-editor.org/info/rfc8075>., +8:uI0:.,":, +46:u00:<https://www.rfc-editor.org/info/rfc7959>., +46:u05:<https://www.rfc-editor.org/info/rfc8075>., +13:u06:[RFC8132], +9:u07:FETCH, +46:u08:<https://www.rfc-editor.org/info/rfc8132>., +15:u01:Castellani,, +9:u02:Dijk,, +21:u04:10.17487/RFC8075,, +11:u07:Methods, +46:u13:<https://www.rfc-editor.org/info/rfc8075>., +13:u14:[rfc8132], +46:u04:<https://www.rfc-editor.org/info/rfc8075>., +13:u05:[RFC8132], +9:u06:FETCH, +12:u07:(CoAP)",, +15:u00:Castellani,, +9:u01:Dijk,, +21:u03:10.17487/RFC8075,, +11:u06:Methods, +46:u12:<https://www.rfc-editor.org/info/rfc8075>., +13:u13:[rfc8132], +9:u14:fetch, +46:u03:<https://www.rfc-editor.org/info/rfc8075>., +13:u04:[RFC8132], +9:u05:FETCH, +12:u06:(CoAP)",, +46:u07:<https://www.rfc-editor.org/info/rfc8132>., +9:u00:Dijk,, +21:u02:10.17487/RFC8075,, +11:u05:Methods, +46:u11:<https://www.rfc-editor.org/info/rfc8075>., +13:u12:[rfc8132], +9:u13:fetch, +12:u14:(coap)",, +46:u02:<https://www.rfc-editor.org/info/rfc8075>., +13:u03:[RFC8132], +9:u04:FETCH, +12:u05:(CoAP)",, +46:u06:<https://www.rfc-editor.org/info/rfc8132>., +46:u08:<https://www.rfc-editor.org/info/rfc8152>., +21:u01:10.17487/RFC8075,, +11:u04:Methods, +9:u08:8152,, +46:u10:<https://www.rfc-editor.org/info/rfc8075>., +13:u11:[rfc8132], +9:u12:fetch, +12:u13:(coap)",, +46:u14:<https://www.rfc-editor.org/info/rfc8132>., +6:u21:FE, +7:u22:FET, +8:u23:FETC, +46:u01:<https://www.rfc-editor.org/info/rfc8075>., +13:u02:[RFC8132], +9:u03:FETCH, +12:u04:(CoAP)",, +46:u05:<https://www.rfc-editor.org/info/rfc8132>., +21:u00:10.17487/RFC8075,, +11:u03:Methods, +9:u07:8152,, +13:u10:[rfc8132], +9:u11:fetch, +12:u12:(coap)",, +46:u13:<https://www.rfc-editor.org/info/rfc8132>., +8:u23:(CoA, +46:u00:<https://www.rfc-editor.org/info/rfc8075>., +13:u01:[RFC8132], +9:u02:FETCH, +12:u03:(CoAP)",, +46:u04:<https://www.rfc-editor.org/info/rfc8132>., +46:u07:<https://www.rfc-editor.org/info/rfc8152>., +11:u02:Methods, +9:u06:8152,, +9:u10:fetch, +12:u11:(coap)",, +46:u12:<https://www.rfc-editor.org/info/rfc8132>., +14:uI2:[],.,"()",, +13:u00:[RFC8132], +9:u01:FETCH, +12:u02:(CoAP)",, +46:u03:<https://www.rfc-editor.org/info/rfc8132>., +46:u06:<https://www.rfc-editor.org/info/rfc8152>., +11:u01:Methods, +9:u05:8152,, +12:u10:(coap)",, +46:u11:<https://www.rfc-editor.org/info/rfc8132>., +46:u14:<https://www.rfc-editor.org/info/rfc8152>., +14:uI1:[],.,"()",, +9:u00:FETCH, +12:u01:(CoAP)",, +46:u02:<https://www.rfc-editor.org/info/rfc8132>., +46:u05:<https://www.rfc-editor.org/info/rfc8152>., +11:u00:Methods, +9:u04:8152,, +46:u10:<https://www.rfc-editor.org/info/rfc8132>., +46:u13:<https://www.rfc-editor.org/info/rfc8152>., +14:uI0:[],.,"()",, +12:u00:(CoAP)",, +46:u01:<https://www.rfc-editor.org/info/rfc8132>., +46:u04:<https://www.rfc-editor.org/info/rfc8152>., +9:u03:8152,, +46:u12:<https://www.rfc-editor.org/info/rfc8152>., +46:u00:<https://www.rfc-editor.org/info/rfc8132>., +46:u03:<https://www.rfc-editor.org/info/rfc8152>., +9:u02:8152,, +46:u11:<https://www.rfc-editor.org/info/rfc8152>., +46:u02:<https://www.rfc-editor.org/info/rfc8152>., +13:u08:[RFC8323], +9:u01:8152,, +46:u10:<https://www.rfc-editor.org/info/rfc8152>., +46:u01:<https://www.rfc-editor.org/info/rfc8152>., +15:u08:Silverajan,, +9:u00:8152,, +46:u00:<https://www.rfc-editor.org/info/rfc8152>., +13:u07:[RFC8323], +13:u06:[RFC8323], +15:u07:Silverajan,, +13:u08:Protocol), +13:u14:[rfc8323], +13:u05:[RFC8323], +15:u06:Silverajan,, +46:u08:<https://www.rfc-editor.org/info/rfc8323>., +13:u07:Protocol), +9:u08:8323,, +13:u13:[rfc8323], +15:u14:silverajan,, +13:u04:[RFC8323], +15:u05:Silverajan,, +13:u08:[RFC8446], +13:u06:Protocol), +9:u07:8323,, +13:u12:[rfc8323], +15:u13:silverajan,, +13:uI2:,.,.,.,"(, +13:u03:[RFC8323], +15:u04:Silverajan,, +46:u07:<https://www.rfc-editor.org/info/rfc8323>., +13:u05:Protocol), +9:u06:8323,, +13:u11:[rfc8323], +15:u12:silverajan,, +13:uI1:,.,.,.,"(, +9:uI2:),,",, +13:u02:[RFC8323], +15:u03:Silverajan,, +46:u06:<https://www.rfc-editor.org/info/rfc8323>., +13:u07:[RFC8446], +46:u08:<https://www.rfc-editor.org/info/rfc8446>., +13:u04:Protocol), +9:u05:8323,, +9:u08:1.3",, +13:u10:[rfc8323], +15:u11:silverajan,, +46:u14:<https://www.rfc-editor.org/info/rfc8323>., +13:uI0:,.,.,.,"(, +9:uI1:),,",, +13:u01:[RFC8323], +15:u02:Silverajan,, +46:u05:<https://www.rfc-editor.org/info/rfc8323>., +13:u06:[RFC8446], +13:u03:Protocol), +9:u04:8323,, +9:u07:1.3",, +15:u10:silverajan,, +46:u13:<https://www.rfc-editor.org/info/rfc8323>., +13:u14:[rfc8446], +9:uI0:),,",, +13:u00:[RFC8323], +15:u01:Silverajan,, +46:u04:<https://www.rfc-editor.org/info/rfc8323>., +13:u05:[RFC8446], +46:u07:<https://www.rfc-editor.org/info/rfc8446>., +13:u02:Protocol), +9:u03:8323,, +9:u06:1.3",, +46:u12:<https://www.rfc-editor.org/info/rfc8323>., +13:u13:[rfc8446], +15:u00:Silverajan,, +46:u03:<https://www.rfc-editor.org/info/rfc8323>., +13:u04:[RFC8446], +46:u06:<https://www.rfc-editor.org/info/rfc8446>., +13:u01:Protocol), +9:u02:8323,, +9:u05:1.3",, +46:u11:<https://www.rfc-editor.org/info/rfc8323>., +13:u12:[rfc8446], +46:u14:<https://www.rfc-editor.org/info/rfc8446>., +12:uI2:.",,./,,, +46:u02:<https://www.rfc-editor.org/info/rfc8323>., +13:u03:[RFC8446], +46:u05:<https://www.rfc-editor.org/info/rfc8446>., +13:u00:Protocol), +9:u01:8323,, +9:u04:1.3",, +46:u10:<https://www.rfc-editor.org/info/rfc8323>., +13:u11:[rfc8446], +46:u13:<https://www.rfc-editor.org/info/rfc8446>., +12:uI1:.",,./,,, +46:u01:<https://www.rfc-editor.org/info/rfc8323>., +13:u02:[RFC8446], +46:u04:<https://www.rfc-editor.org/info/rfc8446>., +9:u00:8323,, +9:u03:1.3",, +13:u10:[rfc8446], +46:u12:<https://www.rfc-editor.org/info/rfc8446>., +12:uI0:.",,./,,, +46:u00:<https://www.rfc-editor.org/info/rfc8323>., +13:u01:[RFC8446], +46:u03:<https://www.rfc-editor.org/info/rfc8446>., +9:u02:1.3",, +46:u11:<https://www.rfc-editor.org/info/rfc8446>., +13:u00:[RFC8446], +46:u02:<https://www.rfc-editor.org/info/rfc8446>., +9:u01:1.3",, +46:u10:<https://www.rfc-editor.org/info/rfc8446>., +46:u01:<https://www.rfc-editor.org/info/rfc8446>., +9:u00:1.3",, +13:u08:Birkholz,, +46:u00:<https://www.rfc-editor.org/info/rfc8446>., +13:u07:Birkholz,, +13:u06:Birkholz,, +13:u14:[rfc8610], +13:u05:Birkholz,, +13:u13:[rfc8610], +13:u04:Birkholz,, +9:u08:2019,, +13:u12:[rfc8610], +15:u08:[ACE-OAuth], +13:u03:Birkholz,, +9:u07:2019,, +13:u11:[rfc8610], +10:u08:Seitz,, +13:u02:Birkholz,, +9:u06:2019,, +13:u10:[rfc8610], +15:u07:[ACE-OAuth], +13:u01:Birkholz,, +9:u05:2019,, +15:u06:[ACE-OAuth], +10:u07:Seitz,, +13:u00:Birkholz,, +9:u04:2019,, +15:u08:Tschofenig,, +15:u14:[ace-oauth], +15:u05:[ACE-OAuth], +10:u06:Seitz,, +9:u03:2019,, +15:u07:Tschofenig,, +15:u13:[ace-oauth], +10:u14:seitz,, +15:u04:[ACE-OAuth], +10:u05:Seitz,, +19:u08:oauth-authz-24,, +9:u02:2019,, +15:u06:Tschofenig,, +17:u08:(ACE-OAuth)",, +15:u12:[ace-oauth], +10:u13:seitz,, +8:u23:[ACE, +15:u03:[ACE-OAuth], +10:u04:Seitz,, +19:u08:[CoAP-802.15.4], +9:u01:2019,, +15:u05:Tschofenig,, +17:u07:(ACE-OAuth)",, +15:u11:[ace-oauth], +10:u12:seitz,, +7:u22:Sei, +8:u23:Seit, +15:u02:[ACE-OAuth], +10:u03:Seitz,, +19:u07:oauth-authz-24,, +9:u00:2019,, +15:u04:Tschofenig,, +17:u06:(ACE-OAuth)",, +15:u10:[ace-oauth], +10:u11:seitz,, +15:u01:[ACE-OAuth], +10:u02:Seitz,, +19:u06:oauth-authz-24,, +19:u07:[CoAP-802.15.4], +15:u03:Tschofenig,, +17:u05:(ACE-OAuth)",, +10:u10:seitz,, +19:u14:oauth-authz-24,, +13:uI2:(-)",,---, +15:u00:[ACE-OAuth], +10:u01:Seitz,, +19:u05:oauth-authz-24,, +19:u06:[CoAP-802.15.4], +15:u02:Tschofenig,, +17:u04:(ACE-OAuth)",, +19:u13:oauth-authz-24,, +19:u14:[coap-802.15.4], +13:uI1:(-)",,---, +10:u00:Seitz,, +19:u04:oauth-authz-24,, +19:u05:[CoAP-802.15.4], +15:u01:Tschofenig,, +17:u03:(ACE-OAuth)",, +40:u08:draft-bormann-6lo-coap-802-15-ie-00,, +19:u12:oauth-authz-24,, +19:u13:[coap-802.15.4], +6:u21:oa, +7:u22:oau, +8:u23:oaut, +13:uI0:(-)",,---, +9:uI2:[-..], +19:u03:oauth-authz-24,, +19:u04:[CoAP-802.15.4], +13:u08:Mattsson,, +15:u00:Tschofenig,, +17:u02:(ACE-OAuth)",, +40:u07:draft-bormann-6lo-coap-802-15-ie-00,, +19:u11:oauth-authz-24,, +19:u12:[coap-802.15.4], +9:uI1:[-..], +19:u02:oauth-authz-24,, +19:u03:[CoAP-802.15.4], +17:u01:(ACE-OAuth)",, +40:u06:draft-bormann-6lo-coap-802-15-ie-00,, +19:u10:oauth-authz-24,, +19:u11:[coap-802.15.4], +9:uI0:[-..], +8:uI2:..",, +19:u01:oauth-authz-24,, +19:u02:[CoAP-802.15.4], +13:u07:Mattsson,, +17:u00:(ACE-OAuth)",, +40:u05:draft-bormann-6lo-coap-802-15-ie-00,, +19:u10:[coap-802.15.4], +8:uI1:..",, +14:uI2:,-------,., +19:u00:oauth-authz-24,, +19:u01:[CoAP-802.15.4], +13:u06:Mattsson,, +40:u04:draft-bormann-6lo-coap-802-15-ie-00,, +42:u08:draft-mattsson-core-coap-actuators-06,, +13:u14:mattsson,, +8:uI0:..",, +14:uI1:,-------,., +19:u00:[CoAP-802.15.4], +13:u05:Mattsson,, +18:u08:[CoAP-E2E-Sec], +40:u03:draft-bormann-6lo-coap-802-15-ie-00,, +42:u07:draft-mattsson-core-coap-actuators-06,, +13:u13:mattsson,, +14:uI0:,-------,., +13:u04:Mattsson,, +40:u02:draft-bormann-6lo-coap-802-15-ie-00,, +42:u06:draft-mattsson-core-coap-actuators-06,, +13:u12:mattsson,, +8:u23:Matt, +13:u03:Mattsson,, +18:u07:[CoAP-E2E-Sec], +40:u01:draft-bormann-6lo-coap-802-15-ie-00,, +42:u05:draft-mattsson-core-coap-actuators-06,, +13:u11:mattsson,, +11:uI2:,-----,, +13:u02:Mattsson,, +18:u06:[CoAP-E2E-Sec], +37:u08:hartke-core-e2e-security-reqs-03,, +40:u00:draft-bormann-6lo-coap-802-15-ie-00,, +42:u04:draft-mattsson-core-coap-actuators-06,, +13:u10:mattsson,, +18:u14:[coap-e2e-sec], +11:uI1:,-----,, +13:u01:Mattsson,, +18:u05:[CoAP-E2E-Sec], +23:u08:[CoAP-ECHO-REQ-TAG], +42:u03:draft-mattsson-core-coap-actuators-06,, +18:u13:[coap-e2e-sec], +11:uI0:,-----,, +13:u00:Mattsson,, +18:u04:[CoAP-E2E-Sec], +37:u07:hartke-core-e2e-security-reqs-03,, +12:u08:Amsuess,, +42:u02:draft-mattsson-core-coap-actuators-06,, +18:u12:[coap-e2e-sec], +18:u03:[CoAP-E2E-Sec], +37:u06:hartke-core-e2e-security-reqs-03,, +23:u07:[CoAP-ECHO-REQ-TAG], +16:u08:Request-Tag,, +42:u01:draft-mattsson-core-coap-actuators-06,, +18:u11:[coap-e2e-sec], +37:u14:hartke-core-e2e-security-reqs-03,, +10:uI2:--",,-, +18:u02:[CoAP-E2E-Sec], +37:u05:hartke-core-e2e-security-reqs-03,, +23:u06:[CoAP-ECHO-REQ-TAG], +12:u07:Amsuess,, +40:u08:draft-ietf-core-echo-request-tag-04,, +42:u00:draft-mattsson-core-coap-actuators-06,, +18:u10:[coap-e2e-sec], +37:u13:hartke-core-e2e-security-reqs-03,, +23:u14:[coap-echo-req-tag], +10:uI1:--",,-, +18:u01:[CoAP-E2E-Sec], +37:u04:hartke-core-e2e-security-reqs-03,, +23:u05:[CoAP-ECHO-REQ-TAG], +12:u06:Amsuess,, +16:u07:Request-Tag,, +18:u08:[Group-OSCORE], +37:u12:hartke-core-e2e-security-reqs-03,, +23:u13:[coap-echo-req-tag], +12:u14:amsuess,, +8:u23:hart, +10:uI0:--",,-, +9:uI2:[---], +18:u00:[CoAP-E2E-Sec], +37:u03:hartke-core-e2e-security-reqs-03,, +23:u04:[CoAP-ECHO-REQ-TAG], +12:u05:Amsuess,, +16:u06:Request-Tag,, +40:u07:draft-ietf-core-echo-request-tag-04,, +37:u11:hartke-core-e2e-security-reqs-03,, +23:u12:[coap-echo-req-tag], +12:u13:amsuess,, +16:u14:request-tag,, +9:uI1:[---], +15:uI2:,.,,.,.,":,, +37:u02:hartke-core-e2e-security-reqs-03,, +23:u03:[CoAP-ECHO-REQ-TAG], +12:u04:Amsuess,, +16:u05:Request-Tag,, +40:u06:draft-ietf-core-echo-request-tag-04,, +18:u07:[Group-OSCORE], +10:u08:"Group, +37:u10:hartke-core-e2e-security-reqs-03,, +23:u11:[coap-echo-req-tag], +12:u12:amsuess,, +16:u13:request-tag,, +40:u14:draft-ietf-core-echo-request-tag-04,, +7:u22:Ams, +8:u23:Amsu, +9:uI0:[---], +15:uI1:,.,,.,.,":,, +9:uI2:-,",,, +37:u01:hartke-core-e2e-security-reqs-03,, +23:u02:[CoAP-ECHO-REQ-TAG], +12:u03:Amsuess,, +16:u04:Request-Tag,, +40:u05:draft-ietf-core-echo-request-tag-04,, +18:u06:[Group-OSCORE], +23:u10:[coap-echo-req-tag], +12:u11:amsuess,, +16:u12:request-tag,, +40:u13:draft-ietf-core-echo-request-tag-04,, +18:u14:[group-oscore], +15:uI0:,.,,.,.,":,, +9:uI1:-,",,, +12:uI2:------,., +37:u00:hartke-core-e2e-security-reqs-03,, +23:u01:[CoAP-ECHO-REQ-TAG], +12:u02:Amsuess,, +16:u03:Request-Tag,, +40:u04:draft-ietf-core-echo-request-tag-04,, +18:u05:[Group-OSCORE], +10:u07:"Group, +12:u10:amsuess,, +16:u11:request-tag,, +40:u12:draft-ietf-core-echo-request-tag-04,, +18:u13:[group-oscore], +9:uI0:-,",,, +12:uI1:------,., +23:u00:[CoAP-ECHO-REQ-TAG], +12:u01:Amsuess,, +16:u02:Request-Tag,, +40:u03:draft-ietf-core-echo-request-tag-04,, +18:u04:[Group-OSCORE], +10:u06:"Group, +12:u08:[IV-GEN], +16:u10:request-tag,, +40:u11:draft-ietf-core-echo-request-tag-04,, +18:u12:[group-oscore], +10:u14:"group, +6:u21:[G, +7:u22:[Gr, +8:u23:[Gro, +12:uI0:------,., +12:u00:Amsuess,, +16:u01:Request-Tag,, +40:u02:draft-ietf-core-echo-request-tag-04,, +18:u03:[Group-OSCORE], +10:u05:"Group, +11:u08:McGrew,, +40:u10:draft-ietf-core-echo-request-tag-04,, +18:u11:[group-oscore], +10:u13:"group, +16:u00:Request-Tag,, +40:u01:draft-ietf-core-echo-request-tag-04,, +18:u02:[Group-OSCORE], +10:u04:"Group, +12:u07:[IV-GEN], +11:u08:Vectors, +18:u10:[group-oscore], +10:u12:"group, +6:u21:"G, +7:u22:"Gr, +8:u23:"Gro, +40:u00:draft-ietf-core-echo-request-tag-04,, +18:u01:[Group-OSCORE], +10:u03:"Group, +12:u06:[IV-GEN], +11:u07:McGrew,, +14:u08:iv-gen-03,, +9:u08:(IVs), +10:u11:"group, +12:u14:[iv-gen], +18:u00:[Group-OSCORE], +10:u02:"Group, +12:u05:[IV-GEN], +11:u06:McGrew,, +11:u07:Vectors, +9:u07:(IVs), +10:u10:"group, +12:u13:[iv-gen], +11:u14:mcgrew,, +10:u01:"Group, +12:u04:[IV-GEN], +11:u05:McGrew,, +11:u06:Vectors, +14:u07:iv-gen-03,, +9:u06:(IVs), +12:u12:[iv-gen], +11:u13:mcgrew,, +11:u14:vectors, +10:u00:"Group, +12:u03:[IV-GEN], +11:u04:McGrew,, +11:u05:Vectors, +14:u06:iv-gen-03,, +9:u05:(IVs), +12:u11:[iv-gen], +11:u12:mcgrew,, +11:u13:vectors, +14:u14:iv-gen-03,, +6:u21:Mc, +7:u22:McG, +8:u23:McGr, +11:uI2:()",,--, +12:u02:[IV-GEN], +11:u03:McGrew,, +11:u04:Vectors, +14:u05:iv-gen-03,, +9:u04:(IVs), +12:u10:[iv-gen], +11:u11:mcgrew,, +11:u12:vectors, +14:u13:iv-gen-03,, +7:u22:Vec, +8:u23:Vect, +11:uI1:()",,--, +12:u01:[IV-GEN], +11:u02:McGrew,, +11:u03:Vectors, +14:u04:iv-gen-03,, +9:u03:(IVs), +11:u10:mcgrew,, +11:u11:vectors, +14:u12:iv-gen-03,, +6:u21:iv, +7:u22:iv-, +8:u23:iv-g, +11:uI0:()",,--, +12:u00:[IV-GEN], +11:u01:McGrew,, +11:u02:Vectors, +14:u03:iv-gen-03,, +9:u02:(IVs), +11:u10:vectors, +14:u11:iv-gen-03,, +11:u00:McGrew,, +11:u01:Vectors, +14:u02:iv-gen-03,, +10:u08:[MF00], +9:u01:(IVs), +14:u10:iv-gen-03,, +11:u00:Vectors, +14:u01:iv-gen-03,, +9:u00:(IVs), +14:u00:iv-gen-03,, +10:u07:[MF00], +10:u06:[MF00], +14:u08:Security",, +13:u08:Redundant, +10:u14:[mf00], +10:u05:[MF00], +12:u08:Selected, +13:u07:Redundant, +10:u13:[mf00], +10:u04:[MF00], +14:u07:Security",, +12:u08:Verlag.,, +13:u06:Redundant, +9:u08:Areas, +10:u12:[mf00], +7:u22:[MF, +8:u23:[MF0, +10:u03:[MF00], +14:u06:Security",, +12:u07:Selected, +20:u08:[OSCORE-PROFILE], +13:u05:Redundant, +9:u07:Areas, +7:u08:pp., +10:u11:[mf00], +14:u14:security",, +10:u02:[MF00], +14:u05:Security",, +12:u06:Selected, +12:u07:Verlag.,, +14:u08:Palombini,, +13:u04:Redundant, +9:u06:Areas, +7:u07:pp., +10:u10:[mf00], +14:u13:security",, +10:u01:[MF00], +14:u04:Security",, +12:u05:Selected, +12:u06:Verlag.,, +20:u07:[OSCORE-PROFILE], +13:u03:Redundant, +9:u05:Areas, +7:u06:pp., +7:u08:F.,, +14:u12:security",, +12:u14:verlag.,, +10:u00:[MF00], +14:u03:Security",, +12:u04:Selected, +12:u05:Verlag.,, +20:u06:[OSCORE-PROFILE], +14:u07:Palombini,, +13:u02:Redundant, +9:u04:Areas, +7:u05:pp., +7:u07:F.,, +14:u11:security",, +12:u13:verlag.,, +20:u14:[oscore-profile], +8:u23:Sele, +10:uI2:.,.-,., +14:u02:Security",, +12:u03:Selected, +12:u04:Verlag.,, +20:u05:[OSCORE-PROFILE], +14:u06:Palombini,, +13:u01:Redundant, +9:u03:Areas, +7:u04:pp., +7:u06:F.,, +14:u10:security",, +12:u12:verlag.,, +20:u13:[oscore-profile], +14:u14:palombini,, +8:u23:Verl, +10:uI1:.,.-,., +14:u01:Security",, +12:u02:Selected, +12:u03:Verlag.,, +20:u04:[OSCORE-PROFILE], +14:u05:Palombini,, +10:u08:[REST], +13:u00:Redundant, +9:u02:Areas, +7:u03:pp., +7:u05:F.,, +37:u08:draft-ietf-ace-oscore-profile-07,, +12:u11:verlag.,, +20:u12:[oscore-profile], +14:u13:palombini,, +10:uI0:.,.-,., +14:u00:Security",, +12:u01:Selected, +12:u02:Verlag.,, +20:u03:[OSCORE-PROFILE], +14:u04:Palombini,, +9:u01:Areas, +7:u02:pp., +7:u04:F.,, +37:u07:draft-ietf-ace-oscore-profile-07,, +12:u10:verlag.,, +20:u11:[oscore-profile], +14:u12:palombini,, +12:u00:Selected, +12:u01:Verlag.,, +20:u02:[OSCORE-PROFILE], +14:u03:Palombini,, +10:u07:[REST], +17:u08:Network-based, +9:u00:Areas, +7:u01:pp., +7:u03:F.,, +37:u06:draft-ietf-ace-oscore-profile-07,, +20:u10:[oscore-profile], +14:u11:palombini,, +12:u00:Verlag.,, +20:u01:[OSCORE-PROFILE], +14:u02:Palombini,, +10:u06:[REST], +17:u08:Dissertation,, +7:u00:pp., +7:u02:F.,, +37:u05:draft-ietf-ace-oscore-profile-07,, +14:u10:palombini,, +10:u14:[rest], +12:uI2:,-----,., +20:u00:[OSCORE-PROFILE], +14:u01:Palombini,, +10:u05:[REST], +17:u07:Network-based, +13:u08:[RFC3552], +7:u01:F.,, +37:u04:draft-ietf-ace-oscore-profile-07,, +10:u13:[rest], +13:u14:fielding,, +12:uI1:,-----,., +14:u00:Palombini,, +10:u04:[REST], +17:u06:Network-based, +17:u07:Dissertation,, +7:u00:F.,, +37:u03:draft-ietf-ace-oscore-profile-07,, +10:u12:[rest], +13:u13:fielding,, +17:u14:network-based, +7:u22:[RE, +8:u23:[RES, +12:uI0:,-----,., +10:u03:[REST], +17:u05:Network-based, +17:u06:Dissertation,, +13:u07:[RFC3552], +37:u02:draft-ietf-ace-oscore-profile-07,, +10:u11:[rest], +13:u12:fielding,, +17:u13:network-based, +17:u14:dissertation,, +9:uI2:-",.., +10:u02:[REST], +17:u04:Network-based, +17:u05:Dissertation,, +13:u06:[RFC3552], +37:u01:draft-ietf-ace-oscore-profile-07,, +10:u10:[rest], +13:u11:fielding,, +17:u12:network-based, +17:u13:dissertation,, +13:u14:[rfc3552], +9:uI1:-",.., +10:u01:[REST], +17:u03:Network-based, +17:u04:Dissertation,, +13:u05:[RFC3552], +13:u08:[RFC3986], +37:u00:draft-ietf-ace-oscore-profile-07,, +13:u10:fielding,, +17:u11:network-based, +17:u12:dissertation,, +13:u13:[rfc3552], +8:u23:Diss, +9:uI0:-",.., +10:u00:[REST], +17:u02:Network-based, +17:u03:Dissertation,, +13:u04:[RFC3552], +16:u08:Berners-Lee,, +17:u10:network-based, +17:u11:dissertation,, +13:u12:[rfc3552], +17:u01:Network-based, +17:u02:Dissertation,, +13:u03:[RFC3552], +13:u07:[RFC3986], +16:u07:Berners-Lee,, +17:u10:dissertation,, +13:u11:[rfc3552], +17:u00:Network-based, +17:u01:Dissertation,, +13:u02:[RFC3552], +13:u06:[RFC3986], +46:u08:<https://www.rfc-editor.org/info/rfc3986>., +16:u06:Berners-Lee,, +9:u08:3986,, +13:u10:[rfc3552], +13:u14:[rfc3986], +17:u00:Dissertation,, +13:u01:[RFC3552], +13:u05:[RFC3986], +13:u08:[RFC5116], +16:u05:Berners-Lee,, +9:u07:3986,, +13:u13:[rfc3986], +16:uI2:[]-,.,,.,.,", +13:u00:[RFC3552], +13:u04:[RFC3986], +46:u07:<https://www.rfc-editor.org/info/rfc3986>., +16:u08:Encryption",, +16:u04:Berners-Lee,, +9:u06:3986,, +13:u12:[rfc3986], +16:uI1:[]-,.,,.,.,", +13:u03:[RFC3986], +46:u06:<https://www.rfc-editor.org/info/rfc3986>., +13:u07:[RFC5116], +46:u08:<https://www.rfc-editor.org/info/rfc5116>., +16:u03:Berners-Lee,, +9:u05:3986,, +13:u11:[rfc3986], +46:u14:<https://www.rfc-editor.org/info/rfc3986>., +16:uI0:[]-,.,,.,.,", +13:u02:[RFC3986], +46:u05:<https://www.rfc-editor.org/info/rfc3986>., +13:u06:[RFC5116], +16:u07:Encryption",, +16:u02:Berners-Lee,, +9:u04:3986,, +13:u10:[rfc3986], +46:u13:<https://www.rfc-editor.org/info/rfc3986>., +13:u14:[rfc5116], +13:u01:[RFC3986], +46:u04:<https://www.rfc-editor.org/info/rfc3986>., +13:u05:[RFC5116], +16:u06:Encryption",, +46:u07:<https://www.rfc-editor.org/info/rfc5116>., +16:u01:Berners-Lee,, +9:u03:3986,, +46:u12:<https://www.rfc-editor.org/info/rfc3986>., +13:u13:[rfc5116], +16:u14:encryption",, +13:u00:[RFC3986], +46:u03:<https://www.rfc-editor.org/info/rfc3986>., +13:u04:[RFC5116], +16:u05:Encryption",, +46:u06:<https://www.rfc-editor.org/info/rfc5116>., +16:u00:Berners-Lee,, +9:u02:3986,, +46:u11:<https://www.rfc-editor.org/info/rfc3986>., +13:u12:[rfc5116], +16:u13:encryption",, +46:u14:<https://www.rfc-editor.org/info/rfc5116>., +46:u02:<https://www.rfc-editor.org/info/rfc3986>., +13:u03:[RFC5116], +16:u04:Encryption",, +46:u05:<https://www.rfc-editor.org/info/rfc5116>., +46:u08:<https://www.rfc-editor.org/info/rfc5869>., +9:u01:3986,, +21:u08:10.17487/RFC5869,, +46:u10:<https://www.rfc-editor.org/info/rfc3986>., +13:u11:[rfc5116], +16:u12:encryption",, +46:u13:<https://www.rfc-editor.org/info/rfc5116>., +8:u23:Encr, +46:u01:<https://www.rfc-editor.org/info/rfc3986>., +13:u02:[RFC5116], +16:u03:Encryption",, +46:u04:<https://www.rfc-editor.org/info/rfc5116>., +9:u00:3986,, +21:u07:10.17487/RFC5869,, +13:u10:[rfc5116], +16:u11:encryption",, +46:u12:<https://www.rfc-editor.org/info/rfc5116>., +14:uI2:[],..,"---, +46:u00:<https://www.rfc-editor.org/info/rfc3986>., +13:u01:[RFC5116], +16:u02:Encryption",, +46:u03:<https://www.rfc-editor.org/info/rfc5116>., +46:u07:<https://www.rfc-editor.org/info/rfc5869>., +12:u08:Format",, +21:u06:10.17487/RFC5869,, +16:u10:encryption",, +46:u11:<https://www.rfc-editor.org/info/rfc5116>., +14:uI1:[],..,"---, +13:u00:[RFC5116], +16:u01:Encryption",, +46:u02:<https://www.rfc-editor.org/info/rfc5116>., +46:u06:<https://www.rfc-editor.org/info/rfc5869>., +46:u08:<https://www.rfc-editor.org/info/rfc6690>., +21:u05:10.17487/RFC5869,, +46:u10:<https://www.rfc-editor.org/info/rfc5116>., +46:u14:<https://www.rfc-editor.org/info/rfc5869>., +14:uI0:[],..,"---, +16:u00:Encryption",, +46:u01:<https://www.rfc-editor.org/info/rfc5116>., +46:u05:<https://www.rfc-editor.org/info/rfc5869>., +12:u07:Format",, +21:u04:10.17487/RFC5869,, +46:u13:<https://www.rfc-editor.org/info/rfc5869>., +46:u00:<https://www.rfc-editor.org/info/rfc5116>., +46:u04:<https://www.rfc-editor.org/info/rfc5869>., +12:u06:Format",, +46:u07:<https://www.rfc-editor.org/info/rfc6690>., +21:u03:10.17487/RFC5869,, +46:u12:<https://www.rfc-editor.org/info/rfc5869>., +12:u14:format",, +46:u03:<https://www.rfc-editor.org/info/rfc5869>., +12:u05:Format",, +46:u06:<https://www.rfc-editor.org/info/rfc6690>., +21:u02:10.17487/RFC5869,, +46:u11:<https://www.rfc-editor.org/info/rfc5869>., +12:u13:format",, +46:u14:<https://www.rfc-editor.org/info/rfc6690>., +46:u02:<https://www.rfc-editor.org/info/rfc5869>., +12:u04:Format",, +46:u05:<https://www.rfc-editor.org/info/rfc6690>., +21:u01:10.17487/RFC5869,, +46:u10:<https://www.rfc-editor.org/info/rfc5869>., +12:u12:format",, +46:u13:<https://www.rfc-editor.org/info/rfc6690>., +8:u23:Form, +46:u01:<https://www.rfc-editor.org/info/rfc5869>., +12:u03:Format",, +46:u04:<https://www.rfc-editor.org/info/rfc6690>., +13:u08:[RFC7515], +21:u00:10.17487/RFC5869,, +12:u11:format",, +46:u12:<https://www.rfc-editor.org/info/rfc6690>., +46:u00:<https://www.rfc-editor.org/info/rfc5869>., +12:u02:Format",, +46:u03:<https://www.rfc-editor.org/info/rfc6690>., +10:u08:Jones,, +12:u10:format",, +46:u11:<https://www.rfc-editor.org/info/rfc6690>., +12:u01:Format",, +46:u02:<https://www.rfc-editor.org/info/rfc6690>., +13:u07:[RFC7515], +10:u07:Jones,, +11:u08:(JWS)",, +46:u10:<https://www.rfc-editor.org/info/rfc6690>., +12:u00:Format",, +46:u01:<https://www.rfc-editor.org/info/rfc6690>., +13:u06:[RFC7515], +10:u06:Jones,, +11:u07:(JWS)",, +46:u08:<https://www.rfc-editor.org/info/rfc7515>., +13:u14:[rfc7515], +46:u00:<https://www.rfc-editor.org/info/rfc6690>., +13:u05:[RFC7515], +10:u05:Jones,, +11:u06:(JWS)",, +46:u07:<https://www.rfc-editor.org/info/rfc7515>., +13:u13:[rfc7515], +13:u04:[RFC7515], +10:u04:Jones,, +11:u05:(JWS)",, +46:u06:<https://www.rfc-editor.org/info/rfc7515>., +13:u12:[rfc7515], +13:u03:[RFC7515], +10:u03:Jones,, +11:u04:(JWS)",, +46:u05:<https://www.rfc-editor.org/info/rfc7515>., +13:u11:[rfc7515], +13:u02:[RFC7515], +10:u02:Jones,, +11:u03:(JWS)",, +46:u04:<https://www.rfc-editor.org/info/rfc7515>., +13:u10:[rfc7515], +13:u01:[RFC7515], +10:u01:Jones,, +11:u02:(JWS)",, +46:u03:<https://www.rfc-editor.org/info/rfc7515>., +13:u00:[RFC7515], +10:u00:Jones,, +11:u01:(JWS)",, +46:u02:<https://www.rfc-editor.org/info/rfc7515>., +9:u08:Bose,, +11:u00:(JWS)",, +46:u01:<https://www.rfc-editor.org/info/rfc7515>., +18:u08:Bhattacharyya,, +46:u00:<https://www.rfc-editor.org/info/rfc7515>., +18:u07:Bhattacharyya,, +16:u08:"Constrained, +9:u07:Bose,, +18:u06:Bhattacharyya,, +16:u07:"Constrained, +13:u14:[rfc7967], +9:u06:Bose,, +18:u05:Bhattacharyya,, +16:u06:"Constrained, +13:u13:[rfc7967], +9:u14:bose,, +9:u05:Bose,, +18:u04:Bhattacharyya,, +16:u05:"Constrained, +13:u12:[rfc7967], +9:u13:bose,, +8:uI2:,"(), +9:u04:Bose,, +18:u03:Bhattacharyya,, +16:u04:"Constrained, +13:u11:[rfc7967], +9:u12:bose,, +8:u23:Bose, +8:uI1:,"(), +9:u03:Bose,, +18:u02:Bhattacharyya,, +16:u03:"Constrained, +13:u10:[rfc7967], +9:u11:bose,, +8:uI0:,"(), +9:u02:Bose,, +18:u01:Bhattacharyya,, +16:u02:"Constrained, +9:u10:bose,, +9:u01:Bose,, +18:u00:Bhattacharyya,, +16:u01:"Constrained, +9:u00:Bose,, +16:u00:"Constrained, +11:u08:2.2.1.1, +11:u07:2.2.1.1, +11:u06:2.2.1.1, +16:u08:(compressed), +11:u05:2.2.1.1, +13:uI2:...[--].,, +11:u04:2.2.1.1, +13:uI1:...[--].,, +16:u07:(compressed), +11:u03:2.2.1.1, +13:uI0:...[--].,, +16:u06:(compressed), +11:u02:2.2.1.1, +16:u14:(compressed), +16:u05:(compressed), +11:u01:2.2.1.1, +16:u13:(compressed), +16:u04:(compressed), +11:u00:2.2.1.1, +16:u12:(compressed), +7:u22:(co, +8:u23:(com, +16:u03:(compressed), +16:u11:(compressed), +16:u02:(compressed), +16:u10:(compressed), +16:u01:(compressed), +13:u08:+------>|, +16:u00:(compressed), +13:u07:+------>|, +13:u06:+------>|, +8:u08:0.02, +13:u14:+------>|, +13:u05:+------>|, +8:u07:0.02, +13:u13:+------>|, +13:u04:+------>|, +10:u08:Token:, +8:u06:0.02, +13:u12:+------>|, +13:u03:+------>|, +8:u05:0.02, +8:u08:0x8c, +13:u11:+------>|, +8:uI2::.(), +13:u02:+------>|, +10:u07:Token:, +8:u04:0.02, +8:u07:0x8c, +13:u10:+------>|, +8:uI1::.(), +13:u01:+------>|, +10:u06:Token:, +8:u03:0.02, +8:u06:0x8c, +10:u14:token:, +8:uI0::.(), +13:u00:+------>|, +10:u05:Token:, +8:u02:0.02, +8:u05:0x8c, +10:u13:token:, +10:u04:Token:, +8:u01:0.02, +8:u04:0x8c, +12:u08:[kid:5f,, +10:u12:token:, +10:u03:Token:, +8:u00:0.02, +8:u03:0x8c, +12:u07:[kid:5f,, +10:u11:token:, +10:u02:Token:, +8:u02:0x8c, +12:u06:[kid:5f,, +10:u10:token:, +10:u01:Token:, +8:u01:0x8c, +12:u05:[kid:5f,, +10:uI2::[:,:], +10:u00:Token:, +8:u00:0x8c, +12:u04:[kid:5f,, +15:u08:{Code:0.01,, +10:uI1::[:,:], +12:u03:[kid:5f,, +15:u07:{Code:0.01,, +10:uI0::[:,:], +12:u02:[kid:5f,, +15:u06:{Code:0.01,, +28:u08:Uri-Path:"alarm_status"}, +12:u01:[kid:5f,, +15:u05:{Code:0.01,, +8:uI2:::.,, +12:u00:[kid:5f,, +15:u04:{Code:0.01,, +8:uI1:::.,, +28:u07:Uri-Path:"alarm_status"}, +15:u03:{Code:0.01,, +8:uI0:::.,, +28:u06:Uri-Path:"alarm_status"}, +15:u02:{Code:0.01,, +28:u14:uri-path:"alarm_status"}, +28:u05:Uri-Path:"alarm_status"}, +15:u01:{Code:0.01,, +28:u13:uri-path:"alarm_status"}, +8:uI2:-:"", +28:u04:Uri-Path:"alarm_status"}, +15:u00:{Code:0.01,, +28:u12:uri-path:"alarm_status"}, +8:uI1:-:"", +28:u03:Uri-Path:"alarm_status"}, +28:u11:uri-path:"alarm_status"}, +8:uI0:-:"", +28:u02:Uri-Path:"alarm_status"}, +28:u10:uri-path:"alarm_status"}, +28:u01:Uri-Path:"alarm_status"}, +28:u00:Uri-Path:"alarm_status"}, +8:u08:0x7b, +8:u07:0x7b, +8:u06:0x7b, +8:u05:0x7b, +8:u04:0x7b, +8:u03:0x7b, +8:u02:0x7b, +8:u01:0x7b, +8:u00:0x7b, +13:u08:|<------+, +13:u07:|<------+, +13:u06:|<------+, +13:u14:|<------+, +13:u05:|<------+, +13:u13:|<------+, +13:u04:|<------+, +13:u12:|<------+, +13:u03:|<------+, +13:u11:|<------+, +13:u02:|<------+, +13:u10:|<------+, +13:u01:|<------+, +13:u00:|<------+, +15:u08:{Code:2.05,, +15:u07:{Code:2.05,, +15:u06:{Code:2.05,, +15:u05:{Code:2.05,, +10:uI2:::.,"", +15:u04:{Code:2.05,, +10:uI1:::.,"", +15:u03:{Code:2.05,, +10:uI0:::.,"", +15:u02:{Code:2.05,, +15:u01:{Code:2.05,, +15:u00:{Code:2.05,, +10:u08:Square, +9:u08:Curly, +12:u08:brackets, +10:u07:Square, +12:u07:brackets, +10:u06:Square, +9:u07:Curly, +12:u06:brackets, +10:u14:square, +10:u05:Square, +9:u06:Curly, +9:u08:dummy, +12:u05:brackets, +10:u13:square, +9:u14:curly, +10:uI2:[...]., +10:u04:Square, +9:u05:Curly, +12:u04:brackets, +9:u08:Codes, +10:u12:square, +9:u13:curly, +6:u21:Sq, +7:u22:Squ, +8:u23:Squa, +10:uI1:[...]., +10:u03:Square, +9:u04:Curly, +9:u07:dummy, +14:u08:encrypted., +12:u03:brackets, +9:u07:Codes, +10:u11:square, +9:u12:curly, +7:u22:Cur, +8:u23:Curl, +10:uI0:[...]., +10:u02:Square, +9:u03:Curly, +9:u06:dummy, +12:u02:brackets, +9:u06:Codes, +10:u10:square, +9:u11:curly, +9:u14:dummy, +10:u01:Square, +9:u02:Curly, +9:u05:dummy, +14:u07:encrypted., +12:u01:brackets, +9:u05:Codes, +9:u10:curly, +9:u13:dummy, +10:u00:Square, +9:u01:Curly, +9:u04:dummy, +14:u06:encrypted., +12:u00:brackets, +9:u04:Codes, +9:u12:dummy, +14:u14:encrypted., +7:u22:dum, +8:u23:dumm, +14:uI2:.-("")(""), +9:u00:Curly, +9:u03:dummy, +14:u05:encrypted., +9:u03:Codes, +9:u11:dummy, +14:u13:encrypted., +14:uI1:.-("")(""), +9:u02:dummy, +14:u04:encrypted., +9:u02:Codes, +9:u10:dummy, +14:u12:encrypted., +14:uI0:.-("")(""), +9:u01:dummy, +14:u03:encrypted., +9:u01:Codes, +14:u11:encrypted., +9:u00:dummy, +14:u02:encrypted., +9:u00:Codes, +14:u10:encrypted., +14:u01:encrypted., +14:u00:encrypted., +12:u08:verifies, +12:u07:verifies, +9:u08:sugar, +12:u06:verifies, +7:u08:220, +12:u05:verifies, +9:u07:sugar, +12:u04:verifies, +9:u08:mg/dl, +9:u06:sugar, +7:u07:220, +12:u03:verifies, +9:u07:mg/dl, +9:u14:sugar, +9:u05:sugar, +7:u06:220, +12:u02:verifies, +9:u06:mg/dl, +9:u13:sugar, +7:u14:220, +9:u04:sugar, +7:u05:220, +12:u01:verifies, +9:u05:mg/dl, +9:u12:sugar, +7:u13:220, +7:u22:sug, +8:u23:suga, +9:u03:sugar, +7:u04:220, +12:u00:verifies, +9:u04:mg/dl, +9:u11:sugar, +7:u12:220, +7:u22:220, +7:u23:220, +9:u02:sugar, +7:u03:220, +9:u03:mg/dl, +9:u10:sugar, +7:u11:220, +9:u01:sugar, +7:u02:220, +9:u02:mg/dl, +7:u10:220, +9:u00:sugar, +7:u01:220, +9:u01:mg/dl, +8:u08:0.05, +7:u00:220, +9:u00:mg/dl, +8:u07:0.05, +8:u06:0.05, +8:u05:0.05, +8:u08:0x83, +8:u04:0.05, +8:u07:0x83, +8:u03:0.05, +8:u06:0x83, +12:u08:Observe:, +8:u02:0.05, +8:u05:0x83, +8:u01:0.05, +8:u04:0x83, +12:u07:Observe:, +8:u00:0.05, +8:u03:0x83, +12:u06:Observe:, +8:u02:0x83, +12:u14:observe:, +12:u05:Observe:, +8:u01:0x83, +12:u13:observe:, +12:u04:Observe:, +8:u00:0x83, +12:u08:[kid:ca,, +12:u12:observe:, +12:u03:Observe:, +12:u07:[kid:ca,, +12:u11:observe:, +12:u02:Observe:, +12:u06:[kid:ca,, +12:u10:observe:, +12:u01:Observe:, +12:u05:[kid:ca,, +12:u00:Observe:, +12:u04:[kid:ca,, +12:u03:[kid:ca,, +12:u02:[kid:ca,, +14:u08:Observe:0,, +12:u01:[kid:ca,, +12:u00:[kid:ca,, +14:u07:Observe:0,, +14:u06:Observe:0,, +14:u14:observe:0,, +14:u05:Observe:0,, +23:u08:Uri-Path:"glucose"}, +14:u13:observe:0,, +14:u04:Observe:0,, +14:u12:observe:0,, +14:u03:Observe:0,, +23:u07:Uri-Path:"glucose"}, +14:u11:observe:0,, +14:u02:Observe:0,, +23:u06:Uri-Path:"glucose"}, +14:u10:observe:0,, +23:u14:uri-path:"glucose"}, +14:u01:Observe:0,, +23:u05:Uri-Path:"glucose"}, +23:u13:uri-path:"glucose"}, +14:u00:Observe:0,, +23:u04:Uri-Path:"glucose"}, +23:u12:uri-path:"glucose"}, +23:u03:Uri-Path:"glucose"}, +23:u11:uri-path:"glucose"}, +23:u02:Uri-Path:"glucose"}, +23:u10:uri-path:"glucose"}, +23:u01:Uri-Path:"glucose"}, +23:u00:Uri-Path:"glucose"}, +8:u08:0xbe, +8:u07:0xbe, +8:u06:0xbe, +8:u05:0xbe, +8:u04:0xbe, +8:u03:0xbe, +8:u02:0xbe, +8:u01:0xbe, +8:u00:0xbe, +14:u08:Observe:-,, +14:u07:Observe:-,, +14:u06:Observe:-,, +14:u14:observe:-,, +14:u05:Observe:-,, +21:u08:Content-Format:0,, +14:u13:observe:-,, +14:u04:Observe:-,, +10:u08:"220"}, +14:u12:observe:-,, +14:u03:Observe:-,, +21:u07:Content-Format:0,, +10:u07:"220"}, +14:u11:observe:-,, +14:u02:Observe:-,, +21:u06:Content-Format:0,, +10:u06:"220"}, +14:u10:observe:-,, +21:u14:content-format:0,, +14:u01:Observe:-,, +21:u05:Content-Format:0,, +10:u05:"220"}, +21:u13:content-format:0,, +9:uI2:-:,"", +14:u00:Observe:-,, +21:u04:Content-Format:0,, +10:u04:"220"}, +21:u12:content-format:0,, +9:uI1:-:,"", +21:u03:Content-Format:0,, +10:u03:"220"}, +21:u11:content-format:0,, +9:uI0:-:,"", +21:u02:Content-Format:0,, +10:u02:"220"}, +21:u10:content-format:0,, +21:u01:Content-Format:0,, +10:u01:"220"}, +21:u00:Content-Format:0,, +10:u00:"220"}, +12:u08:[Partial, +12:u07:[Partial, +12:u06:[Partial, +12:u05:[Partial, +8:uI2::[:], +12:u04:[Partial, +8:uI1::[:], +12:u03:[Partial, +8:uI0::[:], +12:u02:[Partial, +12:u01:[Partial, +12:u00:[Partial, +10:u08:"180"}, +10:u07:"180"}, +10:u06:"180"}, +10:u05:"180"}, +10:u04:"180"}, +10:u03:"180"}, +10:u02:"180"}, +10:u01:"180"}, +10:u00:"180"}, +11:u08:header., +11:u07:header., +11:u06:header., +11:u14:header., +9:uI2:[...], +11:u05:header., +10:u08:("220", +11:u13:header., +9:uI1:[...], +11:u04:header., +11:u12:header., +9:uI0:[...], +11:u03:header., +10:u07:("220", +11:u11:header., +11:u02:header., +10:u06:("220", +11:u10:header., +10:u14:("220", +11:u01:header., +10:u05:("220", +10:u13:("220", +11:u00:header., +10:u04:("220", +10:u12:("220", +7:u22:("2, +8:u23:("22, +10:u03:("220", +10:u11:("220", +10:u02:("220", +10:u10:("220", +10:u01:("220", +10:u00:("220", +10:u14:random, +10:u13:random, +10:u12:random, +10:u11:random, +10:u10:random, +9:u08:flash, +15:u08:nonvolatile, +9:u07:flash, +9:u06:flash, +15:u07:nonvolatile, +9:u05:flash, +15:u06:nonvolatile, +9:u04:flash, +15:u14:nonvolatile, +15:u05:nonvolatile, +9:u03:flash, +15:u13:nonvolatile, +15:u04:nonvolatile, +9:u02:flash, +15:u12:nonvolatile, +8:u23:nonv, +15:u03:nonvolatile, +9:u01:flash, +15:u11:nonvolatile, +15:u02:nonvolatile, +9:u00:flash, +15:u10:nonvolatile, +15:u01:nonvolatile, +15:u00:nonvolatile, +6:u08:K,, +10:u08:(SSN1), +6:u07:K,, +6:u06:K,, +10:u07:(SSN1), +6:u14:k,, +6:u05:K,, +10:u06:(SSN1), +6:u13:k,, +10:u14:(ssn1), +6:u04:K,, +10:u05:(SSN1), +5:u08:F, +6:u12:k,, +10:u13:(ssn1), +6:u21:K,, +6:u22:K,, +6:u23:K,, +6:u03:K,, +10:u04:(SSN1), +5:u07:F, +6:u11:k,, +10:u12:(ssn1), +7:u22:(SS, +8:u23:(SSN, +6:u02:K,, +10:u03:(SSN1), +5:u06:F, +6:u10:k,, +10:u11:(ssn1), +6:u01:K,, +10:u02:(SSN1), +5:u05:F, +10:u10:(ssn1), +6:u00:K,, +10:u01:(SSN1), +5:u04:F, +10:u00:(SSN1), +5:u03:F, +5:u02:F, +5:u01:F, +13:u08:efficient, +5:u00:F, +13:u08:trade-off, +13:u07:trade-off, +13:u07:efficient, +12:u08:failure;, +13:u06:trade-off, +13:u06:efficient, +13:u05:trade-off, +13:u14:efficient, +13:u05:efficient, +12:u07:failure;, +13:u04:trade-off, +13:u13:efficient, +13:u04:efficient, +12:u06:failure;, +13:u03:trade-off, +13:u12:efficient, +12:u14:failure;, +8:u23:effi, +13:u03:efficient, +12:u05:failure;, +13:u02:trade-off, +13:u11:efficient, +12:u13:failure;, +13:u02:efficient, +12:u04:failure;, +13:u01:trade-off, +13:u10:efficient, +12:u12:failure;, +13:u01:efficient, +12:u03:failure;, +13:u00:trade-off, +12:u11:failure;, +13:u00:efficient, +12:u02:failure;, +12:u10:failure;, +12:u01:failure;, +12:u00:failure;, +8:u08:Echo, +8:u07:Echo, +8:u06:Echo, +8:u05:Echo, +8:u04:Echo, +8:u03:Echo, +8:u02:Echo, +8:u01:Echo, +8:u00:Echo, +12:u08:booting:, +12:u07:booting:, +12:u06:booting:, +12:u08:Numbers., +12:u14:booting:, +12:u05:booting:, +12:u07:Numbers., +12:u13:booting:, +12:u04:booting:, +12:u06:Numbers., +12:u12:booting:, +12:u03:booting:, +12:u05:Numbers., +12:u11:booting:, +12:u02:booting:, +12:u04:Numbers., +12:u10:booting:, +12:u01:booting:, +12:u03:Numbers., +12:u00:booting:, +12:u02:Numbers., +12:u01:Numbers., +12:u00:Numbers., +19:u08:recommissioned,, +8:u08:3.3), +8:u07:3.3), +19:u07:recommissioned,, +8:u06:3.3), +19:u06:recommissioned,, +18:u08:preestablished, +8:u05:3.3), +19:u14:recommissioned,, +19:u05:recommissioned,, +8:u04:3.3), +19:u13:recommissioned,, +19:u04:recommissioned,, +18:u07:preestablished, +8:u03:3.3), +19:u12:recommissioned,, +19:u03:recommissioned,, +18:u06:preestablished, +8:u02:3.3), +19:u11:recommissioned,, +18:u14:preestablished, +19:u02:recommissioned,, +18:u05:preestablished, +8:u01:3.3), +19:u10:recommissioned,, +18:u13:preestablished, +19:u01:recommissioned,, +18:u04:preestablished, +8:u00:3.3), +18:u12:preestablished, +8:u23:pree, +11:uI2:,,/(.),, +19:u00:recommissioned,, +18:u03:preestablished, +18:u11:preestablished, +11:uI1:,,/(.),, +18:u02:preestablished, +18:u10:preestablished, +11:uI0:,,/(.),, +18:u01:preestablished, +15:u08:facilitates, +18:u00:preestablished, +15:u07:facilitates, +15:u06:facilitates, +15:u14:facilitates, +11:uI2:'',,'',, +15:u05:facilitates, +15:u13:facilitates, +11:uI1:'',,'',, +15:u04:facilitates, +15:u12:facilitates, +11:uI0:'',,'',, +15:u03:facilitates, +15:u11:facilitates, +15:u02:facilitates, +15:u10:facilitates, +15:u01:facilitates, +15:u00:facilitates, +17:u08:Identifiers),, +17:u07:Identifiers),, +17:u06:Identifiers),, +17:u14:identifiers),, +17:u05:Identifiers),, +12:u08:stopping, +17:u13:identifiers),, +17:u04:Identifiers),, +17:u12:identifiers),, +17:u03:Identifiers),, +12:u07:stopping, +17:u11:identifiers),, +17:u02:Identifiers),, +12:u06:stopping, +17:u10:identifiers),, +12:u14:stopping, +17:u01:Identifiers),, +12:u05:stopping, +12:u13:stopping, +17:u00:Identifiers),, +12:u04:stopping, +12:u12:stopping, +12:u03:stopping, +12:u11:stopping, +12:u02:stopping, +12:u10:stopping, +8:u14:step, +12:u01:stopping, +8:u13:step, +12:u00:stopping, +8:u12:step, +8:u11:step, +8:u10:step, +6:u08:#1, +6:u07:#1, +28:u08:|--------------------->|, +6:u06:#1, +6:u05:#1, +28:u07:|--------------------->|, +6:u04:#1, +15:u08:kid_context, +28:u06:|--------------------->|, +6:u03:#1, +15:u07:kid_context, +28:u14:|--------------------->|, +28:u05:|--------------------->|, +6:u02:#1, +15:u06:kid_context, +28:u13:|--------------------->|, +26:uI2:---------------------., +28:u04:|--------------------->|, +6:u01:#1, +15:u05:kid_context, +28:u12:|--------------------->|, +26:uI1:---------------------., +28:u03:|--------------------->|, +6:u00:#1, +15:u04:kid_context, +28:u11:|--------------------->|, +26:uI0:---------------------., +28:u02:|--------------------->|, +15:u03:kid_context, +28:u10:|--------------------->|, +28:u01:|--------------------->|, +15:u02:kid_context, +28:u00:|--------------------->|, +15:u01:kid_context, +15:u00:kid_context, +28:u08:|<---------------------|, +28:u07:|<---------------------|, +28:u06:|<---------------------|, +28:u14:|<---------------------|, +28:u05:|<---------------------|, +28:u13:|<---------------------|, +28:u04:|<---------------------|, +28:u12:|<---------------------|, +28:u03:|<---------------------|, +28:u11:|<---------------------|, +15:u14:kid_context, +28:u02:|<---------------------|, +28:u10:|<---------------------|, +15:u13:kid_context, +28:u01:|<---------------------|, +15:u12:kid_context, +8:u23:kid_, +28:u00:|<---------------------|, +15:u11:kid_context, +6:u08:#2, +15:u10:kid_context, +6:u07:#2, +6:u06:#2, +6:u05:#2, +6:u04:#2, +6:u03:#2, +6:u02:#2, +6:u01:#2, +6:u00:#2, +10:u08:'kid',, +10:u07:'kid',, +8:uI2:(''), +10:u06:'kid',, +10:u14:'kid',, +8:uI1:(''), +10:u05:'kid',, +10:u13:'kid',, +8:uI0:(''), +10:u04:'kid',, +10:u12:'kid',, +10:u03:'kid',, +10:u11:'kid',, +10:u02:'kid',, +10:u10:'kid',, +10:u01:'kid',, +10:u00:'kid',, +6:uI2:#., +8:u08:runs, +6:uI1:#., +8:u07:runs, +6:uI0:#., +8:u06:runs, +8:u05:runs, +8:u04:runs, +8:u03:runs, +8:u02:runs, +8:u08:CBOR, +8:u01:runs, +8:u00:runs, +8:u08:bstr, +8:u07:CBOR, +8:u07:bstr, +8:u06:CBOR, +8:u06:bstr, +8:u14:cbor, +8:u05:CBOR, +8:u05:bstr, +8:u13:cbor, +8:u04:CBOR, +8:u04:bstr, +8:u12:cbor, +7:u22:CBO, +8:u23:CBOR, +8:u03:CBOR, +8:u03:bstr, +8:u11:cbor, +8:u02:CBOR, +8:u02:bstr, +8:u10:cbor, +8:u01:CBOR, +8:u01:bstr, +6:u08:||, +8:u00:CBOR, +8:u00:bstr, +6:u07:||, +6:u06:||, +6:u05:||, +6:u04:||, +6:u03:||, +6:u02:||, +6:uI2:#,, +6:u01:||, +8:u08:8.2), +6:uI1:#,, +6:u00:||, +8:u07:8.2), +6:uI0:#,, +8:u06:8.2), +7:uI2:#.(, +8:u05:8.2), +9:u14:marks, +7:uI1:#.(, +8:u04:8.2), +9:u13:marks, +7:uI0:#.(, +8:u03:8.2), +9:u12:marks, +7:u22:mar, +8:u23:mark, +8:u02:8.2), +9:u11:marks, +8:u01:8.2), +9:u10:marks, +8:u00:8.2), +15:u08:probability, +15:u07:probability, +15:u06:probability, +15:u14:probability, +15:u05:probability, +15:u13:probability, +15:u04:probability, +15:u12:probability, +15:u03:probability, +15:u11:probability, +15:u02:probability, +15:u10:probability, +15:u01:probability, +15:u00:probability, +12:u08:(derived, +12:u07:(derived, +14:u08:(protected, +12:u06:(derived, +11:u08:Secret), +12:u14:(derived, +12:u05:(derived, +14:u07:(protected, +12:u13:(derived, +12:u04:(derived, +14:u06:(protected, +11:u07:Secret), +12:u12:(derived, +14:u14:(protected, +8:u23:(der, +12:u03:(derived, +14:u05:(protected, +11:u06:Secret), +12:u11:(derived, +14:u13:(protected, +11:u14:secret), +12:u02:(derived, +14:u04:(protected, +11:u05:Secret), +7:u08:#1., +12:u10:(derived, +14:u12:(protected, +11:u13:secret), +7:uI2:)#., +12:u01:(derived, +14:u03:(protected, +11:u04:Secret), +14:u11:(protected, +11:u12:secret), +7:uI1:)#., +7:uI2:,#,, +12:u00:(derived, +14:u02:(protected, +11:u03:Secret), +7:u07:#1., +14:u10:(protected, +11:u11:secret), +7:uI0:)#., +7:uI1:,#,, +14:u01:(protected, +11:u02:Secret), +7:u06:#1., +11:u10:secret), +7:u14:#1., +7:uI0:,#,, +14:u00:(protected, +11:u01:Secret), +7:u05:#1., +7:u13:#1., +8:uI2:#.#,, +11:u00:Secret), +7:u04:#1., +7:u12:#1., +5:u20:#, +6:u21:#1, +7:u22:#1., +7:u23:#1., +8:uI1:#.#,, +7:u03:#1., +7:u11:#1., +8:uI0:#.#,, +7:u02:#1., +7:u10:#1., +7:u01:#1., +7:u00:#1., +16:u08:legitimately, +16:u07:legitimately, +16:u06:legitimately, +16:u14:legitimately, +16:u05:legitimately, +16:u13:legitimately, +16:u04:legitimately, +16:u12:legitimately, +9:uI2:,..,., +16:u03:legitimately, +16:u11:legitimately, +9:uI1:,..,., +16:u02:legitimately, +16:u10:legitimately, +9:uI0:,..,., +16:u01:legitimately, +16:u00:legitimately, +8:uI2:(#)(, +8:uI1:(#)(, +7:uI2:#)., +8:uI0:(#)(, +7:uI1:#)., +7:uI0:#)., +16:u08:HMAC(K_HMAC,, +8:uI2:#..:, +7:u08:S2), +8:uI1:#..:, +16:u07:HMAC(K_HMAC,, +7:u07:S2), +8:uI0:#..:, +16:u06:HMAC(K_HMAC,, +7:u06:S2), +16:u14:hmac(k_hmac,, +16:u05:HMAC(K_HMAC,, +7:u05:S2), +16:u13:hmac(k_hmac,, +16:u04:HMAC(K_HMAC,, +7:u04:S2), +16:u12:hmac(k_hmac,, +6:u21:HM, +7:u22:HMA, +8:u23:HMAC, +16:u03:HMAC(K_HMAC,, +7:u03:S2), +16:u11:hmac(k_hmac,, +16:u02:HMAC(K_HMAC,, +7:u02:S2), +9:u08:HMAC,, +16:u10:hmac(k_hmac,, +16:u01:HMAC(K_HMAC,, +7:u01:S2), +9:u07:HMAC,, +16:u00:HMAC(K_HMAC,, +7:u00:S2), +9:u06:HMAC,, +11:u08:erased., +9:u05:HMAC,, +9:u04:HMAC,, +8:u08:(The, +11:u07:erased., +9:u03:HMAC,, +8:u07:(The, +8:uI2:(#),, +11:u06:erased., +9:u02:HMAC,, +8:u06:(The, +11:u14:erased., +8:uI1:(#),, +11:u05:erased., +13:u08:collision, +9:u01:HMAC,, +8:u05:(The, +11:u13:erased., +8:uI0:(#),, +11:u04:erased., +9:u00:HMAC,, +8:u04:(The, +11:u12:erased., +7:u22:era, +8:u23:eras, +11:u03:erased., +13:u07:collision, +8:u03:(The, +11:u11:erased., +7:uI2:#.), +11:u02:erased., +13:u06:collision, +8:u02:(The, +8:u08:2^32, +11:u10:erased., +13:u14:collision, +7:uI1:#.), +11:u01:erased., +13:u05:collision, +8:u01:(The, +8:u07:2^32, +13:u13:collision, +7:uI0:#.), +11:u00:erased., +13:u04:collision, +8:u00:(The, +8:u06:2^32, +13:u12:collision, +13:u03:collision, +8:u05:2^32, +13:u11:collision, +13:u02:collision, +8:u04:2^32, +13:u10:collision, +13:u01:collision, +8:u03:2^32, +13:u00:collision, +15:u08:converging., +8:u02:2^32, +8:u01:2^32, +15:u07:converging., +10:u08:spread, +8:u00:2^32, +15:u06:converging., +15:u14:converging., +15:u05:converging., +10:u07:spread, +15:u13:converging., +15:u04:converging., +10:u06:spread, +15:u12:converging., +10:u14:spread, +15:u03:converging., +10:u05:spread, +15:u11:converging., +10:u13:spread, +15:u02:converging., +10:u04:spread, +10:u08:Attack, +15:u10:converging., +10:u12:spread, +8:u23:spre, +15:u01:converging., +10:u03:spread, +10:u07:Attack, +11:u08:on-path, +10:u11:spread, +15:u00:converging., +10:u02:spread, +10:u06:Attack, +11:u07:on-path, +10:u10:spread, +10:u01:spread, +10:u05:Attack, +11:u06:on-path, +10:u00:spread, +10:u04:Attack, +11:u05:on-path, +10:u03:Attack, +11:u04:on-path, +10:u02:Attack, +11:u03:on-path, +10:u01:Attack, +11:u02:on-path, +10:u00:Attack, +11:u01:on-path, +13:u08:Replaying, +11:u00:on-path, +13:u07:Replaying, +13:u06:Replaying, +13:u05:Replaying, +13:u04:Replaying, +13:u03:Replaying, +13:u02:Replaying, +13:u01:Replaying, +13:u00:Replaying, +7:u08:#1,, +6:uI2:#;, +6:uI1:#;, +7:u07:#1,, +6:u14:#1, +6:uI0:#;, +7:u06:#1,, +6:u13:#1, +7:u14:#1,, +7:uI2:#,#, +7:u05:#1,, +6:u12:#1, +7:u13:#1,, +6:u22:#1, +6:u23:#1, +7:uI1:#,#, +7:u04:#1,, +6:u11:#1, +7:u12:#1,, +7:u22:#1,, +7:u23:#1,, +7:uI0:#,#, +7:uI2:##., +7:u03:#1,, +6:u10:#1, +7:u11:#1,, +7:uI1:##., +7:u02:#1,, +7:u10:#1,, +7:uI0:##., +6:uI2:,#, +7:u01:#1,, +6:uI1:,#, +7:uI2:.,#, +7:u00:#1,, +6:uI0:,#, +7:uI1:.,#, +12:u08:appendix, +7:uI0:.,#, +12:u07:appendix, +12:u06:appendix, +12:u05:appendix, +12:u04:appendix, +12:u03:appendix, +12:u02:appendix, +12:u01:appendix, +12:u00:appendix, +10:u08:C.1.1., +11:u08:Inputs:, +10:u07:C.1.1., +10:u06:C.1.1., +11:u07:Inputs:, +10:u14:c.1.1., +10:u05:C.1.1., +11:u06:Inputs:, +10:u13:c.1.1., +11:u14:inputs:, +10:u04:C.1.1., +11:u05:Inputs:, +10:u12:c.1.1., +11:u13:inputs:, +10:u03:C.1.1., +11:u04:Inputs:, +10:u11:c.1.1., +11:u12:inputs:, +7:u22:Inp, +8:u23:Inpu, +10:u02:C.1.1., +11:u03:Inputs:, +10:u10:c.1.1., +11:u11:inputs:, +10:u01:C.1.1., +11:u02:Inputs:, +11:u10:inputs:, +10:u00:C.1.1., +11:u01:Inputs:, +11:u00:Inputs:, +12:u08:Outputs:, +12:u07:Outputs:, +12:u06:Outputs:, +12:u14:outputs:, +12:u05:Outputs:, +12:u13:outputs:, +12:u04:Outputs:, +10:u08:sender, +12:u12:outputs:, +8:u23:Outp, +12:u03:Outputs:, +12:u11:outputs:, +12:u02:Outputs:, +10:u07:sender, +12:u10:outputs:, +12:u01:Outputs:, +10:u06:sender, +10:u08:C.1.2., +12:u00:Outputs:, +10:u05:sender, +10:u04:sender, +10:u07:C.1.2., +10:u03:sender, +10:u06:C.1.2., +10:u14:c.1.2., +10:u02:sender, +10:u05:C.1.2., +10:u13:c.1.2., +10:u01:sender, +10:u04:C.1.2., +10:u12:c.1.2., +10:u00:sender, +10:u03:C.1.2., +10:u11:c.1.2., +10:u02:C.1.2., +10:u10:c.1.2., +10:u01:C.1.2., +10:u00:C.1.2., +9:u08:HKDF,, +10:u08:C.2.1., +9:u07:HKDF,, +9:u06:HKDF,, +10:u07:C.2.1., +9:u14:hkdf,, +9:u05:HKDF,, +10:u06:C.2.1., +9:u13:hkdf,, +10:u14:c.2.1., +9:u04:HKDF,, +10:u05:C.2.1., +9:u12:hkdf,, +10:u13:c.2.1., +6:u21:HK, +7:u22:HKD, +8:u23:HKDF, +9:u03:HKDF,, +10:u04:C.2.1., +9:u11:hkdf,, +10:u12:c.2.1., +9:u02:HKDF,, +10:u03:C.2.1., +9:u10:hkdf,, +10:u11:c.2.1., +9:u01:HKDF,, +10:u02:C.2.1., +10:u10:c.2.1., +9:u00:HKDF,, +10:u01:C.2.1., +10:u00:C.2.1., +10:u08:C.2.2., +10:u07:C.2.2., +10:u06:C.2.2., +10:u14:c.2.2., +10:u05:C.2.2., +10:u13:c.2.2., +10:u04:C.2.2., +10:u12:c.2.2., +10:u03:C.2.2., +10:u11:c.2.2., +10:u02:C.2.2., +10:u10:c.2.2., +10:u01:C.2.2., +10:u00:C.2.2., +9:u08:HKDF., +10:u08:C.3.1., +9:u07:HKDF., +9:u06:HKDF., +10:u07:C.3.1., +9:u14:hkdf., +9:u05:HKDF., +10:u06:C.3.1., +9:u13:hkdf., +10:u14:c.3.1., +9:u04:HKDF., +10:u05:C.3.1., +9:u12:hkdf., +10:u13:c.3.1., +9:u03:HKDF., +10:u04:C.3.1., +9:u11:hkdf., +10:u12:c.3.1., +9:u02:HKDF., +10:u03:C.3.1., +9:u10:hkdf., +10:u11:c.3.1., +9:u01:HKDF., +10:u02:C.3.1., +10:u10:c.3.1., +9:u00:HKDF., +10:u01:C.3.1., +10:u00:C.3.1., +10:u08:bytes), +10:u07:bytes), +7:u08:(18, +10:u06:bytes), +10:u14:bytes), +8:uI2:():(, +10:u05:bytes), +7:u07:(18, +10:u13:bytes), +8:uI1:():(, +10:u04:bytes), +7:u06:(18, +10:u12:bytes), +7:u14:(18, +8:uI0:():(, +10:u03:bytes), +7:u05:(18, +10:u11:bytes), +7:u13:(18, +10:u02:bytes), +7:u04:(18, +10:u10:bytes), +7:u12:(18, +7:u22:(18, +7:u23:(18, +10:u01:bytes), +7:u03:(18, +7:u11:(18, +10:u00:bytes), +7:u02:(18, +7:u10:(18, +7:u01:(18, +7:u00:(18, +10:u08:C.3.2., +10:u07:C.3.2., +10:u06:C.3.2., +10:u14:c.3.2., +10:u05:C.3.2., +10:u13:c.3.2., +10:u04:C.3.2., +10:u12:c.3.2., +10:u03:C.3.2., +10:u11:c.3.2., +10:u02:C.3.2., +10:u10:c.3.2., +10:u01:C.3.2., +10:u00:C.3.2., +8:uI2:..:,, +50:u08:0x44015d1f00003974396c6f63616c686f737483747631, +8:uI1:..:,, +7:u08:(22, +8:uI0:..:,, +50:u07:0x44015d1f00003974396c6f63616c686f737483747631, +7:u07:(22, +12:u08:Context:, +50:u06:0x44015d1f00003974396c6f63616c686f737483747631, +7:u06:(22, +12:u07:Context:, +50:u14:0x44015d1f00003974396c6f63616c686f737483747631, +7:u22:unp, +8:u23:unpr, +50:u05:0x44015d1f00003974396c6f63616c686f737483747631, +7:u05:(22, +12:u06:Context:, +50:u13:0x44015d1f00003974396c6f63616c686f737483747631, +50:u04:0x44015d1f00003974396c6f63616c686f737483747631, +7:u04:(22, +12:u05:Context:, +50:u12:0x44015d1f00003974396c6f63616c686f737483747631, +7:u22:0x4, +8:u23:0x44, +50:u03:0x44015d1f00003974396c6f63616c686f737483747631, +7:u03:(22, +12:u04:Context:, +50:u11:0x44015d1f00003974396c6f63616c686f737483747631, +11:uI2::(----), +50:u02:0x44015d1f00003974396c6f63616c686f737483747631, +7:u02:(22, +12:u03:Context:, +50:u10:0x44015d1f00003974396c6f63616c686f737483747631, +11:uI1::(----), +50:u01:0x44015d1f00003974396c6f63616c686f737483747631, +7:u01:(22, +12:u02:Context:, +11:uI0::(----), +50:u00:0x44015d1f00003974396c6f63616c686f737483747631, +7:u00:(22, +12:u01:Context:, +12:u00:Context:, +8:u08:kid:, +8:u07:kid:, +8:u06:kid:, +8:u05:kid:, +14:u08:plaintext:, +8:u04:kid:, +14:u07:plaintext:, +8:u03:kid:, +14:u06:plaintext:, +10:u08:nonce:, +8:u02:kid:, +14:u05:plaintext:, +10:u07:nonce:, +8:u01:kid:, +14:u04:plaintext:, +10:u06:nonce:, +8:u00:kid:, +14:u03:plaintext:, +10:u05:nonce:, +15:u08:ciphertext:, +14:u02:plaintext:, +10:u04:nonce:, +15:u07:ciphertext:, +10:u08:there:, +51:u08:3616c686f7374620914ff612f1092f1776f1c1668b3825e, +14:u01:plaintext:, +10:u03:nonce:, +15:u06:ciphertext:, +10:u07:there:, +14:u00:plaintext:, +10:u02:nonce:, +15:u05:ciphertext:, +10:u06:there:, +7:u08:(35, +51:u07:3616c686f7374620914ff612f1092f1776f1c1668b3825e, +10:u01:nonce:, +15:u04:ciphertext:, +10:u05:there:, +7:u07:(35, +51:u06:3616c686f7374620914ff612f1092f1776f1c1668b3825e, +10:u00:nonce:, +15:u03:ciphertext:, +10:u04:there:, +7:u06:(35, +51:u14:3616c686f7374620914ff612f1092f1776f1c1668b3825e, +51:u05:3616c686f7374620914ff612f1092f1776f1c1668b3825e, +15:u02:ciphertext:, +10:u03:there:, +7:u05:(35, +51:u13:3616c686f7374620914ff612f1092f1776f1c1668b3825e, +51:u04:3616c686f7374620914ff612f1092f1776f1c1668b3825e, +15:u01:ciphertext:, +10:u02:there:, +7:u04:(35, +51:u12:3616c686f7374620914ff612f1092f1776f1c1668b3825e, +7:u22:361, +8:u23:3616, +51:u03:3616c686f7374620914ff612f1092f1776f1c1668b3825e, +50:u08:0x440171c30000b932396c6f63616c686f737483747631, +15:u00:ciphertext:, +10:u01:there:, +7:u03:(35, +51:u11:3616c686f7374620914ff612f1092f1776f1c1668b3825e, +51:u02:3616c686f7374620914ff612f1092f1776f1c1668b3825e, +10:u00:there:, +7:u02:(35, +51:u10:3616c686f7374620914ff612f1092f1776f1c1668b3825e, +51:u01:3616c686f7374620914ff612f1092f1776f1c1668b3825e, +50:u07:0x440171c30000b932396c6f63616c686f737483747631, +7:u01:(35, +51:u00:3616c686f7374620914ff612f1092f1776f1c1668b3825e, +50:u06:0x440171c30000b932396c6f63616c686f737483747631, +7:u00:(35, +50:u14:0x440171c30000b932396c6f63616c686f737483747631, +50:u05:0x440171c30000b932396c6f63616c686f737483747631, +50:u13:0x440171c30000b932396c6f63616c686f737483747631, +50:u04:0x440171c30000b932396c6f63616c686f737483747631, +50:u12:0x440171c30000b932396c6f63616c686f737483747631, +50:u03:0x440171c30000b932396c6f63616c686f737483747631, +50:u11:0x440171c30000b932396c6f63616c686f737483747631, +50:u02:0x440171c30000b932396c6f63616c686f737483747631, +50:u10:0x440171c30000b932396c6f63616c686f737483747631, +50:u01:0x440171c30000b932396c6f63616c686f737483747631, +50:u00:0x440171c30000b932396c6f63616c686f737483747631, +53:u08:3616c686f737463091400ff4ed339a5a379b0b8bc731fffb0, +7:u08:(36, +53:u07:3616c686f737463091400ff4ed339a5a379b0b8bc731fffb0, +7:u07:(36, +53:u06:3616c686f737463091400ff4ed339a5a379b0b8bc731fffb0, +7:u06:(36, +53:u14:3616c686f737463091400ff4ed339a5a379b0b8bc731fffb0, +53:u05:3616c686f737463091400ff4ed339a5a379b0b8bc731fffb0, +7:u05:(36, +53:u13:3616c686f737463091400ff4ed339a5a379b0b8bc731fffb0, +53:u04:3616c686f737463091400ff4ed339a5a379b0b8bc731fffb0, +7:u04:(36, +53:u12:3616c686f737463091400ff4ed339a5a379b0b8bc731fffb0, +53:u03:3616c686f737463091400ff4ed339a5a379b0b8bc731fffb0, +7:u03:(36, +53:u11:3616c686f737463091400ff4ed339a5a379b0b8bc731fffb0, +53:u02:3616c686f737463091400ff4ed339a5a379b0b8bc731fffb0, +7:u02:(36, +53:u10:3616c686f737463091400ff4ed339a5a379b0b8bc731fffb0, +53:u01:3616c686f737463091400ff4ed339a5a379b0b8bc731fffb0, +7:u01:(36, +53:u00:3616c686f737463091400ff4ed339a5a379b0b8bc731fffb0, +50:u08:0x44012f8eef9bbf7a396c6f63616c686f737483747631, +7:u00:(36, +50:u07:0x44012f8eef9bbf7a396c6f63616c686f737483747631, +50:u06:0x44012f8eef9bbf7a396c6f63616c686f737483747631, +50:u14:0x44012f8eef9bbf7a396c6f63616c686f737483747631, +50:u05:0x44012f8eef9bbf7a396c6f63616c686f737483747631, +50:u13:0x44012f8eef9bbf7a396c6f63616c686f737483747631, +50:u04:0x44012f8eef9bbf7a396c6f63616c686f737483747631, +50:u12:0x44012f8eef9bbf7a396c6f63616c686f737483747631, +50:u03:0x44012f8eef9bbf7a396c6f63616c686f737483747631, +50:u11:0x44012f8eef9bbf7a396c6f63616c686f737483747631, +50:u02:0x44012f8eef9bbf7a396c6f63616c686f737483747631, +50:u10:0x44012f8eef9bbf7a396c6f63616c686f737483747631, +50:u01:0x44012f8eef9bbf7a396c6f63616c686f737483747631, +50:u00:0x44012f8eef9bbf7a396c6f63616c686f737483747631, +68:u08:0x44022f8eef9bbf7a396c6f63616c686f73746b19140837cbf3210017a2d3ff, +30:u08:72cd7273fd331ac45cffbe55c3, +68:u07:0x44022f8eef9bbf7a396c6f63616c686f73746b19140837cbf3210017a2d3ff, +7:u08:(44, +68:u06:0x44022f8eef9bbf7a396c6f63616c686f73746b19140837cbf3210017a2d3ff, +30:u07:72cd7273fd331ac45cffbe55c3, +7:u07:(44, +68:u14:0x44022f8eef9bbf7a396c6f63616c686f73746b19140837cbf3210017a2d3ff, +68:u05:0x44022f8eef9bbf7a396c6f63616c686f73746b19140837cbf3210017a2d3ff, +30:u06:72cd7273fd331ac45cffbe55c3, +7:u06:(44, +68:u13:0x44022f8eef9bbf7a396c6f63616c686f73746b19140837cbf3210017a2d3ff, +30:u14:72cd7273fd331ac45cffbe55c3, +68:u04:0x44022f8eef9bbf7a396c6f63616c686f73746b19140837cbf3210017a2d3ff, +30:u05:72cd7273fd331ac45cffbe55c3, +7:u05:(44, +68:u12:0x44022f8eef9bbf7a396c6f63616c686f73746b19140837cbf3210017a2d3ff, +30:u13:72cd7273fd331ac45cffbe55c3, +68:u03:0x44022f8eef9bbf7a396c6f63616c686f73746b19140837cbf3210017a2d3ff, +30:u04:72cd7273fd331ac45cffbe55c3, +7:u04:(44, +68:u11:0x44022f8eef9bbf7a396c6f63616c686f73746b19140837cbf3210017a2d3ff, +30:u12:72cd7273fd331ac45cffbe55c3, +7:u22:72c, +8:u23:72cd, +68:u02:0x44022f8eef9bbf7a396c6f63616c686f73746b19140837cbf3210017a2d3ff, +30:u03:72cd7273fd331ac45cffbe55c3, +7:u03:(44, +68:u10:0x44022f8eef9bbf7a396c6f63616c686f73746b19140837cbf3210017a2d3ff, +30:u11:72cd7273fd331ac45cffbe55c3, +68:u01:0x44022f8eef9bbf7a396c6f63616c686f73746b19140837cbf3210017a2d3ff, +30:u02:72cd7273fd331ac45cffbe55c3, +7:u02:(44, +30:u10:72cd7273fd331ac45cffbe55c3, +68:u00:0x44022f8eef9bbf7a396c6f63616c686f73746b19140837cbf3210017a2d3ff, +30:u01:72cd7273fd331ac45cffbe55c3, +7:u01:(44, +30:u00:72cd7273fd331ac45cffbe55c3, +7:u00:(44, +48:u08:0x64455d1f00003974ff48656c6c6f20576f726c6421, +8:uI2:"!"., +7:u08:(21, +8:uI1:"!"., +48:u07:0x64455d1f00003974ff48656c6c6f20576f726c6421, +7:u07:(21, +8:uI0:"!"., +48:u06:0x64455d1f00003974ff48656c6c6f20576f726c6421, +7:u06:(21, +48:u14:0x64455d1f00003974ff48656c6c6f20576f726c6421, +48:u05:0x64455d1f00003974ff48656c6c6f20576f726c6421, +7:u05:(21, +48:u13:0x64455d1f00003974ff48656c6c6f20576f726c6421, +48:u04:0x64455d1f00003974ff48656c6c6f20576f726c6421, +7:u04:(21, +48:u12:0x64455d1f00003974ff48656c6c6f20576f726c6421, +7:u22:0x6, +8:u23:0x64, +48:u03:0x64455d1f00003974ff48656c6c6f20576f726c6421, +7:u03:(21, +48:u11:0x64455d1f00003974ff48656c6c6f20576f726c6421, +48:u02:0x64455d1f00003974ff48656c6c6f20576f726c6421, +7:u02:(21, +48:u10:0x64455d1f00003974ff48656c6c6f20576f726c6421, +48:u01:0x64455d1f00003974ff48656c6c6f20576f726c6421, +7:u01:(21, +48:u00:0x64455d1f00003974ff48656c6c6f20576f726c6421, +7:u00:(21, +70:u08:0x64445d1f0000397490ffdbaad1e9a7e7b2a813d3c31524378303cdafae119106, +7:u08:(32, +70:u07:0x64445d1f0000397490ffdbaad1e9a7e7b2a813d3c31524378303cdafae119106, +70:u06:0x64445d1f0000397490ffdbaad1e9a7e7b2a813d3c31524378303cdafae119106, +7:u07:(32, +70:u14:0x64445d1f0000397490ffdbaad1e9a7e7b2a813d3c31524378303cdafae119106, +70:u05:0x64445d1f0000397490ffdbaad1e9a7e7b2a813d3c31524378303cdafae119106, +7:u06:(32, +70:u13:0x64445d1f0000397490ffdbaad1e9a7e7b2a813d3c31524378303cdafae119106, +7:u14:(32, +70:u04:0x64445d1f0000397490ffdbaad1e9a7e7b2a813d3c31524378303cdafae119106, +7:u05:(32, +70:u12:0x64445d1f0000397490ffdbaad1e9a7e7b2a813d3c31524378303cdafae119106, +7:u13:(32, +70:u03:0x64445d1f0000397490ffdbaad1e9a7e7b2a813d3c31524378303cdafae119106, +7:u04:(32, +70:u11:0x64445d1f0000397490ffdbaad1e9a7e7b2a813d3c31524378303cdafae119106, +7:u12:(32, +7:u22:(32, +7:u23:(32, +70:u02:0x64445d1f0000397490ffdbaad1e9a7e7b2a813d3c31524378303cdafae119106, +7:u03:(32, +70:u10:0x64445d1f0000397490ffdbaad1e9a7e7b2a813d3c31524378303cdafae119106, +7:u11:(32, +70:u01:0x64445d1f0000397490ffdbaad1e9a7e7b2a813d3c31524378303cdafae119106, +7:u02:(32, +7:u10:(32, +70:u00:0x64445d1f0000397490ffdbaad1e9a7e7b2a813d3c31524378303cdafae119106, +7:u01:(32, +7:u00:(32, +50:u08:ff4d4c13669384b67354b2b6175ff4b8658c666a6cf88e, +7:u08:(34, +50:u07:ff4d4c13669384b67354b2b6175ff4b8658c666a6cf88e, +7:u07:(34, +50:u06:ff4d4c13669384b67354b2b6175ff4b8658c666a6cf88e, +7:u06:(34, +50:u14:ff4d4c13669384b67354b2b6175ff4b8658c666a6cf88e, +50:u05:ff4d4c13669384b67354b2b6175ff4b8658c666a6cf88e, +7:u05:(34, +50:u13:ff4d4c13669384b67354b2b6175ff4b8658c666a6cf88e, +50:u04:ff4d4c13669384b67354b2b6175ff4b8658c666a6cf88e, +7:u04:(34, +50:u12:ff4d4c13669384b67354b2b6175ff4b8658c666a6cf88e, +6:u21:ff, +7:u22:ff4, +8:u23:ff4d, +50:u03:ff4d4c13669384b67354b2b6175ff4b8658c666a6cf88e, +7:u03:(34, +16:u08:compromised., +50:u11:ff4d4c13669384b67354b2b6175ff4b8658c666a6cf88e, +50:u02:ff4d4c13669384b67354b2b6175ff4b8658c666a6cf88e, +7:u02:(34, +16:u07:compromised., +50:u10:ff4d4c13669384b67354b2b6175ff4b8658c666a6cf88e, +50:u01:ff4d4c13669384b67354b2b6175ff4b8658c666a6cf88e, +7:u01:(34, +16:u06:compromised., +50:u00:ff4d4c13669384b67354b2b6175ff4b8658c666a6cf88e, +7:u00:(34, +16:u05:compromised., +16:u04:compromised., +13:u08:analysis,, +16:u03:compromised., +13:u07:analysis,, +22:u08:man-in-the-middle,, +16:u08:undetectably, +16:u02:compromised., +13:u06:analysis,, +22:u07:man-in-the-middle,, +8:uI2:--;,, +16:u01:compromised., +13:u05:analysis,, +22:u06:man-in-the-middle,, +11:u08:remove,, +11:u14:replay,, +8:uI1:--;,, +16:u07:undetectably, +16:u00:compromised., +13:u04:analysis,, +22:u05:man-in-the-middle,, +11:u07:remove,, +11:u13:replay,, +8:uI0:--;,, +12:uI2:,---,--., +16:u06:undetectably, +12:u08:Payload,, +13:u03:analysis,, +22:u04:man-in-the-middle,, +11:u06:remove,, +11:u12:replay,, +16:u14:undetectably, +12:uI1:,---,--., +16:u05:undetectably, +13:u02:analysis,, +22:u03:man-in-the-middle,, +11:u05:remove,, +9:u08:Code,, +11:u11:replay,, +16:u13:undetectably, +12:uI0:,---,--., +16:u04:undetectably, +12:u07:Payload,, +13:u01:analysis,, +22:u02:man-in-the-middle,, +11:u04:remove,, +9:u07:Code,, +11:u10:replay,, +16:u12:undetectably, +16:u03:undetectably, +12:u06:Payload,, +14:u08:[RFC7252]), +13:u00:analysis,, +22:u01:man-in-the-middle,, +11:u03:remove,, +9:u06:Code,, +16:u11:undetectably, +12:u14:payload,, +16:u02:undetectably, +12:u05:Payload,, +22:u00:man-in-the-middle,, +11:u02:remove,, +9:u05:Code,, +16:u10:undetectably, +12:u13:payload,, +10:uI2:,,-/-,, +16:u01:undetectably, +12:u04:Payload,, +14:u07:[RFC7252]), +11:u01:remove,, +9:u04:Code,, +12:u12:payload,, +10:uI1:,,-/-,, +16:u00:undetectably, +12:u03:Payload,, +14:u06:[RFC7252]), +11:u00:remove,, +9:u03:Code,, +12:u11:payload,, +14:u14:[rfc7252]), +10:uI0:,,-/-,, +12:u02:Payload,, +14:u05:[RFC7252]), +9:u02:Code,, +9:u08:4.1),, +12:u10:payload,, +14:u13:[rfc7252]), +12:u01:Payload,, +14:u04:[RFC7252]), +16:u08:(forwarding,, +9:u01:Code,, +9:u07:4.1),, +14:u12:[rfc7252]), +12:u00:Payload,, +14:u03:[RFC7252]), +9:u00:Code,, +9:u06:4.1),, +19:u08:cross-protocol,, +14:u11:[rfc7252]), +14:u02:[RFC7252]), +16:u07:(forwarding,, +15:u08:instruction, +9:u05:4.1),, +19:u07:cross-protocol,, +14:u10:[rfc7252]), +14:u01:[RFC7252]), +16:u06:(forwarding,, +14:u08:redirected, +9:u04:4.1),, +19:u06:cross-protocol,, +16:u14:(forwarding,, +14:u00:[RFC7252]), +16:u05:(forwarding,, +15:u07:instruction, +9:u03:4.1),, +19:u05:cross-protocol,, +16:u13:(forwarding,, +12:uI2:(,-,..,-, +16:u04:(forwarding,, +15:u06:instruction, +14:u07:redirected, +9:u02:4.1),, +19:u04:cross-protocol,, +16:u12:(forwarding,, +15:u14:instruction, +7:u22:(fo, +8:u23:(for, +12:uI1:(,-,..,-, +16:u03:(forwarding,, +15:u05:instruction, +14:u06:redirected, +9:u01:4.1),, +19:u03:cross-protocol,, +16:u11:(forwarding,, +15:u13:instruction, +14:u14:redirected, +12:uI0:(,-,..,-, +16:u02:(forwarding,, +15:u04:instruction, +14:u05:redirected, +9:u00:4.1),, +19:u02:cross-protocol,, +16:u10:(forwarding,, +15:u12:instruction, +14:u13:redirected, +16:u01:(forwarding,, +15:u03:instruction, +14:u04:redirected, +19:u01:cross-protocol,, +15:u11:instruction, +14:u12:redirected, +16:u00:(forwarding,, +15:u02:instruction, +14:u03:redirected, +19:u00:cross-protocol,, +15:u10:instruction, +14:u11:redirected, +15:u01:instruction, +14:u02:redirected, +14:u10:redirected, +15:u00:instruction, +14:u01:redirected, +14:u00:redirected, +11:u08:Attacks, +11:u08:reaches, +11:u07:reaches, +11:u07:Attacks, +11:u06:reaches, +11:u06:Attacks, +11:u05:reaches, +11:u14:attacks, +11:u05:Attacks, +11:u04:reaches, +11:u13:attacks, +11:u04:Attacks, +17:u08:modification,, +11:u03:reaches, +11:u12:attacks, +11:u03:Attacks, +11:u02:reaches, +13:u08:deletion,, +11:u11:attacks, +11:u02:Attacks, +17:u07:modification,, +11:u01:reaches, +13:u07:deletion,, +11:u10:attacks, +11:u01:Attacks, +17:u06:modification,, +11:u00:reaches, +13:u06:deletion,, +17:u14:modification,, +11:u00:Attacks, +17:u05:modification,, +13:u05:deletion,, +17:u13:modification,, +10:uI2:,,,--., +17:u04:modification,, +13:u04:deletion,, +17:u12:modification,, +10:uI1:,,,--., +17:u03:modification,, +13:u03:deletion,, +17:u11:modification,, +10:uI0:,,,--., +17:u02:modification,, +12:u08:Securing, +13:u02:deletion,, +17:u10:modification,, +17:u01:modification,, +13:u01:deletion,, +17:u00:modification,, +12:u07:Securing, +13:u00:deletion,, +12:u06:Securing, +12:u14:securing, +10:uI2:,..,-., +12:u05:Securing, +12:u13:securing, +10:uI1:,..,-., +12:u04:Securing, +12:u12:securing, +10:uI0:,..,-., +12:u03:Securing, +19:u08:[CoAP-E2E-Sec],, +12:u11:securing, +12:u02:Securing, +12:u10:securing, +12:u01:Securing, +19:u07:[CoAP-E2E-Sec],, +12:u00:Securing, +19:u06:[CoAP-E2E-Sec],, +19:u14:[coap-e2e-sec],, +19:u05:[CoAP-E2E-Sec],, +19:u13:[coap-e2e-sec],, +10:uI2:[--],,, +19:u04:[CoAP-E2E-Sec],, +19:u12:[coap-e2e-sec],, +10:uI1:[--],,, +19:u03:[CoAP-E2E-Sec],, +19:u11:[coap-e2e-sec],, +10:uI0:[--],,, +19:u02:[CoAP-E2E-Sec],, +19:u10:[coap-e2e-sec],, +19:u01:[CoAP-E2E-Sec],, +19:u00:[CoAP-E2E-Sec],, +9:u08:(key,, +9:u07:(key,, +9:u06:(key,, +10:u08:7.2.1,, +9:u05:(key,, +10:u07:7.2.1,, +20:u08:Confidentiality:, +11:uI2:(,)(.)., +9:u04:(key,, +10:u06:7.2.1,, +20:u07:Confidentiality:, +11:uI1:(,)(.)., +9:u03:(key,, +10:u05:7.2.1,, +20:u06:Confidentiality:, +14:u08:plaintexts, +11:uI0:(,)(.)., +8:uI2:..,:, +9:u02:(key,, +10:u04:7.2.1,, +20:u05:Confidentiality:, +14:u07:plaintexts, +14:u08:Integrity:, +13:u14:plaintext, +8:uI1:..,:, +9:u01:(key,, +10:u03:7.2.1,, +20:u04:Confidentiality:, +14:u06:plaintexts, +14:u07:Integrity:, +13:u13:plaintext, +8:uI0:..,:, +9:u00:(key,, +10:u02:7.2.1,, +20:u03:Confidentiality:, +14:u05:plaintexts, +14:u06:Integrity:, +13:u12:plaintext, +8:u23:plai, +10:u01:7.2.1,, +20:u02:Confidentiality:, +14:u04:plaintexts, +14:u05:Integrity:, +20:u08:Request-response, +13:u11:plaintext, +10:u00:7.2.1,, +20:u01:Confidentiality:, +14:u03:plaintexts, +14:u04:Integrity:, +20:u07:Request-response, +13:u10:plaintext, +12:u08:receiver, +20:u00:Confidentiality:, +14:u02:plaintexts, +14:u03:Integrity:, +20:u06:Request-response, +22:u08:Non-replayability:, +13:u08:accepted., +14:u01:plaintexts, +14:u02:Integrity:, +20:u05:Request-response, +22:u07:Non-replayability:, +12:u07:receiver, +14:u00:plaintexts, +14:u01:Integrity:, +20:u04:Request-response, +22:u06:Non-replayability:, +12:u06:receiver, +13:u07:accepted., +15:u08:compromised, +14:u00:Integrity:, +20:u03:Request-response, +22:u05:Non-replayability:, +12:u05:receiver, +13:u06:accepted., +20:u02:Request-response, +22:u04:Non-replayability:, +17:u08:intermediary., +13:u14:accepted., +12:u04:receiver, +13:u05:accepted., +15:u07:compromised, +20:u01:Request-response, +22:u03:Non-replayability:, +17:u07:intermediary., +13:u13:accepted., +12:u03:receiver, +13:u04:accepted., +15:u06:compromised, +20:u00:Request-response, +22:u02:Non-replayability:, +17:u06:intermediary., +13:u12:accepted., +15:u14:compromised, +12:u02:receiver, +13:u03:accepted., +15:u05:compromised, +22:u01:Non-replayability:, +17:u05:intermediary., +13:u11:accepted., +15:u13:compromised, +12:u01:receiver, +13:u02:accepted., +15:u04:compromised, +22:u00:Non-replayability:, +17:u04:intermediary., +13:u10:accepted., +15:u12:compromised, +12:u00:receiver, +13:u01:accepted., +15:u03:compromised, +17:u03:intermediary., +15:u11:compromised, +10:uI2:(,).[], +13:u00:accepted., +15:u02:compromised, +17:u02:intermediary., +15:u10:compromised, +10:uI1:(,).[], +15:u01:compromised, +17:u01:intermediary., +10:uI0:(,).[], +15:u00:compromised, +17:u00:intermediary., +13:u08:observing, +13:u07:observing, +13:u06:observing, +13:u05:observing, +13:u04:observing, +13:u03:observing, +13:u02:observing, +13:u01:observing, +13:u00:observing, +14:u08:encrypting, +9:uI2:..(,), +9:uI1:..(,), +8:uI2:,(,), +14:u07:encrypting, +10:u08:roles,, +7:u14:fix, +9:uI0:..(,), +8:uI1:,(,), +14:u06:encrypting, +10:u07:roles,, +7:u13:fix, +14:u14:encrypting, +8:uI0:,(,), +14:u05:encrypting, +10:u06:roles,, +7:u12:fix, +14:u13:encrypting, +7:u22:Fix, +7:u23:Fix, +14:u04:encrypting, +10:u05:roles,, +7:u11:fix, +14:u12:encrypting, +14:u03:encrypting, +10:u04:roles,, +7:u10:fix, +14:u11:encrypting, +14:u02:encrypting, +10:u03:roles,, +14:u10:encrypting, +14:u01:encrypting, +10:u02:roles,, +14:u00:encrypting, +10:u01:roles,, +10:u00:roles,, +7:u08:PIV, +7:u07:PIV, +7:u06:PIV, +7:u14:piv, +7:u05:PIV, +8:u08:PIV), +7:u13:piv, +7:u04:PIV, +10:u08:pairs., +7:u12:piv, +6:u21:PI, +7:u22:PIV, +7:u23:PIV, +7:u03:PIV, +8:u07:PIV), +19:u08:notifications):, +10:u07:pairs., +7:u11:piv, +10:uI2:().(.), +7:u02:PIV, +8:u06:PIV), +10:u06:pairs., +7:u10:piv, +8:u14:piv), +10:uI1:().(.), +8:uI2:()(,, +7:u01:PIV, +8:u05:PIV), +19:u07:notifications):, +10:u05:pairs., +8:u13:piv), +10:uI0:().(.), +8:uI1:()(,, +7:uI2:).:, +7:u00:PIV, +8:u04:PIV), +19:u06:notifications):, +10:u04:pairs., +8:u12:piv), +19:u14:notifications):, +8:u23:PIV), +8:uI0:()(,, +7:uI1:).:, +10:uI2:.,(..,, +8:u03:PIV), +19:u05:notifications):, +10:u08:nonces, +10:u03:pairs., +8:u11:piv), +19:u13:notifications):, +7:uI0:).:, +10:uI1:.,(..,, +8:u02:PIV), +19:u04:notifications):, +10:u02:pairs., +8:u10:piv), +19:u12:notifications):, +10:uI0:.,(..,, +8:u01:PIV), +19:u03:notifications):, +10:u07:nonces, +10:u01:pairs., +19:u11:notifications):, +8:u00:PIV), +19:u02:notifications):, +10:u06:nonces, +10:u00:pairs., +19:u10:notifications):, +10:u14:nonces, +19:u01:notifications):, +10:u05:nonces, +10:u13:nonces, +19:u00:notifications):, +10:u04:nonces, +10:u12:nonces, +10:u03:nonces, +10:u11:nonces, +10:u02:nonces, +10:u10:nonces, +10:u01:nonces, +10:u00:nonces, +10:u08:D.5.1., +10:u07:D.5.1., +13:u08:sensitive, +12:u08:Version., +10:u06:D.5.1., +12:u07:Version., +10:u14:d.5.1., +10:u05:D.5.1., +13:u07:sensitive, +12:u06:Version., +10:u13:d.5.1., +10:u04:D.5.1., +13:u06:sensitive, +12:u05:Version., +10:u12:d.5.1., +10:u03:D.5.1., +13:u05:sensitive, +12:u04:Version., +10:u11:d.5.1., +10:u02:D.5.1., +13:u04:sensitive, +12:u03:Version., +10:u10:d.5.1., +10:u01:D.5.1., +13:u03:sensitive, +12:u02:Version., +10:u00:D.5.1., +13:u02:sensitive, +12:u01:Version., +13:u01:sensitive, +21:u08:denial-of-service, +12:u00:Version., +13:u00:sensitive, +21:u07:denial-of-service, +21:u06:denial-of-service, +21:u14:denial-of-service, +21:u05:denial-of-service, +15:u08:Token/Token, +21:u13:denial-of-service, +21:u04:denial-of-service, +15:u07:Token/Token, +19:u08:differentiating, +21:u12:denial-of-service, +21:u03:denial-of-service, +15:u06:Token/Token, +19:u07:differentiating, +21:u11:denial-of-service, +21:u02:denial-of-service, +15:u05:Token/Token, +19:u06:differentiating, +9:u08:hops., +21:u10:denial-of-service, +7:uI2:/.-, +21:u01:denial-of-service, +15:u04:Token/Token, +19:u05:differentiating, +9:u07:hops., +7:uI1:/.-, +21:u00:denial-of-service, +15:u03:Token/Token, +19:u04:differentiating, +9:u06:hops., +7:uI0:/.-, +15:u02:Token/Token, +19:u03:differentiating, +9:u05:hops., +11:u08:attack,, +15:u01:Token/Token, +19:u02:differentiating, +9:u04:hops., +15:u00:Token/Token, +19:u01:differentiating, +9:u03:hops., +11:u07:attack,, +19:u00:differentiating, +9:u02:hops., +11:u06:attack,, +9:u01:hops., +11:u14:attack,, +11:u05:attack,, +9:u00:hops., +9:u08:Code., +11:u13:attack,, +11:u04:attack,, +9:u07:Code., +11:u12:attack,, +11:u03:attack,, +9:u06:Code., +11:u11:attack,, +11:u02:attack,, +9:u05:Code., +11:u10:attack,, +11:u01:attack,, +9:u04:Code., +13:u08:attackers, +11:u00:attack,, +9:u03:Code., +13:u07:attackers, +9:u02:Code., +13:u06:attackers, +9:u01:Code., +13:u05:attackers, +9:u00:Code., +13:u04:attackers, +13:u03:attackers, +8:u14:may,, +13:u02:attackers, +11:u08:reveals, +8:u13:may,, +13:u01:attackers, +11:u07:reveals, +8:u12:may,, +8:u23:may,, +13:u00:attackers, +11:u06:reveals, +16:u08:Type/Message, +8:u11:may,, +11:u05:reveals, +16:u07:Type/Message, +8:u10:may,, +11:u04:reveals, +16:u06:Type/Message, +11:u03:reveals, +16:u05:Type/Message, +9:uI2:/./[], +11:u02:reveals, +16:u04:Type/Message, +9:uI1:/./[], +11:u01:reveals, +16:u03:Type/Message, +9:uI0:/./[], +11:u00:reveals, +16:u02:Type/Message, +16:u01:Type/Message, +16:u00:Type/Message, +11:u08:believe, +16:u08:observation., +11:u07:believe, +11:u06:believe, +16:u07:observation., +11:u05:believe, +16:u06:observation., +11:u04:believe, +16:u14:observation., +16:u05:observation., +11:u03:believe, +16:u13:observation., +16:u04:observation., +11:u02:believe, +16:u12:observation., +8:u23:obse, +16:u03:observation., +11:u01:believe, +16:u11:observation., +16:u02:observation., +11:u00:believe, +16:u10:observation., +16:u01:observation., +16:u00:observation., +10:u08:D.5.2., +10:u07:D.5.2., +12:u08:Max-Age., +10:u06:D.5.2., +12:u07:Max-Age., +10:u14:d.5.2., +10:u05:D.5.2., +12:u06:Max-Age., +10:u13:d.5.2., +10:u04:D.5.2., +12:u05:Max-Age., +10:u12:d.5.2., +10:u03:D.5.2., +12:u04:Max-Age., +27:u08:Proxy-Uri/Proxy-Scheme., +10:u11:d.5.2., +10:u02:D.5.2., +12:u03:Max-Age., +27:u07:Proxy-Uri/Proxy-Scheme., +16:u08:deployments., +10:u10:d.5.2., +10:u01:D.5.2., +12:u02:Max-Age., +27:u06:Proxy-Uri/Proxy-Scheme., +16:u07:deployments., +10:u00:D.5.2., +12:u01:Max-Age., +27:u05:Proxy-Uri/Proxy-Scheme., +16:u06:deployments., +12:u00:Max-Age., +27:u04:Proxy-Uri/Proxy-Scheme., +16:u05:deployments., +27:u03:Proxy-Uri/Proxy-Scheme., +16:u04:deployments., +27:u02:Proxy-Uri/Proxy-Scheme., +16:u03:deployments., +27:u01:Proxy-Uri/Proxy-Scheme., +16:u02:deployments., +22:u08:Uri-Host/Uri-Port., +27:u00:Proxy-Uri/Proxy-Scheme., +16:u01:deployments., +22:u07:Uri-Host/Uri-Port., +16:u00:deployments., +22:u06:Uri-Host/Uri-Port., +22:u05:Uri-Host/Uri-Port., +12:u14:uri-port, +11:uI2:-/-.,-/, +22:u04:Uri-Host/Uri-Port., +12:u13:uri-port, +11:uI1:-/-.,-/, +22:u03:Uri-Host/Uri-Port., +12:u12:uri-port, +12:u14:uri-host, +11:uI0:-/-.,-/, +22:u02:Uri-Host/Uri-Port., +12:u08:Observe., +12:u11:uri-port, +12:u13:uri-host, +22:u01:Uri-Host/Uri-Port., +12:u07:Observe., +12:u10:uri-port, +12:u12:uri-host, +22:u00:Uri-Host/Uri-Port., +12:u06:Observe., +12:u11:uri-host, +12:u05:Observe., +12:u10:uri-host, +14:u08:reordering, +12:u04:Observe., +12:u03:Observe., +14:u07:reordering, +12:u02:Observe., +14:u06:reordering, +12:u01:Observe., +14:u14:reordering, +14:u05:reordering, +12:u00:Observe., +14:u13:reordering, +14:u04:reordering, +14:u12:reordering, +7:u22:reo, +8:u23:reor, +14:u03:reordering, +14:u11:reordering, +14:u02:reordering, +14:u10:reordering, +14:u01:reordering, +17:u08:cancellations, +11:uI2:.(....), +14:u00:reordering, +11:uI1:.(....), +17:u07:cancellations, +11:uI0:.(....), +17:u06:cancellations, +17:u14:cancellations, +17:u05:cancellations, +30:u08:Block1/Block2/Size1/Size2., +17:u13:cancellations, +17:u04:cancellations, +30:u07:Block1/Block2/Size1/Size2., +17:u12:cancellations, +17:u03:cancellations, +30:u06:Block1/Block2/Size1/Size2., +17:u11:cancellations, +17:u02:cancellations, +30:u05:Block1/Block2/Size1/Size2., +17:u10:cancellations, +17:u01:cancellations, +30:u04:Block1/Block2/Size1/Size2., +17:u00:cancellations, +30:u03:Block1/Block2/Size1/Size2., +30:u02:Block1/Block2/Size1/Size2., +30:u01:Block1/Block2/Size1/Size2., +30:u00:Block1/Block2/Size1/Size2., +15:u08:4.1.3.4.2),, +15:u07:4.1.3.4.2),, +15:u06:4.1.3.4.2),, +16:u08:No-Response., +15:u05:4.1.3.4.2),, +16:u07:No-Response., +18:u08:functionality,, +12:uI2:(....),,, +15:u04:4.1.3.4.2),, +16:u06:No-Response., +18:u07:functionality,, +12:uI1:(....),,, +15:u03:4.1.3.4.2),, +16:u05:No-Response., +18:u06:functionality,, +12:uI0:(....),,, +15:u02:4.1.3.4.2),, +16:u04:No-Response., +18:u05:functionality,, +15:u01:4.1.3.4.2),, +16:u03:No-Response., +18:u04:functionality,, +15:u00:4.1.3.4.2),, +16:u02:No-Response., +18:u03:functionality,, +16:u01:No-Response., +18:u02:functionality,, +13:u08:exchange., +16:u00:No-Response., +18:u01:functionality,, +18:u00:functionality,, +13:u07:exchange., +13:u06:exchange., +13:u14:exchange., +13:u05:exchange., +10:u08:D.5.3., +13:u13:exchange., +13:u04:exchange., +13:u12:exchange., +13:u03:exchange., +10:u07:D.5.3., +8:u08:end., +13:u11:exchange., +13:u02:exchange., +10:u06:D.5.3., +13:u10:exchange., +10:u14:d.5.3., +13:u01:exchange., +10:u05:D.5.3., +8:u07:end., +10:u08:locate, +10:u13:d.5.3., +13:u00:exchange., +10:u04:D.5.3., +8:u06:end., +10:u12:d.5.3., +8:u14:end., +10:u03:D.5.3., +8:u05:end., +10:u07:locate, +20:u08:retransmissions., +10:u11:d.5.3., +8:u13:end., +10:u02:D.5.3., +8:u04:end., +10:u06:locate, +10:u10:d.5.3., +8:u12:end., +10:u14:locate, +8:u23:end., +10:u01:D.5.3., +8:u03:end., +10:u05:locate, +20:u07:retransmissions., +8:u11:end., +10:u13:locate, +10:u00:D.5.3., +8:u02:end., +10:u04:locate, +20:u06:retransmissions., +8:u10:end., +10:u12:locate, +20:u14:retransmissions., +8:u01:end., +10:u03:locate, +20:u05:retransmissions., +10:u08:reveal, +10:u11:locate, +20:u13:retransmissions., +8:u00:end., +10:u02:locate, +20:u04:retransmissions., +10:u10:locate, +20:u12:retransmissions., +10:u01:locate, +20:u03:retransmissions., +10:u07:reveal, +20:u11:retransmissions., +12:u14:payloads, +10:u00:locate, +20:u02:retransmissions., +10:u06:reveal, +20:u10:retransmissions., +12:u13:payloads, +10:u14:reveal, +20:u01:retransmissions., +10:u05:reveal, +14:u08:altogether, +12:u12:payloads, +10:u13:reveal, +20:u00:retransmissions., +10:u04:reveal, +14:u07:altogether, +12:u11:payloads, +10:u12:reveal, +8:u23:reve, +10:u03:reveal, +14:u06:altogether, +12:u10:payloads, +10:u11:reveal, +10:u02:reveal, +14:u05:altogether, +10:u10:reveal, +10:u01:reveal, +14:u04:altogether, +10:u00:reveal, +15:u08:hop-by-hop;, +14:u03:altogether, +12:u14:actions,, +14:u02:altogether, +12:u08:spoofing, +12:u13:actions,, +15:u07:hop-by-hop;, +14:u01:altogether, +12:u07:spoofing, +12:u12:actions,, +15:u06:hop-by-hop;, +14:u00:altogether, +12:u06:spoofing, +12:u11:actions,, +15:u14:hop-by-hop;, +15:u05:hop-by-hop;, +12:u05:spoofing, +12:u10:actions,, +15:u13:hop-by-hop;, +9:uI2:--;--, +15:u04:hop-by-hop;, +12:u04:spoofing, +15:u12:hop-by-hop;, +8:u23:hop-, +9:uI1:--;--, +15:u03:hop-by-hop;, +12:u03:spoofing, +15:u11:hop-by-hop;, +9:uI0:--;--, +15:u02:hop-by-hop;, +12:u02:spoofing, +15:u10:hop-by-hop;, +15:u01:hop-by-hop;, +10:u08:D.5.4., +12:u01:spoofing, +15:u00:hop-by-hop;, +12:u00:spoofing, +10:u07:D.5.4., +10:u06:D.5.4., +13:u08:CoAP-CoAP, +10:u14:d.5.4., +10:u05:D.5.4., +13:u07:CoAP-CoAP, +10:u13:d.5.4., +10:u04:D.5.4., +13:u06:CoAP-CoAP, +10:u12:d.5.4., +10:u03:D.5.4., +13:u05:CoAP-CoAP, +10:u11:d.5.4., +10:u02:D.5.4., +13:u04:CoAP-CoAP, +10:u10:d.5.4., +10:u01:D.5.4., +13:u03:CoAP-CoAP, +9:u08:hops,, +10:u00:D.5.4., +13:u02:CoAP-CoAP, +9:u07:hops,, +13:u01:CoAP-CoAP, +9:u06:hops,, +8:u08:CDDL, +13:u00:CoAP-CoAP, +9:u05:hops,, +9:u04:hops,, +8:u07:CDDL, +9:u03:hops,, +8:u06:CDDL, +9:u02:hops,, +8:u14:cddl, +8:u05:CDDL, +10:u08:type",, +9:u01:hops,, +8:u13:cddl, +8:u04:CDDL, +9:u00:hops,, +8:u12:cddl, +7:u22:CDD, +8:u23:CDDL, +8:u03:CDDL, +10:u07:type",, +8:u11:cddl, +8:u02:CDDL, +10:u06:type",, +14:u08:predefined, +8:u10:cddl, +10:u14:type",, +8:u01:CDDL, +10:u05:type",, +10:u13:type",, +13:uI2:",""""."", +8:u00:CDDL, +10:u04:type",, +14:u07:predefined, +11:u08:"uint",, +10:u12:type",, +13:uI1:",""""."", +10:u03:type",, +14:u06:predefined, +11:u07:"uint",, +10:u11:type",, +14:u14:predefined, +13:uI0:",""""."", +10:u02:type",, +14:u05:predefined, +11:u06:"uint",, +10:u10:type",, +14:u13:predefined, +10:u01:type",, +14:u04:predefined, +11:u05:"uint",, +14:u12:predefined, +9:uI2::"",(, +10:u00:type",, +14:u03:predefined, +11:u04:"uint",, +14:u11:predefined, +9:uI1::"",(, +10:uI2:);"",(, +14:u02:predefined, +8:u08:"/";, +11:u03:"uint",, +14:u10:predefined, +9:uI0::"",(, +10:uI1:);"",(, +9:uI2:);"",, +14:u01:predefined, +11:u02:"uint",, +10:uI0:);"",(, +9:uI1:);"",, +10:uI2:();"",, +14:u00:predefined, +8:u07:"/";, +11:u01:"uint",, +9:uI0:);"",, +10:uI1:();"",, +8:u06:"/";, +11:u00:"uint",, +8:u14:"/";, +10:uI0:();"",, +8:u05:"/";, +12:u08:enclosed, +8:u13:"/";, +8:uI2:"/";, +8:u04:"/";, +8:u12:"/";, +7:u22:"/", +8:u23:"/";, +8:uI1:"/";, +8:u03:"/";, +12:u07:enclosed, +8:u11:"/";, +8:uI0:"/";, +8:u02:"/";, +12:u06:enclosed, +8:u10:"/";, +12:u14:enclosed, +8:uI2:",",, +8:u01:"/";, +12:u05:enclosed, +12:u13:enclosed, +8:uI1:",",, +11:uI2:"[""]"., +8:u00:"/";, +12:u04:enclosed, +12:u12:enclosed, +8:u23:encl, +8:uI0:",",, +11:uI1:"[""]"., +12:u03:enclosed, +12:u11:enclosed, +11:uI0:"[""]"., +12:u02:enclosed, +12:u10:enclosed, +10:uI2:":","", +12:u01:enclosed, +10:uI1:":","", +12:u00:enclosed, +10:uI0:":","", +13:u08:Campbell,, +10:u08:Tobias, +9:u08:Klaus, +10:u07:Tobias, +8:u08:Esko, +13:u07:Campbell,, +10:u06:Tobias, +8:u07:Esko, +13:u06:Campbell,, +9:u07:Klaus, +10:u05:Tobias, +8:u06:Esko, +13:u14:campbell,, +13:u05:Campbell,, +9:u06:Klaus, +10:u04:Tobias, +8:u05:Esko, +13:u13:campbell,, +9:u14:klaus, +13:u04:Campbell,, +9:u05:Klaus, +10:u08:Ludwig, +10:u03:Tobias, +8:u04:Esko, +13:u12:campbell,, +9:u13:klaus, +8:u23:Camp, +13:u03:Campbell,, +9:u04:Klaus, +10:u02:Tobias, +8:u03:Esko, +13:u11:campbell,, +9:u12:klaus, +7:u14:der, +6:u21:Kl, +7:u22:Kla, +8:u23:Klau, +13:u02:Campbell,, +9:u03:Klaus, +10:u07:Ludwig, +10:u01:Tobias, +8:u02:Esko, +14:u08:CelticPlus, +13:u10:campbell,, +9:u11:klaus, +7:u13:der, +13:u01:Campbell,, +9:u02:Klaus, +10:u06:Ludwig, +10:u00:Tobias, +8:u01:Esko, +14:u07:CelticPlus, +9:u10:klaus, +7:u12:der, +10:u14:ludwig, +7:u23:der, +13:u00:Campbell,, +9:u01:Klaus, +10:u05:Ludwig, +8:u00:Esko, +14:u06:CelticPlus, +7:u11:der, +10:u13:ludwig, +9:u00:Klaus, +10:u04:Ludwig, +14:u05:CelticPlus, +7:u10:der, +10:u12:ludwig, +9:u14:seitz, +7:u22:Lud, +8:u23:Ludw, +10:u03:Ludwig, +14:u04:CelticPlus, +12:u08:Selander, +10:u11:ludwig, +9:u13:seitz, +10:u02:Ludwig, +14:u03:CelticPlus, +12:u07:Selander, +10:u10:ludwig, +9:u12:seitz, +10:u01:Ludwig, +8:u08:John, +14:u02:CelticPlus, +31:u08:goran.selander@ericsson.com, +9:u11:seitz, +10:u14:goeran, +10:u00:Ludwig, +14:u01:CelticPlus, +31:u07:goran.selander@ericsson.com, +9:u10:seitz, +10:u13:goeran, +8:u07:John, +14:u00:CelticPlus, +31:u06:goran.selander@ericsson.com, +10:u12:goeran, +7:u22:Goe, +8:u23:Goer, +8:u06:John, +13:u08:Francesca, +31:u05:goran.selander@ericsson.com, +30:u08:john.mattsson@ericsson.com, +10:u11:goeran, +8:u14:john, +8:u05:John, +31:u04:goran.selander@ericsson.com, +30:u07:john.mattsson@ericsson.com, +10:u10:goeran, +8:u13:john, +8:u04:John, +13:u07:Francesca, +31:u03:goran.selander@ericsson.com, +30:u06:john.mattsson@ericsson.com, +8:u12:john, +7:u22:Joh, +8:u23:John, +8:u03:John, +13:u06:Francesca, +31:u02:goran.selander@ericsson.com, +30:u05:john.mattsson@ericsson.com, +36:u08:francesca.palombini@ericsson.com, +8:u11:john, +13:u14:francesca, +8:u02:John, +13:u05:Francesca, +31:u01:goran.selander@ericsson.com, +30:u04:john.mattsson@ericsson.com, +36:u07:francesca.palombini@ericsson.com, +8:u10:john, +13:u13:francesca, +8:u01:John, +13:u04:Francesca, +31:u00:goran.selander@ericsson.com, +30:u03:john.mattsson@ericsson.com, +36:u06:francesca.palombini@ericsson.com, +13:u12:francesca, +8:u00:John, +13:u03:Francesca, +30:u02:john.mattsson@ericsson.com, +36:u05:francesca.palombini@ericsson.com, +22:u08:ludwig.seitz@ri.se, +13:u11:francesca, +13:u02:Francesca, +30:u01:john.mattsson@ericsson.com, +36:u04:francesca.palombini@ericsson.com, +22:u07:ludwig.seitz@ri.se, +13:u10:francesca, +13:u01:Francesca, +30:u00:john.mattsson@ericsson.com, +36:u03:francesca.palombini@ericsson.com, +22:u06:ludwig.seitz@ri.se, +13:u00:Francesca, +36:u02:francesca.palombini@ericsson.com, +22:u05:ludwig.seitz@ri.se, +36:u01:francesca.palombini@ericsson.com, +22:u04:ludwig.seitz@ri.se, +36:u00:francesca.palombini@ericsson.com, +22:u03:ludwig.seitz@ri.se, +22:u02:ludwig.seitz@ri.se, +22:u01:ludwig.seitz@ri.se, +16:u05:Benchmarking, +20:u06:Konstantynowicz,, +10:u08:Polak,, +16:u13:benchmarking, +16:u04:Benchmarking, +20:u05:Konstantynowicz,, +10:u07:Polak,, +16:u12:benchmarking, +8:u23:Benc, +16:u03:Benchmarking, +20:u04:Konstantynowicz,, +10:u06:Polak,, +16:u11:benchmarking, +16:u02:Benchmarking, +20:u03:Konstantynowicz,, +10:u05:Polak,, +16:u10:benchmarking, +16:u01:Benchmarking, +17:u08:Probabilistic, +20:u02:Konstantynowicz,, +10:u04:Polak,, +7:u08:08,, +16:u00:Benchmarking, +34:u08:draft-vpolak-bmwg-plrsearch-02, +20:u01:Konstantynowicz,, +10:u03:Polak,, +7:u07:08,, +17:u07:Probabilistic, +20:u00:Konstantynowicz,, +10:u02:Polak,, +7:u06:08,, +17:u06:Probabilistic, +34:u07:draft-vpolak-bmwg-plrsearch-02, +10:u01:Polak,, +7:u05:08,, +17:u14:probabilistic, +17:u05:Probabilistic, +34:u06:draft-vpolak-bmwg-plrsearch-02, +10:u00:Polak,, +7:u04:08,, +17:u13:probabilistic, +34:u14:draft-vpolak-bmwg-plrsearch-02, +17:u04:Probabilistic, +34:u05:draft-vpolak-bmwg-plrsearch-02, +7:u03:08,, +17:u12:probabilistic, +34:u13:draft-vpolak-bmwg-plrsearch-02, +8:u23:Prob, +17:u03:Probabilistic, +34:u04:draft-vpolak-bmwg-plrsearch-02, +13:u08:sometimes, +7:u02:08,, +19:u08:Virtualization), +17:u11:probabilistic, +34:u12:draft-vpolak-bmwg-plrsearch-02, +17:u02:Probabilistic, +34:u03:draft-vpolak-bmwg-plrsearch-02, +7:u01:08,, +19:u07:Virtualization), +17:u10:probabilistic, +34:u11:draft-vpolak-bmwg-plrsearch-02, +17:u01:Probabilistic, +34:u02:draft-vpolak-bmwg-plrsearch-02, +13:u07:sometimes, +17:u08:probabilistic, +7:u00:08,, +19:u06:Virtualization), +12:u08:proposed, +34:u10:draft-vpolak-bmwg-plrsearch-02, +7:uI2:[](, +17:u00:Probabilistic, +34:u01:draft-vpolak-bmwg-plrsearch-02, +13:u06:sometimes, +19:u05:Virtualization), +12:u07:proposed, +13:u14:sometimes, +7:uI1:[](, +34:u00:draft-vpolak-bmwg-plrsearch-02, +13:u05:sometimes, +17:u07:probabilistic, +19:u04:Virtualization), +12:u06:proposed, +13:u13:sometimes, +7:uI0:[](, +13:u04:sometimes, +17:u06:probabilistic, +19:u03:Virtualization), +12:u05:proposed, +13:u12:sometimes, +13:u03:sometimes, +17:u05:probabilistic, +19:u02:Virtualization), +12:u04:proposed, +13:u11:sometimes, +13:u02:sometimes, +17:u04:probabilistic, +19:u01:Virtualization), +12:u03:proposed, +13:u10:sometimes, +13:u01:sometimes, +17:u03:probabilistic, +19:u00:Virtualization), +12:u02:proposed, +13:u00:sometimes, +17:u02:probabilistic, +12:u01:proposed, +17:u01:probabilistic, +12:u00:proposed, +17:u00:probabilistic, +19:u08:Konstantynowicz, +19:u07:Konstantynowicz, +29:u08:Internet-DraProbabilistic, +19:u06:Konstantynowicz, +19:u14:konstantynowicz, +19:u05:Konstantynowicz, +29:u07:Internet-DraProbabilistic, +19:u13:konstantynowicz, +19:u04:Konstantynowicz, +29:u06:Internet-DraProbabilistic, +19:u12:konstantynowicz, +29:u14:internet-draprobabilistic, +7:u22:Kon, +8:u23:Kons, +19:u03:Konstantynowicz, +29:u05:Internet-DraProbabilistic, +19:u11:konstantynowicz, +29:u13:internet-draprobabilistic, +19:u02:Konstantynowicz, +29:u04:Internet-DraProbabilistic, +19:u10:konstantynowicz, +29:u12:internet-draprobabilistic, +19:u01:Konstantynowicz, +29:u03:Internet-DraProbabilistic, +29:u11:internet-draprobabilistic, +19:u00:Konstantynowicz, +29:u02:Internet-DraProbabilistic, +29:u10:internet-draprobabilistic, +29:u01:Internet-DraProbabilistic, +29:u00:Internet-DraProbabilistic, +9:u08:Terms, +9:u07:Terms, +9:u06:Terms, +9:u05:Terms, +9:u04:Terms, +9:u03:Terms, +9:u02:Terms, +7:u08:SUT, +9:u01:Terms, +7:u07:SUT, +9:u00:Terms, +7:u06:SUT, +7:u05:SUT, +7:u04:SUT, +7:u03:SUT, +7:u02:SUT, +7:u01:SUT, +7:u00:SUT, +8:u08:3.9., +11:u08:Offered, +8:u07:3.9., +9:u08:3.10., +11:u07:Offered, +8:u06:3.9., +11:u06:Offered, +9:u08:Trial, +8:u14:3.9., +8:u05:3.9., +9:u07:3.10., +9:u08:3.11., +11:u05:Offered, +9:u07:Trial, +8:u13:3.9., +8:u04:3.9., +9:u06:3.10., +11:u04:Offered, +9:u06:Trial, +8:u12:3.9., +9:u14:3.10., +7:u22:3.9, +8:u23:3.9., +8:u03:3.9., +9:u05:3.10., +9:u07:3.11., +9:u08:3.12., +11:u03:Offered, +9:u05:Trial, +8:u11:3.9., +9:u13:3.10., +8:u02:3.9., +9:u04:3.10., +9:u06:3.11., +11:u02:Offered, +9:u04:Trial, +8:u10:3.9., +9:u12:3.10., +9:u14:3.11., +8:u23:3.10, +8:u01:3.9., +9:u03:3.10., +9:u05:3.11., +9:u07:3.12., +11:u08:3.12.1., +11:u01:Offered, +9:u03:Trial, +9:u11:3.10., +9:u13:3.11., +8:u00:3.9., +9:u02:3.10., +9:u04:3.11., +9:u06:3.12., +11:u00:Offered, +9:u02:Trial, +9:u10:3.10., +9:u12:3.11., +9:u14:3.12., +8:u23:3.11, +9:u01:3.10., +9:u03:3.11., +9:u05:3.12., +11:u07:3.12.1., +11:u08:3.12.2., +9:u01:Trial, +9:u11:3.11., +9:u13:3.12., +9:u00:3.10., +9:u02:3.11., +9:u04:3.12., +11:u06:3.12.1., +9:u00:Trial, +9:u10:3.11., +9:u12:3.12., +11:u14:3.12.1., +8:u23:3.12, +9:u01:3.11., +9:u03:3.12., +11:u05:3.12.1., +11:u07:3.12.2., +11:u08:3.12.3., +9:u11:3.12., +11:u13:3.12.1., +9:u00:3.11., +9:u02:3.12., +11:u04:3.12.1., +11:u06:3.12.2., +9:u10:3.12., +11:u12:3.12.1., +11:u14:3.12.2., +9:u01:3.12., +11:u03:3.12.1., +11:u05:3.12.2., +11:u07:3.12.3., +9:u08:3.13., +11:u11:3.12.1., +11:u13:3.12.2., +9:u00:3.12., +11:u02:3.12.1., +11:u04:3.12.2., +11:u06:3.12.3., +11:u10:3.12.1., +11:u12:3.12.2., +11:u14:3.12.3., +11:u01:3.12.1., +11:u03:3.12.2., +11:u05:3.12.3., +9:u07:3.13., +9:u08:3.14., +11:u11:3.12.2., +11:u13:3.12.3., +11:u00:3.12.1., +11:u02:3.12.2., +11:u04:3.12.3., +9:u06:3.13., +11:u10:3.12.2., +11:u12:3.12.3., +9:u14:3.13., +11:u01:3.12.2., +11:u03:3.12.3., +9:u05:3.13., +9:u07:3.14., +9:u08:3.15., +11:u11:3.12.3., +9:u13:3.13., +11:u00:3.12.2., +11:u02:3.12.3., +9:u04:3.13., +9:u06:3.14., +11:u08:Average, +11:u10:3.12.3., +9:u12:3.13., +9:u14:3.14., +8:u23:3.13, +11:u01:3.12.3., +9:u03:3.13., +9:u05:3.14., +9:u07:3.15., +9:u08:3.16., +11:u07:Average, +9:u11:3.13., +9:u13:3.14., +11:u00:3.12.3., +9:u02:3.13., +9:u04:3.14., +9:u06:3.15., +11:u06:Average, +9:u10:3.13., +9:u12:3.14., +9:u14:3.15., +8:u23:3.14, +9:u01:3.13., +9:u03:3.14., +9:u05:3.15., +9:u07:3.16., +9:u08:3.17., +11:u05:Average, +9:u11:3.14., +9:u13:3.15., +9:u00:3.13., +9:u02:3.14., +9:u04:3.15., +9:u06:3.16., +11:u04:Average, +8:u08:Load, +9:u10:3.14., +9:u12:3.15., +9:u14:3.16., +8:u23:3.15, +9:u01:3.14., +9:u03:3.15., +9:u05:3.16., +9:u07:3.17., +11:u08:3.17.1., +11:u03:Average, +8:u07:Load, +9:u11:3.15., +9:u13:3.16., +9:u00:3.14., +9:u02:3.15., +9:u04:3.16., +9:u06:3.17., +11:u02:Average, +8:u06:Load, +9:u10:3.15., +9:u12:3.16., +9:u14:3.17., +8:u23:3.16, +9:u01:3.15., +9:u03:3.16., +9:u05:3.17., +11:u07:3.17.1., +11:u08:3.17.2., +11:u01:Average, +8:u05:Load, +9:u11:3.16., +9:u13:3.17., +9:u00:3.15., +9:u02:3.16., +9:u04:3.17., +11:u06:3.17.1., +11:u00:Average, +8:u04:Load, +14:u08:Guaranteed, +9:u10:3.16., +9:u12:3.17., +11:u14:3.17.1., +8:u23:3.17, +9:u01:3.16., +9:u03:3.17., +11:u05:3.17.1., +11:u07:3.17.2., +11:u08:3.17.3., +8:u03:Load, +14:u07:Guaranteed, +9:u11:3.17., +11:u13:3.17.1., +9:u00:3.16., +9:u02:3.17., +11:u04:3.17.1., +11:u06:3.17.2., +8:u02:Load, +14:u06:Guaranteed, +21:u08:Non-Deterministic, +9:u10:3.17., +11:u12:3.17.1., +11:u14:3.17.2., +9:u01:3.17., +11:u03:3.17.1., +11:u05:3.17.2., +11:u07:3.17.3., +11:u08:3.17.4., +8:u01:Load, +14:u05:Guaranteed, +21:u07:Non-Deterministic, +11:u11:3.17.1., +11:u13:3.17.2., +9:u00:3.17., +11:u02:3.17.1., +11:u04:3.17.2., +11:u06:3.17.3., +8:u00:Load, +14:u04:Guaranteed, +21:u06:Non-Deterministic, +10:u08:Normal, +11:u10:3.17.1., +11:u12:3.17.2., +11:u14:3.17.3., +11:u01:3.17.1., +11:u03:3.17.2., +11:u05:3.17.3., +11:u07:3.17.4., +9:u08:3.18., +14:u03:Guaranteed, +21:u05:Non-Deterministic, +10:u07:Normal, +11:u11:3.17.2., +11:u13:3.17.3., +22:uI2:...-.............., +11:u00:3.17.1., +11:u02:3.17.2., +11:u04:3.17.3., +11:u06:3.17.4., +9:u08:3.19., +14:u02:Guaranteed, +21:u04:Non-Deterministic, +10:u06:Normal, +11:u10:3.17.2., +11:u12:3.17.3., +11:u14:3.17.4., +22:uI1:...-.............., +11:u01:3.17.2., +11:u03:3.17.3., +11:u05:3.17.4., +9:u07:3.18., +9:u08:3.20., +14:u01:Guaranteed, +21:u03:Non-Deterministic, +10:u05:Normal, +15:u08:Througphput, +11:u11:3.17.3., +11:u13:3.17.4., +22:uI0:...-.............., +11:u00:3.17.2., +11:u02:3.17.3., +11:u04:3.17.4., +9:u06:3.18., +9:u07:3.19., +9:u08:3.21., +14:u00:Guaranteed, +21:u02:Non-Deterministic, +10:u04:Normal, +15:u07:Througphput, +11:u10:3.17.3., +11:u12:3.17.4., +9:u14:3.18., +11:u01:3.17.3., +11:u03:3.17.4., +9:u05:3.18., +9:u06:3.19., +9:u07:3.20., +9:u08:3.22., +21:u01:Non-Deterministic, +10:u03:Normal, +15:u06:Througphput, +11:u11:3.17.4., +9:u13:3.18., +9:u14:3.19., +11:u00:3.17.3., +11:u02:3.17.4., +9:u04:3.18., +9:u05:3.19., +9:u06:3.20., +9:u07:3.21., +9:u08:3.23., +21:u00:Non-Deterministic, +10:u02:Normal, +15:u05:Througphput, +11:u10:3.17.4., +9:u12:3.18., +9:u13:3.19., +9:u14:3.20., +8:u23:3.18, +11:u01:3.17.4., +9:u03:3.18., +9:u04:3.19., +9:u05:3.20., +9:u06:3.21., +9:u07:3.22., +9:u08:3.24., +10:u01:Normal, +15:u04:Througphput, +10:u08:Target, +9:u11:3.18., +9:u12:3.19., +9:u13:3.20., +9:u14:3.21., +8:u23:3.19, +11:u00:3.17.4., +9:u02:3.18., +9:u03:3.19., +9:u04:3.20., +9:u05:3.21., +9:u06:3.22., +9:u07:3.23., +9:u08:3.25., +10:u00:Normal, +15:u03:Througphput, +10:u07:Target, +12:u08:Critical, +9:u10:3.18., +9:u11:3.19., +9:u12:3.20., +9:u13:3.21., +9:u14:3.22., +8:u23:3.20, +9:u01:3.18., +9:u02:3.19., +9:u03:3.20., +9:u04:3.21., +9:u05:3.22., +9:u06:3.23., +9:u07:3.24., +9:u08:3.26., +15:u02:Througphput, +10:u06:Target, +12:u07:Critical, +9:u10:3.19., +9:u11:3.20., +9:u12:3.21., +9:u13:3.22., +9:u14:3.23., +8:u23:3.21, +9:u00:3.18., +9:u01:3.19., +9:u02:3.20., +9:u03:3.21., +9:u04:3.22., +9:u05:3.23., +9:u06:3.24., +9:u07:3.25., +9:u08:3.27., +15:u01:Througphput, +10:u05:Target, +12:u06:Critical, +11:u08:Fitting, +9:u10:3.20., +9:u11:3.21., +9:u12:3.22., +9:u13:3.23., +9:u14:3.24., +8:u23:3.22, +9:u00:3.19., +9:u01:3.20., +9:u02:3.21., +9:u03:3.22., +9:u04:3.23., +9:u05:3.24., +9:u06:3.25., +9:u07:3.26., +9:u08:3.28., +15:u00:Througphput, +10:u04:Target, +12:u05:Critical, +11:u07:Fitting, +9:u08:Shape, +9:u10:3.21., +9:u11:3.22., +9:u12:3.23., +9:u13:3.24., +9:u14:3.25., +8:u23:3.23, +9:u00:3.20., +9:u01:3.21., +9:u02:3.22., +9:u03:3.23., +9:u04:3.24., +9:u05:3.25., +9:u06:3.26., +9:u07:3.27., +10:u03:Target, +12:u04:Critical, +11:u06:Fitting, +9:u07:Shape, +9:u10:3.22., +9:u11:3.23., +9:u12:3.24., +9:u13:3.25., +9:u14:3.26., +8:u23:3.24, +9:u00:3.21., +9:u01:3.22., +9:u02:3.23., +9:u03:3.24., +9:u04:3.25., +9:u05:3.26., +9:u06:3.27., +9:u07:3.28., +10:u02:Target, +12:u03:Critical, +11:u05:Fitting, +9:u06:Shape, +9:u10:3.23., +9:u11:3.24., +9:u12:3.25., +9:u13:3.26., +9:u14:3.27., +8:u23:3.25, +9:u00:3.22., +9:u01:3.23., +9:u02:3.24., +9:u03:3.25., +9:u04:3.26., +9:u05:3.27., +9:u06:3.28., +10:u01:Target, +12:u02:Critical, +11:u04:Fitting, +9:u05:Shape, +9:u10:3.24., +9:u11:3.25., +9:u12:3.26., +9:u13:3.27., +9:u14:3.28., +8:u23:3.26, +9:u00:3.23., +9:u01:3.24., +9:u02:3.25., +9:u03:3.26., +9:u04:3.27., +9:u05:3.28., +10:u00:Target, +12:u01:Critical, +11:u03:Fitting, +9:u04:Shape, +9:u10:3.25., +9:u11:3.26., +9:u12:3.27., +9:u13:3.28., +8:u23:3.27, +9:u00:3.24., +9:u01:3.25., +9:u02:3.26., +9:u03:3.27., +9:u04:3.28., +12:u00:Critical, +11:u02:Fitting, +9:u03:Shape, +9:u10:3.26., +9:u11:3.27., +9:u12:3.28., +8:u23:3.28, +9:u00:3.25., +9:u01:3.26., +9:u02:3.27., +9:u03:3.28., +11:u01:Fitting, +9:u02:Shape, +9:u10:3.27., +9:u11:3.28., +9:u00:3.26., +9:u01:3.27., +9:u02:3.28., +11:u00:Fitting, +9:u01:Shape, +9:u10:3.28., +9:u00:3.27., +9:u01:3.28., +9:u00:Shape, +9:u00:3.28., +13:u08:PLRsearch, +13:u07:PLRsearch, +12:u08:Bayesian, +13:u06:PLRsearch, +12:u07:Bayesian, +13:u08:Iterative, +13:u05:PLRsearch, +12:u06:Bayesian, +13:u07:Iterative, +13:u04:PLRsearch, +12:u05:Bayesian, +13:u06:Iterative, +13:u03:PLRsearch, +12:u04:Bayesian, +13:u05:Iterative, +10:u08:4.3.7., +13:u02:PLRsearch, +12:u03:Bayesian, +13:u04:Iterative, +8:u08:Exit, +10:u08:4.3.8., +13:u01:PLRsearch, +12:u02:Bayesian, +13:u03:Iterative, +8:u07:Exit, +15:u08:Integration, +10:u07:4.3.7., +10:u08:4.3.9., +13:u00:PLRsearch, +12:u01:Bayesian, +13:u02:Iterative, +8:u06:Exit, +15:u07:Integration, +17:u08:Optimizations, +10:u06:4.3.7., +10:u07:4.3.8., +11:u08:4.3.10., +12:u00:Bayesian, +13:u01:Iterative, +8:u05:Exit, +15:u06:Integration, +17:u07:Optimizations, +10:u14:4.3.7., +10:u05:4.3.7., +10:u06:4.3.8., +10:u07:4.3.9., +13:u00:Iterative, +8:u04:Exit, +15:u05:Integration, +17:u06:Optimizations, +9:u08:Trend, +10:u13:4.3.7., +10:u14:4.3.8., +10:u04:4.3.7., +10:u05:4.3.8., +10:u06:4.3.9., +11:u07:4.3.10., +8:u03:Exit, +15:u04:Integration, +17:u05:Optimizations, +9:u07:Trend, +10:u08:Sample, +10:u12:4.3.7., +10:u13:4.3.8., +10:u14:4.3.9., +10:u03:4.3.7., +10:u04:4.3.8., +10:u05:4.3.9., +11:u06:4.3.10., +8:u02:Exit, +15:u03:Integration, +17:u04:Optimizations, +9:u06:Trend, +10:u07:Sample, +10:u11:4.3.7., +10:u12:4.3.8., +10:u13:4.3.9., +11:u14:4.3.10., +10:u02:4.3.7., +10:u03:4.3.8., +10:u04:4.3.9., +11:u05:4.3.10., +8:u01:Exit, +15:u02:Integration, +17:u03:Optimizations, +9:u05:Trend, +10:u06:Sample, +10:u10:4.3.7., +10:u11:4.3.8., +10:u12:4.3.9., +11:u13:4.3.10., +10:u01:4.3.7., +10:u02:4.3.8., +10:u03:4.3.9., +11:u04:4.3.10., +8:u00:Exit, +15:u01:Integration, +17:u02:Optimizations, +9:u04:Trend, +10:u05:Sample, +10:u10:4.3.8., +10:u11:4.3.9., +11:u12:4.3.10., +16:uI2:.:.........., +10:u00:4.3.7., +10:u01:4.3.8., +10:u02:4.3.9., +11:u03:4.3.10., +10:u08:5.3.2., +15:u00:Integration, +17:u01:Optimizations, +9:u03:Trend, +10:u04:Sample, +11:u08:Stretch, +10:u10:4.3.9., +11:u11:4.3.10., +16:uI1:.:.........., +10:u00:4.3.8., +10:u01:4.3.9., +11:u02:4.3.10., +17:u00:Optimizations, +9:u02:Trend, +10:u03:Sample, +11:u07:Stretch, +7:u08:Erf, +11:u10:4.3.10., +16:uI0:.:.........., +10:u00:4.3.9., +11:u01:4.3.10., +10:u07:5.3.2., +9:u01:Trend, +10:u02:Sample, +11:u06:Stretch, +7:u07:Erf, +9:u08:Prior, +11:u00:4.3.10., +10:u06:5.3.2., +9:u00:Trend, +10:u01:Sample, +11:u05:Stretch, +7:u06:Erf, +9:u07:Prior, +14:u08:Integrator, +10:u14:5.3.2., +10:u05:5.3.2., +10:u00:Sample, +11:u04:Stretch, +7:u05:Erf, +9:u06:Prior, +14:u07:Integrator, +10:u13:5.3.2., +10:u04:5.3.2., +11:u03:Stretch, +7:u04:Erf, +9:u05:Prior, +14:u06:Integrator, +10:u12:5.3.2., +10:u03:5.3.2., +11:u02:Stretch, +7:u03:Erf, +9:u04:Prior, +14:u05:Integrator, +10:u11:5.3.2., +10:u02:5.3.2., +11:u01:Stretch, +7:u02:Erf, +9:u03:Prior, +14:u04:Integrator, +10:u10:5.3.2., +10:u01:5.3.2., +11:u00:Stretch, +7:u01:Erf, +9:u02:Prior, +14:u03:Integrator, +10:u00:5.3.2., +7:u00:Erf, +9:u01:Prior, +14:u02:Integrator, +9:u00:Prior, +14:u01:Integrator, +14:u00:Integrator, +13:u08:[RFC2544], +13:u08:providers, +11:u08:offered, +13:u07:providers, +13:u07:[RFC2544], +13:u06:providers, +9:u08:load., +13:u06:[RFC2544], +11:u07:offered, +13:u05:providers, +9:u07:load., +13:u14:[rfc2544], +13:u05:[RFC2544], +11:u06:offered, +10:u08:trial), +13:u04:providers, +9:u06:load., +13:u13:[rfc2544], +11:u14:offered, +13:u04:[RFC2544], +11:u05:offered, +13:u03:providers, +9:u05:load., +13:u12:[rfc2544], +11:u13:offered, +13:u03:[RFC2544], +11:u04:offered, +10:u07:trial), +15:u08:throughput", +13:u02:providers, +9:u04:load., +14:u08:deviation,, +13:u11:[rfc2544], +11:u12:offered, +13:u02:[RFC2544], +11:u03:offered, +10:u06:trial), +13:u01:providers, +9:u03:load., +14:u07:deviation,, +13:u10:[rfc2544], +11:u11:offered, +10:u14:trial), +12:uI2:[][----], +13:u01:[RFC2544], +11:u02:offered, +10:u05:trial), +15:u07:throughput", +12:u08:account., +13:u00:providers, +9:u02:load., +14:u06:deviation,, +11:u10:offered, +10:u13:trial), +12:uI1:[][----], +13:u00:[RFC2544], +11:u01:offered, +10:u04:trial), +15:u06:throughput", +9:u01:load., +14:u05:deviation,, +10:u12:trial), +15:u14:throughput", +8:u23:tria, +12:uI0:[][----], +11:u00:offered, +10:u03:trial), +15:u05:throughput", +12:u07:account., +9:u00:load., +14:u04:deviation,, +10:u11:trial), +15:u13:throughput", +10:u02:trial), +15:u04:throughput", +12:u06:account., +14:u03:deviation,, +10:u10:trial), +15:u12:throughput", +12:u14:account., +10:u01:trial), +15:u03:throughput", +12:u05:account., +14:u02:deviation,, +15:u11:throughput", +12:u13:account., +10:u00:trial), +15:u02:throughput", +12:u04:account., +14:u01:deviation,, +15:u10:throughput", +12:u12:account., +15:u01:throughput", +12:u03:account., +14:u00:deviation,, +7:u08:aim, +12:u11:account., +15:u00:throughput", +12:u02:account., +7:u08:NFV, +7:u07:aim, +12:u10:account., +12:u01:account., +7:u06:aim, +12:u00:account., +7:u07:NFV, +7:u05:aim, +7:u06:NFV, +7:u04:aim, +7:u14:nfv, +7:u05:NFV, +10:u08:tasked, +7:u03:aim, +7:u13:nfv, +7:u04:NFV, +7:u02:aim, +7:u12:nfv, +7:u22:NFV, +7:u23:NFV, +7:u03:NFV, +10:u07:tasked, +7:u01:aim, +7:u11:nfv, +7:u02:NFV, +10:u06:tasked, +7:u00:aim, +7:u10:nfv, +10:u14:tasked, +7:u01:NFV, +10:u05:tasked, +12:u08:hardware, +10:u13:tasked, +7:u00:NFV, +10:u04:tasked, +12:u07:hardware, +10:u12:tasked, +7:u22:tas, +8:u23:task, +10:u03:tasked, +12:u06:hardware, +10:u11:tasked, +10:u02:tasked, +12:u05:hardware, +10:u10:tasked, +10:u01:tasked, +12:u04:hardware, +12:u08:methods,, +10:u00:tasked, +12:u03:hardware, +12:u07:methods,, +9:uI2:""()., +12:u02:hardware, +12:u06:methods,, +9:uI1:""()., +12:u01:hardware, +12:u05:methods,, +9:uI0:""()., +10:uI2:[],[]., +12:u00:hardware, +12:u04:methods,, +10:uI1:[],[]., +12:u03:methods,, +10:uI0:[],[]., +12:u02:methods,, +13:u08:affecting, +12:u01:methods,, +10:u08:parts,, +12:u00:methods,, +10:u07:parts,, +13:u07:affecting, +10:u06:parts,, +13:u06:affecting, +10:u05:parts,, +13:u14:affecting, +13:u05:affecting, +10:u04:parts,, +13:u13:affecting, +13:u04:affecting, +10:u03:parts,, +13:u12:affecting, +12:u14:usually,, +13:u03:affecting, +13:u08:Similarly, +10:u02:parts,, +13:u11:affecting, +12:u13:usually,, +13:u02:affecting, +10:u01:parts,, +13:u10:affecting, +12:u12:usually,, +7:u22:Usu, +8:u23:Usua, +13:u01:affecting, +13:u07:Similarly, +10:u00:parts,, +12:u11:usually,, +13:u00:affecting, +13:u06:Similarly, +12:u10:usually,, +13:u14:similarly, +13:u05:Similarly, +13:u13:similarly, +13:u04:Similarly, +13:u12:similarly, +13:u03:Similarly, +13:u11:similarly, +13:u02:Similarly, +13:u10:similarly, +13:u01:Similarly, +13:u00:Similarly, +14:u08:applicable, +14:u07:applicable, +8:u08:Unit, +14:u06:applicable, +9:u08:test., +14:u14:applicable, +14:u05:applicable, +8:u07:Unit, +11:u08:frames., +8:u08:Term, +14:u13:applicable, +14:u04:applicable, +8:u06:Unit, +9:u07:test., +8:u07:Term, +14:u12:applicable, +14:u03:applicable, +8:u05:Unit, +9:u06:test., +11:u07:frames., +8:u06:Term, +14:u11:applicable, +9:u14:test., +14:u02:applicable, +8:u04:Unit, +9:u05:test., +11:u06:frames., +8:u05:Term, +14:u10:applicable, +9:u13:test., +11:u14:frames., +14:u01:applicable, +8:u03:Unit, +9:u04:test., +11:u05:frames., +8:u04:Term, +9:u12:test., +11:u13:frames., +14:u00:applicable, +8:u02:Unit, +9:u03:test., +11:u04:frames., +8:u03:Term, +9:u11:test., +11:u12:frames., +8:u01:Unit, +9:u02:test., +11:u03:frames., +8:u02:Term, +9:u10:test., +11:u11:frames., +8:u00:Unit, +9:u01:test., +11:u02:frames., +8:u01:Term, +11:u10:frames., +9:u00:test., +11:u01:frames., +8:u00:Term, +11:u00:frames., +11:u08:manner., +11:u07:manner., +11:u06:manner., +11:u14:manner., +11:u05:manner., +11:u13:manner., +11:u04:manner., +11:u12:manner., +8:u23:mann, +11:u03:manner., +12:u08:offered,, +11:u11:manner., +11:u02:manner., +12:u07:offered,, +11:u10:manner., +11:u01:manner., +12:u06:offered,, +11:u00:manner., +12:u05:offered,, +16:u08:(duplicated,, +12:u04:offered,, +16:u07:(duplicated,, +13:u14:plrsearch, +12:u03:offered,, +16:u06:(duplicated,, +13:u13:plrsearch, +12:u02:offered,, +16:u05:(duplicated,, +13:u12:plrsearch, +6:u21:PL, +7:u22:PLR, +8:u23:PLRs, +9:uI2:(,,),, +12:u01:offered,, +16:u04:(duplicated,, +13:u11:plrsearch, +9:uI1:(,,),, +12:u00:offered,, +16:u03:(duplicated,, +15:u08:categories., +13:u10:plrsearch, +9:uI0:(,,),, +16:u02:(duplicated,, +15:u07:categories., +16:u01:(duplicated,, +15:u06:categories., +16:u00:(duplicated,, +15:u05:categories., +15:u04:categories., +15:u03:categories., +15:u02:categories., +9:uI2:(),"", +17:u08:measurements), +15:u01:categories., +9:uI1:(),"", +15:u00:categories., +9:uI0:(),"", +17:u07:measurements), +17:u06:measurements), +17:u14:measurements), +17:u05:measurements), +17:u13:measurements), +17:u04:measurements), +13:u08:generator, +17:u12:measurements), +17:u03:measurements), +13:u07:generator, +17:u11:measurements), +17:u02:measurements), +11:u08:known),, +13:u06:generator, +15:u08:predictable, +17:u10:measurements), +17:u01:measurements), +13:u05:generator, +15:u07:predictable, +17:u00:measurements), +11:u07:known),, +13:u04:generator, +15:u06:predictable, +11:u06:known),, +12:u08:profile,, +13:u03:generator, +15:u05:predictable, +11:u14:known),, +11:u05:known),, +12:u08:Criteria, +13:u02:generator, +15:u04:predictable, +11:u13:known),, +11:u04:known),, +12:u07:profile,, +13:u01:generator, +15:u03:predictable, +11:u12:known),, +11:u03:known),, +12:u06:profile,, +12:u07:Criteria, +13:u00:generator, +15:u02:predictable, +11:u11:known),, +12:u14:profile,, +11:u02:known),, +12:u05:profile,, +12:u06:Criteria, +15:u01:predictable, +11:u10:known),, +12:u13:profile,, +12:u14:criteria, +11:u01:known),, +12:u04:profile,, +12:u05:Criteria, +15:u00:predictable, +8:u08:load, +12:u12:profile,, +12:u13:criteria, +8:u23:prof, +11:u00:known),, +12:u03:profile,, +12:u04:Criteria, +8:u07:load, +12:u11:profile,, +12:u12:criteria, +6:u21:Cr, +7:u22:Cri, +8:u23:Crit, +12:u02:profile,, +12:u03:Criteria, +8:u06:load, +12:u10:profile,, +12:u11:criteria, +12:u01:profile,, +12:u02:Criteria, +8:u05:load, +12:u10:criteria, +12:u00:profile,, +12:u01:Criteria, +8:u04:load, +7:u22:Off, +8:u23:Offe, +12:u00:Criteria, +8:u03:load, +8:u02:load, +13:u08:duration., +9:u14:trial, +8:u01:load, +13:u07:duration., +9:u13:trial, +8:u00:load, +13:u06:duration., +9:u12:trial, +7:u22:Tri, +8:u23:Tria, +13:u05:duration., +9:u11:trial, +13:u04:duration., +9:u10:trial, +13:u03:duration., +13:u02:duration., +13:u01:duration., +13:u00:duration., +9:u08:trial, +9:u07:trial, +13:u14:generator, +9:u06:trial, +13:u13:generator, +9:u05:trial, +13:u12:generator, +9:u04:trial, +13:u11:generator, +9:u03:trial, +11:u08:predict, +13:u10:generator, +9:u02:trial, +11:u07:predict, +9:u01:trial, +11:u06:predict, +9:u00:trial, +11:u05:predict, +11:u04:predict, +11:u03:predict, +11:u02:predict, +11:u01:predict, +13:u08:non-zero), +11:u00:predict, +13:u07:non-zero), +17:u08:respecively)., +13:u06:non-zero), +17:u07:respecively)., +13:u05:non-zero), +17:u06:respecively)., +9:uI2:(-)(-, +13:u04:non-zero), +17:u05:respecively)., +9:uI1:(-)(-, +13:u03:non-zero), +17:u04:respecively)., +9:uI0:(-)(-, +13:u02:non-zero), +17:u03:respecively)., +12:u08:Measured, +13:u01:non-zero), +17:u02:respecively)., +13:u00:non-zero), +17:u01:respecively)., +12:u07:Measured, +17:u00:respecively)., +12:u06:Measured, +12:u08:offered., +12:u14:measured, +12:u05:Measured, +12:u13:measured, +12:u04:Measured, +12:u07:offered., +12:u12:measured, +12:u03:Measured, +12:u06:offered., +12:u11:measured, +12:u14:offered., +12:u02:Measured, +12:u05:offered., +12:u10:measured, +12:u13:offered., +12:u01:Measured, +12:u04:offered., +12:u08:assumed), +12:u12:offered., +12:u00:Measured, +12:u03:offered., +12:u07:assumed), +17:u08:independence., +12:u11:offered., +12:u02:offered., +12:u06:assumed), +17:u07:independence., +12:u10:offered., +12:u01:offered., +12:u05:assumed), +17:u06:independence., +12:u00:offered., +12:u04:assumed), +17:u05:independence., +12:u03:assumed), +17:u04:independence., +12:u02:assumed), +17:u03:independence., +7:u08:whe, +12:u01:assumed), +17:u02:independence., +12:u00:assumed), +17:u01:independence., +7:u07:whe, +17:u00:independence., +8:u23:That, +7:u06:whe, +16:u08:independent,, +7:u14:whe, +7:u05:whe, +7:u13:whe, +7:u04:whe, +16:u07:independent,, +7:u12:whe, +7:u23:whe, +7:u03:whe, +16:u06:independent,, +7:u11:whe, +16:u14:independent,, +7:u02:whe, +16:u05:independent,, +7:u10:whe, +16:u13:independent,, +7:u01:whe, +16:u04:independent,, +11:u08:Numbers, +16:u12:independent,, +7:u00:whe, +16:u03:independent,, +16:u11:independent,, +16:u02:independent,, +11:u07:Numbers, +16:u10:independent,, +16:u14:measurements, +16:u01:independent,, +11:u06:Numbers, +17:u08:distribution,, +16:u13:measurements, +11:u14:numbers, +16:u00:independent,, +11:u05:Numbers, +16:u12:measurements, +11:u13:numbers, +11:u04:Numbers, +17:u07:distribution,, +16:u11:measurements, +11:u12:numbers, +11:u03:Numbers, +17:u06:distribution,, +10:u08:chosen, +16:u10:measurements, +11:u11:numbers, +17:u14:distribution,, +11:u02:Numbers, +17:u05:distribution,, +10:u07:chosen, +11:u10:numbers, +17:u13:distribution,, +11:u01:Numbers, +17:u04:distribution,, +17:u08:measurements,, +10:u06:chosen, +17:u12:distribution,, +11:u00:Numbers, +17:u03:distribution,, +10:u05:chosen, +17:u11:distribution,, +17:u02:distribution,, +17:u07:measurements,, +15:u08:Probability, +10:u04:chosen, +17:u10:distribution,, +16:u14:distribution, +17:u01:distribution,, +17:u06:measurements,, +10:u03:chosen, +16:u13:distribution, +17:u14:measurements,, +17:u00:distribution,, +17:u05:measurements,, +15:u07:Probability, +10:u02:chosen, +16:u12:distribution, +17:u13:measurements,, +17:u04:measurements,, +15:u06:Probability, +10:u01:chosen, +16:u11:distribution, +17:u12:measurements,, +17:u03:measurements,, +15:u05:Probability, +10:u00:chosen, +16:u10:distribution, +17:u11:measurements,, +17:u02:measurements,, +15:u04:Probability, +17:u10:measurements,, +17:u01:measurements,, +15:u03:Probability, +11:u14:average, +17:u00:measurements,, +15:u02:Probability, +11:u13:average, +15:u01:Probability, +11:u12:average, +7:u22:Ave, +8:u23:Aver, +15:u00:Probability, +11:u11:average, +16:u08:theoretical., +11:u10:average, +12:u14:assumed), +16:u07:theoretical., +12:u13:assumed), +16:u06:theoretical., +12:u12:assumed), +16:u14:theoretical., +16:u05:theoretical., +12:u11:assumed), +16:u13:theoretical., +16:u04:theoretical., +12:u10:assumed), +16:u12:theoretical., +16:u03:theoretical., +16:u11:theoretical., +16:u02:theoretical., +16:u10:theoretical., +16:u01:theoretical., +17:u08:distributions, +16:u00:theoretical., +17:u07:distributions, +17:u06:distributions, +17:u14:distributions, +17:u05:distributions, +17:u13:distributions, +17:u04:distributions, +17:u12:distributions, +17:u03:distributions, +17:u11:distributions, +13:u14:initiated, +17:u02:distributions, +17:u10:distributions, +13:u13:initiated, +17:u01:distributions, +13:u12:initiated, +17:u00:distributions, +13:u11:initiated, +13:u10:initiated, +11:u08:region,, +11:u07:region,, +11:u06:region,, +11:u14:region,, +11:u05:region,, +11:u13:region,, +11:u04:region,, +11:u12:region,, +11:u03:region,, +11:u11:region,, +11:u02:region,, +11:u10:region,, +11:u01:region,, +11:u00:region,, +15:u08:practically, +19:u08:distinguishable, +15:u07:practically, +19:u07:distinguishable, +15:u06:practically, +19:u06:distinguishable, +17:u08:theoretically, +15:u14:practically, +15:u05:practically, +19:u05:distinguishable, +17:u07:theoretically, +15:u13:practically, +15:u04:practically, +19:u04:distinguishable, +17:u06:theoretically, +11:u08:smaller, +15:u12:practically, +15:u03:practically, +19:u03:distinguishable, +17:u05:theoretically, +11:u07:smaller, +15:u11:practically, +15:u02:practically, +19:u02:distinguishable, +17:u04:theoretically, +11:u06:smaller, +15:u10:practically, +15:u01:practically, +19:u01:distinguishable, +17:u03:theoretically, +11:u05:smaller, +15:u00:practically, +19:u00:distinguishable, +17:u02:theoretically, +11:u04:smaller, +17:u01:theoretically, +11:u03:smaller, +13:u08:ordering,, +17:u00:theoretically, +11:u02:smaller, +16:u08:hypothetical, +11:u01:smaller, +16:u07:hypothetical, +13:u07:ordering,, +11:u00:smaller, +16:u06:hypothetical, +13:u06:ordering,, +16:u05:hypothetical, +13:u14:ordering,, +13:u05:ordering,, +21:u08:non-deterministic, +16:u04:hypothetical, +13:u13:ordering,, +13:u04:ordering,, +16:u03:hypothetical, +13:u12:ordering,, +13:u03:ordering,, +21:u07:non-deterministic, +14:u08:Throughput, +16:u02:hypothetical, +13:u11:ordering,, +13:u02:ordering,, +21:u06:non-deterministic, +16:u01:hypothetical, +13:u10:ordering,, +21:u14:non-deterministic, +13:u01:ordering,, +21:u05:non-deterministic, +14:u07:Throughput, +16:u00:hypothetical, +21:u13:non-deterministic, +13:u00:ordering,, +21:u04:non-deterministic, +14:u06:Throughput, +21:u12:non-deterministic, +14:u14:throughput, +21:u03:non-deterministic, +14:u05:Throughput, +21:u11:non-deterministic, +14:u13:throughput, +21:u02:non-deterministic, +14:u04:Throughput, +21:u10:non-deterministic, +14:u12:throughput, +21:u01:non-deterministic, +14:u03:Throughput, +14:u11:throughput, +21:u00:non-deterministic, +14:u02:Throughput, +11:u08:search., +14:u10:throughput, +14:u01:Throughput, +14:u00:Throughput, +11:u07:search., +8:u14:load, +11:u06:search., +8:u13:load, +11:u14:search., +11:u05:search., +12:u08:pointing, +8:u12:load, +11:u13:search., +11:u04:search., +12:u07:pointing, +10:u08:Search, +8:u11:load, +11:u12:search., +7:u22:sea, +8:u23:sear, +11:u03:search., +12:u06:pointing, +10:u07:Search, +8:u10:load, +11:u11:search., +11:u02:search., +12:u05:pointing, +10:u06:Search, +11:u10:search., +10:u14:binary, +11:u01:search., +12:u04:pointing, +10:u05:Search, +10:u13:binary, +11:u00:search., +12:u03:pointing, +10:u04:Search, +10:u12:binary, +8:u23:Bina, +12:u02:pointing, +10:u03:Search, +10:u11:binary, +8:u23:Sing, +12:u01:pointing, +10:u02:Search, +11:u08:region., +10:u10:binary, +12:u00:pointing, +10:u01:Search, +11:u07:region., +10:u00:Search, +11:u06:region., +11:u05:region., +11:u04:region., +11:u03:region., +11:u02:region., +12:u14:observed, +11:u01:region., +12:u13:observed, +11:u00:region., +10:u08:region, +12:u12:observed, +10:u07:region, +12:u11:observed, +10:u06:region, +12:u10:observed, +10:u05:region, +10:u04:region, +10:u03:region, +10:u02:region, +10:u01:region, +10:u00:region, +10:u08:surely, +10:u07:surely, +10:u06:surely, +10:u05:surely, +10:u04:surely, +10:u03:surely, +10:u02:surely, +10:u01:surely, +10:u00:surely, +8:u08:aims, +13:u08:Aggregate, +8:u07:aims, +8:u06:aims, +13:u07:Aggregate, +8:u05:aims, +13:u06:Aggregate, +8:u04:aims, +12:u08:infinite, +13:u14:aggregate, +13:u05:Aggregate, +8:u03:aims, +12:u07:infinite, +13:u13:aggregate, +9:u14:ratio, +13:u04:Aggregate, +8:u02:aims, +12:u06:infinite, +16:u08:quantitative, +13:u12:aggregate, +9:u13:ratio, +7:u22:Agg, +8:u23:Aggr, +13:u03:Aggregate, +8:u01:aims, +12:u05:infinite, +16:u07:quantitative, +13:u11:aggregate, +9:u12:ratio, +8:u23:rati, +13:u02:Aggregate, +8:u00:aims, +12:u04:infinite, +16:u06:quantitative, +13:u10:aggregate, +9:u11:ratio, +13:u01:Aggregate, +12:u03:infinite, +16:u05:quantitative, +9:u10:ratio, +13:u00:Aggregate, +12:u02:infinite, +16:u04:quantitative, +12:u01:infinite, +16:u03:quantitative, +7:u08:few, +12:u00:infinite, +16:u02:quantitative, +7:u07:few, +16:u01:quantitative, +7:u06:few, +11:u08:formula, +16:u00:quantitative, +7:u05:few, +11:u07:formula, +7:u04:few, +11:u06:formula, +7:u03:few, +11:u05:formula, +7:u02:few, +11:u04:formula, +10:u08:vector, +7:u01:few, +11:u03:formula, +7:u00:few, +11:u02:formula, +10:u07:vector, +11:u01:formula, +10:u06:vector, +11:u00:formula, +10:u14:vector, +10:u05:vector, +10:u13:vector, +11:u14:formula, +10:u04:vector, +10:u12:vector, +11:u13:formula, +7:u22:vec, +8:u23:vect, +10:u03:vector, +10:u11:vector, +11:u12:formula, +10:u02:vector, +10:u10:vector, +11:u11:formula, +10:u01:vector, +11:u10:formula, +10:u00:vector, +14:u08:(function), +12:u08:measured, +14:u07:(function), +10:u08:Second, +14:u06:(function), +12:u07:measured, +14:u14:(function), +14:u05:(function), +12:u06:measured, +10:u07:Second, +14:u13:(function), +14:u04:(function), +12:u05:measured, +10:u06:Second, +9:u08:Third, +14:u12:(function), +7:u22:(fu, +8:u23:(fun, +14:u03:(function), +12:u04:measured, +10:u05:Second, +14:u11:(function), +14:u02:(function), +12:u03:measured, +10:u04:Second, +9:u07:Third, +14:u10:(function), +14:u01:(function), +12:u02:measured, +10:u03:Second, +9:u06:Third, +14:u00:(function), +12:u01:measured, +10:u02:Second, +9:u05:Third, +8:u08:exit, +12:u00:measured, +10:u01:Second, +9:u04:Third, +8:u23:Thir, +10:u00:Second, +9:u03:Third, +8:u07:exit, +9:u02:Third, +8:u06:exit, +8:u14:exit, +9:u01:Third, +8:u05:exit, +8:u13:exit, +9:u00:Third, +8:u04:exit, +8:u12:exit, +8:u23:exit, +8:u03:exit, +8:u11:exit, +8:u02:exit, +10:u08:search, +8:u10:exit, +8:u01:exit, +10:u07:search, +9:u08:load,, +8:u00:exit, +10:u06:search, +9:u07:load,, +10:u05:search, +9:u06:load,, +10:u04:search, +9:u05:load,, +12:u08:estimate, +10:u03:search, +9:u04:load,, +12:u07:estimate, +10:u02:search, +9:u03:load,, +12:u06:estimate, +10:u01:search, +9:u02:load,, +12:u05:estimate, +10:u00:search, +9:u01:load,, +12:u04:estimate, +9:u00:load,, +12:u03:estimate, +12:u02:estimate, +12:u01:estimate, +16:u08:integration,, +12:u00:estimate, +16:u07:integration,, +16:u06:integration,, +14:u08:estimates., +16:u14:integration,, +16:u05:integration,, +16:u13:integration,, +16:u04:integration,, +14:u07:estimates., +13:u08:numerical, +16:u12:integration,, +16:u03:integration,, +14:u06:estimates., +17:u08:computations,, +16:u11:integration,, +14:u14:estimates., +16:u02:integration,, +14:u05:estimates., +13:u07:numerical, +17:u07:computations,, +16:u10:integration,, +14:u13:estimates., +16:u01:integration,, +14:u04:estimates., +13:u06:numerical, +13:u08:linearly,, +17:u06:computations,, +14:u12:estimates., +13:u14:numerical, +8:u23:esti, +16:u00:integration,, +14:u03:estimates., +13:u05:numerical, +17:u05:computations,, +14:u11:estimates., +13:u13:numerical, +14:u02:estimates., +13:u04:numerical, +13:u07:linearly,, +17:u04:computations,, +14:u10:estimates., +13:u12:numerical, +14:u01:estimates., +13:u03:numerical, +13:u06:linearly,, +17:u03:computations,, +13:u11:numerical, +13:u14:linearly,, +14:u00:estimates., +13:u02:numerical, +13:u05:linearly,, +17:u02:computations,, +13:u08:motivates, +13:u10:numerical, +13:u13:linearly,, +13:u01:numerical, +13:u04:linearly,, +17:u01:computations,, +13:u07:motivates, +13:u12:linearly,, +13:u00:numerical, +13:u03:linearly,, +13:u08:Practical, +17:u00:computations,, +13:u06:motivates, +13:u11:linearly,, +13:u02:linearly,, +13:u05:motivates, +13:u10:linearly,, +8:u14:idea, +13:u01:linearly,, +13:u07:Practical, +13:u04:motivates, +8:u13:idea, +13:u00:linearly,, +13:u06:Practical, +13:u03:motivates, +10:u08:ratio,, +8:u12:idea, +8:u23:idea, +13:u05:Practical, +13:u02:motivates, +10:u07:ratio,, +8:u11:idea, +13:u04:Practical, +13:u01:motivates, +10:u06:ratio,, +8:u10:idea, +7:u22:Pra, +8:u23:Prac, +13:u03:Practical, +13:u00:motivates, +10:u05:ratio,, +13:u02:Practical, +10:u04:ratio,, +15:u08:integration, +13:u01:Practical, +10:u08:(TODO:, +10:u03:ratio,, +15:u07:integration, +13:u00:Practical, +10:u02:ratio,, +15:u06:integration, +10:u07:(TODO:, +10:u01:ratio,, +15:u05:integration, +10:u06:(TODO:, +10:u00:ratio,, +15:u04:integration, +10:u14:(todo:, +10:u05:(TODO:, +12:u08:general., +15:u03:integration, +10:u13:(todo:, +9:uI2:(:-.), +10:u04:(TODO:, +15:u02:integration, +10:u12:(todo:, +7:u22:(TO, +8:u23:(TOD, +9:uI1:(:-.), +10:u03:(TODO:, +12:u07:general., +15:u01:integration, +10:u11:(todo:, +9:uI0:(:-.), +10:u02:(TODO:, +12:u06:general., +15:u00:integration, +10:u10:(todo:, +12:u14:general., +10:u01:(TODO:, +12:u05:general., +13:u08:inference, +12:u13:general., +10:u00:(TODO:, +12:u04:general., +17:u08:Specifically,, +13:u07:inference, +12:u12:general., +12:u03:general., +13:u06:inference, +12:u11:general., +12:u14:bayesian, +12:u02:general., +17:u07:Specifically,, +13:u05:inference, +12:u10:general., +12:u13:bayesian, +12:u01:general., +17:u06:Specifically,, +13:u04:inference, +12:u12:bayesian, +7:u22:Bay, +8:u23:Baye, +12:u00:general., +17:u05:Specifically,, +13:u03:inference, +12:u11:bayesian, +17:u04:Specifically,, +13:u02:inference, +12:u10:bayesian, +17:u03:Specifically,, +13:u01:inference, +17:u02:Specifically,, +14:u08:Likelihood, +13:u00:inference, +17:u01:Specifically,, +17:u00:Specifically,, +14:u07:Likelihood, +14:u06:Likelihood, +8:u08:Side, +14:u14:likelihood, +14:u05:Likelihood, +14:u13:likelihood, +14:u04:Likelihood, +8:u07:Side, +18:u08:(acknowledging, +14:u12:likelihood, +14:u03:Likelihood, +8:u06:Side, +18:u07:(acknowledging, +14:u11:likelihood, +14:u02:Likelihood, +8:u05:Side, +10:u08:lowers, +18:u06:(acknowledging, +14:u10:likelihood, +14:u01:Likelihood, +8:u04:Side, +18:u05:(acknowledging, +7:u22:Sid, +8:u23:Side, +14:u00:Likelihood, +8:u03:Side, +10:u07:lowers, +18:u04:(acknowledging, +8:u02:Side, +10:u06:lowers, +18:u03:(acknowledging, +10:u14:lowers, +8:u01:Side, +10:u05:lowers, +18:u02:(acknowledging, +10:u13:lowers, +8:u00:Side, +10:u04:lowers, +18:u01:(acknowledging, +10:u12:lowers, +10:u03:lowers, +18:u00:(acknowledging, +10:u11:lowers, +10:u02:lowers, +10:u10:lowers, +13:u14:inference, +10:u01:lowers, +17:u08:measurements., +13:u13:inference, +10:u00:lowers, +17:u07:measurements., +13:u12:inference, +17:u06:measurements., +13:u11:inference, +17:u05:measurements., +13:u10:inference, +17:u04:measurements., +17:u03:measurements., +11:u08:schemes, +17:u02:measurements., +11:u07:schemes, +11:u08:affects, +17:u01:measurements., +11:u06:schemes, +17:u00:measurements., +11:u05:schemes, +11:u07:affects, +11:u04:schemes, +11:u06:affects, +11:u03:schemes, +11:u14:affects, +11:u05:affects, +11:u02:schemes, +11:u13:affects, +11:u04:affects, +11:u01:schemes, +11:u12:affects, +11:u03:affects, +11:u08:behaved, +11:u00:schemes, +11:u11:affects, +11:u02:affects, +11:u10:affects, +11:u01:affects, +11:u07:behaved, +16:u08:non-positive, +11:u00:affects, +11:u06:behaved, +11:u08:Results, +16:u07:non-positive, +11:u14:behaved, +11:u05:behaved, +16:u06:non-positive, +11:u13:behaved, +11:u14:predict, +11:u04:behaved, +11:u07:Results, +16:u05:non-positive, +11:u12:behaved, +11:u13:predict, +11:u03:behaved, +11:u06:Results, +16:u04:non-positive, +11:u11:behaved, +11:u12:predict, +11:u02:behaved, +11:u05:Results, +11:u08:fitting, +16:u03:non-positive, +11:u10:behaved, +11:u11:predict, +11:u01:behaved, +11:u04:Results, +16:u02:non-positive, +11:u10:predict, +8:u23:Resu, +11:u00:behaved, +11:u03:Results, +11:u07:fitting, +11:u08:impact., +16:u01:non-positive, +14:u08:confirming, +11:u02:Results, +11:u06:fitting, +16:u00:non-positive, +14:u07:confirming, +11:u14:fitting, +11:u01:Results, +11:u05:fitting, +11:u07:impact., +14:u06:confirming, +11:u13:fitting, +11:u00:Results, +11:u04:fitting, +11:u06:impact., +14:u05:confirming, +11:u12:fitting, +11:u14:impact., +8:u23:fitt, +11:u03:fitting, +11:u05:impact., +14:u04:confirming, +11:u11:fitting, +11:u13:impact., +11:u02:fitting, +11:u04:impact., +14:u03:confirming, +11:u10:fitting, +11:u12:impact., +8:u23:impa, +11:u01:fitting, +11:u03:impact., +14:u02:confirming, +10:u08:(other, +11:u11:impact., +11:u00:fitting, +11:u02:impact., +13:u08:unstable., +14:u01:confirming, +10:u07:(other, +11:u10:impact., +11:u01:impact., +14:u00:confirming, +10:u06:(other, +8:uI2:,""-, +11:u00:impact., +13:u07:unstable., +16:u08:(eventually), +10:u05:(other, +8:uI1:,""-, +13:u06:unstable., +10:u04:(other, +13:u14:unstable., +8:uI0:,""-, +13:u05:unstable., +16:u07:(eventually), +10:u03:(other, +13:u13:unstable., +13:u04:unstable., +16:u06:(eventually), +10:u02:(other, +14:u08:accomodate, +13:u12:unstable., +16:u14:(eventually), +8:u23:unst, +13:u03:unstable., +16:u05:(eventually), +11:u08:(mainly, +10:u01:(other, +14:u07:accomodate, +13:u11:unstable., +16:u13:(eventually), +13:u02:unstable., +16:u04:(eventually), +10:u00:(other, +14:u06:accomodate, +13:u10:unstable., +16:u12:(eventually), +7:u22:(ev, +8:u23:(eve, +13:u01:unstable., +16:u03:(eventually), +11:u07:(mainly, +14:u05:accomodate, +16:u11:(eventually), +13:u00:unstable., +16:u02:(eventually), +11:u06:(mainly, +14:u04:accomodate, +16:u10:(eventually), +11:u14:(mainly, +16:u01:(eventually), +11:u05:(mainly, +14:u03:accomodate, +11:u13:(mainly, +16:u00:(eventually), +11:u04:(mainly, +14:u02:accomodate, +11:u12:(mainly, +7:u22:(ma, +8:u23:(mai, +11:u03:(mainly, +14:u01:accomodate, +11:u11:(mainly, +11:u02:(mainly, +14:u00:accomodate, +13:u08:interval., +11:u10:(mainly, +11:u01:(mainly, +13:u07:interval., +11:u00:(mainly, +13:u06:interval., +13:u05:interval., +13:u04:interval., +13:u03:interval., +13:u02:interval., +13:u01:interval., +10:u14:search, +8:u23:Exit, +13:u00:interval., +10:u13:search, +13:u08:posterior, +10:u12:search, +13:u07:posterior, +14:u08:integrable, +10:u11:search, +13:u06:posterior, +14:u07:integrable, +10:u10:search, +13:u05:posterior, +14:u06:integrable, +14:u08:precision., +13:u04:posterior, +14:u05:integrable, +11:u08:method,, +13:u03:posterior, +14:u04:integrable, +11:u07:method,, +14:u07:precision., +13:u02:posterior, +14:u03:integrable, +11:u06:method,, +14:u06:precision., +13:u01:posterior, +14:u02:integrable, +11:u05:method,, +14:u14:precision., +14:u05:precision., +13:u00:posterior, +14:u01:integrable, +11:u04:method,, +14:u13:precision., +14:u04:precision., +14:u00:integrable, +11:u03:method,, +14:u12:precision., +14:u03:precision., +11:u02:method,, +14:u11:precision., +14:u02:precision., +11:u01:method,, +14:u10:precision., +14:u01:precision., +11:u00:method,, +14:u00:precision., +12:u08:Contrary, +11:u08:shapes), +11:u07:shapes), +12:u07:Contrary, +11:u06:shapes), +12:u06:Contrary, +11:u05:shapes), +12:u14:contrary, +12:u05:Contrary, +11:u04:shapes), +12:u13:contrary, +12:u04:Contrary, +17:u08:equilibrium),, +11:u03:shapes), +12:u12:contrary, +12:u03:Contrary, +15:u08:equilibrium, +11:u02:shapes), +11:u08:average, +12:u11:contrary, +12:u02:Contrary, +17:u07:equilibrium),, +11:u01:shapes), +11:u07:average, +13:u08:estimates, +12:u10:contrary, +12:u01:Contrary, +17:u06:equilibrium),, +15:u07:equilibrium, +11:u00:shapes), +11:u06:average, +13:u07:estimates, +17:u14:equilibrium),, +12:u00:Contrary, +17:u05:equilibrium),, +15:u06:equilibrium, +11:u05:average, +13:u06:estimates, +17:u13:equilibrium),, +15:u14:equilibrium, +17:u04:equilibrium),, +15:u05:equilibrium, +11:u04:average, +13:u05:estimates, +9:u08:trend, +17:u12:equilibrium),, +15:u13:equilibrium, +17:u03:equilibrium),, +15:u04:equilibrium, +16:u08:independence, +11:u03:average, +13:u04:estimates, +9:u07:trend, +17:u11:equilibrium),, +15:u12:equilibrium, +17:u02:equilibrium),, +15:u03:equilibrium, +11:u02:average, +13:u03:estimates, +9:u06:trend, +17:u10:equilibrium),, +15:u11:equilibrium, +17:u01:equilibrium),, +15:u02:equilibrium, +16:u07:independence, +11:u01:average, +13:u02:estimates, +9:u05:trend, +15:u10:equilibrium, +17:u00:equilibrium),, +15:u01:equilibrium, +16:u06:independence, +15:u08:conclusion., +11:u00:average, +13:u01:estimates, +9:u04:trend, +16:u14:independence, +15:u00:equilibrium, +16:u05:independence, +13:u00:estimates, +9:u03:trend, +16:u13:independence, +16:u04:independence, +15:u07:conclusion., +9:u02:trend, +13:u08:requiring, +16:u12:independence, +16:u03:independence, +15:u06:conclusion., +9:u01:trend, +13:u07:requiring, +16:u11:independence, +15:u14:conclusion., +16:u02:independence, +15:u05:conclusion., +9:u00:trend, +13:u06:requiring, +16:u10:independence, +15:u13:conclusion., +16:u01:independence, +15:u04:conclusion., +14:u08:generator., +13:u05:requiring, +15:u12:conclusion., +16:u00:independence, +15:u03:conclusion., +13:u04:requiring, +15:u11:conclusion., +7:uI2:.:., +15:u02:conclusion., +14:u07:generator., +13:u03:requiring, +15:u10:conclusion., +7:uI1:.:., +15:u01:conclusion., +14:u06:generator., +12:u08:agnostic, +13:u02:requiring, +14:u14:generator., +7:uI0:.:., +15:u00:conclusion., +14:u05:generator., +13:u01:requiring, +14:u13:generator., +14:u04:generator., +12:u07:agnostic, +13:u00:requiring, +14:u12:generator., +14:u03:generator., +12:u06:agnostic, +14:u11:generator., +12:u14:agnostic, +14:u02:generator., +12:u05:agnostic, +14:u10:generator., +12:u13:agnostic, +14:u01:generator., +12:u04:agnostic, +12:u12:agnostic, +7:u22:agn, +8:u23:agno, +14:u00:generator., +12:u03:agnostic, +12:u11:agnostic, +12:u02:agnostic, +12:u10:agnostic, +12:u01:agnostic, +12:u00:agnostic, +8:u08:CPUs, +10:u14:region, +14:u08:increasing, +8:u07:CPUs, +10:u13:region, +8:u06:CPUs, +10:u12:region, +14:u07:increasing, +8:u05:CPUs, +10:u11:region, +14:u06:increasing, +8:u04:CPUs, +12:u08:longer)., +10:u10:region, +14:u14:increasing, +14:u05:increasing, +8:u03:CPUs, +12:u07:longer)., +14:u13:increasing, +7:u14:5.1, +14:u04:increasing, +13:u08:logarithm, +8:u02:CPUs, +12:u06:longer)., +14:u12:increasing, +7:u13:5.1, +14:u03:increasing, +8:u01:CPUs, +12:u05:longer)., +12:u08:(instead, +14:u11:increasing, +7:u12:5.1, +7:u23:5.1, +14:u02:increasing, +13:u07:logarithm, +8:u00:CPUs, +12:u04:longer)., +12:u07:(instead, +14:u10:increasing, +7:u11:5.1, +14:u01:increasing, +13:u06:logarithm, +12:u03:longer)., +12:u06:(instead, +7:u10:5.1, +13:u14:logarithm, +14:u00:increasing, +13:u05:logarithm, +12:u02:longer)., +12:u05:(instead, +13:u13:logarithm, +13:u04:logarithm, +12:u01:longer)., +12:u04:(instead, +18:u08:exponentials"), +13:u12:logarithm, +13:u03:logarithm, +12:u00:longer)., +12:u03:(instead, +18:u07:exponentials"), +13:u11:logarithm, +9:uI2:),""., +13:u02:logarithm, +12:u02:(instead, +18:u06:exponentials"), +13:u10:logarithm, +9:uI1:),""., +6:uI2:(", +13:u01:logarithm, +14:u08:systematic, +12:u01:(instead, +18:u05:exponentials"), +9:uI0:),""., +6:uI1:(", +13:u00:logarithm, +15:u08:integrator., +12:u00:(instead, +18:u04:exponentials"), +6:uI0:(", +14:u07:systematic, +18:u03:exponentials"), +13:u08:Otherwise, +13:u14:estimates, +14:u06:systematic, +15:u07:integrator., +18:u02:exponentials"), +13:u07:Otherwise, +19:u08:unrealistically, +13:u13:estimates, +14:u14:systematic, +8:u23:Curr, +14:u05:systematic, +15:u06:integrator., +18:u01:exponentials"), +13:u06:Otherwise, +19:u07:unrealistically, +13:u12:estimates, +14:u13:systematic, +15:u14:integrator., +14:u04:systematic, +15:u05:integrator., +18:u00:exponentials"), +13:u05:Otherwise, +19:u06:unrealistically, +13:u11:estimates, +14:u12:systematic, +15:u13:integrator., +14:u03:systematic, +15:u04:integrator., +13:u04:Otherwise, +19:u05:unrealistically, +13:u08:Primitive, +13:u10:estimates, +14:u11:systematic, +15:u12:integrator., +14:u02:systematic, +15:u03:integrator., +13:u08:function;, +13:u03:Otherwise, +19:u04:unrealistically, +13:u07:Primitive, +14:u10:systematic, +15:u11:integrator., +14:u01:systematic, +15:u02:integrator., +13:u02:Otherwise, +19:u03:unrealistically, +13:u06:Primitive, +15:u10:integrator., +14:u00:systematic, +15:u01:integrator., +13:u07:function;, +13:u01:Otherwise, +19:u02:unrealistically, +13:u05:Primitive, +15:u00:integrator., +13:u06:function;, +13:u00:Otherwise, +19:u01:unrealistically, +13:u04:Primitive, +13:u14:function;, +13:u05:function;, +19:u00:unrealistically, +13:u03:Primitive, +13:u13:function;, +13:u04:function;, +13:u02:Primitive, +13:u12:function;, +13:u03:function;, +13:u01:Primitive, +10:u08:easily, +13:u11:function;, +13:u02:function;, +13:u00:Primitive, +10:u07:easily, +13:u10:function;, +13:u01:function;, +10:u06:easily, +13:u00:function;, +10:u05:easily, +10:u04:easily, +10:u03:easily, +7:uI2:(-,, +10:u02:easily, +7:uI1:(-,, +7:uI2:).-, +10:u01:easily, +7:uI0:(-,, +7:uI1:).-, +10:u00:easily, +11:u08:staying, +7:uI0:).-, +11:u07:staying, +11:u06:staying, +13:u08:symmetric, +11:u05:staying, +13:u07:symmetric, +9:u08:tests, +11:u04:staying, +13:u06:symmetric, +11:u03:staying, +13:u05:symmetric, +9:u07:tests, +12:u08:rounding, +11:u02:staying, +13:u04:symmetric, +9:u06:tests, +11:u01:staying, +13:u03:symmetric, +9:u14:tests, +9:u05:tests, +12:u07:rounding, +12:u08:formulas, +11:u00:staying, +13:u02:symmetric, +9:u13:tests, +9:u04:tests, +12:u06:rounding, +13:u01:symmetric, +9:u12:tests, +9:u03:tests, +12:u05:rounding, +12:u07:formulas, +13:u08:formulas,, +13:u00:symmetric, +9:u11:tests, +9:u02:tests, +12:u04:rounding, +12:u06:formulas, +11:u08:places., +9:u10:tests, +12:u14:formulas, +9:u01:tests, +12:u03:rounding, +12:u05:formulas, +13:u07:formulas,, +13:u08:Overflows, +12:u13:formulas, +9:u00:tests, +12:u02:rounding, +12:u04:formulas, +13:u06:formulas,, +11:u07:places., +13:u07:Overflows, +12:u12:formulas, +13:u14:formulas,, +12:u01:rounding, +12:u03:formulas, +13:u05:formulas,, +11:u06:places., +13:u06:Overflows, +15:u08:approximate, +12:u11:formulas, +13:u13:formulas,, +11:u14:places., +12:u00:rounding, +12:u02:formulas, +13:u04:formulas,, +11:u05:places., +13:u05:Overflows, +15:u07:approximate, +12:u10:formulas, +13:u12:formulas,, +11:u13:places., +12:u01:formulas, +13:u03:formulas,, +11:u04:places., +19:u08:discontinuities, +13:u04:Overflows, +15:u06:approximate, +13:u11:formulas,, +11:u12:places., +12:u00:formulas, +13:u02:formulas,, +11:u03:places., +13:u03:Overflows, +15:u05:approximate, +13:u10:formulas,, +11:u11:places., +13:u01:formulas,, +11:u02:places., +19:u07:discontinuities, +13:u02:Overflows, +15:u04:approximate, +11:u10:places., +13:u00:formulas,, +11:u01:places., +19:u06:discontinuities, +13:u01:Overflows, +15:u03:approximate, +19:u14:discontinuities, +11:u00:places., +19:u05:discontinuities, +13:u00:Overflows, +15:u02:approximate, +19:u13:discontinuities, +19:u04:discontinuities, +14:u08:activation, +15:u01:approximate, +19:u12:discontinuities, +19:u03:discontinuities, +11:u08:Formula, +15:u00:approximate, +19:u11:discontinuities, +19:u02:discontinuities, +14:u07:activation, +19:u10:discontinuities, +19:u01:discontinuities, +14:u06:activation, +11:u07:Formula, +14:u14:activation, +19:u00:discontinuities, +14:u05:activation, +11:u06:Formula, +14:u13:activation, +14:u04:activation, +11:u05:Formula, +14:u12:activation, +14:u03:activation, +11:u04:Formula, +14:u11:activation, +12:uI2:(),()(),, +14:u02:activation, +11:u03:Formula, +13:u08:Function., +14:u10:activation, +12:uI1:(),()(),, +14:u01:activation, +11:u02:Formula, +12:uI0:(),()(),, +33:uI2:(*((/))*[((/)(/))/((/))])/(/), +14:u00:activation, +11:u01:Formula, +13:u07:Function., +33:uI1:(*((/))*[((/)(/))/((/))])/(/), +11:u00:Formula, +13:u06:Function., +33:uI0:(*((/))*[((/)(/))/((/))])/(/), +13:u05:Function., +13:u04:Function., +13:u08:InputForm, +13:u03:Function., +13:u07:InputForm, +13:u02:Function., +13:u06:InputForm, +6:u08:(b, +13:u01:Function., +13:u05:InputForm, +6:u07:(b, +13:u00:Function., +13:u04:InputForm, +6:u06:(b, +33:uI2:((*((-((-)/))-(-(/))))/[]*[/], +13:u03:InputForm, +6:u05:(b, +33:uI1:((*((-((-)/))-(-(/))))/[]*[/], +21:uI2:(-)*[(-)/])/([/]), +13:u02:InputForm, +6:u04:(b, +33:uI0:((*((-((-)/))-(-(/))))/[]*[/], +21:uI1:(-)*[(-)/])/([/]), +18:u08:(independently, +13:u01:InputForm, +6:u03:(b, +21:uI0:(-)*[(-)/])/([/]), +13:u00:InputForm, +6:u02:(b, +8:u08:and), +18:u07:(independently, +18:u08:dimensionless,, +6:u01:(b, +8:u07:and), +18:u06:(independently, +6:u00:(b, +8:u06:and), +18:u14:(independently, +18:u05:(independently, +18:u07:dimensionless,, +8:u05:and), +18:u13:(independently, +11:uI2:()(-,)., +18:u04:(independently, +18:u06:dimensionless,, +8:u04:and), +9:u08:"mrr", +18:u12:(independently, +18:u14:dimensionless,, +11:uI1:()(-,)., +18:u03:(independently, +18:u05:dimensionless,, +8:u03:and), +9:u07:"mrr", +18:u11:(independently, +18:u13:dimensionless,, +11:uI0:()(-,)., +18:u02:(independently, +18:u04:dimensionless,, +8:u02:and), +9:u06:"mrr", +18:u10:(independently, +18:u12:dimensionless,, +7:u22:dim, +8:u23:dime, +18:u01:(independently, +18:u03:dimensionless,, +8:u01:and), +9:u05:"mrr", +13:u08:"stretch", +18:u11:dimensionless,, +18:u00:(independently, +18:u02:dimensionless,, +17:u08:Distribution., +8:u00:and), +9:u04:"mrr", +13:u07:"stretch", +18:u10:dimensionless,, +18:u01:dimensionless,, +9:u03:"mrr", +13:u06:"stretch", +18:u00:dimensionless,, +17:u07:Distribution., +9:u02:"mrr", +13:u05:"stretch", +17:u06:Distribution., +9:u01:"mrr", +13:u04:"stretch", +17:u05:Distribution., +14:u08:integrator, +9:u00:"mrr", +13:u03:"stretch", +17:u04:Distribution., +10:u08:biased, +13:u02:"stretch", +17:u03:Distribution., +14:u07:integrator, +16:u08:deliberately, +13:u01:"stretch", +17:u02:Distribution., +14:u06:integrator, +10:u07:biased, +8:u08:(-1,, +13:u00:"stretch", +14:u14:integrator, +17:u01:Distribution., +14:u05:integrator, +10:u06:biased, +16:u07:deliberately, +14:u13:integrator, +10:u14:biased, +17:u00:Distribution., +14:u04:integrator, +10:u05:biased, +16:u06:deliberately, +8:u07:(-1,, +14:u12:integrator, +10:u13:biased, +16:u14:deliberately, +14:u03:integrator, +10:u04:biased, +16:u05:deliberately, +8:u06:(-1,, +11:u08:(within, +14:u11:integrator, +10:u12:biased, +16:u13:deliberately, +8:u14:(-1,, +7:u22:bia, +8:u23:bias, +14:u02:integrator, +10:u03:biased, +16:u04:deliberately, +8:u05:(-1,, +12:u08:designed, +14:u10:integrator, +10:u11:biased, +16:u12:deliberately, +8:u13:(-1,, +10:uI2:(-,),., +14:u01:integrator, +10:u02:biased, +16:u03:deliberately, +8:u04:(-1,, +11:u07:(within, +10:u10:biased, +16:u11:deliberately, +8:u12:(-1,, +6:u21:(-, +7:u22:(-1, +8:u23:(-1,, +10:uI1:(-,),., +14:u00:integrator, +10:u01:biased, +16:u02:deliberately, +8:u03:(-1,, +11:u06:(within, +12:u07:designed, +16:u10:deliberately, +8:u11:(-1,, +11:u14:(within, +10:uI0:(-,),., +10:u00:biased, +16:u01:deliberately, +8:u02:(-1,, +11:u05:(within, +12:u06:designed, +8:u10:(-1,, +11:u13:(within, +12:u14:designed, +16:u00:deliberately, +8:u01:(-1,, +11:u04:(within, +12:u05:designed, +11:u12:(within, +12:u13:designed, +8:u00:(-1,, +11:u03:(within, +12:u04:designed, +10:u08:center, +11:u11:(within, +12:u12:designed, +11:u02:(within, +12:u03:designed, +9:u08:come,, +11:u10:(within, +12:u11:designed, +11:u01:(within, +12:u02:designed, +10:u07:center, +12:u10:designed, +11:u00:(within, +12:u01:designed, +10:u06:center, +9:u07:come,, +10:u14:center, +12:u00:designed, +10:u05:center, +9:u06:come,, +10:u08:sample, +10:u13:center, +9:u14:come,, +10:u04:center, +9:u05:come,, +10:u07:sample, +10:u12:center, +9:u13:come,, +10:u03:center, +9:u04:come,, +10:u06:sample, +10:u11:center, +9:u12:come,, +10:u02:center, +9:u03:come,, +13:u08:default)., +10:u05:sample, +14:u08:covariance, +10:u10:center, +9:u11:come,, +8:u14:(for, +10:u01:center, +9:u02:come,, +10:u04:sample, +14:u07:covariance, +9:u10:come,, +8:u13:(for, +10:u00:center, +9:u01:come,, +13:u07:default)., +10:u03:sample, +14:u06:covariance, +8:u12:(for, +9:u00:come,, +13:u06:default)., +10:u02:sample, +14:u05:covariance, +8:u11:(for, +13:u14:default)., +7:u22:ave, +8:u23:aver, +13:u05:default)., +10:u01:sample, +14:u04:covariance, +8:u10:(for, +13:u13:default)., +13:u04:default)., +10:u00:sample, +14:u03:covariance, +13:u12:default)., +13:u03:default)., +14:u02:covariance, +13:u11:default)., +13:u02:default)., +14:u01:covariance, +13:u10:default)., +12:u14:locating, +13:u01:default)., +14:u00:covariance, +12:u13:locating, +13:u00:default)., +12:u12:locating, +12:u11:locating, +12:u10:locating, +10:u08:logic,, +10:u07:logic,, +9:u08:Basis, +10:u06:logic,, +10:u14:logic,, +10:u05:logic,, +9:u07:Basis, +10:u13:logic,, +10:u04:logic,, +9:u06:Basis, +10:u12:logic,, +10:u03:logic,, +9:u05:Basis, +14:u08:consequent, +10:u11:logic,, +10:u02:logic,, +9:u04:Basis, +10:u10:logic,, +8:u23:Basi, +10:u01:logic,, +9:u03:Basis, +14:u07:consequent, +11:u08:higher., +10:u00:logic,, +9:u02:Basis, +14:u06:consequent, +15:u08:maintained., +10:u08:Sorted, +14:u14:consequent, +9:u01:Basis, +14:u05:consequent, +11:u07:higher., +10:u07:Sorted, +14:u13:consequent, +9:u00:Basis, +14:u04:consequent, +11:u06:higher., +15:u07:maintained., +16:u08:encountered,, +10:u06:Sorted, +14:u12:consequent, +11:u14:higher., +14:u03:consequent, +11:u05:higher., +15:u06:maintained., +10:u05:Sorted, +14:u11:consequent, +11:u13:higher., +15:u14:maintained., +14:u02:consequent, +11:u04:higher., +15:u05:maintained., +16:u07:encountered,, +10:u04:Sorted, +14:u10:consequent, +11:u12:higher., +15:u13:maintained., +14:u01:consequent, +11:u03:higher., +15:u04:maintained., +16:u06:encountered,, +10:u03:Sorted, +11:u11:higher., +15:u12:maintained., +16:u14:encountered,, +14:u00:consequent, +11:u02:higher., +15:u03:maintained., +16:u05:encountered,, +10:u02:Sorted, +11:u10:higher., +15:u11:maintained., +16:u13:encountered,, +11:u01:higher., +15:u02:maintained., +16:u04:encountered,, +10:u01:Sorted, +15:u08:consecutive, +15:u10:maintained., +16:u12:encountered,, +11:u00:higher., +15:u01:maintained., +16:u03:encountered,, +10:u00:Sorted, +15:u07:consecutive, +16:u11:encountered,, +15:u00:maintained., +16:u02:encountered,, +15:u06:consecutive, +16:u10:encountered,, +16:u01:encountered,, +15:u05:consecutive, +12:u08:smallest, +16:u00:encountered,, +15:u04:consecutive, +12:u07:smallest, +15:u03:consecutive, +12:u06:smallest, +15:u02:consecutive, +12:u05:smallest, +15:u01:consecutive, +12:u04:smallest, +15:u00:consecutive, +12:u03:smallest, +12:u02:smallest, +12:u01:smallest, +10:u14:fairly, +16:u08:Benchmarking, +12:u00:smallest, +10:u13:fairly, +10:u12:fairly, +8:u23:fair, +16:u07:Benchmarking, +20:u08:characterization, +10:u11:fairly, +16:u06:Benchmarking, +20:u07:characterization, +14:u08:laboratory, +10:u10:fairly, +16:u14:benchmarking, +20:u06:characterization, +14:u07:laboratory, +20:u05:characterization, +14:u06:laboratory, +20:u04:characterization, +14:u05:laboratory, +20:u03:characterization, +14:u04:laboratory, +20:u02:characterization, +14:u03:laboratory, +16:u08:benchmarking, +20:u01:characterization, +14:u02:laboratory, +16:u07:benchmarking, +20:u00:characterization, +14:u01:laboratory, +16:u06:benchmarking, +14:u00:laboratory, +16:u05:benchmarking, +10:u08:solely, +16:u04:benchmarking, +16:u03:benchmarking, +10:u07:solely, +16:u02:benchmarking, +12:u14:further,, +10:u06:solely, +16:u01:benchmarking, +12:u13:further,, +10:u14:solely, +9:uI2:,"-",, +10:u05:solely, +16:u00:benchmarking, +12:u12:further,, +10:u13:solely, +9:uI1:,"-",, +10:u04:solely, +12:u11:further,, +10:u12:solely, +9:uI0:,"-",, +10:u03:solely, +6:u08:.., +12:u10:further,, +10:u11:solely, +10:u02:solely, +10:u10:solely, +8:u23:benc, +10:u01:solely, +6:u07:.., +10:u00:solely, +6:u06:.., +6:u14:.., +6:u05:.., +6:u13:.., +6:u04:.., +16:u08:Interconnect, +6:u12:.., +6:u22:.., +6:u23:.., +6:u03:.., +46:u08:<https://www.rfc-editor.org/info/rfc2544>., +16:u07:Interconnect, +21:u08:10.17487/RFC2544,, +6:u11:.., +6:u02:.., +16:u06:Interconnect, +21:u07:10.17487/RFC2544,, +6:u10:.., +6:u01:.., +46:u07:<https://www.rfc-editor.org/info/rfc2544>., +16:u05:Interconnect, +21:u06:10.17487/RFC2544,, +6:u00:.., +46:u06:<https://www.rfc-editor.org/info/rfc2544>., +16:u04:Interconnect, +21:u05:10.17487/RFC2544,, +46:u14:<https://www.rfc-editor.org/info/rfc2544>., +46:u05:<https://www.rfc-editor.org/info/rfc2544>., +16:u03:Interconnect, +21:u04:10.17487/RFC2544,, +46:u13:<https://www.rfc-editor.org/info/rfc2544>., +46:u04:<https://www.rfc-editor.org/info/rfc2544>., +42:u08:[draft-vpolak-mkonstan-bmwg-mlrsearch], +16:u02:Interconnect, +21:u03:10.17487/RFC2544,, +46:u12:<https://www.rfc-editor.org/info/rfc2544>., +46:u03:<https://www.rfc-editor.org/info/rfc2544>., +13:u08:"Multiple, +16:u01:Interconnect, +21:u02:10.17487/RFC2544,, +46:u11:<https://www.rfc-editor.org/info/rfc2544>., +46:u02:<https://www.rfc-editor.org/info/rfc2544>., +42:u07:[draft-vpolak-mkonstan-bmwg-mlrsearch], +17:u08:(MLRsearch)",, +16:u00:Interconnect, +21:u01:10.17487/RFC2544,, +46:u10:<https://www.rfc-editor.org/info/rfc2544>., +46:u01:<https://www.rfc-editor.org/info/rfc2544>., +42:u06:[draft-vpolak-mkonstan-bmwg-mlrsearch], +13:u07:"Multiple, +42:u08:draft-vpolak-mkonstan-bmwg-mlrsearch>., +21:u00:10.17487/RFC2544,, +42:u14:[draft-vpolak-mkonstan-bmwg-mlrsearch], +46:u00:<https://www.rfc-editor.org/info/rfc2544>., +42:u05:[draft-vpolak-mkonstan-bmwg-mlrsearch], +13:u06:"Multiple, +17:u07:(MLRsearch)",, +42:u13:[draft-vpolak-mkonstan-bmwg-mlrsearch], +10:uI2:[----], +42:u04:[draft-vpolak-mkonstan-bmwg-mlrsearch], +13:u05:"Multiple, +17:u06:(MLRsearch)",, +42:u07:draft-vpolak-mkonstan-bmwg-mlrsearch>., +10:u08:Maciek, +42:u12:[draft-vpolak-mkonstan-bmwg-mlrsearch], +17:u14:(mlrsearch)",, +6:u21:[d, +7:u22:[dr, +8:u23:[dra, +10:uI1:[----], +42:u03:[draft-vpolak-mkonstan-bmwg-mlrsearch], +13:u04:"Multiple, +17:u05:(MLRsearch)",, +42:u06:draft-vpolak-mkonstan-bmwg-mlrsearch>., +42:u11:[draft-vpolak-mkonstan-bmwg-mlrsearch], +17:u13:(mlrsearch)",, +42:u14:draft-vpolak-mkonstan-bmwg-mlrsearch>., +10:uI0:[----], +16:uI2:()",,://..//, +42:u02:[draft-vpolak-mkonstan-bmwg-mlrsearch], +13:u03:"Multiple, +17:u04:(MLRsearch)",, +42:u05:draft-vpolak-mkonstan-bmwg-mlrsearch>., +10:u07:Maciek, +42:u10:[draft-vpolak-mkonstan-bmwg-mlrsearch], +17:u12:(mlrsearch)",, +42:u13:draft-vpolak-mkonstan-bmwg-mlrsearch>., +7:u22:(ML, +8:u23:(MLR, +16:uI1:()",,://..//, +42:u01:[draft-vpolak-mkonstan-bmwg-mlrsearch], +13:u02:"Multiple, +17:u03:(MLRsearch)",, +42:u04:draft-vpolak-mkonstan-bmwg-mlrsearch>., +10:u06:Maciek, +22:u08:mkonstan@cisco.com, +17:u11:(mlrsearch)",, +42:u12:draft-vpolak-mkonstan-bmwg-mlrsearch>., +10:u14:maciek, +16:uI0:()",,://..//, +42:u00:[draft-vpolak-mkonstan-bmwg-mlrsearch], +13:u01:"Multiple, +17:u02:(MLRsearch)",, +42:u03:draft-vpolak-mkonstan-bmwg-mlrsearch>., +10:u05:Maciek, +22:u07:mkonstan@cisco.com, +17:u10:(mlrsearch)",, +42:u11:draft-vpolak-mkonstan-bmwg-mlrsearch>., +10:u13:maciek, +13:u00:"Multiple, +17:u01:(MLRsearch)",, +42:u02:draft-vpolak-mkonstan-bmwg-mlrsearch>., +10:u04:Maciek, +22:u06:mkonstan@cisco.com, +42:u10:draft-vpolak-mkonstan-bmwg-mlrsearch>., +10:u12:maciek, +8:u23:Maci, +17:u00:(MLRsearch)",, +42:u01:draft-vpolak-mkonstan-bmwg-mlrsearch>., +10:u03:Maciek, +10:u08:Vratko, +22:u05:mkonstan@cisco.com, +10:u11:maciek, +42:u00:draft-vpolak-mkonstan-bmwg-mlrsearch>., +10:u02:Maciek, +22:u04:mkonstan@cisco.com, +9:u08:Polak, +10:u10:maciek, +10:u01:Maciek, +10:u07:Vratko, +22:u03:mkonstan@cisco.com, +9:u07:Polak, +10:u00:Maciek, +10:u06:Vratko, +22:u02:mkonstan@cisco.com, +9:u06:Polak, +21:u08:vrpolak@cisco.com, +10:u14:vratko, +10:u05:Vratko, +22:u01:mkonstan@cisco.com, +9:u05:Polak, +21:u07:vrpolak@cisco.com, +10:u13:vratko, +10:u04:Vratko, +22:u00:mkonstan@cisco.com, +9:u04:Polak, +21:u06:vrpolak@cisco.com, +10:u12:vratko, +6:u21:Vr, +7:u22:Vra, +8:u23:Vrat, +10:u03:Vratko, +9:u03:Polak, +21:u05:vrpolak@cisco.com, +10:u11:vratko, +10:u02:Vratko, +9:u02:Polak, +21:u04:vrpolak@cisco.com, +10:u10:vratko, +10:u01:Vratko, +9:u01:Polak, +21:u03:vrpolak@cisco.com, +10:u00:Vratko, +9:u00:Polak, +21:u02:vrpolak@cisco.com, +7:u08:Tor, +13:u06:Learmonth, +11:u08:Project, +7:u07:Tor, +13:u05:Learmonth, +11:u07:Project, +7:u06:Tor, +13:u04:Learmonth, +11:u06:Project, +7:u14:tor, +7:u05:Tor, +13:u03:Learmonth, +11:u05:Project, +7:u13:tor, +7:u04:Tor, +49:u08:draft-irtf-pearg-safe-internet-measurement-01, +13:u02:Learmonth, +11:u04:Project, +7:u12:tor, +7:u22:Tor, +7:u23:Tor, +7:u03:Tor, +13:u01:Learmonth, +11:u03:Project, +7:u11:tor, +7:u02:Tor, +49:u07:draft-irtf-pearg-safe-internet-measurement-01, +15:u08:Researchers, +13:u00:Learmonth, +11:u02:Project, +7:u10:tor, +14:u14:guidelines, +7:u01:Tor, +49:u06:draft-irtf-pearg-safe-internet-measurement-01, +11:u01:Project, +14:u13:guidelines, +49:u14:draft-irtf-pearg-safe-internet-measurement-01, +7:u00:Tor, +49:u05:draft-irtf-pearg-safe-internet-measurement-01, +15:u07:Researchers, +11:u00:Project, +14:u12:guidelines, +49:u13:draft-irtf-pearg-safe-internet-measurement-01, +6:u21:Gu, +7:u22:Gui, +8:u23:Guid, +49:u04:draft-irtf-pearg-safe-internet-measurement-01, +15:u06:Researchers, +11:u08:insight, +14:u11:guidelines, +49:u12:draft-irtf-pearg-safe-internet-measurement-01, +15:u14:researchers, +49:u03:draft-irtf-pearg-safe-internet-measurement-01, +15:u05:Researchers, +11:u07:insight, +14:u10:guidelines, +49:u11:draft-irtf-pearg-safe-internet-measurement-01, +15:u13:researchers, +49:u02:draft-irtf-pearg-safe-internet-measurement-01, +15:u04:Researchers, +11:u06:insight, +49:u10:draft-irtf-pearg-safe-internet-measurement-01, +15:u12:researchers, +49:u01:draft-irtf-pearg-safe-internet-measurement-01, +15:u03:Researchers, +11:u05:insight, +15:u11:researchers, +49:u00:draft-irtf-pearg-safe-internet-measurement-01, +15:u02:Researchers, +11:u08:group's, +11:u04:insight, +15:u10:researchers, +15:u01:Researchers, +11:u03:insight, +15:u00:Researchers, +11:u07:group's, +58:u08:https://github.com/irl/draft-safe-internet-measurement, +11:u02:insight, +11:u08:sources, +11:u06:group's, +11:u01:insight, +11:u07:sources, +11:u14:group's, +11:u05:group's, +58:u07:https://github.com/irl/draft-safe-internet-measurement, +11:u00:insight, +11:u06:sources, +11:u13:group's, +10:uI2:'./()., +11:u04:group's, +58:u06:https://github.com/irl/draft-safe-internet-measurement, +11:u05:sources, +11:u12:group's, +58:u14:https://github.com/irl/draft-safe-internet-measurement, +10:uI1:'./()., +11:u03:group's, +58:u05:https://github.com/irl/draft-safe-internet-measurement, +11:u04:sources, +11:u11:group's, +58:u13:https://github.com/irl/draft-safe-internet-measurement, +10:uI0:'./()., +13:uI2:://.//---, +11:u02:group's, +58:u04:https://github.com/irl/draft-safe-internet-measurement, +11:u03:sources, +11:u10:group's, +58:u12:https://github.com/irl/draft-safe-internet-measurement, +13:uI1:://.//---, +11:u01:group's, +58:u03:https://github.com/irl/draft-safe-internet-measurement, +11:u02:sources, +58:u11:https://github.com/irl/draft-safe-internet-measurement, +13:uI0:://.//---, +11:u00:group's, +58:u02:https://github.com/irl/draft-safe-internet-measurement, +11:u01:sources, +58:u10:https://github.com/irl/draft-safe-internet-measurement, +58:u01:https://github.com/irl/draft-safe-internet-measurement, +11:u00:sources, +58:u00:https://github.com/irl/draft-safe-internet-measurement, +13:u08:Learmonth, +13:u07:Learmonth, +13:u14:learmonth, +8:u08:Safe, +13:u13:learmonth, +13:u12:learmonth, +8:u23:Lear, +8:u07:Safe, +13:u11:learmonth, +8:u06:Safe, +13:u10:learmonth, +8:u05:Safe, +8:u04:Safe, +7:u22:Saf, +8:u23:Safe, +8:u03:Safe, +8:u02:Safe, +8:u01:Safe, +8:u00:Safe, +11:u08:testbed, +11:u07:testbed, +12:u08:academic, +11:u06:testbed, +11:u14:testbed, +11:u05:testbed, +12:u07:academic, +14:u08:scientific, +11:u13:testbed, +8:u23:Perf, +11:u04:testbed, +12:u06:academic, +14:u07:scientific, +10:u08:users., +11:u12:testbed, +12:u14:academic, +11:u03:testbed, +12:u05:academic, +14:u06:scientific, +10:u07:users., +11:u11:testbed, +12:u13:academic, +11:u02:testbed, +12:u04:academic, +14:u05:scientific, +10:u06:users., +11:u10:testbed, +12:u12:academic, +7:u22:aca, +8:u23:acad, +11:u01:testbed, +12:u03:academic, +14:u04:scientific, +10:u05:users., +12:u11:academic, +11:u00:testbed, +12:u02:academic, +14:u03:scientific, +10:u04:users., +12:u10:academic, +12:u01:academic, +14:u02:scientific, +10:u03:users., +14:u14:substitute, +12:u00:academic, +11:u08:impacts, +14:u01:scientific, +10:u02:users., +14:u13:substitute, +14:u00:scientific, +10:u01:users., +14:u12:substitute, +11:u07:impacts, +10:u00:users., +10:u08:Active, +14:u11:substitute, +11:u06:impacts, +11:u08:groups:, +10:u07:Active, +14:u10:substitute, +11:u14:impacts, +11:u05:impacts, +10:u06:Active, +11:u13:impacts, +11:u04:impacts, +11:u07:groups:, +10:u05:Active, +11:u12:impacts, +11:u03:impacts, +11:u06:groups:, +21:u08:feature-dependent, +10:u04:Active, +11:u08:testing, +11:u11:impacts, +11:u14:groups:, +11:u02:impacts, +11:u05:groups:, +16:u08:[PATHspider], +10:u03:Active, +11:u07:testing, +11:u10:impacts, +11:u13:groups:, +11:u01:impacts, +11:u04:groups:, +21:u07:feature-dependent, +10:u02:Active, +11:u06:testing, +11:u12:groups:, +11:u00:impacts, +11:u03:groups:, +21:u06:feature-dependent, +16:u07:[PATHspider], +10:u01:Active, +11:u05:testing, +11:u11:groups:, +21:u14:feature-dependent, +11:u02:groups:, +21:u05:feature-dependent, +16:u06:[PATHspider], +10:u00:Active, +11:u04:testing, +11:u10:groups:, +21:u13:feature-dependent, +16:u14:[pathspider], +11:u01:groups:, +21:u04:feature-dependent, +16:u05:[PATHspider], +11:u03:testing, +21:u12:feature-dependent, +16:u13:[pathspider], +11:u00:groups:, +21:u03:feature-dependent, +16:u04:[PATHspider], +11:u02:testing, +21:u11:feature-dependent, +16:u12:[pathspider], +21:u02:feature-dependent, +16:u03:[PATHspider], +11:u01:testing, +21:u10:feature-dependent, +16:u11:[pathspider], +21:u01:feature-dependent, +16:u02:[PATHspider], +11:u00:testing, +16:u10:[pathspider], +21:u00:feature-dependent, +16:u01:[PATHspider], +16:u00:[PATHspider], +11:u08:Consent, +11:u07:Consent, +15:u08:experiment., +11:u06:Consent, +11:u05:Consent, +15:u07:experiment., +11:u04:Consent, +15:u06:experiment., +11:u03:Consent, +12:u08:Informed, +15:u14:experiment., +15:u05:experiment., +11:u02:Consent, +12:u07:Informed, +11:u08:consent, +15:u13:experiment., +15:u04:experiment., +11:u01:Consent, +12:u06:Informed, +11:u07:consent, +15:u12:experiment., +15:u03:experiment., +11:u00:Consent, +12:u05:Informed, +11:u06:consent, +15:u11:experiment., +15:u02:experiment., +12:u04:Informed, +11:u05:consent, +15:u10:experiment., +15:u01:experiment., +12:u03:Informed, +11:u04:consent, +15:u00:experiment., +11:u08:collect, +12:u02:Informed, +11:u03:consent, +14:u08:researcher, +12:u01:Informed, +11:u02:consent, +14:u07:researcher, +11:u07:collect, +12:u00:Informed, +11:u01:consent, +14:u06:researcher, +11:u06:collect, +11:u00:consent, +14:u05:researcher, +13:u08:webpages., +11:u14:collect, +11:u05:collect, +14:u04:researcher, +13:u07:webpages., +14:u08:experiment, +11:u13:collect, +11:u04:collect, +10:u08:arrest, +14:u03:researcher, +13:u06:webpages., +14:u07:experiment, +11:u12:collect, +11:u14:blocked, +11:u03:collect, +14:u02:researcher, +13:u05:webpages., +14:u06:experiment, +11:u11:collect, +11:u13:blocked, +11:u02:collect, +10:u07:arrest, +14:u01:researcher, +13:u04:webpages., +14:u05:experiment, +11:u10:collect, +11:u12:blocked, +11:u01:collect, +10:u06:arrest, +14:u00:researcher, +13:u03:webpages., +14:u04:experiment, +15:u08:proceeding., +11:u11:blocked, +10:u14:arrest, +11:u00:collect, +10:u05:arrest, +13:u02:webpages., +14:u03:experiment, +15:u07:proceeding., +11:u10:blocked, +10:u13:arrest, +10:u04:arrest, +13:u01:webpages., +14:u02:experiment, +15:u06:proceeding., +10:u12:arrest, +8:u23:arre, +10:u03:arrest, +12:u08:consent., +13:u00:webpages., +14:u01:experiment, +15:u05:proceeding., +10:u11:arrest, +10:u02:arrest, +12:u08:employer, +14:u00:experiment, +15:u04:proceeding., +10:u10:arrest, +10:u01:arrest, +12:u07:consent., +15:u03:proceeding., +10:u00:arrest, +12:u06:consent., +12:u07:employer, +15:u02:proceeding., +12:u14:consent., +12:u05:consent., +12:u06:employer, +15:u01:proceeding., +12:u13:consent., +12:u14:employer, +12:u04:consent., +12:u05:employer, +15:u00:proceeding., +12:u12:consent., +12:u13:employer, +12:u03:consent., +12:u04:employer, +12:u11:consent., +12:u12:employer, +12:u02:consent., +12:u03:employer, +12:u10:consent., +12:u11:employer, +12:u01:consent., +12:u02:employer, +12:u10:employer, +12:u00:consent., +12:u01:employer, +13:u08:corporate, +12:u00:employer, +13:u07:corporate, +13:u06:corporate, +13:u08:employees, +13:u14:corporate, +13:u05:corporate, +13:u13:corporate, +13:u04:corporate, +13:u07:employees, +13:u12:corporate, +8:u23:corp, +13:u03:corporate, +13:u06:employees, +13:u11:corporate, +13:u14:employees, +13:u02:corporate, +13:u05:employees, +13:u10:corporate, +13:u13:employees, +13:u01:corporate, +13:u04:employees, +13:u12:employees, +13:u00:corporate, +13:u03:employees, +13:u11:employees, +13:u02:employees, +13:u10:employees, +13:u01:employees, +13:u00:employees, +11:u08:Implied, +11:u07:Implied, +11:u06:Implied, +14:u08:practical., +11:u05:Implied, +14:u07:practical., +9:u08:align, +11:u04:Implied, +14:u06:practical., +11:u03:Implied, +14:u05:practical., +9:u07:align, +11:u02:Implied, +14:u04:practical., +10:u08:using., +9:u06:align, +11:u01:Implied, +14:u03:practical., +10:u07:using., +9:u14:align, +9:u05:align, +11:u00:Implied, +14:u02:practical., +10:u06:using., +12:u08:perform., +9:u13:align, +9:u04:align, +14:u01:practical., +10:u05:using., +12:u07:perform., +9:u12:align, +9:u03:align, +14:u00:practical., +10:u04:using., +12:u06:perform., +9:u11:align, +9:u02:align, +10:u03:using., +12:u05:perform., +9:u10:align, +11:u14:implied, +9:u01:align, +16:u08:expectations, +10:u02:using., +12:u04:perform., +11:u13:implied, +14:u14:experiment, +9:u00:align, +10:u01:using., +12:u03:perform., +11:u12:implied, +14:u13:experiment, +16:u07:expectations, +10:u00:using., +12:u02:perform., +11:u11:implied, +14:u12:experiment, +16:u06:expectations, +12:u01:perform., +11:u10:implied, +14:u11:experiment, +16:u14:expectations, +16:u05:expectations, +12:u00:perform., +14:u10:experiment, +16:u13:expectations, +16:u04:expectations, +16:u12:expectations, +16:u03:expectations, +11:u08:popular, +16:u11:expectations, +16:u02:expectations, +11:u07:popular, +11:u08:surveys, +16:u10:expectations, +16:u01:expectations, +11:u06:popular, +11:u07:surveys, +16:u00:expectations, +11:u05:popular, +11:u06:surveys, +11:u04:popular, +11:u05:surveys, +11:u03:popular, +11:u04:surveys, +11:u02:popular, +11:u03:surveys, +9:u08:back., +11:u01:popular, +11:u02:surveys, +14:u08:software's, +11:u00:popular, +11:u01:surveys, +9:u07:back., +11:u00:surveys, +15:u08:auto-update, +9:u06:back., +14:u07:software's, +15:u07:auto-update, +11:u08:metrics, +9:u14:back., +9:u05:back., +14:u06:software's, +15:u06:auto-update, +11:u07:metrics, +9:u13:back., +14:u14:software's, +9:u04:back., +14:u05:software's, +15:u05:auto-update, +11:u06:metrics, +9:u12:back., +14:u13:software's, +9:u03:back., +14:u04:software's, +15:u04:auto-update, +11:u05:metrics, +13:u08:behaviour, +9:u11:back., +14:u12:software's, +9:u02:back., +14:u03:software's, +15:u03:auto-update, +11:u04:metrics, +13:u07:behaviour, +9:u10:back., +14:u11:software's, +9:u01:back., +14:u02:software's, +15:u02:auto-update, +11:u03:metrics, +13:u06:behaviour, +14:u08:developers, +14:u10:software's, +9:u00:back., +14:u01:software's, +15:u01:auto-update, +11:u02:metrics, +13:u05:behaviour, +14:u07:developers, +14:u00:software's, +15:u00:auto-update, +11:u01:metrics, +13:u04:behaviour, +14:u06:developers, +11:u00:metrics, +13:u03:behaviour, +14:u05:developers, +11:u14:metrics, +13:u02:behaviour, +14:u04:developers, +11:u13:metrics, +13:u01:behaviour, +14:u03:developers, +11:u12:metrics, +8:u23:metr, +13:u00:behaviour, +14:u02:developers, +11:u11:metrics, +14:u01:developers, +11:u10:metrics, +14:u00:developers, +8:u08:push, +8:u07:push, +8:u14:risk, +8:u06:push, +8:u13:risk, +8:u14:push, +8:u05:push, +8:u12:risk, +8:u13:push, +8:u04:push, +8:u08:easy, +8:u11:risk, +8:u12:push, +7:u22:pus, +8:u23:push, +8:u03:push, +8:u07:easy, +8:u10:risk, +8:u11:push, +8:u02:push, +8:u06:easy, +8:u10:push, +8:u01:push, +8:u05:easy, +10:u08:Safety, +8:u00:push, +12:u08:Wherever, +8:u04:easy, +10:u07:Safety, +11:u08:Isolate, +11:u14:consent, +8:u03:easy, +10:u06:Safety, +11:u07:Isolate, +11:u13:consent, +12:u07:Wherever, +8:u08:your, +8:u02:easy, +10:u05:Safety, +11:u06:Isolate, +11:u12:consent, +12:u06:Wherever, +8:u01:easy, +10:u04:Safety, +11:u05:Isolate, +16:u08:experiments., +11:u11:consent, +12:u14:wherever, +12:u05:Wherever, +8:u07:your, +8:u00:easy, +10:u03:Safety, +11:u04:Isolate, +16:u07:experiments., +13:u08:measuring, +11:u10:consent, +12:u13:wherever, +12:u04:Wherever, +8:u06:your, +10:u02:Safety, +11:u03:Isolate, +16:u06:experiments., +13:u07:measuring, +12:u12:wherever, +8:u14:your, +12:u03:Wherever, +8:u05:your, +15:u08:experiments, +10:u01:Safety, +11:u02:Isolate, +16:u05:experiments., +13:u06:measuring, +12:u11:wherever, +8:u13:your, +12:u02:Wherever, +8:u04:your, +7:u08:WAN, +10:u00:Safety, +11:u01:Isolate, +16:u04:experiments., +13:u05:measuring, +12:u10:wherever, +8:u12:your, +11:u14:effects, +6:u21:yo, +7:u22:you, +8:u23:your, +12:u01:Wherever, +8:u03:your, +15:u07:experiments, +11:u00:Isolate, +16:u03:experiments., +13:u04:measuring, +8:u11:your, +11:u13:effects, +12:u00:Wherever, +8:u02:your, +15:u06:experiments, +7:u07:WAN, +12:u08:emulated, +16:u02:experiments., +13:u03:measuring, +8:u10:your, +11:u12:effects, +15:u14:experiments, +8:u01:your, +15:u05:experiments, +7:u06:WAN, +16:u01:experiments., +13:u02:measuring, +11:u11:effects, +15:u13:experiments, +7:u14:wan, +8:u00:your, +15:u04:experiments, +7:u05:WAN, +12:u07:emulated, +16:u00:experiments., +13:u01:measuring, +6:u08:Be, +11:u10:effects, +15:u12:experiments, +7:u13:wan, +15:u03:experiments, +7:u04:WAN, +12:u06:emulated, +13:u00:measuring, +6:u07:Be, +15:u11:experiments, +7:u12:wan, +12:u14:emulated, +7:u23:WAN, +15:u02:experiments, +7:u03:WAN, +12:u05:emulated, +6:u06:Be, +15:u10:experiments, +7:u11:wan, +12:u13:emulated, +15:u01:experiments, +7:u02:WAN, +12:u04:emulated, +6:u05:Be, +7:u10:wan, +12:u12:emulated, +7:u22:emu, +8:u23:emul, +15:u00:experiments, +7:u01:WAN, +12:u03:emulated, +6:u04:Be, +12:u11:emulated, +7:u00:WAN, +12:u02:emulated, +6:u03:Be, +12:u10:emulated, +12:u01:emulated, +19:u08:infrastructure., +6:u02:Be, +12:u00:emulated, +17:u08:jurisdictions, +6:u01:Be, +19:u07:infrastructure., +6:u00:Be, +19:u06:infrastructure., +17:u07:jurisdictions, +19:u14:infrastructure., +19:u05:infrastructure., +17:u06:jurisdictions, +11:u08:deviate, +7:u08:you, +19:u13:infrastructure., +17:u14:jurisdictions, +19:u04:infrastructure., +17:u05:jurisdictions, +7:u07:you, +19:u12:infrastructure., +17:u13:jurisdictions, +9:u14:legal, +19:u03:infrastructure., +17:u04:jurisdictions, +11:u07:deviate, +7:u06:you, +19:u11:infrastructure., +17:u12:jurisdictions, +9:u13:legal, +7:u22:jur, +8:u23:juri, +19:u02:infrastructure., +17:u03:jurisdictions, +11:u06:deviate, +7:u05:you, +18:u08:representative, +19:u10:infrastructure., +17:u11:jurisdictions, +9:u12:legal, +11:u14:deviate, +8:u23:lega, +19:u01:infrastructure., +17:u02:jurisdictions, +11:u05:deviate, +7:u04:you, +18:u07:representative, +17:u10:jurisdictions, +9:u11:legal, +11:u13:deviate, +19:u00:infrastructure., +17:u01:jurisdictions, +11:u04:deviate, +7:u03:you, +18:u06:representative, +9:u10:legal, +11:u12:deviate, +17:u00:jurisdictions, +11:u03:deviate, +7:u02:you, +18:u05:representative, +11:u11:deviate, +11:u02:deviate, +7:u01:you, +18:u04:representative, +11:u10:deviate, +11:u01:deviate, +7:u00:you, +18:u03:representative, +11:u00:deviate, +18:u02:representative, +18:u01:representative, +18:u00:representative, +9:uI2:..."", +16:u08:measurement,, +9:uI1:..."", +7:u08:"Do, +16:u07:measurement,, +9:uI0:..."", +16:u06:measurement,, +7:u07:"Do, +16:u05:measurement,, +14:u08:complaints, +7:u06:"Do, +16:u04:measurement,, +14:u07:complaints, +7:u14:"do, +7:u05:"Do, +14:u08:automated., +16:u03:measurement,, +14:u06:complaints, +7:u13:"do, +7:u04:"Do, +7:u08:You, +16:u02:measurement,, +14:u05:complaints, +7:u12:"do, +7:u22:"Do, +7:u23:"Do, +7:u03:"Do, +14:u07:automated., +16:u01:measurement,, +14:u04:complaints, +7:u11:"do, +7:u02:"Do, +14:u06:automated., +7:u07:You, +16:u00:measurement,, +14:u03:complaints, +7:u10:"do, +14:u14:automated., +7:u01:"Do, +14:u05:automated., +7:u06:You, +14:u02:complaints, +14:u13:automated., +7:u14:you, +7:u00:"Do, +14:u04:automated., +7:u05:You, +14:u01:complaints, +8:u08:plan, +14:u12:automated., +7:u13:you, +14:u03:automated., +7:u04:You, +14:u00:complaints, +8:u07:plan, +14:u11:automated., +7:u12:you, +7:u23:You, +14:u02:automated., +7:u03:You, +8:u06:plan, +14:u10:automated., +7:u11:you, +14:u01:automated., +7:u02:You, +8:u05:plan, +7:u10:you, +12:u14:results,, +14:u00:automated., +7:u01:You, +8:u04:plan, +12:u13:results,, +7:u23:you, +7:u00:You, +8:u03:plan, +12:u12:results,, +8:u02:plan, +12:u11:results,, +8:u01:plan, +12:u10:results,, +6:u22:Be, +6:u23:Be, +8:u00:plan, +15:u08:collecting,, +12:u08:Reducing, +15:u07:collecting,, +11:u08:misused, +15:u06:collecting,, +12:u07:Reducing, +15:u05:collecting,, +16:u14:measurement,, +12:u06:Reducing, +11:u07:misused, +15:u04:collecting,, +12:u08:deciding, +16:u13:measurement,, +12:u05:Reducing, +11:u06:misused, +15:u03:collecting,, +12:u07:deciding, +16:u12:measurement,, +11:u14:misused, +12:u04:Reducing, +11:u05:misused, +15:u02:collecting,, +12:u06:deciding, +16:u11:measurement,, +11:u13:misused, +12:u03:Reducing, +11:u04:misused, +15:u01:collecting,, +12:u05:deciding, +16:u10:measurement,, +11:u12:misused, +8:u23:misu, +12:u02:Reducing, +11:u03:misused, +11:u08:passive, +15:u00:collecting,, +12:u04:deciding, +11:u11:misused, +12:u01:Reducing, +11:u02:misused, +18:u08:minimalization, +12:u03:deciding, +13:u08:observer,, +11:u10:misused, +12:u00:Reducing, +11:u01:misused, +11:u07:passive, +12:u02:deciding, +13:u07:observer,, +11:u00:misused, +11:u06:passive, +18:u07:minimalization, +8:u08:XXX:, +12:u01:deciding, +13:u06:observer,, +11:u14:passive, +11:u05:passive, +18:u06:minimalization, +12:u00:deciding, +13:u05:observer,, +11:u13:passive, +18:u14:minimalization, +11:u04:passive, +18:u05:minimalization, +8:u07:XXX:, +13:u04:observer,, +11:u12:passive, +18:u13:minimalization, +11:u03:passive, +18:u04:minimalization, +8:u06:XXX:, +13:u03:observer,, +11:u11:passive, +18:u12:minimalization, +8:u14:xxx:, +11:u02:passive, +18:u03:minimalization, +8:u05:XXX:, +13:u02:observer,, +11:u10:passive, +18:u11:minimalization, +8:u13:xxx:, +11:u01:passive, +18:u02:minimalization, +8:u04:XXX:, +13:u01:observer,, +18:u10:minimalization, +8:u12:xxx:, +6:u21:XX, +7:u22:XXX, +8:u23:XXX:, +11:u00:passive, +18:u01:minimalization, +8:u03:XXX:, +13:u00:observer,, +8:u11:xxx:, +18:u00:minimalization, +8:u02:XXX:, +8:u10:xxx:, +8:u01:XXX:, +8:u00:XXX:, +13:u08:discarded, +13:u07:discarded, +11:u08:Masking, +9:uI2:.[],,, +13:u06:discarded, +16:u08:Particularly, +11:u07:Masking, +8:u08:Mask, +13:u14:discarded, +9:uI1:.[],,, +13:u05:discarded, +11:u06:Masking, +8:u07:Mask, +13:u13:discarded, +9:uI0:.[],,, +13:u04:discarded, +16:u07:Particularly, +11:u05:Masking, +8:u06:Mask, +13:u12:discarded, +13:u03:discarded, +16:u06:Particularly, +11:u08:replace, +11:u04:Masking, +8:u05:Mask, +13:u11:discarded, +13:u02:discarded, +16:u05:Particularly, +11:u03:Masking, +8:u04:Mask, +13:u10:discarded, +13:u01:discarded, +16:u04:Particularly, +11:u07:replace, +11:u02:Masking, +8:u03:Mask, +10:u08:Reduce, +13:u00:discarded, +16:u03:Particularly, +11:u06:replace, +11:u01:Masking, +8:u02:Mask, +10:u07:Reduce, +12:u08:Binning,, +16:u02:Particularly, +11:u05:replace, +11:u00:Masking, +8:u01:Mask, +10:u06:Reduce, +12:u07:Binning,, +16:u01:Particularly, +11:u04:replace, +8:u00:Mask, +10:u05:Reduce, +12:u06:Binning,, +14:u08:collecting, +16:u00:Particularly, +11:u03:replace, +10:u04:Reduce, +12:u05:Binning,, +14:u07:collecting, +8:u08:bins, +9:uI2::,,,., +11:u02:replace, +9:u08:disk., +10:u03:Reduce, +12:u04:Binning,, +14:u06:collecting, +8:u07:bins, +9:uI1::,,,., +11:u01:replace, +21:u08:[Tor.2017-04-001], +10:u02:Reduce, +12:u03:Binning,, +14:u05:collecting, +8:u06:bins, +9:uI0::,,,., +11:u00:replace, +9:u07:disk., +10:u01:Reduce, +12:u02:Binning,, +14:u04:collecting, +8:u05:bins, +12:u08:presents, +9:u06:disk., +21:u07:[Tor.2017-04-001], +10:u00:Reduce, +12:u01:Binning,, +14:u03:collecting, +8:u04:bins, +12:u07:presents, +9:u14:disk., +9:u05:disk., +21:u06:[Tor.2017-04-001], +12:u00:Binning,, +14:u02:collecting, +8:u03:bins, +12:u06:presents, +8:u08:Risk, +9:u13:disk., +21:u14:[tor.2017-04-001], +9:u04:disk., +21:u05:[Tor.2017-04-001], +14:u01:collecting, +8:u02:bins, +12:u05:presents, +8:u07:Risk, +9:u12:disk., +21:u13:[tor.2017-04-001], +11:uI2:[.--]--, +9:u03:disk., +21:u04:[Tor.2017-04-001], +14:u00:collecting, +8:u01:bins, +12:u04:presents, +8:u06:Risk, +15:u08:third-party, +9:u11:disk., +21:u12:[tor.2017-04-001], +7:u22:[To, +8:u23:[Tor, +11:uI1:[.--]--, +9:u02:disk., +21:u03:[Tor.2017-04-001], +8:u08:Take, +8:u00:bins, +12:u03:presents, +8:u05:Risk, +15:u07:third-party, +9:u10:disk., +21:u11:[tor.2017-04-001], +11:uI0:[.--]--, +9:u01:disk., +21:u02:[Tor.2017-04-001], +12:u02:presents, +8:u04:Risk, +15:u06:third-party, +21:u10:[tor.2017-04-001], +9:u00:disk., +21:u01:[Tor.2017-04-001], +8:u07:Take, +12:u01:presents, +8:u03:Risk, +15:u05:third-party, +10:uI2:(..-)., +21:u00:[Tor.2017-04-001], +8:u06:Take, +12:u00:presents, +8:u02:Risk, +15:u04:third-party, +8:u14:take, +10:uI1:(..-)., +8:u05:Take, +8:u01:Risk, +15:u03:third-party, +8:u13:take, +10:uI0:(..-)., +8:u04:Take, +8:u00:Risk, +15:u02:third-party, +8:u12:take, +8:u03:Take, +15:u01:third-party, +8:u11:take, +8:u02:Take, +15:u00:third-party, +8:u10:take, +8:u01:Take, +8:u00:Take, +20:u08:[TorSafetyBoard], +13:u08:research., +11:u08:adapted, +20:u07:[TorSafetyBoard], +11:u07:adapted, +20:u06:[TorSafetyBoard], +13:u07:research., +11:u06:adapted, +20:u14:[torsafetyboard], +20:u05:[TorSafetyBoard], +13:u06:research., +11:u05:adapted, +20:u13:[torsafetyboard], +13:u14:research., +20:u04:[TorSafetyBoard], +13:u05:research., +17:u08:[MenloReport], +11:u04:adapted, +20:u12:[torsafetyboard], +13:u13:research., +20:u03:[TorSafetyBoard], +13:u04:research., +13:u08:Dittrich,, +11:u03:adapted, +20:u11:[torsafetyboard], +13:u12:research., +20:u02:[TorSafetyBoard], +13:u03:research., +17:u07:[MenloReport], +14:u08:Principles, +11:u02:adapted, +20:u10:[torsafetyboard], +13:u11:research., +20:u01:[TorSafetyBoard], +13:u02:research., +17:u06:[MenloReport], +13:u07:Dittrich,, +11:u01:adapted, +11:u08:Guiding, +13:u10:research., +17:u14:[menloreport], +20:u00:[TorSafetyBoard], +13:u01:research., +17:u05:[MenloReport], +13:u06:Dittrich,, +14:u07:Principles, +52:u08:<https://www.caida.org/publications/papers/2012/, +11:u00:adapted, +11:u07:Guiding, +14:u08:Research",, +17:u13:[menloreport], +13:u14:dittrich,, +13:u00:research., +17:u04:[MenloReport], +13:u05:Dittrich,, +14:u06:Principles, +36:u08:menlo_report_actual_formatted/>., +11:u06:Guiding, +14:u07:Research",, +17:u12:[menloreport], +13:u13:dittrich,, +14:u14:principles, +7:u22:[Me, +8:u23:[Men, +17:u03:[MenloReport], +13:u04:Dittrich,, +14:u05:Principles, +52:u07:<https://www.caida.org/publications/papers/2012/, +26:u08:[MenloReportCompanion], +11:u05:Guiding, +14:u06:Research",, +17:u11:[menloreport], +13:u12:dittrich,, +14:u13:principles, +7:u22:Dit, +8:u23:Ditt, +17:u02:[MenloReport], +13:u03:Dittrich,, +14:u04:Principles, +52:u06:<https://www.caida.org/publications/papers/2012/, +36:u07:menlo_report_actual_formatted/>., +11:u08:Bailey,, +11:u04:Guiding, +14:u05:Research",, +17:u10:[menloreport], +13:u11:dittrich,, +14:u12:principles, +52:u14:<https://www.caida.org/publications/papers/2012/, +17:u01:[MenloReport], +13:u02:Dittrich,, +14:u03:Principles, +52:u05:<https://www.caida.org/publications/papers/2012/, +36:u06:menlo_report_actual_formatted/>., +26:u07:[MenloReportCompanion], +11:u08:Ethical, +11:u03:Guiding, +14:u04:Research",, +13:u10:dittrich,, +14:u11:principles, +52:u13:<https://www.caida.org/publications/papers/2012/, +36:u14:menlo_report_actual_formatted/>., +17:u00:[MenloReport], +13:u01:Dittrich,, +14:u02:Principles, +52:u04:<https://www.caida.org/publications/papers/2012/, +36:u05:menlo_report_actual_formatted/>., +26:u06:[MenloReportCompanion], +11:u07:Bailey,, +11:u02:Guiding, +14:u03:Research",, +14:u10:principles, +52:u12:<https://www.caida.org/publications/papers/2012/, +36:u13:menlo_report_actual_formatted/>., +26:u14:[menloreportcompanion], +13:u00:Dittrich,, +14:u01:Principles, +52:u03:<https://www.caida.org/publications/papers/2012/, +36:u04:menlo_report_actual_formatted/>., +26:u05:[MenloReportCompanion], +11:u06:Bailey,, +11:u07:Ethical, +48:u08:<https://www.impactcybertrust.org/link_docs/, +11:u01:Guiding, +14:u02:Research",, +52:u11:<https://www.caida.org/publications/papers/2012/, +36:u12:menlo_report_actual_formatted/>., +26:u13:[menloreportcompanion], +11:u14:bailey,, +8:u23:menl, +14:u00:Principles, +52:u02:<https://www.caida.org/publications/papers/2012/, +36:u03:menlo_report_actual_formatted/>., +26:u04:[MenloReportCompanion], +11:u05:Bailey,, +11:u06:Ethical, +32:u08:Menlo-Report-Companion.pdf>., +11:u00:Guiding, +14:u01:Research",, +52:u10:<https://www.caida.org/publications/papers/2012/, +36:u11:menlo_report_actual_formatted/>., +26:u12:[menloreportcompanion], +11:u13:bailey,, +11:u14:ethical, +52:u01:<https://www.caida.org/publications/papers/2012/, +36:u02:menlo_report_actual_formatted/>., +26:u03:[MenloReportCompanion], +11:u04:Bailey,, +11:u05:Ethical, +48:u07:<https://www.impactcybertrust.org/link_docs/, +11:u08:[netem], +14:u00:Research",, +36:u10:menlo_report_actual_formatted/>., +26:u11:[menloreportcompanion], +11:u12:bailey,, +11:u13:ethical, +7:u22:Bai, +8:u23:Bail, +52:u00:<https://www.caida.org/publications/papers/2012/, +36:u01:menlo_report_actual_formatted/>., +26:u02:[MenloReportCompanion], +11:u03:Bailey,, +11:u04:Ethical, +48:u06:<https://www.impactcybertrust.org/link_docs/, +32:u07:Menlo-Report-Companion.pdf>., +12:u08:Stephen,, +26:u10:[menloreportcompanion], +11:u11:bailey,, +11:u12:ethical, +48:u14:<https://www.impactcybertrust.org/link_docs/, +8:u23:Ethi, +36:u00:menlo_report_actual_formatted/>., +26:u01:[MenloReportCompanion], +11:u02:Bailey,, +11:u03:Ethical, +48:u05:<https://www.impactcybertrust.org/link_docs/, +32:u06:Menlo-Report-Companion.pdf>., +11:u07:[netem], +11:u10:bailey,, +11:u11:ethical, +48:u13:<https://www.impactcybertrust.org/link_docs/, +32:u14:menlo-report-companion.pdf>., +26:u00:[MenloReportCompanion], +11:u01:Bailey,, +11:u02:Ethical, +48:u04:<https://www.impactcybertrust.org/link_docs/, +32:u05:Menlo-Report-Companion.pdf>., +11:u06:[netem], +12:u07:Stephen,, +14:u08:Learmonth,, +11:u10:ethical, +48:u12:<https://www.impactcybertrust.org/link_docs/, +32:u13:menlo-report-companion.pdf>., +11:u14:[netem], +11:u00:Bailey,, +11:u01:Ethical, +48:u03:<https://www.impactcybertrust.org/link_docs/, +32:u04:Menlo-Report-Companion.pdf>., +11:u05:[netem], +12:u06:Stephen,, +14:u08:Fairhurst,, +48:u11:<https://www.impactcybertrust.org/link_docs/, +32:u12:menlo-report-companion.pdf>., +11:u13:[netem], +12:u14:stephen,, +7:u22:Men, +8:u23:Menl, +11:u00:Ethical, +48:u02:<https://www.impactcybertrust.org/link_docs/, +32:u03:Menlo-Report-Companion.pdf>., +11:u04:[netem], +12:u05:Stephen,, +14:u07:Learmonth,, +16:u08:"PATHspider:, +48:u10:<https://www.impactcybertrust.org/link_docs/, +32:u11:menlo-report-companion.pdf>., +11:u12:[netem], +12:u13:stephen,, +7:u22:[ne, +8:u23:[net, +11:uI2:,.,"",., +48:u01:<https://www.impactcybertrust.org/link_docs/, +32:u02:Menlo-Report-Companion.pdf>., +11:u03:[netem], +12:u04:Stephen,, +14:u06:Learmonth,, +14:u07:Fairhurst,, +16:u07:"PATHspider:, +18:u08:transparency",, +32:u10:menlo-report-companion.pdf>., +11:u11:[netem], +12:u12:stephen,, +14:u14:learmonth,, +8:u23:Step, +11:uI1:,.,"",., +48:u00:<https://www.impactcybertrust.org/link_docs/, +32:u01:Menlo-Report-Companion.pdf>., +11:u02:[netem], +12:u03:Stephen,, +14:u05:Learmonth,, +14:u06:Fairhurst,, +59:u08:<https://dl.acm.org/citation.cfm?doid=2959424.2959441>., +16:u06:"PATHspider:, +18:u07:transparency",, +11:u10:[netem], +12:u11:stephen,, +14:u13:learmonth,, +14:u14:fairhurst,, +11:uI0:,.,"",., +32:u00:Menlo-Report-Companion.pdf>., +11:u01:[netem], +12:u02:Stephen,, +14:u04:Learmonth,, +14:u05:Fairhurst,, +16:u05:"PATHspider:, +18:u06:transparency",, +12:u10:stephen,, +14:u12:learmonth,, +14:u13:fairhurst,, +11:u00:[netem], +12:u01:Stephen,, +14:u03:Learmonth,, +14:u04:Fairhurst,, +59:u07:<https://dl.acm.org/citation.cfm?doid=2959424.2959441>., +16:u04:"PATHspider:, +18:u05:transparency",, +14:u11:learmonth,, +14:u12:fairhurst,, +9:u14:2016,, +7:u22:Fai, +8:u23:Fair, +12:u00:Stephen,, +14:u02:Learmonth,, +14:u03:Fairhurst,, +59:u06:<https://dl.acm.org/citation.cfm?doid=2959424.2959441>., +16:u03:"PATHspider:, +18:u04:transparency",, +14:u10:learmonth,, +14:u11:fairhurst,, +9:u13:2016,, +59:u14:<https://dl.acm.org/citation.cfm?doid=2959424.2959441>., +14:u01:Learmonth,, +14:u02:Fairhurst,, +59:u05:<https://dl.acm.org/citation.cfm?doid=2959424.2959441>., +16:u02:"PATHspider:, +18:u03:transparency",, +14:u10:fairhurst,, +9:u12:2016,, +59:u13:<https://dl.acm.org/citation.cfm?doid=2959424.2959441>., +8:u23:2016, +14:uI2:://../.?.., +14:u00:Learmonth,, +14:u01:Fairhurst,, +59:u04:<https://dl.acm.org/citation.cfm?doid=2959424.2959441>., +13:u08:[RFC6349], +16:u01:"PATHspider:, +18:u02:transparency",, +9:u11:2016,, +59:u12:<https://dl.acm.org/citation.cfm?doid=2959424.2959441>., +14:uI1:://../.?.., +14:u00:Fairhurst,, +59:u03:<https://dl.acm.org/citation.cfm?doid=2959424.2959441>., +14:u08:"Framework, +16:u00:"PATHspider:, +18:u01:transparency",, +16:u08:Constantine,, +9:u10:2016,, +59:u11:<https://dl.acm.org/citation.cfm?doid=2959424.2959441>., +14:uI0:://../.?.., +59:u02:<https://dl.acm.org/citation.cfm?doid=2959424.2959441>., +13:u07:[RFC6349], +18:u00:transparency",, +16:u07:Constantine,, +59:u10:<https://dl.acm.org/citation.cfm?doid=2959424.2959441>., +59:u01:<https://dl.acm.org/citation.cfm?doid=2959424.2959441>., +13:u06:[RFC6349], +14:u07:"Framework, +46:u08:<https://www.rfc-editor.org/info/rfc6349>., +16:u06:Constantine,, +21:u08:10.17487/RFC6349,, +13:u14:[rfc6349], +59:u00:<https://dl.acm.org/citation.cfm?doid=2959424.2959441>., +13:u05:[RFC6349], +14:u06:"Framework, +13:u08:[RFC6973], +16:u05:Constantine,, +21:u07:10.17487/RFC6349,, +13:u13:[rfc6349], +14:u14:"framework, +13:u04:[RFC6349], +14:u05:"Framework, +46:u07:<https://www.rfc-editor.org/info/rfc6349>., +11:u08:Morris,, +16:u04:Constantine,, +21:u06:10.17487/RFC6349,, +13:u12:[rfc6349], +14:u13:"framework, +13:u03:[RFC6349], +14:u04:"Framework, +46:u06:<https://www.rfc-editor.org/info/rfc6349>., +13:u07:[RFC6973], +16:u03:Constantine,, +21:u05:10.17487/RFC6349,, +13:u11:[rfc6349], +14:u12:"framework, +46:u14:<https://www.rfc-editor.org/info/rfc6349>., +7:u22:"Fr, +8:u23:"Fra, +13:u02:[RFC6349], +14:u03:"Framework, +46:u05:<https://www.rfc-editor.org/info/rfc6349>., +13:u06:[RFC6973], +11:u07:Morris,, +16:u02:Constantine,, +21:u04:10.17487/RFC6349,, +13:u10:[rfc6349], +14:u11:"framework, +46:u13:<https://www.rfc-editor.org/info/rfc6349>., +13:u14:[rfc6973], +13:u01:[RFC6349], +14:u02:"Framework, +46:u04:<https://www.rfc-editor.org/info/rfc6349>., +13:u05:[RFC6973], +11:u06:Morris,, +16:u01:Constantine,, +21:u03:10.17487/RFC6349,, +46:u08:<https://www.rfc-editor.org/info/rfc6937>., +14:u10:"framework, +46:u12:<https://www.rfc-editor.org/info/rfc6349>., +13:u13:[rfc6973], +11:u14:morris,, +13:u00:[RFC6349], +14:u01:"Framework, +46:u03:<https://www.rfc-editor.org/info/rfc6349>., +13:u04:[RFC6973], +11:u05:Morris,, +16:u00:Constantine,, +21:u02:10.17487/RFC6349,, +46:u07:<https://www.rfc-editor.org/info/rfc6937>., +46:u11:<https://www.rfc-editor.org/info/rfc6349>., +13:u12:[rfc6973], +11:u13:morris,, +14:u00:"Framework, +46:u02:<https://www.rfc-editor.org/info/rfc6349>., +13:u03:[RFC6973], +11:u04:Morris,, +21:u01:10.17487/RFC6349,, +46:u06:<https://www.rfc-editor.org/info/rfc6937>., +46:u10:<https://www.rfc-editor.org/info/rfc6349>., +13:u11:[rfc6973], +11:u12:morris,, +9:u14:2013,, +8:u23:Morr, +46:u01:<https://www.rfc-editor.org/info/rfc6349>., +13:u02:[RFC6973], +11:u03:Morris,, +21:u00:10.17487/RFC6349,, +46:u05:<https://www.rfc-editor.org/info/rfc6937>., +13:u10:[rfc6973], +11:u11:morris,, +9:u13:2013,, +46:u00:<https://www.rfc-editor.org/info/rfc6349>., +13:u01:[RFC6973], +11:u02:Morris,, +46:u04:<https://www.rfc-editor.org/info/rfc6937>., +11:u10:morris,, +9:u12:2013,, +8:u23:2013, +13:u00:[RFC6973], +11:u01:Morris,, +46:u03:<https://www.rfc-editor.org/info/rfc6937>., +9:u11:2013,, +11:u00:Morris,, +46:u02:<https://www.rfc-editor.org/info/rfc6937>., +9:u10:2013,, +9:u08:Herm,, +46:u01:<https://www.rfc-editor.org/info/rfc6937>., +16:u08:statistics",, +46:u00:<https://www.rfc-editor.org/info/rfc6937>., +9:u07:Herm,, +49:u08:<https://research.torproject.org/techreports/, +9:u06:Herm,, +16:u07:statistics",, +38:u08:privacy-in-memory-2017-04-28.pdf>., +9:u14:herm,, +9:u05:Herm,, +16:u06:statistics",, +49:u07:<https://research.torproject.org/techreports/, +9:u13:herm,, +16:u14:statistics",, +10:uI2:,.,"'-, +9:u04:Herm,, +16:u05:statistics",, +49:u06:<https://research.torproject.org/techreports/, +38:u07:privacy-in-memory-2017-04-28.pdf>., +9:u12:herm,, +16:u13:statistics",, +49:u14:<https://research.torproject.org/techreports/, +8:u23:Herm, +10:uI1:,.,"'-, +10:uI2:",--,,, +9:u03:Herm,, +16:u04:statistics",, +49:u05:<https://research.torproject.org/techreports/, +38:u06:privacy-in-memory-2017-04-28.pdf>., +51:u08:<https://research.torproject.org/safetyboard/>., +12:u08:Project,, +9:u11:herm,, +16:u12:statistics",, +49:u13:<https://research.torproject.org/techreports/, +38:u14:privacy-in-memory-2017-04-28.pdf>., +10:uI0:,.,"'-, +10:uI1:",--,,, +9:u02:Herm,, +16:u03:statistics",, +49:u04:<https://research.torproject.org/techreports/, +38:u05:privacy-in-memory-2017-04-28.pdf>., +12:u07:Project,, +9:u10:herm,, +16:u11:statistics",, +49:u12:<https://research.torproject.org/techreports/, +38:u13:privacy-in-memory-2017-04-28.pdf>., +10:uI0:",--,,, +11:uI2:-----.., +9:u01:Herm,, +16:u02:statistics",, +49:u03:<https://research.torproject.org/techreports/, +38:u04:privacy-in-memory-2017-04-28.pdf>., +51:u07:<https://research.torproject.org/safetyboard/>., +8:u08:Iain, +12:u06:Project,, +16:u10:statistics",, +49:u11:<https://research.torproject.org/techreports/, +38:u12:privacy-in-memory-2017-04-28.pdf>., +11:uI1:-----.., +9:u00:Herm,, +16:u01:statistics",, +49:u02:<https://research.torproject.org/techreports/, +38:u03:privacy-in-memory-2017-04-28.pdf>., +51:u06:<https://research.torproject.org/safetyboard/>., +12:u05:Project,, +49:u10:<https://research.torproject.org/techreports/, +38:u11:privacy-in-memory-2017-04-28.pdf>., +51:u14:<https://research.torproject.org/safetyboard/>., +11:uI0:-----.., +16:u00:statistics",, +49:u01:<https://research.torproject.org/techreports/, +38:u02:privacy-in-memory-2017-04-28.pdf>., +51:u05:<https://research.torproject.org/safetyboard/>., +8:u07:Iain, +12:u04:Project,, +38:u10:privacy-in-memory-2017-04-28.pdf>., +51:u13:<https://research.torproject.org/safetyboard/>., +49:u00:<https://research.torproject.org/techreports/, +38:u01:privacy-in-memory-2017-04-28.pdf>., +51:u04:<https://research.torproject.org/safetyboard/>., +8:u06:Iain, +12:u03:Project,, +22:u08:irl@torproject.org, +51:u12:<https://research.torproject.org/safetyboard/>., +8:u14:iain, +38:u00:privacy-in-memory-2017-04-28.pdf>., +51:u03:<https://research.torproject.org/safetyboard/>., +8:u05:Iain, +12:u02:Project,, +22:u07:irl@torproject.org, +51:u11:<https://research.torproject.org/safetyboard/>., +8:u13:iain, +51:u02:<https://research.torproject.org/safetyboard/>., +8:u04:Iain, +12:u01:Project,, +22:u06:irl@torproject.org, +51:u10:<https://research.torproject.org/safetyboard/>., +8:u12:iain, +6:u21:Ia, +7:u22:Iai, +8:u23:Iain, +51:u01:<https://research.torproject.org/safetyboard/>., +8:u03:Iain, +12:u00:Project,, +22:u05:irl@torproject.org, +8:u11:iain, +51:u00:<https://research.torproject.org/safetyboard/>., +8:u02:Iain, +22:u04:irl@torproject.org, +8:u10:iain, +8:u01:Iain, +22:u03:irl@torproject.org, +8:u00:Iain, +22:u02:irl@torproject.org, +22:u01:irl@torproject.org, +6:u06:U., +10:u06:Carion, +7:u08:05,, +6:u14:u., +6:u05:U., +10:u05:Carion, +7:u07:05,, +6:u13:u., +6:u04:U., +10:u04:Carion, +7:u06:05,, +6:u12:u., +6:u21:U., +6:u22:U., +6:u23:U., +6:u03:U., +41:u08:draft-ucarion-json-schema-language-00, +10:u03:Carion, +7:u05:05,, +10:u08:Schema, +6:u11:u., +6:u02:U., +10:u02:Carion, +7:u04:05,, +10:u07:Schema, +6:u10:u., +6:u01:U., +41:u07:draft-ucarion-json-schema-language-00, +10:u01:Carion, +7:u03:05,, +10:u06:Schema, +6:u00:U., +41:u06:draft-ucarion-json-schema-language-00, +10:u00:Carion, +7:u02:05,, +10:u05:Schema, +41:u14:draft-ucarion-json-schema-language-00, +41:u05:draft-ucarion-json-schema-language-00, +7:u01:05,, +10:u04:Schema, +41:u13:draft-ucarion-json-schema-language-00, +41:u04:draft-ucarion-json-schema-language-00, +7:u00:05,, +10:u03:Schema, +41:u12:draft-ucarion-json-schema-language-00, +41:u03:draft-ucarion-json-schema-language-00, +10:u02:Schema, +41:u11:draft-ucarion-json-schema-language-00, +41:u02:draft-ucarion-json-schema-language-00, +10:u01:Schema, +41:u10:draft-ucarion-json-schema-language-00, +41:u01:draft-ucarion-json-schema-language-00, +10:u00:Schema, +14:u14:generation, +41:u00:draft-ucarion-json-schema-language-00, +14:u13:generation, +14:u12:generation, +14:u11:generation, +14:u10:generation, +10:u08:Carion, +10:u07:Carion, +10:u14:carion, +10:u13:carion, +10:u12:carion, +8:u23:Cari, +10:u11:carion, +10:u10:carion, +10:u08:Syntax, +10:u07:Syntax, +10:u06:Syntax, +13:u08:Semantics, +10:u05:Syntax, +13:u07:Semantics, +10:u04:Syntax, +13:u06:Semantics, +10:u08:Strict, +10:u03:Syntax, +13:u05:Semantics, +10:u07:Strict, +10:u02:Syntax, +13:u04:Semantics, +10:u06:Strict, +10:u01:Syntax, +13:u03:Semantics, +10:u05:Strict, +9:u08:Forms, +10:u00:Syntax, +13:u02:Semantics, +10:u04:Strict, +9:u07:Forms, +9:u08:Empty, +13:u01:Semantics, +10:u03:Strict, +9:u06:Forms, +9:u07:Empty, +7:u08:Ref, +13:u00:Semantics, +10:u02:Strict, +9:u05:Forms, +9:u06:Empty, +7:u07:Ref, +10:u01:Strict, +9:u04:Forms, +9:u05:Empty, +7:u06:Ref, +8:u08:Enum, +10:u00:Strict, +9:u03:Forms, +9:u04:Empty, +7:u05:Ref, +8:u07:Enum, +12:u08:Elements, +9:u02:Forms, +9:u03:Empty, +7:u04:Ref, +8:u06:Enum, +12:u07:Elements, +14:u08:Properties, +9:u01:Forms, +9:u02:Empty, +7:u03:Ref, +8:u05:Enum, +12:u06:Elements, +14:u07:Properties, +9:u00:Forms, +9:u01:Empty, +7:u02:Ref, +8:u04:Enum, +12:u05:Elements, +14:u06:Properties, +17:u08:Discriminator, +9:u00:Empty, +7:u01:Ref, +8:u03:Enum, +12:u04:Elements, +14:u05:Properties, +17:u07:Discriminator, +7:u00:Ref, +8:u02:Enum, +12:u03:Elements, +14:u04:Properties, +17:u06:Discriminator, +8:u01:Enum, +12:u02:Elements, +14:u03:Properties, +17:u05:Discriminator, +8:u00:Enum, +12:u01:Elements, +14:u02:Properties, +17:u04:Discriminator, +12:u00:Elements, +14:u01:Properties, +17:u03:Discriminator, +14:u00:Properties, +17:u02:Discriminator, +17:u01:Discriminator, +17:u00:Discriminator, +10:u08:humans, +10:u07:humans, +10:u06:humans, +10:u08:Enable, +10:u14:humans, +10:u05:humans, +11:u08:conform, +10:u07:Enable, +10:u13:humans, +10:u04:humans, +7:u08:JSL, +10:u06:Enable, +10:u12:humans, +7:u22:hum, +8:u23:huma, +10:u03:humans, +11:u07:conform, +10:u05:Enable, +10:u11:humans, +10:u02:humans, +11:u06:conform, +7:u07:JSL, +9:u08:JSON), +10:u04:Enable, +10:u10:humans, +11:u14:conform, +10:u01:humans, +11:u05:conform, +7:u06:JSL, +10:u03:Enable, +11:u13:conform, +7:u14:jsl, +10:u00:humans, +11:u04:conform, +7:u05:JSL, +9:u07:JSON), +10:u02:Enable, +11:u12:conform, +7:u13:jsl, +11:u03:conform, +7:u04:JSL, +9:u06:JSON), +10:u01:Enable, +11:u11:conform, +7:u12:jsl, +9:u14:json), +7:u22:JSL, +7:u23:JSL, +11:u02:conform, +7:u03:JSL, +9:u05:JSON), +10:u00:Enable, +11:u10:conform, +7:u11:jsl, +9:u13:json), +11:u01:conform, +7:u02:JSL, +9:u04:JSON), +7:u10:jsl, +9:u12:json), +11:u00:conform, +7:u01:JSL, +9:u03:JSON), +9:u11:json), +7:u00:JSL, +9:u02:JSON), +9:u10:json), +9:u01:JSON), +9:u00:JSON), +18:u08:expressiveness, +11:u14:keeping, +13:u08:required,, +11:u13:keeping, +18:u07:expressiveness, +16:u08:alternatives, +11:u12:keeping, +7:u22:kee, +8:u23:keep, +18:u06:expressiveness, +13:u07:required,, +16:u07:alternatives, +13:u08:Language), +11:u11:keeping, +18:u14:expressiveness, +18:u05:expressiveness, +13:u06:required,, +16:u06:alternatives, +13:u07:Language), +11:u10:keeping, +18:u13:expressiveness, +13:u14:required,, +18:u04:expressiveness, +13:u05:required,, +16:u05:alternatives, +13:u06:Language), +18:u12:expressiveness, +13:u13:required,, +9:uI2:,([],, +18:u03:expressiveness, +13:u04:required,, +13:u08:satisfies, +16:u04:alternatives, +13:u05:Language), +18:u11:expressiveness, +13:u12:required,, +9:uI1:,([],, +18:u02:expressiveness, +13:u03:required,, +16:u03:alternatives, +13:u04:Language), +18:u10:expressiveness, +13:u11:required,, +9:uI0:,([],, +18:u01:expressiveness, +13:u02:required,, +13:u07:satisfies, +16:u02:alternatives, +13:u03:Language), +19:u08:unsatisfactory., +13:u10:required,, +18:u00:expressiveness, +13:u01:required,, +13:u06:satisfies, +16:u01:alternatives, +13:u02:Language), +19:u07:unsatisfactory., +16:u08:equivalents., +13:u14:satisfies, +13:u00:required,, +13:u05:satisfies, +16:u00:alternatives, +13:u01:Language), +19:u06:unsatisfactory., +16:u07:equivalents., +13:u13:satisfies, +13:u04:satisfies, +13:u00:Language), +19:u05:unsatisfactory., +16:u06:equivalents., +13:u12:satisfies, +13:u03:satisfies, +19:u04:unsatisfactory., +16:u05:equivalents., +13:u11:satisfies, +13:u02:satisfies, +19:u03:unsatisfactory., +16:u04:equivalents., +13:u10:satisfies, +13:u01:satisfies, +19:u02:unsatisfactory., +16:u03:equivalents., +13:u00:satisfies, +19:u01:unsatisfactory., +16:u02:equivalents., +19:u00:unsatisfactory., +16:u01:equivalents., +16:u00:equivalents., +21:uI2:"","","","","","", +21:uI1:"","","","","","", +21:uI0:"","","","","","", +11:u08:schemas, +8:u08:i.e., +11:u07:schemas, +9:u08:"root, +11:u06:schemas, +9:u07:"root, +8:u07:i.e., +11:u05:schemas, +9:u06:"root, +8:u06:i.e., +11:u04:schemas, +9:u05:"root, +8:u14:i.e., +8:u05:i.e., +12:u08:schemas), +11:u03:schemas, +9:u04:"root, +8:u13:i.e., +9:uI2:..""., +8:u04:i.e., +11:u02:schemas, +9:u03:"root, +8:u12:i.e., +9:uI1:..""., +8:u03:i.e., +12:u07:schemas), +11:u01:schemas, +9:u02:"root, +8:u11:i.e., +9:u14:form., +9:uI0:..""., +8:u02:i.e., +12:u06:schemas), +11:u00:schemas, +9:u01:"root, +8:u10:i.e., +9:u13:form., +12:u14:schemas), +8:u01:i.e., +12:u05:schemas), +9:u00:"root, +9:u12:form., +12:u13:schemas), +8:u00:i.e., +12:u04:schemas), +9:u11:form., +12:u12:schemas), +12:u03:schemas), +9:u10:form., +12:u11:schemas), +12:u02:schemas), +10:u08:schema, +12:u10:schemas), +12:u01:schemas), +9:u08:form,, +12:u00:schemas), +10:u07:schema, +5:u08:?, +10:u06:schema, +9:u07:form,, +16:u08:definitions:, +10:u14:schema, +10:u05:schema, +9:u06:form,, +5:u07:?, +16:u07:definitions:, +10:u13:schema, +9:u14:form,, +10:u04:schema, +9:u05:form,, +5:u06:?, +16:u06:definitions:, +10:u12:schema, +9:u13:form,, +5:u14:?, +10:u03:schema, +9:u04:form,, +5:u05:?, +16:u05:definitions:, +10:u11:schema, +9:u12:form,, +5:u13:?, +7:uI2:?:*, +10:u02:schema, +9:u03:form,, +5:u04:?, +16:u04:definitions:, +10:u10:schema, +9:u11:form,, +5:u12:?, +5:u20:?, +5:u21:?, +5:u22:?, +5:u23:?, +7:uI1:?:*, +10:u01:schema, +9:u02:form,, +5:u03:?, +16:u03:definitions:, +18:u08:"definitions":, +9:u10:form,, +5:u11:?, +7:uI0:?:*, +10:u00:schema, +9:u01:form,, +5:u02:?, +16:u02:definitions:, +18:u07:"definitions":, +5:u10:?, +9:u00:form,, +5:u01:?, +16:u01:definitions:, +18:u06:"definitions":, +5:u00:?, +16:u00:definitions:, +18:u05:"definitions":, +10:uI2:"":"":, +7:u08:ref, +18:u04:"definitions":, +10:uI1:"":"":, +18:u03:"definitions":, +10:uI0:"":"":, +7:u07:ref, +18:u02:"definitions":, +7:u06:ref, +18:u01:"definitions":, +7:u14:ref, +7:u05:ref, +18:u00:"definitions":, +7:u13:ref, +7:u04:ref, +7:u12:ref, +7:u23:ref, +7:u03:ref, +17:u08:discriminator, +7:u11:ref, +7:u02:ref, +7:u10:ref, +7:u01:ref, +17:u07:discriminator, +7:u00:ref, +17:u06:discriminator, +13:u08:instance:, +17:u14:discriminator, +17:u05:discriminator, +17:u13:discriminator, +17:u04:discriminator, +13:u07:instance:, +17:u12:discriminator, +17:u03:discriminator, +13:u06:instance:, +17:u11:discriminator, +13:u14:instance:, +9:uI2:,"",., +17:u02:discriminator, +13:u05:instance:, +17:u10:discriminator, +13:u13:instance:, +9:uI1:,"",., +17:u01:discriminator, +13:u04:instance:, +13:u12:instance:, +9:uI0:,"",., +17:u00:discriminator, +13:u03:instance:, +13:u11:instance:, +13:u02:instance:, +13:u10:instance:, +13:u01:instance:, +13:u00:instance:, +13:u08:formally,, +13:u07:formally,, +13:u06:formally,, +13:u05:formally,, +8:uI2:,"":, +13:u04:formally,, +8:uI1:,"":, +13:u03:formally,, +8:uI0:,"":, +13:u02:formally,, +13:u01:formally,, +13:u00:formally,, +8:u08:_R_., +18:u08:"definitions",, +18:u07:"definitions",, +8:u07:_R_., +18:u06:"definitions",, +8:u06:_R_., +18:u05:"definitions",, +8:u14:_r_., +8:u05:_R_., +18:u04:"definitions",, +8:u13:_r_., +8:u04:_R_., +18:u08:"coordinates":, +18:u03:"definitions",, +8:u12:_r_., +6:u21:_R, +7:u22:_R_, +8:u23:_R_., +8:u03:_R_., +17:u08:"properties":, +18:u02:"definitions",, +8:u11:_r_., +8:u02:_R_., +18:u07:"coordinates":, +10:u08:"lat":, +18:u01:"definitions",, +8:u10:_r_., +18:u14:"definitions":, +8:u01:_R_., +18:u06:"coordinates":, +17:u07:"properties":, +10:u08:"lng":, +18:u00:"definitions",, +18:u13:"definitions":, +18:u14:"coordinates":, +8:u00:_R_., +18:u05:"coordinates":, +17:u06:"properties":, +10:u07:"lat":, +18:u12:"definitions":, +18:u13:"coordinates":, +17:u14:"properties":, +8:u23:"def, +18:u04:"coordinates":, +17:u05:"properties":, +10:u06:"lat":, +10:u07:"lng":, +18:u11:"definitions":, +18:u12:"coordinates":, +17:u13:"properties":, +10:u14:"lat":, +8:u23:"coo, +18:u03:"coordinates":, +17:u04:"properties":, +10:u05:"lat":, +10:u06:"lng":, +18:u10:"definitions":, +18:u11:"coordinates":, +17:u12:"properties":, +10:u13:"lat":, +10:u14:"lng":, +13:uI2:"":"":"",, +18:u02:"coordinates":, +17:u03:"properties":, +10:u04:"lat":, +10:u05:"lng":, +18:u10:"coordinates":, +17:u11:"properties":, +10:u12:"lat":, +10:u13:"lng":, +8:u23:"lat, +13:uI1:"":"":"",, +12:uI2:"":"":"", +18:u01:"coordinates":, +17:u02:"properties":, +10:u03:"lat":, +10:u04:"lng":, +20:u08:"user_location":, +17:u10:"properties":, +10:u11:"lat":, +10:u12:"lng":, +7:u22:"ln, +8:u23:"lng, +13:uI0:"":"":"",, +12:uI1:"":"":"", +18:u00:"coordinates":, +17:u01:"properties":, +10:u02:"lat":, +10:u03:"lng":, +22:u08:"server_location":, +10:u10:"lat":, +10:u11:"lng":, +12:uI0:"":"":"", +17:u00:"properties":, +10:u01:"lat":, +10:u02:"lng":, +20:u07:"user_location":, +10:u10:"lng":, +10:u00:"lat":, +10:u01:"lng":, +20:u06:"user_location":, +22:u07:"server_location":, +20:u14:"user_location":, +10:u00:"lng":, +20:u05:"user_location":, +22:u06:"server_location":, +20:u13:"user_location":, +22:u14:"server_location":, +20:u04:"user_location":, +22:u05:"server_location":, +11:u08:doesn't, +20:u12:"user_location":, +22:u13:"server_location":, +20:u03:"user_location":, +22:u04:"server_location":, +10:u08:exist:, +20:u11:"user_location":, +22:u12:"server_location":, +20:u02:"user_location":, +22:u03:"server_location":, +11:u07:doesn't, +10:u07:exist:, +20:u10:"user_location":, +22:u11:"server_location":, +20:u01:"user_location":, +22:u02:"server_location":, +11:u06:doesn't, +10:u08:"ref":, +10:u06:exist:, +22:u10:"server_location":, +11:u14:doesn't, +20:u00:"user_location":, +22:u01:"server_location":, +11:u05:doesn't, +10:u05:exist:, +11:u13:doesn't, +22:u00:"server_location":, +11:u04:doesn't, +10:u07:"ref":, +10:u04:exist:, +11:u12:doesn't, +11:u03:doesn't, +10:u06:"ref":, +10:u03:exist:, +11:u11:doesn't, +10:u14:"ref":, +16:uI2:"":"":"":"",, +11:u02:doesn't, +10:u05:"ref":, +15:u08:immaterial:, +10:u02:exist:, +11:u10:doesn't, +10:u13:"ref":, +16:uI1:"":"":"":"",, +11:u01:doesn't, +10:u04:"ref":, +10:u01:exist:, +10:u12:"ref":, +7:u22:"re, +8:u23:"ref, +16:uI0:"":"":"":"",, +11:u00:doesn't, +10:u03:"ref":, +15:u07:immaterial:, +10:u00:exist:, +10:u11:"ref":, +10:u02:"ref":, +15:u06:immaterial:, +15:u08:"elements":, +10:u10:"ref":, +15:u14:immaterial:, +10:u01:"ref":, +15:u05:immaterial:, +15:u13:immaterial:, +10:u00:"ref":, +15:u04:immaterial:, +15:u07:"elements":, +15:u12:immaterial:, +15:u03:immaterial:, +15:u06:"elements":, +15:u11:immaterial:, +15:u14:"elements":, +15:u02:immaterial:, +15:u05:"elements":, +15:u10:immaterial:, +15:u13:"elements":, +15:u01:immaterial:, +15:u04:"elements":, +15:u12:"elements":, +7:u22:"el, +8:u23:"ele, +15:u00:immaterial:, +15:u03:"elements":, +15:u11:"elements":, +15:u02:"elements":, +15:u10:"elements":, +15:u01:"elements":, +15:u00:"elements":, +12:u08:num-type, +10:u08:"int8", +12:u07:num-type, +12:u06:num-type, +10:u07:"int8", +12:u14:num-type, +15:uI2::""/-/""/"", +12:u05:num-type, +10:u06:"int8", +12:u13:num-type, +10:u14:"int8", +15:uI1::""/-/""/"", +14:uI2:-""/""/""/, +12:u04:num-type, +10:u05:"int8", +13:u08:[RFC3339], +12:u12:num-type, +10:u13:"int8", +8:u23:num-, +15:uI0::""/-/""/"", +14:uI1:-""/""/""/, +21:uI2:""/""/""/""/""/"", +12:u03:num-type, +10:u04:"int8", +13:u07:[RFC3339], +12:u11:num-type, +10:u12:"int8", +14:uI0:-""/""/""/, +21:uI1:""/""/""/""/""/"", +12:u02:num-type, +10:u03:"int8", +13:u06:[RFC3339], +10:u08:fourth, +12:u10:num-type, +10:u11:"int8", +21:uI0:""/""/""/""/""/"", +12:u01:num-type, +10:u02:"int8", +13:u05:[RFC3339], +10:u07:fourth, +10:u10:"int8", +12:u00:num-type, +10:u01:"int8", +13:u04:[RFC3339], +10:u06:fourth, +10:u00:"int8", +13:u03:[RFC3339], +10:u05:fourth, +13:u02:[RFC3339], +10:u04:fourth, +13:u01:[RFC3339], +10:u03:fourth, +13:u00:[RFC3339], +10:u02:fourth, +11:u08:"enum":, +10:u01:fourth, +11:u07:"enum":, +10:uI2:"[]".,, +10:u00:fourth, +11:u06:"enum":, +10:uI1:"[]".,, +11:u05:"enum":, +9:u08:fifth, +10:uI0:"[]".,, +17:uI2:"":["","",""], +11:u04:"enum":, +9:u07:fifth, +17:uI1:"":["","",""], +11:u03:"enum":, +9:u06:fifth, +17:uI0:"":["","",""], +11:u02:"enum":, +9:u05:fifth, +11:u01:"enum":, +9:u04:fifth, +11:u00:"enum":, +9:u03:fifth, +13:u08:"struct"., +9:u02:fifth, +9:u08:sixth, +9:u01:fifth, +9:u07:sixth, +13:u07:"struct"., +9:u00:fifth, +9:u06:sixth, +13:u06:"struct"., +9:u05:sixth, +12:u08:satisfy:, +13:u14:"struct"., +13:u05:"struct"., +9:u04:sixth, +12:u07:satisfy:, +13:u13:"struct"., +13:u04:"struct"., +9:u03:sixth, +12:u06:satisfy:, +13:u12:"struct"., +8:u23:"str, +13:u03:"struct"., +9:u02:sixth, +12:u05:satisfy:, +13:u11:"struct"., +13:u02:"struct"., +9:u01:sixth, +12:u04:satisfy:, +13:u10:"struct"., +13:u01:"struct"., +9:u00:sixth, +12:u03:satisfy:, +13:u00:"struct"., +12:u02:satisfy:, +12:u01:satisfy:, +12:u00:satisfy:, +19:u08:with-properties, +5:u14:;, +15:u08:properties:, +5:u13:;, +19:u07:with-properties, +5:u12:;, +5:u20:;, +5:u21:;, +5:u22:;, +5:u23:;, +19:u06:with-properties, +15:u07:properties:, +22:u08:optionalProperties, +5:u11:;, +19:u14:with-properties, +8:uI2:-/--, +19:u05:with-properties, +15:u06:properties:, +28:u08:with-optional-properties, +22:u07:optionalProperties, +5:u10:;, +19:u13:with-properties, +15:u14:properties:, +8:uI1:-/--, +19:u04:with-properties, +15:u05:properties:, +22:u06:optionalProperties, +19:u12:with-properties, +15:u13:properties:, +8:uI0:-/--, +7:uI2::*,, +19:u03:with-properties, +15:u04:properties:, +28:u07:with-optional-properties, +23:u08:optionalProperties:, +22:u05:optionalProperties, +19:u11:with-properties, +15:u12:properties:, +7:uI1::*,, +6:uI2:?*, +19:u02:with-properties, +15:u03:properties:, +28:u06:with-optional-properties, +22:u04:optionalProperties, +19:u10:with-properties, +15:u11:properties:, +28:u14:with-optional-properties, +7:uI0::*,, +6:uI1:?*, +19:u01:with-properties, +15:u02:properties:, +28:u05:with-optional-properties, +23:u07:optionalProperties:, +22:u03:optionalProperties, +15:u10:properties:, +28:u13:with-optional-properties, +6:uI0:?*, +19:u00:with-properties, +15:u01:properties:, +28:u04:with-optional-properties, +23:u06:optionalProperties:, +22:u02:optionalProperties, +28:u12:with-optional-properties, +23:u14:optionalproperties:, +8:uI2:?:*,, +15:u00:properties:, +28:u03:with-optional-properties, +23:u05:optionalProperties:, +22:u01:optionalProperties, +28:u11:with-optional-properties, +23:u13:optionalproperties:, +8:uI1:?:*,, +6:uI2::*, +28:u02:with-optional-properties, +23:u04:optionalProperties:, +22:u00:optionalProperties, +10:u08:member, +28:u10:with-optional-properties, +23:u12:optionalproperties:, +8:uI0:?:*,, +6:uI1::*, +28:u01:with-optional-properties, +23:u03:optionalProperties:, +13:u08:ambiguity, +10:u07:member, +7:u08:_P_, +23:u11:optionalproperties:, +6:uI0::*, +28:u00:with-optional-properties, +23:u02:optionalProperties:, +10:u06:member, +7:u07:_P_, +23:u10:optionalproperties:, +23:u01:optionalProperties:, +13:u07:ambiguity, +16:u08:"properties", +10:u05:member, +7:u06:_P_, +9:uI2:""(),, +23:u00:optionalProperties:, +13:u06:ambiguity, +10:u04:member, +7:u05:_P_, +13:u14:ambiguity, +9:uI1:""(),, +13:u05:ambiguity, +16:u07:"properties", +10:u03:member, +7:u04:_P_, +13:u13:ambiguity, +9:uI0:""(),, +13:u04:ambiguity, +16:u06:"properties", +25:u08:"optionalProperties":, +10:u02:member, +7:u03:_P_, +13:u12:ambiguity, +16:u14:"properties", +8:uI2:,,"", +13:u03:ambiguity, +16:u05:"properties", +10:u01:member, +7:u02:_P_, +13:u11:ambiguity, +16:u13:"properties", +8:uI1:,,"", +9:uI2:"""":, +13:u02:ambiguity, +16:u04:"properties", +25:u07:"optionalProperties":, +10:u00:member, +7:u01:_P_, +13:u10:ambiguity, +16:u12:"properties", +8:uI0:,,"", +9:uI1:"""":, +13:u01:ambiguity, +16:u03:"properties", +25:u06:"optionalProperties":, +7:u00:_P_, +16:u11:"properties", +25:u14:"optionalproperties":, +9:uI0:"""":, +11:uI2:"":"":,, +13:u00:ambiguity, +16:u02:"properties", +25:u05:"optionalProperties":, +16:u10:"properties", +25:u13:"optionalproperties":, +11:uI1:"":"":,, +16:u01:"properties", +25:u04:"optionalProperties":, +12:u08:"users":, +25:u12:"optionalproperties":, +8:u23:"opt, +11:uI0:"":"":,, +16:u00:"properties", +25:u03:"optionalProperties":, +25:u11:"optionalproperties":, +25:u02:"optionalProperties":, +12:u07:"users":, +25:u10:"optionalproperties":, +25:u01:"optionalProperties":, +12:u06:"users":, +9:u08:"id":, +12:u14:"users":, +25:u00:"optionalProperties":, +12:u05:"users":, +12:u13:"users":, +12:u04:"users":, +9:u07:"id":, +18:u08:"create_time":, +12:u12:"users":, +12:u03:"users":, +9:u06:"id":, +12:u11:"users":, +9:u14:"id":, +12:u02:"users":, +9:u05:"id":, +18:u07:"create_time":, +12:u10:"users":, +9:u13:"id":, +12:u01:"users":, +9:u04:"id":, +18:u06:"create_time":, +18:u08:"delete_time":, +9:u12:"id":, +18:u14:"create_time":, +8:u23:"id", +12:u00:"users":, +9:u03:"id":, +18:u05:"create_time":, +9:u11:"id":, +18:u13:"create_time":, +9:u02:"id":, +18:u04:"create_time":, +18:u07:"delete_time":, +9:u10:"id":, +18:u12:"create_time":, +7:u22:"cr, +8:u23:"cre, +9:u01:"id":, +18:u03:"create_time":, +18:u06:"delete_time":, +18:u11:"create_time":, +18:u14:"delete_time":, +9:u00:"id":, +18:u02:"create_time":, +18:u05:"delete_time":, +22:u08:"next_page_token":, +18:u10:"create_time":, +18:u13:"delete_time":, +18:u01:"create_time":, +18:u04:"delete_time":, +18:u12:"delete_time":, +18:u00:"create_time":, +18:u03:"delete_time":, +22:u07:"next_page_token":, +18:u11:"delete_time":, +18:u02:"delete_time":, +22:u06:"next_page_token":, +18:u10:"delete_time":, +22:u14:"next_page_token":, +18:u01:"delete_time":, +22:u05:"next_page_token":, +22:u13:"next_page_token":, +18:u00:"delete_time":, +22:u04:"next_page_token":, +22:u12:"next_page_token":, +8:u23:"nex, +22:u03:"next_page_token":, +22:u11:"next_page_token":, +22:u02:"next_page_token":, +22:u10:"next_page_token":, +22:u01:"next_page_token":, +22:u00:"next_page_token":, +15:u08:associative, +11:u08:seventh, +11:u07:seventh, +15:u07:associative, +10:u08:names:, +11:u06:seventh, +15:u06:associative, +11:u05:seventh, +15:u14:associative, +15:u05:associative, +10:u07:names:, +11:u04:seventh, +15:u13:associative, +10:u14:member, +15:u04:associative, +10:u06:names:, +11:u03:seventh, +15:u12:associative, +10:u13:member, +10:u14:names:, +15:u03:associative, +10:u05:names:, +12:u08:numbers:, +11:u02:seventh, +15:u11:associative, +10:u12:member, +10:u13:names:, +15:u02:associative, +10:u04:names:, +11:u01:seventh, +15:u10:associative, +10:u11:member, +10:u12:names:, +15:u01:associative, +10:u03:names:, +12:u07:numbers:, +11:u00:seventh, +13:u08:"values":, +10:u10:member, +10:u11:names:, +15:u00:associative, +10:u02:names:, +12:u06:numbers:, +13:u07:"values":, +10:u10:names:, +12:u14:numbers:, +10:u01:names:, +12:u05:numbers:, +13:u06:"values":, +12:u13:numbers:, +10:u00:names:, +12:u04:numbers:, +13:u05:"values":, +12:u12:numbers:, +12:u03:numbers:, +13:u04:"values":, +12:u11:numbers:, +9:uI2:,,"",, +12:u02:numbers:, +13:u03:"values":, +12:u10:numbers:, +9:uI1:,,"",, +12:u01:numbers:, +13:u02:"values":, +9:uI0:,,"",, +11:uI2:""(""),, +12:u00:numbers:, +13:u01:"values":, +11:uI1:""(""),, +18:u08:discriminator,, +13:u00:"values":, +11:uI0:""(""),, +7:uI2:;:., +7:uI1:;:., +8:uI2::,:*, +18:u07:discriminator,, +7:uI0:;:., +8:uI1::,:*, +18:u06:discriminator,, +18:u14:discriminator,, +8:uI0::,:*, +18:u05:discriminator,, +18:u13:discriminator,, +18:u04:discriminator,, +18:u12:discriminator,, +18:u03:discriminator,, +18:u11:discriminator,, +18:u02:discriminator,, +18:u10:discriminator,, +18:u01:discriminator,, +18:u00:discriminator,, +9:u08:_T_'s, +11:u14:schemas, +11:u13:schemas, +9:u07:_T_'s, +11:u12:schemas, +11:uI2:"""",',, +9:u06:_T_'s, +11:u11:schemas, +9:u14:_t_'s, +11:uI1:"""",',, +9:u05:_T_'s, +11:u10:schemas, +9:u13:_t_'s, +11:uI0:"""",',, +9:u04:_T_'s, +9:u12:_t_'s, +6:u21:_T, +7:u22:_T_, +8:u23:_T_', +9:u03:_T_'s, +9:u11:_t_'s, +9:u02:_T_'s, +9:u10:_t_'s, +9:u01:_T_'s, +9:u00:_T_'s, +10:u08:"tag":, +14:u08:"mapping":, +17:u08:"event_type",, +10:u07:"tag":, +42:u08:"is_event_type_a_string_or_a_number?":, +17:u07:"event_type",, +10:u06:"tag":, +14:u07:"mapping":, +17:u06:"event_type",, +10:u14:"tag":, +10:u05:"tag":, +14:u06:"mapping":, +42:u07:"is_event_type_a_string_or_a_number?":, +17:u05:"event_type",, +10:u13:"tag":, +14:u14:"mapping":, +10:u04:"tag":, +14:u05:"mapping":, +42:u06:"is_event_type_a_string_or_a_number?":, +17:u04:"event_type",, +10:u12:"tag":, +14:u13:"mapping":, +42:u14:"is_event_type_a_string_or_a_number?":, +7:u22:"ta, +8:u23:"tag, +10:u03:"tag":, +14:u04:"mapping":, +42:u05:"is_event_type_a_string_or_a_number?":, +17:u03:"event_type",, +10:u11:"tag":, +14:u12:"mapping":, +42:u13:"is_event_type_a_string_or_a_number?":, +8:u23:"map, +8:uI2:"?":, +10:u02:"tag":, +14:u03:"mapping":, +42:u04:"is_event_type_a_string_or_a_number?":, +17:u02:"event_type",, +10:u10:"tag":, +14:u11:"mapping":, +42:u12:"is_event_type_a_string_or_a_number?":, +7:u22:"is, +8:u23:"is_, +8:uI1:"?":, +15:uI2:"":"":"":"", +10:u01:"tag":, +14:u02:"mapping":, +42:u03:"is_event_type_a_string_or_a_number?":, +17:u01:"event_type",, +14:u10:"mapping":, +42:u11:"is_event_type_a_string_or_a_number?":, +8:uI0:"?":, +15:uI1:"":"":"":"", +10:u00:"tag":, +14:u01:"mapping":, +42:u02:"is_event_type_a_string_or_a_number?":, +17:u00:"event_type",, +42:u10:"is_event_type_a_string_or_a_number?":, +15:uI0:"":"":"":"", +14:u00:"mapping":, +42:u01:"is_event_type_a_string_or_a_number?":, +42:u00:"is_event_type_a_string_or_a_number?":, +22:u08:"account_deleted":, +22:u07:"account_deleted":, +17:u08:"account_id":, +22:u06:"account_deleted":, +22:u14:"account_deleted":, +22:u05:"account_deleted":, +17:u07:"account_id":, +22:u13:"account_deleted":, +22:u04:"account_deleted":, +17:u06:"account_id":, +35:u08:"account_payment_plan_changed":, +22:u12:"account_deleted":, +17:u14:"account_id":, +22:u03:"account_deleted":, +17:u05:"account_id":, +22:u11:"account_deleted":, +17:u13:"account_id":, +22:u02:"account_deleted":, +17:u04:"account_id":, +35:u07:"account_payment_plan_changed":, +22:u10:"account_deleted":, +17:u12:"account_id":, +22:u01:"account_deleted":, +17:u03:"account_id":, +35:u06:"account_payment_plan_changed":, +19:u08:"payment_plan":, +17:u11:"account_id":, +35:u14:"account_payment_plan_changed":, +22:u00:"account_deleted":, +17:u02:"account_id":, +35:u05:"account_payment_plan_changed":, +17:u10:"account_id":, +35:u13:"account_payment_plan_changed":, +17:u01:"account_id":, +35:u04:"account_payment_plan_changed":, +19:u07:"payment_plan":, +35:u12:"account_payment_plan_changed":, +17:u00:"account_id":, +35:u03:"account_payment_plan_changed":, +19:u06:"payment_plan":, +18:u08:"upgraded_by":, +35:u11:"account_payment_plan_changed":, +19:u14:"payment_plan":, +35:u02:"account_payment_plan_changed":, +19:u05:"payment_plan":, +35:u10:"account_payment_plan_changed":, +19:u13:"payment_plan":, +17:uI2:"":"":["",""], +35:u01:"account_payment_plan_changed":, +19:u04:"payment_plan":, +18:u07:"upgraded_by":, +19:u12:"payment_plan":, +8:u23:"pay, +17:uI1:"":"":["",""], +35:u00:"account_payment_plan_changed":, +19:u03:"payment_plan":, +18:u06:"upgraded_by":, +19:u11:"payment_plan":, +18:u14:"upgraded_by":, +17:uI0:"":"":["",""], +19:u02:"payment_plan":, +18:u05:"upgraded_by":, +19:u10:"payment_plan":, +18:u13:"upgraded_by":, +19:u01:"payment_plan":, +18:u04:"upgraded_by":, +18:u12:"upgraded_by":, +7:u22:"up, +8:u23:"upg, +19:u00:"payment_plan":, +18:u03:"upgraded_by":, +18:u11:"upgraded_by":, +18:u02:"upgraded_by":, +18:u10:"upgraded_by":, +18:u01:"upgraded_by":, +11:u08:schema,, +18:u00:"upgraded_by":, +11:u07:schema,, +12:u08:invalid., +11:u06:schema,, +12:u07:invalid., +18:u08:"unspcecified", +11:u05:schema,, +12:u06:invalid., +11:u04:schema,, +12:u05:invalid., +18:u07:"unspcecified", +11:u03:schema,, +12:u04:invalid., +18:u06:"unspcecified", +11:u02:schema,, +12:u03:invalid., +18:u14:"unspcecified", +18:u05:"unspcecified", +11:u01:schema,, +12:u02:invalid., +11:u08:schema., +18:u13:"unspcecified", +8:uI2:"".:, +18:u04:"unspcecified", +11:u00:schema,, +12:u01:invalid., +11:u07:schema., +18:u12:"unspcecified", +8:u23:"uns, +8:uI1:"".:, +18:u03:"unspcecified", +12:u00:invalid., +11:u06:schema., +18:u11:"unspcecified", +8:uI0:"".:, +15:uI2:"":"","":"", +18:u02:"unspcecified", +11:u05:schema., +18:u10:"unspcecified", +15:uI1:"":"","":"", +18:u01:"unspcecified", +11:u04:schema., +15:uI0:"":"","":"", +18:u00:"unspcecified", +11:u03:schema., +14:u08:contention, +11:u02:schema., +17:u08:"unspecified", +11:u01:schema., +14:u07:contention, +13:u08:Rejecting, +11:u00:schema., +12:u08:members,, +14:u06:contention, +17:u07:"unspecified", +15:u08:semantics"., +12:u07:members,, +14:u14:contention, +14:u05:contention, +17:u06:"unspecified", +13:u07:Rejecting, +12:u06:members,, +14:u13:contention, +17:u14:"unspecified", +14:u04:contention, +17:u05:"unspecified", +13:u06:Rejecting, +15:u07:semantics"., +12:u05:members,, +14:u12:contention, +17:u13:"unspecified", +13:u14:rejecting, +14:u03:contention, +17:u04:"unspecified", +13:u05:Rejecting, +15:u06:semantics"., +12:u04:members,, +14:u11:contention, +17:u12:"unspecified", +13:u13:rejecting, +15:u14:semantics"., +14:u02:contention, +17:u03:"unspecified", +13:u04:Rejecting, +15:u05:semantics"., +10:u08:strict, +12:u03:members,, +14:u10:contention, +17:u11:"unspecified", +13:u12:rejecting, +15:u13:semantics"., +7:u22:Rej, +8:u23:Reje, +14:u01:contention, +17:u02:"unspecified", +13:u03:Rejecting, +15:u04:semantics"., +12:u02:members,, +17:u10:"unspecified", +13:u11:rejecting, +15:u12:semantics"., +14:u00:contention, +17:u01:"unspecified", +13:u02:Rejecting, +15:u03:semantics"., +10:u07:strict, +12:u01:members,, +13:u10:rejecting, +15:u11:semantics"., +17:u00:"unspecified", +13:u01:Rejecting, +15:u02:semantics"., +10:u06:strict, +12:u00:members,, +15:u10:semantics"., +10:u14:strict, +13:u00:Rejecting, +15:u01:semantics"., +10:u05:strict, +10:u13:strict, +15:u00:semantics"., +10:u04:strict, +10:u12:strict, +10:u03:strict, +13:u08:producing, +10:u11:strict, +10:u02:strict, +10:u10:strict, +10:u01:strict, +13:u07:producing, +10:u00:strict, +13:u06:producing, +13:u14:producing, +13:u05:producing, +13:u13:producing, +13:u04:producing, +13:u12:producing, +13:u03:producing, +13:u11:producing, +13:u02:producing, +13:u10:producing, +13:u01:producing, +13:u00:producing, +13:u08:dictating, +13:u07:dictating, +13:u06:dictating, +13:u05:dictating, +13:u04:dictating, +13:u03:dictating, +13:u02:dictating, +13:u01:dictating, +13:u00:dictating, +12:u08:unknown,, +18:u08:unpredictable,, +12:u07:unknown,, +18:u07:unpredictable,, +12:u06:unknown,, +18:u06:unpredictable,, +12:u14:unknown,, +12:u05:unknown,, +18:u05:unpredictable,, +12:u13:unknown,, +12:u04:unknown,, +13:u08:something, +18:u04:unpredictable,, +12:u12:unknown,, +7:u22:unk, +8:u23:unkn, +12:u03:unknown,, +18:u03:unpredictable,, +12:u11:unknown,, +12:u02:unknown,, +13:u07:something, +13:u08:recursive, +18:u02:unpredictable,, +12:u10:unknown,, +12:u01:unknown,, +13:u06:something, +18:u01:unpredictable,, +15:u08:structures., +13:u14:something, +12:u00:unknown,, +13:u05:something, +13:u07:recursive, +18:u00:unpredictable,, +15:u07:structures., +13:u13:something, +13:u04:something, +13:u06:recursive, +15:u06:structures., +13:u12:something, +13:u14:recursive, +13:u03:something, +13:u05:recursive, +15:u05:structures., +13:u11:something, +13:u13:recursive, +13:u02:something, +13:u04:recursive, +15:u04:structures., +13:u10:something, +13:u12:recursive, +8:u23:recu, +13:u01:something, +13:u03:recursive, +15:u03:structures., +13:u11:recursive, +13:u00:something, +13:u02:recursive, +15:u02:structures., +13:u10:recursive, +13:u01:recursive, +15:u01:structures., +13:u00:recursive, +15:u00:structures., +7:u08:"a", +11:u08:Accepts, +7:u07:"a", +13:u08:evaluting, +7:u06:"a", +7:u08:123, +11:u07:Accepts, +6:u08:[{, +7:u05:"a", +7:u07:123, +11:u06:Accepts, +13:u07:evaluting, +7:u04:"a", +7:u06:123, +19:u08:"instancePath":, +11:u14:accepts, +11:u05:Accepts, +13:u06:evaluting, +6:u07:[{, +7:u03:"a", +7:u05:123, +19:u07:"instancePath":, +11:u13:accepts, +13:u14:evaluting, +11:u04:Accepts, +13:u05:evaluting, +6:u06:[{, +7:u02:"a", +7:u04:123, +19:u06:"instancePath":, +11:u12:accepts, +13:u13:evaluting, +6:u14:[{, +11:u03:Accepts, +13:u04:evaluting, +6:u05:[{, +7:u01:"a", +7:u03:123, +19:u05:"instancePath":, +11:u11:accepts, +13:u12:evaluting, +6:u13:[{, +20:uI2:["":"","":"///"], +11:u02:Accepts, +13:u03:evaluting, +6:u04:[{, +7:u00:"a", +7:u02:123, +19:u04:"instancePath":, +11:u10:accepts, +13:u11:evaluting, +6:u12:[{, +6:u21:[{, +6:u22:[{, +6:u23:[{, +20:uI1:["":"","":"///"], +11:u01:Accepts, +13:u02:evaluting, +6:u03:[{, +7:u01:123, +19:u03:"instancePath":, +13:u10:evaluting, +6:u11:[{, +20:uI0:["":"","":"///"], +11:u00:Accepts, +13:u01:evaluting, +6:u02:[{, +7:u00:123, +19:u02:"instancePath":, +6:u10:[{, +13:u00:evaluting, +6:u01:[{, +19:u01:"instancePath":, +6:u00:[{, +19:u00:"instancePath":, +12:u08:non-root, +15:u08:references., +12:u07:non-root, +12:u06:non-root, +15:u07:references., +12:u05:non-root, +15:u06:references., +12:u08:boolean,, +12:u04:non-root, +15:u14:references., +15:u05:references., +12:u03:non-root, +15:u13:references., +15:u04:references., +12:u07:boolean,, +12:u02:non-root, +15:u12:references., +15:u03:references., +12:u06:boolean,, +12:u01:non-root, +15:u11:references., +12:u14:boolean,, +15:u02:references., +12:u05:boolean,, +12:u00:non-root, +15:u10:references., +12:u13:boolean,, +12:uI2:,,,([])., +15:u01:references., +12:u04:boolean,, +12:u12:boolean,, +12:uI1:,,,([])., +15:u00:references., +12:u03:boolean,, +12:u11:boolean,, +12:uI0:,,,([])., +12:u02:boolean,, +12:u10:boolean,, +7:uI2:,':, +12:u01:boolean,, +7:uI1:,':, +12:u00:boolean,, +7:uI0:,':, +72:u08:+-------------------+----------------------------------------------+, +72:u07:+-------------------+----------------------------------------------+, +72:u06:+-------------------+----------------------------------------------+, +72:u14:+-------------------+----------------------------------------------+, +72:u05:+-------------------+----------------------------------------------+, +72:u13:+-------------------+----------------------------------------------+, +72:u04:+-------------------+----------------------------------------------+, +72:u12:+-------------------+----------------------------------------------+, +72:u03:+-------------------+----------------------------------------------+, +72:u11:+-------------------+----------------------------------------------+, +72:u02:+-------------------+----------------------------------------------+, +72:u10:+-------------------+----------------------------------------------+, +72:u01:+-------------------+----------------------------------------------+, +72:u00:+-------------------+----------------------------------------------+, +11:u08:float32, +11:u07:float32, +11:u06:float32, +11:u05:float32, +11:u04:float32, +11:u03:float32, +11:u02:float32, +11:u08:float64, +11:u01:float32, +11:u07:float64, +11:u00:float32, +11:u06:float64, +11:u05:float64, +11:u04:float64, +11:u03:float64, +11:u02:float64, +8:u08:int8, +11:u01:float64, +8:u07:int8, +11:u00:float64, +8:u06:int8, +8:u05:int8, +8:u04:int8, +8:u03:int8, +8:u02:int8, +9:u08:uint8, +8:u01:int8, +9:u07:uint8, +8:u00:int8, +9:u06:uint8, +9:u05:uint8, +9:u04:uint8, +9:u03:uint8, +9:u02:uint8, +9:u08:int16, +9:u01:uint8, +9:u07:int16, +9:u00:uint8, +9:u06:int16, +9:u05:int16, +9:u04:int16, +9:u03:int16, +9:u02:int16, +10:u08:uint16, +9:u01:int16, +10:u07:uint16, +9:u00:int16, +10:u06:uint16, +10:u05:uint16, +10:u04:uint16, +10:u03:uint16, +10:u02:uint16, +9:u08:int32, +10:u01:uint16, +9:u07:int32, +10:u00:uint16, +9:u06:int32, +9:u05:int32, +9:u04:int32, +9:u03:int32, +9:u02:int32, +10:u08:uint32, +9:u01:int32, +10:u07:uint32, +9:u00:int32, +10:u06:uint32, +10:u05:uint32, +10:u04:uint32, +10:u03:uint32, +10:u02:uint32, +10:u01:uint32, +10:u00:uint32, +13:u08:timestamp, +13:u07:timestamp, +13:u06:timestamp, +13:u08:"float32", +13:u05:timestamp, +13:u04:timestamp, +13:u07:"float32", +7:u08:754, +13:u03:timestamp, +13:u06:"float32", +13:u02:timestamp, +20:u08:single-precision, +13:u14:"float32", +13:u05:"float32", +7:u07:754, +13:u01:timestamp, +20:u07:single-precision, +13:u13:"float32", +11:u14:intent., +10:uI2:"""""", +13:u04:"float32", +7:u06:754, +13:u00:timestamp, +20:u06:single-precision, +13:u12:"float32", +11:u13:intent., +7:u14:754, +7:u22:"fl, +8:u23:"flo, +10:uI1:"""""", +13:u03:"float32", +7:u05:754, +20:u05:single-precision, +13:u11:"float32", +11:u12:intent., +7:u13:754, +10:uI0:"""""", +13:u02:"float32", +7:u04:754, +20:u04:single-precision, +13:u08:"number"., +13:u10:"float32", +11:u11:intent., +7:u12:754, +6:u21:75, +7:u22:754, +7:u23:754, +8:uI2:-."", +13:u01:"float32", +7:u03:754, +20:u03:single-precision, +13:u07:"number"., +7:u08:_T_, +11:u10:intent., +7:u11:754, +8:uI1:-."", +13:u00:"float32", +7:u02:754, +9:u08:part., +20:u02:single-precision, +13:u06:"number"., +7:u07:_T_, +7:u10:754, +8:uI0:-."", +7:u01:754, +20:u01:single-precision, +13:u05:"number"., +7:u06:_T_, +7:u00:754, +9:u07:part., +20:u00:single-precision, +13:u04:"number"., +7:u05:_T_, +9:u06:part., +13:u03:"number"., +7:u04:_T_, +9:u14:part., +9:u05:part., +13:u02:"number"., +7:u03:_T_, +9:u13:part., +9:u04:part., +13:u01:"number"., +7:u02:_T_, +9:u12:part., +9:u03:part., +13:u00:"number"., +7:u01:_T_, +9:u11:part., +9:u02:part., +7:u00:_T_, +9:u10:part., +9:u01:part., +70:u08:+--------+---------------------------+---------------------------+, +9:u00:part., +70:u07:+--------+---------------------------+---------------------------+, +70:u06:+--------+---------------------------+---------------------------+, +11:u08:Minimum, +70:u14:+--------+---------------------------+---------------------------+, +70:u05:+--------+---------------------------+---------------------------+, +11:u07:Minimum, +70:u13:+--------+---------------------------+---------------------------+, +70:u04:+--------+---------------------------+---------------------------+, +11:u06:Minimum, +70:u12:+--------+---------------------------+---------------------------+, +70:u03:+--------+---------------------------+---------------------------+, +11:u05:Minimum, +8:u08:-128, +70:u11:+--------+---------------------------+---------------------------+, +70:u02:+--------+---------------------------+---------------------------+, +11:u04:Minimum, +8:u07:-128, +7:u08:127, +70:u10:+--------+---------------------------+---------------------------+, +70:u01:+--------+---------------------------+---------------------------+, +11:u03:Minimum, +8:u06:-128, +7:u07:127, +70:u00:+--------+---------------------------+---------------------------+, +11:u02:Minimum, +8:u05:-128, +7:u06:127, +11:u01:Minimum, +8:u04:-128, +7:u05:127, +11:u00:Minimum, +8:u03:-128, +7:u04:127, +8:u02:-128, +7:u03:127, +8:u01:-128, +7:u02:127, +8:u00:-128, +7:u01:127, +7:u08:255, +7:u00:127, +7:u07:255, +7:u06:255, +7:u05:255, +7:u04:255, +7:u03:255, +7:u02:255, +7:u01:255, +10:u08:32,767, +7:u00:255, +10:u07:32,767, +10:u06:32,767, +10:u05:32,767, +10:u04:32,767, +10:u03:32,767, +10:u02:32,767, +10:u01:32,767, +10:u08:65,535, +10:u00:32,767, +10:u07:65,535, +10:u06:65,535, +10:u05:65,535, +10:u04:65,535, +10:u03:65,535, +10:u02:65,535, +10:u01:65,535, +17:u08:2,147,483,647, +10:u00:65,535, +17:u07:2,147,483,647, +17:u06:2,147,483,647, +8:uI2:-,,,, +17:u05:2,147,483,647, +8:uI1:-,,,, +17:u04:2,147,483,647, +8:uI0:-,,,, +17:u03:2,147,483,647, +17:u02:2,147,483,647, +17:u01:2,147,483,647, +17:u08:4,294,967,295, +17:u00:2,147,483,647, +17:u07:4,294,967,295, +17:u06:4,294,967,295, +17:u05:4,294,967,295, +17:u04:4,294,967,295, +12:u08:{"type":, +17:u03:4,294,967,295, +8:u08:10.5, +17:u02:4,294,967,295, +8:u07:10.5, +11:u08:"int8"}, +12:u07:{"type":, +17:u01:4,294,967,295, +8:u06:10.5, +11:u07:"int8"}, +12:u06:{"type":, +16:u08:"schemaPath", +17:u00:4,294,967,295, +8:u05:10.5, +11:u06:"int8"}, +9:u08:shall, +12:u14:{"type":, +12:u05:{"type":, +8:u04:10.5, +11:u05:"int8"}, +9:u07:shall, +12:u13:{"type":, +16:uI2:"":"",.,.,.., +12:u04:{"type":, +16:u07:"schemaPath", +8:u03:10.5, +11:u04:"int8"}, +9:u06:shall, +12:u12:{"type":, +6:u21:{", +7:u22:{"t, +8:u23:{"ty, +16:uI1:"":"",.,.,.., +12:u03:{"type":, +16:u06:"schemaPath", +8:u02:10.5, +11:u03:"int8"}, +9:u05:shall, +12:u11:{"type":, +16:u14:"schemapath", +16:uI0:"":"",.,.,.., +12:u02:{"type":, +16:u05:"schemaPath", +8:u01:10.5, +11:u02:"int8"}, +9:u04:shall, +12:u10:{"type":, +16:u13:"schemapath", +12:u01:{"type":, +16:u04:"schemaPath", +8:u00:10.5, +11:u01:"int8"}, +9:u03:shall, +10:u08:false., +16:u12:"schemapath", +7:u22:"sc, +8:u23:"sch, +12:u00:{"type":, +16:u03:"schemaPath", +11:u00:"int8"}, +9:u02:shall, +10:u07:false., +16:u11:"schemapath", +11:uI2:"":"",., +16:u02:"schemaPath", +9:u01:shall, +10:u06:false., +16:u10:"schemapath", +11:uI1:"":"",., +12:uI2:"":"".,,, +16:u01:"schemaPath", +9:u00:shall, +10:u05:false., +11:uI0:"":"",., +12:uI1:"":"".,,, +16:u00:"schemaPath", +10:u04:false., +10:u08:"foo",, +12:uI0:"":"".,,, +12:uI2:"":"",.,, +30:u08:"1985-04-12T23:20:50.52Z",, +10:u03:false., +10:u07:"foo",, +12:uI1:"":"",.,, +10:u02:false., +10:u06:"foo",, +8:u23:fals, +12:uI0:"":"",.,, +16:uI2:"":"""--::.", +30:u07:"1985-04-12T23:20:50.52Z",, +11:u08:produce, +10:u01:false., +10:u05:"foo",, +16:uI1:"":"""--::.", +30:u06:"1985-04-12T23:20:50.52Z",, +10:u00:false., +10:u04:"foo",, +30:u14:"1985-04-12t23:20:50.52z",, +16:uI0:"":"""--::.", +30:u05:"1985-04-12T23:20:50.52Z",, +11:u07:produce, +10:u03:"foo",, +30:u13:"1985-04-12t23:20:50.52z",, +15:uI2:"--::.",""., +30:u04:"1985-04-12T23:20:50.52Z",, +11:u06:produce, +10:u02:"foo",, +30:u12:"1985-04-12t23:20:50.52z",, +11:u14:produce, +6:u21:"1, +7:u22:"19, +8:u23:"198, +15:uI1:"--::.",""., +30:u03:"1985-04-12T23:20:50.52Z",, +11:u05:produce, +10:u01:"foo",, +30:u11:"1985-04-12t23:20:50.52z",, +11:u13:produce, +15:uI0:"--::.",""., +30:u02:"1985-04-12T23:20:50.52Z",, +11:u04:produce, +10:u00:"foo",, +30:u10:"1985-04-12t23:20:50.52z",, +11:u12:produce, +18:uI2:["":"","":"/"], +30:u01:"1985-04-12T23:20:50.52Z",, +11:u03:produce, +11:u11:produce, +18:uI1:["":"","":"/"], +30:u00:"1985-04-12T23:20:50.52Z",, +11:u02:produce, +11:u10:produce, +18:uI0:["":"","":"/"], +11:u01:produce, +11:u00:produce, +14:u08:"PENDING",, +14:u07:"PENDING",, +13:u08:"UNKNOWN", +14:u06:"PENDING",, +13:u07:"UNKNOWN", +14:u05:"PENDING",, +13:u06:"UNKNOWN", +13:uI2:"","","",, +14:u04:"PENDING",, +13:u05:"UNKNOWN", +13:uI1:"","","",, +14:u03:"PENDING",, +13:u04:"UNKNOWN", +13:uI0:"","","",, +14:u02:"PENDING",, +13:u03:"UNKNOWN", +14:u01:"PENDING",, +13:u02:"UNKNOWN", +14:u00:"PENDING",, +13:u01:"UNKNOWN", +13:u00:"UNKNOWN", +15:u08:"elements"., +15:u07:"elements"., +15:u06:"elements"., +15:u14:"elements"., +15:u05:"elements"., +15:u13:"elements"., +15:u04:"elements"., +15:u12:"elements"., +15:u03:"elements"., +15:u11:"elements"., +15:u02:"elements"., +15:u10:"elements"., +15:u01:"elements"., +15:u00:"elements"., +12:u08:"number", +12:u07:"number", +12:u06:"number", +12:u05:"number", +12:u04:"number", +12:u03:"number", +12:u02:"number", +12:u01:"number", +12:u00:"number", +7:u08:[1,, +12:u14:evaluate, +11:uI2:[][,,]., +12:u13:evaluate, +11:uI1:[][,,]., +7:u07:[1,, +12:u12:evaluate, +11:uI0:[][,,]., +7:u06:[1,, +12:u11:evaluate, +7:u14:[1,, +7:u05:[1,, +12:u10:evaluate, +7:u13:[1,, +14:uI2:[,,"",,""], +7:u04:[1,, +7:u12:[1,, +7:u22:[1,, +7:u23:[1,, +14:uI1:[,,"",,""], +7:u03:[1,, +7:u11:[1,, +14:uI0:[,,"",,""], +7:u02:[1,, +7:u10:[1,, +19:uI2:"":"/","":"//",, +7:u01:[1,, +19:uI1:"":"/","":"//",, +18:uI2:"":"/","":"//", +7:u00:[1,, +19:uI0:"":"/","":"//",, +18:uI1:"":"/","":"//", +18:uI0:"":"/","":"//", +18:u08:"instancePath", +18:u07:"instancePath", +18:u06:"instancePath", +18:u14:"instancepath", +18:u05:"instancePath", +25:u08:"optionalProperties"., +18:u13:"instancepath", +12:u14:pointing, +9:uI2:"","", +18:u04:"instancePath", +18:u12:"instancepath", +12:u13:pointing, +8:u23:"ins, +9:uI1:"","", +18:u03:"instancePath", +25:u07:"optionalProperties"., +17:u08:"properties",, +18:u11:"instancepath", +12:u12:pointing, +9:uI0:"","", +9:uI2:;',"", +18:u02:"instancePath", +25:u06:"optionalProperties"., +17:u08:"properties"., +18:u10:"instancepath", +12:u11:pointing, +25:u14:"optionalproperties"., +9:uI1:;',"", +18:u01:"instancePath", +25:u05:"optionalProperties"., +17:u07:"properties",, +8:u08:_P_,, +12:u10:pointing, +25:u13:"optionalproperties"., +8:u23:shal, +9:uI0:;',"", +18:u00:"instancePath", +25:u04:"optionalProperties"., +17:u06:"properties",, +17:u07:"properties"., +8:u07:_P_,, +25:u12:"optionalproperties"., +17:u14:"properties",, +25:u03:"optionalProperties"., +17:u05:"properties",, +17:u06:"properties"., +8:u06:_P_,, +25:u11:"optionalproperties"., +17:u13:"properties",, +17:u14:"properties"., +25:u02:"optionalProperties"., +17:u04:"properties",, +17:u05:"properties"., +8:u05:_P_,, +25:u10:"optionalproperties"., +17:u12:"properties",, +17:u13:"properties"., +10:uI2:"".,,., +25:u01:"optionalProperties"., +17:u03:"properties",, +17:u04:"properties"., +8:u04:_P_,, +17:u11:"properties",, +17:u12:"properties"., +10:uI1:"".,,., +25:u00:"optionalProperties"., +17:u02:"properties",, +17:u03:"properties"., +14:u08:described., +8:u03:_P_,, +17:u10:"properties",, +17:u11:"properties"., +10:uI0:"".,,., +17:u01:"properties",, +17:u02:"properties"., +8:u02:_P_,, +17:u10:"properties"., +17:u00:"properties",, +17:u01:"properties"., +14:u07:described., +8:u01:_P_,, +17:u00:"properties"., +14:u06:described., +8:u00:_P_,, +14:u14:described., +14:u05:described., +12:u08:exists)., +14:u13:described., +14:u04:described., +14:u12:described., +14:u03:described., +12:u07:exists)., +14:u11:described., +14:u02:described., +12:u06:exists)., +14:u10:described., +12:u14:exists)., +14:u01:described., +12:u05:exists)., +12:u13:exists)., +14:u00:described., +12:u04:exists)., +12:u12:exists)., +12:u03:exists)., +12:u11:exists)., +12:u02:exists)., +12:u10:exists)., +12:u01:exists)., +12:u00:exists)., +14:u08:exemption", +8:u08:_I_., +14:u07:exemption", +14:u08:Otherwise:, +14:u06:exemption", +8:u07:_I_., +14:u07:Otherwise:, +14:u14:exemption", +14:u05:exemption", +8:u06:_I_., +14:u06:Otherwise:, +14:u13:exemption", +8:u14:_i_., +10:uI2:"(..),, +14:u04:exemption", +8:u05:_I_., +8:u08:_I_,, +14:u05:Otherwise:, +14:u12:exemption", +8:u13:_i_., +8:u23:exem, +10:uI1:"(..),, +14:u03:exemption", +8:u04:_I_., +14:u04:Otherwise:, +14:u11:exemption", +8:u12:_i_., +6:u21:_I, +7:u22:_I_, +8:u23:_I_., +10:uI0:"(..),, +14:u02:exemption", +8:u03:_I_., +8:u07:_I_,, +14:u03:Otherwise:, +14:u10:exemption", +8:u11:_i_., +14:u01:exemption", +8:u02:_I_., +8:u06:_I_,, +13:u08:rejected., +14:u02:Otherwise:, +8:u08:_S_., +8:u10:_i_., +8:u14:_i_,, +14:u00:exemption", +8:u01:_I_., +8:u05:_I_,, +14:u01:Otherwise:, +8:u07:_S_., +8:u13:_i_,, +8:u00:_I_., +8:u04:_I_,, +13:u07:rejected., +14:u00:Otherwise:, +8:u06:_S_., +8:u12:_i_,, +8:u23:_I_,, +8:u03:_I_,, +13:u06:rejected., +8:u05:_S_., +14:u08:evaluating, +8:u11:_i_,, +13:u14:rejected., +8:u02:_I_,, +13:u05:rejected., +8:u04:_S_., +14:u07:evaluating, +8:u10:_i_,, +13:u13:rejected., +8:u01:_I_,, +13:u04:rejected., +8:u03:_S_., +14:u06:evaluating, +10:u08:bullet, +13:u12:rejected., +8:u00:_I_,, +13:u03:rejected., +8:u02:_S_., +14:u05:evaluating, +10:u07:bullet, +13:u11:rejected., +13:u02:rejected., +8:u01:_S_., +14:u04:evaluating, +10:u06:bullet, +13:u10:rejected., +13:u01:rejected., +8:u00:_S_., +14:u03:evaluating, +10:u05:bullet, +13:u00:rejected., +8:u08:"a":, +14:u02:evaluating, +10:u04:bullet, +8:u08:"b":, +14:u01:evaluating, +10:u03:bullet, +8:u07:"a":, +14:u00:evaluating, +10:u02:bullet, +8:u06:"a":, +8:u07:"b":, +10:u01:bullet, +8:u14:"a":, +8:u05:"a":, +8:u06:"b":, +8:u08:"c":, +10:u00:bullet, +8:u13:"a":, +8:u14:"b":, +8:u04:"a":, +8:u05:"b":, +8:u08:"d":, +8:u12:"a":, +8:u13:"b":, +7:u22:"a", +8:u23:"a":, +8:u03:"a":, +8:u04:"b":, +8:u07:"c":, +8:u11:"a":, +8:u12:"b":, +7:u22:"b", +8:u23:"b":, +8:u02:"a":, +8:u03:"b":, +8:u06:"c":, +8:u07:"d":, +8:u10:"a":, +8:u11:"b":, +8:u14:"c":, +8:u01:"a":, +8:u02:"b":, +8:u05:"c":, +8:u06:"d":, +8:u10:"b":, +8:u13:"c":, +8:u14:"d":, +8:u00:"a":, +8:u01:"b":, +8:u04:"c":, +8:u05:"d":, +8:u12:"c":, +8:u13:"d":, +7:u22:"c", +8:u23:"c":, +8:u00:"b":, +8:u03:"c":, +8:u04:"d":, +8:u11:"c":, +8:u12:"d":, +7:u22:"d", +8:u23:"d":, +8:u02:"c":, +8:u03:"d":, +8:u10:"c":, +8:u11:"d":, +8:u01:"c":, +8:u02:"d":, +8:u10:"d":, +8:u00:"c":, +8:u01:"d":, +8:u00:"d":, +21:uI2:"":"","":"","":"", +21:uI1:"":"","":"","":"", +27:uI2:"":"","":"","":"","":"", +21:uI0:"":"","":"","":"", +27:uI1:"":"","":"","":"","":"", +27:uI0:"":"","":"","":"","":"", +17:u08:"schemaPath":, +15:uI2:"":,"":,"":, +19:u08:"/properties/a", +15:uI1:"":,"":,"":, +17:u07:"schemaPath":, +19:u07:"/properties/a", +15:uI0:"":,"":,"":, +17:u06:"schemaPath":, +19:u06:"/properties/a", +24:u08:"/properties/b/type", +17:u14:"schemapath":, +17:u05:"schemaPath":, +19:u05:"/properties/a", +24:u07:"/properties/b/type", +17:u13:"schemapath":, +12:uI2:"":"//",, +17:u04:"schemaPath":, +19:u04:"/properties/a", +24:u06:"/properties/b/type", +32:u08:"/optionalProperties/c/type", +17:u12:"schemapath":, +12:uI1:"":"//",, +11:uI2:"":"/",, +17:u03:"schemaPath":, +19:u03:"/properties/a", +24:u05:"/properties/b/type", +32:u07:"/optionalProperties/c/type", +17:u11:"schemapath":, +12:uI0:"":"//",, +11:uI1:"":"/",, +13:uI2:"":"///",, +17:u02:"schemaPath":, +19:u02:"/properties/a", +24:u04:"/properties/b/type", +32:u06:"/optionalProperties/c/type", +6:u08:"", +17:u10:"schemapath":, +11:uI0:"":"/",, +13:uI1:"":"///",, +17:u01:"schemaPath":, +19:u01:"/properties/a", +24:u03:"/properties/b/type", +32:u05:"/optionalProperties/c/type", +6:u07:"", +13:uI0:"":"///",, +17:u00:"schemaPath":, +19:u00:"/properties/a", +24:u02:"/properties/b/type", +32:u04:"/optionalProperties/c/type", +6:u06:"", +24:u01:"/properties/b/type", +32:u03:"/optionalProperties/c/type", +6:u05:"", +24:u00:"/properties/b/type", +32:u02:"/optionalProperties/c/type", +6:u04:"", +32:u01:"/optionalProperties/c/type", +6:u03:"", +32:u00:"/optionalProperties/c/type", +6:u02:"", +6:u01:"", +6:u00:"", +7:u08:_S_, +7:u07:_S_, +7:u06:_S_, +14:u14:evaluating, +7:u05:_S_, +14:u13:evaluating, +7:u04:_S_, +14:u12:evaluating, +7:u03:_S_, +14:u11:evaluating, +13:u14:"values":, +7:u02:_S_, +14:u10:evaluating, +13:u13:"values":, +7:u01:_S_, +13:u12:"values":, +7:u22:"va, +8:u23:"val, +7:u00:_S_, +13:u11:"values":, +13:u10:"values":, +12:uI2:"":,"":., +12:uI1:"":,"":., +12:uI0:"":,"":., +27:uI2:"":,"":,"":"","":,"":"", +27:uI1:"":,"":,"":"","":,"":"", +27:uI0:"":,"":,"":"","":,"":"", +14:u08:languages., +14:u08:validates:, +14:u07:languages., +14:u06:languages., +14:u07:validates:, +14:u14:languages., +14:u05:languages., +14:u06:validates:, +14:u13:languages., +14:u14:validates:, +14:u04:languages., +14:u05:validates:, +14:u12:languages., +14:u13:validates:, +14:u03:languages., +14:u04:validates:, +14:u11:languages., +14:u12:validates:, +14:u02:languages., +14:u03:validates:, +14:u10:languages., +14:u11:validates:, +14:u01:languages., +14:u02:validates:, +14:u10:validates:, +14:u00:languages., +14:u01:validates:, +13:u08:keywords., +14:u00:validates:, +13:u07:keywords., +13:u06:keywords., +13:u14:keywords., +13:u05:keywords., +13:u13:keywords., +13:u04:keywords., +13:u12:keywords., +8:u23:keyw, +13:u03:keywords., +13:u11:keywords., +13:u02:keywords., +13:u10:keywords., +13:u01:keywords., +8:uI2:"",:, +13:u00:keywords., +8:uI1:"",:, +8:uI0:"",:, +8:u08:_T_., +8:u07:_T_., +8:u06:_T_., +8:u14:_t_., +8:u05:_T_., +8:u13:_t_., +8:u04:_T_., +8:u08:_M_., +8:u12:_t_., +8:u23:_T_., +8:u03:_T_., +8:u11:_t_., +8:u02:_T_., +8:u07:_M_., +8:u10:_t_., +8:u01:_T_., +8:u06:_M_., +8:u14:_m_., +8:u00:_T_., +8:u05:_M_., +8:u13:_m_., +8:u04:_M_., +12:u08:afforded, +8:u12:_m_., +6:u21:_M, +7:u22:_M_, +8:u23:_M_., +8:u03:_M_., +12:u07:afforded, +8:u11:_m_., +8:uI2:'.,', +8:u02:_M_., +12:u06:afforded, +8:u10:_m_., +8:uI1:'.,', +8:u01:_M_., +18:u08:"discriminator, +12:u05:afforded, +8:uI0:'.,', +8:u00:_M_., +12:u04:afforded, +18:u07:"discriminator, +12:u03:afforded, +18:u06:"discriminator, +12:u02:afforded, +18:u14:"discriminator, +18:u05:"discriminator, +12:u01:afforded, +18:u13:"discriminator, +18:u04:"discriminator, +12:u00:afforded, +18:u12:"discriminator, +8:u23:"dis, +18:u03:"discriminator, +18:u11:"discriminator, +18:u02:"discriminator, +18:u10:"discriminator, +18:u01:"discriminator, +18:u00:"discriminator, +14:u08:illustrate, +20:u08:"discriminator":, +14:u07:illustrate, +14:u06:illustrate, +20:u07:"discriminator":, +14:u05:illustrate, +14:u08:"version",, +20:u06:"discriminator":, +9:u08:"v1":, +14:u04:illustrate, +14:u07:"version",, +20:u14:"discriminator":, +20:u05:"discriminator":, +14:u03:illustrate, +14:u06:"version",, +20:u13:"discriminator":, +20:u04:"discriminator":, +9:u07:"v1":, +14:u02:illustrate, +14:u05:"version",, +20:u12:"discriminator":, +20:u03:"discriminator":, +9:u06:"v1":, +14:u01:illustrate, +14:u04:"version",, +20:u11:"discriminator":, +9:u14:"v1":, +20:u02:"discriminator":, +9:u05:"v1":, +14:u00:illustrate, +14:u03:"version",, +20:u10:"discriminator":, +9:u13:"v1":, +20:u01:"discriminator":, +9:u04:"v1":, +9:u08:"v2":, +14:u02:"version",, +9:u12:"v1":, +7:u22:"v1, +8:u23:"v1", +20:u00:"discriminator":, +9:u03:"v1":, +14:u01:"version",, +9:u11:"v1":, +9:u02:"v1":, +9:u07:"v2":, +14:u00:"version",, +9:u10:"v1":, +9:u01:"v1":, +9:u06:"v2":, +9:u14:"v2":, +9:u00:"v1":, +9:u05:"v2":, +9:u13:"v2":, +9:u04:"v2":, +9:u12:"v2":, +7:u22:"v2, +8:u23:"v2", +9:u03:"v2":, +9:u11:"v2":, +9:u02:"v2":, +9:u10:"v2":, +9:u01:"v2":, +9:u00:"v2":, +13:u08:"example", +11:u08:Against, +13:u07:"example", +13:u06:"example", +11:u07:Against, +9:u08:(This, +13:u14:"example", +13:u05:"example", +11:u06:Against, +13:u13:"example", +13:u04:"example", +11:u05:Against, +9:u07:(This, +13:u12:"example", +8:u23:"exa, +13:u03:"example", +11:u04:Against, +9:u06:(This, +13:u11:"example", +9:u14:(this, +13:u02:"example", +11:u03:Against, +9:u05:(This, +13:u10:"example", +9:u13:(this, +13:u01:"example", +11:u02:Against, +9:u04:(This, +9:u12:(this, +7:u22:(Th, +8:u23:(Thi, +13:u00:"example", +11:u01:Against, +9:u03:(This, +9:u11:(this, +11:u00:Against, +9:u02:(This, +9:u10:(this, +9:u01:(This, +14:u08:"version":, +19:uI2:["":"","":"//"], +9:u00:(This, +14:u07:"version":, +19:uI1:["":"","":"//"], +14:u06:"version":, +19:uI0:["":"","":"//"], +14:u05:"version":, +14:u04:"version":, +14:u03:"version":, +20:uI2:["":"/","":"//"], +14:u02:"version":, +20:uI1:["":"/","":"//"], +14:u01:"version":, +20:uI0:["":"/","":"//"], +14:u00:"version":, +28:u08:"/discriminator/mapping", +28:u07:"/discriminator/mapping", +28:u06:"/discriminator/mapping", +28:u05:"/discriminator/mapping", +14:u08:existing.), +11:uI2:"":"//", +28:u04:"/discriminator/mapping", +14:u07:existing.), +11:uI1:"":"//", +28:u03:"/discriminator/mapping", +14:u06:existing.), +11:uI0:"":"//", +28:u02:"/discriminator/mapping", +14:u05:existing.), +28:u01:"/discriminator/mapping", +14:u04:existing.), +28:u00:"/discriminator/mapping", +14:u03:existing.), +13:uI2:"":"","":, +14:u02:existing.), +9:u08:"/a",, +13:uI1:"":"","":, +14:u01:existing.), +9:u07:"/a",, +49:u08:"/discriminator/mapping/v2/properties/a/type", +13:uI0:"":"","":, +14:u00:existing.), +9:u06:"/a",, +49:u07:"/discriminator/mapping/v2/properties/a/type", +19:u14:"instancepath":, +9:u05:"/a",, +49:u06:"/discriminator/mapping/v2/properties/a/type", +19:u13:"instancepath":, +14:u08:satisfying, +9:u04:"/a",, +49:u05:"/discriminator/mapping/v2/properties/a/type", +19:u12:"instancepath":, +15:uI2:"":"//////", +9:u03:"/a",, +49:u04:"/discriminator/mapping/v2/properties/a/type", +9:u08:_S_'s, +19:u11:"instancepath":, +15:uI1:"":"//////", +14:u07:satisfying, +9:u02:"/a",, +49:u03:"/discriminator/mapping/v2/properties/a/type", +9:u07:_S_'s, +19:u10:"instancepath":, +15:uI0:"":"//////", +14:u06:satisfying, +9:u01:"/a",, +49:u02:"/discriminator/mapping/v2/properties/a/type", +9:u06:_S_'s, +14:u14:satisfying, +14:u05:satisfying, +9:u00:"/a",, +49:u01:"/discriminator/mapping/v2/properties/a/type", +9:u05:_S_'s, +14:u13:satisfying, +7:uI2:'.), +14:u04:satisfying, +49:u00:"/discriminator/mapping/v2/properties/a/type", +9:u04:_S_'s, +14:u12:satisfying, +7:uI1:'.), +14:u03:satisfying, +9:u03:_S_'s, +14:u11:satisfying, +7:uI0:'.), +14:u02:satisfying, +9:u02:_S_'s, +14:u10:satisfying, +14:u01:satisfying, +9:u01:_S_'s, +14:u00:satisfying, +9:u00:_S_'s, +13:u08:[RFC8259], +13:u07:[RFC8259], +13:u06:[RFC8259], +13:u14:[rfc8259], +13:u05:[RFC8259], +13:u13:[rfc8259], +13:u04:[RFC8259], +13:u12:[rfc8259], +13:u03:[RFC8259], +13:u11:[rfc8259], +13:u02:[RFC8259], +13:u10:[rfc8259], +13:u01:[RFC8259], +13:u00:[RFC8259], +16:u08:Timestamps",, +10:u08:Klyne,, +46:u08:<https://www.rfc-editor.org/info/rfc3339>., +10:u07:Klyne,, +16:u07:Timestamps",, +13:u08:[RFC6901], +10:u06:Klyne,, +13:u14:[rfc3339], +16:u06:Timestamps",, +46:u07:<https://www.rfc-editor.org/info/rfc3339>., +15:u08:"JavaScript, +10:u05:Klyne,, +10:u08:Bryan,, +13:u13:[rfc3339], +16:u14:timestamps",, +12:uI2:[],..,":, +16:u05:Timestamps",, +46:u06:<https://www.rfc-editor.org/info/rfc3339>., +13:u07:[RFC6901], +10:u04:Klyne,, +10:u07:Bryan,, +13:u12:[rfc3339], +16:u13:timestamps",, +46:u14:<https://www.rfc-editor.org/info/rfc3339>., +12:uI1:[],..,":, +16:u04:Timestamps",, +46:u05:<https://www.rfc-editor.org/info/rfc3339>., +13:u06:[RFC6901], +15:u07:"JavaScript, +46:u08:<https://www.rfc-editor.org/info/rfc6901>., +10:u03:Klyne,, +10:u06:Bryan,, +21:u08:10.17487/RFC6901,, +13:u11:[rfc3339], +16:u12:timestamps",, +46:u13:<https://www.rfc-editor.org/info/rfc3339>., +13:u14:[rfc6901], +12:uI0:[],..,":, +16:u03:Timestamps",, +46:u04:<https://www.rfc-editor.org/info/rfc3339>., +13:u05:[RFC6901], +15:u06:"JavaScript, +10:u02:Klyne,, +10:u05:Bryan,, +21:u07:10.17487/RFC6901,, +13:u10:[rfc3339], +16:u11:timestamps",, +46:u12:<https://www.rfc-editor.org/info/rfc3339>., +13:u13:[rfc6901], +15:u14:"javascript, +18:uI2:[],.,.,,.,.,.,, +16:u02:Timestamps",, +46:u03:<https://www.rfc-editor.org/info/rfc3339>., +13:u04:[RFC6901], +15:u05:"JavaScript, +46:u07:<https://www.rfc-editor.org/info/rfc6901>., +10:u01:Klyne,, +10:u04:Bryan,, +21:u06:10.17487/RFC6901,, +16:u10:timestamps",, +46:u11:<https://www.rfc-editor.org/info/rfc3339>., +13:u12:[rfc6901], +15:u13:"javascript, +18:uI1:[],.,.,,.,.,.,, +16:u01:Timestamps",, +46:u02:<https://www.rfc-editor.org/info/rfc3339>., +13:u03:[RFC6901], +15:u04:"JavaScript, +46:u06:<https://www.rfc-editor.org/info/rfc6901>., +10:u00:Klyne,, +10:u03:Bryan,, +21:u05:10.17487/RFC6901,, +46:u10:<https://www.rfc-editor.org/info/rfc3339>., +13:u11:[rfc6901], +15:u12:"javascript, +46:u14:<https://www.rfc-editor.org/info/rfc6901>., +6:u21:"J, +7:u22:"Ja, +8:u23:"Jav, +18:uI0:[],.,.,,.,.,.,, +16:u00:Timestamps",, +46:u01:<https://www.rfc-editor.org/info/rfc3339>., +13:u02:[RFC6901], +15:u03:"JavaScript, +46:u05:<https://www.rfc-editor.org/info/rfc6901>., +10:u02:Bryan,, +21:u04:10.17487/RFC6901,, +13:u10:[rfc6901], +15:u11:"javascript, +46:u13:<https://www.rfc-editor.org/info/rfc6901>., +46:u00:<https://www.rfc-editor.org/info/rfc3339>., +13:u01:[RFC6901], +15:u02:"JavaScript, +46:u04:<https://www.rfc-editor.org/info/rfc6901>., +15:u08:Interchange, +10:u01:Bryan,, +21:u03:10.17487/RFC6901,, +9:u08:Bray,, +15:u10:"javascript, +46:u12:<https://www.rfc-editor.org/info/rfc6901>., +13:u00:[RFC6901], +15:u01:"JavaScript, +46:u03:<https://www.rfc-editor.org/info/rfc6901>., +10:u00:Bryan,, +21:u02:10.17487/RFC6901,, +9:u07:Bray,, +46:u11:<https://www.rfc-editor.org/info/rfc6901>., +15:u00:"JavaScript, +46:u02:<https://www.rfc-editor.org/info/rfc6901>., +15:u07:Interchange, +46:u08:<https://www.rfc-editor.org/info/rfc8259>., +21:u01:10.17487/RFC6901,, +9:u06:Bray,, +21:u08:10.17487/RFC8259,, +46:u10:<https://www.rfc-editor.org/info/rfc6901>., +46:u01:<https://www.rfc-editor.org/info/rfc6901>., +15:u06:Interchange, +21:u00:10.17487/RFC6901,, +9:u05:Bray,, +21:u07:10.17487/RFC8259,, +15:u14:interchange, +14:uI2:[],.,.,"(), +46:u00:<https://www.rfc-editor.org/info/rfc6901>., +15:u05:Interchange, +46:u07:<https://www.rfc-editor.org/info/rfc8259>., +9:u04:Bray,, +21:u06:10.17487/RFC8259,, +15:u13:interchange, +14:uI1:[],.,.,"(), +15:u04:Interchange, +46:u06:<https://www.rfc-editor.org/info/rfc8259>., +9:u03:Bray,, +21:u05:10.17487/RFC8259,, +15:u12:interchange, +46:u14:<https://www.rfc-editor.org/info/rfc8259>., +14:uI0:[],.,.,"(), +15:u03:Interchange, +46:u05:<https://www.rfc-editor.org/info/rfc8259>., +9:u02:Bray,, +21:u04:10.17487/RFC8259,, +15:u11:interchange, +46:u13:<https://www.rfc-editor.org/info/rfc8259>., +15:u02:Interchange, +46:u04:<https://www.rfc-editor.org/info/rfc8259>., +9:u01:Bray,, +21:u03:10.17487/RFC8259,, +15:u10:interchange, +46:u12:<https://www.rfc-editor.org/info/rfc8259>., +15:u01:Interchange, +46:u03:<https://www.rfc-editor.org/info/rfc8259>., +9:u00:Bray,, +21:u02:10.17487/RFC8259,, +46:u11:<https://www.rfc-editor.org/info/rfc8259>., +15:u00:Interchange, +46:u02:<https://www.rfc-editor.org/info/rfc8259>., +21:u01:10.17487/RFC8259,, +46:u10:<https://www.rfc-editor.org/info/rfc8259>., +46:u01:<https://www.rfc-editor.org/info/rfc8259>., +21:u00:10.17487/RFC8259,, +46:u00:<https://www.rfc-editor.org/info/rfc8259>., +7:u08:aid, +7:u07:aid, +7:u06:aid, +7:u05:aid, +7:u04:aid, +7:u03:aid, +7:u02:aid, +7:u01:aid, +7:u00:aid, +15:u08:Corresponds, +15:u07:Corresponds, +15:u06:Corresponds, +15:u05:Corresponds, +15:u04:Corresponds, +8:u23:Corr, +7:uI2:[*], +15:u03:Corresponds, +7:uI1:[*], +15:u02:Corresponds, +7:uI0:[*], +15:u01:Corresponds, +15:u00:Corresponds, +12:uI2:""/""/"", +12:uI1:""/""/"", +12:uI0:""/""/"", +13:uI2::,:,?:,?:, +13:uI1::,:,?:,?:, +13:uI0::,:,?:,?:, +8:u08:"a",, +10:u08:"foo":, +8:u07:"a",, +8:u06:"a",, +10:u07:"foo":, +8:u05:"a",, +10:u06:"foo":, +8:u04:"a",, +10:u14:"foo":, +10:u05:"foo":, +8:u03:"a",, +10:u13:"foo":, +10:u04:"foo":, +10:u08:"bar":, +8:u02:"a",, +10:u12:"foo":, +7:u22:"fo, +8:u23:"foo, +10:u03:"foo":, +8:u01:"a",, +10:u11:"foo":, +10:u02:"foo":, +10:u07:"bar":, +8:u00:"a",, +10:u10:"foo":, +10:u01:"foo":, +10:u06:"bar":, +10:u14:"bar":, +10:u00:"foo":, +10:u05:"bar":, +10:u13:"bar":, +10:u04:"bar":, +10:u12:"bar":, +7:u22:"ba, +8:u23:"bar, +10:u03:"bar":, +10:u11:"bar":, +10:u02:"bar":, +10:u10:"bar":, +10:u01:"bar":, +10:u00:"bar":, +15:u08:Desrosiers,, +15:u08:Poberezkin,, +15:uI2::"",:/:"",:, +15:u07:Desrosiers,, +9:u08:Denis, +8:u08:Brad, +15:uI1::"",:/:"",:, +15:u06:Desrosiers,, +15:u07:Poberezkin,, +8:u07:Brad, +12:u08:Laxalde,, +15:u14:desrosiers,, +15:uI0::"",:/:"",:, +15:u05:Desrosiers,, +15:u06:Poberezkin,, +9:u07:Denis, +8:u06:Brad, +12:u07:Laxalde,, +10:u08:drafts, +15:u13:desrosiers,, +15:u14:poberezkin,, +15:u04:Desrosiers,, +15:u05:Poberezkin,, +9:u06:Denis, +8:u05:Brad, +12:u06:Laxalde,, +10:u07:drafts, +15:u12:desrosiers,, +15:u13:poberezkin,, +9:u14:denis, +8:u23:Desr, +15:u03:Desrosiers,, +15:u04:Poberezkin,, +9:u05:Denis, +8:u04:Brad, +12:u05:Laxalde,, +10:u06:drafts, +15:u11:desrosiers,, +15:u12:poberezkin,, +9:u13:denis, +7:u22:Pob, +8:u23:Pobe, +15:u02:Desrosiers,, +15:u03:Poberezkin,, +9:u04:Denis, +10:u08:Ulysse, +8:u03:Brad, +12:u04:Laxalde,, +10:u05:drafts, +15:u10:desrosiers,, +15:u11:poberezkin,, +9:u12:denis, +7:u22:Den, +8:u23:Deni, +15:u01:Desrosiers,, +15:u02:Poberezkin,, +9:u03:Denis, +8:u02:Brad, +12:u03:Laxalde,, +10:u04:drafts, +15:u10:poberezkin,, +9:u11:denis, +15:u00:Desrosiers,, +15:u01:Poberezkin,, +9:u02:Denis, +10:u07:Ulysse, +8:u01:Brad, +12:u02:Laxalde,, +10:u03:drafts, +26:u08:ulyssecarion@gmail.com, +9:u10:denis, +15:u00:Poberezkin,, +9:u01:Denis, +10:u06:Ulysse, +8:u00:Brad, +12:u01:Laxalde,, +10:u02:drafts, +26:u07:ulyssecarion@gmail.com, +10:u14:ulysse, +9:u00:Denis, +10:u05:Ulysse, +12:u00:Laxalde,, +10:u01:drafts, +26:u06:ulyssecarion@gmail.com, +10:u13:ulysse, +10:u04:Ulysse, +10:u00:drafts, +26:u05:ulyssecarion@gmail.com, +10:u12:ulysse, +7:u22:Uly, +8:u23:Ulys, +10:u03:Ulysse, +26:u04:ulyssecarion@gmail.com, +10:u11:ulysse, +10:u02:Ulysse, +26:u03:ulyssecarion@gmail.com, +10:u10:ulysse, +10:u01:Ulysse, +26:u02:ulyssecarion@gmail.com, +10:u00:Ulysse, +26:u01:ulyssecarion@gmail.com, +6:u06:N., +10:u06:Nainar, +6:u05:N., +10:u05:Nainar, +8:u08:8287, +6:u04:N., +10:u04:Nainar, +8:u07:8287, +6:u21:N., +6:u22:N., +6:u23:N., +6:u03:N., +10:u03:Nainar, +8:u06:8287, +6:u02:N., +10:u02:Nainar, +8:u05:8287, +9:u08:Iqbal, +6:u01:N., +10:u01:Nainar, +8:u04:8287, +9:u07:Iqbal, +6:u00:N., +10:u00:Nainar, +8:u03:8287, +9:u06:Iqbal, +7:u08:ECI, +8:u02:8287, +9:u05:Iqbal, +14:u08:Vainshtein, +8:u01:8287, +9:u04:Iqbal, +14:u07:Vainshtein, +11:u08:Telecom, +7:u07:ECI, +11:u08:RFC8287, +8:u00:8287, +9:u03:Iqbal, +14:u06:Vainshtein, +11:u07:Telecom, +7:u06:ECI, +48:u08:draft-ietf-mpls-rfc8287-len-clarification-03, +9:u02:Iqbal, +14:u05:Vainshtein, +11:u06:Telecom, +7:u14:eci, +7:u05:ECI, +11:u07:RFC8287, +9:u01:Iqbal, +14:u04:Vainshtein, +11:u05:Telecom, +7:u13:eci, +7:u04:ECI, +11:u06:RFC8287, +48:u07:draft-ietf-mpls-rfc8287-len-clarification-03, +9:u00:Iqbal, +14:u03:Vainshtein, +11:u04:Telecom, +7:u12:eci, +11:u14:rfc8287, +7:u22:ECI, +7:u23:ECI, +7:u03:ECI, +11:u05:RFC8287, +48:u06:draft-ietf-mpls-rfc8287-len-clarification-03, +14:u02:Vainshtein, +11:u03:Telecom, +7:u11:eci, +11:u13:rfc8287, +48:u14:draft-ietf-mpls-rfc8287-len-clarification-03, +7:u02:ECI, +11:u04:RFC8287, +48:u05:draft-ietf-mpls-rfc8287-len-clarification-03, +10:u08:(SIDs), +14:u01:Vainshtein, +11:u02:Telecom, +7:u10:eci, +11:u12:rfc8287, +48:u13:draft-ietf-mpls-rfc8287-len-clarification-03, +7:u01:ECI, +11:u03:RFC8287, +48:u04:draft-ietf-mpls-rfc8287-len-clarification-03, +13:u08:Sub-TLVs., +14:u00:Vainshtein, +11:u01:Telecom, +11:u11:rfc8287, +48:u12:draft-ietf-mpls-rfc8287-len-clarification-03, +7:u00:ECI, +11:u02:RFC8287, +48:u03:draft-ietf-mpls-rfc8287-len-clarification-03, +10:u07:(SIDs), +11:u00:Telecom, +11:u10:rfc8287, +48:u11:draft-ietf-mpls-rfc8287-len-clarification-03, +11:u01:RFC8287, +48:u02:draft-ietf-mpls-rfc8287-len-clarification-03, +10:u06:(SIDs), +13:u07:Sub-TLVs., +48:u10:draft-ietf-mpls-rfc8287-len-clarification-03, +10:u14:(sids), +11:u00:RFC8287, +48:u01:draft-ietf-mpls-rfc8287-len-clarification-03, +10:u05:(SIDs), +13:u06:Sub-TLVs., +10:u13:(sids), +48:u00:draft-ietf-mpls-rfc8287-len-clarification-03, +10:u04:(SIDs), +13:u05:Sub-TLVs., +10:u12:(sids), +7:u22:(SI, +8:u23:(SID, +10:u03:(SIDs), +13:u04:Sub-TLVs., +10:u11:(sids), +10:u02:(SIDs), +13:u03:Sub-TLVs., +10:u10:(sids), +10:u01:(SIDs), +13:u02:Sub-TLVs., +10:u00:(SIDs), +13:u01:Sub-TLVs., +13:u00:Sub-TLVs., +11:u08:Nainar,, +11:u07:Nainar,, +11:u06:Nainar,, +11:u14:nainar,, +11:u05:Nainar,, +11:u13:nainar,, +11:u04:Nainar,, +11:u12:nainar,, +7:u22:Nai, +8:u23:Nain, +11:u03:Nainar,, +11:u11:nainar,, +11:u02:Nainar,, +11:u10:nainar,, +11:u01:Nainar,, +11:u00:Nainar,, +11:uI2:.-....., +11:uI1:.-....., +11:uI0:.-....., +19:uI2:..--..........., +17:u08:IGP-Adjacency, +19:uI1:..--..........., +17:u07:IGP-Adjacency, +19:uI0:..--..........., +17:u06:IGP-Adjacency, +17:u05:IGP-Adjacency, +17:u04:IGP-Adjacency, +17:u03:IGP-Adjacency, +17:u02:IGP-Adjacency, +17:u01:IGP-Adjacency, +17:u00:IGP-Adjacency, +19:u08:Acknowledgement, +19:u07:Acknowledgement, +19:u06:Acknowledgement, +19:u05:Acknowledgement, +19:u04:Acknowledgement, +19:u03:Acknowledgement, +13:u08:[RFC8287], +19:u02:Acknowledgement, +19:u01:Acknowledgement, +13:u07:[RFC8287], +19:u00:Acknowledgement, +13:u06:[RFC8287], +13:u14:[rfc8287], +13:u05:[RFC8287], +13:u13:[rfc8287], +13:u04:[RFC8287], +13:u12:[rfc8287], +13:u03:[RFC8287], +13:u11:[rfc8287], +9:uI2:().[], +13:u02:[RFC8287], +13:u10:[rfc8287], +9:uI1:().[], +13:u01:[RFC8287], +9:uI0:().[], +13:u00:[RFC8287], +9:u08:same., +9:u07:same., +9:u06:same., +9:u14:same., +9:u05:same., +9:u13:same., +9:u04:same., +9:u08:when,, +9:u12:same., +9:u03:same., +9:u11:same., +9:u02:same., +9:u07:when,, +9:u10:same., +9:u01:same., +9:u06:when,, +9:u14:when,, +9:u00:same., +9:u05:when,, +9:u13:when,, +9:u04:when,, +9:u12:when,, +9:u03:when,, +9:u11:when,, +9:u02:when,, +9:u10:when,, +9:u01:when,, +9:u00:when,, +9:uI2:.,..., +9:uI1:.,..., +9:uI0:.,..., +9:u08:|Type, +9:u07:|Type, +9:u06:|Type, +9:u14:|type, +9:u05:|Type, +9:u13:|type, +9:u04:|Type, +9:u12:|type, +6:u21:|T, +7:u22:|Ty, +8:u23:|Typ, +9:u03:|Type, +9:u11:|type, +9:u02:|Type, +9:u10:|type, +9:u01:|Type, +11:u08:|Prefix, +9:u00:|Type, +11:u07:|Prefix, +11:u06:|Prefix, +11:u14:|prefix, +11:u05:|Prefix, +11:u13:|prefix, +11:u04:|Prefix, +11:u12:|prefix, +6:u21:|P, +7:u22:|Pr, +8:u23:|Pre, +11:u03:|Prefix, +11:u11:|prefix, +11:u02:|Prefix, +11:u10:|prefix, +11:u01:|Prefix, +11:u00:|Prefix, +10:u08:Prefix, +10:u07:Prefix, +10:u06:Prefix, +10:u05:Prefix, +10:u04:Prefix, +10:u03:Prefix, +10:u02:Prefix, +10:u01:Prefix, +10:u00:Prefix, +13:u08:Adjacency, +13:u07:Adjacency, +13:u06:Adjacency, +67:u08:+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+, +13:u05:Adjacency, +13:u04:Adjacency, +67:u07:+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+, +13:u03:Adjacency, +67:u06:+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+, +13:u02:Adjacency, +67:u14:+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+, +67:u05:+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+, +13:u01:Adjacency, +67:u13:+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+, +67:u04:+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+, +13:u00:Adjacency, +67:u12:+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+, +67:u03:+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+, +53:u08:+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+, +67:u11:+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+, +67:u02:+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+, +67:u10:+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+, +67:u01:+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+, +53:u07:+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+, +67:u00:+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+, +53:u06:+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+, +53:u14:+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+, +53:u05:+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+, +53:u13:+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+, +53:u04:+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+, +53:u12:+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+, +53:u03:+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+, +53:u11:+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+, +53:u02:+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+, +15:u08:Unnumbered|, +53:u10:+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+, +53:u01:+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+, +15:u07:Unnumbered|, +53:u00:+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+, +8:u08:OSPF, +15:u06:Unnumbered|, +15:u05:Unnumbered|, +8:u07:OSPF, +15:u04:Unnumbered|, +8:u06:OSPF, +15:u03:Unnumbered|, +8:u14:ospf, +8:u05:OSPF, +15:u02:Unnumbered|, +8:u13:ospf, +8:u04:OSPF, +15:u01:Unnumbered|, +8:u12:ospf, +7:u22:OSP, +8:u23:OSPF, +8:u03:OSPF, +15:u00:Unnumbered|, +8:u11:ospf, +8:u02:OSPF, +8:u10:ospf, +8:u01:OSPF, +8:u00:OSPF, +8:u08:ISIS, +8:u07:ISIS, +8:u06:ISIS, +8:u14:isis, +8:u05:ISIS, +8:u13:isis, +8:u04:ISIS, +8:u12:isis, +6:u14:24, +7:u22:ISI, +8:u23:ISIS, +8:u03:ISIS, +8:u11:isis, +6:u13:24, +8:u02:ISIS, +8:u10:isis, +6:u12:24, +6:u21:24, +6:u22:24, +6:u23:24, +8:u01:ISIS, +6:u11:24, +8:u00:ISIS, +6:u10:24, +6:u14:48, +6:u13:48, +6:u12:48, +6:u21:48, +6:u22:48, +6:u23:48, +6:u11:48, +6:u10:48, +8:u08:Adj., +8:u07:Adj., +8:u06:Adj., +8:u05:Adj., +8:u04:Adj., +8:u03:Adj., +8:u02:Adj., +8:u01:Adj., +8:u00:Adj., +8:u08:Ali,, +8:u07:Ali,, +15:u08:Doppalapudi, +8:u06:Ali,, +8:u05:Ali,, +15:u07:Doppalapudi, +8:u04:Ali,, +15:u06:Doppalapudi, +8:u03:Ali,, +15:u14:doppalapudi, +15:u05:Doppalapudi, +8:u02:Ali,, +15:u13:doppalapudi, +15:u04:Doppalapudi, +8:u01:Ali,, +15:u12:doppalapudi, +7:u22:Dop, +8:u23:Dopp, +15:u03:Doppalapudi, +13:u08:[RFC8029], +8:u00:Ali,, +15:u11:doppalapudi, +15:u02:Doppalapudi, +15:u10:doppalapudi, +15:u01:Doppalapudi, +13:u07:[RFC8029], +15:u00:Doppalapudi, +13:u06:[RFC8029], +13:u14:[rfc8029], +13:u05:[RFC8029], +46:u08:<https://www.rfc-editor.org/info/rfc8029>., +21:u08:10.17487/RFC8029,, +13:u13:[rfc8029], +20:uI2:[],.,,.,,.,.,,.,, +13:u04:[RFC8029], +21:u07:10.17487/RFC8029,, +13:u12:[rfc8029], +20:uI1:[],.,,.,,.,.,,.,, +13:u03:[RFC8029], +46:u07:<https://www.rfc-editor.org/info/rfc8029>., +21:u06:10.17487/RFC8029,, +13:u11:[rfc8029], +20:uI0:[],.,,.,,.,.,,.,, +10:uI2:()-",,, +13:u02:[RFC8029], +46:u06:<https://www.rfc-editor.org/info/rfc8029>., +21:u05:10.17487/RFC8029,, +13:u10:[rfc8029], +46:u14:<https://www.rfc-editor.org/info/rfc8029>., +10:uI1:()-",,, +13:u01:[RFC8029], +46:u05:<https://www.rfc-editor.org/info/rfc8029>., +21:u04:10.17487/RFC8029,, +46:u13:<https://www.rfc-editor.org/info/rfc8029>., +10:uI0:()-",,, +13:u00:[RFC8029], +46:u04:<https://www.rfc-editor.org/info/rfc8029>., +21:u03:10.17487/RFC8029,, +46:u12:<https://www.rfc-editor.org/info/rfc8029>., +46:u03:<https://www.rfc-editor.org/info/rfc8029>., +21:u02:10.17487/RFC8029,, +46:u11:<https://www.rfc-editor.org/info/rfc8029>., +46:u02:<https://www.rfc-editor.org/info/rfc8029>., +21:u01:10.17487/RFC8029,, +46:u10:<https://www.rfc-editor.org/info/rfc8029>., +46:u01:<https://www.rfc-editor.org/info/rfc8029>., +21:u00:10.17487/RFC8029,, +46:u00:<https://www.rfc-editor.org/info/rfc8029>., +10:u08:Kumar,, +19:u08:Ping/Traceroute, +10:u07:Kumar,, +9:u08:Kini,, +10:u06:Kumar,, +9:u07:Kini,, +19:u07:Ping/Traceroute, +12:u08:Planes",, +10:u05:Kumar,, +9:u06:Kini,, +7:u14:n.,, +20:uI2:[],.,.,,.,.,,.,,, +19:u06:Ping/Traceroute, +46:u08:<https://www.rfc-editor.org/info/rfc8287>., +10:u04:Kumar,, +9:u05:Kini,, +7:u13:n.,, +19:u14:ping/traceroute, +20:uI1:[],.,.,,.,.,,.,,, +14:uI2:.,,.,.,"(), +19:u05:Ping/Traceroute, +12:u07:Planes",, +10:u03:Kumar,, +9:u04:Kini,, +7:u12:n.,, +19:u13:ping/traceroute, +17:u14:igp-adjacency, +7:u22:N.,, +7:u23:N.,, +20:uI0:[],.,.,,.,.,,.,,, +14:uI1:.,,.,.,"(), +8:uI2:/()-, +19:u04:Ping/Traceroute, +12:u06:Planes",, +46:u07:<https://www.rfc-editor.org/info/rfc8287>., +10:u02:Kumar,, +9:u03:Kini,, +7:u11:n.,, +19:u12:ping/traceroute, +17:u13:igp-adjacency, +12:u14:planes",, +7:u22:Pin, +8:u23:Ping, +14:uI0:.,,.,.,"(), +8:uI1:/()-, +19:u03:Ping/Traceroute, +12:u05:Planes",, +46:u06:<https://www.rfc-editor.org/info/rfc8287>., +10:u01:Kumar,, +9:u02:Kini,, +7:u10:n.,, +19:u11:ping/traceroute, +17:u12:igp-adjacency, +12:u13:planes",, +46:u14:<https://www.rfc-editor.org/info/rfc8287>., +8:u23:IGP-, +8:uI0:/()-, +19:u02:Ping/Traceroute, +12:u04:Planes",, +46:u05:<https://www.rfc-editor.org/info/rfc8287>., +10:u00:Kumar,, +9:u01:Kini,, +19:u10:ping/traceroute, +17:u11:igp-adjacency, +12:u12:planes",, +46:u13:<https://www.rfc-editor.org/info/rfc8287>., +19:u01:Ping/Traceroute, +12:u03:Planes",, +46:u04:<https://www.rfc-editor.org/info/rfc8287>., +9:u00:Kini,, +17:u10:igp-adjacency, +12:u11:planes",, +46:u12:<https://www.rfc-editor.org/info/rfc8287>., +19:u00:Ping/Traceroute, +12:u02:Planes",, +46:u03:<https://www.rfc-editor.org/info/rfc8287>., +12:u08:Nagendra, +12:u10:planes",, +46:u11:<https://www.rfc-editor.org/info/rfc8287>., +12:u01:Planes",, +46:u02:<https://www.rfc-editor.org/info/rfc8287>., +9:u08:Kumar, +46:u10:<https://www.rfc-editor.org/info/rfc8287>., +12:u00:Planes",, +46:u01:<https://www.rfc-editor.org/info/rfc8287>., +12:u07:Nagendra, +11:u08:7200-12, +9:u07:Kumar, +46:u00:<https://www.rfc-editor.org/info/rfc8287>., +12:u06:Nagendra, +9:u06:Kumar, +7:u08:Kit, +12:u14:nagendra, +12:u05:Nagendra, +11:u07:7200-12, +9:u05:Kumar, +7:u07:Kit, +12:u08:Triangle, +12:u13:nagendra, +12:u04:Nagendra, +11:u06:7200-12, +9:u04:Kumar, +7:u06:Kit, +12:u07:Triangle, +12:u12:nagendra, +11:u14:7200-12, +7:u22:Nag, +8:u23:Nage, +12:u03:Nagendra, +11:u05:7200-12, +9:u03:Kumar, +7:u05:Kit, +12:u06:Triangle, +22:u08:naikumar@cisco.com, +12:u11:nagendra, +11:u13:7200-12, +12:u02:Nagendra, +11:u04:7200-12, +9:u02:Kumar, +7:u04:Kit, +12:u05:Triangle, +22:u07:naikumar@cisco.com, +12:u10:nagendra, +11:u12:7200-12, +7:u22:720, +8:u23:7200, +12:u01:Nagendra, +11:u03:7200-12, +11:u08:7200-11, +9:u01:Kumar, +7:u03:Kit, +12:u04:Triangle, +22:u06:naikumar@cisco.com, +11:u11:7200-12, +12:u00:Nagendra, +11:u02:7200-12, +9:u00:Kumar, +7:u02:Kit, +12:u03:Triangle, +22:u05:naikumar@cisco.com, +11:u10:7200-12, +11:u01:7200-12, +11:u07:7200-11, +7:u01:Kit, +12:u02:Triangle, +22:u04:naikumar@cisco.com, +11:u00:7200-12, +11:u06:7200-11, +7:u00:Kit, +12:u01:Triangle, +22:u03:naikumar@cisco.com, +11:u14:7200-11, +11:u05:7200-11, +10:u08:Faisal, +12:u00:Triangle, +22:u02:naikumar@cisco.com, +22:u08:cpignata@cisco.com, +11:u13:7200-11, +11:u04:7200-11, +22:u01:naikumar@cisco.com, +22:u07:cpignata@cisco.com, +11:u12:7200-11, +11:u03:7200-11, +10:u07:Faisal, +10:u08:Canada, +22:u00:naikumar@cisco.com, +22:u06:cpignata@cisco.com, +11:u11:7200-11, +11:u02:7200-11, +10:u06:Faisal, +22:u05:cpignata@cisco.com, +11:u10:7200-11, +10:u14:faisal, +11:u01:7200-11, +10:u05:Faisal, +10:u07:Canada, +13:u08:Alexander, +22:u04:cpignata@cisco.com, +24:u08:faisal.iqbal@msn.com, +10:u13:faisal, +11:u00:7200-11, +10:u04:Faisal, +10:u06:Canada, +22:u03:cpignata@cisco.com, +24:u07:faisal.iqbal@msn.com, +10:u12:faisal, +10:u14:canada, +8:u23:Fais, +10:u03:Faisal, +10:u05:Canada, +13:u07:Alexander, +10:u08:Israel, +22:u02:cpignata@cisco.com, +24:u06:faisal.iqbal@msn.com, +10:u11:faisal, +10:u13:canada, +10:u02:Faisal, +10:u04:Canada, +13:u06:Alexander, +22:u01:cpignata@cisco.com, +24:u05:faisal.iqbal@msn.com, +10:u10:faisal, +10:u12:canada, +13:u14:alexander, +8:u23:Cana, +10:u01:Faisal, +10:u03:Canada, +13:u05:Alexander, +10:u07:Israel, +22:u00:cpignata@cisco.com, +24:u04:faisal.iqbal@msn.com, +29:u08:vainshtein.alex@gmail.com, +10:u11:canada, +13:u13:alexander, +10:u00:Faisal, +10:u02:Canada, +13:u04:Alexander, +10:u06:Israel, +24:u03:faisal.iqbal@msn.com, +29:u07:vainshtein.alex@gmail.com, +10:u10:canada, +13:u12:alexander, +10:u14:israel, +7:u22:Ale, +8:u23:Alex, +10:u01:Canada, +13:u03:Alexander, +10:u05:Israel, +24:u02:faisal.iqbal@msn.com, +29:u06:vainshtein.alex@gmail.com, +13:u11:alexander, +10:u13:israel, +10:u00:Canada, +13:u02:Alexander, +10:u04:Israel, +24:u01:faisal.iqbal@msn.com, +29:u05:vainshtein.alex@gmail.com, +13:u10:alexander, +10:u12:israel, +7:u22:Isr, +8:u23:Isra, +13:u01:Alexander, +10:u03:Israel, +24:u00:faisal.iqbal@msn.com, +29:u04:vainshtein.alex@gmail.com, +10:u11:israel, +13:u00:Alexander, +10:u02:Israel, +29:u03:vainshtein.alex@gmail.com, +10:u10:israel, +10:u01:Israel, +29:u02:vainshtein.alex@gmail.com, +10:u00:Israel, +29:u01:vainshtein.alex@gmail.com, +9:u08:Group, +9:u07:Group, +17:u08:participants., +9:u06:Group, +17:u07:participants., +9:u05:Group, +17:u06:participants., +9:u04:Group, +17:u05:participants., +9:u03:Group, +17:u04:participants., +9:u02:Group, +17:u03:participants., +8:u08:8569, +9:u01:Group, +17:u02:participants., +8:u07:8569, +9:u00:Group, +17:u01:participants., +8:u06:8569, +17:u00:participants., +8:u05:8569, +8:u04:8569, +8:u03:8569, +8:u02:8569, +8:u01:8569, +8:u00:8569, +44:u08:https://www.rfc-editor.org/info/rfc8569., +44:u07:https://www.rfc-editor.org/info/rfc8569., +44:u06:https://www.rfc-editor.org/info/rfc8569., +44:u14:https://www.rfc-editor.org/info/rfc8569., +44:u05:https://www.rfc-editor.org/info/rfc8569., +44:u13:https://www.rfc-editor.org/info/rfc8569., +44:u04:https://www.rfc-editor.org/info/rfc8569., +44:u12:https://www.rfc-editor.org/info/rfc8569., +44:u03:https://www.rfc-editor.org/info/rfc8569., +44:u11:https://www.rfc-editor.org/info/rfc8569., +44:u02:https://www.rfc-editor.org/info/rfc8569., +44:u10:https://www.rfc-editor.org/info/rfc8569., +44:u01:https://www.rfc-editor.org/info/rfc8569., +44:u00:https://www.rfc-editor.org/info/rfc8569., +12:u08:Consumer, +12:u07:Consumer, +13:u08:Publisher, +12:u06:Consumer, +13:u07:Publisher, +13:u08:Forwarder, +12:u05:Consumer, +13:u06:Publisher, +13:u07:Forwarder, +12:u04:Consumer, +13:u05:Publisher, +13:u06:Forwarder, +12:u03:Consumer, +13:u04:Publisher, +13:u05:Forwarder, +12:u02:Consumer, +13:u03:Publisher, +13:u04:Forwarder, +12:u01:Consumer, +13:u02:Publisher, +13:u03:Forwarder, +12:u00:Consumer, +13:u01:Publisher, +13:u02:Forwarder, +13:u00:Publisher, +13:u01:Forwarder, +13:u00:Forwarder, +10:u08:Hashes, +10:u07:Hashes, +10:u06:Hashes, +10:u05:Hashes, +10:u04:Hashes, +10:u03:Hashes, +10:u02:Hashes, +10:u01:Hashes, +10:u00:Hashes, +11:u08:10.3.5., +11:u08:10.3.6., +11:u07:10.3.5., +11:u08:10.3.7., +11:u06:10.3.5., +11:u07:10.3.6., +11:u08:10.3.8., +11:u14:10.3.5., +11:u05:10.3.5., +11:u06:10.3.6., +11:u07:10.3.7., +11:u08:10.3.9., +15:u08:Unsupported, +11:u13:10.3.5., +11:u14:10.3.6., +11:u04:10.3.5., +11:u05:10.3.6., +11:u06:10.3.7., +11:u07:10.3.8., +15:u07:Unsupported, +11:u12:10.3.5., +11:u13:10.3.6., +11:u14:10.3.7., +11:u03:10.3.5., +11:u04:10.3.6., +11:u05:10.3.7., +11:u06:10.3.8., +11:u07:10.3.9., +15:u06:Unsupported, +11:u11:10.3.5., +11:u12:10.3.6., +11:u13:10.3.7., +11:u14:10.3.8., +11:u02:10.3.5., +11:u03:10.3.6., +11:u04:10.3.7., +11:u05:10.3.8., +11:u06:10.3.9., +15:u05:Unsupported, +11:u10:10.3.5., +11:u11:10.3.6., +11:u12:10.3.7., +11:u13:10.3.8., +11:u14:10.3.9., +11:u01:10.3.5., +11:u02:10.3.6., +11:u03:10.3.7., +11:u04:10.3.8., +11:u05:10.3.9., +15:u04:Unsupported, +11:u10:10.3.6., +11:u11:10.3.7., +11:u12:10.3.8., +11:u13:10.3.9., +11:u00:10.3.5., +11:u01:10.3.6., +11:u02:10.3.7., +11:u03:10.3.8., +11:u04:10.3.9., +15:u03:Unsupported, +11:u10:10.3.7., +11:u11:10.3.8., +11:u12:10.3.9., +11:u00:10.3.6., +11:u01:10.3.7., +11:u02:10.3.8., +11:u03:10.3.9., +15:u02:Unsupported, +11:u10:10.3.8., +11:u11:10.3.9., +11:u00:10.3.7., +11:u01:10.3.8., +11:u02:10.3.9., +15:u01:Unsupported, +11:u10:10.3.9., +11:u00:10.3.8., +11:u01:10.3.9., +15:u00:Unsupported, +11:u00:10.3.9., +10:u08:[nnc]., +10:uI2:--()-., +10:u08:0.x"),, +14:u08:Jacobson's, +14:u14:elaborated, +10:uI1:--()-., +10:u07:[nnc]., +14:u07:Jacobson's, +14:u13:elaborated, +10:uI0:--()-., +10:u06:[nnc]., +10:u07:0.x"),, +14:u06:Jacobson's, +14:u12:elaborated, +10:u14:[nnc]., +7:u22:ela, +8:u23:elab, +10:u05:[nnc]., +10:u06:0.x"),, +11:u08:project, +14:u05:Jacobson's, +14:u11:elaborated, +10:u13:[nnc]., +10:u14:0.x"),, +11:uI2:[].'.(", +10:u04:[nnc]., +10:u05:0.x"),, +15:u08:[ccn-lite],, +14:u04:Jacobson's, +14:u10:elaborated, +10:u12:[nnc]., +10:u13:0.x"),, +11:uI1:[].'.(", +15:uI2:."),.(".")., +10:u03:[nnc]., +10:u04:0.x"),, +11:u07:project, +8:u08:RIOT, +14:u03:Jacobson's, +10:u11:[nnc]., +10:u12:0.x"),, +7:u22:0.x, +8:u23:0.x", +11:uI0:[].'.(", +15:uI1:."),.(".")., +10:u02:[nnc]., +10:u03:0.x"),, +11:u06:project, +15:u07:[ccn-lite],, +14:u02:Jacobson's, +10:u10:[nnc]., +10:u11:0.x"),, +11:u14:project, +15:uI0:."),.(".")., +10:u01:[nnc]., +10:u02:0.x"),, +11:u05:project, +15:u06:[ccn-lite],, +8:u07:RIOT, +14:u01:Jacobson's, +9:u08:(NDN), +10:u10:0.x"),, +11:u13:project, +15:u14:[ccn-lite],, +10:u00:[nnc]., +10:u01:0.x"),, +11:u04:project, +15:u05:[ccn-lite],, +8:u06:RIOT, +14:u00:Jacobson's, +9:u07:(NDN), +11:u12:project, +15:u13:[ccn-lite],, +8:u14:riot, +8:u23:proj, +10:uI2:[-],(), +10:u00:0.x"),, +11:u03:project, +15:u04:[ccn-lite],, +8:u05:RIOT, +9:u06:(NDN), +10:u08:areas., +11:u11:project, +15:u12:[ccn-lite],, +8:u13:riot, +10:uI1:[-],(), +11:u02:project, +15:u03:[ccn-lite],, +8:u04:RIOT, +9:u05:(NDN), +10:u07:areas., +7:u08:0.x, +11:u10:project, +15:u11:[ccn-lite],, +8:u12:riot, +7:u22:RIO, +8:u23:RIOT, +10:uI0:[-],(), +11:u01:project, +15:u02:[ccn-lite],, +8:u03:RIOT, +9:u04:(NDN), +10:u06:areas., +7:u07:0.x, +15:u10:[ccn-lite],, +8:u11:riot, +11:u00:project, +15:u01:[ccn-lite],, +8:u02:RIOT, +9:u03:(NDN), +10:u05:areas., +7:u06:0.x, +11:u08:longest, +8:u10:riot, +15:u00:[ccn-lite],, +8:u01:RIOT, +9:u02:(NDN), +10:u04:areas., +7:u05:0.x, +11:u07:longest, +8:u00:RIOT, +9:u01:(NDN), +10:u03:areas., +7:u04:0.x, +11:u06:longest, +9:u00:(NDN), +10:u02:areas., +7:u03:0.x, +11:u05:longest, +10:u01:areas., +7:u02:0.x, +11:u04:longest, +10:u00:areas., +7:u01:0.x, +11:u03:longest, +7:u00:0.x, +11:u02:longest, +11:u01:longest, +14:u08:response's, +11:u00:longest, +14:u07:response's, +14:u06:response's, +9:uI2:()..,, +14:u05:response's, +9:uI1:()..,, +14:u04:response's, +14:u08:discovery., +9:uI0:()..,, +14:u03:response's, +14:u07:discovery., +8:uI2:""[], +14:u02:response's, +14:u06:discovery., +8:uI1:""[], +14:u01:response's, +14:u05:discovery., +8:uI0:""[], +14:u00:response's, +14:u04:discovery., +14:u03:discovery., +14:u02:discovery., +14:u01:discovery., +14:u00:discovery., +7:u08:RG,, +7:u07:RG,, +7:u06:RG,, +7:u05:RG,, +7:u04:RG,, +7:u03:RG,, +7:u02:RG,, +13:u14:contents., +7:u01:RG,, +13:u13:contents., +7:u00:RG,, +13:u12:contents., +13:u11:contents., +13:u10:contents., +16:u08:encapsulates, +12:u08:producer, +12:u07:producer, +16:u07:encapsulates, +12:u06:producer, +16:u06:encapsulates, +9:u08:(hash, +12:u05:producer, +15:u08:indirectly), +16:u14:encapsulates, +16:u05:encapsulates, +14:u08:producer's, +12:u04:producer, +15:u07:indirectly), +16:u13:encapsulates, +16:u04:encapsulates, +9:u07:(hash, +12:u03:producer, +15:u06:indirectly), +16:u12:encapsulates, +7:uI2:./(, +16:u03:encapsulates, +9:u06:(hash, +14:u07:producer's, +12:u02:producer, +15:u05:indirectly), +16:u11:encapsulates, +9:u14:(hash, +7:uI1:./(, +8:uI2:).,', +16:u02:encapsulates, +9:u05:(hash, +14:u06:producer's, +10:u08:(FIB)., +12:u01:producer, +15:u04:indirectly), +16:u10:encapsulates, +9:u13:(hash, +14:u14:producer's, +7:uI0:./(, +8:uI1:).,', +16:u01:encapsulates, +9:u04:(hash, +14:u05:producer's, +12:u00:producer, +15:u03:indirectly), +9:u12:(hash, +14:u13:producer's, +7:u22:(ha, +8:u23:(has, +8:uI0:).,', +16:u00:encapsulates, +9:u03:(hash, +14:u04:producer's, +10:u07:(FIB)., +15:u02:indirectly), +9:u11:(hash, +14:u12:producer's, +9:u02:(hash, +14:u03:producer's, +10:u06:(FIB)., +15:u01:indirectly), +7:u08:FIB, +9:u10:(hash, +14:u11:producer's, +10:u14:(fib)., +9:u01:(hash, +14:u02:producer's, +10:u05:(FIB)., +15:u00:indirectly), +7:u07:FIB, +14:u10:producer's, +10:u13:(fib)., +9:u00:(hash, +14:u01:producer's, +10:u04:(FIB)., +7:u06:FIB, +10:u12:(fib)., +7:u22:(FI, +8:u23:(FIB, +14:u00:producer's, +10:u03:(FIB)., +7:u05:FIB, +10:u11:(fib)., +10:u02:(FIB)., +8:u08:FIB,, +7:u04:FIB, +10:u10:(fib)., +10:u01:(FIB)., +7:u03:FIB, +10:u00:(FIB)., +8:u07:FIB,, +14:u08:forwarder,, +7:u02:FIB, +8:u06:FIB,, +7:u01:FIB, +8:u14:fib,, +8:u05:FIB,, +14:u07:forwarder,, +7:u00:FIB, +8:u13:fib,, +8:u04:FIB,, +14:u06:forwarder,, +8:u12:fib,, +14:u14:forwarder,, +7:u22:FIB, +8:u23:FIB,, +8:u03:FIB,, +14:u05:forwarder,, +8:u11:fib,, +14:u13:forwarder,, +8:u02:FIB,, +14:u04:forwarder,, +8:u10:fib,, +14:u12:forwarder,, +8:u01:FIB,, +14:u03:forwarder,, +14:u11:forwarder,, +8:u00:FIB,, +14:u02:forwarder,, +14:u10:forwarder,, +14:u01:forwarder,, +12:u08:consumer, +14:u00:forwarder,, +13:u08:publisher, +12:u07:consumer, +12:u06:consumer, +10:u08:KeyId;, +13:u07:publisher, +12:u05:consumer, +10:u07:KeyId;, +10:u08:tasks,, +13:u06:publisher, +12:u08:forwards, +12:u04:consumer, +10:u06:KeyId;, +10:u07:tasks,, +13:u14:publisher, +13:u05:publisher, +12:u03:consumer, +10:u05:KeyId;, +10:u06:tasks,, +13:u13:publisher, +13:u04:publisher, +12:u07:forwards, +12:u02:consumer, +10:u04:KeyId;, +10:u05:tasks,, +13:u12:publisher, +10:u14:names., +13:u03:publisher, +12:u06:forwards, +12:u01:consumer, +10:u03:KeyId;, +10:u04:tasks,, +13:u11:publisher, +10:u13:names., +12:u14:forwards, +13:u02:publisher, +12:u05:forwards, +12:u00:consumer, +10:u02:KeyId;, +10:u03:tasks,, +13:u10:publisher, +10:u12:names., +12:u13:forwards, +13:u01:publisher, +12:u04:forwards, +10:u01:KeyId;, +10:u02:tasks,, +10:u11:names., +12:u12:forwards, +13:u00:publisher, +12:u03:forwards, +10:u00:KeyId;, +10:u01:tasks,, +10:u10:names., +12:u11:forwards, +12:u02:forwards, +10:u00:tasks,, +12:u10:forwards, +12:u01:forwards, +12:u08:content,, +12:u00:forwards, +12:u07:content,, +12:u06:content,, +13:u08:anything;, +12:u14:content,, +12:u05:content,, +13:u07:anything;, +16:u08:application,, +12:u13:content,, +12:u04:content,, +13:u06:anything;, +16:u07:application,, +12:u12:content,, +13:uI2:(..,"").,, +12:u03:content,, +13:u05:anything;, +16:u06:application,, +12:u11:content,, +13:uI1:(..,"").,, +12:u02:content,, +13:u04:anything;, +16:u05:application,, +12:u10:content,, +13:uI0:(..,"").,, +12:u01:content,, +13:u03:anything;, +16:u04:application,, +12:u00:content,, +13:u02:anything;, +16:u03:application,, +14:u08:(specified, +13:u08:producers, +13:u01:anything;, +16:u02:application,, +14:u07:(specified, +13:u00:anything;, +16:u01:application,, +14:u06:(specified, +13:u07:producers, +16:u00:application,, +14:u05:(specified, +13:u06:producers, +14:u04:(specified, +13:u14:producers, +13:u05:producers, +14:u03:(specified, +13:u13:producers, +13:u04:producers, +14:u02:(specified, +13:u12:producers, +13:u03:producers, +14:u01:(specified, +13:u11:producers, +13:u02:producers, +14:u00:(specified, +13:u10:producers, +14:u14:response's, +13:u01:producers, +14:u13:response's, +13:u00:producers, +14:u12:response's, +14:u11:response's, +11:u08:"ccnx:", +14:u10:response's, +11:u07:"ccnx:", +11:u06:"ccnx:", +11:u05:"ccnx:", +11:uI2:":"[-],, +11:u04:"ccnx:", +11:uI1:":"[-],, +11:u03:"ccnx:", +11:uI0:":"[-],, +11:u02:"ccnx:", +11:u01:"ccnx:", +15:u08:comparison,, +11:u00:"ccnx:", +12:u08:hostname, +15:u07:comparison,, +8:u08:(due, +15:u06:comparison,, +12:u07:hostname, +8:u07:(due, +15:u14:comparison,, +15:u05:comparison,, +12:u06:hostname, +8:u06:(due, +15:u13:comparison,, +12:u14:hostname, +15:u04:comparison,, +12:u05:hostname, +8:u05:(due, +15:u12:comparison,, +12:u13:hostname, +15:u03:comparison,, +12:u04:hostname, +8:u04:(due, +15:u11:comparison,, +12:u12:hostname, +15:u02:comparison,, +12:u03:hostname, +8:u03:(due, +15:u10:comparison,, +12:u11:hostname, +15:u01:comparison,, +12:u02:hostname, +8:u02:(due, +12:u10:hostname, +15:u00:comparison,, +12:u01:hostname, +8:u01:(due, +12:u00:hostname, +8:u00:(due, +17:u08:octet-encoded, +17:u07:octet-encoded, +15:u08:readability, +17:u06:octet-encoded, +15:u07:readability, +17:u05:octet-encoded, +15:u06:readability, +9:u14:human, +17:u04:octet-encoded, +15:u05:readability, +9:u13:human, +17:u03:octet-encoded, +15:u04:readability, +9:u12:human, +10:u14:expect, +17:u02:octet-encoded, +15:u03:readability, +9:u11:human, +10:u13:expect, +17:u01:octet-encoded, +15:u02:readability, +9:u10:human, +10:u12:expect, +18:u08:alternatively,, +17:u00:octet-encoded, +15:u01:readability, +10:u11:expect, +10:u08:weaker, +15:u00:readability, +10:u10:expect, +18:u07:alternatively,, +18:u06:alternatively,, +10:u07:weaker, +18:u05:alternatively,, +10:u06:weaker, +10:u14:weaker, +18:u04:alternatively,, +10:u05:weaker, +17:u08:certificates,, +10:u13:weaker, +18:u03:alternatively,, +10:u04:weaker, +10:u12:weaker, +7:u22:wea, +8:u23:weak, +18:u02:alternatively,, +10:u03:weaker, +17:u07:certificates,, +10:u11:weaker, +18:u01:alternatively,, +10:u02:weaker, +17:u06:certificates,, +20:u08:confidentiality,, +10:u10:weaker, +17:u14:certificates,, +18:u00:alternatively,, +10:u01:weaker, +17:u05:certificates,, +17:u13:certificates,, +10:u00:weaker, +17:u04:certificates,, +20:u07:confidentiality,, +17:u12:certificates,, +17:u03:certificates,, +20:u06:confidentiality,, +12:u08:isolated, +17:u11:certificates,, +20:u14:confidentiality,, +17:u02:certificates,, +20:u05:confidentiality,, +12:u07:isolated, +17:u10:certificates,, +20:u13:confidentiality,, +17:u01:certificates,, +20:u04:confidentiality,, +12:u06:isolated, +20:u12:confidentiality,, +17:u00:certificates,, +20:u03:confidentiality,, +12:u05:isolated, +20:u11:confidentiality,, +20:u02:confidentiality,, +12:u04:isolated, +20:u10:confidentiality,, +20:u01:confidentiality,, +12:u03:isolated, +9:u08:here., +20:u00:confidentiality,, +12:u02:isolated, +9:u07:here., +12:u01:isolated, +9:u06:here., +12:u00:isolated, +9:u05:here., +12:u08:bindings, +25:u08:ValidationAlgorithm},, +9:u04:here., +12:u07:bindings, +21:u14:cryptographically, +9:u08:inner, +9:u03:here., +12:u06:bindings, +23:u08:ValidationPayload},, +21:u13:cryptographically, +25:u07:ValidationAlgorithm},, +13:u08:Consumers, +9:u02:here., +12:u05:bindings, +23:u07:ValidationPayload},, +21:u12:cryptographically, +7:u22:cry, +8:u23:cryp, +25:u06:ValidationAlgorithm},, +9:u07:inner, +9:u01:here., +12:u04:bindings, +23:u06:ValidationPayload},, +21:u11:cryptographically, +25:u14:validationalgorithm},, +25:u05:ValidationAlgorithm},, +9:u06:inner, +13:u07:Consumers, +22:u08:ValidationPayload., +9:u00:here., +12:u03:bindings, +23:u05:ValidationPayload},, +21:u10:cryptographically, +25:u13:validationalgorithm},, +25:u04:ValidationAlgorithm},, +9:u05:inner, +13:u06:Consumers, +12:u02:bindings, +23:u04:ValidationPayload},, +25:u12:validationalgorithm},, +13:u14:consumers, +25:u03:ValidationAlgorithm},, +9:u04:inner, +13:u05:Consumers, +22:u07:ValidationPayload., +12:u01:bindings, +23:u03:ValidationPayload},, +25:u11:validationalgorithm},, +13:u13:consumers, +7:u22:inn, +8:u23:inne, +25:u02:ValidationAlgorithm},, +9:u03:inner, +13:u04:Consumers, +22:u06:ValidationPayload., +12:u00:bindings, +23:u02:ValidationPayload},, +25:u10:validationalgorithm},, +13:u12:consumers, +22:u14:validationpayload., +25:u01:ValidationAlgorithm},, +9:u02:inner, +13:u03:Consumers, +22:u05:ValidationPayload., +10:u08:Checks, +23:u01:ValidationPayload},, +11:u08:(HMAC)), +13:u11:consumers, +22:u13:validationpayload., +25:u00:ValidationAlgorithm},, +9:u01:inner, +13:u02:Consumers, +22:u04:ValidationPayload., +23:u00:ValidationPayload},, +11:u07:(HMAC)), +11:u08:(CRC))., +13:u10:consumers, +22:u12:validationpayload., +9:u00:inner, +13:u01:Consumers, +22:u03:ValidationPayload., +10:u07:Checks, +11:u06:(HMAC)), +11:u07:(CRC))., +22:u11:validationpayload., +13:u00:Consumers, +22:u02:ValidationPayload., +10:u06:Checks, +11:u05:(HMAC)), +11:u06:(CRC))., +22:u10:validationpayload., +11:uI2:())(..,, +22:u01:ValidationPayload., +10:u05:Checks, +9:u08:tree,, +11:u04:(HMAC)), +11:u05:(CRC))., +11:uI1:())(..,, +9:uI2:()).,, +22:u00:ValidationPayload., +10:u04:Checks, +11:u03:(HMAC)), +11:u04:(CRC))., +7:u22:Che, +8:u23:Chec, +11:uI0:())(..,, +9:uI1:()).,, +10:u03:Checks, +9:u07:tree,, +11:u02:(HMAC)), +11:u03:(CRC))., +9:uI0:()).,, +10:u02:Checks, +9:u06:tree,, +11:u01:(HMAC)), +11:u02:(CRC))., +9:u14:tree,, +10:u01:Checks, +9:u05:tree,, +11:u00:(HMAC)), +11:u01:(CRC))., +9:u13:tree,, +10:u00:Checks, +9:u04:tree,, +11:u00:(CRC))., +9:u12:tree,, +9:u03:tree,, +9:u11:tree,, +9:u02:tree,, +9:u10:tree,, +9:u01:tree,, +9:u00:tree,, +14:u08:corruption, +14:u07:corruption, +14:u06:corruption, +14:u14:corruption, +14:u05:corruption, +14:u13:corruption, +14:u04:corruption, +14:u12:corruption, +14:u03:corruption, +14:u11:corruption, +14:u02:corruption, +29:u08:(ContentObjectHashRestr)., +14:u10:corruption, +14:u01:corruption, +14:u00:corruption, +29:u07:(ContentObjectHashRestr)., +29:u06:(ContentObjectHashRestr)., +16:u08:restriction,, +29:u14:(contentobjecthashrestr)., +29:u05:(ContentObjectHashRestr)., +29:u13:(contentobjecthashrestr)., +29:u04:(ContentObjectHashRestr)., +16:u07:restriction,, +29:u12:(contentobjecthashrestr)., +29:u03:(ContentObjectHashRestr)., +16:u06:restriction,, +29:u11:(contentobjecthashrestr)., +16:u14:restriction,, +29:u02:(ContentObjectHashRestr)., +16:u05:restriction,, +29:u10:(contentobjecthashrestr)., +16:u13:restriction,, +29:u01:(ContentObjectHashRestr)., +16:u04:restriction,, +13:u08:hierarchy, +16:u12:restriction,, +29:u00:(ContentObjectHashRestr)., +16:u03:restriction,, +13:u07:hierarchy, +16:u11:restriction,, +16:u02:restriction,, +13:u06:hierarchy, +16:u10:restriction,, +16:u01:restriction,, +13:u05:hierarchy, +16:u00:restriction,, +15:u08:deployment,, +13:u04:hierarchy, +13:u03:hierarchy, +15:u07:deployment,, +13:u02:hierarchy, +8:u08:flat, +15:u06:deployment,, +13:u01:hierarchy, +8:u07:flat, +15:u14:deployment,, +15:u05:deployment,, +13:u00:hierarchy, +8:u06:flat, +15:u13:deployment,, +15:u04:deployment,, +8:u05:flat, +15:u12:deployment,, +15:u03:deployment,, +8:u04:flat, +15:u11:deployment,, +15:u02:deployment,, +8:u03:flat, +15:u10:deployment,, +15:u01:deployment,, +8:u02:flat, +15:u00:deployment,, +8:u01:flat, +8:u00:flat, +12:u08:election, +19:u08:media-dependent, +19:u07:media-dependent, +12:u07:election, +19:u06:media-dependent, +12:u06:election, +19:u05:media-dependent, +12:u14:election, +12:u05:election, +19:u04:media-dependent, +12:u13:election, +12:u04:election, +19:u03:media-dependent, +12:u12:election, +8:u23:elec, +12:u03:election, +19:u02:media-dependent, +12:u08:notional, +12:u11:election, +12:u02:election, +19:u01:media-dependent, +12:u07:notional, +12:u10:election, +12:u01:election, +19:u00:media-dependent, +12:u06:notional, +12:u00:election, +12:u05:notional, +12:u04:notional, +12:u03:notional, +12:u02:notional, +12:u01:notional, +12:u00:notional, +12:u08:arrives,, +12:u07:arrives,, +12:u06:arrives,, +12:u05:arrives,, +12:u04:arrives,, +12:u03:arrives,, +12:u02:arrives,, +12:u01:arrives,, +12:u00:arrives,, +29:u08:[ContentObjectHashRestr]}, +29:u07:[ContentObjectHashRestr]}, +29:u06:[ContentObjectHashRestr]}, +29:u14:[contentobjecthashrestr]}, +29:u05:[ContentObjectHashRestr]}, +11:u08:2.4.2)., +29:u13:[contentobjecthashrestr]}, +29:u04:[ContentObjectHashRestr]}, +11:u07:2.4.2)., +29:u12:[contentobjecthashrestr]}, +8:u23:[Con, +29:u03:[ContentObjectHashRestr]}, +14:u08:protocols", +11:u06:2.4.2)., +9:u08:CCNx,, +29:u11:[contentobjecthashrestr]}, +29:u02:[ContentObjectHashRestr]}, +14:u08:versioning, +11:u05:2.4.2)., +9:u07:CCNx,, +29:u10:[contentobjecthashrestr]}, +9:uI2:..).,, +29:u01:[ContentObjectHashRestr]}, +14:u07:protocols", +11:u04:2.4.2)., +9:u06:CCNx,, +9:uI1:..).,, +29:u00:[ContentObjectHashRestr]}, +14:u06:protocols", +14:u07:versioning, +11:u03:2.4.2)., +9:u05:CCNx,, +14:u14:protocols", +9:uI0:..).,, +8:uI2:,-"-, +14:u05:protocols", +14:u06:versioning, +11:u02:2.4.2)., +9:u04:CCNx,, +10:u08:append, +14:u13:protocols", +14:u14:versioning, +8:uI1:,-"-, +14:u04:protocols", +14:u05:versioning, +11:u01:2.4.2)., +9:u03:CCNx,, +10:u07:append, +14:u12:protocols", +14:u13:versioning, +8:uI0:,-"-, +14:u03:protocols", +14:u04:versioning, +11:u00:2.4.2)., +9:u02:CCNx,, +10:u06:append, +14:u11:protocols", +14:u12:versioning, +14:u02:protocols", +14:u03:versioning, +9:u01:CCNx,, +10:u05:append, +17:u08:encapsulating, +14:u10:protocols", +14:u11:versioning, +14:u01:protocols", +14:u02:versioning, +11:u08:Return., +9:u00:CCNx,, +10:u04:append, +17:u07:encapsulating, +14:u10:versioning, +14:u00:protocols", +14:u01:versioning, +10:u03:append, +17:u06:encapsulating, +14:u00:versioning, +11:u07:Return., +10:u02:append, +17:u05:encapsulating, +11:u06:Return., +10:u01:append, +17:u04:encapsulating, +11:u05:Return., +10:u00:append, +17:u03:encapsulating, +11:u04:Return., +17:u02:encapsulating, +11:u03:Return., +17:u01:encapsulating, +11:u02:Return., +17:u00:encapsulating, +11:u01:Return., +15:u08:Aggregating, +11:u00:Return., +6:u08:L3, +15:u07:Aggregating, +14:u08:Collection, +6:u07:L3, +15:u06:Aggregating, +6:u06:L3, +10:u08:(FLIC), +15:u14:aggregating, +15:u05:Aggregating, +14:u07:Collection, +6:u05:L3, +10:u07:(FLIC), +15:u13:aggregating, +15:u04:Aggregating, +14:u06:Collection, +6:u04:L3, +10:u06:(FLIC), +15:u12:aggregating, +15:u03:Aggregating, +14:u05:Collection, +10:u08:broken, +6:u03:L3, +10:u05:(FLIC), +15:u11:aggregating, +15:u02:Aggregating, +14:u04:Collection, +6:u02:L3, +10:u04:(FLIC), +15:u10:aggregating, +15:u01:Aggregating, +14:u03:Collection, +10:u07:broken, +6:u01:L3, +10:u03:(FLIC), +15:u00:Aggregating, +14:u02:Collection, +10:u06:broken, +6:u00:L3, +10:u02:(FLIC), +10:u14:broken, +14:u01:Collection, +10:u05:broken, +10:u01:(FLIC), +10:u13:broken, +14:u00:Collection, +10:u04:broken, +10:u00:(FLIC), +10:u12:broken, +7:u22:bro, +8:u23:brok, +10:u03:broken, +10:u11:broken, +10:u02:broken, +10:u10:broken, +10:u01:broken, +10:u00:broken, +18:u08:fragmentation., +13:u08:Fragments, +18:u07:fragmentation., +14:u08:[befrags],, +18:u06:fragmentation., +13:u07:Fragments, +14:u07:[befrags],, +6:u08:L2, +18:u14:fragmentation., +18:u05:fragmentation., +13:u06:Fragments, +14:u06:[befrags],, +6:u07:L2, +18:u13:fragmentation., +18:u04:fragmentation., +13:u05:Fragments, +14:u05:[befrags],, +6:u06:L2, +18:u12:fragmentation., +18:u03:fragmentation., +13:u04:Fragments, +14:u04:[befrags],, +6:u05:L2, +18:u11:fragmentation., +18:u02:fragmentation., +13:u03:Fragments, +14:u03:[befrags],, +6:u04:L2, +18:u10:fragmentation., +18:u01:fragmentation., +13:u02:Fragments, +14:u02:[befrags],, +6:u03:L2, +18:u00:fragmentation., +13:u01:Fragments, +14:u01:[befrags],, +6:u02:L2, +13:u00:Fragments, +14:u00:[befrags],, +6:u01:L2, +6:u00:L2, +13:u08:consumer,, +13:u07:consumer,, +13:u06:consumer,, +11:u08:topics,, +13:u05:consumer,, +11:u07:topics,, +13:u04:consumer,, +11:u06:topics,, +13:u03:consumer,, +11:u05:topics,, +11:u08:grammar, +13:u02:consumer,, +11:u04:topics,, +13:u01:consumer,, +11:u03:topics,, +11:u07:grammar, +13:u00:consumer,, +11:u02:topics,, +8:u08:wire, +11:u06:grammar, +8:u08:Body, +11:u01:topics,, +8:u07:wire, +11:u14:grammar, +11:u05:grammar, +11:u00:topics,, +8:u06:wire, +13:u08:(BodyName, +11:u13:grammar, +11:u04:grammar, +8:u07:Body, +8:u05:wire, +13:u07:(BodyName, +11:u12:grammar, +8:u23:gram, +11:u03:grammar, +8:u06:Body, +13:u08:HashType,, +8:u04:wire, +13:u06:(BodyName, +11:u11:grammar, +11:u02:grammar, +8:u05:Body, +8:u03:wire, +13:u05:(BodyName, +16:u08:PayloadType,, +11:u10:grammar, +11:u01:grammar, +8:u04:Body, +13:u07:HashType,, +8:u02:wire, +13:u04:(BodyName, +16:u07:PayloadType,, +11:u00:grammar, +8:u03:Body, +13:u06:HashType,, +8:u01:wire, +13:u03:(BodyName, +16:u06:PayloadType,, +13:u14:hashtype,, +8:u02:Body, +13:u05:HashType,, +8:u00:wire, +13:u02:(BodyName, +16:u05:PayloadType,, +13:u13:hashtype,, +8:u01:Body, +13:u04:HashType,, +13:u01:(BodyName, +16:u04:PayloadType,, +13:u12:hashtype,, +10:u14:types", +8:u00:Body, +13:u03:HashType,, +12:u08:AbsTime:, +13:u00:(BodyName, +16:u03:PayloadType,, +13:u11:hashtype,, +10:u13:types", +11:uI2:"""[-],, +13:u02:HashType,, +16:u02:PayloadType,, +12:u08:Absolute, +13:u10:hashtype,, +10:u12:types", +11:uI1:"""[-],, +13:u01:HashType,, +12:u07:AbsTime:, +14:u08:CacheTime:, +16:u01:PayloadType,, +12:u07:Absolute, +10:u11:types", +11:uI0:"""[-],, +13:u00:HashType,, +12:u06:AbsTime:, +16:u00:PayloadType,, +12:u06:Absolute, +10:u10:types", +12:u14:abstime:, +12:u05:AbsTime:, +14:u07:CacheTime:, +12:u05:Absolute, +12:u13:abstime:, +12:u04:AbsTime:, +14:u06:CacheTime:, +9:u08:Cert:, +12:u04:Absolute, +12:u12:abstime:, +14:u14:cachetime:, +8:u23:AbsT, +12:u03:AbsTime:, +14:u05:CacheTime:, +12:u03:Absolute, +12:u11:abstime:, +14:u13:cachetime:, +12:u02:AbsTime:, +14:u04:CacheTime:, +9:u07:Cert:, +12:u02:Absolute, +12:u10:abstime:, +14:u12:cachetime:, +12:u01:AbsTime:, +14:u03:CacheTime:, +9:u06:Cert:, +12:u01:Absolute, +14:u11:cachetime:, +9:u14:cert:, +12:u00:AbsTime:, +14:u02:CacheTime:, +9:u05:Cert:, +12:u00:Absolute, +14:u10:cachetime:, +9:u13:cert:, +14:u01:CacheTime:, +9:u04:Cert:, +9:u12:cert:, +14:u00:CacheTime:, +9:u03:Cert:, +9:u11:cert:, +9:u02:Cert:, +9:u10:cert:, +9:u01:Cert:, +9:u00:Cert:, +16:u08:ConObjField:, +16:u07:ConObjField:, +15:u08:ConObjHash:, +16:u06:ConObjField:, +13:u08:SHA256-32, +16:u14:conobjfield:, +16:u05:ConObjField:, +15:u07:ConObjHash:, +16:u13:conobjfield:, +16:u04:ConObjField:, +15:u06:ConObjHash:, +13:u07:SHA256-32, +16:u12:conobjfield:, +15:u14:conobjhash:, +8:u23:ConO, +16:u03:ConObjField:, +15:u05:ConObjHash:, +13:u06:SHA256-32, +16:u11:conobjfield:, +15:u13:conobjhash:, +13:u14:sha256-32, +16:u02:ConObjField:, +15:u04:ConObjHash:, +13:u05:SHA256-32, +27:u08:ContentObjectHashRestr:, +16:u10:conobjfield:, +15:u12:conobjhash:, +13:u13:sha256-32, +16:u01:ConObjField:, +15:u03:ConObjHash:, +13:u04:SHA256-32, +15:u11:conobjhash:, +13:u12:sha256-32, +8:u23:SHA2, +16:u00:ConObjField:, +15:u02:ConObjHash:, +13:u03:SHA256-32, +27:u07:ContentObjectHashRestr:, +15:u10:conobjhash:, +13:u11:sha256-32, +15:u01:ConObjHash:, +13:u02:SHA256-32, +27:u06:ContentObjectHashRestr:, +14:u08:SHA256-32., +13:u10:sha256-32, +27:u14:contentobjecthashrestr:, +15:u00:ConObjHash:, +13:u01:SHA256-32, +27:u05:ContentObjectHashRestr:, +15:u08:ExpiryTime:, +27:u13:contentobjecthashrestr:, +13:u00:SHA256-32, +27:u04:ContentObjectHashRestr:, +14:u07:SHA256-32., +27:u12:contentobjecthashrestr:, +27:u03:ContentObjectHashRestr:, +14:u06:SHA256-32., +15:u07:ExpiryTime:, +9:u08:Hash:, +27:u11:contentobjecthashrestr:, +14:u14:sha256-32., +27:u02:ContentObjectHashRestr:, +14:u05:SHA256-32., +15:u06:ExpiryTime:, +27:u10:contentobjecthashrestr:, +14:u13:sha256-32., +15:u14:expirytime:, +27:u01:ContentObjectHashRestr:, +14:u04:SHA256-32., +15:u05:ExpiryTime:, +9:u07:Hash:, +14:u12:sha256-32., +15:u13:expirytime:, +27:u00:ContentObjectHashRestr:, +14:u03:SHA256-32., +15:u04:ExpiryTime:, +9:u06:Hash:, +14:u11:sha256-32., +15:u12:expirytime:, +9:u14:hash:, +14:u02:SHA256-32., +15:u03:ExpiryTime:, +9:u05:Hash:, +13:u08:HashType:, +14:u10:sha256-32., +15:u11:expirytime:, +9:u13:hash:, +14:u01:SHA256-32., +15:u02:ExpiryTime:, +9:u04:Hash:, +15:u10:expirytime:, +9:u12:hash:, +14:u00:SHA256-32., +15:u01:ExpiryTime:, +9:u03:Hash:, +13:u07:HashType:, +20:u08:[ccnx-registry]., +9:u11:hash:, +11:u14:mandate, +15:u00:ExpiryTime:, +9:u02:Hash:, +13:u06:HashType:, +13:u08:HopLimit:, +9:u10:hash:, +11:u13:mandate, +13:u14:hashtype:, +9:u01:Hash:, +13:u05:HashType:, +20:u07:[ccnx-registry]., +11:u12:mandate, +13:u13:hashtype:, +9:u00:Hash:, +13:u04:HashType:, +20:u06:[ccnx-registry]., +13:u07:HopLimit:, +11:u11:mandate, +13:u12:hashtype:, +20:u14:[ccnx-registry]., +13:u03:HashType:, +20:u05:[ccnx-registry]., +13:u06:HopLimit:, +11:u10:mandate, +13:u11:hashtype:, +20:u13:[ccnx-registry]., +13:u14:hoplimit:, +13:u02:HashType:, +20:u04:[ccnx-registry]., +13:u05:HopLimit:, +18:u08:InterestField:, +13:u10:hashtype:, +20:u12:[ccnx-registry]., +13:u13:hoplimit:, +13:u01:HashType:, +20:u03:[ccnx-registry]., +13:u04:HopLimit:, +20:u11:[ccnx-registry]., +13:u12:hoplimit:, +11:u14:carries, +13:u00:HashType:, +20:u02:[ccnx-registry]., +13:u03:HopLimit:, +18:u07:InterestField:, +10:u08:KeyId:, +20:u10:[ccnx-registry]., +13:u11:hoplimit:, +11:u13:carries, +20:u01:[ccnx-registry]., +13:u02:HopLimit:, +18:u06:InterestField:, +13:u10:hoplimit:, +11:u12:carries, +18:u14:interestfield:, +20:u00:[ccnx-registry]., +13:u01:HopLimit:, +18:u05:InterestField:, +10:u07:KeyId:, +11:u11:carries, +18:u13:interestfield:, +13:u00:HopLimit:, +18:u04:InterestField:, +10:u06:KeyId:, +15:u08:KeyIdRestr:, +11:u10:carries, +18:u12:interestfield:, +10:u14:keyid:, +18:u03:InterestField:, +10:u05:KeyId:, +18:u11:interestfield:, +10:u13:keyid:, +18:u02:InterestField:, +10:u04:KeyId:, +15:u07:KeyIdRestr:, +12:u08:KeyLink:, +18:u10:interestfield:, +10:u12:keyid:, +18:u01:InterestField:, +10:u03:KeyId:, +15:u06:KeyIdRestr:, +10:u11:keyid:, +15:u14:keyidrestr:, +18:u00:InterestField:, +10:u02:KeyId:, +15:u05:KeyIdRestr:, +12:u07:KeyLink:, +13:u08:Lifetime:, +10:u10:keyid:, +15:u13:keyidrestr:, +10:u01:KeyId:, +15:u04:KeyIdRestr:, +12:u06:KeyLink:, +15:u12:keyidrestr:, +12:u14:keylink:, +10:u00:KeyId:, +15:u03:KeyIdRestr:, +12:u05:KeyLink:, +13:u07:Lifetime:, +12:u08:strongly, +15:u11:keyidrestr:, +12:u13:keylink:, +15:u02:KeyIdRestr:, +12:u04:KeyLink:, +13:u06:Lifetime:, +15:u10:keyidrestr:, +12:u12:keylink:, +13:u14:lifetime:, +15:u01:KeyIdRestr:, +12:u03:KeyLink:, +13:u05:Lifetime:, +12:u07:strongly, +12:u11:keylink:, +13:u13:lifetime:, +15:u00:KeyIdRestr:, +12:u02:KeyLink:, +13:u04:Lifetime:, +12:u06:strongly, +12:u10:keylink:, +13:u12:lifetime:, +12:u14:strongly, +12:u01:KeyLink:, +13:u03:Lifetime:, +12:u05:strongly, +13:u11:lifetime:, +12:u13:strongly, +12:u00:KeyLink:, +13:u02:Lifetime:, +12:u04:strongly, +13:u10:lifetime:, +12:u12:strongly, +13:u01:Lifetime:, +12:u03:strongly, +12:u11:strongly, +13:u00:Lifetime:, +12:u02:strongly, +12:u10:strongly, +12:u01:strongly, +12:u00:strongly, +9:u14:name:, +10:u08:UTF-8., +9:u13:name:, +10:u07:UTF-8., +9:u12:name:, +10:u06:UTF-8., +9:u11:name:, +10:u05:UTF-8., +9:u10:name:, +10:u04:UTF-8., +12:u08:carrying, +10:u03:UTF-8., +12:u07:carrying, +10:u02:UTF-8., +12:u06:carrying, +16:u08:PayloadType:, +10:u01:UTF-8., +12:u05:carrying, +10:u00:UTF-8., +12:u04:carrying, +16:u07:PayloadType:, +12:u03:carrying, +16:u06:PayloadType:, +22:u08:(T_PAYLOADTYPE_KEY, +12:u02:carrying, +16:u14:payloadtype:, +8:uI2::',., +16:u05:PayloadType:, +12:u01:carrying, +20:u08:[ccnx-registry]), +16:u13:payloadtype:, +8:uI1::',., +7:uI2::.,, +16:u04:PayloadType:, +22:u07:(T_PAYLOADTYPE_KEY, +23:u08:(T_PAYLOADTYPE_LINK, +12:u00:carrying, +20:u07:[ccnx-registry]), +16:u12:payloadtype:, +8:uI0::',., +7:uI1::.,, +16:u03:PayloadType:, +22:u06:(T_PAYLOADTYPE_KEY, +20:u06:[ccnx-registry]), +16:u11:payloadtype:, +22:u14:(t_payloadtype_key, +7:uI0::.,, +16:u02:PayloadType:, +22:u05:(T_PAYLOADTYPE_KEY, +23:u07:(T_PAYLOADTYPE_LINK, +14:u08:PublicKey:, +20:u05:[ccnx-registry]), +16:u10:payloadtype:, +22:u13:(t_payloadtype_key, +10:uI2:([-])-, +16:u01:PayloadType:, +22:u04:(T_PAYLOADTYPE_KEY, +23:u06:(T_PAYLOADTYPE_LINK, +20:u04:[ccnx-registry]), +22:u12:(t_payloadtype_key, +23:u14:(t_payloadtype_link, +8:u23:(T_P, +10:uI1:([-])-, +16:u00:PayloadType:, +22:u03:(T_PAYLOADTYPE_KEY, +23:u05:(T_PAYLOADTYPE_LINK, +14:u07:PublicKey:, +20:u03:[ccnx-registry]), +22:u11:(t_payloadtype_key, +23:u13:(t_payloadtype_link, +10:uI0:([-])-, +9:uI2:([-]), +22:u02:(T_PAYLOADTYPE_KEY, +23:u04:(T_PAYLOADTYPE_LINK, +14:u06:PublicKey:, +12:u08:RelTime:, +20:u02:[ccnx-registry]), +7:u08:DER, +22:u10:(t_payloadtype_key, +23:u12:(t_payloadtype_link, +14:u14:publickey:, +9:uI1:([-]), +22:u01:(T_PAYLOADTYPE_KEY, +23:u03:(T_PAYLOADTYPE_LINK, +14:u05:PublicKey:, +15:u08:ReturnCode:, +20:u01:[ccnx-registry]), +7:u07:DER, +23:u11:(t_payloadtype_link, +14:u13:publickey:, +9:uI0:([-]), +22:u00:(T_PAYLOADTYPE_KEY, +23:u02:(T_PAYLOADTYPE_LINK, +14:u04:PublicKey:, +12:u07:RelTime:, +20:u00:[ccnx-registry]), +7:u06:DER, +23:u10:(t_payloadtype_link, +14:u12:publickey:, +23:u01:(T_PAYLOADTYPE_LINK, +14:u03:PublicKey:, +12:u06:RelTime:, +15:u07:ReturnCode:, +12:u08:SigTime:, +7:u05:DER, +14:u11:publickey:, +12:u14:reltime:, +23:u00:(T_PAYLOADTYPE_LINK, +14:u02:PublicKey:, +12:u05:RelTime:, +15:u06:ReturnCode:, +7:u04:DER, +14:u10:publickey:, +12:u13:reltime:, +15:u14:returncode:, +14:u01:PublicKey:, +12:u04:RelTime:, +15:u05:ReturnCode:, +12:u07:SigTime:, +14:u08:algorithm;, +7:u03:DER, +12:u12:reltime:, +15:u13:returncode:, +8:u23:RelT, +14:u00:PublicKey:, +12:u03:RelTime:, +15:u04:ReturnCode:, +12:u06:SigTime:, +7:u02:DER, +12:u11:reltime:, +15:u12:returncode:, +12:u14:sigtime:, +12:u02:RelTime:, +15:u03:ReturnCode:, +12:u05:SigTime:, +14:u07:algorithm;, +11:u08:Vendor:, +7:u01:DER, +12:u10:reltime:, +15:u11:returncode:, +12:u13:sigtime:, +12:u01:RelTime:, +15:u02:ReturnCode:, +12:u04:SigTime:, +14:u06:algorithm;, +7:u00:DER, +19:u08:Vendor-specific, +15:u10:returncode:, +12:u12:sigtime:, +14:u14:algorithm;, +8:u23:SigT, +12:u00:RelTime:, +15:u01:ReturnCode:, +12:u03:SigTime:, +14:u05:algorithm;, +11:u07:Vendor:, +19:u08:vendor-specific, +19:u07:Vendor-specific, +12:u11:sigtime:, +14:u13:algorithm;, +15:u00:ReturnCode:, +12:u02:SigTime:, +14:u04:algorithm;, +11:u06:Vendor:, +19:u06:Vendor-specific, +12:u10:sigtime:, +14:u12:algorithm;, +11:u14:vendor:, +12:u01:SigTime:, +14:u03:algorithm;, +11:u05:Vendor:, +19:u07:vendor-specific, +19:u05:Vendor-specific, +14:u11:algorithm;, +11:u13:vendor:, +12:u00:SigTime:, +14:u02:algorithm;, +11:u04:Vendor:, +19:u06:vendor-specific, +19:u04:Vendor-specific, +14:u10:algorithm;, +11:u12:vendor:, +19:u14:vendor-specific, +14:u01:algorithm;, +11:u03:Vendor:, +19:u05:vendor-specific, +19:u03:Vendor-specific, +11:u11:vendor:, +19:u13:vendor-specific, +14:u00:algorithm;, +11:u02:Vendor:, +19:u04:vendor-specific, +19:u02:Vendor-specific, +11:u10:vendor:, +19:u12:vendor-specific, +11:u01:Vendor:, +19:u03:vendor-specific, +10:u08:IntHdr, +19:u01:Vendor-specific, +19:u11:vendor-specific, +11:u00:Vendor:, +19:u02:vendor-specific, +19:u00:Vendor-specific, +10:u07:IntHdr, +19:u10:vendor-specific, +19:u01:vendor-specific, +17:u08:ContentObject, +10:u06:IntHdr, +19:u00:vendor-specific, +13:u08:ConObjHdr, +10:u05:IntHdr, +10:u14:inthdr, +17:u07:ContentObject, +10:u04:IntHdr, +10:u13:inthdr, +17:u06:ContentObject, +13:u07:ConObjHdr, +19:u08:InterestReturn=, +10:u03:IntHdr, +14:u08:[CacheTime, +10:u12:inthdr, +17:u14:contentobject, +8:u23:IntH, +7:uI2:[]*, +17:u05:ContentObject, +13:u06:ConObjHdr, +12:u08:BodyName, +10:u02:IntHdr, +14:u07:[CacheTime, +10:u11:inthdr, +17:u13:contentobject, +13:u14:conobjhdr, +7:uI1:[]*, +17:u04:ContentObject, +13:u05:ConObjHdr, +19:u07:InterestReturn=, +10:u01:IntHdr, +14:u06:[CacheTime, +10:u10:inthdr, +17:u12:contentobject, +13:u13:conobjhdr, +7:uI0:[]*, +17:u03:ContentObject, +13:u04:ConObjHdr, +19:u06:InterestReturn=, +12:u07:BodyName, +15:u08:BodyOptName, +10:u00:IntHdr, +14:u05:[CacheTime, +17:u11:contentobject, +13:u12:conobjhdr, +19:u14:interestreturn=, +8:uI2:[/]*, +17:u02:ContentObject, +13:u03:ConObjHdr, +19:u05:InterestReturn=, +12:u06:BodyName, +14:u04:[CacheTime, +17:u10:contentobject, +13:u11:conobjhdr, +19:u13:interestreturn=, +12:u14:bodyname, +8:uI1:[/]*, +17:u01:ContentObject, +13:u02:ConObjHdr, +19:u04:InterestReturn=, +12:u05:BodyName, +15:u07:BodyOptName, +14:u03:[CacheTime, +10:u08:[Name], +13:u10:conobjhdr, +19:u12:interestreturn=, +12:u13:bodyname, +8:uI0:[/]*, +17:u00:ContentObject, +13:u01:ConObjHdr, +19:u03:InterestReturn=, +12:u04:BodyName, +15:u06:BodyOptName, +14:u02:[CacheTime, +10:u07:[Name], +19:u11:interestreturn=, +12:u12:bodyname, +15:u14:bodyoptname, +13:u00:ConObjHdr, +19:u02:InterestReturn=, +12:u03:BodyName, +15:u05:BodyOptName, +14:u01:[CacheTime, +10:u06:[Name], +19:u10:interestreturn=, +12:u11:bodyname, +15:u13:bodyoptname, +19:u01:InterestReturn=, +12:u02:BodyName, +15:u04:BodyOptName, +14:u00:[CacheTime, +10:u05:[Name], +12:u10:bodyname, +15:u12:bodyoptname, +19:u00:InterestReturn=, +12:u01:BodyName, +15:u03:BodyOptName, +10:u04:[Name], +15:u11:bodyoptname, +12:u00:BodyName, +15:u02:BodyOptName, +10:u03:[Name], +15:u10:bodyoptname, +15:u01:BodyOptName, +10:u02:[Name], +15:u00:BodyOptName, +10:u01:[Name], +10:u00:[Name], +10:u08:*Field, +10:u07:*Field, +10:u06:*Field, +17:u08:ValidationAlg, +10:u05:*Field, +17:u07:ValidationAlg, +7:uI2:*[], +16:u08:FirstSegment, +10:u04:*Field, +17:u06:ValidationAlg, +7:uI1:*[], +10:u03:*Field, +17:u05:ValidationAlg, +16:u07:FirstSegment, +7:uI0:*[], +10:u02:*Field, +17:u04:ValidationAlg, +16:u06:FirstSegment, +10:u01:*Field, +17:u03:ValidationAlg, +16:u05:FirstSegment, +10:u08:*OCTET, +16:u14:firstsegment, +15:u08:HMAC-SHA256, +10:u00:*Field, +17:u02:ValidationAlg, +16:u04:FirstSegment, +10:u07:*OCTET, +16:u13:firstsegment, +17:u01:ValidationAlg, +16:u03:FirstSegment, +10:u06:*OCTET, +16:u12:firstsegment, +15:u07:HMAC-SHA256, +13:u08:PublicAlg, +17:u00:ValidationAlg, +16:u02:FirstSegment, +10:u05:*OCTET, +16:u11:firstsegment, +17:u14:validationalg, +15:u06:HMAC-SHA256, +16:u01:FirstSegment, +10:u04:*OCTET, +16:u10:firstsegment, +17:u13:validationalg, +15:u14:hmac-sha256, +13:uI2:(-/--/--/, +15:u05:HMAC-SHA256, +13:u07:PublicAlg, +16:u00:FirstSegment, +10:u03:*OCTET, +17:u12:validationalg, +15:u13:hmac-sha256, +13:uI1:(-/--/--/, +8:uI2:-/)*, +15:u04:HMAC-SHA256, +13:u06:PublicAlg, +10:u02:*OCTET, +17:u11:validationalg, +15:u12:hmac-sha256, +13:u14:publicalg, +13:uI0:(-/--/--/, +8:uI1:-/)*, +15:u03:HMAC-SHA256, +13:u05:PublicAlg, +17:u08:EC-SECP-256K1, +10:u01:*OCTET, +17:u10:validationalg, +15:u11:hmac-sha256, +13:u13:publicalg, +8:uI0:-/)*, +15:u02:HMAC-SHA256, +13:u04:PublicAlg, +17:u08:EC-SECP-384R1, +10:u00:*OCTET, +15:u10:hmac-sha256, +13:u12:publicalg, +15:u01:HMAC-SHA256, +13:u03:PublicAlg, +17:u07:EC-SECP-256K1, +13:u11:publicalg, +15:u00:HMAC-SHA256, +13:u02:PublicAlg, +17:u06:EC-SECP-256K1, +17:u07:EC-SECP-384R1, +13:u10:publicalg, +17:u14:ec-secp-256k1, +13:u01:PublicAlg, +17:u05:EC-SECP-256K1, +17:u06:EC-SECP-384R1, +17:u13:ec-secp-256k1, +17:u14:ec-secp-384r1, +13:u00:PublicAlg, +17:u04:EC-SECP-256K1, +17:u05:EC-SECP-384R1, +17:u12:ec-secp-256k1, +17:u13:ec-secp-384r1, +7:u22:EC-, +8:u23:EC-S, +17:u03:EC-SECP-256K1, +17:u04:EC-SECP-384R1, +11:u08:AbsTime, +13:u08:[SigTime], +17:u11:ec-secp-256k1, +17:u12:ec-secp-384r1, +17:u02:EC-SECP-256K1, +17:u03:EC-SECP-384R1, +13:u07:[SigTime], +17:u10:ec-secp-256k1, +17:u11:ec-secp-384r1, +17:u01:EC-SECP-256K1, +17:u02:EC-SECP-384R1, +11:u07:AbsTime, +13:u08:CacheTime, +13:u06:[SigTime], +10:u08:8OCTET, +17:u10:ec-secp-384r1, +17:u00:EC-SECP-256K1, +17:u01:EC-SECP-384R1, +11:u06:AbsTime, +13:u05:[SigTime], +10:u07:8OCTET, +11:u14:abstime, +17:u00:EC-SECP-384R1, +11:u05:AbsTime, +13:u07:CacheTime, +15:u08:ConObjField, +13:u04:[SigTime], +10:u06:8OCTET, +11:u13:abstime, +11:u04:AbsTime, +13:u06:CacheTime, +13:u03:[SigTime], +10:u05:8OCTET, +11:u12:abstime, +13:u14:cachetime, +11:u03:AbsTime, +13:u05:CacheTime, +15:u07:ConObjField, +14:u08:ConObjHash, +13:u02:[SigTime], +10:u04:8OCTET, +11:u11:abstime, +13:u13:cachetime, +11:u02:AbsTime, +13:u04:CacheTime, +15:u06:ConObjField, +13:u01:[SigTime], +10:u03:8OCTET, +11:u10:abstime, +13:u12:cachetime, +15:u14:conobjfield, +11:u01:AbsTime, +13:u03:CacheTime, +15:u05:ConObjField, +14:u07:ConObjHash, +13:u00:[SigTime], +10:u02:8OCTET, +13:u11:cachetime, +15:u13:conobjfield, +11:u00:AbsTime, +13:u02:CacheTime, +15:u04:ConObjField, +14:u06:ConObjHash, +10:u01:8OCTET, +13:u10:cachetime, +15:u12:conobjfield, +14:u14:conobjhash, +13:u01:CacheTime, +15:u03:ConObjField, +14:u05:ConObjHash, +10:u00:8OCTET, +15:u11:conobjfield, +14:u13:conobjhash, +13:u00:CacheTime, +15:u02:ConObjField, +14:u04:ConObjHash, +15:u10:conobjfield, +14:u12:conobjhash, +15:u01:ConObjField, +14:u03:ConObjHash, +17:u08:InterestField, +14:u11:conobjhash, +15:u00:ConObjField, +14:u02:ConObjHash, +17:u07:InterestField, +14:u10:conobjhash, +14:u01:ConObjHash, +12:u08:HashType, +17:u06:InterestField, +14:u00:ConObjHash, +17:u05:InterestField, +12:u07:HashType, +17:u04:InterestField, +12:u06:HashType, +10:u08:2OCTET, +17:u03:InterestField, +12:u05:HashType, +10:u07:2OCTET, +12:u14:hashtype, +17:u02:InterestField, +12:u04:HashType, +10:u06:2OCTET, +9:u08:OCTET, +12:u13:hashtype, +17:u01:InterestField, +12:u03:HashType, +10:u05:2OCTET, +9:u07:OCTET, +12:u12:hashtype, +7:uI2:;"", +17:u00:InterestField, +12:u02:HashType, +10:u04:2OCTET, +9:u06:OCTET, +12:u11:hashtype, +7:uI1:;"", +14:u08:KeyIdRestr, +12:u01:HashType, +10:u03:2OCTET, +9:u05:OCTET, +12:u10:hashtype, +17:u14:interestfield, +7:uI0:;"", +12:u00:HashType, +10:u02:2OCTET, +9:u04:OCTET, +17:u13:interestfield, +14:u07:KeyIdRestr, +10:u01:2OCTET, +9:u03:OCTET, +17:u12:interestfield, +14:u06:KeyIdRestr, +10:u00:2OCTET, +9:u02:OCTET, +17:u11:interestfield, +14:u14:keyidrestr, +14:u05:KeyIdRestr, +9:u01:OCTET, +17:u10:interestfield, +14:u13:keyidrestr, +14:u04:KeyIdRestr, +9:u00:OCTET, +14:u12:keyidrestr, +14:u03:KeyIdRestr, +11:u08:RelTime, +14:u11:keyidrestr, +14:u02:KeyIdRestr, +11:u07:RelTime, +14:u10:keyidrestr, +14:u01:KeyIdRestr, +26:u08:ContentObjectHashRestr, +11:u06:RelTime, +14:u00:KeyIdRestr, +11:u05:RelTime, +26:u07:ContentObjectHashRestr, +11:u04:RelTime, +26:u06:ContentObjectHashRestr, +11:u03:RelTime, +26:u14:contentobjecthashrestr, +26:u05:ContentObjectHashRestr, +11:u02:RelTime, +26:u13:contentobjecthashrestr, +26:u04:ContentObjectHashRestr, +13:u08:PublicKey, +11:u01:RelTime, +26:u12:contentobjecthashrestr, +26:u03:ContentObjectHashRestr, +11:u00:RelTime, +26:u11:contentobjecthashrestr, +26:u02:ContentObjectHashRestr, +13:u07:PublicKey, +8:u08:Cert, +26:u10:contentobjecthashrestr, +26:u01:ContentObjectHashRestr, +13:u06:PublicKey, +13:u14:publickey, +26:u00:ContentObjectHashRestr, +13:u05:PublicKey, +8:u07:Cert, +13:u13:publickey, +13:u04:PublicKey, +8:u06:Cert, +13:u12:publickey, +8:u14:cert, +7:uI2:*;-, +13:u03:PublicKey, +8:u05:Cert, +11:u08:1*OCTET, +13:u11:publickey, +8:u13:cert, +7:uI1:*;-, +13:u02:PublicKey, +8:u04:Cert, +11:u07:1*OCTET, +13:u10:publickey, +8:u12:cert, +11:u14:reltime, +7:uI0:*;-, +8:uI2:*;-., +13:u01:PublicKey, +8:u03:Cert, +11:u08:SigTime, +11:u06:1*OCTET, +8:u11:cert, +11:u13:reltime, +8:uI1:*;-., +13:u00:PublicKey, +8:u02:Cert, +11:u05:1*OCTET, +8:u10:cert, +11:u12:reltime, +14:u14:returncode, +8:uI0:*;-., +8:u01:Cert, +11:u07:SigTime, +11:u04:1*OCTET, +11:u11:reltime, +14:u13:returncode, +8:u00:Cert, +11:u06:SigTime, +11:u03:1*OCTET, +11:u10:reltime, +14:u12:returncode, +11:u14:sigtime, +11:u05:SigTime, +7:u08:PEN, +11:u02:1*OCTET, +14:u11:returncode, +11:u13:sigtime, +11:u04:SigTime, +11:u01:1*OCTET, +7:u07:PEN, +14:u10:returncode, +11:u12:sigtime, +11:u03:SigTime, +11:u00:1*OCTET, +7:u06:PEN, +11:u11:sigtime, +11:u02:SigTime, +7:u05:PEN, +11:u10:sigtime, +7:u14:pen, +11:u01:SigTime, +7:u04:PEN, +7:u13:pen, +11:u00:SigTime, +7:u03:PEN, +7:u12:pen, +7:u23:PEN, +8:uI2:*;"", +7:u02:PEN, +7:u11:pen, +8:uI1:*;"", +7:u01:PEN, +7:u10:pen, +8:uI0:*;"", +7:u00:PEN, +15:u08:aggregating, +15:u07:aggregating, +14:u08:aggregated, +15:u06:aggregating, +15:u05:aggregating, +12:u14:consumer, +14:u07:aggregated, +15:u04:aggregating, +12:u13:consumer, +14:u06:aggregated, +15:u03:aggregating, +12:u12:consumer, +14:u14:aggregated, +14:u05:aggregated, +20:u08:InterestLifetime, +15:u02:aggregating, +12:u11:consumer, +14:u13:aggregated, +14:u04:aggregated, +8:u08:trip, +15:u01:aggregating, +12:u10:consumer, +14:u12:aggregated, +14:u03:aggregated, +20:u07:InterestLifetime, +15:u00:aggregating, +14:u11:aggregated, +14:u02:aggregated, +20:u06:InterestLifetime, +8:u07:trip, +14:u10:aggregated, +20:u14:interestlifetime, +14:u01:aggregated, +20:u05:InterestLifetime, +8:u06:trip, +20:u13:interestlifetime, +14:u00:aggregated, +20:u04:InterestLifetime, +8:u05:trip, +20:u12:interestlifetime, +20:u03:InterestLifetime, +8:u04:trip, +20:u11:interestlifetime, +20:u02:InterestLifetime, +8:u03:trip, +20:u10:interestlifetime, +20:u01:InterestLifetime, +8:u02:trip, +12:u08:replica), +12:u14:producer, +20:u00:InterestLifetime, +8:u01:trip, +12:u13:producer, +8:u00:trip, +12:u07:replica), +12:u12:producer, +12:u06:replica), +12:u11:producer, +12:u14:replica), +12:u05:replica), +21:u08:InterestLifetime., +12:u10:producer, +12:u13:replica), +9:uI2:)(.)., +12:u04:replica), +21:u07:InterestLifetime., +12:u12:replica), +9:uI1:)(.)., +12:u03:replica), +21:u06:InterestLifetime., +12:u11:replica), +9:uI0:)(.)., +12:u02:replica), +21:u05:InterestLifetime., +12:u10:replica), +12:u01:replica), +21:u04:InterestLifetime., +12:u00:replica), +21:u03:InterestLifetime., +21:u02:InterestLifetime., +21:u01:InterestLifetime., +21:u00:InterestLifetime., +19:u08:trustworthiness, +13:u08:assertion, +19:u07:trustworthiness, +19:u06:trustworthiness, +13:u07:assertion, +7:u08:PKI, +19:u14:trustworthiness, +19:u05:trustworthiness, +13:u06:assertion, +7:u07:PKI, +19:u13:trustworthiness, +13:u14:assertion, +19:u04:trustworthiness, +13:u05:assertion, +7:u06:PKI, +19:u12:trustworthiness, +13:u13:assertion, +19:u03:trustworthiness, +13:u04:assertion, +7:u05:PKI, +19:u11:trustworthiness, +13:u12:assertion, +19:u02:trustworthiness, +13:u03:assertion, +7:u04:PKI, +19:u10:trustworthiness, +13:u11:assertion, +19:u01:trustworthiness, +13:u02:assertion, +7:u03:PKI, +13:u10:assertion, +19:u00:trustworthiness, +13:u01:assertion, +7:u02:PKI, +13:u00:assertion, +7:u01:PKI, +7:u00:PKI, +11:u14:flight., +11:u13:flight., +11:u12:flight., +11:u11:flight., +11:u10:flight., +7:u14:fib, +7:u13:fib, +7:u12:fib, +7:u23:FIB, +7:u11:fib, +7:u10:fib, +16:u08:validations., +16:u07:validations., +16:u06:validations., +16:u14:validations., +16:u05:validations., +16:u13:validations., +16:u04:validations., +9:u08:fetch, +16:u12:validations., +16:u03:validations., +16:u11:validations., +16:u02:validations., +9:u07:fetch, +16:u10:validations., +16:u01:validations., +9:u06:fetch, +16:u00:validations., +9:u05:fetch, +14:u08:Interest's, +9:u04:fetch, +14:u07:Interest's, +9:u03:fetch, +14:u06:Interest's, +9:u02:fetch, +14:u05:Interest's, +14:u08:available;, +9:u01:fetch, +14:u04:Interest's, +14:u07:available;, +9:u00:fetch, +14:u03:Interest's, +14:u06:available;, +14:u02:Interest's, +14:u05:available;, +14:u01:Interest's, +14:u04:available;, +8:u08:Base, +14:u00:Interest's, +14:u03:available;, +8:u07:Base, +14:u02:available;, +8:u06:Base, +14:u01:available;, +8:u05:Base, +14:u08:behaviors., +14:u00:available;, +8:u04:Base, +8:u03:Base, +12:u14:notional, +14:u07:behaviors., +8:u02:Base, +12:u13:notional, +14:u06:behaviors., +8:u01:Base, +12:u12:notional, +14:u14:behaviors., +14:u05:behaviors., +8:u00:Base, +12:u11:notional, +14:u13:behaviors., +14:u04:behaviors., +11:u08:2.4.2),, +12:u10:notional, +14:u12:behaviors., +14:u03:behaviors., +11:u07:2.4.2),, +14:u11:behaviors., +14:u02:behaviors., +11:u06:2.4.2),, +14:u10:behaviors., +14:u01:behaviors., +11:u05:2.4.2),, +14:u00:behaviors., +11:u04:2.4.2),, +10:uI2:(..),., +9:u08:loops, +11:u03:2.4.2),, +10:uI1:(..),., +11:u02:2.4.2),, +10:uI0:(..),., +9:u07:loops, +11:u01:2.4.2),, +9:u06:loops, +11:u00:2.4.2),, +9:u14:loops, +9:u05:loops, +7:u08:PIT, +9:u13:loops, +9:u04:loops, +7:u07:PIT, +9:u12:loops, +9:u03:loops, +12:u08:anymore., +7:u06:PIT, +9:u11:loops, +9:u02:loops, +7:u05:PIT, +9:u10:loops, +9:u01:loops, +12:u07:anymore., +7:u04:PIT, +9:u00:loops, +12:u06:anymore., +7:u03:PIT, +12:u14:anymore., +12:u05:anymore., +7:u02:PIT, +12:u13:anymore., +12:u04:anymore., +7:u01:PIT, +12:u12:anymore., +8:u23:anym, +12:u03:anymore., +7:u00:PIT, +12:u11:anymore., +12:u02:anymore., +12:u10:anymore., +12:u01:anymore., +12:u00:anymore., +13:u08:(HopLimit, +14:u08:Exceeded),, +13:u07:(HopLimit, +14:u07:Exceeded),, +13:u06:(HopLimit, +14:u06:Exceeded),, +13:u14:(hoplimit, +13:u05:(HopLimit, +14:u05:Exceeded),, +13:u13:(hoplimit, +13:u04:(HopLimit, +14:u04:Exceeded),, +13:u12:(hoplimit, +7:u22:(Ho, +8:u23:(Hop, +13:u03:(HopLimit, +14:u03:Exceeded),, +13:u11:(hoplimit, +13:u02:(HopLimit, +14:u02:Exceeded),, +13:u10:(hoplimit, +13:u01:(HopLimit, +14:u01:Exceeded),, +8:uI2:*(),, +13:u00:(HopLimit, +14:u00:Exceeded),, +15:u08:aggregation, +8:uI1:*(),, +15:u07:aggregation, +8:uI0:*(),, +15:u06:aggregation, +15:u05:aggregation, +15:u04:aggregation, +15:u03:aggregation, +14:u08:Interests., +15:u02:aggregation, +14:u07:Interests., +15:u01:aggregation, +14:u06:Interests., +15:u00:aggregation, +14:u05:Interests., +14:u04:Interests., +14:u03:Interests., +14:u02:Interests., +14:u01:Interests., +14:u00:Interests., +14:u14:round-trip, +14:u13:round-trip, +17:u08:overestimated, +14:u12:round-trip, +12:u14:expiring, +14:u11:round-trip, +12:u13:expiring, +7:u14:too, +17:u07:overestimated, +14:u10:round-trip, +12:u12:expiring, +7:u13:too, +17:u06:overestimated, +12:u11:expiring, +7:u12:too, +17:u14:overestimated, +7:u23:too, +17:u05:overestimated, +13:u08:multiple,, +12:u10:expiring, +7:u11:too, +17:u13:overestimated, +17:u04:overestimated, +13:u07:multiple,, +7:u10:too, +17:u12:overestimated, +17:u03:overestimated, +13:u06:multiple,, +17:u11:overestimated, +17:u02:overestimated, +13:u05:multiple,, +17:u10:overestimated, +17:u01:overestimated, +13:u04:multiple,, +17:u00:overestimated, +15:u08:KeyIdRestr,, +13:u03:multiple,, +13:u02:multiple,, +15:u07:KeyIdRestr,, +13:u01:multiple,, +15:u06:KeyIdRestr,, +14:u08:forwarder), +13:u00:multiple,, +15:u14:keyidrestr,, +15:u05:KeyIdRestr,, +15:u13:keyidrestr,, +15:u04:KeyIdRestr,, +14:u07:forwarder), +15:u12:keyidrestr,, +15:u03:KeyIdRestr,, +14:u06:forwarder), +18:u08:InterestExpiry, +15:u11:keyidrestr,, +14:u14:forwarder), +15:u02:KeyIdRestr,, +14:u05:forwarder), +15:u10:keyidrestr,, +14:u13:forwarder), +15:u01:KeyIdRestr,, +14:u04:forwarder), +18:u07:InterestExpiry, +14:u12:forwarder), +15:u00:KeyIdRestr,, +14:u03:forwarder), +18:u06:InterestExpiry, +14:u11:forwarder), +18:u14:interestexpiry, +14:u02:forwarder), +18:u05:InterestExpiry, +14:u10:forwarder), +18:u13:interestexpiry, +14:u01:forwarder), +18:u04:InterestExpiry, +18:u12:interestexpiry, +14:u00:forwarder), +18:u03:InterestExpiry, +18:u11:interestexpiry, +18:u02:InterestExpiry, +15:u08:forwarded)., +18:u10:interestexpiry, +18:u01:InterestExpiry, +18:u00:InterestExpiry, +15:u07:forwarded)., +15:u06:forwarded)., +15:u14:forwarded)., +15:u05:forwarded)., +11:u08:record., +15:u13:forwarded)., +15:u04:forwarded)., +11:u07:record., +15:u12:forwarded)., +15:u03:forwarded)., +11:u06:record., +15:u11:forwarded)., +15:u02:forwarded)., +11:u05:record., +15:u10:forwarded)., +15:u01:forwarded)., +11:u04:record., +15:u00:forwarded)., +11:u03:record., +11:u02:record., +11:u01:record., +11:u00:record., +14:u08:forwarder., +14:u07:forwarder., +14:u06:forwarder., +16:u08:prepopulated, +14:u05:forwarder., +16:u07:prepopulated, +14:u04:forwarder., +16:u06:prepopulated, +14:u03:forwarder., +16:u05:prepopulated, +14:u02:forwarder., +16:u04:prepopulated, +14:u01:forwarder., +16:u03:prepopulated, +14:u00:forwarder., +16:u02:prepopulated, +16:u01:prepopulated, +16:u00:prepopulated, +9:u08:8.4)., +9:u07:8.4)., +9:u06:8.4)., +9:u05:8.4)., +9:u04:8.4)., +9:u03:8.4)., +9:u02:8.4)., +9:u01:8.4)., +9:u00:8.4)., +11:u08:Perform, +11:u07:Perform, +11:u06:Perform, +11:u05:Perform, +11:u04:Perform, +11:u03:Perform, +11:u02:Perform, +11:u01:Perform, +11:u00:Perform, +12:u08:10.3.9)., +12:u07:10.3.9)., +13:u08:Determine, +12:u06:10.3.9)., +13:u07:Determine, +12:u05:10.3.9)., +13:u06:Determine, +12:u04:10.3.9)., +13:u05:Determine, +12:u03:10.3.9)., +13:u04:Determine, +12:u02:10.3.9)., +13:u03:Determine, +12:u01:10.3.9)., +13:u02:Determine, +12:u00:10.3.9)., +13:u01:Determine, +13:u00:Determine, +11:u08:exclude, +11:u07:exclude, +16:u08:congestion),, +11:u06:exclude, +11:u05:exclude, +16:u07:congestion),, +11:u04:exclude, +16:u06:congestion),, +11:u03:exclude, +16:u14:congestion),, +16:u05:congestion),, +11:u02:exclude, +16:u13:congestion),, +16:u04:congestion),, +11:u01:exclude, +16:u12:congestion),, +16:u03:congestion),, +11:u00:exclude, +16:u11:congestion),, +16:u02:congestion),, +8:u08:way., +16:u10:congestion),, +16:u01:congestion),, +16:u00:congestion),, +8:u07:way., +8:u06:way., +8:u14:way., +8:u05:way., +8:u13:way., +8:u04:way., +8:u12:way., +8:u23:way., +8:u03:way., +8:u11:way., +8:u02:way., +8:u10:way., +14:u14:interests., +8:u01:way., +14:u13:interests., +8:u00:way., +14:u12:interests., +14:u11:interests., +14:u10:interests., +8:uI2:(#)., +8:uI1:(#)., +8:uI0:(#)., +12:u08:Objects., +9:u14:serve, +12:u07:Objects., +9:u13:serve, +12:u06:Objects., +9:u12:serve, +12:u05:Objects., +9:u11:serve, +12:u04:Objects., +9:u10:serve, +9:u08:exact, +12:u03:Objects., +12:u02:Objects., +9:u07:exact, +12:u01:Objects., +9:u06:exact, +12:u00:Objects., +9:u14:exact, +9:u05:exact, +9:u13:exact, +9:u04:exact, +9:u12:exact, +9:u03:exact, +9:u11:exact, +9:u02:exact, +9:u10:exact, +9:u01:exact, +9:u00:exact, +73:u08:+-------------+-----------------------------------------------------+, +73:u07:+-------------+-----------------------------------------------------+, +73:u06:+-------------+-----------------------------------------------------+, +73:u14:+-------------+-----------------------------------------------------+, +73:u05:+-------------+-----------------------------------------------------+, +73:u13:+-------------+-----------------------------------------------------+, +73:u04:+-------------+-----------------------------------------------------+, +73:u12:+-------------+-----------------------------------------------------+, +73:u03:+-------------+-----------------------------------------------------+, +73:u11:+-------------+-----------------------------------------------------+, +73:u02:+-------------+-----------------------------------------------------+, +73:u10:+-------------+-----------------------------------------------------+, +73:u01:+-------------+-----------------------------------------------------+, +73:u00:+-------------+-----------------------------------------------------+, +15:u08:components., +15:u07:components., +15:u06:components., +15:u05:components., +15:u04:components., +15:u03:components., +15:u02:components., +15:u01:components., +15:u00:components., +10:u08:value), +10:u07:value), +10:u06:value), +10:u14:value), +10:u05:value), +10:u13:value), +10:u04:value), +10:u12:value), +10:u03:value), +10:u11:value), +10:u02:value), +10:u10:value), +10:u01:value), +10:u00:value), +8:u08:all., +8:u07:all., +11:u08:route),, +8:u06:all., +73:u08:+--------------------------+----------------------------------------+, +11:u07:route),, +8:u14:all., +8:u05:all., +11:u06:route),, +8:u13:all., +9:uI2:.,,-(, +8:u04:all., +73:u07:+--------------------------+----------------------------------------+, +11:u05:route),, +8:u12:all., +8:u23:all., +9:uI1:.,,-(, +8:u03:all., +73:u06:+--------------------------+----------------------------------------+, +11:u04:route),, +8:u11:all., +73:u14:+--------------------------+----------------------------------------+, +9:uI0:.,,-(, +8:u02:all., +73:u05:+--------------------------+----------------------------------------+, +11:u03:route),, +8:u10:all., +73:u13:+--------------------------+----------------------------------------+, +8:u01:all., +73:u04:+--------------------------+----------------------------------------+, +11:u02:route),, +73:u12:+--------------------------+----------------------------------------+, +8:u00:all., +73:u03:+--------------------------+----------------------------------------+, +11:u01:route),, +73:u11:+--------------------------+----------------------------------------+, +73:u02:+--------------------------+----------------------------------------+, +10:u08:ccnx:/, +11:u00:route),, +73:u10:+--------------------------+----------------------------------------+, +73:u01:+--------------------------+----------------------------------------+, +73:u00:+--------------------------+----------------------------------------+, +10:u07:ccnx:/, +10:u06:ccnx:/, +10:u14:ccnx:/, +10:u05:ccnx:/, +10:u13:ccnx:/, +10:u04:ccnx:/, +10:u12:ccnx:/, +10:u03:ccnx:/, +10:u11:ccnx:/, +10:u02:ccnx:/, +10:u10:ccnx:/, +10:u01:ccnx:/, +10:u00:ccnx:/, +15:u08:ccnx:/NAME=, +15:u07:ccnx:/NAME=, +15:u06:ccnx:/NAME=, +15:u14:ccnx:/name=, +15:u05:ccnx:/NAME=, +15:u13:ccnx:/name=, +15:u04:ccnx:/NAME=, +15:u12:ccnx:/name=, +15:u03:ccnx:/NAME=, +15:u11:ccnx:/name=, +15:u02:ccnx:/NAME=, +15:u10:ccnx:/name=, +15:u01:ccnx:/NAME=, +7:uI2::/., +15:u00:ccnx:/NAME=, +7:uI1::/., +28:u08:ccnx:/NAME=foo/APP:0=bar, +7:uI0::/., +28:u07:ccnx:/NAME=foo/APP:0=bar, +28:u06:ccnx:/NAME=foo/APP:0=bar, +28:u05:ccnx:/NAME=foo/APP:0=bar, +10:uI2:://:-,, +28:u04:ccnx:/NAME=foo/APP:0=bar, +10:uI1:://:-,, +28:u03:ccnx:/NAME=foo/APP:0=bar, +10:uI0:://:-,, +28:u02:ccnx:/NAME=foo/APP:0=bar, +28:u01:ccnx:/NAME=foo/APP:0=bar, +28:u00:ccnx:/NAME=foo/APP:0=bar, +13:u08:multiplex, +13:u07:multiplex, +13:u06:multiplex, +13:u14:multiplex, +13:u05:multiplex, +13:u13:multiplex, +13:u04:multiplex, +12:u08:payload., +13:u12:multiplex, +13:u03:multiplex, +13:u11:multiplex, +13:u02:multiplex, +12:u07:payload., +13:u10:multiplex, +13:u01:multiplex, +12:u06:payload., +13:u00:multiplex, +12:u05:payload., +12:u04:payload., +12:u03:payload., +12:u02:payload., +12:u01:payload., +12:u00:payload., +13:u08:envelope., +13:u07:envelope., +13:u06:envelope., +13:u05:envelope., +12:u08:remember, +13:u04:envelope., +13:u03:envelope., +13:u08:anything., +12:u07:remember, +13:u02:envelope., +13:u07:anything., +15:u08:formulation, +12:u06:remember, +13:u01:envelope., +13:u06:anything., +15:u07:formulation, +12:u14:remember, +12:u05:remember, +13:u00:envelope., +13:u05:anything., +15:u06:formulation, +12:u13:remember, +12:u04:remember, +13:u04:anything., +15:u05:formulation, +12:u12:remember, +8:u23:reme, +12:u03:remember, +13:u03:anything., +15:u04:formulation, +12:u11:remember, +12:u02:remember, +13:u02:anything., +15:u03:formulation, +12:u10:remember, +12:u01:remember, +13:u01:anything., +15:u02:formulation, +12:u00:remember, +13:u00:anything., +15:u01:formulation, +15:u00:formulation, +10:u08:"Link", +11:uI2:,[],[]., +10:u07:"Link", +23:u08:certificate-wrapped, +11:uI1:,[],[]., +10:u06:"Link", +10:u14:"link", +11:uI0:,[],[]., +10:u05:"Link", +23:u07:certificate-wrapped, +10:u13:"link", +10:u04:"Link", +23:u06:certificate-wrapped, +10:u12:"link", +23:u14:certificate-wrapped, +7:u22:"Li, +8:u23:"Lin, +10:u03:"Link", +23:u05:certificate-wrapped, +10:u11:"link", +23:u13:certificate-wrapped, +10:u02:"Link", +23:u04:certificate-wrapped, +10:u10:"link", +23:u12:certificate-wrapped, +10:u01:"Link", +23:u03:certificate-wrapped, +23:u11:certificate-wrapped, +10:u00:"Link", +23:u02:certificate-wrapped, +23:u10:certificate-wrapped, +23:u01:certificate-wrapped, +23:u00:certificate-wrapped, +11:u08:falling, +10:u08:victim, +11:u07:falling, +10:u07:victim, +11:u06:falling, +10:u06:victim, +11:u14:falling, +11:u05:falling, +10:u05:victim, +11:u13:falling, +11:u04:falling, +10:u04:victim, +11:u12:falling, +11:u03:falling, +10:u03:victim, +11:u11:falling, +12:uI2:,(..,-),, +11:u02:falling, +10:u02:victim, +11:u10:falling, +12:uI1:,(..,-),, +11:u01:falling, +10:u01:victim, +12:uI0:,(..,-),, +11:u00:falling, +10:u00:victim, +13:u08:Validator, +11:u08:output,, +13:u07:Validator, +13:u06:Validator, +11:u07:output,, +13:u05:Validator, +11:u06:output,, +13:u04:Validator, +11:u14:output,, +11:u05:output,, +13:u03:Validator, +11:u13:output,, +11:u04:output,, +13:u02:Validator, +11:u12:output,, +11:u03:output,, +13:u01:Validator, +13:u08:payload)., +11:u11:output,, +11:u02:output,, +13:u00:Validator, +13:u07:payload)., +11:u10:output,, +11:u01:output,, +13:u06:payload)., +11:u00:output,, +13:u05:payload)., +13:u04:payload)., +13:u03:payload)., +13:u02:payload)., +14:u08:validator,, +13:u01:payload)., +13:u00:payload)., +14:u07:validator,, +14:u06:validator,, +14:u14:validator,, +14:u05:validator,, +14:u13:validator,, +14:u04:validator,, +14:u12:validator,, +14:u03:validator,, +14:u11:validator,, +14:u02:validator,, +14:u10:validator,, +14:u01:validator,, +14:u00:validator,, +13:u14:timestamp, +15:u08:corruption., +13:u13:timestamp, +8:u08:They, +13:u12:timestamp, +15:u07:corruption., +8:u07:They, +13:u11:timestamp, +15:u06:corruption., +8:u06:They, +14:u08:redundant., +13:u10:timestamp, +15:u14:corruption., +15:u05:corruption., +8:u05:They, +14:u07:redundant., +15:u13:corruption., +15:u04:corruption., +8:u04:They, +14:u06:redundant., +15:u12:corruption., +15:u03:corruption., +8:u03:They, +14:u05:redundant., +15:u11:corruption., +15:u02:corruption., +13:u08:(SigTime), +8:u02:They, +14:u04:redundant., +15:u10:corruption., +15:u01:corruption., +8:u01:They, +14:u03:redundant., +15:u00:corruption., +13:u07:(SigTime), +8:u00:They, +14:u02:redundant., +13:u06:(SigTime), +14:u01:redundant., +13:u14:(sigtime), +13:u05:(SigTime), +14:u00:redundant., +13:u13:(sigtime), +13:u04:(SigTime), +13:u12:(sigtime), +7:u22:(Si, +8:u23:(Sig, +13:u03:(SigTime), +12:u08:counter,, +13:u11:(sigtime), +13:u02:(SigTime), +12:u07:counter,, +13:u10:(sigtime), +10:uI2:[-].,,, +13:u01:(SigTime), +12:u06:counter,, +10:uI1:[-].,,, +13:u00:(SigTime), +12:u05:counter,, +10:uI0:[-].,,, +12:u04:counter,, +12:u03:counter,, +12:u02:counter,, +24:u08:Signature-validation, +12:u01:counter,, +12:u00:counter,, +24:u07:Signature-validation, +24:u06:Signature-validation, +12:u08:(ECDSA)., +24:u14:signature-validation, +24:u05:Signature-validation, +15:u08:RSA-SHA256,, +12:u07:(ECDSA)., +13:u08:[RFC8609], +24:u13:signature-validation, +24:u04:Signature-validation, +12:u06:(ECDSA)., +13:u07:[RFC8609], +18:u08:EC-SECP-256K1,, +24:u12:signature-validation, +24:u03:Signature-validation, +15:u07:RSA-SHA256,, +21:u08:vendor-validation, +12:u05:(ECDSA)., +13:u06:[RFC8609], +18:u07:EC-SECP-256K1,, +24:u11:signature-validation, +24:u02:Signature-validation, +15:u06:RSA-SHA256,, +12:u04:(ECDSA)., +13:u05:[RFC8609], +18:u06:EC-SECP-256K1,, +24:u10:signature-validation, +15:u14:rsa-sha256,, +24:u01:Signature-validation, +15:u05:RSA-SHA256,, +21:u07:vendor-validation, +12:u03:(ECDSA)., +13:u04:[RFC8609], +18:u05:EC-SECP-256K1,, +15:u13:rsa-sha256,, +12:uI2:-,--,--., +24:u00:Signature-validation, +15:u04:RSA-SHA256,, +21:u06:vendor-validation, +12:u02:(ECDSA)., +13:u03:[RFC8609], +18:u04:EC-SECP-256K1,, +15:u12:rsa-sha256,, +21:u14:vendor-validation, +12:uI1:-,--,--., +15:u03:RSA-SHA256,, +21:u05:vendor-validation, +12:u01:(ECDSA)., +13:u02:[RFC8609], +18:u03:EC-SECP-256K1,, +15:u11:rsa-sha256,, +21:u13:vendor-validation, +12:uI0:-,--,--., +15:u02:RSA-SHA256,, +21:u04:vendor-validation, +12:u00:(ECDSA)., +13:u01:[RFC8609], +18:u02:EC-SECP-256K1,, +15:u10:rsa-sha256,, +21:u12:vendor-validation, +15:u01:RSA-SHA256,, +21:u03:vendor-validation, +13:u00:[RFC8609], +18:u01:EC-SECP-256K1,, +21:u11:vendor-validation, +15:u00:RSA-SHA256,, +21:u02:vendor-validation, +18:u00:EC-SECP-256K1,, +21:u10:vendor-validation, +21:u01:vendor-validation, +21:u00:vendor-validation, +12:u08:embedded, +16:u08:certificate,, +12:u07:embedded, +16:u07:certificate,, +12:u06:embedded, +16:u06:certificate,, +12:u14:embedded, +12:u05:embedded, +16:u05:certificate,, +12:u13:embedded, +12:u04:embedded, +16:u04:certificate,, +12:u12:embedded, +7:u22:emb, +8:u23:embe, +12:u03:embedded, +16:u03:certificate,, +12:u11:embedded, +12:u02:embedded, +16:u02:certificate,, +12:u10:embedded, +12:u01:embedded, +16:u01:certificate,, +12:u00:embedded, +16:u00:certificate,, +16:u14:certificate., +16:u13:certificate., +16:u12:certificate., +16:u11:certificate., +16:u10:certificate., +13:uI2:.(...[])., +13:uI1:.(...[])., +13:uI0:.(...[])., +13:u08:consumers, +9:uI2:(..);, +16:u08:restriction., +13:u07:consumers, +9:uI1:(..);, +13:u06:consumers, +9:uI0:(..);, +16:u07:restriction., +13:u05:consumers, +16:u06:restriction., +13:u04:consumers, +16:u14:restriction., +16:u05:restriction., +13:u03:consumers, +12:u08:KeyLink,, +16:u13:restriction., +16:u04:restriction., +13:u02:consumers, +12:u07:KeyLink,, +16:u12:restriction., +16:u03:restriction., +13:u01:consumers, +12:u06:KeyLink,, +16:u11:restriction., +16:u02:restriction., +13:u00:consumers, +12:u05:KeyLink,, +16:u10:restriction., +9:uI2:,(,,), +16:u01:restriction., +12:u04:KeyLink,, +9:uI1:,(,,), +16:u00:restriction., +12:u03:KeyLink,, +9:uI0:,(,,), +12:u02:KeyLink,, +12:u01:KeyLink,, +12:u00:KeyLink,, +8:u23:key,, +12:u08:Object's, +12:u07:Object's, +12:u06:Object's, +12:u05:Object's, +12:u04:Object's, +12:u03:Object's, +12:u02:Object's, +12:u01:Object's, +12:u00:Object's, +14:u08:PublicKey., +14:u07:PublicKey., +14:u06:PublicKey., +14:u05:PublicKey., +14:u04:PublicKey., +14:u03:PublicKey., +14:u02:PublicKey., +14:u01:PublicKey., +14:u00:PublicKey., +13:u08:comparing, +13:u07:comparing, +13:u08:evaluates, +13:u06:comparing, +13:u05:comparing, +13:u07:evaluates, +13:u04:comparing, +13:u06:evaluates, +13:u03:comparing, +8:u08:(may, +13:u14:evaluates, +13:u05:evaluates, +13:u02:comparing, +8:u07:(may, +13:u13:evaluates, +13:u04:evaluates, +13:u01:comparing, +8:u06:(may, +13:u12:evaluates, +13:u03:evaluates, +13:u00:comparing, +8:u05:(may, +13:u11:evaluates, +13:u02:evaluates, +8:u04:(may, +10:u08:binary, +13:u10:evaluates, +10:uI2:().,,,, +13:u01:evaluates, +8:u03:(may, +10:u07:binary, +10:uI1:().,,,, +13:u00:evaluates, +8:u02:(may, +10:u06:binary, +10:uI0:().,,,, +8:u01:(may, +10:u05:binary, +12:uI2:,""""."", +8:u00:(may, +10:u04:binary, +13:u14:operator., +12:uI1:,""""."", +9:uI2:()"!", +10:u03:binary, +13:u13:operator., +12:uI0:,""""."", +9:uI1:()"!", +10:u02:binary, +13:u12:operator., +9:uI0:()"!", +10:u01:binary, +13:u08:predicate, +13:u11:operator., +10:u00:binary, +13:u07:predicate, +14:u08:forwarded., +13:u10:operator., +13:u06:predicate, +14:u07:forwarded., +13:u05:predicate, +14:u06:forwarded., +8:u08:(!No, +13:u04:predicate, +14:u05:forwarded., +13:u03:predicate, +14:u04:forwarded., +8:u07:(!No, +13:u02:predicate, +14:u03:forwarded., +8:u06:(!No, +13:u01:predicate, +14:u02:forwarded., +8:u14:(!no, +8:u05:(!No, +13:u00:predicate, +14:u01:forwarded., +8:u13:(!no, +21:uI2:(!())(!())(!())(), +8:u04:(!No, +14:u00:forwarded., +8:u12:(!no, +6:u21:(!, +7:u22:(!N, +8:u23:(!No, +21:uI1:(!())(!())(!())(), +8:u03:(!No, +8:u11:(!no, +21:uI0:(!())(!())(!())(), +8:u02:(!No, +8:u10:(!no, +8:u01:(!No, +8:u00:(!No, +9:u08:Name,, +9:u07:Name,, +9:u06:Name,, +9:u14:name,, +9:u05:Name,, +9:u13:name,, +9:u04:Name,, +9:u12:name,, +9:u03:Name,, +9:u11:name,, +9:u02:Name,, +9:u10:name,, +9:u01:Name,, +9:u00:Name,, +11:u08:origin., +11:u07:origin., +11:u06:origin., +11:u14:origin., +11:u05:origin., +11:u13:origin., +11:u04:origin., +11:u12:origin., +11:u03:origin., +11:u11:origin., +11:u02:origin., +11:u10:origin., +11:u01:origin., +9:uI2:(,--,, +11:u00:origin., +9:uI1:(,--,, +9:uI0:(,--,, +14:u08:[RFC8609]., +14:u07:[RFC8609]., +14:u06:[RFC8609]., +14:u14:[rfc8609]., +14:u05:[RFC8609]., +14:u13:[rfc8609]., +14:u04:[RFC8609]., +14:u12:[rfc8609]., +14:u03:[RFC8609]., +14:u11:[rfc8609]., +14:u02:[RFC8609]., +14:u10:[rfc8609]., +14:u01:[RFC8609]., +14:u00:[RFC8609]., +11:u08:reverse, +11:u07:reverse, +11:u06:reverse, +11:u05:reverse, +11:u04:reverse, +11:u03:reverse, +11:u02:reverse, +11:u01:reverse, +11:u00:reverse, +9:u14:code., +9:u13:code., +9:u12:code., +9:u11:code., +9:u10:code., +8:u08:RFC., +8:u07:RFC., +8:u06:RFC., +8:u05:RFC., +8:u04:RFC., +8:u03:RFC., +8:u02:RFC., +8:u01:RFC., +8:u00:RFC., +11:u08:10.3.1), +11:u07:10.3.1), +11:u06:10.3.1), +11:u05:10.3.1), +11:u04:10.3.1), +11:u03:10.3.1), +11:u02:10.3.1), +11:u01:10.3.1), +11:u00:10.3.1), +11:u08:10.3.3), +11:u07:10.3.3), +11:u06:10.3.3), +11:u05:10.3.3), +11:u04:10.3.3), +11:u03:10.3.3), +11:u02:10.3.3), +11:u01:10.3.3), +11:u00:10.3.3), +11:u08:10.3.5), +11:u07:10.3.5), +11:u06:10.3.5), +11:u05:10.3.5), +11:u04:10.3.5), +11:u03:10.3.5), +11:u02:10.3.5), +11:u01:10.3.5), +11:u00:10.3.5), +11:u08:10.3.6), +11:u07:10.3.6), +11:u06:10.3.6), +11:u05:10.3.6), +11:u04:10.3.6), +11:u03:10.3.6), +11:u02:10.3.6), +11:u01:10.3.6), +11:u08:10.3.7), +11:u00:10.3.6), +11:u07:10.3.7), +11:u06:10.3.7), +11:u05:10.3.7), +11:u04:10.3.7), +11:u03:10.3.7), +11:u02:10.3.7), +11:u01:10.3.7), +11:u00:10.3.7), +11:u08:10.3.8), +11:u07:10.3.8), +11:u06:10.3.8), +11:u05:10.3.8), +11:u04:10.3.8), +11:u03:10.3.8), +11:u02:10.3.8), +11:u01:10.3.8), +11:u00:10.3.8), +14:u08:corrective, +14:u07:corrective, +14:u06:corrective, +14:u05:corrective, +14:u04:corrective, +14:u03:corrective, +14:u02:corrective, +14:u01:corrective, +14:u00:corrective, +7:u08:Try, +7:u07:Try, +11:u08:Return,, +7:u06:Try, +11:u07:Return,, +9:u08:Clear, +7:u05:Try, +11:u06:Return,, +9:u07:Clear, +7:u04:Try, +11:u05:Return,, +9:u06:Clear, +9:u08:track, +7:u03:Try, +11:u04:Return,, +9:u05:Clear, +11:u14:reverse, +7:u02:Try, +11:u03:Return,, +9:u04:Clear, +11:u13:reverse, +9:u07:track, +7:u01:Try, +11:u02:Return,, +9:u03:Clear, +11:u12:reverse, +9:u06:track, +7:u00:Try, +11:u01:Return,, +9:u02:Clear, +11:u11:reverse, +9:u05:track, +11:u00:Return,, +9:u01:Clear, +11:u10:reverse, +9:u04:track, +9:u00:Clear, +9:u03:track, +9:u02:track, +9:u01:track, +9:u00:track, +8:u23:Proh, +10:u08:route,, +10:u07:route,, +10:u06:route,, +10:u05:route,, +10:u04:route,, +10:u03:route,, +10:u02:route,, +10:u01:route,, +12:u08:minimum,, +10:u00:route,, +12:u07:minimum,, +11:u08:discard, +12:u06:minimum,, +11:u07:discard, +12:u14:minimum,, +12:u05:minimum,, +11:u06:discard, +12:u13:minimum,, +12:u14:silently, +12:u04:minimum,, +11:u05:discard, +12:u12:minimum,, +12:u13:silently, +12:u03:minimum,, +11:u04:discard, +12:u11:minimum,, +12:u12:silently, +7:u22:sil, +8:u23:sile, +12:u02:minimum,, +11:u03:discard, +12:u10:minimum,, +12:u11:silently, +12:u01:minimum,, +11:u02:discard, +12:u10:silently, +12:u00:minimum,, +11:u01:discard, +11:u00:discard, +11:u08:(ACLs),, +11:u07:(ACLs),, +11:u06:(ACLs),, +11:u05:(ACLs),, +11:u04:(ACLs),, +7:u08:e0,, +11:u03:(ACLs),, +7:u07:e0,, +11:u02:(ACLs),, +7:u06:e0,, +11:u01:(ACLs),, +7:u05:e0,, +11:u00:(ACLs),, +7:u04:e0,, +7:u03:e0,, +7:u02:e0,, +7:u01:e0,, +7:u00:e0,, +8:u23:Cong, +13:u08:envelope;, +13:u07:envelope;, +12:u08:[esic])., +12:u08:CRC32C),, +13:u06:envelope;, +12:u07:[esic])., +13:u05:envelope;, +12:u06:[esic])., +12:u07:CRC32C),, +13:u04:envelope;, +12:u05:[esic])., +12:u06:CRC32C),, +13:u03:envelope;, +12:u04:[esic])., +12:u14:crc32c),, +12:u05:CRC32C),, +17:u08:computational, +13:u02:envelope;, +12:u03:[esic])., +12:u13:crc32c),, +17:uI2:),(..,),(..,), +12:u04:CRC32C),, +13:u01:envelope;, +12:u02:[esic])., +12:u12:crc32c),, +17:uI1:),(..,),(..,), +12:u03:CRC32C),, +17:u07:computational, +13:u00:envelope;, +12:u01:[esic])., +12:u11:crc32c),, +17:uI0:),(..,),(..,), +12:u02:CRC32C),, +17:u06:computational, +12:u00:[esic])., +12:u10:crc32c),, +17:u14:computational, +12:u01:CRC32C),, +17:u05:computational, +13:u08:corrupted, +17:u13:computational, +12:u00:CRC32C),, +17:u04:computational, +13:u07:corrupted, +17:u12:computational, +14:u14:guideline,, +17:u03:computational, +13:u06:corrupted, +17:u11:computational, +14:u13:guideline,, +19:u14:unintentionally, +17:u02:computational, +13:u05:corrupted, +17:u10:computational, +14:u12:guideline,, +19:u13:unintentionally, +17:u01:computational, +13:u04:corrupted, +14:u11:guideline,, +19:u12:unintentionally, +8:u23:unin, +17:u00:computational, +13:u03:corrupted, +14:u10:guideline,, +19:u11:unintentionally, +13:u02:corrupted, +19:u10:unintentionally, +13:u01:corrupted, +13:u00:corrupted, +13:u08:[ccnx-ke], +13:u08:[mobile],, +13:u07:[ccnx-ke], +13:u07:[mobile],, +13:u06:[ccnx-ke], +13:u06:[mobile],, +13:u14:[ccnx-ke], +13:u05:[ccnx-ke], +13:u05:[mobile],, +13:u13:[ccnx-ke], +11:uI2:[-][],., +13:u04:[ccnx-ke], +13:u04:[mobile],, +13:u12:[ccnx-ke], +11:uI1:[-][],., +13:u03:[ccnx-ke], +13:u03:[mobile],, +13:u11:[ccnx-ke], +11:uI0:[-][],., +13:u02:[ccnx-ke], +13:u02:[mobile],, +13:u10:[ccnx-ke], +12:uI2:(..,[-]), +13:u01:[ccnx-ke], +13:u01:[mobile],, +12:uI1:(..,[-]), +13:u00:[ccnx-ke], +13:u00:[mobile],, +12:uI0:(..,[-]), +13:u14:[rfc8609], +7:u08:"L", +13:u13:[rfc8609], +11:uI2:[]--()., +7:u07:"L", +13:u12:[rfc8609], +11:uI1:[]--()., +7:u06:"L", +13:u11:[rfc8609], +11:uI0:[]--()., +8:uI2:.-"", +7:u05:"L", +13:u10:[rfc8609], +8:uI1:.-"", +12:u08:lengths,, +7:u04:"L", +8:uI0:.-"", +7:u03:"L", +16:uI2:-""-"".-"""", +12:u07:lengths,, +7:u02:"L", +16:uI1:-""-"".-"""", +12:u06:lengths,, +7:u01:"L", +12:u14:lengths,, +16:uI0:-""-"".-"""", +12:u05:lengths,, +7:u00:"L", +12:u13:lengths,, +12:u04:lengths,, +12:u12:lengths,, +12:u03:lengths,, +12:u11:lengths,, +12:u02:lengths,, +12:u10:lengths,, +12:u01:lengths,, +12:u00:lengths,, +9:u08:2.4.3, +9:u07:2.4.3, +9:u06:2.4.3, +9:u05:2.4.3, +9:u04:2.4.3, +9:u03:2.4.3, +9:uI2:""),,, +9:u02:2.4.3, +9:uI1:""),,, +9:u01:2.4.3, +9:uI0:""),,, +9:u00:2.4.3, +12:u08:manifest, +12:u07:manifest, +12:u06:manifest, +12:u05:manifest, +10:u14:signed, +12:u04:manifest, +10:u13:signed, +12:u03:manifest, +10:u12:signed, +12:u02:manifest, +10:u11:signed, +12:u01:manifest, +10:u10:signed, +12:u00:manifest, +14:u14:user-level, +14:u13:user-level, +14:u12:user-level, +14:u11:user-level, +14:u10:user-level, +17:u08:field-allowed, +17:u07:field-allowed, +17:u06:field-allowed, +17:u14:field-allowed, +8:uI2:.[]-, +17:u05:field-allowed, +17:u13:field-allowed, +8:uI1:.[]-, +17:u04:field-allowed, +17:u12:field-allowed, +8:uI0:.[]-, +17:u03:field-allowed, +17:u11:field-allowed, +17:u02:field-allowed, +17:u10:field-allowed, +17:u01:field-allowed, +17:u00:field-allowed, +11:u08:prefix,, +11:u07:prefix,, +11:u06:prefix,, +11:u05:prefix,, +11:uI2:,":/.",, +11:u04:prefix,, +11:uI1:,":/.",, +11:u03:prefix,, +11:uI0:,":/.",, +11:u02:prefix,, +11:u01:prefix,, +11:u00:prefix,, +55:u08:wp-content/uploads/2015/12/ndn-0036-1-ndn-ace.pdf>., +13:u08:[befrags], +55:u07:wp-content/uploads/2015/12/ndn-0036-1-ndn-ace.pdf>., +19:u08:Fragmentation",, +55:u06:wp-content/uploads/2015/12/ndn-0036-1-ndn-ace.pdf>., +13:u07:[befrags], +24:u08:beginendfragment-02,, +55:u14:wp-content/uploads/2015/12/ndn-0036-1-ndn-ace.pdf>., +12:uI2:,://.-./, +55:u05:wp-content/uploads/2015/12/ndn-0036-1-ndn-ace.pdf>., +13:u06:[befrags], +19:u07:Fragmentation",, +14:u08:[ccn-lite], +55:u13:wp-content/uploads/2015/12/ndn-0036-1-ndn-ace.pdf>., +13:u14:[befrags], +12:uI1:,://.-./, +15:uI2:-////----.., +55:u04:wp-content/uploads/2015/12/ndn-0036-1-ndn-ace.pdf>., +13:u05:[befrags], +19:u06:Fragmentation",, +24:u07:beginendfragment-02,, +14:u08:2011-2019,, +13:u08:Tschudin,, +55:u12:wp-content/uploads/2015/12/ndn-0036-1-ndn-ace.pdf>., +13:u13:[befrags], +19:u14:fragmentation",, +6:u21:wp, +7:u22:wp-, +8:u23:wp-c, +12:uI0:,://.-./, +15:uI1:-////----.., +14:uI2:[],..,""-", +55:u03:wp-content/uploads/2015/12/ndn-0036-1-ndn-ace.pdf>., +13:u04:[befrags], +19:u05:Fragmentation",, +24:u06:beginendfragment-02,, +14:u07:[ccn-lite], +13:u07:Tschudin,, +26:u08:<http://ccn-lite.net>., +55:u11:wp-content/uploads/2015/12/ndn-0036-1-ndn-ace.pdf>., +13:u12:[befrags], +19:u13:fragmentation",, +24:u14:beginendfragment-02,, +6:u21:[b, +7:u22:[be, +8:u23:[bef, +15:uI0:-////----.., +14:uI1:[],..,""-", +10:uI2:",,---, +55:u02:wp-content/uploads/2015/12/ndn-0036-1-ndn-ace.pdf>., +13:u03:[befrags], +19:u04:Fragmentation",, +24:u05:beginendfragment-02,, +14:u06:[ccn-lite], +14:u07:2011-2019,, +13:u06:Tschudin,, +26:u07:<http://ccn-lite.net>., +55:u10:wp-content/uploads/2015/12/ndn-0036-1-ndn-ace.pdf>., +13:u11:[befrags], +19:u12:fragmentation",, +24:u13:beginendfragment-02,, +14:u14:[ccn-lite], +14:uI0:[],..,""-", +10:uI1:",,---, +55:u01:wp-content/uploads/2015/12/ndn-0036-1-ndn-ace.pdf>., +13:u02:[befrags], +19:u03:Fragmentation",, +24:u04:beginendfragment-02,, +14:u05:[ccn-lite], +14:u06:2011-2019,, +13:u05:Tschudin,, +26:u06:<http://ccn-lite.net>., +13:u10:[befrags], +19:u11:fragmentation",, +24:u12:beginendfragment-02,, +14:u13:[ccn-lite], +14:u14:2011-2019,, +7:u22:beg, +8:u23:begi, +10:uI0:",,---, +17:uI2:[-],.,.,"-",,, +55:u00:wp-content/uploads/2015/12/ndn-0036-1-ndn-ace.pdf>., +13:u01:[befrags], +19:u02:Fragmentation",, +24:u03:beginendfragment-02,, +14:u04:[ccn-lite], +14:u05:2011-2019,, +19:u08:[ccnx-registry], +13:u04:Tschudin,, +26:u05:<http://ccn-lite.net>., +19:u10:fragmentation",, +24:u11:beginendfragment-02,, +14:u12:[ccn-lite], +14:u13:2011-2019,, +17:uI1:[-],.,.,"-",,, +12:uI2:-,://-.., +13:u00:[befrags], +19:u01:Fragmentation",, +24:u02:beginendfragment-02,, +14:u03:[ccn-lite], +14:u04:2011-2019,, +13:u03:Tschudin,, +26:u04:<http://ccn-lite.net>., +24:u10:beginendfragment-02,, +14:u11:[ccn-lite], +14:u12:2011-2019,, +17:uI0:[-],.,.,"-",,, +12:uI1:-,://-.., +16:uI2:[-],.,,.,.,", +19:u00:Fragmentation",, +24:u01:beginendfragment-02,, +14:u02:[ccn-lite], +14:u03:2011-2019,, +19:u07:[ccnx-registry], +44:u08:<https://www.iana.org/assignments/ccnx>., +13:u02:Tschudin,, +26:u03:<http://ccn-lite.net>., +14:u10:[ccn-lite], +14:u11:2011-2019,, +12:uI0:-,://-.., +16:uI1:[-],.,,.,.,", +24:u00:beginendfragment-02,, +14:u01:[ccn-lite], +14:u02:2011-2019,, +19:u06:[ccnx-registry], +13:u01:Tschudin,, +26:u02:<http://ccn-lite.net>., +14:u10:2011-2019,, +19:u14:[ccnx-registry], +16:uI0:[-],.,,.,.,", +14:u00:[ccn-lite], +14:u01:2011-2019,, +19:u05:[ccnx-registry], +44:u07:<https://www.iana.org/assignments/ccnx>., +13:u00:Tschudin,, +26:u01:<http://ccn-lite.net>., +19:u13:[ccnx-registry], +9:u14:iana,, +14:u00:2011-2019,, +19:u04:[ccnx-registry], +44:u06:<https://www.iana.org/assignments/ccnx>., +26:u00:<http://ccn-lite.net>., +19:u12:[ccnx-registry], +9:u13:iana,, +44:u14:<https://www.iana.org/assignments/ccnx>., +11:uI2:,"-()",, +19:u03:[ccnx-registry], +44:u05:<https://www.iana.org/assignments/ccnx>., +19:u11:[ccnx-registry], +9:u12:iana,, +44:u13:<https://www.iana.org/assignments/ccnx>., +11:uI1:,"-()",, +19:u02:[ccnx-registry], +44:u04:<https://www.iana.org/assignments/ccnx>., +19:u10:[ccnx-registry], +9:u11:iana,, +44:u12:<https://www.iana.org/assignments/ccnx>., +11:uI0:,"-()",, +19:u01:[ccnx-registry], +44:u03:<https://www.iana.org/assignments/ccnx>., +9:u10:iana,, +44:u11:<https://www.iana.org/assignments/ccnx>., +19:u00:[ccnx-registry], +44:u02:<https://www.iana.org/assignments/ccnx>., +14:u08:[ccnx-uri], +44:u10:<https://www.iana.org/assignments/ccnx>., +44:u01:<https://www.iana.org/assignments/ccnx>., +44:u00:<https://www.iana.org/assignments/ccnx>., +14:u07:[ccnx-uri], +14:u08:[chunking], +14:u06:[ccnx-uri], +14:u14:[ccnx-uri], +14:u05:[ccnx-uri], +14:u07:[chunking], +10:u08:[cicn], +38:u08:draft-mosko-icnrg-ccnxchunking-02,, +14:u13:[ccnx-uri], +14:u04:[ccnx-uri], +14:u06:[chunking], +10:u08:FD.io,, +38:u07:draft-mosko-icnrg-ccnxchunking-02,, +14:u12:[ccnx-uri], +14:u14:[chunking], +14:u03:[ccnx-uri], +14:u05:[chunking], +10:u07:[cicn], +57:u08:<https://wiki.fd.io/index.php?title=Cicn&oldid=7191>., +38:u06:draft-mosko-icnrg-ccnxchunking-02,, +14:u08:"Community, +14:u11:[ccnx-uri], +14:u13:[chunking], +12:uI2:[],.,"",, +14:u02:[ccnx-uri], +14:u04:[chunking], +10:u06:[cicn], +10:u07:FD.io,, +10:u08:[dart], +38:u05:draft-mosko-icnrg-ccnxchunking-02,, +14:u07:"Community, +14:u10:[ccnx-uri], +14:u12:[chunking], +10:u14:[cicn], +7:u22:[ch, +8:u23:[chu, +12:uI1:[],.,"",, +14:u01:[ccnx-uri], +14:u03:[chunking], +10:u05:[cicn], +10:u06:FD.io,, +57:u07:<https://wiki.fd.io/index.php?title=Cicn&oldid=7191>., +23:u08:Garcia-Luna-Aceves,, +38:u04:draft-mosko-icnrg-ccnxchunking-02,, +14:u06:"Community, +14:u11:[chunking], +10:u13:[cicn], +10:u14:fd.io,, +12:uI0:[],.,"",, +14:u00:[ccnx-uri], +14:u02:[chunking], +10:u04:[cicn], +10:u05:FD.io,, +57:u06:<https://wiki.fd.io/index.php?title=Cicn&oldid=7191>., +10:u07:[dart], +16:u08:Light-Weight, +38:u03:draft-mosko-icnrg-ccnxchunking-02,, +14:u05:"Community, +14:u10:[chunking], +10:u12:[cicn], +10:u13:fd.io,, +57:u14:<https://wiki.fd.io/index.php?title=cicn&oldid=7191>., +7:u22:[ci, +8:u23:[cic, +12:uI2:.,"()",,, +14:u01:[chunking], +10:u03:[cicn], +10:u04:FD.io,, +57:u05:<https://wiki.fd.io/index.php?title=Cicn&oldid=7191>., +10:u06:[dart], +23:u07:Garcia-Luna-Aceves,, +38:u02:draft-mosko-icnrg-ccnxchunking-02,, +14:u04:"Community, +10:u11:[cicn], +10:u12:fd.io,, +57:u13:<https://wiki.fd.io/index.php?title=cicn&oldid=7191>., +10:u14:[dart], +7:u22:FD., +8:u23:FD.i, +12:uI1:.,"()",,, +13:uI2:://../.?., +14:u00:[chunking], +10:u02:[cicn], +10:u03:FD.io,, +57:u04:<https://wiki.fd.io/index.php?title=Cicn&oldid=7191>., +10:u05:[dart], +23:u06:Garcia-Luna-Aceves,, +16:u07:Light-Weight, +15:u08:Networking,, +38:u01:draft-mosko-icnrg-ccnxchunking-02,, +14:u03:"Community, +10:u10:[cicn], +10:u11:fd.io,, +57:u12:<https://wiki.fd.io/index.php?title=cicn&oldid=7191>., +10:u13:[dart], +23:u14:garcia-luna-aceves,, +12:uI0:.,"()",,, +13:uI1:://../.?., +10:u01:[cicn], +10:u02:FD.io,, +57:u03:<https://wiki.fd.io/index.php?title=Cicn&oldid=7191>., +10:u04:[dart], +23:u05:Garcia-Luna-Aceves,, +16:u06:Light-Weight, +38:u00:draft-mosko-icnrg-ccnxchunking-02,, +14:u02:"Community, +10:u10:fd.io,, +57:u11:<https://wiki.fd.io/index.php?title=cicn&oldid=7191>., +10:u12:[dart], +23:u13:garcia-luna-aceves,, +16:u14:light-weight, +7:u22:[da, +8:u23:[dar, +13:uI0:://../.?., +12:uI2:--,..-,", +10:u00:[cicn], +10:u01:FD.io,, +57:u02:<https://wiki.fd.io/index.php?title=Cicn&oldid=7191>., +10:u03:[dart], +23:u04:Garcia-Luna-Aceves,, +16:u05:Light-Weight, +15:u07:Networking,, +43:u08:<https://arxiv.org/pdf/1603.06044.pdf>., +14:u01:"Community, +31:u08:10.1109/ICCNC.2016.7440637,, +57:u10:<https://wiki.fd.io/index.php?title=cicn&oldid=7191>., +10:u11:[dart], +23:u12:garcia-luna-aceves,, +16:u13:light-weight, +12:uI1:--,..-,", +10:u00:FD.io,, +57:u01:<https://wiki.fd.io/index.php?title=Cicn&oldid=7191>., +10:u02:[dart], +23:u03:Garcia-Luna-Aceves,, +16:u04:Light-Weight, +15:u06:Networking,, +20:u08:[eprise-numbers], +14:u00:"Community, +31:u07:10.1109/ICCNC.2016.7440637,, +10:u10:[dart], +23:u11:garcia-luna-aceves,, +16:u12:light-weight, +15:u14:networking,, +7:u22:Lig, +8:u23:Ligh, +12:uI0:--,..-,", +57:u00:<https://wiki.fd.io/index.php?title=Cicn&oldid=7191>., +10:u01:[dart], +23:u02:Garcia-Luna-Aceves,, +16:u03:Light-Weight, +15:u05:Networking,, +43:u07:<https://arxiv.org/pdf/1603.06044.pdf>., +31:u06:10.1109/ICCNC.2016.7440637,, +23:u10:garcia-luna-aceves,, +16:u11:light-weight, +15:u13:networking,, +10:u00:[dart], +23:u01:Garcia-Luna-Aceves,, +16:u02:Light-Weight, +15:u04:Networking,, +43:u06:<https://arxiv.org/pdf/1603.06044.pdf>., +20:u07:[eprise-numbers], +58:u08:<https://www.iana.org/assignments/enterprise-numbers>., +31:u05:10.1109/ICCNC.2016.7440637,, +9:u08:"IANA, +16:u10:light-weight, +15:u12:networking,, +43:u14:<https://arxiv.org/pdf/1603.06044.pdf>., +23:u00:Garcia-Luna-Aceves,, +16:u01:Light-Weight, +15:u03:Networking,, +43:u05:<https://arxiv.org/pdf/1603.06044.pdf>., +20:u06:[eprise-numbers], +31:u04:10.1109/ICCNC.2016.7440637,, +9:u07:"IANA, +15:u11:networking,, +43:u13:<https://arxiv.org/pdf/1603.06044.pdf>., +20:u14:[eprise-numbers], +13:uI2:://.//..., +16:u00:Light-Weight, +15:u02:Networking,, +43:u04:<https://arxiv.org/pdf/1603.06044.pdf>., +20:u05:[eprise-numbers], +58:u07:<https://www.iana.org/assignments/enterprise-numbers>., +31:u03:10.1109/ICCNC.2016.7440637,, +9:u06:"IANA, +15:u10:networking,, +43:u12:<https://arxiv.org/pdf/1603.06044.pdf>., +20:u13:[eprise-numbers], +13:uI1:://.//..., +15:u01:Networking,, +43:u03:<https://arxiv.org/pdf/1603.06044.pdf>., +20:u04:[eprise-numbers], +58:u06:<https://www.iana.org/assignments/enterprise-numbers>., +31:u02:10.1109/ICCNC.2016.7440637,, +9:u05:"IANA, +43:u11:<https://arxiv.org/pdf/1603.06044.pdf>., +20:u12:[eprise-numbers], +58:u14:<https://www.iana.org/assignments/enterprise-numbers>., +7:u22:[ep, +8:u23:[epr, +13:uI0:://.//..., +15:u00:Networking,, +43:u02:<https://arxiv.org/pdf/1603.06044.pdf>., +20:u03:[eprise-numbers], +58:u05:<https://www.iana.org/assignments/enterprise-numbers>., +31:u01:10.1109/ICCNC.2016.7440637,, +9:u04:"IANA, +43:u10:<https://arxiv.org/pdf/1603.06044.pdf>., +20:u11:[eprise-numbers], +58:u13:<https://www.iana.org/assignments/enterprise-numbers>., +43:u01:<https://arxiv.org/pdf/1603.06044.pdf>., +20:u02:[eprise-numbers], +58:u04:<https://www.iana.org/assignments/enterprise-numbers>., +10:u08:[flic], +31:u00:10.1109/ICCNC.2016.7440637,, +9:u03:"IANA, +20:u10:[eprise-numbers], +58:u12:<https://www.iana.org/assignments/enterprise-numbers>., +43:u00:<https://arxiv.org/pdf/1603.06044.pdf>., +20:u01:[eprise-numbers], +58:u03:<https://www.iana.org/assignments/enterprise-numbers>., +9:u02:"IANA, +58:u11:<https://www.iana.org/assignments/enterprise-numbers>., +20:u00:[eprise-numbers], +58:u02:<https://www.iana.org/assignments/enterprise-numbers>., +10:u07:[flic], +12:u08:(FLIC)",, +9:u01:"IANA, +58:u10:<https://www.iana.org/assignments/enterprise-numbers>., +58:u01:<https://www.iana.org/assignments/enterprise-numbers>., +10:u06:[flic], +9:u00:"IANA, +10:u14:[flic], +58:u00:<https://www.iana.org/assignments/enterprise-numbers>., +10:u05:[flic], +12:u07:(FLIC)",, +10:u13:[flic], +13:u14:tschudin,, +10:u04:[flic], +12:u06:(FLIC)",, +10:u12:[flic], +13:u13:tschudin,, +12:u14:(flic)",, +6:u21:[f, +7:u22:[fl, +8:u23:[fli, +10:u03:[flic], +12:u05:(FLIC)",, +10:u11:[flic], +13:u12:tschudin,, +12:u13:(flic)",, +6:u21:Ts, +7:u22:Tsc, +8:u23:Tsch, +10:u02:[flic], +12:u04:(FLIC)",, +9:u08:(IFIP, +10:u10:[flic], +13:u11:tschudin,, +12:u12:(flic)",, +7:u22:(FL, +8:u23:(FLI, +10:u01:[flic], +12:u03:(FLIC)",, +15:u08:Networking), +13:u10:tschudin,, +12:u11:(flic)",, +10:u00:[flic], +12:u02:(FLIC)",, +9:u07:(IFIP, +44:u08:<https://dl.ifip.org/db/conf/networking/, +15:u07:Networking), +41:u08:10.23919/IFIPNetworking.2017.8264861,, +12:u10:(flic)",, +12:u01:(FLIC)",, +9:u06:(IFIP, +15:u06:Networking), +41:u07:10.23919/IFIPNetworking.2017.8264861,, +9:u14:(ifip, +12:u00:(FLIC)",, +9:u05:(IFIP, +44:u07:<https://dl.ifip.org/db/conf/networking/, +9:u08:[ndn], +15:u05:Networking), +41:u06:10.23919/IFIPNetworking.2017.8264861,, +9:u13:(ifip, +9:u04:(IFIP, +44:u06:<https://dl.ifip.org/db/conf/networking/, +9:u08:UCLA,, +15:u04:Networking), +41:u05:10.23919/IFIPNetworking.2017.8264861,, +9:u12:(ifip, +44:u14:<https://dl.ifip.org/db/conf/networking/, +7:u22:(IF, +8:u23:(IFI, +9:u03:(IFIP, +44:u05:<https://dl.ifip.org/db/conf/networking/, +9:u07:[ndn], +33:u08:<https://www.named-data.net>., +15:u03:Networking), +41:u04:10.23919/IFIPNetworking.2017.8264861,, +10:u08:"Named, +9:u11:(ifip, +44:u13:<https://dl.ifip.org/db/conf/networking/, +9:u02:(IFIP, +44:u04:<https://dl.ifip.org/db/conf/networking/, +9:u06:[ndn], +9:u07:UCLA,, +15:u02:Networking), +41:u03:10.23919/IFIPNetworking.2017.8264861,, +10:u07:"Named, +9:u10:(ifip, +44:u12:<https://dl.ifip.org/db/conf/networking/, +9:u14:[ndn], +9:u01:(IFIP, +44:u03:<https://dl.ifip.org/db/conf/networking/, +9:u05:[ndn], +9:u06:UCLA,, +33:u07:<https://www.named-data.net>., +15:u01:Networking), +41:u02:10.23919/IFIPNetworking.2017.8264861,, +10:u06:"Named, +44:u11:<https://dl.ifip.org/db/conf/networking/, +9:u13:[ndn], +9:u14:ucla,, +9:u00:(IFIP, +44:u02:<https://dl.ifip.org/db/conf/networking/, +9:u04:[ndn], +9:u05:UCLA,, +33:u06:<https://www.named-data.net>., +15:u00:Networking), +41:u01:10.23919/IFIPNetworking.2017.8264861,, +10:u05:"Named, +44:u10:<https://dl.ifip.org/db/conf/networking/, +9:u12:[ndn], +9:u13:ucla,, +33:u14:<https://www.named-data.net>., +7:u22:[nd, +8:u23:[ndn, +44:u01:<https://dl.ifip.org/db/conf/networking/, +9:u03:[ndn], +9:u04:UCLA,, +33:u05:<https://www.named-data.net>., +41:u00:10.23919/IFIPNetworking.2017.8264861,, +10:u04:"Named, +9:u11:[ndn], +9:u12:ucla,, +33:u13:<https://www.named-data.net>., +6:u21:UC, +7:u22:UCL, +8:u23:UCLA, +11:uI2:://.-.., +44:u00:<https://dl.ifip.org/db/conf/networking/, +9:u02:[ndn], +9:u03:UCLA,, +33:u04:<https://www.named-data.net>., +10:u03:"Named, +9:u10:[ndn], +9:u11:ucla,, +33:u12:<https://www.named-data.net>., +11:uI1:://.-.., +9:u01:[ndn], +9:u02:UCLA,, +33:u03:<https://www.named-data.net>., +10:u02:"Named, +9:u10:ucla,, +33:u11:<https://www.named-data.net>., +11:uI0:://.-.., +9:u00:[ndn], +9:u01:UCLA,, +33:u02:<https://www.named-data.net>., +49:u08:<https://dx.doi.org/10.1145/1658939.1658941>., +10:u01:"Named, +28:u08:10.1145/1658939.1658941,, +33:u10:<https://www.named-data.net>., +9:u00:UCLA,, +33:u01:<https://www.named-data.net>., +10:u00:"Named, +28:u07:10.1145/1658939.1658941,, +33:u00:<https://www.named-data.net>., +49:u07:<https://dx.doi.org/10.1145/1658939.1658941>., +28:u06:10.1145/1658939.1658941,, +49:u06:<https://dx.doi.org/10.1145/1658939.1658941>., +28:u05:10.1145/1658939.1658941,, +49:u14:<https://dx.doi.org/10.1145/1658939.1658941>., +9:uI2:./.,,, +49:u05:<https://dx.doi.org/10.1145/1658939.1658941>., +28:u04:10.1145/1658939.1658941,, +49:u13:<https://dx.doi.org/10.1145/1658939.1658941>., +9:uI1:./.,,, +14:uI2:://.././.., +49:u04:<https://dx.doi.org/10.1145/1658939.1658941>., +28:u03:10.1145/1658939.1658941,, +49:u12:<https://dx.doi.org/10.1145/1658939.1658941>., +9:uI0:./.,,, +14:uI1:://.././.., +49:u03:<https://dx.doi.org/10.1145/1658939.1658941>., +28:u02:10.1145/1658939.1658941,, +49:u11:<https://dx.doi.org/10.1145/1658939.1658941>., +14:uI0:://.././.., +49:u02:<https://dx.doi.org/10.1145/1658939.1658941>., +28:u01:10.1145/1658939.1658941,, +49:u10:<https://dx.doi.org/10.1145/1658939.1658941>., +49:u01:<https://dx.doi.org/10.1145/1658939.1658941>., +28:u00:10.1145/1658939.1658941,, +49:u00:<https://dx.doi.org/10.1145/1658939.1658941>., +46:u08:<https://www.rfc-editor.org/info/rfc8609>., +21:u08:10.17487/RFC8609,, +15:u08:[selectors], +21:u07:10.17487/RFC8609,, +46:u07:<https://www.rfc-editor.org/info/rfc8609>., +21:u06:10.17487/RFC8609,, +46:u06:<https://www.rfc-editor.org/info/rfc8609>., +15:u07:[selectors], +21:u05:10.17487/RFC8609,, +46:u14:<https://www.rfc-editor.org/info/rfc8609>., +46:u05:<https://www.rfc-editor.org/info/rfc8609>., +15:u06:[selectors], +17:u08:[terminology], +21:u04:10.17487/RFC8609,, +35:u08:draft-mosko-icnrg-selectors-01,, +46:u13:<https://www.rfc-editor.org/info/rfc8609>., +15:u14:[selectors], +46:u04:<https://www.rfc-editor.org/info/rfc8609>., +15:u05:[selectors], +13:u08:Wissingh,, +21:u03:10.17487/RFC8609,, +35:u07:draft-mosko-icnrg-selectors-01,, +46:u12:<https://www.rfc-editor.org/info/rfc8609>., +15:u13:[selectors], +46:u03:<https://www.rfc-editor.org/info/rfc8609>., +15:u04:[selectors], +17:u07:[terminology], +21:u02:10.17487/RFC8609,, +35:u06:draft-mosko-icnrg-selectors-01,, +46:u11:<https://www.rfc-editor.org/info/rfc8609>., +15:u12:[selectors], +6:u21:[s, +7:u22:[se, +8:u23:[sel, +46:u02:<https://www.rfc-editor.org/info/rfc8609>., +15:u03:[selectors], +17:u06:[terminology], +13:u07:Wissingh,, +10:u08:(ICN):, +21:u01:10.17487/RFC8609,, +35:u05:draft-mosko-icnrg-selectors-01,, +46:u10:<https://www.rfc-editor.org/info/rfc8609>., +15:u11:[selectors], +17:u14:[terminology], +46:u01:<https://www.rfc-editor.org/info/rfc8609>., +15:u02:[selectors], +17:u05:[terminology], +13:u06:Wissingh,, +36:u08:draft-irtf-icnrg-terminology-04,, +21:u00:10.17487/RFC8609,, +35:u04:draft-mosko-icnrg-selectors-01,, +7:u08:CCN, +15:u10:[selectors], +17:u13:[terminology], +13:u14:wissingh,, +46:u00:<https://www.rfc-editor.org/info/rfc8609>., +15:u01:[selectors], +17:u04:[terminology], +13:u05:Wissingh,, +10:u07:(ICN):, +11:u08:[trust], +35:u03:draft-mosko-icnrg-selectors-01,, +7:u07:CCN, +17:u12:[terminology], +13:u13:wissingh,, +7:u14:d.,, +6:u21:[t, +7:u22:[te, +8:u23:[ter, +15:u00:[selectors], +17:u03:[terminology], +13:u04:Wissingh,, +10:u06:(ICN):, +36:u07:draft-irtf-icnrg-terminology-04,, +35:u02:draft-mosko-icnrg-selectors-01,, +7:u06:CCN, +17:u11:[terminology], +13:u12:wissingh,, +7:u13:d.,, +10:u14:(icn):, +7:u22:Wis, +8:u23:Wiss, +10:uI2:.,.,"-, +17:u02:[terminology], +13:u03:Wissingh,, +10:u05:(ICN):, +36:u06:draft-irtf-icnrg-terminology-04,, +11:u07:[trust], +35:u01:draft-mosko-icnrg-selectors-01,, +7:u05:CCN, +17:u10:[terminology], +13:u11:wissingh,, +7:u12:d.,, +10:u13:(icn):, +36:u14:draft-irtf-icnrg-terminology-04,, +7:u22:D.,, +7:u23:D.,, +10:uI1:.,.,"-, +17:u01:[terminology], +13:u02:Wissingh,, +10:u04:(ICN):, +36:u05:draft-irtf-icnrg-terminology-04,, +11:u06:[trust], +8:u08:25th, +35:u00:draft-mosko-icnrg-selectors-01,, +7:u04:CCN, +15:u08:Networking:, +13:u10:wissingh,, +7:u11:d.,, +10:u12:(icn):, +36:u13:draft-irtf-icnrg-terminology-04,, +11:u14:[trust], +8:u23:(ICN, +10:uI0:.,.,"-, +17:u00:[terminology], +13:u01:Wissingh,, +10:u03:(ICN):, +36:u04:draft-irtf-icnrg-terminology-04,, +11:u05:[trust], +7:u03:CCN, +15:u07:Networking:, +7:u10:d.,, +10:u11:(icn):, +36:u12:draft-irtf-icnrg-terminology-04,, +11:u13:[trust], +13:u00:Wissingh,, +10:u02:(ICN):, +36:u03:draft-irtf-icnrg-terminology-04,, +11:u04:[trust], +8:u07:25th, +7:u02:CCN, +15:u06:Networking:, +10:u10:(icn):, +36:u11:draft-irtf-icnrg-terminology-04,, +11:u12:[trust], +7:u22:[tr, +8:u23:[tru, +10:u01:(ICN):, +36:u02:draft-irtf-icnrg-terminology-04,, +11:u03:[trust], +8:u06:25th, +7:u01:CCN, +15:u05:Networking:, +36:u10:draft-irtf-icnrg-terminology-04,, +11:u11:[trust], +8:u14:25th, +8:uI2:-:",, +10:u00:(ICN):, +36:u01:draft-irtf-icnrg-terminology-04,, +11:u02:[trust], +8:u05:25th, +7:u00:CCN, +15:u04:Networking:, +11:u10:[trust], +8:u13:25th, +8:uI1:-:",, +36:u00:draft-irtf-icnrg-terminology-04,, +11:u01:[trust], +8:u04:25th, +15:u03:Networking:, +8:u12:25th, +7:u22:25t, +8:u23:25th, +8:uI0:-:",, +12:uI2:(),./..,, +11:u00:[trust], +8:u03:25th, +15:u02:Networking:, +8:u11:25th, +12:uI1:(),./..,, +15:uI2:,://././..., +8:u02:25th, +15:u01:Networking:, +8:u10:25th, +12:uI0:(),./..,, +15:uI1:,://././..., +8:u01:25th, +15:u00:Networking:, +15:uI0:,://././..., +8:u00:25th, +23:u08:marc.mosko@parc.com, +23:u07:marc.mosko@parc.com, +23:u06:marc.mosko@parc.com, +23:u05:marc.mosko@parc.com, +23:u04:marc.mosko@parc.com, +23:u03:marc.mosko@parc.com, +23:u02:marc.mosko@parc.com, +23:u01:marc.mosko@parc.com, +23:u00:marc.mosko@parc.com, +7:u07:VSS, +9:u05:Banks, +7:u06:VSS, +9:u04:Banks, +12:u08:Calabria, +7:u14:vss, +7:u05:VSS, +9:u03:Banks, +12:u07:Calabria, +7:u13:vss, +7:u04:VSS, +9:u02:Banks, +12:u06:Calabria, +7:u12:vss, +6:u21:VS, +7:u22:VSS, +7:u23:VSS, +7:u03:VSS, +9:u01:Banks, +12:u05:Calabria, +11:u08:Czirjak, +7:u11:vss, +7:u02:VSS, +9:u00:Banks, +12:u04:Calabria, +11:u07:Czirjak, +10:u08:Machat, +7:u10:vss, +7:u01:VSS, +12:u03:Calabria, +11:u06:Czirjak, +10:u07:Machat, +7:u00:VSS, +12:u02:Calabria, +11:u05:Czirjak, +10:u06:Machat, +8:u08:2015, +6:u14:r., +12:u01:Calabria, +11:u04:Czirjak, +10:u05:Machat, +8:u07:2015, +15:u08:Methodology, +6:u13:r., +10:u08:Modern, +12:u00:Calabria, +11:u03:Czirjak, +10:u04:Machat, +8:u06:2015, +15:u07:Methodology, +6:u12:r., +6:u21:R., +6:u22:R., +6:u23:R., +11:u02:Czirjak, +10:u03:Machat, +8:u05:2015, +15:u06:Methodology, +6:u11:r., +10:u07:Modern, +11:u01:Czirjak, +10:u02:Machat, +8:u04:2015, +15:u05:Methodology, +15:u08:disruptions, +6:u10:r., +10:u06:Modern, +11:u00:Czirjak, +10:u01:Machat, +8:u03:2015, +15:u04:Methodology, +15:u07:disruptions, +10:u14:modern, +10:u05:Modern, +17:u08:methodologies, +10:u00:Machat, +8:u02:2015, +15:u03:Methodology, +15:u06:disruptions, +11:u08:(ISSU)., +10:u13:modern, +9:u14:plane, +10:u04:Modern, +8:u01:2015, +15:u02:Methodology, +15:u05:disruptions, +11:u07:(ISSU)., +10:u12:modern, +9:u13:plane, +10:u03:Modern, +17:u07:methodologies, +8:u00:2015, +15:u01:Methodology, +15:u04:disruptions, +11:u06:(ISSU)., +10:u11:modern, +9:u12:plane, +10:u02:Modern, +17:u06:methodologies, +15:u00:Methodology, +15:u03:disruptions, +11:u05:(ISSU)., +10:u10:modern, +9:u11:plane, +17:u14:methodologies, +10:u01:Modern, +17:u05:methodologies, +15:u02:disruptions, +11:u04:(ISSU)., +9:u10:plane, +17:u13:methodologies, +7:u22:Upg, +8:u23:Upgr, +10:u00:Modern, +17:u04:methodologies, +15:u01:disruptions, +11:u03:(ISSU)., +17:u12:methodologies, +17:u03:methodologies, +15:u00:disruptions, +11:u02:(ISSU)., +17:u11:methodologies, +17:u02:methodologies, +11:u01:(ISSU)., +17:u10:methodologies, +17:u01:methodologies, +11:u00:(ISSU)., +17:u00:methodologies, +43:u08:http://www.rfc-editor.org/info/rfc7654., +10:u08:Banks,, +43:u07:http://www.rfc-editor.org/info/rfc7654., +43:u06:http://www.rfc-editor.org/info/rfc7654., +10:u07:Banks,, +43:u14:http://www.rfc-editor.org/info/rfc7654., +43:u05:http://www.rfc-editor.org/info/rfc7654., +10:u06:Banks,, +43:u13:http://www.rfc-editor.org/info/rfc7654., +10:u14:banks,, +43:u04:http://www.rfc-editor.org/info/rfc7654., +10:u05:Banks,, +8:u08:7654, +43:u12:http://www.rfc-editor.org/info/rfc7654., +10:u13:banks,, +43:u03:http://www.rfc-editor.org/info/rfc7654., +10:u04:Banks,, +8:u07:7654, +43:u11:http://www.rfc-editor.org/info/rfc7654., +10:u12:banks,, +7:u22:Ban, +8:u23:Bank, +43:u02:http://www.rfc-editor.org/info/rfc7654., +10:u03:Banks,, +8:u06:7654, +43:u10:http://www.rfc-editor.org/info/rfc7654., +10:u11:banks,, +43:u01:http://www.rfc-editor.org/info/rfc7654., +10:u02:Banks,, +8:u05:7654, +10:u10:banks,, +43:u00:http://www.rfc-editor.org/info/rfc7654., +10:u01:Banks,, +8:u04:7654, +10:u00:Banks,, +8:u03:7654, +8:u02:7654, +8:u01:7654, +8:u00:7654, +33:uI2:.,..........................., +33:uI1:.,..........................., +33:uI0:.,..........................., +49:uI2:............................................., +49:uI1:............................................., +54:uI2:.................................................., +49:uI0:............................................., +54:uI1:.................................................., +8:u08:ISSU, +54:uI0:.................................................., +8:u07:ISSU, +12:u08:Pre-ISSU, +8:u06:ISSU, +12:u07:Pre-ISSU, +8:u05:ISSU, +12:u06:Pre-ISSU, +8:u04:ISSU, +12:u05:Pre-ISSU, +13:u08:Post-ISSU, +32:uI2:..-........................., +8:u03:ISSU, +12:u04:Pre-ISSU, +13:u07:Post-ISSU, +32:uI1:..-........................., +8:u02:ISSU, +12:u03:Pre-ISSU, +13:u06:Post-ISSU, +32:uI0:..-........................., +8:u01:ISSU, +12:u02:Pre-ISSU, +13:u05:Post-ISSU, +43:uI2:..-...................................., +8:u00:ISSU, +12:u01:Pre-ISSU, +13:u04:Post-ISSU, +43:uI1:..-...................................., +37:uI2:................................., +12:u00:Pre-ISSU, +13:u03:Post-ISSU, +43:uI0:..-...................................., +37:uI1:................................., +45:uI2:........................................., +13:u02:Post-ISSU, +37:uI0:................................., +45:uI1:........................................., +25:uI2:.:..................., +13:u01:Post-ISSU, +45:uI0:........................................., +25:uI1:.:..................., +13:u00:Post-ISSU, +25:uI0:.:..................., +57:u08:...................................................16, +57:u07:...................................................16, +57:u06:...................................................16, +57:u05:...................................................16, +57:u04:...................................................16, +53:uI2:'................................................, +57:u03:...................................................16, +53:uI1:'................................................, +57:u02:...................................................16, +53:uI0:'................................................, +57:u01:...................................................16, +57:u00:...................................................16, +15:u08:degradation, +15:u07:degradation, +10:u08:sense,, +15:u06:degradation, +15:u05:degradation, +10:u07:sense,, +15:u04:degradation, +10:u08:herein, +10:u06:sense,, +15:u03:degradation, +10:u07:herein, +10:u14:sense,, +10:u05:sense,, +15:u02:degradation, +10:u06:herein, +10:u13:sense,, +10:u04:sense,, +15:u01:degradation, +10:u05:herein, +10:u12:sense,, +10:u03:sense,, +15:u00:degradation, +10:u04:herein, +10:u11:sense,, +10:u02:sense,, +10:u08:-There, +10:u03:herein, +10:u10:sense,, +10:u01:sense,, +10:u02:herein, +10:u00:sense,, +10:u07:-There, +10:u01:herein, +14:u14:successive, +10:u06:-There, +10:u00:herein, +14:u13:successive, +10:u14:-there, +10:u05:-There, +15:u08:maintenance, +14:u12:successive, +10:u13:-there, +10:u04:-There, +10:u08:window, +14:u11:successive, +10:u12:-there, +10:u03:-There, +15:u07:maintenance, +18:u08:-Interruptions, +10:u07:window, +9:u08:risk., +14:u10:successive, +10:u11:-there, +9:uI2:"".,,, +10:u02:-There, +15:u06:maintenance, +10:u06:window, +9:u07:risk., +10:u10:-there, +9:uI1:"".,,, +10:u01:-There, +15:u05:maintenance, +18:u07:-Interruptions, +10:u05:window, +9:u06:risk., +9:uI0:"".,,, +10:u00:-There, +15:u04:maintenance, +18:u06:-Interruptions, +10:u04:window, +9:u05:risk., +18:u14:-interruptions, +15:u03:maintenance, +18:u05:-Interruptions, +16:u08:redundancy)., +10:u03:window, +9:u04:risk., +18:u13:-interruptions, +15:u02:maintenance, +18:u04:-Interruptions, +10:u02:window, +9:u03:risk., +18:u12:-interruptions, +8:u23:-Int, +15:u01:maintenance, +18:u03:-Interruptions, +16:u07:redundancy)., +10:u01:window, +9:u02:risk., +18:u11:-interruptions, +15:u00:maintenance, +18:u02:-Interruptions, +16:u06:redundancy)., +15:u08:perspective, +10:u00:window, +9:u01:risk., +18:u10:-interruptions, +16:u14:redundancy)., +18:u01:-Interruptions, +16:u05:redundancy)., +9:u00:risk., +16:u13:redundancy)., +18:u00:-Interruptions, +16:u04:redundancy)., +15:u07:perspective, +16:u12:redundancy)., +16:u03:redundancy)., +15:u06:perspective, +16:u11:redundancy)., +15:u14:perspective, +16:u02:redundancy)., +15:u05:perspective, +16:u10:redundancy)., +15:u13:perspective, +16:u01:redundancy)., +15:u04:perspective, +11:u08:engines, +15:u12:perspective, +16:u00:redundancy)., +15:u03:perspective, +10:u08:fabric, +9:u08:(line, +15:u11:perspective, +8:u14:issu, +15:u02:perspective, +11:u07:engines, +12:u08:preclude, +9:u07:(line, +9:u08:cards, +15:u10:perspective, +8:u13:issu, +15:u01:perspective, +11:u06:engines, +10:u07:fabric, +9:u06:(line, +9:u07:cards, +8:u12:issu, +11:u14:engines, +8:u23:ISSU, +15:u00:perspective, +11:u05:engines, +10:u06:fabric, +12:u07:preclude, +9:u05:(line, +9:u06:cards, +8:u11:issu, +11:u13:engines, +10:u14:fabric, +11:u04:engines, +10:u05:fabric, +12:u06:preclude, +9:u04:(line, +9:u05:cards, +8:u10:issu, +11:u12:engines, +10:u13:fabric, +12:u14:preclude, +7:u22:eng, +8:u23:engi, +11:u03:engines, +10:u04:fabric, +12:u05:preclude, +9:u03:(line, +9:u04:cards, +11:u11:engines, +10:u12:fabric, +12:u13:preclude, +7:u22:fab, +8:u23:fabr, +11:u02:engines, +10:u03:fabric, +12:u04:preclude, +9:u02:(line, +9:u03:cards, +11:u10:engines, +10:u11:fabric, +12:u12:preclude, +11:u01:engines, +10:u02:fabric, +12:u03:preclude, +9:u01:(line, +9:u02:cards, +10:u10:fabric, +12:u11:preclude, +11:u00:engines, +10:u01:fabric, +12:u02:preclude, +9:u00:(line, +9:u01:cards, +12:u10:preclude, +10:u00:fabric, +12:u01:preclude, +9:u00:cards, +12:u00:preclude, +14:u08:data-plane, +14:u07:data-plane, +15:u08:anticipated, +14:u06:data-plane, +14:u14:data-plane, +14:u05:data-plane, +15:u07:anticipated, +14:u13:data-plane, +14:u04:data-plane, +15:u06:anticipated, +14:u12:data-plane, +15:u14:anticipated, +14:u03:data-plane, +15:u05:anticipated, +14:u11:data-plane, +15:u13:anticipated, +11:u14:readily, +14:u02:data-plane, +15:u04:anticipated, +14:u10:data-plane, +15:u12:anticipated, +11:u13:readily, +14:u01:data-plane, +15:u03:anticipated, +15:u11:anticipated, +11:u12:readily, +14:u00:data-plane, +15:u02:anticipated, +15:u10:anticipated, +11:u11:readily, +15:u01:anticipated, +11:u10:readily, +15:u00:anticipated, +11:u08:planned, +11:u07:planned, +12:u08:firmware, +11:u06:planned, +16:u08:Programmable, +11:u14:planned, +11:u05:planned, +12:u07:firmware, +12:u08:(FPGA))., +9:u08:Logic, +11:u13:planned, +11:u04:planned, +12:u06:firmware, +16:u07:Programmable, +9:u07:Logic, +11:u12:planned, +12:u14:firmware, +11:u03:planned, +12:u05:firmware, +16:u06:Programmable, +12:u07:(FPGA))., +9:u06:Logic, +11:u11:planned, +12:u13:firmware, +16:u14:programmable, +11:u02:planned, +12:u04:firmware, +16:u05:Programmable, +12:u06:(FPGA))., +9:u05:Logic, +11:u10:planned, +12:u12:firmware, +16:u13:programmable, +12:u14:(fpga))., +8:u23:firm, +11:u01:planned, +12:u03:firmware, +16:u04:Programmable, +12:u05:(FPGA))., +9:u04:Logic, +12:u11:firmware, +16:u12:programmable, +12:u13:(fpga))., +8:uI2:())., +11:u00:planned, +12:u02:firmware, +16:u03:Programmable, +12:u04:(FPGA))., +9:u03:Logic, +12:u10:firmware, +16:u11:programmable, +12:u12:(fpga))., +7:u22:(FP, +8:u23:(FPG, +8:uI1:())., +12:u01:firmware, +16:u02:Programmable, +12:u03:(FPGA))., +9:u02:Logic, +16:u10:programmable, +12:u11:(fpga))., +8:uI0:())., +12:u00:firmware, +16:u01:Programmable, +12:u02:(FPGA))., +9:u01:Logic, +12:u10:(fpga))., +16:u00:Programmable, +12:u01:(FPGA))., +9:u00:Logic, +17:u08:intervention., +12:u00:(FPGA))., +15:u08:activities,, +17:u07:intervention., +17:u06:intervention., +15:u07:activities,, +17:u05:intervention., +15:u06:activities,, +17:u04:intervention., +15:u14:activities,, +15:u05:activities,, +17:u03:intervention., +15:u13:activities,, +12:u14:operator, +15:u04:activities,, +17:u02:intervention., +15:u12:activities,, +12:u13:operator, +12:u14:(defined, +15:u03:activities,, +17:u01:intervention., +15:u11:activities,, +12:u12:operator, +12:u13:(defined, +15:u02:activities,, +17:u00:intervention., +15:u10:activities,, +12:u11:operator, +12:u12:(defined, +15:u01:activities,, +12:u10:operator, +12:u11:(defined, +15:u00:activities,, +12:u10:(defined, +9:u08:(BFD), +13:u08:[RFC5880], +9:u07:(BFD), +13:u07:[RFC5880], +9:u06:(BFD), +16:u08:orchestrated, +13:u06:[RFC5880], +9:u14:(bfd), +9:u05:(BFD), +13:u05:[RFC5880], +9:u13:(bfd), +10:uI2:()[])., +9:u04:(BFD), +16:u07:orchestrated, +13:u04:[RFC5880], +9:u12:(bfd), +7:u22:(BF, +8:u23:(BFD, +10:uI1:()[])., +9:u03:(BFD), +16:u06:orchestrated, +13:u03:[RFC5880], +9:u11:(bfd), +16:u14:orchestrated, +10:uI0:()[])., +9:u02:(BFD), +16:u05:orchestrated, +13:u02:[RFC5880], +9:u10:(bfd), +16:u13:orchestrated, +9:u01:(BFD), +16:u04:orchestrated, +12:u08:quantify, +13:u01:[RFC5880], +16:u12:orchestrated, +7:u22:orc, +8:u23:orch, +9:u00:(BFD), +16:u03:orchestrated, +16:u08:perspective), +13:u00:[RFC5880], +16:u11:orchestrated, +12:u14:analysis, +16:u02:orchestrated, +12:u07:quantify, +16:u10:orchestrated, +12:u13:analysis, +16:u01:orchestrated, +12:u06:quantify, +16:u07:perspective), +12:u12:analysis, +12:u14:quantify, +16:u00:orchestrated, +12:u05:quantify, +16:u06:perspective), +12:u11:analysis, +12:u13:quantify, +16:u14:perspective), +12:u04:quantify, +16:u05:perspective), +12:u10:analysis, +12:u12:quantify, +16:u13:perspective), +12:u03:quantify, +16:u04:perspective), +12:u11:quantify, +16:u12:perspective), +12:u02:quantify, +16:u03:perspective), +12:u10:quantify, +16:u11:perspective), +12:u01:quantify, +16:u02:perspective), +14:u08:separation, +16:u10:perspective), +12:u00:quantify, +16:u01:perspective), +16:u00:perspective), +14:u07:separation, +14:u06:separation, +14:u14:separation, +14:u05:separation, +14:u13:separation, +14:u04:separation, +15:u08:downloading, +14:u12:separation, +14:u03:separation, +14:u11:separation, +14:u02:separation, +15:u07:downloading, +14:u10:separation, +14:u01:separation, +15:u06:downloading, +15:u14:downloading, +14:u00:separation, +15:u05:downloading, +13:u08:pertinent, +15:u13:downloading, +15:u04:downloading, +15:u12:downloading, +15:u03:downloading, +13:u07:pertinent, +15:u11:downloading, +15:u02:downloading, +13:u06:pertinent, +15:u10:downloading, +13:u14:pertinent, +15:u01:downloading, +13:u05:pertinent, +13:u13:pertinent, +15:u00:downloading, +13:u04:pertinent, +13:u12:pertinent, +13:u03:pertinent, +13:u11:pertinent, +12:u14:hardware, +13:u02:pertinent, +13:u10:pertinent, +12:u13:hardware, +13:u01:pertinent, +13:u08:verified,, +12:u12:hardware, +13:u14:software., +13:u00:pertinent, +13:u07:verified,, +12:u11:hardware, +13:u13:software., +13:u06:verified,, +13:u08:(ensuring, +12:u10:hardware, +13:u12:software., +13:u05:verified,, +13:u07:(ensuring, +13:u11:software., +13:u04:verified,, +13:u06:(ensuring, +13:u10:software., +13:u03:verified,, +13:u05:(ensuring, +13:u02:verified,, +13:u04:(ensuring, +13:u01:verified,, +13:u03:(ensuring, +13:u00:verified,, +13:u02:(ensuring, +13:u01:(ensuring, +13:u00:(ensuring, +11:u08:standby, +11:u07:standby, +11:u06:standby, +11:u05:standby, +14:u08:downloaded, +11:u04:standby, +11:u03:standby, +13:u08:module(s), +14:u07:downloaded, +11:u02:standby, +13:u07:module(s), +14:u06:downloaded, +11:u01:standby, +13:u06:module(s), +14:u14:downloaded, +14:u05:downloaded, +11:u00:standby, +13:u05:module(s), +14:u13:downloaded, +14:u04:downloaded, +13:u04:module(s), +14:u12:downloaded, +14:u03:downloaded, +13:u03:module(s), +14:u11:downloaded, +14:u02:downloaded, +13:u02:module(s), +14:u10:downloaded, +14:u01:downloaded, +7:u08:DUT, +13:u01:module(s), +14:u00:downloaded, +13:u00:module(s), +10:u08:begins, +7:u07:DUT, +10:u07:begins, +7:u06:DUT, +10:u06:begins, +7:u14:dut, +7:u05:DUT, +10:u05:begins, +7:u13:dut, +7:u04:DUT, +10:u04:begins, +7:u12:dut, +6:u21:DU, +7:u22:DUT, +7:u23:DUT, +7:u03:DUT, +12:u08:"Upgrade, +10:u03:begins, +12:u08:upgraded, +7:u11:dut, +7:u02:DUT, +10:u02:begins, +12:u07:upgraded, +8:u08:Run", +7:u10:dut, +7:u01:DUT, +12:u07:"Upgrade, +10:u01:begins, +12:u06:upgraded, +8:u07:Run", +7:u00:DUT, +12:u06:"Upgrade, +10:u00:begins, +12:u05:upgraded, +8:u06:Run", +12:u14:"upgrade, +12:u05:"Upgrade, +12:u04:upgraded, +8:u05:Run", +12:u13:"upgrade, +7:u22:now, +7:u23:now, +12:u04:"Upgrade, +13:u08:outage(s), +12:u03:upgraded, +8:u04:Run", +12:u12:"upgrade, +6:u21:"U, +7:u22:"Up, +8:u23:"Upg, +12:u03:"Upgrade, +13:u08:observed., +12:u02:upgraded, +8:u03:Run", +12:u11:"upgrade, +8:uI2:"",/, +12:u02:"Upgrade, +13:u07:outage(s), +12:u01:upgraded, +8:u02:Run", +12:u10:"upgrade, +8:uI1:"",/, +12:u01:"Upgrade, +13:u06:outage(s), +13:u07:observed., +12:u00:upgraded, +8:u01:Run", +13:u14:outage(s), +8:uI0:"",/, +12:u00:"Upgrade, +13:u05:outage(s), +13:u06:observed., +8:u00:Run", +13:u13:outage(s), +13:u14:observed., +13:u04:outage(s), +13:u05:observed., +10:u08:stage,, +13:u12:outage(s), +13:u13:observed., +8:u23:outa, +13:u03:outage(s), +13:u04:observed., +13:u11:outage(s), +13:u12:observed., +13:u02:outage(s), +13:u03:observed., +10:u07:stage,, +13:u10:outage(s), +13:u11:observed., +13:u01:outage(s), +13:u02:observed., +10:u06:stage,, +13:u10:observed., +10:u14:stage,, +13:u00:outage(s), +13:u01:observed., +10:u05:stage,, +10:u13:stage,, +13:u00:observed., +10:u04:stage,, +10:u12:stage,, +8:u23:stag, +10:u03:stage,, +10:u11:stage,, +10:u02:stage,, +10:u10:stage,, +10:u01:stage,, +10:u00:stage,, +16:u08:applicable)., +16:u07:applicable)., +13:u08:operator,, +16:u06:applicable)., +13:u07:operator,, +16:u05:applicable)., +13:u06:operator,, +12:u08:Isolated, +16:u04:applicable)., +13:u05:operator,, +10:uI2:,,..,-, +16:u03:applicable)., +13:u04:operator,, +10:uI1:,,..,-, +12:u07:Isolated, +16:u02:applicable)., +13:u03:operator,, +13:u08:reporting, +10:uI0:,,..,-, +12:u06:Isolated, +16:u01:applicable)., +13:u02:operator,, +13:u07:reporting, +12:u14:isolated, +12:u05:Isolated, +16:u00:applicable)., +13:u01:operator,, +13:u06:reporting, +12:u13:isolated, +12:u04:Isolated, +13:u00:operator,, +13:u05:reporting, +12:u12:isolated, +7:u22:Iso, +8:u23:Isol, +12:u03:Isolated, +13:u04:reporting, +10:u08:impact, +12:u11:isolated, +12:u02:Isolated, +13:u03:reporting, +10:u07:impact, +12:u10:isolated, +12:u01:Isolated, +13:u02:reporting, +10:u06:impact, +12:u00:Isolated, +14:u08:production, +13:u01:reporting, +10:u05:impact, +13:u00:reporting, +10:u04:impact, +14:u07:production, +10:u03:impact, +14:u06:production, +10:u02:impact, +12:u08:release,, +14:u14:production, +14:u05:production, +10:u01:impact, +12:u07:release,, +14:u13:production, +14:u04:production, +10:u00:impact, +12:u06:release,, +14:u12:production, +14:u03:production, +12:u05:release,, +14:u11:production, +14:u02:production, +12:u04:release,, +14:u10:production, +14:u01:production, +11:u08:emulate, +12:u03:release,, +12:uI2:(,,,,.)., +14:u00:production, +12:u02:release,, +12:uI1:(,,,,.)., +11:u07:emulate, +12:u01:release,, +16:u08:appropriate,, +12:uI0:(,,,,.)., +11:u06:emulate, +12:u00:release,, +16:u07:appropriate,, +11:u14:emulate, +11:u05:emulate, +10:u08:deploy, +16:u06:appropriate,, +11:u13:emulate, +11:u04:emulate, +16:u05:appropriate,, +11:u12:emulate, +11:u03:emulate, +10:u07:deploy, +16:u04:appropriate,, +11:u11:emulate, +9:uI2:--/.,, +11:u02:emulate, +10:u06:deploy, +16:u03:appropriate,, +11:u10:emulate, +10:u14:deploy, +9:uI1:--/.,, +11:u01:emulate, +10:u05:deploy, +9:u08:such,, +16:u02:appropriate,, +10:u13:deploy, +9:uI0:--/.,, +11:u00:emulate, +10:u04:deploy, +16:u01:appropriate,, +10:u12:deploy, +10:u14:impact, +10:u03:deploy, +9:u07:such,, +16:u00:appropriate,, +10:u11:deploy, +10:u13:impact, +10:u02:deploy, +9:u06:such,, +10:u10:deploy, +10:u12:impact, +9:u14:such,, +10:u01:deploy, +9:u05:such,, +17:u08:control-plane, +10:u11:impact, +9:u13:such,, +11:u14:advised, +10:u00:deploy, +9:u04:such,, +16:u08:interfaces),, +10:u10:impact, +9:u12:such,, +11:u13:advised, +9:u03:such,, +17:u07:control-plane, +9:u11:such,, +11:u12:advised, +9:u02:such,, +17:u06:control-plane, +16:u07:interfaces),, +12:u08:applied., +9:u10:such,, +11:u11:advised, +17:u14:control-plane, +9:u01:such,, +17:u05:control-plane, +16:u06:interfaces),, +12:u07:applied., +11:u10:advised, +17:u13:control-plane, +16:u14:interfaces),, +9:u00:such,, +17:u04:control-plane, +16:u05:interfaces),, +12:u06:applied., +17:u12:control-plane, +16:u13:interfaces),, +17:u03:control-plane, +16:u04:interfaces),, +12:u05:applied., +17:u11:control-plane, +16:u12:interfaces),, +17:u02:control-plane, +16:u03:interfaces),, +12:u04:applied., +17:u10:control-plane, +16:u11:interfaces),, +17:u01:control-plane, +16:u02:interfaces),, +12:u03:applied., +16:u10:interfaces),, +17:u00:control-plane, +16:u01:interfaces),, +12:u02:applied., +16:u00:interfaces),, +12:u01:applied., +12:u00:applied., +16:u08:methodology., +16:u07:methodology., +16:u06:methodology., +16:u14:methodology., +16:u05:methodology., +16:u13:methodology., +16:u04:methodology., +13:u08:developed, +16:u12:methodology., +16:u03:methodology., +16:u11:methodology., +16:u02:methodology., +13:u07:developed, +13:u08:granular,, +16:u10:methodology., +16:u01:methodology., +13:u06:developed, +13:u14:developed, +16:u00:methodology., +13:u05:developed, +13:u07:granular,, +10:u08:timing, +14:u08:Sufficient, +13:u13:developed, +13:u04:developed, +13:u06:granular,, +14:u07:Sufficient, +18:u08:extrapolations, +13:u12:developed, +13:u14:granular,, +8:u23:deve, +13:u03:developed, +13:u05:granular,, +10:u07:timing, +14:u06:Sufficient, +18:u07:extrapolations, +7:u08:100, +13:u11:developed, +13:u13:granular,, +12:u14:traffic., +13:u02:developed, +13:u04:granular,, +10:u06:timing, +14:u05:Sufficient, +18:u06:extrapolations, +7:u07:100, +13:u10:developed, +13:u12:granular,, +12:u13:traffic., +10:u14:timing, +13:u01:developed, +13:u03:granular,, +10:u05:timing, +14:u04:Sufficient, +18:u05:extrapolations, +7:u06:100, +13:u11:granular,, +12:u12:traffic., +10:u13:timing, +13:u00:developed, +13:u02:granular,, +10:u04:timing, +14:u03:Sufficient, +18:u04:extrapolations, +7:u05:100, +13:u10:granular,, +12:u11:traffic., +10:u12:timing, +8:u23:timi, +13:u01:granular,, +10:u03:timing, +14:u02:Sufficient, +18:u03:extrapolations, +7:u04:100, +9:u08:Base), +12:u10:traffic., +10:u11:timing, +13:u00:granular,, +10:u02:timing, +14:u01:Sufficient, +18:u02:extrapolations, +7:u03:100, +9:u07:Base), +10:u10:timing, +10:u01:timing, +14:u00:Sufficient, +18:u01:extrapolations, +7:u02:100, +9:u06:Base), +10:u00:timing, +18:u00:extrapolations, +7:u01:100, +9:u05:Base), +9:u08:mixed, +7:u00:100, +9:u04:Base), +9:u07:mixed, +9:u03:Base), +9:u06:mixed, +9:u02:Base), +9:u05:mixed, +9:u01:Base), +9:u04:mixed, +9:u00:Base), +9:u03:mixed, +9:u02:mixed, +9:u01:mixed, +9:u00:mixed, +7:u08:bed, +7:u07:bed, +7:u06:bed, +7:u05:bed, +7:u04:bed, +7:u03:bed, +13:u08:detecting, +7:u02:bed, +14:u14:preferably, +7:u01:bed, +14:u13:preferably, +13:u07:detecting, +12:u08:exercise, +7:u00:bed, +14:u12:preferably, +13:u06:detecting, +14:u11:preferably, +13:u14:detecting, +13:u05:detecting, +12:u07:exercise, +11:u08:impairs, +14:u10:preferably, +13:u13:detecting, +13:u04:detecting, +12:u06:exercise, +13:u12:detecting, +12:u14:exercise, +13:u03:detecting, +12:u05:exercise, +11:u07:impairs, +13:u11:detecting, +12:u13:exercise, +13:u02:detecting, +12:u04:exercise, +11:u06:impairs, +13:u10:detecting, +12:u12:exercise, +11:u14:impairs, +8:u23:exer, +13:u01:detecting, +12:u03:exercise, +11:u05:impairs, +12:u11:exercise, +11:u13:impairs, +13:u00:detecting, +12:u02:exercise, +11:u04:impairs, +12:u10:exercise, +11:u12:impairs, +12:u01:exercise, +11:u03:impairs, +11:u11:impairs, +12:u00:exercise, +11:u02:impairs, +11:u10:impairs, +11:u01:impairs, +11:u00:impairs, +12:u08:maximize, +12:u07:maximize, +12:u06:maximize, +12:u14:maximize, +12:u05:maximize, +12:u13:maximize, +12:u04:maximize, +12:u12:maximize, +12:u03:maximize, +12:u11:maximize, +12:u02:maximize, +12:u10:maximize, +15:u14:methodology, +12:u01:maximize, +15:u13:methodology, +12:u00:maximize, +15:u12:methodology, +15:u11:methodology, +15:u10:methodology, +8:u08:Stop, +13:u08:Routing),, +8:u07:Stop, +14:u08:necessary., +13:u07:Routing),, +7:u08:RPs, +11:uI2:(..,,)., +8:u06:Stop, +13:u06:Routing),, +7:u07:RPs, +11:uI1:(..,,)., +8:uI2:.,(-, +8:u05:Stop, +14:u07:necessary., +13:u05:Routing),, +7:u06:RPs, +10:u08:Gather, +11:uI0:(..,,)., +8:uI1:.,(-, +10:uI2:),"";,, +8:u04:Stop, +14:u06:necessary., +13:u04:Routing),, +7:u05:RPs, +10:u07:Gather, +14:u14:necessary., +8:u23:Stop, +8:uI0:.,(-, +10:uI1:),"";,, +8:u03:Stop, +14:u05:necessary., +13:u03:Routing),, +7:u04:RPs, +10:u06:Gather, +14:u13:necessary., +10:uI0:),"";,, +8:u02:Stop, +14:u04:necessary., +15:u08:performed)., +13:u02:Routing),, +7:u03:RPs, +10:u05:Gather, +14:u12:necessary., +8:u01:Stop, +14:u03:necessary., +13:u01:Routing),, +7:u02:RPs, +10:u04:Gather, +14:u11:necessary., +8:u00:Stop, +14:u02:necessary., +15:u07:performed)., +8:u08:deem, +13:u00:Routing),, +7:u01:RPs, +10:u03:Gather, +14:u10:necessary., +9:uI2:.""(,, +14:u01:necessary., +15:u06:performed)., +7:u00:RPs, +10:u02:Gather, +15:u14:performed)., +9:uI1:.""(,, +14:u00:necessary., +15:u05:performed)., +8:u07:deem, +10:u01:Gather, +15:u13:performed)., +9:uI0:.""(,, +15:u04:performed)., +8:u06:deem, +10:u00:Gather, +15:u12:performed)., +8:u14:deem, +15:u03:performed)., +8:u05:deem, +13:u08:Establish, +15:u11:performed)., +8:u13:deem, +15:u02:performed)., +8:u04:deem, +13:u07:Establish, +15:u10:performed)., +8:u12:deem, +7:u22:dee, +8:u23:deem, +15:u01:performed)., +8:u03:deem, +13:u06:Establish, +8:u11:deem, +15:u00:performed)., +8:u02:deem, +13:u05:Establish, +8:u10:deem, +8:u01:deem, +13:u04:Establish, +10:u14:levels, +8:u00:deem, +13:u03:Establish, +10:u13:levels, +13:u02:Establish, +10:u12:levels, +13:u01:Establish, +10:u11:levels, +13:u00:Establish, +10:u10:levels, +10:u08:Clear,, +10:u07:Clear,, +10:u06:Clear,, +10:u05:Clear,, +11:u08:polling, +10:u04:Clear,, +11:u07:polling, +10:u03:Clear,, +11:u06:polling, +9:u08:Apply, +10:u02:Clear,, +11:u05:polling, +9:u07:Apply, +10:u01:Clear,, +11:u04:polling, +9:u06:Apply, +12:u08:Document, +10:u00:Clear,, +11:u03:polling, +9:u05:Apply, +12:u07:Document, +11:u02:polling, +9:u04:Apply, +12:u06:Document, +11:u01:polling, +9:u03:Apply, +12:u05:Document, +12:u08:volumes,, +13:u08:utilizing, +11:u00:polling, +9:u02:Apply, +12:u04:Document, +12:u07:volumes,, +9:u01:Apply, +12:u03:Document, +12:u06:volumes,, +13:u07:utilizing, +9:u00:Apply, +12:u02:Document, +12:u05:volumes,, +13:u06:utilizing, +12:u01:Document, +12:u04:volumes,, +11:u08:install, +13:u14:utilizing, +13:u05:utilizing, +12:u00:Document, +12:u03:volumes,, +11:u07:install, +13:u13:utilizing, +13:u04:utilizing, +12:u02:volumes,, +11:u06:install, +13:u12:utilizing, +13:uI2:(..,,,,.,, +13:u03:utilizing, +12:u01:volumes,, +11:u05:install, +7:u08:NTP, +13:u11:utilizing, +13:uI1:(..,,,,.,, +13:u02:utilizing, +9:u08:(CLI), +12:u00:volumes,, +11:u04:install, +7:u07:NTP, +13:u10:utilizing, +13:uI0:(..,,,,.,, +13:u01:utilizing, +11:u08:Respond, +11:u03:install, +7:u06:NTP, +11:u08:prompts, +13:u00:utilizing, +9:u07:(CLI), +11:u02:install, +7:u05:NTP, +11:u07:prompts, +9:u06:(CLI), +11:u07:Respond, +11:u01:install, +7:u04:NTP, +11:u06:prompts, +11:u08:Monitor, +9:u14:(cli), +9:u05:(CLI), +11:u06:Respond, +11:u00:install, +7:u03:NTP, +11:u05:prompts, +11:u07:Monitor, +9:u13:(cli), +9:u04:(CLI), +11:u05:Respond, +7:u02:NTP, +11:u04:prompts, +11:u06:Monitor, +9:u12:(cli), +8:u23:(CLI, +9:u03:(CLI), +11:u04:Respond, +7:u01:NTP, +11:u03:prompts, +11:u05:Monitor, +9:u11:(cli), +9:u02:(CLI), +11:u03:Respond, +7:u00:NTP, +11:u02:prompts, +11:u04:Monitor, +9:u10:(cli), +9:u14:code,, +9:u01:(CLI), +11:u02:Respond, +11:u01:prompts, +11:u03:Monitor, +9:u13:code,, +9:u00:(CLI), +11:u01:Respond, +14:u08:unexpected, +11:u00:prompts, +11:u02:Monitor, +9:u12:code,, +11:u00:Respond, +11:u01:Monitor, +9:u11:code,, +14:u07:unexpected, +11:u00:Monitor, +9:u10:code,, +14:u06:unexpected, +14:u14:unexpected, +14:u05:unexpected, +14:u08:discretely, +14:u13:unexpected, +14:u04:unexpected, +14:u07:discretely, +14:u12:unexpected, +14:u03:unexpected, +14:u06:discretely, +14:u11:unexpected, +14:u02:unexpected, +14:u05:discretely, +14:u10:unexpected, +14:u01:unexpected, +8:u08:DUT., +14:u04:discretely, +14:u00:unexpected, +14:u03:discretely, +8:u07:DUT., +14:u02:discretely, +15:u14:initializes, +8:u06:DUT., +14:u01:discretely, +15:u13:initializes, +8:u14:dut., +8:u05:DUT., +14:u00:discretely, +15:u12:initializes, +8:u13:dut., +8:u04:DUT., +15:u11:initializes, +8:u12:dut., +8:u23:DUT., +8:u03:DUT., +15:u10:initializes, +8:u11:dut., +8:u02:DUT., +8:u10:dut., +8:u01:DUT., +8:u00:DUT., +8:u08:card, +8:u07:card, +14:u08:generators, +8:u06:card, +14:u07:generators, +9:u14:(line, +10:u08:"Total, +8:u05:card, +14:u06:generators, +9:u13:(line, +11:uI2:(,-,.)., +13:u08:duration,, +8:u04:card, +14:u05:generators, +9:u12:(line, +13:u14:interval., +7:u22:(li, +8:u23:(lin, +11:uI1:(,-,.)., +10:u07:"Total, +8:u03:card, +14:u04:generators, +9:u11:(line, +13:u13:interval., +11:uI0:(,-,.)., +10:u06:"Total, +13:u07:duration,, +8:u02:card, +14:u03:generators, +14:u08:calculated, +9:u10:(line, +13:u12:interval., +10:u14:"total, +10:u05:"Total, +13:u06:duration,, +18:u08:milliseconds.), +8:u01:card, +14:u02:generators, +14:u07:calculated, +13:u11:interval., +10:u13:"total, +13:u14:duration,, +10:u04:"Total, +13:u05:duration,, +8:u00:card, +14:u01:generators, +14:u06:calculated, +13:u10:interval., +10:u12:"total, +13:u13:duration,, +7:u22:"To, +8:u23:"Tot, +10:uI2:,"".(,, +10:u03:"Total, +13:u04:duration,, +18:u07:milliseconds.), +14:u00:generators, +14:u05:calculated, +10:u11:"total, +13:u12:duration,, +10:uI1:,"".(,, +9:uI2:(/)*., +10:u02:"Total, +13:u03:duration,, +18:u06:milliseconds.), +14:u04:calculated, +10:u10:"total, +13:u11:duration,, +18:u14:milliseconds.), +10:uI0:,"".(,, +9:uI1:(/)*., +10:u01:"Total, +13:u02:duration,, +18:u05:milliseconds.), +14:u03:calculated, +14:u08:statistics, +13:u10:duration,, +18:u13:milliseconds.), +9:uI0:(/)*., +10:u00:"Total, +13:u01:duration,, +18:u04:milliseconds.), +14:u02:calculated, +14:u07:statistics, +18:u12:milliseconds.), +13:u00:duration,, +18:u03:milliseconds.), +14:u01:calculated, +14:u06:statistics, +14:u08:baselined), +18:u11:milliseconds.), +18:u02:milliseconds.), +14:u00:calculated, +14:u05:statistics, +14:u07:baselined), +18:u10:milliseconds.), +18:u01:milliseconds.), +14:u04:statistics, +14:u06:baselined), +18:u00:milliseconds.), +14:u03:statistics, +14:u05:baselined), +14:u02:statistics, +14:u04:baselined), +11:u08:Examine, +14:u01:statistics, +14:u03:baselined), +14:u00:statistics, +14:u02:baselined), +11:u07:Examine, +14:u01:baselined), +11:u06:Examine, +14:u00:baselined), +11:u05:Examine, +14:u08:Exhaustive, +11:u04:Examine, +14:u07:Exhaustive, +11:u03:Examine, +14:u06:Exhaustive, +10:u08:assess, +11:u02:Examine, +14:u05:Exhaustive, +10:u07:assess, +11:u01:Examine, +14:u04:Exhaustive, +10:u06:assess, +11:u00:Examine, +14:u03:Exhaustive, +10:u05:assess, +13:u08:detected., +14:u02:Exhaustive, +10:u04:assess, +14:u01:Exhaustive, +10:u03:assess, +13:u07:detected., +14:u00:Exhaustive, +10:u02:assess, +13:u06:detected., +10:u01:assess, +13:u14:detected., +13:u05:detected., +10:u00:assess, +13:u13:detected., +13:u04:detected., +13:u12:detected., +13:u03:detected., +13:u11:detected., +13:u02:detected., +13:u10:detected., +13:u01:detected., +13:u00:detected., +9:u08:flap., +10:u14:routes, +10:u08:tester, +9:u07:flap., +10:u13:routes, +10:uI2:''''.,, +9:u06:flap., +10:u12:routes, +10:uI1:''''.,, +10:u07:tester, +9:u05:flap., +10:u11:routes, +10:uI0:''''.,, +10:u06:tester, +9:u04:flap., +10:u10:routes, +10:u14:tester, +10:u05:tester, +9:u03:flap., +10:u08:stress, +10:u13:tester, +10:u04:tester, +9:u02:flap., +10:u07:stress, +13:u08:leveraged, +10:u12:tester, +10:u03:tester, +9:u01:flap., +10:u06:stress, +13:u07:leveraged, +10:u11:tester, +10:u02:tester, +9:u00:flap., +10:u05:stress, +13:u06:leveraged, +10:u10:tester, +10:u01:tester, +13:u08:exercise., +10:u04:stress, +13:u05:leveraged, +13:u08:adversely, +10:u00:tester, +17:u08:recomputation, +10:u03:stress, +13:u04:leveraged, +13:u07:adversely, +9:uI2:,'-'-, +13:u07:exercise., +10:u02:stress, +13:u03:leveraged, +13:u06:adversely, +9:uI1:,'-'-, +13:u06:exercise., +17:u07:recomputation, +10:u01:stress, +13:u02:leveraged, +13:u05:adversely, +13:u08:perceived, +13:u14:exercise., +9:uI0:,'-'-, +13:u05:exercise., +17:u06:recomputation, +10:u00:stress, +13:u01:leveraged, +13:u04:adversely, +13:u07:perceived, +13:u13:exercise., +17:u14:recomputation, +13:u04:exercise., +17:u05:recomputation, +12:u08:harness., +13:u00:leveraged, +13:u03:adversely, +13:u06:perceived, +13:u12:exercise., +17:u13:recomputation, +13:u03:exercise., +17:u04:recomputation, +13:u02:adversely, +13:u05:perceived, +13:u11:exercise., +17:u12:recomputation, +13:u02:exercise., +17:u03:recomputation, +12:u07:harness., +13:u01:adversely, +13:u04:perceived, +13:u10:exercise., +17:u11:recomputation, +13:u01:exercise., +17:u02:recomputation, +12:u06:harness., +11:u08:aborted, +13:u00:adversely, +13:u03:perceived, +17:u10:recomputation, +12:u14:harness., +13:u00:exercise., +17:u01:recomputation, +12:u05:harness., +13:u02:perceived, +12:u13:harness., +17:u00:recomputation, +12:u04:harness., +11:u07:aborted, +12:u08:aborted., +13:u01:perceived, +12:u12:harness., +8:u23:harn, +12:u03:harness., +11:u06:aborted, +19:u08:recommendation,, +13:u00:perceived, +12:u11:harness., +11:u14:aborted, +12:u02:harness., +11:u05:aborted, +12:u07:aborted., +13:u08:Download", +12:u10:harness., +11:u13:aborted, +12:u01:harness., +11:u04:aborted, +12:u06:aborted., +19:u07:recommendation,, +11:u12:aborted, +12:u14:aborted., +8:u23:abor, +12:u00:harness., +11:u03:aborted, +12:u05:aborted., +19:u06:recommendation,, +13:u07:Download", +11:u11:aborted, +12:u13:aborted., +19:u14:recommendation,, +11:u02:aborted, +12:u04:aborted., +19:u05:recommendation,, +13:u06:Download", +11:u10:aborted, +12:u12:aborted., +19:u13:recommendation,, +13:u14:download", +11:u01:aborted, +12:u03:aborted., +19:u04:recommendation,, +13:u05:Download", +12:u11:aborted., +19:u12:recommendation,, +13:u13:download", +8:uI2:""",, +11:u00:aborted, +12:u02:aborted., +19:u03:recommendation,, +13:u04:Download", +12:u10:aborted., +19:u11:recommendation,, +13:u12:download", +7:u22:Dow, +8:u23:Down, +8:uI1:""",, +12:u01:aborted., +19:u02:recommendation,, +13:u03:Download", +19:u10:recommendation,, +13:u11:download", +8:uI0:""",, +12:u00:aborted., +19:u01:recommendation,, +13:u02:Download", +13:u10:download", +19:u00:recommendation,, +13:u01:Download", +13:u00:Download", +13:u14:verified,, +13:u13:verified,, +13:u12:verified,, +13:u11:verified,, +13:u10:verified,, +6:u08:T1, +15:u08:Upgrade/Run, +13:u14:reporting, +6:u07:T1, +6:u08:T2, +13:u13:reporting, +6:u06:T1, +15:u07:Upgrade/Run, +13:u12:reporting, +6:u14:t1, +6:u05:T1, +15:u06:Upgrade/Run, +6:u07:T2, +14:u08:TPL_frames, +13:u11:reporting, +6:u13:t1, +15:u14:upgrade/run, +6:u04:T1, +15:u05:Upgrade/Run, +6:u06:T2, +13:u10:reporting, +6:u12:t1, +15:u13:upgrade/run, +6:u14:t2, +6:u21:T1, +6:u22:T1, +6:u23:T1, +6:u03:T1, +15:u04:Upgrade/Run, +6:u05:T2, +14:u07:TPL_frames, +12:u08:TPL_time, +6:u11:t1, +15:u12:upgrade/run, +6:u13:t2, +6:u02:T1, +15:u03:Upgrade/Run, +6:u04:T2, +14:u06:TPL_frames, +6:u10:t1, +15:u11:upgrade/run, +6:u12:t2, +14:u14:tpl_frames, +6:u21:T2, +6:u22:T2, +6:u23:T2, +6:u01:T1, +15:u02:Upgrade/Run, +6:u03:T2, +14:u05:TPL_frames, +12:u07:TPL_time, +6:u08:T3, +16:u08:Housekeeping, +15:u10:upgrade/run, +6:u11:t2, +14:u13:tpl_frames, +6:u00:T1, +15:u01:Upgrade/Run, +6:u02:T2, +14:u04:TPL_frames, +12:u06:TPL_time, +9:u08:(Time, +16:u07:Housekeeping, +6:u10:t2, +14:u12:tpl_frames, +12:u14:tpl_time, +6:u21:TP, +7:u22:TPL, +8:u23:TPL_, +15:u00:Upgrade/Run, +6:u01:T2, +14:u03:TPL_frames, +12:u05:TPL_time, +6:u07:T3, +13:u08:restored), +16:u06:Housekeeping, +14:u11:tpl_frames, +12:u13:tpl_time, +6:u00:T2, +14:u02:TPL_frames, +12:u04:TPL_time, +6:u06:T3, +9:u07:(Time, +16:u05:Housekeeping, +14:u10:tpl_frames, +12:u12:tpl_time, +6:u14:t3, +14:u01:TPL_frames, +12:u03:TPL_time, +6:u05:T3, +9:u06:(Time, +13:u07:restored), +6:u08:T4, +16:u04:Housekeeping, +12:u11:tpl_time, +6:u13:t3, +9:u14:(time, +14:u00:TPL_frames, +12:u02:TPL_time, +6:u04:T3, +9:u05:(Time, +13:u06:restored), +16:u03:Housekeeping, +8:u08:(sum, +12:u10:tpl_time, +6:u12:t3, +9:u13:(time, +13:u14:restored), +6:u21:T3, +6:u22:T3, +6:u23:T3, +12:u01:TPL_time, +6:u03:T3, +9:u04:(Time, +13:u05:restored), +6:u07:T4, +8:u08:-DUT, +16:u02:Housekeeping, +8:u07:(sum, +6:u11:t3, +9:u12:(time, +13:u13:restored), +7:u22:(Ti, +8:u23:(Tim, +12:u00:TPL_time, +6:u02:T3, +9:u03:(Time, +13:u04:restored), +6:u06:T4, +9:u08:-Test, +16:u01:Housekeeping, +8:u06:(sum, +6:u10:t3, +9:u11:(time, +13:u12:restored), +6:u14:t4, +6:u01:T3, +9:u02:(Time, +13:u03:restored), +6:u05:T4, +8:u07:-DUT, +16:u00:Housekeeping, +8:u05:(sum, +9:u10:(time, +13:u11:restored), +6:u13:t4, +6:u00:T3, +9:u01:(Time, +13:u02:restored), +6:u04:T4, +8:u06:-DUT, +9:u07:-Test, +9:u08:-Load, +8:u04:(sum, +13:u10:restored), +6:u12:t4, +8:u14:-dut, +6:u21:T4, +6:u22:T4, +6:u23:T4, +9:u00:(Time, +13:u01:restored), +6:u03:T4, +8:u05:-DUT, +9:u06:-Test, +8:u03:(sum, +6:u11:t4, +8:u13:-dut, +9:u14:-test, +13:u00:restored), +6:u02:T4, +8:u04:-DUT, +9:u05:-Test, +9:u07:-Load, +9:u08:-Time, +8:u02:(sum, +6:u10:t4, +8:u12:-dut, +9:u13:-test, +6:u21:-D, +7:u22:-DU, +8:u23:-DUT, +6:u01:T4, +8:u03:-DUT, +9:u04:-Test, +9:u06:-Load, +14:u08:-Anomalies, +8:u01:(sum, +8:u11:-dut, +9:u12:-test, +9:u14:-load, +7:u22:-Te, +8:u23:-Tes, +6:u00:T4, +8:u02:-DUT, +9:u03:-Test, +9:u05:-Load, +9:u07:-Time, +8:u00:(sum, +12:u08:Observed, +8:u10:-dut, +9:u11:-test, +9:u13:-load, +8:u01:-DUT, +9:u02:-Test, +9:u04:-Load, +9:u06:-Time, +14:u07:-Anomalies, +12:u07:Observed, +9:u10:-test, +9:u12:-load, +9:u14:-time, +6:u21:-L, +7:u22:-Lo, +8:u23:-Loa, +8:u00:-DUT, +9:u01:-Test, +9:u03:-Load, +9:u05:-Time, +14:u06:-Anomalies, +12:u06:Observed, +9:u11:-load, +9:u13:-time, +14:u14:-anomalies, +9:u00:-Test, +9:u02:-Load, +9:u04:-Time, +14:u05:-Anomalies, +12:u05:Observed, +9:u10:-load, +9:u12:-time, +14:u13:-anomalies, +7:u22:-Ti, +8:u23:-Tim, +9:u01:-Load, +9:u03:-Time, +14:u04:-Anomalies, +12:u04:Observed, +9:u11:-time, +14:u12:-anomalies, +7:u22:-An, +8:u23:-Ano, +9:u00:-Load, +9:u02:-Time, +14:u03:-Anomalies, +12:u03:Observed, +9:u10:-time, +14:u11:-anomalies, +9:u01:-Time, +14:u02:-Anomalies, +12:u02:Observed, +14:u10:-anomalies, +9:u00:-Time, +14:u01:-Anomalies, +12:u01:Observed, +14:u00:-Anomalies, +12:u00:Observed, +9:u08:Units, +67:u08:---------------------------------------------------------------, +12:u14:outlined, +9:u07:Units, +12:u13:outlined, +9:u06:Units, +67:u07:---------------------------------------------------------------, +10:u08:Frames, +12:u12:outlined, +8:u23:outl, +9:u05:Units, +67:u06:---------------------------------------------------------------, +14:u08:Disruption, +12:u11:outlined, +67:u14:---------------------------------------------------------------, +9:u04:Units, +67:u05:---------------------------------------------------------------, +10:u07:Frames, +13:u08:(average), +12:u10:outlined, +67:u13:---------------------------------------------------------------, +9:u03:Units, +67:u04:---------------------------------------------------------------, +10:u06:Frames, +14:u07:Disruption, +10:u08:Impact, +13:u07:(average), +67:u12:---------------------------------------------------------------, +10:u14:frames, +9:u02:Units, +67:u03:---------------------------------------------------------------, +10:u05:Frames, +14:u06:Disruption, +16:u08:Milliseconds, +13:u06:(average), +67:u11:---------------------------------------------------------------, +10:u13:frames, +14:u14:disruption, +9:u01:Units, +67:u02:---------------------------------------------------------------, +10:u04:Frames, +14:u05:Disruption, +10:u07:Impact, +13:u05:(average), +67:u10:---------------------------------------------------------------, +10:u12:frames, +14:u13:disruption, +9:u00:Units, +67:u01:---------------------------------------------------------------, +10:u03:Frames, +14:u04:Disruption, +10:u06:Impact, +16:u07:Milliseconds, +11:u08:Integer, +13:u04:(average), +10:u11:frames, +14:u12:disruption, +8:u23:Disr, +67:u00:---------------------------------------------------------------, +10:u02:Frames, +14:u03:Disruption, +10:u05:Impact, +16:u06:Milliseconds, +13:u08:Protocols, +13:u03:(average), +10:u10:frames, +14:u11:disruption, +10:u01:Frames, +14:u02:Disruption, +10:u04:Impact, +16:u05:Milliseconds, +11:u07:Integer, +9:u08:IPv4,, +13:u02:(average), +14:u10:disruption, +8:u23:Impa, +10:u00:Frames, +14:u01:Disruption, +10:u03:Impact, +16:u04:Milliseconds, +11:u06:Integer, +13:u07:Protocols, +9:u08:Frame, +13:u01:(average), +9:u08:IPv6,, +7:u22:Mil, +8:u23:Mill, +14:u00:Disruption, +10:u02:Impact, +16:u03:Milliseconds, +11:u05:Integer, +13:u06:Protocols, +9:u07:IPv4,, +10:u08:Octets, +13:u00:(average), +9:u07:IPv6,, +8:u08:Size, +10:u01:Impact, +16:u02:Milliseconds, +11:u04:Integer, +13:u05:Protocols, +9:u06:IPv4,, +9:u07:Frame, +8:u08:Port, +9:u06:IPv6,, +8:u07:Size, +9:u14:ipv4,, +10:u00:Impact, +16:u01:Milliseconds, +11:u03:Integer, +13:u04:Protocols, +9:u05:IPv4,, +9:u06:Frame, +10:u07:Octets, +9:u05:IPv6,, +8:u06:Size, +9:u13:ipv4,, +16:u00:Milliseconds, +11:u02:Integer, +13:u03:Protocols, +9:u04:IPv4,, +9:u05:Frame, +10:u06:Octets, +8:u07:Port, +9:u04:IPv6,, +8:u05:Size, +11:u08:Gigabit, +9:u12:ipv4,, +10:u14:octets, +11:u01:Integer, +13:u02:Protocols, +9:u03:IPv4,, +9:u04:Frame, +10:u05:Octets, +8:u06:Port, +9:u03:IPv6,, +8:u04:Size, +11:u07:Gigabit, +9:u11:ipv4,, +10:u13:octets, +11:u00:Integer, +13:u01:Protocols, +9:u02:IPv4,, +9:u03:Frame, +10:u04:Octets, +8:u05:Port, +9:u02:IPv6,, +8:u03:Size, +11:u06:Gigabit, +9:u08:Speed, +9:u10:ipv4,, +10:u12:octets, +8:u23:Octe, +13:u00:Protocols, +9:u01:IPv4,, +9:u02:Frame, +10:u03:Octets, +8:u04:Port, +9:u01:IPv6,, +8:u02:Size, +11:u05:Gigabit, +9:u07:Speed, +9:u08:Gbps,, +10:u11:octets, +9:u00:IPv4,, +9:u01:Frame, +10:u02:Octets, +8:u03:Port, +9:u00:IPv6,, +8:u01:Size, +11:u04:Gigabit, +9:u06:Speed, +9:u07:Gbps,, +10:u10:octets, +9:u00:Frame, +10:u01:Octets, +8:u02:Port, +14:u08:High-Level, +8:u00:Size, +11:u03:Gigabit, +9:u05:Speed, +9:u06:Gbps,, +10:u00:Octets, +8:u01:Port, +11:u02:Gigabit, +9:u04:Speed, +9:u05:Gbps,, +8:u00:Port, +14:u07:High-Level, +11:u01:Gigabit, +9:u03:Speed, +9:u04:Gbps,, +14:u06:High-Level, +11:u08:flapped, +11:u00:Gigabit, +9:u02:Speed, +9:u03:Gbps,, +14:u14:high-level, +14:u05:High-Level, +9:u01:Speed, +9:u02:Gbps,, +7:u08:(ON, +14:u13:high-level, +14:u04:High-Level, +11:u07:flapped, +9:u00:Speed, +9:u01:Gbps,, +7:u07:(ON, +14:u12:high-level, +7:u22:Hig, +8:u23:High, +14:u03:High-Level, +11:u06:flapped, +9:u00:Gbps,, +7:u06:(ON, +8:u08:(OFF, +14:u11:high-level, +11:u14:flapped, +14:u02:High-Level, +11:u05:flapped, +7:u05:(ON, +8:u07:(OFF, +14:u10:high-level, +11:u13:flapped, +14:u01:High-Level, +11:u04:flapped, +7:u04:(ON, +8:u06:(OFF, +11:u12:flapped, +8:u23:flap, +10:uI2:()/(.), +14:u00:High-Level, +11:u03:flapped, +7:u03:(ON, +8:u05:(OFF, +11:u11:flapped, +10:uI1:()/(.), +11:u02:flapped, +12:u08:aberrant, +7:u02:(ON, +8:u04:(OFF, +11:u10:flapped, +10:uI0:()/(.), +11:u01:flapped, +7:u01:(ON, +8:u03:(OFF, +11:u00:flapped, +12:u07:aberrant, +7:u00:(ON, +8:u02:(OFF, +12:u06:aberrant, +13:u08:variances, +8:u01:(OFF, +12:u14:aberrant, +12:u05:aberrant, +16:u08:mechanisms)., +8:u00:(OFF, +12:u13:aberrant, +12:u04:aberrant, +13:u07:variances, +12:u12:aberrant, +7:u22:abe, +8:u23:aber, +12:u03:aberrant, +13:u06:variances, +16:u07:mechanisms)., +12:u11:aberrant, +13:u14:variances, +12:u02:aberrant, +13:u05:variances, +16:u06:mechanisms)., +12:u10:aberrant, +13:u13:variances, +16:u14:mechanisms)., +12:u01:aberrant, +13:u04:variances, +16:u05:mechanisms)., +9:u08:DUT's, +13:u12:variances, +16:u13:mechanisms)., +12:u00:aberrant, +13:u03:variances, +16:u04:mechanisms)., +9:u07:DUT's, +15:u08:statistics,, +13:u11:variances, +16:u12:mechanisms)., +13:u02:variances, +16:u03:mechanisms)., +11:u08:rather,, +9:u06:DUT's, +15:u07:statistics,, +13:u10:variances, +16:u11:mechanisms)., +13:u01:variances, +16:u02:mechanisms)., +9:u05:DUT's, +15:u06:statistics,, +16:u10:mechanisms)., +13:u00:variances, +16:u01:mechanisms)., +11:u07:rather,, +9:u04:DUT's, +15:u05:statistics,, +9:uI2:,,.,., +16:u00:mechanisms)., +11:u06:rather,, +9:u03:DUT's, +15:u04:statistics,, +11:u14:rather,, +9:uI1:,,.,., +11:u05:rather,, +9:u02:DUT's, +15:u03:statistics,, +11:u13:rather,, +9:uI0:,,.,., +11:u04:rather,, +9:u01:DUT's, +15:u02:statistics,, +11:u12:rather,, +11:u03:rather,, +9:u00:DUT's, +15:u01:statistics,, +11:u11:rather,, +11:u02:rather,, +15:u00:statistics,, +11:u10:rather,, +11:u01:rather,, +11:u00:rather,, +13:u08:collected, +14:u08:equipment,, +13:u07:collected, +11:u14:testing, +13:u06:collected, +14:u07:equipment,, +11:u13:testing, +13:u14:collected, +13:u05:collected, +14:u06:equipment,, +15:u08:Environment, +8:u08:BMWG, +11:u12:testing, +13:u13:collected, +14:u14:equipment,, +13:u04:collected, +14:u05:equipment,, +8:u07:BMWG, +10:u08:(ITE),, +11:u11:testing, +13:u12:collected, +14:u13:equipment,, +13:u03:collected, +14:u04:equipment,, +15:u07:Environment, +8:u06:BMWG, +10:u07:(ITE),, +11:u10:testing, +13:u11:collected, +14:u12:equipment,, +13:u02:collected, +14:u03:equipment,, +15:u06:Environment, +8:u05:BMWG, +10:u06:(ITE),, +13:u10:collected, +14:u11:equipment,, +13:u01:collected, +14:u02:equipment,, +15:u05:Environment, +8:u04:BMWG, +10:u05:(ITE),, +14:u10:equipment,, +13:u00:collected, +14:u01:equipment,, +15:u04:Environment, +8:u03:BMWG, +10:u04:(ITE),, +14:u00:equipment,, +15:u03:Environment, +8:u02:BMWG, +10:u03:(ITE),, +20:u14:characterization, +15:u02:Environment, +8:u01:BMWG, +10:u02:(ITE),, +20:u13:characterization, +15:u01:Environment, +8:u00:BMWG, +10:u01:(ITE),, +20:u12:characterization, +15:u00:Environment, +10:u00:(ITE),, +20:u11:characterization, +20:u10:characterization, +8:uI2:(/)., +8:uI1:(/)., +8:uI0:(/)., +45:u08:<http://www.rfc-editor.org/info/rfc2119>., +45:u07:<http://www.rfc-editor.org/info/rfc2119>., +45:u06:<http://www.rfc-editor.org/info/rfc2119>., +45:u14:<http://www.rfc-editor.org/info/rfc2119>., +45:u05:<http://www.rfc-editor.org/info/rfc2119>., +45:u08:<http://www.rfc-editor.org/info/rfc2544>., +45:u13:<http://www.rfc-editor.org/info/rfc2119>., +45:u04:<http://www.rfc-editor.org/info/rfc2119>., +45:u12:<http://www.rfc-editor.org/info/rfc2119>., +45:u03:<http://www.rfc-editor.org/info/rfc2119>., +45:u07:<http://www.rfc-editor.org/info/rfc2544>., +45:u11:<http://www.rfc-editor.org/info/rfc2119>., +45:u02:<http://www.rfc-editor.org/info/rfc2119>., +45:u06:<http://www.rfc-editor.org/info/rfc2544>., +45:u10:<http://www.rfc-editor.org/info/rfc2119>., +45:u14:<http://www.rfc-editor.org/info/rfc2544>., +45:u01:<http://www.rfc-editor.org/info/rfc2119>., +45:u05:<http://www.rfc-editor.org/info/rfc2544>., +45:u13:<http://www.rfc-editor.org/info/rfc2544>., +45:u00:<http://www.rfc-editor.org/info/rfc2119>., +45:u04:<http://www.rfc-editor.org/info/rfc2544>., +45:u12:<http://www.rfc-editor.org/info/rfc2544>., +45:u03:<http://www.rfc-editor.org/info/rfc2544>., +45:u11:<http://www.rfc-editor.org/info/rfc2544>., +45:u02:<http://www.rfc-editor.org/info/rfc2544>., +45:u10:<http://www.rfc-editor.org/info/rfc2544>., +45:u01:<http://www.rfc-editor.org/info/rfc2544>., +45:u00:<http://www.rfc-editor.org/info/rfc2544>., +11:u08:(BFD)",, +45:u08:<http://www.rfc-editor.org/info/rfc5880>., +11:u07:(BFD)",, +13:u08:[RFC6815], +13:u14:[rfc5880], +11:u06:(BFD)",, +45:u07:<http://www.rfc-editor.org/info/rfc5880>., +18:u08:"Applicability, +13:u13:[rfc5880], +11:u14:(bfd)",, +11:u05:(BFD)",, +45:u06:<http://www.rfc-editor.org/info/rfc5880>., +13:u07:[RFC6815], +13:u12:[rfc5880], +11:u13:(bfd)",, +45:u14:<http://www.rfc-editor.org/info/rfc5880>., +11:u04:(BFD)",, +45:u05:<http://www.rfc-editor.org/info/rfc5880>., +13:u06:[RFC6815], +18:u07:"Applicability, +14:u08:Considered, +13:u11:[rfc5880], +11:u12:(bfd)",, +45:u13:<http://www.rfc-editor.org/info/rfc5880>., +13:u14:[rfc6815], +11:u03:(BFD)",, +45:u04:<http://www.rfc-editor.org/info/rfc5880>., +13:u05:[RFC6815], +18:u06:"Applicability, +45:u08:<http://www.rfc-editor.org/info/rfc6815>., +14:u07:Considered, +21:u08:10.17487/RFC6815,, +13:u10:[rfc5880], +11:u11:(bfd)",, +45:u12:<http://www.rfc-editor.org/info/rfc5880>., +13:u13:[rfc6815], +18:u14:"applicability, +11:u02:(BFD)",, +45:u03:<http://www.rfc-editor.org/info/rfc5880>., +13:u04:[RFC6815], +18:u05:"Applicability, +14:u06:Considered, +21:u07:10.17487/RFC6815,, +11:u10:(bfd)",, +45:u11:<http://www.rfc-editor.org/info/rfc5880>., +13:u12:[rfc6815], +18:u13:"applicability, +11:u01:(BFD)",, +45:u02:<http://www.rfc-editor.org/info/rfc5880>., +13:u03:[RFC6815], +18:u04:"Applicability, +45:u07:<http://www.rfc-editor.org/info/rfc6815>., +14:u05:Considered, +21:u06:10.17487/RFC6815,, +45:u10:<http://www.rfc-editor.org/info/rfc5880>., +13:u11:[rfc6815], +18:u12:"applicability, +7:u22:"Ap, +8:u23:"App, +11:u00:(BFD)",, +45:u01:<http://www.rfc-editor.org/info/rfc5880>., +13:u02:[RFC6815], +18:u03:"Applicability, +45:u06:<http://www.rfc-editor.org/info/rfc6815>., +13:u08:feedback., +14:u04:Considered, +21:u05:10.17487/RFC6815,, +13:u10:[rfc6815], +18:u11:"applicability, +45:u14:<http://www.rfc-editor.org/info/rfc6815>., +45:u00:<http://www.rfc-editor.org/info/rfc5880>., +13:u01:[RFC6815], +18:u02:"Applicability, +45:u05:<http://www.rfc-editor.org/info/rfc6815>., +14:u03:Considered, +21:u04:10.17487/RFC6815,, +18:u10:"applicability, +45:u13:<http://www.rfc-editor.org/info/rfc6815>., +13:u00:[RFC6815], +18:u01:"Applicability, +45:u04:<http://www.rfc-editor.org/info/rfc6815>., +13:u07:feedback., +9:u08:Sarah, +14:u02:Considered, +21:u03:10.17487/RFC6815,, +45:u12:<http://www.rfc-editor.org/info/rfc6815>., +18:u00:"Applicability, +45:u03:<http://www.rfc-editor.org/info/rfc6815>., +13:u06:feedback., +7:u08:VSS, +14:u01:Considered, +21:u02:10.17487/RFC6815,, +9:u08:Banks, +45:u11:<http://www.rfc-editor.org/info/rfc6815>., +13:u14:feedback., +45:u02:<http://www.rfc-editor.org/info/rfc6815>., +13:u05:feedback., +9:u07:Sarah, +14:u00:Considered, +21:u01:10.17487/RFC6815,, +9:u07:Banks, +45:u10:<http://www.rfc-editor.org/info/rfc6815>., +13:u13:feedback., +45:u01:<http://www.rfc-editor.org/info/rfc6815>., +13:u04:feedback., +9:u06:Sarah, +12:u08:Fernando, +21:u00:10.17487/RFC6815,, +9:u06:Banks, +24:u08:sbanks@encrypted.net, +13:u12:feedback., +9:u14:sarah, +7:u22:fee, +8:u23:feed, +45:u00:<http://www.rfc-editor.org/info/rfc6815>., +13:u03:feedback., +9:u05:Sarah, +24:u07:sbanks@encrypted.net, +13:u11:feedback., +9:u13:sarah, +13:u02:feedback., +9:u04:Sarah, +12:u07:Fernando, +24:u06:sbanks@encrypted.net, +13:u10:feedback., +9:u12:sarah, +7:u22:Sar, +8:u23:Sara, +13:u01:feedback., +9:u03:Sarah, +12:u06:Fernando, +8:u08:Gery, +24:u05:sbanks@encrypted.net, +22:u08:fcalabri@cisco.com, +9:u11:sarah, +12:u14:fernando, +13:u00:feedback., +9:u02:Sarah, +12:u05:Fernando, +24:u04:sbanks@encrypted.net, +22:u07:fcalabri@cisco.com, +9:u10:sarah, +12:u13:fernando, +9:u01:Sarah, +12:u04:Fernando, +8:u07:Gery, +24:u03:sbanks@encrypted.net, +22:u06:fcalabri@cisco.com, +12:u12:fernando, +7:u22:Fer, +8:u23:Fern, +9:u00:Sarah, +12:u03:Fernando, +8:u06:Gery, +10:u08:Ramdas, +24:u02:sbanks@encrypted.net, +22:u05:fcalabri@cisco.com, +24:u08:gczirjak@juniper.net, +12:u11:fernando, +8:u14:gery, +12:u02:Fernando, +8:u05:Gery, +24:u01:sbanks@encrypted.net, +22:u04:fcalabri@cisco.com, +24:u07:gczirjak@juniper.net, +12:u10:fernando, +8:u13:gery, +12:u01:Fernando, +8:u04:Gery, +10:u07:Ramdas, +24:u00:sbanks@encrypted.net, +22:u03:fcalabri@cisco.com, +24:u06:gczirjak@juniper.net, +8:u12:gery, +7:u22:Ger, +8:u23:Gery, +12:u00:Fernando, +8:u03:Gery, +10:u06:Ramdas, +22:u02:fcalabri@cisco.com, +24:u05:gczirjak@juniper.net, +23:u08:rmachat@juniper.net, +8:u11:gery, +10:u14:ramdas, +8:u02:Gery, +10:u05:Ramdas, +22:u01:fcalabri@cisco.com, +24:u04:gczirjak@juniper.net, +23:u07:rmachat@juniper.net, +8:u10:gery, +10:u13:ramdas, +8:u01:Gery, +10:u04:Ramdas, +22:u00:fcalabri@cisco.com, +24:u03:gczirjak@juniper.net, +23:u06:rmachat@juniper.net, +10:u12:ramdas, +7:u22:Ram, +8:u23:Ramd, +8:u00:Gery, +10:u03:Ramdas, +24:u02:gczirjak@juniper.net, +23:u05:rmachat@juniper.net, +10:u11:ramdas, +10:u02:Ramdas, +24:u01:gczirjak@juniper.net, +23:u04:rmachat@juniper.net, +10:u10:ramdas, +10:u01:Ramdas, +24:u00:gczirjak@juniper.net, +23:u03:rmachat@juniper.net, +10:u00:Ramdas, +23:u02:rmachat@juniper.net, +23:u01:rmachat@juniper.net, +11:u08:yes.com, +16:u06:Lodderstedt,, +6:u08:AG, +11:u07:yes.com, +16:u05:Lodderstedt,, +6:u07:AG, +11:u06:yes.com, +16:u04:Lodderstedt,, +6:u06:AG, +13:u08:Dzhuvinov, +11:u14:yes.com, +11:u05:yes.com, +14:u08:Connect2id, +16:u03:Lodderstedt,, +6:u05:AG, +13:u07:Dzhuvinov, +11:u13:yes.com, +11:u04:yes.com, +7:u08:Aug, +16:u02:Lodderstedt,, +6:u04:AG, +13:u06:Dzhuvinov, +8:u08:Ltd., +11:u12:yes.com, +8:u23:yes., +11:u03:yes.com, +14:u07:Connect2id, +7:u08:JWT, +16:u01:Lodderstedt,, +6:u03:AG, +13:u05:Dzhuvinov, +8:u07:Ltd., +11:u11:yes.com, +11:u02:yes.com, +14:u06:Connect2id, +7:u07:Aug, +50:u08:draft-ietf-oauth-jwt-introspection-response-07, +16:u00:Lodderstedt,, +6:u02:AG, +13:u04:Dzhuvinov, +8:u06:Ltd., +11:u10:yes.com, +14:u14:connect2id, +11:u01:yes.com, +14:u05:Connect2id, +7:u06:Aug, +7:u07:JWT, +6:u01:AG, +13:u03:Dzhuvinov, +8:u05:Ltd., +14:u13:connect2id, +7:u14:aug, +11:u00:yes.com, +14:u04:Connect2id, +7:u05:Aug, +7:u06:JWT, +50:u07:draft-ietf-oauth-jwt-introspection-response-07, +6:u00:AG, +13:u02:Dzhuvinov, +8:u04:Ltd., +14:u12:connect2id, +7:u13:aug, +7:u14:jwt, +14:u03:Connect2id, +7:u04:Aug, +7:u05:JWT, +50:u06:draft-ietf-oauth-jwt-introspection-response-07, +13:u01:Dzhuvinov, +8:u03:Ltd., +14:u11:connect2id, +7:u12:aug, +7:u13:jwt, +50:u14:draft-ietf-oauth-jwt-introspection-response-07, +7:u23:Aug, +14:u02:Connect2id, +7:u03:Aug, +7:u04:JWT, +50:u05:draft-ietf-oauth-jwt-introspection-response-07, +13:u00:Dzhuvinov, +8:u02:Ltd., +9:u08:OAuth, +14:u10:connect2id, +7:u11:aug, +7:u12:jwt, +50:u13:draft-ietf-oauth-jwt-introspection-response-07, +6:u21:JW, +7:u22:JWT, +7:u23:JWT, +14:u01:Connect2id, +7:u02:Aug, +7:u03:JWT, +50:u04:draft-ietf-oauth-jwt-introspection-response-07, +8:u01:Ltd., +9:u07:OAuth, +7:u10:aug, +7:u11:jwt, +50:u12:draft-ietf-oauth-jwt-introspection-response-07, +14:u00:Connect2id, +7:u01:Aug, +7:u02:JWT, +50:u03:draft-ietf-oauth-jwt-introspection-response-07, +8:u00:Ltd., +9:u06:OAuth, +7:u10:jwt, +50:u11:draft-ietf-oauth-jwt-introspection-response-07, +7:u00:Aug, +7:u01:JWT, +50:u02:draft-ietf-oauth-jwt-introspection-response-07, +9:u05:OAuth, +50:u10:draft-ietf-oauth-jwt-introspection-response-07, +7:u00:JWT, +50:u01:draft-ietf-oauth-jwt-introspection-response-07, +9:u04:OAuth, +50:u00:draft-ietf-oauth-jwt-introspection-response-07, +9:u03:OAuth, +9:u02:OAuth, +9:u01:OAuth, +9:u00:OAuth, +15:u08:Lodderstedt, +15:u07:Lodderstedt, +15:u06:Lodderstedt, +15:u14:lodderstedt, +15:u05:Lodderstedt, +15:u13:lodderstedt, +15:u04:Lodderstedt, +15:u12:lodderstedt, +7:u22:Lod, +8:u23:Lodd, +15:u03:Lodderstedt, +15:u11:lodderstedt, +15:u02:Lodderstedt, +15:u10:lodderstedt, +15:u01:Lodderstedt, +15:u00:Lodderstedt, +14:u08:Requesting, +14:u07:Requesting, +14:u06:Requesting, +14:u05:Requesting, +14:u04:Requesting, +14:u03:Requesting, +14:u02:Requesting, +14:u01:Requesting, +14:u00:Requesting, +13:u08:Cross-JWT, +13:u07:Cross-JWT, +13:u06:Cross-JWT, +13:u05:Cross-JWT, +13:u04:Cross-JWT, +11:u08:Keeping, +13:u03:Cross-JWT, +11:u07:Keeping, +13:u02:Cross-JWT, +11:u06:Keeping, +11:u08:Logging, +13:u01:Cross-JWT, +11:u05:Keeping, +11:u07:Logging, +13:u00:Cross-JWT, +11:u04:Keeping, +11:u06:Logging, +11:u03:Keeping, +11:u05:Logging, +11:u02:Keeping, +11:u04:Logging, +11:u01:Keeping, +11:u03:Logging, +11:u00:Keeping, +11:u02:Logging, +11:u01:Logging, +11:u00:Logging, +10:u08:8.1.1., +10:u07:8.1.1., +10:u06:8.1.1., +10:u14:8.1.1., +10:u05:8.1.1., +10:u13:8.1.1., +10:u04:8.1.1., +10:u12:8.1.1., +10:u03:8.1.1., +10:u11:8.1.1., +10:u02:8.1.1., +10:u10:8.1.1., +10:u01:8.1.1., +10:u00:8.1.1., +7:u08:2.0, +7:u07:2.0, +7:u06:2.0, +9:u14:oauth, +20:u08:identifier-based, +7:u05:2.0, +9:u13:oauth, +7:u04:2.0, +9:u12:oauth, +7:u22:OAu, +8:u23:OAut, +20:u07:identifier-based, +17:u08:Introspection, +7:u03:2.0, +17:u08:introspection, +9:u11:oauth, +20:u06:identifier-based, +7:u02:2.0, +17:u07:introspection, +14:u08:[RFC7662],, +9:u10:oauth, +20:u14:identifier-based, +20:u05:identifier-based, +17:u07:Introspection, +7:u01:2.0, +17:u06:introspection, +14:u07:[RFC7662],, +20:u13:identifier-based, +20:u04:identifier-based, +17:u06:Introspection, +7:u00:2.0, +17:u05:introspection, +14:u06:[RFC7662],, +20:u12:identifier-based, +17:u14:introspection, +20:u03:identifier-based, +17:u05:Introspection, +12:u08:content., +17:u04:introspection, +14:u05:[RFC7662],, +20:u11:identifier-based, +17:u13:introspection, +20:u02:identifier-based, +17:u04:Introspection, +17:u03:introspection, +14:u04:[RFC7662],, +20:u10:identifier-based, +17:u12:introspection, +8:u23:Intr, +20:u01:identifier-based, +17:u03:Introspection, +12:u07:content., +14:u08:electronic, +17:u02:introspection, +14:u03:[RFC7662],, +17:u11:introspection, +20:u00:identifier-based, +17:u02:Introspection, +12:u06:content., +17:u01:introspection, +14:u02:[RFC7662],, +15:u08:signatures., +17:u10:introspection, +12:u14:content., +17:u01:Introspection, +12:u05:content., +14:u07:electronic, +17:u00:introspection, +14:u01:[RFC7662],, +15:u07:signatures., +12:u13:content., +17:u00:Introspection, +12:u04:content., +14:u06:electronic, +14:u00:[RFC7662],, +15:u06:signatures., +12:u12:content., +14:u14:electronic, +12:u03:content., +14:u05:electronic, +15:u05:signatures., +12:u11:content., +14:u13:electronic, +12:u02:content., +14:u04:electronic, +15:u04:signatures., +12:u10:content., +14:u12:electronic, +12:u01:content., +14:u03:electronic, +15:u03:signatures., +14:u11:electronic, +12:u00:content., +14:u02:electronic, +15:u02:signatures., +14:u10:electronic, +14:u01:electronic, +15:u01:signatures., +14:u00:electronic, +15:u00:signatures., +9:u08:Host:, +15:u08:/introspect, +7:uI2:"/", +11:u08:Accept:, +15:u07:/introspect, +22:u08:server.example.com, +7:uI1:"/", +9:u07:Host:, +15:u06:/introspect, +22:u07:server.example.com, +19:u08:application/jwt, +7:uI0:"/", +9:u06:Host:, +11:u07:Accept:, +32:u08:token=2YotnFZFEjr1zCsicMWpAA, +15:u05:/introspect, +22:u06:server.example.com, +19:u07:application/jwt, +37:u08:application/x-www-form-urlencoded, +9:u14:host:, +9:u05:Host:, +11:u06:Accept:, +15:u04:/introspect, +22:u05:server.example.com, +19:u06:application/jwt, +37:u07:application/x-www-form-urlencoded, +9:u13:host:, +11:u14:accept:, +9:u04:Host:, +11:u05:Accept:, +32:u07:token=2YotnFZFEjr1zCsicMWpAA, +15:u03:/introspect, +22:u04:server.example.com, +19:u05:application/jwt, +37:u06:application/x-www-form-urlencoded, +9:u12:host:, +11:u13:accept:, +7:u22:Hos, +8:u23:Host, +9:u03:Host:, +11:u04:Accept:, +32:u06:token=2YotnFZFEjr1zCsicMWpAA, +15:u02:/introspect, +22:u03:server.example.com, +19:u04:application/jwt, +37:u05:application/x-www-form-urlencoded, +9:u11:host:, +11:u12:accept:, +32:u14:token=2yotnfzfejr1zcsicmwpaa, +10:uI2:-:/---, +9:u02:Host:, +11:u03:Accept:, +32:u05:token=2YotnFZFEjr1zCsicMWpAA, +15:u01:/introspect, +22:u02:server.example.com, +19:u03:application/jwt, +37:u04:application/x-www-form-urlencoded, +9:u10:host:, +11:u11:accept:, +32:u13:token=2yotnfzfejr1zcsicmwpaa, +10:uI1:-:/---, +9:u01:Host:, +11:u02:Accept:, +32:u04:token=2YotnFZFEjr1zCsicMWpAA, +10:u08:misuse, +15:u00:/introspect, +22:u01:server.example.com, +19:u02:application/jwt, +37:u03:application/x-www-form-urlencoded, +11:u10:accept:, +32:u12:token=2yotnfzfejr1zcsicmwpaa, +10:uI0:-:/---, +9:u00:Host:, +11:u01:Accept:, +32:u03:token=2YotnFZFEjr1zCsicMWpAA, +22:u00:server.example.com, +19:u01:application/jwt, +37:u02:application/x-www-form-urlencoded, +32:u11:token=2yotnfzfejr1zcsicmwpaa, +11:u00:Accept:, +32:u02:token=2YotnFZFEjr1zCsicMWpAA, +10:u07:misuse, +19:u00:application/jwt, +37:u01:application/x-www-form-urlencoded, +32:u10:token=2yotnfzfejr1zcsicmwpaa, +8:uI2:"/"., +32:u01:token=2YotnFZFEjr1zCsicMWpAA, +10:u06:misuse, +37:u00:application/x-www-form-urlencoded, +10:u14:misuse, +8:uI1:"/"., +32:u00:token=2YotnFZFEjr1zCsicMWpAA, +10:u05:misuse, +10:u13:misuse, +8:uI0:"/"., +10:u04:misuse, +10:u12:misuse, +10:u03:misuse, +10:u11:misuse, +10:u02:misuse, +10:u10:misuse, +10:u01:misuse, +10:u00:misuse, +68:u08:eyJraWQiOiIxIiwiYWxnIjoiUlMyNTYifQ.eyJzdWIiOiJaNU8zdXBQQzg4UXJBa, +68:u08:ngwMGRpcyIsImF1ZCI6Imh0dHBzOlwvXC9wcm90ZWN0ZWQuZXhhbXBsZS5uZXRcL, +68:u07:eyJraWQiOiIxIiwiYWxnIjoiUlMyNTYifQ.eyJzdWIiOiJaNU8zdXBQQzg4UXJBa, +68:u08:3Jlc291cmNlIiwiZXh0ZW5zaW9uX2ZpZWxkIjoidHdlbnR5LXNldmVuIiwic2Nvc, +68:u06:eyJraWQiOiIxIiwiYWxnIjoiUlMyNTYifQ.eyJzdWIiOiJaNU8zdXBQQzg4UXJBa, +68:u07:ngwMGRpcyIsImF1ZCI6Imh0dHBzOlwvXC9wcm90ZWN0ZWQuZXhhbXBsZS5uZXRcL, +68:u08:GUiOiJyZWFkIHdyaXRlIGRvbHBoaW4iLCJpc3MiOiJodHRwczpcL1wvc2VydmVyL, +68:u14:eyjrawqioiixiiwiywxnijoiulmyntyifq.eyjzdwiioijanu8zdxbqqzg4uxjba, +68:u05:eyJraWQiOiIxIiwiYWxnIjoiUlMyNTYifQ.eyJzdWIiOiJaNU8zdXBQQzg4UXJBa, +68:u06:ngwMGRpcyIsImF1ZCI6Imh0dHBzOlwvXC9wcm90ZWN0ZWQuZXhhbXBsZS5uZXRcL, +68:u07:3Jlc291cmNlIiwiZXh0ZW5zaW9uX2ZpZWxkIjoidHdlbnR5LXNldmVuIiwic2Nvc, +68:u08:mV4YW1wbGUuY29tXC8iLCJhY3RpdmUiOnRydWUsImV4cCI6MTQxOTM1NjIzOCwia, +68:u13:eyjrawqioiixiiwiywxnijoiulmyntyifq.eyjzdwiioijanu8zdxbqqzg4uxjba, +68:u14:ngwmgrpcyisimf1zci6imh0dhbzolwvxc9wcm90zwn0zwquzxhhbxbszs5uzxrcl, +68:u04:eyJraWQiOiIxIiwiYWxnIjoiUlMyNTYifQ.eyJzdWIiOiJaNU8zdXBQQzg4UXJBa, +68:u05:ngwMGRpcyIsImF1ZCI6Imh0dHBzOlwvXC9wcm90ZWN0ZWQuZXhhbXBsZS5uZXRcL, +68:u06:3Jlc291cmNlIiwiZXh0ZW5zaW9uX2ZpZWxkIjoidHdlbnR5LXNldmVuIiwic2Nvc, +68:u07:GUiOiJyZWFkIHdyaXRlIGRvbHBoaW4iLCJpc3MiOiJodHRwczpcL1wvc2VydmVyL, +68:u08:WF0IjoxNDE5MzUwMjM4LCJjbGllbnRfaWQiOiJsMjM4ajMyM2RzLTIzaWo0Iiwid, +68:u12:eyjrawqioiixiiwiywxnijoiulmyntyifq.eyjzdwiioijanu8zdxbqqzg4uxjba, +68:u13:ngwmgrpcyisimf1zci6imh0dhbzolwvxc9wcm90zwn0zwquzxhhbxbszs5uzxrcl, +68:u14:3jlc291cmnliiwizxh0zw5zaw9ux2zpzwxkijoidhdlbnr5lxnldmvuiiwic2nvc, +6:u21:ey, +7:u22:eyJ, +8:u23:eyJr, +68:u03:eyJraWQiOiIxIiwiYWxnIjoiUlMyNTYifQ.eyJzdWIiOiJaNU8zdXBQQzg4UXJBa, +68:u04:ngwMGRpcyIsImF1ZCI6Imh0dHBzOlwvXC9wcm90ZWN0ZWQuZXhhbXBsZS5uZXRcL, +68:u05:3Jlc291cmNlIiwiZXh0ZW5zaW9uX2ZpZWxkIjoidHdlbnR5LXNldmVuIiwic2Nvc, +68:u06:GUiOiJyZWFkIHdyaXRlIGRvbHBoaW4iLCJpc3MiOiJodHRwczpcL1wvc2VydmVyL, +68:u07:mV4YW1wbGUuY29tXC8iLCJhY3RpdmUiOnRydWUsImV4cCI6MTQxOTM1NjIzOCwia, +68:u08:XNlcm5hbWUiOiJqZG9lIn0.HEQHf05vqVvWVnWuEjbzUnPz6JDQVR69QkxgzBNq5, +68:u11:eyjrawqioiixiiwiywxnijoiulmyntyifq.eyjzdwiioijanu8zdxbqqzg4uxjba, +68:u12:ngwmgrpcyisimf1zci6imh0dhbzolwvxc9wcm90zwn0zwquzxhhbxbszs5uzxrcl, +68:u13:3jlc291cmnliiwizxh0zw5zaw9ux2zpzwxkijoidhdlbnr5lxnldmvuiiwic2nvc, +68:u14:guioijyzwfkihdyaxrligrvbhboaw4ilcjpc3mioijodhrwczpcl1wvc2vydmvyl, +6:u21:ng, +7:u22:ngw, +8:u23:ngwM, +68:u02:eyJraWQiOiIxIiwiYWxnIjoiUlMyNTYifQ.eyJzdWIiOiJaNU8zdXBQQzg4UXJBa, +68:u03:ngwMGRpcyIsImF1ZCI6Imh0dHBzOlwvXC9wcm90ZWN0ZWQuZXhhbXBsZS5uZXRcL, +68:u04:3Jlc291cmNlIiwiZXh0ZW5zaW9uX2ZpZWxkIjoidHdlbnR5LXNldmVuIiwic2Nvc, +68:u05:GUiOiJyZWFkIHdyaXRlIGRvbHBoaW4iLCJpc3MiOiJodHRwczpcL1wvc2VydmVyL, +68:u06:mV4YW1wbGUuY29tXC8iLCJhY3RpdmUiOnRydWUsImV4cCI6MTQxOTM1NjIzOCwia, +68:u07:WF0IjoxNDE5MzUwMjM4LCJjbGllbnRfaWQiOiJsMjM4ajMyM2RzLTIzaWo0Iiwid, +68:u08:kk-sK54ieg1STazXGsdFAT8nUhiiV1f_Z4HOKNnBs8TLKaFXokhA0MqNBOYI--2u, +68:u10:eyjrawqioiixiiwiywxnijoiulmyntyifq.eyjzdwiioijanu8zdxbqqzg4uxjba, +68:u11:ngwmgrpcyisimf1zci6imh0dhbzolwvxc9wcm90zwn0zwquzxhhbxbszs5uzxrcl, +68:u12:3jlc291cmnliiwizxh0zw5zaw9ux2zpzwxkijoidhdlbnr5lxnldmvuiiwic2nvc, +68:u13:guioijyzwfkihdyaxrligrvbhboaw4ilcjpc3mioijodhrwczpcl1wvc2vydmvyl, +68:u14:mv4yw1wbguuy29txc8ilcjhy3rpdmuionrydwusimv4cci6mtqxotm1njizocwia, +6:u21:3J, +7:u22:3Jl, +8:u23:3Jlc, +68:u01:eyJraWQiOiIxIiwiYWxnIjoiUlMyNTYifQ.eyJzdWIiOiJaNU8zdXBQQzg4UXJBa, +68:u02:ngwMGRpcyIsImF1ZCI6Imh0dHBzOlwvXC9wcm90ZWN0ZWQuZXhhbXBsZS5uZXRcL, +68:u03:3Jlc291cmNlIiwiZXh0ZW5zaW9uX2ZpZWxkIjoidHdlbnR5LXNldmVuIiwic2Nvc, +68:u04:GUiOiJyZWFkIHdyaXRlIGRvbHBoaW4iLCJpc3MiOiJodHRwczpcL1wvc2VydmVyL, +68:u05:mV4YW1wbGUuY29tXC8iLCJhY3RpdmUiOnRydWUsImV4cCI6MTQxOTM1NjIzOCwia, +68:u06:WF0IjoxNDE5MzUwMjM4LCJjbGllbnRfaWQiOiJsMjM4ajMyM2RzLTIzaWo0Iiwid, +68:u07:XNlcm5hbWUiOiJqZG9lIn0.HEQHf05vqVvWVnWuEjbzUnPz6JDQVR69QkxgzBNq5, +68:u08:nVHDqI_RPmC3p0NmP02Xmv4hzxFmTmpgjSy3vpKQDihOjhwNBh7G81JNaJqjJQTR, +68:u10:ngwmgrpcyisimf1zci6imh0dhbzolwvxc9wcm90zwn0zwquzxhhbxbszs5uzxrcl, +68:u11:3jlc291cmnliiwizxh0zw5zaw9ux2zpzwxkijoidhdlbnr5lxnldmvuiiwic2nvc, +68:u12:guioijyzwfkihdyaxrligrvbhboaw4ilcjpc3mioijodhrwczpcl1wvc2vydmvyl, +68:u13:mv4yw1wbguuy29txc8ilcjhy3rpdmuionrydwusimv4cci6mtqxotm1njizocwia, +68:u14:wf0ijoxnde5mzuwmjm4lcjjbgllbnrfawqioijsmjm4ajmym2rzltizawo0iiwid, +7:u22:GUi, +8:u23:GUiO, +68:u00:eyJraWQiOiIxIiwiYWxnIjoiUlMyNTYifQ.eyJzdWIiOiJaNU8zdXBQQzg4UXJBa, +68:u01:ngwMGRpcyIsImF1ZCI6Imh0dHBzOlwvXC9wcm90ZWN0ZWQuZXhhbXBsZS5uZXRcL, +68:u02:3Jlc291cmNlIiwiZXh0ZW5zaW9uX2ZpZWxkIjoidHdlbnR5LXNldmVuIiwic2Nvc, +68:u03:GUiOiJyZWFkIHdyaXRlIGRvbHBoaW4iLCJpc3MiOiJodHRwczpcL1wvc2VydmVyL, +68:u04:mV4YW1wbGUuY29tXC8iLCJhY3RpdmUiOnRydWUsImV4cCI6MTQxOTM1NjIzOCwia, +68:u05:WF0IjoxNDE5MzUwMjM4LCJjbGllbnRfaWQiOiJsMjM4ajMyM2RzLTIzaWo0Iiwid, +68:u06:XNlcm5hbWUiOiJqZG9lIn0.HEQHf05vqVvWVnWuEjbzUnPz6JDQVR69QkxgzBNq5, +68:u07:kk-sK54ieg1STazXGsdFAT8nUhiiV1f_Z4HOKNnBs8TLKaFXokhA0MqNBOYI--2u, +68:u08:v_1dHUPJotQjMK3k8_5FyiO2p64Y2VyxyQn1VWVlgOHlJwhj6BaGHk4Qf5F8DHQZ, +68:u10:3jlc291cmnliiwizxh0zw5zaw9ux2zpzwxkijoidhdlbnr5lxnldmvuiiwic2nvc, +68:u11:guioijyzwfkihdyaxrligrvbhboaw4ilcjpc3mioijodhrwczpcl1wvc2vydmvyl, +68:u12:mv4yw1wbguuy29txc8ilcjhy3rpdmuionrydwusimv4cci6mtqxotm1njizocwia, +68:u13:wf0ijoxnde5mzuwmjm4lcjjbgllbnrfawqioijsmjm4ajmym2rzltizawo0iiwid, +68:u14:xnlcm5hbwuioijqzg9lin0.heqhf05vqvvwvnwuejbzunpz6jdqvr69qkxgzbnq5, +6:u21:mV, +7:u22:mV4, +8:u23:mV4Y, +68:u00:ngwMGRpcyIsImF1ZCI6Imh0dHBzOlwvXC9wcm90ZWN0ZWQuZXhhbXBsZS5uZXRcL, +68:u01:3Jlc291cmNlIiwiZXh0ZW5zaW9uX2ZpZWxkIjoidHdlbnR5LXNldmVuIiwic2Nvc, +68:u02:GUiOiJyZWFkIHdyaXRlIGRvbHBoaW4iLCJpc3MiOiJodHRwczpcL1wvc2VydmVyL, +68:u03:mV4YW1wbGUuY29tXC8iLCJhY3RpdmUiOnRydWUsImV4cCI6MTQxOTM1NjIzOCwia, +68:u04:WF0IjoxNDE5MzUwMjM4LCJjbGllbnRfaWQiOiJsMjM4ajMyM2RzLTIzaWo0Iiwid, +68:u05:XNlcm5hbWUiOiJqZG9lIn0.HEQHf05vqVvWVnWuEjbzUnPz6JDQVR69QkxgzBNq5, +68:u06:kk-sK54ieg1STazXGsdFAT8nUhiiV1f_Z4HOKNnBs8TLKaFXokhA0MqNBOYI--2u, +68:u07:nVHDqI_RPmC3p0NmP02Xmv4hzxFmTmpgjSy3vpKQDihOjhwNBh7G81JNaJqjJQTR, +68:u08:1WCPg2p_-hwfINfXh1_buSjxyDRF4oe9pKy6ZB3ejh9qIMm-WrwltuU1uWMXxN6e, +68:u10:guioijyzwfkihdyaxrligrvbhboaw4ilcjpc3mioijodhrwczpcl1wvc2vydmvyl, +68:u11:mv4yw1wbguuy29txc8ilcjhy3rpdmuionrydwusimv4cci6mtqxotm1njizocwia, +68:u12:wf0ijoxnde5mzuwmjm4lcjjbgllbnrfawqioijsmjm4ajmym2rzltizawo0iiwid, +68:u13:xnlcm5hbwuioijqzg9lin0.heqhf05vqvvwvnwuejbzunpz6jdqvr69qkxgzbnq5, +68:u14:kk-sk54ieg1stazxgsdfat8nuhiiv1f_z4hoknnbs8tlkafxokha0mqnboyi--2u, +6:u21:WF, +7:u22:WF0, +8:u23:WF0I, +68:u00:3Jlc291cmNlIiwiZXh0ZW5zaW9uX2ZpZWxkIjoidHdlbnR5LXNldmVuIiwic2Nvc, +68:u01:GUiOiJyZWFkIHdyaXRlIGRvbHBoaW4iLCJpc3MiOiJodHRwczpcL1wvc2VydmVyL, +68:u02:mV4YW1wbGUuY29tXC8iLCJhY3RpdmUiOnRydWUsImV4cCI6MTQxOTM1NjIzOCwia, +68:u03:WF0IjoxNDE5MzUwMjM4LCJjbGllbnRfaWQiOiJsMjM4ajMyM2RzLTIzaWo0Iiwid, +68:u04:XNlcm5hbWUiOiJqZG9lIn0.HEQHf05vqVvWVnWuEjbzUnPz6JDQVR69QkxgzBNq5, +68:u05:kk-sK54ieg1STazXGsdFAT8nUhiiV1f_Z4HOKNnBs8TLKaFXokhA0MqNBOYI--2u, +68:u06:nVHDqI_RPmC3p0NmP02Xmv4hzxFmTmpgjSy3vpKQDihOjhwNBh7G81JNaJqjJQTR, +68:u07:v_1dHUPJotQjMK3k8_5FyiO2p64Y2VyxyQn1VWVlgOHlJwhj6BaGHk4Qf5F8DHQZ, +49:u08:S6tUtpKo8UCHBwLWCHmJN7KU6ZojmaISspdS23lELAlyw, +68:u10:mv4yw1wbguuy29txc8ilcjhy3rpdmuionrydwusimv4cci6mtqxotm1njizocwia, +68:u11:wf0ijoxnde5mzuwmjm4lcjjbgllbnrfawqioijsmjm4ajmym2rzltizawo0iiwid, +68:u12:xnlcm5hbwuioijqzg9lin0.heqhf05vqvvwvnwuejbzunpz6jdqvr69qkxgzbnq5, +68:u13:kk-sk54ieg1stazxgsdfat8nuhiiv1f_z4hoknnbs8tlkafxokha0mqnboyi--2u, +68:u14:nvhdqi_rpmc3p0nmp02xmv4hzxfmtmpgjsy3vpkqdihojhwnbh7g81jnajqjjqtr, +6:u21:XN, +7:u22:XNl, +8:u23:XNlc, +68:u00:GUiOiJyZWFkIHdyaXRlIGRvbHBoaW4iLCJpc3MiOiJodHRwczpcL1wvc2VydmVyL, +68:u01:mV4YW1wbGUuY29tXC8iLCJhY3RpdmUiOnRydWUsImV4cCI6MTQxOTM1NjIzOCwia, +68:u02:WF0IjoxNDE5MzUwMjM4LCJjbGllbnRfaWQiOiJsMjM4ajMyM2RzLTIzaWo0Iiwid, +68:u03:XNlcm5hbWUiOiJqZG9lIn0.HEQHf05vqVvWVnWuEjbzUnPz6JDQVR69QkxgzBNq5, +68:u04:kk-sK54ieg1STazXGsdFAT8nUhiiV1f_Z4HOKNnBs8TLKaFXokhA0MqNBOYI--2u, +68:u05:nVHDqI_RPmC3p0NmP02Xmv4hzxFmTmpgjSy3vpKQDihOjhwNBh7G81JNaJqjJQTR, +68:u06:v_1dHUPJotQjMK3k8_5FyiO2p64Y2VyxyQn1VWVlgOHlJwhj6BaGHk4Qf5F8DHQZ, +68:u07:1WCPg2p_-hwfINfXh1_buSjxyDRF4oe9pKy6ZB3ejh9qIMm-WrwltuU1uWMXxN6e, +68:u10:wf0ijoxnde5mzuwmjm4lcjjbgllbnrfawqioijsmjm4ajmym2rzltizawo0iiwid, +68:u11:xnlcm5hbwuioijqzg9lin0.heqhf05vqvvwvnwuejbzunpz6jdqvr69qkxgzbnq5, +68:u12:kk-sk54ieg1stazxgsdfat8nuhiiv1f_z4hoknnbs8tlkafxokha0mqnboyi--2u, +68:u13:nvhdqi_rpmc3p0nmp02xmv4hzxfmtmpgjsy3vpkqdihojhwnbh7g81jnajqjjqtr, +68:u14:v_1dhupjotqjmk3k8_5fyio2p64y2vyxyqn1vwvlgohljwhj6baghk4qf5f8dhqz, +6:u21:kk, +7:u22:kk-, +8:u23:kk-s, +68:u00:mV4YW1wbGUuY29tXC8iLCJhY3RpdmUiOnRydWUsImV4cCI6MTQxOTM1NjIzOCwia, +68:u01:WF0IjoxNDE5MzUwMjM4LCJjbGllbnRfaWQiOiJsMjM4ajMyM2RzLTIzaWo0Iiwid, +68:u02:XNlcm5hbWUiOiJqZG9lIn0.HEQHf05vqVvWVnWuEjbzUnPz6JDQVR69QkxgzBNq5, +68:u03:kk-sK54ieg1STazXGsdFAT8nUhiiV1f_Z4HOKNnBs8TLKaFXokhA0MqNBOYI--2u, +68:u04:nVHDqI_RPmC3p0NmP02Xmv4hzxFmTmpgjSy3vpKQDihOjhwNBh7G81JNaJqjJQTR, +68:u05:v_1dHUPJotQjMK3k8_5FyiO2p64Y2VyxyQn1VWVlgOHlJwhj6BaGHk4Qf5F8DHQZ, +68:u06:1WCPg2p_-hwfINfXh1_buSjxyDRF4oe9pKy6ZB3ejh9qIMm-WrwltuU1uWMXxN6e, +49:u07:S6tUtpKo8UCHBwLWCHmJN7KU6ZojmaISspdS23lELAlyw, +68:u10:xnlcm5hbwuioijqzg9lin0.heqhf05vqvvwvnwuejbzunpz6jdqvr69qkxgzbnq5, +68:u11:kk-sk54ieg1stazxgsdfat8nuhiiv1f_z4hoknnbs8tlkafxokha0mqnboyi--2u, +68:u12:nvhdqi_rpmc3p0nmp02xmv4hzxfmtmpgjsy3vpkqdihojhwnbh7g81jnajqjjqtr, +68:u13:v_1dhupjotqjmk3k8_5fyio2p64y2vyxyqn1vwvlgohljwhj6baghk4qf5f8dhqz, +68:u14:1wcpg2p_-hwfinfxh1_busjxydrf4oe9pky6zb3ejh9qimm-wrwltuu1uwmxxn6e, +6:u21:nV, +7:u22:nVH, +8:u23:nVHD, +68:u00:WF0IjoxNDE5MzUwMjM4LCJjbGllbnRfaWQiOiJsMjM4ajMyM2RzLTIzaWo0Iiwid, +68:u01:XNlcm5hbWUiOiJqZG9lIn0.HEQHf05vqVvWVnWuEjbzUnPz6JDQVR69QkxgzBNq5, +68:u02:kk-sK54ieg1STazXGsdFAT8nUhiiV1f_Z4HOKNnBs8TLKaFXokhA0MqNBOYI--2u, +68:u03:nVHDqI_RPmC3p0NmP02Xmv4hzxFmTmpgjSy3vpKQDihOjhwNBh7G81JNaJqjJQTR, +68:u04:v_1dHUPJotQjMK3k8_5FyiO2p64Y2VyxyQn1VWVlgOHlJwhj6BaGHk4Qf5F8DHQZ, +68:u05:1WCPg2p_-hwfINfXh1_buSjxyDRF4oe9pKy6ZB3ejh9qIMm-WrwltuU1uWMXxN6e, +49:u06:S6tUtpKo8UCHBwLWCHmJN7KU6ZojmaISspdS23lELAlyw, +10:u08:"sub":, +68:u10:kk-sk54ieg1stazxgsdfat8nuhiiv1f_z4hoknnbs8tlkafxokha0mqnboyi--2u, +68:u11:nvhdqi_rpmc3p0nmp02xmv4hzxfmtmpgjsy3vpkqdihojhwnbh7g81jnajqjjqtr, +68:u12:v_1dhupjotqjmk3k8_5fyio2p64y2vyxyqn1vwvlgohljwhj6baghk4qf5f8dhqz, +68:u13:1wcpg2p_-hwfinfxh1_busjxydrf4oe9pky6zb3ejh9qimm-wrwltuu1uwmxxn6e, +49:u14:s6tutpko8uchbwlwchmjn7ku6zojmaisspds23lelalyw, +6:u21:v_, +7:u22:v_1, +8:u23:v_1d, +68:u00:XNlcm5hbWUiOiJqZG9lIn0.HEQHf05vqVvWVnWuEjbzUnPz6JDQVR69QkxgzBNq5, +68:u01:kk-sK54ieg1STazXGsdFAT8nUhiiV1f_Z4HOKNnBs8TLKaFXokhA0MqNBOYI--2u, +68:u02:nVHDqI_RPmC3p0NmP02Xmv4hzxFmTmpgjSy3vpKQDihOjhwNBh7G81JNaJqjJQTR, +68:u03:v_1dHUPJotQjMK3k8_5FyiO2p64Y2VyxyQn1VWVlgOHlJwhj6BaGHk4Qf5F8DHQZ, +68:u04:1WCPg2p_-hwfINfXh1_buSjxyDRF4oe9pKy6ZB3ejh9qIMm-WrwltuU1uWMXxN6e, +49:u05:S6tUtpKo8UCHBwLWCHmJN7KU6ZojmaISspdS23lELAlyw, +10:u08:"aud":, +27:u08:"Z5O3upPC88QrAjx00dis",, +68:u10:nvhdqi_rpmc3p0nmp02xmv4hzxfmtmpgjsy3vpkqdihojhwnbh7g81jnajqjjqtr, +68:u11:v_1dhupjotqjmk3k8_5fyio2p64y2vyxyqn1vwvlgohljwhj6baghk4qf5f8dhqz, +68:u12:1wcpg2p_-hwfinfxh1_busjxydrf4oe9pky6zb3ejh9qimm-wrwltuu1uwmxxn6e, +49:u13:s6tutpko8uchbwlwchmjn7ku6zojmaisspds23lelalyw, +6:u21:1W, +7:u22:1WC, +8:u23:1WCP, +68:u00:kk-sK54ieg1STazXGsdFAT8nUhiiV1f_Z4HOKNnBs8TLKaFXokhA0MqNBOYI--2u, +68:u01:nVHDqI_RPmC3p0NmP02Xmv4hzxFmTmpgjSy3vpKQDihOjhwNBh7G81JNaJqjJQTR, +68:u02:v_1dHUPJotQjMK3k8_5FyiO2p64Y2VyxyQn1VWVlgOHlJwhj6BaGHk4Qf5F8DHQZ, +68:u03:1WCPg2p_-hwfINfXh1_buSjxyDRF4oe9pKy6ZB3ejh9qIMm-WrwltuU1uWMXxN6e, +49:u04:S6tUtpKo8UCHBwLWCHmJN7KU6ZojmaISspdS23lELAlyw, +10:u07:"sub":, +12:u08:"scope":, +27:u07:"Z5O3upPC88QrAjx00dis",, +45:u08:"https://protected.example.net/resource",, +68:u10:v_1dhupjotqjmk3k8_5fyio2p64y2vyxyqn1vwvlgohljwhj6baghk4qf5f8dhqz, +68:u11:1wcpg2p_-hwfinfxh1_busjxydrf4oe9pky6zb3ejh9qimm-wrwltuu1uwmxxn6e, +49:u12:s6tutpko8uchbwlwchmjn7ku6zojmaisspds23lelalyw, +7:u22:S6t, +8:u23:S6tU, +68:u00:nVHDqI_RPmC3p0NmP02Xmv4hzxFmTmpgjSy3vpKQDihOjhwNBh7G81JNaJqjJQTR, +68:u01:v_1dHUPJotQjMK3k8_5FyiO2p64Y2VyxyQn1VWVlgOHlJwhj6BaGHk4Qf5F8DHQZ, +68:u02:1WCPg2p_-hwfINfXh1_buSjxyDRF4oe9pKy6ZB3ejh9qIMm-WrwltuU1uWMXxN6e, +49:u03:S6tUtpKo8UCHBwLWCHmJN7KU6ZojmaISspdS23lELAlyw, +10:u06:"sub":, +10:u07:"aud":, +10:u08:"iss":, +27:u06:"Z5O3upPC88QrAjx00dis",, +45:u07:"https://protected.example.net/resource",, +9:u08:"read, +68:u10:1wcpg2p_-hwfinfxh1_busjxydrf4oe9pky6zb3ejh9qimm-wrwltuu1uwmxxn6e, +49:u11:s6tutpko8uchbwlwchmjn7ku6zojmaisspds23lelalyw, +10:u14:"sub":, +68:u00:v_1dHUPJotQjMK3k8_5FyiO2p64Y2VyxyQn1VWVlgOHlJwhj6BaGHk4Qf5F8DHQZ, +68:u01:1WCPg2p_-hwfINfXh1_buSjxyDRF4oe9pKy6ZB3ejh9qIMm-WrwltuU1uWMXxN6e, +49:u02:S6tUtpKo8UCHBwLWCHmJN7KU6ZojmaISspdS23lELAlyw, +10:u05:"sub":, +10:u06:"aud":, +12:u07:"scope":, +13:u08:"active":, +27:u05:"Z5O3upPC88QrAjx00dis",, +45:u06:"https://protected.example.net/resource",, +9:u07:"read, +34:u08:"https://server.example.com/",, +49:u10:s6tutpko8uchbwlwchmjn7ku6zojmaisspds23lelalyw, +10:u13:"sub":, +10:u14:"aud":, +68:u00:1WCPg2p_-hwfINfXh1_buSjxyDRF4oe9pKy6ZB3ejh9qIMm-WrwltuU1uWMXxN6e, +49:u01:S6tUtpKo8UCHBwLWCHmJN7KU6ZojmaISspdS23lELAlyw, +10:u04:"sub":, +10:u05:"aud":, +12:u06:"scope":, +10:u07:"iss":, +10:u08:"exp":, +27:u04:"Z5O3upPC88QrAjx00dis",, +45:u05:"https://protected.example.net/resource",, +9:u06:"read, +34:u07:"https://server.example.com/",, +10:u12:"sub":, +10:u13:"aud":, +12:u14:"scope":, +7:u22:"su, +8:u23:"sub, +16:uI2:"":"://../",, +49:u00:S6tUtpKo8UCHBwLWCHmJN7KU6ZojmaISspdS23lELAlyw, +10:u03:"sub":, +10:u04:"aud":, +12:u05:"scope":, +10:u06:"iss":, +13:u07:"active":, +10:u08:"iat":, +27:u03:"Z5O3upPC88QrAjx00dis",, +45:u04:"https://protected.example.net/resource",, +9:u05:"read, +34:u06:"https://server.example.com/",, +15:u08:1419356238,, +10:u11:"sub":, +10:u12:"aud":, +12:u13:"scope":, +10:u14:"iss":, +8:u23:"aud, +16:uI1:"":"://../",, +10:u02:"sub":, +10:u03:"aud":, +12:u04:"scope":, +10:u05:"iss":, +13:u06:"active":, +10:u07:"exp":, +16:u08:"client_id":, +27:u02:"Z5O3upPC88QrAjx00dis",, +45:u03:"https://protected.example.net/resource",, +9:u04:"read, +34:u05:"https://server.example.com/",, +15:u07:1419356238,, +15:u08:1419350238,, +10:u10:"sub":, +10:u11:"aud":, +12:u12:"scope":, +10:u13:"iss":, +13:u14:"active":, +8:u23:"sco, +16:uI0:"":"://../",, +10:u01:"sub":, +10:u02:"aud":, +12:u03:"scope":, +10:u04:"iss":, +13:u05:"active":, +10:u06:"exp":, +10:u07:"iat":, +17:u08:"given_name":, +27:u01:"Z5O3upPC88QrAjx00dis",, +45:u02:"https://protected.example.net/resource",, +9:u03:"read, +34:u04:"https://server.example.com/",, +15:u06:1419356238,, +15:u07:1419350238,, +23:u08:"l238j323ds-23ij4",, +10:u10:"aud":, +12:u11:"scope":, +10:u12:"iss":, +13:u13:"active":, +10:u14:"exp":, +8:u23:"iss, +10:u00:"sub":, +10:u01:"aud":, +12:u02:"scope":, +10:u03:"iss":, +13:u04:"active":, +10:u05:"exp":, +10:u06:"iat":, +16:u07:"client_id":, +24:u08:"family_name":"Doe",, +27:u00:"Z5O3upPC88QrAjx00dis",, +45:u01:"https://protected.example.net/resource",, +9:u02:"read, +34:u03:"https://server.example.com/",, +15:u05:1419356238,, +15:u06:1419350238,, +23:u07:"l238j323ds-23ij4",, +11:u08:"John",, +12:u10:"scope":, +10:u11:"iss":, +13:u12:"active":, +10:u13:"exp":, +10:u14:"iat":, +8:u23:"act, +10:u00:"aud":, +12:u01:"scope":, +10:u02:"iss":, +13:u03:"active":, +10:u04:"exp":, +10:u05:"iat":, +16:u06:"client_id":, +17:u07:"given_name":, +28:u08:"birthdate":"1982-02-01", +45:u00:"https://protected.example.net/resource",, +9:u01:"read, +34:u02:"https://server.example.com/",, +15:u04:1419356238,, +15:u05:1419350238,, +23:u06:"l238j323ds-23ij4",, +11:u07:"John",, +10:u10:"iss":, +13:u11:"active":, +10:u12:"exp":, +10:u13:"iat":, +16:u14:"client_id":, +12:u00:"scope":, +10:u01:"iss":, +13:u02:"active":, +10:u03:"exp":, +10:u04:"iat":, +16:u05:"client_id":, +17:u06:"given_name":, +24:u07:"family_name":"Doe",, +9:u00:"read, +34:u01:"https://server.example.com/",, +15:u03:1419356238,, +15:u04:1419350238,, +23:u05:"l238j323ds-23ij4",, +11:u06:"John",, +13:u10:"active":, +10:u11:"exp":, +10:u12:"iat":, +16:u13:"client_id":, +17:u14:"given_name":, +7:u22:"ia, +8:u23:"iat, +10:u00:"iss":, +13:u01:"active":, +10:u02:"exp":, +10:u03:"iat":, +16:u04:"client_id":, +17:u05:"given_name":, +24:u06:"family_name":"Doe",, +28:u07:"birthdate":"1982-02-01", +34:u00:"https://server.example.com/",, +15:u02:1419356238,, +15:u03:1419350238,, +23:u04:"l238j323ds-23ij4",, +11:u05:"John",, +10:u10:"exp":, +10:u11:"iat":, +16:u12:"client_id":, +17:u13:"given_name":, +24:u14:"family_name":"doe",, +13:u00:"active":, +10:u01:"exp":, +10:u02:"iat":, +16:u03:"client_id":, +17:u04:"given_name":, +24:u05:"family_name":"Doe",, +28:u06:"birthdate":"1982-02-01", +11:u08:signed,, +15:u01:1419356238,, +15:u02:1419350238,, +23:u03:"l238j323ds-23ij4",, +11:u04:"John",, +10:u10:"iat":, +16:u11:"client_id":, +17:u12:"given_name":, +24:u13:"family_name":"doe",, +28:u14:"birthdate":"1982-02-01", +6:u21:"g, +7:u22:"gi, +8:u23:"giv, +10:u00:"exp":, +10:u01:"iat":, +16:u02:"client_id":, +17:u03:"given_name":, +24:u04:"family_name":"Doe",, +28:u05:"birthdate":"1982-02-01", +15:u00:1419356238,, +15:u01:1419350238,, +23:u02:"l238j323ds-23ij4",, +11:u03:"John",, +16:u10:"client_id":, +17:u11:"given_name":, +24:u12:"family_name":"doe",, +28:u13:"birthdate":"1982-02-01", +7:u22:"fa, +8:u23:"fam, +11:uI2:"":"--", +10:u00:"iat":, +16:u01:"client_id":, +17:u02:"given_name":, +24:u03:"family_name":"Doe",, +28:u04:"birthdate":"1982-02-01", +11:u07:signed,, +15:u00:1419350238,, +23:u01:"l238j323ds-23ij4",, +11:u02:"John",, +17:u10:"given_name":, +24:u11:"family_name":"doe",, +28:u12:"birthdate":"1982-02-01", +8:u23:"bir, +11:uI1:"":"--", +16:u00:"client_id":, +17:u01:"given_name":, +24:u02:"family_name":"Doe",, +28:u03:"birthdate":"1982-02-01", +11:u06:signed,, +23:u00:"l238j323ds-23ij4",, +11:u01:"John",, +24:u10:"family_name":"doe",, +28:u11:"birthdate":"1982-02-01", +11:u14:signed,, +11:uI0:"":"--", +17:u00:"given_name":, +24:u01:"family_name":"Doe",, +28:u02:"birthdate":"1982-02-01", +11:u05:signed,, +11:u00:"John",, +28:u10:"birthdate":"1982-02-01", +11:u13:signed,, +24:u00:"family_name":"Doe",, +28:u01:"birthdate":"1982-02-01", +11:u04:signed,, +22:u08:"application/jwt",, +11:u12:signed,, +28:u00:"birthdate":"1982-02-01", +11:u03:signed,, +11:u11:signed,, +11:u02:signed,, +22:u07:"application/jwt",, +11:u10:signed,, +11:u01:signed,, +22:u06:"application/jwt",, +22:u14:"application/jwt",, +11:u00:signed,, +22:u05:"application/jwt",, +22:u13:"application/jwt",, +22:u04:"application/jwt",, +22:u12:"application/jwt",, +7:u22:"ap, +8:u23:"app, +22:u03:"application/jwt",, +22:u11:"application/jwt",, +22:u02:"application/jwt",, +22:u10:"application/jwt",, +22:u01:"application/jwt",, +22:u00:"application/jwt",, +11:u08:Dynamic, +11:u08:signing, +11:u07:Dynamic, +11:u06:Dynamic, +11:u07:signing, +11:u05:Dynamic, +11:u06:signing, +11:u04:Dynamic, +11:u05:signing, +37:u08:introspection_signed_response_alg, +6:u21:Dy, +7:u22:Dyn, +8:u23:Dyna, +11:u03:Dynamic, +11:u04:signing, +10:u08:("alg", +11:u02:Dynamic, +11:u03:signing, +37:u07:introspection_signed_response_alg, +11:u01:Dynamic, +11:u02:signing, +37:u06:introspection_signed_response_alg, +10:u07:("alg", +37:u14:introspection_signed_response_alg, +11:u00:Dynamic, +11:u01:signing, +37:u05:introspection_signed_response_alg, +10:u06:("alg", +37:u13:introspection_signed_response_alg, +10:u14:("alg", +11:u00:signing, +37:u04:introspection_signed_response_alg, +10:u05:("alg", +40:u08:introspection_encrypted_response_alg, +37:u12:introspection_signed_response_alg, +10:u13:("alg", +10:uI2:("")[], +37:u03:introspection_signed_response_alg, +10:u04:("alg", +37:u11:introspection_signed_response_alg, +10:u12:("alg", +7:u22:("a, +8:u23:("al, +10:uI1:("")[], +37:u02:introspection_signed_response_alg, +10:u03:("alg", +40:u07:introspection_encrypted_response_alg, +37:u10:introspection_signed_response_alg, +10:u11:("alg", +12:u14:default,, +10:uI0:("")[], +37:u01:introspection_signed_response_alg, +10:u02:("alg", +40:u06:introspection_encrypted_response_alg, +10:u10:("alg", +12:u13:default,, +40:u14:introspection_encrypted_response_alg, +9:uI2:,,""., +37:u00:introspection_signed_response_alg, +10:u01:("alg", +40:u05:introspection_encrypted_response_alg, +12:u12:default,, +40:u13:introspection_encrypted_response_alg, +9:uI1:,,""., +10:u00:("alg", +40:u04:introspection_encrypted_response_alg, +14:u08:performed., +12:u11:default,, +40:u12:introspection_encrypted_response_alg, +9:uI0:,,""., +40:u03:introspection_encrypted_response_alg, +12:u10:default,, +40:u11:introspection_encrypted_response_alg, +40:u02:introspection_encrypted_response_alg, +14:u07:performed., +40:u10:introspection_encrypted_response_alg, +40:u01:introspection_encrypted_response_alg, +14:u06:performed., +40:u08:introspection_encrypted_response_enc, +10:u08:Nested, +14:u14:performed., +40:u00:introspection_encrypted_response_alg, +14:u05:performed., +10:u07:Nested, +14:u13:performed., +14:u04:performed., +40:u07:introspection_encrypted_response_enc, +10:u06:Nested, +10:u08:("enc", +14:u12:performed., +14:u03:performed., +40:u06:introspection_encrypted_response_enc, +10:u05:Nested, +10:u07:("enc", +14:u11:performed., +40:u14:introspection_encrypted_response_enc, +14:u02:performed., +40:u05:introspection_encrypted_response_enc, +10:u04:Nested, +10:u06:("enc", +14:u10:performed., +40:u13:introspection_encrypted_response_enc, +14:u01:performed., +40:u04:introspection_encrypted_response_enc, +43:u08:"introspection_encrypted_response_alg"., +10:u03:Nested, +10:u05:("enc", +40:u12:introspection_encrypted_response_enc, +14:u00:performed., +40:u03:introspection_encrypted_response_enc, +10:u02:Nested, +10:u04:("enc", +40:u11:introspection_encrypted_response_enc, +40:u02:introspection_encrypted_response_enc, +43:u07:"introspection_encrypted_response_alg"., +14:u08:"jwks_uri", +10:u01:Nested, +10:u03:("enc", +40:u10:introspection_encrypted_response_enc, +11:uI2:,,"-".:, +40:u01:introspection_encrypted_response_enc, +43:u06:"introspection_encrypted_response_alg"., +10:u00:Nested, +10:u02:("enc", +43:u14:"introspection_encrypted_response_alg"., +11:uI1:,,"-".:, +40:u00:introspection_encrypted_response_enc, +43:u05:"introspection_encrypted_response_alg"., +14:u07:"jwks_uri", +10:u01:("enc", +43:u13:"introspection_encrypted_response_alg"., +11:uI0:,,"-".:, +43:u04:"introspection_encrypted_response_alg"., +14:u06:"jwks_uri", +10:u00:("enc", +43:u12:"introspection_encrypted_response_alg"., +14:u14:"jwks_uri", +43:u03:"introspection_encrypted_response_alg"., +14:u05:"jwks_uri", +43:u11:"introspection_encrypted_response_alg"., +14:u13:"jwks_uri", +43:u02:"introspection_encrypted_response_alg"., +14:u04:"jwks_uri", +43:u10:"introspection_encrypted_response_alg"., +14:u12:"jwks_uri", +6:u21:"j, +7:u22:"jw, +8:u23:"jwk, +43:u01:"introspection_encrypted_response_alg"., +14:u03:"jwks_uri", +14:u11:"jwks_uri", +43:u00:"introspection_encrypted_response_alg"., +14:u02:"jwks_uri", +14:u10:"jwks_uri", +14:u01:"jwks_uri", +14:u00:"jwks_uri", +46:u08:introspection_signing_alg_values_supported, +46:u07:introspection_signing_alg_values_supported, +46:u06:introspection_signing_alg_values_supported, +11:u08:values), +46:u14:introspection_signing_alg_values_supported, +46:u05:introspection_signing_alg_values_supported, +49:u08:introspection_encryption_alg_values_supported, +11:u07:values), +46:u13:introspection_signing_alg_values_supported, +46:u04:introspection_signing_alg_values_supported, +11:u06:values), +46:u12:introspection_signing_alg_values_supported, +46:u03:introspection_signing_alg_values_supported, +49:u07:introspection_encryption_alg_values_supported, +11:u05:values), +46:u11:introspection_signing_alg_values_supported, +46:u02:introspection_signing_alg_values_supported, +49:u06:introspection_encryption_alg_values_supported, +11:u04:values), +46:u10:introspection_signing_alg_values_supported, +49:u14:introspection_encryption_alg_values_supported, +46:u01:introspection_signing_alg_values_supported, +49:u05:introspection_encryption_alg_values_supported, +49:u08:introspection_encryption_enc_values_supported, +11:u03:values), +49:u13:introspection_encryption_alg_values_supported, +46:u00:introspection_signing_alg_values_supported, +49:u04:introspection_encryption_alg_values_supported, +11:u02:values), +49:u12:introspection_encryption_alg_values_supported, +49:u03:introspection_encryption_alg_values_supported, +49:u07:introspection_encryption_enc_values_supported, +11:u01:values), +49:u11:introspection_encryption_alg_values_supported, +49:u02:introspection_encryption_alg_values_supported, +49:u06:introspection_encryption_enc_values_supported, +11:u00:values), +49:u10:introspection_encryption_alg_values_supported, +49:u14:introspection_encryption_enc_values_supported, +49:u01:introspection_encryption_alg_values_supported, +49:u05:introspection_encryption_enc_values_supported, +49:u13:introspection_encryption_enc_values_supported, +49:u00:introspection_encryption_alg_values_supported, +49:u04:introspection_encryption_enc_values_supported, +49:u12:introspection_encryption_enc_values_supported, +10:u14:("enc", +49:u03:introspection_encryption_enc_values_supported, +49:u11:introspection_encryption_enc_values_supported, +10:u13:("enc", +49:u02:introspection_encryption_enc_values_supported, +17:u08:syntactically, +49:u10:introspection_encryption_enc_values_supported, +10:u12:("enc", +7:u22:("e, +8:u23:("en, +49:u01:introspection_encryption_enc_values_supported, +15:u08:impersonate, +12:u08:similar., +10:u11:("enc", +49:u00:introspection_encryption_enc_values_supported, +17:u07:syntactically, +12:u07:similar., +10:u10:("enc", +17:u06:syntactically, +15:u07:impersonate, +12:u06:similar., +17:u14:syntactically, +17:u05:syntactically, +15:u06:impersonate, +12:u05:similar., +17:u13:syntactically, +15:u14:impersonate, +17:u04:syntactically, +15:u05:impersonate, +9:u08:"aud", +12:u04:similar., +17:u12:syntactically, +15:u13:impersonate, +17:u03:syntactically, +15:u04:impersonate, +12:u03:similar., +17:u11:syntactically, +15:u12:impersonate, +8:u23:impe, +17:u02:syntactically, +15:u03:impersonate, +9:u07:"aud", +12:u02:similar., +17:u10:syntactically, +15:u11:impersonate, +17:u01:syntactically, +15:u02:impersonate, +9:u06:"aud", +10:u08:OpenID, +12:u01:similar., +15:u10:impersonate, +9:u14:"aud", +17:u00:syntactically, +15:u01:impersonate, +9:u05:"aud", +9:u08:"iss", +12:u00:similar., +11:u08:Connect, +9:u13:"aud", +15:u00:impersonate, +9:u04:"aud", +10:u07:OpenID, +18:u08:[OpenID.Core]., +11:u07:Connect, +9:u12:"aud", +9:u03:"aud", +10:u06:OpenID, +9:u07:"iss", +11:u06:Connect, +11:u08:Relying, +9:u11:"aud", +10:u14:openid, +9:u02:"aud", +10:u05:OpenID, +9:u06:"iss", +18:u07:[OpenID.Core]., +11:u05:Connect, +11:u07:Relying, +9:u10:"aud", +10:u13:openid, +9:u14:"iss", +9:u01:"aud", +10:u04:OpenID, +9:u05:"iss", +18:u06:[OpenID.Core]., +11:u04:Connect, +11:u06:Relying, +10:u12:openid, +9:u13:"iss", +18:u14:[openid.core]., +12:uI2:""""...., +9:u00:"aud", +10:u03:OpenID, +9:u04:"iss", +18:u05:[OpenID.Core]., +11:u03:Connect, +11:u05:Relying, +10:u11:openid, +9:u12:"iss", +18:u13:[openid.core]., +12:uI1:""""...., +10:uI2:[.]."", +10:u02:OpenID, +9:u03:"iss", +18:u04:[OpenID.Core]., +11:u02:Connect, +11:u04:Relying, +10:u10:openid, +9:u11:"iss", +18:u12:[openid.core]., +7:u22:[Op, +8:u23:[Ope, +12:uI0:""""...., +10:uI1:[.]."", +10:u01:OpenID, +9:u02:"iss", +18:u03:[OpenID.Core]., +11:u01:Connect, +11:u03:Relying, +9:u10:"iss", +18:u11:[openid.core]., +10:uI0:[.]."", +10:u00:OpenID, +9:u01:"iss", +18:u02:[OpenID.Core]., +29:u08:[I-D.ietf-oauth-jwt-bcp]., +11:u00:Connect, +11:u02:Relying, +13:u08:Confusion, +18:u10:[openid.core]., +9:u00:"iss", +18:u01:[OpenID.Core]., +11:u01:Relying, +13:u07:Confusion, +18:u00:[OpenID.Core]., +29:u07:[I-D.ietf-oauth-jwt-bcp]., +11:u00:Relying, +13:u06:Confusion, +14:uI2:[-.---],.., +29:u06:[I-D.ietf-oauth-jwt-bcp]., +13:u05:Confusion, +29:u14:[i-d.ietf-oauth-jwt-bcp]., +14:uI1:[-.---],.., +29:u05:[I-D.ietf-oauth-jwt-bcp]., +13:u04:Confusion, +29:u13:[i-d.ietf-oauth-jwt-bcp]., +14:uI0:[-.---],.., +29:u04:[I-D.ietf-oauth-jwt-bcp]., +13:u03:Confusion, +29:u12:[i-d.ietf-oauth-jwt-bcp]., +29:u03:[I-D.ietf-oauth-jwt-bcp]., +13:u02:Confusion, +29:u11:[i-d.ietf-oauth-jwt-bcp]., +29:u02:[I-D.ietf-oauth-jwt-bcp]., +13:u01:Confusion, +29:u10:[i-d.ietf-oauth-jwt-bcp]., +29:u01:[I-D.ietf-oauth-jwt-bcp]., +13:u00:Confusion, +29:u00:[I-D.ietf-oauth-jwt-bcp]., +11:u08:higher), +11:u07:higher), +11:u06:higher), +11:u05:higher), +11:u04:higher), +11:u03:higher), +11:u02:higher), +11:u01:higher), +11:u00:higher), +12:uI2:,"/""/"., +12:uI1:,"/""/"., +8:u08:kept, +12:uI0:,"/""/"., +16:u08:confidential, +8:u07:kept, +16:u07:confidential, +8:u06:kept, +16:u06:confidential, +8:u14:kept, +8:u05:kept, +16:u05:confidential, +8:u13:kept, +8:u04:kept, +16:u04:confidential, +8:u12:kept, +7:u22:kep, +8:u23:kept, +8:u03:kept, +16:u03:confidential, +8:u11:kept, +8:u02:kept, +16:u02:confidential, +8:u10:kept, +8:u01:kept, +16:u01:confidential, +8:u00:kept, +16:u00:confidential, +17:u08:authorisation, +17:u07:authorisation, +17:u06:authorisation, +17:u05:authorisation, +17:u04:authorisation, +17:u03:authorisation, +8:u08:Tony, +17:u02:authorisation, +8:u07:Tony, +17:u01:authorisation, +8:u06:Tony, +17:u00:authorisation, +8:u05:Tony, +8:u04:Tony, +8:u03:Tony, +8:u02:Tony, +8:u01:Tony, +8:u00:Tony, +13:u08:Metadata", +13:u07:Metadata", +13:u06:Metadata", +13:u14:metadata", +13:u05:Metadata", +13:u13:metadata", +12:uI2:"[..][]:, +13:u04:Metadata", +13:u12:metadata", +7:u22:Met, +8:u23:Meta, +12:uI1:"[..][]:, +13:u03:Metadata", +13:u11:metadata", +12:uI0:"[..][]:, +7:uI2::"", +13:u02:Metadata", +13:u10:metadata", +7:uI1::"", +13:u01:Metadata", +7:uI0::"", +13:u00:Metadata", +11:uI2:():[[]], +11:uI1:():[[]], +11:uI0:():[[]], +27:u08:[IANA.OAuth.Parameters], +27:u07:[IANA.OAuth.Parameters], +27:u06:[IANA.OAuth.Parameters], +27:u14:[iana.oauth.parameters], +27:u05:[IANA.OAuth.Parameters], +27:u13:[iana.oauth.parameters], +11:uI2:[..][]., +27:u04:[IANA.OAuth.Parameters], +27:u12:[iana.oauth.parameters], +11:uI1:[..][]., +27:u03:[IANA.OAuth.Parameters], +27:u11:[iana.oauth.parameters], +11:uI0:[..][]., +27:u02:[IANA.OAuth.Parameters], +27:u10:[iana.oauth.parameters], +27:u01:[IANA.OAuth.Parameters], +27:u00:[IANA.OAuth.Parameters], +12:u08:signing., +12:u07:signing., +12:u06:signing., +12:u14:signing., +12:u05:signing., +12:u13:signing., +12:u04:signing., +12:u12:signing., +12:u03:signing., +12:u11:signing., +12:u02:signing., +8:u08:(alg, +12:u10:signing., +12:u01:signing., +8:u07:(alg, +12:u00:signing., +8:u06:(alg, +8:u05:(alg, +8:u04:(alg, +8:u03:(alg, +8:u02:(alg, +8:u08:(enc, +8:u01:(alg, +8:u07:(enc, +8:u00:(alg, +8:u06:(enc, +8:u05:(enc, +8:u04:(enc, +8:u03:(enc, +8:u02:(enc, +8:u01:(enc, +8:u00:(enc, +11:uI2:[.],.,", +11:uI1:[.],.,", +10:uI2:".[..], +11:uI0:[.],.,", +10:uI1:".[..], +10:uI0:".[..], +7:uI2::-', +7:uI1::-', +7:uI0::-', +7:uI2:-'., +7:uI1:-'., +7:uI0:-'., +12:uI2:():[.],., +12:uI1:():[.],., +12:uI0:():[.],., +11:uI2::()()-., +11:uI1::()()-., +11:uI0::()()-., +10:u08:family, +10:u07:family, +10:u06:family, +10:u05:family, +10:u04:family, +7:u22:fam, +8:u23:fami, +10:u03:family, +13:u08:cultures,, +10:u02:family, +10:u08:people, +10:u01:family, +13:u07:cultures,, +10:u07:people, +10:u00:family, +13:u06:cultures,, +10:u06:people, +13:u14:cultures,, +9:uI2::()-., +13:u05:cultures,, +10:u05:people, +13:u13:cultures,, +9:uI1::()-., +13:u04:cultures,, +10:u04:people, +13:u12:cultures,, +7:u22:cul, +8:u23:cult, +9:uI0::()-., +13:u03:cultures,, +10:u03:people, +13:u11:cultures,, +13:u02:cultures,, +10:u02:people, +13:u10:cultures,, +13:u01:cultures,, +10:u01:people, +13:u00:cultures,, +10:u00:people, +6:u08:/,, +6:u07:/,, +6:u06:/,, +6:u14:/,, +6:u05:/,, +6:u13:/,, +6:u04:/,, +6:u12:/,, +6:u21:/,, +6:u22:/,, +6:u23:/,, +6:u03:/,, +6:u11:/,, +6:u02:/,, +6:u10:/,, +6:u01:/,, +6:u00:/,, +19:u08:Description:URL, +19:u07:Description:URL, +19:u06:Description:URL, +19:u05:Description:URL, +8:uI2::-'., +19:u04:Description:URL, +8:uI1::-'., +19:u03:Description:URL, +8:uI0::-'., +10:u08:file),, +19:u02:Description:URL, +19:u01:Description:URL, +10:u07:file),, +19:u00:Description:URL, +7:u08:URL, +10:u06:file),, +7:u07:URL, +10:u14:file),, +10:u05:file),, +7:u06:URL, +10:u13:file),, +10:u04:file),, +7:u05:URL, +10:u12:file),, +10:u03:file),, +7:u04:URL, +10:u11:file),, +10:u02:file),, +7:u03:URL, +10:u10:file),, +10:u01:file),, +7:u02:URL, +10:u00:file),, +7:u01:URL, +7:u00:URL, +9:uI2::-'-., +9:uI1::-'-., +10:uI2:[]"-"., +9:uI0::-'-., +10:uI1:[]"-"., +10:uI0:[]"-"., +13:u08:verified;, +13:u07:verified;, +10:u08:e-mail, +13:u06:verified;, +13:u14:verified;, +8:uI2::-'-, +13:u05:verified;, +10:u07:e-mail, +13:u13:verified;, +8:uI1::-'-, +7:uI2:;.,, +13:u04:verified;, +10:u06:e-mail, +13:u12:verified;, +10:u14:e-mail, +8:uI0::-'-, +7:uI1:;.,, +13:u03:verified;, +10:u05:e-mail, +13:u11:verified;, +10:u13:e-mail, +7:uI0:;.,, +13:u02:verified;, +10:u04:e-mail, +13:u10:verified;, +10:u12:e-mail, +6:u21:e-, +7:u22:e-m, +8:u23:e-ma, +13:u01:verified;, +10:u03:e-mail, +10:u11:e-mail, +13:u00:verified;, +10:u02:e-mail, +10:u10:e-mail, +10:u01:e-mail, +10:u00:e-mail, +26:u08:Description:End-User's, +26:u07:Description:End-User's, +26:u06:Description:End-User's, +26:u05:Description:End-User's, +26:u04:Description:End-User's, +26:u03:Description:End-User's, +26:u02:Description:End-User's, +20:u08:Description:Time, +21:u08:1970-01-01T0:0:0Z, +26:u01:Description:End-User's, +20:u07:Description:Time, +26:u00:Description:End-User's, +20:u06:Description:Time, +21:u07:1970-01-01T0:0:0Z, +20:u05:Description:Time, +21:u06:1970-01-01T0:0:0Z, +20:u04:Description:Time, +21:u14:1970-01-01t0:0:0z, +21:u05:1970-01-01T0:0:0Z, +20:u03:Description:Time, +21:u13:1970-01-01t0:0:0z, +10:uI2:--::/., +21:u04:1970-01-01T0:0:0Z, +20:u02:Description:Time, +21:u12:1970-01-01t0:0:0z, +8:u23:1970, +10:uI1:--::/., +21:u03:1970-01-01T0:0:0Z, +20:u01:Description:Time, +21:u11:1970-01-01t0:0:0z, +10:uI0:--::/., +21:u02:1970-01-01T0:0:0Z, +20:u00:Description:Time, +24:u08:America/Los_Angeles., +21:u10:1970-01-01t0:0:0z, +21:u01:1970-01-01T0:0:0Z, +24:u07:America/Los_Angeles., +21:u00:1970-01-01T0:0:0Z, +24:u06:America/Los_Angeles., +9:uI2:-'.,/, +24:u05:America/Los_Angeles., +9:uI1:-'.,/, +24:u04:America/Los_Angeles., +9:uI0:-'.,/, +24:u03:America/Los_Angeles., +8:u08:tag., +24:u02:America/Los_Angeles., +8:u07:tag., +24:u01:America/Los_Angeles., +8:u06:tag., +10:uI2::-',[], +24:u00:America/Los_Angeles., +8:u05:tag., +10:uI1::-',[], +10:uI2:.--[-], +8:u04:tag., +10:uI0::-',[], +10:uI1:.--[-], +9:uI2:--[-], +8:u03:tag., +10:uI0:.--[-], +9:uI1:--[-], +8:u02:tag., +9:uI0:--[-], +11:u08:country, +8:u01:tag., +8:u00:tag., +11:u07:country, +11:u06:country, +11:u14:country, +11:u05:country, +10:u08:en_US;, +11:u13:country, +11:u04:country, +10:u07:en_US;, +11:u12:country, +11:u03:country, +10:u06:en_US;, +11:u11:country, +11:u02:country, +10:u05:en_US;, +11:u10:country, +11:u01:country, +10:u04:en_US;, +11:u00:country, +10:u03:en_US;, +12:u08:555-1212, +10:u02:en_US;, +14:u08:extension,, +10:u01:en_US;, +12:u07:555-1212, +10:u00:en_US;, +11:uI2::-'.[.], +12:u06:555-1212, +14:u07:extension,, +22:u08:555-1234;ext=5678., +12:u14:555-1212, +11:uI1::-'.[.], +12:u05:555-1212, +14:u06:extension,, +12:u13:555-1212, +14:u14:extension,, +11:uI0::-'.[.], +12:u04:555-1212, +14:u05:extension,, +22:u07:555-1234;ext=5678., +12:u12:555-1212, +14:u13:extension,, +6:u21:55, +7:u22:555, +8:u23:555-, +12:u03:555-1212, +14:u04:extension,, +22:u06:555-1234;ext=5678., +12:u11:555-1212, +14:u12:extension,, +22:u14:555-1234;ext=5678., +10:uI2:[],,(), +12:u02:555-1212, +14:u03:extension,, +22:u05:555-1234;ext=5678., +12:u10:555-1212, +14:u11:extension,, +22:u13:555-1234;ext=5678., +10:uI1:[],,(), +7:uI2:-;., +12:u01:555-1212, +14:u02:extension,, +22:u04:555-1234;ext=5678., +14:u10:extension,, +22:u12:555-1234;ext=5678., +10:uI0:[],,(), +7:uI1:-;., +12:u00:555-1212, +14:u01:extension,, +22:u03:555-1234;ext=5678., +22:u11:555-1234;ext=5678., +7:uI0:-;., +14:u00:extension,, +22:u02:555-1234;ext=5678., +22:u10:555-1234;ext=5678., +22:u01:555-1234;ext=5678., +22:u00:555-1234;ext=5678., +21:u08:context-specific,, +15:u08:contractual, +21:u07:context-specific,, +14:u08:agreements, +21:u06:context-specific,, +15:u07:contractual, +14:u07:agreements, +21:u14:context-specific,, +21:u05:context-specific,, +15:u06:contractual, +14:u06:agreements, +21:u13:context-specific,, +15:u14:contractual, +21:u04:context-specific,, +15:u05:contractual, +14:u05:agreements, +21:u12:context-specific,, +15:u13:contractual, +21:u03:context-specific,, +15:u04:contractual, +14:u04:agreements, +21:u11:context-specific,, +15:u12:contractual, +8:uI2:,[.], +21:u02:context-specific,, +15:u03:contractual, +14:u03:agreements, +21:u10:context-specific,, +15:u11:contractual, +8:uI1:,[.], +21:u01:context-specific,, +15:u02:contractual, +14:u02:agreements, +15:u10:contractual, +8:uI0:,[.], +21:u00:context-specific,, +15:u01:contractual, +14:u01:agreements, +15:u00:contractual, +14:u00:agreements, +11:uI2:[.],..., +11:uI1:[.],..., +11:uI0:[.],..., +11:u08:[E.164], +20:u08:Standardization,, +11:u07:[E.164], +11:u06:[E.164], +20:u07:Standardization,, +54:u08:<https://www.itu.int/rec/T-REC-E.164-201011-I/en>., +21:u08:telecommunication, +11:u14:[e.164], +11:u05:[E.164], +20:u06:Standardization,, +28:u08:[I-D.ietf-oauth-jwt-bcp], +21:u07:telecommunication, +11:u13:[e.164], +20:u14:standardization,, +11:u04:[E.164], +20:u05:Standardization,, +54:u07:<https://www.itu.int/rec/T-REC-E.164-201011-I/en>., +21:u06:telecommunication, +11:u12:[e.164], +20:u13:standardization,, +7:u22:[E., +8:u23:[E.1, +12:uI2:,...,".:, +11:u03:[E.164], +20:u04:Standardization,, +54:u06:<https://www.itu.int/rec/T-REC-E.164-201011-I/en>., +28:u07:[I-D.ietf-oauth-jwt-bcp], +21:u05:telecommunication, +7:u08:Y.,, +11:u11:[e.164], +20:u12:standardization,, +54:u14:<https://www.itu.int/rec/t-rec-e.164-201011-i/en>., +12:uI1:,...,".:, +11:u02:[E.164], +20:u03:Standardization,, +54:u05:<https://www.itu.int/rec/T-REC-E.164-201011-I/en>., +28:u06:[I-D.ietf-oauth-jwt-bcp], +21:u04:telecommunication, +7:u07:Y.,, +15:u08:Practices",, +11:u10:[e.164], +20:u11:standardization,, +54:u13:<https://www.itu.int/rec/t-rec-e.164-201011-i/en>., +28:u14:[i-d.ietf-oauth-jwt-bcp], +12:uI0:,...,".:, +18:uI2:://..//--.--/., +11:u01:[E.164], +20:u02:Standardization,, +54:u04:<https://www.itu.int/rec/T-REC-E.164-201011-I/en>., +28:u05:[I-D.ietf-oauth-jwt-bcp], +36:u08:[I-D.ietf-oauth-security-topics], +21:u03:telecommunication, +7:u06:Y.,, +15:u07:Practices",, +20:u10:standardization,, +54:u12:<https://www.itu.int/rec/t-rec-e.164-201011-i/en>., +28:u13:[i-d.ietf-oauth-jwt-bcp], +12:u14:sheffer,, +18:uI1:://..//--.--/., +11:u00:[E.164], +20:u01:Standardization,, +54:u03:<https://www.itu.int/rec/T-REC-E.164-201011-I/en>., +28:u04:[I-D.ietf-oauth-jwt-bcp], +16:u08:Lodderstedt,, +21:u02:telecommunication, +7:u05:Y.,, +15:u06:Practices",, +54:u11:<https://www.itu.int/rec/t-rec-e.164-201011-i/en>., +28:u12:[i-d.ietf-oauth-jwt-bcp], +12:u13:sheffer,, +18:uI0:://..//--.--/., +20:u00:Standardization,, +54:u02:<https://www.itu.int/rec/T-REC-E.164-201011-I/en>., +28:u03:[I-D.ietf-oauth-jwt-bcp], +36:u07:[I-D.ietf-oauth-security-topics], +10:u08:"OAuth, +21:u01:telecommunication, +7:u04:Y.,, +15:u05:Practices",, +54:u10:<https://www.itu.int/rec/t-rec-e.164-201011-i/en>., +28:u11:[i-d.ietf-oauth-jwt-bcp], +12:u12:sheffer,, +8:u23:Shef, +54:u01:<https://www.itu.int/rec/T-REC-E.164-201011-I/en>., +28:u02:[I-D.ietf-oauth-jwt-bcp], +36:u06:[I-D.ietf-oauth-security-topics], +16:u07:Lodderstedt,, +28:u08:oauth-security-topics-13, +21:u00:telecommunication, +7:u03:Y.,, +15:u04:Practices",, +28:u10:[i-d.ietf-oauth-jwt-bcp], +12:u11:sheffer,, +36:u14:[i-d.ietf-oauth-security-topics], +54:u00:<https://www.itu.int/rec/T-REC-E.164-201011-I/en>., +28:u01:[I-D.ietf-oauth-jwt-bcp], +36:u05:[I-D.ietf-oauth-security-topics], +10:u07:"OAuth, +15:u08:[ISO3166-1], +7:u02:Y.,, +15:u03:Practices",, +12:u10:sheffer,, +36:u13:[i-d.ietf-oauth-security-topics], +16:u14:lodderstedt,, +28:u00:[I-D.ietf-oauth-jwt-bcp], +36:u04:[I-D.ietf-oauth-security-topics], +10:u06:"OAuth, +28:u07:oauth-security-topics-13, +7:u01:Y.,, +15:u02:Practices",, +36:u12:[i-d.ietf-oauth-security-topics], +16:u13:lodderstedt,, +10:u14:"oauth, +36:u03:[I-D.ietf-oauth-security-topics], +10:u05:"OAuth, +28:u06:oauth-security-topics-13, +15:u07:[ISO3166-1], +7:u00:Y.,, +15:u01:Practices",, +36:u11:[i-d.ietf-oauth-security-topics], +16:u12:lodderstedt,, +10:u13:"oauth, +28:u14:oauth-security-topics-13, +10:uI2:".",--, +36:u02:[I-D.ietf-oauth-security-topics], +10:u04:"OAuth, +28:u05:oauth-security-topics-13, +15:u06:[ISO3166-1], +16:u08:subdivisions, +15:u00:Practices",, +36:u10:[i-d.ietf-oauth-security-topics], +16:u11:lodderstedt,, +10:u12:"oauth, +28:u13:oauth-security-topics-13, +15:u14:[iso3166-1], +7:u22:"OA, +8:u23:"OAu, +10:uI1:".",--, +36:u01:[I-D.ietf-oauth-security-topics], +10:u03:"OAuth, +28:u04:oauth-security-topics-13, +15:u05:[ISO3166-1], +46:u08:<https://www.iso.org/standard/63545.html>., +10:u08:--Part, +16:u10:lodderstedt,, +10:u11:"oauth, +28:u12:oauth-security-topics-13, +15:u13:[iso3166-1], +10:uI0:".",--, +36:u00:[I-D.ietf-oauth-security-topics], +10:u02:"OAuth, +28:u03:oauth-security-topics-13, +15:u04:[ISO3166-1], +16:u07:subdivisions, +14:u08:[ISO639-1], +10:u07:--Part, +10:u10:"oauth, +28:u11:oauth-security-topics-13, +15:u12:[iso3166-1], +8:u23:[ISO, +13:uI2:,...,"-:., +10:u01:"OAuth, +28:u02:oauth-security-topics-13, +15:u03:[ISO3166-1], +16:u06:subdivisions, +46:u07:<https://www.iso.org/standard/63545.html>., +10:u06:--Part, +28:u10:oauth-security-topics-13, +15:u11:[iso3166-1], +16:u14:subdivisions, +13:uI1:,...,"-:., +10:u00:"OAuth, +28:u01:oauth-security-topics-13, +15:u02:[ISO3166-1], +16:u05:subdivisions, +46:u06:<https://www.iso.org/standard/63545.html>., +14:u07:[ISO639-1], +10:u05:--Part, +15:u10:[iso3166-1], +16:u13:subdivisions, +46:u14:<https://www.iso.org/standard/63545.html>., +13:uI0:,...,"-:., +10:uI2:--:",,, +28:u00:oauth-security-topics-13, +15:u01:[ISO3166-1], +16:u04:subdivisions, +46:u05:<https://www.iso.org/standard/63545.html>., +14:u06:[ISO639-1], +10:u04:--Part, +16:u12:subdivisions, +46:u13:<https://www.iso.org/standard/63545.html>., +14:u14:[iso639-1], +8:u23:subd, +10:uI1:--:",,, +13:uI2:://..//.., +15:u00:[ISO3166-1], +16:u03:subdivisions, +46:u04:<https://www.iso.org/standard/63545.html>., +14:u05:[ISO639-1], +17:u08:[OpenID.Core], +10:u03:--Part, +16:u11:subdivisions, +46:u12:<https://www.iso.org/standard/63545.html>., +14:u13:[iso639-1], +10:uI0:--:",,, +13:uI1:://..//.., +16:u02:subdivisions, +46:u03:<https://www.iso.org/standard/63545.html>., +14:u04:[ISO639-1], +13:u08:Sakimura,, +10:u02:--Part, +16:u10:subdivisions, +46:u11:<https://www.iso.org/standard/63545.html>., +14:u12:[iso639-1], +13:uI0:://..//.., +12:uI2:,...,"-:, +16:u01:subdivisions, +46:u02:<https://www.iso.org/standard/63545.html>., +14:u03:[ISO639-1], +17:u07:[OpenID.Core], +10:u01:--Part, +46:u10:<https://www.iso.org/standard/63545.html>., +14:u11:[iso639-1], +12:uI1:,...,"-:, +8:uI2:--:-, +16:u00:subdivisions, +46:u01:<https://www.iso.org/standard/63545.html>., +14:u02:[ISO639-1], +17:u06:[OpenID.Core], +13:u07:Sakimura,, +10:u08:errata, +10:u00:--Part, +14:u08:Mortimore,, +14:u10:[iso639-1], +17:u14:[openid.core], +12:uI0:,...,"-:, +8:uI1:--:-, +16:uI2:",,://..//.., +46:u00:<https://www.iso.org/standard/63545.html>., +14:u01:[ISO639-1], +17:u05:[OpenID.Core], +13:u06:Sakimura,, +59:u08:<http://openid.net/specs/openid-connect-core-1_0.html>., +14:u07:Mortimore,, +17:u13:[openid.core], +13:u14:sakimura,, +8:uI0:--:-, +16:uI1:",,://..//.., +14:u00:[ISO639-1], +17:u04:[OpenID.Core], +13:u05:Sakimura,, +10:u07:errata, +14:u06:Mortimore,, +17:u12:[openid.core], +13:u13:sakimura,, +16:uI0:",,://..//.., +17:uI2:,.,,.,,.,,..,, +17:u03:[OpenID.Core], +13:u04:Sakimura,, +10:u06:errata, +59:u07:<http://openid.net/specs/openid-connect-core-1_0.html>., +14:u05:Mortimore,, +17:u11:[openid.core], +13:u12:sakimura,, +10:u14:errata, +7:u22:Sak, +8:u23:Saki, +17:uI1:,.,,.,,.,,..,, +8:uI2:.,"., +17:u02:[OpenID.Core], +13:u03:Sakimura,, +10:u05:errata, +59:u06:<http://openid.net/specs/openid-connect-core-1_0.html>., +14:u04:Mortimore,, +17:u10:[openid.core], +13:u11:sakimura,, +10:u13:errata, +59:u14:<http://openid.net/specs/openid-connect-core-1_0.html>., +17:uI0:,.,,.,,.,,..,, +8:uI1:.,"., +17:u01:[OpenID.Core], +13:u02:Sakimura,, +10:u04:errata, +59:u05:<http://openid.net/specs/openid-connect-core-1_0.html>., +14:u03:Mortimore,, +13:u10:sakimura,, +10:u12:errata, +59:u13:<http://openid.net/specs/openid-connect-core-1_0.html>., +8:u23:erra, +8:uI0:.,"., +15:uI2:://.//---.., +17:u00:[OpenID.Core], +13:u01:Sakimura,, +10:u03:errata, +59:u04:<http://openid.net/specs/openid-connect-core-1_0.html>., +14:u02:Mortimore,, +10:u11:errata, +59:u12:<http://openid.net/specs/openid-connect-core-1_0.html>., +15:uI1:://.//---.., +13:u00:Sakimura,, +10:u02:errata, +59:u03:<http://openid.net/specs/openid-connect-core-1_0.html>., +14:u01:Mortimore,, +10:u10:errata, +59:u11:<http://openid.net/specs/openid-connect-core-1_0.html>., +15:uI0:://.//---.., +10:u01:errata, +59:u02:<http://openid.net/specs/openid-connect-core-1_0.html>., +25:u08:[OpenID.Registration], +14:u00:Mortimore,, +59:u10:<http://openid.net/specs/openid-connect-core-1_0.html>., +10:u00:errata, +59:u01:<http://openid.net/specs/openid-connect-core-1_0.html>., +59:u00:<http://openid.net/specs/openid-connect-core-1_0.html>., +25:u07:[OpenID.Registration], +25:u06:[OpenID.Registration], +25:u14:[openid.registration], +25:u05:[OpenID.Registration], +42:u08:openid-connect-registration-1_0.html>., +7:u08:Nov, +25:u13:[openid.registration], +25:u04:[OpenID.Registration], +7:u07:Nov, +25:u12:[openid.registration], +25:u03:[OpenID.Registration], +42:u07:openid-connect-registration-1_0.html>., +7:u06:Nov, +25:u11:[openid.registration], +25:u02:[OpenID.Registration], +42:u06:openid-connect-registration-1_0.html>., +7:u05:Nov, +25:u10:[openid.registration], +42:u14:openid-connect-registration-1_0.html>., +13:uI2:",,://.//, +25:u01:[OpenID.Registration], +42:u05:openid-connect-registration-1_0.html>., +7:u04:Nov, +42:u13:openid-connect-registration-1_0.html>., +13:uI1:",,://.//, +9:uI2:---.., +25:u00:[OpenID.Registration], +42:u04:openid-connect-registration-1_0.html>., +13:u08:[RFC3966], +7:u03:Nov, +42:u12:openid-connect-registration-1_0.html>., +13:uI0:",,://.//, +9:uI1:---.., +42:u03:openid-connect-registration-1_0.html>., +7:u02:Nov, +16:u08:Schulzrinne,, +42:u11:openid-connect-registration-1_0.html>., +9:uI0:---.., +42:u02:openid-connect-registration-1_0.html>., +13:u07:[RFC3966], +46:u08:<https://www.rfc-editor.org/info/rfc3966>., +7:u01:Nov, +16:u07:Schulzrinne,, +9:u08:3966,, +42:u10:openid-connect-registration-1_0.html>., +42:u01:openid-connect-registration-1_0.html>., +13:u06:[RFC3966], +13:u08:[RFC5322], +7:u00:Nov, +16:u06:Schulzrinne,, +9:u07:3966,, +13:u14:[rfc3966], +42:u00:openid-connect-registration-1_0.html>., +13:u05:[RFC3966], +46:u07:<https://www.rfc-editor.org/info/rfc3966>., +16:u05:Schulzrinne,, +9:u06:3966,, +12:u08:Resnick,, +13:u13:[rfc3966], +13:u04:[RFC3966], +46:u06:<https://www.rfc-editor.org/info/rfc3966>., +13:u07:[RFC5322], +46:u08:<https://www.rfc-editor.org/info/rfc5322>., +16:u04:Schulzrinne,, +9:u05:3966,, +12:u07:Resnick,, +21:u08:10.17487/RFC5322,, +13:u12:[rfc3966], +46:u14:<https://www.rfc-editor.org/info/rfc3966>., +13:u03:[RFC3966], +46:u05:<https://www.rfc-editor.org/info/rfc3966>., +13:u06:[RFC5322], +16:u03:Schulzrinne,, +9:u04:3966,, +12:u06:Resnick,, +21:u07:10.17487/RFC5322,, +13:u11:[rfc3966], +46:u13:<https://www.rfc-editor.org/info/rfc3966>., +13:u14:[rfc5322], +13:u02:[RFC3966], +46:u04:<https://www.rfc-editor.org/info/rfc3966>., +13:u05:[RFC5322], +46:u07:<https://www.rfc-editor.org/info/rfc5322>., +16:u02:Schulzrinne,, +9:u03:3966,, +12:u05:Resnick,, +21:u06:10.17487/RFC5322,, +13:u10:[rfc3966], +46:u12:<https://www.rfc-editor.org/info/rfc3966>., +13:u13:[rfc5322], +15:uI2:[],.,.,"",,, +13:u01:[RFC3966], +46:u03:<https://www.rfc-editor.org/info/rfc3966>., +13:u04:[RFC5322], +46:u06:<https://www.rfc-editor.org/info/rfc5322>., +16:u01:Schulzrinne,, +9:u02:3966,, +12:u04:Resnick,, +21:u05:10.17487/RFC5322,, +46:u11:<https://www.rfc-editor.org/info/rfc3966>., +13:u12:[rfc5322], +46:u14:<https://www.rfc-editor.org/info/rfc5322>., +15:uI1:[],.,.,"",,, +13:u00:[RFC3966], +46:u02:<https://www.rfc-editor.org/info/rfc3966>., +13:u03:[RFC5322], +46:u05:<https://www.rfc-editor.org/info/rfc5322>., +13:u08:[RFC7516], +16:u00:Schulzrinne,, +9:u01:3966,, +12:u03:Resnick,, +21:u04:10.17487/RFC5322,, +46:u10:<https://www.rfc-editor.org/info/rfc3966>., +13:u11:[rfc5322], +46:u13:<https://www.rfc-editor.org/info/rfc5322>., +15:uI0:[],.,.,"",,, +46:u01:<https://www.rfc-editor.org/info/rfc3966>., +13:u02:[RFC5322], +46:u04:<https://www.rfc-editor.org/info/rfc5322>., +9:u00:3966,, +12:u02:Resnick,, +21:u03:10.17487/RFC5322,, +13:u10:[rfc5322], +46:u12:<https://www.rfc-editor.org/info/rfc5322>., +46:u00:<https://www.rfc-editor.org/info/rfc3966>., +13:u01:[RFC5322], +46:u03:<https://www.rfc-editor.org/info/rfc5322>., +13:u07:[RFC7516], +46:u08:<https://www.rfc-editor.org/info/rfc7516>., +12:u01:Resnick,, +21:u02:10.17487/RFC5322,, +9:u08:7516,, +46:u11:<https://www.rfc-editor.org/info/rfc5322>., +13:u00:[RFC5322], +46:u02:<https://www.rfc-editor.org/info/rfc5322>., +13:u06:[RFC7516], +13:u08:[RFC7518], +12:u00:Resnick,, +21:u01:10.17487/RFC5322,, +9:u07:7516,, +46:u10:<https://www.rfc-editor.org/info/rfc5322>., +13:u14:[rfc7516], +46:u01:<https://www.rfc-editor.org/info/rfc5322>., +13:u05:[RFC7516], +46:u07:<https://www.rfc-editor.org/info/rfc7516>., +21:u00:10.17487/RFC5322,, +9:u06:7516,, +13:u13:[rfc7516], +15:uI2:[],..,"()",, +46:u00:<https://www.rfc-editor.org/info/rfc5322>., +13:u04:[RFC7516], +46:u06:<https://www.rfc-editor.org/info/rfc7516>., +13:u07:[RFC7518], +46:u08:<https://www.rfc-editor.org/info/rfc7518>., +9:u05:7516,, +21:u08:10.17487/RFC7518,, +13:u12:[rfc7516], +46:u14:<https://www.rfc-editor.org/info/rfc7516>., +15:uI1:[],..,"()",, +13:u03:[RFC7516], +46:u05:<https://www.rfc-editor.org/info/rfc7516>., +13:u06:[RFC7518], +13:u08:[RFC7519], +9:u04:7516,, +21:u07:10.17487/RFC7518,, +13:u11:[rfc7516], +46:u13:<https://www.rfc-editor.org/info/rfc7516>., +13:u14:[rfc7518], +15:uI0:[],..,"()",, +13:u02:[RFC7516], +46:u04:<https://www.rfc-editor.org/info/rfc7516>., +13:u05:[RFC7518], +46:u07:<https://www.rfc-editor.org/info/rfc7518>., +11:u08:(JWT)",, +9:u03:7516,, +21:u06:10.17487/RFC7518,, +13:u10:[rfc7516], +46:u12:<https://www.rfc-editor.org/info/rfc7516>., +13:u13:[rfc7518], +15:uI2:[],.,"()",,, +13:u01:[RFC7516], +46:u03:<https://www.rfc-editor.org/info/rfc7516>., +13:u04:[RFC7518], +46:u06:<https://www.rfc-editor.org/info/rfc7518>., +13:u07:[RFC7519], +46:u08:<https://www.rfc-editor.org/info/rfc7519>., +9:u02:7516,, +21:u05:10.17487/RFC7518,, +46:u11:<https://www.rfc-editor.org/info/rfc7516>., +13:u12:[rfc7518], +46:u14:<https://www.rfc-editor.org/info/rfc7518>., +15:uI1:[],.,"()",,, +13:u00:[RFC7516], +46:u02:<https://www.rfc-editor.org/info/rfc7516>., +13:u03:[RFC7518], +46:u05:<https://www.rfc-editor.org/info/rfc7518>., +13:u06:[RFC7519], +11:u07:(JWT)",, +13:u08:[RFC7525], +9:u01:7516,, +21:u04:10.17487/RFC7518,, +46:u10:<https://www.rfc-editor.org/info/rfc7516>., +13:u11:[rfc7518], +46:u13:<https://www.rfc-editor.org/info/rfc7518>., +13:u14:[rfc7519], +15:uI0:[],.,"()",,, +46:u01:<https://www.rfc-editor.org/info/rfc7516>., +13:u02:[RFC7518], +46:u04:<https://www.rfc-editor.org/info/rfc7518>., +13:u05:[RFC7519], +11:u06:(JWT)",, +46:u07:<https://www.rfc-editor.org/info/rfc7519>., +20:u08:"Recommendations, +9:u00:7516,, +21:u03:10.17487/RFC7518,, +13:u10:[rfc7518], +46:u12:<https://www.rfc-editor.org/info/rfc7518>., +13:u13:[rfc7519], +11:u14:(jwt)",, +46:u00:<https://www.rfc-editor.org/info/rfc7516>., +13:u01:[RFC7518], +46:u03:<https://www.rfc-editor.org/info/rfc7518>., +13:u04:[RFC7519], +11:u05:(JWT)",, +46:u06:<https://www.rfc-editor.org/info/rfc7519>., +13:u07:[RFC7525], +21:u02:10.17487/RFC7518,, +46:u11:<https://www.rfc-editor.org/info/rfc7518>., +13:u12:[rfc7519], +11:u13:(jwt)",, +46:u14:<https://www.rfc-editor.org/info/rfc7519>., +13:u00:[RFC7518], +46:u02:<https://www.rfc-editor.org/info/rfc7518>., +13:u03:[RFC7519], +11:u04:(JWT)",, +46:u05:<https://www.rfc-editor.org/info/rfc7519>., +13:u06:[RFC7525], +20:u07:"Recommendations, +12:u08:(DTLS)",, +21:u01:10.17487/RFC7518,, +9:u08:(TLS), +46:u10:<https://www.rfc-editor.org/info/rfc7518>., +13:u11:[rfc7519], +11:u12:(jwt)",, +46:u13:<https://www.rfc-editor.org/info/rfc7519>., +13:u14:[rfc7525], +7:u22:(JW, +8:u23:(JWT, +46:u01:<https://www.rfc-editor.org/info/rfc7518>., +13:u02:[RFC7519], +11:u03:(JWT)",, +46:u04:<https://www.rfc-editor.org/info/rfc7519>., +13:u05:[RFC7525], +20:u06:"Recommendations, +21:u00:10.17487/RFC7518,, +9:u07:(TLS), +13:u10:[rfc7519], +11:u11:(jwt)",, +46:u12:<https://www.rfc-editor.org/info/rfc7519>., +13:u13:[rfc7525], +20:u14:"recommendations, +15:uI2:[],.,,.,.-,, +46:u00:<https://www.rfc-editor.org/info/rfc7518>., +13:u01:[RFC7519], +11:u02:(JWT)",, +46:u03:<https://www.rfc-editor.org/info/rfc7519>., +13:u04:[RFC7525], +20:u05:"Recommendations, +12:u07:(DTLS)",, +13:u08:[RFC7591], +9:u06:(TLS), +46:u08:<https://www.rfc-editor.org/info/rfc7525>., +11:u10:(jwt)",, +46:u11:<https://www.rfc-editor.org/info/rfc7519>., +13:u12:[rfc7525], +20:u13:"recommendations, +15:uI1:[],.,,.,.-,, +13:u00:[RFC7519], +11:u01:(JWT)",, +46:u02:<https://www.rfc-editor.org/info/rfc7519>., +13:u03:[RFC7525], +20:u04:"Recommendations, +12:u06:(DTLS)",, +9:u05:(TLS), +46:u07:<https://www.rfc-editor.org/info/rfc7525>., +11:u08:Richer,, +46:u10:<https://www.rfc-editor.org/info/rfc7519>., +13:u11:[rfc7525], +20:u12:"recommendations, +12:u14:(dtls)",, +7:u22:"Re, +8:u23:"Rec, +15:uI0:[],.,,.,.-,, +11:u00:(JWT)",, +46:u01:<https://www.rfc-editor.org/info/rfc7519>., +13:u02:[RFC7525], +20:u03:"Recommendations, +12:u05:(DTLS)",, +13:u07:[RFC7591], +9:u04:(TLS), +46:u06:<https://www.rfc-editor.org/info/rfc7525>., +11:u07:Richer,, +9:u08:Hunt,, +13:u10:[rfc7525], +20:u11:"recommendations, +12:u13:(dtls)",, +13:uI2:()",,,./,, +46:u00:<https://www.rfc-editor.org/info/rfc7519>., +13:u01:[RFC7525], +20:u02:"Recommendations, +12:u04:(DTLS)",, +13:u06:[RFC7591], +46:u08:<https://www.rfc-editor.org/info/rfc7591>., +9:u03:(TLS), +46:u05:<https://www.rfc-editor.org/info/rfc7525>., +11:u06:Richer,, +9:u07:Hunt,, +9:u08:7591,, +20:u10:"recommendations, +12:u12:(dtls)",, +13:u14:[rfc7591], +7:u22:(DT, +8:u23:(DTL, +13:uI1:()",,,./,, +13:u00:[RFC7525], +20:u01:"Recommendations, +12:u03:(DTLS)",, +13:u05:[RFC7591], +9:u02:(TLS), +46:u04:<https://www.rfc-editor.org/info/rfc7525>., +11:u05:Richer,, +9:u06:Hunt,, +9:u07:7591,, +12:u11:(dtls)",, +13:u13:[rfc7591], +13:uI0:()",,,./,, +20:u00:"Recommendations, +12:u02:(DTLS)",, +13:u04:[RFC7591], +46:u07:<https://www.rfc-editor.org/info/rfc7591>., +9:u01:(TLS), +46:u03:<https://www.rfc-editor.org/info/rfc7525>., +11:u04:Richer,, +9:u05:Hunt,, +9:u06:7591,, +12:u10:(dtls)",, +13:u12:[rfc7591], +10:uI2:.,".",, +12:u01:(DTLS)",, +13:u03:[RFC7591], +46:u06:<https://www.rfc-editor.org/info/rfc7591>., +9:u00:(TLS), +46:u02:<https://www.rfc-editor.org/info/rfc7525>., +11:u03:Richer,, +9:u04:Hunt,, +9:u05:7591,, +13:u11:[rfc7591], +46:u14:<https://www.rfc-editor.org/info/rfc7591>., +10:uI1:.,".",, +12:u00:(DTLS)",, +13:u02:[RFC7591], +46:u05:<https://www.rfc-editor.org/info/rfc7591>., +46:u01:<https://www.rfc-editor.org/info/rfc7525>., +11:u02:Richer,, +9:u03:Hunt,, +9:u04:7591,, +13:u10:[rfc7591], +46:u13:<https://www.rfc-editor.org/info/rfc7591>., +10:uI0:.,".",, +13:u01:[RFC7591], +46:u04:<https://www.rfc-editor.org/info/rfc7591>., +46:u00:<https://www.rfc-editor.org/info/rfc7525>., +11:u01:Richer,, +9:u02:Hunt,, +9:u03:7591,, +46:u12:<https://www.rfc-editor.org/info/rfc7591>., +13:u00:[RFC7591], +46:u03:<https://www.rfc-editor.org/info/rfc7591>., +11:u00:Richer,, +9:u01:Hunt,, +9:u02:7591,, +46:u11:<https://www.rfc-editor.org/info/rfc7591>., +46:u02:<https://www.rfc-editor.org/info/rfc7591>., +13:u08:[RFC7662], +9:u00:Hunt,, +9:u01:7591,, +46:u10:<https://www.rfc-editor.org/info/rfc7591>., +46:u01:<https://www.rfc-editor.org/info/rfc7591>., +9:u00:7591,, +46:u00:<https://www.rfc-editor.org/info/rfc7591>., +13:u07:[RFC7662], +46:u08:<https://www.rfc-editor.org/info/rfc7662>., +9:u08:7662,, +13:u06:[RFC7662], +9:u07:7662,, +13:u14:[rfc7662], +13:u05:[RFC7662], +46:u07:<https://www.rfc-editor.org/info/rfc7662>., +9:u06:7662,, +13:u13:[rfc7662], +15:uI2:[],.,.,".",, +13:u04:[RFC7662], +46:u06:<https://www.rfc-editor.org/info/rfc7662>., +9:u05:7662,, +13:u12:[rfc7662], +46:u14:<https://www.rfc-editor.org/info/rfc7662>., +15:uI1:[],.,.,".",, +13:u03:[RFC7662], +46:u05:<https://www.rfc-editor.org/info/rfc7662>., +9:u04:7662,, +13:u11:[rfc7662], +46:u13:<https://www.rfc-editor.org/info/rfc7662>., +15:uI0:[],.,.,".",, +13:u02:[RFC7662], +46:u04:<https://www.rfc-editor.org/info/rfc7662>., +9:u03:7662,, +13:u10:[rfc7662], +46:u12:<https://www.rfc-editor.org/info/rfc7662>., +13:u01:[RFC7662], +46:u03:<https://www.rfc-editor.org/info/rfc7662>., +9:u02:7662,, +46:u11:<https://www.rfc-editor.org/info/rfc7662>., +13:u00:[RFC7662], +46:u02:<https://www.rfc-editor.org/info/rfc7662>., +9:u01:7662,, +46:u10:<https://www.rfc-editor.org/info/rfc7662>., +46:u01:<https://www.rfc-editor.org/info/rfc7662>., +13:u08:[RFC8414], +9:u00:7662,, +46:u00:<https://www.rfc-editor.org/info/rfc7662>., +13:u07:[RFC8414], +13:u06:[RFC8414], +46:u08:<https://www.rfc-editor.org/info/rfc8414>., +21:u08:10.17487/RFC8414,, +13:u14:[rfc8414], +13:u05:[RFC8414], +21:u07:10.17487/RFC8414,, +13:u13:[rfc8414], +16:uI2:[],.,,.,.,"., +13:u04:[RFC8414], +46:u07:<https://www.rfc-editor.org/info/rfc8414>., +21:u06:10.17487/RFC8414,, +13:u12:[rfc8414], +16:uI1:[],.,,.,.,"., +13:u03:[RFC8414], +46:u06:<https://www.rfc-editor.org/info/rfc8414>., +21:u05:10.17487/RFC8414,, +13:u11:[rfc8414], +46:u14:<https://www.rfc-editor.org/info/rfc8414>., +16:uI0:[],.,,.,.,"., +13:u02:[RFC8414], +46:u05:<https://www.rfc-editor.org/info/rfc8414>., +55:u08:<http://www.iana.org/assignments/oauth-parameters>., +21:u04:10.17487/RFC8414,, +13:u10:[rfc8414], +46:u13:<https://www.rfc-editor.org/info/rfc8414>., +13:u01:[RFC8414], +46:u04:<https://www.rfc-editor.org/info/rfc8414>., +21:u03:10.17487/RFC8414,, +46:u12:<https://www.rfc-editor.org/info/rfc8414>., +13:u00:[RFC8414], +46:u03:<https://www.rfc-editor.org/info/rfc8414>., +55:u07:<http://www.iana.org/assignments/oauth-parameters>., +6:u08:[[, +21:u02:10.17487/RFC8414,, +46:u11:<https://www.rfc-editor.org/info/rfc8414>., +8:uI2:[..], +46:u02:<https://www.rfc-editor.org/info/rfc8414>., +55:u06:<http://www.iana.org/assignments/oauth-parameters>., +7:u08:-07, +21:u01:10.17487/RFC8414,, +46:u10:<https://www.rfc-editor.org/info/rfc8414>., +55:u14:<http://www.iana.org/assignments/oauth-parameters>., +8:uI1:[..], +46:u01:<https://www.rfc-editor.org/info/rfc8414>., +55:u05:<http://www.iana.org/assignments/oauth-parameters>., +6:u07:[[, +21:u00:10.17487/RFC8414,, +55:u13:<http://www.iana.org/assignments/oauth-parameters>., +8:uI0:[..], +46:u00:<https://www.rfc-editor.org/info/rfc8414>., +55:u04:<http://www.iana.org/assignments/oauth-parameters>., +6:u06:[[, +7:u07:-07, +55:u12:<http://www.iana.org/assignments/oauth-parameters>., +6:u14:[[, +55:u03:<http://www.iana.org/assignments/oauth-parameters>., +6:u05:[[, +7:u06:-07, +7:u08:-06, +55:u11:<http://www.iana.org/assignments/oauth-parameters>., +6:u13:[[, +7:u14:-07, +55:u02:<http://www.iana.org/assignments/oauth-parameters>., +6:u04:[[, +7:u05:-07, +55:u10:<http://www.iana.org/assignments/oauth-parameters>., +6:u12:[[, +7:u13:-07, +6:u21:[[, +6:u22:[[, +6:u23:[[, +55:u01:<http://www.iana.org/assignments/oauth-parameters>., +6:u03:[[, +7:u04:-07, +7:u07:-06, +7:u08:-05, +6:u11:[[, +7:u12:-07, +6:u21:-0, +7:u22:-07, +7:u23:-07, +55:u00:<http://www.iana.org/assignments/oauth-parameters>., +6:u02:[[, +7:u03:-07, +7:u06:-06, +6:u10:[[, +7:u11:-07, +7:u14:-06, +6:u01:[[, +7:u02:-07, +7:u05:-06, +7:u07:-05, +12:u08:improved, +7:u10:-07, +7:u13:-06, +6:u00:[[, +7:u01:-07, +7:u04:-06, +7:u06:-05, +12:u07:improved, +7:u12:-06, +7:u14:-05, +7:u22:-06, +7:u23:-06, +7:u00:-07, +7:u03:-06, +7:u05:-05, +7:u08:-04, +12:u06:improved, +7:u11:-06, +7:u13:-05, +7:u02:-06, +7:u04:-05, +12:u05:improved, +7:u10:-06, +7:u12:-05, +7:u22:-05, +7:u23:-05, +7:u01:-06, +7:u03:-05, +7:u07:-04, +12:u04:improved, +7:u11:-05, +7:u00:-06, +7:u02:-05, +7:u06:-04, +12:u03:improved, +7:u10:-05, +7:u14:-04, +7:u01:-05, +7:u05:-04, +12:u02:improved, +7:u13:-04, +7:u00:-05, +7:u04:-04, +12:u01:improved, +7:u12:-04, +7:u22:-04, +7:u23:-04, +7:u03:-04, +12:u00:improved, +7:u11:-04, +7:u02:-04, +7:u10:-04, +7:u01:-04, +12:u08:reworked, +7:u00:-04, +12:u07:reworked, +7:u08:-03, +12:u06:reworked, +12:u05:reworked, +7:u07:-03, +12:u04:reworked, +7:u06:-03, +7:u08:-02, +12:u03:reworked, +7:u14:-03, +7:u05:-03, +12:u02:reworked, +7:u13:-03, +7:u04:-03, +7:u07:-02, +7:u08:-01, +12:u01:reworked, +7:u12:-03, +7:u22:-03, +7:u23:-03, +7:u03:-03, +7:u06:-02, +12:u00:reworked, +7:u11:-03, +7:u14:-02, +7:u02:-03, +7:u05:-02, +7:u07:-01, +8:u08:jwt", +7:u10:-03, +7:u13:-02, +7:u01:-03, +7:u04:-02, +7:u06:-01, +7:u12:-02, +7:u14:-01, +7:u22:-02, +7:u23:-02, +7:u00:-03, +7:u03:-02, +7:u05:-01, +8:u07:jwt", +7:u11:-02, +7:u13:-01, +7:u02:-02, +7:u04:-01, +8:u06:jwt", +7:u08:-00, +7:u10:-02, +7:u12:-01, +8:u14:jwt", +7:u22:-01, +7:u23:-01, +6:uI2:"/, +7:u01:-02, +7:u03:-01, +8:u05:jwt", +7:u11:-01, +8:u13:jwt", +6:uI1:"/, +7:u00:-02, +7:u02:-01, +8:u04:jwt", +7:u07:-00, +7:u10:-01, +8:u12:jwt", +6:u21:jw, +7:u22:jwt, +8:u23:jwt", +6:uI0:"/, +7:u01:-01, +8:u03:jwt", +7:u06:-00, +8:u11:jwt", +7:u14:-00, +7:u00:-01, +8:u02:jwt", +7:u05:-00, +8:u10:jwt", +7:u13:-00, +8:u01:jwt", +7:u04:-00, +9:u08:Added, +7:u12:-00, +7:u22:-00, +7:u23:-00, +8:u00:jwt", +7:u03:-00, +9:u07:Added, +7:u11:-00, +7:u02:-00, +6:u08:WG, +9:u06:Added, +7:u10:-00, +7:u01:-00, +9:u05:Added, +7:u00:-00, +6:u07:WG, +9:u04:Added, +6:u06:WG, +9:u03:Added, +6:u14:wg, +6:u05:WG, +9:u02:Added, +6:u13:wg, +9:u01:Added, +6:u12:wg, +6:u21:WG, +6:u22:WG, +6:u23:WG, +9:u00:Added, +6:u11:wg, +6:u10:wg, +13:u08:Stylistic, +13:u07:Stylistic, +13:u06:Stylistic, +11:u08:Torsten, +13:u05:Stylistic, +13:u04:Stylistic, +11:u07:Torsten, +13:u03:Stylistic, +11:u06:Torsten, +12:u08:Vladimir, +13:u02:Stylistic, +27:u08:torsten@lodderstedt.net, +11:u14:torsten, +11:u05:Torsten, +13:u01:Stylistic, +27:u07:torsten@lodderstedt.net, +11:u13:torsten, +11:u04:Torsten, +12:u07:Vladimir, +13:u00:Stylistic, +27:u06:torsten@lodderstedt.net, +11:u12:torsten, +8:u23:Tors, +11:u03:Torsten, +12:u06:Vladimir, +27:u05:torsten@lodderstedt.net, +27:u08:vladimir@connect2id.com, +11:u11:torsten, +12:u14:vladimir, +11:u02:Torsten, +12:u05:Vladimir, +27:u04:torsten@lodderstedt.net, +27:u07:vladimir@connect2id.com, +11:u10:torsten, +12:u13:vladimir, +11:u01:Torsten, +12:u04:Vladimir, +27:u03:torsten@lodderstedt.net, +27:u06:vladimir@connect2id.com, +12:u12:vladimir, +6:u21:Vl, +7:u22:Vla, +8:u23:Vlad, +11:u00:Torsten, +12:u03:Vladimir, +27:u02:torsten@lodderstedt.net, +27:u05:vladimir@connect2id.com, +12:u11:vladimir, +12:u02:Vladimir, +27:u01:torsten@lodderstedt.net, +27:u04:vladimir@connect2id.com, +12:u10:vladimir, +12:u01:Vladimir, +27:u00:torsten@lodderstedt.net, +27:u03:vladimir@connect2id.com, +12:u00:Vladimir, +27:u02:vladimir@connect2id.com, +27:u01:vladimir@connect2id.com, +113=0x1.84d1dfc05bd2bp-2 +414=0x1.187fbbe0be122p+0 +415=-0x1.6336a4cf44e26p+0 +416=0x1.4a869e55ca427p+0 +417=-0x1.afd707aa906abp-1 +418=0x1.828ae87e8b37p+0 +423=0x1.876302360d45fp+0 +424=-0x1.10c94248a295dp-3 +425=0x1.fd53efcab154cp-1 +426=-0x1.2752feeadba9ap-1 +427=0x1.02d82e87676d8p-1 +428=-0x1.6665406aa6f1ap+0 +430=0x1.086bf5ff849abp+0 +431=-0x1.375f4e216f4abp-5 +433=0x1.e2ba2f2c776d4p-18 +439=0x1.c323621a551abp-1 +442=-0x1.536b099df52d5p-11 +443=0x1.f81dbc51f9c7ap-3 +444=-0x1.021e0c6b9a845p-1 +449=-0x1.47d5824b8618dp-6 +487=0x1.59b26815a7fa7p-21 +496=0x1.65c700333aa9dp-3 +498=0x1.c52cb23cbe1d5p-16 +500=0x1.6762784a83248p-19 +503=0x1.e84946f158208p-6 +541=0x1.dfb31d4301e2ap-20 +550=0x1.7ed9e7696a72bp-5 +552=0x1.e35a34e9955c2p-17 +554=0x1.dcb5d9960fd33p-20 +557=0x1.d46c499d10637p-6 +595=0x1.dfb31d4301e2ap-20 +604=0x1.7ed9e7696a72bp-5 +606=0x1.e35a34e9955c2p-17 +608=0x1.dcb5d9960fd33p-20 +611=0x1.d46c499d10637p-6 +640=0x1.c4ac023650a02p-6 +644=-0x1.71233b8915eb6p-6 +658=0x1.c4b46652dc499p-6 +662=-0x1.706e87f41b4acp-6 +685=0x1.6b9ffba830a06p-21 +694=0x1.6365aed9a0ba4p-5 +696=0x1.4bd1d46824191p-18 +698=0x1.dca692a86a2f3p-20 +701=0x1.d0ab5a030959bp-6 +703=0x1.e3608f7407ee2p-20 +712=0x1.67ca54a104bdfp-5 +714=0x1.5e17d086c0b8fp-17 +716=0x1.dcb499d9c1f95p-20 +719=0x1.d47f0917d1ddep-6 +730=-0x1.e3646f899bb91p-3 +737=-0x1.61d8a3298fbe4p-3 +739=-0x1.5509a8605ba2fp-2 +748=0x1.df6feb20d017fp-18 +775=0x1.f3ad206e69048p-20 +777=-0x1.e9a7606a6da56p-4 +783=-0x1.13b7da80b1737p-3 +784=0x1.3a1d6a2277552p-5 +786=0x1.aafb74d2d68d3p-3 +788=0x1.c240aa4cf09ecp-20 +791=0x1.2a18df157f561p-3 +811=0x1.3d15b0c2c49dep-4 +813=-0x1.bfd096ba27c2p-2 +820=-0x1.b8bf3b10cc976p-7 +822=0x1.608a30038d22ep-18 +824=0x1.dc2906aad46a4p-8 +827=0x1.8e4414715dfd9p-3 +829=0x1.9d4f71fc9879p-20 +838=-0x1.cc581b54d9a1ap-7 +840=0x1.9f07911039aa9p-16 +842=0x1.21ca9e71c91ccp-18 +845=-0x1.7d580bea266aap-9 +865=0x1.09b1c901bc139p-19 +874=-0x1.579e1ecaaa0e6p-7 +876=0x1.bdc739efd510bp-16 +878=0x1.6e1637c1a1afep-19 +881=0x1.04a1b24675982p-6 +883=0x1.89baabdf4c1f8p-20 +892=0x1.151fd67e9105fp-3 +894=-0x1.fc2528b033116p-24 +896=0x1.07b66d0c2fee3p-8 +899=0x1.253401a4b5469p-7 +900=0x1.3207ea7a3168fp-3 +901=-0x1.54319aec1d17ap-15 +904=0x1.07af982628a21p-3 +908=0x1.8c96c42728572p-4 +909=-0x1.16069d7b862cdp-2 +910=-0x1.40076082dff42p-3 +912=-0x1.47b8a4411855fp-4 +913=0x1.7ac4f234fecb8p-24 +914=0x1.5a7b991a6e848p-4 +917=-0x1.a8d5b9c619a6ep-7 +919=0x1.6b9ffba830a06p-21 +928=0x1.6365aed9a0ba4p-5 +930=0x1.4bd1d46824191p-18 +932=0x1.dca692a86a2f3p-20 +935=0x1.d0ab5a030959bp-6 +937=0x1.6ae80b58eda1ep-21 +946=0x1.3c116d8e4db59p-4 +950=-0x1.3b05e75814397p-6 +953=0x1.127eae9efb61ep-5 +962=-0x1.cefc5560302cfp-1 +964=0x1.54db18a863117p-3 +966=0x1.e1dd317c01cep-16 +968=0x1.b0dfd84116b9cp-20 +971=0x1.4f6c842ee4d5ap-5 +973=0x1.6b9ffba830a06p-21 +982=0x1.6365aed9a0ba4p-5 +984=0x1.4bd1d46824191p-18 +986=0x1.dca692a86a2f3p-20 +989=0x1.d0ab5a030959bp-6 +991=-0x1.76ea8cc505d32p-6 +1000=-0x1.94f1a04019edep-10 +1002=0x1.a6f82f5b23c4dp-16 +1004=-0x1.b9eade53ec0aep-6 +1007=0x1.1f2ed4d5adec1p-5 +1018=0x1.39c7842aa1124p-3 +1020=-0x1.d5f29b7f40146p-33 +1025=0x1.beccb0bf80992p-11 +1027=-0x1.6196770baa682p-3 +1035=-0x1.7760cd24017aep-4 +1036=0x1.2950c34b5488p-11 +1040=0x1.227efb94fabb1p-20 +1042=-0x1.5849a91fc742ap-30 +1043=-0x1.2ea7d0084addbp-7 +1045=0x1.e3608f7407ee2p-20 +1054=0x1.67ca54a104bdfp-5 +1056=0x1.5e17d086c0b8fp-17 +1058=0x1.dcb499d9c1f95p-20 +1061=0x1.d47f0917d1ddep-6 +1063=0x1.d5becef5e9c78p-20 +1072=0x1.478a8134690efp-4 +1076=0x1.84d12cb0be8ap-20 +1079=0x1.03af7f5ea0b79p-5 +1088=-0x1.44fc4a9184103p-3 +1090=0x1.538af89ec283cp-3 +1092=0x1.a6ffa34d9a6f7p-16 +1094=0x1.b0ee8f78148ebp-20 +1097=0x1.4025eb70b67bp-5 +1099=0x1.e3608f7407ee2p-20 +1108=0x1.67ca54a104bdfp-5 +1110=0x1.5e17d086c0b8fp-17 +1112=0x1.dcb499d9c1f95p-20 +1115=0x1.d47f0917d1ddep-6 +1117=-0x1.e66cf4d703b77p-8 +1126=-0x1.6112f8b06cfd6p-11 +1128=0x1.a780797482f71p-16 +1130=-0x1.9facdb65d92cap-7 +1133=0x1.820284c47df95p-6 +1153=0x1.c08fac8968615p-3 +1154=0x1.81575742b2e6cp-3 +1155=0x1.f63ef53883a9bp-2 +1162=-0x1.e7a9f291a7233p-5 +1164=0x1.53fb59a5540b8p-17 +1166=0x1.03a7c4d40c144p-17 +1168=-0x1.e5effef1f9078p-20 +1169=0x1.bd32e02ed4301p-5 +1171=-0x1.41f3eda6513c6p-8 +1172=0x1.e85b944e05118p-4 +1173=0x1.1b76dbd2735p-10 +1180=-0x1.e59986b7e3807p-5 +1182=0x1.d86430a7ed451p-16 +1184=0x1.02e1c12386918p-17 +1186=-0x1.38e9869e1240ep-19 +1187=0x1.bcb0a74fadde4p-5 +1206=-0x1.1c81d1cc5edd9p-4 +1207=0x1.daa62908005dap-3 +1209=0x1.6ccf342f9e1e7p-4 +1216=0x1.7773358723ffep-9 +1218=0x1.0ecb22b4b86f1p-15 +1220=-0x1.cc6c0ed028cadp-6 +1222=-0x1.29d11d2bed62cp-20 +1223=0x1.13c2188e150fep-4 +1225=0x1.0474ee18348efp-4 +1228=-0x1.8ba9a490aecb1p+0 +1233=0x1.9b82c71150db1p-2 +1234=-0x1.e7c02c516a72bp-6 +1236=0x1.d1ef5da696b69p-16 +1237=0x1.b2dd8454a6589p-18 +1238=-0x1.84ef68e11978fp-3 +1241=-0x1.ccdb233fde7e1p-10 +1242=0x1.2b105f931bd39p+0 +1270=-0x1.2d1b98ef21b2ep-8 +1277=0x1.53da68292759p-19 +1279=0x1.5b28705690c9fp-23 +1294=0x1.92776163f3c8p-1 +1295=-0x1.0069c974f92b3p-9 +1297=-0x1.f19119c25d281p-5 +1304=0x1.5724c0f9b3b16p+0 +1306=0x1.5d1b6189d18f1p-3 +1308=-0x1.cb5e5b87ad243p-23 +1310=-0x1.a0baf0af83aa2p-17 +1313=0x1.7e0b766c9e946p-3 +1315=0x1.b870df26f23c3p-2 +1322=-0x1.25e84c17ae632p-2 +1323=0x1.774b3c531aefep-2 +1324=0x1.7f4e08543afcbp-3 +1326=0x1.408b3430375a7p-2 +1331=-0x1.05a3323ce358ep-7 +1339=0x1.5f19785613885p-19 +1342=-0x1.25be6d9ff0e97p-6 +1343=0x1.1887a889c89a6p-4 +1344=-0x1.c404be3b24419p-27 +1346=-0x1.cebfec36cac7ep-4 +1349=-0x1.6ef6070b73e0bp-6 +1367=0x1.901c2e00647c1p-5 +1405=0x1.0c50ea31dc837p-18 +1414=0x1.afca83d34daefp-4 +1416=0x1.905443335674bp-5 +1418=0x1.71bba9f618646p-18 +1420=-0x1.6bfa4318a0739p-21 +1421=0x1.1a32ab6a90a8bp-4 +1423=0x1.df04b832615cp-19 +1432=0x1.c49177e90afafp-4 +1434=0x1.8fc45cdae413fp-5 +1436=0x1.73df854870825p-18 +1438=-0x1.6b1b9c67d99c1p-21 +1439=0x1.1c079467a67ddp-4 +1441=0x1.fdcd762001615p-13 +1450=0x1.dcd2d335ee676p-4 +1452=0x1.918b4cc62fc85p-5 +1454=0x1.7911c3590aabcp-18 +1456=-0x1.6847d7c4c753bp-21 +1457=0x1.20b19266a0999p-4 +1495=-0x1.77bc1076a8c59p-7 +1504=-0x1.f9eb931a22ff3p-7 +1506=0x1.09ea581059884p-17 +1508=0x1.a9e265fef0d3bp-20 +1511=-0x1.c4008aa706facp-9 +1531=0x1.712f90a602856p-20 +1540=0x1.feb598f495e95p-6 +1542=0x1.0244b3d1b0863p-4 +1544=0x1.1782672d286ap-18 +1547=0x1.870e967d0b2f9p-5 +1566=0x1.8af9007246d26p-5 +1567=-0x1.e66db5e6a7cffp-9 +1568=-0x1.ec955279407adp-3 +1569=0x1.044b188def955p-4 +1576=0x1.0f054d9127441p-4 +1578=-0x1.4bc0169fcd1a9p-26 +1580=0x1.05bb6e020aea2p-19 +1581=0x1.cbfa2a30f01e1p-2 +1583=0x1.449925cb1aa93p-3 +1585=-0x1.6909106dbb5dap-7 +1594=0x1.dcd306128c4eep-5 +1596=0x1.e95b6f33ebfbdp-17 +1598=0x1.dcba7e49af65bp-20 +1601=0x1.de85fef4bf301p-6 +1639=0x1.69f4d4fe6dee4p-20 +1648=0x1.6233754b3193ep-3 +1650=0x1.a4b814ed6f184p-16 +1652=0x1.1eef8fddfdb34p-18 +1655=0x1.a6f7bee31a7d9p-4 +1656=0x1.1b158d71b9228p-20 +1657=-0x1.0e2df699e5b7fp-5 +1661=-0x1.8d2645398aafp-23 +1663=0x1.11948e1f42d94p-2 +1666=0x1.08c150ee5f392p-2 +1668=0x1.f1ece2c997f1bp-9 +1670=0x1.50f56c6a01986p-6 +1672=-0x1.305dde583786ep-25 +1673=0x1.470b240b53373p-4 +1675=0x1.d4680a673d408p+2 +1693=0x1.05e0af6d6868fp+3 +1696=0x1.0a7776f5de4b2p-2 +1702=-0x1.52b3cfcc8b798p+0 +1713=0x1.eabd2dca9756ap+2 +1731=0x1.efcf72fea84d5p+2 +1738=-0x1.079a59c4e6ff9p+0 +1750=-0x1.c4c5dd91b91afp-4 +1751=0x1.90a433c2e4203p+2 +1770=0x1.2754f74c373b3p+2 +1789=0x1.8ff7c20cd2687p+2 +1808=0x1.aa9feeb358e1p+0 +1818=0x1.328eecab92846p-2 +1826=0x1.7d0c8c49d8e4dp+1 +1827=0x1.d5cba5d84d262p-1 +1828=-0x1.ae4a2ded55f23p+1 +1831=0x1.3c1bdbce4b333p-4 +1834=0x1.8100861b8eb39p-2 +1835=-0x1.a6b7b0563075cp+1 +1846=0x1.87de1e9110d2bp+2 +1858=0x1.0673b4ad6a03bp+0 +1863=-0x1.444230cbfa9ebp+1 +1864=0x1.4cded848b9fe8p+2 +1868=-0x1.f46c7ecf93f9p-13 +1870=-0x1.75f397c41672fp+0 +1871=-0x1.9d3a672f0f8d2p+1 +1884=0x1.f392c125e21f3p+2 +1900=-0x1.d9fefd0c8bf91p-1 +1902=0x1.e176abe6492ap+2 +1905=0x1.8ed4e1615abc1p-3 +1907=-0x1.2e1c12912bb54p-2 +1922=0x1.0bda3ef76bfadp+3 +1936=-0x1.558518d61a839p-1 +1940=0x1.2be94ae155de3p+3 +1943=-0x1.7765199ec0d62p-1 +1944=0x1.3051f10932ae3p-1 +1979=0x1.704ddb19555d2p+2 +1989=-0x1.1a2f1d7a7b724p-25 +1990=-0x1.8f4d8f11f76b9p+1 +1996=-0x1.f09acfce49effp-2 +1997=0x1.fed429e1979a1p+1 +2402=0x1.073900867957dp+1 +2404=-0x1.2781f202ce73ep-14 +2411=-0x1.31ff7b39be8a4p-16 +2422=0x1.8ef4094eb7751p-4 +2429=0x1.99db8c4ac4371p-6 +2438=0x1.21af6e029dfaap-4 +2440=-0x1.68e7baa761fc2p-1 +2449=0x1.3d464efbe9548p-21 +2458=0x1.57c47184b2334p-3 +2460=0x1.0bf468e765d57p-16 +2462=0x1.c564f416f2a05p-20 +2465=0x1.c157f86ed00dbp-6 +2485=0x1.eb7ef95ce7be7p-20 +2494=0x1.995cc0d520592p-5 +2496=0x1.e3bd4a7198609p-17 +2498=0x1.dcab0b39006f1p-20 +2501=0x1.a26168c0f78e8p-6 +2521=0x1.eb7ef95ce7be7p-20 +2530=0x1.995cc0d520592p-5 +2532=0x1.e3bd4a7198609p-17 +2534=0x1.dcab0b39006f1p-20 +2537=0x1.a26168c0f78e8p-6 +2548=0x1.308b934b9cd71p-5 +2552=-0x1.70b2822e34f8p-6 +2557=0x1.0cc19496859f2p-19 +2566=0x1.7f771575d7686p-5 +2568=0x1.4ca2402821a0bp-18 +2570=0x1.dca80785aa809p-20 +2573=0x1.7b1120e02e9f2p-6 +2583=0x1.123042597e098p-9 +2584=-0x1.8b3a8fb59cf6cp-6 +2586=-0x1.033ea1aac20eap-2 +2587=0x1.c97f04cb09b11p-22 +2591=0x1.63173bb82d73dp-6 +2592=0x1.526c4d0bf5f5p-3 +2593=0x1.5ff15f6089a2fp-18 +2601=-0x1.41a0ed61f797ep-2 +2602=-0x1.939ec9c2c01e7p-6 +2606=0x1.eb1e57983585ap-21 +2609=-0x1.68d55974c5c93p-5 +2611=0x1.88a8009cef16ep-21 +2619=0x1.3a0089d9329d5p+0 +2620=-0x1.472195e12c643p-2 +2624=-0x1.b5546aba6b097p-4 +2627=-0x1.7a576ea036a18p-3 +2629=0x1.dae21d9a92f82p-20 +2631=-0x1.a975c54932211p-2 +2638=-0x1.8a507ee6c807bp-8 +2641=0x1.5e36bd38527b3p-3 +2642=0x1.bdf4bc630f5bap-20 +2645=0x1.bf9dad0cb0666p-4 +2647=0x1.0c610545a919ep-19 +2656=-0x1.166d7b2347eap-4 +2658=0x1.bfb7ae9d8a3e5p-16 +2660=0x1.24a6cc421a6b9p-18 +2663=-0x1.9cd011dca2ef8p-8 +2665=0x1.dac736ca6958bp-3 +2666=0x1.9ff5f82b4f143p-3 +2667=0x1.85c27a2f797f7p-3 +2674=-0x1.e68131912d8ebp-5 +2678=0x1.0395b21511317p-17 +2680=-0x1.a650a6e3ba8d8p-20 +2681=0x1.c36b6b0f3e454p-5 +2683=0x1.c6f6d7f292006p-20 +2690=0x1.26a7402aa84cfp-1 +2692=0x1.9166877af4346p-4 +2694=0x1.3900d9474b941p-4 +2696=-0x1.217c7a56a5593p-13 +2698=-0x1.1742911d90e6dp-21 +2699=0x1.1f780d813a3e3p-5 +2701=0x1.ad768f5fe5bddp-2 +2709=0x1.7f970f41cc31ep-6 +2710=-0x1.c778fc06ba027p-11 +2713=0x1.809dbc1b829aep-24 +2714=-0x1.8b06a7ca17328p-1 +2717=-0x1.a7923bdf8f5cep-7 +2719=0x1.58cab626f134ep-22 +2727=0x1.bf98a849d5df8p-1 +2728=-0x1.d0b79f9844001p-6 +2729=0x1.3d46f369ce8f4p+1 +2730=-0x1.8d7b9533b75dfp-4 +2731=0x1.24fce54cb6c42p-2 +2732=-0x1.fceed0db97047p-3 +2734=0x1.9e659d52b7092p+0 +2735=-0x1.e372aa3603d84p-20 +2753=0x1.d70cd9cb231b9p-4 +2755=0x1.236d468e76537p-21 +2763=0x1.0eae5d273b9d2p-3 +2764=-0x1.5d0b36be4908ap-6 +2768=-0x1.06419441e5826p-4 +2771=-0x1.9eea1e3b8540dp-12 +2773=0x1.d8c88ac28dcbep-6 +2775=-0x1.1ff58c01ebb6ap-1 +2782=0x1.85701a00291adp-4 +2784=-0x1.37616ef23da4cp-27 +2786=-0x1.aa10a05a94cb3p-2 +2789=-0x1.cdd97d8c2b25ap-7 +2800=-0x1.6c34607d50e8fp-12 +2802=0x1.a22a0ffce90ccp-2 +2804=0x1.d07739696a6acp-21 +2807=-0x1.7e4d977f0fffcp-13 +2818=0x1.35e7721e15ab8p-3 +2825=0x1.6359511b08ba8p-8 +2843=0x1.673119154e97p-6 +2845=0x1.43d092f878ddbp-23 +2854=0x1.0684cf7da332cp-3 +2872=0x1.3b566947e6bf8p-5 +2874=0x1.00c993671cf86p-16 +2876=0x1.5beec2de4244ep-19 +2879=0x1.826ae1b273deep-5 +2881=0x1.94de2d50c654ep-25 +2899=-0x1.8a5a0281a5bbp-8 +2901=0x1.aeb811deed9fep-23 +2902=0x1.8a1a4a17c479dp-1 +2907=-0x1.f29a8271db45ap-1 +2908=0x1.63b64c6603f04p-2 +2910=0x1.5e48a772c0b4ep-3 +2912=0x1.955947a39c5fp-5 +2915=0x1.221c5cc1bee48p-2 +3268=0x1.a87d9fb177a4bp-2 +3333=0x1.c8daf8181c24bp-24 +3335=0x1.c0516e0bf11b9p-1 +3340=0x1.15a80a2e1033dp-4 +3344=0x1.f70114d4ef32p-22 +3347=0x1.fe7ea74034302p-4 +3349=0x1.3b39005b098cep-21 +3357=-0x1.226fe23ddafc6p-7 +3358=0x1.6f5c53f3ff755p-3 +3360=0x1.d94a68b5a8746p-16 +3362=0x1.c3bddbb1440d7p-20 +3365=0x1.de291cfd02b1fp-5 +3367=0x1.edf0199119af8p-20 +3376=0x1.b683cc8f10396p-5 +3378=0x1.e49dca69a6041p-17 +3380=0x1.dcab8214d8f84p-20 +3383=0x1.9f743ad40bbb6p-6 +3385=0x1.edf0199119af8p-20 +3394=0x1.b683cc8f10396p-5 +3396=0x1.e49dca69a6041p-17 +3398=0x1.dcab8214d8f84p-20 +3401=0x1.9f743ad40bbb6p-6 +3405=0x1.18d54da2e1c59p-3 +3412=0x1.29d10bb254e1dp-4 +3416=0x1.7779f381072a7p-1 +3419=0x1.1774665a059c5p-5 +3430=-0x1.d5e2ba59642b9p-6 +3437=0x1.cd97f95be652cp-7 +3455=0x1.062942ebfd687p-5 +3457=0x1.7f77acc3d276dp-4 +3466=0x1.866d245d075edp-6 +3484=0x1.34f4049f13ebfp-4 +3491=-0x1.5b535ddd06dap-25 +3502=0x1.3c39a052f483bp-3 +3527=0x1.8b2b1895ec035p-5 +3537=0x1.5c100183c0f1bp-4 +3538=-0x1.33e36fc682a4ap-6 +3542=-0x1.73efddfb1beb5p-3 +3554=0x1.7c292a3c8d317p-2 +3560=0x1.ccb0479f9a2e7p-5 +3626=0x1.3341b8247d454p+0 +3907=0x1.27a1ab5e1972dp-7 +3979=0x1.485e6a5b86e3ep-21 +3981=0x1.1aec2f00ffed4p-1 +3988=0x1.21afeb60b2caap-4 +3990=0x1.88a779261dcb9p-18 +3992=0x1.94a9d50de7bebp-20 +3994=-0x1.0922661a36fe2p-1 +3995=0x1.2182162d16cap-3 +4006=-0x1.4c262600df413p-1 +4048=0x1.6c88aac0d7d11p-1 +4049=0x1.d88a76be036c8p-6 +4056=0x1.1fbebbdba97bdp+1 +4060=0x1.c1b3a6e911662p-4 +4062=0x1.bd11d2dc56905p-18 +4067=0x1.2b0c29f983283p-6 +4077=0x1.0b8763948a8eep-2 +4078=-0x1.04fe090d75b99p-7 +4085=0x1.021e44d99c86cp-5 +4086=0x1.909efc692db73p-3 +4094=0x1.729a43b07da87p-2 +4096=-0x1.7706f2e206fb1p-5 +4103=-0x1.accfa5589992cp-4 +4561=0x1.250298c5541f2p-4 +4564=0x1.3a06d27776512p-3 +4582=-0x1.aa590ecf00ca3p-13 +4589=0x1.b58e1ff28ec33p-6 +4600=-0x1.14ac788d0afdp-4 +4603=0x1.3eac3f3e58341p-1 +4606=0x1.89d43959943e4p-1 +4607=-0x1.3fb77b57330c2p-18 +4626=0x1.18b558d6cca4ap-4 +4635=0x1.2461ce5de1cffp-3 +4636=-0x1.4a4a9949ecde6p-1 +4639=0x1.846c87b936215p-4 +4642=0x1.f917f1603ec42p-3 +4969=-0x1.0524a29b0b0aap-3 +5041=0x1.c0e5fd3f41d52p-6 +5050=0x1.940bfb3bcce0ap-5 +5054=-0x1.20a523f0a869ep-21 +5057=0x1.037e848806972p-3 +5104=-0x1.1da1faacd1955p-13 +5106=0x1.26144a2a0bfefp-5 +5111=0x1.bd6458ca115b9p-6 +5113=0x1.60b8f24f4babep-22 +5122=-0x1.2290e84332689p-6 +5125=0x1.a2fdb137f99bp-3 +5129=-0x1.bc6177d6df644p-3 +5140=-0x1.8879025cdce37p-4 +5473=0x1.4ce9e46de8c97p-20 +5480=-0x1.20bd857d91b06p-2 +5482=0x1.2f2cedd0a4beep-3 +5484=0x1.1505259171f14p-2 +5489=0x1.c945fe618afbdp-4 +5491=-0x1.9a35c97c83635p-5 +5507=0x1.b9f254d23716ap-9 +5954=-0x1.f2fb20d8bdeap-3 +5968=0x1.01066c46f45b7p-5 +6004=0x1.88ecfbdf7b1fdp-5 +6008=0x1.35d0a49d2942dp-1 +6868=-0x1.e0b4d3cc602f2p-5 +6873=0x1.db6ad23951289p-3 +7210=-0x1.0c5f0b6e97322p-4 +7212=0x1.4490732caa752p-1 +7217=0x1.600a13dc05526p-7 +7226=0x1.8958eb052a0b5p+0 +7246=-0x1.fcaf99324f7p-6 +7399=0x1.cef9cab8bc92bp-6 +7590=0x1.73abffe9c143p-1 +7651=0x1.16552405c08c9p-22 +7660=-0x1.630f4ce9fbfe5p-9 +7662=0x1.e0962b03ddcbcp-2 +7664=0x1.21bcde698fc5bp-4 +7667=0x1.9fa04c223633fp-7 +7676=0x1.521a5e59c16f2p+1 +7696=-0x1.9394b4d54a28fp-4 +7698=0x1.1952eb9103b9bp-3 +7714=-0x1.14b464d3c5a6bp-21 +7723=0x1.ff73aedf1843dp-26 +7736=0x1.2a9ca633dc1e4p-3 +7975=0x1.d76cf2af5083cp-24 +8139=-0x1.5760280cf003fp+0 +8145=0x1.637294a2ce7ap+0 +8146=-0x1.f3ffbf4442ad4p-3 +8147=0x1.f060561b17f8dp-7 +8148=-0x1.cfc0b9759f714p-2 +8149=0x1.b9d24b5bf53e8p-1 +8150=-0x1.6a2a463e7231ep-4 +8152=0x1.e80e025cde30bp-5 +8153=-0x1.15a5c0936c79p-13 +8160=0x1.cd8397c9a105ep-3 +8164=-0x1.400003e0dbe4cp-8 +8166=0x1.ec0b7b59ad561p-3 +8182=-0x1.002b6c8d8d1e7p-7 +8189=0x1.e24160b13136ep-5 +8632=0x1.ac054cf25a79ep-4 +8639=0x1.076c3eb701f1p-3 +8641=-0x1.d949ae9dcc1ecp-4 +8642=0x1.39234272e2039p-1 +8650=0x1.f4d61fadac3bap-9 +8653=0x1.94ab24454f004p-3 +8654=-0x1.bba5fd2570c68p-20 +8657=-0x1.897152ad62121p-5 +8675=0x1.8a57a5b2857f3p-4 +9010=-0x1.2a92b37750d01p-4 +9073=0x1.8337bab75c7d1p-22 +9082=0x1.9d45e6c45e0f7p-3 +9084=0x1.f5ebb1f4c961p-6 +9086=0x1.a444c6d727448p-4 +9089=0x1.0d2f66653a9a7p-3 +9100=-0x1.6d8b0d310ee67p-2 +9103=0x1.b4fb31d85fa4bp-1 +9122=0x1.356d773b09349p-22 +9496=-0x1.0f77706b921f5p-5 +9498=-0x1.3b89ea37c1166p-6 +9568=0x1.757e724e99e02p-4 +9573=0x1.81fb4c3b5f022p+0 +9575=0x1.254e15c37cd7dp-3 +9586=0x1.d508eba5652bp-11 +9593=0x1.232ae6fa3339fp-3 +9597=0x1.53ab5bc8e53f9p-22 +9604=-0x1.87116c786a139p-13 +9608=0x1.26c94201d5cd4p-4 +9874=-0x1.463761fd711f3p-4 +9881=0x1.0f8d024674a9cp-4 +9989=0x1.f64c1f759da5ap-7 +10029=0x1.7745e64dee7ccp-3 +10036=-0x1.4505b15e2568p-28 +10040=0x1.a44fac4955df8p-22 +10367=0x1.d3143ca9f5f14p-9 +10684=0x1.6d2cea9798b13p-3 +10686=0x1.617840b92e121p-4 +10691=0x1.24e1c5e4960b4p-3 +10835=-0x1.dee067cbd2764p-21 +10981=0x1.ef75ce259fe86p-24 +11154=0x1.3f61ceb4149d8p-3 +11159=-0x1.151fb07727ba5p-8 +11305=0x1.15461bd92b3efp-2 +11350=-0x1.68f6958968547p-1 +11458=0x1.9eafe3da3fc9bp-3 +11530=-0x1.cb9273e7aa9adp-4 +11720=0x1.0e4f31de2adfcp-5 +11897=0x1.706eb9092f45p-6 +12196=0x1.1013050860f23p-13 +12200=-0x1.55d7b71146c8cp-2 +12203=0x1.1d9f97b43c99bp-6 +12322=-0x1.691b668a2cf71p-7 +12340=-0x1.e31d4bf4e2a14p-6 +12700=-0x1.da1c38151bacap-4 +12707=0x1.841787b74eaefp-2 +12718=-0x1.b496361269031p-6 +12736=-0x1.717619406ca6ep-11 +13214=0x1.130efebbb4ffbp-3 +13708=0x1.353c65572c6d3p-6 +13816=-0x1.a5f1aa6755956p-6 +14032=-0x1.4f8bff73b7fbfp-5 +14165=-0x1.fca4870217c4fp-8 +14250=0x1.1fea61eb8f6ep-2 +14293=0x1.6960d2d67d956p-1 +14482=-0x1.e299cbdec2b7ap-5 +14576=0x1.2c5c81ab42d03p-1 +14646=0x1.869d892c3b362p-1 +14932=0x1.b335f58ec0b2fp-5 +15265=0x1.721d12f5c464p-5 +15274=-0x1.158a9e6bfa129p-6 +15760=-0x1.2f2621b556cb4p-6 +15764=0x1.ca56320eeadb2p-24 +15767=0x1.7eb5db28187b6p-5 +16075=0x1.ec12191eca7d9p-6 +16084=-0x1.259f7b7f39bfdp-5 +16088=0x1.d40365bd2624ep-7 +16091=0x1.307402fcf1455p-4 +16444=-0x1.c863cf9450dp-7 +16451=0x1.3654f24ded17dp-9 +16462=0x1.9d7282121964dp-6 +16469=0x1.7158d2186a625p-5 +16561=0x1.6f7b3caa2c0f8p-2 +16732=0x1.ee7e894c6aad4p-5 +16739=0x1.1016f765348cep-3 +16750=-0x1.cbba00568ba14p-4 +17038=0x1.86f46c7a7acb1p-6 +17045=0x1.095fd86e67f69p-6 +17058=0x1.d02cc2948ec69p-3 +17171=0x1.19723c3193b02p-5 +17331=0x1.e72997dee4445p+1 +17614=-0x1.55ba728df7c88p-24 +17622=0x1.8fd1a6fb3de51p+1 +17920=-0x1.31ec7e6aa8366p-3 +17992=-0x1.2052bcd46076ap-2 +17996=0x1.00575ea3c0be1p-25 +18118=0x1.00e6e3ac8c12ap-12 +18388=0x1.1a5b27c673feep-2 +18395=-0x1.1d5d3e98e0908p-2 +18865=0x1.f40a40722c194p-2 +19090=-0x1.a45460e6ca1f5p-2 +19176=0x1.05eae388ea1efp-1 +19216=-0x1.35942b2fae4f2p-7 +19338=0x1.05eae388ea1efp-1 +19381=0x1.4ad82fdeb673fp-2 +19382=0x1.6b03154f534aep-2 +19392=0x1.05b6366439a3ep-1 +19410=0x1.05eae388ea1efp-1 +19428=0x1.05eae388ea1efp-1 +19844=0x1.b5f6d01493f74p-3 +19846=-0x1.0ad8d1c11b222p-2 +19918=0x1.171a1e859a5ecp-4 +19925=-0x1.49d91dd386f8cp-6 +20042=0x1.b5f6d01493f74p-3 +20044=-0x1.0ad8d1c11b222p-2 +20123=-0x1.66636426635e1p-1 +20385=0x1.335cae49429e1p-6 +20440=-0x1.df8e2bda028p-5 +20476=0x1.8bcef322f45d9p-5 +20836=0x1.57ed719a9910ep-6 +20843=-0x1.ce4f33580a7eep-22 +21142=-0x1.e7cf38a31a3fap-9 +21178=0x1.4910bdd5c4066p-5 +21411=-0x1.081c43a6dd08ep-6 +22258=-0x1.da8d082ddd7f6p-5 +22355=-0x1.ae3d9cb928424p-11 +22376=0x1.4db8f4a46a3d9p-2 +22394=0x1.a428b7980f02ep-3 +22555=-0x1.687fa33553697p-2 +22592=0x1.4db6d6903442ap-2 +22610=0x1.a6359c7129f37p-3 +22646=0x1.53e8d1f59bd9bp-2 +22664=0x1.53e8d1f59bd9bp-2 +22682=0x1.2424a4cdadd4cp-4 +22700=0x1.48587bb2a85f5p-23 +22797=0x1.1f30046f32cb5p-4 +22905=0x1.8c0462dca133p+0 +22995=0x1.563fbd9b3ea18p-2 +23049=0x1.565c88b1cep-4 +23067=0x1.7aa0c0dcdef37p-2 +23085=0x1.563fbd9b3ea18p-2 +23103=0x1.563fbd9b3ea18p-2 +23572=0x1.f6153a9355baep-6 +23579=0x1.f267e13c49e0ap-4 +23932=0x1.53aa2ec3546c5p-3 +23939=-0x1.1dc843941886cp-2 +24029=0x1.8953ca3adfa9cp-3 +26071=0x1.5bf3871a4905p-28 +26089=0x1.60c65c492eb9bp-28 +27640=-0x1.6a9566028a1f4p-3 +28270=-0x1.784081bcb85cfp-3 +30701=0x1.57fa5edf9904ap-3 +30917=0x1.ee3749b73334ep-2 +30971=0x1.5feae9f32e2f7p-6 +30989=0x1.ee3749b73334ep-2 +31007=0x1.ee3749b73334ep-2 +32506=0x1.741c2441c7a7bp-12 +38405=0x1.c2de089568c5ep+1 +38854=-0x1.b87bbed12d19bp-4 +38856=0x1.a44fd32fd089dp+0 +38875=0x1.5f7689e2fcf4p+1 +40058=0x1.6603a20a7995cp+0 +40065=0x1.42bf3946c4d7cp-4 +40083=0x1.90ba19b5d1afp+0 +40101=0x1.90a4cd6061013p+0 +40105=0x1.96afbe6b19d35p-7 +40141=0x1.918fa8f8d7396p-6 +40144=0x1.1236e7faaf34cp-1 +40145=0x1.d45f6d27a4697p-1 +40357=0x1.102019f5a7eddp-2 +40359=0x1.e861e9875648p-3 +40396=0x1.5b45e88d860a7p+2 +40555=0x1.07a7e548dc071p-2 +40557=0x1.4ed3c3abe05dep-21 +40579=0x1.2a88a5be196bdp+1 +40582=-0x1.499de38f16691p+0 +40589=-0x1.250d738838c93p-14 +41882=0x1.a8c8ba1b8a83ep-2 +42209=-0x1.d768803386b83p-7 +43822=0x1.fb910aecf2ac6p-5 +45136=0x1.a097efefb67eap-4 +45478=0x1.39f9a66745353p-4 +46308=0x1.eae0fb8521534p-7 +46310=-0x1.c51a054a17ef3p-3 +46580=-0x1.2971492ae0812p-5 +47134=0x1.3d9311793d29dp-11 +47483=0x1.3afce7a8e990fp-4 +47980=0x1.df3e92142e554p-9 +47982=-0x1.fc85740f85346p-18 +48141=-0x1.888001d6d5fcap-3 +48142=0x1.1ba888ad1b8fdp-7 +48555=0x1.6872fa372a2f9p-1 +48563=0x1.5882d09d2424dp-3 +48610=0x1.722d2d50508a6p-5 +48617=0x1.67709579ff998p-4 +48832=0x1.11aeca615dc52p-4 +48833=0x1.ceaad5dd2795ep-1 +48941=0x1.0a6631317369cp-4 +49247=0x1.0c398edf262bcp-3 +49553=0x1.db480402b13b8p-5 +56818=0x1.fc6aec0d7cba9p-5 +57614=0x1.09dc29de77eb7p-4 +61947=0x1.452235e3c3effp-25 +66987=0x1.2f3aae97acc5bp+1 +67033=0x1.429a42f02fb97p-2 +69130=-0x1.5e607e8e2b11dp-4 +78922=0x1.6fa2e2e68aafbp-5 +78929=-0x1.29f5ce7bfccb3p-16 +79498=0x1.463a686b81275p-16 +79588=0x1.00de9056e764fp-10 +79606=0x1.61e3867a5b756p-6 +79624=0x1.00de9056e764fp-10 +79642=0x1.00de9056e764fp-10 +79660=0x1.00de9056e764fp-10 +79714=0x1.501fd9b69724ep-16 +79840=0x1.eeada5b1f1164p-6 +79912=0x1.a04222c3f37b3p-13 +79966=0x1.eca9b4a51253cp-6 +80074=0x1.868cd4644a7b8p-4 +91630=0x1.31405c74ea32bp-5 +115804=0x1.428d065ee320bp-20 +115811=0x1.d3fb0e20935ep-13 +116416=0x1.5d745c9e8afp-25 +116549=0x1.74c897b87a21cp-4 +116621=0x1.66ab010fb1706p-4 +116675=0x1.adda29c716ee4p-3 +116747=0x1.55a2f78519727p-3 +116801=0x1.57fc319fe2de8p-4 +122140=-0x1.5c2a30048cb26p-6 +122142=0x1.3714976b4100cp-17 +122144=0x1.4bf065c53aabap-20 +122147=0x1.39002d95ebc81p-3 +122158=-0x1.a534b468b6de2p-5 +122160=0x1.39fef465f442cp-17 +122162=0x1.451c5b32149c7p-20 +122165=0x1.eb2baac1bedb2p-2 +122176=-0x1.56122f2215d6bp-6 +122178=0x1.3b1a142bce7p-17 +122180=0x1.704ed3572753dp-22 +122183=0x1.3ed95187ec001p-1 +133387=0x1.1c6068018dcaep-28 +134308=-0x1.b74901e6e14aap-4 +134315=0x1.6411cc6dfdd49p-1 +134416=-0x1.6981d9135ea3ep-4 +134423=0x1.07aed31652a3ep-1 +134560=-0x1.770c9b70c3e4bp-4 +134562=0x1.7f316d2aec9a6p-4 +134564=0x1.91671d6bfbeefp-7 +134567=0x1.0031ca18e4e88p-14 +142633=-0x1.b3cf39041d2e2p-4 +142641=-0x1.4cfd850a44267p-9 +142644=0x1.c78a4dc5dd8d2p-15 +142649=0x1.146d73ca23c5dp-1 +142759=-0x1.0d63f72148aa9p-2 +142767=-0x1.f026c6e4cd822p-17 +142768=-0x1.685244574f269p-3 +142770=0x1.7f3adbeec72dcp-11 +142775=0x1.6e4a527a17b5p-2 +142885=-0x1.944fd27c51163p-3 +142894=-0x1.db843bfb33925p-4 +142901=0x1.970601c85be26p-6 +150420=0x1.a581c7907fe35p-1 +150816=0x1.9b4d8a190bfb6p+0 +159046=0x1.23e0ccb4c9a1bp-14 +162449=0x1.392035d07dd75p-2 +164286=0x1.c5b22cf43a718p-19 +164295=-0x1.031da8b10b61ep-2 +164296=-0x1.12e65e461ff96p-2 +164302=0x1.5600a357683afp-8 +164303=0x1.3f94cd404cc08p-2 +164484=0x1.cca52aa783928p-19 +164485=-0x1.940e6f15bc81dp-3 +164493=-0x1.8553347b84937p-3 +164494=-0x1.8b306efd00889p-3 +164496=-0x1.6fda45118d6e3p-2 +164500=0x1.5a617fbf34f0dp-8 +164501=0x1.5abf0b05dd56bp-2 +164754=0x1.0b65ad0c367fdp+0 +164755=-0x1.60cc21c4317b4p-3 +164763=-0x1.227329b2b8cc3p-1 +164764=-0x1.86772bf20794cp-3 +164770=0x1.31dcf2d4fe0a4p-2 +164771=0x1.5c9f5c1f3e0d3p-2 +166401=0x1.b2d5d9be9e853p-16 +166408=-0x1.88bd72659995fp-21 +166599=0x1.be05977c5cdfbp-5 +166606=-0x1.81309e4129402p-21 +166733=-0x1.8998a9650cf36p-4 +166949=-0x1.1f1fe483d7947p-26 +168652=0x1.cb154f3197796p-1 +169970=0x1.1324ae79c5172p-6 +169988=0x1.e0fb94856cb9ep-4 +170006=0x1.e1017e53a54efp-4 +170024=0x1.e1017e53a54efp-4 +174868=0x1.c311137704e4fp-2 +181242=0x1.d54febfa1a031p-3 +181404=0x1.63aa7fa9523cep-2 +181891=0x1.964cce2acda94p-3 +182089=0x1.d9d2e778c36a3p-1 +182125=0x1.8120e271bab65p-3 +182143=0x1.964cce2acda94p-3 +182161=0x1.964cce2acda94p-3 +184609=0x1.00149a58c9e25p+0 +184807=-0x1.6233a4b7ab71cp-8 +185586=0x1.fe539c3468aa3p-1 +185977=0x1.c0fa4bb05c074p-20 +185986=0x1.f1b2b30681dcdp-5 +185988=0x1.1b89557b398d7p-4 +185990=0x1.7322ea25e1cp-8 +185992=-0x1.4a1edb95e24b5p-5 +185993=0x1.4adb06846e7e3p-4 +185995=0x1.d3e7e43816323p-20 +186004=0x1.f3ff40e28b981p-5 +186006=0x1.1b4574e48250ap-4 +186008=0x1.68cfee74dd60ep-8 +186010=-0x1.4a1e8ed2e53fp-5 +186011=0x1.4b863c5b4847ep-4 +186229=0x1.d4d0035a2888bp-20 +186238=0x1.074dbaf6e2ba2p-4 +186240=0x1.1b18a3bcf8d0cp-4 +186242=0x1.7e55e73480e8fp-8 +186244=-0x1.27c71a6a7def2p-5 +186245=0x1.4fb17fb627134p-4 +187281=0x1.1e77fa5dbbc26p-3 +188300=0x1.1cf1d2de0bf18p-1 +188307=0x1.dae6e321de12dp+0 +188308=-0x1.6b136ea2855cdp-1 +188311=0x1.74ef150f6863ap-2 +188314=0x1.c7dbf53de17d1p-2 +188315=-0x1.c80dd9fe3ac05p-2 +192177=0x1.ecff260f53dc5p-1 +192231=0x1.21d1bb1f679ffp-3 +192244=0x1.7a12c6e31feebp+0 +201068=0x1.bd236da69ee57p-3 +204021=0x1.24a295879c4dep-19 +211600=0x1.1c92a1ea23a45p-3 +240184=0x1.5823d2efe4a64p-1 +257409=0x1.a3583f607aba1p-10 +257410=-0x1.51e776c841e9p-5 +275089=0x1.747b6c4b6a7cep+1 +275090=-0x1.38a27ff355aabp-1 +304031=0x1.d23344fd151cfp+0 +304140=0x1.79499209cdd23p-1 +304288=0x1.00d65db4cbbdbp-13 +308518=0x1.daae1adc529fbp-12 +382327=0x1.afb83a97f84c5p-1 +389320=0x1.11e56b25bf48cp-3 +389338=0x1.175317a54114fp-3 +389374=0x1.f6395237f5d93p-4 +389392=0x1.24e6e48027d5p-5 +389410=0x1.175317a54114fp-3 +389428=0x1.ef1f2036b35d7p-16 +389483=0x1.2ac6d1fa04c92p-2 +402274=0x1.79f493a609f44p-3 +402496=0x1.2dc7b55691894p-4 +402604=0x1.2dc7b55691894p-4 +404973=-0x1.1ebb5c60cbcb8p-3 +404975=0x1.08febd4eb67d3p+0 +405010=-0x1.ad5ee98db0a6p-22 +419628=0x1.4f97b987fc245p-3 +420580=-0x1.2563dace203b5p-14 +420587=0x1.7da0a3fb67798p-9 +421523=0x1.b9477d0df6f36p-3 +421703=0x1.bc041ea7d541bp-3 +421828=0x1.32f3ba3d67e0fp-1 +422026=0x1.33cf3e54e1a3p-1 +422080=0x1.1b8ac61a9758p-1 +422081=-0x1.68a68fb8423efp-1 +422098=0x1.1bc8a24449601p-1 +422099=-0x1.65a4eabeede85p-1 +422116=0x1.33cf3e54e1a3p-1 +470691=0x1.5338adc25c1b9p-4 +543391=0x1.51f853624bd4ap-27 +549837=0x1.92fbf3b450366p-22 +549838=-0x1.4daf75ade0da3p+0 +636147=0x1.74b6630c26d48p-5 +636219=0x1.9c27f1ea533b5p-4 +750396=0x1.4d2dfa4404e3ap-2 +750630=0x1.d4dd468c8ed7bp-4 +787240=0x1.322f4494ec51dp-4 +849680=0x1.a12e0d8b3729fp+0 +852202=0x1.c10103dd4469cp-2 +852220=0x1.0331af070be62p-9 +852238=0x1.c122b0037a9a8p-2 +852561=0x1.ab11798dd97e4p-23 +852579=0x1.bcac55b9ffabep-23 +856359=0x1.b6cac294efd7bp-5 +859437=0x1.536962e37227cp-2 +859509=0x1.ba742b40d3b05p-4 +1017100=-0x1.1052bf1e90b8bp-17 +1017107=0x1.873e90a3f980dp-2 +1047231=0x1.7e4114b224219p-1 +1047249=0x1.dd41236daecbep-3 +1047267=0x1.59f71b503070bp-2 +1047285=0x1.59f71b503070bp-2 +1047303=0x1.49493bf4c3dafp-2 +1047321=0x1.53931164c3981p-3 +1047339=0x1.941aff1320bf5p-1 +1205149=0x1.d7ba2636732a8p-2 +1240569=0x1.c0757dd7ae3e9p-13 +1437237=-0x1.a4a4c06aced63p-3 +1634984=0x1.4798752d8a0c8p-5 +1635146=0x1.27eb45c430bfp-1 +1635280=0x1.389d12bb0c0d5p-1 +1635542=0x1.13674911bb93bp-4 +1635784=0x1.347a228285146p-6 +1636001=0x1.5547e4e98e7e5p-8 +2889838=0x1.21419887c23d6p-20 +2932246=-0x1.322a30f028591p-3 +2932253=0x1.ce0ad78f067b6p-5 +2933296=0x1.c500506d104cp-2 +2936206=-0x1.ab335872fdccfp-4 +2936213=0x1.174e4e3f040f4p-14 +2936933=0x1.05cd8d69f0895p-2 +2960477=0x1.faba970f70012p-4 +2960513=0x1.faba970f70012p-4 +3076446=0x1.2a8f3fa46f846p-4 +3084929=0x1.5be23b8e68a54p-1 +3087197=0x1.0c19b735ecfd9p-9 +3114269=-0x1.4158ca6867238p-7 +3114314=0x1.a0f51ec3b58d7p-12 +3114358=0x1.b7d336d3346b3p-1 +3514599=0x1.663a3108fa1e4p-4 +3514617=0x1.6773a1adc73c4p-4 +3514635=0x1.6773a1adc73c4p-4 +3563053=0x1.b256d0cef1f67p+1 +3563107=0x1.546d878ad143ap-27 +3563125=0x1.546d878ad143ap-27 +3563143=0x1.546d878ad143ap-27 +3563161=0x1.546d878ad143ap-27 +3569770=0x1.b009450972db4p-3 +3569806=0x1.8bab1c086793ap-11 +3575408=0x1.bc7fdceb3979bp-1 +3603470=0x1.eb0c1bb11fa76p-3 +3603488=0x1.eb0c1bb11fa76p-3 +3669512=0x1.6ad2dcb14b1c7p-8 +3669530=0x1.6ad2dcb14b1c7p-8 +3669548=0x1.6ad2dcb14b1c7p-8 +3669602=0x1.6ad2dcb14b1c7p-8 +3851241=0x1.e0d4c7d304ba6p-4 diff --git a/grobid-service/src/main/java/org/grobid/service/GrobidRestService.java b/grobid-service/src/main/java/org/grobid/service/GrobidRestService.java index 5659d02393..945f5dcd16 100755 --- a/grobid-service/src/main/java/org/grobid/service/GrobidRestService.java +++ b/grobid-service/src/main/java/org/grobid/service/GrobidRestService.java @@ -49,6 +49,7 @@ public class GrobidRestService implements GrobidPaths { private static final String SHA1 = "sha1"; private static final String XML = "xml"; public static final String INPUT = "input"; + public static final String FLAVOR = "flavor"; public static final String CONSOLIDATE_CITATIONS = "consolidateCitations"; public static final String CONSOLIDATE_HEADER = "consolidateHeader"; public static final String CONSOLIDATE_FUNDERS = "consolidateFunders"; @@ -213,6 +214,7 @@ public Response processStatelessHeaderDocumentReturnBibTeX( @POST public Response processFulltextDocument_post( @FormDataParam(INPUT) InputStream inputStream, + @FormDataParam(FLAVOR) String flavor, @DefaultValue("0") @FormDataParam(CONSOLIDATE_HEADER) String consolidateHeader, @DefaultValue("0") @FormDataParam(CONSOLIDATE_CITATIONS) String consolidateCitations, @DefaultValue("0") @FormDataParam(CONSOLIDATE_FUNDERS) String consolidateFunders, @@ -225,7 +227,7 @@ public Response processFulltextDocument_post( @FormDataParam("segmentSentences") String segmentSentences, @FormDataParam("teiCoordinates") List<FormDataBodyPart> coordinates) throws Exception { return processFulltext( - inputStream, consolidateHeader, consolidateCitations, consolidateFunders, + inputStream, flavor, consolidateHeader, consolidateCitations, consolidateFunders, includeRawAffiliations, includeRawCitations, includeRawCopyrights, startPage, endPage, generateIDs, segmentSentences, coordinates ); @@ -237,6 +239,7 @@ public Response processFulltextDocument_post( @PUT public Response processFulltextDocument( @FormDataParam(INPUT) InputStream inputStream, + @FormDataParam(FLAVOR) String flavor, @DefaultValue("0") @FormDataParam(CONSOLIDATE_HEADER) String consolidateHeader, @DefaultValue("0") @FormDataParam(CONSOLIDATE_CITATIONS) String consolidateCitations, @DefaultValue("0") @FormDataParam(CONSOLIDATE_FUNDERS) String consolidateFunders, @@ -249,13 +252,14 @@ public Response processFulltextDocument( @FormDataParam("segmentSentences") String segmentSentences, @FormDataParam("teiCoordinates") List<FormDataBodyPart> coordinates) throws Exception { return processFulltext( - inputStream, consolidateHeader, consolidateCitations, consolidateFunders, + inputStream, flavor, consolidateHeader, consolidateCitations, consolidateFunders, includeRawAffiliations, includeRawCitations, includeRawCopyrights, startPage, endPage, generateIDs, segmentSentences, coordinates ); } private Response processFulltext(InputStream inputStream, + String flavor, String consolidateHeader, String consolidateCitations, String consolidateFunders, @@ -274,11 +278,13 @@ private Response processFulltext(InputStream inputStream, boolean includeRaw = validateIncludeRawParam(includeRawCitations); boolean generate = validateGenerateIdParam(generateIDs); boolean segment = validateGenerateIdParam(segmentSentences); + if (flavor == null || flavor.length() ==0) + flavor = null; List<String> teiCoordinates = collectCoordinates(coordinates); return restProcessFiles.processFulltextDocument( - inputStream, consolHeader, consolCitations, consolFunders, + inputStream, flavor, consolHeader, consolCitations, consolFunders, validateIncludeRawParam(includeRawAffiliations), includeRaw, validateIncludeRawParam(includeRawCopyrights), startPage, endPage, generate, segment, teiCoordinates @@ -326,6 +332,7 @@ private int validateConsolidationParam(String consolidate) { @POST public Response processFulltextAssetDocument_post( @FormDataParam(INPUT) InputStream inputStream, + @FormDataParam(FLAVOR) String flavor, @DefaultValue("0") @FormDataParam(CONSOLIDATE_HEADER) String consolidateHeader, @DefaultValue("0") @FormDataParam(CONSOLIDATE_CITATIONS) String consolidateCitations, @DefaultValue("0") @FormDataParam(CONSOLIDATE_FUNDERS) String consolidateFunders, @@ -338,7 +345,7 @@ public Response processFulltextAssetDocument_post( @FormDataParam("segmentSentences") String segmentSentences, @FormDataParam("teiCoordinates") List<FormDataBodyPart> coordinates) throws Exception { return processStatelessFulltextAssetHelper( - inputStream, consolidateHeader, consolidateCitations, consolidateFunders, + inputStream, flavor, consolidateHeader, consolidateCitations, consolidateFunders, includeRawAffiliations, includeRawCitations, includeRawCopyrights, startPage, endPage, generateIDs, segmentSentences, coordinates ); @@ -350,6 +357,7 @@ public Response processFulltextAssetDocument_post( @PUT public Response processStatelessFulltextAssetDocument( @FormDataParam(INPUT) InputStream inputStream, + @FormDataParam(FLAVOR) String flavor, @DefaultValue("0") @FormDataParam(CONSOLIDATE_HEADER) String consolidateHeader, @DefaultValue("0") @FormDataParam(CONSOLIDATE_CITATIONS) String consolidateCitations, @DefaultValue("0") @FormDataParam(CONSOLIDATE_FUNDERS) String consolidateFunders, @@ -362,13 +370,14 @@ public Response processStatelessFulltextAssetDocument( @FormDataParam("segmentSentences") String segmentSentences, @FormDataParam("teiCoordinates") List<FormDataBodyPart> coordinates) throws Exception { return processStatelessFulltextAssetHelper( - inputStream, consolidateHeader, consolidateCitations, consolidateFunders, + inputStream, flavor, consolidateHeader, consolidateCitations, consolidateFunders, includeRawAffiliations, includeRawCitations, includeRawCopyrights, startPage, endPage, generateIDs, segmentSentences, coordinates ); } private Response processStatelessFulltextAssetHelper(InputStream inputStream, + String flavor, String consolidateHeader, String consolidateCitations, String consolidateFunders, @@ -386,11 +395,13 @@ private Response processStatelessFulltextAssetHelper(InputStream inputStream, boolean includeRaw = validateIncludeRawParam(includeRawCitations); boolean generate = validateGenerateIdParam(generateIDs); boolean segment = validateGenerateIdParam(segmentSentences); + if (flavor == null || flavor.length() ==0) + flavor = null; List<String> teiCoordinates = collectCoordinates(coordinates); return restProcessFiles.processStatelessFulltextAssetDocument( - inputStream, consolHeader, consolCitations, consolFunders, + inputStream, flavor, consolHeader, consolCitations, consolFunders, validateIncludeRawParam(includeRawAffiliations), includeRaw, validateIncludeRawParam(includeRawCopyrights), startPage, endPage, generate, segment, teiCoordinates diff --git a/grobid-service/src/main/java/org/grobid/service/process/GrobidRestProcessFiles.java b/grobid-service/src/main/java/org/grobid/service/process/GrobidRestProcessFiles.java index 4692fe3de9..62cfed1ad4 100644 --- a/grobid-service/src/main/java/org/grobid/service/process/GrobidRestProcessFiles.java +++ b/grobid-service/src/main/java/org/grobid/service/process/GrobidRestProcessFiles.java @@ -239,17 +239,18 @@ public Response processStatelessHeaderFundingDocument( * full text */ public Response processFulltextDocument(final InputStream inputStream, - final int consolidateHeader, - final int consolidateCitations, - final int consolidateFunders, - final boolean includeRawAffiliations, - final boolean includeRawCitations, - final boolean includeRawCopyrights, - final int startPage, - final int endPage, - final boolean generateIDs, - final boolean segmentSentences, - final List<String> teiCoordinates) throws Exception { + final String flavor, + final int consolidateHeader, + final int consolidateCitations, + final int consolidateFunders, + final boolean includeRawAffiliations, + final boolean includeRawCitations, + final boolean includeRawCopyrights, + final int startPage, + final int endPage, + final boolean generateIDs, + final boolean segmentSentences, + final List<String> teiCoordinates) throws Exception { LOGGER.debug(methodLogIn()); String retVal = null; @@ -293,7 +294,7 @@ public Response processFulltextDocument(final InputStream inputStream, .withSentenceSegmentation(segmentSentences) .build(); - retVal = engine.fullTextToTEI(originFile, md5Str, config); + retVal = engine.fullTextToTEI(originFile, flavor, md5Str, config); if (GrobidRestUtils.isResultNullOrEmpty(retVal)) { response = Response.status(Response.Status.NO_CONTENT).build(); @@ -342,17 +343,18 @@ public Response processFulltextDocument(final InputStream inputStream, * full text */ public Response processStatelessFulltextAssetDocument(final InputStream inputStream, - final int consolidateHeader, - final int consolidateCitations, - final int consolidateFunders, - final boolean includeRawAffiliations, - final boolean includeRawCitations, - final boolean includeRawCopyrights, - final int startPage, - final int endPage, - final boolean generateIDs, - final boolean segmentSentences, - final List<String> teiCoordinates) throws Exception { + final String flavor, + final int consolidateHeader, + final int consolidateCitations, + final int consolidateFunders, + final boolean includeRawAffiliations, + final boolean includeRawCitations, + final boolean includeRawCopyrights, + final int startPage, + final int endPage, + final boolean generateIDs, + final boolean segmentSentences, + final List<String> teiCoordinates) throws Exception { LOGGER.debug(methodLogIn()); Response response = null; String retVal = null; @@ -400,7 +402,7 @@ public Response processStatelessFulltextAssetDocument(final InputStream inputStr .withSentenceSegmentation(segmentSentences) .build(); - retVal = engine.fullTextToTEI(originFile, md5Str, config); + retVal = engine.fullTextToTEI(originFile, flavor, md5Str, config); if (GrobidRestUtils.isResultNullOrEmpty(retVal)) { response = Response.status(Status.NO_CONTENT).build(); @@ -949,7 +951,7 @@ protected PDDocument annotate(File originFile, DocumentSource documentSource = DocumentSource.fromPdf(originFile, config.getStartPage(), config.getEndPage(), true, true, false); - Document teiDoc = engine.fullTextToTEIDoc(documentSource, config); + Document teiDoc = engine.fullTextToTEIDoc(documentSource, null, config); documentSource = DocumentSource.fromPdf(originFile, config.getStartPage(), config.getEndPage(), true, true, false); diff --git a/grobid-trainer/resources/dataset/header/light/.gitkeep b/grobid-trainer/resources/dataset/header/light/.gitkeep new file mode 100644 index 0000000000..e69de29bb2 diff --git a/grobid-trainer/resources/dataset/header/sdo/ietf/corpus/raw/XP015133673.training.header b/grobid-trainer/resources/dataset/header/sdo/ietf/corpus/raw/XP015133673.training.header new file mode 100644 index 0000000000..33fb96fc0e --- /dev/null +++ b/grobid-trainer/resources/dataset/header/sdo/ietf/corpus/raw/XP015133673.training.header @@ -0,0 +1,559 @@ +Internet internet I In Int Inte t et net rnet BLOCKSTART LINESTART NEWFONT HIGHERFONT 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Research research R Re Res Rese h ch rch arch BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Task task T Ta Tas Task k sk ask Task BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Force force F Fo For Forc e ce rce orce BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +( ( ( ( ( ( ( ( ( ( BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 OPENBRACKET 0 0 +IRTF irtf I IR IRT IRTF F TF RTF IRTF BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +) ) ) ) ) ) ) ) ) ) BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 ENDBRACKET 0 0 +M m M M M M M M M M BLOCKSTART LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +Mosko mosko M Mo Mos Mosk o ko sko osko BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Request request R Re Req Requ t st est uest BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +for for f fo for for r or for for BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Comments comments C Co Com Comm s ts nts ents BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +: : : : : : : : : : BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 PUNCT 0 0 +8569 8569 8 85 856 8569 9 69 569 8569 BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS ALLDIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +PARC parc P PA PAR PARC C RC ARC PARC BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +, , , , , , , , , , BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 COMMA 0 0 +Inc inc I In Inc Inc c nc Inc Inc BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +Category category C Ca Cat Cate y ry ory gory BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +: : : : : : : : : : BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 PUNCT 0 0 +Experimental experimental E Ex Exp Expe l al tal ntal BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +I i I I I I I I I I BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +Solis solis S So Sol Soli s is lis olis BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 1 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +ISSN issn I IS ISS ISSN N SN SSN ISSN BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +: : : : : : : : : : BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 PUNCT 0 0 +2070 2070 2 20 207 2070 0 70 070 2070 BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS ALLDIGIT 0 0 0 0 0 1 0 0 0 0 NOPUNCT 0 0 +- - - - - - - - - - BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 1 HYPHEN 0 0 +1721 1721 1 17 172 1721 1 21 721 1721 BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS ALLDIGIT 0 0 0 0 0 1 0 0 0 0 NOPUNCT 0 0 +LinkedIn linkedin L Li Lin Link n In dIn edIn BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +C c C C C C C C C C BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +Wood wood W Wo Woo Wood d od ood Wood BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +University university U Un Uni Univ y ty ity sity BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +of of o of of of f of of of BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +California california C Ca Cal Cali a ia nia rnia BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Irvine irvine I Ir Irv Irvi e ne ine vine BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 1 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +July july J Ju Jul July y ly uly July BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 1 0 0 0 NOPUNCT 0 0 +2019 2019 2 20 201 2019 9 19 019 2019 BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS ALLDIGIT 0 0 0 0 0 1 0 0 0 0 NOPUNCT 0 0 +Content content C Co Con Cont t nt ent tent BLOCKSTART LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +- - - - - - - - - - BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 1 HYPHEN 0 0 +Centric centric C Ce Cen Cent c ic ric tric BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Networking networking N Ne Net Netw g ng ing king BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +( ( ( ( ( ( ( ( ( ( BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 OPENBRACKET 0 0 +CCNx ccnx C CC CCN CCNx x Nx CNx CCNx BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +) ) ) ) ) ) ) ) ) ) BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 ENDBRACKET 0 0 +Semantics semantics S Se Sem Sema s cs ics tics BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Abstract abstract A Ab Abs Abst t ct act ract BLOCKSTART LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +This this T Th Thi This s is his This BLOCKSTART LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +document document d do doc docu t nt ent ment BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +describes describes d de des desc s es bes ibes BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +the the t th the the e he the the BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +core core c co cor core e re ore core BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +concepts concepts c co con conc s ts pts epts BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +of of o of of of f of of of BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +the the t th the the e he the the BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Content content C Co Con Cont t nt ent tent BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +- - - - - - - - - - BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 1 HYPHEN 0 0 +Centric centric C Ce Cen Cent c ic ric tric BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Networking networking N Ne Net Netw g ng ing king BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +( ( ( ( ( ( ( ( ( ( BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 OPENBRACKET 0 0 +CCNx ccnx C CC CCN CCNx x Nx CNx CCNx BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +) ) ) ) ) ) ) ) ) ) BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 ENDBRACKET 0 0 +architecture architecture a ar arc arch e re ure ture BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +and and a an and and d nd and and BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +presents presents p pr pre pres s ts nts ents BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +a a a a a a a a a a BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 1 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +network network n ne net netw k rk ork work BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +protocol protocol p pr pro prot l ol col ocol BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +based based b ba bas base d ed sed ased BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +on on o on on on n on on on BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +two two t tw two two o wo two two BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +messages messages m me mes mess s es ges ages BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +: : : : : : : : : : BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 PUNCT 0 0 +Interests interests I In Int Inte s ts sts ests BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +and and a an and and d nd and and BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Content content C Co Con Cont t nt ent tent BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Objects objects O Ob Obj Obje s ts cts ects BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +It it I It It It t It It It BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +specifies specifies s sp spe spec s es ies fies BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +the the t th the the e he the the BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +set set s se set set t et set set BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +of of o of of of f of of of BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +mandatory mandatory m ma man mand y ry ory tory BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +and and a an and and d nd and and BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +optional optional o op opt opti l al nal onal BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +fields fields f fi fie fiel s ds lds elds BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +within within w wi wit with n in hin thin BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +those those t th tho thos e se ose hose BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +messages messages m me mes mess s es ges ages BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +and and a an and and d nd and and BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +describes describes d de des desc s es bes ibes BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +their their t th the thei r ir eir heir BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +behavior behavior b be beh beha r or ior vior BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +and and a an and and d nd and and BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +interpretation interpretation i in int inte n on ion tion BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +This this T Th Thi This s is his This BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +architecture architecture a ar arc arch e re ure ture BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +and and a an and and d nd and and BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +protocol protocol p pr pro prot l ol col ocol BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +specification specification s sp spe spec n on ion tion BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +is is i is is is s is is is BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +independent independent i in ind inde t nt ent dent BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +of of o of of of f of of of BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +a a a a a a a a a a BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 1 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +specific specific s sp spe spec c ic fic ific BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +wire wire w wi wir wire e re ire wire BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +encoding encoding e en enc enco g ng ing ding BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +The the T Th The The e he The The BLOCKSTART LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +protocol protocol p pr pro prot l ol col ocol BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +also also a al als also o so lso also BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +uses uses u us use uses s es ses uses BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +a a a a a a a a a a BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 1 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +control control c co con cont l ol rol trol BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +message message m me mes mess e ge age sage BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +called called c ca cal call d ed led lled BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +an an a an an an n an an an BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Interest interest I In Int Inte t st est rest BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Return return R Re Ret Retu n rn urn turn BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +, , , , , , , , , , BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 COMMA 0 0 +whereby whereby w wh whe wher y by eby reby BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +one one o on one one e ne one one BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +system system s sy sys syst m em tem stem BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +can can c ca can can n an can can BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +return return r re ret retu n rn urn turn BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +an an a an an an n an an an BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Interest interest I In Int Inte t st est rest BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +message message m me mes mess e ge age sage BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +to to t to to to o to to to BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +the the t th the the e he the the BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +previous previous p pr pre prev s us ous ious BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +hop hop h ho hop hop p op hop hop BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +due due d du due due e ue due due BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +to to t to to to o to to to BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +an an a an an an n an an an BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +error error e er err erro r or ror rror BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +condition condition c co con cond n on ion tion BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +This this T Th Thi This s is his This BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +indicates indicates i in ind indi s es tes ates BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +to to t to to to o to to to BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +the the t th the the e he the the BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +previous previous p pr pre prev s us ous ious BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +hop hop h ho hop hop p op hop hop BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +that that t th tha that t at hat that BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +the the t th the the e he the the BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +current current c cu cur curr t nt ent rent BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +system system s sy sys syst m em tem stem BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +will will w wi wil will l ll ill will BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +not not n no not not t ot not not BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +respond respond r re res resp d nd ond pond BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +to to t to to to o to to to BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +the the t th the the e he the the BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Interest interest I In Int Inte t st est rest BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +This this T Th Thi This s is his This BLOCKSTART LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +document document d do doc docu t nt ent ment BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +is is i is is is s is is is BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +a a a a a a a a a a BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 1 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +product product p pr pro prod t ct uct duct BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +of of o of of of f of of of BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +the the t th the the e he the the BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Information information I In Inf Info n on ion tion BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +- - - - - - - - - - BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 1 HYPHEN 0 0 +Centric centric C Ce Cen Cent c ic ric tric BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Networking networking N Ne Net Netw g ng ing king BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Research research R Re Res Rese h ch rch arch BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Group group G Gr Gro Grou p up oup roup BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +( ( ( ( ( ( ( ( ( ( BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 OPENBRACKET 0 0 +ICNRG icnrg I IC ICN ICNR G RG NRG CNRG BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +) ) ) ) ) ) ) ) ) ) BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 ENDBRACKET 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +The the T Th The The e he The The BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +document document d do doc docu t nt ent ment BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +received received r re rec rece d ed ved ived BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +wide wide w wi wid wide e de ide wide BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +review review r re rev revi w ew iew view BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +among among a am amo amon g ng ong mong BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +ICNRG icnrg I IC ICN ICNR G RG NRG CNRG BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +participants participants p pa par part s ts nts ants BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +Two two T Tw Two Two o wo Two Two BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +full full f fu ful full l ll ull full BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +implementations implementations i im imp impl s ns ons ions BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +are are a ar are are e re are are BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +in in i in in in n in in in BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +active active a ac act acti e ve ive tive BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +use use u us use use e se use use BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +and and a an and and d nd and and BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +have have h ha hav have e ve ave have BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +informed informed i in inf info d ed med rmed BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +the the t th the the e he the the BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +technical technical t te tec tech l al cal ical BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +maturity maturity m ma mat matu y ty ity rity BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +of of o of of of f of of of BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +the the t th the the e he the the BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +protocol protocol p pr pro prot l ol col ocol BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +specification specification s sp spe spec n on ion tion BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +Mosko mosko M Mo Mos Mosk o ko sko osko BLOCKSTART LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +, , , , , , , , , , BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 COMMA 0 0 +et et e et et et t et et et BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +al al a al al al l al al al BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 1 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +Experimental experimental E Ex Exp Expe l al tal ntal BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +[ [ [ [ [ [ [ [ [ [ BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 OPENBRACKET 0 0 +Page page P Pa Pag Page e ge age Page BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +1 1 1 1 1 1 1 1 1 1 BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +] ] ] ] ] ] ] ] ] ] BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 ENDBRACKET 0 0 +RFC rfc R RF RFC RFC C FC RFC RFC BLOCKSTART LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +8569 8569 8 85 856 8569 9 69 569 8569 BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS ALLDIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +CCNx ccnx C CC CCN CCNx x Nx CNx CCNx BLOCKSTART LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Semantics semantics S Se Sem Sema s cs ics tics BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +July july J Ju Jul July y ly uly July BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 1 0 0 0 NOPUNCT 0 0 +2019 2019 2 20 201 2019 9 19 019 2019 BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS ALLDIGIT 0 0 0 0 0 1 0 0 0 0 NOPUNCT 0 0 +Status status S St Sta Stat s us tus atus BLOCKSTART LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +of of o of of of f of of of BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +This this T Th Thi This s is his This BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Memo memo M Me Mem Memo o mo emo Memo BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +This this T Th Thi This s is his This BLOCKSTART LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +document document d do doc docu t nt ent ment BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +is is i is is is s is is is BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +not not n no not not t ot not not BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +an an a an an an n an an an BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Internet internet I In Int Inte t et net rnet BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Standards standards S St Sta Stan s ds rds ards BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Track track T Tr Tra Trac k ck ack rack BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +specification specification s sp spe spec n on ion tion BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +; ; ; ; ; ; ; ; ; ; BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 PUNCT 0 0 +it it i it it it t it it it BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +is is i is is is s is is is BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +published published p pu pub publ d ed hed shed BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +for for f fo for for r or for for BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +examination examination e ex exa exam n on ion tion BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +, , , , , , , , , , BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 COMMA 0 0 +experimental experimental e ex exp expe l al tal ntal BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +implementation implementation i im imp impl n on ion tion BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +, , , , , , , , , , BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 COMMA 0 0 +and and a an and and d nd and and BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +evaluation evaluation e ev eva eval n on ion tion BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +This this T Th Thi This s is his This BLOCKSTART LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +document document d do doc docu t nt ent ment BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +defines defines d de def defi s es nes ines BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +an an a an an an n an an an BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Experimental experimental E Ex Exp Expe l al tal ntal BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Protocol protocol P Pr Pro Prot l ol col ocol BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +for for f fo for for r or for for BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +the the t th the the e he the the BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Internet internet I In Int Inte t et net rnet BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +community community c co com comm y ty ity nity BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +This this T Th Thi This s is his This BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +document document d do doc docu t nt ent ment BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +is is i is is is s is is is BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +a a a a a a a a a a BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 1 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +product product p pr pro prod t ct uct duct BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +of of o of of of f of of of BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +the the t th the the e he the the BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Internet internet I In Int Inte t et net rnet BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Research research R Re Res Rese h ch rch arch BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Task task T Ta Tas Task k sk ask Task BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Force force F Fo For Forc e ce rce orce BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +( ( ( ( ( ( ( ( ( ( BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 OPENBRACKET 0 0 +IRTF irtf I IR IRT IRTF F TF RTF IRTF BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +) ) ) ) ) ) ) ) ) ) BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 ENDBRACKET 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +The the T Th The The e he The The BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +IRTF irtf I IR IRT IRTF F TF RTF IRTF BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +publishes publishes p pu pub publ s es hes shes BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +the the t th the the e he the the BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +results results r re res resu s ts lts ults BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +of of o of of of f of of of BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Internet internet I In Int Inte t et net rnet BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +- - - - - - - - - - BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 1 HYPHEN 0 0 +related related r re rel rela d ed ted ated BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +research research r re res rese h ch rch arch BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +and and a an and and d nd and and BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +development development d de dev deve t nt ent ment BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +activities activities a ac act acti s es ies ties BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +These these T Th The Thes e se ese hese BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +results results r re res resu s ts lts ults BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +might might m mi mig migh t ht ght ight BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +not not n no not not t ot not not BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +be be b be be be e be be be BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +suitable suitable s su sui suit e le ble able BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +for for f fo for for r or for for BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +deployment deployment d de dep depl t nt ent ment BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +This this T Th Thi This s is his This BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +RFC rfc R RF RFC RFC C FC RFC RFC BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +represents represents r re rep repr s ts nts ents BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +the the t th the the e he the the BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +consensus consensus c co con cons s us sus nsus BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +of of o of of of f of of of BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +the the t th the the e he the the BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Information information I In Inf Info n on ion tion BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +- - - - - - - - - - BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 1 HYPHEN 0 0 +Centric centric C Ce Cen Cent c ic ric tric BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Networking networking N Ne Net Netw g ng ing king BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Research research R Re Res Rese h ch rch arch BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Group group G Gr Gro Grou p up oup roup BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +of of o of of of f of of of BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +the the t th the the e he the the BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Internet internet I In Int Inte t et net rnet BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Research research R Re Res Rese h ch rch arch BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Task task T Ta Tas Task k sk ask Task BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Force force F Fo For Forc e ce rce orce BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +( ( ( ( ( ( ( ( ( ( BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 OPENBRACKET 0 0 +IRTF irtf I IR IRT IRTF F TF RTF IRTF BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +) ) ) ) ) ) ) ) ) ) BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 ENDBRACKET 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +Documents documents D Do Doc Docu s ts nts ents BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +approved approved a ap app appr d ed ved oved BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +for for f fo for for r or for for BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +publication publication p pu pub publ n on ion tion BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +by by b by by by y by by by BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +the the t th the the e he the the BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +IRSG irsg I IR IRS IRSG G SG RSG IRSG BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +are are a ar are are e re are are BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +not not n no not not t ot not not BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +candidates candidates c ca can cand s es tes ates BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +for for f fo for for r or for for BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +any any a an any any y ny any any BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +level level l le lev leve l el vel evel BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +of of o of of of f of of of BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Internet internet I In Int Inte t et net rnet BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Standard standard S St Sta Stan d rd ard dard BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +; ; ; ; ; ; ; ; ; ; BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 PUNCT 0 0 +see see s se see see e ee see see BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Section section S Se Sec Sect n on ion tion BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +2 2 2 2 2 2 2 2 2 2 BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +of of o of of of f of of of BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +RFC rfc R RF RFC RFC C FC RFC RFC BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +7841 7841 7 78 784 7841 1 41 841 7841 BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS ALLDIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +Information information I In Inf Info n on ion tion BLOCKSTART LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +about about a ab abo abou t ut out bout BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +the the t th the the e he the the BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +current current c cu cur curr t nt ent rent BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +status status s st sta stat s us tus atus BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +of of o of of of f of of of BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +this this t th thi this s is his this BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +document document d do doc docu t nt ent ment BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +, , , , , , , , , , BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 COMMA 0 0 +any any a an any any y ny any any BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +errata errata e er err erra a ta ata rata BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +, , , , , , , , , , BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 COMMA 0 0 +and and a an and and d nd and and BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +how how h ho how how w ow how how BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +to to t to to to o to to to BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +provide provide p pr pro prov e de ide vide BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +feedback feedback f fe fee feed k ck ack back BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +on on o on on on n on on on BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +it it i it it it t it it it BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +may may m ma may may y ay may may BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 1 1 0 0 0 1 0 0 0 NOPUNCT 0 0 +be be b be be be e be be be BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +obtained obtained o ob obt obta d ed ned ined BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +at at a at at at t at at at BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +https https h ht htt http s ps tps ttps BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 0 NOPUNCT 0 0 +: : : : : : : : : : BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 PUNCT 0 0 +/ / / / / / / / / / BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +/ / / / / / / / / / BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +www www w ww www www w ww www www BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +rfc rfc r rf rfc rfc c fc rfc rfc BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +- - - - - - - - - - BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 1 HYPHEN 0 0 +editor editor e ed edi edit r or tor itor BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +org org o or org org g rg org org BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +/ / / / / / / / / / BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +info info i in inf info o fo nfo info BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 1 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +/ / / / / / / / / / BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +rfc8569 rfc8569 r rf rfc rfc8 9 69 569 8569 BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +Copyright copyright C Co Cop Copy t ht ght ight BLOCKSTART LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Notice notice N No Not Noti e ce ice tice BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Copyright copyright C Co Cop Copy t ht ght ight BLOCKSTART LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +( ( ( ( ( ( ( ( ( ( BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 OPENBRACKET 0 0 +c c c c c c c c c c BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +) ) ) ) ) ) ) ) ) ) BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 ENDBRACKET 0 0 +2019 2019 2 20 201 2019 9 19 019 2019 BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS ALLDIGIT 0 0 0 0 0 1 0 0 0 0 NOPUNCT 0 0 +IETF ietf I IE IET IETF F TF ETF IETF BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Trust trust T Tr Tru Trus t st ust rust BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +and and a an and and d nd and and BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +the the t th the the e he the the BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +persons persons p pe per pers s ns ons sons BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +identified identified i id ide iden d ed ied fied BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +as as a as as as s as as as BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +the the t th the the e he the the BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +document document d do doc docu t nt ent ment BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +authors authors a au aut auth s rs ors hors BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +All all A Al All All l ll All All BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +rights rights r ri rig righ s ts hts ghts BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +reserved reserved r re res rese d ed ved rved BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +This this T Th Thi This s is his This BLOCKSTART LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +document document d do doc docu t nt ent ment BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +is is i is is is s is is is BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +subject subject s su sub subj t ct ect ject BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +to to t to to to o to to to BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +BCP bcp B BC BCP BCP P CP BCP BCP BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +78 78 7 78 78 78 8 78 78 78 BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS ALLDIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +and and a an and and d nd and and BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +the the t th the the e he the the BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +IETF ietf I IE IET IETF F TF ETF IETF BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Trust trust T Tr Tru Trus t st ust rust BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +' ' ' ' ' ' ' ' ' ' BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 QUOTE 0 0 +s s s s s s s s s s BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Legal legal L Le Leg Lega l al gal egal BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Provisions provisions P Pr Pro Prov s ns ons ions BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Relating relating R Re Rel Rela g ng ing ting BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +to to t to to to o to to to BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +IETF ietf I IE IET IETF F TF ETF IETF BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Documents documents D Do Doc Docu s ts nts ents BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +( ( ( ( ( ( ( ( ( ( BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 OPENBRACKET 0 0 +https https h ht htt http s ps tps ttps BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 0 NOPUNCT 0 0 +: : : : : : : : : : BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 PUNCT 0 0 +/ / / / / / / / / / BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +/ / / / / / / / / / BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +trustee trustee t tr tru trus e ee tee stee BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +ietf ietf i ie iet ietf f tf etf ietf BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +org org o or org org g rg org org BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +/ / / / / / / / / / BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +license license l li lic lice e se nse ense BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +- - - - - - - - - - BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 1 HYPHEN 0 0 +info info i in inf info o fo nfo info BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 1 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +) ) ) ) ) ) ) ) ) ) BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 ENDBRACKET 0 0 +in in i in in in n in in in BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +effect effect e ef eff effe t ct ect fect BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +on on o on on on n on on on BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +the the t th the the e he the the BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +date date d da dat date e te ate date BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +of of o of of of f of of of BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +publication publication p pu pub publ n on ion tion BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +of of o of of of f of of of BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +this this t th thi this s is his this BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +document document d do doc docu t nt ent ment BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +Please please P Pl Ple Plea e se ase ease BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +review review r re rev revi w ew iew view BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +these these t th the thes e se ese hese BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +documents documents d do doc docu s ts nts ents BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +carefully carefully c ca car care y ly lly ully BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +, , , , , , , , , , BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 COMMA 0 0 +as as a as as as s as as as BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +they they t th the they y ey hey they BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +describe describe d de des desc e be ibe ribe BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +your your y yo you your r ur our your BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +rights rights r ri rig righ s ts hts ghts BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +and and a an and and d nd and and BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +restrictions restrictions r re res rest s ns ons ions BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +with with w wi wit with h th ith with BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +respect respect r re res resp t ct ect pect BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +to to t to to to o to to to BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +this this t th thi this s is his this BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +document document d do doc docu t nt ent ment BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +Mosko mosko M Mo Mos Mosk o ko sko osko BLOCKSTART LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +, , , , , , , , , , BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 COMMA 0 0 +et et e et et et t et et et BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +al al a al al al l al al al BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 1 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +Experimental experimental E Ex Exp Expe l al tal ntal BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +[ [ [ [ [ [ [ [ [ [ BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 OPENBRACKET 0 0 +Page page P Pa Pag Page e ge age Page BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +2 2 2 2 2 2 2 2 2 2 BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +] ] ] ] ] ] ] ] ] ] BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 ENDBRACKET 0 0 +RFC rfc R RF RFC RFC C FC RFC RFC BLOCKSTART LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +8569 8569 8 85 856 8569 9 69 569 8569 BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS ALLDIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +CCNx ccnx C CC CCN CCNx x Nx CNx CCNx BLOCKSTART LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Semantics semantics S Se Sem Sema s cs ics tics BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +July july J Ju Jul July y ly uly July BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 1 0 0 0 NOPUNCT 0 0 +2019 2019 2 20 201 2019 9 19 019 2019 BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS ALLDIGIT 0 0 0 0 0 1 0 0 0 0 NOPUNCT 0 0 +Marc marc M Ma Mar Marc c rc arc Marc BLOCKSTART LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 1 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Mosko mosko M Mo Mos Mosk o ko sko osko BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +PARC parc P PA PAR PARC C RC ARC PARC BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +, , , , , , , , , , BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 COMMA 0 0 +Inc inc I In Inc Inc c nc Inc Inc BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +Palo palo P Pa Pal Palo o lo alo Palo BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Alto alto A Al Alt Alto o to lto Alto BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +, , , , , , , , , , BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 COMMA 0 0 +California california C Ca Cal Cali a ia nia rnia BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +94304 94304 9 94 943 9430 4 04 304 4304 BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS ALLDIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +United united U Un Uni Unit d ed ted ited BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +States states S St Sta Stat s es tes ates BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +of of o of of of f of of of BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +America america A Am Ame Amer a ca ica rica BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 1 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Phone phone P Ph Pho Phon e ne one hone BLOCKSTART LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +: : : : : : : : : : BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 PUNCT 0 0 ++01 +01 + +0 +01 +01 1 01 +01 +01 BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +650 650 6 65 650 650 0 50 650 650 BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS ALLDIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +- - - - - - - - - - BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 1 HYPHEN 0 0 +812 812 8 81 812 812 2 12 812 812 BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS ALLDIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +- - - - - - - - - - BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 1 HYPHEN 0 0 +4405 4405 4 44 440 4405 5 05 405 4405 BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS ALLDIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Email email E Em Ema Emai l il ail mail BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +: : : : : : : : : : BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 PUNCT 0 0 +marc marc m ma mar marc c rc arc marc BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 1 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +mosko@parc mosko@parc m mo mos mosk c rc arc parc BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +com com c co com com m om com com BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Ignacio ignacio I Ig Ign Igna o io cio acio BLOCKSTART LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 1 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Solis solis S So Sol Soli s is lis olis BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 1 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +LinkedIn linkedin L Li Lin Link n In dIn edIn BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Mountain mountain M Mo Mou Moun n in ain tain BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +View view V Vi Vie View w ew iew View BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +, , , , , , , , , , BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 COMMA 0 0 +California california C Ca Cal Cali a ia nia rnia BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +94043 94043 9 94 940 9404 3 43 043 4043 BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS ALLDIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +United united U Un Uni Unit d ed ted ited BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +States states S St Sta Stat s es tes ates BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +of of o of of of f of of of BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +America america A Am Ame Amer a ca ica rica BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 1 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Email email E Em Ema Emai l il ail mail BLOCKSTART LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +: : : : : : : : : : BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 PUNCT 0 0 +nsolis@linkedin nsolis@linkedin n ns nso nsol n in din edin BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +com com c co com com m om com com BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Christopher christopher C Ch Chr Chri r er her pher BLOCKSTART LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 1 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +A a A A A A A A A A BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +Wood wood W Wo Woo Wood d od ood Wood BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +University university U Un Uni Univ y ty ity sity BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +of of o of of of f of of of BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +California california C Ca Cal Cali a ia nia rnia BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Irvine irvine I Ir Irv Irvi e ne ine vine BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 1 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Irvine irvine I Ir Irv Irvi e ne ine vine BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 1 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +, , , , , , , , , , BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 COMMA 0 0 +California california C Ca Cal Cali a ia nia rnia BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +92697 92697 9 92 926 9269 7 97 697 2697 BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS ALLDIGIT 0 0 0 0 0 1 0 0 0 0 NOPUNCT 0 0 +United united U Un Uni Unit d ed ted ited BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +States states S St Sta Stat s es tes ates BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +of of o of of of f of of of BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +America america A Am Ame Amer a ca ica rica BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 1 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Phone phone P Ph Pho Phon e ne one hone BLOCKSTART LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +: : : : : : : : : : BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 PUNCT 0 0 ++01 +01 + +0 +01 +01 1 01 +01 +01 BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +315 315 3 31 315 315 5 15 315 315 BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS ALLDIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +- - - - - - - - - - BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 1 HYPHEN 0 0 +806 806 8 80 806 806 6 06 806 806 BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS ALLDIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +- - - - - - - - - - BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 1 HYPHEN 0 0 +5939 5939 5 59 593 5939 9 39 939 5939 BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS ALLDIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Email email E Em Ema Emai l il ail mail BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +: : : : : : : : : : BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 PUNCT 0 0 +woodc1@uci woodc1@uci w wo woo wood i ci uci @uci BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +edu edu e ed edu edu u du edu edu BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 + diff --git a/grobid-trainer/resources/dataset/header/sdo/ietf/corpus/raw/XP015133674.training.header b/grobid-trainer/resources/dataset/header/sdo/ietf/corpus/raw/XP015133674.training.header new file mode 100644 index 0000000000..de82b4c79b --- /dev/null +++ b/grobid-trainer/resources/dataset/header/sdo/ietf/corpus/raw/XP015133674.training.header @@ -0,0 +1,343 @@ +Internet internet I In Int Inte t et net rnet BLOCKSTART LINESTART NEWFONT HIGHERFONT 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Engineering engineering E En Eng Engi g ng ing ring BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Task task T Ta Tas Task k sk ask Task BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Force force F Fo For Forc e ce rce orce BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +( ( ( ( ( ( ( ( ( ( BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 OPENBRACKET 0 0 +IETF ietf I IE IET IETF F TF ETF IETF BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +) ) ) ) ) ) ) ) ) ) BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 ENDBRACKET 0 0 +J j J J J J J J J J BLOCKSTART LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +Arkko arkko A Ar Ark Arkk o ko kko rkko BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Request request R Re Req Requ t st est uest BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +for for f fo for for r or for for BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Comments comments C Co Com Comm s ts nts ents BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +: : : : : : : : : : BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 PUNCT 0 0 +8602 8602 8 86 860 8602 2 02 602 8602 BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS ALLDIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Ericsson ericsson E Er Eri Eric n on son sson BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Updates updates U Up Upd Upda s es tes ates BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +: : : : : : : : : : BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 PUNCT 0 0 +3219 3219 3 32 321 3219 9 19 219 3219 BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS ALLDIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +T t T T T T T T T T BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +Hardie hardie H Ha Har Hard e ie die rdie BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Category category C Ca Cat Cate y ry ory gory BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +: : : : : : : : : : BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 PUNCT 0 0 +Standards standards S St Sta Stan s ds rds ards BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Track track T Tr Tra Trac k ck ack rack BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +July july J Ju Jul July y ly uly July BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 1 0 0 0 NOPUNCT 0 0 +2019 2019 2 20 201 2019 9 19 019 2019 BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS ALLDIGIT 0 0 0 0 0 1 0 0 0 0 NOPUNCT 0 0 +ISSN issn I IS ISS ISSN N SN SSN ISSN BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +: : : : : : : : : : BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 PUNCT 0 0 +2070 2070 2 20 207 2070 0 70 070 2070 BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS ALLDIGIT 0 0 0 0 0 1 0 0 0 0 NOPUNCT 0 0 +- - - - - - - - - - BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 1 HYPHEN 0 0 +1721 1721 1 17 172 1721 1 21 721 1721 BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS ALLDIGIT 0 0 0 0 0 1 0 0 0 0 NOPUNCT 0 0 +Update update U Up Upd Upda e te ate date BLOCKSTART LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +to to t to to to o to to to BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +the the t th the the e he the the BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Telephony telephony T Te Tel Tele y ny ony hony BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Routing routing R Ro Rou Rout g ng ing ting BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +over over o ov ove over r er ver over BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +IP ip I IP IP IP P IP IP IP BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 0 1 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +( ( ( ( ( ( ( ( ( ( BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 OPENBRACKET 0 0 +TRIP trip T TR TRI TRIP P IP RIP TRIP BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 0 1 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +) ) ) ) ) ) ) ) ) ) BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 ENDBRACKET 0 0 +IANA iana I IA IAN IANA A NA ANA IANA BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Registry registry R Re Reg Regi y ry try stry BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Rules rules R Ru Rul Rule s es les ules BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +regarding regarding r re reg rega g ng ing ding BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Postal postal P Po Pos Post l al tal stal BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Addresses addresses A Ad Add Addr s es ses sses BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Abstract abstract A Ab Abs Abst t ct act ract BLOCKSTART LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +This this T Th Thi This s is his This BLOCKSTART LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +memo memo m me mem memo o mo emo memo BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +updates updates u up upd upda s es tes ates BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +the the t th the the e he the the BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +IANA iana I IA IAN IANA A NA ANA IANA BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +registry registry r re reg regi y ry try stry BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +rules rules r ru rul rule s es les ules BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +for for f fo for for r or for for BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +the the t th the the e he the the BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Telephony telephony T Te Tel Tele y ny ony hony BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Routing routing R Ro Rou Rout g ng ing ting BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +over over o ov ove over r er ver over BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +IP ip I IP IP IP P IP IP IP BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 0 1 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +( ( ( ( ( ( ( ( ( ( BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 OPENBRACKET 0 0 +TRIP trip T TR TRI TRIP P IP RIP TRIP BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 0 1 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +) ) ) ) ) ) ) ) ) ) BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 ENDBRACKET 0 0 +protocol protocol p pr pro prot l ol col ocol BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +, , , , , , , , , , BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 COMMA 0 0 +by by b by by by y by by by BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +no no n no no no o no no no BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +longer longer l lo lon long r er ger nger BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +requiring requiring r re req requ g ng ing ring BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +that that t th tha that t at hat that BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +postal postal p po pos post l al tal stal BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +addresses addresses a ad add addr s es ses sses BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +be be b be be be e be be be BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +included included i in inc incl d ed ded uded BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +in in i in in in n in in in BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +contact contact c co con cont t ct act tact BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +information information i in inf info n on ion tion BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +This this T Th Thi This s is his This BLOCKSTART LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +memo memo m me mem memo o mo emo memo BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +updates updates u up upd upda s es tes ates BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +RFC rfc R RF RFC RFC C FC RFC RFC BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +3219 3219 3 32 321 3219 9 19 219 3219 BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS ALLDIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +Status status S St Sta Stat s us tus atus BLOCKSTART LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +of of o of of of f of of of BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +This this T Th Thi This s is his This BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Memo memo M Me Mem Memo o mo emo Memo BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +This this T Th Thi This s is his This BLOCKSTART LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +is is i is is is s is is is BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +an an a an an an n an an an BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Internet internet I In Int Inte t et net rnet BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Standards standards S St Sta Stan s ds rds ards BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Track track T Tr Tra Trac k ck ack rack BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +document document d do doc docu t nt ent ment BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +This this T Th Thi This s is his This BLOCKSTART LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +document document d do doc docu t nt ent ment BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +is is i is is is s is is is BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +a a a a a a a a a a BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 1 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +product product p pr pro prod t ct uct duct BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +of of o of of of f of of of BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +the the t th the the e he the the BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Internet internet I In Int Inte t et net rnet BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Engineering engineering E En Eng Engi g ng ing ring BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Task task T Ta Tas Task k sk ask Task BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Force force F Fo For Forc e ce rce orce BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +( ( ( ( ( ( ( ( ( ( BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 OPENBRACKET 0 0 +IETF ietf I IE IET IETF F TF ETF IETF BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +) ) ) ) ) ) ) ) ) ) BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 ENDBRACKET 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +It it I It It It t It It It BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +represents represents r re rep repr s ts nts ents BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +the the t th the the e he the the BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +consensus consensus c co con cons s us sus nsus BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +of of o of of of f of of of BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +the the t th the the e he the the BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +IETF ietf I IE IET IETF F TF ETF IETF BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +community community c co com comm y ty ity nity BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +It it I It It It t It It It BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +has has h ha has has s as has has BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +received received r re rec rece d ed ved ived BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +public public p pu pub publ c ic lic blic BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +review review r re rev revi w ew iew view BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +and and a an and and d nd and and BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +has has h ha has has s as has has BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +been been b be bee been n en een been BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +approved approved a ap app appr d ed ved oved BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +for for f fo for for r or for for BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +publication publication p pu pub publ n on ion tion BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +by by b by by by y by by by BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +the the t th the the e he the the BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Internet internet I In Int Inte t et net rnet BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Engineering engineering E En Eng Engi g ng ing ring BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Steering steering S St Ste Stee g ng ing ring BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Group group G Gr Gro Grou p up oup roup BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +( ( ( ( ( ( ( ( ( ( BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 OPENBRACKET 0 0 +IESG iesg I IE IES IESG G SG ESG IESG BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +) ) ) ) ) ) ) ) ) ) BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 ENDBRACKET 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +Further further F Fu Fur Furt r er her ther BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +information information i in inf info n on ion tion BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +on on o on on on n on on on BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Internet internet I In Int Inte t et net rnet BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Standards standards S St Sta Stan s ds rds ards BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +is is i is is is s is is is BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +available available a av ava avai e le ble able BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +in in i in in in n in in in BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Section section S Se Sec Sect n on ion tion BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +2 2 2 2 2 2 2 2 2 2 BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +of of o of of of f of of of BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +RFC rfc R RF RFC RFC C FC RFC RFC BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +7841 7841 7 78 784 7841 1 41 841 7841 BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS ALLDIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +Information information I In Inf Info n on ion tion BLOCKSTART LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +about about a ab abo abou t ut out bout BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +the the t th the the e he the the BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +current current c cu cur curr t nt ent rent BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +status status s st sta stat s us tus atus BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +of of o of of of f of of of BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +this this t th thi this s is his this BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +document document d do doc docu t nt ent ment BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +, , , , , , , , , , BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 COMMA 0 0 +any any a an any any y ny any any BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +errata errata e er err erra a ta ata rata BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +, , , , , , , , , , BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 COMMA 0 0 +and and a an and and d nd and and BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +how how h ho how how w ow how how BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +to to t to to to o to to to BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +provide provide p pr pro prov e de ide vide BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +feedback feedback f fe fee feed k ck ack back BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +on on o on on on n on on on BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +it it i it it it t it it it BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +may may m ma may may y ay may may BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 1 1 0 0 0 1 0 0 0 NOPUNCT 0 0 +be be b be be be e be be be BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +obtained obtained o ob obt obta d ed ned ined BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +at at a at at at t at at at BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +https https h ht htt http s ps tps ttps BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 0 NOPUNCT 0 0 +: : : : : : : : : : BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 PUNCT 0 0 +/ / / / / / / / / / BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +/ / / / / / / / / / BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +www www w ww www www w ww www www BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +rfc rfc r rf rfc rfc c fc rfc rfc BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +- - - - - - - - - - BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 1 HYPHEN 0 0 +editor editor e ed edi edit r or tor itor BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +org org o or org org g rg org org BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +/ / / / / / / / / / BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +info info i in inf info o fo nfo info BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 1 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +/ / / / / / / / / / BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +rfc8602 rfc8602 r rf rfc rfc8 2 02 602 8602 BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +Copyright copyright C Co Cop Copy t ht ght ight BLOCKSTART LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Notice notice N No Not Noti e ce ice tice BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Copyright copyright C Co Cop Copy t ht ght ight BLOCKSTART LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +( ( ( ( ( ( ( ( ( ( BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 OPENBRACKET 0 0 +c c c c c c c c c c BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +) ) ) ) ) ) ) ) ) ) BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 ENDBRACKET 0 0 +2019 2019 2 20 201 2019 9 19 019 2019 BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS ALLDIGIT 0 0 0 0 0 1 0 0 0 0 NOPUNCT 0 0 +IETF ietf I IE IET IETF F TF ETF IETF BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Trust trust T Tr Tru Trus t st ust rust BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +and and a an and and d nd and and BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +the the t th the the e he the the BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +persons persons p pe per pers s ns ons sons BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +identified identified i id ide iden d ed ied fied BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +as as a as as as s as as as BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +the the t th the the e he the the BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +document document d do doc docu t nt ent ment BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +authors authors a au aut auth s rs ors hors BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +All all A Al All All l ll All All BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +rights rights r ri rig righ s ts hts ghts BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +reserved reserved r re res rese d ed ved rved BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +This this T Th Thi This s is his This BLOCKSTART LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +document document d do doc docu t nt ent ment BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +is is i is is is s is is is BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +subject subject s su sub subj t ct ect ject BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +to to t to to to o to to to BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +BCP bcp B BC BCP BCP P CP BCP BCP BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +78 78 7 78 78 78 8 78 78 78 BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS ALLDIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +and and a an and and d nd and and BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +the the t th the the e he the the BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +IETF ietf I IE IET IETF F TF ETF IETF BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Trust trust T Tr Tru Trus t st ust rust BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +' ' ' ' ' ' ' ' ' ' BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 QUOTE 0 0 +s s s s s s s s s s BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Legal legal L Le Leg Lega l al gal egal BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Provisions provisions P Pr Pro Prov s ns ons ions BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Relating relating R Re Rel Rela g ng ing ting BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +to to t to to to o to to to BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +IETF ietf I IE IET IETF F TF ETF IETF BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Documents documents D Do Doc Docu s ts nts ents BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +( ( ( ( ( ( ( ( ( ( BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 OPENBRACKET 0 0 +https https h ht htt http s ps tps ttps BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 0 NOPUNCT 0 0 +: : : : : : : : : : BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 PUNCT 0 0 +/ / / / / / / / / / BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +/ / / / / / / / / / BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +trustee trustee t tr tru trus e ee tee stee BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +ietf ietf i ie iet ietf f tf etf ietf BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +org org o or org org g rg org org BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +/ / / / / / / / / / BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +license license l li lic lice e se nse ense BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +- - - - - - - - - - BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 1 HYPHEN 0 0 +info info i in inf info o fo nfo info BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 1 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +) ) ) ) ) ) ) ) ) ) BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 ENDBRACKET 0 0 +in in i in in in n in in in BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +effect effect e ef eff effe t ct ect fect BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +on on o on on on n on on on BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +the the t th the the e he the the BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +date date d da dat date e te ate date BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +of of o of of of f of of of BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +publication publication p pu pub publ n on ion tion BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +of of o of of of f of of of BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +this this t th thi this s is his this BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +document document d do doc docu t nt ent ment BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +Please please P Pl Ple Plea e se ase ease BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +review review r re rev revi w ew iew view BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +these these t th the thes e se ese hese BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +documents documents d do doc docu s ts nts ents BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +carefully carefully c ca car care y ly lly ully BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +, , , , , , , , , , BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 COMMA 0 0 +as as a as as as s as as as BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +they they t th the they y ey hey they BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +describe describe d de des desc e be ibe ribe BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +your your y yo you your r ur our your BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +rights rights r ri rig righ s ts hts ghts BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +and and a an and and d nd and and BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +restrictions restrictions r re res rest s ns ons ions BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +with with w wi wit with h th ith with BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +respect respect r re res resp t ct ect pect BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +to to t to to to o to to to BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +this this t th thi this s is his this BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +document document d do doc docu t nt ent ment BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +Code code C Co Cod Code e de ode Code BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Components components C Co Com Comp s ts nts ents BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +extracted extracted e ex ext extr d ed ted cted BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +from from f fr fro from m om rom from BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +this this t th thi this s is his this BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +document document d do doc docu t nt ent ment BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +must must m mu mus must t st ust must BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +include include i in inc incl e de ude lude BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Simplified simplified S Si Sim Simp d ed ied fied BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +BSD bsd B BS BSD BSD D SD BSD BSD BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +License license L Li Lic Lice e se nse ense BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +text text t te tex text t xt ext text BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +as as a as as as s as as as BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +described described d de des desc d ed bed ibed BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +in in i in in in n in in in BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Section section S Se Sec Sect n on ion tion BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +4 4 4 4 4 4 4 4 4 4 BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +e e e e e e e e e e BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +of of o of of of f of of of BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +the the t th the the e he the the BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Trust trust T Tr Tru Trus t st ust rust BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Legal legal L Le Leg Lega l al gal egal BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Provisions provisions P Pr Pro Prov s ns ons ions BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +and and a an and and d nd and and BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +are are a ar are are e re are are BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +provided provided p pr pro prov d ed ded ided BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +without without w wi wit with t ut out hout BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +warranty warranty w wa war warr y ty nty anty BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +as as a as as as s as as as BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +described described d de des desc d ed bed ibed BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +in in i in in in n in in in BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +the the t th the the e he the the BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Simplified simplified S Si Sim Simp d ed ied fied BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +BSD bsd B BS BSD BSD D SD BSD BSD BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +License license L Li Lic Lice e se nse ense BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +Jari jari J Ja Jar Jari i ri ari Jari BLOCKSTART LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Arkko arkko A Ar Ark Arkk o ko kko rkko BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Ericsson ericsson E Er Eri Eric n on son sson BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Kauniainen kauniainen K Ka Kau Kaun n en nen inen BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +02700 02700 0 02 027 0270 0 00 700 2700 BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS ALLDIGIT 0 0 0 0 0 1 0 0 0 0 NOPUNCT 0 0 +Finland finland F Fi Fin Finl d nd and land BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Email email E Em Ema Emai l il ail mail BLOCKSTART LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +: : : : : : : : : : BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 PUNCT 0 0 +jari jari j ja jar jari i ri ari jari BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +arkko@piuha arkko@piuha a ar ark arkk a ha uha iuha BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +net net n ne net net t et net net BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Ted ted T Te Ted Ted d ed Ted Ted BLOCKSTART LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 1 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Hardie hardie H Ha Har Hard e ie die rdie BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Email email E Em Ema Emai l il ail mail BLOCKSTART LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +: : : : : : : : : : BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 PUNCT 0 0 +ted ted t te ted ted d ed ted ted BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 1 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +ietf@gmail ietf@gmail i ie iet ietf l il ail mail BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +com com c co com com m om com com BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 + diff --git a/grobid-trainer/resources/dataset/header/sdo/ietf/corpus/raw/XP015133675.training.header b/grobid-trainer/resources/dataset/header/sdo/ietf/corpus/raw/XP015133675.training.header new file mode 100644 index 0000000000..2629043f25 --- /dev/null +++ b/grobid-trainer/resources/dataset/header/sdo/ietf/corpus/raw/XP015133675.training.header @@ -0,0 +1,840 @@ +Internet internet I In Int Inte t et net rnet BLOCKSTART LINESTART NEWFONT HIGHERFONT 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Research research R Re Res Rese h ch rch arch BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Task task T Ta Tas Task k sk ask Task BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Force force F Fo For Forc e ce rce orce BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +( ( ( ( ( ( ( ( ( ( BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 OPENBRACKET 0 0 +IRTF irtf I IR IRT IRTF F TF RTF IRTF BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +) ) ) ) ) ) ) ) ) ) BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 ENDBRACKET 0 0 +M m M M M M M M M M BLOCKSTART LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +Mosko mosko M Mo Mos Mosk o ko sko osko BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Request request R Re Req Requ t st est uest BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +for for f fo for for r or for for BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Comments comments C Co Com Comm s ts nts ents BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +: : : : : : : : : : BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 PUNCT 0 0 +8609 8609 8 86 860 8609 9 09 609 8609 BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS ALLDIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +PARC parc P PA PAR PARC C RC ARC PARC BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +, , , , , , , , , , BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 COMMA 0 0 +Inc inc I In Inc Inc c nc Inc Inc BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +Category category C Ca Cat Cate y ry ory gory BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +: : : : : : : : : : BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 PUNCT 0 0 +Experimental experimental E Ex Exp Expe l al tal ntal BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +I i I I I I I I I I BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +Solis solis S So Sol Soli s is lis olis BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 1 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +ISSN issn I IS ISS ISSN N SN SSN ISSN BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +: : : : : : : : : : BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 PUNCT 0 0 +2070 2070 2 20 207 2070 0 70 070 2070 BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS ALLDIGIT 0 0 0 0 0 1 0 0 0 0 NOPUNCT 0 0 +- - - - - - - - - - BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 1 HYPHEN 0 0 +1721 1721 1 17 172 1721 1 21 721 1721 BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS ALLDIGIT 0 0 0 0 0 1 0 0 0 0 NOPUNCT 0 0 +LinkedIn linkedin L Li Lin Link n In dIn edIn BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +C c C C C C C C C C BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +Wood wood W Wo Woo Wood d od ood Wood BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +University university U Un Uni Univ y ty ity sity BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +of of o of of of f of of of BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +California california C Ca Cal Cali a ia nia rnia BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Irvine irvine I Ir Irv Irvi e ne ine vine BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 1 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +July july J Ju Jul July y ly uly July BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 1 0 0 0 NOPUNCT 0 0 +2019 2019 2 20 201 2019 9 19 019 2019 BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS ALLDIGIT 0 0 0 0 0 1 0 0 0 0 NOPUNCT 0 0 +Content content C Co Con Cont t nt ent tent BLOCKSTART LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +- - - - - - - - - - BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 1 HYPHEN 0 0 +Centric centric C Ce Cen Cent c ic ric tric BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Networking networking N Ne Net Netw g ng ing king BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +( ( ( ( ( ( ( ( ( ( BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 OPENBRACKET 0 0 +CCNx ccnx C CC CCN CCNx x Nx CNx CCNx BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +) ) ) ) ) ) ) ) ) ) BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 ENDBRACKET 0 0 +Messages messages M Me Mes Mess s es ges ages BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +in in i in in in n in in in BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +TLV tlv T TL TLV TLV V LV TLV TLV BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Format format F Fo For Form t at mat rmat BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Abstract abstract A Ab Abs Abst t ct act ract BLOCKSTART LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Content content C Co Con Cont t nt ent tent BLOCKSTART LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +- - - - - - - - - - BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 1 HYPHEN 0 0 +Centric centric C Ce Cen Cent c ic ric tric BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Networking networking N Ne Net Netw g ng ing king BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +( ( ( ( ( ( ( ( ( ( BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 OPENBRACKET 0 0 +CCNx ccnx C CC CCN CCNx x Nx CNx CCNx BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +) ) ) ) ) ) ) ) ) ) BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 ENDBRACKET 0 0 +is is i is is is s is is is BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +a a a a a a a a a a BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 1 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +network network n ne net netw k rk ork work BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +protocol protocol p pr pro prot l ol col ocol BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +that that t th tha that t at hat that BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +uses uses u us use uses s es ses uses BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +a a a a a a a a a a BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 1 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +hierarchical hierarchical h hi hie hier l al cal ical BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +name name n na nam name e me ame name BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +to to t to to to o to to to BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +forward forward f fo for forw d rd ard ward BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +requests requests r re req requ s ts sts ests BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +and and a an and and d nd and and BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +to to t to to to o to to to BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +match match m ma mat matc h ch tch atch BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +responses responses r re res resp s es ses nses BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +to to t to to to o to to to BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +requests requests r re req requ s ts sts ests BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +This this T Th Thi This s is his This BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +document document d do doc docu t nt ent ment BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +specifies specifies s sp spe spec s es ies fies BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +the the t th the the e he the the BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +encoding encoding e en enc enco g ng ing ding BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +of of o of of of f of of of BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +CCNx ccnx C CC CCN CCNx x Nx CNx CCNx BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +messages messages m me mes mess s es ges ages BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +in in i in in in n in in in BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +a a a a a a a a a a BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 1 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +TLV tlv T TL TLV TLV V LV TLV TLV BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +packet packet p pa pac pack t et ket cket BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +format format f fo for form t at mat rmat BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +, , , , , , , , , , BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 COMMA 0 0 +including including i in inc incl g ng ing ding BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +the the t th the the e he the the BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +TLV tlv T TL TLV TLV V LV TLV TLV BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +types types t ty typ type s es pes ypes BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +used used u us use used d ed sed used BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +by by b by by by y by by by BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +each each e ea eac each h ch ach each BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +message message m me mes mess e ge age sage BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +element element e el ele elem t nt ent ment BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +and and a an and and d nd and and BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +the the t th the the e he the the BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +encoding encoding e en enc enco g ng ing ding BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +of of o of of of f of of of BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +each each e ea eac each h ch ach each BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +value value v va val valu e ue lue alue BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +The the T Th The The e he The The BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +semantics semantics s se sem sema s cs ics tics BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +of of o of of of f of of of BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +CCNx ccnx C CC CCN CCNx x Nx CNx CCNx BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +messages messages m me mes mess s es ges ages BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +follow follow f fo fol foll w ow low llow BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +the the t th the the e he the the BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +encoding encoding e en enc enco g ng ing ding BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +- - - - - - - - - - BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 1 HYPHEN 0 0 +independent independent i in ind inde t nt ent dent BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +CCNx ccnx C CC CCN CCNx x Nx CNx CCNx BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Semantics semantics S Se Sem Sema s cs ics tics BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +specification specification s sp spe spec n on ion tion BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +This this T Th Thi This s is his This BLOCKSTART LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +document document d do doc docu t nt ent ment BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +is is i is is is s is is is BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +a a a a a a a a a a BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 1 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +product product p pr pro prod t ct uct duct BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +of of o of of of f of of of BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +the the t th the the e he the the BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Information information I In Inf Info n on ion tion BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Centric centric C Ce Cen Cent c ic ric tric BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Networking networking N Ne Net Netw g ng ing king BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +research research r re res rese h ch rch arch BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +group group g gr gro grou p up oup roup BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +( ( ( ( ( ( ( ( ( ( BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 OPENBRACKET 0 0 +ICNRG icnrg I IC ICN ICNR G RG NRG CNRG BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +) ) ) ) ) ) ) ) ) ) BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 ENDBRACKET 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +The the T Th The The e he The The BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +document document d do doc docu t nt ent ment BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +received received r re rec rece d ed ved ived BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +wide wide w wi wid wide e de ide wide BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +review review r re rev revi w ew iew view BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +among among a am amo amon g ng ong mong BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +ICNRG icnrg I IC ICN ICNR G RG NRG CNRG BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +participants participants p pa par part s ts nts ants BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +and and a an and and d nd and and BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +has has h ha has has s as has has BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +two two t tw two two o wo two two BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +full full f fu ful full l ll ull full BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +implementations implementations i im imp impl s ns ons ions BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +currently currently c cu cur curr y ly tly ntly BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +in in i in in in n in in in BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +active active a ac act acti e ve ive tive BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +use use u us use use e se use use BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +, , , , , , , , , , BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 COMMA 0 0 +which which w wh whi whic h ch ich hich BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +have have h ha hav have e ve ave have BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +informed informed i in inf info d ed med rmed BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +the the t th the the e he the the BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +technical technical t te tec tech l al cal ical BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +maturity maturity m ma mat matu y ty ity rity BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +of of o of of of f of of of BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +the the t th the the e he the the BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +protocol protocol p pr pro prot l ol col ocol BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +specification specification s sp spe spec n on ion tion BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +Status status S St Sta Stat s us tus atus BLOCKSTART LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +of of o of of of f of of of BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +This this T Th Thi This s is his This BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Memo memo M Me Mem Memo o mo emo Memo BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +This this T Th Thi This s is his This BLOCKSTART LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +document document d do doc docu t nt ent ment BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +is is i is is is s is is is BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +not not n no not not t ot not not BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +an an a an an an n an an an BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Internet internet I In Int Inte t et net rnet BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Standards standards S St Sta Stan s ds rds ards BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Track track T Tr Tra Trac k ck ack rack BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +specification specification s sp spe spec n on ion tion BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +; ; ; ; ; ; ; ; ; ; BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 PUNCT 0 0 +it it i it it it t it it it BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +is is i is is is s is is is BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +published published p pu pub publ d ed hed shed BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +for for f fo for for r or for for BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +examination examination e ex exa exam n on ion tion BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +, , , , , , , , , , BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 COMMA 0 0 +experimental experimental e ex exp expe l al tal ntal BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +implementation implementation i im imp impl n on ion tion BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +, , , , , , , , , , BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 COMMA 0 0 +and and a an and and d nd and and BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +evaluation evaluation e ev eva eval n on ion tion BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +This this T Th Thi This s is his This BLOCKSTART LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +document document d do doc docu t nt ent ment BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +defines defines d de def defi s es nes ines BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +an an a an an an n an an an BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Experimental experimental E Ex Exp Expe l al tal ntal BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Protocol protocol P Pr Pro Prot l ol col ocol BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +for for f fo for for r or for for BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +the the t th the the e he the the BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Internet internet I In Int Inte t et net rnet BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +community community c co com comm y ty ity nity BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +This this T Th Thi This s is his This BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +document document d do doc docu t nt ent ment BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +is is i is is is s is is is BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +a a a a a a a a a a BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 1 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +product product p pr pro prod t ct uct duct BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +of of o of of of f of of of BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +the the t th the the e he the the BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Internet internet I In Int Inte t et net rnet BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Research research R Re Res Rese h ch rch arch BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Task task T Ta Tas Task k sk ask Task BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Force force F Fo For Forc e ce rce orce BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +( ( ( ( ( ( ( ( ( ( BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 OPENBRACKET 0 0 +IRTF irtf I IR IRT IRTF F TF RTF IRTF BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +) ) ) ) ) ) ) ) ) ) BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 ENDBRACKET 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +The the T Th The The e he The The BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +IRTF irtf I IR IRT IRTF F TF RTF IRTF BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +publishes publishes p pu pub publ s es hes shes BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +the the t th the the e he the the BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +results results r re res resu s ts lts ults BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +of of o of of of f of of of BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Internet internet I In Int Inte t et net rnet BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +- - - - - - - - - - BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 1 HYPHEN 0 0 +related related r re rel rela d ed ted ated BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +research research r re res rese h ch rch arch BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +and and a an and and d nd and and BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +development development d de dev deve t nt ent ment BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +activities activities a ac act acti s es ies ties BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +These these T Th The Thes e se ese hese BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +results results r re res resu s ts lts ults BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +might might m mi mig migh t ht ght ight BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +not not n no not not t ot not not BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +be be b be be be e be be be BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +suitable suitable s su sui suit e le ble able BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +for for f fo for for r or for for BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +deployment deployment d de dep depl t nt ent ment BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +This this T Th Thi This s is his This BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +RFC rfc R RF RFC RFC C FC RFC RFC BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +represents represents r re rep repr s ts nts ents BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +the the t th the the e he the the BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +consensus consensus c co con cons s us sus nsus BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +of of o of of of f of of of BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +the the t th the the e he the the BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Information information I In Inf Info n on ion tion BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +- - - - - - - - - - BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 1 HYPHEN 0 0 +Centric centric C Ce Cen Cent c ic ric tric BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Networking networking N Ne Net Netw g ng ing king BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Research research R Re Res Rese h ch rch arch BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Group group G Gr Gro Grou p up oup roup BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +of of o of of of f of of of BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +the the t th the the e he the the BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Internet internet I In Int Inte t et net rnet BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Research research R Re Res Rese h ch rch arch BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Task task T Ta Tas Task k sk ask Task BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Force force F Fo For Forc e ce rce orce BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +( ( ( ( ( ( ( ( ( ( BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 OPENBRACKET 0 0 +IRTF irtf I IR IRT IRTF F TF RTF IRTF BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +) ) ) ) ) ) ) ) ) ) BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 ENDBRACKET 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +Documents documents D Do Doc Docu s ts nts ents BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +approved approved a ap app appr d ed ved oved BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +for for f fo for for r or for for BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +publication publication p pu pub publ n on ion tion BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +by by b by by by y by by by BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +the the t th the the e he the the BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +IRSG irsg I IR IRS IRSG G SG RSG IRSG BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +are are a ar are are e re are are BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +not not n no not not t ot not not BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +candidates candidates c ca can cand s es tes ates BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +for for f fo for for r or for for BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +any any a an any any y ny any any BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +level level l le lev leve l el vel evel BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +of of o of of of f of of of BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Internet internet I In Int Inte t et net rnet BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Standard standard S St Sta Stan d rd ard dard BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +; ; ; ; ; ; ; ; ; ; BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 PUNCT 0 0 +see see s se see see e ee see see BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Section section S Se Sec Sect n on ion tion BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +2 2 2 2 2 2 2 2 2 2 BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +of of o of of of f of of of BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +RFC rfc R RF RFC RFC C FC RFC RFC BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +7841 7841 7 78 784 7841 1 41 841 7841 BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS ALLDIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +Information information I In Inf Info n on ion tion BLOCKSTART LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +about about a ab abo abou t ut out bout BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +the the t th the the e he the the BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +current current c cu cur curr t nt ent rent BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +status status s st sta stat s us tus atus BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +of of o of of of f of of of BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +this this t th thi this s is his this BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +document document d do doc docu t nt ent ment BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +, , , , , , , , , , BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 COMMA 0 0 +any any a an any any y ny any any BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +errata errata e er err erra a ta ata rata BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +, , , , , , , , , , BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 COMMA 0 0 +and and a an and and d nd and and BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +how how h ho how how w ow how how BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +to to t to to to o to to to BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +provide provide p pr pro prov e de ide vide BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +feedback feedback f fe fee feed k ck ack back BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +on on o on on on n on on on BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +it it i it it it t it it it BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +may may m ma may may y ay may may BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 1 1 0 0 0 1 0 0 0 NOPUNCT 0 0 +be be b be be be e be be be BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +obtained obtained o ob obt obta d ed ned ined BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +at at a at at at t at at at BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +https https h ht htt http s ps tps ttps BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 0 NOPUNCT 0 0 +: : : : : : : : : : BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 PUNCT 0 0 +/ / / / / / / / / / BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +/ / / / / / / / / / BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +www www w ww www www w ww www www BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +rfc rfc r rf rfc rfc c fc rfc rfc BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +- - - - - - - - - - BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 1 HYPHEN 0 0 +editor editor e ed edi edit r or tor itor BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +org org o or org org g rg org org BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +/ / / / / / / / / / BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +info info i in inf info o fo nfo info BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 1 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +/ / / / / / / / / / BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +rfc8609 rfc8609 r rf rfc rfc8 9 09 609 8609 BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +Mosko mosko M Mo Mos Mosk o ko sko osko BLOCKSTART LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +, , , , , , , , , , BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 COMMA 0 0 +et et e et et et t et et et BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +al al a al al al l al al al BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 1 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +Experimental experimental E Ex Exp Expe l al tal ntal BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +[ [ [ [ [ [ [ [ [ [ BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 OPENBRACKET 0 0 +Page page P Pa Pag Page e ge age Page BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +1 1 1 1 1 1 1 1 1 1 BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +] ] ] ] ] ] ] ] ] ] BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 ENDBRACKET 0 0 +RFC rfc R RF RFC RFC C FC RFC RFC BLOCKSTART LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +8609 8609 8 86 860 8609 9 09 609 8609 BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS ALLDIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +CCNx ccnx C CC CCN CCNx x Nx CNx CCNx BLOCKSTART LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +TLV tlv T TL TLV TLV V LV TLV TLV BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +July july J Ju Jul July y ly uly July BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 1 0 0 0 NOPUNCT 0 0 +2019 2019 2 20 201 2019 9 19 019 2019 BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS ALLDIGIT 0 0 0 0 0 1 0 0 0 0 NOPUNCT 0 0 +Copyright copyright C Co Cop Copy t ht ght ight BLOCKSTART LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Notice notice N No Not Noti e ce ice tice BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Copyright copyright C Co Cop Copy t ht ght ight BLOCKSTART LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +( ( ( ( ( ( ( ( ( ( BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 OPENBRACKET 0 0 +c c c c c c c c c c BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +) ) ) ) ) ) ) ) ) ) BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 ENDBRACKET 0 0 +2019 2019 2 20 201 2019 9 19 019 2019 BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS ALLDIGIT 0 0 0 0 0 1 0 0 0 0 NOPUNCT 0 0 +IETF ietf I IE IET IETF F TF ETF IETF BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Trust trust T Tr Tru Trus t st ust rust BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +and and a an and and d nd and and BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +the the t th the the e he the the BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +persons persons p pe per pers s ns ons sons BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +identified identified i id ide iden d ed ied fied BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +as as a as as as s as as as BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +the the t th the the e he the the BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +document document d do doc docu t nt ent ment BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +authors authors a au aut auth s rs ors hors BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +All all A Al All All l ll All All BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +rights rights r ri rig righ s ts hts ghts BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +reserved reserved r re res rese d ed ved rved BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +This this T Th Thi This s is his This BLOCKSTART LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +document document d do doc docu t nt ent ment BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +is is i is is is s is is is BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +subject subject s su sub subj t ct ect ject BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +to to t to to to o to to to BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +BCP bcp B BC BCP BCP P CP BCP BCP BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +78 78 7 78 78 78 8 78 78 78 BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS ALLDIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +and and a an and and d nd and and BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +the the t th the the e he the the BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +IETF ietf I IE IET IETF F TF ETF IETF BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Trust trust T Tr Tru Trus t st ust rust BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +' ' ' ' ' ' ' ' ' ' BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 QUOTE 0 0 +s s s s s s s s s s BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Legal legal L Le Leg Lega l al gal egal BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Provisions provisions P Pr Pro Prov s ns ons ions BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Relating relating R Re Rel Rela g ng ing ting BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +to to t to to to o to to to BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +IETF ietf I IE IET IETF F TF ETF IETF BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Documents documents D Do Doc Docu s ts nts ents BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +( ( ( ( ( ( ( ( ( ( BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 OPENBRACKET 0 0 +https https h ht htt http s ps tps ttps BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 0 NOPUNCT 0 0 +: : : : : : : : : : BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 PUNCT 0 0 +/ / / / / / / / / / BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +/ / / / / / / / / / BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +trustee trustee t tr tru trus e ee tee stee BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +ietf ietf i ie iet ietf f tf etf ietf BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +org org o or org org g rg org org BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +/ / / / / / / / / / BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +license license l li lic lice e se nse ense BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +- - - - - - - - - - BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 1 HYPHEN 0 0 +info info i in inf info o fo nfo info BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 1 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +) ) ) ) ) ) ) ) ) ) BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 ENDBRACKET 0 0 +in in i in in in n in in in BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +effect effect e ef eff effe t ct ect fect BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +on on o on on on n on on on BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +the the t th the the e he the the BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +date date d da dat date e te ate date BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +of of o of of of f of of of BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +publication publication p pu pub publ n on ion tion BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +of of o of of of f of of of BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +this this t th thi this s is his this BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +document document d do doc docu t nt ent ment BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +Please please P Pl Ple Plea e se ase ease BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +review review r re rev revi w ew iew view BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +these these t th the thes e se ese hese BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +documents documents d do doc docu s ts nts ents BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +carefully carefully c ca car care y ly lly ully BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +, , , , , , , , , , BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 COMMA 0 0 +as as a as as as s as as as BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +they they t th the they y ey hey they BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +describe describe d de des desc e be ibe ribe BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +your your y yo you your r ur our your BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +rights rights r ri rig righ s ts hts ghts BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +and and a an and and d nd and and BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +restrictions restrictions r re res rest s ns ons ions BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +with with w wi wit with h th ith with BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +respect respect r re res resp t ct ect pect BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +to to t to to to o to to to BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +this this t th thi this s is his this BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +document document d do doc docu t nt ent ment BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +the the t th the the e he the the BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +TLV tlv T TL TLV TLV V LV TLV TLV BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +type type t ty typ type e pe ype type BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +and and a an and and d nd and and BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +value value v va val valu e ue lue alue BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +encodings encodings e en enc enco s gs ngs ings BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +for for f fo for for r or for for BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +CCNx ccnx C CC CCN CCNx x Nx CNx CCNx BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +messages messages m me mes mess s es ges ages BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +A a A A A A A A A A BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +full full f fu ful full l ll ull full BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +description description d de des desc n on ion tion BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +of of o of of of f of of of BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +the the t th the the e he the the BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +CCNx ccnx C CC CCN CCNx x Nx CNx CCNx BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +network network n ne net netw k rk ork work BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +protocol protocol p pr pro prot l ol col ocol BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +, , , , , , , , , , BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 COMMA 0 0 +providing providing p pr pro prov g ng ing ding BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +an an a an an an n an an an BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +encoding encoding e en enc enco g ng ing ding BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +- - - - - - - - - - BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 1 HYPHEN 0 0 +free free f fr fre free e ee ree free BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +description description d de des desc n on ion tion BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +of of o of of of f of of of BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +CCNx ccnx C CC CCN CCNx x Nx CNx CCNx BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +messages messages m me mes mess s es ges ages BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +and and a an and and d nd and and BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +message message m me mes mess e ge age sage BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +elements elements e el ele elem s ts nts ents BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +, , , , , , , , , , BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 COMMA 0 0 +may may m ma may may y ay may may BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 1 1 0 0 0 1 0 0 0 NOPUNCT 0 0 +be be b be be be e be be be BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +found found f fo fou foun d nd und ound BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +in in i in in in n in in in BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +[ [ [ [ [ [ [ [ [ [ BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 OPENBRACKET 0 0 +RFC8569 rfc8569 R RF RFC RFC8 9 69 569 8569 BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +] ] ] ] ] ] ] ] ] ] BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 ENDBRACKET 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +CCNx ccnx C CC CCN CCNx x Nx CNx CCNx BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +is is i is is is s is is is BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +a a a a a a a a a a BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 1 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +network network n ne net netw k rk ork work BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +protocol protocol p pr pro prot l ol col ocol BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +that that t th tha that t at hat that BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +uses uses u us use uses s es ses uses BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +a a a a a a a a a a BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 1 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +hierarchical hierarchical h hi hie hier l al cal ical BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +name name n na nam name e me ame name BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +to to t to to to o to to to BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +forward forward f fo for forw d rd ard ward BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +requests requests r re req requ s ts sts ests BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +and and a an and and d nd and and BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +to to t to to to o to to to BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +match match m ma mat matc h ch tch atch BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +responses responses r re res resp s es ses nses BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +to to t to to to o to to to BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +requests requests r re req requ s ts sts ests BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +It it I It It It t It It It BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +does does d do doe does s es oes does BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +not not n no not not t ot not not BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +use use u us use use e se use use BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +endpoint endpoint e en end endp t nt int oint BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +addresses addresses a ad add addr s es ses sses BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +; ; ; ; ; ; ; ; ; ; BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 PUNCT 0 0 +the the t th the the e he the the BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Internet internet I In Int Inte t et net rnet BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Protocol protocol P Pr Pro Prot l ol col ocol BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +does does d do doe does s es oes does BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +Restrictions restrictions R Re Res Rest s ns ons ions BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +in in i in in in n in in in BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +a a a a a a a a a a BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 1 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +request request r re req requ t st est uest BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +can can c ca can can n an can can BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +limit limit l li lim limi t it mit imit BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +the the t th the the e he the the BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +response response r re res resp e se nse onse BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +by by b by by by y by by by BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +the the t th the the e he the the BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +public public p pu pub publ c ic lic blic BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +key key k ke key key y ey key key BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +of of o of of of f of of of BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +the the t th the the e he the the BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +response response r re res resp e se nse onse BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +' ' ' ' ' ' ' ' ' ' BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 QUOTE 0 0 +s s s s s s s s s s BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +signer signer s si sig sign r er ner gner BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +or or o or or or r or or or BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +the the t th the the e he the the BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +cryptographic cryptographic c cr cry cryp c ic hic phic BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +hash hash h ha has hash h sh ash hash BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +of of o of of of f of of of BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +the the t th the the e he the the BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +response response r re res resp e se nse onse BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +Every every E Ev Eve Ever y ry ery very BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +CCNx ccnx C CC CCN CCNx x Nx CNx CCNx BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +forwarder forwarder f fo for forw r er der rder BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +along along a al alo alon g ng ong long BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +the the t th the the e he the the BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +path path p pa pat path h th ath path BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +does does d do doe does s es oes does BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +the the t th the the e he the the BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +name name n na nam name e me ame name BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +matching matching m ma mat matc g ng ing hing BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +and and a an and and d nd and and BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +restriction restriction r re res rest n on ion tion BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +checking checking c ch che chec g ng ing king BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +The the T Th The The e he The The BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +CCNx ccnx C CC CCN CCNx x Nx CNx CCNx BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +protocol protocol p pr pro prot l ol col ocol BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +fits fits f fi fit fits s ts its fits BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +within within w wi wit with n in hin thin BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +the the t th the the e he the the BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +broader broader b br bro broa r er der ader BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +framework framework f fr fra fram k rk ork work BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +of of o of of of f of of of BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Information information I In Inf Info n on ion tion BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +- - - - - - - - - - BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 1 HYPHEN 0 0 +Centric centric C Ce Cen Cent c ic ric tric BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Networking networking N Ne Net Netw g ng ing king BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +( ( ( ( ( ( ( ( ( ( BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 OPENBRACKET 0 0 +ICN icn I IC ICN ICN N CN ICN ICN BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +) ) ) ) ) ) ) ) ) ) BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 ENDBRACKET 0 0 +protocols protocols p pr pro prot s ls ols cols BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +[ [ [ [ [ [ [ [ [ [ BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 OPENBRACKET 0 0 +RFC7927 rfc7927 R RF RFC RFC7 7 27 927 7927 BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +] ] ] ] ] ] ] ] ] ] BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 ENDBRACKET 0 0 +. . . . . . . . . . BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +This this T Th Thi This s is his This BLOCKSTART LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +document document d do doc docu t nt ent ment BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +describes describes d de des desc s es bes ibes BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +a a a a a a a a a a BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 1 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +TLV tlv T TL TLV TLV V LV TLV TLV BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +scheme scheme s sc sch sche e me eme heme BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +using using u us usi usin g ng ing sing BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +a a a a a a a a a a BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 1 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +fixed fixed f fi fix fixe d ed xed ixed BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +2 2 2 2 2 2 2 2 2 2 BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +- - - - - - - - - - BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 1 HYPHEN 0 0 +byte byte b by byt byte e te yte byte BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +T t T T T T T T T T BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +and and a an and and d nd and and BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +a a a a a a a a a a BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 1 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +fixed fixed f fi fix fixe d ed xed ixed BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +2 2 2 2 2 2 2 2 2 2 BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +- - - - - - - - - - BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 1 HYPHEN 0 0 +byte byte b by byt byte e te yte byte BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +L l L L L L L L L L BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +field field f fi fie fiel d ld eld ield BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +The the T Th The The e he The The BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +rational rational r ra rat rati l al nal onal BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +for for f fo for for r or for for BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +this this t th thi this s is his this BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +choice choice c ch cho choi e ce ice oice BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +is is i is is is s is is is BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +described described d de des desc d ed bed ibed BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +in in i in in in n in in in BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Section section S Se Sec Sect n on ion tion BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +5 5 5 5 5 5 5 5 5 5 BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +Briefly briefly B Br Bri Brie y ly fly efly BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +, , , , , , , , , , BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 COMMA 0 0 +this this t th thi this s is his this BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +choice choice c ch cho choi e ce ice oice BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +avoids avoids a av avo avoi s ds ids oids BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +multiple multiple m mu mul mult e le ple iple BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +encodings encodings e en enc enco s gs ngs ings BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +of of o of of of f of of of BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +the the t th the the e he the the BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +same same s sa sam same e me ame same BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +value value v va val valu e ue lue alue BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +( ( ( ( ( ( ( ( ( ( BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 OPENBRACKET 0 0 +aliases aliases a al ali alia s es ses ases BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +) ) ) ) ) ) ) ) ) ) BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 ENDBRACKET 0 0 +and and a an and and d nd and and BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +reduces reduces r re red redu s es ces uces BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +the the t th the the e he the the BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +work work w wo wor work k rk ork work BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +of of o of of of f of of of BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +a a a a a a a a a a BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 1 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +validator validator v va val vali r or tor ator BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +to to t to to to o to to to BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +ensure ensure e en ens ensu e re ure sure BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +compliance compliance c co com comp e ce nce ance BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +Unlike unlike U Un Unl Unli e ke ike like BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +some some s so som some e me ome some BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +uses uses u us use uses s es ses uses BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +of of o of of of f of of of BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +TLV tlv T TL TLV TLV V LV TLV TLV BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +in in i in in in n in in in BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +networking networking n ne net netw g ng ing king BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +, , , , , , , , , , BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 COMMA 0 0 +each each e ea eac each h ch ach each BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +network network n ne net netw k rk ork work BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +hop hop h ho hop hop p op hop hop BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +must must m mu mus must t st ust must BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +evaluate evaluate e ev eva eval e te ate uate BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +the the t th the the e he the the BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +encoding encoding e en enc enco g ng ing ding BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +, , , , , , , , , , BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 COMMA 0 0 +so so s so so so o so so so BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +even even e ev eve even n en ven even BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +small small s sm sma smal l ll all mall BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +validation validation v va val vali n on ion tion BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +latencies latencies l la lat late s es ies cies BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +at at a at at at t at at at BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +each each e ea eac each h ch ach each BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +hop hop h ho hop hop p op hop hop BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +could could c co cou coul d ld uld ould BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +add add a ad add add d dd add add BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +up up u up up up p up up up BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +to to t to to to o to to to BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +a a a a a a a a a a BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 1 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +large large l la lar larg e ge rge arge BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +overall overall o ov ove over l ll all rall BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +forwarding forwarding f fo for forw g ng ing ding BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +delay delay d de del dela y ay lay elay BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +For for F Fo For For r or For For BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +very very v ve ver very y ry ery very BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +small small s sm sma smal l ll all mall BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +packets packets p pa pac pack s ts ets kets BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +or or o or or or r or or or BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +low low l lo low low w ow low low BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +- - - - - - - - - - BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 1 HYPHEN 0 0 +throughput throughput t th thr thro t ut put hput BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +links links l li lin link s ks nks inks BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +, , , , , , , , , , BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 COMMA 0 0 +where where w wh whe wher e re ere here BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +the the t th the the e he the the BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +extra extra e ex ext extr a ra tra xtra BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +bytes bytes b by byt byte s es tes ytes BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +may may m ma may may y ay may may BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 1 1 0 0 0 1 0 0 0 NOPUNCT 0 0 +become become b be bec beco e me ome come BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +a a a a a a a a a a BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 1 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +concern concern c co con conc n rn ern cern BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +, , , , , , , , , , BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 COMMA 0 0 +one one o on one one e ne one one BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +may may m ma may may y ay may may BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 1 1 0 0 0 1 0 0 0 NOPUNCT 0 0 +use use u us use use e se use use BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +a a a a a a a a a a BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 1 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +TLV tlv T TL TLV TLV V LV TLV TLV BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +compression compression c co com comp n on ion sion BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +protocol protocol p pr pro prot l ol col ocol BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +, , , , , , , , , , BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 COMMA 0 0 +for for f fo for for r or for for BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +example example e ex exa exam e le ple mple BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +, , , , , , , , , , BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 COMMA 0 0 +[ [ [ [ [ [ [ [ [ [ BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 OPENBRACKET 0 0 +compress compress c co com comp s ss ess ress BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +] ] ] ] ] ] ] ] ] ] BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 ENDBRACKET 0 0 +and and a an and and d nd and and BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +[ [ [ [ [ [ [ [ [ [ BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 OPENBRACKET 0 0 +CCNxz ccnxz C CC CCN CCNx z xz Nxz CNxz BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +] ] ] ] ] ] ] ] ] ] BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 ENDBRACKET 0 0 +. . . . . . . . . . BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +This this T Th Thi This s is his This BLOCKSTART LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +document document d do doc docu t nt ent ment BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +uses uses u us use uses s es ses uses BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +the the t th the the e he the the BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +terms terms t te ter term s ms rms erms BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +CCNx ccnx C CC CCN CCNx x Nx CNx CCNx BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Packet packet P Pa Pac Pack t et ket cket BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +, , , , , , , , , , BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 COMMA 0 0 +CCNx ccnx C CC CCN CCNx x Nx CNx CCNx BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Message message M Me Mes Mess e ge age sage BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +, , , , , , , , , , BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 COMMA 0 0 +and and a an and and d nd and and BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +CCNx ccnx C CC CCN CCNx x Nx CNx CCNx BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Message message M Me Mes Mess e ge age sage BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +TLV tlv T TL TLV TLV V LV TLV TLV BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +A a A A A A A A A A BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +CCNx ccnx C CC CCN CCNx x Nx CNx CCNx BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Packet packet P Pa Pac Pack t et ket cket BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +refers refers r re ref refe s rs ers fers BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +to to t to to to o to to to BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +the the t th the the e he the the BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +entire entire e en ent enti e re ire tire BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Layer layer L La Lay Laye r er yer ayer BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +3 3 3 3 3 3 3 3 3 3 BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +datagram datagram d da dat data m am ram gram BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +as as a as as as s as as as BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +specified specified s sp spe spec d ed ied fied BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +in in i in in in n in in in BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Section section S Se Sec Sect n on ion tion BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +3 3 3 3 3 3 3 3 3 3 BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +1 1 1 1 1 1 1 1 1 1 BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +A a A A A A A A A A BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +CCNx ccnx C CC CCN CCNx x Nx CNx CCNx BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Message message M Me Mes Mess e ge age sage BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +is is i is is is s is is is BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +the the t th the the e he the the BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +ABNF abnf A AB ABN ABNF F NF BNF ABNF BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +token token t to tok toke n en ken oken BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +defined defined d de def defi d ed ned ined BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +in in i in in in n in in in BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +the the t th the the e he the the BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +CCNx ccnx C CC CCN CCNx x Nx CNx CCNx BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Semantics semantics S Se Sem Sema s cs ics tics BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +document document d do doc docu t nt ent ment BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +[ [ [ [ [ [ [ [ [ [ BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 OPENBRACKET 0 0 +RFC8569 rfc8569 R RF RFC RFC8 9 69 569 8569 BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +] ] ] ] ] ] ] ] ] ] BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 ENDBRACKET 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +A a A A A A A A A A BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +CCNx ccnx C CC CCN CCNx x Nx CNx CCNx BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Message message M Me Mes Mess e ge age sage BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +TLV tlv T TL TLV TLV V LV TLV TLV BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +refers refers r re ref refe s rs ers fers BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +to to t to to to o to to to BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +the the t th the the e he the the BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +encoding encoding e en enc enco g ng ing ding BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +of of o of of of f of of of BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +a a a a a a a a a a BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 1 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +CCNx ccnx C CC CCN CCNx x Nx CNx CCNx BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Message message M Me Mes Mess e ge age sage BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +as as a as as as s as as as BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +specified specified s sp spe spec d ed ied fied BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +in in i in in in n in in in BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Section section S Se Sec Sect n on ion tion BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +3 3 3 3 3 3 3 3 3 3 BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +6 6 6 6 6 6 6 6 6 6 BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +Marc marc M Ma Mar Marc c rc arc Marc BLOCKSTART LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 1 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Mosko mosko M Mo Mos Mosk o ko sko osko BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +PARC parc P PA PAR PARC C RC ARC PARC BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +, , , , , , , , , , BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 COMMA 0 0 +Inc inc I In Inc Inc c nc Inc Inc BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +Palo palo P Pa Pal Palo o lo alo Palo BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Alto alto A Al Alt Alto o to lto Alto BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +, , , , , , , , , , BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 COMMA 0 0 +California california C Ca Cal Cali a ia nia rnia BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +94304 94304 9 94 943 9430 4 04 304 4304 BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS ALLDIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +United united U Un Uni Unit d ed ted ited BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +States states S St Sta Stat s es tes ates BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +of of o of of of f of of of BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +America america A Am Ame Amer a ca ica rica BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 1 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Phone phone P Ph Pho Phon e ne one hone BLOCKSTART LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +: : : : : : : : : : BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 PUNCT 0 0 ++01 +01 + +0 +01 +01 1 01 +01 +01 BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +650 650 6 65 650 650 0 50 650 650 BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS ALLDIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +- - - - - - - - - - BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 1 HYPHEN 0 0 +812 812 8 81 812 812 2 12 812 812 BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS ALLDIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +- - - - - - - - - - BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 1 HYPHEN 0 0 +4405 4405 4 44 440 4405 5 05 405 4405 BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS ALLDIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Email email E Em Ema Emai l il ail mail BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +: : : : : : : : : : BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 PUNCT 0 0 +mmosko@parc mmosko@parc m mm mmo mmos c rc arc parc BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +com com c co com com m om com com BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Ignacio ignacio I Ig Ign Igna o io cio acio BLOCKSTART LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 1 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Solis solis S So Sol Soli s is lis olis BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 1 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +LinkedIn linkedin L Li Lin Link n In dIn edIn BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Mountain mountain M Mo Mou Moun n in ain tain BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +View view V Vi Vie View w ew iew View BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +, , , , , , , , , , BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 COMMA 0 0 +California california C Ca Cal Cali a ia nia rnia BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +94043 94043 9 94 940 9404 3 43 043 4043 BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS ALLDIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +United united U Un Uni Unit d ed ted ited BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +States states S St Sta Stat s es tes ates BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +of of o of of of f of of of BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +America america A Am Ame Amer a ca ica rica BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 1 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Email email E Em Ema Emai l il ail mail BLOCKSTART LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +: : : : : : : : : : BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 PUNCT 0 0 +nsolis@linkedin nsolis@linkedin n ns nso nsol n in din edin BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +com com c co com com m om com com BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Christopher christopher C Ch Chr Chri r er her pher BLOCKSTART LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 1 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +A a A A A A A A A A BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +Wood wood W Wo Woo Wood d od ood Wood BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +University university U Un Uni Univ y ty ity sity BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +of of o of of of f of of of BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +California california C Ca Cal Cali a ia nia rnia BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +, , , , , , , , , , BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 COMMA 0 0 +Irvine irvine I Ir Irv Irvi e ne ine vine BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 1 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Irvine irvine I Ir Irv Irvi e ne ine vine BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 1 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +, , , , , , , , , , BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 COMMA 0 0 +California california C Ca Cal Cali a ia nia rnia BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +92697 92697 9 92 926 9269 7 97 697 2697 BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS ALLDIGIT 0 0 0 0 0 1 0 0 0 0 NOPUNCT 0 0 +United united U Un Uni Unit d ed ted ited BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +States states S St Sta Stat s es tes ates BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +of of o of of of f of of of BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +America america A Am Ame Amer a ca ica rica BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 1 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Phone phone P Ph Pho Phon e ne one hone BLOCKSTART LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +: : : : : : : : : : BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 PUNCT 0 0 ++01 +01 + +0 +01 +01 1 01 +01 +01 BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +315 315 3 31 315 315 5 15 315 315 BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS ALLDIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +- - - - - - - - - - BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 1 HYPHEN 0 0 +806 806 8 80 806 806 6 06 806 806 BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS ALLDIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +- - - - - - - - - - BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 1 HYPHEN 0 0 +5939 5939 5 59 593 5939 9 39 939 5939 BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS ALLDIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Email email E Em Ema Emai l il ail mail BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +: : : : : : : : : : BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 PUNCT 0 0 +woodc1@uci woodc1@uci w wo woo wood i ci uci @uci BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +edu edu e ed edu edu u du edu edu BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 + diff --git a/grobid-trainer/resources/dataset/header/sdo/ietf/corpus/raw/XP015134132.training.header b/grobid-trainer/resources/dataset/header/sdo/ietf/corpus/raw/XP015134132.training.header new file mode 100644 index 0000000000..1c5598517b --- /dev/null +++ b/grobid-trainer/resources/dataset/header/sdo/ietf/corpus/raw/XP015134132.training.header @@ -0,0 +1,414 @@ +Network network N Ne Net Netw k rk ork work BLOCKSTART LINESTART NEWFONT HIGHERFONT 1 0 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Working working W Wo Wor Work g ng ing king BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Group group G Gr Gro Grou p up oup roup BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +I i I I I I I I I I BLOCKSTART LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +Learmonth learmonth L Le Lea Lear h th nth onth BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Internet internet I In Int Inte t et net rnet BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +- - - - - - - - - - BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 1 HYPHEN 0 0 +Draft draft D Dr Dra Draf t ft aft raft BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Tor tor T To Tor Tor r or Tor Tor BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Project project P Pr Pro Proj t ct ect ject BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Intended intended I In Int Inte d ed ded nded BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +status status s st sta stat s us tus atus BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +: : : : : : : : : : BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 PUNCT 0 0 +Informational informational I In Inf Info l al nal onal BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +July july J Ju Jul July y ly uly July BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 1 0 0 0 NOPUNCT 0 0 +8 8 8 8 8 8 8 8 8 8 BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +, , , , , , , , , , BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 COMMA 0 0 +2019 2019 2 20 201 2019 9 19 019 2019 BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS ALLDIGIT 0 0 0 0 0 1 0 0 0 0 NOPUNCT 0 0 +Expires expires E Ex Exp Expi s es res ires BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +: : : : : : : : : : BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 PUNCT 0 0 +January january J Ja Jan Janu y ry ary uary BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 1 0 0 0 0 1 0 0 0 NOPUNCT 0 0 +9 9 9 9 9 9 9 9 9 9 BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +, , , , , , , , , , BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 COMMA 0 0 +2020 2020 2 20 202 2020 0 20 020 2020 BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS ALLDIGIT 0 0 0 0 0 1 0 0 0 0 NOPUNCT 0 0 +Guidelines guidelines G Gu Gui Guid s es nes ines BLOCKSTART LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +for for f fo for for r or for for BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Performing performing P Pe Per Perf g ng ing ming BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Safe safe S Sa Saf Safe e fe afe Safe BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Measurement measurement M Me Mea Meas t nt ent ment BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +on on o on on on n on on on BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +the the t th the the e he the the BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Internet internet I In Int Inte t et net rnet BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +draft draft d dr dra draf t ft aft raft BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +- - - - - - - - - - BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 1 HYPHEN 0 0 +irtf irtf i ir irt irtf f tf rtf irtf BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +- - - - - - - - - - BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 1 HYPHEN 0 0 +pearg pearg p pe pea pear g rg arg earg BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +- - - - - - - - - - BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 1 HYPHEN 0 0 +safe safe s sa saf safe e fe afe safe BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +- - - - - - - - - - BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 1 HYPHEN 0 0 +internet internet i in int inte t et net rnet BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +- - - - - - - - - - BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 1 HYPHEN 0 0 +measurement measurement m me mea meas t nt ent ment BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +- - - - - - - - - - BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 1 HYPHEN 0 0 +01 01 0 01 01 01 1 01 01 01 BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS ALLDIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Abstract abstract A Ab Abs Abst t ct act ract BLOCKSTART LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Researchers researchers R Re Res Rese s rs ers hers BLOCKSTART LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +from from f fr fro from m om rom from BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +industry industry i in ind indu y ry try stry BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +and and a an and and d nd and and BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +academia academia a ac aca acad a ia mia emia BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +often often o of oft ofte n en ten ften BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +use use u us use use e se use use BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Internet internet I In Int Inte t et net rnet BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +measurements measurements m me mea meas s ts nts ents BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +as as a as as as s as as as BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +part part p pa par part t rt art part BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +of of o of of of f of of of BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +their their t th the thei r ir eir heir BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +work work w wo wor work k rk ork work BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +While while W Wh Whi Whil e le ile hile BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +these these t th the thes e se ese hese BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +measurements measurements m me mea meas s ts nts ents BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +can can c ca can can n an can can BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +give give g gi giv give e ve ive give BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +insight insight i in ins insi t ht ght ight BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +into into i in int into o to nto into BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +the the t th the the e he the the BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +functioning functioning f fu fun func g ng ing ning BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +and and a an and and d nd and and BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +usage usage u us usa usag e ge age sage BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +of of o of of of f of of of BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +the the t th the the e he the the BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Internet internet I In Int Inte t et net rnet BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +, , , , , , , , , , BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 COMMA 0 0 +they they t th the they y ey hey they BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +can can c ca can can n an can can BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +come come c co com come e me ome come BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +at at a at at at t at at at BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +the the t th the the e he the the BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +cost cost c co cos cost t st ost cost BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +of of o of of of f of of of BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +user user u us use user r er ser user BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +privacy privacy p pr pri priv y cy acy vacy BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +This this T Th Thi This s is his This BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +document document d do doc docu t nt ent ment BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +describes describes d de des desc s es bes ibes BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +guidelines guidelines g gu gui guid s es nes ines BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +for for f fo for for r or for for BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +ensuring ensuring e en ens ensu g ng ing ring BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +that that t th tha that t at hat that BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +such such s su suc such h ch uch such BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +measurements measurements m me mea meas s ts nts ents BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +can can c ca can can n an can can BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +be be b be be be e be be be BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +carried carried c ca car carr d ed ied ried BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +out out o ou out out t ut out out BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +safely safely s sa saf safe y ly ely fely BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +Note note N No Not Note e te ote Note BLOCKSTART LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Comments comments C Co Com Comm s ts nts ents BLOCKSTART LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +are are a ar are are e re are are BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +solicited solicited s so sol soli d ed ted ited BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +and and a an and and d nd and and BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +should should s sh sho shou d ld uld ould BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +be be b be be be e be be be BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +addressed addressed a ad add addr d ed sed ssed BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +to to t to to to o to to to BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +the the t th the the e he the the BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +research research r re res rese h ch rch arch BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +group group g gr gro grou p up oup roup BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +' ' ' ' ' ' ' ' ' ' BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 QUOTE 0 0 +s s s s s s s s s s BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +mailing mailing m ma mai mail g ng ing ling BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +list list l li lis list t st ist list BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +at at a at at at t at at at BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +pearg@irtf pearg@irtf p pe pea pear f tf rtf irtf BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +org org o or org org g rg org org BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +and and a an and and d nd and and BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +/ / / / / / / / / / BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +or or o or or or r or or or BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +the the t th the the e he the the BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +author author a au aut auth r or hor thor BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +( ( ( ( ( ( ( ( ( ( BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 OPENBRACKET 0 0 +s s s s s s s s s s BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +) ) ) ) ) ) ) ) ) ) BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 ENDBRACKET 0 0 +. . . . . . . . . . BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +The the T Th The The e he The The BLOCKSTART LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +sources sources s so sou sour s es ces rces BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +for for f fo for for r or for for BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +this this t th thi this s is his this BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +draft draft d dr dra draf t ft aft raft BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +are are a ar are are e re are are BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +at at a at at at t at at at BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +: : : : : : : : : : BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 PUNCT 0 0 +https https h ht htt http s ps tps ttps BLOCKSTART LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 0 NOPUNCT 0 0 +: : : : : : : : : : BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 PUNCT 0 0 +/ / / / / / / / / / BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +/ / / / / / / / / / BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +github github g gi git gith b ub hub thub BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +com com c co com com m om com com BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +/ / / / / / / / / / BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +irl irl i ir irl irl l rl irl irl BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +/ / / / / / / / / / BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +draft draft d dr dra draf t ft aft raft BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +- - - - - - - - - - BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 1 HYPHEN 0 0 +safe safe s sa saf safe e fe afe safe BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +- - - - - - - - - - BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 1 HYPHEN 0 0 +internet internet i in int inte t et net rnet BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +- - - - - - - - - - BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 1 HYPHEN 0 0 +measurement measurement m me mea meas t nt ent ment BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Status status S St Sta Stat s us tus atus BLOCKSTART LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +of of o of of of f of of of BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +This this T Th Thi This s is his This BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Memo memo M Me Mem Memo o mo emo Memo BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +This this T Th Thi This s is his This BLOCKSTART LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Internet internet I In Int Inte t et net rnet BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +- - - - - - - - - - BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 1 HYPHEN 0 0 +Draft draft D Dr Dra Draf t ft aft raft BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +is is i is is is s is is is BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +submitted submitted s su sub subm d ed ted tted BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +in in i in in in n in in in BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +full full f fu ful full l ll ull full BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +conformance conformance c co con conf e ce nce ance BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +with with w wi wit with h th ith with BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +the the t th the the e he the the BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +provisions provisions p pr pro prov s ns ons ions BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +of of o of of of f of of of BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +BCP bcp B BC BCP BCP P CP BCP BCP BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +78 78 7 78 78 78 8 78 78 78 BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS ALLDIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +and and a an and and d nd and and BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +BCP bcp B BC BCP BCP P CP BCP BCP BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +79 79 7 79 79 79 9 79 79 79 BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS ALLDIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +Internet internet I In Int Inte t et net rnet BLOCKSTART LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +- - - - - - - - - - BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 1 HYPHEN 0 0 +Drafts drafts D Dr Dra Draf s ts fts afts BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +are are a ar are are e re are are BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +working working w wo wor work g ng ing king BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +documents documents d do doc docu s ts nts ents BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +of of o of of of f of of of BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +the the t th the the e he the the BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Internet internet I In Int Inte t et net rnet BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Engineering engineering E En Eng Engi g ng ing ring BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Task task T Ta Tas Task k sk ask Task BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Force force F Fo For Forc e ce rce orce BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +( ( ( ( ( ( ( ( ( ( BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 OPENBRACKET 0 0 +IETF ietf I IE IET IETF F TF ETF IETF BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +) ) ) ) ) ) ) ) ) ) BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 ENDBRACKET 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +Note note N No Not Note e te ote Note BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +that that t th tha that t at hat that BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +other other o ot oth othe r er her ther BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +groups groups g gr gro grou s ps ups oups BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +may may m ma may may y ay may may BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 1 1 0 0 0 1 0 0 0 NOPUNCT 0 0 +also also a al als also o so lso also BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +distribute distribute d di dis dist e te ute bute BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +working working w wo wor work g ng ing king BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +documents documents d do doc docu s ts nts ents BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +as as a as as as s as as as BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Internet internet I In Int Inte t et net rnet BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +- - - - - - - - - - BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 1 HYPHEN 0 0 +Drafts drafts D Dr Dra Draf s ts fts afts BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +The the T Th The The e he The The BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +list list l li lis list t st ist list BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +of of o of of of f of of of BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +current current c cu cur curr t nt ent rent BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Internet internet I In Int Inte t et net rnet BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +- - - - - - - - - - BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 1 HYPHEN 0 0 +Drafts drafts D Dr Dra Draf s ts fts afts BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +is is i is is is s is is is BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +at at a at at at t at at at BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +https https h ht htt http s ps tps ttps BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 0 NOPUNCT 0 0 +: : : : : : : : : : BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 PUNCT 0 0 +/ / / / / / / / / / BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +/ / / / / / / / / / BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +datatracker datatracker d da dat data r er ker cker BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +ietf ietf i ie iet ietf f tf etf ietf BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +org org o or org org g rg org org BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +/ / / / / / / / / / BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +drafts drafts d dr dra draf s ts fts afts BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +/ / / / / / / / / / BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +current current c cu cur curr t nt ent rent BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +/ / / / / / / / / / BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +Internet internet I In Int Inte t et net rnet BLOCKSTART LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +- - - - - - - - - - BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 1 HYPHEN 0 0 +Drafts drafts D Dr Dra Draf s ts fts afts BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +are are a ar are are e re are are BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +draft draft d dr dra draf t ft aft raft BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +documents documents d do doc docu s ts nts ents BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +valid valid v va val vali d id lid alid BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +for for f fo for for r or for for BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +a a a a a a a a a a BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 1 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +maximum maximum m ma max maxi m um mum imum BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +of of o of of of f of of of BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +six six s si six six x ix six six BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +months months m mo mon mont s hs ths nths BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +and and a an and and d nd and and BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +may may m ma may may y ay may may BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 1 1 0 0 0 1 0 0 0 NOPUNCT 0 0 +be be b be be be e be be be BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +updated updated u up upd upda d ed ted ated BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +, , , , , , , , , , BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 COMMA 0 0 +replaced replaced r re rep repl d ed ced aced BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +, , , , , , , , , , BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 COMMA 0 0 +or or o or or or r or or or BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +obsoleted obsoleted o ob obs obso d ed ted eted BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +by by b by by by y by by by BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +other other o ot oth othe r er her ther BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +documents documents d do doc docu s ts nts ents BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +at at a at at at t at at at BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +any any a an any any y ny any any BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +time time t ti tim time e me ime time BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +It it I It It It t It It It BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +is is i is is is s is is is BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +inappropriate inappropriate i in ina inap e te ate iate BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +to to t to to to o to to to BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +use use u us use use e se use use BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Internet internet I In Int Inte t et net rnet BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +- - - - - - - - - - BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 1 HYPHEN 0 0 +Drafts drafts D Dr Dra Draf s ts fts afts BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +as as a as as as s as as as BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +reference reference r re ref refe e ce nce ence BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +material material m ma mat mate l al ial rial BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +or or o or or or r or or or BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +to to t to to to o to to to BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +cite cite c ci cit cite e te ite cite BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +them them t th the them m em hem them BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +other other o ot oth othe r er her ther BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +than than t th tha than n an han than BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +as as a as as as s as as as BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +" " " " " " " " " " BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 QUOTE 0 0 +work work w wo wor work k rk ork work BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +in in i in in in n in in in BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +progress progress p pr pro prog s ss ess ress BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +" " " " " " " " " " BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 QUOTE 0 0 +This this T Th Thi This s is his This BLOCKSTART LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Internet internet I In Int Inte t et net rnet BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +- - - - - - - - - - BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 1 HYPHEN 0 0 +Draft draft D Dr Dra Draf t ft aft raft BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +will will w wi wil will l ll ill will BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +expire expire e ex exp expi e re ire pire BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +on on o on on on n on on on BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +January january J Ja Jan Janu y ry ary uary BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 1 0 0 0 0 1 0 0 0 NOPUNCT 0 0 +9 9 9 9 9 9 9 9 9 9 BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +, , , , , , , , , , BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 COMMA 0 0 +2020 2020 2 20 202 2020 0 20 020 2020 BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS ALLDIGIT 0 0 0 0 0 1 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +Copyright copyright C Co Cop Copy t ht ght ight BLOCKSTART LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Notice notice N No Not Noti e ce ice tice BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Copyright copyright C Co Cop Copy t ht ght ight BLOCKSTART LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +( ( ( ( ( ( ( ( ( ( BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 OPENBRACKET 0 0 +c c c c c c c c c c BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +) ) ) ) ) ) ) ) ) ) BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 ENDBRACKET 0 0 +2019 2019 2 20 201 2019 9 19 019 2019 BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS ALLDIGIT 0 0 0 0 0 1 0 0 0 0 NOPUNCT 0 0 +IETF ietf I IE IET IETF F TF ETF IETF BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Trust trust T Tr Tru Trus t st ust rust BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +and and a an and and d nd and and BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +the the t th the the e he the the BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +persons persons p pe per pers s ns ons sons BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +identified identified i id ide iden d ed ied fied BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +as as a as as as s as as as BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +the the t th the the e he the the BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +document document d do doc docu t nt ent ment BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +authors authors a au aut auth s rs ors hors BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +All all A Al All All l ll All All BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +rights rights r ri rig righ s ts hts ghts BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +reserved reserved r re res rese d ed ved rved BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +Learmonth learmonth L Le Lea Lear h th nth onth BLOCKSTART LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Expires expires E Ex Exp Expi s es res ires BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +January january J Ja Jan Janu y ry ary uary BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 1 0 0 0 0 1 0 0 0 NOPUNCT 0 0 +9 9 9 9 9 9 9 9 9 9 BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +, , , , , , , , , , BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 COMMA 0 0 +2020 2020 2 20 202 2020 0 20 020 2020 BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS ALLDIGIT 0 0 0 0 0 1 0 0 0 0 NOPUNCT 0 0 +[ [ [ [ [ [ [ [ [ [ BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 OPENBRACKET 0 0 +Page page P Pa Pag Page e ge age Page BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +1 1 1 1 1 1 1 1 1 1 BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +] ] ] ] ] ] ] ] ] ] BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 ENDBRACKET 0 0 +Internet internet I In Int Inte t et net rnet BLOCKSTART LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +- - - - - - - - - - BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 1 HYPHEN 0 0 +Draft draft D Dr Dra Draf t ft aft raft BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Safe safe S Sa Saf Safe e fe afe Safe BLOCKSTART LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Internet internet I In Int Inte t et net rnet BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Measurement measurement M Me Mea Meas t nt ent ment BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +July july J Ju Jul July y ly uly July BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 1 0 0 0 NOPUNCT 0 0 +2019 2019 2 20 201 2019 9 19 019 2019 BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS ALLDIGIT 0 0 0 0 0 1 0 0 0 0 NOPUNCT 0 0 +This this T Th Thi This s is his This BLOCKSTART LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +document document d do doc docu t nt ent ment BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +is is i is is is s is is is BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +subject subject s su sub subj t ct ect ject BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +to to t to to to o to to to BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +BCP bcp B BC BCP BCP P CP BCP BCP BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +78 78 7 78 78 78 8 78 78 78 BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS ALLDIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +and and a an and and d nd and and BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +the the t th the the e he the the BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +IETF ietf I IE IET IETF F TF ETF IETF BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Trust trust T Tr Tru Trus t st ust rust BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +' ' ' ' ' ' ' ' ' ' BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 QUOTE 0 0 +s s s s s s s s s s BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Legal legal L Le Leg Lega l al gal egal BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Provisions provisions P Pr Pro Prov s ns ons ions BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Relating relating R Re Rel Rela g ng ing ting BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +to to t to to to o to to to BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +IETF ietf I IE IET IETF F TF ETF IETF BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Documents documents D Do Doc Docu s ts nts ents BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +( ( ( ( ( ( ( ( ( ( BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 OPENBRACKET 0 0 +https https h ht htt http s ps tps ttps BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 0 NOPUNCT 0 0 +: : : : : : : : : : BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 PUNCT 0 0 +/ / / / / / / / / / BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +/ / / / / / / / / / BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +trustee trustee t tr tru trus e ee tee stee BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +ietf ietf i ie iet ietf f tf etf ietf BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +org org o or org org g rg org org BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +/ / / / / / / / / / BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +license license l li lic lice e se nse ense BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +- - - - - - - - - - BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 1 HYPHEN 0 0 +info info i in inf info o fo nfo info BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 1 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +) ) ) ) ) ) ) ) ) ) BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 ENDBRACKET 0 0 +in in i in in in n in in in BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +effect effect e ef eff effe t ct ect fect BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +on on o on on on n on on on BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +the the t th the the e he the the BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +date date d da dat date e te ate date BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +of of o of of of f of of of BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +publication publication p pu pub publ n on ion tion BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +of of o of of of f of of of BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +this this t th thi this s is his this BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +document document d do doc docu t nt ent ment BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +Please please P Pl Ple Plea e se ase ease BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +review review r re rev revi w ew iew view BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +these these t th the thes e se ese hese BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +documents documents d do doc docu s ts nts ents BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +carefully carefully c ca car care y ly lly ully BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +, , , , , , , , , , BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 COMMA 0 0 +as as a as as as s as as as BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +they they t th the they y ey hey they BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +describe describe d de des desc e be ibe ribe BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +your your y yo you your r ur our your BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +rights rights r ri rig righ s ts hts ghts BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +and and a an and and d nd and and BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +restrictions restrictions r re res rest s ns ons ions BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +with with w wi wit with h th ith with BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +respect respect r re res resp t ct ect pect BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +to to t to to to o to to to BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +this this t th thi this s is his this BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +document document d do doc docu t nt ent ment BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +Iain iain I Ia Iai Iain n in ain Iain BLOCKSTART LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 1 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +R r R R R R R R R R BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +Learmonth learmonth L Le Lea Lear h th nth onth BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Tor tor T To Tor Tor r or Tor Tor BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Project project P Pr Pro Proj t ct ect ject BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Email email E Em Ema Emai l il ail mail BLOCKSTART LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +: : : : : : : : : : BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 PUNCT 0 0 +irl@torproject irl@torproject i ir irl irl@ t ct ect ject BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +org org o or org org g rg org org BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 + diff --git a/grobid-trainer/resources/dataset/header/sdo/ietf/corpus/raw/XP015134608.training.header b/grobid-trainer/resources/dataset/header/sdo/ietf/corpus/raw/XP015134608.training.header new file mode 100644 index 0000000000..79c505ebd2 --- /dev/null +++ b/grobid-trainer/resources/dataset/header/sdo/ietf/corpus/raw/XP015134608.training.header @@ -0,0 +1,624 @@ +NFSv4 nfsv4 N NF NFS NFSv 4 v4 Sv4 FSv4 BLOCKSTART LINESTART NEWFONT HIGHERFONT 1 0 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +D d D D D D D D D D BLOCKSTART LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +Noveck noveck N No Nov Nove k ck eck veck BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +, , , , , , , , , , BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 COMMA 0 0 +Ed ed E Ed Ed Ed d Ed Ed Ed BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 1 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +Internet internet I In Int Inte t et net rnet BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +- - - - - - - - - - BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 1 HYPHEN 0 0 +Draft draft D Dr Dra Draf t ft aft raft BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +NetApp netapp N Ne Net NetA p pp App tApp BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Obsoletes obsoletes O Ob Obs Obso s es tes etes BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +: : : : : : : : : : BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 PUNCT 0 0 +5661 5661 5 56 566 5661 1 61 661 5661 BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS ALLDIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +( ( ( ( ( ( ( ( ( ( BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 OPENBRACKET 0 0 +if if i if if if f if if if BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +approved approved a ap app appr d ed ved oved BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +) ) ) ) ) ) ) ) ) ) BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 ENDBRACKET 0 0 +C c C C C C C C C C BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +Lever lever L Le Lev Leve r er ver ever BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Intended intended I In Int Inte d ed ded nded BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +status status s st sta stat s us tus atus BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +: : : : : : : : : : BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 PUNCT 0 0 +Standards standards S St Sta Stan s ds rds ards BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Track track T Tr Tra Trac k ck ack rack BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +ORACLE oracle O OR ORA ORAC E LE CLE ACLE BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Expires expires E Ex Exp Expi s es res ires BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +: : : : : : : : : : BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 PUNCT 0 0 +February february F Fe Feb Febr y ry ary uary BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 1 0 0 0 NOPUNCT 0 0 +5 5 5 5 5 5 5 5 5 5 BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +, , , , , , , , , , BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 COMMA 0 0 +2020 2020 2 20 202 2020 0 20 020 2020 BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS ALLDIGIT 0 0 0 0 0 1 0 0 0 0 NOPUNCT 0 0 +August august A Au Aug Augu t st ust gust BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 1 1 0 0 0 1 0 0 0 NOPUNCT 0 0 +4 4 4 4 4 4 4 4 4 4 BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +, , , , , , , , , , BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 COMMA 0 0 +2019 2019 2 20 201 2019 9 19 019 2019 BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS ALLDIGIT 0 0 0 0 0 1 0 0 0 0 NOPUNCT 0 0 +Network network N Ne Net Netw k rk ork work BLOCKSTART LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +File file F Fi Fil File e le ile File BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +System system S Sy Sys Syst m em tem stem BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +( ( ( ( ( ( ( ( ( ( BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 OPENBRACKET 0 0 +NFS nfs N NF NFS NFS S FS NFS NFS BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +) ) ) ) ) ) ) ) ) ) BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 ENDBRACKET 0 0 +Version version V Ve Ver Vers n on ion sion BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +4 4 4 4 4 4 4 4 4 4 BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Minor minor M Mi Min Mino r or nor inor BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Version version V Ve Ver Vers n on ion sion BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +1 1 1 1 1 1 1 1 1 1 BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Protocol protocol P Pr Pro Prot l ol col ocol BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +draft draft d dr dra draf t ft aft raft BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +- - - - - - - - - - BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 1 HYPHEN 0 0 +ietf ietf i ie iet ietf f tf etf ietf BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +- - - - - - - - - - BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 1 HYPHEN 0 0 +nfsv4 nfsv4 n nf nfs nfsv 4 v4 sv4 fsv4 BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +- - - - - - - - - - BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 1 HYPHEN 0 0 +rfc5661sesqui rfc5661sesqui r rf rfc rfc5 i ui qui squi BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +- - - - - - - - - - BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 1 HYPHEN 0 0 +msns msns m ms msn msns s ns sns msns BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +- - - - - - - - - - BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 1 HYPHEN 0 0 +01 01 0 01 01 01 1 01 01 01 BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS ALLDIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Abstract abstract A Ab Abs Abst t ct act ract BLOCKSTART LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +This this T Th Thi This s is his This BLOCKSTART LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +document document d do doc docu t nt ent ment BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +describes describes d de des desc s es bes ibes BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +the the t th the the e he the the BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Network network N Ne Net Netw k rk ork work BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +File file F Fi Fil File e le ile File BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +System system S Sy Sys Syst m em tem stem BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +( ( ( ( ( ( ( ( ( ( BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 OPENBRACKET 0 0 +NFS nfs N NF NFS NFS S FS NFS NFS BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +) ) ) ) ) ) ) ) ) ) BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 ENDBRACKET 0 0 +version version v ve ver vers n on ion sion BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +4 4 4 4 4 4 4 4 4 4 BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +minor minor m mi min mino r or nor inor BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +version version v ve ver vers n on ion sion BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +1 1 1 1 1 1 1 1 1 1 BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +, , , , , , , , , , BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 COMMA 0 0 +including including i in inc incl g ng ing ding BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +features features f fe fea feat s es res ures BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +retained retained r re ret reta d ed ned ined BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +from from f fr fro from m om rom from BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +the the t th the the e he the the BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +base base b ba bas base e se ase base BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +protocol protocol p pr pro prot l ol col ocol BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +( ( ( ( ( ( ( ( ( ( BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 OPENBRACKET 0 0 +NFS nfs N NF NFS NFS S FS NFS NFS BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +version version v ve ver vers n on ion sion BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +4 4 4 4 4 4 4 4 4 4 BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +minor minor m mi min mino r or nor inor BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +version version v ve ver vers n on ion sion BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +0 0 0 0 0 0 0 0 0 0 BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +, , , , , , , , , , BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 COMMA 0 0 +which which w wh whi whic h ch ich hich BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +is is i is is is s is is is BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +specified specified s sp spe spec d ed ied fied BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +in in i in in in n in in in BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +RFC rfc R RF RFC RFC C FC RFC RFC BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +7530 7530 7 75 753 7530 0 30 530 7530 BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS ALLDIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +) ) ) ) ) ) ) ) ) ) BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 ENDBRACKET 0 0 +and and a an and and d nd and and BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +protocol protocol p pr pro prot l ol col ocol BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +extensions extensions e ex ext exte s ns ons ions BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +made made m ma mad made e de ade made BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +subsequently subsequently s su sub subs y ly tly ntly BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +The the T Th The The e he The The BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +later later l la lat late r er ter ater BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +minor minor m mi min mino r or nor inor BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +version version v ve ver vers n on ion sion BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +has has h ha has has s as has has BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +no no n no no no o no no no BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +dependencies dependencies d de dep depe s es ies cies BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +on on o on on on n on on on BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +NFS nfs N NF NFS NFS S FS NFS NFS BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +version version v ve ver vers n on ion sion BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +4 4 4 4 4 4 4 4 4 4 BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +minor minor m mi min mino r or nor inor BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +version version v ve ver vers n on ion sion BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +0 0 0 0 0 0 0 0 0 0 BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +, , , , , , , , , , BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 COMMA 0 0 +and and a an and and d nd and and BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +is is i is is is s is is is BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +considered considered c co con cons d ed red ered BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +a a a a a a a a a a BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 1 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +separate separate s se sep sepa e te ate rate BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +protocol protocol p pr pro prot l ol col ocol BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +This this T Th Thi This s is his This BLOCKSTART LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +document document d do doc docu t nt ent ment BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +obsoletes obsoletes o ob obs obso s es tes etes BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +RFC5661 rfc5661 R RF RFC RFC5 1 61 661 5661 BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +It it I It It It t It It It BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +substantialy substantialy s su sub subs y ly aly ialy BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +revises revises r re rev revi s es ses ises BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +the the t th the the e he the the BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +treatment treatment t tr tre trea t nt ent ment BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +of of o of of of f of of of BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +features features f fe fea feat s es res ures BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +relating relating r re rel rela g ng ing ting BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +to to t to to to o to to to BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +multi multi m mu mul mult i ti lti ulti BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +- - - - - - - - - - BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 1 HYPHEN 0 0 +server server s se ser serv r er ver rver BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +namesapce namesapce n na nam name e ce pce apce BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +superseding superseding s su sup supe g ng ing ding BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +the the t th the the e he the the BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +description description d de des desc n on ion tion BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +of of o of of of f of of of BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +those those t th tho thos e se ose hose BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +features features f fe fea feat s es res ures BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +appearing appearing a ap app appe g ng ing ring BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +in in i in in in n in in in BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +RFC5661 rfc5661 R RF RFC RFC5 1 61 661 5661 BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +Status status S St Sta Stat s us tus atus BLOCKSTART LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +of of o of of of f of of of BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +This this T Th Thi This s is his This BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Memo memo M Me Mem Memo o mo emo Memo BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +This this T Th Thi This s is his This BLOCKSTART LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Internet internet I In Int Inte t et net rnet BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +- - - - - - - - - - BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 1 HYPHEN 0 0 +Draft draft D Dr Dra Draf t ft aft raft BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +is is i is is is s is is is BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +submitted submitted s su sub subm d ed ted tted BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +in in i in in in n in in in BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +full full f fu ful full l ll ull full BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +conformance conformance c co con conf e ce nce ance BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +with with w wi wit with h th ith with BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +the the t th the the e he the the BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +provisions provisions p pr pro prov s ns ons ions BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +of of o of of of f of of of BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +BCP bcp B BC BCP BCP P CP BCP BCP BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +78 78 7 78 78 78 8 78 78 78 BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS ALLDIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +and and a an and and d nd and and BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +BCP bcp B BC BCP BCP P CP BCP BCP BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +79 79 7 79 79 79 9 79 79 79 BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS ALLDIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +Internet internet I In Int Inte t et net rnet BLOCKSTART LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +- - - - - - - - - - BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 1 HYPHEN 0 0 +Drafts drafts D Dr Dra Draf s ts fts afts BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +are are a ar are are e re are are BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +working working w wo wor work g ng ing king BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +documents documents d do doc docu s ts nts ents BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +of of o of of of f of of of BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +the the t th the the e he the the BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Internet internet I In Int Inte t et net rnet BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Engineering engineering E En Eng Engi g ng ing ring BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Task task T Ta Tas Task k sk ask Task BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Force force F Fo For Forc e ce rce orce BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +( ( ( ( ( ( ( ( ( ( BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 OPENBRACKET 0 0 +IETF ietf I IE IET IETF F TF ETF IETF BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +) ) ) ) ) ) ) ) ) ) BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 ENDBRACKET 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +Note note N No Not Note e te ote Note BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +that that t th tha that t at hat that BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +other other o ot oth othe r er her ther BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +groups groups g gr gro grou s ps ups oups BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +may may m ma may may y ay may may BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 1 1 0 0 0 1 0 0 0 NOPUNCT 0 0 +also also a al als also o so lso also BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +distribute distribute d di dis dist e te ute bute BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +working working w wo wor work g ng ing king BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +documents documents d do doc docu s ts nts ents BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +as as a as as as s as as as BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Internet internet I In Int Inte t et net rnet BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +- - - - - - - - - - BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 1 HYPHEN 0 0 +Drafts drafts D Dr Dra Draf s ts fts afts BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +The the T Th The The e he The The BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +list list l li lis list t st ist list BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +of of o of of of f of of of BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +current current c cu cur curr t nt ent rent BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Internet internet I In Int Inte t et net rnet BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +- - - - - - - - - - BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 1 HYPHEN 0 0 +Drafts drafts D Dr Dra Draf s ts fts afts BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +is is i is is is s is is is BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +at at a at at at t at at at BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +https https h ht htt http s ps tps ttps BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 0 NOPUNCT 0 0 +: : : : : : : : : : BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 PUNCT 0 0 +/ / / / / / / / / / BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +/ / / / / / / / / / BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +datatracker datatracker d da dat data r er ker cker BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +ietf ietf i ie iet ietf f tf etf ietf BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +org org o or org org g rg org org BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +/ / / / / / / / / / BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +drafts drafts d dr dra draf s ts fts afts BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +/ / / / / / / / / / BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +current current c cu cur curr t nt ent rent BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +/ / / / / / / / / / BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +Internet internet I In Int Inte t et net rnet BLOCKSTART LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +- - - - - - - - - - BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 1 HYPHEN 0 0 +Drafts drafts D Dr Dra Draf s ts fts afts BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +are are a ar are are e re are are BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +draft draft d dr dra draf t ft aft raft BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +documents documents d do doc docu s ts nts ents BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +valid valid v va val vali d id lid alid BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +for for f fo for for r or for for BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +a a a a a a a a a a BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 1 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +maximum maximum m ma max maxi m um mum imum BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +of of o of of of f of of of BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +six six s si six six x ix six six BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +months months m mo mon mont s hs ths nths BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +and and a an and and d nd and and BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +may may m ma may may y ay may may BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 1 1 0 0 0 1 0 0 0 NOPUNCT 0 0 +be be b be be be e be be be BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +updated updated u up upd upda d ed ted ated BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +, , , , , , , , , , BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 COMMA 0 0 +replaced replaced r re rep repl d ed ced aced BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +, , , , , , , , , , BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 COMMA 0 0 +or or o or or or r or or or BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +obsoleted obsoleted o ob obs obso d ed ted eted BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +by by b by by by y by by by BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +other other o ot oth othe r er her ther BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +documents documents d do doc docu s ts nts ents BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +at at a at at at t at at at BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +any any a an any any y ny any any BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +time time t ti tim time e me ime time BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +It it I It It It t It It It BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +is is i is is is s is is is BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +inappropriate inappropriate i in ina inap e te ate iate BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +to to t to to to o to to to BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +use use u us use use e se use use BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Internet internet I In Int Inte t et net rnet BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +- - - - - - - - - - BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 1 HYPHEN 0 0 +Drafts drafts D Dr Dra Draf s ts fts afts BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +as as a as as as s as as as BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +reference reference r re ref refe e ce nce ence BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +material material m ma mat mate l al ial rial BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +or or o or or or r or or or BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +to to t to to to o to to to BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +cite cite c ci cit cite e te ite cite BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +them them t th the them m em hem them BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +other other o ot oth othe r er her ther BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +than than t th tha than n an han than BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +as as a as as as s as as as BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +" " " " " " " " " " BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 QUOTE 0 0 +work work w wo wor work k rk ork work BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +in in i in in in n in in in BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +progress progress p pr pro prog s ss ess ress BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +" " " " " " " " " " BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 QUOTE 0 0 +This this T Th Thi This s is his This BLOCKSTART LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Internet internet I In Int Inte t et net rnet BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +- - - - - - - - - - BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 1 HYPHEN 0 0 +Draft draft D Dr Dra Draf t ft aft raft BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +will will w wi wil will l ll ill will BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +expire expire e ex exp expi e re ire pire BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +on on o on on on n on on on BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +February february F Fe Feb Febr y ry ary uary BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 1 0 0 0 NOPUNCT 0 0 +5 5 5 5 5 5 5 5 5 5 BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +, , , , , , , , , , BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 COMMA 0 0 +2020 2020 2 20 202 2020 0 20 020 2020 BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS ALLDIGIT 0 0 0 0 0 1 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +Copyright copyright C Co Cop Copy t ht ght ight BLOCKSTART LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Notice notice N No Not Noti e ce ice tice BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Copyright copyright C Co Cop Copy t ht ght ight BLOCKSTART LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +( ( ( ( ( ( ( ( ( ( BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 OPENBRACKET 0 0 +c c c c c c c c c c BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +) ) ) ) ) ) ) ) ) ) BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 ENDBRACKET 0 0 +2019 2019 2 20 201 2019 9 19 019 2019 BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS ALLDIGIT 0 0 0 0 0 1 0 0 0 0 NOPUNCT 0 0 +IETF ietf I IE IET IETF F TF ETF IETF BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Trust trust T Tr Tru Trus t st ust rust BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +and and a an and and d nd and and BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +the the t th the the e he the the BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +persons persons p pe per pers s ns ons sons BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +identified identified i id ide iden d ed ied fied BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +as as a as as as s as as as BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +the the t th the the e he the the BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +document document d do doc docu t nt ent ment BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +authors authors a au aut auth s rs ors hors BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +All all A Al All All l ll All All BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +rights rights r ri rig righ s ts hts ghts BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +reserved reserved r re res rese d ed ved rved BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +This this T Th Thi This s is his This BLOCKSTART LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +document document d do doc docu t nt ent ment BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +is is i is is is s is is is BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +subject subject s su sub subj t ct ect ject BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +to to t to to to o to to to BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +BCP bcp B BC BCP BCP P CP BCP BCP BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +78 78 7 78 78 78 8 78 78 78 BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS ALLDIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +and and a an and and d nd and and BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +the the t th the the e he the the BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +IETF ietf I IE IET IETF F TF ETF IETF BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Trust trust T Tr Tru Trus t st ust rust BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +' ' ' ' ' ' ' ' ' ' BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 QUOTE 0 0 +s s s s s s s s s s BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Legal legal L Le Leg Lega l al gal egal BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Provisions provisions P Pr Pro Prov s ns ons ions BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Relating relating R Re Rel Rela g ng ing ting BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +to to t to to to o to to to BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +IETF ietf I IE IET IETF F TF ETF IETF BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Documents documents D Do Doc Docu s ts nts ents BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +( ( ( ( ( ( ( ( ( ( BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 OPENBRACKET 0 0 +https https h ht htt http s ps tps ttps BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 0 NOPUNCT 0 0 +: : : : : : : : : : BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 PUNCT 0 0 +/ / / / / / / / / / BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +/ / / / / / / / / / BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +trustee trustee t tr tru trus e ee tee stee BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +ietf ietf i ie iet ietf f tf etf ietf BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +org org o or org org g rg org org BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +/ / / / / / / / / / BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +license license l li lic lice e se nse ense BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +- - - - - - - - - - BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 1 HYPHEN 0 0 +info info i in inf info o fo nfo info BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 1 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +) ) ) ) ) ) ) ) ) ) BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 ENDBRACKET 0 0 +in in i in in in n in in in BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +effect effect e ef eff effe t ct ect fect BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +on on o on on on n on on on BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +the the t th the the e he the the BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +date date d da dat date e te ate date BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +of of o of of of f of of of BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Noveck noveck N No Nov Nove k ck eck veck BLOCKSTART LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +& & & & & & & & & & BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Lever lever L Le Lev Leve r er ver ever BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Expires expires E Ex Exp Expi s es res ires BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +February february F Fe Feb Febr y ry ary uary BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 1 0 0 0 NOPUNCT 0 0 +5 5 5 5 5 5 5 5 5 5 BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +, , , , , , , , , , BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 COMMA 0 0 +2020 2020 2 20 202 2020 0 20 020 2020 BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS ALLDIGIT 0 0 0 0 0 1 0 0 0 0 NOPUNCT 0 0 +[ [ [ [ [ [ [ [ [ [ BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 OPENBRACKET 0 0 +Page page P Pa Pag Page e ge age Page BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +1 1 1 1 1 1 1 1 1 1 BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +] ] ] ] ] ] ] ] ] ] BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 ENDBRACKET 0 0 +Internet internet I In Int Inte t et net rnet BLOCKSTART LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +- - - - - - - - - - BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 1 HYPHEN 0 0 +Draft draft D Dr Dra Draf t ft aft raft BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +NFSv4 nfsv4 N NF NFS NFSv 4 v4 Sv4 FSv4 BLOCKSTART LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +1 1 1 1 1 1 1 1 1 1 BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +with with w wi wit with h th ith with BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Namespace namespace N Na Nam Name e ce ace pace BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Update update U Up Upd Upda e te ate date BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +August august A Au Aug Augu t st ust gust BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 1 1 0 0 0 1 0 0 0 NOPUNCT 0 0 +2019 2019 2 20 201 2019 9 19 019 2019 BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS ALLDIGIT 0 0 0 0 0 1 0 0 0 0 NOPUNCT 0 0 +publication publication p pu pub publ n on ion tion BLOCKSTART LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +of of o of of of f of of of BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +this this t th thi this s is his this BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +document document d do doc docu t nt ent ment BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +Please please P Pl Ple Plea e se ase ease BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +review review r re rev revi w ew iew view BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +these these t th the thes e se ese hese BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +documents documents d do doc docu s ts nts ents BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +carefully carefully c ca car care y ly lly ully BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +, , , , , , , , , , BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 COMMA 0 0 +as as a as as as s as as as BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +they they t th the they y ey hey they BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +describe describe d de des desc e be ibe ribe BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +your your y yo you your r ur our your BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +rights rights r ri rig righ s ts hts ghts BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +and and a an and and d nd and and BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +restrictions restrictions r re res rest s ns ons ions BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +with with w wi wit with h th ith with BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +respect respect r re res resp t ct ect pect BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +to to t to to to o to to to BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +this this t th thi this s is his this BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +document document d do doc docu t nt ent ment BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +Code code C Co Cod Code e de ode Code BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Components components C Co Com Comp s ts nts ents BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +extracted extracted e ex ext extr d ed ted cted BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +from from f fr fro from m om rom from BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +this this t th thi this s is his this BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +document document d do doc docu t nt ent ment BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +must must m mu mus must t st ust must BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +include include i in inc incl e de ude lude BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Simplified simplified S Si Sim Simp d ed ied fied BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +BSD bsd B BS BSD BSD D SD BSD BSD BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +License license L Li Lic Lice e se nse ense BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +text text t te tex text t xt ext text BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +as as a as as as s as as as BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +described described d de des desc d ed bed ibed BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +in in i in in in n in in in BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Section section S Se Sec Sect n on ion tion BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +4 4 4 4 4 4 4 4 4 4 BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +e e e e e e e e e e BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +of of o of of of f of of of BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +the the t th the the e he the the BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Trust trust T Tr Tru Trus t st ust rust BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Legal legal L Le Leg Lega l al gal egal BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Provisions provisions P Pr Pro Prov s ns ons ions BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +and and a an and and d nd and and BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +are are a ar are are e re are are BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +provided provided p pr pro prov d ed ded ided BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +without without w wi wit with t ut out hout BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +warranty warranty w wa war warr y ty nty anty BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +as as a as as as s as as as BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +described described d de des desc d ed bed ibed BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +in in i in in in n in in in BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +the the t th the the e he the the BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Simplified simplified S Si Sim Simp d ed ied fied BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +BSD bsd B BS BSD BSD D SD BSD BSD BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +License license L Li Lic Lice e se nse ense BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +This this T Th Thi This s is his This BLOCKSTART LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +document document d do doc docu t nt ent ment BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +may may m ma may may y ay may may BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 1 1 0 0 0 1 0 0 0 NOPUNCT 0 0 +contain contain c co con cont n in ain tain BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +material material m ma mat mate l al ial rial BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +from from f fr fro from m om rom from BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +IETF ietf I IE IET IETF F TF ETF IETF BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Documents documents D Do Doc Docu s ts nts ents BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +or or o or or or r or or or BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +IETF ietf I IE IET IETF F TF ETF IETF BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Contributions contributions C Co Con Cont s ns ons ions BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +published published p pu pub publ d ed hed shed BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +or or o or or or r or or or BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +made made m ma mad made e de ade made BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +publicly publicly p pu pub publ y ly cly icly BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +available available a av ava avai e le ble able BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +before before b be bef befo e re ore fore BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +November november N No Nov Nove r er ber mber BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 1 0 0 0 NOPUNCT 0 0 +10 10 1 10 10 10 0 10 10 10 BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS ALLDIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +, , , , , , , , , , BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 COMMA 0 0 +2008 2008 2 20 200 2008 8 08 008 2008 BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS ALLDIGIT 0 0 0 0 0 1 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +The the T Th The The e he The The BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +person person p pe per pers n on son rson BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +( ( ( ( ( ( ( ( ( ( BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 OPENBRACKET 0 0 +s s s s s s s s s s BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +) ) ) ) ) ) ) ) ) ) BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 ENDBRACKET 0 0 +controlling controlling c co con cont g ng ing ling BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +the the t th the the e he the the BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +copyright copyright c co cop copy t ht ght ight BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +in in i in in in n in in in BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +some some s so som some e me ome some BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +of of o of of of f of of of BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +this this t th thi this s is his this BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +material material m ma mat mate l al ial rial BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +may may m ma may may y ay may may BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 1 1 0 0 0 1 0 0 0 NOPUNCT 0 0 +not not n no not not t ot not not BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +have have h ha hav have e ve ave have BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +granted granted g gr gra gran d ed ted nted BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +the the t th the the e he the the BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +IETF ietf I IE IET IETF F TF ETF IETF BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Trust trust T Tr Tru Trus t st ust rust BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +the the t th the the e he the the BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +right right r ri rig righ t ht ght ight BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +to to t to to to o to to to BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +allow allow a al all allo w ow low llow BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +modifications modifications m mo mod modi s ns ons ions BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +of of o of of of f of of of BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +such such s su suc such h ch uch such BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +material material m ma mat mate l al ial rial BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +outside outside o ou out outs e de ide side BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +the the t th the the e he the the BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +IETF ietf I IE IET IETF F TF ETF IETF BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Standards standards S St Sta Stan s ds rds ards BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Process process P Pr Pro Proc s ss ess cess BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +Without without W Wi Wit With t ut out hout BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +obtaining obtaining o ob obt obta g ng ing ning BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +an an a an an an n an an an BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +adequate adequate a ad ade adeq e te ate uate BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +license license l li lic lice e se nse ense BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +from from f fr fro from m om rom from BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +the the t th the the e he the the BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +person person p pe per pers n on son rson BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +( ( ( ( ( ( ( ( ( ( BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 OPENBRACKET 0 0 +s s s s s s s s s s BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +) ) ) ) ) ) ) ) ) ) BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 ENDBRACKET 0 0 +controlling controlling c co con cont g ng ing ling BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +the the t th the the e he the the BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +copyright copyright c co cop copy t ht ght ight BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +in in i in in in n in in in BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +such such s su suc such h ch uch such BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +materials materials m ma mat mate s ls als ials BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +, , , , , , , , , , BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 COMMA 0 0 +this this t th thi this s is his this BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +document document d do doc docu t nt ent ment BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +may may m ma may may y ay may may BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 1 1 0 0 0 1 0 0 0 NOPUNCT 0 0 +not not n no not not t ot not not BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +be be b be be be e be be be BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +modified modified m mo mod modi d ed ied fied BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +outside outside o ou out outs e de ide side BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +the the t th the the e he the the BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +IETF ietf I IE IET IETF F TF ETF IETF BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Standards standards S St Sta Stan s ds rds ards BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Process process P Pr Pro Proc s ss ess cess BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +, , , , , , , , , , BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 COMMA 0 0 +and and a an and and d nd and and BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +derivative derivative d de der deri e ve ive tive BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +works works w wo wor work s ks rks orks BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +of of o of of of f of of of BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +it it i it it it t it it it BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +may may m ma may may y ay may may BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 1 1 0 0 0 1 0 0 0 NOPUNCT 0 0 +not not n no not not t ot not not BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +be be b be be be e be be be BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +created created c cr cre crea d ed ted ated BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +outside outside o ou out outs e de ide side BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +the the t th the the e he the the BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +IETF ietf I IE IET IETF F TF ETF IETF BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Standards standards S St Sta Stan s ds rds ards BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Process process P Pr Pro Proc s ss ess cess BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +, , , , , , , , , , BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 COMMA 0 0 +except except e ex exc exce t pt ept cept BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +to to t to to to o to to to BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +format format f fo for form t at mat rmat BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +it it i it it it t it it it BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +for for f fo for for r or for for BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +publication publication p pu pub publ n on ion tion BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +as as a as as as s as as as BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +an an a an an an n an an an BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +RFC rfc R RF RFC RFC C FC RFC RFC BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +or or o or or or r or or or BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +to to t to to to o to to to BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +translate translate t tr tra tran e te ate late BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +it it i it it it t it it it BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +into into i in int into o to nto into BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +languages languages l la lan lang s es ges ages BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +other other o ot oth othe r er her ther BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +than than t th tha than n an han than BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +English english E En Eng Engl h sh ish lish BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 1 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +David david D Da Dav Davi d id vid avid BLOCKSTART LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 1 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Noveck noveck N No Nov Nove k ck eck veck BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +( ( ( ( ( ( ( ( ( ( BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 OPENBRACKET 0 0 +editor editor e ed edi edit r or tor itor BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +) ) ) ) ) ) ) ) ) ) BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 ENDBRACKET 0 0 +NetApp netapp N Ne Net NetA p pp App tApp BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +1601 1601 1 16 160 1601 1 01 601 1601 BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS ALLDIGIT 0 0 0 0 0 1 0 0 0 0 NOPUNCT 0 0 +Trapelo trapelo T Tr Tra Trap o lo elo pelo BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Road road R Ro Roa Road d ad oad Road BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +, , , , , , , , , , BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 COMMA 0 0 +Suite suite S Su Sui Suit e te ite uite BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +16 16 1 16 16 16 6 16 16 16 BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS ALLDIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Waltham waltham W Wa Wal Walt m am ham tham BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +, , , , , , , , , , BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 COMMA 0 0 +MA ma M MA MA MA A MA MA MA BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 0 1 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +02451 02451 0 02 024 0245 1 51 451 2451 BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS ALLDIGIT 0 0 0 0 0 1 0 0 0 0 NOPUNCT 0 0 +USA usa U US USA USA A SA USA USA BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Phone phone P Ph Pho Phon e ne one hone BLOCKSTART LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +: : : : : : : : : : BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 PUNCT 0 0 ++1 +1 + +1 +1 +1 1 +1 +1 +1 BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +- - - - - - - - - - BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 1 HYPHEN 0 0 +781 781 7 78 781 781 1 81 781 781 BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS ALLDIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +- - - - - - - - - - BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 1 HYPHEN 0 0 +768 768 7 76 768 768 8 68 768 768 BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS ALLDIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +- - - - - - - - - - BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 1 HYPHEN 0 0 +5347 5347 5 53 534 5347 7 47 347 5347 BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS ALLDIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +EMail email E EM EMa EMai l il ail Mail BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +: : : : : : : : : : BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 PUNCT 0 0 +dnoveck@netapp dnoveck@netapp d dn dno dnov p pp app tapp BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +com com c co com com m om com com BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Charles charles C Ch Cha Char s es les rles BLOCKSTART LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 1 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Lever lever L Le Lev Leve r er ver ever BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Oracle oracle O Or Ora Orac e le cle acle BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Corporation corporation C Co Cor Corp n on ion tion BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +1015 1015 1 10 101 1015 5 15 015 1015 BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS ALLDIGIT 0 0 0 0 0 1 0 0 0 0 NOPUNCT 0 0 +Granger granger G Gr Gra Gran r er ger nger BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 1 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Avenue avenue A Av Ave Aven e ue nue enue BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Ann ann A An Ann Ann n nn Ann Ann BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 1 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Arbor arbor A Ar Arb Arbo r or bor rbor BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +, , , , , , , , , , BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 COMMA 0 0 +MI mi M MI MI MI I MI MI MI BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 0 1 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +48104 48104 4 48 481 4810 4 04 104 8104 BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS ALLDIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +United united U Un Uni Unit d ed ted ited BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +States states S St Sta Stat s es tes ates BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +of of o of of of f of of of BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +America america A Am Ame Amer a ca ica rica BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 1 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Phone phone P Ph Pho Phon e ne one hone BLOCKSTART LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +: : : : : : : : : : BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 PUNCT 0 0 ++1 +1 + +1 +1 +1 1 +1 +1 +1 BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +248 248 2 24 248 248 8 48 248 248 BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS ALLDIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +614 614 6 61 614 614 4 14 614 614 BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS ALLDIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +5091 5091 5 50 509 5091 1 91 091 5091 BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS ALLDIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +EMail email E EM EMa EMai l il ail Mail BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +: : : : : : : : : : BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 PUNCT 0 0 +chuck chuck c ch chu chuc k ck uck huck BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +lever@oracle lever@oracle l le lev leve e le cle acle BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +com com c co com com m om com com BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 + diff --git a/grobid-trainer/resources/dataset/header/sdo/ietf/corpus/raw/XP015134658.training.header b/grobid-trainer/resources/dataset/header/sdo/ietf/corpus/raw/XP015134658.training.header new file mode 100644 index 0000000000..30179f4922 --- /dev/null +++ b/grobid-trainer/resources/dataset/header/sdo/ietf/corpus/raw/XP015134658.training.header @@ -0,0 +1,331 @@ +Network network N Ne Net Netw k rk ork work BLOCKSTART LINESTART NEWFONT HIGHERFONT 1 0 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Work work W Wo Wor Work k rk ork Work BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +group group g gr gro grou p up oup roup BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +N n N N N N N N N N BLOCKSTART LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +Nainar nainar N Na Nai Nain r ar nar inar BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Internet internet I In Int Inte t et net rnet BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +- - - - - - - - - - BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 1 HYPHEN 0 0 +Draft draft D Dr Dra Draf t ft aft raft BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +C c C C C C C C C C BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +Pignataro pignataro P Pi Pig Pign o ro aro taro BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Updates updates U Up Upd Upda s es tes ates BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +: : : : : : : : : : BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 PUNCT 0 0 +8287 8287 8 82 828 8287 7 87 287 8287 BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS ALLDIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +( ( ( ( ( ( ( ( ( ( BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 OPENBRACKET 0 0 +if if i if if if f if if if BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +approved approved a ap app appr d ed ved oved BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +) ) ) ) ) ) ) ) ) ) BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 ENDBRACKET 0 0 +Cisco cisco C Ci Cis Cisc o co sco isco BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 1 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Systems systems S Sy Sys Syst s ms ems tems BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +, , , , , , , , , , BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 COMMA 0 0 +Inc inc I In Inc Inc c nc Inc Inc BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +Intended intended I In Int Inte d ed ded nded BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +status status s st sta stat s us tus atus BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +: : : : : : : : : : BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 PUNCT 0 0 +Standards standards S St Sta Stan s ds rds ards BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Track track T Tr Tra Trac k ck ack rack BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +F f F F F F F F F F BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +Iqbal iqbal I Iq Iqb Iqba l al bal qbal BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Expires expires E Ex Exp Expi s es res ires BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +: : : : : : : : : : BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 PUNCT 0 0 +February february F Fe Feb Febr y ry ary uary BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 1 0 0 0 NOPUNCT 0 0 +9 9 9 9 9 9 9 9 9 9 BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +, , , , , , , , , , BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 COMMA 0 0 +2020 2020 2 20 202 2020 0 20 020 2020 BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS ALLDIGIT 0 0 0 0 0 1 0 0 0 0 NOPUNCT 0 0 +Individual individual I In Ind Indi l al ual dual BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +A a A A A A A A A A BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +Vainshtein vainshtein V Va Vai Vain n in ein tein BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +ECI eci E EC ECI ECI I CI ECI ECI BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Telecom telecom T Te Tel Tele m om com ecom BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 1 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +August august A Au Aug Augu t st ust gust BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 1 1 0 0 0 1 0 0 0 NOPUNCT 0 0 +8 8 8 8 8 8 8 8 8 8 BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +, , , , , , , , , , BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 COMMA 0 0 +2019 2019 2 20 201 2019 9 19 019 2019 BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS ALLDIGIT 0 0 0 0 0 1 0 0 0 0 NOPUNCT 0 0 +RFC8287 rfc8287 R RF RFC RFC8 7 87 287 8287 BLOCKSTART LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Sub sub S Su Sub Sub b ub Sub Sub BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +- - - - - - - - - - BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 1 HYPHEN 0 0 +TLV tlv T TL TLV TLV V LV TLV TLV BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Length length L Le Len Leng h th gth ngth BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Clarification clarification C Cl Cla Clar n on ion tion BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +draft draft d dr dra draf t ft aft raft BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +- - - - - - - - - - BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 1 HYPHEN 0 0 +ietf ietf i ie iet ietf f tf etf ietf BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +- - - - - - - - - - BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 1 HYPHEN 0 0 +mpls mpls m mp mpl mpls s ls pls mpls BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +- - - - - - - - - - BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 1 HYPHEN 0 0 +rfc8287 rfc8287 r rf rfc rfc8 7 87 287 8287 BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +- - - - - - - - - - BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 1 HYPHEN 0 0 +len len l le len len n en len len BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 1 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +- - - - - - - - - - BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 1 HYPHEN 0 0 +clarification clarification c cl cla clar n on ion tion BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +- - - - - - - - - - BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 1 HYPHEN 0 0 +03 03 0 03 03 03 3 03 03 03 BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS ALLDIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Abstract abstract A Ab Abs Abst t ct act ract BLOCKSTART LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +RFC8287 rfc8287 R RF RFC RFC8 7 87 287 8287 BLOCKSTART LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +defines defines d de def defi s es nes ines BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +the the t th the the e he the the BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +extensions extensions e ex ext exte s ns ons ions BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +to to t to to to o to to to BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +MPLS mpls M MP MPL MPLS S LS PLS MPLS BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +LSP lsp L LS LSP LSP P SP LSP LSP BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Ping ping P Pi Pin Ping g ng ing Ping BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +and and a an and and d nd and and BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Traceroute traceroute T Tr Tra Trac e te ute oute BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +for for f fo for for r or for for BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Segment segment S Se Seg Segm t nt ent ment BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Routing routing R Ro Rou Rout g ng ing ting BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +IGP igp I IG IGP IGP P GP IGP IGP BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +- - - - - - - - - - BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 1 HYPHEN 0 0 +Prefix prefix P Pr Pre Pref x ix fix efix BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +and and a an and and d nd and and BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +IGP igp I IG IGP IGP P GP IGP IGP BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +- - - - - - - - - - BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 1 HYPHEN 0 0 +Adjacency adjacency A Ad Adj Adja y cy ncy ency BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Segment segment S Se Seg Segm t nt ent ment BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Identifier identifier I Id Ide Iden r er ier fier BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +( ( ( ( ( ( ( ( ( ( BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 OPENBRACKET 0 0 +SIDs sids S SI SID SIDs s Ds IDs SIDs BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +) ) ) ) ) ) ) ) ) ) BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 ENDBRACKET 0 0 +with with w wi wit with h th ith with BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +an an a an an an n an an an BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +MPLS mpls M MP MPL MPLS S LS PLS MPLS BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +data data d da dat data a ta ata data BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +plane plane p pl pla plan e ne ane lane BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +RFC8287 rfc8287 R RF RFC RFC8 7 87 287 8287 BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +proposes proposes p pr pro prop s es ses oses BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +3 3 3 3 3 3 3 3 3 3 BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Target target T Ta Tar Targ t et get rget BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +FEC fec F FE FEC FEC C EC FEC FEC BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Stack stack S St Sta Stac k ck ack tack BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Sub sub S Su Sub Sub b ub Sub Sub BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +- - - - - - - - - - BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 1 HYPHEN 0 0 +TLVs tlvs T TL TLV TLVs s Vs LVs TLVs BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +While while W Wh Whi Whil e le ile hile BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +the the t th the the e he the the BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +standard standard s st sta stan d rd ard dard BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +defines defines d de def defi s es nes ines BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +the the t th the the e he the the BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +format format f fo for form t at mat rmat BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +and and a an and and d nd and and BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +procedure procedure p pr pro proc e re ure dure BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +to to t to to to o to to to BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +handle handle h ha han hand e le dle ndle BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +those those t th tho thos e se ose hose BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Sub sub S Su Sub Sub b ub Sub Sub BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +- - - - - - - - - - BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 1 HYPHEN 0 0 +TLVs tlvs T TL TLV TLVs s Vs LVs TLVs BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +, , , , , , , , , , BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 COMMA 0 0 +it it i it it it t it it it BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +does does d do doe does s es oes does BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +not not n no not not t ot not not BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +sufficiently sufficiently s su suf suff y ly tly ntly BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +clarify clarify c cl cla clar y fy ify rify BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +how how h ho how how w ow how how BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +the the t th the the e he the the BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +length length l le len leng h th gth ngth BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +of of o of of of f of of of BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +the the t th the the e he the the BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Segment segment S Se Seg Segm t nt ent ment BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +ID id I ID ID ID D ID ID ID BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 0 1 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Sub sub S Su Sub Sub b ub Sub Sub BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +- - - - - - - - - - BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 1 HYPHEN 0 0 +TLVs tlvs T TL TLV TLVs s Vs LVs TLVs BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +should should s sh sho shou d ld uld ould BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +be be b be be be e be be be BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +computed computed c co com comp d ed ted uted BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +to to t to to to o to to to BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +include include i in inc incl e de ude lude BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +in in i in in in n in in in BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +the the t th the the e he the the BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Length length L Le Len Leng h th gth ngth BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +field field f fi fie fiel d ld eld ield BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +of of o of of of f of of of BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +the the t th the the e he the the BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Sub sub S Su Sub Sub b ub Sub Sub BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +- - - - - - - - - - BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 1 HYPHEN 0 0 +TLVs tlvs T TL TLV TLVs s Vs LVs TLVs BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +which which w wh whi whic h ch ich hich BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +may may m ma may may y ay may may BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 1 1 0 0 0 1 0 0 0 NOPUNCT 0 0 +result result r re res resu t lt ult sult BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +in in i in in in n in in in BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +interoperability interoperability i in int inte y ty ity lity BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +issues issues i is iss issu s es ues sues BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +This this T Th Thi This s is his This BLOCKSTART LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +document document d do doc docu t nt ent ment BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +updates updates u up upd upda s es tes ates BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +RFC8287 rfc8287 R RF RFC RFC8 7 87 287 8287 BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +by by b by by by y by by by BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +clarifying clarifying c cl cla clar g ng ing ying BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +the the t th the the e he the the BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +length length l le len leng h th gth ngth BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +of of o of of of f of of of BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +each each e ea eac each h ch ach each BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Segment segment S Se Seg Segm t nt ent ment BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +ID id I ID ID ID D ID ID ID BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 0 1 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Sub sub S Su Sub Sub b ub Sub Sub BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +- - - - - - - - - - BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 1 HYPHEN 0 0 +TLVs tlvs T TL TLV TLVs s Vs LVs TLVs BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +defined defined d de def defi d ed ned ined BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +in in i in in in n in in in BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +RFC8287 rfc8287 R RF RFC RFC8 7 87 287 8287 BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +Status status S St Sta Stat s us tus atus BLOCKSTART LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +of of o of of of f of of of BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +This this T Th Thi This s is his This BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Memo memo M Me Mem Memo o mo emo Memo BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +This this T Th Thi This s is his This BLOCKSTART LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Internet internet I In Int Inte t et net rnet BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +- - - - - - - - - - BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 1 HYPHEN 0 0 +Draft draft D Dr Dra Draf t ft aft raft BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +is is i is is is s is is is BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +submitted submitted s su sub subm d ed ted tted BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +in in i in in in n in in in BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +full full f fu ful full l ll ull full BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +conformance conformance c co con conf e ce nce ance BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +with with w wi wit with h th ith with BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +the the t th the the e he the the BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +provisions provisions p pr pro prov s ns ons ions BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +of of o of of of f of of of BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +BCP bcp B BC BCP BCP P CP BCP BCP BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +78 78 7 78 78 78 8 78 78 78 BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS ALLDIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +and and a an and and d nd and and BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +BCP bcp B BC BCP BCP P CP BCP BCP BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +79 79 7 79 79 79 9 79 79 79 BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS ALLDIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +Internet internet I In Int Inte t et net rnet BLOCKSTART LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +- - - - - - - - - - BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 1 HYPHEN 0 0 +Drafts drafts D Dr Dra Draf s ts fts afts BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +are are a ar are are e re are are BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +working working w wo wor work g ng ing king BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +documents documents d do doc docu s ts nts ents BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +of of o of of of f of of of BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +the the t th the the e he the the BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Internet internet I In Int Inte t et net rnet BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Engineering engineering E En Eng Engi g ng ing ring BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Task task T Ta Tas Task k sk ask Task BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Force force F Fo For Forc e ce rce orce BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +( ( ( ( ( ( ( ( ( ( BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 OPENBRACKET 0 0 +IETF ietf I IE IET IETF F TF ETF IETF BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +) ) ) ) ) ) ) ) ) ) BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 ENDBRACKET 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +Note note N No Not Note e te ote Note BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +that that t th tha that t at hat that BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +other other o ot oth othe r er her ther BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +groups groups g gr gro grou s ps ups oups BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +may may m ma may may y ay may may BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 1 1 0 0 0 1 0 0 0 NOPUNCT 0 0 +also also a al als also o so lso also BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +distribute distribute d di dis dist e te ute bute BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +working working w wo wor work g ng ing king BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +documents documents d do doc docu s ts nts ents BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +as as a as as as s as as as BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Internet internet I In Int Inte t et net rnet BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +- - - - - - - - - - BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 1 HYPHEN 0 0 +Drafts drafts D Dr Dra Draf s ts fts afts BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +The the T Th The The e he The The BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +list list l li lis list t st ist list BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +of of o of of of f of of of BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +current current c cu cur curr t nt ent rent BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Internet internet I In Int Inte t et net rnet BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +- - - - - - - - - - BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 1 HYPHEN 0 0 +Drafts drafts D Dr Dra Draf s ts fts afts BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +is is i is is is s is is is BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +at at a at at at t at at at BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +https https h ht htt http s ps tps ttps BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 0 NOPUNCT 0 0 +: : : : : : : : : : BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 PUNCT 0 0 +/ / / / / / / / / / BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +/ / / / / / / / / / BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +datatracker datatracker d da dat data r er ker cker BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +ietf ietf i ie iet ietf f tf etf ietf BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +org org o or org org g rg org org BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +/ / / / / / / / / / BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +drafts drafts d dr dra draf s ts fts afts BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +/ / / / / / / / / / BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +current current c cu cur curr t nt ent rent BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +/ / / / / / / / / / BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +Nagendra nagendra N Na Nag Nage a ra dra ndra BLOCKSTART LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 1 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Kumar kumar K Ku Kum Kuma r ar mar umar BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 1 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Nainar nainar N Na Nai Nain r ar nar inar BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Cisco cisco C Ci Cis Cisc o co sco isco BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 1 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Systems systems S Sy Sys Syst s ms ems tems BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +, , , , , , , , , , BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 COMMA 0 0 +Inc inc I In Inc Inc c nc Inc Inc BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +7200 7200 7 72 720 7200 0 00 200 7200 BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS ALLDIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +- - - - - - - - - - BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 1 HYPHEN 0 0 +12 12 1 12 12 12 2 12 12 12 BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS ALLDIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Kit kit K Ki Kit Kit t it Kit Kit BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Creek creek C Cr Cre Cree k ek eek reek BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Road road R Ro Roa Road d ad oad Road BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Research research R Re Res Rese h ch rch arch BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Triangle triangle T Tr Tri Tria e le gle ngle BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Park park P Pa Par Park k rk ark Park BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +, , , , , , , , , , BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 COMMA 0 0 +NC nc N NC NC NC C NC NC NC BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +27709 27709 2 27 277 2770 9 09 709 7709 BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS ALLDIGIT 0 0 0 0 0 1 0 0 0 0 NOPUNCT 0 0 +US us U US US US S US US US BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 0 1 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Email email E Em Ema Emai l il ail mail BLOCKSTART LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +: : : : : : : : : : BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 PUNCT 0 0 +naikumar@cisco naikumar@cisco n na nai naik o co sco isco BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +com com c co com com m om com com BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Carlos carlos C Ca Car Carl s os los rlos BLOCKSTART LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 1 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Pignataro pignataro P Pi Pig Pign o ro aro taro BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Cisco cisco C Ci Cis Cisc o co sco isco BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 1 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Systems systems S Sy Sys Syst s ms ems tems BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +, , , , , , , , , , BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 COMMA 0 0 +Inc inc I In Inc Inc c nc Inc Inc BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +7200 7200 7 72 720 7200 0 00 200 7200 BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS ALLDIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +- - - - - - - - - - BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 1 HYPHEN 0 0 +11 11 1 11 11 11 1 11 11 11 BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS ALLDIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Kit kit K Ki Kit Kit t it Kit Kit BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Creek creek C Cr Cre Cree k ek eek reek BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Road road R Ro Roa Road d ad oad Road BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Research research R Re Res Rese h ch rch arch BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Triangle triangle T Tr Tri Tria e le gle ngle BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Park park P Pa Par Park k rk ark Park BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +, , , , , , , , , , BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 COMMA 0 0 +NC nc N NC NC NC C NC NC NC BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +27709 27709 2 27 277 2770 9 09 709 7709 BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS ALLDIGIT 0 0 0 0 0 1 0 0 0 0 NOPUNCT 0 0 +US us U US US US S US US US BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 0 1 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Email email E Em Ema Emai l il ail mail BLOCKSTART LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +: : : : : : : : : : BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 PUNCT 0 0 +cpignata@cisco cpignata@cisco c cp cpi cpig o co sco isco BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +com com c co com com m om com com BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Faisal faisal F Fa Fai Fais l al sal isal BLOCKSTART LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Iqbal iqbal I Iq Iqb Iqba l al bal qbal BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Individual individual I In Ind Indi l al ual dual BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Canada canada C Ca Can Cana a da ada nada BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 1 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Email email E Em Ema Emai l il ail mail BLOCKSTART LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +: : : : : : : : : : BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 PUNCT 0 0 +faisal faisal f fa fai fais l al sal isal BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +iqbal@msn iqbal@msn i iq iqb iqba n sn msn @msn BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +com com c co com com m om com com BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Alexander alexander A Al Ale Alex r er der nder BLOCKSTART LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 1 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Vainshtein vainshtein V Va Vai Vain n in ein tein BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +ECI eci E EC ECI ECI I CI ECI ECI BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Telecom telecom T Te Tel Tele m om com ecom BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 1 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Israel israel I Is Isr Isra l el ael rael BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 1 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Email email E Em Ema Emai l il ail mail BLOCKSTART LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +: : : : : : : : : : BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 PUNCT 0 0 +vainshtein vainshtein v va vai vain n in ein tein BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +alex@gmail alex@gmail a al ale alex l il ail mail BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +com com c co com com m om com com BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 + diff --git a/grobid-trainer/resources/dataset/header/sdo/ietf/corpus/raw/XP015134693.training.header b/grobid-trainer/resources/dataset/header/sdo/ietf/corpus/raw/XP015134693.training.header new file mode 100644 index 0000000000..dcb14196de --- /dev/null +++ b/grobid-trainer/resources/dataset/header/sdo/ietf/corpus/raw/XP015134693.training.header @@ -0,0 +1,576 @@ +ICNRG icnrg I IC ICN ICNR G RG NRG CNRG BLOCKSTART LINESTART NEWFONT HIGHERFONT 1 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +D d D D D D D D D D BLOCKSTART LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +Oran oran O Or Ora Oran n an ran Oran BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 1 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Internet internet I In Int Inte t et net rnet BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +- - - - - - - - - - BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 1 HYPHEN 0 0 +Draft draft D Dr Dra Draf t ft aft raft BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Network network N Ne Net Netw k rk ork work BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Systems systems S Sy Sys Syst s ms ems tems BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Research research R Re Res Rese h ch rch arch BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +and and a an and and d nd and and BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Design design D De Des Desi n gn ign sign BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Intended intended I In Int Inte d ed ded nded BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +status status s st sta stat s us tus atus BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +: : : : : : : : : : BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 PUNCT 0 0 +Experimental experimental E Ex Exp Expe l al tal ntal BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +August august A Au Aug Augu t st ust gust BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 1 1 0 0 0 1 0 0 0 NOPUNCT 0 0 +10 10 1 10 10 10 0 10 10 10 BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS ALLDIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +, , , , , , , , , , BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 COMMA 0 0 +2019 2019 2 20 201 2019 9 19 019 2019 BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS ALLDIGIT 0 0 0 0 0 1 0 0 0 0 NOPUNCT 0 0 +Expires expires E Ex Exp Expi s es res ires BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +: : : : : : : : : : BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 PUNCT 0 0 +February february F Fe Feb Febr y ry ary uary BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 1 0 0 0 NOPUNCT 0 0 +11 11 1 11 11 11 1 11 11 11 BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS ALLDIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +, , , , , , , , , , BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 COMMA 0 0 +2020 2020 2 20 202 2020 0 20 020 2020 BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS ALLDIGIT 0 0 0 0 0 1 0 0 0 0 NOPUNCT 0 0 +Maintaining maintaining M Ma Mai Main g ng ing ning BLOCKSTART LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +CCNx ccnx C CC CCN CCNx x Nx CNx CCNx BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +or or o or or or r or or or BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +NDN ndn N ND NDN NDN N DN NDN NDN BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +flow flow f fl flo flow w ow low flow BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +balance balance b ba bal bala e ce nce ance BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +with with w wi wit with h th ith with BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +highly highly h hi hig high y ly hly ghly BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +variable variable v va var vari e le ble able BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +data data d da dat data a ta ata data BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +object object o ob obj obje t ct ect ject BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +sizes sizes s si siz size s es zes izes BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +draft draft d dr dra draf t ft aft raft BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +- - - - - - - - - - BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 1 HYPHEN 0 0 +oran oran o or ora oran n an ran oran BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 1 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +- - - - - - - - - - BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 1 HYPHEN 0 0 +icnrg icnrg i ic icn icnr g rg nrg cnrg BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +- - - - - - - - - - BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 1 HYPHEN 0 0 +flowbalance flowbalance f fl flo flow e ce nce ance BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +- - - - - - - - - - BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 1 HYPHEN 0 0 +01 01 0 01 01 01 1 01 01 01 BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS ALLDIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Abstract abstract A Ab Abs Abst t ct act ract BLOCKSTART LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Deeply deeply D De Dee Deep y ly ply eply BLOCKSTART LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +embedded embedded e em emb embe d ed ded dded BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +in in i in in in n in in in BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +some some s so som some e me ome some BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +ICN icn I IC ICN ICN N CN ICN ICN BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +architectures architectures a ar arc arch s es res ures BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +, , , , , , , , , , BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 COMMA 0 0 +especially especially e es esp espe y ly lly ally BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Named named N Na Nam Name d ed med amed BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Data data D Da Dat Data a ta ata Data BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Networking networking N Ne Net Netw g ng ing king BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +( ( ( ( ( ( ( ( ( ( BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 OPENBRACKET 0 0 +NDN ndn N ND NDN NDN N DN NDN NDN BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +) ) ) ) ) ) ) ) ) ) BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 ENDBRACKET 0 0 +and and a an and and d nd and and BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Content content C Co Con Cont t nt ent tent BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +- - - - - - - - - - BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 1 HYPHEN 0 0 +Centric centric C Ce Cen Cent c ic ric tric BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Networking networking N Ne Net Netw g ng ing king BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +( ( ( ( ( ( ( ( ( ( BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 OPENBRACKET 0 0 +CCNx ccnx C CC CCN CCNx x Nx CNx CCNx BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +) ) ) ) ) ) ) ) ) ) BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 ENDBRACKET 0 0 +is is i is is is s is is is BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +the the t th the the e he the the BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +notion notion n no not noti n on ion tion BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +of of o of of of f of of of BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +flow flow f fl flo flow w ow low flow BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +balance balance b ba bal bala e ce nce ance BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +This this T Th Thi This s is his This BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +captures captures c ca cap capt s es res ures BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +the the t th the the e he the the BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +idea idea i id ide idea a ea dea idea BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +that that t th tha that t at hat that BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +there there t th the ther e re ere here BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +is is i is is is s is is is BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +a a a a a a a a a a BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 1 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +one one o on one one e ne one one BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +- - - - - - - - - - BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 1 HYPHEN 0 0 +to to t to to to o to to to BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +- - - - - - - - - - BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 1 HYPHEN 0 0 +one one o on one one e ne one one BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +correspondence correspondence c co cor corr e ce nce ence BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +between between b be bet betw n en een ween BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +requests requests r re req requ s ts sts ests BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +for for f fo for for r or for for BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +data data d da dat data a ta ata data BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +, , , , , , , , , , BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 COMMA 0 0 +carried carried c ca car carr d ed ied ried BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +in in i in in in n in in in BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Interest interest I In Int Inte t st est rest BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +messages messages m me mes mess s es ges ages BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +, , , , , , , , , , BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 COMMA 0 0 +and and a an and and d nd and and BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +the the t th the the e he the the BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +responses responses r re res resp s es ses nses BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +with with w wi wit with h th ith with BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +the the t th the the e he the the BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +requested requested r re req requ d ed ted sted BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +data data d da dat data a ta ata data BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +object object o ob obj obje t ct ect ject BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +, , , , , , , , , , BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 COMMA 0 0 +carried carried c ca car carr d ed ied ried BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +in in i in in in n in in in BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Data data D Da Dat Data a ta ata Data BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +messages messages m me mes mess s es ges ages BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +This this T Th Thi This s is his This BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +has has h ha has has s as has has BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +a a a a a a a a a a BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 1 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +number number n nu num numb r er ber mber BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +of of o of of of f of of of BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +highly highly h hi hig high y ly hly ghly BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +beneficial beneficial b be ben bene l al ial cial BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +properties properties p pr pro prop s es ies ties BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +for for f fo for for r or for for BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +flow flow f fl flo flow w ow low flow BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +and and a an and and d nd and and BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +congestion congestion c co con cong n on ion tion BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +control control c co con cont l ol rol trol BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +in in i in in in n in in in BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +networks networks n ne net netw s ks rks orks BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +, , , , , , , , , , BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 COMMA 0 0 +as as a as as as s as as as BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +well well w we wel well l ll ell well BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +as as a as as as s as as as BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +some some s so som some e me ome some BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +desirable desirable d de des desi e le ble able BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +security security s se sec secu y ty ity rity BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +properties properties p pr pro prop s es ies ties BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +For for F Fo For For r or For For BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +example example e ex exa exam e le ple mple BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +, , , , , , , , , , BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 COMMA 0 0 +neither neither n ne nei neit r er her ther BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +legitimate legitimate l le leg legi e te ate mate BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +users users u us use user s rs ers sers BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +nor nor n no nor nor r or nor nor BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +attackers attackers a at att atta s rs ers kers BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +are are a ar are are e re are are BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +able able a ab abl able e le ble able BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +to to t to to to o to to to BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +inject inject i in inj inje t ct ect ject BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +large large l la lar larg e ge rge arge BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +amounts amounts a am amo amou s ts nts unts BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +of of o of of of f of of of BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +un un u un un un n un un un BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 1 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +- - - - - - - - - - BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 1 HYPHEN 0 0 +requested requested r re req requ d ed ted sted BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +data data d da dat data a ta ata data BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +into into i in int into o to nto into BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +the the t th the the e he the the BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +network network n ne net netw k rk ork work BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +Existing existing E Ex Exi Exis g ng ing ting BLOCKSTART LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +congestion congestion c co con cong n on ion tion BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +control control c co con cont l ol rol trol BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +approaches approaches a ap app appr s es hes ches BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +however however h ho how howe r er ver ever BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +cannot cannot c ca can cann t ot not nnot BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +deal deal d de dea deal l al eal deal BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +effectively effectively e ef eff effe y ly ely vely BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +with with w wi wit with h th ith with BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +a a a a a a a a a a BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 1 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +widely widely w wi wid wide y ly ely dely BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +varying varying v va var vary g ng ing ying BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +MTU mtu M MT MTU MTU U TU MTU MTU BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +of of o of of of f of of of BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +ICN icn I IC ICN ICN N CN ICN ICN BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +data data d da dat data a ta ata data BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +messages messages m me mes mess s es ges ages BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +, , , , , , , , , , BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 COMMA 0 0 +since since s si sin sinc e ce nce ince BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +the the t th the the e he the the BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +protocols protocols p pr pro prot s ls ols cols BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +allow allow a al all allo w ow low llow BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +a a a a a a a a a a BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 1 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +dynamic dynamic d dy dyn dyna c ic mic amic BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +range range r ra ran rang e ge nge ange BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +of of o of of of f of of of BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +1 1 1 1 1 1 1 1 1 1 BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +- - - - - - - - - - BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 1 HYPHEN 0 0 +64K 64k 6 64 64K 64K K 4K 64K 64K BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +bytes bytes b by byt byte s es tes ytes BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +Since since S Si Sin Sinc e ce nce ince BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Interest interest I In Int Inte t st est rest BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +messages messages m me mes mess s es ges ages BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +are are a ar are are e re are are BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +used used u us use used d ed sed used BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +to to t to to to o to to to BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +allocate allocate a al all allo e te ate cate BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +the the t th the the e he the the BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +reverse reverse r re rev reve e se rse erse BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +link link l li lin link k nk ink link BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +bandwidth bandwidth b ba ban band h th dth idth BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +for for f fo for for r or for for BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +returning returning r re ret retu g ng ing ning BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Data data D Da Dat Data a ta ata Data BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +, , , , , , , , , , BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 COMMA 0 0 +there there t th the ther e re ere here BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +is is i is is is s is is is BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +large large l la lar larg e ge rge arge BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +uncertainty uncertainty u un unc unce y ty nty inty BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +in in i in in in n in in in BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +how how h ho how how w ow how how BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +to to t to to to o to to to BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +allocate allocate a al all allo e te ate cate BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +that that t th tha that t at hat that BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +bandwidth bandwidth b ba ban band h th dth idth BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +Unfortunately unfortunately U Un Unf Unfo y ly ely tely BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +, , , , , , , , , , BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 COMMA 0 0 +current current c cu cur curr t nt ent rent BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +congestion congestion c co con cong n on ion tion BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +control control c co con cont l ol rol trol BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +schemes schemes s sc sch sche s es mes emes BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +in in i in in in n in in in BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +CCNx ccnx C CC CCN CCNx x Nx CNx CCNx BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +and and a an and and d nd and and BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +NDN ndn N ND NDN NDN N DN NDN NDN BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +only only o on onl only y ly nly only BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +count count c co cou coun t nt unt ount BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Interest interest I In Int Inte t st est rest BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +messages messages m me mes mess s es ges ages BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +and and a an and and d nd and and BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +have have h ha hav have e ve ave have BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +no no n no no no o no no no BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +idea idea i id ide idea a ea dea idea BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +how how h ho how how w ow how how BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +much much m mu muc much h ch uch much BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +data data d da dat data a ta ata data BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +is is i is is is s is is is BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +involved involved i in inv invo d ed ved lved BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +that that t th tha that t at hat that BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +could could c co cou coul d ld uld ould BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +congest congest c co con cong t st est gest BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +the the t th the the e he the the BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +inverse inverse i in inv inve e se rse erse BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +link link l li lin link k nk ink link BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +This this T Th Thi This s is his This BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +document document d do doc docu t nt ent ment BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +proposes proposes p pr pro prop s es ses oses BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +a a a a a a a a a a BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 1 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +method method m me met meth d od hod thod BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +to to t to to to o to to to BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +maintain maintain m ma mai main n in ain tain BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +flow flow f fl flo flow w ow low flow BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +balance balance b ba bal bala e ce nce ance BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +by by b by by by y by by by BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +accommodating accommodating a ac acc acco g ng ing ting BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +the the t th the the e he the the BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +wide wide w wi wid wide e de ide wide BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +dynamic dynamic d dy dyn dyna c ic mic amic BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +range range r ra ran rang e ge nge ange BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +in in i in in in n in in in BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Data data D Da Dat Data a ta ata Data BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +message message m me mes mess e ge age sage BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +MTU mtu M MT MTU MTU U TU MTU MTU BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +Status status S St Sta Stat s us tus atus BLOCKSTART LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +of of o of of of f of of of BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +This this T Th Thi This s is his This BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Memo memo M Me Mem Memo o mo emo Memo BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +This this T Th Thi This s is his This BLOCKSTART LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Internet internet I In Int Inte t et net rnet BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +- - - - - - - - - - BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 1 HYPHEN 0 0 +Draft draft D Dr Dra Draf t ft aft raft BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +is is i is is is s is is is BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +submitted submitted s su sub subm d ed ted tted BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +in in i in in in n in in in BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +full full f fu ful full l ll ull full BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +conformance conformance c co con conf e ce nce ance BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +with with w wi wit with h th ith with BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +the the t th the the e he the the BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +provisions provisions p pr pro prov s ns ons ions BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +of of o of of of f of of of BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +BCP bcp B BC BCP BCP P CP BCP BCP BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +78 78 7 78 78 78 8 78 78 78 BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS ALLDIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +and and a an and and d nd and and BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +BCP bcp B BC BCP BCP P CP BCP BCP BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +79 79 7 79 79 79 9 79 79 79 BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS ALLDIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +Internet internet I In Int Inte t et net rnet BLOCKSTART LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +- - - - - - - - - - BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 1 HYPHEN 0 0 +Drafts drafts D Dr Dra Draf s ts fts afts BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +are are a ar are are e re are are BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +working working w wo wor work g ng ing king BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +documents documents d do doc docu s ts nts ents BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +of of o of of of f of of of BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +the the t th the the e he the the BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Internet internet I In Int Inte t et net rnet BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Engineering engineering E En Eng Engi g ng ing ring BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Task task T Ta Tas Task k sk ask Task BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Force force F Fo For Forc e ce rce orce BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +( ( ( ( ( ( ( ( ( ( BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 OPENBRACKET 0 0 +IETF ietf I IE IET IETF F TF ETF IETF BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +) ) ) ) ) ) ) ) ) ) BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 ENDBRACKET 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +Note note N No Not Note e te ote Note BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +that that t th tha that t at hat that BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +other other o ot oth othe r er her ther BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +groups groups g gr gro grou s ps ups oups BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +may may m ma may may y ay may may BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 1 1 0 0 0 1 0 0 0 NOPUNCT 0 0 +also also a al als also o so lso also BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +distribute distribute d di dis dist e te ute bute BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +working working w wo wor work g ng ing king BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +documents documents d do doc docu s ts nts ents BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +as as a as as as s as as as BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Internet internet I In Int Inte t et net rnet BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +- - - - - - - - - - BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 1 HYPHEN 0 0 +Drafts drafts D Dr Dra Draf s ts fts afts BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +The the T Th The The e he The The BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +list list l li lis list t st ist list BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +of of o of of of f of of of BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +current current c cu cur curr t nt ent rent BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Internet internet I In Int Inte t et net rnet BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +- - - - - - - - - - BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 1 HYPHEN 0 0 +Drafts drafts D Dr Dra Draf s ts fts afts BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +is is i is is is s is is is BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +at at a at at at t at at at BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +https https h ht htt http s ps tps ttps BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 0 NOPUNCT 0 0 +: : : : : : : : : : BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 PUNCT 0 0 +/ / / / / / / / / / BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +/ / / / / / / / / / BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +datatracker datatracker d da dat data r er ker cker BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +ietf ietf i ie iet ietf f tf etf ietf BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +org org o or org org g rg org org BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +/ / / / / / / / / / BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +drafts drafts d dr dra draf s ts fts afts BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +/ / / / / / / / / / BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +current current c cu cur curr t nt ent rent BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +/ / / / / / / / / / BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +Internet internet I In Int Inte t et net rnet BLOCKSTART LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +- - - - - - - - - - BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 1 HYPHEN 0 0 +Drafts drafts D Dr Dra Draf s ts fts afts BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +are are a ar are are e re are are BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +draft draft d dr dra draf t ft aft raft BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +documents documents d do doc docu s ts nts ents BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +valid valid v va val vali d id lid alid BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +for for f fo for for r or for for BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +a a a a a a a a a a BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 1 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +maximum maximum m ma max maxi m um mum imum BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +of of o of of of f of of of BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +six six s si six six x ix six six BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +months months m mo mon mont s hs ths nths BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +and and a an and and d nd and and BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +may may m ma may may y ay may may BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 1 1 0 0 0 1 0 0 0 NOPUNCT 0 0 +be be b be be be e be be be BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +updated updated u up upd upda d ed ted ated BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +, , , , , , , , , , BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 COMMA 0 0 +replaced replaced r re rep repl d ed ced aced BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +, , , , , , , , , , BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 COMMA 0 0 +or or o or or or r or or or BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +obsoleted obsoleted o ob obs obso d ed ted eted BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +by by b by by by y by by by BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +other other o ot oth othe r er her ther BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +documents documents d do doc docu s ts nts ents BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +at at a at at at t at at at BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +any any a an any any y ny any any BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +time time t ti tim time e me ime time BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +It it I It It It t It It It BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +is is i is is is s is is is BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +inappropriate inappropriate i in ina inap e te ate iate BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +to to t to to to o to to to BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +use use u us use use e se use use BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Internet internet I In Int Inte t et net rnet BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +- - - - - - - - - - BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 1 HYPHEN 0 0 +Drafts drafts D Dr Dra Draf s ts fts afts BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +as as a as as as s as as as BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +reference reference r re ref refe e ce nce ence BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +material material m ma mat mate l al ial rial BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +or or o or or or r or or or BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +to to t to to to o to to to BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +cite cite c ci cit cite e te ite cite BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +them them t th the them m em hem them BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +other other o ot oth othe r er her ther BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +than than t th tha than n an han than BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +as as a as as as s as as as BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +" " " " " " " " " " BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 QUOTE 0 0 +work work w wo wor work k rk ork work BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +in in i in in in n in in in BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +progress progress p pr pro prog s ss ess ress BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +" " " " " " " " " " BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 QUOTE 0 0 +D d D D D D D D D D BLOCKSTART LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +Oran oran O Or Ora Oran n an ran Oran BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 1 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Expires expires E Ex Exp Expi s es res ires BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +February february F Fe Feb Febr y ry ary uary BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 1 0 0 0 NOPUNCT 0 0 +11 11 1 11 11 11 1 11 11 11 BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS ALLDIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +, , , , , , , , , , BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 COMMA 0 0 +2020 2020 2 20 202 2020 0 20 020 2020 BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS ALLDIGIT 0 0 0 0 0 1 0 0 0 0 NOPUNCT 0 0 +[ [ [ [ [ [ [ [ [ [ BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 OPENBRACKET 0 0 +Page page P Pa Pag Page e ge age Page BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +1 1 1 1 1 1 1 1 1 1 BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +] ] ] ] ] ] ] ] ] ] BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 ENDBRACKET 0 0 +Internet internet I In Int Inte t et net rnet BLOCKSTART LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +- - - - - - - - - - BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 1 HYPHEN 0 0 +Draft draft D Dr Dra Draf t ft aft raft BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Maintaining maintaining M Ma Mai Main g ng ing ning BLOCKSTART LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Flow flow F Fl Flo Flow w ow low Flow BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Balance balance B Ba Bal Bala e ce nce ance BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +August august A Au Aug Augu t st ust gust BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 1 1 0 0 0 1 0 0 0 NOPUNCT 0 0 +2019 2019 2 20 201 2019 9 19 019 2019 BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS ALLDIGIT 0 0 0 0 0 1 0 0 0 0 NOPUNCT 0 0 +This this T Th Thi This s is his This BLOCKSTART LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Internet internet I In Int Inte t et net rnet BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +- - - - - - - - - - BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 1 HYPHEN 0 0 +Draft draft D Dr Dra Draf t ft aft raft BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +will will w wi wil will l ll ill will BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +expire expire e ex exp expi e re ire pire BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +on on o on on on n on on on BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +February february F Fe Feb Febr y ry ary uary BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 1 0 0 0 NOPUNCT 0 0 +11 11 1 11 11 11 1 11 11 11 BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS ALLDIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +, , , , , , , , , , BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 COMMA 0 0 +2020 2020 2 20 202 2020 0 20 020 2020 BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS ALLDIGIT 0 0 0 0 0 1 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +Copyright copyright C Co Cop Copy t ht ght ight BLOCKSTART LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Notice notice N No Not Noti e ce ice tice BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Copyright copyright C Co Cop Copy t ht ght ight BLOCKSTART LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +( ( ( ( ( ( ( ( ( ( BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 OPENBRACKET 0 0 +c c c c c c c c c c BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +) ) ) ) ) ) ) ) ) ) BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 ENDBRACKET 0 0 +2019 2019 2 20 201 2019 9 19 019 2019 BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS ALLDIGIT 0 0 0 0 0 1 0 0 0 0 NOPUNCT 0 0 +IETF ietf I IE IET IETF F TF ETF IETF BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Trust trust T Tr Tru Trus t st ust rust BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +and and a an and and d nd and and BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +the the t th the the e he the the BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +persons persons p pe per pers s ns ons sons BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +identified identified i id ide iden d ed ied fied BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +as as a as as as s as as as BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +the the t th the the e he the the BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +document document d do doc docu t nt ent ment BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +authors authors a au aut auth s rs ors hors BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +All all A Al All All l ll All All BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +rights rights r ri rig righ s ts hts ghts BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +reserved reserved r re res rese d ed ved rved BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +This this T Th Thi This s is his This BLOCKSTART LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +document document d do doc docu t nt ent ment BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +is is i is is is s is is is BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +subject subject s su sub subj t ct ect ject BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +to to t to to to o to to to BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +BCP bcp B BC BCP BCP P CP BCP BCP BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +78 78 7 78 78 78 8 78 78 78 BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS ALLDIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +and and a an and and d nd and and BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +the the t th the the e he the the BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +IETF ietf I IE IET IETF F TF ETF IETF BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Trust trust T Tr Tru Trus t st ust rust BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +' ' ' ' ' ' ' ' ' ' BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 QUOTE 0 0 +s s s s s s s s s s BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Legal legal L Le Leg Lega l al gal egal BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Provisions provisions P Pr Pro Prov s ns ons ions BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Relating relating R Re Rel Rela g ng ing ting BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +to to t to to to o to to to BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +IETF ietf I IE IET IETF F TF ETF IETF BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Documents documents D Do Doc Docu s ts nts ents BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +( ( ( ( ( ( ( ( ( ( BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 OPENBRACKET 0 0 +https https h ht htt http s ps tps ttps BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 0 NOPUNCT 0 0 +: : : : : : : : : : BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 PUNCT 0 0 +/ / / / / / / / / / BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +/ / / / / / / / / / BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +trustee trustee t tr tru trus e ee tee stee BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +ietf ietf i ie iet ietf f tf etf ietf BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +org org o or org org g rg org org BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +/ / / / / / / / / / BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +license license l li lic lice e se nse ense BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +- - - - - - - - - - BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 1 HYPHEN 0 0 +info info i in inf info o fo nfo info BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 1 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +) ) ) ) ) ) ) ) ) ) BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 ENDBRACKET 0 0 +in in i in in in n in in in BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +effect effect e ef eff effe t ct ect fect BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +on on o on on on n on on on BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +the the t th the the e he the the BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +date date d da dat date e te ate date BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +of of o of of of f of of of BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +publication publication p pu pub publ n on ion tion BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +of of o of of of f of of of BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +this this t th thi this s is his this BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +document document d do doc docu t nt ent ment BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +Please please P Pl Ple Plea e se ase ease BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +review review r re rev revi w ew iew view BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +these these t th the thes e se ese hese BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +documents documents d do doc docu s ts nts ents BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +carefully carefully c ca car care y ly lly ully BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +, , , , , , , , , , BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 COMMA 0 0 +as as a as as as s as as as BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +they they t th the they y ey hey they BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +describe describe d de des desc e be ibe ribe BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +your your y yo you your r ur our your BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +rights rights r ri rig righ s ts hts ghts BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +and and a an and and d nd and and BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +restrictions restrictions r re res rest s ns ons ions BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +with with w wi wit with h th ith with BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +respect respect r re res resp t ct ect pect BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +to to t to to to o to to to BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +this this t th thi this s is his this BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +document document d do doc docu t nt ent ment BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +Code code C Co Cod Code e de ode Code BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Components components C Co Com Comp s ts nts ents BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +extracted extracted e ex ext extr d ed ted cted BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +from from f fr fro from m om rom from BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +this this t th thi this s is his this BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +document document d do doc docu t nt ent ment BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +must must m mu mus must t st ust must BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +include include i in inc incl e de ude lude BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Simplified simplified S Si Sim Simp d ed ied fied BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +BSD bsd B BS BSD BSD D SD BSD BSD BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +License license L Li Lic Lice e se nse ense BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +text text t te tex text t xt ext text BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +as as a as as as s as as as BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +described described d de des desc d ed bed ibed BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +in in i in in in n in in in BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Section section S Se Sec Sect n on ion tion BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +4 4 4 4 4 4 4 4 4 4 BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +e e e e e e e e e e BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +of of o of of of f of of of BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +the the t th the the e he the the BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Trust trust T Tr Tru Trus t st ust rust BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Legal legal L Le Leg Lega l al gal egal BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Provisions provisions P Pr Pro Prov s ns ons ions BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +and and a an and and d nd and and BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +are are a ar are are e re are are BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +provided provided p pr pro prov d ed ded ided BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +without without w wi wit with t ut out hout BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +warranty warranty w wa war warr y ty nty anty BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +as as a as as as s as as as BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +described described d de des desc d ed bed ibed BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +in in i in in in n in in in BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +the the t th the the e he the the BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Simplified simplified S Si Sim Simp d ed ied fied BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +BSD bsd B BS BSD BSD D SD BSD BSD BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +License license L Li Lic Lice e se nse ense BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +Dave dave D Da Dav Dave e ve ave Dave BLOCKSTART LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 1 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Oran oran O Or Ora Oran n an ran Oran BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 1 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Network network N Ne Net Netw k rk ork work BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Systems systems S Sy Sys Syst s ms ems tems BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Research research R Re Res Rese h ch rch arch BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +and and a an and and d nd and and BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Design design D De Des Desi n gn ign sign BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +4 4 4 4 4 4 4 4 4 4 BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Shady shady S Sh Sha Shad y dy ady hady BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Hill hill H Hi Hil Hill l ll ill Hill BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Square square S Sq Squ Squa e re are uare BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Cambridge cambridge C Ca Cam Camb e ge dge idge BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +, , , , , , , , , , BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 COMMA 0 0 +MA ma M MA MA MA A MA MA MA BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 0 1 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +02138 02138 0 02 021 0213 8 38 138 2138 BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS ALLDIGIT 0 0 0 0 0 1 0 0 0 0 NOPUNCT 0 0 +USA usa U US USA USA A SA USA USA BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Email email E Em Ema Emai l il ail mail BLOCKSTART LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +: : : : : : : : : : BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 PUNCT 0 0 +daveoran@orandom daveoran@orandom d da dav dave m om dom ndom BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +net net n ne net net t et net net BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 + diff --git a/grobid-trainer/resources/dataset/header/sdo/ietf/corpus/raw/XP015134703.training.header b/grobid-trainer/resources/dataset/header/sdo/ietf/corpus/raw/XP015134703.training.header new file mode 100644 index 0000000000..89efa4535e --- /dev/null +++ b/grobid-trainer/resources/dataset/header/sdo/ietf/corpus/raw/XP015134703.training.header @@ -0,0 +1,390 @@ +TLS tls T TL TLS TLS S LS TLS TLS BLOCKSTART LINESTART NEWFONT HIGHERFONT 1 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Y y Y Y Y Y Y Y Y Y BLOCKSTART LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +Nir nir N Ni Nir Nir r ir Nir Nir BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Internet internet I In Int Inte t et net rnet BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +- - - - - - - - - - BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 1 HYPHEN 0 0 +Draft draft D Dr Dra Draf t ft aft raft BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +DellEMC dellemc D De Del Dell C MC EMC lEMC BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Intended intended I In Int Inte d ed ded nded BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +status status s st sta stat s us tus atus BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +: : : : : : : : : : BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 PUNCT 0 0 +Standards standards S St Sta Stan s ds rds ards BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Track track T Tr Tra Trac k ck ack rack BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +August august A Au Aug Augu t st ust gust BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 1 1 0 0 0 1 0 0 0 NOPUNCT 0 0 +12 12 1 12 12 12 2 12 12 12 BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS ALLDIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +, , , , , , , , , , BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 COMMA 0 0 +2019 2019 2 20 201 2019 9 19 019 2019 BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS ALLDIGIT 0 0 0 0 0 1 0 0 0 0 NOPUNCT 0 0 +Expires expires E Ex Exp Expi s es res ires BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +: : : : : : : : : : BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 PUNCT 0 0 +February february F Fe Feb Febr y ry ary uary BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 1 0 0 0 NOPUNCT 0 0 +13 13 1 13 13 13 3 13 13 13 BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS ALLDIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +, , , , , , , , , , BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 COMMA 0 0 +2020 2020 2 20 202 2020 0 20 020 2020 BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS ALLDIGIT 0 0 0 0 0 1 0 0 0 0 NOPUNCT 0 0 +A a A A A A A A A A BLOCKSTART LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Flags flags F Fl Fla Flag s gs ags lags BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Extension extension E Ex Ext Exte n on ion sion BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +for for f fo for for r or for for BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +TLS tls T TL TLS TLS S LS TLS TLS BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +1 1 1 1 1 1 1 1 1 1 BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +3 3 3 3 3 3 3 3 3 3 BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +draft draft d dr dra draf t ft aft raft BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +- - - - - - - - - - BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 1 HYPHEN 0 0 +ietf ietf i ie iet ietf f tf etf ietf BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +- - - - - - - - - - BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 1 HYPHEN 0 0 +tls tls t tl tls tls s ls tls tls BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +- - - - - - - - - - BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 1 HYPHEN 0 0 +tlsflags tlsflags t tl tls tlsf s gs ags lags BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +- - - - - - - - - - BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 1 HYPHEN 0 0 +00 00 0 00 00 00 0 00 00 00 BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS ALLDIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Abstract abstract A Ab Abs Abst t ct act ract BLOCKSTART LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +A a A A A A A A A A BLOCKSTART LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +number number n nu num numb r er ber mber BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +of of o of of of f of of of BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +extensions extensions e ex ext exte s ns ons ions BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +are are a ar are are e re are are BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +proposed proposed p pr pro prop d ed sed osed BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +in in i in in in n in in in BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +the the t th the the e he the the BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +TLS tls T TL TLS TLS S LS TLS TLS BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +working working w wo wor work g ng ing king BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +group group g gr gro grou p up oup roup BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +that that t th tha that t at hat that BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +carry carry c ca car carr y ry rry arry BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +no no n no no no o no no no BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +interesting interesting i in int inte g ng ing ting BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +information information i in inf info n on ion tion BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +except except e ex exc exce t pt ept cept BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +the the t th the the e he the the BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +1 1 1 1 1 1 1 1 1 1 BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +- - - - - - - - - - BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 1 HYPHEN 0 0 +bit bit b bi bit bit t it bit bit BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +indication indication i in ind indi n on ion tion BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +that that t th tha that t at hat that BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +a a a a a a a a a a BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 1 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +certain certain c ce cer cert n in ain tain BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +optional optional o op opt opti l al nal onal BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +feature feature f fe fea feat e re ure ture BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +is is i is is is s is is is BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +supported supported s su sup supp d ed ted rted BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +Such such S Su Suc Such h ch uch Such BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +extensions extensions e ex ext exte s ns ons ions BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +take take t ta tak take e ke ake take BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +4 4 4 4 4 4 4 4 4 4 BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +octets octets o oc oct octe s ts ets tets BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +each each e ea eac each h ch ach each BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +This this T Th Thi This s is his This BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +document document d do doc docu t nt ent ment BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +defines defines d de def defi s es nes ines BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +a a a a a a a a a a BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 1 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +flags flags f fl fla flag s gs ags lags BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +extension extension e ex ext exte n on ion sion BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +that that t th tha that t at hat that BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +can can c ca can can n an can can BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +provide provide p pr pro prov e de ide vide BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +such such s su suc such h ch uch such BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +indications indications i in ind indi s ns ons ions BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +at at a at at at t at at at BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +an an a an an an n an an an BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +average average a av ave aver e ge age rage BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +marginal marginal m ma mar marg l al nal inal BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +cost cost c co cos cost t st ost cost BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +of of o of of of f of of of BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +1 1 1 1 1 1 1 1 1 1 BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +bit bit b bi bit bit t it bit bit BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +each each e ea eac each h ch ach each BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +More more M Mo Mor More e re ore More BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +precisely precisely p pr pre prec y ly ely sely BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +, , , , , , , , , , BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 COMMA 0 0 +it it i it it it t it it it BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +provides provides p pr pro prov s es des ides BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +as as a as as as s as as as BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +many many m ma man many y ny any many BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +flag flag f fl fla flag g ag lag flag BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +extensions extensions e ex ext exte s ns ons ions BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +as as a as as as s as as as BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +needed needed n ne nee need d ed ded eded BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +at at a at at at t at at at BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +4 4 4 4 4 4 4 4 4 4 BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 ++ + + + + + + + + + BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +the the t th the the e he the the BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +order order o or ord orde r er der rder BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +of of o of of of f of of of BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +the the t th the the e he the the BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +last last l la las last t st ast last BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +set set s se set set t et set set BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +bit bit b bi bit bit t it bit bit BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +divided divided d di div divi d ed ded ided BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +by by b by by by y by by by BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +8 8 8 8 8 8 8 8 8 8 BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +Status status S St Sta Stat s us tus atus BLOCKSTART LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +of of o of of of f of of of BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +This this T Th Thi This s is his This BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Memo memo M Me Mem Memo o mo emo Memo BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +This this T Th Thi This s is his This BLOCKSTART LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Internet internet I In Int Inte t et net rnet BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +- - - - - - - - - - BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 1 HYPHEN 0 0 +Draft draft D Dr Dra Draf t ft aft raft BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +is is i is is is s is is is BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +submitted submitted s su sub subm d ed ted tted BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +in in i in in in n in in in BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +full full f fu ful full l ll ull full BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +conformance conformance c co con conf e ce nce ance BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +with with w wi wit with h th ith with BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +the the t th the the e he the the BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +provisions provisions p pr pro prov s ns ons ions BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +of of o of of of f of of of BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +BCP bcp B BC BCP BCP P CP BCP BCP BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +78 78 7 78 78 78 8 78 78 78 BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS ALLDIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +and and a an and and d nd and and BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +BCP bcp B BC BCP BCP P CP BCP BCP BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +79 79 7 79 79 79 9 79 79 79 BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS ALLDIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +Internet internet I In Int Inte t et net rnet BLOCKSTART LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +- - - - - - - - - - BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 1 HYPHEN 0 0 +Drafts drafts D Dr Dra Draf s ts fts afts BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +are are a ar are are e re are are BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +working working w wo wor work g ng ing king BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +documents documents d do doc docu s ts nts ents BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +of of o of of of f of of of BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +the the t th the the e he the the BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Internet internet I In Int Inte t et net rnet BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Engineering engineering E En Eng Engi g ng ing ring BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Task task T Ta Tas Task k sk ask Task BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Force force F Fo For Forc e ce rce orce BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +( ( ( ( ( ( ( ( ( ( BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 OPENBRACKET 0 0 +IETF ietf I IE IET IETF F TF ETF IETF BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +) ) ) ) ) ) ) ) ) ) BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 ENDBRACKET 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +Note note N No Not Note e te ote Note BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +that that t th tha that t at hat that BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +other other o ot oth othe r er her ther BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +groups groups g gr gro grou s ps ups oups BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +may may m ma may may y ay may may BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 1 1 0 0 0 1 0 0 0 NOPUNCT 0 0 +also also a al als also o so lso also BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +distribute distribute d di dis dist e te ute bute BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +working working w wo wor work g ng ing king BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +documents documents d do doc docu s ts nts ents BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +as as a as as as s as as as BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Internet internet I In Int Inte t et net rnet BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +- - - - - - - - - - BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 1 HYPHEN 0 0 +Drafts drafts D Dr Dra Draf s ts fts afts BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +The the T Th The The e he The The BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +list list l li lis list t st ist list BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +of of o of of of f of of of BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +current current c cu cur curr t nt ent rent BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Internet internet I In Int Inte t et net rnet BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +- - - - - - - - - - BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 1 HYPHEN 0 0 +Drafts drafts D Dr Dra Draf s ts fts afts BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +is is i is is is s is is is BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +at at a at at at t at at at BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +https https h ht htt http s ps tps ttps BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 0 NOPUNCT 0 0 +: : : : : : : : : : BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 PUNCT 0 0 +/ / / / / / / / / / BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +/ / / / / / / / / / BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +datatracker datatracker d da dat data r er ker cker BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +ietf ietf i ie iet ietf f tf etf ietf BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +org org o or org org g rg org org BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +/ / / / / / / / / / BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +drafts drafts d dr dra draf s ts fts afts BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +/ / / / / / / / / / BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +current current c cu cur curr t nt ent rent BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +/ / / / / / / / / / BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +Internet internet I In Int Inte t et net rnet BLOCKSTART LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +- - - - - - - - - - BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 1 HYPHEN 0 0 +Drafts drafts D Dr Dra Draf s ts fts afts BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +are are a ar are are e re are are BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +draft draft d dr dra draf t ft aft raft BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +documents documents d do doc docu s ts nts ents BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +valid valid v va val vali d id lid alid BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +for for f fo for for r or for for BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +a a a a a a a a a a BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 1 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +maximum maximum m ma max maxi m um mum imum BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +of of o of of of f of of of BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +six six s si six six x ix six six BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +months months m mo mon mont s hs ths nths BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +and and a an and and d nd and and BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +may may m ma may may y ay may may BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 1 1 0 0 0 1 0 0 0 NOPUNCT 0 0 +be be b be be be e be be be BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +updated updated u up upd upda d ed ted ated BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +, , , , , , , , , , BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 COMMA 0 0 +replaced replaced r re rep repl d ed ced aced BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +, , , , , , , , , , BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 COMMA 0 0 +or or o or or or r or or or BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +obsoleted obsoleted o ob obs obso d ed ted eted BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +by by b by by by y by by by BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +other other o ot oth othe r er her ther BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +documents documents d do doc docu s ts nts ents BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +at at a at at at t at at at BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +any any a an any any y ny any any BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +time time t ti tim time e me ime time BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +It it I It It It t It It It BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +is is i is is is s is is is BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +inappropriate inappropriate i in ina inap e te ate iate BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +to to t to to to o to to to BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +use use u us use use e se use use BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Internet internet I In Int Inte t et net rnet BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +- - - - - - - - - - BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 1 HYPHEN 0 0 +Drafts drafts D Dr Dra Draf s ts fts afts BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +as as a as as as s as as as BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +reference reference r re ref refe e ce nce ence BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +material material m ma mat mate l al ial rial BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +or or o or or or r or or or BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +to to t to to to o to to to BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +cite cite c ci cit cite e te ite cite BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +them them t th the them m em hem them BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +other other o ot oth othe r er her ther BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +than than t th tha than n an han than BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +as as a as as as s as as as BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +" " " " " " " " " " BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 QUOTE 0 0 +work work w wo wor work k rk ork work BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +in in i in in in n in in in BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +progress progress p pr pro prog s ss ess ress BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +" " " " " " " " " " BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 QUOTE 0 0 +This this T Th Thi This s is his This BLOCKSTART LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Internet internet I In Int Inte t et net rnet BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +- - - - - - - - - - BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 1 HYPHEN 0 0 +Draft draft D Dr Dra Draf t ft aft raft BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +will will w wi wil will l ll ill will BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +expire expire e ex exp expi e re ire pire BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +on on o on on on n on on on BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +February february F Fe Feb Febr y ry ary uary BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 1 0 0 0 NOPUNCT 0 0 +13 13 1 13 13 13 3 13 13 13 BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS ALLDIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +, , , , , , , , , , BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 COMMA 0 0 +2020 2020 2 20 202 2020 0 20 020 2020 BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS ALLDIGIT 0 0 0 0 0 1 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +Copyright copyright C Co Cop Copy t ht ght ight BLOCKSTART LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Notice notice N No Not Noti e ce ice tice BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Copyright copyright C Co Cop Copy t ht ght ight BLOCKSTART LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +( ( ( ( ( ( ( ( ( ( BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 OPENBRACKET 0 0 +c c c c c c c c c c BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +) ) ) ) ) ) ) ) ) ) BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 ENDBRACKET 0 0 +2019 2019 2 20 201 2019 9 19 019 2019 BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS ALLDIGIT 0 0 0 0 0 1 0 0 0 0 NOPUNCT 0 0 +IETF ietf I IE IET IETF F TF ETF IETF BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Trust trust T Tr Tru Trus t st ust rust BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +and and a an and and d nd and and BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +the the t th the the e he the the BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +persons persons p pe per pers s ns ons sons BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +identified identified i id ide iden d ed ied fied BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +as as a as as as s as as as BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +the the t th the the e he the the BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +document document d do doc docu t nt ent ment BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +authors authors a au aut auth s rs ors hors BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +All all A Al All All l ll All All BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +rights rights r ri rig righ s ts hts ghts BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +reserved reserved r re res rese d ed ved rved BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +This this T Th Thi This s is his This BLOCKSTART LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +document document d do doc docu t nt ent ment BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +is is i is is is s is is is BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +subject subject s su sub subj t ct ect ject BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +to to t to to to o to to to BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +BCP bcp B BC BCP BCP P CP BCP BCP BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +78 78 7 78 78 78 8 78 78 78 BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS ALLDIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +and and a an and and d nd and and BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +the the t th the the e he the the BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +IETF ietf I IE IET IETF F TF ETF IETF BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Trust trust T Tr Tru Trus t st ust rust BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +' ' ' ' ' ' ' ' ' ' BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 QUOTE 0 0 +s s s s s s s s s s BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Legal legal L Le Leg Lega l al gal egal BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Provisions provisions P Pr Pro Prov s ns ons ions BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Relating relating R Re Rel Rela g ng ing ting BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +to to t to to to o to to to BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +IETF ietf I IE IET IETF F TF ETF IETF BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Documents documents D Do Doc Docu s ts nts ents BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +( ( ( ( ( ( ( ( ( ( BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 OPENBRACKET 0 0 +https https h ht htt http s ps tps ttps BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 0 NOPUNCT 0 0 +: : : : : : : : : : BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 PUNCT 0 0 +/ / / / / / / / / / BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +/ / / / / / / / / / BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +trustee trustee t tr tru trus e ee tee stee BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +ietf ietf i ie iet ietf f tf etf ietf BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +org org o or org org g rg org org BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +/ / / / / / / / / / BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +license license l li lic lice e se nse ense BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +- - - - - - - - - - BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 1 HYPHEN 0 0 +info info i in inf info o fo nfo info BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 1 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +) ) ) ) ) ) ) ) ) ) BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 ENDBRACKET 0 0 +in in i in in in n in in in BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +effect effect e ef eff effe t ct ect fect BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +on on o on on on n on on on BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +the the t th the the e he the the BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +date date d da dat date e te ate date BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +of of o of of of f of of of BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +publication publication p pu pub publ n on ion tion BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +of of o of of of f of of of BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +this this t th thi this s is his this BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +document document d do doc docu t nt ent ment BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +Please please P Pl Ple Plea e se ase ease BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +review review r re rev revi w ew iew view BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +these these t th the thes e se ese hese BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +documents documents d do doc docu s ts nts ents BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +carefully carefully c ca car care y ly lly ully BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +, , , , , , , , , , BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 COMMA 0 0 +as as a as as as s as as as BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +they they t th the they y ey hey they BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +describe describe d de des desc e be ibe ribe BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +your your y yo you your r ur our your BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +rights rights r ri rig righ s ts hts ghts BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +and and a an and and d nd and and BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +restrictions restrictions r re res rest s ns ons ions BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +with with w wi wit with h th ith with BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +respect respect r re res resp t ct ect pect BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +to to t to to to o to to to BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +this this t th thi this s is his this BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +document document d do doc docu t nt ent ment BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +Code code C Co Cod Code e de ode Code BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Components components C Co Com Comp s ts nts ents BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +extracted extracted e ex ext extr d ed ted cted BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +from from f fr fro from m om rom from BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +this this t th thi this s is his this BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +document document d do doc docu t nt ent ment BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +must must m mu mus must t st ust must BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +include include i in inc incl e de ude lude BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Simplified simplified S Si Sim Simp d ed ied fied BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +BSD bsd B BS BSD BSD D SD BSD BSD BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +License license L Li Lic Lice e se nse ense BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +text text t te tex text t xt ext text BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +as as a as as as s as as as BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +described described d de des desc d ed bed ibed BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +in in i in in in n in in in BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Section section S Se Sec Sect n on ion tion BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +4 4 4 4 4 4 4 4 4 4 BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +e e e e e e e e e e BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +of of o of of of f of of of BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Yoav yoav Y Yo Yoa Yoav v av oav Yoav BLOCKSTART LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Nir nir N Ni Nir Nir r ir Nir Nir BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +DellEMC dellemc D De Del Dell C MC EMC lEMC BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +9 9 9 9 9 9 9 9 9 9 BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Andrei andrei A An And Andr i ei rei drei BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 1 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Sakharov sakharov S Sa Sak Sakh v ov rov arov BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +St st S St St St t St St St BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 1 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Haifa haifa H Ha Hai Haif a fa ifa aifa BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +3190500 3190500 3 31 319 3190 0 00 500 0500 BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS ALLDIGIT 0 0 0 0 0 1 0 0 0 0 NOPUNCT 0 0 +Israel israel I Is Isr Isra l el ael rael BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 1 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Email email E Em Ema Emai l il ail mail BLOCKSTART LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +: : : : : : : : : : BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 PUNCT 0 0 +ynir ynir y yn yni ynir r ir nir ynir BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +ietf@gmail ietf@gmail i ie iet ietf l il ail mail BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +com com c co com com m om com com BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 + diff --git a/grobid-trainer/resources/dataset/header/sdo/ietf/corpus/raw/XP015134819.training.header b/grobid-trainer/resources/dataset/header/sdo/ietf/corpus/raw/XP015134819.training.header new file mode 100644 index 0000000000..34aec08a3e --- /dev/null +++ b/grobid-trainer/resources/dataset/header/sdo/ietf/corpus/raw/XP015134819.training.header @@ -0,0 +1,407 @@ +DOTS dots D DO DOT DOTS S TS OTS DOTS BLOCKSTART LINESTART NEWFONT HIGHERFONT 1 0 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +M m M M M M M M M M BLOCKSTART LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +Chen chen C Ch Che Chen n en hen Chen BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 1 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Internet internet I In Int Inte t et net rnet BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +- - - - - - - - - - BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 1 HYPHEN 0 0 +Draft draft D Dr Dra Draf t ft aft raft BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Li li L Li Li Li i Li Li Li BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 1 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +Su su S Su Su Su u Su Su Su BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 1 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Intended intended I In Int Inte d ed ded nded BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +status status s st sta stat s us tus atus BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +: : : : : : : : : : BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 PUNCT 0 0 +Standards standards S St Sta Stan s ds rds ards BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Track track T Tr Tra Trac k ck ack rack BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Jin jin J Ji Jin Jin n in Jin Jin BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 1 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +Peng peng P Pe Pen Peng g ng eng Peng BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 1 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Expires expires E Ex Exp Expi s es res ires BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +: : : : : : : : : : BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 PUNCT 0 0 +February february F Fe Feb Febr y ry ary uary BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 1 0 0 0 NOPUNCT 0 0 +23 23 2 23 23 23 3 23 23 23 BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS ALLDIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +, , , , , , , , , , BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 COMMA 0 0 +2020 2020 2 20 202 2020 0 20 020 2020 BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS ALLDIGIT 0 0 0 0 0 1 0 0 0 0 NOPUNCT 0 0 +CMCC cmcc C CM CMC CMCC C CC MCC CMCC BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +August august A Au Aug Augu t st ust gust BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 1 1 0 0 0 1 0 0 0 NOPUNCT 0 0 +22 22 2 22 22 22 2 22 22 22 BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS ALLDIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +, , , , , , , , , , BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 COMMA 0 0 +2019 2019 2 20 201 2019 9 19 019 2019 BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS ALLDIGIT 0 0 0 0 0 1 0 0 0 0 NOPUNCT 0 0 +DOTS dots D DO DOT DOTS S TS OTS DOTS BLOCKSTART LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +client client c cl cli clie t nt ent ient BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +carry carry c ca car carr y ry rry arry BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +ddos ddos d dd ddo ddos s os dos ddos BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +attack attack a at att atta k ck ack tack BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +informations informations i in inf info s ns ons ions BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +in in i in in in n in in in BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +signal signal s si sig sign l al nal gnal BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +channel channel c ch cha chan l el nel nnel BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +draft draft d dr dra draf t ft aft raft BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +- - - - - - - - - - BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 1 HYPHEN 0 0 +chen chen c ch che chen n en hen chen BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 1 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +- - - - - - - - - - BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 1 HYPHEN 0 0 +dots dots d do dot dots s ts ots dots BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +- - - - - - - - - - BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 1 HYPHEN 0 0 +attack attack a at att atta k ck ack tack BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +- - - - - - - - - - BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 1 HYPHEN 0 0 +informations informations i in inf info s ns ons ions BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +- - - - - - - - - - BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 1 HYPHEN 0 0 +03 03 0 03 03 03 3 03 03 03 BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS ALLDIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Abstract abstract A Ab Abs Abst t ct act ract BLOCKSTART LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +This this T Th Thi This s is his This BLOCKSTART LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +document document d do doc docu t nt ent ment BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +describes describes d de des desc s es bes ibes BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +DDoS ddos D DD DDo DDoS S oS DoS DDoS BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +attack attack a at att atta k ck ack tack BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +information information i in inf info n on ion tion BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +which which w wh whi whic h ch ich hich BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +can can c ca can can n an can can BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +be be b be be be e be be be BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +obtained obtained o ob obt obta d ed ned ined BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +by by b by by by y by by by BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +DOTS dots D DO DOT DOTS S TS OTS DOTS BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +client client c cl cli clie t nt ent ient BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +when when w wh whe when n en hen when BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +the the t th the the e he the the BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +enterprise enterprise e en ent ente e se ise rise BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +suspects suspects s su sus susp s ts cts ects BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +it it i it it it t it it it BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +is is i is is is s is is is BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +under under u un und unde r er der nder BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +DDoS ddos D DD DDo DDoS S oS DoS DDoS BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +attack attack a at att atta k ck ack tack BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +, , , , , , , , , , BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 COMMA 0 0 +these these t th the thes e se ese hese BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +informations informations i in inf info s ns ons ions BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +will will w wi wil will l ll ill will BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +be be b be be be e be be be BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +send send s se sen send d nd end send BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +from from f fr fro from m om rom from BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +DOTS dots D DO DOT DOTS S TS OTS DOTS BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +client client c cl cli clie t nt ent ient BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +to to t to to to o to to to BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +DOTS dots D DO DOT DOTS S TS OTS DOTS BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +server server s se ser serv r er ver rver BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +in in i in in in n in in in BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +mitigation mitigation m mi mit miti n on ion tion BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +request request r re req requ t st est uest BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +using using u us usi usin g ng ing sing BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Signal signal S Si Sig Sign l al nal gnal BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +channel channel c ch cha chan l el nel nnel BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +or or o or or or r or or or BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Data data D Da Dat Data a ta ata Data BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +channel channel c ch cha chan l el nel nnel BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +Status status S St Sta Stat s us tus atus BLOCKSTART LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +of of o of of of f of of of BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +This this T Th Thi This s is his This BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Memo memo M Me Mem Memo o mo emo Memo BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +This this T Th Thi This s is his This BLOCKSTART LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Internet internet I In Int Inte t et net rnet BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +- - - - - - - - - - BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 1 HYPHEN 0 0 +Draft draft D Dr Dra Draf t ft aft raft BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +is is i is is is s is is is BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +submitted submitted s su sub subm d ed ted tted BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +in in i in in in n in in in BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +full full f fu ful full l ll ull full BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +conformance conformance c co con conf e ce nce ance BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +with with w wi wit with h th ith with BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +the the t th the the e he the the BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +provisions provisions p pr pro prov s ns ons ions BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +of of o of of of f of of of BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +BCP bcp B BC BCP BCP P CP BCP BCP BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +78 78 7 78 78 78 8 78 78 78 BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS ALLDIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +and and a an and and d nd and and BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +BCP bcp B BC BCP BCP P CP BCP BCP BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +79 79 7 79 79 79 9 79 79 79 BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS ALLDIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +Internet internet I In Int Inte t et net rnet BLOCKSTART LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +- - - - - - - - - - BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 1 HYPHEN 0 0 +Drafts drafts D Dr Dra Draf s ts fts afts BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +are are a ar are are e re are are BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +working working w wo wor work g ng ing king BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +documents documents d do doc docu s ts nts ents BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +of of o of of of f of of of BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +the the t th the the e he the the BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Internet internet I In Int Inte t et net rnet BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Engineering engineering E En Eng Engi g ng ing ring BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Task task T Ta Tas Task k sk ask Task BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Force force F Fo For Forc e ce rce orce BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +( ( ( ( ( ( ( ( ( ( BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 OPENBRACKET 0 0 +IETF ietf I IE IET IETF F TF ETF IETF BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +) ) ) ) ) ) ) ) ) ) BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 ENDBRACKET 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +Note note N No Not Note e te ote Note BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +that that t th tha that t at hat that BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +other other o ot oth othe r er her ther BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +groups groups g gr gro grou s ps ups oups BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +may may m ma may may y ay may may BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 1 1 0 0 0 1 0 0 0 NOPUNCT 0 0 +also also a al als also o so lso also BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +distribute distribute d di dis dist e te ute bute BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +working working w wo wor work g ng ing king BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +documents documents d do doc docu s ts nts ents BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +as as a as as as s as as as BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Internet internet I In Int Inte t et net rnet BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +- - - - - - - - - - BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 1 HYPHEN 0 0 +Drafts drafts D Dr Dra Draf s ts fts afts BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +The the T Th The The e he The The BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +list list l li lis list t st ist list BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +of of o of of of f of of of BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +current current c cu cur curr t nt ent rent BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Internet internet I In Int Inte t et net rnet BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +- - - - - - - - - - BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 1 HYPHEN 0 0 +Drafts drafts D Dr Dra Draf s ts fts afts BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +is is i is is is s is is is BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +at at a at at at t at at at BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +https https h ht htt http s ps tps ttps BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 0 NOPUNCT 0 0 +: : : : : : : : : : BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 PUNCT 0 0 +/ / / / / / / / / / BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +/ / / / / / / / / / BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +datatracker datatracker d da dat data r er ker cker BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +ietf ietf i ie iet ietf f tf etf ietf BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +org org o or org org g rg org org BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +/ / / / / / / / / / BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +drafts drafts d dr dra draf s ts fts afts BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +/ / / / / / / / / / BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +current current c cu cur curr t nt ent rent BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +/ / / / / / / / / / BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +Internet internet I In Int Inte t et net rnet BLOCKSTART LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +- - - - - - - - - - BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 1 HYPHEN 0 0 +Drafts drafts D Dr Dra Draf s ts fts afts BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +are are a ar are are e re are are BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +draft draft d dr dra draf t ft aft raft BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +documents documents d do doc docu s ts nts ents BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +valid valid v va val vali d id lid alid BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +for for f fo for for r or for for BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +a a a a a a a a a a BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 1 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +maximum maximum m ma max maxi m um mum imum BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +of of o of of of f of of of BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +six six s si six six x ix six six BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +months months m mo mon mont s hs ths nths BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +and and a an and and d nd and and BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +may may m ma may may y ay may may BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 1 1 0 0 0 1 0 0 0 NOPUNCT 0 0 +be be b be be be e be be be BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +updated updated u up upd upda d ed ted ated BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +, , , , , , , , , , BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 COMMA 0 0 +replaced replaced r re rep repl d ed ced aced BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +, , , , , , , , , , BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 COMMA 0 0 +or or o or or or r or or or BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +obsoleted obsoleted o ob obs obso d ed ted eted BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +by by b by by by y by by by BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +other other o ot oth othe r er her ther BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +documents documents d do doc docu s ts nts ents BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +at at a at at at t at at at BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +any any a an any any y ny any any BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +time time t ti tim time e me ime time BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +It it I It It It t It It It BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +is is i is is is s is is is BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +inappropriate inappropriate i in ina inap e te ate iate BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +to to t to to to o to to to BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +use use u us use use e se use use BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Internet internet I In Int Inte t et net rnet BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +- - - - - - - - - - BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 1 HYPHEN 0 0 +Drafts drafts D Dr Dra Draf s ts fts afts BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +as as a as as as s as as as BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +reference reference r re ref refe e ce nce ence BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +material material m ma mat mate l al ial rial BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +or or o or or or r or or or BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +to to t to to to o to to to BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +cite cite c ci cit cite e te ite cite BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +them them t th the them m em hem them BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +other other o ot oth othe r er her ther BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +than than t th tha than n an han than BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +as as a as as as s as as as BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +" " " " " " " " " " BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 QUOTE 0 0 +work work w wo wor work k rk ork work BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +in in i in in in n in in in BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +progress progress p pr pro prog s ss ess ress BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +" " " " " " " " " " BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 QUOTE 0 0 +This this T Th Thi This s is his This BLOCKSTART LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Internet internet I In Int Inte t et net rnet BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +- - - - - - - - - - BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 1 HYPHEN 0 0 +Draft draft D Dr Dra Draf t ft aft raft BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +will will w wi wil will l ll ill will BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +expire expire e ex exp expi e re ire pire BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +on on o on on on n on on on BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +February february F Fe Feb Febr y ry ary uary BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 1 0 0 0 NOPUNCT 0 0 +23 23 2 23 23 23 3 23 23 23 BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS ALLDIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +, , , , , , , , , , BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 COMMA 0 0 +2020 2020 2 20 202 2020 0 20 020 2020 BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS ALLDIGIT 0 0 0 0 0 1 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +Copyright copyright C Co Cop Copy t ht ght ight BLOCKSTART LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Notice notice N No Not Noti e ce ice tice BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Copyright copyright C Co Cop Copy t ht ght ight BLOCKSTART LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +( ( ( ( ( ( ( ( ( ( BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 OPENBRACKET 0 0 +c c c c c c c c c c BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +) ) ) ) ) ) ) ) ) ) BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 ENDBRACKET 0 0 +2019 2019 2 20 201 2019 9 19 019 2019 BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS ALLDIGIT 0 0 0 0 0 1 0 0 0 0 NOPUNCT 0 0 +IETF ietf I IE IET IETF F TF ETF IETF BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Trust trust T Tr Tru Trus t st ust rust BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +and and a an and and d nd and and BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +the the t th the the e he the the BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +persons persons p pe per pers s ns ons sons BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +identified identified i id ide iden d ed ied fied BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +as as a as as as s as as as BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +the the t th the the e he the the BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +document document d do doc docu t nt ent ment BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +authors authors a au aut auth s rs ors hors BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +All all A Al All All l ll All All BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +rights rights r ri rig righ s ts hts ghts BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +reserved reserved r re res rese d ed ved rved BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +This this T Th Thi This s is his This BLOCKSTART LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +document document d do doc docu t nt ent ment BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +is is i is is is s is is is BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +subject subject s su sub subj t ct ect ject BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +to to t to to to o to to to BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +BCP bcp B BC BCP BCP P CP BCP BCP BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +78 78 7 78 78 78 8 78 78 78 BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS ALLDIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +and and a an and and d nd and and BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +the the t th the the e he the the BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +IETF ietf I IE IET IETF F TF ETF IETF BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Trust trust T Tr Tru Trus t st ust rust BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +' ' ' ' ' ' ' ' ' ' BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 QUOTE 0 0 +s s s s s s s s s s BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Legal legal L Le Leg Lega l al gal egal BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Provisions provisions P Pr Pro Prov s ns ons ions BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Relating relating R Re Rel Rela g ng ing ting BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +to to t to to to o to to to BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +IETF ietf I IE IET IETF F TF ETF IETF BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Documents documents D Do Doc Docu s ts nts ents BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +( ( ( ( ( ( ( ( ( ( BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 OPENBRACKET 0 0 +https https h ht htt http s ps tps ttps BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 0 NOPUNCT 0 0 +: : : : : : : : : : BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 PUNCT 0 0 +/ / / / / / / / / / BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +/ / / / / / / / / / BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +trustee trustee t tr tru trus e ee tee stee BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +ietf ietf i ie iet ietf f tf etf ietf BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +org org o or org org g rg org org BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +/ / / / / / / / / / BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +license license l li lic lice e se nse ense BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +- - - - - - - - - - BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 1 HYPHEN 0 0 +info info i in inf info o fo nfo info BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 1 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +) ) ) ) ) ) ) ) ) ) BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 ENDBRACKET 0 0 +in in i in in in n in in in BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +effect effect e ef eff effe t ct ect fect BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +on on o on on on n on on on BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +the the t th the the e he the the BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +date date d da dat date e te ate date BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +of of o of of of f of of of BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +publication publication p pu pub publ n on ion tion BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +of of o of of of f of of of BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +this this t th thi this s is his this BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +document document d do doc docu t nt ent ment BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +Please please P Pl Ple Plea e se ase ease BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +review review r re rev revi w ew iew view BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +these these t th the thes e se ese hese BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +documents documents d do doc docu s ts nts ents BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +carefully carefully c ca car care y ly lly ully BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +, , , , , , , , , , BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 COMMA 0 0 +as as a as as as s as as as BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +they they t th the they y ey hey they BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +describe describe d de des desc e be ibe ribe BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +your your y yo you your r ur our your BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +rights rights r ri rig righ s ts hts ghts BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +and and a an and and d nd and and BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +restrictions restrictions r re res rest s ns ons ions BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +with with w wi wit with h th ith with BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +respect respect r re res resp t ct ect pect BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +to to t to to to o to to to BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +this this t th thi this s is his this BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +document document d do doc docu t nt ent ment BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +Code code C Co Cod Code e de ode Code BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Components components C Co Com Comp s ts nts ents BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +extracted extracted e ex ext extr d ed ted cted BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +from from f fr fro from m om rom from BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +this this t th thi this s is his this BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +document document d do doc docu t nt ent ment BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +must must m mu mus must t st ust must BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +include include i in inc incl e de ude lude BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Simplified simplified S Si Sim Simp d ed ied fied BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +BSD bsd B BS BSD BSD D SD BSD BSD BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +License license L Li Lic Lice e se nse ense BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +text text t te tex text t xt ext text BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +as as a as as as s as as as BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +described described d de des desc d ed bed ibed BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +in in i in in in n in in in BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Section section S Se Sec Sect n on ion tion BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +4 4 4 4 4 4 4 4 4 4 BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +e e e e e e e e e e BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +of of o of of of f of of of BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +the the t th the the e he the the BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Trust trust T Tr Tru Trus t st ust rust BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Legal legal L Le Leg Lega l al gal egal BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Provisions provisions P Pr Pro Prov s ns ons ions BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +and and a an and and d nd and and BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +are are a ar are are e re are are BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +provided provided p pr pro prov d ed ded ided BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +without without w wi wit with t ut out hout BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +warranty warranty w wa war warr y ty nty anty BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +as as a as as as s as as as BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +described described d de des desc d ed bed ibed BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +in in i in in in n in in in BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +the the t th the the e he the the BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Simplified simplified S Si Sim Simp d ed ied fied BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +BSD bsd B BS BSD BSD D SD BSD BSD BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +License license L Li Lic Lice e se nse ense BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +Meiling meiling M Me Mei Meil g ng ing ling BLOCKSTART LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Chen chen C Ch Che Chen n en hen Chen BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 1 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +CMCC cmcc C CM CMC CMCC C CC MCC CMCC BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +32 32 3 32 32 32 2 32 32 32 BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS ALLDIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +, , , , , , , , , , BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 COMMA 0 0 +Xuanwumen xuanwumen X Xu Xua Xuan n en men umen BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +West west W We Wes West t st est West BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +BeiJing beijing B Be Bei BeiJ g ng ing Jing BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +, , , , , , , , , , BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 COMMA 0 0 +BeiJing beijing B Be Bei BeiJ g ng ing Jing BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +100053 100053 1 10 100 1000 3 53 053 0053 BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS ALLDIGIT 0 0 0 0 0 1 0 0 0 0 NOPUNCT 0 0 +China china C Ch Chi Chin a na ina hina BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Email email E Em Ema Emai l il ail mail BLOCKSTART LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +: : : : : : : : : : BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 PUNCT 0 0 +chenmeiling@chinamobile chenmeiling@chinamobile c ch che chen e le ile bile BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +com com c co com com m om com com BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Li li L Li Li Li i Li Li Li BLOCKSTART LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 1 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Su su S Su Su Su u Su Su Su BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 1 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +CMCC cmcc C CM CMC CMCC C CC MCC CMCC BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +32 32 3 32 32 32 2 32 32 32 BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS ALLDIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +, , , , , , , , , , BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 COMMA 0 0 +Xuanwumen xuanwumen X Xu Xua Xuan n en men umen BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +West west W We Wes West t st est West BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +BeiJing beijing B Be Bei BeiJ g ng ing Jing BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +100053 100053 1 10 100 1000 3 53 053 0053 BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS ALLDIGIT 0 0 0 0 0 1 0 0 0 0 NOPUNCT 0 0 +China china C Ch Chi Chin a na ina hina BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Email email E Em Ema Emai l il ail mail BLOCKSTART LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +: : : : : : : : : : BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 PUNCT 0 0 +suli@chinamobile suli@chinamobile s su sul suli e le ile bile BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +com com c co com com m om com com BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Jin jin J Ji Jin Jin n in Jin Jin BLOCKSTART LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 1 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Peng peng P Pe Pen Peng g ng eng Peng BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 1 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +CMCC cmcc C CM CMC CMCC C CC MCC CMCC BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +32 32 3 32 32 32 2 32 32 32 BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS ALLDIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +, , , , , , , , , , BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 COMMA 0 0 +Xuanwumen xuanwumen X Xu Xua Xuan n en men umen BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +West west W We Wes West t st est West BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +BeiJing beijing B Be Bei BeiJ g ng ing Jing BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +100053 100053 1 10 100 1000 3 53 053 0053 BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS ALLDIGIT 0 0 0 0 0 1 0 0 0 0 NOPUNCT 0 0 +China china C Ch Chi Chin a na ina hina BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Email email E Em Ema Emai l il ail mail BLOCKSTART LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +: : : : : : : : : : BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 PUNCT 0 0 +pengjin@chinamobile pengjin@chinamobile p pe pen peng e le ile bile BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +com com c co com com m om com com BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 + diff --git a/grobid-trainer/resources/dataset/header/sdo/ietf/corpus/raw/XP015134870.training.header b/grobid-trainer/resources/dataset/header/sdo/ietf/corpus/raw/XP015134870.training.header new file mode 100644 index 0000000000..56f63ef2b3 --- /dev/null +++ b/grobid-trainer/resources/dataset/header/sdo/ietf/corpus/raw/XP015134870.training.header @@ -0,0 +1,409 @@ +6TiSCH 6tisch 6 6T 6Ti 6TiS H CH SCH iSCH BLOCKSTART LINESTART NEWFONT HIGHERFONT 1 0 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +P p P P P P P P P P BLOCKSTART LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +Thubert thubert T Th Thu Thub t rt ert bert BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +, , , , , , , , , , BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 COMMA 0 0 +Ed ed E Ed Ed Ed d Ed Ed Ed BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 1 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +Internet internet I In Int Inte t et net rnet BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +- - - - - - - - - - BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 1 HYPHEN 0 0 +Draft draft D Dr Dra Draf t ft aft raft BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Cisco cisco C Ci Cis Cisc o co sco isco BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 1 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Systems systems S Sy Sys Syst s ms ems tems BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Intended intended I In Int Inte d ed ded nded BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +status status s st sta stat s us tus atus BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +: : : : : : : : : : BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 PUNCT 0 0 +Informational informational I In Inf Info l al nal onal BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +August august A Au Aug Augu t st ust gust BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 1 1 0 0 0 1 0 0 0 NOPUNCT 0 0 +27 27 2 27 27 27 7 27 27 27 BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS ALLDIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +, , , , , , , , , , BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 COMMA 0 0 +2019 2019 2 20 201 2019 9 19 019 2019 BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS ALLDIGIT 0 0 0 0 0 1 0 0 0 0 NOPUNCT 0 0 +Expires expires E Ex Exp Expi s es res ires BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +: : : : : : : : : : BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 PUNCT 0 0 +February february F Fe Feb Febr y ry ary uary BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 1 0 0 0 NOPUNCT 0 0 +28 28 2 28 28 28 8 28 28 28 BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS ALLDIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +, , , , , , , , , , BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 COMMA 0 0 +2020 2020 2 20 202 2020 0 20 020 2020 BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS ALLDIGIT 0 0 0 0 0 1 0 0 0 0 NOPUNCT 0 0 +An an A An An An n An An An BLOCKSTART LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Architecture architecture A Ar Arc Arch e re ure ture BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +for for f fo for for r or for for BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +IPv6 ipv6 I IP IPv IPv6 6 v6 Pv6 IPv6 BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +over over o ov ove over r er ver over BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +the the t th the the e he the the BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +TSCH tsch T TS TSC TSCH H CH SCH TSCH BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +mode mode m mo mod mode e de ode mode BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +of of o of of of f of of of BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +IEEE ieee I IE IEE IEEE E EE EEE IEEE BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +802 802 8 80 802 802 2 02 802 802 BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS ALLDIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +15 15 1 15 15 15 5 15 15 15 BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS ALLDIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +4 4 4 4 4 4 4 4 4 4 BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +draft draft d dr dra draf t ft aft raft BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +- - - - - - - - - - BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 1 HYPHEN 0 0 +ietf ietf i ie iet ietf f tf etf ietf BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +- - - - - - - - - - BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 1 HYPHEN 0 0 +6tisch 6tisch 6 6t 6ti 6tis h ch sch isch BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +- - - - - - - - - - BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 1 HYPHEN 0 0 +architecture architecture a ar arc arch e re ure ture BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +- - - - - - - - - - BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 1 HYPHEN 0 0 +26 26 2 26 26 26 6 26 26 26 BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS ALLDIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Abstract abstract A Ab Abs Abst t ct act ract BLOCKSTART LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +This this T Th Thi This s is his This BLOCKSTART LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +document document d do doc docu t nt ent ment BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +describes describes d de des desc s es bes ibes BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +a a a a a a a a a a BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 1 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +network network n ne net netw k rk ork work BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +architecture architecture a ar arc arch e re ure ture BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +that that t th tha that t at hat that BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +provides provides p pr pro prov s es des ides BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +low low l lo low low w ow low low BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +- - - - - - - - - - BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 1 HYPHEN 0 0 +latency latency l la lat late y cy ncy ency BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +, , , , , , , , , , BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 COMMA 0 0 +low low l lo low low w ow low low BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +- - - - - - - - - - BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 1 HYPHEN 0 0 +jitter jitter j ji jit jitt r er ter tter BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +and and a an and and d nd and and BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +high high h hi hig high h gh igh high BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +- - - - - - - - - - BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 1 HYPHEN 0 0 +reliability reliability r re rel reli y ty ity lity BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +packet packet p pa pac pack t et ket cket BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +delivery delivery d de del deli y ry ery very BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +It it I It It It t It It It BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +combines combines c co com comb s es nes ines BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +a a a a a a a a a a BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 1 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +high high h hi hig high h gh igh high BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +- - - - - - - - - - BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 1 HYPHEN 0 0 +speed speed s sp spe spee d ed eed peed BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +powered powered p po pow powe d ed red ered BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +backbone backbone b ba bac back e ne one bone BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +and and a an and and d nd and and BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +subnetworks subnetworks s su sub subn s ks rks orks BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +using using u us usi usin g ng ing sing BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +IEEE ieee I IE IEE IEEE E EE EEE IEEE BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +802 802 8 80 802 802 2 02 802 802 BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS ALLDIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +15 15 1 15 15 15 5 15 15 15 BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS ALLDIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +4 4 4 4 4 4 4 4 4 4 BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +time time t ti tim time e me ime time BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +- - - - - - - - - - BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 1 HYPHEN 0 0 +slotted slotted s sl slo slot d ed ted tted BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +channel channel c ch cha chan l el nel nnel BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +hopping hopping h ho hop hopp g ng ing ping BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +( ( ( ( ( ( ( ( ( ( BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 OPENBRACKET 0 0 +TSCH tsch T TS TSC TSCH H CH SCH TSCH BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +) ) ) ) ) ) ) ) ) ) BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 ENDBRACKET 0 0 +to to t to to to o to to to BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +meet meet m me mee meet t et eet meet BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +the the t th the the e he the the BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +requirements requirements r re req requ s ts nts ents BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +of of o of of of f of of of BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +LowPower lowpower L Lo Low LowP r er wer ower BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +wireless wireless w wi wir wire s ss ess less BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +deterministic deterministic d de det dete c ic tic stic BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +applications applications a ap app appl s ns ons ions BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +Status status S St Sta Stat s us tus atus BLOCKSTART LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +of of o of of of f of of of BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +This this T Th Thi This s is his This BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Memo memo M Me Mem Memo o mo emo Memo BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +This this T Th Thi This s is his This BLOCKSTART LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Internet internet I In Int Inte t et net rnet BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +- - - - - - - - - - BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 1 HYPHEN 0 0 +Draft draft D Dr Dra Draf t ft aft raft BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +is is i is is is s is is is BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +submitted submitted s su sub subm d ed ted tted BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +in in i in in in n in in in BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +full full f fu ful full l ll ull full BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +conformance conformance c co con conf e ce nce ance BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +with with w wi wit with h th ith with BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +the the t th the the e he the the BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +provisions provisions p pr pro prov s ns ons ions BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +of of o of of of f of of of BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +BCP bcp B BC BCP BCP P CP BCP BCP BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +78 78 7 78 78 78 8 78 78 78 BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS ALLDIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +and and a an and and d nd and and BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +BCP bcp B BC BCP BCP P CP BCP BCP BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +79 79 7 79 79 79 9 79 79 79 BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS ALLDIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +Internet internet I In Int Inte t et net rnet BLOCKSTART LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +- - - - - - - - - - BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 1 HYPHEN 0 0 +Drafts drafts D Dr Dra Draf s ts fts afts BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +are are a ar are are e re are are BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +working working w wo wor work g ng ing king BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +documents documents d do doc docu s ts nts ents BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +of of o of of of f of of of BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +the the t th the the e he the the BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Internet internet I In Int Inte t et net rnet BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Engineering engineering E En Eng Engi g ng ing ring BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Task task T Ta Tas Task k sk ask Task BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Force force F Fo For Forc e ce rce orce BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +( ( ( ( ( ( ( ( ( ( BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 OPENBRACKET 0 0 +IETF ietf I IE IET IETF F TF ETF IETF BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +) ) ) ) ) ) ) ) ) ) BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 ENDBRACKET 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +Note note N No Not Note e te ote Note BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +that that t th tha that t at hat that BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +other other o ot oth othe r er her ther BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +groups groups g gr gro grou s ps ups oups BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +may may m ma may may y ay may may BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 1 1 0 0 0 1 0 0 0 NOPUNCT 0 0 +also also a al als also o so lso also BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +distribute distribute d di dis dist e te ute bute BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +working working w wo wor work g ng ing king BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +documents documents d do doc docu s ts nts ents BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +as as a as as as s as as as BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Internet internet I In Int Inte t et net rnet BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +- - - - - - - - - - BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 1 HYPHEN 0 0 +Drafts drafts D Dr Dra Draf s ts fts afts BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +The the T Th The The e he The The BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +list list l li lis list t st ist list BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +of of o of of of f of of of BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +current current c cu cur curr t nt ent rent BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Internet internet I In Int Inte t et net rnet BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +- - - - - - - - - - BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 1 HYPHEN 0 0 +Drafts drafts D Dr Dra Draf s ts fts afts BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +is is i is is is s is is is BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +at at a at at at t at at at BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +https https h ht htt http s ps tps ttps BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 0 NOPUNCT 0 0 +: : : : : : : : : : BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 PUNCT 0 0 +/ / / / / / / / / / BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +/ / / / / / / / / / BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +datatracker datatracker d da dat data r er ker cker BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +ietf ietf i ie iet ietf f tf etf ietf BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +org org o or org org g rg org org BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +/ / / / / / / / / / BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +drafts drafts d dr dra draf s ts fts afts BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +/ / / / / / / / / / BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +current current c cu cur curr t nt ent rent BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +/ / / / / / / / / / BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +Internet internet I In Int Inte t et net rnet BLOCKSTART LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +- - - - - - - - - - BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 1 HYPHEN 0 0 +Drafts drafts D Dr Dra Draf s ts fts afts BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +are are a ar are are e re are are BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +draft draft d dr dra draf t ft aft raft BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +documents documents d do doc docu s ts nts ents BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +valid valid v va val vali d id lid alid BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +for for f fo for for r or for for BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +a a a a a a a a a a BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 1 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +maximum maximum m ma max maxi m um mum imum BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +of of o of of of f of of of BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +six six s si six six x ix six six BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +months months m mo mon mont s hs ths nths BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +and and a an and and d nd and and BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +may may m ma may may y ay may may BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 1 1 0 0 0 1 0 0 0 NOPUNCT 0 0 +be be b be be be e be be be BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +updated updated u up upd upda d ed ted ated BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +, , , , , , , , , , BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 COMMA 0 0 +replaced replaced r re rep repl d ed ced aced BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +, , , , , , , , , , BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 COMMA 0 0 +or or o or or or r or or or BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +obsoleted obsoleted o ob obs obso d ed ted eted BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +by by b by by by y by by by BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +other other o ot oth othe r er her ther BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +documents documents d do doc docu s ts nts ents BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +at at a at at at t at at at BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +any any a an any any y ny any any BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +time time t ti tim time e me ime time BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +It it I It It It t It It It BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +is is i is is is s is is is BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +inappropriate inappropriate i in ina inap e te ate iate BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +to to t to to to o to to to BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +use use u us use use e se use use BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Internet internet I In Int Inte t et net rnet BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +- - - - - - - - - - BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 1 HYPHEN 0 0 +Drafts drafts D Dr Dra Draf s ts fts afts BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +as as a as as as s as as as BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +reference reference r re ref refe e ce nce ence BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +material material m ma mat mate l al ial rial BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +or or o or or or r or or or BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +to to t to to to o to to to BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +cite cite c ci cit cite e te ite cite BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +them them t th the them m em hem them BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +other other o ot oth othe r er her ther BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +than than t th tha than n an han than BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +as as a as as as s as as as BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +" " " " " " " " " " BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 QUOTE 0 0 +work work w wo wor work k rk ork work BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +in in i in in in n in in in BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +progress progress p pr pro prog s ss ess ress BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +" " " " " " " " " " BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 QUOTE 0 0 +This this T Th Thi This s is his This BLOCKSTART LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Internet internet I In Int Inte t et net rnet BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +- - - - - - - - - - BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 1 HYPHEN 0 0 +Draft draft D Dr Dra Draf t ft aft raft BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +will will w wi wil will l ll ill will BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +expire expire e ex exp expi e re ire pire BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +on on o on on on n on on on BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +February february F Fe Feb Febr y ry ary uary BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 1 0 0 0 NOPUNCT 0 0 +28 28 2 28 28 28 8 28 28 28 BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS ALLDIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +, , , , , , , , , , BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 COMMA 0 0 +2020 2020 2 20 202 2020 0 20 020 2020 BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS ALLDIGIT 0 0 0 0 0 1 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +Copyright copyright C Co Cop Copy t ht ght ight BLOCKSTART LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Notice notice N No Not Noti e ce ice tice BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Copyright copyright C Co Cop Copy t ht ght ight BLOCKSTART LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +( ( ( ( ( ( ( ( ( ( BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 OPENBRACKET 0 0 +c c c c c c c c c c BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +) ) ) ) ) ) ) ) ) ) BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 ENDBRACKET 0 0 +2019 2019 2 20 201 2019 9 19 019 2019 BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS ALLDIGIT 0 0 0 0 0 1 0 0 0 0 NOPUNCT 0 0 +IETF ietf I IE IET IETF F TF ETF IETF BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Trust trust T Tr Tru Trus t st ust rust BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +and and a an and and d nd and and BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +the the t th the the e he the the BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +persons persons p pe per pers s ns ons sons BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +identified identified i id ide iden d ed ied fied BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +as as a as as as s as as as BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +the the t th the the e he the the BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +document document d do doc docu t nt ent ment BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +authors authors a au aut auth s rs ors hors BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +All all A Al All All l ll All All BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +rights rights r ri rig righ s ts hts ghts BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +reserved reserved r re res rese d ed ved rved BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +This this T Th Thi This s is his This BLOCKSTART LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +document document d do doc docu t nt ent ment BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +is is i is is is s is is is BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +subject subject s su sub subj t ct ect ject BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +to to t to to to o to to to BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +BCP bcp B BC BCP BCP P CP BCP BCP BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +78 78 7 78 78 78 8 78 78 78 BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS ALLDIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +and and a an and and d nd and and BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +the the t th the the e he the the BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +IETF ietf I IE IET IETF F TF ETF IETF BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Trust trust T Tr Tru Trus t st ust rust BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +' ' ' ' ' ' ' ' ' ' BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 QUOTE 0 0 +s s s s s s s s s s BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Legal legal L Le Leg Lega l al gal egal BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Provisions provisions P Pr Pro Prov s ns ons ions BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Relating relating R Re Rel Rela g ng ing ting BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +to to t to to to o to to to BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +IETF ietf I IE IET IETF F TF ETF IETF BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Documents documents D Do Doc Docu s ts nts ents BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +( ( ( ( ( ( ( ( ( ( BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 OPENBRACKET 0 0 +https https h ht htt http s ps tps ttps BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 0 NOPUNCT 0 0 +: : : : : : : : : : BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 PUNCT 0 0 +/ / / / / / / / / / BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +/ / / / / / / / / / BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +trustee trustee t tr tru trus e ee tee stee BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +ietf ietf i ie iet ietf f tf etf ietf BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +org org o or org org g rg org org BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +/ / / / / / / / / / BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +license license l li lic lice e se nse ense BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +- - - - - - - - - - BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 1 HYPHEN 0 0 +info info i in inf info o fo nfo info BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 1 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +) ) ) ) ) ) ) ) ) ) BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 ENDBRACKET 0 0 +in in i in in in n in in in BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +effect effect e ef eff effe t ct ect fect BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +on on o on on on n on on on BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +the the t th the the e he the the BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +date date d da dat date e te ate date BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +of of o of of of f of of of BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +publication publication p pu pub publ n on ion tion BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +of of o of of of f of of of BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +this this t th thi this s is his this BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +document document d do doc docu t nt ent ment BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +Please please P Pl Ple Plea e se ase ease BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +review review r re rev revi w ew iew view BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +these these t th the thes e se ese hese BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +documents documents d do doc docu s ts nts ents BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +carefully carefully c ca car care y ly lly ully BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +, , , , , , , , , , BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 COMMA 0 0 +as as a as as as s as as as BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +they they t th the they y ey hey they BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +describe describe d de des desc e be ibe ribe BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +your your y yo you your r ur our your BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +rights rights r ri rig righ s ts hts ghts BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +and and a an and and d nd and and BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +restrictions restrictions r re res rest s ns ons ions BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +with with w wi wit with h th ith with BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +respect respect r re res resp t ct ect pect BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +to to t to to to o to to to BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +this this t th thi this s is his this BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +document document d do doc docu t nt ent ment BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +Code code C Co Cod Code e de ode Code BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Components components C Co Com Comp s ts nts ents BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +extracted extracted e ex ext extr d ed ted cted BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +from from f fr fro from m om rom from BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +this this t th thi this s is his this BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +document document d do doc docu t nt ent ment BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +must must m mu mus must t st ust must BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +include include i in inc incl e de ude lude BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Simplified simplified S Si Sim Simp d ed ied fied BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +BSD bsd B BS BSD BSD D SD BSD BSD BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +License license L Li Lic Lice e se nse ense BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +text text t te tex text t xt ext text BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +as as a as as as s as as as BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +described described d de des desc d ed bed ibed BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +in in i in in in n in in in BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Section section S Se Sec Sect n on ion tion BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +4 4 4 4 4 4 4 4 4 4 BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +e e e e e e e e e e BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +of of o of of of f of of of BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +the the t th the the e he the the BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Trust trust T Tr Tru Trus t st ust rust BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Legal legal L Le Leg Lega l al gal egal BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Provisions provisions P Pr Pro Prov s ns ons ions BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +and and a an and and d nd and and BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +are are a ar are are e re are are BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +provided provided p pr pro prov d ed ded ided BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +without without w wi wit with t ut out hout BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +warranty warranty w wa war warr y ty nty anty BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +as as a as as as s as as as BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +described described d de des desc d ed bed ibed BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +in in i in in in n in in in BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +the the t th the the e he the the BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Simplified simplified S Si Sim Simp d ed ied fied BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +BSD bsd B BS BSD BSD D SD BSD BSD BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +License license L Li Lic Lice e se nse ense BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +Pascal pascal P Pa Pas Pasc l al cal scal BLOCKSTART LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 1 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Thubert thubert T Th Thu Thub t rt ert bert BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +( ( ( ( ( ( ( ( ( ( BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 OPENBRACKET 0 0 +editor editor e ed edi edit r or tor itor BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +) ) ) ) ) ) ) ) ) ) BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 ENDBRACKET 0 0 +Cisco cisco C Ci Cis Cisc o co sco isco BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 1 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Systems systems S Sy Sys Syst s ms ems tems BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +, , , , , , , , , , BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 COMMA 0 0 +Inc inc I In Inc Inc c nc Inc Inc BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Building building B Bu Bui Buil g ng ing ding BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +D d D D D D D D D D BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +45 45 4 45 45 45 5 45 45 45 BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS ALLDIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Allee allee A Al All Alle e ee lee llee BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +des des d de des des s es des des BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Ormes ormes O Or Orm Orme s es mes rmes BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +- - - - - - - - - - BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 1 HYPHEN 0 0 +BP1200 bp1200 B BP BP1 BP12 0 00 200 1200 BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 1 0 0 0 0 NOPUNCT 0 0 +MOUGINS mougins M MO MOU MOUG S NS INS GINS BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +- - - - - - - - - - BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 1 HYPHEN 0 0 +Sophia sophia S So Sop Soph a ia hia phia BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 1 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Antipolis antipolis A An Ant Anti s is lis olis BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +06254 06254 0 06 062 0625 4 54 254 6254 BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS ALLDIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +FRANCE france F FR FRA FRAN E CE NCE ANCE BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 0 1 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Phone phone P Ph Pho Phon e ne one hone BLOCKSTART LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +: : : : : : : : : : BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 PUNCT 0 0 ++33 +33 + +3 +33 +33 3 33 +33 +33 BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +497 497 4 49 497 497 7 97 497 497 BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS ALLDIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +23 23 2 23 23 23 3 23 23 23 BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS ALLDIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +26 26 2 26 26 26 6 26 26 26 BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS ALLDIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +34 34 3 34 34 34 4 34 34 34 BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS ALLDIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Email email E Em Ema Emai l il ail mail BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +: : : : : : : : : : BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 PUNCT 0 0 +pthubert@cisco pthubert@cisco p pt pth pthu o co sco isco BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +com com c co com com m om com com BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 + diff --git a/grobid-trainer/resources/dataset/header/sdo/ietf/corpus/raw/XP015134942.training.header b/grobid-trainer/resources/dataset/header/sdo/ietf/corpus/raw/XP015134942.training.header new file mode 100644 index 0000000000..c449f36661 --- /dev/null +++ b/grobid-trainer/resources/dataset/header/sdo/ietf/corpus/raw/XP015134942.training.header @@ -0,0 +1,395 @@ +Internet internet I In Int Inte t et net rnet BLOCKSTART LINESTART NEWFONT HIGHERFONT 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Engineering engineering E En Eng Engi g ng ing ring BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Task task T Ta Tas Task k sk ask Task BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Force force F Fo For Forc e ce rce orce BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +L l L L L L L L L L BLOCKSTART LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +Velvindron velvindron V Ve Vel Velv n on ron dron BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Internet internet I In Int Inte t et net rnet BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +- - - - - - - - - - BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 1 HYPHEN 0 0 +Draft draft D Dr Dra Draf t ft aft raft BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +cyberstorm cyberstorm c cy cyb cybe m rm orm torm BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +mu mu m mu mu mu u mu mu mu BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Updates updates U Up Upd Upda s es tes ates BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +: : : : : : : : : : BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 PUNCT 0 0 +5246 5246 5 52 524 5246 6 46 246 5246 BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS ALLDIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +7525 7525 7 75 752 7525 5 25 525 7525 BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS ALLDIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +( ( ( ( ( ( ( ( ( ( BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 OPENBRACKET 0 0 +if if i if if if f if if if BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +approved approved a ap app appr d ed ved oved BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +) ) ) ) ) ) ) ) ) ) BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 ENDBRACKET 0 0 +K k K K K K K K K K BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +Moriarty moriarty M Mo Mor Mori y ty rty arty BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 1 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Intended intended I In Int Inte d ed ded nded BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +status status s st sta stat s us tus atus BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +: : : : : : : : : : BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 PUNCT 0 0 +Standards standards S St Sta Stan s ds rds ards BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Track track T Tr Tra Trac k ck ack rack BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Dell dell D De Del Dell l ll ell Dell BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 1 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +EMC emc E EM EMC EMC C MC EMC EMC BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Expires expires E Ex Exp Expi s es res ires BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +: : : : : : : : : : BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 PUNCT 0 0 +March march M Ma Mar Marc h ch rch arch BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 1 1 0 0 0 1 0 0 0 NOPUNCT 0 0 +5 5 5 5 5 5 5 5 5 5 BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +, , , , , , , , , , BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 COMMA 0 0 +2020 2020 2 20 202 2020 0 20 020 2020 BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS ALLDIGIT 0 0 0 0 0 1 0 0 0 0 NOPUNCT 0 0 +A a A A A A A A A A BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +Ghedini ghedini G Gh Ghe Ghed i ni ini dini BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Cloudflare cloudflare C Cl Clo Clou e re are lare BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Inc inc I In Inc Inc c nc Inc Inc BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +September september S Se Sep Sept r er ber mber BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 1 0 0 0 0 1 0 0 0 NOPUNCT 0 0 +2 2 2 2 2 2 2 2 2 2 BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +, , , , , , , , , , BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 COMMA 0 0 +2019 2019 2 20 201 2019 9 19 019 2019 BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS ALLDIGIT 0 0 0 0 0 1 0 0 0 0 NOPUNCT 0 0 +Deprecating deprecating D De Dep Depr g ng ing ting BLOCKSTART LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +MD5 md5 M MD MD5 MD5 5 D5 MD5 MD5 BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +and and a an and and d nd and and BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +SHA sha S SH SHA SHA A HA SHA SHA BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 0 1 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +- - - - - - - - - - BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 1 HYPHEN 0 0 +1 1 1 1 1 1 1 1 1 1 BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +signature signature s si sig sign e re ure ture BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +hashes hashes h ha has hash s es hes shes BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +in in i in in in n in in in BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +TLS tls T TL TLS TLS S LS TLS TLS BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +1 1 1 1 1 1 1 1 1 1 BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +2 2 2 2 2 2 2 2 2 2 BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +draft draft d dr dra draf t ft aft raft BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +- - - - - - - - - - BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 1 HYPHEN 0 0 +ietf ietf i ie iet ietf f tf etf ietf BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +- - - - - - - - - - BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 1 HYPHEN 0 0 +tls tls t tl tls tls s ls tls tls BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +- - - - - - - - - - BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 1 HYPHEN 0 0 +md5 md5 m md md5 md5 5 d5 md5 md5 BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +- - - - - - - - - - BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 1 HYPHEN 0 0 +sha1 sha1 s sh sha sha1 1 a1 ha1 sha1 BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +- - - - - - - - - - BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 1 HYPHEN 0 0 +deprecate deprecate d de dep depr e te ate cate BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +- - - - - - - - - - BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 1 HYPHEN 0 0 +00 00 0 00 00 00 0 00 00 00 BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS ALLDIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Abstract abstract A Ab Abs Abst t ct act ract BLOCKSTART LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +The the T Th The The e he The The BLOCKSTART LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +MD5 md5 M MD MD5 MD5 5 D5 MD5 MD5 BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +and and a an and and d nd and and BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +SHA sha S SH SHA SHA A HA SHA SHA BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 0 1 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +- - - - - - - - - - BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 1 HYPHEN 0 0 +1 1 1 1 1 1 1 1 1 1 BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +hashing hashing h ha has hash g ng ing hing BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +algorithms algorithms a al alg algo s ms hms thms BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +are are a ar are are e re are are BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +steadily steadily s st ste stea y ly ily dily BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +weakening weakening w we wea weak g ng ing ning BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +in in i in in in n in in in BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +strength strength s st str stre h th gth ngth BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +and and a an and and d nd and and BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +their their t th the thei r ir eir heir BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +deprecation deprecation d de dep depr n on ion tion BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +process process p pr pro proc s ss ess cess BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +should should s sh sho shou d ld uld ould BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +begin begin b be beg begi n in gin egin BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +for for f fo for for r or for for BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +their their t th the thei r ir eir heir BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +use use u us use use e se use use BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +in in i in in in n in in in BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +TLS tls T TL TLS TLS S LS TLS TLS BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +1 1 1 1 1 1 1 1 1 1 BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +2 2 2 2 2 2 2 2 2 2 BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +digital digital d di dig digi l al tal ital BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +signatures signatures s si sig sign s es res ures BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +However however H Ho How Howe r er ver ever BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +, , , , , , , , , , BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 COMMA 0 0 +this this t th thi this s is his this BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +document document d do doc docu t nt ent ment BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +does does d do doe does s es oes does BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +not not n no not not t ot not not BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +deprecate deprecate d de dep depr e te ate cate BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +SHA sha S SH SHA SHA A HA SHA SHA BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 0 1 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +- - - - - - - - - - BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 1 HYPHEN 0 0 +1 1 1 1 1 1 1 1 1 1 BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +in in i in in in n in in in BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +HMAC hmac H HM HMA HMAC C AC MAC HMAC BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +for for f fo for for r or for for BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +record record r re rec reco d rd ord cord BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +protection protection p pr pro prot n on ion tion BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +Status status S St Sta Stat s us tus atus BLOCKSTART LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +of of o of of of f of of of BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +This this T Th Thi This s is his This BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Memo memo M Me Mem Memo o mo emo Memo BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +This this T Th Thi This s is his This BLOCKSTART LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Internet internet I In Int Inte t et net rnet BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +- - - - - - - - - - BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 1 HYPHEN 0 0 +Draft draft D Dr Dra Draf t ft aft raft BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +is is i is is is s is is is BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +submitted submitted s su sub subm d ed ted tted BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +in in i in in in n in in in BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +full full f fu ful full l ll ull full BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +conformance conformance c co con conf e ce nce ance BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +with with w wi wit with h th ith with BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +the the t th the the e he the the BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +provisions provisions p pr pro prov s ns ons ions BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +of of o of of of f of of of BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +BCP bcp B BC BCP BCP P CP BCP BCP BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +78 78 7 78 78 78 8 78 78 78 BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS ALLDIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +and and a an and and d nd and and BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +BCP bcp B BC BCP BCP P CP BCP BCP BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +79 79 7 79 79 79 9 79 79 79 BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS ALLDIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +Internet internet I In Int Inte t et net rnet BLOCKSTART LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +- - - - - - - - - - BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 1 HYPHEN 0 0 +Drafts drafts D Dr Dra Draf s ts fts afts BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +are are a ar are are e re are are BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +working working w wo wor work g ng ing king BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +documents documents d do doc docu s ts nts ents BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +of of o of of of f of of of BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +the the t th the the e he the the BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Internet internet I In Int Inte t et net rnet BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Engineering engineering E En Eng Engi g ng ing ring BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Task task T Ta Tas Task k sk ask Task BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Force force F Fo For Forc e ce rce orce BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +( ( ( ( ( ( ( ( ( ( BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 OPENBRACKET 0 0 +IETF ietf I IE IET IETF F TF ETF IETF BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +) ) ) ) ) ) ) ) ) ) BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 ENDBRACKET 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +Note note N No Not Note e te ote Note BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +that that t th tha that t at hat that BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +other other o ot oth othe r er her ther BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +groups groups g gr gro grou s ps ups oups BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +may may m ma may may y ay may may BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 1 1 0 0 0 1 0 0 0 NOPUNCT 0 0 +also also a al als also o so lso also BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +distribute distribute d di dis dist e te ute bute BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +working working w wo wor work g ng ing king BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +documents documents d do doc docu s ts nts ents BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +as as a as as as s as as as BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Internet internet I In Int Inte t et net rnet BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +- - - - - - - - - - BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 1 HYPHEN 0 0 +Drafts drafts D Dr Dra Draf s ts fts afts BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +The the T Th The The e he The The BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +list list l li lis list t st ist list BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +of of o of of of f of of of BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +current current c cu cur curr t nt ent rent BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Internet internet I In Int Inte t et net rnet BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +- - - - - - - - - - BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 1 HYPHEN 0 0 +Drafts drafts D Dr Dra Draf s ts fts afts BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +is is i is is is s is is is BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +at at a at at at t at at at BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +https https h ht htt http s ps tps ttps BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 0 NOPUNCT 0 0 +: : : : : : : : : : BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 PUNCT 0 0 +/ / / / / / / / / / BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +/ / / / / / / / / / BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +datatracker datatracker d da dat data r er ker cker BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +ietf ietf i ie iet ietf f tf etf ietf BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +org org o or org org g rg org org BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +/ / / / / / / / / / BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +drafts drafts d dr dra draf s ts fts afts BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +/ / / / / / / / / / BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +current current c cu cur curr t nt ent rent BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +/ / / / / / / / / / BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +Internet internet I In Int Inte t et net rnet BLOCKSTART LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +- - - - - - - - - - BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 1 HYPHEN 0 0 +Drafts drafts D Dr Dra Draf s ts fts afts BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +are are a ar are are e re are are BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +draft draft d dr dra draf t ft aft raft BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +documents documents d do doc docu s ts nts ents BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +valid valid v va val vali d id lid alid BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +for for f fo for for r or for for BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +a a a a a a a a a a BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 1 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +maximum maximum m ma max maxi m um mum imum BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +of of o of of of f of of of BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +six six s si six six x ix six six BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +months months m mo mon mont s hs ths nths BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +and and a an and and d nd and and BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +may may m ma may may y ay may may BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 1 1 0 0 0 1 0 0 0 NOPUNCT 0 0 +be be b be be be e be be be BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +updated updated u up upd upda d ed ted ated BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +, , , , , , , , , , BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 COMMA 0 0 +replaced replaced r re rep repl d ed ced aced BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +, , , , , , , , , , BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 COMMA 0 0 +or or o or or or r or or or BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +obsoleted obsoleted o ob obs obso d ed ted eted BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +by by b by by by y by by by BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +other other o ot oth othe r er her ther BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +documents documents d do doc docu s ts nts ents BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +at at a at at at t at at at BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +any any a an any any y ny any any BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +time time t ti tim time e me ime time BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +It it I It It It t It It It BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +is is i is is is s is is is BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +inappropriate inappropriate i in ina inap e te ate iate BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +to to t to to to o to to to BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +use use u us use use e se use use BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Internet internet I In Int Inte t et net rnet BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +- - - - - - - - - - BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 1 HYPHEN 0 0 +Drafts drafts D Dr Dra Draf s ts fts afts BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +as as a as as as s as as as BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +reference reference r re ref refe e ce nce ence BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +material material m ma mat mate l al ial rial BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +or or o or or or r or or or BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +to to t to to to o to to to BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +cite cite c ci cit cite e te ite cite BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +them them t th the them m em hem them BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +other other o ot oth othe r er her ther BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +than than t th tha than n an han than BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +as as a as as as s as as as BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +" " " " " " " " " " BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 QUOTE 0 0 +work work w wo wor work k rk ork work BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +in in i in in in n in in in BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +progress progress p pr pro prog s ss ess ress BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +" " " " " " " " " " BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 QUOTE 0 0 +This this T Th Thi This s is his This BLOCKSTART LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Internet internet I In Int Inte t et net rnet BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +- - - - - - - - - - BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 1 HYPHEN 0 0 +Draft draft D Dr Dra Draf t ft aft raft BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +will will w wi wil will l ll ill will BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +expire expire e ex exp expi e re ire pire BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +on on o on on on n on on on BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +March march M Ma Mar Marc h ch rch arch BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 1 1 0 0 0 1 0 0 0 NOPUNCT 0 0 +5 5 5 5 5 5 5 5 5 5 BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +, , , , , , , , , , BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 COMMA 0 0 +2020 2020 2 20 202 2020 0 20 020 2020 BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS ALLDIGIT 0 0 0 0 0 1 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +Copyright copyright C Co Cop Copy t ht ght ight BLOCKSTART LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Notice notice N No Not Noti e ce ice tice BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Copyright copyright C Co Cop Copy t ht ght ight BLOCKSTART LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +( ( ( ( ( ( ( ( ( ( BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 OPENBRACKET 0 0 +c c c c c c c c c c BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +) ) ) ) ) ) ) ) ) ) BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 ENDBRACKET 0 0 +2019 2019 2 20 201 2019 9 19 019 2019 BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS ALLDIGIT 0 0 0 0 0 1 0 0 0 0 NOPUNCT 0 0 +IETF ietf I IE IET IETF F TF ETF IETF BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Trust trust T Tr Tru Trus t st ust rust BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +and and a an and and d nd and and BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +the the t th the the e he the the BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +persons persons p pe per pers s ns ons sons BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +identified identified i id ide iden d ed ied fied BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +as as a as as as s as as as BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +the the t th the the e he the the BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +document document d do doc docu t nt ent ment BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +authors authors a au aut auth s rs ors hors BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +All all A Al All All l ll All All BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +rights rights r ri rig righ s ts hts ghts BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +reserved reserved r re res rese d ed ved rved BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +This this T Th Thi This s is his This BLOCKSTART LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +document document d do doc docu t nt ent ment BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +is is i is is is s is is is BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +subject subject s su sub subj t ct ect ject BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +to to t to to to o to to to BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +BCP bcp B BC BCP BCP P CP BCP BCP BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +78 78 7 78 78 78 8 78 78 78 BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS ALLDIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +and and a an and and d nd and and BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +the the t th the the e he the the BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +IETF ietf I IE IET IETF F TF ETF IETF BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Trust trust T Tr Tru Trus t st ust rust BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +' ' ' ' ' ' ' ' ' ' BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 QUOTE 0 0 +s s s s s s s s s s BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Legal legal L Le Leg Lega l al gal egal BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Provisions provisions P Pr Pro Prov s ns ons ions BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Relating relating R Re Rel Rela g ng ing ting BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +to to t to to to o to to to BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +IETF ietf I IE IET IETF F TF ETF IETF BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Documents documents D Do Doc Docu s ts nts ents BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +( ( ( ( ( ( ( ( ( ( BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 OPENBRACKET 0 0 +https https h ht htt http s ps tps ttps BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 0 NOPUNCT 0 0 +: : : : : : : : : : BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 PUNCT 0 0 +/ / / / / / / / / / BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +/ / / / / / / / / / BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +trustee trustee t tr tru trus e ee tee stee BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +ietf ietf i ie iet ietf f tf etf ietf BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +org org o or org org g rg org org BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +/ / / / / / / / / / BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +license license l li lic lice e se nse ense BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +- - - - - - - - - - BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 1 HYPHEN 0 0 +info info i in inf info o fo nfo info BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 1 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +) ) ) ) ) ) ) ) ) ) BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 ENDBRACKET 0 0 +in in i in in in n in in in BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +effect effect e ef eff effe t ct ect fect BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +on on o on on on n on on on BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +the the t th the the e he the the BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +date date d da dat date e te ate date BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +of of o of of of f of of of BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +publication publication p pu pub publ n on ion tion BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +of of o of of of f of of of BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +this this t th thi this s is his this BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +document document d do doc docu t nt ent ment BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +Please please P Pl Ple Plea e se ase ease BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +review review r re rev revi w ew iew view BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +these these t th the thes e se ese hese BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +documents documents d do doc docu s ts nts ents BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +carefully carefully c ca car care y ly lly ully BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +, , , , , , , , , , BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 COMMA 0 0 +as as a as as as s as as as BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +they they t th the they y ey hey they BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +describe describe d de des desc e be ibe ribe BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +your your y yo you your r ur our your BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +rights rights r ri rig righ s ts hts ghts BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +and and a an and and d nd and and BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +restrictions restrictions r re res rest s ns ons ions BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +with with w wi wit with h th ith with BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +respect respect r re res resp t ct ect pect BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +to to t to to to o to to to BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +this this t th thi this s is his this BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +document document d do doc docu t nt ent ment BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +Code code C Co Cod Code e de ode Code BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Components components C Co Com Comp s ts nts ents BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +extracted extracted e ex ext extr d ed ted cted BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +from from f fr fro from m om rom from BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +this this t th thi this s is his this BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +document document d do doc docu t nt ent ment BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +must must m mu mus must t st ust must BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +include include i in inc incl e de ude lude BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Simplified simplified S Si Sim Simp d ed ied fied BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +BSD bsd B BS BSD BSD D SD BSD BSD BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +License license L Li Lic Lice e se nse ense BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +text text t te tex text t xt ext text BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +as as a as as as s as as as BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +described described d de des desc d ed bed ibed BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +in in i in in in n in in in BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Section section S Se Sec Sect n on ion tion BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +4 4 4 4 4 4 4 4 4 4 BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +e e e e e e e e e e BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +of of o of of of f of of of BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Loganaden loganaden L Lo Log Loga n en den aden BLOCKSTART LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Velvindron velvindron V Ve Vel Velv n on ron dron BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +cyberstorm cyberstorm c cy cyb cybe m rm orm torm BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +mu mu m mu mu mu u mu mu mu BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Rose rose R Ro Ros Rose e se ose Rose BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Hill hill H Hi Hil Hill l ll ill Hill BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +MU mu M MU MU MU U MU MU MU BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Phone phone P Ph Pho Phon e ne one hone BLOCKSTART LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +: : : : : : : : : : BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 PUNCT 0 0 ++230 +230 + +2 +23 +230 0 30 230 +230 BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +59762817 59762817 5 59 597 5976 7 17 817 2817 BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS ALLDIGIT 0 0 0 0 0 1 0 0 0 0 NOPUNCT 0 0 +Email email E Em Ema Emai l il ail mail BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +: : : : : : : : : : BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 PUNCT 0 0 +logan@cyberstorm logan@cyberstorm l lo log loga m rm orm torm BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +mu mu m mu mu mu u mu mu mu BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Kathleen kathleen K Ka Kat Kath n en een leen BLOCKSTART LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 1 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Moriarty moriarty M Mo Mor Mori y ty rty arty BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 1 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Dell dell D De Del Dell l ll ell Dell BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 1 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +EMC emc E EM EMC EMC C MC EMC EMC BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Alessandro alessandro A Al Ale Ales o ro dro ndro BLOCKSTART LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 1 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Ghedini ghedini G Gh Ghe Ghed i ni ini dini BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Cloudflare cloudflare C Cl Clo Clou e re are lare BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Inc inc I In Inc Inc c nc Inc Inc BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 + diff --git a/grobid-trainer/resources/dataset/header/sdo/ietf/corpus/raw/XP015135013.training.header b/grobid-trainer/resources/dataset/header/sdo/ietf/corpus/raw/XP015135013.training.header new file mode 100644 index 0000000000..09900b9784 --- /dev/null +++ b/grobid-trainer/resources/dataset/header/sdo/ietf/corpus/raw/XP015135013.training.header @@ -0,0 +1,572 @@ +SFC sfc S SF SFC SFC C FC SFC SFC BLOCKSTART LINESTART NEWFONT HIGHERFONT 1 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +WG wg W WG WG WG G WG WG WG BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +CJ cj C CJ CJ CJ J CJ CJ CJ BLOCKSTART LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +Bernardos bernardos B Be Ber Bern s os dos rdos BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Internet internet I In Int Inte t et net rnet BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +- - - - - - - - - - BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 1 HYPHEN 0 0 +Draft draft D Dr Dra Draf t ft aft raft BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +UC3M uc3m U UC UC3 UC3M M 3M C3M UC3M BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Intended intended I In Int Inte d ed ded nded BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +status status s st sta stat s us tus atus BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +: : : : : : : : : : BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 PUNCT 0 0 +Informational informational I In Inf Info l al nal onal BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +A a A A A A A A A A BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +Rahman rahman R Ra Rah Rahm n an man hman BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 1 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Expires expires E Ex Exp Expi s es res ires BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +: : : : : : : : : : BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 PUNCT 0 0 +March march M Ma Mar Marc h ch rch arch BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 1 1 0 0 0 1 0 0 0 NOPUNCT 0 0 +10 10 1 10 10 10 0 10 10 10 BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS ALLDIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +, , , , , , , , , , BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 COMMA 0 0 +2020 2020 2 20 202 2020 0 20 020 2020 BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS ALLDIGIT 0 0 0 0 0 1 0 0 0 0 NOPUNCT 0 0 +A a A A A A A A A A BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +Mourad mourad M Mo Mou Mour d ad rad urad BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +InterDigital interdigital I In Int Inte l al tal ital BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +September september S Se Sep Sept r er ber mber BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 1 0 0 0 0 1 0 0 0 NOPUNCT 0 0 +7 7 7 7 7 7 7 7 7 7 BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +, , , , , , , , , , BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 COMMA 0 0 +2019 2019 2 20 201 2019 9 19 019 2019 BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS ALLDIGIT 0 0 0 0 0 1 0 0 0 0 NOPUNCT 0 0 +Service service S Se Ser Serv e ce ice vice BLOCKSTART LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Function function F Fu Fun Func n on ion tion BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Chaining chaining C Ch Cha Chai g ng ing ning BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Use use U Us Use Use e se Use Use BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Cases cases C Ca Cas Case s es ses ases BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +in in i in in in n in in in BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Fog fog F Fo Fog Fog g og Fog Fog BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +RAN ran R RA RAN RAN N AN RAN RAN BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +draft draft d dr dra draf t ft aft raft BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +- - - - - - - - - - BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 1 HYPHEN 0 0 +bernardos bernardos b be ber bern s os dos rdos BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +- - - - - - - - - - BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 1 HYPHEN 0 0 +sfc sfc s sf sfc sfc c fc sfc sfc BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +- - - - - - - - - - BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 1 HYPHEN 0 0 +fog fog f fo fog fog g og fog fog BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +- - - - - - - - - - BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 1 HYPHEN 0 0 +ran ran r ra ran ran n an ran ran BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +- - - - - - - - - - BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 1 HYPHEN 0 0 +06 06 0 06 06 06 6 06 06 06 BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS ALLDIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Abstract abstract A Ab Abs Abst t ct act ract BLOCKSTART LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Fog fog F Fo Fog Fog g og Fog Fog BLOCKSTART LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Radio radio R Ra Rad Radi o io dio adio BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Access access A Ac Acc Acce s ss ess cess BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Networks networks N Ne Net Netw s ks rks orks BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +( ( ( ( ( ( ( ( ( ( BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 OPENBRACKET 0 0 +RAN ran R RA RAN RAN N AN RAN RAN BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +) ) ) ) ) ) ) ) ) ) BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 ENDBRACKET 0 0 +refers refers r re ref refe s rs ers fers BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +to to t to to to o to to to BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +the the t th the the e he the the BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +part part p pa par part t rt art part BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +of of o of of of f of of of BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +the the t th the the e he the the BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +RAN ran R RA RAN RAN N AN RAN RAN BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +that that t th tha that t at hat that BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +is is i is is is s is is is BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +virtualized virtualized v vi vir virt d ed zed ized BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +at at a at at at t at at at BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +the the t th the the e he the the BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +very very v ve ver very y ry ery very BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +edge edge e ed edg edge e ge dge edge BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +of of o of of of f of of of BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +the the t th the the e he the the BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +network network n ne net netw k rk ork work BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +, , , , , , , , , , BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 COMMA 0 0 +even even e ev eve even n en ven even BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +at at a at at at t at at at BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +the the t th the the e he the the BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +end end e en end end d nd end end BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +- - - - - - - - - - BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 1 HYPHEN 0 0 +user user u us use user r er ser user BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +device device d de dev devi e ce ice vice BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +Fog fog F Fo Fog Fog g og Fog Fog BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +RAN ran R RA RAN RAN N AN RAN RAN BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +support support s su sup supp t rt ort port BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +is is i is is is s is is is BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +considered considered c co con cons d ed red ered BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +critical critical c cr cri crit l al cal ical BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +for for f fo for for r or for for BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +the the t th the the e he the the BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +5G 5g 5 5G 5G 5G G 5G 5G 5G BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +mobile mobile m mo mob mobi e le ile bile BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +network network n ne net netw k rk ork work BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +architectures architectures a ar arc arch s es res ures BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +currently currently c cu cur curr y ly tly ntly BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +being being b be bei bein g ng ing eing BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +developed developed d de dev deve d ed ped oped BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +in in i in in in n in in in BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +various various v va var vari s us ous ious BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +research research r re res rese h ch rch arch BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +, , , , , , , , , , BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 COMMA 0 0 +standardization standardization s st sta stan n on ion tion BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +and and a an and and d nd and and BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +industry industry i in ind indu y ry try stry BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +forums forums f fo for foru s ms ums rums BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +Since since S Si Sin Sinc e ce nce ince BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +fog fog f fo fog fog g og fog fog BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +RAN ran R RA RAN RAN N AN RAN RAN BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +builds builds b bu bui buil s ds lds ilds BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +on on o on on on n on on on BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +top top t to top top p op top top BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +of of o of of of f of of of BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +virtualization virtualization v vi vir virt n on ion tion BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +and and a an and and d nd and and BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +can can c ca can can n an can can BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +involve involve i in inv invo e ve lve olve BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +several several s se sev seve l al ral eral BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +virtual virtual v vi vir virt l al ual tual BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +functions functions f fu fun func s ns ons ions BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +running running r ru run runn g ng ing ning BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +on on o on on on n on on on BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +different different d di dif diff t nt ent rent BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +virtualized virtualized v vi vir virt d ed zed ized BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +resources resources r re res reso s es ces rces BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +, , , , , , , , , , BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 COMMA 0 0 +Service service S Se Ser Serv e ce ice vice BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +function function f fu fun func n on ion tion BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +chaining chaining c ch cha chai g ng ing ning BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +( ( ( ( ( ( ( ( ( ( BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 OPENBRACKET 0 0 +SFC sfc S SF SFC SFC C FC SFC SFC BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +) ) ) ) ) ) ) ) ) ) BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 ENDBRACKET 0 0 +support support s su sup supp t rt ort port BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +for for f fo for for r or for for BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +the the t th the the e he the the BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +fog fog f fo fog fog g og fog fog BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +RAN ran R RA RAN RAN N AN RAN RAN BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +will will w wi wil will l ll ill will BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +be be b be be be e be be be BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +critical critical c cr cri crit l al cal ical BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +This this T Th Thi This s is his This BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +document document d do doc docu t nt ent ment BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +describes describes d de des desc s es bes ibes BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +the the t th the the e he the the BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +overall overall o ov ove over l ll all rall BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +fog fog f fo fog fog g og fog fog BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +RAN ran R RA RAN RAN N AN RAN RAN BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +approach approach a ap app appr h ch ach oach BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +and and a an and and d nd and and BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +also also a al als also o so lso also BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +gives gives g gi giv give s es ves ives BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +some some s so som some e me ome some BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +use use u us use use e se use use BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +cases cases c ca cas case s es ses ases BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +Finally finally F Fi Fin Fina y ly lly ally BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +it it i it it it t it it it BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +proposes proposes p pr pro prop s es ses oses BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +some some s so som some e me ome some BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +requirements requirements r re req requ s ts nts ents BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +to to t to to to o to to to BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +be be b be be be e be be be BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +considered considered c co con cons d ed red ered BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +in in i in in in n in in in BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +the the t th the the e he the the BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +development development d de dev deve t nt ent ment BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +of of o of of of f of of of BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +the the t th the the e he the the BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +SFC sfc S SF SFC SFC C FC SFC SFC BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +architecture architecture a ar arc arch e re ure ture BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +and and a an and and d nd and and BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +related related r re rel rela d ed ted ated BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +protocols protocols p pr pro prot s ls ols cols BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +Status status S St Sta Stat s us tus atus BLOCKSTART LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +of of o of of of f of of of BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +This this T Th Thi This s is his This BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Memo memo M Me Mem Memo o mo emo Memo BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +This this T Th Thi This s is his This BLOCKSTART LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Internet internet I In Int Inte t et net rnet BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +- - - - - - - - - - BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 1 HYPHEN 0 0 +Draft draft D Dr Dra Draf t ft aft raft BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +is is i is is is s is is is BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +submitted submitted s su sub subm d ed ted tted BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +in in i in in in n in in in BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +full full f fu ful full l ll ull full BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +conformance conformance c co con conf e ce nce ance BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +with with w wi wit with h th ith with BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +the the t th the the e he the the BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +provisions provisions p pr pro prov s ns ons ions BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +of of o of of of f of of of BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +BCP bcp B BC BCP BCP P CP BCP BCP BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +78 78 7 78 78 78 8 78 78 78 BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS ALLDIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +and and a an and and d nd and and BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +BCP bcp B BC BCP BCP P CP BCP BCP BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +79 79 7 79 79 79 9 79 79 79 BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS ALLDIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +Internet internet I In Int Inte t et net rnet BLOCKSTART LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +- - - - - - - - - - BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 1 HYPHEN 0 0 +Drafts drafts D Dr Dra Draf s ts fts afts BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +are are a ar are are e re are are BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +working working w wo wor work g ng ing king BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +documents documents d do doc docu s ts nts ents BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +of of o of of of f of of of BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +the the t th the the e he the the BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Internet internet I In Int Inte t et net rnet BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Engineering engineering E En Eng Engi g ng ing ring BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Task task T Ta Tas Task k sk ask Task BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Force force F Fo For Forc e ce rce orce BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +( ( ( ( ( ( ( ( ( ( BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 OPENBRACKET 0 0 +IETF ietf I IE IET IETF F TF ETF IETF BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +) ) ) ) ) ) ) ) ) ) BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 ENDBRACKET 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +Note note N No Not Note e te ote Note BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +that that t th tha that t at hat that BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +other other o ot oth othe r er her ther BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +groups groups g gr gro grou s ps ups oups BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +may may m ma may may y ay may may BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 1 1 0 0 0 1 0 0 0 NOPUNCT 0 0 +also also a al als also o so lso also BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +distribute distribute d di dis dist e te ute bute BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +working working w wo wor work g ng ing king BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +documents documents d do doc docu s ts nts ents BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +as as a as as as s as as as BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Internet internet I In Int Inte t et net rnet BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +- - - - - - - - - - BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 1 HYPHEN 0 0 +Drafts drafts D Dr Dra Draf s ts fts afts BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +The the T Th The The e he The The BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +list list l li lis list t st ist list BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +of of o of of of f of of of BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +current current c cu cur curr t nt ent rent BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Internet internet I In Int Inte t et net rnet BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +- - - - - - - - - - BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 1 HYPHEN 0 0 +Drafts drafts D Dr Dra Draf s ts fts afts BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +is is i is is is s is is is BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +at at a at at at t at at at BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +https https h ht htt http s ps tps ttps BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 0 NOPUNCT 0 0 +: : : : : : : : : : BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 PUNCT 0 0 +/ / / / / / / / / / BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +/ / / / / / / / / / BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +datatracker datatracker d da dat data r er ker cker BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +ietf ietf i ie iet ietf f tf etf ietf BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +org org o or org org g rg org org BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +/ / / / / / / / / / BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +drafts drafts d dr dra draf s ts fts afts BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +/ / / / / / / / / / BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +current current c cu cur curr t nt ent rent BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +/ / / / / / / / / / BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +Internet internet I In Int Inte t et net rnet BLOCKSTART LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +- - - - - - - - - - BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 1 HYPHEN 0 0 +Drafts drafts D Dr Dra Draf s ts fts afts BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +are are a ar are are e re are are BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +draft draft d dr dra draf t ft aft raft BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +documents documents d do doc docu s ts nts ents BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +valid valid v va val vali d id lid alid BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +for for f fo for for r or for for BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +a a a a a a a a a a BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 1 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +maximum maximum m ma max maxi m um mum imum BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +of of o of of of f of of of BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +six six s si six six x ix six six BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +months months m mo mon mont s hs ths nths BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +and and a an and and d nd and and BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +may may m ma may may y ay may may BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 1 1 0 0 0 1 0 0 0 NOPUNCT 0 0 +be be b be be be e be be be BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +updated updated u up upd upda d ed ted ated BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +, , , , , , , , , , BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 COMMA 0 0 +replaced replaced r re rep repl d ed ced aced BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +, , , , , , , , , , BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 COMMA 0 0 +or or o or or or r or or or BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +obsoleted obsoleted o ob obs obso d ed ted eted BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +by by b by by by y by by by BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +other other o ot oth othe r er her ther BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +documents documents d do doc docu s ts nts ents BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +at at a at at at t at at at BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +any any a an any any y ny any any BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +time time t ti tim time e me ime time BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +It it I It It It t It It It BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +is is i is is is s is is is BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +inappropriate inappropriate i in ina inap e te ate iate BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +to to t to to to o to to to BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +use use u us use use e se use use BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Internet internet I In Int Inte t et net rnet BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +- - - - - - - - - - BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 1 HYPHEN 0 0 +Drafts drafts D Dr Dra Draf s ts fts afts BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +as as a as as as s as as as BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +reference reference r re ref refe e ce nce ence BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +material material m ma mat mate l al ial rial BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +or or o or or or r or or or BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +to to t to to to o to to to BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +cite cite c ci cit cite e te ite cite BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +them them t th the them m em hem them BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +other other o ot oth othe r er her ther BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +than than t th tha than n an han than BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +as as a as as as s as as as BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +" " " " " " " " " " BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 QUOTE 0 0 +work work w wo wor work k rk ork work BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +in in i in in in n in in in BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +progress progress p pr pro prog s ss ess ress BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +" " " " " " " " " " BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 QUOTE 0 0 +This this T Th Thi This s is his This BLOCKSTART LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Internet internet I In Int Inte t et net rnet BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +- - - - - - - - - - BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 1 HYPHEN 0 0 +Draft draft D Dr Dra Draf t ft aft raft BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +will will w wi wil will l ll ill will BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +expire expire e ex exp expi e re ire pire BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +on on o on on on n on on on BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +March march M Ma Mar Marc h ch rch arch BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 1 1 0 0 0 1 0 0 0 NOPUNCT 0 0 +10 10 1 10 10 10 0 10 10 10 BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS ALLDIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +, , , , , , , , , , BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 COMMA 0 0 +2020 2020 2 20 202 2020 0 20 020 2020 BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS ALLDIGIT 0 0 0 0 0 1 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +Copyright copyright C Co Cop Copy t ht ght ight BLOCKSTART LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Notice notice N No Not Noti e ce ice tice BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Copyright copyright C Co Cop Copy t ht ght ight BLOCKSTART LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +( ( ( ( ( ( ( ( ( ( BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 OPENBRACKET 0 0 +c c c c c c c c c c BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +) ) ) ) ) ) ) ) ) ) BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 ENDBRACKET 0 0 +2019 2019 2 20 201 2019 9 19 019 2019 BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS ALLDIGIT 0 0 0 0 0 1 0 0 0 0 NOPUNCT 0 0 +IETF ietf I IE IET IETF F TF ETF IETF BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Trust trust T Tr Tru Trus t st ust rust BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +and and a an and and d nd and and BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +the the t th the the e he the the BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +persons persons p pe per pers s ns ons sons BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +identified identified i id ide iden d ed ied fied BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +as as a as as as s as as as BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +the the t th the the e he the the BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +document document d do doc docu t nt ent ment BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +authors authors a au aut auth s rs ors hors BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +All all A Al All All l ll All All BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +rights rights r ri rig righ s ts hts ghts BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +reserved reserved r re res rese d ed ved rved BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +Bernardos bernardos B Be Ber Bern s os dos rdos BLOCKSTART LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +, , , , , , , , , , BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 COMMA 0 0 +et et e et et et t et et et BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +al al a al al al l al al al BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 1 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +Expires expires E Ex Exp Expi s es res ires BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +March march M Ma Mar Marc h ch rch arch BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 1 1 0 0 0 1 0 0 0 NOPUNCT 0 0 +10 10 1 10 10 10 0 10 10 10 BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS ALLDIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +, , , , , , , , , , BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 COMMA 0 0 +2020 2020 2 20 202 2020 0 20 020 2020 BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS ALLDIGIT 0 0 0 0 0 1 0 0 0 0 NOPUNCT 0 0 +[ [ [ [ [ [ [ [ [ [ BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 OPENBRACKET 0 0 +Page page P Pa Pag Page e ge age Page BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +1 1 1 1 1 1 1 1 1 1 BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +] ] ] ] ] ] ] ] ] ] BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 ENDBRACKET 0 0 +Internet internet I In Int Inte t et net rnet BLOCKSTART LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +- - - - - - - - - - BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 1 HYPHEN 0 0 +Draft draft D Dr Dra Draf t ft aft raft BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Fog fog F Fo Fog Fog g og Fog Fog BLOCKSTART LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +RAN ran R RA RAN RAN N AN RAN RAN BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +SFC sfc S SF SFC SFC C FC SFC SFC BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +September september S Se Sep Sept r er ber mber BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 1 0 0 0 0 1 0 0 0 NOPUNCT 0 0 +2019 2019 2 20 201 2019 9 19 019 2019 BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS ALLDIGIT 0 0 0 0 0 1 0 0 0 0 NOPUNCT 0 0 +This this T Th Thi This s is his This BLOCKSTART LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +document document d do doc docu t nt ent ment BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +is is i is is is s is is is BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +subject subject s su sub subj t ct ect ject BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +to to t to to to o to to to BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +BCP bcp B BC BCP BCP P CP BCP BCP BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +78 78 7 78 78 78 8 78 78 78 BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS ALLDIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +and and a an and and d nd and and BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +the the t th the the e he the the BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +IETF ietf I IE IET IETF F TF ETF IETF BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Trust trust T Tr Tru Trus t st ust rust BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +' ' ' ' ' ' ' ' ' ' BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 QUOTE 0 0 +s s s s s s s s s s BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Legal legal L Le Leg Lega l al gal egal BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Provisions provisions P Pr Pro Prov s ns ons ions BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Relating relating R Re Rel Rela g ng ing ting BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +to to t to to to o to to to BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +IETF ietf I IE IET IETF F TF ETF IETF BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Documents documents D Do Doc Docu s ts nts ents BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +( ( ( ( ( ( ( ( ( ( BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 OPENBRACKET 0 0 +https https h ht htt http s ps tps ttps BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 0 NOPUNCT 0 0 +: : : : : : : : : : BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 PUNCT 0 0 +/ / / / / / / / / / BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +/ / / / / / / / / / BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +trustee trustee t tr tru trus e ee tee stee BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +ietf ietf i ie iet ietf f tf etf ietf BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +org org o or org org g rg org org BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +/ / / / / / / / / / BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +license license l li lic lice e se nse ense BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +- - - - - - - - - - BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 1 HYPHEN 0 0 +info info i in inf info o fo nfo info BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 1 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +) ) ) ) ) ) ) ) ) ) BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 ENDBRACKET 0 0 +in in i in in in n in in in BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +effect effect e ef eff effe t ct ect fect BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +on on o on on on n on on on BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +the the t th the the e he the the BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +date date d da dat date e te ate date BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +of of o of of of f of of of BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +publication publication p pu pub publ n on ion tion BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +of of o of of of f of of of BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +this this t th thi this s is his this BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +document document d do doc docu t nt ent ment BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +Please please P Pl Ple Plea e se ase ease BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +review review r re rev revi w ew iew view BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +these these t th the thes e se ese hese BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +documents documents d do doc docu s ts nts ents BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +carefully carefully c ca car care y ly lly ully BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +, , , , , , , , , , BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 COMMA 0 0 +as as a as as as s as as as BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +they they t th the they y ey hey they BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +describe describe d de des desc e be ibe ribe BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +your your y yo you your r ur our your BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +rights rights r ri rig righ s ts hts ghts BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +and and a an and and d nd and and BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +restrictions restrictions r re res rest s ns ons ions BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +with with w wi wit with h th ith with BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +respect respect r re res resp t ct ect pect BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +to to t to to to o to to to BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +this this t th thi this s is his this BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +document document d do doc docu t nt ent ment BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +Code code C Co Cod Code e de ode Code BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Components components C Co Com Comp s ts nts ents BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +extracted extracted e ex ext extr d ed ted cted BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +from from f fr fro from m om rom from BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +this this t th thi this s is his this BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +document document d do doc docu t nt ent ment BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +must must m mu mus must t st ust must BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +include include i in inc incl e de ude lude BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Simplified simplified S Si Sim Simp d ed ied fied BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +BSD bsd B BS BSD BSD D SD BSD BSD BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +License license L Li Lic Lice e se nse ense BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +text text t te tex text t xt ext text BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +as as a as as as s as as as BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +described described d de des desc d ed bed ibed BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +in in i in in in n in in in BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Section section S Se Sec Sect n on ion tion BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +4 4 4 4 4 4 4 4 4 4 BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +e e e e e e e e e e BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +of of o of of of f of of of BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +the the t th the the e he the the BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Trust trust T Tr Tru Trus t st ust rust BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Legal legal L Le Leg Lega l al gal egal BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Provisions provisions P Pr Pro Prov s ns ons ions BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +and and a an and and d nd and and BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +are are a ar are are e re are are BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +provided provided p pr pro prov d ed ded ided BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +without without w wi wit with t ut out hout BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +warranty warranty w wa war warr y ty nty anty BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +as as a as as as s as as as BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +described described d de des desc d ed bed ibed BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +in in i in in in n in in in BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +the the t th the the e he the the BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Simplified simplified S Si Sim Simp d ed ied fied BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +BSD bsd B BS BSD BSD D SD BSD BSD BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +License license L Li Lic Lice e se nse ense BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +Carlos carlos C Ca Car Carl s os los rlos BLOCKSTART LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 1 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +J j J J J J J J J J BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +Bernardos bernardos B Be Ber Bern s os dos rdos BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Universidad universidad U Un Uni Univ d ad dad idad BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Carlos carlos C Ca Car Carl s os los rlos BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 1 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +III iii I II III III I II III III BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +de de d de de de e de de de BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 1 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Madrid madrid M Ma Mad Madr d id rid drid BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 1 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Av av A Av Av Av v Av Av Av BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +Universidad universidad U Un Uni Univ d ad dad idad BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +, , , , , , , , , , BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 COMMA 0 0 +30 30 3 30 30 30 0 30 30 30 BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS ALLDIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Leganes leganes L Le Leg Lega s es nes anes BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +, , , , , , , , , , BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 COMMA 0 0 +Madrid madrid M Ma Mad Madr d id rid drid BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 1 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +28911 28911 2 28 289 2891 1 11 911 8911 BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS ALLDIGIT 0 0 0 0 0 1 0 0 0 0 NOPUNCT 0 0 +Spain spain S Sp Spa Spai n in ain pain BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 1 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Phone phone P Ph Pho Phon e ne one hone BLOCKSTART LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +: : : : : : : : : : BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 PUNCT 0 0 ++34 +34 + +3 +34 +34 4 34 +34 +34 BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +91624 91624 9 91 916 9162 4 24 624 1624 BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS ALLDIGIT 0 0 0 0 0 1 0 0 0 0 NOPUNCT 0 0 +6236 6236 6 62 623 6236 6 36 236 6236 BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS ALLDIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Email email E Em Ema Emai l il ail mail BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +: : : : : : : : : : BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 PUNCT 0 0 +cjbc@it cjbc@it c cj cjb cjbc t it @it c@it BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +uc3m uc3m u uc uc3 uc3m m 3m c3m uc3m BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +es es e es es es s es es es BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +URI uri U UR URI URI I RI URI URI BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 0 1 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +: : : : : : : : : : BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 PUNCT 0 0 +http http h ht htt http p tp ttp http BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 0 NOPUNCT 0 0 +: : : : : : : : : : BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 PUNCT 0 0 +/ / / / / / / / / / BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +/ / / / / / / / / / BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +www www w ww www www w ww www www BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +it it i it it it t it it it BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +uc3m uc3m u uc uc3 uc3m m 3m c3m uc3m BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +es es e es es es s es es es BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +/ / / / / / / / / / BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +cjbc cjbc c cj cjb cjbc c bc jbc cjbc BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +/ / / / / / / / / / BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Akbar akbar A Ak Akb Akba r ar bar kbar BLOCKSTART LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Rahman rahman R Ra Rah Rahm n an man hman BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 1 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +InterDigital interdigital I In Int Inte l al tal ital BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Communications communications C Co Com Comm s ns ons ions BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +, , , , , , , , , , BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 COMMA 0 0 +LLC llc L LL LLC LLC C LC LLC LLC BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +1000 1000 1 10 100 1000 0 00 000 1000 BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS ALLDIGIT 0 0 0 0 0 1 0 0 0 0 NOPUNCT 0 0 +Sherbrooke sherbrooke S Sh She Sher e ke oke ooke BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Street street S St Str Stre t et eet reet BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +West west W We Wes West t st est West BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +, , , , , , , , , , BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 COMMA 0 0 +10th 10th 1 10 10t 10th h th 0th 10th BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +floor floor f fl flo floo r or oor loor BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Montreal montreal M Mo Mon Mont l al eal real BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 1 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +, , , , , , , , , , BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 COMMA 0 0 +Quebec quebec Q Qu Que Queb c ec bec ebec BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +H3A h3a H H3 H3A H3A A 3A H3A H3A BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +3G4 3g4 3 3G 3G4 3G4 4 G4 3G4 3G4 BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Canada canada C Ca Can Cana a da ada nada BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 1 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Email email E Em Ema Emai l il ail mail BLOCKSTART LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +: : : : : : : : : : BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 PUNCT 0 0 +Akbar akbar A Ak Akb Akba r ar bar kbar BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +Rahman@InterDigital rahman@interdigital R Ra Rah Rahm l al tal ital BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +com com c co com com m om com com BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +URI uri U UR URI URI I RI URI URI BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 0 1 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +: : : : : : : : : : BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 PUNCT 0 0 +http http h ht htt http p tp ttp http BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 0 NOPUNCT 0 0 +: : : : : : : : : : BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 PUNCT 0 0 +/ / / / / / / / / / BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +/ / / / / / / / / / BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +www www w ww www www w ww www www BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +InterDigital interdigital I In Int Inte l al tal ital BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +com com c co com com m om com com BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +/ / / / / / / / / / BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Alain alain A Al Ala Alai n in ain lain BLOCKSTART LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 1 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Mourad mourad M Mo Mou Mour d ad rad urad BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +InterDigital interdigital I In Int Inte l al tal ital BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Europe europe E Eu Eur Euro e pe ope rope BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Email email E Em Ema Emai l il ail mail BLOCKSTART LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +: : : : : : : : : : BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 PUNCT 0 0 +Alain alain A Al Ala Alai n in ain lain BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 1 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +Mourad@InterDigital mourad@interdigital M Mo Mou Mour l al tal ital BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +com com c co com com m om com com BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +URI uri U UR URI URI I RI URI URI BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 0 1 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +: : : : : : : : : : BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 PUNCT 0 0 +http http h ht htt http p tp ttp http BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 0 NOPUNCT 0 0 +: : : : : : : : : : BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 PUNCT 0 0 +/ / / / / / / / / / BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +/ / / / / / / / / / BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +www www w ww www www w ww www www BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +InterDigital interdigital I In Int Inte l al tal ital BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +com com c co com com m om com com BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +/ / / / / / / / / / BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 + diff --git a/grobid-trainer/resources/dataset/header/sdo/ietf/corpus/raw/XP015135120.training.header b/grobid-trainer/resources/dataset/header/sdo/ietf/corpus/raw/XP015135120.training.header new file mode 100644 index 0000000000..6cde4cd8b9 --- /dev/null +++ b/grobid-trainer/resources/dataset/header/sdo/ietf/corpus/raw/XP015135120.training.header @@ -0,0 +1,513 @@ +LISP lisp L LI LIS LISP P SP ISP LISP BLOCKSTART LINESTART NEWFONT HIGHERFONT 1 0 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Working working W Wo Wor Work g ng ing king BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Group group G Gr Gro Grou p up oup roup BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +A a A A A A A A A A BLOCKSTART LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +Rodriguez rodriguez R Ro Rod Rodr z ez uez guez BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 1 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +- - - - - - - - - - BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 1 HYPHEN 0 0 +Natal natal N Na Nat Nata l al tal atal BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Internet internet I In Int Inte t et net rnet BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +- - - - - - - - - - BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 1 HYPHEN 0 0 +Draft draft D Dr Dra Draf t ft aft raft BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Cisco cisco C Ci Cis Cisc o co sco isco BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 1 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Systems systems S Sy Sys Syst s ms ems tems BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Intended intended I In Int Inte d ed ded nded BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +status status s st sta stat s us tus atus BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +: : : : : : : : : : BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 PUNCT 0 0 +Experimental experimental E Ex Exp Expe l al tal ntal BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +V v V V V V V V V V BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +Ermagan ermagan E Er Erm Erma n an gan agan BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Expires expires E Ex Exp Expi s es res ires BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +: : : : : : : : : : BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 PUNCT 0 0 +March march M Ma Mar Marc h ch rch arch BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 1 1 0 0 0 1 0 0 0 NOPUNCT 0 0 +14 14 1 14 14 14 4 14 14 14 BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS ALLDIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +, , , , , , , , , , BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 COMMA 0 0 +2020 2020 2 20 202 2020 0 20 020 2020 BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS ALLDIGIT 0 0 0 0 0 1 0 0 0 0 NOPUNCT 0 0 +Google google G Go Goo Goog e le gle ogle BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +J j J J J J J J J J BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +Leong leong L Le Leo Leon g ng ong eong BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 1 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +F f F F F F F F F F BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +Maino maino M Ma Mai Main o no ino aino BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Cisco cisco C Ci Cis Cisc o co sco isco BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 1 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Systems systems S Sy Sys Syst s ms ems tems BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +A a A A A A A A A A BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +Cabellos cabellos C Ca Cab Cabe s os los llos BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +- - - - - - - - - - BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 1 HYPHEN 0 0 +Aparicio aparicio A Ap Apa Apar o io cio icio BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 1 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Technical technical T Te Tec Tech l al cal ical BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +University university U Un Uni Univ y ty ity sity BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +of of o of of of f of of of BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Catalonia catalonia C Ca Cat Cata a ia nia onia BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +S s S S S S S S S S BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +Barkai barkai B Ba Bar Bark i ai kai rkai BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Nexar nexar N Ne Nex Nexa r ar xar exar BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Inc inc I In Inc Inc c nc Inc Inc BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +D d D D D D D D D D BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +Farinacci farinacci F Fa Far Fari i ci cci acci BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +lispers lispers l li lis lisp s rs ers pers BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +net net n ne net net t et net net BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +M m M M M M M M M M BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +Boucadair boucadair B Bo Bou Bouc r ir air dair BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +C c C C C C C C C C BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +Jacquenet jacquenet J Ja Jac Jacq t et net enet BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Orange orange O Or Ora Oran e ge nge ange BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +S s S S S S S S S S BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +Secci secci S Se Sec Secc i ci cci ecci BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Cnam cnam C Cn Cna Cnam m am nam Cnam BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +September september S Se Sep Sept r er ber mber BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 1 0 0 0 0 1 0 0 0 NOPUNCT 0 0 +11 11 1 11 11 11 1 11 11 11 BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS ALLDIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +, , , , , , , , , , BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 COMMA 0 0 +2019 2019 2 20 201 2019 9 19 019 2019 BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS ALLDIGIT 0 0 0 0 0 1 0 0 0 0 NOPUNCT 0 0 +Publish publish P Pu Pub Publ h sh ish lish BLOCKSTART LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +/ / / / / / / / / / BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Subscribe subscribe S Su Sub Subs e be ibe ribe BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Functionality functionality F Fu Fun Func y ty ity lity BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +for for f fo for for r or for for BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +LISP lisp L LI LIS LISP P SP ISP LISP BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +draft draft d dr dra draf t ft aft raft BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +- - - - - - - - - - BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 1 HYPHEN 0 0 +ietf ietf i ie iet ietf f tf etf ietf BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +- - - - - - - - - - BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 1 HYPHEN 0 0 +lisp lisp l li lis lisp p sp isp lisp BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +- - - - - - - - - - BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 1 HYPHEN 0 0 +pubsub pubsub p pu pub pubs b ub sub bsub BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +- - - - - - - - - - BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 1 HYPHEN 0 0 +04 04 0 04 04 04 4 04 04 04 BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS ALLDIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Abstract abstract A Ab Abs Abst t ct act ract BLOCKSTART LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +This this T Th Thi This s is his This BLOCKSTART LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +document document d do doc docu t nt ent ment BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +specifies specifies s sp spe spec s es ies fies BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +an an a an an an n an an an BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +extension extension e ex ext exte n on ion sion BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +to to t to to to o to to to BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +the the t th the the e he the the BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +use use u us use use e se use use BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +of of o of of of f of of of BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Map map M Ma Map Map p ap Map Map BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +- - - - - - - - - - BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 1 HYPHEN 0 0 +Request request R Re Req Requ t st est uest BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +to to t to to to o to to to BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +enable enable e en ena enab e le ble able BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Publish publish P Pu Pub Publ h sh ish lish BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +/ / / / / / / / / / BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Subscribe subscribe S Su Sub Subs e be ibe ribe BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +( ( ( ( ( ( ( ( ( ( BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 OPENBRACKET 0 0 +PubSub pubsub P Pu Pub PubS b ub Sub bSub BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +) ) ) ) ) ) ) ) ) ) BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 ENDBRACKET 0 0 +operation operation o op ope oper n on ion tion BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +for for f fo for for r or for for BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +LISP lisp L LI LIS LISP P SP ISP LISP BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +Status status S St Sta Stat s us tus atus BLOCKSTART LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +of of o of of of f of of of BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +This this T Th Thi This s is his This BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Memo memo M Me Mem Memo o mo emo Memo BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +This this T Th Thi This s is his This BLOCKSTART LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Internet internet I In Int Inte t et net rnet BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +- - - - - - - - - - BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 1 HYPHEN 0 0 +Draft draft D Dr Dra Draf t ft aft raft BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +is is i is is is s is is is BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +submitted submitted s su sub subm d ed ted tted BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +in in i in in in n in in in BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +full full f fu ful full l ll ull full BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +conformance conformance c co con conf e ce nce ance BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +with with w wi wit with h th ith with BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +the the t th the the e he the the BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +provisions provisions p pr pro prov s ns ons ions BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +of of o of of of f of of of BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +BCP bcp B BC BCP BCP P CP BCP BCP BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +78 78 7 78 78 78 8 78 78 78 BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS ALLDIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +and and a an and and d nd and and BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +BCP bcp B BC BCP BCP P CP BCP BCP BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +79 79 7 79 79 79 9 79 79 79 BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS ALLDIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +Internet internet I In Int Inte t et net rnet BLOCKSTART LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +- - - - - - - - - - BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 1 HYPHEN 0 0 +Drafts drafts D Dr Dra Draf s ts fts afts BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +are are a ar are are e re are are BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +working working w wo wor work g ng ing king BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +documents documents d do doc docu s ts nts ents BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +of of o of of of f of of of BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +the the t th the the e he the the BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Internet internet I In Int Inte t et net rnet BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Engineering engineering E En Eng Engi g ng ing ring BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Task task T Ta Tas Task k sk ask Task BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Force force F Fo For Forc e ce rce orce BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +( ( ( ( ( ( ( ( ( ( BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 OPENBRACKET 0 0 +IETF ietf I IE IET IETF F TF ETF IETF BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +) ) ) ) ) ) ) ) ) ) BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 ENDBRACKET 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +Note note N No Not Note e te ote Note BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +that that t th tha that t at hat that BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +other other o ot oth othe r er her ther BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +groups groups g gr gro grou s ps ups oups BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +may may m ma may may y ay may may BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 1 1 0 0 0 1 0 0 0 NOPUNCT 0 0 +also also a al als also o so lso also BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +distribute distribute d di dis dist e te ute bute BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +working working w wo wor work g ng ing king BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +documents documents d do doc docu s ts nts ents BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +as as a as as as s as as as BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Internet internet I In Int Inte t et net rnet BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +- - - - - - - - - - BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 1 HYPHEN 0 0 +Drafts drafts D Dr Dra Draf s ts fts afts BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +The the T Th The The e he The The BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +list list l li lis list t st ist list BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +of of o of of of f of of of BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +current current c cu cur curr t nt ent rent BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Internet internet I In Int Inte t et net rnet BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +- - - - - - - - - - BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 1 HYPHEN 0 0 +Drafts drafts D Dr Dra Draf s ts fts afts BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +is is i is is is s is is is BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +at at a at at at t at at at BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +https https h ht htt http s ps tps ttps BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 0 NOPUNCT 0 0 +: : : : : : : : : : BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 PUNCT 0 0 +/ / / / / / / / / / BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +/ / / / / / / / / / BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +datatracker datatracker d da dat data r er ker cker BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +ietf ietf i ie iet ietf f tf etf ietf BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +org org o or org org g rg org org BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +/ / / / / / / / / / BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +drafts drafts d dr dra draf s ts fts afts BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +/ / / / / / / / / / BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +current current c cu cur curr t nt ent rent BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +/ / / / / / / / / / BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +Internet internet I In Int Inte t et net rnet BLOCKSTART LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +- - - - - - - - - - BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 1 HYPHEN 0 0 +Drafts drafts D Dr Dra Draf s ts fts afts BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +are are a ar are are e re are are BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +draft draft d dr dra draf t ft aft raft BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +documents documents d do doc docu s ts nts ents BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +valid valid v va val vali d id lid alid BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +for for f fo for for r or for for BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +a a a a a a a a a a BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 1 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +maximum maximum m ma max maxi m um mum imum BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +of of o of of of f of of of BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +six six s si six six x ix six six BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +months months m mo mon mont s hs ths nths BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +and and a an and and d nd and and BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +may may m ma may may y ay may may BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 1 1 0 0 0 1 0 0 0 NOPUNCT 0 0 +be be b be be be e be be be BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +updated updated u up upd upda d ed ted ated BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +, , , , , , , , , , BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 COMMA 0 0 +replaced replaced r re rep repl d ed ced aced BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +, , , , , , , , , , BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 COMMA 0 0 +or or o or or or r or or or BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +obsoleted obsoleted o ob obs obso d ed ted eted BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +by by b by by by y by by by BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +other other o ot oth othe r er her ther BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +documents documents d do doc docu s ts nts ents BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +at at a at at at t at at at BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +any any a an any any y ny any any BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +time time t ti tim time e me ime time BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +It it I It It It t It It It BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +is is i is is is s is is is BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +inappropriate inappropriate i in ina inap e te ate iate BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +to to t to to to o to to to BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +use use u us use use e se use use BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Internet internet I In Int Inte t et net rnet BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +- - - - - - - - - - BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 1 HYPHEN 0 0 +Drafts drafts D Dr Dra Draf s ts fts afts BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +as as a as as as s as as as BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +reference reference r re ref refe e ce nce ence BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +material material m ma mat mate l al ial rial BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +or or o or or or r or or or BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +to to t to to to o to to to BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +cite cite c ci cit cite e te ite cite BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +them them t th the them m em hem them BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +other other o ot oth othe r er her ther BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +than than t th tha than n an han than BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +as as a as as as s as as as BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +" " " " " " " " " " BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 QUOTE 0 0 +work work w wo wor work k rk ork work BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +in in i in in in n in in in BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +progress progress p pr pro prog s ss ess ress BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +" " " " " " " " " " BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 QUOTE 0 0 +This this T Th Thi This s is his This BLOCKSTART LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Internet internet I In Int Inte t et net rnet BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +- - - - - - - - - - BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 1 HYPHEN 0 0 +Draft draft D Dr Dra Draf t ft aft raft BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +will will w wi wil will l ll ill will BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +expire expire e ex exp expi e re ire pire BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +on on o on on on n on on on BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +March march M Ma Mar Marc h ch rch arch BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 1 1 0 0 0 1 0 0 0 NOPUNCT 0 0 +14 14 1 14 14 14 4 14 14 14 BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS ALLDIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +, , , , , , , , , , BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 COMMA 0 0 +2020 2020 2 20 202 2020 0 20 020 2020 BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS ALLDIGIT 0 0 0 0 0 1 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +Rodriguez rodriguez R Ro Rod Rodr z ez uez guez BLOCKSTART LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 1 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +- - - - - - - - - - BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 1 HYPHEN 0 0 +Natal natal N Na Nat Nata l al tal atal BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +, , , , , , , , , , BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 COMMA 0 0 +et et e et et et t et et et BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +al al a al al al l al al al BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 1 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +Expires expires E Ex Exp Expi s es res ires BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +March march M Ma Mar Marc h ch rch arch BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 1 1 0 0 0 1 0 0 0 NOPUNCT 0 0 +14 14 1 14 14 14 4 14 14 14 BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS ALLDIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +, , , , , , , , , , BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 COMMA 0 0 +2020 2020 2 20 202 2020 0 20 020 2020 BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS ALLDIGIT 0 0 0 0 0 1 0 0 0 0 NOPUNCT 0 0 +[ [ [ [ [ [ [ [ [ [ BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 OPENBRACKET 0 0 +Page page P Pa Pag Page e ge age Page BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +1 1 1 1 1 1 1 1 1 1 BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +] ] ] ] ] ] ] ] ] ] BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 ENDBRACKET 0 0 +Internet internet I In Int Inte t et net rnet BLOCKSTART LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +- - - - - - - - - - BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 1 HYPHEN 0 0 +Draft draft D Dr Dra Draf t ft aft raft BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +LISP lisp L LI LIS LISP P SP ISP LISP BLOCKSTART LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +- - - - - - - - - - BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 1 HYPHEN 0 0 +PubSub pubsub P Pu Pub PubS b ub Sub bSub BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +September september S Se Sep Sept r er ber mber BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 1 0 0 0 0 1 0 0 0 NOPUNCT 0 0 +2019 2019 2 20 201 2019 9 19 019 2019 BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS ALLDIGIT 0 0 0 0 0 1 0 0 0 0 NOPUNCT 0 0 +Copyright copyright C Co Cop Copy t ht ght ight BLOCKSTART LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Notice notice N No Not Noti e ce ice tice BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Copyright copyright C Co Cop Copy t ht ght ight BLOCKSTART LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +( ( ( ( ( ( ( ( ( ( BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 OPENBRACKET 0 0 +c c c c c c c c c c BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +) ) ) ) ) ) ) ) ) ) BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 ENDBRACKET 0 0 +2019 2019 2 20 201 2019 9 19 019 2019 BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS ALLDIGIT 0 0 0 0 0 1 0 0 0 0 NOPUNCT 0 0 +IETF ietf I IE IET IETF F TF ETF IETF BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Trust trust T Tr Tru Trus t st ust rust BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +and and a an and and d nd and and BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +the the t th the the e he the the BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +persons persons p pe per pers s ns ons sons BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +identified identified i id ide iden d ed ied fied BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +as as a as as as s as as as BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +the the t th the the e he the the BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +document document d do doc docu t nt ent ment BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +authors authors a au aut auth s rs ors hors BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +All all A Al All All l ll All All BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +rights rights r ri rig righ s ts hts ghts BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +reserved reserved r re res rese d ed ved rved BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +This this T Th Thi This s is his This BLOCKSTART LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +document document d do doc docu t nt ent ment BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +is is i is is is s is is is BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +subject subject s su sub subj t ct ect ject BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +to to t to to to o to to to BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +BCP bcp B BC BCP BCP P CP BCP BCP BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +78 78 7 78 78 78 8 78 78 78 BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS ALLDIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +and and a an and and d nd and and BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +the the t th the the e he the the BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +IETF ietf I IE IET IETF F TF ETF IETF BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Trust trust T Tr Tru Trus t st ust rust BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +' ' ' ' ' ' ' ' ' ' BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 QUOTE 0 0 +s s s s s s s s s s BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Legal legal L Le Leg Lega l al gal egal BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Provisions provisions P Pr Pro Prov s ns ons ions BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Relating relating R Re Rel Rela g ng ing ting BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +to to t to to to o to to to BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +IETF ietf I IE IET IETF F TF ETF IETF BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Documents documents D Do Doc Docu s ts nts ents BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +( ( ( ( ( ( ( ( ( ( BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 OPENBRACKET 0 0 +https https h ht htt http s ps tps ttps BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 0 NOPUNCT 0 0 +: : : : : : : : : : BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 PUNCT 0 0 +/ / / / / / / / / / BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +/ / / / / / / / / / BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +trustee trustee t tr tru trus e ee tee stee BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +ietf ietf i ie iet ietf f tf etf ietf BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +org org o or org org g rg org org BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +/ / / / / / / / / / BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +license license l li lic lice e se nse ense BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +- - - - - - - - - - BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 1 HYPHEN 0 0 +info info i in inf info o fo nfo info BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 1 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +) ) ) ) ) ) ) ) ) ) BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 ENDBRACKET 0 0 +in in i in in in n in in in BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +effect effect e ef eff effe t ct ect fect BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +on on o on on on n on on on BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +the the t th the the e he the the BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +date date d da dat date e te ate date BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +of of o of of of f of of of BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +publication publication p pu pub publ n on ion tion BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +of of o of of of f of of of BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +this this t th thi this s is his this BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +document document d do doc docu t nt ent ment BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +Please please P Pl Ple Plea e se ase ease BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +review review r re rev revi w ew iew view BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +these these t th the thes e se ese hese BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +documents documents d do doc docu s ts nts ents BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +carefully carefully c ca car care y ly lly ully BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +, , , , , , , , , , BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 COMMA 0 0 +as as a as as as s as as as BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +they they t th the they y ey hey they BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +describe describe d de des desc e be ibe ribe BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +your your y yo you your r ur our your BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +rights rights r ri rig righ s ts hts ghts BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +and and a an and and d nd and and BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +restrictions restrictions r re res rest s ns ons ions BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +with with w wi wit with h th ith with BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +respect respect r re res resp t ct ect pect BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +to to t to to to o to to to BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +this this t th thi this s is his this BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +document document d do doc docu t nt ent ment BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +Code code C Co Cod Code e de ode Code BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Components components C Co Com Comp s ts nts ents BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +extracted extracted e ex ext extr d ed ted cted BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +from from f fr fro from m om rom from BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +this this t th thi this s is his this BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +document document d do doc docu t nt ent ment BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +must must m mu mus must t st ust must BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +include include i in inc incl e de ude lude BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Simplified simplified S Si Sim Simp d ed ied fied BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +BSD bsd B BS BSD BSD D SD BSD BSD BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +License license L Li Lic Lice e se nse ense BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +text text t te tex text t xt ext text BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +as as a as as as s as as as BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +described described d de des desc d ed bed ibed BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +in in i in in in n in in in BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Section section S Se Sec Sect n on ion tion BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +4 4 4 4 4 4 4 4 4 4 BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +e e e e e e e e e e BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +of of o of of of f of of of BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +the the t th the the e he the the BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Trust trust T Tr Tru Trus t st ust rust BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Legal legal L Le Leg Lega l al gal egal BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Provisions provisions P Pr Pro Prov s ns ons ions BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +and and a an and and d nd and and BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +are are a ar are are e re are are BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +provided provided p pr pro prov d ed ded ided BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +without without w wi wit with t ut out hout BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +warranty warranty w wa war warr y ty nty anty BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +as as a as as as s as as as BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +described described d de des desc d ed bed ibed BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +in in i in in in n in in in BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +the the t th the the e he the the BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Simplified simplified S Si Sim Simp d ed ied fied BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +BSD bsd B BS BSD BSD D SD BSD BSD BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +License license L Li Lic Lice e se nse ense BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +Vina vina V Vi Vin Vina a na ina Vina BLOCKSTART LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 1 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Ermagan ermagan E Er Erm Erma n an gan agan BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Google google G Go Goo Goog e le gle ogle BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +USA usa U US USA USA A SA USA USA BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Email email E Em Ema Emai l il ail mail BLOCKSTART LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +: : : : : : : : : : BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 PUNCT 0 0 +ermagan@gmail ermagan@gmail e er erm erma l il ail mail BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +com com c co com com m om com com BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Johnson johnson J Jo Joh John n on son nson BLOCKSTART LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 1 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Leong leong L Le Leo Leon g ng ong eong BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 1 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Cisco cisco C Ci Cis Cisc o co sco isco BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 1 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Systems systems S Sy Sys Syst s ms ems tems BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +170 170 1 17 170 170 0 70 170 170 BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS ALLDIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Tasman tasman T Ta Tas Tasm n an man sman BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Drive drive D Dr Dri Driv e ve ive rive BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +San san S Sa San San n an San San BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Jose jose J Jo Jos Jose e se ose Jose BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 1 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +, , , , , , , , , , BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 COMMA 0 0 +CA ca C CA CA CA A CA CA CA BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +USA usa U US USA USA A SA USA USA BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Email email E Em Ema Emai l il ail mail BLOCKSTART LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +: : : : : : : : : : BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 PUNCT 0 0 +joleong@cisco joleong@cisco j jo jol jole o co sco isco BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +com com c co com com m om com com BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Fabio fabio F Fa Fab Fabi o io bio abio BLOCKSTART LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 1 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Maino maino M Ma Mai Main o no ino aino BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Cisco cisco C Ci Cis Cisc o co sco isco BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 1 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Systems systems S Sy Sys Syst s ms ems tems BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +170 170 1 17 170 170 0 70 170 170 BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS ALLDIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Tasman tasman T Ta Tas Tasm n an man sman BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Drive drive D Dr Dri Driv e ve ive rive BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +San san S Sa San San n an San San BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Jose jose J Jo Jos Jose e se ose Jose BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 1 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +, , , , , , , , , , BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 COMMA 0 0 +CA ca C CA CA CA A CA CA CA BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +USA usa U US USA USA A SA USA USA BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Email email E Em Ema Emai l il ail mail BLOCKSTART LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +: : : : : : : : : : BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 PUNCT 0 0 +fmaino@cisco fmaino@cisco f fm fma fmai o co sco isco BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +com com c co com com m om com com BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Albert albert A Al Alb Albe t rt ert bert BLOCKSTART LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 1 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Cabellos cabellos C Ca Cab Cabe s os los llos BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +- - - - - - - - - - BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 1 HYPHEN 0 0 +Aparicio aparicio A Ap Apa Apar o io cio icio BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 1 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Technical technical T Te Tec Tech l al cal ical BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +University university U Un Uni Univ y ty ity sity BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +of of o of of of f of of of BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Catalonia catalonia C Ca Cat Cata a ia nia onia BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Barcelona barcelona B Ba Bar Barc a na ona lona BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Spain spain S Sp Spa Spai n in ain pain BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 1 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Email email E Em Ema Emai l il ail mail BLOCKSTART LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +: : : : : : : : : : BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 PUNCT 0 0 +acabello@ac acabello@ac a ac aca acab c ac @ac o@ac BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +upc upc u up upc upc c pc upc upc BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +edu edu e ed edu edu u du edu edu BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Sharon sharon S Sh Sha Shar n on ron aron BLOCKSTART LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 1 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Barkai barkai B Ba Bar Bark i ai kai rkai BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Nexar nexar N Ne Nex Nexa r ar xar exar BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Inc inc I In Inc Inc c nc Inc Inc BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +Email email E Em Ema Emai l il ail mail BLOCKSTART LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +: : : : : : : : : : BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 PUNCT 0 0 +sharon sharon s sh sha shar n on ron aron BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 1 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +barkai@getnexar barkai@getnexar b ba bar bark r ar xar exar BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +com com c co com com m om com com BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Dino dino D Di Din Dino o no ino Dino BLOCKSTART LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 1 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Farinacci farinacci F Fa Far Fari i ci cci acci BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +lispers lispers l li lis lisp s rs ers pers BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +net net n ne net net t et net net BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +San san S Sa San San n an San San BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Jose jose J Jo Jos Jose e se ose Jose BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 1 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +, , , , , , , , , , BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 COMMA 0 0 +CA ca C CA CA CA A CA CA CA BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +USA usa U US USA USA A SA USA USA BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Mohamed mohamed M Mo Moh Moha d ed med amed BLOCKSTART LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 1 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Boucadair boucadair B Bo Bou Bouc r ir air dair BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Orange orange O Or Ora Oran e ge nge ange BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Rennes rennes R Re Ren Renn s es nes nnes BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +35000 35000 3 35 350 3500 0 00 000 5000 BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS ALLDIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +France france F Fr Fra Fran e ce nce ance BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 1 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Email email E Em Ema Emai l il ail mail BLOCKSTART LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +: : : : : : : : : : BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 PUNCT 0 0 +mohamed mohamed m mo moh moha d ed med amed BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 1 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +boucadair@orange boucadair@orange b bo bou bouc e ge nge ange BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +com com c co com com m om com com BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Christian christian C Ch Chr Chri n an ian tian BLOCKSTART LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Jacquenet jacquenet J Ja Jac Jacq t et net enet BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Orange orange O Or Ora Oran e ge nge ange BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Rennes rennes R Re Ren Renn s es nes nnes BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +35000 35000 3 35 350 3500 0 00 000 5000 BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS ALLDIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +France france F Fr Fra Fran e ce nce ance BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 1 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Email email E Em Ema Emai l il ail mail BLOCKSTART LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +: : : : : : : : : : BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 PUNCT 0 0 +christian christian c ch chr chri n an ian tian BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +jacquenet@orange jacquenet@orange j ja jac jacq e ge nge ange BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 1 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +com com c co com com m om com com BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Stefano stefano S St Ste Stef o no ano fano BLOCKSTART LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 1 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Secci secci S Se Sec Secc i ci cci ecci BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Cnam cnam C Cn Cna Cnam m am nam Cnam BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +France france F Fr Fra Fran e ce nce ance BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 1 0 0 INITCAP NODIGIT 0 1 0 0 0 0 0 0 0 0 NOPUNCT 0 0 + diff --git a/grobid-trainer/resources/dataset/header/sdo/ietf/corpus/raw/draft-ietf-bfcpbis-rfc4583bis-27.header b/grobid-trainer/resources/dataset/header/sdo/ietf/corpus/raw/draft-ietf-bfcpbis-rfc4583bis-27.header new file mode 100644 index 0000000000..29dc1f8626 --- /dev/null +++ b/grobid-trainer/resources/dataset/header/sdo/ietf/corpus/raw/draft-ietf-bfcpbis-rfc4583bis-27.header @@ -0,0 +1,450 @@ +BFCPbis bfcpbis B BF BFC BFCP s is bis Pbis BLOCKSTART LINESTART NEWFONT HIGHERFONT 0 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Working working W Wo Wor Work g ng ing king BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Group group G Gr Gro Grou p up oup roup BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +G g G G G G G G G G BLOCKSTART LINESTART SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +Camarillo camarillo C Ca Cam Cama o lo llo illo BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 1 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Internet internet I In Int Inte t et net rnet BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +- - - - - - - - - - BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 1 HYPHEN 0 0 +Draft draft D Dr Dra Draf t ft aft raft BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Ericsson ericsson E Er Eri Eric n on son sson BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Obsoletes obsoletes O Ob Obs Obso s es tes etes BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +: : : : : : : : : : BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 PUNCT 0 0 +4583 4583 4 45 458 4583 3 83 583 4583 BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS ALLDIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +( ( ( ( ( ( ( ( ( ( BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 OPENBRACKET 0 0 +if if i if if if f if if if BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +approved approved a ap app appr d ed ved oved BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +) ) ) ) ) ) ) ) ) ) BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 ENDBRACKET 0 0 +T t T T T T T T T T BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +Kristensen kristensen K Kr Kri Kris n en sen nsen BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Intended intended I In Int Inte d ed ded nded BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +status status s st sta stat s us tus atus BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +: : : : : : : : : : BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 PUNCT 0 0 +Standards standards S St Sta Stan s ds rds ards BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Track track T Tr Tra Trac k ck ack rack BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Cisco cisco C Ci Cis Cisc o co sco isco BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 1 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Expires expires E Ex Exp Expi s es res ires BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +: : : : : : : : : : BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 PUNCT 0 0 +June june J Ju Jun June e ne une June BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 1 0 0 0 0 1 0 0 0 NOPUNCT 0 0 +11 11 1 11 11 11 1 11 11 11 BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS ALLDIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +, , , , , , , , , , BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 COMMA 0 0 +2019 2019 2 20 201 2019 9 19 019 2019 BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS ALLDIGIT 0 0 0 0 0 1 0 0 0 0 NOPUNCT 0 0 +C c C C C C C C C C BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +Holmberg holmberg H Ho Hol Holm g rg erg berg BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Ericsson ericsson E Er Eri Eric n on son sson BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +December december D De Dec Dece r er ber mber BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 0 0 0 0 1 0 0 0 NOPUNCT 0 0 +8 8 8 8 8 8 8 8 8 8 BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +, , , , , , , , , , BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 COMMA 0 0 +2018 2018 2 20 201 2018 8 18 018 2018 BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS ALLDIGIT 0 0 0 0 0 1 0 0 0 0 NOPUNCT 0 0 +Session session S Se Ses Sess n on ion sion BLOCKSTART LINESTART SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Description description D De Des Desc n on ion tion BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Protocol protocol P Pr Pro Prot l ol col ocol BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +( ( ( ( ( ( ( ( ( ( BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 OPENBRACKET 0 0 +SDP sdp S SD SDP SDP P DP SDP SDP BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +) ) ) ) ) ) ) ) ) ) BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 ENDBRACKET 0 0 +Format format F Fo For Form t at mat rmat BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +for for f fo for for r or for for BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Binary binary B Bi Bin Bina y ry ary nary BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Floor floor F Fl Flo Floo r or oor loor BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Control control C Co Con Cont l ol rol trol BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Protocol protocol P Pr Pro Prot l ol col ocol BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +( ( ( ( ( ( ( ( ( ( BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 OPENBRACKET 0 0 +BFCP bfcp B BF BFC BFCP P CP FCP BFCP BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +) ) ) ) ) ) ) ) ) ) BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 ENDBRACKET 0 0 +Streams streams S St Str Stre s ms ams eams BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +draft draft d dr dra draf t ft aft raft BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +- - - - - - - - - - BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 1 HYPHEN 0 0 +ietf ietf i ie iet ietf f tf etf ietf BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +- - - - - - - - - - BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 1 HYPHEN 0 0 +bfcpbis bfcpbis b bf bfc bfcp s is bis pbis BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +- - - - - - - - - - BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 1 HYPHEN 0 0 +rfc4583bis rfc4583bis r rf rfc rfc4 s is bis 3bis BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +- - - - - - - - - - BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 1 HYPHEN 0 0 +27 27 2 27 27 27 7 27 27 27 BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS ALLDIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Abstract abstract A Ab Abs Abst t ct act ract BLOCKSTART LINESTART SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +This this T Th Thi This s is his This BLOCKSTART LINESTART SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +document document d do doc docu t nt ent ment BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +defines defines d de def defi s es nes ines BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +the the t th the the e he the the BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Session session S Se Ses Sess n on ion sion BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Description description D De Des Desc n on ion tion BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Protocol protocol P Pr Pro Prot l ol col ocol BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +( ( ( ( ( ( ( ( ( ( BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 OPENBRACKET 0 0 +SDP sdp S SD SDP SDP P DP SDP SDP BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +) ) ) ) ) ) ) ) ) ) BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 ENDBRACKET 0 0 +offer offer o of off offe r er fer ffer BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +/ / / / / / / / / / BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +answer answer a an ans answ r er wer swer BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +procedures procedures p pr pro proc s es res ures BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +for for f fo for for r or for for BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +negotiating negotiating n ne neg nego g ng ing ting BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +and and a an and and d nd and and BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +establishing establishing e es est esta g ng ing hing BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Binary binary B Bi Bin Bina y ry ary nary BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Floor floor F Fl Flo Floo r or oor loor BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Control control C Co Con Cont l ol rol trol BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Protocol protocol P Pr Pro Prot l ol col ocol BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +( ( ( ( ( ( ( ( ( ( BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 OPENBRACKET 0 0 +BFCP bfcp B BF BFC BFCP P CP FCP BFCP BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +) ) ) ) ) ) ) ) ) ) BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 ENDBRACKET 0 0 +streams streams s st str stre s ms ams eams BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +This this T Th Thi This s is his This BLOCKSTART LINESTART SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +document document d do doc docu t nt ent ment BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +obsoletes obsoletes o ob obs obso s es tes etes BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +RFC rfc R RF RFC RFC C FC RFC RFC BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +4583 4583 4 45 458 4583 3 83 583 4583 BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS ALLDIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +Changes changes C Ch Cha Chan s es ges nges BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +from from f fr fro from m om rom from BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +RFC rfc R RF RFC RFC C FC RFC RFC BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +4583 4583 4 45 458 4583 3 83 583 4583 BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS ALLDIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +are are a ar are are e re are are BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +summarized summarized s su sum summ d ed zed ized BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +in in i in in in n in in in BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Section section S Se Sec Sect n on ion tion BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +14 14 1 14 14 14 4 14 14 14 BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS ALLDIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +Status status S St Sta Stat s us tus atus BLOCKSTART LINESTART SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +of of o of of of f of of of BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +This this T Th Thi This s is his This BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Memo memo M Me Mem Memo o mo emo Memo BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +This this T Th Thi This s is his This BLOCKSTART LINESTART SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Internet internet I In Int Inte t et net rnet BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +- - - - - - - - - - BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 1 HYPHEN 0 0 +Draft draft D Dr Dra Draf t ft aft raft BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +is is i is is is s is is is BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +submitted submitted s su sub subm d ed ted tted BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +in in i in in in n in in in BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +full full f fu ful full l ll ull full BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +conformance conformance c co con conf e ce nce ance BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +with with w wi wit with h th ith with BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +the the t th the the e he the the BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +provisions provisions p pr pro prov s ns ons ions BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +of of o of of of f of of of BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +BCP bcp B BC BCP BCP P CP BCP BCP BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +78 78 7 78 78 78 8 78 78 78 BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS ALLDIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +and and a an and and d nd and and BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +BCP bcp B BC BCP BCP P CP BCP BCP BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +79 79 7 79 79 79 9 79 79 79 BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS ALLDIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +Internet internet I In Int Inte t et net rnet BLOCKSTART LINESTART SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +- - - - - - - - - - BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 1 HYPHEN 0 0 +Drafts drafts D Dr Dra Draf s ts fts afts BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +are are a ar are are e re are are BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +working working w wo wor work g ng ing king BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +documents documents d do doc docu s ts nts ents BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +of of o of of of f of of of BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +the the t th the the e he the the BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Internet internet I In Int Inte t et net rnet BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Engineering engineering E En Eng Engi g ng ing ring BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Task task T Ta Tas Task k sk ask Task BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Force force F Fo For Forc e ce rce orce BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +( ( ( ( ( ( ( ( ( ( BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 OPENBRACKET 0 0 +IETF ietf I IE IET IETF F TF ETF IETF BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +) ) ) ) ) ) ) ) ) ) BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 ENDBRACKET 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +Note note N No Not Note e te ote Note BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +that that t th tha that t at hat that BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +other other o ot oth othe r er her ther BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +groups groups g gr gro grou s ps ups oups BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +may may m ma may may y ay may may BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 1 1 0 0 0 1 0 0 0 NOPUNCT 0 0 +also also a al als also o so lso also BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +distribute distribute d di dis dist e te ute bute BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +working working w wo wor work g ng ing king BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +documents documents d do doc docu s ts nts ents BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +as as a as as as s as as as BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Internet internet I In Int Inte t et net rnet BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +- - - - - - - - - - BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 1 HYPHEN 0 0 +Drafts drafts D Dr Dra Draf s ts fts afts BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +The the T Th The The e he The The BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +list list l li lis list t st ist list BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +of of o of of of f of of of BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +current current c cu cur curr t nt ent rent BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Internet internet I In Int Inte t et net rnet BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +- - - - - - - - - - BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 1 HYPHEN 0 0 +Drafts drafts D Dr Dra Draf s ts fts afts BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +is is i is is is s is is is BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +at at a at at at t at at at BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +http http h ht htt http p tp ttp http BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 0 NOPUNCT 0 0 +: : : : : : : : : : BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 PUNCT 0 0 +/ / / / / / / / / / BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +/ / / / / / / / / / BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +datatracker datatracker d da dat data r er ker cker BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +ietf ietf i ie iet ietf f tf etf ietf BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +org org o or org org g rg org org BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +/ / / / / / / / / / BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +drafts drafts d dr dra draf s ts fts afts BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +/ / / / / / / / / / BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +current current c cu cur curr t nt ent rent BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +/ / / / / / / / / / BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +Internet internet I In Int Inte t et net rnet BLOCKSTART LINESTART SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +- - - - - - - - - - BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 1 HYPHEN 0 0 +Drafts drafts D Dr Dra Draf s ts fts afts BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +are are a ar are are e re are are BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +draft draft d dr dra draf t ft aft raft BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +documents documents d do doc docu s ts nts ents BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +valid valid v va val vali d id lid alid BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +for for f fo for for r or for for BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +a a a a a a a a a a BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 1 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +maximum maximum m ma max maxi m um mum imum BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +of of o of of of f of of of BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +six six s si six six x ix six six BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +months months m mo mon mont s hs ths nths BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +and and a an and and d nd and and BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +may may m ma may may y ay may may BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 1 1 0 0 0 1 0 0 0 NOPUNCT 0 0 +be be b be be be e be be be BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +updated updated u up upd upda d ed ted ated BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +, , , , , , , , , , BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 COMMA 0 0 +replaced replaced r re rep repl d ed ced aced BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +, , , , , , , , , , BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 COMMA 0 0 +or or o or or or r or or or BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +obsoleted obsoleted o ob obs obso d ed ted eted BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +by by b by by by y by by by BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +other other o ot oth othe r er her ther BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +documents documents d do doc docu s ts nts ents BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +at at a at at at t at at at BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +any any a an any any y ny any any BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +time time t ti tim time e me ime time BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +It it I It It It t It It It BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +is is i is is is s is is is BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +inappropriate inappropriate i in ina inap e te ate iate BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +to to t to to to o to to to BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +use use u us use use e se use use BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Internet internet I In Int Inte t et net rnet BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +- - - - - - - - - - BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 1 HYPHEN 0 0 +Drafts drafts D Dr Dra Draf s ts fts afts BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +as as a as as as s as as as BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +reference reference r re ref refe e ce nce ence BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +material material m ma mat mate l al ial rial BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +or or o or or or r or or or BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +to to t to to to o to to to BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +cite cite c ci cit cite e te ite cite BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +them them t th the them m em hem them BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +other other o ot oth othe r er her ther BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +than than t th tha than n an han than BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +as as a as as as s as as as BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +" " " " " " " " " " BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 QUOTE 0 0 +work work w wo wor work k rk ork work BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +in in i in in in n in in in BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +progress progress p pr pro prog s ss ess ress BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +" " " " " " " " " " BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 QUOTE 0 0 +This this T Th Thi This s is his This BLOCKSTART LINESTART SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Internet internet I In Int Inte t et net rnet BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +- - - - - - - - - - BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 1 HYPHEN 0 0 +Draft draft D Dr Dra Draf t ft aft raft BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +will will w wi wil will l ll ill will BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +expire expire e ex exp expi e re ire pire BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +on on o on on on n on on on BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +June june J Ju Jun June e ne une June BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 1 0 0 0 0 1 0 0 0 NOPUNCT 0 0 +11 11 1 11 11 11 1 11 11 11 BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS ALLDIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +, , , , , , , , , , BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 COMMA 0 0 +2019 2019 2 20 201 2019 9 19 019 2019 BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS ALLDIGIT 0 0 0 0 0 1 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +Copyright copyright C Co Cop Copy t ht ght ight BLOCKSTART LINESTART SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Notice notice N No Not Noti e ce ice tice BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Copyright copyright C Co Cop Copy t ht ght ight BLOCKSTART LINESTART SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +( ( ( ( ( ( ( ( ( ( BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 OPENBRACKET 0 0 +c c c c c c c c c c BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +) ) ) ) ) ) ) ) ) ) BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 ENDBRACKET 0 0 +2018 2018 2 20 201 2018 8 18 018 2018 BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS ALLDIGIT 0 0 0 0 0 1 0 0 0 0 NOPUNCT 0 0 +IETF ietf I IE IET IETF F TF ETF IETF BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Trust trust T Tr Tru Trus t st ust rust BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +and and a an and and d nd and and BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +the the t th the the e he the the BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +persons persons p pe per pers s ns ons sons BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +identified identified i id ide iden d ed ied fied BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +as as a as as as s as as as BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +the the t th the the e he the the BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +document document d do doc docu t nt ent ment BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +authors authors a au aut auth s rs ors hors BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +All all A Al All All l ll All All BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +rights rights r ri rig righ s ts hts ghts BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +reserved reserved r re res rese d ed ved rved BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +This this T Th Thi This s is his This BLOCKSTART LINESTART SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +document document d do doc docu t nt ent ment BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +is is i is is is s is is is BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +subject subject s su sub subj t ct ect ject BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +to to t to to to o to to to BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +BCP bcp B BC BCP BCP P CP BCP BCP BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +78 78 7 78 78 78 8 78 78 78 BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS ALLDIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +and and a an and and d nd and and BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +the the t th the the e he the the BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +IETF ietf I IE IET IETF F TF ETF IETF BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Trust trust T Tr Tru Trus t st ust rust BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +' ' ' ' ' ' ' ' ' ' BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 QUOTE 0 0 +s s s s s s s s s s BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Legal legal L Le Leg Lega l al gal egal BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Provisions provisions P Pr Pro Prov s ns ons ions BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Relating relating R Re Rel Rela g ng ing ting BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +to to t to to to o to to to BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +IETF ietf I IE IET IETF F TF ETF IETF BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Documents documents D Do Doc Docu s ts nts ents BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +( ( ( ( ( ( ( ( ( ( BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 OPENBRACKET 0 0 +http http h ht htt http p tp ttp http BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 0 NOPUNCT 0 0 +: : : : : : : : : : BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 PUNCT 0 0 +/ / / / / / / / / / BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +/ / / / / / / / / / BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +trustee trustee t tr tru trus e ee tee stee BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +ietf ietf i ie iet ietf f tf etf ietf BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +org org o or org org g rg org org BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +/ / / / / / / / / / BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +license license l li lic lice e se nse ense BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +- - - - - - - - - - BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 1 HYPHEN 0 0 +info info i in inf info o fo nfo info BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 1 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +) ) ) ) ) ) ) ) ) ) BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 ENDBRACKET 0 0 +in in i in in in n in in in BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +effect effect e ef eff effe t ct ect fect BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +on on o on on on n on on on BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +the the t th the the e he the the BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +date date d da dat date e te ate date BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +of of o of of of f of of of BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +publication publication p pu pub publ n on ion tion BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +of of o of of of f of of of BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +this this t th thi this s is his this BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +document document d do doc docu t nt ent ment BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +Please please P Pl Ple Plea e se ase ease BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +review review r re rev revi w ew iew view BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +these these t th the thes e se ese hese BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +documents documents d do doc docu s ts nts ents BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Camarillo camarillo C Ca Cam Cama o lo llo illo BLOCKSTART LINESTART SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 1 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +, , , , , , , , , , BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 COMMA 0 0 +et et e et et et t et et et BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +al al a al al al l al al al BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 1 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +Expires expires E Ex Exp Expi s es res ires BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +June june J Ju Jun June e ne une June BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 1 0 0 0 0 1 0 0 0 NOPUNCT 0 0 +11 11 1 11 11 11 1 11 11 11 BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS ALLDIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +, , , , , , , , , , BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 COMMA 0 0 +2019 2019 2 20 201 2019 9 19 019 2019 BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS ALLDIGIT 0 0 0 0 0 1 0 0 0 0 NOPUNCT 0 0 +[ [ [ [ [ [ [ [ [ [ BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 OPENBRACKET 0 0 +Page page P Pa Pag Page e ge age Page BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +1 1 1 1 1 1 1 1 1 1 BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +] ] ] ] ] ] ] ] ] ] BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 ENDBRACKET 0 0 +Internet internet I In Int Inte t et net rnet BLOCKSTART LINESTART SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +- - - - - - - - - - BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 1 HYPHEN 0 0 +Draft draft D Dr Dra Draf t ft aft raft BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +BFCP bfcp B BF BFC BFCP P CP FCP BFCP BLOCKSTART LINESTART SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +December december D De Dec Dece r er ber mber BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 0 0 0 0 1 0 0 0 NOPUNCT 0 0 +2018 2018 2 20 201 2018 8 18 018 2018 BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS ALLDIGIT 0 0 0 0 0 1 0 0 0 0 NOPUNCT 0 0 +carefully carefully c ca car care y ly lly ully BLOCKSTART LINESTART SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +, , , , , , , , , , BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 COMMA 0 0 +as as a as as as s as as as BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +they they t th the they y ey hey they BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +describe describe d de des desc e be ibe ribe BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +your your y yo you your r ur our your BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +rights rights r ri rig righ s ts hts ghts BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +and and a an and and d nd and and BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +restrictions restrictions r re res rest s ns ons ions BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +with with w wi wit with h th ith with BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +respect respect r re res resp t ct ect pect BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +to to t to to to o to to to BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +this this t th thi this s is his this BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +document document d do doc docu t nt ent ment BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +Code code C Co Cod Code e de ode Code BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Components components C Co Com Comp s ts nts ents BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +extracted extracted e ex ext extr d ed ted cted BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +from from f fr fro from m om rom from BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +this this t th thi this s is his this BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +document document d do doc docu t nt ent ment BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +must must m mu mus must t st ust must BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +include include i in inc incl e de ude lude BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Simplified simplified S Si Sim Simp d ed ied fied BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +BSD bsd B BS BSD BSD D SD BSD BSD BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +License license L Li Lic Lice e se nse ense BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +text text t te tex text t xt ext text BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +as as a as as as s as as as BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +described described d de des desc d ed bed ibed BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +in in i in in in n in in in BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Section section S Se Sec Sect n on ion tion BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +4 4 4 4 4 4 4 4 4 4 BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +e e e e e e e e e e BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +of of o of of of f of of of BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +the the t th the the e he the the BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Trust trust T Tr Tru Trus t st ust rust BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Legal legal L Le Leg Lega l al gal egal BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Provisions provisions P Pr Pro Prov s ns ons ions BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +and and a an and and d nd and and BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +are are a ar are are e re are are BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +provided provided p pr pro prov d ed ded ided BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +without without w wi wit with t ut out hout BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +warranty warranty w wa war warr y ty nty anty BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +as as a as as as s as as as BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +described described d de des desc d ed bed ibed BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +in in i in in in n in in in BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +the the t th the the e he the the BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Simplified simplified S Si Sim Simp d ed ied fied BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +BSD bsd B BS BSD BSD D SD BSD BSD BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +License license L Li Lic Lice e se nse ense BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +Gonzalo gonzalo G Go Gon Gonz o lo alo zalo BLOCKSTART LINESTART SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 1 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Camarillo camarillo C Ca Cam Cama o lo llo illo BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 1 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Ericsson ericsson E Er Eri Eric n on son sson BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Hirsalantie hirsalantie H Hi Hir Hirs e ie tie ntie BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +11 11 1 11 11 11 1 11 11 11 BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS ALLDIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +FI fi F FI FI FI I FI FI FI BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +- - - - - - - - - - BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 1 HYPHEN 0 0 +02420 02420 0 02 024 0242 0 20 420 2420 BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS ALLDIGIT 0 0 0 0 0 1 0 0 0 0 NOPUNCT 0 0 +Jorvas jorvas J Jo Jor Jorv s as vas rvas BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Finland finland F Fi Fin Finl d nd and land BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Email email E Em Ema Emai l il ail mail BLOCKSTART LINESTART SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +: : : : : : : : : : BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 PUNCT 0 0 +Gonzalo gonzalo G Go Gon Gonz o lo alo zalo BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 1 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +Camarillo@ericsson camarillo@ericsson C Ca Cam Cama n on son sson BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +com com c co com com m om com com BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Tom tom T To Tom Tom m om Tom Tom BLOCKSTART LINESTART SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 1 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Kristensen kristensen K Kr Kri Kris n en sen nsen BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Cisco cisco C Ci Cis Cisc o co sco isco BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 1 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Philip philip P Ph Phi Phil p ip lip ilip BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 1 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Pedersens pedersens P Pe Ped Pede s ns ens sens BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +vei vei v ve vei vei i ei vei vei BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +1 1 1 1 1 1 1 1 1 1 BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +NO no N NO NO NO O NO NO NO BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +- - - - - - - - - - BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 1 HYPHEN 0 0 +1366 1366 1 13 136 1366 6 66 366 1366 BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS ALLDIGIT 0 0 0 0 0 1 0 0 0 0 NOPUNCT 0 0 +Lysaker lysaker L Ly Lys Lysa r er ker aker BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Norway norway N No Nor Norw y ay way rway BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Email email E Em Ema Emai l il ail mail BLOCKSTART LINESTART SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +: : : : : : : : : : BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 PUNCT 0 0 +tomkrist@cisco tomkrist@cisco t to tom tomk o co sco isco BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +com com c co com com m om com com BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +, , , , , , , , , , BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 COMMA 0 0 +tomkri@ifi tomkri@ifi t to tom tomk i fi ifi @ifi BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +uio uio u ui uio uio o io uio uio BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +no no n no no no o no no no BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Christer christer C Ch Chr Chri r er ter ster BLOCKSTART LINESTART SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Holmberg holmberg H Ho Hol Holm g rg erg berg BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Ericsson ericsson E Er Eri Eric n on son sson BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Hirsalantie hirsalantie H Hi Hir Hirs e ie tie ntie BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +11 11 1 11 11 11 1 11 11 11 BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS ALLDIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Jorvas jorvas J Jo Jor Jorv s as vas rvas BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +02420 02420 0 02 024 0242 0 20 420 2420 BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS ALLDIGIT 0 0 0 0 0 1 0 0 0 0 NOPUNCT 0 0 +Finland finland F Fi Fin Finl d nd and land BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Email email E Em Ema Emai l il ail mail BLOCKSTART LINESTART SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +: : : : : : : : : : BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 PUNCT 0 0 +christer christer c ch chr chri r er ter ster BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +holmberg@ericsson holmberg@ericsson h ho hol holm n on son sson BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +com com c co com com m om com com BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 + diff --git a/grobid-trainer/resources/dataset/header/sdo/ietf/corpus/raw/draft-ietf-mpls-rmr-12.header b/grobid-trainer/resources/dataset/header/sdo/ietf/corpus/raw/draft-ietf-mpls-rmr-12.header new file mode 100644 index 0000000000..2048c9d09d --- /dev/null +++ b/grobid-trainer/resources/dataset/header/sdo/ietf/corpus/raw/draft-ietf-mpls-rmr-12.header @@ -0,0 +1,531 @@ +MPLS mpls M MP MPL MPLS S LS PLS MPLS BLOCKSTART LINESTART NEWFONT HIGHERFONT 0 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +WG wg W WG WG WG G WG WG WG BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +K k K K K K K K K K BLOCKSTART LINESTART SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +Kompella kompella K Ko Kom Komp a la lla ella BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Internet internet I In Int Inte t et net rnet BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +- - - - - - - - - - BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 1 HYPHEN 0 0 +Draft draft D Dr Dra Draf t ft aft raft BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Juniper juniper J Ju Jun Juni r er per iper BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Networks networks N Ne Net Netw s ks rks orks BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +, , , , , , , , , , BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 COMMA 0 0 +Inc inc I In Inc Inc c nc Inc Inc BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +Intended intended I In Int Inte d ed ded nded BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +status status s st sta stat s us tus atus BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +: : : : : : : : : : BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 PUNCT 0 0 +Standards standards S St Sta Stan s ds rds ards BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Track track T Tr Tra Trac k ck ack rack BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +L l L L L L L L L L BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +Contreras contreras C Co Con Cont s as ras eras BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 1 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Expires expires E Ex Exp Expi s es res ires BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +: : : : : : : : : : BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 PUNCT 0 0 +April april A Ap Apr Apri l il ril pril BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 1 0 0 0 0 1 0 0 0 NOPUNCT 0 0 +25 25 2 25 25 25 5 25 25 25 BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS ALLDIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +, , , , , , , , , , BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 COMMA 0 0 +2020 2020 2 20 202 2020 0 20 020 2020 BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS ALLDIGIT 0 0 0 0 0 1 0 0 0 0 NOPUNCT 0 0 +Telefonica telefonica T Te Tel Tele a ca ica nica BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +October october O Oc Oct Octo r er ber ober BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 0 0 0 0 1 0 0 0 NOPUNCT 0 0 +23 23 2 23 23 23 3 23 23 23 BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS ALLDIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +, , , , , , , , , , BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 COMMA 0 0 +2019 2019 2 20 201 2019 9 19 019 2019 BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS ALLDIGIT 0 0 0 0 0 1 0 0 0 0 NOPUNCT 0 0 +Resilient resilient R Re Res Resi t nt ent ient BLOCKSTART LINESTART SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +MPLS mpls M MP MPL MPLS S LS PLS MPLS BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Rings rings R Ri Rin Ring s gs ngs ings BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +draft draft d dr dra draf t ft aft raft BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +- - - - - - - - - - BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 1 HYPHEN 0 0 +ietf ietf i ie iet ietf f tf etf ietf BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +- - - - - - - - - - BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 1 HYPHEN 0 0 +mpls mpls m mp mpl mpls s ls pls mpls BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +- - - - - - - - - - BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 1 HYPHEN 0 0 +rmr rmr r rm rmr rmr r mr rmr rmr BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +- - - - - - - - - - BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 1 HYPHEN 0 0 +12 12 1 12 12 12 2 12 12 12 BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS ALLDIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Abstract abstract A Ab Abs Abst t ct act ract BLOCKSTART LINESTART SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +This this T Th Thi This s is his This BLOCKSTART LINESTART SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +document document d do doc docu t nt ent ment BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +describes describes d de des desc s es bes ibes BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +the the t th the the e he the the BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +use use u us use use e se use use BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +of of o of of of f of of of BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +the the t th the the e he the the BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +MPLS mpls M MP MPL MPLS S LS PLS MPLS BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +control control c co con cont l ol rol trol BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +and and a an and and d nd and and BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +data data d da dat data a ta ata data BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +planes planes p pl pla plan s es nes anes BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +on on o on on on n on on on BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +ring ring r ri rin ring g ng ing ring BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +topologies topologies t to top topo s es ies gies BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +It it I It It It t It It It BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +describes describes d de des desc s es bes ibes BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +the the t th the the e he the the BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +special special s sp spe spec l al ial cial BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +nature nature n na nat natu e re ure ture BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +of of o of of of f of of of BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +rings rings r ri rin ring s gs ngs ings BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +, , , , , , , , , , BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 COMMA 0 0 +and and a an and and d nd and and BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +proceeds proceeds p pr pro proc s ds eds eeds BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +to to t to to to o to to to BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +show show s sh sho show w ow how show BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +how how h ho how how w ow how how BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +MPLS mpls M MP MPL MPLS S LS PLS MPLS BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +can can c ca can can n an can can BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +be be b be be be e be be be BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +effectively effectively e ef eff effe y ly ely vely BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +used used u us use used d ed sed used BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +in in i in in in n in in in BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +such such s su suc such h ch uch such BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +topologies topologies t to top topo s es ies gies BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +It it I It It It t It It It BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +describes describes d de des desc s es bes ibes BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +how how h ho how how w ow how how BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +MPLS mpls M MP MPL MPLS S LS PLS MPLS BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +rings rings r ri rin ring s gs ngs ings BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +are are a ar are are e re are are BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +configured configured c co con conf d ed red ured BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +, , , , , , , , , , BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 COMMA 0 0 +auto auto a au aut auto o to uto auto BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +- - - - - - - - - - BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 1 HYPHEN 0 0 +discovered discovered d di dis disc d ed red ered BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +and and a an and and d nd and and BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +signaled signaled s si sig sign d ed led aled BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +, , , , , , , , , , BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 COMMA 0 0 +as as a as as as s as as as BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +well well w we wel well l ll ell well BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +as as a as as as s as as as BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +how how h ho how how w ow how how BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +the the t th the the e he the the BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +data data d da dat data a ta ata data BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +plane plane p pl pla plan e ne ane lane BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +works works w wo wor work s ks rks orks BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +Companion companion C Co Com Comp n on ion nion BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +documents documents d do doc docu s ts nts ents BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +describe describe d de des desc e be ibe ribe BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +the the t th the the e he the the BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +details details d de det deta s ls ils ails BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +of of o of of of f of of of BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +discovery discovery d di dis disc y ry ery very BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +and and a an and and d nd and and BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +signaling signaling s si sig sign g ng ing ling BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +for for f fo for for r or for for BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +specific specific s sp spe spec c ic fic ific BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +protocols protocols p pr pro prot s ls ols cols BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +Requirements requirements R Re Req Requ s ts nts ents BLOCKSTART LINESTART SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Language language L La Lan Lang e ge age uage BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +The the T Th The The e he The The BLOCKSTART LINESTART SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +key key k ke key key y ey key key BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +words words w wo wor word s ds rds ords BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +" " " " " " " " " " BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 QUOTE 0 0 +MUST must M MU MUS MUST T ST UST MUST BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +" " " " " " " " " " BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 QUOTE 0 0 +, , , , , , , , , , BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 COMMA 0 0 +" " " " " " " " " " BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 QUOTE 0 0 +MUST must M MU MUS MUST T ST UST MUST BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +NOT not N NO NOT NOT T OT NOT NOT BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +" " " " " " " " " " BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 QUOTE 0 0 +, , , , , , , , , , BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 COMMA 0 0 +" " " " " " " " " " BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 QUOTE 0 0 +REQUIRED required R RE REQ REQU D ED RED IRED BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +" " " " " " " " " " BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 QUOTE 0 0 +, , , , , , , , , , BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 COMMA 0 0 +" " " " " " " " " " BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 QUOTE 0 0 +SHALL shall S SH SHA SHAL L LL ALL HALL BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +" " " " " " " " " " BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 QUOTE 0 0 +, , , , , , , , , , BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 COMMA 0 0 +" " " " " " " " " " BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 QUOTE 0 0 +SHALL shall S SH SHA SHAL L LL ALL HALL BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +NOT not N NO NOT NOT T OT NOT NOT BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +" " " " " " " " " " BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 QUOTE 0 0 +, , , , , , , , , , BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 COMMA 0 0 +" " " " " " " " " " BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 QUOTE 0 0 +SHOULD should S SH SHO SHOU D LD ULD OULD BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +" " " " " " " " " " BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 QUOTE 0 0 +, , , , , , , , , , BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 COMMA 0 0 +" " " " " " " " " " BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 QUOTE 0 0 +SHOULD should S SH SHO SHOU D LD ULD OULD BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +NOT not N NO NOT NOT T OT NOT NOT BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +" " " " " " " " " " BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 QUOTE 0 0 +, , , , , , , , , , BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 COMMA 0 0 +" " " " " " " " " " BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 QUOTE 0 0 +RECOMMENDED recommended R RE REC RECO D ED DED NDED BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +" " " " " " " " " " BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 QUOTE 0 0 +, , , , , , , , , , BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 COMMA 0 0 +" " " " " " " " " " BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 QUOTE 0 0 +MAY may M MA MAY MAY Y AY MAY MAY BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 0 1 1 0 0 0 1 0 0 0 NOPUNCT 0 0 +" " " " " " " " " " BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 QUOTE 0 0 +, , , , , , , , , , BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 COMMA 0 0 +and and a an and and d nd and and BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +" " " " " " " " " " BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 QUOTE 0 0 +OPTIONAL optional O OP OPT OPTI L AL NAL ONAL BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +" " " " " " " " " " BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 QUOTE 0 0 +in in i in in in n in in in BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +this this t th thi this s is his this BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +document document d do doc docu t nt ent ment BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +are are a ar are are e re are are BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +to to t to to to o to to to BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +be be b be be be e be be be BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +interpreted interpreted i in int inte d ed ted eted BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +as as a as as as s as as as BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +described described d de des desc d ed bed ibed BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +in in i in in in n in in in BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +[ [ [ [ [ [ [ [ [ [ BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 OPENBRACKET 0 0 +RFC2119 rfc2119 R RF RFC RFC2 9 19 119 2119 BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 1 0 0 0 0 NOPUNCT 0 0 +] ] ] ] ] ] ] ] ] ] BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 ENDBRACKET 0 0 +. . . . . . . . . . BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +Status status S St Sta Stat s us tus atus BLOCKSTART LINESTART SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +of of o of of of f of of of BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +This this T Th Thi This s is his This BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Memo memo M Me Mem Memo o mo emo Memo BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +This this T Th Thi This s is his This BLOCKSTART LINESTART SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Internet internet I In Int Inte t et net rnet BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +- - - - - - - - - - BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 1 HYPHEN 0 0 +Draft draft D Dr Dra Draf t ft aft raft BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +is is i is is is s is is is BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +submitted submitted s su sub subm d ed ted tted BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +in in i in in in n in in in BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +full full f fu ful full l ll ull full BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +conformance conformance c co con conf e ce nce ance BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +with with w wi wit with h th ith with BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +the the t th the the e he the the BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +provisions provisions p pr pro prov s ns ons ions BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +of of o of of of f of of of BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +BCP bcp B BC BCP BCP P CP BCP BCP BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +78 78 7 78 78 78 8 78 78 78 BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS ALLDIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +and and a an and and d nd and and BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +BCP bcp B BC BCP BCP P CP BCP BCP BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +79 79 7 79 79 79 9 79 79 79 BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS ALLDIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +Internet internet I In Int Inte t et net rnet BLOCKSTART LINESTART SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +- - - - - - - - - - BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 1 HYPHEN 0 0 +Drafts drafts D Dr Dra Draf s ts fts afts BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +are are a ar are are e re are are BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +working working w wo wor work g ng ing king BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +documents documents d do doc docu s ts nts ents BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +of of o of of of f of of of BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +the the t th the the e he the the BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Internet internet I In Int Inte t et net rnet BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Engineering engineering E En Eng Engi g ng ing ring BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Task task T Ta Tas Task k sk ask Task BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Force force F Fo For Forc e ce rce orce BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +( ( ( ( ( ( ( ( ( ( BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 OPENBRACKET 0 0 +IETF ietf I IE IET IETF F TF ETF IETF BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +) ) ) ) ) ) ) ) ) ) BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 ENDBRACKET 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +Note note N No Not Note e te ote Note BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +that that t th tha that t at hat that BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +other other o ot oth othe r er her ther BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +groups groups g gr gro grou s ps ups oups BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +may may m ma may may y ay may may BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 1 1 0 0 0 1 0 0 0 NOPUNCT 0 0 +also also a al als also o so lso also BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +distribute distribute d di dis dist e te ute bute BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +working working w wo wor work g ng ing king BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +documents documents d do doc docu s ts nts ents BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +as as a as as as s as as as BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Internet internet I In Int Inte t et net rnet BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +- - - - - - - - - - BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 1 HYPHEN 0 0 +Drafts drafts D Dr Dra Draf s ts fts afts BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +The the T Th The The e he The The BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +list list l li lis list t st ist list BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +of of o of of of f of of of BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +current current c cu cur curr t nt ent rent BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Internet internet I In Int Inte t et net rnet BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +- - - - - - - - - - BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 1 HYPHEN 0 0 +Drafts drafts D Dr Dra Draf s ts fts afts BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +is is i is is is s is is is BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +at at a at at at t at at at BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +https https h ht htt http s ps tps ttps BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 0 NOPUNCT 0 0 +: : : : : : : : : : BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 PUNCT 0 0 +/ / / / / / / / / / BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +/ / / / / / / / / / BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +datatracker datatracker d da dat data r er ker cker BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +ietf ietf i ie iet ietf f tf etf ietf BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +org org o or org org g rg org org BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +/ / / / / / / / / / BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +drafts drafts d dr dra draf s ts fts afts BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +/ / / / / / / / / / BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +current current c cu cur curr t nt ent rent BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +/ / / / / / / / / / BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +Internet internet I In Int Inte t et net rnet BLOCKSTART LINESTART SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +- - - - - - - - - - BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 1 HYPHEN 0 0 +Drafts drafts D Dr Dra Draf s ts fts afts BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +are are a ar are are e re are are BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +draft draft d dr dra draf t ft aft raft BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +documents documents d do doc docu s ts nts ents BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +valid valid v va val vali d id lid alid BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +for for f fo for for r or for for BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +a a a a a a a a a a BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 1 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +maximum maximum m ma max maxi m um mum imum BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +of of o of of of f of of of BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +six six s si six six x ix six six BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +months months m mo mon mont s hs ths nths BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +and and a an and and d nd and and BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +may may m ma may may y ay may may BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 1 1 0 0 0 1 0 0 0 NOPUNCT 0 0 +be be b be be be e be be be BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +updated updated u up upd upda d ed ted ated BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +, , , , , , , , , , BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 COMMA 0 0 +replaced replaced r re rep repl d ed ced aced BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +, , , , , , , , , , BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 COMMA 0 0 +or or o or or or r or or or BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +obsoleted obsoleted o ob obs obso d ed ted eted BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +by by b by by by y by by by BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +other other o ot oth othe r er her ther BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +documents documents d do doc docu s ts nts ents BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +at at a at at at t at at at BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +any any a an any any y ny any any BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +time time t ti tim time e me ime time BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +It it I It It It t It It It BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +is is i is is is s is is is BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +inappropriate inappropriate i in ina inap e te ate iate BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +to to t to to to o to to to BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +use use u us use use e se use use BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Internet internet I In Int Inte t et net rnet BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +- - - - - - - - - - BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 1 HYPHEN 0 0 +Drafts drafts D Dr Dra Draf s ts fts afts BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +as as a as as as s as as as BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +reference reference r re ref refe e ce nce ence BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +material material m ma mat mate l al ial rial BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +or or o or or or r or or or BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +to to t to to to o to to to BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +cite cite c ci cit cite e te ite cite BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +them them t th the them m em hem them BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +other other o ot oth othe r er her ther BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +than than t th tha than n an han than BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +as as a as as as s as as as BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +" " " " " " " " " " BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 QUOTE 0 0 +work work w wo wor work k rk ork work BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +in in i in in in n in in in BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +progress progress p pr pro prog s ss ess ress BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +" " " " " " " " " " BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 QUOTE 0 0 +This this T Th Thi This s is his This BLOCKSTART LINESTART SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Internet internet I In Int Inte t et net rnet BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +- - - - - - - - - - BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 1 HYPHEN 0 0 +Draft draft D Dr Dra Draf t ft aft raft BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +will will w wi wil will l ll ill will BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +expire expire e ex exp expi e re ire pire BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +on on o on on on n on on on BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +April april A Ap Apr Apri l il ril pril BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 1 0 0 0 0 1 0 0 0 NOPUNCT 0 0 +25 25 2 25 25 25 5 25 25 25 BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS ALLDIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +, , , , , , , , , , BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 COMMA 0 0 +2020 2020 2 20 202 2020 0 20 020 2020 BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS ALLDIGIT 0 0 0 0 0 1 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +Copyright copyright C Co Cop Copy t ht ght ight BLOCKSTART LINESTART SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Notice notice N No Not Noti e ce ice tice BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Copyright copyright C Co Cop Copy t ht ght ight BLOCKSTART LINESTART SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +( ( ( ( ( ( ( ( ( ( BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 OPENBRACKET 0 0 +c c c c c c c c c c BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +) ) ) ) ) ) ) ) ) ) BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 ENDBRACKET 0 0 +2019 2019 2 20 201 2019 9 19 019 2019 BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS ALLDIGIT 0 0 0 0 0 1 0 0 0 0 NOPUNCT 0 0 +IETF ietf I IE IET IETF F TF ETF IETF BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Trust trust T Tr Tru Trus t st ust rust BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +and and a an and and d nd and and BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +the the t th the the e he the the BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +persons persons p pe per pers s ns ons sons BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +identified identified i id ide iden d ed ied fied BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +as as a as as as s as as as BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +the the t th the the e he the the BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +document document d do doc docu t nt ent ment BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +authors authors a au aut auth s rs ors hors BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +All all A Al All All l ll All All BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +rights rights r ri rig righ s ts hts ghts BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +reserved reserved r re res rese d ed ved rved BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +Kompella kompella K Ko Kom Komp a la lla ella BLOCKSTART LINESTART SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +& & & & & & & & & & BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Contreras contreras C Co Con Cont s as ras eras BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 1 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Expires expires E Ex Exp Expi s es res ires BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +April april A Ap Apr Apri l il ril pril BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 1 0 0 0 0 1 0 0 0 NOPUNCT 0 0 +25 25 2 25 25 25 5 25 25 25 BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS ALLDIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +, , , , , , , , , , BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 COMMA 0 0 +2020 2020 2 20 202 2020 0 20 020 2020 BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS ALLDIGIT 0 0 0 0 0 1 0 0 0 0 NOPUNCT 0 0 +[ [ [ [ [ [ [ [ [ [ BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 OPENBRACKET 0 0 +Page page P Pa Pag Page e ge age Page BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +1 1 1 1 1 1 1 1 1 1 BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +] ] ] ] ] ] ] ] ] ] BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 ENDBRACKET 0 0 +Internet internet I In Int Inte t et net rnet BLOCKSTART LINESTART SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +- - - - - - - - - - BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 1 HYPHEN 0 0 +Draft draft D Dr Dra Draf t ft aft raft BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Resilient resilient R Re Res Resi t nt ent ient BLOCKSTART LINESTART SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +MPLS mpls M MP MPL MPLS S LS PLS MPLS BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Rings rings R Ri Rin Ring s gs ngs ings BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +October october O Oc Oct Octo r er ber ober BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 0 0 0 0 1 0 0 0 NOPUNCT 0 0 +2019 2019 2 20 201 2019 9 19 019 2019 BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS ALLDIGIT 0 0 0 0 0 1 0 0 0 0 NOPUNCT 0 0 +This this T Th Thi This s is his This BLOCKSTART LINESTART SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +document document d do doc docu t nt ent ment BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +is is i is is is s is is is BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +subject subject s su sub subj t ct ect ject BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +to to t to to to o to to to BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +BCP bcp B BC BCP BCP P CP BCP BCP BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +78 78 7 78 78 78 8 78 78 78 BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS ALLDIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +and and a an and and d nd and and BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +the the t th the the e he the the BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +IETF ietf I IE IET IETF F TF ETF IETF BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Trust trust T Tr Tru Trus t st ust rust BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +' ' ' ' ' ' ' ' ' ' BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 QUOTE 0 0 +s s s s s s s s s s BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Legal legal L Le Leg Lega l al gal egal BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Provisions provisions P Pr Pro Prov s ns ons ions BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Relating relating R Re Rel Rela g ng ing ting BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +to to t to to to o to to to BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +IETF ietf I IE IET IETF F TF ETF IETF BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Documents documents D Do Doc Docu s ts nts ents BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +( ( ( ( ( ( ( ( ( ( BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 OPENBRACKET 0 0 +https https h ht htt http s ps tps ttps BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 0 NOPUNCT 0 0 +: : : : : : : : : : BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 PUNCT 0 0 +/ / / / / / / / / / BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +/ / / / / / / / / / BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +trustee trustee t tr tru trus e ee tee stee BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +ietf ietf i ie iet ietf f tf etf ietf BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +org org o or org org g rg org org BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +/ / / / / / / / / / BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +license license l li lic lice e se nse ense BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +- - - - - - - - - - BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 1 HYPHEN 0 0 +info info i in inf info o fo nfo info BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 1 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +) ) ) ) ) ) ) ) ) ) BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 ENDBRACKET 0 0 +in in i in in in n in in in BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +effect effect e ef eff effe t ct ect fect BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +on on o on on on n on on on BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +the the t th the the e he the the BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +date date d da dat date e te ate date BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +of of o of of of f of of of BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +publication publication p pu pub publ n on ion tion BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +of of o of of of f of of of BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +this this t th thi this s is his this BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +document document d do doc docu t nt ent ment BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +Please please P Pl Ple Plea e se ase ease BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +review review r re rev revi w ew iew view BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +these these t th the thes e se ese hese BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +documents documents d do doc docu s ts nts ents BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +carefully carefully c ca car care y ly lly ully BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +, , , , , , , , , , BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 COMMA 0 0 +as as a as as as s as as as BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +they they t th the they y ey hey they BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +describe describe d de des desc e be ibe ribe BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +your your y yo you your r ur our your BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +rights rights r ri rig righ s ts hts ghts BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +and and a an and and d nd and and BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +restrictions restrictions r re res rest s ns ons ions BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +with with w wi wit with h th ith with BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +respect respect r re res resp t ct ect pect BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +to to t to to to o to to to BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +this this t th thi this s is his this BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +document document d do doc docu t nt ent ment BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +Code code C Co Cod Code e de ode Code BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Components components C Co Com Comp s ts nts ents BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +extracted extracted e ex ext extr d ed ted cted BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +from from f fr fro from m om rom from BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +this this t th thi this s is his this BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +document document d do doc docu t nt ent ment BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +must must m mu mus must t st ust must BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +include include i in inc incl e de ude lude BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Simplified simplified S Si Sim Simp d ed ied fied BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +BSD bsd B BS BSD BSD D SD BSD BSD BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +License license L Li Lic Lice e se nse ense BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +text text t te tex text t xt ext text BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +as as a as as as s as as as BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +described described d de des desc d ed bed ibed BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +in in i in in in n in in in BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Section section S Se Sec Sect n on ion tion BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +4 4 4 4 4 4 4 4 4 4 BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +e e e e e e e e e e BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +of of o of of of f of of of BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +the the t th the the e he the the BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Trust trust T Tr Tru Trus t st ust rust BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Legal legal L Le Leg Lega l al gal egal BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Provisions provisions P Pr Pro Prov s ns ons ions BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +and and a an and and d nd and and BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +are are a ar are are e re are are BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +provided provided p pr pro prov d ed ded ided BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +without without w wi wit with t ut out hout BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +warranty warranty w wa war warr y ty nty anty BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +as as a as as as s as as as BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +described described d de des desc d ed bed ibed BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +in in i in in in n in in in BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +the the t th the the e he the the BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Simplified simplified S Si Sim Simp d ed ied fied BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +BSD bsd B BS BSD BSD D SD BSD BSD BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +License license L Li Lic Lice e se nse ense BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +Kireeti kireeti K Ki Kir Kire i ti eti eeti BLOCKSTART LINESTART SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Kompella kompella K Ko Kom Komp a la lla ella BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Juniper juniper J Ju Jun Juni r er per iper BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Networks networks N Ne Net Netw s ks rks orks BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +, , , , , , , , , , BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 COMMA 0 0 +Inc inc I In Inc Inc c nc Inc Inc BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +1133 1133 1 11 113 1133 3 33 133 1133 BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS ALLDIGIT 0 0 0 0 0 1 0 0 0 0 NOPUNCT 0 0 +Innovation innovation I In Inn Inno n on ion tion BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Way way W Wa Way Way y ay Way Way BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Sunnyvale sunnyvale S Su Sun Sunn e le ale vale BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +, , , , , , , , , , BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 COMMA 0 0 +CA ca C CA CA CA A CA CA CA BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +94089 94089 9 94 940 9408 9 89 089 4089 BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS ALLDIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +USA usa U US USA USA A SA USA USA BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Email email E Em Ema Emai l il ail mail BLOCKSTART LINESTART SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +: : : : : : : : : : BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 PUNCT 0 0 +kireeti kireeti k ki kir kire i ti eti eeti BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +kompella@gmail kompella@gmail k ko kom komp l il ail mail BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +com com c co com com m om com com BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Luis luis L Lu Lui Luis s is uis Luis BLOCKSTART LINESTART SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 1 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +M m M M M M M M M M BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +Contreras contreras C Co Con Cont s as ras eras BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 1 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Telefonica telefonica T Te Tel Tele a ca ica nica BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Ronda ronda R Ro Ron Rond a da nda onda BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 1 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +de de d de de de e de de de BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 1 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +la la l la la la a la la la BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 1 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Comunicacion comunicacion C Co Com Comu n on ion cion BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Sur sur S Su Sur Sur r ur Sur Sur BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +- - - - - - - - - - BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 1 HYPHEN 0 0 +3 3 3 3 3 3 3 3 3 3 BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +building building b bu bui buil g ng ing ding BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +, , , , , , , , , , BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 COMMA 0 0 +3rd 3rd 3 3r 3rd 3rd d rd 3rd 3rd BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +floor floor f fl flo floo r or oor loor BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Madrid madrid M Ma Mad Madr d id rid drid BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 1 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +28050 28050 2 28 280 2805 0 50 050 8050 BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS ALLDIGIT 0 0 0 0 0 1 0 0 0 0 NOPUNCT 0 0 +Spain spain S Sp Spa Spai n in ain pain BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 1 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Email email E Em Ema Emai l il ail mail BLOCKSTART LINESTART SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +: : : : : : : : : : BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 PUNCT 0 0 +luismiguel luismiguel l lu lui luis l el uel guel BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +contrerasmurillo@telefonica contrerasmurillo@telefonica c co con cont a ca ica nica BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +com com c co com com m om com com BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +URI uri U UR URI URI I RI URI URI BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 0 1 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +: : : : : : : : : : BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 PUNCT 0 0 +http http h ht htt http p tp ttp http BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 0 NOPUNCT 0 0 +: : : : : : : : : : BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 PUNCT 0 0 +/ / / / / / / / / / BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +/ / / / / / / / / / BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +people people p pe peo peop e le ple ople BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +tid tid t ti tid tid d id tid tid BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +es es e es es es s es es es BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +/ / / / / / / / / / BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +LuisM luism L Lu Lui Luis M sM isM uisM BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +Contreras contreras C Co Con Cont s as ras eras BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 1 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +/ / / / / / / / / / BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 + diff --git a/grobid-trainer/resources/dataset/header/sdo/ietf/corpus/raw/ietf-rfc7654.txt.header b/grobid-trainer/resources/dataset/header/sdo/ietf/corpus/raw/ietf-rfc7654.txt.header new file mode 100644 index 0000000000..5ba03f82c7 --- /dev/null +++ b/grobid-trainer/resources/dataset/header/sdo/ietf/corpus/raw/ietf-rfc7654.txt.header @@ -0,0 +1,424 @@ +Internet internet I In Int Inte t et net rnet BLOCKSTART LINESTART NEWFONT HIGHERFONT 0 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Engineering engineering E En Eng Engi g ng ing ring BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Task task T Ta Tas Task k sk ask Task BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Force force F Fo For Forc e ce rce orce BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +( ( ( ( ( ( ( ( ( ( BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 OPENBRACKET 0 0 +IETF ietf I IE IET IETF F TF ETF IETF BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +) ) ) ) ) ) ) ) ) ) BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 ENDBRACKET 0 0 +S s S S S S S S S S BLOCKSTART LINESTART SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +Banks banks B Ba Ban Bank s ks nks anks BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Request request R Re Req Requ t st est uest BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +for for f fo for for r or for for BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Comments comments C Co Com Comm s ts nts ents BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +: : : : : : : : : : BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 PUNCT 0 0 +7654 7654 7 76 765 7654 4 54 654 7654 BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS ALLDIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +VSS vss V VS VSS VSS S SS VSS VSS BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Monitoring monitoring M Mo Mon Moni g ng ing ring BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Category category C Ca Cat Cate y ry ory gory BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +: : : : : : : : : : BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 PUNCT 0 0 +Informational informational I In Inf Info l al nal onal BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +F f F F F F F F F F BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +Calabria calabria C Ca Cal Cala a ia ria bria BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +ISSN issn I IS ISS ISSN N SN SSN ISSN BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +: : : : : : : : : : BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 PUNCT 0 0 +2070 2070 2 20 207 2070 0 70 070 2070 BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS ALLDIGIT 0 0 0 0 0 1 0 0 0 0 NOPUNCT 0 0 +- - - - - - - - - - BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 1 HYPHEN 0 0 +1721 1721 1 17 172 1721 1 21 721 1721 BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS ALLDIGIT 0 0 0 0 0 1 0 0 0 0 NOPUNCT 0 0 +Cisco cisco C Ci Cis Cisc o co sco isco BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 1 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Systems systems S Sy Sys Syst s ms ems tems BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +G g G G G G G G G G BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +Czirjak czirjak C Cz Czi Czir k ak jak rjak BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +R r R R R R R R R R BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +Machat machat M Ma Mac Mach t at hat chat BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Juniper juniper J Ju Jun Juni r er per iper BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Networks networks N Ne Net Netw s ks rks orks BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +October october O Oc Oct Octo r er ber ober BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 0 0 0 0 1 0 0 0 NOPUNCT 0 0 +2015 2015 2 20 201 2015 5 15 015 2015 BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS ALLDIGIT 0 0 0 0 0 1 0 0 0 0 NOPUNCT 0 0 +Benchmarking benchmarking B Be Ben Benc g ng ing king BLOCKSTART LINESTART SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Methodology methodology M Me Met Meth y gy ogy logy BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +for for f fo for for r or for for BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +In in I In In In n In In In BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +- - - - - - - - - - BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 1 HYPHEN 0 0 +Service service S Se Ser Serv e ce ice vice BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Software software S So Sof Soft e re are ware BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Upgrade upgrade U Up Upg Upgr e de ade rade BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +( ( ( ( ( ( ( ( ( ( BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 OPENBRACKET 0 0 +ISSU issu I IS ISS ISSU U SU SSU ISSU BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +) ) ) ) ) ) ) ) ) ) BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 ENDBRACKET 0 0 +Abstract abstract A Ab Abs Abst t ct act ract BLOCKSTART LINESTART SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Modern modern M Mo Mod Mode n rn ern dern BLOCKSTART LINESTART SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +forwarding forwarding f fo for forw g ng ing ding BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +devices devices d de dev devi s es ces ices BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +attempt attempt a at att atte t pt mpt empt BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +to to t to to to o to to to BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +minimize minimize m mi min mini e ze ize mize BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +any any a an any any y ny any any BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +control control c co con cont l ol rol trol BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +- - - - - - - - - - BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 1 HYPHEN 0 0 +and and a an and and d nd and and BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +data data d da dat data a ta ata data BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +- - - - - - - - - - BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 1 HYPHEN 0 0 +plane plane p pl pla plan e ne ane lane BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +disruptions disruptions d di dis disr s ns ons ions BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +while while w wh whi whil e le ile hile BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +performing performing p pe per perf g ng ing ming BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +planned planned p pl pla plan d ed ned nned BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +software software s so sof soft e re are ware BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +changes changes c ch cha chan s es ges nges BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +by by b by by by y by by by BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +implementing implementing i im imp impl g ng ing ting BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +a a a a a a a a a a BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 1 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +technique technique t te tec tech e ue que ique BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +commonly commonly c co com comm y ly nly only BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +known known k kn kno know n wn own nown BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +as as a as as as s as as as BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +In in I In In In n In In In BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +- - - - - - - - - - BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 1 HYPHEN 0 0 +Service service S Se Ser Serv e ce ice vice BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Software software S So Sof Soft e re are ware BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Upgrade upgrade U Up Upg Upgr e de ade rade BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +( ( ( ( ( ( ( ( ( ( BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 OPENBRACKET 0 0 +ISSU issu I IS ISS ISSU U SU SSU ISSU BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +) ) ) ) ) ) ) ) ) ) BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 ENDBRACKET 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +This this T Th Thi This s is his This BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +document document d do doc docu t nt ent ment BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +specifies specifies s sp spe spec s es ies fies BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +a a a a a a a a a a BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 1 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +set set s se set set t et set set BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +of of o of of of f of of of BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +common common c co com comm n on mon mmon BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +methodologies methodologies m me met meth s es ies gies BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +and and a an and and d nd and and BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +procedures procedures p pr pro proc s es res ures BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +designed designed d de des desi d ed ned gned BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +to to t to to to o to to to BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +characterize characterize c ch cha char e ze ize rize BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +the the t th the the e he the the BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +overall overall o ov ove over l ll all rall BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +behavior behavior b be beh beha r or ior vior BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +of of o of of of f of of of BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +a a a a a a a a a a BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 1 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Device device D De Dev Devi e ce ice vice BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Under under U Un Und Unde r er der nder BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Test test T Te Tes Test t st est Test BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +( ( ( ( ( ( ( ( ( ( BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 OPENBRACKET 0 0 +DUT dut D DU DUT DUT T UT DUT DUT BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +) ) ) ) ) ) ) ) ) ) BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 ENDBRACKET 0 0 +, , , , , , , , , , BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 COMMA 0 0 +subject subject s su sub subj t ct ect ject BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +to to t to to to o to to to BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +an an a an an an n an an an BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +ISSU issu I IS ISS ISSU U SU SSU ISSU BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +event event e ev eve even t nt ent vent BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +Status status S St Sta Stat s us tus atus BLOCKSTART LINESTART SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +of of o of of of f of of of BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +This this T Th Thi This s is his This BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Memo memo M Me Mem Memo o mo emo Memo BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +This this T Th Thi This s is his This BLOCKSTART LINESTART SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +document document d do doc docu t nt ent ment BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +is is i is is is s is is is BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +not not n no not not t ot not not BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +an an a an an an n an an an BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Internet internet I In Int Inte t et net rnet BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Standards standards S St Sta Stan s ds rds ards BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Track track T Tr Tra Trac k ck ack rack BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +specification specification s sp spe spec n on ion tion BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +; ; ; ; ; ; ; ; ; ; BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 PUNCT 0 0 +it it i it it it t it it it BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +is is i is is is s is is is BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +published published p pu pub publ d ed hed shed BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +for for f fo for for r or for for BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +informational informational i in inf info l al nal onal BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +purposes purposes p pu pur purp s es ses oses BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +This this T Th Thi This s is his This BLOCKSTART LINESTART SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +document document d do doc docu t nt ent ment BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +is is i is is is s is is is BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +a a a a a a a a a a BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 1 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +product product p pr pro prod t ct uct duct BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +of of o of of of f of of of BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +the the t th the the e he the the BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Internet internet I In Int Inte t et net rnet BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Engineering engineering E En Eng Engi g ng ing ring BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Task task T Ta Tas Task k sk ask Task BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Force force F Fo For Forc e ce rce orce BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +( ( ( ( ( ( ( ( ( ( BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 OPENBRACKET 0 0 +IETF ietf I IE IET IETF F TF ETF IETF BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +) ) ) ) ) ) ) ) ) ) BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 ENDBRACKET 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +It it I It It It t It It It BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +represents represents r re rep repr s ts nts ents BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +the the t th the the e he the the BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +consensus consensus c co con cons s us sus nsus BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +of of o of of of f of of of BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +the the t th the the e he the the BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +IETF ietf I IE IET IETF F TF ETF IETF BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +community community c co com comm y ty ity nity BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +It it I It It It t It It It BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +has has h ha has has s as has has BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +received received r re rec rece d ed ved ived BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +public public p pu pub publ c ic lic blic BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +review review r re rev revi w ew iew view BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +and and a an and and d nd and and BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +has has h ha has has s as has has BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +been been b be bee been n en een been BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +approved approved a ap app appr d ed ved oved BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +for for f fo for for r or for for BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +publication publication p pu pub publ n on ion tion BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +by by b by by by y by by by BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +the the t th the the e he the the BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Internet internet I In Int Inte t et net rnet BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Engineering engineering E En Eng Engi g ng ing ring BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Steering steering S St Ste Stee g ng ing ring BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Group group G Gr Gro Grou p up oup roup BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +( ( ( ( ( ( ( ( ( ( BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 OPENBRACKET 0 0 +IESG iesg I IE IES IESG G SG ESG IESG BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +) ) ) ) ) ) ) ) ) ) BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 ENDBRACKET 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +Not not N No Not Not t ot Not Not BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +all all a al all all l ll all all BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +documents documents d do doc docu s ts nts ents BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +approved approved a ap app appr d ed ved oved BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +by by b by by by y by by by BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +the the t th the the e he the the BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +IESG iesg I IE IES IESG G SG ESG IESG BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +are are a ar are are e re are are BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +a a a a a a a a a a BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 1 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +candidate candidate c ca can cand e te ate date BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +for for f fo for for r or for for BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +any any a an any any y ny any any BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +level level l le lev leve l el vel evel BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +of of o of of of f of of of BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Internet internet I In Int Inte t et net rnet BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Standard standard S St Sta Stan d rd ard dard BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +; ; ; ; ; ; ; ; ; ; BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 PUNCT 0 0 +see see s se see see e ee see see BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Section section S Se Sec Sect n on ion tion BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +2 2 2 2 2 2 2 2 2 2 BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +of of o of of of f of of of BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +RFC rfc R RF RFC RFC C FC RFC RFC BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +5741 5741 5 57 574 5741 1 41 741 5741 BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS ALLDIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +Information information I In Inf Info n on ion tion BLOCKSTART LINESTART SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +about about a ab abo abou t ut out bout BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +the the t th the the e he the the BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +current current c cu cur curr t nt ent rent BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +status status s st sta stat s us tus atus BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +of of o of of of f of of of BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +this this t th thi this s is his this BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +document document d do doc docu t nt ent ment BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +, , , , , , , , , , BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 COMMA 0 0 +any any a an any any y ny any any BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +errata errata e er err erra a ta ata rata BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +, , , , , , , , , , BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 COMMA 0 0 +and and a an and and d nd and and BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +how how h ho how how w ow how how BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +to to t to to to o to to to BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +provide provide p pr pro prov e de ide vide BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +feedback feedback f fe fee feed k ck ack back BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +on on o on on on n on on on BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +it it i it it it t it it it BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +may may m ma may may y ay may may BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 1 1 0 0 0 1 0 0 0 NOPUNCT 0 0 +be be b be be be e be be be BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +obtained obtained o ob obt obta d ed ned ined BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +at at a at at at t at at at BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +http http h ht htt http p tp ttp http BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 0 NOPUNCT 0 0 +: : : : : : : : : : BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 PUNCT 0 0 +/ / / / / / / / / / BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +/ / / / / / / / / / BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +www www w ww www www w ww www www BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +rfc rfc r rf rfc rfc c fc rfc rfc BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +- - - - - - - - - - BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 1 HYPHEN 0 0 +editor editor e ed edi edit r or tor itor BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +org org o or org org g rg org org BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +/ / / / / / / / / / BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +info info i in inf info o fo nfo info BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 1 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +/ / / / / / / / / / BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +rfc7654 rfc7654 r rf rfc rfc7 4 54 654 7654 BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +Banks banks B Ba Ban Bank s ks nks anks BLOCKSTART LINESTART SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +, , , , , , , , , , BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 COMMA 0 0 +et et e et et et t et et et BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +al al a al al al l al al al BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 1 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +Informational informational I In Inf Info l al nal onal BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +[ [ [ [ [ [ [ [ [ [ BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 OPENBRACKET 0 0 +Page page P Pa Pag Page e ge age Page BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +1 1 1 1 1 1 1 1 1 1 BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +] ] ] ] ] ] ] ] ] ] BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 ENDBRACKET 0 0 +RFC rfc R RF RFC RFC C FC RFC RFC BLOCKSTART LINESTART SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +7654 7654 7 76 765 7654 4 54 654 7654 BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS ALLDIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Benchmarking benchmarking B Be Ben Benc g ng ing king BLOCKSTART LINESTART SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Software software S So Sof Soft e re are ware BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Upgrade upgrade U Up Upg Upgr e de ade rade BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +October october O Oc Oct Octo r er ber ober BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 0 0 0 0 1 0 0 0 NOPUNCT 0 0 +2015 2015 2 20 201 2015 5 15 015 2015 BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS ALLDIGIT 0 0 0 0 0 1 0 0 0 0 NOPUNCT 0 0 +Copyright copyright C Co Cop Copy t ht ght ight BLOCKSTART LINESTART SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Notice notice N No Not Noti e ce ice tice BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Copyright copyright C Co Cop Copy t ht ght ight BLOCKSTART LINESTART SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +( ( ( ( ( ( ( ( ( ( BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 OPENBRACKET 0 0 +c c c c c c c c c c BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +) ) ) ) ) ) ) ) ) ) BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 ENDBRACKET 0 0 +2015 2015 2 20 201 2015 5 15 015 2015 BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS ALLDIGIT 0 0 0 0 0 1 0 0 0 0 NOPUNCT 0 0 +IETF ietf I IE IET IETF F TF ETF IETF BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Trust trust T Tr Tru Trus t st ust rust BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +and and a an and and d nd and and BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +the the t th the the e he the the BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +persons persons p pe per pers s ns ons sons BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +identified identified i id ide iden d ed ied fied BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +as as a as as as s as as as BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +the the t th the the e he the the BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +document document d do doc docu t nt ent ment BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +authors authors a au aut auth s rs ors hors BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +All all A Al All All l ll All All BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +rights rights r ri rig righ s ts hts ghts BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +reserved reserved r re res rese d ed ved rved BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +This this T Th Thi This s is his This BLOCKSTART LINESTART SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +document document d do doc docu t nt ent ment BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +is is i is is is s is is is BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +subject subject s su sub subj t ct ect ject BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +to to t to to to o to to to BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +BCP bcp B BC BCP BCP P CP BCP BCP BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +78 78 7 78 78 78 8 78 78 78 BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS ALLDIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +and and a an and and d nd and and BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +the the t th the the e he the the BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +IETF ietf I IE IET IETF F TF ETF IETF BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Trust trust T Tr Tru Trus t st ust rust BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +' ' ' ' ' ' ' ' ' ' BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 QUOTE 0 0 +s s s s s s s s s s BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Legal legal L Le Leg Lega l al gal egal BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Provisions provisions P Pr Pro Prov s ns ons ions BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Relating relating R Re Rel Rela g ng ing ting BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +to to t to to to o to to to BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +IETF ietf I IE IET IETF F TF ETF IETF BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Documents documents D Do Doc Docu s ts nts ents BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +( ( ( ( ( ( ( ( ( ( BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 OPENBRACKET 0 0 +http http h ht htt http p tp ttp http BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 0 NOPUNCT 0 0 +: : : : : : : : : : BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 PUNCT 0 0 +/ / / / / / / / / / BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +/ / / / / / / / / / BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +trustee trustee t tr tru trus e ee tee stee BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +ietf ietf i ie iet ietf f tf etf ietf BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +org org o or org org g rg org org BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +/ / / / / / / / / / BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +license license l li lic lice e se nse ense BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +- - - - - - - - - - BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 1 HYPHEN 0 0 +info info i in inf info o fo nfo info BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 1 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +) ) ) ) ) ) ) ) ) ) BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 ENDBRACKET 0 0 +in in i in in in n in in in BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +effect effect e ef eff effe t ct ect fect BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +on on o on on on n on on on BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +the the t th the the e he the the BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +date date d da dat date e te ate date BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +of of o of of of f of of of BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +publication publication p pu pub publ n on ion tion BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +of of o of of of f of of of BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +this this t th thi this s is his this BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +document document d do doc docu t nt ent ment BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +Please please P Pl Ple Plea e se ase ease BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +review review r re rev revi w ew iew view BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +these these t th the thes e se ese hese BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +documents documents d do doc docu s ts nts ents BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +carefully carefully c ca car care y ly lly ully BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +, , , , , , , , , , BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 COMMA 0 0 +as as a as as as s as as as BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +they they t th the they y ey hey they BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +describe describe d de des desc e be ibe ribe BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +your your y yo you your r ur our your BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +rights rights r ri rig righ s ts hts ghts BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +and and a an and and d nd and and BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +restrictions restrictions r re res rest s ns ons ions BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +with with w wi wit with h th ith with BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +respect respect r re res resp t ct ect pect BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +to to t to to to o to to to BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +this this t th thi this s is his this BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +document document d do doc docu t nt ent ment BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +Code code C Co Cod Code e de ode Code BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Components components C Co Com Comp s ts nts ents BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +extracted extracted e ex ext extr d ed ted cted BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +from from f fr fro from m om rom from BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +this this t th thi this s is his this BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +document document d do doc docu t nt ent ment BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +must must m mu mus must t st ust must BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +include include i in inc incl e de ude lude BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Simplified simplified S Si Sim Simp d ed ied fied BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +BSD bsd B BS BSD BSD D SD BSD BSD BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +License license L Li Lic Lice e se nse ense BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +text text t te tex text t xt ext text BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +as as a as as as s as as as BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +described described d de des desc d ed bed ibed BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +in in i in in in n in in in BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Section section S Se Sec Sect n on ion tion BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +4 4 4 4 4 4 4 4 4 4 BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +e e e e e e e e e e BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +of of o of of of f of of of BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +the the t th the the e he the the BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Trust trust T Tr Tru Trus t st ust rust BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Legal legal L Le Leg Lega l al gal egal BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Provisions provisions P Pr Pro Prov s ns ons ions BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +and and a an and and d nd and and BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +are are a ar are are e re are are BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +provided provided p pr pro prov d ed ded ided BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +without without w wi wit with t ut out hout BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +warranty warranty w wa war warr y ty nty anty BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +as as a as as as s as as as BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +described described d de des desc d ed bed ibed BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +in in i in in in n in in in BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +the the t th the the e he the the BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Simplified simplified S Si Sim Simp d ed ied fied BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +BSD bsd B BS BSD BSD D SD BSD BSD BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +License license L Li Lic Lice e se nse ense BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +Sarah sarah S Sa Sar Sara h ah rah arah BLOCKSTART LINESTART SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 1 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Banks banks B Ba Ban Bank s ks nks anks BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +VSS vss V VS VSS VSS S SS VSS VSS BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Monitoring monitoring M Mo Mon Moni g ng ing ring BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Email email E Em Ema Emai l il ail mail BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +: : : : : : : : : : BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 PUNCT 0 0 +sbanks@encrypted sbanks@encrypted s sb sba sban d ed ted pted BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +net net n ne net net t et net net BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Fernando fernando F Fe Fer Fern o do ndo ando BLOCKSTART LINESTART SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 1 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Calabria calabria C Ca Cal Cala a ia ria bria BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Cisco cisco C Ci Cis Cisc o co sco isco BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 1 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Systems systems S Sy Sys Syst s ms ems tems BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Email email E Em Ema Emai l il ail mail BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +: : : : : : : : : : BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 PUNCT 0 0 +fcalabri@cisco fcalabri@cisco f fc fca fcal o co sco isco BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +com com c co com com m om com com BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Gery gery G Ge Ger Gery y ry ery Gery BLOCKSTART LINESTART SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Czirjak czirjak C Cz Czi Czir k ak jak rjak BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Juniper juniper J Ju Jun Juni r er per iper BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Networks networks N Ne Net Netw s ks rks orks BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Email email E Em Ema Emai l il ail mail BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +: : : : : : : : : : BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 PUNCT 0 0 +gczirjak@juniper gczirjak@juniper g gc gcz gczi r er per iper BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +net net n ne net net t et net net BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Ramdas ramdas R Ra Ram Ramd s as das mdas BLOCKSTART LINESTART SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Machat machat M Ma Mac Mach t at hat chat BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Juniper juniper J Ju Jun Juni r er per iper BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Networks networks N Ne Net Netw s ks rks orks BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Email email E Em Ema Emai l il ail mail BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +: : : : : : : : : : BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 PUNCT 0 0 +rmachat@juniper rmachat@juniper r rm rma rmac r er per iper BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +net net n ne net net t et net net BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 + diff --git a/grobid-trainer/resources/dataset/header/sdo/ietf/corpus/tei/XP015133673.training.header.tei.xml b/grobid-trainer/resources/dataset/header/sdo/ietf/corpus/tei/XP015133673.training.header.tei.xml new file mode 100644 index 0000000000..5c989740b1 --- /dev/null +++ b/grobid-trainer/resources/dataset/header/sdo/ietf/corpus/tei/XP015133673.training.header.tei.xml @@ -0,0 +1,86 @@ +<?xml version="1.0" ?> +<tei xml:space="preserve"> + <teiHeader> + <fileDesc xml:id="XP015133673"/> + </teiHeader> + <text xml:lang="en"> + <front> +<lb/> + + <note type="other">Internet Research Task Force (IRTF)<lb/></note> + + M. Mosko<lb/> + + <note type="doctype">Request for Comments</note>: + + <idno>8569<lb/></idno> + + PARC, Inc.<lb/> Category: Experimental<lb/> I. Solis<lb/> + + <idno type="ISSN">ISSN: 2070-1721<lb/></idno> + + LinkedIn<lb/> C. Wood<lb/> University of California Irvine<lb/> + + <date type="publication">July 2019<lb/></date> + + <docTitle> + <titlePart>Content-Centric Networking (CCNx) Semantics<lb/></titlePart> + </docTitle> + + <div type="abstract">Abstract<lb/> This document describes the core concepts of the Content-Centric<lb/> Networking (CCNx) architecture and presents a network protocol based<lb/> on two messages: Interests and Content Objects. It specifies the set<lb/> of mandatory and optional fields within those messages and describes<lb/> their behavior and interpretation. This architecture and protocol<lb/> specification is independent of a specific wire encoding.<lb/> The protocol also uses a control message called an Interest Return,<lb/> whereby one system can return an Interest message to the previous hop<lb/> due to an error condition. This indicates to the previous hop that<lb/> the current system will not respond to the Interest.<lb/></div> + + <note type="other">This document is a product of the</note> <note type="group">Information-Centric Networking<lb/> Research Group (ICNRG)</note>. <note type="other">The document received wide review among<lb/> ICNRG participants. Two full implementations are in active use and<lb/> have informed the technical maturity of the protocol specification.<lb/></note> + + Mosko, et al.<lb/> Experimental<lb/> [Page 1]<lb/> RFC 8569<lb/> CCNx Semantics<lb/> July 2019<lb/> + + <note type="other">Status of This Memo<lb/> This document is not an Internet Standards Track specification; it is<lb/> published for examination, experimental implementation, and<lb/> evaluation.<lb/> This document defines an Experimental Protocol for the Internet<lb/> community. This document is a product of the Internet Research Task<lb/> Force (IRTF). The IRTF publishes the results of Internet-related<lb/> research and development activities. These results might not be<lb/> suitable for deployment. This RFC represents the consensus of the<lb/> Information-Centric Networking Research Group of the Internet<lb/> Research Task Force (IRTF). Documents approved for publication by<lb/> the IRSG are not candidates for any level of Internet Standard; see<lb/> Section 2 of RFC 7841.<lb/> Information about the current status of this document, any errata,<lb/> and how to provide feedback on it may be obtained at<lb/> https://www.rfc-editor.org/info/rfc8569.<lb/></note> + + Copyright Notice<lb/> + + <note type="copyright">Copyright (c) 2019 IETF Trust and the persons identified as the<lb/> document authors. All rights reserved.<lb/> This document is subject to BCP 78 and the IETF Trust's Legal<lb/> Provisions Relating to IETF Documents<lb/> (https://trustee.ietf.org/license-info) in effect on the date of<lb/> publication of this document. Please review these documents<lb/> carefully, as they describe your rights and restrictions with respect<lb/> to this document.<lb/></note> + + Mosko, et al.<lb/> Experimental<lb/> [Page 2]<lb/> RFC 8569<lb/> CCNx Semantics<lb/> July 2019<lb/> + + <byline> + <docAuthor>Marc Mosko<lb/></docAuthor> + </byline> + + <byline> + <affiliation>PARC, Inc.<lb/></affiliation> + </byline> + + <address>Palo Alto, California 94304<lb/> United States of America<lb/></address> + + <phone>Phone: +01 650-812-4405<lb/></phone> + + <email>Email: marc.mosko@parc.com<lb/></email> + + <byline> + <docAuthor>Ignacio Solis<lb/></docAuthor> + </byline> + + <byline> + <affiliation>LinkedIn<lb/></affiliation> + </byline> + + <address>Mountain View, California 94043<lb/> United States of America<lb/></address> + + <email>Email: nsolis@linkedin.com<lb/></email> + + <byline> + <docAuthor>Christopher A. Wood<lb/> </docAuthor> + </byline> + + <byline> + <affiliation>University of California Irvine<lb/></affiliation> + </byline> + + <address>Irvine, California 92697<lb/> United States of America<lb/></address> + + <phone>Phone: +01 315-806-5939<lb/></phone> + + <email>Email: woodc1@uci.edu</email> + + </front> + </text> +</tei> diff --git a/grobid-trainer/resources/dataset/header/sdo/ietf/corpus/tei/XP015133674.training.header.tei.xml b/grobid-trainer/resources/dataset/header/sdo/ietf/corpus/tei/XP015133674.training.header.tei.xml new file mode 100644 index 0000000000..d5100ef411 --- /dev/null +++ b/grobid-trainer/resources/dataset/header/sdo/ietf/corpus/tei/XP015133674.training.header.tei.xml @@ -0,0 +1,53 @@ +<?xml version="1.0" ?> +<tei xml:space="preserve"> + <teiHeader> + <fileDesc xml:id="XP015133674"/> + </teiHeader> + <text xml:lang="en"> + <front> +<lb/> + + <note type="other">Internet Engineering Task Force (IETF)<lb/></note> + + J. Arkko<lb/> + <note type="doctype">Request for Comments</note>: + <idno>8602<lb/></idno> + + Ericsson<lb/> Updates: 3219<lb/> T. Hardie<lb/> Category: Standards Track<lb/> + + <date type="publication">July 2019<lb/></date> + + <idno>ISSN: 2070-1721<lb/></idno> + + <docTitle> + <titlePart>Update to the Telephony Routing over IP (TRIP) IANA Registry Rules<lb/> regarding Postal Addresses<lb/></titlePart> + </docTitle> + + <div type="abstract">Abstract<lb/> This memo updates the IANA registry rules for the Telephony Routing<lb/> over IP (TRIP) protocol, by no longer requiring that postal addresses<lb/> be included in contact information.<lb/> This memo updates RFC 3219.<lb/></div> + + <note type="other">Status of This Memo<lb/> This is an Internet Standards Track document.<lb/> This document is a product of the Internet Engineering Task Force<lb/> (IETF). It represents the consensus of the IETF community. It has<lb/> received public review and has been approved for publication by the<lb/> Internet Engineering Steering Group (IESG). Further information on<lb/> Internet Standards is available in Section 2 of RFC 7841.<lb/> Information about the current status of this document, any errata,<lb/> and how to provide feedback on it may be obtained at<lb/> https://www.rfc-editor.org/info/rfc8602.<lb/></note> + + Copyright Notice<lb/> + <note type="copyright">Copyright (c) 2019 IETF Trust and the persons identified as the<lb/> document authors. All rights reserved.<lb/> This document is subject to BCP 78 and the IETF Trust's Legal<lb/> Provisions Relating to IETF Documents<lb/> (https://trustee.ietf.org/license-info) in effect on the date of<lb/> publication of this document. Please review these documents<lb/> carefully, as they describe your rights and restrictions with respect<lb/> to this document. Code Components extracted from this document must<lb/> include Simplified BSD License text as described in Section 4.e of<lb/> the Trust Legal Provisions and are provided without warranty as<lb/> described in the Simplified BSD License.<lb/></note> + + <byline> + <docAuthor>Jari Arkko<lb/></docAuthor> + </byline> + + <byline> + <affiliation>Ericsson<lb/></affiliation> + </byline> + + <address>Kauniainen 02700<lb/> Finland<lb/></address> + + <email>Email: jari.arkko@piuha.net<lb/></email> + + <byline> + <docAuthor>Ted Hardie<lb/></docAuthor> + </byline> + + <email>Email: ted.ietf@gmail.com</email> + + </front> + </text> +</tei> diff --git a/grobid-trainer/resources/dataset/header/sdo/ietf/corpus/tei/XP015133675.training.header.tei.xml b/grobid-trainer/resources/dataset/header/sdo/ietf/corpus/tei/XP015133675.training.header.tei.xml new file mode 100644 index 0000000000..bdf244ddd5 --- /dev/null +++ b/grobid-trainer/resources/dataset/header/sdo/ietf/corpus/tei/XP015133675.training.header.tei.xml @@ -0,0 +1,81 @@ +<?xml version="1.0" ?> +<tei xml:space="preserve"> + <teiHeader> + <fileDesc xml:id="XP015133675"/> + </teiHeader> + <text xml:lang="en"> + <front> +<lb/> + <date type="publication">server date 20190710</date>; <date type="download">downloaded by EPO on 20190711<lb/></date> + + <note type="other">Internet Research Task Force (IRTF)<lb/></note> + + M. Mosko<lb/> + + <note type="document_type">Request for Comments</note>: + + <idno>8609<lb/></idno> + + PARC, Inc.<lb/> Category: Experimental<lb/> I. Solis<lb/> + + <idno type="ISSN">ISSN: 2070-1721<lb/></idno> + + LinkedIn<lb/> C. Wood<lb/> University of California Irvine<lb/> + + <date type="publication">July 2019<lb/></date> + + <docTitle> + <titlePart>Content-Centric Networking (CCNx) Messages in TLV Format<lb/></titlePart> + </docTitle> + + <div type="abstract">Abstract<lb/> Content-Centric Networking (CCNx) is a network protocol that uses a<lb/> hierarchical name to forward requests and to match responses to<lb/> requests. This document specifies the encoding of CCNx messages in a<lb/> TLV packet format, including the TLV types used by each message<lb/> element and the encoding of each value. The semantics of CCNx<lb/> messages follow the encoding-independent CCNx Semantics<lb/> specification.<lb/> This document is a product of the Information Centric Networking<lb/> research group (ICNRG). The document received wide review among<lb/> ICNRG participants and has two full implementations currently in<lb/> active use, which have informed the technical maturity of the<lb/> protocol specification.<lb/></div> + + <note type="other">Status of This Memo<lb/> This document is not an Internet Standards Track specification; it is<lb/> published for examination, experimental implementation, and<lb/> evaluation.<lb/> This document defines an Experimental Protocol for the Internet<lb/> community. This document is a product of the Internet Research Task<lb/> Force (IRTF). The IRTF publishes the results of Internet-related<lb/> research and development activities. These results might not be<lb/> suitable for deployment. This RFC represents the consensus of the<lb/> Information-Centric Networking Research Group of the Internet<lb/> Research Task Force (IRTF). Documents approved for publication by<lb/> the IRSG are not candidates for any level of Internet Standard; see<lb/> Section 2 of RFC 7841.<lb/> Information about the current status of this document, any errata,<lb/> and how to provide feedback on it may be obtained at<lb/> https://www.rfc-editor.org/info/rfc8609.<lb/></note> + + Mosko, et al.<lb/> Experimental<lb/> [Page 1]<lb/> RFC 8609<lb/> CCNx TLV<lb/> July 2019<lb/> Copyright Notice<lb/> + + <note type="copyright">Copyright (c) 2019 IETF Trust and the persons identified as the<lb/> document authors. All rights reserved.<lb/> This document is subject to BCP 78 and the IETF Trust's Legal<lb/> Provisions Relating to IETF Documents<lb/> (https://trustee.ietf.org/license-info) in effect on the date of<lb/> publication of this document. Please review these documents<lb/> carefully, as they describe your rights and restrictions with respect<lb/> to this document.</note> + + <byline> + <docAuthor>Marc Mosko<lb/></docAuthor> + </byline> + + <byline> + <affiliation>PARC, Inc.<lb/></affiliation> + </byline> + + <address>Palo Alto, California 94304<lb/> United States of America<lb/></address> + + <phone>Phone: +01 650-812-4405<lb/></phone> + + <email>Email: mmosko@parc.com<lb/></email> + + <byline> + <docAuthor>Ignacio Solis<lb/></docAuthor> + </byline> + + <byline> + <affiliation>LinkedIn<lb/></affiliation> + </byline> + + <address>Mountain View, California 94043<lb/> United States of America<lb/></address> + + <email>Email: nsolis@linkedin.com<lb/></email> + + <byline> + <docAuthor>Christopher A. Wood<lb/></docAuthor> + </byline> + + <byline> + <affiliation>University of California, Irvine<lb/></affiliation> + </byline> + + <address>Irvine, California 92697<lb/> United States of America<lb/></address> + + <phone>Phone: +01 315-806-5939<lb/></phone> + + <email>Email: woodc1@uci.edu</email> + + </front> + </text> +</tei> diff --git a/grobid-trainer/resources/dataset/header/sdo/ietf/corpus/tei/XP015134132.training.header.tei.xml b/grobid-trainer/resources/dataset/header/sdo/ietf/corpus/tei/XP015134132.training.header.tei.xml new file mode 100644 index 0000000000..8666ec7239 --- /dev/null +++ b/grobid-trainer/resources/dataset/header/sdo/ietf/corpus/tei/XP015134132.training.header.tei.xml @@ -0,0 +1,48 @@ +<?xml version="1.0" ?> +<tei xml:space="preserve"> + <teiHeader> + <fileDesc xml:id="XP015134132"/> + </teiHeader> + <text xml:lang="en"> + <front> +<lb/> + + Network Working Group<lb/> I. Learmonth<lb/> + <note type="doctype">Internet-Draft<lb/></note> + + Tor Project<lb/> Intended status: Informational<lb/> + <date>July 8, 2019<lb/></date> + + Expires: January 9, 2020<lb/> + <docTitle> + <titlePart>Guidelines for Performing Safe Measurement on the Internet<lb/></titlePart> + </docTitle> + + <idno>draft-irtf-pearg-safe-internet-measurement-01<lb/></idno> + + <div type="abstract">Abstract<lb/> Researchers from industry and academia often use Internet<lb/> measurements as part of their work. While these measurements can<lb/> give insight into the functioning and usage of the Internet, they can<lb/> come at the cost of user privacy. This document describes guidelines<lb/> for ensuring that such measurements can be carried out safely.<lb/></div> + + <note type="other">Note<lb/> Comments are solicited and should be addressed to the research<lb/> group's mailing list at pearg@irtf.org and/or the author(s).<lb/> The sources for this draft are at:<lb/> https://github.com/irl/draft-safe-internet-measurement<lb/> Status of This Memo<lb/> This Internet-Draft is submitted in full conformance with the<lb/> provisions of BCP 78 and BCP 79.<lb/> Internet-Drafts are working documents of the Internet Engineering<lb/> Task Force (IETF). Note that other groups may also distribute<lb/> working documents as Internet-Drafts. The list of current Internet-<lb/>Drafts is at https://datatracker.ietf.org/drafts/current/.<lb/> Internet-Drafts are draft documents valid for a maximum of six months<lb/> and may be updated, replaced, or obsoleted by other documents at any<lb/> time. It is inappropriate to use Internet-Drafts as reference<lb/> material or to cite them other than as "work in progress."<lb/> This Internet-Draft will expire on January 9, 2020.<lb/></note> + + Copyright Notice<lb/> + <note type="copyright">Copyright (c) 2019 IETF Trust and the persons identified as the<lb/> document authors. All rights reserved.<lb/></note> + + Learmonth<lb/> Expires January 9, 2020<lb/> [Page 1]<lb/> + <note type="doctype">Internet-Draft<lb/></note> + + Safe Internet Measurement<lb/> July 2019<lb/> + <note type="copyright">This document is subject to BCP 78 and the IETF Trust's Legal<lb/> Provisions Relating to IETF Documents<lb/> (https://trustee.ietf.org/license-info) in effect on the date of<lb/> publication of this document. Please review these documents<lb/> carefully, as they describe your rights and restrictions with respect<lb/> to this document.<lb/></note> + + <byline> + <docAuthor>Iain R. Learmonth<lb/></docAuthor> + </byline> + + <byline> + <affiliation>Tor Project<lb/></affiliation> + </byline> + + <email>Email: irl@torproject.org</email> + + </front> + </text> +</tei> diff --git a/grobid-trainer/resources/dataset/header/sdo/ietf/corpus/tei/XP015134608.training.header.tei.xml b/grobid-trainer/resources/dataset/header/sdo/ietf/corpus/tei/XP015134608.training.header.tei.xml new file mode 100644 index 0000000000..dc28532c9d --- /dev/null +++ b/grobid-trainer/resources/dataset/header/sdo/ietf/corpus/tei/XP015134608.training.header.tei.xml @@ -0,0 +1,67 @@ +<?xml version="1.0" ?> +<tei xml:space="preserve"> + <teiHeader> + <fileDesc xml:id="XP015134608"/> + </teiHeader> + <text xml:lang="en"> + <front> +<lb/> + + NFSv4<lb/> D. Noveck, Ed.<lb/> + + <note type="doctype">Internet-Draft<lb/></note> + + NetApp<lb/> Obsoletes: 5661 (if approved)<lb/> C. Lever<lb/> Intended status: Standards Track<lb/> ORACLE<lb/> Expires: February 5, 2020<lb/> + + <date>August 4, 2019<lb/></date> + + <docTitle> + <titlePart>Network File System (NFS) Version 4 Minor Version 1 Protocol<lb/></titlePart> + </docTitle> + + <idno>draft-ietf-nfsv4-rfc5661sesqui-msns-01<lb/></idno> + + <div type="abstract">Abstract<lb/> This document describes the Network File System (NFS) version 4 minor<lb/> version 1, including features retained from the base protocol (NFS<lb/> version 4 minor version 0, which is specified in RFC 7530) and<lb/> protocol extensions made subsequently. The later minor version has<lb/> no dependencies on NFS version 4 minor version 0, and is considered a<lb/> separate protocol.<lb/> This document obsoletes RFC5661. It substantialy revises the<lb/> treatment of features relating to multi-server namesapce superseding<lb/> the description of those features appearing in RFC5661.<lb/></div> + + <note type="other">Status of This Memo<lb/> This Internet-Draft is submitted in full conformance with the<lb/> provisions of BCP 78 and BCP 79.<lb/> Internet-Drafts are working documents of the Internet Engineering<lb/> Task Force (IETF). Note that other groups may also distribute<lb/> working documents as Internet-Drafts. The list of current Internet-<lb/>Drafts is at https://datatracker.ietf.org/drafts/current/.<lb/> Internet-Drafts are draft documents valid for a maximum of six months<lb/> and may be updated, replaced, or obsoleted by other documents at any<lb/> time. It is inappropriate to use Internet-Drafts as reference<lb/> material or to cite them other than as "work in progress."<lb/> This Internet-Draft will expire on February 5, 2020.<lb/></note> + + Copyright Notice<lb/> + <note type="copyright">Copyright (c) 2019 IETF Trust and the persons identified as the<lb/> document authors. All rights reserved.<lb/> This document is subject to BCP 78 and the IETF Trust's Legal<lb/> Provisions Relating to IETF Documents<lb/> (https://trustee.ietf.org/license-info) in effect on the date of<lb/></note> + + Noveck & Lever<lb/> Expires February 5, 2020<lb/> [Page 1]<lb/> + + <note type="doctype">Internet-Draft<lb/></note> + + NFSv4.1 with Namespace Update<lb/> August 2019<lb/> + + <note type="copyright">publication of this document. Please review these documents<lb/> carefully, as they describe your rights and restrictions with respect<lb/> to this document. Code Components extracted from this document must<lb/> include Simplified BSD License text as described in Section 4.e of<lb/> the Trust Legal Provisions and are provided without warranty as<lb/> described in the Simplified BSD License.<lb/> This document may contain material from IETF Documents or IETF<lb/> Contributions published or made publicly available before November<lb/> 10, 2008. The person(s) controlling the copyright in some of this<lb/> material may not have granted the IETF Trust the right to allow<lb/> modifications of such material outside the IETF Standards Process.<lb/> Without obtaining an adequate license from the person(s) controlling<lb/> the copyright in such materials, this document may not be modified<lb/> outside the IETF Standards Process, and derivative works of it may<lb/> not be created outside the IETF Standards Process, except to format<lb/> it for publication as an RFC or to translate it into languages other<lb/> than English.<lb/></note> + + <byline> + <docAuthor>David Noveck (editor)<lb/></docAuthor> + </byline> + + <byline> + <affiliation>NetApp<lb/> </affiliation> + </byline> + + <address>1601 Trapelo Road, Suite 16<lb/> Waltham, MA 02451<lb/> USA<lb/> ></address> + + <phone>Phone: +1-781-768-5347<lb/></phone> + <email>EMail: dnoveck@netapp.com<lb/></email> + + <byline> + <docAuthor>Charles Lever<lb/></docAuthor> + </byline> + + <byline> + <affiliation>Oracle Corporation<lb/></affiliation> + </byline> + + <address>1015 Granger Avenue<lb/> Ann Arbor, MI 48104<lb/> United States of America<lb/></address> + + <phone>Phone: +1 248 614 5091<lb/></phone> + <email>EMail: chuck.lever@oracle.com</email> + + </front> + </text> +</tei> diff --git a/grobid-trainer/resources/dataset/header/sdo/ietf/corpus/tei/XP015134658.training.header.tei.xml b/grobid-trainer/resources/dataset/header/sdo/ietf/corpus/tei/XP015134658.training.header.tei.xml new file mode 100644 index 0000000000..bdf5355a60 --- /dev/null +++ b/grobid-trainer/resources/dataset/header/sdo/ietf/corpus/tei/XP015134658.training.header.tei.xml @@ -0,0 +1,84 @@ +<?xml version="1.0" ?> +<tei xml:space="preserve"> + <teiHeader> + <fileDesc xml:id="XP015134658"/> + </teiHeader> + <text xml:lang="en"> + <front> +<lb/> + + Network Work group<lb/> N. Nainar<lb/> + <note type="doctype">Internet-Draft<lb/></note> + + C. Pignataro<lb/> Updates: 8287 (if approved)<lb/> Cisco Systems, Inc.<lb/> Intended status: Standards Track<lb/> F. Iqbal<lb/> Expires: February 9, 2020<lb/> Individual<lb/> A. Vainshtein<lb/> ECI Telecom<lb/> + <date>August 8, 2019<lb/></date> + + <docTitle> + <titlePart>RFC8287 Sub-TLV Length Clarification<lb/></titlePart> + </docTitle> + + <idno>draft-ietf-mpls-rfc8287-len-clarification-03<lb/></idno> + + <div type="abstract">Abstract<lb/> RFC8287 defines the extensions to MPLS LSP Ping and Traceroute for<lb/> Segment Routing IGP-Prefix and IGP-Adjacency Segment Identifier<lb/> (SIDs) with an MPLS data plane. RFC8287 proposes 3 Target FEC Stack<lb/> Sub-TLVs. While the standard defines the format and procedure to<lb/> handle those Sub-TLVs, it does not sufficiently clarify how the<lb/> length of the Segment ID Sub-TLVs should be computed to include in<lb/> the Length field of the Sub-TLVs which may result in interoperability<lb/> issues.<lb/> This document updates RFC8287 by clarifying the length of each<lb/> Segment ID Sub-TLVs defined in RFC8287.<lb/></div> + + <note type="other">Status of This Memo<lb/> This Internet-Draft is submitted in full conformance with the<lb/> provisions of BCP 78 and BCP 79.<lb/> Internet-Drafts are working documents of the Internet Engineering<lb/> Task Force (IETF). Note that other groups may also distribute<lb/> working documents as Internet-Drafts. The list of current Internet-<lb/>Drafts is at https://datatracker.ietf.org/drafts/current/.<lb/> Internet-Drafts are draft documents valid for a maximum of six months <lb/>and may be updated, replaced, or obsoleted by other documents at any <lb/>time. It is inappropriate to use Internet-Drafts as reference <lb/>material or to cite them other than as "work in progress." <lb/>This Internet-Draft will expire on February 9, 2020. <lb/> </note> + + Nainar, et al. <lb/>Expires February 9, 2020 <lb/> [Page 1] <lb/> + <note type="doctype">Internet-Draft <lb/></note> + + RFC8287 Sub-TLV Length Clarification <lb/>August 2019 <lb/> + + Copyright Notice <lb/> + <note type="copyright">Copyright (c) 2019 IETF Trust and the persons identified as the <lb/>document authors. All rights reserved. <lb/>This document is subject to BCP 78 and the IETF Trust's Legal <lb/>Provisions Relating to IETF Documents <lb/>(https://trustee.ietf.org/license-info) in effect on the date of <lb/>publication of this document. Please review these documents <lb/>carefully, as they describe your rights and restrictions with respect <lb/>to this document. Code Components extracted from this document must <lb/>include Simplified BSD License text as described in Section 4.e of <lb/>the Trust Legal Provisions and are provided without warranty as <lb/>described in the Simplified BSD License. <lb/></note> + + <byline> + <docAuthor>Nagendra Kumar Nainar<lb/></docAuthor> + </byline> + + <byline> + <affiliation>Cisco Systems, Inc.<lb/></affiliation> + </byline> + + <address>7200-12 Kit Creek Road<lb/> Research Triangle Park, NC 27709<lb/> US<lb/></address> + + <email>Email: naikumar@cisco.com<lb/></email> + + <byline> + <docAuthor>Carlos Pignataro<lb/></docAuthor> + </byline> + + <byline> + <affiliation>Cisco Systems, Inc.<lb/></affiliation> + </byline> + + <address>7200-11 Kit Creek Road<lb/> Research Triangle Park, NC 27709<lb/> US<lb/></address> + + <email>Email: cpignata@cisco.com<lb/></email> + + <byline> + <docAuthor>Faisal Iqbal<lb/></docAuthor> + </byline> + + <byline> + <affiliation>Individual<lb/></affiliation> + </byline> + + <address>Canada<lb/></address> + + <email>Email: faisal.iqbal@msn.com<lb/></email> + + <byline> + <docAuthor>Alexander Vainshtein<lb/></docAuthor> + </byline> + + <byline> + <affiliation>ECI Telecom<lb/></affiliation> + </byline> + + <address>Israel<lb/></address> + + <email>Email: vainshtein.alex@gmail.com</email> + + </front> + </text> +</tei> diff --git a/grobid-trainer/resources/dataset/header/sdo/ietf/corpus/tei/XP015134693.training.header.tei.xml b/grobid-trainer/resources/dataset/header/sdo/ietf/corpus/tei/XP015134693.training.header.tei.xml new file mode 100644 index 0000000000..856203ca5d --- /dev/null +++ b/grobid-trainer/resources/dataset/header/sdo/ietf/corpus/tei/XP015134693.training.header.tei.xml @@ -0,0 +1,51 @@ +<?xml version="1.0" ?> +<tei xml:space="preserve"> + <teiHeader> + <fileDesc xml:id="XP015134693"/> + </teiHeader> + <text xml:lang="en"> + <front> +<lb/> + + ICNRG<lb/> D. Oran<lb/> + <note type="doctype">Internet-Draft<lb/></note> + + Network Systems Research and Design<lb/> Intended status: Experimental<lb/> + <date>August 10, 2019<lb/></date> + + Expires: February 11, 2020<lb/> + + <docTitle> + <titlePart>Maintaining CCNx or NDN flow balance with highly variable data object<lb/> sizes<lb/></titlePart> + </docTitle> + + <idno>draft-oran-icnrg-flowbalance-01<lb/></idno> + + <div type="abstract">Abstract<lb/> Deeply embedded in some ICN architectures, especially Named Data<lb/> Networking (NDN) and Content-Centric Networking (CCNx) is the notion<lb/> of flow balance. This captures the idea that there is a one-to-one<lb/> correspondence between requests for data, carried in Interest<lb/> messages, and the responses with the requested data object, carried<lb/> in Data messages. This has a number of highly beneficial properties<lb/> for flow and congestion control in networks, as well as some<lb/> desirable security properties. For example, neither legitimate users<lb/> nor attackers are able to inject large amounts of un-requested data<lb/> into the network.<lb/> Existing congestion control approaches however cannot deal<lb/> effectively with a widely varying MTU of ICN data messages, since the<lb/> protocols allow a dynamic range of 1-64K bytes. Since Interest<lb/> messages are used to allocate the reverse link bandwidth for<lb/> returning Data, there is large uncertainty in how to allocate that<lb/> bandwidth. Unfortunately, current congestion control schemes in CCNx<lb/> and NDN only count Interest messages and have no idea how much data<lb/> is involved that could congest the inverse link. This document<lb/> proposes a method to maintain flow balance by accommodating the wide<lb/> dynamic range in Data message MTU.<lb/></div> + + <note type="other">Status of This Memo<lb/> This Internet-Draft is submitted in full conformance with the<lb/> provisions of BCP 78 and BCP 79.<lb/> Internet-Drafts are working documents of the Internet Engineering<lb/> Task Force (IETF). Note that other groups may also distribute<lb/> working documents as Internet-Drafts. The list of current Internet-<lb/>Drafts is at https://datatracker.ietf.org/drafts/current/.<lb/> Internet-Drafts are draft documents valid for a maximum of six months<lb/> and may be updated, replaced, or obsoleted by other documents at any<lb/> time. It is inappropriate to use Internet-Drafts as reference<lb/> material or to cite them other than as "work in progress."<lb/></note> + + D. Oran<lb/> Expires February 11, 2020<lb/> [Page 1]<lb/> + <note type="doctype">Internet-Draft<lb/></note> + + Maintaining Flow Balance<lb/> August 2019<lb/> + This Internet-Draft will expire on February 11, 2020.<lb/> + + Copyright Notice<lb/> + <note type="copyright">Copyright (c) 2019 IETF Trust and the persons identified as the<lb/> document authors. All rights reserved.<lb/> This document is subject to BCP 78 and the IETF Trust's Legal<lb/> Provisions Relating to IETF Documents<lb/> (https://trustee.ietf.org/license-info) in effect on the date of<lb/> publication of this document. Please review these documents<lb/> carefully, as they describe your rights and restrictions with respect<lb/> to this document. Code Components extracted from this document must<lb/> include Simplified BSD License text as described in Section 4.e of<lb/> the Trust Legal Provisions and are provided without warranty as<lb/> described in the Simplified BSD License.<lb/></note> + + <byline> + <docAuthor>Dave Oran<lb/></docAuthor> + </byline> + + <byline> + <affiliation>Network Systems Research and Design<lb/></affiliation> + </byline> + + <address>4 Shady Hill Square<lb/> Cambridge, MA 02138<lb/> USA<lb/></address> + + <email>Email: daveoran@orandom.net</email> + + </front> + </text> +</tei> diff --git a/grobid-trainer/resources/dataset/header/sdo/ietf/corpus/tei/XP015134703.training.header.tei.xml b/grobid-trainer/resources/dataset/header/sdo/ietf/corpus/tei/XP015134703.training.header.tei.xml new file mode 100644 index 0000000000..efed3b50bf --- /dev/null +++ b/grobid-trainer/resources/dataset/header/sdo/ietf/corpus/tei/XP015134703.training.header.tei.xml @@ -0,0 +1,45 @@ +<?xml version="1.0" ?> +<tei xml:space="preserve"> + <teiHeader> + <fileDesc xml:id="XP015134703"/> + </teiHeader> + <text xml:lang="en"> + <front> +<lb/> + + TLS<lb/> Y. Nir<lb/> + <note type="doctype">Internet-Draft<lb/></note> + + DellEMC<lb/> Intended status: Standards Track<lb/> + <date>August 12, 2019<lb/></date> + + Expires: February 13, 2020<lb/> + + <docTitle> + <titlePart>A Flags Extension for TLS 1.3<lb/></titlePart> + </docTitle> + + <idno>draft-ietf-tls-tlsflags-00<lb/></idno> + + <div type="abstract">Abstract<lb/> A number of extensions are proposed in the TLS working group that<lb/> carry no interesting information except the 1-bit indication that a<lb/> certain optional feature is supported. Such extensions take 4 octets<lb/> each. This document defines a flags extension that can provide such<lb/> indications at an average marginal cost of 1 bit each. More<lb/> precisely, it provides as many flag extensions as needed at 4 + the<lb/> order of the last set bit divided by 8.<lb/></div> + + <note type="other">Status of This Memo<lb/> This Internet-Draft is submitted in full conformance with the<lb/> provisions of BCP 78 and BCP 79.<lb/> Internet-Drafts are working documents of the Internet Engineering<lb/> Task Force (IETF). Note that other groups may also distribute<lb/> working documents as Internet-Drafts. The list of current Internet-<lb/>Drafts is at https://datatracker.ietf.org/drafts/current/.<lb/> Internet-Drafts are draft documents valid for a maximum of six months<lb/> and may be updated, replaced, or obsoleted by other documents at any<lb/> time. It is inappropriate to use Internet-Drafts as reference<lb/> material or to cite them other than as "work in progress."<lb/> This Internet-Draft will expire on February 13, 2020.<lb/></note> + + Copyright Notice<lb/> + <note type="copyright">Copyright (c) 2019 IETF Trust and the persons identified as the<lb/> document authors. All rights reserved.<lb/> This document is subject to BCP 78 and the IETF Trust's Legal<lb/> Provisions Relating to IETF Documents<lb/> (https://trustee.ietf.org/license-info) in effect on the date of<lb/> publication of this document. Please review these documents<lb/> carefully, as they describe your rights and restrictions with respect<lb/> to this document. Code Components extracted from this document must<lb/> include Simplified BSD License text as described in Section 4.e of<lb/></note> + + <byline> + <docAuthor>Yoav Nir<lb/></docAuthor> + </byline> + + <byline> + <affiliation>DellEMC<lb/></affiliation> + </byline> + + <address>9 Andrei Sakharov St<lb/> Haifa 3190500<lb/> Israel<lb/></address> + + <email>Email: ynir.ietf@gmail.com</email> + + </front> + </text> +</tei> diff --git a/grobid-trainer/resources/dataset/header/sdo/ietf/corpus/tei/XP015134819.training.header.tei.xml b/grobid-trainer/resources/dataset/header/sdo/ietf/corpus/tei/XP015134819.training.header.tei.xml new file mode 100644 index 0000000000..8bb5c6cb15 --- /dev/null +++ b/grobid-trainer/resources/dataset/header/sdo/ietf/corpus/tei/XP015134819.training.header.tei.xml @@ -0,0 +1,67 @@ +<?xml version="1.0" ?> +<tei xml:space="preserve"> + <teiHeader> + <fileDesc xml:id="XP015134819"/> + </teiHeader> + <text xml:lang="en"> + <front> +<lb/> + + DOTS<lb/> M. Chen<lb/> + <note type="doctype">Internet-Draft<lb/></note> + + Li. Su<lb/> Intended status: Standards Track<lb/> Jin. Peng<lb/> Expires: February 23, 2020<lb/> CMCC<lb/> + <date>August 22, 2019<lb/></date> + + <docTitle> + <titlePart>DOTS client carry ddos attack informations in signal channel<lb/></titlePart> + </docTitle> + + <idno>draft-chen-dots-attack-informations-03<lb/></idno> + + <div type="abstract">Abstract<lb/> This document describes DDoS attack information which can be obtained<lb/> by DOTS client when the enterprise suspects it is under DDoS attack,<lb/> these informations will be send from DOTS client to DOTS server in<lb/> mitigation request using Signal channel or Data channel.<lb/></div> + + <note type="other">Status of This Memo<lb/> This Internet-Draft is submitted in full conformance with the<lb/> provisions of BCP 78 and BCP 79.<lb/> Internet-Drafts are working documents of the Internet Engineering<lb/> Task Force (IETF). Note that other groups may also distribute<lb/> working documents as Internet-Drafts. The list of current Internet-<lb/>Drafts is at https://datatracker.ietf.org/drafts/current/.<lb/> Internet-Drafts are draft documents valid for a maximum of six months<lb/> and may be updated, replaced, or obsoleted by other documents at any<lb/> time. It is inappropriate to use Internet-Drafts as reference<lb/> material or to cite them other than as "work in progress."<lb/> This Internet-Draft will expire on February 23, 2020.<lb/></note> + + Copyright Notice<lb/> + <note type="copyright">Copyright (c) 2019 IETF Trust and the persons identified as the<lb/> document authors. All rights reserved.<lb/> This document is subject to BCP 78 and the IETF Trust's Legal<lb/> Provisions Relating to IETF Documents<lb/> (https://trustee.ietf.org/license-info) in effect on the date of<lb/> publication of this document. Please review these documents<lb/> carefully, as they describe your rights and restrictions with respect<lb/> to this document. Code Components extracted from this document must<lb/> include Simplified BSD License text as described in Section 4.e of<lb/> the Trust Legal Provisions and are provided without warranty as<lb/> described in the Simplified BSD License.<lb/></note> + + <byline> + <docAuthor>Meiling Chen<lb/></docAuthor> + </byline> + + <byline> + <affiliation>CMCC<lb/></affiliation> + </byline> + + <address>32, Xuanwumen West<lb/> BeiJing , BeiJing<lb/> 100053<lb/> China<lb/></address> + + <email>Email: chenmeiling@chinamobile.com<lb/></email> + + <byline> + <docAuthor>Li Su<lb/></docAuthor> + </byline> + + <byline> + <affiliation>CMCC<lb/></affiliation> + </byline> + + <address>32, Xuanwumen West<lb/> BeiJing<lb/> 100053<lb/> China<lb/></address> + + <email>Email: suli@chinamobile.com<lb/></email> + + <byline> + <docAuthor>Jin Peng<lb/></docAuthor> + </byline> + + <byline> + <affiliation>CMCC<lb/></affiliation> + </byline> + + <address>32, Xuanwumen West<lb/> BeiJing<lb/> 100053<lb/> China<lb/></address> + + <email>Email: pengjin@chinamobile.com</email> + + </front> + </text> +</tei> diff --git a/grobid-trainer/resources/dataset/header/sdo/ietf/corpus/tei/XP015134870.training.header.tei.xml b/grobid-trainer/resources/dataset/header/sdo/ietf/corpus/tei/XP015134870.training.header.tei.xml new file mode 100644 index 0000000000..b9368e2515 --- /dev/null +++ b/grobid-trainer/resources/dataset/header/sdo/ietf/corpus/tei/XP015134870.training.header.tei.xml @@ -0,0 +1,46 @@ +<?xml version="1.0" ?> +<tei xml:space="preserve"> + <teiHeader> + <fileDesc xml:id="XP015134870"/> + </teiHeader> + <text xml:lang="en"> + <front> +<lb/> + + 6TiSCH<lb/> P. Thubert, Ed.<lb/> + <note type="doctype">Internet-Draft<lb/></note> + + Cisco Systems<lb/> Intended status: Informational<lb/> + <date>August 27, 2019<lb/></date> + + Expires: February 28, 2020<lb/> + + <docTitle> + <titlePart>An Architecture for IPv6 over the TSCH mode of IEEE 802.15.4<lb/></titlePart> + </docTitle> + + <idno>draft-ietf-6tisch-architecture-26<lb/></idno> + + <div type="abstract">Abstract<lb/> This document describes a network architecture that provides low-<lb/>latency, low-jitter and high-reliability packet delivery. It<lb/> combines a high-speed powered backbone and subnetworks using IEEE<lb/> 802.15.4 time-slotted channel hopping (TSCH) to meet the requirements<lb/> of LowPower wireless deterministic applications.<lb/></div> + + <note type="other">Status of This Memo<lb/> This Internet-Draft is submitted in full conformance with the<lb/> provisions of BCP 78 and BCP 79.<lb/> Internet-Drafts are working documents of the Internet Engineering<lb/> Task Force (IETF). Note that other groups may also distribute<lb/> working documents as Internet-Drafts. The list of current Internet-<lb/>Drafts is at https://datatracker.ietf.org/drafts/current/.<lb/> Internet-Drafts are draft documents valid for a maximum of six months<lb/> and may be updated, replaced, or obsoleted by other documents at any<lb/> time. It is inappropriate to use Internet-Drafts as reference<lb/> material or to cite them other than as "work in progress."<lb/> This Internet-Draft will expire on February 28, 2020.<lb/></note> + + Copyright Notice<lb/> + <note type="copyright">Copyright (c) 2019 IETF Trust and the persons identified as the<lb/> document authors. All rights reserved.<lb/> This document is subject to BCP 78 and the IETF Trust's Legal<lb/> Provisions Relating to IETF Documents<lb/> (https://trustee.ietf.org/license-info) in effect on the date of<lb/> publication of this document. Please review these documents<lb/> carefully, as they describe your rights and restrictions with respect<lb/> to this document. Code Components extracted from this document must<lb/> include Simplified BSD License text as described in Section 4.e of<lb/> the Trust Legal Provisions and are provided without warranty as<lb/> described in the Simplified BSD License.<lb/></note> + + <byline> + <docAuthor>Pascal Thubert (editor)<lb/></docAuthor> + </byline> + + <byline> + <affiliation>Cisco Systems, Inc<lb/></affiliation> + </byline> + + <address>Building D<lb/> 45 Allee des Ormes -BP1200<lb/> MOUGINS -Sophia Antipolis 06254<lb/> FRANCE<lb/></address> + + <phone>Phone: +33 497 23 26 34<lb/></phone> + <email>Email: pthubert@cisco.com</email> + + </front> + </text> +</tei> diff --git a/grobid-trainer/resources/dataset/header/sdo/ietf/corpus/tei/XP015134942.training.header.tei.xml b/grobid-trainer/resources/dataset/header/sdo/ietf/corpus/tei/XP015134942.training.header.tei.xml new file mode 100644 index 0000000000..d56a218a16 --- /dev/null +++ b/grobid-trainer/resources/dataset/header/sdo/ietf/corpus/tei/XP015134942.training.header.tei.xml @@ -0,0 +1,63 @@ +<?xml version="1.0" ?> +<tei xml:space="preserve"> + <teiHeader> + <fileDesc xml:id="XP015134942"/> + </teiHeader> + <text xml:lang="en"> + <front> +<lb/> + + <note type="other">Internet Engineering Task Force<lb/></note> + + L. Velvindron<lb/> + <note type="doctype">Internet-Draft<lb/></note> + + cyberstorm.mu<lb/> Updates: 5246 7525 (if approved)<lb/> K. Moriarty<lb/> Intended status: Standards Track<lb/> Dell EMC<lb/> Expires: March 5, 2020<lb/> A. Ghedini<lb/> Cloudflare Inc.<lb/> + + <date>September 2, 2019<lb/></date> + + <docTitle> + <titlePart>Deprecating MD5 and SHA-1 signature hashes in TLS 1.2<lb/></titlePart>. + </docTitle> + + <idno>draft-ietf-tls-md5-sha1-deprecate-00<lb/></idno> + + <div type="abstract">Abstract<lb/> The MD5 and SHA-1 hashing algorithms are steadily weakening in<lb/> strength and their deprecation process should begin for their use in<lb/> TLS 1.2 digital signatures. However, this document does not<lb/> deprecate SHA-1 in HMAC for record protection.<lb/></div> + + <note type="other">Status of This Memo<lb/> This Internet-Draft is submitted in full conformance with the<lb/> provisions of BCP 78 and BCP 79.<lb/> Internet-Drafts are working documents of the Internet Engineering<lb/> Task Force (IETF). Note that other groups may also distribute<lb/> working documents as Internet-Drafts. The list of current Internet-<lb/>Drafts is at https://datatracker.ietf.org/drafts/current/.<lb/> Internet-Drafts are draft documents valid for a maximum of six months<lb/> and may be updated, replaced, or obsoleted by other documents at any<lb/> time. It is inappropriate to use Internet-Drafts as reference<lb/> material or to cite them other than as "work in progress."<lb/> This Internet-Draft will expire on March 5, 2020.<lb/></note> + + Copyright Notice<lb/> + <note type="copyright">Copyright (c) 2019 IETF Trust and the persons identified as the<lb/> document authors. All rights reserved.<lb/> This document is subject to BCP 78 and the IETF Trust's Legal<lb/> Provisions Relating to IETF Documents<lb/> (https://trustee.ietf.org/license-info) in effect on the date of<lb/> publication of this document. Please review these documents<lb/> carefully, as they describe your rights and restrictions with respect<lb/> to this document. Code Components extracted from this document must<lb/> include Simplified BSD License text as described in Section 4.e of<lb/></note> + + <byline> + <docAuthor>Loganaden Velvindron<lb/></docAuthor> + </byline> + + <byline> + <affiliation>cyberstorm.mu<lb/></affiliation> + </byline> + + <address>Rose Hill<lb/> MU<lb/></address> + + <phone>Phone: +230 59762817<lb/></phone> + <email>Email: logan@cyberstorm.mu<lb/></email> + + <byline> + <docAuthor>Kathleen Moriarty<lb/></docAuthor> + </byline> + + <byline> + <affiliation>Dell EMC<lb/></affiliation> + </byline> + + <byline> + <docAuthor>Alessandro Ghedini<lb/></docAuthor> + </byline> + + <byline> + <affiliation>Cloudflare Inc.</affiliation> + </byline> + + </front> + </text> +</tei> diff --git a/grobid-trainer/resources/dataset/header/sdo/ietf/corpus/tei/XP015135013.training.header.tei.xml b/grobid-trainer/resources/dataset/header/sdo/ietf/corpus/tei/XP015135013.training.header.tei.xml new file mode 100644 index 0000000000..fc6fa0e2e9 --- /dev/null +++ b/grobid-trainer/resources/dataset/header/sdo/ietf/corpus/tei/XP015135013.training.header.tei.xml @@ -0,0 +1,76 @@ +<?xml version="1.0" ?> +<tei xml:space="preserve"> + <teiHeader> + <fileDesc xml:id="XP015135013"/> + </teiHeader> + <text xml:lang="en"> + <front> +<lb/> + + SFC WG<lb/> CJ. Bernardos<lb/> + <note type="doctype">Internet-Draft<lb/></note> + + UC3M<lb/> Intended status: Informational<lb/> A. Rahman<lb/> Expires: March 10, 2020<lb/> A. Mourad<lb/> InterDigital<lb/> + <date>September 7, 2019<lb/></date> + + <docTitle> + <titlePart>Service Function Chaining Use Cases in Fog RAN<lb/></titlePart> + </docTitle> + + <idno>draft-bernardos-sfc-fog-ran-06<lb/></idno> + + <div type="abstract">Abstract<lb/> Fog Radio Access Networks (RAN) refers to the part of the RAN that is<lb/> virtualized at the very edge of the network, even at the end-user<lb/> device. Fog RAN support is considered critical for the 5G mobile<lb/> network architectures currently being developed in various research,<lb/> standardization and industry forums. Since fog RAN builds on top of<lb/> virtualization and can involve several virtual functions running on<lb/> different virtualized resources, Service function chaining (SFC)<lb/> support for the fog RAN will be critical. This document describes<lb/> the overall fog RAN approach and also gives some use cases. Finally<lb/> it proposes some requirements to be considered in the development of<lb/> the SFC architecture and related protocols.<lb/></div> + + <note type="other">Status of This Memo<lb/> This Internet-Draft is submitted in full conformance with the<lb/> provisions of BCP 78 and BCP 79.<lb/> Internet-Drafts are working documents of the Internet Engineering<lb/> Task Force (IETF). Note that other groups may also distribute<lb/> working documents as Internet-Drafts. The list of current Internet-<lb/>Drafts is at https://datatracker.ietf.org/drafts/current/.<lb/> Internet-Drafts are draft documents valid for a maximum of six months<lb/> and may be updated, replaced, or obsoleted by other documents at any<lb/> time. It is inappropriate to use Internet-Drafts as reference<lb/> material or to cite them other than as "work in progress."<lb/> This Internet-Draft will expire on March 10, 2020.<lb/></note> + + Copyright Notice<lb/> + <note type="copyright">Copyright (c) 2019 IETF Trust and the persons identified as the<lb/> document authors. All rights reserved.<lb/></note> + + Bernardos, et al.<lb/> Expires March 10, 2020<lb/> [Page 1]<lb/> + <note type="doctype">Internet-Draft<lb/></note> + + Fog RAN SFC<lb/> September 2019<lb/> + + <note type="copyright">This document is subject to BCP 78 and the IETF Trust's Legal<lb/> Provisions Relating to IETF Documents<lb/> (https://trustee.ietf.org/license-info) in effect on the date of<lb/> publication of this document. Please review these documents<lb/> carefully, as they describe your rights and restrictions with respect<lb/> to this document. Code Components extracted from this document must<lb/> include Simplified BSD License text as described in Section 4.e of<lb/> the Trust Legal Provisions and are provided without warranty as<lb/> described in the Simplified BSD License.<lb/></note> + + <byline> + <docAuthor>Carlos J. Bernardos<lb/></docAuthor> + </byline> + + <byline> + <affiliation>Universidad Carlos III de Madrid<lb/></affiliation> + </byline> + + <address>Av. Universidad, 30<lb/> Leganes, Madrid 28911<lb/> Spain<lb/></address> + + <phone>Phone: +34 91624 6236<lb/></phone> + <email>Email: cjbc@it.uc3m.es<lb/></email> + URI:<lb/> http://www.it.uc3m.es/cjbc/<lb/> + + <byline> + <docAuthor>Akbar Rahman<lb/></docAuthor> + </byline> + + <byline> + <affiliation>InterDigital Communications, LLC<lb/></affiliation> + </byline> + + <address>1000 Sherbrooke Street West, 10th floor<lb/> Montreal, Quebec H3A 3G4<lb/> Canada<lb/></address> + + <email>Email: Akbar.Rahman@InterDigital.com<lb/></email> + URI:<lb/> http://www.InterDigital.com/<lb/> + + <byline> + <docAuthor>Alain Mourad<lb/></docAuthor> + </byline> + + <byline> + <affiliation>InterDigital Europe<lb/></affiliation> + </byline> + + <email>Email: Alain.Mourad@InterDigital.com<lb/></email> + URI:<lb/> http://www.InterDigital.com/ + + </front> + </text> +</tei> diff --git a/grobid-trainer/resources/dataset/header/sdo/ietf/corpus/tei/XP015135120.training.header.tei.xml b/grobid-trainer/resources/dataset/header/sdo/ietf/corpus/tei/XP015135120.training.header.tei.xml new file mode 100644 index 0000000000..099f290b9b --- /dev/null +++ b/grobid-trainer/resources/dataset/header/sdo/ietf/corpus/tei/XP015135120.training.header.tei.xml @@ -0,0 +1,136 @@ +<?xml version="1.0" ?> +<tei xml:space="preserve"> + <teiHeader> + <fileDesc xml:id="XP015135120"/> + </teiHeader> + <text xml:lang="en"> + <front> +<lb/> + + LISP Working Group<lb/> A. Rodriguez-Natal<lb/> + <note type="doctype">Internet-Draft<lb/></note> + + Cisco Systems<lb/> Intended status: Experimental<lb/> V. Ermagan<lb/> Expires: March 14, 2020<lb/> Google<lb/> J. Leong<lb/> F. Maino<lb/> Cisco Systems<lb/> A. Cabellos-Aparicio<lb/> Technical University of Catalonia<lb/> S. Barkai<lb/> Nexar Inc.<lb/> D. Farinacci<lb/> lispers.net<lb/> M. Boucadair<lb/> C. Jacquenet<lb/> Orange<lb/> S. Secci<lb/> Cnam<lb/> + <date>September 11, 2019<lb/></date> + + <docTitle> + <titlePart>Publish/Subscribe Functionality for LISP<lb/></titlePart> + </docTitle> + + <idno>draft-ietf-lisp-pubsub-04<lb/></idno> + + <div type="abstract">Abstract<lb/> This document specifies an extension to the use of Map-Request to<lb/> enable Publish/Subscribe (PubSub) operation for LISP.<lb/></div> + + <note type="other">Status of This Memo<lb/> This Internet-Draft is submitted in full conformance with the<lb/> provisions of BCP 78 and BCP 79.<lb/> Internet-Drafts are working documents of the Internet Engineering<lb/> Task Force (IETF). Note that other groups may also distribute<lb/> working documents as Internet-Drafts. The list of current Internet-<lb/>Drafts is at https://datatracker.ietf.org/drafts/current/.<lb/> Internet-Drafts are draft documents valid for a maximum of six months<lb/> and may be updated, replaced, or obsoleted by other documents at any<lb/> time. It is inappropriate to use Internet-Drafts as reference<lb/> material or to cite them other than as "work in progress."<lb/> This Internet-Draft will expire on March 14, 2020.<lb/></note> + + Rodriguez-Natal, et al. Expires March 14, 2020<lb/> [Page 1]<lb/> + <note type="doctype">Internet-Draft<lb/></note> + + LISP-PubSub<lb/> September 2019<lb/> Copyright Notice<lb/> + <note type="copyright">Copyright (c) 2019 IETF Trust and the persons identified as the<lb/> document authors. All rights reserved.<lb/> This document is subject to BCP 78 and the IETF Trust's Legal<lb/> Provisions Relating to IETF Documents<lb/> (https://trustee.ietf.org/license-info) in effect on the date of<lb/> publication of this document. Please review these documents<lb/> carefully, as they describe your rights and restrictions with respect<lb/> to this document. Code Components extracted from this document must<lb/> include Simplified BSD License text as described in Section 4.e of<lb/> the Trust Legal Provisions and are provided without warranty as<lb/> described in the Simplified BSD License.<lb/></note> + + <byline> + <docAuthor>Vina Ermagan<lb/></docAuthor> + </byline> + + <byline> + <affiliation>Google<lb/></affiliation> + </byline> + + <address>USA<lb/></address> + + <email>Email: ermagan@gmail.com<lb/></email> + + <byline> + <docAuthor>Johnson Leong<lb/></docAuthor> + </byline> + + <byline> + <affiliation>Cisco Systems<lb/></affiliation> + </byline> + + <address>170 Tasman Drive<lb/> San Jose, CA<lb/> USA<lb/></address> + + <email>Email: joleong@cisco.com<lb/></email> + + <byline> + <docAuthor>Fabio Maino<lb/></docAuthor> + </byline> + + <byline> + <affiliation>Cisco Systems<lb/></affiliation> + </byline> + + <address>170 Tasman Drive<lb/> San Jose, CA<lb/> USA<lb/></address> + + <email>Email: fmaino@cisco.com<lb/></email> + + <byline> + <docAuthor>Albert Cabellos-</docAuthor> + </byline> + + <byline> + <affiliation>Aparicio<lb/></affiliation> + </byline> + + <address>Technical University of Catalonia<lb/> Barcelona<lb/> Spain<lb/></address> + + <email>Email: acabello@ac.upc.edu<lb/></email> + + <byline> + <docAuthor>Sharon Barkai<lb/></docAuthor> + </byline> + + <byline> + <affiliation>Nexar Inc.<lb/></affiliation> + </byline> + + <email>Email: sharon.barkai@getnexar.com<lb/></email> + + <byline> + <docAuthor>Dino Farinacci<lb/></docAuthor> + </byline> + + <byline> + <affiliation>lispers.net<lb/></affiliation> + </byline> + + <address>San Jose, CA<lb/> USA<lb/></address> + + <byline> + <docAuthor>Mohamed Boucadair<lb/></docAuthor> + </byline> + + <byline> + <affiliation>Orange<lb/></affiliation> + </byline> + + <address>Rennes 35000<lb/> France<lb/></address> + + <email>Email: mohamed.boucadair@orange.com<lb/></email> + + <byline> + <docAuthor>Christian Jacquenet<lb/></docAuthor> + </byline> + + <byline> + <affiliation>Orange<lb/></affiliation> + </byline> + + <address>Rennes 35000<lb/> France<lb/></address> + + <email>Email: christian.jacquenet@orange.com<lb/></email> + + <byline> + <docAuthor>Stefano Secci<lb/></docAuthor> + </byline> + + <byline> + <affiliation>Cnam<lb/></affiliation> + </byline> + + <address>France</address> + + </front> + </text> +</tei> diff --git a/grobid-trainer/resources/dataset/header/sdo/ietf/corpus/tei/draft-ietf-bfcpbis-rfc4583bis-27.header.tei.xml b/grobid-trainer/resources/dataset/header/sdo/ietf/corpus/tei/draft-ietf-bfcpbis-rfc4583bis-27.header.tei.xml new file mode 100644 index 0000000000..679e54db6a --- /dev/null +++ b/grobid-trainer/resources/dataset/header/sdo/ietf/corpus/tei/draft-ietf-bfcpbis-rfc4583bis-27.header.tei.xml @@ -0,0 +1,168 @@ +<?xml version="1.0" ?> +<tei xml:space="preserve"> + <teiHeader> + <fileDesc xml:id="draft-ietf-bfcpbis-rfc4583bis-27"/> + </teiHeader> + <text xml:lang="en"> + <front> + +<note type="group"> +BFCPbis Working Group<lb/> +</note> + +G. Camarillo <lb/> + +<note type="document_type"> +Internet-Draft <lb/> +</note> + +Ericsson <lb/> + +Obsoletes: 4583 (if approved) <lb/> + +T. Kristensen <lb/> + +Intended status: Standards Track <lb/> + +Cisco <lb/> + +Expires: June 11, 2019 <lb/> + +C. Holmberg <lb/> + +Ericsson <lb/> + +<date type="publication"> +December 8, 2018<lb/> +</date> + +<docTitle> + <titlePart> +Session Description Protocol (SDP) Format for Binary Floor Control <lb/> +Protocol (BFCP) Streams <lb/> + </titlePart> +</docTitle> + +<idno>draft-ietf-bfcpbis-rfc4583bis-27<lb/> </idno> + +<div type="abstract"> +Abstract<lb/> This document defines the Session Description Protocol (SDP) offer/ <lb/> +answer procedures for negotiating and establishing Binary Floor <lb/> +Control Protocol (BFCP) streams.<lb/> +This document obsoletes RFC 4583. Changes from RFC 4583 are <lb/> +summarized in Section 14.<lb/> +</div> + +<note type="other"> +Status of This Memo<lb/> +This Internet-Draft is submitted in full conformance with the <lb/> +provisions of BCP 78 and BCP 79.<lb/> +Internet-Drafts are working documents of the Internet Engineering <lb/> +Task Force (IETF). Note that other groups may also distribute <lb/> +working documents as Internet-Drafts. The list of current Internet-<lb/> +Drafts is at http://datatracker.ietf.org/drafts/current/.<lb/> +Internet-Drafts are draft documents valid for a maximum of six months <lb/> +and may be updated, replaced, or obsoleted by other documents at any <lb/> +time. It is inappropriate to use Internet-Drafts as reference <lb/> +material or to cite them other than as "work in progress."<lb/> +This Internet-Draft will expire on June 11, 2019.<lb/> +</note> + +Copyright Notice<lb/> + +<note type="copyright"> +Copyright (c) 2018 IETF Trust and the persons identified as the <lb/> +document authors. All rights reserved. <lb/> +This document is subject to BCP 78 and the IETF Trust's Legal <lb/> +Provisions Relating to IETF Documents <lb/> +(http://trustee.ietf.org/license-info) in effect on the date of <lb/> +publication of this document. Please review these documents<lb/> +</note> + +Camarillo, et al. <lb/> + +Expires June 11, 2019 <lb/> + +<page> +[Page 1] <lb/> +</page> + +<note type="document_type"> +Internet-Draft +</note> + +BFCP <lb/> + +<note type="copyright"> +December 2018 <lb/> +carefully, as they describe your rights and restrictions with respect <lb/> +to this document. Code Components extracted from this document must <lb/> +include Simplified BSD License text as described in Section 4.e of <lb/> +the Trust Legal Provisions and are provided without warranty as <lb/> +described in the Simplified BSD License.<lb/> +</note> + +<byline> + <docAuthor> +Gonzalo Camarillo <lb/> + </docAuthor> +</byline> +<byline> + <affiliation> +Ericsson <lb/> + </affiliation> +</byline> +<address> +Hirsalantie 11 <lb/>FI-02420 Jorvas <lb/>Finland <lb/> +</address> +<email> +Email: Gonzalo.Camarillo@ericsson.com <lb/> +</email> + +<byline> + <docAuthor> +Tom Kristensen <lb/> + </docAuthor> +</byline> +<byline> + <affiliation> +Cisco <lb/> + </affiliation> +</byline> +<address> +Philip Pedersens vei 1 <lb/> +NO-1366 Lysaker <lb/> +Norway <lb/> +</address> +<email> +Email: tomkrist@cisco.com, tomkri@ifi.uio.no <lb/> +</email> + +<byline> + <docAuthor> +Christer Holmberg <lb/> + </docAuthor> +</byline> +<byline> + <affiliation> +Ericsson <lb/> + </affiliation> +</byline> +<address> +Hirsalantie 11 <lb/> +Jorvas 02420 <lb/> +Finland <lb/> +</address> +<email> +Email: christer.holmberg@ericsson.com <lb/> +</email> + +<intro> +Table of Contents<lb/> + +1. Introduction . . . . . . . . . . . . . . . . . . . . . . . . <lb/> +</intro> + + </front> + </text> +</tei> diff --git a/grobid-trainer/resources/dataset/header/sdo/ietf/corpus/tei/draft-ietf-mpls-rmr-12.header.tei.xml b/grobid-trainer/resources/dataset/header/sdo/ietf/corpus/tei/draft-ietf-mpls-rmr-12.header.tei.xml new file mode 100644 index 0000000000..fffdc2f25e --- /dev/null +++ b/grobid-trainer/resources/dataset/header/sdo/ietf/corpus/tei/draft-ietf-mpls-rmr-12.header.tei.xml @@ -0,0 +1,98 @@ +<?xml version="1.0" ?> +<tei xml:space="preserve"> + <teiHeader> + <fileDesc xml:id="draft-ietf-mpls-rmr-12"/> + </teiHeader> + <text xml:lang="en"> + <front> +<lb/> + <note type="group"> + MPLS WG<lb/> + </note> + + K. Kompella<lb/> + +<note type="doctype">Internet-Draft<lb/></note> + + Juniper Networks, Inc.<lb/> Intended status: Standards Track<lb/> L. Contreras<lb/> Expires: April 25, 2020<lb/> Telefonica<lb/> + +<date type="publication"> + October 23, 2019<lb/> +</date> + +<docTitle> + <titlePart> + Resilient MPLS Rings<lb/> + </titlePart> +</docTitle> + + <idno>draft-ietf-mpls-rmr-12<lb/></idno> + +<div type="abstract"> + Abstract<lb/> + This document describes the use of the MPLS control and data planes<lb/> on ring topologies. It describes the special nature of rings, and<lb/> proceeds to show how MPLS can be effectively used in such topologies.<lb/> It describes how MPLS rings are configured, auto-discovered and<lb/> signaled, as well as how the data plane works. Companion documents<lb/> describe the details of discovery and signaling for specific<lb/> protocols.<lb/> +</div> + +<note type="other"> + Requirements Language<lb/> The key words "MUST", "MUST NOT", "REQUIRED", "SHALL", "SHALL NOT",<lb/> "SHOULD", "SHOULD NOT", "RECOMMENDED", "MAY", and "OPTIONAL" in this<lb/> document are to be interpreted as described in [RFC2119].<lb/> +</note> + +<note type="other"> + Status of This Memo<lb/> This Internet-Draft is submitted in full conformance with the<lb/> provisions of BCP 78 and BCP 79.<lb/> Internet-Drafts are working documents of the Internet Engineering<lb/> Task Force (IETF). Note that other groups may also distribute<lb/> working documents as Internet-Drafts. The list of current Internet-<lb/>Drafts is at https://datatracker.ietf.org/drafts/current/.<lb/> Internet-Drafts are draft documents valid for a maximum of six months<lb/> and may be updated, replaced, or obsoleted by other documents at any<lb/> time. It is inappropriate to use Internet-Drafts as reference<lb/> material or to cite them other than as "work in progress."<lb/> This Internet-Draft will expire on April 25, 2020.<lb/> +</note> + + Copyright Notice<lb/> + +<note type="copyright"> + Copyright (c) 2019 IETF Trust and the persons identified as the<lb/> document authors. All rights reserved.<lb/> +</note> + + Kompella & Contreras<lb/> Expires April 25, 2020<lb/> [Page 1]<lb/> + +<note type="doctype">Internet-Draft<lb/></note> + + Resilient MPLS Rings<lb/> October 2019<lb/> + +<note type="copyright"> + This document is subject to BCP 78 and the IETF Trust's Legal<lb/> Provisions Relating to IETF Documents<lb/> (https://trustee.ietf.org/license-info) in effect on the date of<lb/> publication of this document. Please review these documents<lb/> carefully, as they describe your rights and restrictions with respect<lb/> to this document. Code Components extracted from this document must<lb/> include Simplified BSD License text as described in Section 4.e of<lb/> the Trust Legal Provisions and are provided without warranty as<lb/> described in the Simplified BSD License.<lb/> +</note> + + +<byline> + <docAuthor> +Kireeti Kompella<lb/> + </docAuthor> +</byline> +<byline> + <affiliation> +Juniper Networks, Inc.<lb/> + </affiliation> +</byline> +<address> +1133 Innovation Way<lb/> Sunnyvale, CA 94089<lb/> USA<lb/> +</address> +<email> +Email: kireeti.kompella@gmail.com<lb/> +</email> + +<byline> + <docAuthor> +Luis M. Contreras<lb/> + </docAuthor> +</byline> +<byline> + <affiliation> +Telefonica<lb/> + </affiliation> +</byline> +<address> +Ronda de la Comunicacion<lb/> Sur-3 building, 3rd floor<lb/> Madrid 28050<lb/> Spain<lb/> +</address> +<email> +Email: luismiguel.contrerasmurillo@telefonica.com<lb/> +</email> +URI:<lb/> http://people.tid.es/LuisM.Contreras/<lb/> + + </front> + </text> +</tei> diff --git a/grobid-trainer/resources/dataset/header/sdo/ietf/corpus/tei/ietf-rfc7654.txt.header.tei.xml b/grobid-trainer/resources/dataset/header/sdo/ietf/corpus/tei/ietf-rfc7654.txt.header.tei.xml new file mode 100644 index 0000000000..8fb8b455ed --- /dev/null +++ b/grobid-trainer/resources/dataset/header/sdo/ietf/corpus/tei/ietf-rfc7654.txt.header.tei.xml @@ -0,0 +1,106 @@ +<?xml version="1.0" ?> +<tei xml:space="preserve"> + <teiHeader> + <fileDesc xml:id="ietf-rfc7654.txt"/> + </teiHeader> + <text xml:lang="en"> + <front> +<lb/> + <note type="other">Internet Engineering Task Force (IETF)<lb/></note> + + S. Banks<lb/> + +<note type="doctype">Request for Comments</note>: + +<idno>7654<lb/></idno> + +VSS Monitoring<lb/> Category: Informational<lb/> F. Calabria<lb/> + +<idno type="ISSN">ISSN: 2070-1721<lb/></idno> + +Cisco Systems<lb/> G. Czirjak<lb/> R. Machat<lb/> Juniper Networks<lb/> + +<date type="publication"> + October 2015<lb/> +</date> + +<docTitle> + <titlePart> +Benchmarking Methodology for In-Service Software Upgrade (ISSU)<lb/> + </titlePart> +</docTitle> + +<div type="abstract"> + Abstract<lb/> Modern forwarding devices attempt to minimize any control-and data-<lb/>plane disruptions while performing planned software changes by<lb/> implementing a technique commonly known as In-Service Software<lb/> Upgrade (ISSU). This document specifies a set of common<lb/> methodologies and procedures designed to characterize the overall<lb/> behavior of a Device Under Test (DUT), subject to an ISSU event.<lb/> +</div> + +<note type="other"> + Status of This Memo<lb/> This document is not an Internet Standards Track specification; it is<lb/> published for informational purposes.<lb/> This document is a product of the Internet Engineering Task Force<lb/> (IETF). It represents the consensus of the IETF community. It has<lb/> received public review and has been approved for publication by the<lb/> Internet Engineering Steering Group (IESG). Not all documents<lb/> approved by the IESG are a candidate for any level of Internet<lb/> Standard; see Section 2 of RFC 5741.<lb/> Information about the current status of this document, any errata,<lb/> and how to provide feedback on it may be obtained at<lb/> http://www.rfc-editor.org/info/rfc7654.<lb/> +</note> + + Banks, et al.<lb/> Informational<lb/> [Page 1]<lb/> RFC 7654<lb/> Benchmarking Software Upgrade<lb/> October 2015<lb/> + Copyright Notice<lb/> + +<note type="copyright"> + Copyright (c) 2015 IETF Trust and the persons identified as the<lb/> document authors. All rights reserved.<lb/> This document is subject to BCP 78 and the IETF Trust's Legal<lb/> Provisions Relating to IETF Documents<lb/> (http://trustee.ietf.org/license-info) in effect on the date of<lb/> publication of this document. Please review these documents<lb/> carefully, as they describe your rights and restrictions with respect<lb/> to this document. Code Components extracted from this document must<lb/> include Simplified BSD License text as described in Section 4.e of<lb/> the Trust Legal Provisions and are provided without warranty as<lb/> described in the Simplified BSD License.<lb/> +</note> + +<byline> + <docAuthor> +Sarah Banks<lb/> + </docAuthor> +</byline> +<byline> + <affiliation> +VSS Monitoring<lb/> + </affiliation> +</byline> +<email> +Email: sbanks@encrypted.net<lb/> +</email> + +<byline> + <docAuthor> +Fernando Calabria<lb/> + </docAuthor> +</byline> +<byline> + <affiliation> +Cisco Systems<lb/> + </affiliation> +</byline> +<email> +Email: fcalabri@cisco.com<lb/> +</email> + +<byline> + <docAuthor> +Gery Czirjak<lb/> + </docAuthor> +</byline> +<byline> + <affiliation> +Juniper Networks<lb/> + </affiliation> +</byline> +<email> +Email: gczirjak@juniper.net<lb/> +</email> + +<byline> + <docAuthor> +Ramdas Machat<lb/> + </docAuthor> +</byline> +<byline> + <affiliation> +Juniper Networks<lb/> + </affiliation> +</byline> +<email> +Email: rmachat@juniper.net +</email> + + </front> + </text> +</tei> diff --git a/grobid-trainer/resources/dataset/header/sdo/ietf/crfpp-templates/header.template b/grobid-trainer/resources/dataset/header/sdo/ietf/crfpp-templates/header.template new file mode 100755 index 0000000000..2823734532 --- /dev/null +++ b/grobid-trainer/resources/dataset/header/sdo/ietf/crfpp-templates/header.template @@ -0,0 +1,134 @@ +# Token +U00:%x[-4,0] +U01:%x[-3,0] +U02:%x[-2,0] +U03:%x[-1,0] +U04:%x[0,0] +U05:%x[1,0] +U06:%x[2,0] +U07:%x[3,0] +U08:%x[4,0] +U09:%x[-1,0]/%x[0,0] +U0A:%x[0,0]/%x[1,0] +U0B:%x[1,0]/%x[2,0] +U0C:%x[-2,0]/%x[-1,0] +U0D:%x[0,0]/%x[-1,28] + +# Lowercase token +U10:%x[-2,1] +U11:%x[-1,1] +U12:%x[0,1] +U13:%x[1,1] +U14:%x[2,1] + +# Prefix 1-4 characters +U20:%x[0,2] +U21:%x[0,3] +U22:%x[0,4] +U23:%x[0,5] + +# Suffix 1-4 characters +U30:%x[0,6] +U31:%x[0,7] +U32:%x[0,8] +U33:%x[0,9] + +# Block info +U40:%x[-1,10] +U41:%x[0,10] +U42:%x[1,10] + +# Line info +U50:%x[-1,11] +U51:%x[0,11] +U52:%x[1,11] + +# Font info +U60:%x[-1,12] +U61:%x[0,12] +U62:%x[1,12] + +# Font size +U60:%x[-1,13] +U61:%x[0,13] +U62:%x[1,13] + +# Bold info +U70:%x[-1,14] +U71:%x[0,14] +U72:%x[1,14] + +# Italic info +U80:%x[-1,15] +U81:%x[0,15] +U82:%x[1,15] + +# Rotation info +U90:%x[-1,16] +U91:%x[0,16] +U92:%x[1,16] + +# Capitalization +UA0:%x[0,17] +UA1:%x[1,17] +UA2:%x[-1,17] +UA3:%x[0,17]/%x[1,17] +UA4:%x[-1,17]/%x[0,17] + +# Digits +UB0:%x[0,18] +UB1:%x[-1,18] +UB2:%x[1,18] +#UB3:%x[0,18]/%x[1,18] +#UB4:%x[-1,18]/%x[0,18] + +# Char +UC0:%x[0,19] +UC1:%x[-1,19] +UC2:%x[1,19] + +# Dict info +UD0:%x[0,19] +UD1:%x[0,20] +UD2:%x[0,21] +UD3:%x[0,22] +UD4:%x[0,23] +UD5:%x[0,24] +UD6:%x[0,25] +UD7:%x[0,26] +UD8:%x[0,27] +#UD9:%x[-1,19] +#UDA:%x[-1,20] +#UDB:%x[-1,21] +#UDC:%x[-1,22] +#UDD:%x[-1,23] +#UDE:%x[-1,24] +#UDF:%x[-1,25] +#UDG:%x[-1,26] +#UDH:%x[-1,27] +UDI:%x[1,19] +UDJ:%x[1,20] +UDK:%x[1,21] +UDL:%x[1,22] +UDM:%x[1,23] +UDN:%x[1,24] +UDO:%x[1,25] +UDP:%x[1,26] +UDQ:%x[1,27] + +# Punctuation type +UE0:%x[0,28] +UE1:%x[-1,28] +UE2:%x[-2,28] +UE3:%x[1,28] +UE4:%x[2,28] +#UE5:%x[-1,28]/%x[0,28] +#UE6:%x[0,28]/%x[1,28] + +# Contain punctuation +UF0:%x[-1,29] +UF1:%x[0,29] +UF2:%x[1,29] + +# Output +B diff --git a/grobid-trainer/resources/dataset/header/sdo/ietf/crfpp-templates/sun.header.template b/grobid-trainer/resources/dataset/header/sdo/ietf/crfpp-templates/sun.header.template new file mode 100755 index 0000000000..9cb6f50b1f --- /dev/null +++ b/grobid-trainer/resources/dataset/header/sdo/ietf/crfpp-templates/sun.header.template @@ -0,0 +1,129 @@ +# Token +U00:%x[-3,0] +U01:%x[-2,0] +U02:%x[-1,0] +U03:%x[0,0] +U04:%x[1,0] +U05:%x[2,0] +U06:%x[3,0] +U07:%x[-1,0]/%x[0,0] +U08:%x[0,0]/%x[1,0] +U09:%x[1,0]/%x[2,0] +U0A:%x[-2,0]/%x[-1,0] +U0B:%x[0,0]/%x[-1,28] + +# Lowercase token +U10:%x[-2,1] +U11:%x[-1,1] +U12:%x[0,1] +U13:%x[1,1] +U14:%x[2,1] + +# Prefix 1-4 characters +U20:%x[0,2] +U21:%x[0,3] +U22:%x[0,4] +U23:%x[0,5] + +# Suffix 1-4 characters +U30:%x[0,6] +U31:%x[0,7] +U32:%x[0,8] +U33:%x[0,9] + +# Block info +U40:%x[-1,10] +U41:%x[0,10] +U42:%x[1,10] + +# Line info +U50:%x[-1,11] +U51:%x[0,11] +U52:%x[1,11] + +# Font info +U60:%x[-1,12] +U61:%x[0,12] +U62:%x[1,12] + +# Font size info +U70:%x[-1,13] +U71:%x[0,13] +U72:%x[1,13] + +# Bold info +U80:%x[-1,14] +U81:%x[0,14] +U82:%x[1,14] + +# Italic info +U90:%x[-1,15] +U91:%x[0,15] +U92:%x[1,15] + +# Capitalization +UA0:%x[0,16] +UA1:%x[1,16] +UA2:%x[-1,16] +UA3:%x[0,16]/%x[1,16] +UA4:%x[-1,16]/%x[0,16] + +# Digits +UB0:%x[0,17] +UB1:%x[-1,17] +UB2:%x[1,17] +%UB3:%x[0,17]/%x[1,17] +%UB4:%x[-1,17]/%x[0,17] + +# Char +UC0:%x[0,18] +UC1:%x[-1,18] +UC2:%x[1,18] + +# Dict info +UD0:%x[0,19] +UD1:%x[0,20] +UD2:%x[0,21] +UD3:%x[0,22] +UD4:%x[0,23] +UD5:%x[0,24] +UD6:%x[0,25] +UD7:%x[0,26] +UD8:%x[0,27] +#UD9:%x[-1,19] +#UDA:%x[-1,20] +#UDB:%x[-1,21] +#UDC:%x[-1,22] +#UDD:%x[-1,23] +#UDE:%x[-1,24] +#UDF:%x[-1,25] +#UDG:%x[-1,26] +#UDH:%x[-1,27] +UDI:%x[1,19] +UDJ:%x[1,20] +UDK:%x[1,21] +UDL:%x[1,22] +UDM:%x[1,23] +UDN:%x[1,24] +UDO:%x[1,25] +UDP:%x[1,26] +UDQ:%x[1,27] + +# Punctuation +UE0:%x[0,28] +UE1:%x[-1,28] +UE2:%x[-2,28] +UE3:%x[1,28] +UE4:%x[2,28] +#UE5:%x[-1,28]/%x[0,28] +#UE6:%x[0,28]/%x[1,28] + +UF0:%x[-1,29] +UF1:%x[0,29] +UF2:%x[1,29] + +# Position (future) +UG0:%x[0,30] + +# Output +B diff --git a/grobid-trainer/resources/dataset/header/sdo/ietf/evaluation/raw/draft-ietf-bfcpbis-rfc4583bis-27.header b/grobid-trainer/resources/dataset/header/sdo/ietf/evaluation/raw/draft-ietf-bfcpbis-rfc4583bis-27.header new file mode 100644 index 0000000000..29dc1f8626 --- /dev/null +++ b/grobid-trainer/resources/dataset/header/sdo/ietf/evaluation/raw/draft-ietf-bfcpbis-rfc4583bis-27.header @@ -0,0 +1,450 @@ +BFCPbis bfcpbis B BF BFC BFCP s is bis Pbis BLOCKSTART LINESTART NEWFONT HIGHERFONT 0 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Working working W Wo Wor Work g ng ing king BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Group group G Gr Gro Grou p up oup roup BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +G g G G G G G G G G BLOCKSTART LINESTART SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +Camarillo camarillo C Ca Cam Cama o lo llo illo BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 1 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Internet internet I In Int Inte t et net rnet BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +- - - - - - - - - - BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 1 HYPHEN 0 0 +Draft draft D Dr Dra Draf t ft aft raft BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Ericsson ericsson E Er Eri Eric n on son sson BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Obsoletes obsoletes O Ob Obs Obso s es tes etes BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +: : : : : : : : : : BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 PUNCT 0 0 +4583 4583 4 45 458 4583 3 83 583 4583 BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS ALLDIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +( ( ( ( ( ( ( ( ( ( BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 OPENBRACKET 0 0 +if if i if if if f if if if BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +approved approved a ap app appr d ed ved oved BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +) ) ) ) ) ) ) ) ) ) BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 ENDBRACKET 0 0 +T t T T T T T T T T BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +Kristensen kristensen K Kr Kri Kris n en sen nsen BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Intended intended I In Int Inte d ed ded nded BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +status status s st sta stat s us tus atus BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +: : : : : : : : : : BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 PUNCT 0 0 +Standards standards S St Sta Stan s ds rds ards BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Track track T Tr Tra Trac k ck ack rack BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Cisco cisco C Ci Cis Cisc o co sco isco BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 1 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Expires expires E Ex Exp Expi s es res ires BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +: : : : : : : : : : BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 PUNCT 0 0 +June june J Ju Jun June e ne une June BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 1 0 0 0 0 1 0 0 0 NOPUNCT 0 0 +11 11 1 11 11 11 1 11 11 11 BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS ALLDIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +, , , , , , , , , , BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 COMMA 0 0 +2019 2019 2 20 201 2019 9 19 019 2019 BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS ALLDIGIT 0 0 0 0 0 1 0 0 0 0 NOPUNCT 0 0 +C c C C C C C C C C BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +Holmberg holmberg H Ho Hol Holm g rg erg berg BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Ericsson ericsson E Er Eri Eric n on son sson BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +December december D De Dec Dece r er ber mber BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 0 0 0 0 1 0 0 0 NOPUNCT 0 0 +8 8 8 8 8 8 8 8 8 8 BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +, , , , , , , , , , BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 COMMA 0 0 +2018 2018 2 20 201 2018 8 18 018 2018 BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS ALLDIGIT 0 0 0 0 0 1 0 0 0 0 NOPUNCT 0 0 +Session session S Se Ses Sess n on ion sion BLOCKSTART LINESTART SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Description description D De Des Desc n on ion tion BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Protocol protocol P Pr Pro Prot l ol col ocol BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +( ( ( ( ( ( ( ( ( ( BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 OPENBRACKET 0 0 +SDP sdp S SD SDP SDP P DP SDP SDP BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +) ) ) ) ) ) ) ) ) ) BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 ENDBRACKET 0 0 +Format format F Fo For Form t at mat rmat BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +for for f fo for for r or for for BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Binary binary B Bi Bin Bina y ry ary nary BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Floor floor F Fl Flo Floo r or oor loor BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Control control C Co Con Cont l ol rol trol BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Protocol protocol P Pr Pro Prot l ol col ocol BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +( ( ( ( ( ( ( ( ( ( BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 OPENBRACKET 0 0 +BFCP bfcp B BF BFC BFCP P CP FCP BFCP BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +) ) ) ) ) ) ) ) ) ) BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 ENDBRACKET 0 0 +Streams streams S St Str Stre s ms ams eams BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +draft draft d dr dra draf t ft aft raft BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +- - - - - - - - - - BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 1 HYPHEN 0 0 +ietf ietf i ie iet ietf f tf etf ietf BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +- - - - - - - - - - BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 1 HYPHEN 0 0 +bfcpbis bfcpbis b bf bfc bfcp s is bis pbis BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +- - - - - - - - - - BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 1 HYPHEN 0 0 +rfc4583bis rfc4583bis r rf rfc rfc4 s is bis 3bis BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +- - - - - - - - - - BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 1 HYPHEN 0 0 +27 27 2 27 27 27 7 27 27 27 BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS ALLDIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Abstract abstract A Ab Abs Abst t ct act ract BLOCKSTART LINESTART SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +This this T Th Thi This s is his This BLOCKSTART LINESTART SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +document document d do doc docu t nt ent ment BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +defines defines d de def defi s es nes ines BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +the the t th the the e he the the BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Session session S Se Ses Sess n on ion sion BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Description description D De Des Desc n on ion tion BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Protocol protocol P Pr Pro Prot l ol col ocol BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +( ( ( ( ( ( ( ( ( ( BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 OPENBRACKET 0 0 +SDP sdp S SD SDP SDP P DP SDP SDP BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +) ) ) ) ) ) ) ) ) ) BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 ENDBRACKET 0 0 +offer offer o of off offe r er fer ffer BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +/ / / / / / / / / / BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +answer answer a an ans answ r er wer swer BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +procedures procedures p pr pro proc s es res ures BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +for for f fo for for r or for for BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +negotiating negotiating n ne neg nego g ng ing ting BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +and and a an and and d nd and and BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +establishing establishing e es est esta g ng ing hing BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Binary binary B Bi Bin Bina y ry ary nary BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Floor floor F Fl Flo Floo r or oor loor BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Control control C Co Con Cont l ol rol trol BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Protocol protocol P Pr Pro Prot l ol col ocol BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +( ( ( ( ( ( ( ( ( ( BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 OPENBRACKET 0 0 +BFCP bfcp B BF BFC BFCP P CP FCP BFCP BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +) ) ) ) ) ) ) ) ) ) BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 ENDBRACKET 0 0 +streams streams s st str stre s ms ams eams BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +This this T Th Thi This s is his This BLOCKSTART LINESTART SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +document document d do doc docu t nt ent ment BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +obsoletes obsoletes o ob obs obso s es tes etes BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +RFC rfc R RF RFC RFC C FC RFC RFC BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +4583 4583 4 45 458 4583 3 83 583 4583 BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS ALLDIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +Changes changes C Ch Cha Chan s es ges nges BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +from from f fr fro from m om rom from BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +RFC rfc R RF RFC RFC C FC RFC RFC BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +4583 4583 4 45 458 4583 3 83 583 4583 BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS ALLDIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +are are a ar are are e re are are BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +summarized summarized s su sum summ d ed zed ized BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +in in i in in in n in in in BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Section section S Se Sec Sect n on ion tion BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +14 14 1 14 14 14 4 14 14 14 BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS ALLDIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +Status status S St Sta Stat s us tus atus BLOCKSTART LINESTART SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +of of o of of of f of of of BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +This this T Th Thi This s is his This BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Memo memo M Me Mem Memo o mo emo Memo BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +This this T Th Thi This s is his This BLOCKSTART LINESTART SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Internet internet I In Int Inte t et net rnet BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +- - - - - - - - - - BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 1 HYPHEN 0 0 +Draft draft D Dr Dra Draf t ft aft raft BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +is is i is is is s is is is BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +submitted submitted s su sub subm d ed ted tted BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +in in i in in in n in in in BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +full full f fu ful full l ll ull full BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +conformance conformance c co con conf e ce nce ance BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +with with w wi wit with h th ith with BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +the the t th the the e he the the BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +provisions provisions p pr pro prov s ns ons ions BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +of of o of of of f of of of BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +BCP bcp B BC BCP BCP P CP BCP BCP BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +78 78 7 78 78 78 8 78 78 78 BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS ALLDIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +and and a an and and d nd and and BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +BCP bcp B BC BCP BCP P CP BCP BCP BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +79 79 7 79 79 79 9 79 79 79 BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS ALLDIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +Internet internet I In Int Inte t et net rnet BLOCKSTART LINESTART SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +- - - - - - - - - - BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 1 HYPHEN 0 0 +Drafts drafts D Dr Dra Draf s ts fts afts BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +are are a ar are are e re are are BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +working working w wo wor work g ng ing king BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +documents documents d do doc docu s ts nts ents BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +of of o of of of f of of of BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +the the t th the the e he the the BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Internet internet I In Int Inte t et net rnet BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Engineering engineering E En Eng Engi g ng ing ring BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Task task T Ta Tas Task k sk ask Task BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Force force F Fo For Forc e ce rce orce BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +( ( ( ( ( ( ( ( ( ( BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 OPENBRACKET 0 0 +IETF ietf I IE IET IETF F TF ETF IETF BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +) ) ) ) ) ) ) ) ) ) BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 ENDBRACKET 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +Note note N No Not Note e te ote Note BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +that that t th tha that t at hat that BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +other other o ot oth othe r er her ther BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +groups groups g gr gro grou s ps ups oups BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +may may m ma may may y ay may may BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 1 1 0 0 0 1 0 0 0 NOPUNCT 0 0 +also also a al als also o so lso also BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +distribute distribute d di dis dist e te ute bute BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +working working w wo wor work g ng ing king BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +documents documents d do doc docu s ts nts ents BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +as as a as as as s as as as BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Internet internet I In Int Inte t et net rnet BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +- - - - - - - - - - BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 1 HYPHEN 0 0 +Drafts drafts D Dr Dra Draf s ts fts afts BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +The the T Th The The e he The The BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +list list l li lis list t st ist list BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +of of o of of of f of of of BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +current current c cu cur curr t nt ent rent BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Internet internet I In Int Inte t et net rnet BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +- - - - - - - - - - BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 1 HYPHEN 0 0 +Drafts drafts D Dr Dra Draf s ts fts afts BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +is is i is is is s is is is BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +at at a at at at t at at at BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +http http h ht htt http p tp ttp http BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 0 NOPUNCT 0 0 +: : : : : : : : : : BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 PUNCT 0 0 +/ / / / / / / / / / BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +/ / / / / / / / / / BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +datatracker datatracker d da dat data r er ker cker BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +ietf ietf i ie iet ietf f tf etf ietf BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +org org o or org org g rg org org BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +/ / / / / / / / / / BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +drafts drafts d dr dra draf s ts fts afts BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +/ / / / / / / / / / BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +current current c cu cur curr t nt ent rent BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +/ / / / / / / / / / BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +Internet internet I In Int Inte t et net rnet BLOCKSTART LINESTART SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +- - - - - - - - - - BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 1 HYPHEN 0 0 +Drafts drafts D Dr Dra Draf s ts fts afts BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +are are a ar are are e re are are BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +draft draft d dr dra draf t ft aft raft BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +documents documents d do doc docu s ts nts ents BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +valid valid v va val vali d id lid alid BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +for for f fo for for r or for for BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +a a a a a a a a a a BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 1 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +maximum maximum m ma max maxi m um mum imum BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +of of o of of of f of of of BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +six six s si six six x ix six six BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +months months m mo mon mont s hs ths nths BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +and and a an and and d nd and and BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +may may m ma may may y ay may may BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 1 1 0 0 0 1 0 0 0 NOPUNCT 0 0 +be be b be be be e be be be BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +updated updated u up upd upda d ed ted ated BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +, , , , , , , , , , BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 COMMA 0 0 +replaced replaced r re rep repl d ed ced aced BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +, , , , , , , , , , BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 COMMA 0 0 +or or o or or or r or or or BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +obsoleted obsoleted o ob obs obso d ed ted eted BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +by by b by by by y by by by BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +other other o ot oth othe r er her ther BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +documents documents d do doc docu s ts nts ents BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +at at a at at at t at at at BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +any any a an any any y ny any any BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +time time t ti tim time e me ime time BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +It it I It It It t It It It BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +is is i is is is s is is is BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +inappropriate inappropriate i in ina inap e te ate iate BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +to to t to to to o to to to BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +use use u us use use e se use use BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Internet internet I In Int Inte t et net rnet BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +- - - - - - - - - - BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 1 HYPHEN 0 0 +Drafts drafts D Dr Dra Draf s ts fts afts BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +as as a as as as s as as as BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +reference reference r re ref refe e ce nce ence BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +material material m ma mat mate l al ial rial BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +or or o or or or r or or or BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +to to t to to to o to to to BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +cite cite c ci cit cite e te ite cite BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +them them t th the them m em hem them BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +other other o ot oth othe r er her ther BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +than than t th tha than n an han than BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +as as a as as as s as as as BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +" " " " " " " " " " BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 QUOTE 0 0 +work work w wo wor work k rk ork work BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +in in i in in in n in in in BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +progress progress p pr pro prog s ss ess ress BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +" " " " " " " " " " BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 QUOTE 0 0 +This this T Th Thi This s is his This BLOCKSTART LINESTART SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Internet internet I In Int Inte t et net rnet BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +- - - - - - - - - - BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 1 HYPHEN 0 0 +Draft draft D Dr Dra Draf t ft aft raft BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +will will w wi wil will l ll ill will BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +expire expire e ex exp expi e re ire pire BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +on on o on on on n on on on BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +June june J Ju Jun June e ne une June BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 1 0 0 0 0 1 0 0 0 NOPUNCT 0 0 +11 11 1 11 11 11 1 11 11 11 BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS ALLDIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +, , , , , , , , , , BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 COMMA 0 0 +2019 2019 2 20 201 2019 9 19 019 2019 BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS ALLDIGIT 0 0 0 0 0 1 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +Copyright copyright C Co Cop Copy t ht ght ight BLOCKSTART LINESTART SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Notice notice N No Not Noti e ce ice tice BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Copyright copyright C Co Cop Copy t ht ght ight BLOCKSTART LINESTART SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +( ( ( ( ( ( ( ( ( ( BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 OPENBRACKET 0 0 +c c c c c c c c c c BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +) ) ) ) ) ) ) ) ) ) BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 ENDBRACKET 0 0 +2018 2018 2 20 201 2018 8 18 018 2018 BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS ALLDIGIT 0 0 0 0 0 1 0 0 0 0 NOPUNCT 0 0 +IETF ietf I IE IET IETF F TF ETF IETF BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Trust trust T Tr Tru Trus t st ust rust BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +and and a an and and d nd and and BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +the the t th the the e he the the BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +persons persons p pe per pers s ns ons sons BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +identified identified i id ide iden d ed ied fied BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +as as a as as as s as as as BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +the the t th the the e he the the BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +document document d do doc docu t nt ent ment BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +authors authors a au aut auth s rs ors hors BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +All all A Al All All l ll All All BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +rights rights r ri rig righ s ts hts ghts BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +reserved reserved r re res rese d ed ved rved BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +This this T Th Thi This s is his This BLOCKSTART LINESTART SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +document document d do doc docu t nt ent ment BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +is is i is is is s is is is BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +subject subject s su sub subj t ct ect ject BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +to to t to to to o to to to BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +BCP bcp B BC BCP BCP P CP BCP BCP BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +78 78 7 78 78 78 8 78 78 78 BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS ALLDIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +and and a an and and d nd and and BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +the the t th the the e he the the BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +IETF ietf I IE IET IETF F TF ETF IETF BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Trust trust T Tr Tru Trus t st ust rust BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +' ' ' ' ' ' ' ' ' ' BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 QUOTE 0 0 +s s s s s s s s s s BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Legal legal L Le Leg Lega l al gal egal BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Provisions provisions P Pr Pro Prov s ns ons ions BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Relating relating R Re Rel Rela g ng ing ting BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +to to t to to to o to to to BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +IETF ietf I IE IET IETF F TF ETF IETF BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Documents documents D Do Doc Docu s ts nts ents BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +( ( ( ( ( ( ( ( ( ( BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 OPENBRACKET 0 0 +http http h ht htt http p tp ttp http BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 0 NOPUNCT 0 0 +: : : : : : : : : : BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 PUNCT 0 0 +/ / / / / / / / / / BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +/ / / / / / / / / / BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +trustee trustee t tr tru trus e ee tee stee BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +ietf ietf i ie iet ietf f tf etf ietf BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +org org o or org org g rg org org BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +/ / / / / / / / / / BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +license license l li lic lice e se nse ense BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +- - - - - - - - - - BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 1 HYPHEN 0 0 +info info i in inf info o fo nfo info BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 1 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +) ) ) ) ) ) ) ) ) ) BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 ENDBRACKET 0 0 +in in i in in in n in in in BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +effect effect e ef eff effe t ct ect fect BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +on on o on on on n on on on BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +the the t th the the e he the the BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +date date d da dat date e te ate date BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +of of o of of of f of of of BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +publication publication p pu pub publ n on ion tion BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +of of o of of of f of of of BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +this this t th thi this s is his this BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +document document d do doc docu t nt ent ment BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +Please please P Pl Ple Plea e se ase ease BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +review review r re rev revi w ew iew view BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +these these t th the thes e se ese hese BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +documents documents d do doc docu s ts nts ents BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Camarillo camarillo C Ca Cam Cama o lo llo illo BLOCKSTART LINESTART SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 1 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +, , , , , , , , , , BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 COMMA 0 0 +et et e et et et t et et et BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +al al a al al al l al al al BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 1 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +Expires expires E Ex Exp Expi s es res ires BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +June june J Ju Jun June e ne une June BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 1 0 0 0 0 1 0 0 0 NOPUNCT 0 0 +11 11 1 11 11 11 1 11 11 11 BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS ALLDIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +, , , , , , , , , , BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 COMMA 0 0 +2019 2019 2 20 201 2019 9 19 019 2019 BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS ALLDIGIT 0 0 0 0 0 1 0 0 0 0 NOPUNCT 0 0 +[ [ [ [ [ [ [ [ [ [ BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 OPENBRACKET 0 0 +Page page P Pa Pag Page e ge age Page BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +1 1 1 1 1 1 1 1 1 1 BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +] ] ] ] ] ] ] ] ] ] BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 ENDBRACKET 0 0 +Internet internet I In Int Inte t et net rnet BLOCKSTART LINESTART SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +- - - - - - - - - - BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 1 HYPHEN 0 0 +Draft draft D Dr Dra Draf t ft aft raft BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +BFCP bfcp B BF BFC BFCP P CP FCP BFCP BLOCKSTART LINESTART SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +December december D De Dec Dece r er ber mber BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 0 0 0 0 1 0 0 0 NOPUNCT 0 0 +2018 2018 2 20 201 2018 8 18 018 2018 BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS ALLDIGIT 0 0 0 0 0 1 0 0 0 0 NOPUNCT 0 0 +carefully carefully c ca car care y ly lly ully BLOCKSTART LINESTART SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +, , , , , , , , , , BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 COMMA 0 0 +as as a as as as s as as as BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +they they t th the they y ey hey they BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +describe describe d de des desc e be ibe ribe BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +your your y yo you your r ur our your BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +rights rights r ri rig righ s ts hts ghts BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +and and a an and and d nd and and BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +restrictions restrictions r re res rest s ns ons ions BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +with with w wi wit with h th ith with BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +respect respect r re res resp t ct ect pect BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +to to t to to to o to to to BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +this this t th thi this s is his this BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +document document d do doc docu t nt ent ment BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +Code code C Co Cod Code e de ode Code BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Components components C Co Com Comp s ts nts ents BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +extracted extracted e ex ext extr d ed ted cted BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +from from f fr fro from m om rom from BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +this this t th thi this s is his this BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +document document d do doc docu t nt ent ment BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +must must m mu mus must t st ust must BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +include include i in inc incl e de ude lude BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Simplified simplified S Si Sim Simp d ed ied fied BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +BSD bsd B BS BSD BSD D SD BSD BSD BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +License license L Li Lic Lice e se nse ense BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +text text t te tex text t xt ext text BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +as as a as as as s as as as BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +described described d de des desc d ed bed ibed BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +in in i in in in n in in in BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Section section S Se Sec Sect n on ion tion BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +4 4 4 4 4 4 4 4 4 4 BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +e e e e e e e e e e BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +of of o of of of f of of of BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +the the t th the the e he the the BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Trust trust T Tr Tru Trus t st ust rust BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Legal legal L Le Leg Lega l al gal egal BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Provisions provisions P Pr Pro Prov s ns ons ions BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +and and a an and and d nd and and BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +are are a ar are are e re are are BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +provided provided p pr pro prov d ed ded ided BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +without without w wi wit with t ut out hout BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +warranty warranty w wa war warr y ty nty anty BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +as as a as as as s as as as BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +described described d de des desc d ed bed ibed BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +in in i in in in n in in in BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +the the t th the the e he the the BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Simplified simplified S Si Sim Simp d ed ied fied BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +BSD bsd B BS BSD BSD D SD BSD BSD BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +License license L Li Lic Lice e se nse ense BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +Gonzalo gonzalo G Go Gon Gonz o lo alo zalo BLOCKSTART LINESTART SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 1 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Camarillo camarillo C Ca Cam Cama o lo llo illo BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 1 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Ericsson ericsson E Er Eri Eric n on son sson BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Hirsalantie hirsalantie H Hi Hir Hirs e ie tie ntie BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +11 11 1 11 11 11 1 11 11 11 BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS ALLDIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +FI fi F FI FI FI I FI FI FI BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +- - - - - - - - - - BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 1 HYPHEN 0 0 +02420 02420 0 02 024 0242 0 20 420 2420 BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS ALLDIGIT 0 0 0 0 0 1 0 0 0 0 NOPUNCT 0 0 +Jorvas jorvas J Jo Jor Jorv s as vas rvas BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Finland finland F Fi Fin Finl d nd and land BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Email email E Em Ema Emai l il ail mail BLOCKSTART LINESTART SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +: : : : : : : : : : BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 PUNCT 0 0 +Gonzalo gonzalo G Go Gon Gonz o lo alo zalo BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 1 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +Camarillo@ericsson camarillo@ericsson C Ca Cam Cama n on son sson BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +com com c co com com m om com com BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Tom tom T To Tom Tom m om Tom Tom BLOCKSTART LINESTART SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 1 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Kristensen kristensen K Kr Kri Kris n en sen nsen BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Cisco cisco C Ci Cis Cisc o co sco isco BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 1 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Philip philip P Ph Phi Phil p ip lip ilip BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 1 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Pedersens pedersens P Pe Ped Pede s ns ens sens BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +vei vei v ve vei vei i ei vei vei BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +1 1 1 1 1 1 1 1 1 1 BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +NO no N NO NO NO O NO NO NO BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +- - - - - - - - - - BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 1 HYPHEN 0 0 +1366 1366 1 13 136 1366 6 66 366 1366 BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS ALLDIGIT 0 0 0 0 0 1 0 0 0 0 NOPUNCT 0 0 +Lysaker lysaker L Ly Lys Lysa r er ker aker BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Norway norway N No Nor Norw y ay way rway BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Email email E Em Ema Emai l il ail mail BLOCKSTART LINESTART SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +: : : : : : : : : : BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 PUNCT 0 0 +tomkrist@cisco tomkrist@cisco t to tom tomk o co sco isco BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +com com c co com com m om com com BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +, , , , , , , , , , BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 COMMA 0 0 +tomkri@ifi tomkri@ifi t to tom tomk i fi ifi @ifi BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +uio uio u ui uio uio o io uio uio BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +no no n no no no o no no no BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 NOPUNCT 0 0 +Christer christer C Ch Chr Chri r er ter ster BLOCKSTART LINESTART SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Holmberg holmberg H Ho Hol Holm g rg erg berg BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Ericsson ericsson E Er Eri Eric n on son sson BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Hirsalantie hirsalantie H Hi Hir Hirs e ie tie ntie BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +11 11 1 11 11 11 1 11 11 11 BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS ALLDIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Jorvas jorvas J Jo Jor Jorv s as vas rvas BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +02420 02420 0 02 024 0242 0 20 420 2420 BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS ALLDIGIT 0 0 0 0 0 1 0 0 0 0 NOPUNCT 0 0 +Finland finland F Fi Fin Finl d nd and land BLOCKIN LINESTART SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +Email email E Em Ema Emai l il ail mail BLOCKSTART LINESTART SAMEFONT SAMEFONTSIZE 0 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +: : : : : : : : : : BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 PUNCT 0 0 +christer christer c ch chr chri r er ter ster BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +holmberg@ericsson holmberg@ericsson h ho hol holm n on son sson BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 +. . . . . . . . . . BLOCKIN LINEIN SAMEFONT SAMEFONTSIZE 0 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 DOT 0 0 +com com c co com com m om com com BLOCKIN LINEEND SAMEFONT SAMEFONTSIZE 0 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 0 NOPUNCT 0 0 + diff --git a/grobid-trainer/resources/dataset/header/sdo/ietf/evaluation/tei/draft-ietf-bfcpbis-rfc4583bis-27.header.tei.xml b/grobid-trainer/resources/dataset/header/sdo/ietf/evaluation/tei/draft-ietf-bfcpbis-rfc4583bis-27.header.tei.xml new file mode 100644 index 0000000000..f6e39902af --- /dev/null +++ b/grobid-trainer/resources/dataset/header/sdo/ietf/evaluation/tei/draft-ietf-bfcpbis-rfc4583bis-27.header.tei.xml @@ -0,0 +1,168 @@ +<?xml version="1.0" ?> +<tei xml:space="preserve"> + <teiHeader> + <fileDesc xml:id="draft-ietf-bfcpbis-rfc4583bis-27"/> + </teiHeader> + <text xml:lang="en"> + <front> + +<note type="group"> +BFCPbis Working Group<lb/> +</note> + +G. Camarillo <lb/> + +<note type="document_type"> +Internet-Draft <lb/> +</note> + +Ericsson <lb/> + +Obsoletes: 4583 (if approved) <lb/> + +T. Kristensen <lb/> + +Intended status: Standards Track <lb/> + +Cisco <lb/> + +Expires: June 11, 2019 <lb/> + +C. Holmberg <lb/> + +Ericsson <lb/> + +<date type="publication"> +December 8, 2018<lb/> +</date> + +<docTitle> + <titlePart> +Session Description Protocol (SDP) Format for Binary Floor Control <lb/> +Protocol (BFCP) Streams <lb/> + </titlePart> +</docTitle> + +<idno>draft-ietf-bfcpbis-rfc4583bis-27<lb/> </idno> + +<div type="abstract"> +Abstract<lb/> This document defines the Session Description Protocol (SDP) offer/ <lb/> +answer procedures for negotiating and establishing Binary Floor <lb/> +Control Protocol (BFCP) streams.<lb/> +This document obsoletes RFC 4583. Changes from RFC 4583 are <lb/> +summarized in Section 14.<lb/> +</div> + +<note type="other"> +Status of This Memo<lb/> +This Internet-Draft is submitted in full conformance with the <lb/> +provisions of BCP 78 and BCP 79.<lb/> +Internet-Drafts are working documents of the Internet Engineering <lb/> +Task Force (IETF). Note that other groups may also distribute <lb/> +working documents as Internet-Drafts. The list of current Internet-<lb/> +Drafts is at http://datatracker.ietf.org/drafts/current/.<lb/> +Internet-Drafts are draft documents valid for a maximum of six months <lb/> +and may be updated, replaced, or obsoleted by other documents at any <lb/> +time. It is inappropriate to use Internet-Drafts as reference <lb/> +material or to cite them other than as "work in progress."<lb/> +This Internet-Draft will expire on June 11, 2019.<lb/> +</note> + +Copyright Notice<lb/> + +<note type="copyright"> +Copyright (c) 2018 IETF Trust and the persons identified as the <lb/> +document authors. All rights reserved. <lb/> +This document is subject to BCP 78 and the IETF Trust's Legal <lb/> +Provisions Relating to IETF Documents <lb/> +(http://trustee.ietf.org/license-info) in effect on the date of <lb/> +publication of this document. Please review these documents<lb/> +</note> + +Camarillo, et al. <lb/> + +Expires June 11, 2019 <lb/> + +<page> +[Page 1] <lb/> +</page> + +<note type="document_type"> +Internet-Draft +</note> + +BFCP <lb/> + +<note type="copyright"> +December 2018 <lb/> +carefully, as they describe your rights and restrictions with respect <lb/> +to this document. Code Components extracted from this document must <lb/> +include Simplified BSD License text as described in Section 4.e of <lb/> +the Trust Legal Provisions and are provided without warranty as <lb/> +described in the Simplified BSD License.<lb/> +</note> + +<byline> + <docAuthor> +Gonzalo Camarillo <lb/> + </docAuthor> +</byline> +<byline> + <affiliation> +Ericsson <lb/> + </affiliation> +</byline> +<address> +Hirsalantie 11 <lb/>FI-02420 Jorvas <lb/>Finland <lb/> +</address> +<email> +Email: Gonzalo.Camarillo@ericsson.com <lb/> +</email> + +<byline> + <docAuthor> +Tom Kristensen <lb/> + </docAuthor> +</byline> +<byline> + <affiliation> +Cisco <lb/> + </affiliation> +</byline> +<address> +Philip Pedersens vei 1 <lb/> +NO-1366 Lysaker <lb/> +Norway <lb/> +</address> +<email> +Email: tomkrist@cisco.com, tomkri@ifi.uio.no <lb/> +</email> + +<byline> + <docAuthor> +Christer Holmberg <lb/> + </docAuthor> +</byline> +<byline> + <affiliation> +Ericsson <lb/> + </affiliation> +</byline> +<address> +Hirsalantie 11 <lb/> +Jorvas 02420 <lb/> +Finland <lb/> +</address> +<email> +Email: christer.holmberg@ericsson.com <lb/> +</email> + +<intro> +Table of Contents<lb/> + +1. Introduction . . . . . . . . . . . . . . . . . . . . . . . . <lb/> +</intro> + + </front> + </text> +</tei> diff --git a/grobid-trainer/resources/dataset/segmentation/light/.gitkeep b/grobid-trainer/resources/dataset/segmentation/light/.gitkeep new file mode 100644 index 0000000000..e69de29bb2 diff --git a/grobid-trainer/resources/dataset/segmentation/sdo/ietf/corpus/raw/XP015133673.training.segmentation b/grobid-trainer/resources/dataset/segmentation/sdo/ietf/corpus/raw/XP015133673.training.segmentation new file mode 100644 index 0000000000..71836438b6 --- /dev/null +++ b/grobid-trainer/resources/dataset/segmentation/sdo/ietf/corpus/raw/XP015133673.training.segmentation @@ -0,0 +1,1849 @@ +server date server s se ser serv BLOCKSTART PAGESTART NEWFONT HIGHERFONT 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 0 ; 1 10 0 0 0 0 0 +Internet Research internet I In Int Inte BLOCKSTART PAGEIN NEWFONT HIGHERFONT 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 () 2 10 0 0 0 0 1 +M. Mosko m. M M. M. M. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 . 1 2 0 0 0 0 1 +Request for request R Re Req Requ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 : 1 8 0 0 0 0 1 +PARC, Inc. parc, P PA PAR PARC BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 ,. 2 3 0 0 0 0 1 +Category: Experimental category: C Ca Cat Cate BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 : 1 7 0 0 0 0 1 +I. Solis i. I I. I. I. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 . 1 2 0 0 0 0 1 +ISSN: 2070-1721 issn: I IS ISS ISSN BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 :- 2 5 0 0 0 0 1 +LinkedIn LinkedIn linkedin L Li Lin Link BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 no 0 2 0 0 0 0 1 +C. Wood c. C C. C. C. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 . 1 2 0 0 0 0 1 +University of university U Un Uni Univ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 no 0 10 0 0 0 0 1 +July 2019 july J Ju Jul July BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 0 0 no 0 3 0 0 0 0 1 +Content-Centric Networking content-centric C Co Con Cont BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 2 -() 3 10 0 0 0 0 1 +Abstract Abstract abstract A Ab Abs Abst BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 3 no 0 10 0 0 0 0 1 +This document this T Th Thi This BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 3 - 1 9 0 0 0 0 1 +Networking (CCNx) networking N Ne Net Netw BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 3 () 2 10 0 0 0 0 1 +on two on o on on on BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 3 :. 2 10 0 0 0 0 1 +of mandatory of o of of of BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 3 no 0 10 0 0 0 0 1 +their behavior their t th the thei BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 3 . 1 9 0 0 0 0 1 +specification is specification s sp spe spec BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 3 . 1 8 0 0 0 0 1 +The protocol the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 6 , 1 9 0 0 0 0 1 +whereby one whereby w wh whe wher BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 6 no 0 10 0 0 0 0 1 +due to due d du due due BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 6 . 1 9 0 0 0 0 1 +the current the t th the the BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 6 . 1 7 0 0 0 0 1 +This document this T Th Thi This BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 9 - 1 9 0 0 0 0 1 +Research Group research R Re Res Rese BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 0 9 (). 3 9 0 0 0 0 1 +ICNRG participants. icnrg I IC ICN ICNR BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 9 . 1 9 0 0 0 0 1 +have informed have h ha hav have BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 9 . 1 10 0 0 0 0 1 +Mosko, et mosko, M Mo Mos Mosk BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 11 ,. 2 10 0 0 1 1 0 +Experimental Experimental experimental E Ex Exp Expe BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 11 no 0 9 0 0 0 0 0 +[Page 1] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 11 [] 2 6 0 0 0 0 0 +RFC 8569 rfc R RF RFC RFC BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 no 0 10 0 0 0 0 1 +CCNx Semantics ccnx C CC CCN CCNx BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 no 0 10 0 0 1 1 1 +July 2019 july J Ju Jul July BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 0 0 no 0 6 0 0 0 0 1 +Status of status S St Sta Stat BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 no 0 10 0 0 0 0 1 +This document this T Th Thi This BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 ; 1 10 0 0 0 0 1 +published for published p pu pub publ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 ,, 2 8 0 0 0 0 1 +evaluation. evaluation. evaluation. e ev eva eval BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 . 1 1 0 0 0 0 1 +This document this T Th Thi This BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 1 no 0 9 0 0 0 0 1 +community. This community. c co com comm BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 1 . 1 10 0 0 0 0 1 +Force (IRTF). force F Fo For Forc BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 1 ().- 4 9 0 0 0 0 1 +research and research r re res rese BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 0 1 . 1 9 0 0 0 0 1 +suitable for suitable s su sui suit BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 1 . 1 9 0 0 0 0 1 +Information-Centric Networking information-centric I In Inf Info BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 1 - 1 9 0 0 0 0 1 +Research Task research R Re Res Rese BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 0 1 (). 3 9 0 0 0 0 1 +the IRSG the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 1 ; 1 10 0 0 0 0 1 +Section 2 section S Se Sec Sect BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 1 . 1 3 0 0 0 0 1 +Information about information I In Inf Info BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 6 ,, 2 10 0 0 0 0 1 +and how and a an and and BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 6 no 0 7 0 0 0 0 1 +https://www.rfc-editor.org/info/rfc8569. https://www.rfc-editor.org/info/rfc8569. https://www.rfc-editor.org/info/rfc8569. h ht htt http BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 1 0 6 ://.-.//. 9 6 0 0 0 0 1 +Copyright Notice copyright C Co Cop Copy BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 7 no 0 10 0 0 0 0 1 +Copyright (c) copyright C Co Cop Copy BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 7 () 2 10 0 0 0 0 1 +document authors. document d do doc docu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 7 .. 2 6 0 0 0 0 1 +This document this T Th Thi This BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 8 ' 1 8 0 0 0 0 1 +Provisions Relating provisions P Pr Pro Prov BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 8 no 0 5 0 0 0 0 1 +(https://trustee.ietf.org/license-info) in (https://trustee.ietf.org/license-info) ( (h (ht (htt BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 1 0 8 (://../-) 9 9 0 0 0 0 1 +publication of publication p pu pub publ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 8 . 1 8 0 0 0 0 1 +carefully, as carefully, c ca car care BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 8 , 1 10 0 0 0 0 1 +to this to t to to to BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 8 . 1 2 0 0 0 0 1 +Mosko, et mosko, M Mo Mos Mosk BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 11 ,. 2 10 0 0 1 0 0 +Experimental Experimental experimental E Ex Exp Expe BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 11 no 0 9 0 0 0 0 0 +[Page 2] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 11 [] 2 6 0 0 0 0 0 +RFC 8569 rfc R RF RFC RFC BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 no 0 10 0 0 0 0 1 +CCNx Semantics ccnx C CC CCN CCNx BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 no 0 10 0 0 1 0 1 +July 2019 july J Ju Jul July BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 0 0 no 0 6 0 0 0 0 1 +Table of table T Ta Tab Tabl BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 no 0 10 0 0 0 0 1 +1. Introduction 1. 1 1. 1. 1. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ......................... 25 9 0 0 0 0 1 +4 4 4 4 4 4 4 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 0 0 no 0 0 0 0 0 0 1 +1.1. Requirements 1.1. 1 1. 1.1 1.1. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 .................... 20 9 0 0 0 0 1 +5 5 5 5 5 5 5 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 0 0 no 0 0 0 0 0 0 1 +1.2. Architecture 1.2. 1 1. 1.2 1.2. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ........................ 24 8 0 0 0 0 1 +5 5 5 5 5 5 5 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 0 0 no 0 0 0 0 0 0 1 +1.3. Protocol 1.3. 1 1. 1.3 1.3. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ...................... 22 9 0 0 0 0 1 +6 6 6 6 6 6 6 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 0 0 no 0 0 0 0 0 0 1 +2. Protocol 2. 2 2. 2. 2. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ........................... 27 9 0 0 0 0 1 +2.1. Message 2.1. 2 2. 2.1 2.1. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ....................... 23 9 0 0 0 0 1 +2.2. Consumer 2.2. 2 2. 2.2 2.2. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ...................... 22 9 0 0 0 0 1 +2.3. Publisher 2.3. 2 2. 2.3 2.3. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ..................... 21 9 0 0 0 0 1 +2.4. Forwarder 2.4. 2 2. 2.4 2.4. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ..................... 21 9 0 0 0 0 1 +2.4.1. Interest 2.4.1. 2 2. 2.4 2.4. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ..................... 21 9 0 0 0 0 1 +2.4.2. Interest 2.4.2. 2 2. 2.4 2.4. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ................... 19 9 0 0 0 0 1 +2.4.3. Content 2.4.3. 2 2. 2.4 2.4. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 .................. 18 9 0 0 0 0 1 +2.4.4. Interest 2.4.4. 2 2. 2.4 2.4. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ..................... 21 9 0 0 0 0 1 +2.4.5. Content 2.4.5. 2 2. 2.4 2.4. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 .................. 18 9 0 0 0 0 1 +3. Names 3. 3 3. 3. 3. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ............................. 29 9 0 0 0 0 1 +3.1. Name 3.1. 3 3. 3.1 3.1. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ........................ 24 9 0 0 0 0 1 +3.2. Interest 3.2. 3 3. 3.2 3.2. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ..................... 21 9 0 0 0 0 1 +4. Cache 4. 4 4. 4. 4. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ......................... 25 9 0 0 0 0 1 +5. Content 5. 5 5. 5. 5. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ...................... 22 9 0 0 0 0 1 +6. Link 6. 6 6. 6. 6. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ............................. 29 9 0 0 0 0 1 +7. Hashes 7. 7 7. 7. 7. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ............................ 28 9 0 0 0 0 1 +8. Validation 8. 8 8. 8. 8. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 .......................... 26 9 0 0 0 0 1 +8.1. Validation 8.1. 8 8. 8.1 8.1. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 .................... 20 9 0 0 0 0 1 +8.2. Message 8.2. 8 8. 8.2 8.2. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ................... 19 9 0 0 0 0 1 +8.3. Message 8.3. 8 8. 8.3 8.3. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ................ 16 9 0 0 0 0 1 +8.4. Signature 8.4. 8 8. 8.4 8.4. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 .......................... 26 9 0 0 0 0 1 +9. Interest 9. 9 9. 9. 9. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 .............. 14 9 0 0 0 0 1 +10. Interest 10. 1 10 10. 10. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ........................ 24 10 0 0 0 0 1 +10.1. Message 10.1. 1 10 10. 10.1 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ....................... 23 9 0 0 0 0 1 +10.2. ReturnCode 10.2. 1 10 10. 10.2 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ...................... 22 9 0 0 0 0 1 +10.3. Interest 10.3. 1 10 10. 10.3 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 .................. 18 9 0 0 0 0 1 +10.3.1. No 10.3.1. 1 10 10. 10.3 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ......................... 25 9 0 0 0 0 1 +10.3.2. HopLimit 10.3.2. 1 10 10. 10.3 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 .................... 20 9 0 0 0 0 1 +10.3.3. Interest 10.3.3. 1 10 10. 10.3 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 .................. 18 9 0 0 0 0 1 +10.3.4. No 10.3.4. 1 10 10. 10.3 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ....................... 23 9 0 0 0 0 1 +10.3.5. Path 10.3.5. 1 10 10. 10.3 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ........................ 24 9 0 0 0 0 1 +10.3.6. Prohibited 10.3.6. 1 10 10. 10.3 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ........................ 24 9 0 0 0 0 1 +10.3.7. Congestion 10.3.7. 1 10 10. 10.3 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ........................ 24 9 0 0 0 0 1 +10.3.8. Unsupported 10.3.8. 1 10 10. 10.3 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ........ 8 9 0 0 0 0 1 +10.3.9. Malformed 10.3.9. 1 10 10. 10.3 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 .................... 20 9 0 0 0 0 1 +11. IANA 11. 1 11 11. 11. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ...................... 22 10 0 0 0 0 1 +12. Security 12. 1 12 12. 12. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 .................... 20 10 0 0 0 0 1 +13. References 13. 1 13 13. 13. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 .......................... 26 9 0 0 0 0 1 +13.1. Normative 13.1. 1 13 13. 13.1 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 .................... 20 9 0 0 0 0 1 +13.2. Informative 13.2. 1 13 13. 13.2 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ................... 19 9 0 0 0 0 1 +Authors' Addresses authors' A Au Aut Auth BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 '....................... 24 9 0 0 0 0 1 +Mosko, et mosko, M Mo Mos Mosk BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 1 11 ,. 2 10 0 0 1 0 0 +Experimental Experimental experimental E Ex Exp Expe BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 11 no 0 9 0 0 0 0 0 +[Page 3] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 11 [] 2 6 0 0 0 0 0 +RFC 8569 rfc R RF RFC RFC BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 1 0 no 0 10 0 0 0 0 1 +CCNx Semantics ccnx C CC CCN CCNx BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 1 0 no 0 10 0 0 1 0 1 +July 2019 july J Ju Jul July BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 1 0 no 0 6 0 0 0 0 1 +1. Introduction 1. 1 1. 1. 1. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 0 . 1 10 0 0 0 0 1 +This document this T Th Thi This BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 0 . 1 9 0 0 0 0 1 +describes a describes d de des desc BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 0 no 0 10 0 0 0 0 1 +requests and requests r re req requ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 1 0 . 1 8 0 0 0 0 1 +endpoint addresses, endpoint e en end endp BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 0 ,. 2 9 0 0 0 0 1 +request can request r re req requ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 0 ' 1 9 0 0 0 0 1 +signer or signer s si sig sign BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 0 . 1 8 0 0 0 0 1 +forwarder along forwarder f fo for forw BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 0 no 0 9 0 0 0 0 1 +checking. The checking. c ch che chec BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 0 . 1 9 0 0 0 0 1 +Information-Centric Networking information-centric I In Inf Info BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 1 0 -()[]. 6 9 0 0 0 0 1 +document concerns document d do doc docu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 0 no 0 9 0 0 0 0 1 +on a on o on on on BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 0 .[] 3 9 0 0 0 0 1 +describes a describes d de des desc BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 0 --()-. 6 9 0 0 0 0 1 +section introduces section s se sec sect BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 0 , 1 9 0 0 0 0 1 +elaborated in elaborated e el ela elab BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 0 . 1 6 0 0 0 0 1 +The CCNx the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 3 ,. 2 10 0 0 0 0 1 +[nnc]. Jacobson's [nnc]. [ [n [nn [nnc BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 3 [].'.(" 7 9 0 0 0 0 1 +0.x"), and 0.x"), 0 0. 0.x 0.x" BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 3 ."),.("."). 11 10 0 0 0 0 1 +There are there T Th The Ther BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 3 .. 2 9 0 0 0 0 1 +implementation is implementation i im imp impl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 3 ()[], 5 9 0 0 0 0 1 +project hosted project p pr pro proj BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 3 ..- 3 9 0 0 0 0 1 +[ccn-lite], with [ccn-lite], [ [c [cc [ccn BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 3 [-],() 6 10 0 0 0 0 1 +RIOT operating riot R RI RIO RIOT BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 1 3 .. 2 9 0 0 0 0 1 +Networking (NDN) networking N Ne Net Netw BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 3 ()[]. 5 6 0 0 0 0 1 +The current the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 6 .. 2 9 0 0 0 0 1 +significant areas. significant s si sig sign BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 6 . 1 10 0 0 0 0 1 +CCNx 0.x ccnx C CC CCN CCNx BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 1 6 ... 3 8 0 0 0 0 1 +processing behavior. processing p pr pro proc BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 6 ., 2 8 0 0 0 0 1 +hierarchical longest hierarchical h hi hie hier BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 6 no 0 9 0 0 0 0 1 +forwarding information forwarding f fo for forw BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 6 () 2 9 0 0 0 0 1 +network to network n ne net netw BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 1 6 . 1 10 0 0 0 0 1 +match a match m ma mat matc BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 6 '' 2 10 0 0 0 0 1 +path and path p pa pat path BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 6 .., 3 9 0 0 0 0 1 +Interest name interest I In Int Inte BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 6 , 1 9 0 0 0 0 1 +which allows which w wh whi whic BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 6 ().., 5 9 0 0 0 0 1 +a response's a a a a a BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 1 0 0 0 0 0 1 6 ''. 3 9 0 0 0 0 1 +discovery is discovery d di dis disc BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 6 -. 2 7 0 0 0 0 1 +The selector the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 10 ""[] 4 10 0 0 0 0 1 +using a using u us usi usin BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 10 -. 2 9 0 0 0 0 1 +content discovery. content c co con cont BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 10 . 1 9 0 0 0 0 1 +the original the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 10 . 1 9 0 0 0 0 1 +matching of matching m ma mat matc BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 10 . 1 7 0 0 0 0 1 +Mosko, et mosko, M Mo Mos Mosk BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 1 11 ,. 2 10 0 0 1 0 0 +Experimental Experimental experimental E Ex Exp Expe BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 11 no 0 9 0 0 0 0 0 +[Page 4] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 11 [] 2 6 0 0 0 0 0 +RFC 8569 rfc R RF RFC RFC BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 1 0 no 0 10 0 0 0 0 1 +CCNx Semantics ccnx C CC CCN CCNx BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 1 0 no 0 10 0 0 1 0 1 +July 2019 july J Ju Jul July BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 1 0 no 0 6 0 0 0 0 1 +This document this T Th Thi This BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 0 - 1 9 0 0 0 0 1 +Networking Research networking N Ne Net Netw BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 0 (). 3 10 0 0 0 0 1 +the RG, the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 0 ,[] 3 9 0 0 0 0 1 +revision and revision r re rev revi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 0 . 1 9 0 0 0 0 1 +document has document d do doc docu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 0 no 0 10 0 0 0 0 1 +community and community c co com comm BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 0 . 1 9 0 0 0 0 1 +contents. This contents. c co con cont BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 0 ., 2 9 0 0 0 0 1 +by the by b by by by BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 0 ,. 2 9 0 0 0 0 1 +protocol and protocol p pr pro prot BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 0 . 1 9 0 0 0 0 1 +specification may specification s sp spe spec BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 0 . 1 5 0 0 0 0 1 +1.1. Requirements 1.1. 1 1. 1.1 1.1. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 3 .. 2 10 0 0 0 0 1 +The key the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 3 "","","","","", 15 9 0 0 0 0 1 +"SHOULD", "SHOULD "should", " "S "SH "SHO BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 1 3 "","","","","", 15 10 0 0 0 0 1 +"OPTIONAL" in "optional" " "O "OP "OPT BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 1 3 "" 2 9 0 0 0 0 1 +BCP 14 bcp B BC BCP BCP BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 1 3 [][],, 6 9 0 0 0 0 1 +capitals, as capitals, c ca cap capi BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 3 ,. 2 3 0 0 0 0 1 +1.2. Architecture 1.2. 1 1. 1.2 1.2. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 5 .. 2 10 0 0 0 0 1 +We describe we W We We We BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 5 no 0 10 0 0 0 0 1 +and introduce and a an and and BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 5 []. 3 10 0 0 0 0 1 +behavior of behavior b be beh beha BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 5 . 1 9 0 0 0 0 1 +A producer a A A A A BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 1 0 0 0 0 0 1 6 ("") 4 8 0 0 0 0 1 +encapsulates content encapsulates e en enc enca BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 6 no 0 9 0 0 0 0 1 +network. A network. n ne net netw BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 6 ./( 3 10 0 0 0 0 1 +or indirectly) or o or or or BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 6 ).,' 4 9 0 0 0 0 1 +(hash of (hash ( (h (ha (has BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 6 () 2 9 0 0 0 0 1 +producer's namespace producer's p pr pro prod BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 6 '. 2 5 0 0 0 0 1 +A producer a A A A A BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 1 0 0 0 0 0 1 7 . 1 10 0 0 0 0 1 +name prefix name n na nam name BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 7 no 0 9 0 0 0 0 1 +(FIB). This (fib). ( (F (FI (FIB BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 1 7 (). 3 9 0 0 0 0 1 +response (if response r re res resp BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 7 (). 3 3 0 0 0 0 1 +The FIB the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 8 . 1 9 0 0 0 0 1 +It may it I It It It BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 8 ,, 2 10 0 0 0 0 1 +or to or o or or or BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 8 ., 2 9 0 0 0 0 1 +forwarder cannot forwarder f fo for forw BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 8 . 1 9 0 0 0 0 1 +matching to matching m ma mat matc BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 8 ... 3 9 0 0 0 0 1 +FIB, though fib, F FI FIB FIB, BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 1 8 ,. 2 10 0 0 0 0 1 +(i.e., a (i.e., ( (i (i. (i.e BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 8 (..,). 6 8 0 0 0 0 1 +forwarder, for forwarder, f fo for forw BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 8 ,,. 3 8 0 0 0 0 1 +Mosko, et mosko, M Mo Mos Mosk BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 1 11 ,. 2 10 0 0 1 0 0 +Experimental Experimental experimental E Ex Exp Expe BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 11 no 0 9 0 0 0 0 0 +[Page 5] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 11 [] 2 6 0 0 0 0 0 +RFC 8569 rfc R RF RFC RFC BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 1 0 no 0 10 0 0 0 0 1 +CCNx Semantics ccnx C CC CCN CCNx BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 1 0 no 0 10 0 0 1 0 1 +July 2019 july J Ju Jul July BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 1 0 no 0 6 0 0 0 0 1 +A consumer a A A A A BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 1 0 0 0 0 0 1 0 . 1 9 0 0 0 0 1 +scope of scope s sc sco scop BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 0 no 0 10 0 0 0 0 1 +publisher KeyId; publisher p pu pub publ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 0 ;- 2 9 0 0 0 0 1 +those tasks, those t th tho thos BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 0 ,- 2 9 0 0 0 0 1 +names. The names. n na nam name BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 0 .,, 3 9 0 0 0 0 1 +forwards it forwards f fo for forw BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 0 '. 2 9 0 0 0 0 1 +either a either e ei eit eith BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 0 () 2 10 0 0 0 0 1 +or a or o or or or BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 0 () 2 9 0 0 0 0 1 +network cannot network n ne net netw BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 1 0 . 1 5 0 0 0 0 1 +There are there T Th The Ther BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 2 . 1 9 0 0 0 0 1 +Interest Return interest I In Int Inte BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 2 - 1 9 0 0 0 0 1 +level error level l le lev leve BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 2 """". 5 9 0 0 0 0 1 +arrives at arrives a ar arr arri BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 2 , 1 9 0 0 0 0 1 +content, the content, c co con cont BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 2 ,- 2 9 0 0 0 0 1 +message (e.g., message m me mes mess BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 2 (..,"")., 9 9 0 0 0 0 1 +receive anything; receive r re rec rece BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 2 ;,, 3 10 0 0 0 0 1 +the application, the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 2 , 1 8 0 0 0 0 1 +application. application. application. a ap app appl BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 2 . 1 1 0 0 0 0 1 +1.3. Protocol 1.3. 1 1. 1.3 1.3. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 4 .. 2 10 0 0 0 0 1 +The goal the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 5 no 0 10 0 0 0 0 1 +network without network n ne net netw BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 2 5 . 1 9 0 0 0 0 1 +system (specified system s sy sys syst BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 5 () 2 9 0 0 0 0 1 +router with router r ro rou rout BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 5 no 0 10 0 0 0 0 1 +producers under producers p pr pro prod BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 5 . 1 9 0 0 0 0 1 +those paths, those t th tho thos BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 5 ,,, 3 9 0 0 0 0 1 +match is match m ma mat matc BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 5 ,. 2 9 0 0 0 0 1 +may further may m ma may may BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 1 0 0 2 5 no 0 9 0 0 0 0 1 +response's signer response's r re res resp BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 5 '. 2 9 0 0 0 0 1 +details of details d de det deta BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 5 . 1 7 0 0 0 0 1 +The CCNx the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 7 . 1 9 0 0 0 0 1 +segment has segment s se seg segm BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 7 . 1 9 0 0 0 0 1 +done as done d do don done BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 7 , 1 9 0 0 0 0 1 +segment by segment s se seg segm BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 7 .- 2 9 0 0 0 0 1 +scheme "ccnx:" scheme s sc sch sche BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 7 ":"[-], 7 10 0 0 0 0 1 +a series a a a a a BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 1 0 0 0 0 0 2 7 (,). 4 9 0 0 0 0 1 +any name any a an any any BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 7 -. 2 9 0 0 0 0 1 +in a in i in in in BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 2 7 , 1 10 0 0 0 0 1 +put its put p pu put put BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 7 (.., 4 9 0 0 0 0 1 +maximum length maximum m ma max maxi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 7 -)., 4 9 0 0 0 0 1 +segments and segments s se seg segm BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 7 , 1 10 0 0 0 0 1 +limited by limited l li lim limi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 7 no 0 9 0 0 0 0 1 +a routing a a a a a BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 1 0 0 0 0 0 2 7 ., 2 9 0 0 0 0 1 +comparison, whereas comparison, c co com comp BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 7 ,,- 3 9 0 0 0 0 1 +hostname (due hostname h ho hos host BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 7 (). 3 3 0 0 0 0 1 +Mosko, et mosko, M Mo Mos Mosk BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 2 11 ,. 2 10 0 0 1 0 0 +Experimental Experimental experimental E Ex Exp Expe BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 11 no 0 9 0 0 0 0 0 +[Page 6] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 11 [] 2 6 0 0 0 0 0 +RFC 8569 rfc R RF RFC RFC BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 2 0 no 0 10 0 0 0 0 1 +CCNx Semantics ccnx C CC CCN CCNx BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 2 0 no 0 10 0 0 1 0 1 +July 2019 july J Ju Jul July BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 2 0 no 0 6 0 0 0 0 1 +The CCNx the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 0 ,, 2 9 0 0 0 0 1 +general octet-encoded general g ge gen gene BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 0 - 1 9 0 0 0 0 1 +human readability human h hu hum huma BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 0 . 1 9 0 0 0 0 1 +that we that t th tha that BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 0 . 1 9 0 0 0 0 1 +expect that expect e ex exp expe BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 0 ,, 2 9 0 0 0 0 1 +will apply will w wi wil will BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 2 0 no 0 10 0 0 0 0 1 +segment types segment s se seg segm BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 0 . 1 5 0 0 0 0 1 +CCNx is ccnx C CC CCN CCNx BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 2 2 no 0 9 0 0 0 0 1 +using a using u us usi usin BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 2 . 1 9 0 0 0 0 1 +through a through t th thr thro BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 2 (),, 4 10 0 0 0 0 1 +alternatively, indirectly alternatively, a al alt alte BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 2 ,. 2 9 0 0 0 0 1 +weaker Message weaker w we wea weak BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 2 () 2 9 0 0 0 0 1 +mechanism at mechanism m me mec mech BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 2 . 1 9 0 0 0 0 1 +each chunk each e ea eac each BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 2 (), 3 9 0 0 0 0 1 +to rely to t to to to BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 2 , 1 8 0 0 0 0 1 +certificates, to certificates, c ce cer cert BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 2 ,., 3 9 0 0 0 0 1 +integrity is integrity i in int inte BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 2 ; 1 9 0 0 0 0 1 +transmission channel. transmission t tr tra tran BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 2 . 1 8 0 0 0 0 1 +confidentiality, discussed confidentiality, c co con conf BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 2 ,. 2 4 0 0 0 0 1 +This document this T Th Thi This BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 5 . 1 10 0 0 0 0 1 +some isolated some s so som some BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 5 , 1 9 0 0 0 0 1 +they choose they t th the they BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 5 () 2 9 0 0 0 0 1 +protocol or protocol p pr pro prot BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 5 . 1 9 0 0 0 0 1 +Internet environment, internet I In Int Inte BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 2 5 , 1 9 0 0 0 0 1 +names and names n na nam name BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 5 , 1 9 0 0 0 0 1 +specified here. specified s sp spe spec BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 5 . 1 2 0 0 0 0 1 +The key the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 7 no 0 7 0 0 0 0 1 +cryptographically bound cryptographically c cr cry cryp BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 7 .- 2 8 0 0 0 0 1 +generated bindings generated g ge gen gene BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 7 . 1 9 0 0 0 0 1 +named payload named n na nam name BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 7 ,,, 3 8 0 0 0 0 1 +ValidationAlgorithm}, ValidationPayload}, validationalgorithm}, V Va Val Vali BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 2 7 ,, 2 9 0 0 0 0 1 +inner tuple inner i in inn inne BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 7 (..,). 6 9 0 0 0 0 1 +Consumers of consumers C Co Con Cons BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 7 no 0 10 0 0 0 0 1 +the same the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 7 no 0 9 0 0 0 0 1 +ValidationPayload. ValidationPayload. validationpayload. V Va Val Vali BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 2 7 . 1 2 0 0 0 0 1 +In addition in I In In In BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 2 9 (..,), 6 9 0 0 0 0 1 +message authentication message m me mes mess BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 9 (.., 4 9 0 0 0 0 1 +Code (HMAC)) code C Co Cod Code BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 9 ())(.., 7 9 0 0 0 0 1 +Checks (CRC)). checks C Ch Che Chec BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 9 ())., 5 9 0 0 0 0 1 +be at be b be be be BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 9 , 1 10 0 0 0 0 1 +not all not n no not not BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 9 ., 2 9 0 0 0 0 1 +signature could signature s si sig sign BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 9 , 1 9 0 0 0 0 1 +tree, or tree, t tr tre tree BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 9 ,. 2 9 0 0 0 0 1 +Mosko, et mosko, M Mo Mos Mosk BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 2 11 ,. 2 10 0 0 1 0 0 +Experimental Experimental experimental E Ex Exp Expe BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 11 no 0 9 0 0 0 0 0 +[Page 7] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 11 [] 2 6 0 0 0 0 0 +RFC 8569 rfc R RF RFC RFC BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 2 0 no 0 10 0 0 0 0 1 +CCNx Semantics ccnx C CC CCN CCNx BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 2 0 no 0 10 0 0 1 0 1 +July 2019 july J Ju Jul July BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 2 0 no 0 6 0 0 0 0 1 +validation and validation v va val vali BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 0 . 1 9 0 0 0 0 1 +integrity code integrity i in int inte BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 0 (..,) 5 10 0 0 0 0 1 +corruption in corruption c co cor corr BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 0 . 1 4 0 0 0 0 1 +CCNx specifies ccnx C CC CCN CCNx BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 2 0 () 2 10 0 0 0 0 1 +and Content and a an and and BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 0 (). 3 9 0 0 0 0 1 +Interest includes interest I In Int Inte BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 0 , 1 9 0 0 0 0 1 +response, and response, r re res resp BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 0 ,. 2 9 0 0 0 0 1 +possible matching possible p po pos poss BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 0 .: 2 9 0 0 0 0 1 +ID restriction id I ID ID ID BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 1 0 0 0 0 0 0 2 0 () 2 9 0 0 0 0 1 +(ContentObjectHashRestr). The (contentobjecthashrestr). ( (C (Co (Con BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 0 (). 3 9 0 0 0 0 1 +responses to responses r re res resp BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 0 no 0 9 0 0 0 0 1 +equal to equal e eq equ equa BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 0 . 1 9 0 0 0 0 1 +restriction, which restriction, r re res rest BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 0 , 1 10 0 0 0 0 1 +hash of hash h ha has hash BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 0 . 1 8 0 0 0 0 1 +Section 9 section S Se Sec Sect BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 0 no 0 9 0 0 0 0 1 +Content Object content C Co Con Cont BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 0 . 1 4 0 0 0 0 1 +The hierarchy the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 4 no 0 9 0 0 0 0 1 +matching prefix matching m ma mat matc BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 4 . 1 9 0 0 0 0 1 +computed name computed c co com comp BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 4 , 1 10 0 0 0 0 1 +each name each e ea eac each BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 4 . 1 8 0 0 0 0 1 +requirement that requirement r re req requ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 4 . 1 8 0 0 0 0 1 +deployment, any deployment, d de dep depl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 4 ,, 2 9 0 0 0 0 1 +single flat single s si sin sing BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 4 (). 3 6 0 0 0 0 1 +Another concept another A An Ano Anot BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 6 no 0 10 0 0 0 0 1 +Interest messages interest I In Int Inte BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 6 ., 2 10 0 0 0 0 1 +an Interest an a an an an BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 2 6 no 0 10 0 0 0 0 1 +one Content one o on one one BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 6 . 1 9 0 0 0 0 1 +more than more m mo mor more BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 6 , 1 9 0 0 0 0 1 +that only that t th tha that BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 6 . 1 10 0 0 0 0 1 +Interest is interest I In Int Inte BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 6 -, 2 9 0 0 0 0 1 +the sender the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 6 no 0 9 0 0 0 0 1 +other media-dependent other o ot oth othe BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 6 - 1 9 0 0 0 0 1 +election is election e el ele elec BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 6 . 1 2 0 0 0 0 1 +As an as A As As As BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 9 , 1 8 0 0 0 0 1 +establishes state establishes e es est esta BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 9 no 0 9 0 0 0 0 1 +response can response r re res resp BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 9 () 2 10 0 0 0 0 1 +the requester the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 9 . 1 9 0 0 0 0 1 +the notional the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 9 () 2 10 0 0 0 0 1 +that facilitates that t th tha that BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 9 . 1 7 0 0 0 0 1 +The notional the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 10 no 0 9 0 0 0 0 1 +field and field f fi fie fiel BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 2 10 . 1 10 0 0 0 0 1 +a Content a a a a a BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 1 0 0 0 0 0 2 10 (). 3 9 0 0 0 0 1 +Mosko, et mosko, M Mo Mos Mosk BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 2 11 ,. 2 10 0 0 1 0 0 +Experimental Experimental experimental E Ex Exp Expe BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 11 no 0 9 0 0 0 0 0 +[Page 8] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 11 [] 2 6 0 0 0 0 0 +RFC 8569 rfc R RF RFC RFC BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 2 0 no 0 10 0 0 0 0 1 +CCNx Semantics ccnx C CC CCN CCNx BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 2 0 no 0 10 0 0 1 0 1 +July 2019 july J Ju Jul July BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 2 0 no 0 6 0 0 0 0 1 +Object arrives, object O Ob Obj Obje BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 0 , 1 10 0 0 0 0 1 +entries it entries e en ent entr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 0 ., 2 9 0 0 0 0 1 +Content Object content C Co Con Cont BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 0 . 1 9 0 0 0 0 1 +An actual an A An An An BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 2 1 . 1 8 0 0 0 0 1 +implementation may implementation i im imp impl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 1 no 0 10 0 0 0 0 1 +behavior. There behavior. b be beh beha BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 1 .,, 3 8 0 0 0 0 1 +techniques like techniques t te tec tech BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 1 no 0 9 0 0 0 0 1 +reduce the reduce r re red redu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 1 -[]. 4 8 0 0 0 0 1 +implementations store implementations i im imp impl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 1 , 1 10 0 0 0 0 1 +second table. second s se sec seco BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 1 . 1 2 0 0 0 0 1 +If multiple if I If If If BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 3 ,[], 4 8 0 0 0 0 1 +[ContentObjectHashRestr]} tuple [contentobjecthashrestr]} [ [C [Co [Con BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 3 [] 2 9 0 0 0 0 1 +Object matching object O Ob Obj Obje BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 3 , 1 10 0 0 0 0 1 +the same the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 3 ( 1 8 0 0 0 0 1 +Section 2.4.2). section S Se Sec Sect BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 3 ..)., 5 9 0 0 0 0 1 +pending Interests pending p pe pen pend BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 3 . 1 4 0 0 0 0 1 +In CCNx, in I In In In BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 3 4 ,-"- 4 8 0 0 0 0 1 +protocols" because protocols" p pr pro prot BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 4 "., 3 9 0 0 0 0 1 +versioning protocol versioning v ve ver vers BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 4 no 0 10 0 0 0 0 1 +state about state s st sta stat BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 4 . 1 9 0 0 0 0 1 +might append might m mi mig migh BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 4 - 1 10 0 0 0 0 1 +discover content discover d di dis disc BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 3 4 . 1 9 0 0 0 0 1 +and apply and a an and and BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 4 . 1 9 0 0 0 0 1 +protocol encapsulating protocol p pr pro prot BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 4 ()'. 4 9 0 0 0 0 1 +This document this T Th Thi This BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 6 no 0 9 0 0 0 0 1 +Return. A return. R Re Ret Retu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 6 . 1 8 0 0 0 0 1 +previous hop previous p pr pre prev BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 6 . 1 9 0 0 0 0 1 +returned Interest returned r re ret retu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 6 no 0 9 0 0 0 0 1 +returned towards returned r re ret retu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 6 . 1 8 0 0 0 0 1 +Interest, it interest, I In Int Inte BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 6 , 1 9 0 0 0 0 1 +response from response r re res resp BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 6 ,.., 4 10 0 0 0 0 1 +left at left l le lef left BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 6 . 1 8 0 0 0 0 1 +There are there T Th The Ther BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 9 . 1 8 0 0 0 0 1 +Aggregating L3 aggregating A Ag Agg Aggr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 3 9 no 0 9 0 0 0 0 1 +scope of scope s sc sco scop BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 9 .,- 3 8 0 0 0 0 1 +Collection (FLIC) collection C Co Col Coll BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 9 ()[], 5 10 0 0 0 0 1 +a larger a a a a a BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 1 0 0 0 0 0 3 9 .,,. 4 8 0 0 0 0 1 +Another option another A An Ano Anot BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 9 , 1 10 0 0 0 0 1 +in the in i in in in BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 3 9 [] 2 9 0 0 0 0 1 +broken into broken b br bro brok BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 9 no 0 9 0 0 0 0 1 +component indicating component c co com comp BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 9 . 1 5 0 0 0 0 1 +Mosko, et mosko, M Mo Mos Mosk BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 3 11 ,. 2 10 0 0 1 0 0 +Experimental Experimental experimental E Ex Exp Expe BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 11 no 0 9 0 0 0 0 0 +[Page 9] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 11 [] 2 6 0 0 0 0 0 +RFC 8569 rfc R RF RFC RFC BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 3 0 no 0 10 0 0 0 0 1 +CCNx Semantics ccnx C CC CCN CCNx BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 3 0 no 0 10 0 0 1 0 1 +July 2019 july J Ju Jul July BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 3 0 no 0 6 0 0 0 0 1 +At the at A At At At BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 0 ,, 2 9 0 0 0 0 1 +fragmentation. One fragmentation. f fr fra frag BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 0 ., 2 9 0 0 0 0 1 +Fragments [befrags], fragments F Fr Fra Frag BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 0 [],- 4 9 0 0 0 0 1 +over L2 over o ov ove over BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 0 [] 2 10 0 0 0 0 1 +in TLV in i in in in BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 3 0 . 1 3 0 0 0 0 1 +With these with W Wi Wit With BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 1 , 1 9 0 0 0 0 1 +behavior of behavior b be beh beha BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 1 ,, 2 10 0 0 0 0 1 +Interest Return interest I In Int Inte BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 1 . 1 3 0 0 0 0 1 +2. Protocol 2. 2 2. 2. 2. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 3 2 . 1 10 0 0 0 0 1 +This section this T Th Thi This BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 2 (, 2 10 0 0 0 0 1 +Object, or object, O Ob Obj Obje BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 2 ,). 3 9 0 0 0 0 1 +a consumer, a a a a a BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 1 0 0 0 0 0 3 2 ,,., 4 9 0 0 0 0 1 +there are there t th the ther BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 2 - 1 9 0 0 0 0 1 +specific topics, specific s sp spe spec BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 2 ,, 2 9 0 0 0 0 1 +detailed processing detailed d de det deta BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 2 no 0 8 0 0 0 0 1 +messages. messages. messages. m me mes mess BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 2 . 1 1 0 0 0 0 1 +2.1. Message 2.1. 2 2. 2.1 2.1. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 3 4 .. 2 10 0 0 0 0 1 +The CCNx the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 4 []. 3 9 0 0 0 0 1 +grammar does grammar g gr gra gram BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 4 ,. 2 9 0 0 0 0 1 +Specific wire specific S Sp Spe Spec BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 4 . 1 9 0 0 0 0 1 +Validation section validation V Va Val Vali BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 4 , 1 10 0 0 0 0 1 +Body (BodyName body B Bo Bod Body BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 4 () 2 10 0 0 0 0 1 +section. The section. s se sec sect BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 4 .,, 3 9 0 0 0 0 1 +exist outside exist e ex exi exis BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 4 . 1 9 0 0 0 0 1 +HashType, PayloadType, hashtype, H Ha Has Hash BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 3 7 ,,() 4 9 0 0 0 0 1 +correspond to correspond c co cor corr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 7 " 1 9 0 0 0 0 1 +Types" and types" T Ty Typ Type BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 3 7 """[-], 7 10 0 0 0 0 1 +as the as a as as as BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 7 ""[-], 6 9 0 0 0 0 1 +respectively. respectively. respectively. r re res resp BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 7 . 1 2 0 0 0 0 1 +The various the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 8 ,,: 3 10 0 0 0 0 1 +AbsTime: Absolute abstime: A Ab Abs AbsT BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 3 9 :- 2 10 0 0 0 0 1 +milliseconds since milliseconds m mi mil mill BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 9 (). 3 8 0 0 0 0 1 +CacheTime: The cachetime: C Ca Cac Cach BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 3 9 : 1 10 0 0 0 0 1 +there is there t th the ther BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 9 . 1 9 0 0 0 0 1 +recommendation to recommendation r re rec reco BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 9 (). 3 6 0 0 0 0 1 +Cert: Some cert: C Ce Cer Cert BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 3 10 :. 2 10 0 0 0 0 1 +both validate both b bo bot both BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 10 . 1 9 0 0 0 0 1 +is a is i is is is BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 10 -.. 3 5 0 0 0 0 1 +Mosko, et mosko, M Mo Mos Mosk BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 3 11 ,. 2 10 0 0 1 0 0 +Experimental Experimental experimental E Ex Exp Expe BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 11 no 0 9 0 0 0 0 0 +[Page 10] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 11 [] 2 7 0 0 0 0 0 +RFC 8569 rfc R RF RFC RFC BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 3 0 no 0 10 0 0 0 0 1 +CCNx Semantics ccnx C CC CCN CCNx BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 3 0 no 0 10 0 0 1 0 1 +July 2019 july J Ju Jul July BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 3 0 no 0 6 0 0 0 0 1 +ConObjField: These conobjfield: C Co Con ConO BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 3 0 : 1 10 0 0 0 0 1 +Object. Object. object. O Ob Obj Obje BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 0 . 1 1 0 0 0 0 1 +ConObjHash: The conobjhash: C Co Con ConO BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 3 0 :, 2 9 0 0 0 0 1 +SHA256-32 over sha256-32 S SH SHA SHA2 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 3 0 - 1 10 0 0 0 0 1 +end of end e en end end BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 0 . 1 9 0 0 0 0 1 +from the from f fr fro from BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 0 . 1 9 0 0 0 0 1 +domains (see domains d do dom doma BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 0 (). 3 3 0 0 0 0 1 +ContentObjectHashRestr: The contentobjecthashrestr: C Co Con Cont BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 3 2 :. 2 10 0 0 0 0 1 +Content Object content C Co Con Cont BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 2 no 0 9 0 0 0 0 1 +using the using u us usi usin BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 2 . 1 9 0 0 0 0 1 +SHA256-32. SHA256-32. sha256-32. S SH SHA SHA2 BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 3 2 -. 2 1 0 0 0 0 1 +ExpiryTime: An expirytime: E Ex Exp Expi BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 3 3 : 1 10 0 0 0 0 1 +be considered be b be be be BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 3 (). 3 5 0 0 0 0 1 +Hash: Hash hash: H Ha Has Hash BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 4 : 1 10 0 0 0 0 1 +the algorithm the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 4 no 0 8 0 0 0 0 1 +value. This value. v va val valu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 4 .. 2 8 0 0 0 0 1 +mandate a mandate m ma man mand BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 4 . 1 4 0 0 0 0 1 +HashType: The hashtype: H Ha Has Hash BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 3 5 :, 2 10 0 0 0 0 1 +correspond to correspond c co cor corr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 5 "" 2 9 0 0 0 0 1 +[ccnx-registry]. [ccnx-registry]. [ccnx-registry]. [ [c [cc [ccn BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 5 [-]. 4 2 0 0 0 0 1 +HopLimit: Interest hoplimit: H Ho Hop HopL BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 3 6 : 1 10 0 0 0 0 1 +forwarding plane. forwarding f fo for forw BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 6 ., 2 10 0 0 0 0 1 +carries a carries c ca car carr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 6 no 0 9 0 0 0 0 1 +longer forwarded longer l lo lon long BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 6 ... 3 8 0 0 0 0 1 +InterestField: These interestfield: I In Int Inte BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 3 7 : 1 10 0 0 0 0 1 +Interest message. interest I In Int Inte BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 7 . 1 2 0 0 0 0 1 +KeyId: An keyid: K Ke Key KeyI BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 3 8 :. 2 10 0 0 0 0 1 +Validation (Section validation V Va Val Vali BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 8 () 2 9 0 0 0 0 1 +MACs and macs M MA MAC MACs BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 8 . 1 3 0 0 0 0 1 +KeyIdRestr: The keyidrestr: K Ke Key KeyI BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 3 8 :. 2 10 0 0 0 0 1 +KeyId with keyid K Ke Key KeyI BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 3 8 . 1 7 0 0 0 0 1 +KeyLink: A keylink: K Ke Key KeyL BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 3 9 :() 3 10 0 0 0 0 1 +used to used u us use used BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 9 (). 3 8 0 0 0 0 1 +Lifetime: The lifetime: L Li Lif Life BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 10 : 1 10 0 0 0 0 1 +to wait to t to to to BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 10 ,. 2 9 0 0 0 0 1 +strongly related strongly s st str stro BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 10 -, 2 9 0 0 0 0 1 +necessarily be necessarily n ne nec nece BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 10 . 1 3 0 0 0 0 1 +Mosko, et mosko, M Mo Mos Mosk BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 3 11 ,. 2 10 0 0 1 0 0 +Experimental Experimental experimental E Ex Exp Expe BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 11 no 0 9 0 0 0 0 0 +[Page 11] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 11 [] 2 7 0 0 0 0 0 +RFC 8569 rfc R RF RFC RFC BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 3 0 no 0 10 0 0 0 0 1 +CCNx Semantics ccnx C CC CCN CCNx BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 3 0 no 0 10 0 0 1 0 1 +July 2019 july J Ju Jul July BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 3 0 no 0 6 0 0 0 0 1 +Name: A name: N Na Nam Name BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 0 : 1 10 0 0 0 0 1 +or more or o or or or BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 0 ,. 2 8 0 0 0 0 1 +segments are segments s se seg segm BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 0 no 0 9 0 0 0 0 1 +encoding UTF-8. encoding e en enc enco BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 0 -.. 3 9 0 0 0 0 1 +MAY have may M MA MAY MAY BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 1 1 0 0 1 0 0 3 0 (). 3 9 0 0 0 0 1 +to be to t to to to BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 0 no 0 9 0 0 0 0 1 +Object. A object. O Ob Obj Obje BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 0 .. 2 8 0 0 0 0 1 +Interest carrying interest I In Int Inte BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 0 no 0 9 0 0 0 0 1 +and the and a an and and BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 0 no 0 8 0 0 0 0 1 +Content Object. content C Co Con Cont BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 0 . 1 2 0 0 0 0 1 +Payload: The payload: P Pa Pay Payl BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 3 3 :',. 4 10 0 0 0 0 1 +PayloadType: The payloadtype: P Pa Pay Payl BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 3 4 :., 3 9 0 0 0 0 1 +Data type data D Da Dat Data BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 4 ()[-]. 6 9 0 0 0 0 1 +the payload the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 4 . 1 7 0 0 0 0 1 +(T_PAYLOADTYPE_KEY [ccnx-registry]) (t_payloadtype_key ( (T (T_ (T_P BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 3 4 ([-])- 6 9 0 0 0 0 1 +encoded public encoded e en enc enco BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 4 .. 2 7 0 0 0 0 1 +(T_PAYLOADTYPE_LINK [ccnx-registry]) (t_payloadtype_link ( (T (T_ (T_P BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 3 4 ([-]) 5 10 0 0 0 0 1 +(see Section (see ( (s (se (see BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 4 (). 3 2 0 0 0 0 1 +PublicKey: Some publickey: P Pu Pub Publ BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 3 6 : 1 10 0 0 0 0 1 +to verify to t to to to BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 6 . 1 9 0 0 0 0 1 +is DER is i is is is BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 6 . 1 2 0 0 0 0 1 +RelTime: A reltime: R Re Rel RelT BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 3 7 :,. 3 10 0 0 0 0 1 +ReturnCode: States returncode: R Re Ret Retu BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 3 7 : 1 10 0 0 0 0 1 +to the to t to to to BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 7 (.). 4 5 0 0 0 0 1 +SigTime: The sigtime: S Si Sig SigT BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 3 7 :() 3 10 0 0 0 0 1 +generated. The generated. g ge gen gene BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 7 . 1 8 0 0 0 0 1 +algorithm; it algorithm; a al alg algo BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 7 ; 1 9 0 0 0 0 1 +message was message m me mes mess BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 7 . 1 3 0 0 0 0 1 +Vendor: Vendor-specific vendor: V Ve Ven Vend BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 9 :-. 3 10 0 0 0 0 1 +IANA Private iana I IA IAN IANA BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 4 9 [-], 4 9 0 0 0 0 1 +vendor-specific information. vendor-specific v ve ven vend BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 9 -.- 3 9 0 0 0 0 1 +most locations most m mo mos most BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 9 . 1 4 0 0 0 0 1 +Message Message message M Me Mes Mess BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 10 no 0 1 0 0 0 0 1 += Interest = = = = = BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 10 // 2 8 0 0 0 0 1 +Interest Interest interest I In Int Inte BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 10 no 0 1 0 0 0 0 1 += IntHdr = = = = = BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 10 [] 2 6 0 0 0 0 1 +IntHdr IntHdr inthdr I In Int IntH BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 4 10 no 0 1 0 0 0 0 1 += HopLimit = = = = = BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 10 []* 3 5 0 0 0 0 1 +ContentObject = contentobject C Co Con Cont BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 4 10 [] 2 10 0 0 0 0 1 +ConObjHdr ConObjHdr conobjhdr C Co Con ConO BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 4 10 no 0 1 0 0 0 0 1 += [CacheTime = = = = = BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 10 [/]* 4 6 0 0 0 0 1 +InterestReturn= ReturnCode interestreturn= I In Int Inte BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 4 10 no 0 7 0 0 0 0 1 +BodyName BodyName bodyname B Bo Bod Body BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 4 10 no 0 1 0 0 0 0 1 += Name = = = = = BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 10 no 0 2 0 0 0 0 1 +BodyOptName BodyOptName bodyoptname B Bo Bod Body BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 4 10 no 0 2 0 0 0 0 1 += [Name] = = = = = BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 10 [] 2 3 0 0 0 0 1 +Mosko, et mosko, M Mo Mos Mosk BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 4 11 ,. 2 10 0 0 1 0 0 +Experimental Experimental experimental E Ex Exp Expe BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 11 no 0 9 0 0 0 0 0 +[Page 12] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 11 [] 2 7 0 0 0 0 0 +RFC 8569 rfc R RF RFC RFC BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 4 0 no 0 10 0 0 0 0 1 +CCNx Semantics ccnx C CC CCN CCNx BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 4 0 no 0 10 0 0 1 0 1 +July 2019 july J Ju Jul July BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 4 0 no 0 6 0 0 0 0 1 +Common Common common C Co Com Comm BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 0 no 0 2 0 0 0 0 1 += *Field = = = = = BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 0 *[] 3 5 0 0 0 0 1 +Validation Validation validation V Va Val Vali BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 0 no 0 3 0 0 0 0 1 += ValidationAlg = = = = = BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 0 no 0 10 0 0 0 0 1 +Name Name name N Na Nam Name BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 0 no 0 1 0 0 0 0 1 += FirstSegment = = = = = BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 0 * 1 7 0 0 0 0 1 +FirstSegment = firstsegment F Fi Fir Firs BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 4 0 */ 2 10 0 0 0 0 1 +Segment Segment segment S Se Seg Segm BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 0 no 0 2 0 0 0 0 1 += *OCTET = = = = = BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 0 */ 2 5 0 0 0 0 1 +ValidationAlg = validationalg V Va Val Vali BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 4 1 (-/--/--/ 9 10 0 0 0 0 1 +HMAC-SHA256 / hmac-sha256 H HM HMA HMAC BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 4 1 -/)* 4 4 0 0 0 0 1 +ValidationPayload = validationpayload V Va Val Vali BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 4 1 * 1 4 0 0 0 0 1 +PublicAlg PublicAlg publicalg P Pu Pub Publ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 4 1 no 0 1 0 0 0 0 1 += KeyId = = = = = BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 1 [][][][] 8 7 0 0 0 0 1 +RSA-SHA256 RSA-SHA256 rsa-sha256 R RS RSA RSA- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 4 1 - 1 1 0 0 0 0 1 += PublicAlg = = = = = BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 1 no 0 1 0 0 0 0 1 +EC-SECP-256K1 = ec-secp-256k1 E EC EC- EC-S BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 4 1 -- 2 4 0 0 0 0 1 +EC-SECP-384R1 = ec-secp-384r1 E EC EC- EC-S BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 4 1 -- 2 4 0 0 0 0 1 +HMAC-SHA256 HMAC-SHA256 hmac-sha256 H HM HMA HMAC BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 4 1 - 1 1 0 0 0 0 1 += KeyId = = = = = BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 1 [][] 4 4 0 0 0 0 1 +CRC32C CRC32C crc32c C CR CRC CRC3 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 4 1 no 0 1 0 0 0 0 1 += [SigTime] = = = = = BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 1 [] 2 1 0 0 0 0 1 +AbsTime AbsTime abstime A Ab Abs AbsT BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 4 4 no 0 1 0 0 0 0 1 += 8OCTET = = = = = BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 4 ;- 2 7 0 0 0 0 1 +CacheTime CacheTime cachetime C Ca Cac Cach BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 4 4 no 0 1 0 0 0 0 1 += AbsTime = = = = = BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 4 no 0 1 0 0 0 0 1 +ConObjField ConObjField conobjfield C Co Con ConO BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 4 4 no 0 2 0 0 0 0 1 += ExpiryTime = = = = = BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 4 / 1 5 0 0 0 0 1 +ConObjHash ConObjHash conobjhash C Co Con ConO BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 4 4 no 0 2 0 0 0 0 1 += Hash = = = = = BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 4 no 0 1 0 0 0 0 1 +ExpiryTime ExpiryTime expirytime E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 4 4 no 0 2 0 0 0 0 1 += AbsTime = = = = = BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 4 no 0 1 0 0 0 0 1 +Field Field field F Fi Fie Fiel BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 4 4 no 0 1 0 0 0 0 1 += InterestField = = = = = BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 4 // 2 7 0 0 0 0 1 +Hash Hash hash H Ha Has Hash BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 4 no 0 0 0 0 0 0 1 += HashType = = = = = BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 4 * 1 3 0 0 0 0 1 +HashType HashType hashtype H Ha Has Hash BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 4 4 no 0 1 0 0 0 0 1 += 2OCTET = = = = = BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 4 ;"" 3 8 0 0 0 0 1 +HopLimit HopLimit hoplimit H Ho Hop HopL BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 4 4 no 0 1 0 0 0 0 1 += OCTET = = = = = BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 4 no 0 1 0 0 0 0 1 +InterestField = interestfield I In Int Inte BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 4 4 / 1 10 0 0 0 0 1 +KeyId KeyId keyid K Ke Key KeyI BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 4 4 no 0 1 0 0 0 0 1 += Hash = = = = = BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 4 no 0 1 0 0 0 0 1 +KeyIdRestr KeyIdRestr keyidrestr K Ke Key KeyI BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 4 4 no 0 2 0 0 0 0 1 += Hash = = = = = BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 4 no 0 1 0 0 0 0 1 +KeyLink KeyLink keylink K Ke Key KeyL BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 4 4 no 0 1 0 0 0 0 1 += Link = = = = = BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 4 no 0 1 0 0 0 0 1 +Lifetime Lifetime lifetime L Li Lif Life BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 4 no 0 1 0 0 0 0 1 += RelTime = = = = = BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 4 no 0 1 0 0 0 0 1 +Link Link link L Li Lin Link BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 4 4 no 0 0 0 0 0 0 1 += Name = = = = = BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 4 [][] 4 8 0 0 0 0 1 +ContentObjectHashRestr = contentobjecthashrestr C Co Con Cont BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 4 4 no 0 5 0 0 0 0 1 +Payload Payload payload P Pa Pay Payl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 4 4 no 0 1 0 0 0 0 1 += *OCTET = = = = = BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 4 * 1 1 0 0 0 0 1 +PayloadType PayloadType payloadtype P Pa Pay Payl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 4 4 no 0 2 0 0 0 0 1 += OCTET = = = = = BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 4 ;"" 3 6 0 0 0 0 1 +PublicKey PublicKey publickey P Pu Pub Publ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 4 4 no 0 1 0 0 0 0 1 += *OCTET = = = = = BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 4 *;- 3 6 0 0 0 0 1 +Cert Cert cert C Ce Cer Cert BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 4 4 no 0 0 0 0 0 0 1 += *OCTET = = = = = BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 4 *;-. 4 7 0 0 0 0 1 +RelTime RelTime reltime R Re Rel RelT BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 4 4 no 0 1 0 0 0 0 1 += 1*OCTET = = = = = BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 4 *; 2 3 0 0 0 0 1 +ReturnCode ReturnCode returncode R Re Ret Retu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 4 4 no 0 2 0 0 0 0 1 += OCTET = = = = = BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 4 ;. 2 5 0 0 0 0 1 +SigTime SigTime sigtime S Si Sig SigT BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 4 4 no 0 1 0 0 0 0 1 += AbsTime = = = = = BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 4 no 0 1 0 0 0 0 1 +Vendor Vendor vendor V Ve Ven Vend BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 4 no 0 1 0 0 0 0 1 += PEN = = = = = BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 4 * 1 2 0 0 0 0 1 +PEN PEN pen P PE PEN PEN BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 1 1 0 0 0 0 0 4 4 no 0 0 0 0 0 0 1 += 1*OCTET = = = = = BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 4 *;"" 4 8 0 0 0 0 1 +Figure 1: figure F Fi Fig Figu BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 11 : 1 10 0 0 0 0 1 +Mosko, et mosko, M Mo Mos Mosk BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 4 11 ,. 2 10 0 0 1 0 0 +Experimental Experimental experimental E Ex Exp Expe BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 11 no 0 9 0 0 0 0 0 +[Page 13] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 11 [] 2 7 0 0 0 0 0 +RFC 8569 rfc R RF RFC RFC BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 4 0 no 0 10 0 0 0 0 1 +CCNx Semantics ccnx C CC CCN CCNx BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 4 0 no 0 10 0 0 1 0 1 +July 2019 july J Ju Jul July BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 4 0 no 0 6 0 0 0 0 1 +2.2. Consumer 2.2. 2 2. 2.2 2.2. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 4 0 .. 2 10 0 0 0 0 1 +To request to T To To To BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 0 ,[], 4 8 0 0 0 0 1 +[ContentObjectHashRestr]} tuple, [contentobjecthashrestr]} [ [C [Co [Con BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 0 [], 3 9 0 0 0 0 1 +message with message m me mes mess BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 0 ., 2 8 0 0 0 0 1 +typically only typically t ty typ typi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 0 . 1 9 0 0 0 0 1 +Interest to interest I In Int Inte BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 0 no 0 9 0 0 0 0 1 +the name. the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 0 . 1 9 0 0 0 0 1 +hop in hop h ho hop hop BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 0 ; 1 9 0 0 0 0 1 +storing large storing s st sto stor BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 0 no 0 9 0 0 0 0 1 +requirements. Because requirements. r re req requ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 0 . 1 9 0 0 0 0 1 +an Interest an a an an an BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 4 0 , 1 9 0 0 0 0 1 +SHOULD put should S SH SHO SHOU BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 4 0 (.) 3 9 0 0 0 0 1 +name to name n na nam name BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 0 no 0 9 0 0 0 0 1 +avoid aggregating avoid a av avo avoi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 0 ., 2 9 0 0 0 0 1 +consumer uses consumer c co con cons BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 0 , 1 9 0 0 0 0 1 +segment as segment s se seg segm BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 0 no 0 9 0 0 0 0 1 +aggregated with aggregated a ag agg aggr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 0 no 0 10 0 0 0 0 1 +has no has h ha has has BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 0 . 1 5 0 0 0 0 1 +The consumer the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 5 , 1 10 0 0 0 0 1 +of time of o of of of BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 5 . 1 8 0 0 0 0 1 +InterestLifetime is interestlifetime I In Int Inte BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 4 5 -,- 3 9 0 0 0 0 1 +trip time trip t tr tri trip BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 4 5 (..)., 6 9 0 0 0 0 1 +will use will w wi wil will BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 4 5 (). 3 5 0 0 0 0 1 +The consumer the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 7 no 0 10 0 0 0 0 1 +or use or o or or or BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 7 . 1 9 0 0 0 0 1 +producer via producer p pr pro prod BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 7 ,. 2 7 0 0 0 0 1 +A consumer a A A A A BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 1 0 0 0 0 0 4 8 , 1 10 0 0 0 0 1 +then forward then t th the then BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 8 ( 1 8 0 0 0 0 1 +replica) that replica) r re rep repl BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 8 )(.). 5 9 0 0 0 0 1 +Interest messages interest I In Int Inte BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 9 . 1 10 0 0 0 0 1 +protocol that protocol p pr pro prot BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 9 , 1 9 0 0 0 0 1 +the InterestLifetime. the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 9 . 1 9 0 0 0 0 1 +document. document. document. d do doc docu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 9 . 1 1 0 0 0 0 1 +The network the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 10 no 0 9 0 0 0 0 1 +indicates the indicates i in ind indi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 10 . 1 9 0 0 0 0 1 +specifies the specifies s sp spe spec BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 10 ,. 2 10 0 0 0 0 1 +Depending on depending D De Dep Depe BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 10 , 1 9 0 0 0 0 1 +MAY return may M MA MAY MAY BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 1 1 0 0 1 0 0 4 10 . 1 7 0 0 0 0 1 +Mosko, et mosko, M Mo Mos Mosk BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 4 11 ,. 2 10 0 0 1 0 0 +Experimental Experimental experimental E Ex Exp Expe BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 11 no 0 9 0 0 0 0 0 +[Page 14] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 11 [] 2 7 0 0 0 0 0 +RFC 8569 rfc R RF RFC RFC BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 4 0 no 0 10 0 0 0 0 1 +CCNx Semantics ccnx C CC CCN CCNx BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 4 0 no 0 10 0 0 1 0 1 +July 2019 july J Ju Jul July BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 4 0 no 0 6 0 0 0 0 1 +If the if I If If If BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 0 , 1 10 0 0 0 0 1 +consumer will consumer c co con cons BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 0 . 1 9 0 0 0 0 1 +following set following f fo fol foll BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 0 : 1 9 0 0 0 0 1 +o The o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 4 1 . 1 10 0 0 0 0 1 +o The o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 4 1 no 0 10 0 0 0 0 1 +one or one o on one one BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 1 . 1 7 0 0 0 0 1 +o If o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 4 2 , 1 8 0 0 0 0 1 +cryptographically verify cryptographically c cr cry cryp BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 2 . 1 9 0 0 0 0 1 +does not does d do doe does BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 2 ,, 2 10 0 0 0 0 1 +as from as a as as as BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 2 . 1 7 0 0 0 0 1 +o If o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 4 3 , 1 9 0 0 0 0 1 +considering if considering c co con cons BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 3 ., 2 9 0 0 0 0 1 +consumer is consumer c co con cons BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 3 , 1 10 0 0 0 0 1 +expect the expect e ex exp expe BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 3 no 0 9 0 0 0 0 1 +generated. generated. generated. g ge gen gene BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 3 . 1 1 0 0 0 0 1 +o If o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 4 5 , 1 9 0 0 0 0 1 +trustworthiness of trustworthiness t tr tru trus BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 5 . 1 9 0 0 0 0 1 +assertion is assertion a as ass asse BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 5 , 1 10 0 0 0 0 1 +traditional PKI traditional t tr tra trad BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 5 ,, 2 9 0 0 0 0 1 +methods like methods m me met meth BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 5 []. 3 3 0 0 0 0 1 +o The o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 4 6 , 1 10 0 0 0 0 1 +the ExpiryTime the t th the the BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 6 . 1 4 0 0 0 0 1 +o The o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 4 7 no 0 10 0 0 0 0 1 +expired. A expired. e ex exp expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 7 .; 2 9 0 0 0 0 1 +there is there t th the ther BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 7 no 0 10 0 0 0 0 1 +flight. The flight. f fl fli flig BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 7 .,, 3 10 0 0 0 0 1 +producers MUST producers p pr pro prod BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 7 . 1 9 0 0 0 0 1 +2.3. Publisher 2.3. 2 2. 2.3 2.3. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 4 9 .. 2 10 0 0 0 0 1 +This document this T Th Thi This BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 9 no 0 9 0 0 0 0 1 +FIB table fib F FI FIB FIB BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 4 9 (.). 4 9 0 0 0 0 1 +configured with configured c co con conf BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 9 no 0 9 0 0 0 0 1 +content or content c co con cont BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 9 no 0 10 0 0 0 0 1 +to advertise to t to to to BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 9 . 1 4 0 0 0 0 1 +When a when W Wh Whe When BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 10 ,: 2 10 0 0 0 0 1 +o Verify o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 4 11 '(). 4 10 0 0 0 0 1 +Mosko, et mosko, M Mo Mos Mosk BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 4 11 ,. 2 10 0 0 1 0 0 +Experimental Experimental experimental E Ex Exp Expe BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 11 no 0 9 0 0 0 0 0 +[Page 15] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 11 [] 2 7 0 0 0 0 0 +RFC 8569 rfc R RF RFC RFC BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 4 0 no 0 10 0 0 0 0 1 +CCNx Semantics ccnx C CC CCN CCNx BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 4 0 no 0 10 0 0 1 0 1 +July 2019 july J Ju Jul July BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 4 0 no 0 6 0 0 0 0 1 +o If o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 4 0 , 1 9 0 0 0 0 1 +Section 8. section S Se Sec Sect BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 0 ., 2 9 0 0 0 0 1 +the publisher the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 0 no 0 8 0 0 0 0 1 +validations. The validations. v va val vali BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 0 . 1 9 0 0 0 0 1 +carry a carry c ca car carr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 4 0 no 0 9 0 0 0 0 1 +expect those expect e ex exp expe BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 0 , 1 10 0 0 0 0 1 +denial of denial d de den deni BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 0 . 1 9 0 0 0 0 1 +publisher does publisher p pu pub publ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 0 , 1 10 0 0 0 0 1 +fetch the fetch f fe fet fetc BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 0 no 0 8 0 0 0 0 1 +application's expected application's a ap app appl BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 0 '. 2 5 0 0 0 0 1 +o Retrieve o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 4 2 no 0 10 0 0 0 0 1 +the Interest's the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 2 '. 2 9 0 0 0 0 1 +returned, the returned, r re ret retu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 2 , 1 9 0 0 0 0 1 +Content Object content C Co Con Cont BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 2 no 0 9 0 0 0 0 1 +not available; not n no not not BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 2 ; 1 9 0 0 0 0 1 +in the in i in in in BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 4 2 (..,). 6 9 0 0 0 0 1 +2.4. Forwarder 2.4. 2 2. 2.4 2.4. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 4 .. 2 10 0 0 0 0 1 +A forwarder a A A A A BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 1 0 0 0 0 0 5 4 no 0 8 0 0 0 0 1 +Information Base information I In Inf Info BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 4 (), 3 9 0 0 0 0 1 +to the to t to to to BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 4 ', 2 10 0 0 0 0 1 +messages. It messages. m me mes mess BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 4 . 1 8 0 0 0 0 1 +notional Content notional n no not noti BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 4 . 1 9 0 0 0 0 1 +internal behavior internal i in int inte BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 4 , 1 9 0 0 0 0 1 +behaviors. behaviors. behaviors. b be beh beha BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 4 . 1 1 0 0 0 0 1 +In this in I In In In BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 5 6 ,: 2 9 0 0 0 0 1 +Interests and interests I In Int Inte BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 6 . 1 9 0 0 0 0 1 +up of up u up up up BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 6 ( 1 8 0 0 0 0 1 +Section 2.4.2), section S Se Sec Sect BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 6 ..), 4 10 0 0 0 0 1 +Store (see store S St Sto Stor BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 6 (..),. 6 9 0 0 0 0 1 +Content Store content C Co Con Cont BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 6 no 0 8 0 0 0 0 1 +Interests in interests I In Int Inte BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 6 . 1 8 0 0 0 0 1 +2.4.1. Interest 2.4.1. 2 2. 2.4 2.4. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 8 ... 3 10 0 0 0 0 1 +Interest looping interest I In Int Inte BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 9 . 1 9 0 0 0 0 1 +loops is loops l lo loo loop BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 9 - 1 9 0 0 0 0 1 +Interest, which interest, I In Int Inte BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 9 ,. 2 10 0 0 0 0 1 +A loop a A A A A BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 1 0 0 0 0 0 5 10 no 0 10 0 0 0 0 1 +previous PIT previous p pr pre prev BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 10 ., 2 9 0 0 0 0 1 +will be will w wi wil will BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 5 10 no 0 10 0 0 0 0 1 +already forwarded already a al alr alre BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 10 , 1 10 0 0 0 0 1 +anymore. When anymore. a an any anym BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 10 ., 2 9 0 0 0 0 1 +Mosko, et mosko, M Mo Mos Mosk BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 5 11 ,. 2 10 0 0 1 0 0 +Experimental Experimental experimental E Ex Exp Expe BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 11 no 0 9 0 0 0 0 0 +[Page 16] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 11 [] 2 7 0 0 0 0 0 +RFC 8569 rfc R RF RFC RFC BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 5 0 no 0 10 0 0 0 0 1 +CCNx Semantics ccnx C CC CCN CCNx BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 5 0 no 0 10 0 0 1 0 1 +July 2019 july J Ju Jul July BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 5 0 no 0 6 0 0 0 0 1 +will be will w wi wil will BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 5 0 . 1 9 0 0 0 0 1 +Interest will interest I In Int Inte BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 0 , 1 10 0 0 0 0 1 +return a return r re ret retu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 0 ,. 2 8 0 0 0 0 1 +The HopLimit the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 1 no 0 10 0 0 0 0 1 +Content Object content C Co Con Cont BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 1 no 0 8 0 0 0 0 1 +intermediate nodes, intermediate i in int inte BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 1 ,, 2 9 0 0 0 0 1 +and do and a an and and BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 1 . 1 5 0 0 0 0 1 +Every Interest every E Ev Eve Ever BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 3 . 1 9 0 0 0 0 1 +local application local l lo loc loca BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 3 , 1 10 0 0 0 0 1 +to other to t to to to BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 3 . 1 3 0 0 0 0 1 +When an when W Wh Whe When BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 4 , 1 9 0 0 0 0 1 +MUST be must M MU MUS MUST BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 5 4 ,. 2 10 0 0 0 0 1 +A forwarder a A A A A BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 1 0 0 0 0 0 5 4 no 0 10 0 0 0 0 1 +before it before b be bef befo BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 4 . 1 3 0 0 0 0 1 +If the if I If If If BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 5 , 1 9 0 0 0 0 1 +forwarded to forwarded f fo for forw BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 5 ; 1 10 0 0 0 0 1 +application or application a ap app appl BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 5 . 1 7 0 0 0 0 1 +A RECOMMENDED a A A A A BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 1 0 0 0 0 0 5 6 -: 2 10 0 0 0 0 1 +o If o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 5 6 : 1 10 0 0 0 0 1 +* If * * * * * BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 7 *, 2 10 0 0 0 0 1 +(HopLimit Exceeded), (hoplimit ( (H (Ho (Hop BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 7 (),. 4 7 0 0 0 0 1 +* Otherwise, * * * * * BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 7 *,. 3 10 0 0 0 0 1 +o Process o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 5 7 . 1 10 0 0 0 0 1 +o If o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 5 8 : 1 10 0 0 0 0 1 +* If * * * * * BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 8 *(), 4 10 0 0 0 0 1 +forwarding to forwarding f fo for forw BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 8 . 1 5 0 0 0 0 1 +* Otherwise, * * * * * BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 9 *,. 3 10 0 0 0 0 1 +2.4.2. Interest 2.4.2. 2 2. 2.4 2.4. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 9 ... 3 10 0 0 0 0 1 +Interest aggregation interest I In Int Inte BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 9 no 0 10 0 0 0 0 1 +that could that t th tha that BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 9 no 0 9 0 0 0 0 1 +already forwarded already a al alr alre BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 9 , 1 10 0 0 0 0 1 +the new the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 9 ; 1 9 0 0 0 0 1 +Content Object content C Co Con Cont BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 9 no 0 9 0 0 0 0 1 +both Interests. both b bo bot both BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 9 . 1 2 0 0 0 0 1 +Mosko, et mosko, M Mo Mos Mosk BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 5 11 ,. 2 10 0 0 1 0 0 +Experimental Experimental experimental E Ex Exp Expe BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 11 no 0 9 0 0 0 0 0 +[Page 17] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 11 [] 2 7 0 0 0 0 0 +RFC 8569 rfc R RF RFC RFC BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 5 0 no 0 10 0 0 0 0 1 +CCNx Semantics ccnx C CC CCN CCNx BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 5 0 no 0 10 0 0 1 0 1 +July 2019 july J Ju Jul July BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 5 0 no 0 6 0 0 0 0 1 +CCNx uses ccnx C CC CCN CCNx BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 5 0 no 0 8 0 0 0 0 1 +InterestLifetime is interestlifetime I In Int Inte BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 5 0 no 0 10 0 0 0 0 1 +round-trip time. round-trip r ro rou roun BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 0 -. 2 8 0 0 0 0 1 +lifetime was lifetime l li lif life BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 0 -, 2 8 0 0 0 0 1 +expiring an expiring e ex exp expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 0 no 0 10 0 0 0 0 1 +too short too t to too too BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 0 () 2 9 0 0 0 0 1 +scheme that scheme s sc sch sche BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 0 no 0 9 0 0 0 0 1 +overestimated the overestimated o ov ove over BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 0 . 1 3 0 0 0 0 1 +A forwarder a A A A A BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 1 0 0 0 0 0 5 2 . 1 10 0 0 0 0 1 +not, then not, n no not not, BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 2 ,. 2 10 0 0 0 0 1 +that multiple, that t th tha that BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 2 ,,. 3 10 0 0 0 0 1 +forwarder MUST forwarder f fo for forw BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 2 , 1 9 0 0 0 0 1 +Object could object O Ob Obj Obje BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 2 , 1 8 0 0 0 0 1 +forwarder did forwarder f fo for forw BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 2 . 1 8 0 0 0 0 1 +A RECOMMENDED a A A A A BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 1 0 0 0 0 0 5 4 : 1 10 0 0 0 0 1 +o Two o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 5 4 "", 3 10 0 0 0 0 1 +KeyIdRestr, and keyidrestr, K Ke Key KeyI BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 5 4 ,, 2 9 0 0 0 0 1 +field in field f fi fie fiel BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 5 4 . 1 6 0 0 0 0 1 +o Let o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 5 5 ( 1 9 0 0 0 0 1 +forwarder) be forwarder) f fo for forw BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 5 ) 1 10 0 0 0 0 1 +(or a (or ( (o (or (or BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 5 (-). 4 8 0 0 0 0 1 +o An o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 5 6 () 2 10 0 0 0 0 1 +InterestExpiry time interestexpiry I In Int Inte BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 5 6 . 1 5 0 0 0 0 1 +o The o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 5 7 . 1 10 0 0 0 0 1 +o A o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 5 7 no 0 9 0 0 0 0 1 +pending Interest pending p pe pen pend BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 7 . 1 10 0 0 0 0 1 +consider these consider c co con cons BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 7 . 1 6 0 0 0 0 1 +o A o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 5 8 no 0 10 0 0 0 0 1 +pending Interest pending p pe pen pend BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 8 ( 1 10 0 0 0 0 1 +forwarded). If forwarded). f fo for forw BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 8 ). 2 9 0 0 0 0 1 +pending Interest, pending p pe pen pend BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 8 ,. 2 6 0 0 0 0 1 +o Aggregating o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 5 9 no 0 10 0 0 0 0 1 +Interest record. interest I In Int Inte BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 9 . 1 7 0 0 0 0 1 +InterestExpiry time interestexpiry I In Int Inte BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 5 9 no 0 8 0 0 0 0 1 +InterestExpiry time interestexpiry I In Int Inte BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 5 9 ., 2 8 0 0 0 0 1 +forwarder might forwarder f fo for forw BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 9 no 0 8 0 0 0 0 1 +longer waiting longer l lo lon long BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 9 ,( 2 9 0 0 0 0 1 +the Content the t th the the BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 9 ). 2 5 0 0 0 0 1 +Mosko, et mosko, M Mo Mos Mosk BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 5 11 ,. 2 10 0 0 1 0 0 +Experimental Experimental experimental E Ex Exp Expe BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 11 no 0 9 0 0 0 0 0 +[Page 18] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 11 [] 2 7 0 0 0 0 0 +RFC 8569 rfc R RF RFC RFC BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 5 0 no 0 10 0 0 0 0 1 +CCNx Semantics ccnx C CC CCN CCNx BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 5 0 no 0 10 0 0 1 0 1 +July 2019 july J Ju Jul July BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 5 0 no 0 6 0 0 0 0 1 +2.4.3. Content 2.4.3. 2 2. 2.4 2.4. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 0 ... 3 10 0 0 0 0 1 +The Content the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 0 no 0 9 0 0 0 0 1 +CCNx forwarder. ccnx C CC CCN CCNx BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 5 0 .. 2 9 0 0 0 0 1 +lost packets lost l lo los lost BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 0 . 1 9 0 0 0 0 1 +be prepopulated be b be be be BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 0 . 1 9 0 0 0 0 1 +Store could store S St Sto Stor BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 0 , 1 10 0 0 0 0 1 +special rules special s sp spe spec BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 0 . 1 7 0 0 0 0 1 +1. A 1. 1 1. 1. 1. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 2 .., 3 10 0 0 0 0 1 +Content Store content C Co Con Cont BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 2 no 0 10 0 0 0 0 1 +normal matching normal n no nor norm BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 2 (). 3 6 0 0 0 0 1 +2. If 2. 2 2. 2. 2. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 3 ., 2 10 0 0 0 0 1 +MUST NOT must M MU MUS MUST BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 5 3 no 0 9 0 0 0 0 1 +Content Object content C Co Con Cont BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 3 . 1 9 0 0 0 0 1 +(i.e., in (i.e., ( (i (i. (i.e BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 3 (..,) 5 9 0 0 0 0 1 +or by or o or or or BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 3 no 0 9 0 0 0 0 1 +signature. A signature. s si sig sign BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 3 .; 2 9 0 0 0 0 1 +if it if i if if if BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 3 ,. 2 9 0 0 0 0 1 +3. If 3. 3 3. 3. 3. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 5 ., 2 10 0 0 0 0 1 +so as so s so so so BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 5 5 . 1 8 0 0 0 0 1 +Object itself object O Ob Obj Obje BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 5 (..,), 6 9 0 0 0 0 1 +the Content the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 5 ' 1 9 0 0 0 0 1 +to the to t to to to BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 5 ( 1 7 0 0 0 0 1 +Section 8.4). section S Se Sec Sect BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 5 .). 3 9 0 0 0 0 1 +of a of o of of of BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 5 , 1 9 0 0 0 0 1 +to do to t to to to BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 5 . 1 8 0 0 0 0 1 +network. If network. n ne net netw BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 5 ., 2 9 0 0 0 0 1 +should treat should s sh sho shou BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 5 . 1 6 0 0 0 0 1 +4. If 4. 4 4. 4. 4. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 8 ., 2 10 0 0 0 0 1 +Content Store content C Co Con Cont BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 8 no 0 10 0 0 0 0 1 +Object has object O Ob Obj Obje BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 8 ., 2 9 0 0 0 0 1 +it should it i it it it BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 8 . 1 6 0 0 0 0 1 +5. It 5. 5 5. 5. 5. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 9 .(). 4 10 0 0 0 0 1 +2.4.4. Interest 2.4.4. 2 2. 2.4 2.4. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 9 ... 3 10 0 0 0 0 1 +1. Perform 1. 1 1. 1. 1. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 10 .(..). 6 10 0 0 0 0 1 +2. If 2. 2 2. 2. 2. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 10 ., 2 9 0 0 0 0 1 +signature with signature s si sig sign BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 10 , 1 10 0 0 0 0 1 +MAY validate may M MA MAY MAY BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 1 1 0 0 1 0 0 6 10 . 1 9 0 0 0 0 1 +NOT fetch not N NO NOT NOT BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 6 10 . 1 9 0 0 0 0 1 +Mosko, et mosko, M Mo Mos Mosk BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 6 11 ,. 2 10 0 0 1 0 0 +Experimental Experimental experimental E Ex Exp Expe BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 11 no 0 9 0 0 0 0 0 +[Page 19] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 11 [] 2 7 0 0 0 0 0 +RFC 8569 rfc R RF RFC RFC BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 6 0 no 0 10 0 0 0 0 1 +CCNx Semantics ccnx C CC CCN CCNx BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 6 0 no 0 10 0 0 1 0 1 +July 2019 july J Ju Jul July BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 6 0 no 0 6 0 0 0 0 1 +due to due d du due due BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 0 , 1 10 0 0 0 0 1 +(Section 10.3.9). (section ( (S (Se (Sec BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 0 (..). 5 3 0 0 0 0 1 +3. Determine 3. 3 3. 3. 3. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 0 .... 4 10 0 0 0 0 1 +If it if I If If If BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 0 ,. 2 8 0 0 0 0 1 +4. If 4. 4 4. 4. 4. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 1 ., 2 10 0 0 0 0 1 +as per as a as as as BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 1 ..., 4 8 0 0 0 0 1 +return it return r re ret retu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 1 '. 2 8 0 0 0 0 1 +Content Store content C Co Con Cont BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 1 ... 3 5 0 0 0 0 1 +5. Look 5. 5 5. 5. 5. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 2 ..() 4 10 0 0 0 0 1 +performed name performed p pe per perf BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 2 (). 3 9 0 0 0 0 1 +SHOULD exclude should S SH SHO SHOU BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 6 2 '., 3 9 0 0 0 0 1 +forward the forward f fo for forw BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 2 . 1 9 0 0 0 0 1 +chooses not chooses c ch cho choo BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 2 (.., 4 8 0 0 0 0 1 +congestion), it congestion), c co con cong BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 2 ), 2 9 0 0 0 0 1 +Section 10. section S Se Sec Sect BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 2 . 1 1 0 0 0 0 1 +2.4.5. Content 2.4.5. 2 2. 2.4 2.4. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 5 ... 3 10 0 0 0 0 1 +1. It 1. 1 1. 1. 1. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 5 . 1 10 0 0 0 0 1 +check that check c ch che chec BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 5 . 1 9 0 0 0 0 1 +An expected an A An An An BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 6 5 no 0 8 0 0 0 0 1 +recorded in recorded r re rec reco BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 5 no 0 9 0 0 0 0 1 +way. way. way. w wa way way. BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 5 . 1 0 0 0 0 0 1 +2. A 2. 2 2. 2. 2. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 6 . 1 10 0 0 0 0 1 +satisfy the satisfy s sa sat sati BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 6 (). 3 8 0 0 0 0 1 +pending Interest pending p pe pen pend BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 6 no 0 9 0 0 0 0 1 +Interests. Interests. interests. I In Int Inte BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 6 . 1 1 0 0 0 0 1 +3. A 3. 3 3. 3. 3. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 8 . 1 10 0 0 0 0 1 +Content Object content C Co Con Cont BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 8 ., 2 9 0 0 0 0 1 +for example, for f fo for for BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 8 , 1 9 0 0 0 0 1 +in different in i in in in BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 6 8 (..,), 6 10 0 0 0 0 1 +they both they t th the they BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 8 . 1 9 0 0 0 0 1 +the same the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 8 , 1 9 0 0 0 0 1 +such as such s su suc such BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 8 ,. 2 9 0 0 0 0 1 +4. A 4. 4 4. 4. 4. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 10 . 1 10 0 0 0 0 1 +satisfied an satisfied s sa sat sati BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 10 (#). 4 9 0 0 0 0 1 +reduce the reduce r re red redu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 10 . 1 5 0 0 0 0 1 +Mosko, et mosko, M Mo Mos Mosk BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 6 11 ,. 2 10 0 0 1 0 0 +Experimental Experimental experimental E Ex Exp Expe BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 11 no 0 9 0 0 0 0 0 +[Page 20] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 11 [] 2 7 0 0 0 0 0 +RFC 8569 rfc R RF RFC RFC BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 6 0 no 0 10 0 0 0 0 1 +CCNx Semantics ccnx C CC CCN CCNx BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 6 0 no 0 10 0 0 1 0 1 +July 2019 july J Ju Jul July BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 6 0 no 0 6 0 0 0 0 1 +3. Names 3. 3 3. 3. 3. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 0 . 1 10 0 0 0 0 1 +A CCNx a A A A A BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 1 0 0 0 0 0 6 0 . 1 9 0 0 0 0 1 +carries a carries c ca car carr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 0 , 1 9 0 0 0 0 1 +value. For value. v va val valu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 0 ., 2 9 0 0 0 0 1 +serve specific serve s se ser serv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 0 no 0 10 0 0 0 0 1 +sequencing of sequencing s se seq sequ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 0 , 1 9 0 0 0 0 1 +Content Objects. content C Co Con Cont BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 0 . 1 2 0 0 0 0 1 +There are there T Th The Ther BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 3 :,, 3 9 0 0 0 0 1 +full names. full f fu ful full BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 3 . 1 9 0 0 0 0 1 +identify a identify i id ide iden BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 3 , 1 10 0 0 0 0 1 +an existing an a an an an BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 6 3 . 1 9 0 0 0 0 1 +identifies the identifies i id ide iden BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 3 . 1 9 0 0 0 0 1 +exact and exact e ex exa exac BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 3 . 1 9 0 0 0 0 1 +ConObjHash is conobjhash C Co Con ConO BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 6 3 no 0 9 0 0 0 0 1 +Object. Object. object. O Ob Obj Obje BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 3 . 1 1 0 0 0 0 1 +Note that note N No Not Note BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 6 no 0 9 0 0 0 0 1 +name. It name. n na nam name BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 6 . 1 8 0 0 0 0 1 +Interests and interests I In Int Inte BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 6 . 1 10 0 0 0 0 1 +It is it I It It It BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 6 . 1 6 0 0 0 0 1 +The name the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 9 no 0 9 0 0 0 0 1 +Table 1. table T Ta Tab Tabl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 9 ., 2 10 0 0 0 0 1 +in the in i in in in BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 6 9 -. 2 9 0 0 0 0 1 +Payload ID payload P Pa Pay Payl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 6 9 '. 2 9 0 0 0 0 1 +Application Components application A Ap App Appl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 9 no 0 9 0 0 0 0 1 +application use. application a ap app appl BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 9 . 1 2 0 0 0 0 1 +Mosko, et mosko, M Mo Mos Mosk BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 6 11 ,. 2 10 0 0 1 0 0 +Experimental Experimental experimental E Ex Exp Expe BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 11 no 0 9 0 0 0 0 0 +[Page 21] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 11 [] 2 7 0 0 0 0 0 +RFC 8569 rfc R RF RFC RFC BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 6 0 no 0 10 0 0 0 0 1 +CCNx Semantics ccnx C CC CCN CCNx BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 6 0 no 0 10 0 0 1 0 1 +July 2019 july J Ju Jul July BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 6 0 no 0 6 0 0 0 0 1 ++-------------+-----------------------------------------------------+ +-------------+-----------------------------------------------------+ +-------------+-----------------------------------------------------+ + +- +-- +--- BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 6 0 ------------------------------------------------------------------ 66 10 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 0 no 0 0 0 0 0 0 1 +Type Type type T Ty Typ Type BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 0 no 0 0 0 0 0 0 1 +| Description | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 0 no 0 2 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 0 no 0 0 0 0 0 0 1 ++-------------+-----------------------------------------------------+ +-------------+-----------------------------------------------------+ +-------------+-----------------------------------------------------+ + +- +-- +--- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 6 0 ------------------------------------------------------------------ 66 10 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 0 no 0 0 0 0 0 0 1 +Name Name name N Na Nam Name BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 0 no 0 0 0 0 0 0 1 +| A | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 0 no 0 7 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 0 no 0 0 0 0 0 0 1 +Segment Segment segment S Se Seg Segm BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 0 no 0 1 0 0 0 0 1 +| octets. | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 0 . 1 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 0 no 0 0 0 0 0 0 1 +Interest | interest I In Int Inte BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 0 no 0 9 0 0 0 0 1 +| Payload | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 0 ., 2 8 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 0 no 0 0 0 0 0 0 1 +| might | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 0 . 1 6 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 0 no 0 0 0 0 0 0 1 +| provides | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 0 no 0 7 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 0 no 0 0 0 0 0 0 1 +| based | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 0 no 0 7 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 0 no 0 0 0 0 0 0 1 +| without | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 0 no 0 7 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 0 no 0 0 0 0 0 0 1 +| the | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 0 . 1 3 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 0 no 0 0 0 0 0 0 1 +| Application | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 0 -. 2 9 0 0 0 0 1 +| Components | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 0 no 0 9 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 0 no 0 0 0 0 0 0 1 +| components. | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 0 . 1 7 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 0 no 0 0 0 0 0 0 1 +| application | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 0 no 0 6 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 0 no 0 0 0 0 0 0 1 +| application | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 0 . 1 4 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 0 no 0 0 0 0 0 0 1 ++-------------+-----------------------------------------------------+ +-------------+-----------------------------------------------------+ +-------------+-----------------------------------------------------+ + +- +-- +--- BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 6 0 ------------------------------------------------------------------ 66 10 0 0 0 0 1 +Table 1: table T Ta Tab Tabl BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 9 : 1 10 0 0 0 0 1 +At the at A At At At BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 9 , 1 9 0 0 0 0 1 +semantics of semantics s se sem sema BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 9 ; 1 9 0 0 0 0 1 +boundaries and boundaries b bo bou boun BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 9 ( 1 10 0 0 0 0 1 +value) for value) v va val valu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 9 ). 2 10 0 0 0 0 1 +against its against a ag aga agai BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 9 . 1 7 0 0 0 0 1 +Mosko, et mosko, M Mo Mos Mosk BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 6 11 ,. 2 10 0 0 1 0 0 +Experimental Experimental experimental E Ex Exp Expe BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 11 no 0 9 0 0 0 0 0 +[Page 22] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 11 [] 2 7 0 0 0 0 0 +RFC 8569 rfc R RF RFC RFC BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 6 0 no 0 10 0 0 0 0 1 +CCNx Semantics ccnx C CC CCN CCNx BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 6 0 no 0 10 0 0 1 0 1 +July 2019 july J Ju Jul July BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 6 0 no 0 6 0 0 0 0 1 +3.1. Name 3.1. 3 3. 3.1 3.1. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 0 .. 2 10 0 0 0 0 1 +This section this T Th Thi This BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 0 [-] 3 9 0 0 0 0 1 +names. Note names. n na nam name BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 0 ., 2 10 0 0 0 0 1 +Name with name N Na Nam Name BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 0 no 0 9 0 0 0 0 1 +of value. of o of of of BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 0 . 1 9 0 0 0 0 1 +all. The all. a al all all. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 0 .,,-( 5 8 0 0 0 0 1 +default route), default d de def defa BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 0 ),, 3 9 0 0 0 0 1 +name. name. name. n na nam name BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 0 . 1 0 0 0 0 0 1 ++--------------------------+----------------------------------------+ +--------------------------+----------------------------------------+ +--------------------------+----------------------------------------+ + +- +-- +--- BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 6 2 ------------------------------------------------------------------ 66 10 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 2 no 0 0 0 0 0 0 1 +Name Name name N Na Nam Name BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 2 no 0 0 0 0 0 0 1 +| Description | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 2 no 0 2 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 2 no 0 0 0 0 0 0 1 ++--------------------------+----------------------------------------+ +--------------------------+----------------------------------------+ +--------------------------+----------------------------------------+ + +- +-- +--- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 6 2 ------------------------------------------------------------------ 66 10 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 2 no 0 0 0 0 0 0 1 +ccnx:/ ccnx:/ ccnx:/ c cc ccn ccnx BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 2 :/ 2 1 0 0 0 0 1 +| A | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 2 -, 2 5 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 2 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 2 no 0 0 0 0 0 0 1 +| default | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 2 . 1 2 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 2 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 2 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 2 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 2 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 2 no 0 0 0 0 0 0 1 +ccnx:/NAME= ccnx:/NAME= ccnx:/name= c cc ccn ccnx BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 2 :/ 2 1 0 0 0 0 1 +| A | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 2 , 1 5 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 2 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 2 no 0 0 0 0 0 0 1 +| distinct | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 2 :/. 3 3 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 2 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 2 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 2 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 2 no 0 0 0 0 0 0 1 +| ccnx:/NAME=foo/APP:0=bar | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 2 ://:-, 6 9 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 2 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 2 no 0 0 0 0 0 0 1 +| segment | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 2 no 0 6 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 2 no 0 0 0 0 0 0 1 +| segment | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 2 :. 2 4 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 2 no 0 0 0 0 0 0 1 ++--------------------------+----------------------------------------+ +--------------------------+----------------------------------------+ +--------------------------+----------------------------------------+ + +- +-- +--- BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 6 2 ------------------------------------------------------------------ 66 10 0 0 0 0 1 +Table 2: table T Ta Tab Tabl BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 6 : 1 10 0 0 0 0 1 +3.2. Interest 3.2. 3 3. 3.2 3.2. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 6 .. 2 10 0 0 0 0 1 +An Interest an A An An An BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 7 7 no 0 9 0 0 0 0 1 +the Interest the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 7 . 1 8 0 0 0 0 1 +Interest contains interest I In Int Inte BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 7 , 1 9 0 0 0 0 1 +Interest Payload interest I In Int Inte BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 7 (). 3 10 0 0 0 0 1 +multiplex Content multiplex m mu mul mult BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 7 7 no 0 9 0 0 0 0 1 +specific payload specific s sp spe spec BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 7 . 1 9 0 0 0 0 1 +payload or payload p pa pay payl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 7 7 (). 3 9 0 0 0 0 1 +An optional an A An An An BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 7 7 no 0 9 0 0 0 0 1 +can verify can c ca can can BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 7 , 1 9 0 0 0 0 1 +payload. No payload. p pa pay payl BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 7 7 .. 2 7 0 0 0 0 1 +4. Cache 4. 4 4. 4. 4. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 9 . 1 10 0 0 0 0 1 +CCNx supports ccnx C CC CCN CCNx BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 7 10 . 1 9 0 0 0 0 1 +how a how h ho how how BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 10 . 1 9 0 0 0 0 1 +used in used u us use used BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 10 ; 1 9 0 0 0 0 1 +Object can object O Ob Obj Obje BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 10 . 1 10 0 0 0 0 1 +The ExpiryTime the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 11 no 0 10 0 0 0 0 1 +of a of o of of of BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 11 . 1 10 0 0 0 0 1 +Mosko, et mosko, M Mo Mos Mosk BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 7 11 ,. 2 10 0 0 1 0 0 +Experimental Experimental experimental E Ex Exp Expe BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 11 no 0 9 0 0 0 0 0 +[Page 23] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 7 11 [] 2 7 0 0 0 0 0 +RFC 8569 rfc R RF RFC RFC BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 7 0 no 0 10 0 0 0 0 1 +CCNx Semantics ccnx C CC CCN CCNx BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 7 0 no 0 10 0 0 1 0 1 +July 2019 july J Ju Jul July BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 7 0 no 0 6 0 0 0 0 1 +which the which w wh whi whic BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 0 no 0 10 0 0 0 0 1 +used to used u us use used BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 0 . 1 9 0 0 0 0 1 +flushed from flushed f fl flu flus BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 0 . 1 3 0 0 0 0 1 +The Recommended the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 0 () 2 10 0 0 0 0 1 +signature envelope. signature s si sig sign BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 0 . 1 9 0 0 0 0 1 +the publisher the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 0 no 0 9 0 0 0 0 1 +cache. A cache. c ca cac cach BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 0 ., 2 9 0 0 0 0 1 +it and it i it it it BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 0 . 1 9 0 0 0 0 1 +Object before object O Ob Obj Obje BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 0 ; 1 9 0 0 0 0 1 +remember anything. remember r re rem reme BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 0 . 1 2 0 0 0 0 1 +This formulation this T Th Thi This BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 2 no 0 10 0 0 0 0 1 +long ExpiryTime long l lo lon long BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 7 2 no 0 9 0 0 0 0 1 +Content Object content C Co Con Cont BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 2 . 1 10 0 0 0 0 1 +a form a a a a a BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 1 0 0 0 0 0 7 2 "" 2 10 0 0 0 0 1 +that the that t th tha that BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 2 . 1 4 0 0 0 0 1 +5. Content 5. 5 5. 5. 5. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 4 . 1 10 0 0 0 0 1 +CCNx allows ccnx C CC CCN CCNx BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 7 4 . 1 9 0 0 0 0 1 +The hash the T Th The The BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 4 no 0 9 0 0 0 0 1 +sections, if sections, s se sec sect BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 4 ,.,, 4 9 0 0 0 0 1 +includes that includes i in inc incl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 4 . 1 9 0 0 0 0 1 +or hop-by-hop or o or or or BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 4 --. 3 10 0 0 0 0 1 +matching rules matching m ma mat matc BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 4 (),. 4 9 0 0 0 0 1 +There are there T Th The Ther BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 6 no 0 8 0 0 0 0 1 +restriction in restriction r re res rest BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 6 ., 2 9 0 0 0 0 1 +itself the itself i it its itse BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 6 . 1 9 0 0 0 0 1 +expensive operation. expensive e ex exp expe BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 6 . 1 9 0 0 0 0 1 +compute the compute c co com comp BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 6 () 2 9 0 0 0 0 1 +that is that t th tha that BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 6 .,, 3 9 0 0 0 0 1 +removes any removes r re rem remo BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 6 , 1 10 0 0 0 0 1 +only be only o on onl only BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 6 . 1 9 0 0 0 0 1 +when crossing when w wh whe when BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 6 . 1 4 0 0 0 0 1 +6. Link 6. 6 6. 6. 6. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 9 . 1 10 0 0 0 0 1 +A Link a A A A A BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 1 0 0 0 0 0 7 9 ,[],[]. 7 9 0 0 0 0 1 +The information the T Th The The BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 9 no 0 9 0 0 0 0 1 +would retrieve would w wo wou woul BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 9 . 1 10 0 0 0 0 1 +"Link" is "link" " "L "Li "Lin BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 7 9 "". 3 9 0 0 0 0 1 +may be may m ma may may BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 1 0 0 7 9 no 0 9 0 0 0 0 1 +certificate-wrapped key. certificate-wrapped c ce cer cert BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 9 -. 2 9 0 0 0 0 1 +of either of o of of of BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 9 . 1 9 0 0 0 0 1 +neither restriction neither n ne nei neit BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 9 , 1 9 0 0 0 0 1 +matching name matching m ma mat matc BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 9 . 1 7 0 0 0 0 1 +Mosko, et mosko, M Mo Mos Mosk BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 7 11 ,. 2 10 0 0 1 0 0 +Experimental Experimental experimental E Ex Exp Expe BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 11 no 0 9 0 0 0 0 0 +[Page 24] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 7 11 [] 2 7 0 0 0 0 0 +RFC 8569 rfc R RF RFC RFC BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 7 0 no 0 10 0 0 0 0 1 +CCNx Semantics ccnx C CC CCN CCNx BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 7 0 no 0 10 0 0 1 0 1 +July 2019 july J Ju Jul July BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 7 0 no 0 6 0 0 0 0 1 +7. Hashes 7. 7 7. 7. 7. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 0 . 1 10 0 0 0 0 1 +Several protocol several S Se Sev Seve BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 0 , 1 10 0 0 0 0 1 +be secure be b be be be BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 0 . 1 8 0 0 0 0 1 +functions change functions f fu fun func BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 0 , 1 9 0 0 0 0 1 +falling victim falling f fa fal fall BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 0 , 1 9 0 0 0 0 1 +implementation supports implementation i im imp impl BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 0 . 1 5 0 0 0 0 1 +In this in I In In In BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 7 1 ,(..,-), 8 10 0 0 0 0 1 +specific implementation specific s sp spe spec BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 1 . 1 9 0 0 0 0 1 +CCNx Messages ccnx C CC CCN CCNx BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 7 1 [] 2 9 0 0 0 0 1 +definition of definition d de def defi BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 1 . 1 7 0 0 0 0 1 +8. Validation 8. 8 8. 8. 8. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 3 . 1 10 0 0 0 0 1 +8.1. Validation 8.1. 8 8. 8.1 8.1. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 3 .. 2 10 0 0 0 0 1 +The Validator the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 3 no 0 10 0 0 0 0 1 +verify the verify v ve ver veri BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 3 no 0 9 0 0 0 0 1 +output, e.g., output, o ou out outp BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 3 ,..,. 5 9 0 0 0 0 1 +section defines section s se sec sect BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 3 no 0 8 0 0 0 0 1 +necessary additional necessary n ne nec nece BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 3 . 1 9 0 0 0 0 1 +the beginning the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 3 no 0 8 0 0 0 0 1 +ValidationAlgorithm section validationalgorithm V Va Val Vali BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 7 3 (.., 4 9 0 0 0 0 1 +validation payload). validation v va val vali BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 3 ).. 3 9 0 0 0 0 1 +ValidationPayload is validationpayload V Va Val Vali BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 7 3 , 1 9 0 0 0 0 1 +signature. signature. signature. s si sig sign BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 3 . 1 1 0 0 0 0 1 +The CCNx the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 6 (.) 3 10 0 0 0 0 1 +algorithms and algorithms a al alg algo BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 6 ., 2 9 0 0 0 0 1 +the vendor the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 6 . 1 9 0 0 0 0 1 +applied to applied a ap app appl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 6 ,. 2 10 0 0 0 0 1 +An Interest an A An An An BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 7 6 no 0 10 0 0 0 0 1 +validator, if validator, v va val vali BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 7 6 ,. 2 2 0 0 0 0 1 +The grammar the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 9 no 0 9 0 0 0 0 1 +algorithm. It algorithm. a al alg algo BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 9 . 1 9 0 0 0 0 1 +for each for f fo for for BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 9 .,, 3 8 0 0 0 0 1 +signature in signature s si sig sign BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 9 , 1 10 0 0 0 0 1 +to allow to t to to to BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 9 - 1 9 0 0 0 0 1 +signature verification. signature s si sig sign BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 9 ., 2 9 0 0 0 0 1 +allow for allow a al all allo BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 9 no 0 9 0 0 0 0 1 +vendor methods. vendor v ve ven vend BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 9 . 1 2 0 0 0 0 1 +Mosko, et mosko, M Mo Mos Mosk BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 7 11 ,. 2 10 0 0 1 0 0 +Experimental Experimental experimental E Ex Exp Expe BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 11 no 0 9 0 0 0 0 0 +[Page 25] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 7 11 [] 2 7 0 0 0 0 0 +RFC 8569 rfc R RF RFC RFC BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 7 0 no 0 10 0 0 0 0 1 +CCNx Semantics ccnx C CC CCN CCNx BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 7 0 no 0 10 0 0 1 0 1 +July 2019 july J Ju Jul July BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 7 0 no 0 6 0 0 0 0 1 +8.2. Message 8.2. 8 8. 8.2 8.2. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 0 .. 2 10 0 0 0 0 1 +If the if I If If If BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 0 , 1 10 0 0 0 0 1 +the output the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 0 . 1 9 0 0 0 0 1 +algorithm allows algorithm a al alg algo BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 0 () 2 8 0 0 0 0 1 +timestamp when timestamp t ti tim time BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 7 0 ("" 3 9 0 0 0 0 1 +time is time t ti tim time BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 0 , 1 9 0 0 0 0 1 +purpose between purpose p pu pur purp BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 0 ,,). 4 6 0 0 0 0 1 +MICs are mics M MI MIC MICs BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 7 2 - 1 10 0 0 0 0 1 +corruption. They corruption. c co cor corr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 2 . 1 9 0 0 0 0 1 +objects are objects o ob obj obje BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 2 , 1 9 0 0 0 0 1 +is redundant. is i is is is BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 2 . 1 2 0 0 0 0 1 +8.3. Message 8.3. 8 8. 8.3 8.3. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 3 .. 2 10 0 0 0 0 1 +If the if I If If If BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 4 -, 2 9 0 0 0 0 1 +payload is payload p pa pay payl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 7 4 . 1 9 0 0 0 0 1 +validation algorithm validation v va val vali BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 4 no 0 10 0 0 0 0 1 +(SigTime) and (sigtime) ( (S (Si (Sig BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 7 4 (). 3 3 0 0 0 0 1 +The KeyId the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 5 no 0 10 0 0 0 0 1 +to authenticate to t to to to BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 5 . 1 9 0 0 0 0 1 +exchange protocol exchange e ex exc exch BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 5 [-].,, 6 9 0 0 0 0 1 +SHOULD be should S SH SHO SHOU BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 7 5 ; 1 9 0 0 0 0 1 +integer counter, integer i in int inte BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 5 ,,. 3 6 0 0 0 0 1 +The signature the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 7 no 0 10 0 0 0 0 1 +computed and computed c co com comp BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 7 . 1 5 0 0 0 0 1 +The KeyLink the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 7 no 0 10 0 0 0 0 1 +point towards point p po poi poin BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 7 . 1 8 0 0 0 0 1 +negotiation algorithm negotiation n ne neg nego BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 7 , 1 9 0 0 0 0 1 +a key a a a a a BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 1 0 0 0 0 0 8 7 . 1 9 0 0 0 0 1 +8.4. Signature 8.4. 8 8. 8.4 8.4. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 9 .. 2 10 0 0 0 0 1 +Signature-validation algorithms signature-validation S Si Sig Sign BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 9 - 1 8 0 0 0 0 1 +algorithms such algorithms a al alg algo BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 9 no 0 9 0 0 0 0 1 +Algorithm (ECDSA). algorithm A Al Alg Algo BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 9 (). 3 9 0 0 0 0 1 +encoding [RFC8609] encoding e en enc enco BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 9 []: 3 10 0 0 0 0 1 +RSA-SHA256, EC-SECP-256K1, rsa-sha256, R RS RSA RSA- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 9 -,--,--. 8 9 0 0 0 0 1 +be added be b be be be BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 9 no 0 9 0 0 0 0 1 +vendor-validation algorithm vendor-validation v ve ven vend BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 9 -. 2 5 0 0 0 0 1 +Mosko, et mosko, M Mo Mos Mosk BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 8 11 ,. 2 10 0 0 1 0 0 +Experimental Experimental experimental E Ex Exp Expe BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 11 no 0 9 0 0 0 0 0 +[Page 26] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 11 [] 2 7 0 0 0 0 0 +RFC 8569 rfc R RF RFC RFC BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 0 no 0 10 0 0 0 0 1 +CCNx Semantics ccnx C CC CCN CCNx BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 8 0 no 0 10 0 0 1 0 1 +July 2019 july J Ju Jul July BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 8 0 no 0 6 0 0 0 0 1 +A signature a A A A A BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 1 0 0 0 0 0 8 0 no 0 10 0 0 0 0 1 +optionally carry optionally o op opt opti BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 0 ,, 2 9 0 0 0 0 1 +embedded certificate, embedded e em emb embe BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 0 ,. 2 9 0 0 0 0 1 +normal to normal n no nor norm BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 0 . 1 10 0 0 0 0 1 +use and use u us use use BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 0 . 1 6 0 0 0 0 1 +It is it I It It It BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 1 , 1 10 0 0 0 0 1 +large and large l la lar larg BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 8 1 no 0 9 0 0 0 0 1 +data. The data. d da dat data BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 1 . 1 9 0 0 0 0 1 +certificate. certificate. certificate. c ce cer cert BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 1 . 1 1 0 0 0 0 1 +The KeyId the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 2 no 0 10 0 0 0 0 1 +used to used u us use used BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 2 . 1 8 0 0 0 0 1 +Identifier from identifier I Id Ide Iden BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 8 2 .(...[]). 9 9 0 0 0 0 1 +KeyId to keyid K Ke Key KeyI BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 8 2 . 1 9 0 0 0 0 1 +implementations MUST implementations i im imp impl BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 2 -. 2 9 0 0 0 0 1 +The use the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 4 , 1 10 0 0 0 0 1 +cause problems cause c ca cau caus BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 4 no 0 9 0 0 0 0 1 +digest algorithm digest d di dig dige BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 4 no 0 9 0 0 0 0 1 +(see Section (see ( (s (se (see BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 4 ()., 4 9 0 0 0 0 1 +needs to needs n ne nee need BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 4 (..); 5 9 0 0 0 0 1 +though in though t th tho thou BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 4 , 1 9 0 0 0 0 1 +would still would w wo wou woul BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 4 . 1 9 0 0 0 0 1 +and consumers and a an and and BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 4 ,. 2 7 0 0 0 0 1 +As per as A As As As BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 6 , 1 9 0 0 0 0 1 +restriction. It restriction. r re res rest BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 6 . 1 10 0 0 0 0 1 +the public the t th the the BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 6 ,,. 3 6 0 0 0 0 1 +If a if I If If If BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 7 ,,, 3 10 0 0 0 0 1 +or KeyLink, or o or or or BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 7 ,(,,) 5 9 0 0 0 0 1 +ensure that ensure e en ens ensu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 7 . 1 9 0 0 0 0 1 +corresponding hash corresponding c co cor corr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 7 no 0 9 0 0 0 0 1 +key. The key. k ke key key. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 7 .'. 3 9 0 0 0 0 1 +both an both b bo bot both BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 7 , 1 9 0 0 0 0 1 +be the be b be be be BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 7 . 1 1 0 0 0 0 1 +A message a A A A A BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 1 0 0 0 0 0 8 9 no 0 10 0 0 0 0 1 +key, as key, k ke key key, BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 9 ,. 2 9 0 0 0 0 1 +a certificate. a a a a a BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 1 0 0 0 0 0 8 9 . 1 2 0 0 0 0 1 +A KeyLink a A A A A BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 1 0 0 0 0 0 8 9 no 0 9 0 0 0 0 1 +Object with object O Ob Obj Obje BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 9 - 1 9 0 0 0 0 1 +optional DER-encoded optional o op opt opti BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 9 -.. 3 9 0 0 0 0 1 +Content Object's content C Co Con Cont BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 9 ''. 3 9 0 0 0 0 1 +second object's second s se sec seco BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 9 ' 1 10 0 0 0 0 1 +to the to t to to to BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 9 . 1 9 0 0 0 0 1 +Mosko, et mosko, M Mo Mos Mosk BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 8 11 ,. 2 10 0 0 1 0 0 +Experimental Experimental experimental E Ex Exp Expe BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 11 no 0 9 0 0 0 0 0 +[Page 27] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 11 [] 2 7 0 0 0 0 0 +RFC 8569 rfc R RF RFC RFC BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 0 no 0 10 0 0 0 0 1 +CCNx Semantics ccnx C CC CCN CCNx BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 8 0 no 0 10 0 0 1 0 1 +July 2019 july J Ju Jul July BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 8 0 no 0 6 0 0 0 0 1 +object's signature. object's o ob obj obje BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 0 '.-. 4 9 0 0 0 0 1 +in the in i in in in BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 8 0 ' 1 10 0 0 0 0 1 +the PublicKey. the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 0 ., 2 9 0 0 0 0 1 +specifying the specifying s sp spe spec BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 0 . 1 9 0 0 0 0 1 +The second the T Th The The BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 0 ; 1 9 0 0 0 0 1 +recursive key recursive r re rec recu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 0 . 1 3 0 0 0 0 1 +9. Interest 9. 9 9. 9. 9. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 1 . 1 10 0 0 0 0 1 +A Content a A A A A BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 1 0 0 0 0 0 8 1 () 2 10 0 0 0 0 1 +Object name, object O Ob Obj Obje BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 1 ,,,() 5 9 0 0 0 0 1 +ValidationAlgorithm KeyId validationalgorithm V Va Val Vali BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 8 1 no 0 9 0 0 0 0 1 +Interest KeyId interest I In Int Inte BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 1 ,,() 4 9 0 0 0 0 1 +Object Hash object O Ob Obj Obje BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 1 no 0 8 0 0 0 0 1 +restriction, if restriction, r re res rest BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 1 ,. 2 3 0 0 0 0 1 +The KeyId the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 3 (.). 4 9 0 0 0 0 1 +Hash format hash H Ha Has Hash BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 3 . 1 9 0 0 0 0 1 +When comparing when W Wh Whe When BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 3 , 1 10 0 0 0 0 1 +and the and a an and and BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 3 . 1 2 0 0 0 0 1 +The matching the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 4 ,, 2 8 0 0 0 0 1 +evaluates true, evaluates e ev eva eval BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 4 ,. 2 10 0 0 0 0 1 +Name in name N Na Nam Name BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 4 (), 3 9 0 0 0 0 1 +Interest (may interest I In Int Inte BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 4 (), 3 9 0 0 0 0 1 +Interest (may interest I In Int Inte BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 4 ().,,, 6 8 0 0 0 0 1 +properties in properties p pr pro prop BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 4 ,; 2 9 0 0 0 0 1 +always exists always a al alw alwa BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 4 (). 3 9 0 0 0 0 1 +For binary for F Fo For For BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 4 ,""""."" 8 10 0 0 0 0 1 +for the for f fo for for BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 4 ()"!" 5 9 0 0 0 0 1 +operator. operator. operator. o op ope oper BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 4 . 1 1 0 0 0 0 1 +As a as A As As As BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 7 , 1 9 0 0 0 0 1 +Interest specifies interest I In Int Inte BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 7 , 1 9 0 0 0 0 1 +Object can object O Ob Obj Obje BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 7 , 1 10 0 0 0 0 1 +and MAY and a an and and BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 7 ., 2 9 0 0 0 0 1 +the predicate the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 7 no 0 9 0 0 0 0 1 +never forwarded. never n ne nev neve BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 7 . 1 9 0 0 0 0 1 +having a having h ha hav havi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 7 , 1 9 0 0 0 0 1 +may assume may m ma may may BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 1 0 0 8 7 no 0 10 0 0 0 0 1 +system to system s sy sys syst BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 7 . 1 5 0 0 0 0 1 +(!No | (!no ( (! (!N (!No BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 9 (!())(!())(!())() 17 10 0 0 0 0 1 +As one as A As As As BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 10 ,. 2 10 0 0 0 0 1 +first term first f fi fir firs BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 10 no 0 9 0 0 0 0 1 +Object while object O Ob Obj Obje BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 10 no 0 9 0 0 0 0 1 +attribute in attribute a at att attr BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 10 ."" 3 9 0 0 0 0 1 +Mosko, et mosko, M Mo Mos Mosk BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 8 11 ,. 2 10 0 0 1 0 0 +Experimental Experimental experimental E Ex Exp Expe BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 11 no 0 9 0 0 0 0 0 +[Page 28] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 11 [] 2 7 0 0 0 0 0 +RFC 8569 rfc R RF RFC RFC BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 0 no 0 10 0 0 0 0 1 +CCNx Semantics ccnx C CC CCN CCNx BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 8 0 no 0 10 0 0 1 0 1 +July 2019 july J Ju Jul July BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 8 0 no 0 6 0 0 0 0 1 +restriction that restriction r re res rest BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 0 no 0 10 0 0 0 0 1 +Name, then name, N Na Nam Name BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 0 , 1 9 0 0 0 0 1 +restriction. restriction. restriction. r re res rest BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 0 . 1 2 0 0 0 0 1 +If a if I If If If BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 1 no 0 9 0 0 0 0 1 +expressed field, expressed e ex exp expr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 1 ,. 2 9 0 0 0 0 1 +It is it I It It It BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 1 no 0 9 0 0 0 0 1 +Object Hash object O Ob Obj Obje BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 1 no 0 10 0 0 0 0 1 +the autonomous the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 1 . 1 9 0 0 0 0 1 +not have not n no not not BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 1 , 1 9 0 0 0 0 1 +with a with w wi wit with BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 1 . 1 3 0 0 0 0 1 +10. Interest 10. 1 10 10. 10. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 3 . 1 10 0 0 0 0 1 +This section this T Th Thi This BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 3 no 0 9 0 0 0 0 1 +return an return r re ret retu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 3 no 0 10 0 0 0 0 1 +processing the processing p pr pro proc BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 3 . 1 9 0 0 0 0 1 +processed at processed p pr pro proc BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 3 no 0 9 0 0 0 0 1 +origin. When origin. o or ori orig BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 3 ., 2 9 0 0 0 0 1 +previous hop previous p pr pre prev BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 3 no 0 9 0 0 0 0 1 +Interest, i.e., interest, I In Int Inte BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 3 ,..,. 5 10 0 0 0 0 1 +The returned the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 6 no 0 9 0 0 0 0 1 +packet format packet p pa pac pack BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 6 (,--, 5 9 0 0 0 0 1 +CCNx Message ccnx C CC CCN CCNx BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 8 6 ). 2 10 0 0 0 0 1 +two ways: two t tw two two BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 6 : 1 1 0 0 0 0 1 +o The o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 8 8 no 0 10 0 0 0 0 1 +message. message. message. m me mes mess BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 8 . 1 1 0 0 0 0 1 +o The o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 8 8 no 0 10 0 0 0 0 1 +reason for reason r re rea reas BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 8 . 1 3 0 0 0 0 1 +The specific the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 9 no 0 10 0 0 0 0 1 +[RFC8609]. [RFC8609]. [rfc8609]. [ [R [RF [RFC BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 9 []. 3 1 0 0 0 0 1 +A forwarder a A A A A BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 1 0 0 0 0 0 9 9 . 1 10 0 0 0 0 1 +A forwarder a A A A A BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 1 0 0 0 0 0 9 10 no 0 10 0 0 0 0 1 +message. If message. m me mes mess BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 10 ., 2 9 0 0 0 0 1 +it SHOULD it i it it it BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 10 . 1 4 0 0 0 0 1 +The Interest the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 11 no 0 10 0 0 0 0 1 +other message other o ot oth othe BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 11 . 1 2 0 0 0 0 1 +Mosko, et mosko, M Mo Mos Mosk BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 9 11 ,. 2 10 0 0 1 0 0 +Experimental Experimental experimental E Ex Exp Expe BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 11 no 0 9 0 0 0 0 0 +[Page 29] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 11 [] 2 7 0 0 0 0 0 +RFC 8569 rfc R RF RFC RFC BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 0 no 0 10 0 0 0 0 1 +CCNx Semantics ccnx C CC CCN CCNx BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 9 0 no 0 10 0 0 1 0 1 +July 2019 july J Ju Jul July BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 9 0 no 0 6 0 0 0 0 1 +An Interest an A An An An BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 9 0 -. 2 9 0 0 0 0 1 +not propagated not n no not not BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 0 . 1 10 0 0 0 0 1 +receives an receives r re rec rece BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 0 no 0 9 0 0 0 0 1 +propagate its propagate p pr pro prop BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 0 no 0 9 0 0 0 0 1 +the reverse the t th the the BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 0 . 1 4 0 0 0 0 1 +10.1. Message 10.1. 1 10 10. 10.1 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 5 .. 2 10 0 0 0 0 1 +The Interest the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 5 no 0 10 0 0 0 0 1 +message with message m me mes mess BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 5 . 1 10 0 0 0 0 1 +The PacketType the T Th The The BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 5 , 1 10 0 0 0 0 1 +and the and a an and and BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 5 no 0 9 0 0 0 0 1 +Code. The code. C Co Cod Code BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 5 . 1 9 0 0 0 0 1 +[RFC8609]. [RFC8609]. [rfc8609]. [ [R [RF [RFC BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 5 []. 3 1 0 0 0 0 1 +Mosko, et mosko, M Mo Mos Mosk BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 9 11 ,. 2 10 0 0 1 0 0 +Experimental Experimental experimental E Ex Exp Expe BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 11 no 0 9 0 0 0 0 0 +[Page 30] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 11 [] 2 7 0 0 0 0 0 +RFC 8569 rfc R RF RFC RFC BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 0 no 0 10 0 0 0 0 1 +CCNx Semantics ccnx C CC CCN CCNx BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 9 0 no 0 10 0 0 1 0 1 +July 2019 july J Ju Jul July BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 9 0 no 0 6 0 0 0 0 1 +10.2. ReturnCode 10.2. 1 10 10. 10.2 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 0 .. 2 10 0 0 0 0 1 +This section this T Th Thi This BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 0 no 0 10 0 0 0 0 1 +this RFC. this t th thi this BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 0 . 1 9 0 0 0 0 1 +[RFC8609]. [RFC8609]. [rfc8609]. [ [R [RF [RFC BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 0 []. 3 1 0 0 0 0 1 ++----------------------+--------------------------------------------+ +----------------------+--------------------------------------------+ +----------------------+--------------------------------------------+ + +- +-- +--- BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 0 ------------------------------------------------------------------ 66 10 0 0 0 0 1 +| Name | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 0 no 0 1 0 0 0 0 1 +| Description | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 0 no 0 2 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 0 no 0 0 0 0 0 0 1 ++----------------------+--------------------------------------------+ +----------------------+--------------------------------------------+ +----------------------+--------------------------------------------+ + +- +-- +--- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 0 ------------------------------------------------------------------ 66 10 0 0 0 0 1 +| No | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 0 ( 1 2 0 0 0 0 1 +| The | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 0 no 0 6 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 0 no 0 0 0 0 0 0 1 +| 10.3.1) | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 0 ..) 3 1 0 0 0 0 1 +| the | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 0 . 1 3 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 0 no 0 0 0 0 0 0 1 +| HopLimit | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 0 no 0 2 0 0 0 0 1 +| The | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 0 no 0 5 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 0 no 0 0 0 0 0 0 1 +| (Section | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 0 (..) 4 2 0 0 0 0 1 +| needs | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 0 . 1 4 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 0 no 0 0 0 0 0 0 1 +| Interest | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 0 no 0 2 0 0 0 0 1 +| The | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 0 ' 1 6 0 0 0 0 1 +| large | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 0 ( 1 2 0 0 0 0 1 +| required | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 0 no 0 5 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 0 no 0 0 0 0 0 0 1 +| 10.3.3) | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 0 ..) 3 1 0 0 0 0 1 +| fragmentation. | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 0 . 1 2 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 0 no 0 0 0 0 0 0 1 +| No | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 0 no 0 2 0 0 0 0 1 +| The | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 0 no 0 6 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 0 no 0 0 0 0 0 0 1 +| (Section | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 0 (..) 4 2 0 0 0 0 1 +| process | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 0 . 1 3 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 0 no 0 0 0 0 0 0 1 +| Path | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 0 ( 1 8 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 0 no 0 0 0 0 0 0 1 +| 10.3.5) | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 0 ..) 3 1 0 0 0 0 1 +| forwarding | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 0 ( 1 6 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 0 no 0 0 0 0 0 0 1 +| transient | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 0 ). 2 2 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 0 no 0 0 0 0 0 0 1 +| Prohibited | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 0 ( 1 8 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 0 no 0 0 0 0 0 0 1 +| 10.3.6) | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 0 ..) 3 1 0 0 0 0 1 +| processing | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 0 . 1 4 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 0 no 0 0 0 0 0 0 1 +| Congestion | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 0 ( 1 9 0 0 0 0 1 +| 10.3.7) | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 0 ..) 3 1 0 0 0 0 1 +| (a | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 0 (). 3 3 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 0 no 0 0 0 0 0 0 1 +| Unsupported | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 0 no 0 8 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 0 no 0 0 0 0 0 0 1 +| Object | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 0 no 0 2 0 0 0 0 1 +| requested | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 0 no 0 4 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 0 no 0 0 0 0 0 0 1 +| Algorithm | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 0 ( 1 3 0 0 0 0 1 +| restriction | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 0 no 0 6 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 0 no 0 0 0 0 0 0 1 +| 10.3.8) | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 0 ..) 3 1 0 0 0 0 1 +| cannot | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 0 . 1 3 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 0 no 0 0 0 0 0 0 1 +| Malformed | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 0 no 0 3 0 0 0 0 1 +| The | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 0 no 0 6 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 0 no 0 0 0 0 0 0 1 +| (Section | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 0 (..) 4 2 0 0 0 0 1 +| not | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 0 . 1 3 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 0 no 0 0 0 0 0 0 1 ++----------------------+--------------------------------------------+ +----------------------+--------------------------------------------+ +----------------------+--------------------------------------------+ + +- +-- +--- BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 0 ------------------------------------------------------------------ 66 10 0 0 0 0 1 +Table 3: table T Ta Tab Tabl BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 11 : 1 10 0 0 0 0 1 +Mosko, et mosko, M Mo Mos Mosk BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 9 11 ,. 2 10 0 0 1 0 0 +Experimental Experimental experimental E Ex Exp Expe BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 11 no 0 9 0 0 0 0 0 +[Page 31] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 11 [] 2 7 0 0 0 0 0 +RFC 8569 rfc R RF RFC RFC BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 0 no 0 10 0 0 0 0 1 +CCNx Semantics ccnx C CC CCN CCNx BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 9 0 no 0 10 0 0 1 0 1 +July 2019 july J Ju Jul July BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 9 0 no 0 6 0 0 0 0 1 +10.3. Interest 10.3. 1 10 10. 10.3 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 0 .. 2 10 0 0 0 0 1 +This section this T Th Thi This BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 0 no 0 10 0 0 0 0 1 +codes for codes c co cod code BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 0 . 1 9 0 0 0 0 1 +any of any a an any any BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 0 ,, 2 8 0 0 0 0 1 +specification. specification. specification. s sp spe spec BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 0 . 1 2 0 0 0 0 1 +If a if I If If If BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 1 , 1 10 0 0 0 0 1 +standard corrective standard s st sta stan BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 1 . 1 9 0 0 0 0 1 +Interest Return interest I In Int Inte BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 1 , 1 9 0 0 0 0 1 +through normal through t th thr thro BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 1 . 1 5 0 0 0 0 1 +o Verify o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 9 2 no 0 10 0 0 0 0 1 +actually sent actually a ac act actu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 2 . 1 4 0 0 0 0 1 +o If o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 9 3 , 1 10 0 0 0 0 1 +forwarder should forwarder f fo for forw BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 3 . 1 6 0 0 0 0 1 +o If o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 9 4 , 1 10 0 0 0 0 1 +forwarder MAY forwarder f fo for forw BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 4 : 1 6 0 0 0 0 1 +* Try * * * * * BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 4 *,, 3 10 0 0 0 0 1 +Interest Return, interest I In Int Inte BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 4 , 1 3 0 0 0 0 1 +* Clear * * * * * BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 5 * 1 10 0 0 0 0 1 +reverse path. reverse r re rev reve BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 5 . 1 2 0 0 0 0 1 +If a if I If If If BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 5 , 1 10 0 0 0 0 1 +not use not n no not not BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 5 ., 2 9 0 0 0 0 1 +track of track t tr tra trac BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 5 . 1 8 0 0 0 0 1 +If a if I If If If BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 7 , 1 9 0 0 0 0 1 +Interest Return, interest I In Int Inte BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 7 , 1 10 0 0 0 0 1 +Return. For return. R Re Ret Retu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 7 .,, 3 9 0 0 0 0 1 +a No a a a a a BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 1 0 0 0 0 0 9 7 ., 2 8 0 0 0 0 1 +Prohibited Interest prohibited P Pr Pro Proh BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 7 . 1 9 0 0 0 0 1 +the appropriate the t th the the BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 7 . 1 7 0 0 0 0 1 +If a if I If If If BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 9 , 1 9 0 0 0 0 1 +Interest Lifetime interest I In Int Inte BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 9 no 0 10 0 0 0 0 1 +the Interest. the t th the the BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 9 . 1 2 0 0 0 0 1 +10.3.1. No 10.3.1. 1 10 10. 10.3 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 10 ... 3 10 0 0 0 0 1 +If a if I If If If BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 10 , 1 10 0 0 0 0 1 +which the which w wh whi whic BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 10 no 0 8 0 0 0 0 1 +Interest, the interest, I In Int Inte BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 10 ,"" 3 9 0 0 0 0 1 +message. message. message. m me mes mess BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 10 . 1 1 0 0 0 0 1 +Mosko, et mosko, M Mo Mos Mosk BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 9 11 ,. 2 10 0 0 1 0 0 +Experimental Experimental experimental E Ex Exp Expe BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 11 no 0 9 0 0 0 0 0 +[Page 32] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 11 [] 2 7 0 0 0 0 0 +RFC 8569 rfc R RF RFC RFC BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 0 no 0 10 0 0 0 0 1 +CCNx Semantics ccnx C CC CCN CCNx BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 9 0 no 0 10 0 0 1 0 1 +July 2019 july J Ju Jul July BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 9 0 no 0 6 0 0 0 0 1 +How a how H Ho How How BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 0 no 0 9 0 0 0 0 1 +message is message m me mes mess BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 0 ., 2 9 0 0 0 0 1 +Route Interest route R Ro Rou Rout BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 0 . 1 10 0 0 0 0 1 +The dynamic the T Th The The BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 0 no 0 9 0 0 0 0 1 +the route, the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 0 , 1 9 0 0 0 0 1 +correct the correct c co cor corr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 0 . 1 9 0 0 0 0 1 +next hop next n ne nex next BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 0 . 1 4 0 0 0 0 1 +10.3.2. HopLimit 10.3.2. 1 10 10. 10.3 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 2 ... 3 10 0 0 0 0 1 +A forwarder a A A A A BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 1 0 0 0 0 0 9 2 no 0 10 0 0 0 0 1 +receives an receives r re rec rece BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 2 no 0 9 0 0 0 0 1 +HopLimit is hoplimit H Ho Hop HopL BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 9 2 . 1 2 0 0 0 0 1 +10.3.3. Interest 10.3.3. 1 10 10. 10.3 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 3 ... 3 10 0 0 0 0 1 +If a if I If If If BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 3 no 0 10 0 0 0 0 1 +minimum, it minimum, m mi min mini BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 3 ,"", 4 9 0 0 0 0 1 +silently discard silently s si sil sile BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 3 . 1 4 0 0 0 0 1 +If a if I If If If BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 4 "", 3 10 0 0 0 0 1 +SHOULD NOT should S SH SHO SHOU BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 9 4 . 1 10 0 0 0 0 1 +Return to return R Re Ret Retu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 4 . 1 4 0 0 0 0 1 +10.3.4. No 10.3.4. 1 10 10. 10.3 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 5 ... 3 10 0 0 0 0 1 +If a if I If If If BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 6 no 0 8 0 0 0 0 1 +Interest due interest I In Int Inte BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 6 ,. 2 10 0 0 0 0 1 +lack of lack l la lac lack BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 6 no 0 9 0 0 0 0 1 +some other some s so som some BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 6 . 1 3 0 0 0 0 1 +10.3.5. Path 10.3.5. 1 10 10. 10.3 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 7 ... 3 10 0 0 0 0 1 +If a if I If If If BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 7 , 1 10 0 0 0 0 1 +a reliable a a a a a BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 1 0 0 0 0 0 9 7 ,- 2 10 0 0 0 0 1 +that it that t th tha that BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 7 . 1 8 0 0 0 0 1 +10.3.6. Prohibited 10.3.6. 1 10 10. 10.3 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 8 ... 3 10 0 0 0 0 1 +A forwarder a A A A A BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 1 0 0 0 0 0 9 9 , 1 10 0 0 0 0 1 +lists (ACLs), lists l li lis list BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 9 (),. 4 9 0 0 0 0 1 +a forwarder a a a a a BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 1 0 0 0 0 0 9 9 , 1 9 0 0 0 0 1 +Prohibited Interest prohibited P Pr Pro Proh BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 9 ., 2 9 0 0 0 0 1 +there is there t th the ther BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 9 "//" 4 9 0 0 0 0 1 +interface e0, interface i in int inte BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 9 ,, 2 9 0 0 0 0 1 +must have must m mu mus must BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 9 . 1 8 0 0 0 0 1 +Mosko, et mosko, M Mo Mos Mosk BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 10 11 ,. 2 10 0 0 1 0 0 +Experimental Experimental experimental E Ex Exp Expe BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 11 no 0 9 0 0 0 0 0 +[Page 33] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 11 [] 2 7 0 0 0 0 0 +RFC 8569 rfc R RF RFC RFC BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 0 no 0 10 0 0 0 0 1 +CCNx Semantics ccnx C CC CCN CCNx BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 10 0 no 0 10 0 0 1 0 1 +July 2019 july J Ju Jul July BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 10 0 no 0 6 0 0 0 0 1 +10.3.7. Congestion 10.3.7. 1 10 10. 10.3 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 0 ... 3 10 0 0 0 0 1 +If a if I If If If BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 0 , 1 10 0 0 0 0 1 +Congestion Interest congestion C Co Con Cong BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 0 . 1 6 0 0 0 0 1 +10.3.8. Unsupported 10.3.8. 1 10 10. 10.3 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 1 ... 3 10 0 0 0 0 1 +If a if I If If If BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 1 no 0 9 0 0 0 0 1 +forwarder cannot forwarder f fo for forw BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 1 , 1 10 0 0 0 0 1 +forwarder MAY forwarder f fo for forw BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 1 . 1 8 0 0 0 0 1 +10.3.9. Malformed 10.3.9. 1 10 10. 10.3 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 2 ... 3 10 0 0 0 0 1 +If a if I If If If BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 2 no 0 9 0 0 0 0 1 +Interest, it interest, I In Int Inte BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 2 , 1 10 0 0 0 0 1 +to the to t to to to BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 2 . 1 8 0 0 0 0 1 +validate the validate v va val vali BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 2 . 1 6 0 0 0 0 1 +11. IANA 11. 1 11 11. 11. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 3 . 1 10 0 0 0 0 1 +This document this T Th Thi This BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 3 . 1 10 0 0 0 0 1 +12. Security 12. 1 12 12. 12. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 4 . 1 10 0 0 0 0 1 +The CCNx the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 4 , 1 9 0 0 0 0 1 +as an as a as as as BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 4 . 1 9 0 0 0 0 1 +It includes it I It It It BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 4 no 0 9 0 0 0 0 1 +signature (e.g., signature s si sig sign BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 4 (..,) 5 9 0 0 0 0 1 +code (e.g., code c co cod code BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 4 (..,)., 7 10 0 0 0 0 1 +message integrity message m me mes mess BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 4 (..,). 6 10 0 0 0 0 1 +encryption envelope; encryption e en enc encr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 4 ;- 2 9 0 0 0 0 1 +(e.g., [esic]). (e.g., ( (e (e. (e.g BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 4 (..,[]). 8 2 0 0 0 0 1 +The CCNx the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 6 (.., 4 9 0 0 0 0 1 +CRC32C), MACs crc32c), C CR CRC CRC3 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 6 ),(..,),(..,) 13 9 0 0 0 0 1 +all packet all a al all all BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 6 . 1 9 0 0 0 0 1 +an arbitrary an a an an an BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 10 6 , 1 9 0 0 0 0 1 +expensive algorithms expensive e ex exp expe BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 6 , 1 9 0 0 0 0 1 +computational DoS computational c co com comp BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 6 . 1 9 0 0 0 0 1 +protocol to protocol p pr pro prot BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 6 . 1 9 0 0 0 0 1 +guideline, an guideline, g gu gui guid BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 6 , 1 9 0 0 0 0 1 +unintentionally corrupted unintentionally u un uni unin BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 6 . 1 8 0 0 0 0 1 +Interest, one interest, I In Int Inte BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 6 , 1 9 0 0 0 0 1 +protocol that protocol p pr pro prot BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 6 , 1 10 0 0 0 0 1 +being used being b be bei bein BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 6 . 1 9 0 0 0 0 1 +signature does signature s si sig sign BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 6 . 1 8 0 0 0 0 1 +examples in examples e ex exa exam BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 6 - 1 9 0 0 0 0 1 +[mobile] [ace]. [mobile] [ [m [mo [mob BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 6 [][]. 5 2 0 0 0 0 1 +Mosko, et mosko, M Mo Mos Mosk BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 10 11 ,. 2 10 0 0 1 0 0 +Experimental Experimental experimental E Ex Exp Expe BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 11 no 0 9 0 0 0 0 0 +[Page 34] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 11 [] 2 7 0 0 0 0 0 +RFC 8569 rfc R RF RFC RFC BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 0 no 0 10 0 0 0 0 1 +CCNx Semantics ccnx C CC CCN CCNx BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 10 0 no 0 10 0 0 1 0 1 +July 2019 july J Ju Jul July BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 10 0 no 0 6 0 0 0 0 1 +As an as A As As As BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 0 , 1 10 0 0 0 0 1 +keys or keys k ke key keys BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 10 0 . 1 9 0 0 0 0 1 +public key public p pu pub publ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 0 no 0 9 0 0 0 0 1 +KeyLink field keylink K Ke Key KeyL BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 10 0 no 0 8 0 0 0 0 1 +authenticates the authenticates a au aut auth BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 0 .- 2 9 0 0 0 0 1 +[ccnx-ke] [mobile], [ccnx-ke] [ [c [cc [ccn BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 0 [-][],. 7 9 0 0 0 0 1 +except it except e ex exc exce BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 0 . 1 9 0 0 0 0 1 +an L3 an a an an an BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 10 0 . 1 9 0 0 0 0 1 +The combination the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 2 (..,[-]) 8 10 0 0 0 0 1 +and an and a an and and BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 2 (..,[]) 7 8 0 0 0 0 1 +equivalent of equivalent e eq equ equi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 2 . 1 9 0 0 0 0 1 +Interests and interests I In Int Inte BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 2 . 1 9 0 0 0 0 1 +completely hides completely c co com comp BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 2 no 0 9 0 0 0 0 1 +layer. This layer. l la lay laye BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 2 . 1 9 0 0 0 0 1 +has little has h ha has has BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 2 , 1 10 0 0 0 0 1 +the ephemeral the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 2 .- 2 9 0 0 0 0 1 +mobility, but mobility, m mo mob mobi BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 2 ,-. 3 8 0 0 0 0 1 +Broadcast encryption broadcast B Br Bro Broa BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 4 - 1 10 0 0 0 0 1 +with multiple with w wi wit with BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 4 . 1 9 0 0 0 0 1 +no recommendation no n no no no BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 4 . 1 6 0 0 0 0 1 +The specific the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 5 . 1 9 0 0 0 0 1 +[RFC8609] uses [rfc8609] [ [R [RF [RFC BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 5 []--(). 7 9 0 0 0 0 1 +compromise between compromise c co com comp BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 5 no 0 9 0 0 0 0 1 +and lengths. and a an and and BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 5 .-"" 4 8 0 0 0 0 1 +variable-length "L" variable-length v va var vari BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 5 -"" 3 9 0 0 0 0 1 +while trying while w wh whi whil BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 5 .- 2 9 0 0 0 0 1 +length 2-byte length l le len leng BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 5 -""-"".-"""" 12 9 0 0 0 0 1 +field solves field f fi fie fiel BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 10 5 .. 2 9 0 0 0 0 1 +encode the encode e en enc enco BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 5 ,, 2 9 0 0 0 0 1 +lengths, then lengths, l le len leng BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 5 ,, 2 9 0 0 0 0 1 +are different, are a ar are are BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 5 ,., 3 10 0 0 0 0 1 +must always must m mu mus must BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 5 ,. 2 9 0 0 0 0 1 +one is one o on one one BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 5 ,, 2 10 0 0 0 0 1 +of every of o of of of BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 5 ., 2 10 0 0 0 0 1 +second problem: second s se sec seco BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 5 :., 3 9 0 0 0 0 1 +name has name n na nam name BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 5 ,'', 4 9 0 0 0 0 1 +which might which w wh whi whic BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 5 . 1 9 0 0 0 0 1 +would be would w wo wou woul BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 5 ,. 2 9 0 0 0 0 1 +also means also a al als also BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 5 ,, 2 10 0 0 0 0 1 +function as function f fu fun func BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 5 """" 4 10 0 0 0 0 1 +have a have h ha hav have BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 5 . 1 3 0 0 0 0 1 +The Interest the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 11 no 0 9 0 0 0 0 1 +hop. Therefore, hop. h ho hop hop. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 11 ., 2 9 0 0 0 0 1 +used locally used u us use used BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 11 . 1 10 0 0 0 0 1 +Mosko, et mosko, M Mo Mos Mosk BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 10 11 ,. 2 10 0 0 1 0 0 +Experimental Experimental experimental E Ex Exp Expe BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 11 no 0 9 0 0 0 0 0 +[Page 35] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 11 [] 2 7 0 0 0 0 0 +RFC 8569 rfc R RF RFC RFC BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 0 no 0 10 0 0 0 0 1 +CCNx Semantics ccnx C CC CCN CCNx BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 10 0 no 0 10 0 0 1 0 1 +July 2019 july J Ju Jul July BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 10 0 no 0 6 0 0 0 0 1 +Interest Payload interest I In Int Inte BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 0 . 1 9 0 0 0 0 1 +the Interest the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 0 no 0 10 0 0 0 0 1 +to negate to t to to to BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 0 . 1 4 0 0 0 0 1 +Caching nodes caching C Ca Cac Cach BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 10 0 . 1 9 0 0 0 0 1 +is essential is i is is is BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 0 no 0 9 0 0 0 0 1 +Section 2.4.3 section S Se Sec Sect BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 0 .... 4 9 0 0 0 0 1 +mechanism to mechanism m me mec mech BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 0 ( 1 9 0 0 0 0 1 +are no are a ar are are BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 0 ""),, 5 9 0 0 0 0 1 +it might it i it it it BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 0 . 1 9 0 0 0 0 1 +access to access a ac acc acce BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 0 :, 2 9 0 0 0 0 1 +restricted, and restricted, r re res rest BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 0 ,., 3 9 0 0 0 0 1 +then the then t th the then BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 0 , 1 10 0 0 0 0 1 +matching cached matching m ma mat matc BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 0 .-, 3 9 0 0 0 0 1 +requester is requester r re req requ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 0 no 0 10 0 0 0 0 1 +(and every (and ( (a (an (and BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 0 () 2 9 0 0 0 0 1 +the request. the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 0 .-( 3 8 0 0 0 0 1 +initial manifest initial i in ini init BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 0 ), 2 9 0 0 0 0 1 +signed the signed s si sig sign BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 0 . 1 8 0 0 0 0 1 +attention in attention a at att atte BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 0 . 1 9 0 0 0 0 1 +Content Store content C Co Con Cont BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 0 no 0 9 0 0 0 0 1 +verify the verify v ve ver veri BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 0 ; 1 9 0 0 0 0 1 +the public the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 0 no 0 9 0 0 0 0 1 +addition to addition a ad add addi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 0 ., 2 9 0 0 0 0 1 +Store should store S St Sto Stor BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 0 no 0 9 0 0 0 0 1 +respond. respond. respond. r re res resp BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 0 . 1 1 0 0 0 0 1 +A user-level a A A A A BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 1 0 0 0 0 0 10 6 - 1 9 0 0 0 0 1 +fetching a fetching f fe fet fetc BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 6 . 1 9 0 0 0 0 1 +is not, is i is is is BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 6 ,,. 3 9 0 0 0 0 1 +user-level cache user-level u us use user BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 6 ---, 4 10 0 0 0 0 1 +the cache the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 6 no 0 9 0 0 0 0 1 +correct signature. correct c co cor corr BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 6 . 1 2 0 0 0 0 1 +The CCNx the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 8 -. 2 9 0 0 0 0 1 +It specifies it I It It It BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 8 no 0 9 0 0 0 0 1 +be implemented be b be be be BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 8 . 1 9 0 0 0 0 1 +systems, so systems, s sy sys syst BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 8 ,; 2 9 0 0 0 0 1 +they would they t th the they BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 8 -- 2 10 0 0 0 0 1 +buffer. Some buffer. b bu buf buff BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 8 .,, 3 9 0 0 0 0 1 +each hop, each e ea eac each BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 8 ,() 3 9 0 0 0 0 1 +algorithm; it algorithm; a al alg algo BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 8 ; 1 10 0 0 0 0 1 +type is type t ty typ type BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 8 .[]- 4 9 0 0 0 0 1 +field-allowed hash field-allowed f fi fie fiel BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 8 -. 2 6 0 0 0 0 1 +A CCNx a A A A A BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 1 0 0 0 0 0 11 10 - 1 8 0 0 0 0 1 +insensitive hostname. insensitive i in ins inse BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 10 .- 2 9 0 0 0 0 1 +matching of matching m ma mat matc BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 10 . 1 10 0 0 0 0 1 +Mosko, et mosko, M Mo Mos Mosk BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 11 ,. 2 10 0 0 1 0 0 +Experimental Experimental experimental E Ex Exp Expe BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 11 no 0 9 0 0 0 0 0 +[Page 36] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 11 [] 2 7 0 0 0 0 0 +RFC 8569 rfc R RF RFC RFC BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 11 0 no 0 10 0 0 0 0 1 +CCNx Semantics ccnx C CC CCN CCNx BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 0 no 0 10 0 0 1 0 1 +July 2019 july J Ju Jul July BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 11 0 no 0 6 0 0 0 0 1 +that human-entered that t th tha that BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 0 -- 2 9 0 0 0 0 1 +symbol mismatches symbol s sy sym symb BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 0 no 0 9 0 0 0 0 1 +the CCNx the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 0 . 1 9 0 0 0 0 1 +routable prefix, routable r ro rou rout BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 0 ,":/.", 7 8 0 0 0 0 1 +registrations for registrations r re reg regi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 0 ":/.". 6 10 0 0 0 0 1 +this is this t th thi this BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 0 no 0 8 0 0 0 0 1 +conventions, there conventions, c co con conv BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 0 ,. 2 6 0 0 0 0 1 +For a for F Fo For For BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 2 - 1 10 0 0 0 0 1 +approaches, see approaches, a ap app appr BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 2 ,[][]. 6 5 0 0 0 0 1 +13. References 13. 1 13 13. 13. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 3 . 1 10 0 0 0 0 1 +13.1. Normative 13.1. 1 13 13. 13.1 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 3 .. 2 10 0 0 0 0 1 +[RFC2119] Bradner, [rfc2119] [ [R [RF [RFC BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 1 0 0 0 11 3 [],.," 6 10 0 0 0 0 1 +Requirement Levels", requirement R Re Req Requ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 3 ",,, 4 6 0 0 0 0 1 +DOI 10.17487/RFC2119, doi D DO DOI DOI BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 1 0 0 0 0 0 0 11 3 ./,, 4 5 0 0 0 0 1 +<https://www.rfc-editor.org/info/rfc2119>. <https://www.rfc-editor.org/info/rfc2119>. <https://www.rfc-editor.org/info/rfc2119>. < <h <ht <htt BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 1 0 0 1 11 3 ://.-.//. 9 6 0 0 0 0 1 +[RFC8174] Leiba, [rfc8174] [ [R [RF [RFC BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 4 [],.," 6 10 0 0 0 0 1 +2119 Key 2119 2 21 211 2119 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 0 0 0 0 1 0 0 0 11 4 ",,,./, 7 8 0 0 0 0 1 +May 2017, may M Ma May May BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 11 4 ,://.-.//. 10 8 0 0 0 0 1 +13.2. Informative 13.2. 1 13 13. 13.2 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 6 .. 2 10 0 0 0 0 1 +[ace] [ace] [ace] [ [a [ac [ace BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 6 [] 2 1 0 0 0 0 1 +Shang, W., shang, S Sh Sha Shan BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 6 ,.,,.,,.,,.,., 14 9 0 0 0 0 1 +"NDN-ACE: Access "ndn-ace: " "N "ND "NDN BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 11 6 "-: 3 10 0 0 0 0 1 +Named Data named N Na Nam Name BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 6 ",-, 4 9 0 0 0 0 1 +December 2015, december D De Dec Dece BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 11 6 ,://.-./ 8 7 0 0 0 0 1 +wp-content/uploads/2015/12/ndn-0036-1-ndn-ace.pdf>. wp-content/uploads/2015/12/ndn-0036-1-ndn-ace.pdf>. wp-content/uploads/2015/12/ndn-0036-1-ndn-ace.pdf>. w wp wp- wp-c BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 1 0 0 0 11 6 -////----.. 11 8 0 0 0 0 1 +[befrags] Mosko, [befrags] [ [b [be [bef BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 8 [],..,""-" 10 10 0 0 0 0 1 +Fragmentation", Work fragmentation", F Fr Fra Frag BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 8 ",,--- 6 8 0 0 0 0 1 +beginendfragment-02, December beginendfragment-02, b be beg begi BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 8 -,. 3 5 0 0 0 0 1 +[ccn-lite] Tschudin, [ccn-lite] [ [c [cc [ccn BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 9 [-],.,.,"-",, 13 10 0 0 0 0 1 +2011-2019, <http://ccn-lite.net>. 2011-2019, 2 20 201 2011 BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 1 0 0 0 11 9 -,://-.. 8 5 0 0 0 0 1 +[ccnx-ke] Mosko, [ccnx-ke] [ [c [cc [ccn BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 9 [-],.,,.,.," 12 10 0 0 0 0 1 +Protocol Version protocol P Pr Pro Prot BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 9 .",,--- 7 9 0 0 0 0 1 +ccnxkeyexchange-02, March ccnxkeyexchange-02, c cc ccn ccnx BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 9 -,. 3 5 0 0 0 0 1 +[ccnx-registry] [ccnx-registry] [ccnx-registry] [ [c [cc [ccn BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 11 [-] 3 3 0 0 0 0 1 +IANA, "Content-Centric iana, I IA IAN IANA BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 11 11 ,"-()", 7 10 0 0 0 0 1 +<https://www.iana.org/assignments/ccnx>. <https://www.iana.org/assignments/ccnx>. <https://www.iana.org/assignments/ccnx>. < <h <ht <htt BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 1 11 11 ://..//. 8 9 0 0 0 0 1 +Mosko, et mosko, M Mo Mos Mosk BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 11 ,. 2 10 0 0 1 0 0 +Experimental Experimental experimental E Ex Exp Expe BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 11 no 0 9 0 0 0 0 0 +[Page 37] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 11 [] 2 7 0 0 0 0 0 +RFC 8569 rfc R RF RFC RFC BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 11 0 no 0 10 0 0 0 0 1 +CCNx Semantics ccnx C CC CCN CCNx BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 0 no 0 10 0 0 1 0 1 +July 2019 july J Ju Jul July BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 11 0 no 0 6 0 0 0 0 1 +[ccnx-uri] Mosko, [ccnx-uri] [ [c [cc [ccn BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 0 [-],..,"", 10 10 0 0 0 0 1 +Progress, draft-mosko-icnrg-ccnxurischeme-01, progress, P Pr Pro Prog BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 0 ,----,. 7 8 0 0 0 0 1 +[chunking] Mosko, [chunking] [ [c [ch [chu BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 1 [],.,"", 8 10 0 0 0 0 1 +Progress, draft-mosko-icnrg-ccnxchunking-02, progress, P Pr Pro Prog BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 1 ,----,. 7 9 0 0 0 0 1 +[cicn] [cicn] [cicn] [ [c [ci [cic BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 1 [] 2 1 0 0 0 0 1 +FD.io, "Community fd.io, F FD FD. FD.i BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 1 .,"()",, 8 8 0 0 0 0 1 +<https://wiki.fd.io/index.php?title=Cicn&oldid=7191>. <https://wiki.fd.io/index.php?title=Cicn&oldid=7191>. <https://wiki.fd.io/index.php?title=cicn&oldid=7191>. < <h <ht <htt BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 1 11 1 ://../.?. 9 10 0 0 0 0 1 +[dart] [dart] [dart] [ [d [da [dar BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 2 [] 2 1 0 0 0 0 1 +Garcia-Luna-Aceves, J. garcia-luna-aceves, G Ga Gar Garc BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 2 --,..-," 8 10 0 0 0 0 1 +Light-Weight Forwarding light-weight L Li Lig Ligh BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 2 -- 2 9 0 0 0 0 1 +Networks", International networks", N Ne Net Netw BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 2 ",, 3 9 0 0 0 0 1 +Networking, and networking, N Ne Net Netw BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 2 ,(), 4 7 0 0 0 0 1 +DOI 10.1109/ICCNC.2016.7440637, doi D DO DOI DOI BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 1 0 0 0 0 0 0 11 2 ./..,, 6 8 0 0 0 0 1 +<https://arxiv.org/pdf/1603.06044.pdf>. <https://arxiv.org/pdf/1603.06044.pdf>. <https://arxiv.org/pdf/1603.06044.pdf>. < <h <ht <htt BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 1 0 0 1 11 2 ://.//... 9 7 0 0 0 0 1 +[eprise-numbers] [eprise-numbers] [eprise-numbers] [ [e [ep [epr BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 4 [-] 3 3 0 0 0 0 1 +IANA, "IANA iana, I IA IAN IANA BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 11 4 ,"", 4 7 0 0 0 0 1 +<https://www.iana.org/assignments/enterprise-numbers>. <https://www.iana.org/assignments/enterprise-numbers>. <https://www.iana.org/assignments/enterprise-numbers>. < <h <ht <htt BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 1 11 4 ://..//-. 9 10 0 0 0 0 1 +[esic] [esic] [esic] [ [e [es [esi BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 5 [] 2 1 0 0 0 0 1 +Mosko, M. mosko, M Mo Mos Mosk BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 5 ,..," 5 9 0 0 0 0 1 +(ESIC)", Work (esic)", ( (E (ES (ESI BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 11 5 ()",,----, 10 10 0 0 0 0 1 +September 2017. september S Se Sep Sept BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 0 0 0 1 0 0 11 5 . 1 3 0 0 0 0 1 +[flic] [flic] [flic] [ [f [fl [fli BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 6 [] 2 1 0 0 0 0 1 +Tschudin, C. tschudin, T Ts Tsc Tsch BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 6 ,..,"- 6 9 0 0 0 0 1 +(FLIC)", Work (flic)", ( (F (FL (FLI BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 11 6 ()",,----, 10 10 0 0 0 0 1 +March 2017. march M Ma Mar Marc BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 11 6 . 1 2 0 0 0 0 1 +[mobile] [mobile] [mobile] [ [m [mo [mob BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 7 [] 2 1 0 0 0 0 1 +Mosko, M., mosko, M Mo Mos Mosk BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 7 ,.,,.,.," 9 10 0 0 0 0 1 +Content-Centric Networks", content-centric C Co Con Cont BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 7 -", 3 10 0 0 0 0 1 +(IFIP Networking) (ifip ( (I (IF (IFI BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 11 7 (), 3 6 0 0 0 0 1 +DOI 10.23919/IFIPNetworking.2017.8264861, doi D DO DOI DOI BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 1 0 0 0 0 0 0 11 7 ./..,, 6 9 0 0 0 0 1 +<https://dl.ifip.org/db/conf/networking/ <https://dl.ifip.org/db/conf/networking/ <https://dl.ifip.org/db/conf/networking/ < <h <ht <htt BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 1 11 7 ://..//// 9 7 0 0 0 0 1 +networking2017/1570334964.pdf>. networking2017/1570334964.pdf>. networking2017/1570334964.pdf>. n ne net netw BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 1 0 0 0 11 7 /.. 3 5 0 0 0 0 1 +[ndn] [ndn] [ndn] [ [n [nd [ndn BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 9 [] 2 1 0 0 0 0 1 +UCLA, "Named ucla, U UC UCL UCLA BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 11 9 ,"",, 5 10 0 0 0 0 1 +<https://www.named-data.net>. <https://www.named-data.net>. <https://www.named-data.net>. < <h <ht <htt BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 1 11 9 ://.-.. 7 8 0 0 0 0 1 +[nnc] [nnc] [nnc] [ [n [nn [nnc BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 9 [] 2 1 0 0 0 0 1 +Jacobson, V., jacobson, J Ja Jac Jaco BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 9 ,.,,.,,.,,., 12 9 0 0 0 0 1 +Briggs, N., briggs, B Br Bri Brig BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 9 ,.,.,"", 8 10 0 0 0 0 1 +Proceedings of proceedings P Pr Pro Proc BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 9 no 0 8 0 0 0 0 1 +Emerging Networking emerging E Em Eme Emer BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 9 , 1 8 0 0 0 0 1 +DOI 10.1145/1658939.1658941, doi D DO DOI DOI BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 1 0 0 0 0 0 0 11 9 ./.,, 5 7 0 0 0 0 1 +<https://dx.doi.org/10.1145/1658939.1658941>. <https://dx.doi.org/10.1145/1658939.1658941>. <https://dx.doi.org/10.1145/1658939.1658941>. < <h <ht <htt BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 1 0 0 1 11 9 ://.././.. 10 8 0 0 0 0 1 +Mosko, et mosko, M Mo Mos Mosk BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 11 ,. 2 10 0 0 1 0 0 +Experimental Experimental experimental E Ex Exp Expe BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 11 no 0 9 0 0 0 0 0 +[Page 38] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 11 [] 2 7 0 0 0 0 0 +RFC 8569 rfc R RF RFC RFC BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 11 0 no 0 10 0 0 0 0 1 +CCNx Semantics ccnx C CC CCN CCNx BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 0 no 0 10 0 0 1 0 1 +July 2019 july J Ju Jul July BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 11 0 no 0 6 0 0 0 0 1 +[RFC5234] Crocker, [rfc5234] [ [R [RF [RFC BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 0 [],.,..," 9 10 0 0 0 0 1 +Specifications: ABNF", specifications: S Sp Spe Spec BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 0 :",,, 5 5 0 0 0 0 1 +DOI 10.17487/RFC5234, doi D DO DOI DOI BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 1 0 0 0 0 0 0 11 0 ./,, 4 5 0 0 0 0 1 +<https://www.rfc-editor.org/info/rfc5234>. <https://www.rfc-editor.org/info/rfc5234>. <https://www.rfc-editor.org/info/rfc5234>. < <h <ht <htt BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 1 11 0 ://.-.//. 9 6 0 0 0 0 1 +[RFC5280] Cooper, [rfc5280] [ [R [RF [RFC BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 1 [],.,,.,,.,,., 14 10 0 0 0 0 1 +Housley, R., housley, H Ho Hou Hous BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 1 ,.,.,". 7 8 0 0 0 0 1 +Infrastructure Certificate infrastructure I In Inf Infr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 1 no 0 9 0 0 0 0 1 +(CRL) Profile", (crl) ( (C (CR (CRL BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 11 1 ()",,./,, 9 9 0 0 0 0 1 +<https://www.rfc-editor.org/info/rfc5280>. <https://www.rfc-editor.org/info/rfc5280>. <https://www.rfc-editor.org/info/rfc5280>. < <h <ht <htt BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 1 11 1 ://.-.//. 9 6 0 0 0 0 1 +[RFC7927] Kutscher, [rfc7927] [ [R [RF [RFC BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 3 [],.,.,,.,,.,,., 16 10 0 0 0 0 1 +Corujo, D., corujo, C Co Cor Coru BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 3 ,.,,.,,.,., 11 8 0 0 0 0 1 +"Information-Centric Networking "information-centric " "I "In "Inf BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 3 "-() 4 7 0 0 0 0 1 +Challenges", RFC challenges", C Ch Cha Chal BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 3 ",,./,, 7 8 0 0 0 0 1 +<https://www.rfc-editor.org/info/rfc7927>. <https://www.rfc-editor.org/info/rfc7927>. <https://www.rfc-editor.org/info/rfc7927>. < <h <ht <htt BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 1 11 3 ://.-.//. 9 6 0 0 0 0 1 +[RFC7945] Pentikousis, [rfc7945] [ [R [RF [RFC BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 5 [],.,.,,.,,.,,., 16 10 0 0 0 0 1 +and G. and a an and and BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 5 .,"-: 5 8 0 0 0 0 1 +and Security and a an and and BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 5 ",, 3 5 0 0 0 0 1 +DOI 10.17487/RFC7945, doi D DO DOI DOI BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 1 0 0 0 0 0 0 11 5 ./,, 4 5 0 0 0 0 1 +<https://www.rfc-editor.org/info/rfc7945>. <https://www.rfc-editor.org/info/rfc7945>. <https://www.rfc-editor.org/info/rfc7945>. < <h <ht <htt BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 1 11 5 ://.-.//. 9 6 0 0 0 0 1 +[RFC8609] Mosko, [rfc8609] [ [R [RF [RFC BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 6 [],.,,.,.,"- 12 10 0 0 0 0 1 +Networking (CCNx) networking N Ne Net Netw BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 6 ()",, 5 8 0 0 0 0 1 +DOI 10.17487/RFC8609, doi D DO DOI DOI BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 1 0 0 0 0 0 0 11 6 ./,, 4 5 0 0 0 0 1 +<https://www.rfc-editor.org/info/rfc8609>. <https://www.rfc-editor.org/info/rfc8609>. <https://www.rfc-editor.org/info/rfc8609>. < <h <ht <htt BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 1 11 6 ://.-.//. 9 6 0 0 0 0 1 +[selectors] [selectors] [selectors] [ [s [se [sel BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 7 [] 2 2 0 0 0 0 1 +Mosko, M., mosko, M Mo Mos Mosk BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 7 ,.,"", 6 10 0 0 0 0 1 +Progress, draft-mosko-icnrg-selectors-01, progress, P Pr Pro Prog BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 7 ,----,. 7 10 0 0 0 0 1 +[terminology] [terminology] [terminology] [ [t [te [ter BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 8 [] 2 2 0 0 0 0 1 +Wissingh, B., wissingh, W Wi Wis Wiss BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 8 ,.,,.,,.,,.,, 13 10 0 0 0 0 1 +D., and d., D D. D., D., BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 11 8 .,.,"- 6 9 0 0 0 0 1 +(ICN): CCN (icn): ( (I (IC (ICN BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 11 8 ():",, 6 9 0 0 0 0 1 +draft-irtf-icnrg-terminology-04, June draft-irtf-icnrg-terminology-04, d dr dra draf BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 8 ----,. 6 7 0 0 0 0 1 +[trust] [trust] [trust] [ [t [tr [tru BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 10 [] 2 1 0 0 0 0 1 +Tschudin, C., tschudin, T Ts Tsc Tsch BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 10 ,.,,.,.," 9 7 0 0 0 0 1 +Information-Centric Networking: information-centric I In Inf Info BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 10 -:", 4 9 0 0 0 0 1 +25th International 25th 2 25 25t 25th BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 10 no 0 9 0 0 0 0 1 +and Networks and a an and and BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 10 (),./.., 8 9 0 0 0 0 1 +August 2016, august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 11 10 ,://././... 11 10 0 0 0 0 1 +Mosko, et mosko, M Mo Mos Mosk BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 11 ,. 2 10 0 0 1 0 0 +Experimental Experimental experimental E Ex Exp Expe BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 11 no 0 9 0 0 0 0 0 +[Page 39] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 11 [] 2 7 0 0 0 0 0 +RFC 8569 rfc R RF RFC RFC BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 11 0 no 0 10 0 0 0 0 1 +CCNx Semantics ccnx C CC CCN CCNx BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 0 no 0 10 0 0 1 0 1 +July 2019 july J Ju Jul July BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 11 0 no 0 6 0 0 0 0 1 +Authors' Addresses authors' A Au Aut Auth BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 1 ' 1 10 0 0 0 0 1 +Marc Mosko marc M Ma Mar Marc BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 0 0 0 0 0 0 11 1 no 0 3 0 0 0 0 1 +PARC, Inc. parc, P PA PAR PARC BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 11 1 ,. 2 3 0 0 0 0 1 +Palo Alto, palo P Pa Pal Palo BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 1 , 1 10 0 0 0 0 1 +United States united U Un Uni Unit BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 1 no 0 8 0 0 0 0 1 +Phone: +01 phone: P Ph Pho Phon BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 3 :-- 3 8 0 0 0 0 1 +Email: marc.mosko@parc.com email: E Em Ema Emai BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 3 :.. 3 10 0 0 0 0 1 +Ignacio Solis ignacio I Ig Ign Igna BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 0 0 0 0 0 0 11 4 no 0 4 0 0 0 0 1 +LinkedIn LinkedIn linkedin L Li Lin Link BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 4 no 0 2 0 0 0 0 1 +Mountain View, mountain M Mo Mou Moun BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 4 , 1 10 0 0 0 0 1 +United States united U Un Uni Unit BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 4 no 0 7 0 0 0 0 1 +Email: nsolis@linkedin.com email: E Em Ema Emai BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 6 :. 2 10 0 0 0 0 1 +Christopher A. christopher C Ch Chr Chri BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 0 0 0 0 0 0 11 7 . 1 6 0 0 0 0 1 +University of university U Un Uni Univ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 7 no 0 10 0 0 0 0 1 +Irvine, California irvine, I Ir Irv Irvi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 7 , 1 7 0 0 0 0 1 +United States united U Un Uni Unit BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 7 no 0 7 0 0 0 0 1 +Phone: +01 phone: P Ph Pho Phon BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 9 :-- 3 10 0 0 0 0 1 +Email: woodc1@uci.edu email: E Em Ema Emai BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 9 :. 2 9 0 0 0 0 1 +Mosko, et mosko, M Mo Mos Mosk BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 10 ,. 2 10 0 0 1 0 0 +Experimental Experimental experimental E Ex Exp Expe BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 10 no 0 9 0 0 0 0 0 +[Page 40] [page [ [P [Pa [Pag BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 10 [] 2 7 0 0 0 0 0 + diff --git a/grobid-trainer/resources/dataset/segmentation/sdo/ietf/corpus/raw/XP015133674.training.segmentation b/grobid-trainer/resources/dataset/segmentation/sdo/ietf/corpus/raw/XP015133674.training.segmentation new file mode 100644 index 0000000000..bded59481b --- /dev/null +++ b/grobid-trainer/resources/dataset/segmentation/sdo/ietf/corpus/raw/XP015133674.training.segmentation @@ -0,0 +1,106 @@ +server date server s se ser serv BLOCKSTART PAGESTART NEWFONT HIGHERFONT 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 0 ; 1 10 0 0 0 0 0 +Internet Engineering internet I In Int Inte BLOCKSTART PAGEIN NEWFONT HIGHERFONT 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 () 2 10 0 0 0 0 1 +J. Arkko j. J J. J. J. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 . 1 3 0 0 0 0 1 +Request for request R Re Req Requ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 : 1 10 0 0 0 0 1 +Ericsson Ericsson ericsson E Er Eri Eric BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 no 0 3 0 0 0 0 1 +Updates: 3219 updates: U Up Upd Upda BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 : 1 5 0 0 0 0 1 +T. Hardie t. T T. T. T. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 . 1 3 0 0 0 0 1 +Category: Standards category: C Ca Cat Cate BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 : 1 9 0 0 0 0 1 +July 2019 july J Ju Jul July BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 0 0 no 0 3 0 0 0 0 1 +ISSN: 2070-1721 issn: I IS ISS ISSN BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 :- 2 5 0 0 0 0 1 +Update to update U Up Upd Upda BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 1 () 2 10 0 0 0 0 1 +regarding Postal regarding r re reg rega BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 1 no 0 4 0 0 0 0 1 +Abstract Abstract abstract A Ab Abs Abst BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 2 no 0 10 0 0 0 0 1 +This memo this T Th Thi This BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 2 no 0 9 0 0 0 0 1 +over IP over o ov ove over BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 2 (), 3 10 0 0 0 0 1 +be included be b be be be BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 2 . 1 5 0 0 0 0 1 +This memo this T Th Thi This BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 3 . 1 10 0 0 0 0 1 +Status of status S St Sta Stat BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 3 no 0 10 0 0 0 0 1 +This is this T Th Thi This BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 3 . 1 10 0 0 0 0 1 +This document this T Th Thi This BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 4 no 0 9 0 0 0 0 1 +(IETF). It (ietf). ( (I (IE (IET BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 1 4 ().. 4 9 0 0 0 0 1 +received public received r re rec rece BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 4 no 0 10 0 0 0 0 1 +Internet Engineering internet I In Int Inte BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 1 4 (). 3 9 0 0 0 0 1 +Internet Standards internet I In Int Inte BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 1 4 . 1 8 0 0 0 0 1 +Information about information I In Inf Info BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 6 ,, 2 10 0 0 0 0 1 +and how and a an and and BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 6 no 0 7 0 0 0 0 1 +https://www.rfc-editor.org/info/rfc8602. https://www.rfc-editor.org/info/rfc8602. https://www.rfc-editor.org/info/rfc8602. h ht htt http BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 1 2 6 ://.-.//. 9 6 0 0 0 0 1 +Copyright Notice copyright C Co Cop Copy BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 7 no 0 10 0 0 0 0 1 +Copyright (c) copyright C Co Cop Copy BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 7 () 2 10 0 0 0 0 1 +document authors. document d do doc docu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 7 .. 2 6 0 0 0 0 1 +This document this T Th Thi This BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 8 ' 1 8 0 0 0 0 1 +Provisions Relating provisions P Pr Pro Prov BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 8 no 0 5 0 0 0 0 1 +(https://trustee.ietf.org/license-info) in (https://trustee.ietf.org/license-info) ( (h (ht (htt BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 1 3 8 (://../-) 9 9 0 0 0 0 1 +publication of publication p pu pub publ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 8 . 1 8 0 0 0 0 1 +carefully, as carefully, c ca car care BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 8 , 1 10 0 0 0 0 1 +to this to t to to to BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 8 . 1 9 0 0 0 0 1 +include Simplified include i in inc incl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 8 . 1 9 0 0 0 0 1 +the Trust the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 8 no 0 9 0 0 0 0 1 +described in described d de des desc BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 8 . 1 5 0 0 0 0 1 +Arkko & arkko A Ar Ark Arkk BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 4 11 no 0 9 0 0 1 1 0 +Standards Track standards S St Sta Stan BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 4 11 no 0 10 0 0 0 0 0 +[Page 1] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 11 [] 2 5 0 0 0 0 0 +RFC 8602 rfc R RF RFC RFC BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 4 0 no 0 10 0 0 0 0 1 +TRIP Registry trip T TR TRI TRIP BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 1 1 0 0 0 0 0 4 0 no 0 10 0 0 1 1 1 +July 2019 july J Ju Jul July BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 4 0 no 0 4 0 0 0 0 1 +Table of table T Ta Tab Tabl BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 0 no 0 10 0 0 0 0 1 +1. Introduction 1. 1 1. 1. 1. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 4 0 ......................... 25 9 0 0 0 0 1 +2 2 2 2 2 2 2 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 4 0 no 0 0 0 0 0 0 1 +2. IANA 2. 2 2. 2. 2. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 4 0 ...................... 22 10 0 0 0 0 1 +2 2 2 2 2 2 2 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 4 0 no 0 0 0 0 0 0 1 +3. Security 3. 3 3. 3. 3. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 4 0 .................... 20 10 0 0 0 0 1 +2 2 2 2 2 2 2 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 4 0 no 0 0 0 0 0 0 1 +4. Normative 4. 4 4. 4. 4. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 4 0 ..................... 21 9 0 0 0 0 1 +2 2 2 2 2 2 2 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 4 0 no 0 0 0 0 0 0 1 +Acknowledgements . acknowledgements A Ac Ack Ackn BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 0 ........................ 24 10 0 0 0 0 1 +3 3 3 3 3 3 3 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 4 0 no 0 0 0 0 0 0 1 +Authors' Addresses authors' A Au Aut Auth BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 4 0 '....................... 24 10 0 0 0 0 1 +3 3 3 3 3 3 3 BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 4 0 no 0 0 0 0 0 0 1 +1. Introduction 1. 1 1. 1. 1. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 4 . 1 10 0 0 0 0 1 +This memo this T Th Thi This BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 5 no 0 9 0 0 0 0 1 +over IP over o ov ove over BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 5 (), 3 10 0 0 0 0 1 +be included be b be be be BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 5 . 1 9 0 0 0 0 1 +identified, and identified, i id ide iden BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 5 ,. 2 10 0 0 0 0 1 +This memo this T Th Thi This BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 6 . 1 10 0 0 0 0 1 +2. IANA 2. 2 2. 2. 2. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 6 . 1 10 0 0 0 0 1 +This memo this T Th Thi This BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 6 [] 2 9 0 0 0 0 1 +Attributes ([RFC3219], attributes A At Att Attr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 6 ([],.) 6 8 0 0 0 0 1 +Administrative Domain administrative A Ad Adm Admi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 6 ()([],.) 8 10 0 0 0 0 1 +follows. follows. follows. f fo fol foll BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 6 . 1 1 0 0 0 0 1 +The IETF the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 7 no 0 8 0 0 0 0 1 +information when information i in inf info BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 7 ., 2 10 0 0 0 0 1 +has removed has h ha has has BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 7 no 0 8 0 0 0 0 1 +registries. registries. registries. r re reg regi BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 7 . 1 1 0 0 0 0 1 +3. Security 3. 3 3. 3. 3. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 8 . 1 10 0 0 0 0 1 +No security no N No No No BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 8 . 1 10 0 0 0 0 1 +4. Normative 4. 4 4. 4. 4. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 9 . 1 10 0 0 0 0 1 +[RFC3219] Rosenberg, [rfc3219] [ [R [RF [RFC BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 9 [],.,,.,.," 11 10 0 0 0 0 1 +Routing over routing R Ro Rou Rout BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 9 9 ()",,./, 8 9 0 0 0 0 1 +January 2002, january J Ja Jan Janu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 0 0 0 1 0 0 9 9 ,://.-.//. 10 9 0 0 0 0 1 +[RFC8126] Cotton, [rfc8126] [ [R [RF [RFC BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 10 [],.,,.,.," 11 10 0 0 0 0 1 +Writing an writing W Wr Wri Writ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 10 ",, 3 8 0 0 0 0 1 +RFC 8126, rfc R RF RFC RFC BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 10 ,./,, 5 6 0 0 0 0 1 +<https://www.rfc-editor.org/info/rfc8126>. <https://www.rfc-editor.org/info/rfc8126>. <https://www.rfc-editor.org/info/rfc8126>. < <h <ht <htt BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 1 9 10 ://.-.//. 9 6 0 0 0 0 1 +Arkko & arkko A Ar Ark Arkk BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 10 11 no 0 9 0 0 1 0 0 +Standards Track standards S St Sta Stan BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 10 11 no 0 10 0 0 0 0 0 +[Page 2] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 11 [] 2 5 0 0 0 0 0 +RFC 8602 rfc R RF RFC RFC BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 0 no 0 10 0 0 0 0 1 +TRIP Registry trip T TR TRI TRIP BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 1 1 0 0 0 0 0 10 0 no 0 10 0 0 1 0 1 +July 2019 july J Ju Jul July BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 10 0 no 0 4 0 0 0 0 1 +Acknowledgements Acknowledgements acknowledgements A Ac Ack Ackn BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 1 no 0 10 0 0 0 0 1 +The authors the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 1 ,, 2 9 0 0 0 0 1 +Jonathan Rosenberg jonathan J Jo Jon Jona BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 0 0 0 0 0 0 10 1 . 1 10 0 0 0 0 1 +The authors the T Th The The BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 1 ,, 2 9 0 0 0 0 1 +Abdussalam Baryun, abdussalam A Ab Abd Abdu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 10 1 ,. 2 7 0 0 0 0 1 +Authors' Addresses authors' A Au Aut Auth BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 7 ' 1 10 0 0 0 0 1 +Jari Arkko jari J Ja Jar Jari BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 7 no 0 6 0 0 0 0 1 +Ericsson Ericsson ericsson E Er Eri Eric BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 7 no 0 5 0 0 0 0 1 +Kauniainen 02700 kauniainen K Ka Kau Kaun BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 7 no 0 10 0 0 0 0 1 +Finland Finland finland F Fi Fin Finl BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 7 no 0 4 0 0 0 0 1 +Email: jari.arkko@piuha.net email: E Em Ema Emai BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 8 :.. 3 10 0 0 0 0 1 +Ted Hardie ted T Te Ted Ted BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 0 0 0 0 0 0 11 9 no 0 10 0 0 0 0 1 +Email: ted.ietf@gmail.com email: E Em Ema Emai BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 9 :.. 3 10 0 0 0 0 1 +Arkko & arkko A Ar Ark Arkk BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 10 no 0 9 0 0 1 0 0 +Standards Track standards S St Sta Stan BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 11 10 no 0 10 0 0 0 0 0 +[Page 3] [page [ [P [Pa [Pag BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 10 [] 2 5 0 0 0 0 0 + diff --git a/grobid-trainer/resources/dataset/segmentation/sdo/ietf/corpus/raw/XP015133675.training.segmentation b/grobid-trainer/resources/dataset/segmentation/sdo/ietf/corpus/raw/XP015133675.training.segmentation new file mode 100644 index 0000000000..45b971e878 --- /dev/null +++ b/grobid-trainer/resources/dataset/segmentation/sdo/ietf/corpus/raw/XP015133675.training.segmentation @@ -0,0 +1,3267 @@ +server date server s se ser serv BLOCKSTART PAGESTART NEWFONT HIGHERFONT 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 0 ; 1 10 0 0 0 0 0 +Internet Research internet I In Int Inte BLOCKSTART PAGEIN NEWFONT HIGHERFONT 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 () 2 10 0 0 0 0 1 +M. Mosko m. M M. M. M. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 . 1 2 0 0 0 0 1 +Request for request R Re Req Requ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 : 1 8 0 0 0 0 1 +PARC, Inc. parc, P PA PAR PARC BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 ,. 2 3 0 0 0 0 1 +Category: Experimental category: C Ca Cat Cate BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 : 1 7 0 0 0 0 1 +I. Solis i. I I. I. I. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 . 1 2 0 0 0 0 1 +ISSN: 2070-1721 issn: I IS ISS ISSN BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 :- 2 5 0 0 0 0 1 +LinkedIn LinkedIn linkedin L Li Lin Link BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 no 0 2 0 0 0 0 1 +C. Wood c. C C. C. C. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 . 1 2 0 0 0 0 1 +University of university U Un Uni Univ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 no 0 10 0 0 0 0 1 +July 2019 july J Ju Jul July BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 0 0 no 0 3 0 0 0 0 1 +Content-Centric Networking content-centric C Co Con Cont BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 1 -() 3 10 0 0 0 0 1 +Abstract Abstract abstract A Ab Abs Abst BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 2 no 0 10 0 0 0 0 1 +Content-Centric Networking content-centric C Co Con Cont BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 2 -() 3 9 0 0 0 0 1 +hierarchical name hierarchical h hi hie hier BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 2 no 0 9 0 0 0 0 1 +requests. This requests. r re req requ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 2 . 1 10 0 0 0 0 1 +TLV packet tlv T TL TLV TLV BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 2 , 1 9 0 0 0 0 1 +element and element e el ele elem BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 2 . 1 8 0 0 0 0 1 +messages follow messages m me mes mess BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 2 - 1 8 0 0 0 0 1 +specification. specification. specification. s sp spe spec BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 2 . 1 2 0 0 0 0 1 +This document this T Th Thi This BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 4 no 0 10 0 0 0 0 1 +research group research r re res rese BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 0 4 (). 3 9 0 0 0 0 1 +ICNRG participants icnrg I IC ICN ICNR BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 4 no 0 10 0 0 0 0 1 +active use, active a ac act acti BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 4 , 1 9 0 0 0 0 1 +protocol specification. protocol p pr pro prot BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 4 . 1 3 0 0 0 0 1 +Status of status S St Sta Stat BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 6 no 0 10 0 0 0 0 1 +This document this T Th Thi This BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 6 ; 1 10 0 0 0 0 1 +published for published p pu pub publ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 6 ,, 2 8 0 0 0 0 1 +evaluation. evaluation. evaluation. e ev eva eval BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 6 . 1 1 0 0 0 0 1 +This document this T Th Thi This BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 7 no 0 9 0 0 0 0 1 +community. This community. c co com comm BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 7 . 1 10 0 0 0 0 1 +Force (IRTF). force F Fo For Forc BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 7 ().- 4 9 0 0 0 0 1 +research and research r re res rese BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 0 7 . 1 9 0 0 0 0 1 +suitable for suitable s su sui suit BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 7 . 1 9 0 0 0 0 1 +Information-Centric Networking information-centric I In Inf Info BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 7 - 1 9 0 0 0 0 1 +Research Task research R Re Res Rese BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 0 7 (). 3 9 0 0 0 0 1 +the IRSG the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 7 ; 1 10 0 0 0 0 1 +Section 2 section S Se Sec Sect BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 7 . 1 3 0 0 0 0 1 +Information about information I In Inf Info BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 10 ,, 2 10 0 0 0 0 1 +and how and a an and and BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 10 no 0 7 0 0 0 0 1 +https://www.rfc-editor.org/info/rfc8609. https://www.rfc-editor.org/info/rfc8609. https://www.rfc-editor.org/info/rfc8609. h ht htt http BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 1 0 10 ://.-.//. 9 6 0 0 0 0 1 +Mosko, et mosko, M Mo Mos Mosk BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 11 ,. 2 10 0 0 1 1 0 +Experimental Experimental experimental E Ex Exp Expe BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 11 no 0 9 0 0 0 0 0 +[Page 1] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 11 [] 2 6 0 0 0 0 0 +RFC 8609 rfc R RF RFC RFC BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 no 0 10 0 0 0 0 1 +CCNx TLV ccnx C CC CCN CCNx BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 no 0 9 0 0 1 1 1 +July 2019 july J Ju Jul July BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 0 0 no 0 10 0 0 0 0 1 +Copyright Notice copyright C Co Cop Copy BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 no 0 10 0 0 0 0 1 +Copyright (c) copyright C Co Cop Copy BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 () 2 10 0 0 0 0 1 +document authors. document d do doc docu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 .. 2 6 0 0 0 0 1 +This document this T Th Thi This BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 ' 1 8 0 0 0 0 1 +Provisions Relating provisions P Pr Pro Prov BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 no 0 5 0 0 0 0 1 +(https://trustee.ietf.org/license-info) in (https://trustee.ietf.org/license-info) ( (h (ht (htt BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 1 0 0 (://../-) 9 9 0 0 0 0 1 +publication of publication p pu pub publ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 . 1 8 0 0 0 0 1 +carefully, as carefully, c ca car care BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 , 1 10 0 0 0 0 1 +to this to t to to to BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 . 1 2 0 0 0 0 1 +Table of table T Ta Tab Tabl BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 1 no 0 10 0 0 0 0 1 +1. Introduction 1. 1 1. 1. 1. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 1 ......................... 25 9 0 0 0 0 1 +3 3 3 3 3 3 3 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 0 1 no 0 0 0 0 0 0 1 +1.1. Requirements 1.1. 1 1. 1.1 1.1. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 1 .................... 20 9 0 0 0 0 1 +5 5 5 5 5 5 5 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 0 1 no 0 0 0 0 0 0 1 +2. Definitions 2. 2 2. 2. 2. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 1 .......................... 26 9 0 0 0 0 1 +5 5 5 5 5 5 5 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 0 1 no 0 0 0 0 0 0 1 +3. Type-Length-Value 3. 3 3. 3. 3. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 1 .--()............... 20 9 0 0 0 0 1 +5 5 5 5 5 5 5 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 0 1 no 0 0 0 0 0 0 1 +3.1. Overall 3.1. 3 3. 3.1 3.1. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 1 .................... 20 9 0 0 0 0 1 +7 7 7 7 7 7 7 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 0 1 no 0 0 0 0 0 0 1 +3.2. Fixed 3.2. 3 3. 3.2 3.2. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 1 ........................ 24 9 0 0 0 0 1 +8 8 8 8 8 8 8 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 0 1 no 0 0 0 0 0 0 1 +3.2.1. Interest 3.2.1. 3 3. 3.2 3.2. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 1 ................... 19 9 0 0 0 0 1 +9 9 9 9 9 9 9 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 0 1 no 0 0 0 0 0 0 1 +3.2.1.1. Interest 3.2.1.1. 3 3. 3.2 3.2. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 1 .................... 20 8 0 0 0 0 1 +9 9 9 9 9 9 9 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 0 1 no 0 0 0 0 0 0 1 +3.2.2. Content 3.2.2. 3 3. 3.2 3.2. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 1 ................ 16 9 0 0 0 0 1 +9 9 9 9 9 9 9 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 0 1 no 0 0 0 0 0 0 1 +3.2.3. Interest 3.2.3. 3 3. 3.2 3.2. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 1 ............... 15 9 0 0 0 0 1 +3.2.3.1. Interest 3.2.3.1. 3 3. 3.2 3.2. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 1 ................ 16 9 0 0 0 0 1 +3.2.3.2. Interest 3.2.3.2. 3 3. 3.2 3.2. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 1 .................. 18 9 0 0 0 0 1 +3.2.3.3. Return 3.2.3.3. 3 3. 3.2 3.2. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 1 ....................... 23 9 0 0 0 0 1 +3.3. Global 3.3. 3 3. 3.3 3.3. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 1 ....................... 23 9 0 0 0 0 1 +3.3.1. Pad 3.3.1. 3 3. 3.3 3.3. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 1 ............................ 28 9 0 0 0 0 1 +3.3.2. Organization-Specific 3.3.2. 3 3. 3.3 3.3. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 1 ...-............. 17 9 0 0 0 0 1 +3.3.3. Hash 3.3.3. 3 3. 3.3 3.3. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 1 ........................ 24 9 0 0 0 0 1 +3.3.4. Link 3.3.4. 3 3. 3.3 3.3. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 1 ........................... 27 9 0 0 0 0 1 +3.4. Hop-by-Hop 3.4. 3 3. 3.4 3.4. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 1 ..--................. 21 9 0 0 0 0 1 +3.4.1. Interest 3.4.1. 3 3. 3.4 3.4. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 1 ..................... 21 9 0 0 0 0 1 +3.4.2. Recommended 3.4.2. 3 3. 3.4 3.4. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 1 .................. 18 9 0 0 0 0 1 +3.4.3. Message 3.4.3. 3 3. 3.4 3.4. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 1 ....................... 23 9 0 0 0 0 1 +3.5. Top-Level 3.5. 3 3. 3.5 3.5. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 1 ..-..................... 24 10 0 0 0 0 1 +3.6. CCNx 3.6. 3 3. 3.6 3.6. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 1 ...................... 22 9 0 0 0 0 1 +3.6.1. Name 3.6.1. 3 3. 3.6 3.6. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 1 ........................... 27 9 0 0 0 0 1 +3.6.1.1. Name 3.6.1.1. 3 3. 3.6 3.6. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 1 ...................... 22 9 0 0 0 0 1 +3.6.1.2. Interest 3.6.1.2. 3 3. 3.6 3.6. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 1 ................... 19 9 0 0 0 0 1 +3.6.2. Message 3.6.2. 3 3. 3.6 3.6. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 1 ....................... 23 9 0 0 0 0 1 +3.6.2.1. Interest 3.6.2.1. 3 3. 3.6 3.6. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 1 .................. 18 9 0 0 0 0 1 +3.6.2.2. Content 3.6.2.2. 3 3. 3.6 3.6. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 1 ............... 15 9 0 0 0 0 1 +3.6.3. Payload 3.6.3. 3 3. 3.6 3.6. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 1 .......................... 26 9 0 0 0 0 1 +3.6.4. Validation 3.6.4. 3 3. 3.6 3.6. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 1 ........................ 24 9 0 0 0 0 1 +3.6.4.1. Validation 3.6.4.1. 3 3. 3.6 3.6. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 1 .................. 18 9 0 0 0 0 1 +3.6.4.2. Validation 3.6.4.2. 3 3. 3.6 3.6. BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 1 ................... 19 9 0 0 0 0 1 +Mosko, et mosko, M Mo Mos Mosk BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 11 ,. 2 10 0 0 1 0 0 +Experimental Experimental experimental E Ex Exp Expe BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 11 no 0 9 0 0 0 0 0 +[Page 2] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 11 [] 2 6 0 0 0 0 0 +RFC 8609 rfc R RF RFC RFC BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 no 0 10 0 0 0 0 1 +CCNx TLV ccnx C CC CCN CCNx BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 no 0 9 0 0 1 0 1 +July 2019 july J Ju Jul July BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 0 0 no 0 10 0 0 0 0 1 +4. IANA 4. 4 4. 4. 4. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ...................... 22 10 0 0 0 0 1 +4.1. Packet 4.1. 4 4. 4.1 4.1. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 .................... 20 9 0 0 0 0 1 +4.2. Interest 4.2. 4 4. 4.2 4.2. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ................ 16 9 0 0 0 0 1 +4.3. Hop-by-Hop 4.3. 4 4. 4.3 4.3. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ..--................ 20 9 0 0 0 0 1 +4.4. Top-Level 4.4. 4 4. 4.4 4.4. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ..-................. 20 9 0 0 0 0 1 +4.5. Name 4.5. 4 4. 4.5 4.5. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ................. 17 9 0 0 0 0 1 +4.6. Message 4.6. 4 4. 4.6 4.6. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 .................... 20 9 0 0 0 0 1 +4.7. Payload 4.7. 4 4. 4.7 4.7. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 .................... 20 9 0 0 0 0 1 +4.8. Validation 4.8. 4 4. 4.8 4.8. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ............. 13 9 0 0 0 0 1 +4.9. Validation-Dependent 4.9. 4 4. 4.9 4.9. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ..-......... 12 9 0 0 0 0 1 +4.10. Hash 4.10. 4 4. 4.1 4.10 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ................. 17 9 0 0 0 0 1 +5. Security 5. 5 5. 5. 5. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 .................... 20 10 0 0 0 0 1 +6. References 6. 6 6. 6. 6. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 .......................... 26 9 0 0 0 0 1 +6.1. Normative 6.1. 6 6. 6.1 6.1. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 .................... 20 9 0 0 0 0 1 +6.2. Informative 6.2. 6 6. 6.2 6.2. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ................... 19 9 0 0 0 0 1 +Authors' Addresses authors' A Au Aut Auth BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 '....................... 24 10 0 0 0 0 1 +1. Introduction 1. 1 1. 1. 1. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 6 . 1 10 0 0 0 0 1 +This document this T Th Thi This BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 6 --() 4 9 0 0 0 0 1 +the TLV the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 6 . 1 8 0 0 0 0 1 +description of description d de des desc BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 6 ,- 2 10 0 0 0 0 1 +description of description d de des desc BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 6 , 1 9 0 0 0 0 1 +[RFC8569]. CCNx [rfc8569]. [ [R [RF [RFC BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 6 []. 3 9 0 0 0 0 1 +to forward to t to to to BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 6 . 1 9 0 0 0 0 1 +use endpoint use u us use use BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 6 ;. 2 9 0 0 0 0 1 +a request a a a a a BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 1 0 0 0 0 0 0 6 ' 1 10 0 0 0 0 1 +signer or signer s si sig sign BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 6 . 1 8 0 0 0 0 1 +forwarder along forwarder f fo for forw BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 6 no 0 9 0 0 0 0 1 +checking. The checking. c ch che chec BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 6 . 1 9 0 0 0 0 1 +Information-Centric Networking information-centric I In Inf Info BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 6 -()[]. 6 8 0 0 0 0 1 +This document this T Th Thi This BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 8 - 1 9 0 0 0 0 1 +fixed 2-byte fixed f fi fix fixe BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 8 -. 2 9 0 0 0 0 1 +Section 5. section S Se Sec Sect BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 8 ., 2 9 0 0 0 0 1 +same value same s sa sam same BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 8 () 2 9 0 0 0 0 1 +compliance. Unlike compliance. c co com comp BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 8 ., 2 10 0 0 0 0 1 +must evaluate must m mu mus must BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 8 , 1 9 0 0 0 0 1 +each hop each e ea eac each BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 8 . 1 10 0 0 0 0 1 +small packets small s sm sma smal BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 0 8 -, 2 9 0 0 0 0 1 +become a become b be bec beco BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 8 ,, 2 9 0 0 0 0 1 +example, [compress] example, e ex exa exam BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 8 ,[][]. 6 4 0 0 0 0 1 +This document this T Th Thi This BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 10 ,, 2 9 0 0 0 0 1 +Message TLV. message M Me Mes Mess BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 10 . 1 10 0 0 0 0 1 +specified in specified s sp spe spec BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 10 .. 2 9 0 0 0 0 1 +in the in i in in in BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 1 10 []. 3 10 0 0 0 0 1 +to the to t to to to BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 10 .. 2 9 0 0 0 0 1 +Mosko, et mosko, M Mo Mos Mosk BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 1 11 ,. 2 10 0 0 1 0 0 +Experimental Experimental experimental E Ex Exp Expe BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 11 no 0 9 0 0 0 0 0 +[Page 3] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 11 [] 2 6 0 0 0 0 0 +RFC 8609 rfc R RF RFC RFC BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 1 0 no 0 10 0 0 0 0 1 +CCNx TLV ccnx C CC CCN CCNx BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 1 0 no 0 9 0 0 1 0 1 +July 2019 july J Ju Jul July BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 1 0 no 0 10 0 0 0 0 1 +This document this T Th Thi This BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 0 : 1 10 0 0 0 0 1 +o the o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 1 0 , 1 10 0 0 0 0 1 +o the o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 1 0 , 1 10 0 0 0 0 1 +o the o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 1 0 , 1 10 0 0 0 0 1 +o the o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 1 1 , 1 10 0 0 0 0 1 +o top-level o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 1 1 -, 2 10 0 0 0 0 1 +o Interest o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 1 1 , 1 10 0 0 0 0 1 +o Content o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 1 2 . 1 10 0 0 0 0 1 +This document this T Th Thi This BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 2 : 1 10 0 0 0 0 1 +o [RFC8569], o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 1 2 [], 3 9 0 0 0 0 1 +operation regarding operation o op ope oper BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 2 , 1 10 0 0 0 0 1 +Interest Return interest I In Int Inte BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 2 . 1 4 0 0 0 0 1 +o [CCNxURI], o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 1 3 [],. 4 10 0 0 0 0 1 +The type the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 3 - 1 10 0 0 0 0 1 +the CCNx the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 3 . 1 9 0 0 0 0 1 +that section. that t th tha that BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 3 . 1 9 0 0 0 0 1 +containers. For containers. c co con cont BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 3 ., 2 9 0 0 0 0 1 +define a define d de def defi BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 3 "". 3 8 0 0 0 0 1 +Packets are packets P Pa Pac Pack BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 5 -. 2 9 0 0 0 0 1 +the nested the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 5 no 0 10 0 0 0 0 1 +and variable and a an and and BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 5 , 1 8 0 0 0 0 1 +possibilities. We possibilities. p po pos poss BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 5 . 1 9 0 0 0 0 1 +by vertical by b by by by BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 5 "". 3 9 0 0 0 0 1 +forward slash forward f fo for forw BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 5 "/", 4 10 0 0 0 0 1 +to word to t to to to BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 5 . 1 6 0 0 0 0 1 +The document the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 8 . 1 10 0 0 0 0 1 +ICN protocol icn I IC ICN ICN BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 1 8 ,[] 3 10 0 0 0 0 1 +with significant with w wi wit with BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 8 no 0 9 0 0 0 0 1 +members. The members. m me mem memb BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 8 . 1 9 0 0 0 0 1 +members of members m me mem memb BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 8 . 1 9 0 0 0 0 1 +approve of approve a ap app appr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 8 . 1 9 0 0 0 0 1 +and is and a an and and BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 8 . 1 9 0 0 0 0 1 +an experimental an a an an an BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 1 8 no 0 9 0 0 0 0 1 +application and application a ap app appl BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 8 . 1 8 0 0 0 0 1 +Mosko, et mosko, M Mo Mos Mosk BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 1 11 ,. 2 10 0 0 1 0 0 +Experimental Experimental experimental E Ex Exp Expe BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 11 no 0 9 0 0 0 0 0 +[Page 4] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 11 [] 2 6 0 0 0 0 0 +RFC 8609 rfc R RF RFC RFC BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 1 0 no 0 10 0 0 0 0 1 +CCNx TLV ccnx C CC CCN CCNx BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 1 0 no 0 9 0 0 1 0 1 +July 2019 july J Ju Jul July BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 1 0 no 0 10 0 0 0 0 1 +1.1. Requirements 1.1. 1 1. 1.1 1.1. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 0 .. 2 10 0 0 0 0 1 +The key the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 0 "","","","","", 15 9 0 0 0 0 1 +"SHOULD", "SHOULD "should", " "S "SH "SHO BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 1 0 "","","","","", 15 10 0 0 0 0 1 +"OPTIONAL" in "optional" " "O "OP "OPT BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 1 0 "" 2 9 0 0 0 0 1 +BCP 14 bcp B BC BCP BCP BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 1 0 [][],, 6 9 0 0 0 0 1 +capitals, as capitals, c ca cap capi BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 0 ,. 2 3 0 0 0 0 1 +2. Definitions 2. 2 2. 2. 2. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 2 . 1 10 0 0 0 0 1 +These definitions these T Th The Thes BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 2 []. 3 10 0 0 0 0 1 +document defines document d do doc docu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 2 . 1 5 0 0 0 0 1 +o Name: o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 1 3 :-. 3 10 0 0 0 0 1 +is an is i is is is BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 3 ,- 2 9 0 0 0 0 1 +octet strings. octet o oc oct octe BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 3 .-, 3 9 0 0 0 0 1 +format as format f fo for form BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 3 "://".. 7 9 0 0 0 0 1 +See [CCNxURI] see S Se See See BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 1 3 []. 3 5 0 0 0 0 1 +o Interest: o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 1 5 : 1 10 0 0 0 0 1 +Name and name N Na Nam Name BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 5 no 0 10 0 0 0 0 1 +with the with w wi wit with BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 5 . 1 10 0 0 0 0 1 +that matches that t th tha that BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 5 no 0 9 0 0 0 0 1 +said to said s sa sai said BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 5 . 1 4 0 0 0 0 1 +o Content o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 1 6 : 1 10 0 0 0 0 1 +request. It request. r re req requ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 6 . 1 10 0 0 0 0 1 +bound together bound b bo bou boun BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 6 . 1 6 0 0 0 0 1 +3. Type-Length-Value 3. 3 3. 3. 3. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 7 .--() 5 10 0 0 0 0 1 +We use we W We We We BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 8 --- 3 9 0 0 0 0 1 +packets. This packets. p pa pac pack BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 8 ., 2 9 0 0 0 0 1 +field lengths field f fi fie fiel BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 1 8 ., 2 9 0 0 0 0 1 +level of level l le lev leve BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 8 , 1 9 0 0 0 0 1 +protocol types, protocol p pr pro prot BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 8 ,, 2 9 0 0 0 0 1 +application use, application a ap app appl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 8 ,,. 3 9 0 0 0 0 1 +not allow not n no not not BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 8 . 1 10 0 0 0 0 1 +media that media m me med medi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 8 , 1 9 0 0 0 0 1 +adaptation envelope adaptation a ad ada adap BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 8 . 1 8 0 0 0 0 1 +Mosko, et mosko, M Mo Mos Mosk BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 1 11 ,. 2 10 0 0 1 0 0 +Experimental Experimental experimental E Ex Exp Expe BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 11 no 0 9 0 0 0 0 0 +[Page 5] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 11 [] 2 6 0 0 0 0 0 +RFC 8609 rfc R RF RFC RFC BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 1 0 no 0 10 0 0 0 0 1 +CCNx TLV ccnx C CC CCN CCNx BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 1 0 no 0 9 0 0 1 0 1 +July 2019 july J Ju Jul July BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 1 0 no 0 10 0 0 0 0 1 ++--------+------------------+---------------------------------------+ +--------+------------------+---------------------------------------+ +--------+------------------+---------------------------------------+ + +- +-- +--- BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 1 0 ----------------------------------------------------------------- 65 10 0 0 0 0 1 +| Abbrev | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 no 0 1 0 0 0 0 1 +Name Name name N Na Nam Name BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 0 no 0 0 0 0 0 0 1 +| Description | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 no 0 2 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 no 0 0 0 0 0 0 1 ++--------+------------------+---------------------------------------+ +--------+------------------+---------------------------------------+ +--------+------------------+---------------------------------------+ + +- +-- +--- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 1 0 ----------------------------------------------------------------- 65 10 0 0 0 0 1 +| T_ORG | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 no 0 8 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 no 0 0 0 0 0 0 1 +Information Information information I In Inf Info BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 0 no 0 1 0 0 0 0 1 +| implementation | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 (..). 5 4 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 no 0 0 0 0 0 0 1 +| T_PAD | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 no 0 1 0 0 0 0 1 +Padding Padding padding P Pa Pad Padd BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 0 no 0 1 0 0 0 0 1 +| Adds | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 ( 1 5 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 no 0 0 0 0 0 0 1 +| 3.3.1). | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 ..). 4 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 no 0 0 0 0 0 0 1 +| n/a | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 / 1 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 no 0 0 0 0 0 0 1 +Experimental Experimental experimental E Ex Exp Expe BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 0 no 0 1 0 0 0 0 1 +| Experimental | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 . 1 2 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 no 0 0 0 0 0 0 1 ++--------+------------------+---------------------------------------+ +--------+------------------+---------------------------------------+ +--------+------------------+---------------------------------------+ + +- +-- +--- BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 1 0 ----------------------------------------------------------------- 65 10 0 0 0 0 1 +Table 1: table T Ta Tab Tabl BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 4 : 1 10 0 0 0 0 1 +There are there T Th The Ther BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 5 no 0 9 0 0 0 0 1 +hierarchical contexts. hierarchical h hi hie hier BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 5 .- 2 10 0 0 0 0 1 +are Reserved are a ar are are BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 5 . 1 9 0 0 0 0 1 +Reserved for reserved R Re Res Rese BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 5 (..). 5 10 0 0 0 0 1 +T_PAD is t_pad T T_ T_P T_PA BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 1 5 no 0 9 0 0 0 0 1 +alignment. alignment. alignment. a al ali alig BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 5 . 1 1 0 0 0 0 1 +1 1 1 1 1 1 1 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 1 6 no 0 0 0 0 0 0 1 +2 2 2 2 2 2 2 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 1 6 no 0 0 0 0 0 0 1 +3 3 3 3 3 3 3 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 1 6 no 0 0 0 0 0 0 1 +0 1 0 0 0 0 0 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 1 6 no 0 9 0 0 0 0 1 ++---------------+---------------+---------------+---------------+ +---------------+---------------+---------------+---------------+ +---------------+---------------+---------------+---------------+ + +- +-- +--- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 1 6 ------------------------------------------------------------ 60 10 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 6 no 0 0 0 0 0 0 1 +Type Type type T Ty Typ Type BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 6 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 6 no 0 0 0 0 0 0 1 +Length Length length L Le Len Leng BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 6 no 0 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 6 no 0 0 0 0 0 0 1 ++---------------+---------------+---------------+---------------+ +---------------+---------------+---------------+---------------+ +---------------+---------------+---------------+---------------+ + +- +-- +--- BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 1 6 ------------------------------------------------------------ 60 10 0 0 0 0 1 +Figure 1: figure F Fi Fig Figu BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 9 : 1 10 0 0 0 0 1 +The Length the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 9 . 1 10 0 0 0 0 1 +It does it I It It It BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 9 . 1 9 0 0 0 0 1 +Length MAY length L Le Len Leng BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 9 . 1 2 0 0 0 0 1 +TLV structures tlv T TL TLV TLV BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 1 10 , 1 9 0 0 0 0 1 +structure to structure s st str stru BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 10 . 1 10 0 0 0 0 1 +structure is structure s st str stru BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 10 . 1 8 0 0 0 0 1 +Type values type T Ty Typ Type BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 11 ., 2 10 0 0 0 0 1 +reuse previous reuse r re reu reus BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 11 -. 2 9 0 0 0 0 1 +Mosko, et mosko, M Mo Mos Mosk BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 1 11 ,. 2 10 0 0 1 0 0 +Experimental Experimental experimental E Ex Exp Expe BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 11 no 0 9 0 0 0 0 0 +[Page 6] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 11 [] 2 6 0 0 0 0 0 +RFC 8609 rfc R RF RFC RFC BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 1 0 no 0 10 0 0 0 0 1 +CCNx TLV ccnx C CC CCN CCNx BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 1 0 no 0 9 0 0 1 0 1 +July 2019 july J Ju Jul July BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 1 0 no 0 10 0 0 0 0 1 +3.1. Overall 3.1. 3 3. 3.1 3.1. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 0 .. 2 10 0 0 0 0 1 +Each CCNx each E Ea Eac Each BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 0 -,, 3 10 0 0 0 0 1 +followed by followed f fo fol foll BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 0 .-- 3 9 0 0 0 0 1 +hop headers hop h ho hop hop BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 0 . 1 5 0 0 0 0 1 +1 1 1 1 1 1 1 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 1 0 no 0 0 0 0 0 0 1 +2 2 2 2 2 2 2 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 1 0 no 0 0 0 0 0 0 1 +3 3 3 3 3 3 3 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 1 0 no 0 0 0 0 0 0 1 +0 1 0 0 0 0 0 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 1 0 no 0 9 0 0 0 0 1 ++---------------+---------------+---------------+---------------+ +---------------+---------------+---------------+---------------+ +---------------+---------------+---------------+---------------+ + +- +-- +--- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 1 0 ------------------------------------------------------------ 60 10 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 no 0 0 0 0 0 0 1 +Version Version version V Ve Ver Vers BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 0 no 0 1 0 0 0 0 1 +| PacketType | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 no 0 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 no 0 0 0 0 0 0 1 +PacketLength PacketLength packetlength P Pa Pac Pack BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 1 0 no 0 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 no 0 0 0 0 0 0 1 ++---------------+---------------+---------------+---------------+ +---------------+---------------+---------------+---------------+ +---------------+---------------+---------------+---------------+ + +- +-- +--- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 1 0 ------------------------------------------------------------ 60 10 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 no 0 0 0 0 0 0 1 +PacketType-specific fields packettype-specific P Pa Pac Pack BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 1 0 - 1 4 0 0 0 0 1 +| HeaderLength | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 no 0 2 0 0 0 0 1 ++---------------+---------------+---------------+---------------+ +---------------+---------------+---------------+---------------+ +---------------+---------------+---------------+---------------+ + +- +-- +--- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 1 0 ------------------------------------------------------------ 60 10 0 0 0 0 1 +/ Optional / / / / / BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 /-- 3 5 0 0 0 0 1 +/ / / / / / / BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 / 1 0 0 0 0 0 1 ++---------------+---------------+---------------+---------------+ +---------------+---------------+---------------+---------------+ +---------------+---------------+---------------+---------------+ + +- +-- +--- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 1 0 ------------------------------------------------------------ 60 10 0 0 0 0 1 +/ PacketPayload / / / / / BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 / 1 3 0 0 0 0 1 +/ / / / / / / BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 / 1 0 0 0 0 0 1 ++---------------+---------------+---------------+---------------+ +---------------+---------------+---------------+---------------+ +---------------+---------------+---------------+---------------+ + +- +-- +--- BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 1 0 ------------------------------------------------------------ 60 10 0 0 0 0 1 +Figure 2: figure F Fi Fig Figu BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 5 : 1 10 0 0 0 0 1 +The PacketPayload the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 5 . 1 9 0 0 0 0 1 +The Content the T Th The The BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 5 , 1 9 0 0 0 0 1 +excluding the excluding e ex exc excl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 5 --, 3 9 0 0 0 0 1 +from hop from f fr fro from BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 5 . 1 9 0 0 0 0 1 +include any include i in inc incl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 5 --. 3 9 0 0 0 0 1 +should be should s sh sho shou BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 5 --- 3 10 0 0 0 0 1 +headers are headers h he hea head BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 5 .(..). 6 7 0 0 0 0 1 +Following the following F Fo Fol Foll BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 6 , 1 10 0 0 0 0 1 +optional Validation optional o op opt opti BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 6 . 1 4 0 0 0 0 1 +1 1 1 1 1 1 1 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 1 7 no 0 0 0 0 0 0 1 +2 2 2 2 2 2 2 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 1 7 no 0 0 0 0 0 0 1 +3 3 3 3 3 3 3 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 1 7 no 0 0 0 0 0 0 1 +0 1 0 0 0 0 0 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 1 7 no 0 9 0 0 0 0 1 ++---------------+---------------+---------------+---------------+ +---------------+---------------+---------------+---------------+ +---------------+---------------+---------------+---------------+ + +- +-- +--- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 1 7 ------------------------------------------------------------ 60 10 0 0 0 0 1 +| CCNx | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 7 no 0 2 0 0 0 0 1 +/ / / / / / / BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 7 / 1 0 0 0 0 0 1 ++---------------+---------------+---------------+---------------+ +---------------+---------------+---------------+---------------+ +---------------+---------------+---------------+---------------+ + +- +-- +--- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 1 7 ------------------------------------------------------------ 60 10 0 0 0 0 1 +/ Optional / / / / / BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 7 / 1 6 0 0 0 0 1 +/ / / / / / / BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 7 / 1 0 0 0 0 0 1 ++---------------+---------------+---------------+---------------+ +---------------+---------------+---------------+---------------+ +---------------+---------------+---------------+---------------+ + +- +-- +--- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 1 7 ------------------------------------------------------------ 60 10 0 0 0 0 1 +/ Optional / / / / / BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 7 /()/ 4 9 0 0 0 0 1 ++---------------+---------------+---------------+---------------+ +---------------+---------------+---------------+---------------+ +---------------+---------------+---------------+---------------+ + +- +-- +--- BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 1 7 ------------------------------------------------------------ 60 10 0 0 0 0 1 +Figure 3: figure F Fi Fig Figu BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 10 : 1 10 0 0 0 0 1 +After discarding after A Af Aft Afte BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 10 --, 3 9 0 0 0 0 1 +PacketPayload should packetpayload P Pa Pac Pack BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 2 10 ., 2 9 0 0 0 0 1 +PacketPayload always packetpayload P Pa Pac Pack BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 2 10 - 1 9 0 0 0 0 1 +specifies the specifies s sp spe spec BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 10 (, 2 10 0 0 0 0 1 +Object, or object, O Ob Obj Obje BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 10 ,). 3 10 0 0 0 0 1 +Mosko, et mosko, M Mo Mos Mosk BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 2 11 ,. 2 10 0 0 1 0 0 +Experimental Experimental experimental E Ex Exp Expe BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 11 no 0 9 0 0 0 0 0 +[Page 7] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 11 [] 2 6 0 0 0 0 0 +RFC 8609 rfc R RF RFC RFC BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 2 0 no 0 10 0 0 0 0 1 +CCNx TLV ccnx C CC CCN CCNx BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 2 0 no 0 9 0 0 1 0 1 +July 2019 july J Ju Jul July BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 2 0 no 0 10 0 0 0 0 1 +of a of o of of of BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 0 --- 3 9 0 0 0 0 1 +hop headers hop h ho hop hop BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 0 no 0 10 0 0 0 0 1 +only on only o on onl only BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 0 . 1 9 0 0 0 0 1 +--which specifies --which - -- --w --wh BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 0 ---- 4 7 0 0 0 0 1 +PacketPayload. PacketPayload. packetpayload. P Pa Pac Pack BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 2 0 . 1 2 0 0 0 0 1 +The range the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 2 no 0 10 0 0 0 0 1 +Message TLV message M Me Mes Mess BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 2 . 1 6 0 0 0 0 1 +The ContentObjectHash the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 2 no 0 10 0 0 0 0 1 +the tail the t th the the BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 2 . 1 4 0 0 0 0 1 +3.2. Fixed 3.2. 3 3. 3.2 3.2. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 3 .. 2 10 0 0 0 0 1 +In Figure in I In In In BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 2 3 ,: 2 10 0 0 0 0 1 +o Version: o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 2 4 :,. 3 10 0 0 0 0 1 +o HeaderLength: o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 2 4 :()-- 5 10 0 0 0 0 1 +hop headers. hop h ho hop hop BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 4 .. 2 6 0 0 0 0 1 +o PacketType: o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 2 5 :. 2 10 0 0 0 0 1 +o PacketLength: o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 2 5 :( 2 10 0 0 0 0 1 +header plus header h he hea head BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 5 --). 4 7 0 0 0 0 1 +o PacketType-specific o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 2 6 -: 2 10 0 0 0 0 1 +these bits. these t th the thes BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 6 . 1 1 0 0 0 0 1 +The PacketType the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 7 no 0 9 0 0 0 0 1 +packet. A packet. p pa pac pack BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 7 .(), 4 9 0 0 0 0 1 +Response (Content response R Re Res Resp BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 7 (), 3 10 0 0 0 0 1 +Return has return R Re Ret Retu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 7 . 1 4 0 0 0 0 1 +HeaderLength is headerlength H He Hea Head BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 2 8 no 0 9 0 0 0 0 1 +Packet (Version) packet P Pa Pac Pack BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 8 ()--. 5 9 0 0 0 0 1 +is the is i is is is BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 8 no 0 9 0 0 0 0 1 +the packet. the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 8 .( 2 10 0 0 0 0 1 +itself). itself). itself). i it its itse BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 8 ). 2 1 0 0 0 0 1 +The PacketType-specific the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 10 - 1 10 0 0 0 0 1 +the PacketType. the t th the the BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 10 .-. 3 8 0 0 0 0 1 +Mosko, et mosko, M Mo Mos Mosk BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 2 11 ,. 2 10 0 0 1 0 0 +Experimental Experimental experimental E Ex Exp Expe BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 11 no 0 9 0 0 0 0 0 +[Page 8] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 11 [] 2 6 0 0 0 0 0 +RFC 8609 rfc R RF RFC RFC BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 2 0 no 0 10 0 0 0 0 1 +CCNx TLV ccnx C CC CCN CCNx BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 2 0 no 0 9 0 0 1 0 1 +July 2019 july J Ju Jul July BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 2 0 no 0 10 0 0 0 0 1 +3.2.1. Interest 3.2.1. 3 3. 3.2 3.2. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 0 ... 3 10 0 0 0 0 1 +If the if I If If If BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 0 , 1 10 0 0 0 0 1 +be forwarded be b be be be BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 0 .. 2 9 0 0 0 0 1 +[RFC8569]. For [rfc8569]. [ [R [RF [RFC BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 0 []., 4 9 0 0 0 0 1 +field for field f fi fie fiel BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 2 0 . 1 9 0 0 0 0 1 +Reserved field reserved R Re Res Rese BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 0 . 1 9 0 0 0 0 1 +no flags no n no no no BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 0 ,. 2 7 0 0 0 0 1 +1 1 1 1 1 1 1 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 2 1 no 0 0 0 0 0 0 1 +2 2 2 2 2 2 2 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 2 1 no 0 0 0 0 0 0 1 +3 3 3 3 3 3 3 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 2 1 no 0 0 0 0 0 0 1 +0 1 0 0 0 0 0 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 2 1 no 0 9 0 0 0 0 1 ++---------------+---------------+---------------+---------------+ +---------------+---------------+---------------+---------------+ +---------------+---------------+---------------+---------------+ + +- +-- +--- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 2 1 ------------------------------------------------------------ 60 10 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 1 no 0 0 0 0 0 0 1 +Version Version version V Ve Ver Vers BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 1 no 0 1 0 0 0 0 1 +| PT_INTEREST | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 1 no 0 2 0 0 0 0 1 +PacketLength PacketLength packetlength P Pa Pac Pack BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 2 1 no 0 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 1 no 0 0 0 0 0 0 1 ++---------------+---------------+---------------+---------------+ +---------------+---------------+---------------+---------------+ +---------------+---------------+---------------+---------------+ + +- +-- +--- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 2 1 ------------------------------------------------------------ 60 10 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 1 no 0 0 0 0 0 0 1 +HopLimit HopLimit hoplimit H Ho Hop HopL BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 2 1 no 0 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 1 no 0 0 0 0 0 0 1 +Reserved Reserved reserved R Re Res Rese BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 1 no 0 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 1 no 0 0 0 0 0 0 1 +Flags Flags flags F Fl Fla Flag BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 1 no 0 0 0 0 0 0 1 +| HeaderLength | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 1 no 0 2 0 0 0 0 1 ++---------------+---------------+---------------+---------------+ +---------------+---------------+---------------+---------------+ +---------------+---------------+---------------+---------------+ + +- +-- +--- BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 2 1 ------------------------------------------------------------ 60 10 0 0 0 0 1 +Figure 4: figure F Fi Fig Figu BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 5 : 1 10 0 0 0 0 1 +3.2.1.1. Interest 3.2.1.1. 3 3. 3.2 3.2. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 5 .... 4 10 0 0 0 0 1 +For an for F Fo For For BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 5 , 1 8 0 0 0 0 1 +decremented with decremented d de dec decr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 5 . 1 9 0 0 0 0 1 +travel on travel t tr tra trav BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 5 . 1 9 0 0 0 0 1 +any value any a an any any BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 5 . 1 9 0 0 0 0 1 +Interest with interest I In Int Inte BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 5 . 1 10 0 0 0 0 1 +value is value v va val valu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 5 , 1 9 0 0 0 0 1 +off the off o of off off BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 5 . 1 2 0 0 0 0 1 +It is it I It It It BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 6 no 0 10 0 0 0 0 1 +HopLimit field hoplimit H Ho Hop HopL BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 2 6 . 1 3 0 0 0 0 1 +3.2.2. Content 3.2.2. 3 3. 3.2 3.2. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 7 ... 3 10 0 0 0 0 1 +If the if I If If If BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 7 , 1 10 0 0 0 0 1 +be forwarded be b be be be BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 7 .. 2 9 0 0 0 0 1 +of [RFC8569]. of o of of of BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 7 [].;, 5 10 0 0 0 0 1 +are currently are a ar are are BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 7 ,. 2 10 0 0 0 0 1 +1 1 1 1 1 1 1 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 2 8 no 0 0 0 0 0 0 1 +2 2 2 2 2 2 2 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 2 8 no 0 0 0 0 0 0 1 +3 3 3 3 3 3 3 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 2 8 no 0 0 0 0 0 0 1 +0 1 0 0 0 0 0 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 2 8 no 0 9 0 0 0 0 1 ++---------------+---------------+---------------+---------------+ +---------------+---------------+---------------+---------------+ +---------------+---------------+---------------+---------------+ + +- +-- +--- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 2 8 ------------------------------------------------------------ 60 10 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 8 no 0 0 0 0 0 0 1 +Version Version version V Ve Ver Vers BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 8 no 0 1 0 0 0 0 1 +| PT_CONTENT | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 8 no 0 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 8 no 0 0 0 0 0 0 1 +PacketLength PacketLength packetlength P Pa Pac Pack BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 2 8 no 0 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 8 no 0 0 0 0 0 0 1 ++---------------+---------------+---------------+---------------+ +---------------+---------------+---------------+---------------+ +---------------+---------------+---------------+---------------+ + +- +-- +--- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 2 8 ------------------------------------------------------------ 60 10 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 8 no 0 0 0 0 0 0 1 +Reserved Reserved reserved R Re Res Rese BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 8 no 0 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 8 no 0 0 0 0 0 0 1 +Flags Flags flags F Fl Fla Flag BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 8 no 0 0 0 0 0 0 1 +| HeaderLength | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 8 no 0 2 0 0 0 0 1 ++---------------+---------------+---------------+---------------+ +---------------+---------------+---------------+---------------+ +---------------+---------------+---------------+---------------+ + +- +-- +--- BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 2 8 ------------------------------------------------------------ 60 10 0 0 0 0 1 +Figure 5: figure F Fi Fig Figu BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 11 : 1 10 0 0 0 0 1 +Mosko, et mosko, M Mo Mos Mosk BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 2 11 ,. 2 10 0 0 1 0 0 +Experimental Experimental experimental E Ex Exp Expe BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 11 no 0 9 0 0 0 0 0 +[Page 9] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 11 [] 2 6 0 0 0 0 0 +RFC 8609 rfc R RF RFC RFC BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 2 0 no 0 10 0 0 0 0 1 +CCNx TLV ccnx C CC CCN CCNx BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 2 0 no 0 9 0 0 1 0 1 +July 2019 july J Ju Jul July BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 2 0 no 0 10 0 0 0 0 1 +3.2.3. Interest 3.2.3. 3 3. 3.2 3.2. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 0 ... 3 10 0 0 0 0 1 +If the if I If If If BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 0 , 1 10 0 0 0 0 1 +be processed be b be be be BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 0 no 0 9 0 0 0 0 1 +[RFC8569]. The [rfc8569]. [ [R [RF [RFC BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 0 []. 3 10 0 0 0 0 1 +and the and a an and and BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 0 no 0 9 0 0 0 0 1 +PT_RETURN and pt_return P PT PT_ PT_R BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 2 0 . 1 9 0 0 0 0 1 +other fields other o ot oth othe BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 0 . 1 10 0 0 0 0 1 +this encoding this t th thi this BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 0 no 0 9 0 0 0 0 1 +bytes are bytes b by byt byte BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 0 . 1 8 0 0 0 0 1 +1 1 1 1 1 1 1 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 2 3 no 0 0 0 0 0 0 1 +2 2 2 2 2 2 2 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 2 3 no 0 0 0 0 0 0 1 +3 3 3 3 3 3 3 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 2 3 no 0 0 0 0 0 0 1 +0 1 0 0 0 0 0 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 2 3 no 0 9 0 0 0 0 1 ++---------------+---------------+---------------+---------------+ +---------------+---------------+---------------+---------------+ +---------------+---------------+---------------+---------------+ + +- +-- +--- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 2 3 ------------------------------------------------------------ 60 10 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 3 no 0 0 0 0 0 0 1 +Version Version version V Ve Ver Vers BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 3 no 0 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 3 no 0 0 0 0 0 0 1 +PT_RETURN PT_RETURN pt_return P PT PT_ PT_R BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 2 3 no 0 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 3 no 0 0 0 0 0 0 1 +PacketLength PacketLength packetlength P Pa Pac Pack BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 2 3 no 0 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 3 no 0 0 0 0 0 0 1 ++---------------+---------------+---------------+---------------+ +---------------+---------------+---------------+---------------+ +---------------+---------------+---------------+---------------+ + +- +-- +--- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 2 3 ------------------------------------------------------------ 60 10 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 3 no 0 0 0 0 0 0 1 +HopLimit HopLimit hoplimit H Ho Hop HopL BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 2 3 no 0 1 0 0 0 0 1 +| ReturnCode | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 3 no 0 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 3 no 0 0 0 0 0 0 1 +Flags Flags flags F Fl Fla Flag BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 3 no 0 0 0 0 0 0 1 +| HeaderLength | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 3 no 0 2 0 0 0 0 1 ++---------------+---------------+---------------+---------------+ +---------------+---------------+---------------+---------------+ +---------------+---------------+---------------+---------------+ + +- +-- +--- BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 2 3 ------------------------------------------------------------ 60 10 0 0 0 0 1 +Figure 6: figure F Fi Fig Figu BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 7 : 1 10 0 0 0 0 1 +3.2.3.1. Interest 3.2.3.1. 3 3. 3.2 3.2. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 8 .... 4 10 0 0 0 0 1 +This is this T Th Thi This BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 8 ', 2 10 0 0 0 0 1 +decrement at decrement d de dec decr BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 8 . 1 8 0 0 0 0 1 +3.2.3.2. Interest 3.2.3.2. 3 3. 3.2 3.2. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 8 .... 4 10 0 0 0 0 1 +These are these T Th The Thes BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 9 . 1 10 0 0 0 0 1 +3.2.3.3. Return 3.2.3.3. 3 3. 3.2 3.2. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 9 .... 4 10 0 0 0 0 1 +This section this T Th Thi This BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 9 [] 2 10 0 0 0 0 1 +name. Section name. n na nam name BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 9 ... 3 9 0 0 0 0 1 +field is field f fi fie fiel BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 2 9 . 1 7 0 0 0 0 1 +A return a A A A A BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 1 0 0 0 0 0 2 10 "", 3 10 0 0 0 0 1 +returning system returning r re ret retu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 10 . 1 8 0 0 0 0 1 +Mosko, et mosko, M Mo Mos Mosk BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 2 11 ,. 2 10 0 0 1 0 0 +Experimental Experimental experimental E Ex Exp Expe BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 11 no 0 9 0 0 0 0 0 +[Page 10] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 11 [] 2 7 0 0 0 0 0 +RFC 8609 rfc R RF RFC RFC BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 2 0 no 0 10 0 0 0 0 1 +CCNx TLV ccnx C CC CCN CCNx BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 2 0 no 0 9 0 0 1 0 1 +July 2019 july J Ju Jul July BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 2 0 no 0 10 0 0 0 0 1 ++-------------------------------------+-----------------------------+ +-------------------------------------+-----------------------------+ +-------------------------------------+-----------------------------+ + +- +-- +--- BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 2 0 ------------------------------------------------------------------ 66 10 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 0 0 0 0 0 1 +Return Type return R Re Ret Retu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 0 no 0 1 0 0 0 0 1 +| Name | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 2 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 0 0 0 0 0 1 ++-------------------------------------+-----------------------------+ +-------------------------------------+-----------------------------+ +-------------------------------------+-----------------------------+ + +- +-- +--- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 2 0 ------------------------------------------------------------------ 66 10 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 0 0 0 0 0 1 +T_RETURN_NO_ROUTE T_RETURN_NO_ROUTE t_return_no_route T T_ T_R T_RE BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 2 0 no 0 2 0 0 0 0 1 +| No | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 0 0 0 0 0 1 +T_RETURN_LIMIT_EXCEEDED T_RETURN_LIMIT_EXCEEDED t_return_limit_exceeded T T_ T_R T_RE BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 2 0 no 0 3 0 0 0 0 1 +| Hop | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 3 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 0 0 0 0 0 1 +T_RETURN_NO_RESOURCES T_RETURN_NO_RESOURCES t_return_no_resources T T_ T_R T_RE BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 2 0 no 0 3 0 0 0 0 1 +| No | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 2 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 0 0 0 0 0 1 +T_RETURN_PATH_ERROR T_RETURN_PATH_ERROR t_return_path_error T T_ T_R T_RE BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 2 0 no 0 2 0 0 0 0 1 +| Path | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 0 0 0 0 0 1 +T_RETURN_PROHIBITED T_RETURN_PROHIBITED t_return_prohibited T T_ T_R T_RE BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 2 0 no 0 2 0 0 0 0 1 +| Prohibited | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 0 0 0 0 0 1 +T_RETURN_CONGESTED T_RETURN_CONGESTED t_return_congested T T_ T_R T_RE BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 2 0 no 0 2 0 0 0 0 1 +| Congested | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 0 0 0 0 0 1 +T_RETURN_MTU_TOO_LARGE T_RETURN_MTU_TOO_LARGE t_return_mtu_too_large T T_ T_R T_RE BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 2 0 no 0 3 0 0 0 0 1 +| MTU | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 2 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 0 0 0 0 0 1 +| T_RETURN_UNSUPPORTED_HASH_RESTRICTI | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 10 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 0 0 0 0 0 1 +ON ON on O ON ON ON BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 2 0 no 0 0 0 0 0 0 1 +| shRestriction | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 2 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 0 0 0 0 0 1 +T_RETURN_MALFORMED_INTEREST T_RETURN_MALFORMED_INTEREST t_return_malformed_interest T T_ T_R T_RE BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 2 0 no 0 4 0 0 0 0 1 +| Malformed | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 3 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 0 0 0 0 0 1 ++-------------------------------------+-----------------------------+ +-------------------------------------+-----------------------------+ +-------------------------------------+-----------------------------+ + +- +-- +--- BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 2 0 ------------------------------------------------------------------ 66 10 0 0 0 0 1 +Table 2: table T Ta Tab Tabl BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 7 : 1 10 0 0 0 0 1 +3.3. Global 3.3. 3 3. 3.3 3.3. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 7 .. 2 10 0 0 0 0 1 +This section this T Th Thi This BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 7 no 0 10 0 0 0 0 1 +TLVs. TLVs. tlvs. T TL TLV TLVs BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 2 7 . 1 0 0 0 0 0 1 +3.3.1. Pad 3.3.1. 3 3. 3.3 3.3. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 8 ... 3 10 0 0 0 0 1 +The pad the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 8 -. 2 10 0 0 0 0 1 +Padding 4-byte padding P Pa Pad Padd BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 8 -,,-,-, 7 10 0 0 0 0 1 +3-byte Length. 3-byte 3 3- 3-b 3-by BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 8 -.-(,,,,,, 10 10 0 0 0 0 1 +7)-byte Length. 7)-byte 7 7) 7)- 7)-b BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 8 )-. 3 2 0 0 0 0 1 +One MUST one O On One One BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 10 ., 2 9 0 0 0 0 1 +inserted after inserted i in ins inse BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 10 no 0 9 0 0 0 0 1 +ValidationAlgorithm TLV. validationalgorithm V Va Val Vali BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 3 10 ., 2 10 0 0 0 0 1 +not show not n no not not BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 10 . 1 4 0 0 0 0 1 +Mosko, et mosko, M Mo Mos Mosk BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 3 11 ,. 2 10 0 0 1 0 0 +Experimental Experimental experimental E Ex Exp Expe BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 11 no 0 9 0 0 0 0 0 +[Page 11] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 11 [] 2 7 0 0 0 0 0 +RFC 8609 rfc R RF RFC RFC BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 3 0 no 0 10 0 0 0 0 1 +CCNx TLV ccnx C CC CCN CCNx BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 3 0 no 0 9 0 0 1 0 1 +July 2019 july J Ju Jul July BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 3 0 no 0 10 0 0 0 0 1 +1 1 1 1 1 1 1 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 3 0 no 0 0 0 0 0 0 1 +2 2 2 2 2 2 2 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 3 0 no 0 0 0 0 0 0 1 +3 3 3 3 3 3 3 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 3 0 no 0 0 0 0 0 0 1 +0 1 0 0 0 0 0 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 3 0 no 0 9 0 0 0 0 1 ++---------------+---------------+---------------+---------------+ +---------------+---------------+---------------+---------------+ +---------------+---------------+---------------+---------------+ + +- +-- +--- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 3 0 ------------------------------------------------------------ 60 10 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 3 0 no 0 0 0 0 0 0 1 +T_PAD T_PAD t_pad T T_ T_P T_PA BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 3 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 3 0 no 0 0 0 0 0 0 1 +Length Length length L Le Len Leng BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 0 no 0 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 3 0 no 0 0 0 0 0 0 1 ++---------------+---------------+---------------+---------------+ +---------------+---------------+---------------+---------------+ +---------------+---------------+---------------+---------------+ + +- +-- +--- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 3 0 ------------------------------------------------------------ 60 10 0 0 0 0 1 +/ / / / / / / BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 3 0 / 1 0 0 0 0 0 1 +variable-length pad variable-length v va var vari BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 0 - 1 5 0 0 0 0 1 +/ / / / / / / BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 3 0 / 1 0 0 0 0 0 1 ++---------------+---------------+---------------+---------------+ +---------------+---------------+---------------+---------------+ +---------------+---------------+---------------+---------------+ + +- +-- +--- BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 3 0 ------------------------------------------------------------ 60 10 0 0 0 0 1 +Figure 7: figure F Fi Fig Figu BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 3 : 1 10 0 0 0 0 1 +3.3.2. Organization-Specific 3.3.2. 3 3. 3.3 3.3. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 3 3 ...- 4 10 0 0 0 0 1 +Organization-specific TLVs organization-specific O Or Org Orga BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 3 -() 3 10 0 0 0 0 1 +T_ORG type. t_org T T_ T_O T_OR BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 3 3 .- 2 9 0 0 0 0 1 +specific information specific s sp spe spec BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 3 . 1 9 0 0 0 0 1 +organization number organization o or org orga BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 3 3 no 0 10 0 0 0 0 1 +the IANA the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 3 ""[-], 6 10 0 0 0 0 1 +by the by b by by by BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 3 -. 2 6 0 0 0 0 1 +A T_ORG a A A A A BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 1 0 0 0 0 0 3 4 . 1 10 0 0 0 0 1 +any other any a an any any BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 4 . 1 3 0 0 0 0 1 +1 1 1 1 1 1 1 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 3 5 no 0 0 0 0 0 0 1 +2 2 2 2 2 2 2 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 3 5 no 0 0 0 0 0 0 1 +3 3 3 3 3 3 3 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 3 5 no 0 0 0 0 0 0 1 +0 1 0 0 0 0 0 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 3 5 no 0 9 0 0 0 0 1 ++---------------+---------------+---------------+---------------+ +---------------+---------------+---------------+---------------+ +---------------+---------------+---------------+---------------+ + +- +-- +--- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 3 5 ------------------------------------------------------------ 60 10 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 3 5 no 0 0 0 0 0 0 1 +T_ORG T_ORG t_org T T_ T_O T_OR BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 3 5 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 3 5 no 0 0 0 0 0 0 1 +Length (3+value length L Le Len Leng BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 5 () 2 3 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 3 5 no 0 0 0 0 0 0 1 ++---------------+---------------+---------------+---------------+ +---------------+---------------+---------------+---------------+ +---------------+---------------+---------------+---------------+ + +- +-- +--- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 3 5 ------------------------------------------------------------ 60 10 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 3 5 no 0 0 0 0 0 0 1 +PEN[0] PEN[0] pen[0] P PE PEN PEN[ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 3 5 [] 2 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 3 5 no 0 0 0 0 0 0 1 +PEN[1] PEN[1] pen[1] P PE PEN PEN[ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 3 5 [] 2 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 3 5 no 0 0 0 0 0 0 1 +PEN[2] PEN[2] pen[2] P PE PEN PEN[ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 3 5 [] 2 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 3 5 no 0 0 0 0 0 0 1 +/ / / / / / / BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 3 5 / 1 0 0 0 0 0 1 ++---------------+---------------+---------------+ +---------------+---------------+---------------+ +---------------+---------------+---------------+ + +- +-- +--- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 3 5 --------------------------------------------- 45 7 0 0 0 0 1 ++ + + + + + + BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 3 5 no 0 0 0 0 0 0 1 +/ / / / / / / BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 3 5 / 1 0 0 0 0 0 1 +Vendor Specific vendor V Ve Ven Vend BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 5 no 0 3 0 0 0 0 1 +/ / / / / / / BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 3 5 / 1 0 0 0 0 0 1 ++---------------+---------------+---------------+---------------+ +---------------+---------------+---------------+---------------+ +---------------+---------------+---------------+---------------+ + +- +-- +--- BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 3 5 ------------------------------------------------------------ 60 10 0 0 0 0 1 +Figure 8: figure F Fi Fig Figu BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 9 :- 2 10 0 0 0 0 1 +3.3.3. Hash 3.3.3. 3 3. 3.3 3.3. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 3 9 ... 3 10 0 0 0 0 1 +Hash values hash H Ha Has Hash BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 9 . 1 10 0 0 0 0 1 +encoding is encoding e en enc enco BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 9 no 0 9 0 0 0 0 1 +specific hash specific s sp spe spec BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 9 . 1 9 0 0 0 0 1 +TLV types tlv T TL TLV TLV BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 3 9 - 1 9 0 0 0 0 1 +functions. functions. functions. f fu fun func BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 9 . 1 1 0 0 0 0 1 +The LENGTH the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 10 no 0 10 0 0 0 0 1 +hash function hash h ha has hash BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 10 ., 2 10 0 0 0 0 1 +is taken is i is is is BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 10 . 1 9 0 0 0 0 1 +specified truncations specified s sp spe spec BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 10 ,. 2 8 0 0 0 0 1 +Mosko, et mosko, M Mo Mos Mosk BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 3 11 ,. 2 10 0 0 1 0 0 +Experimental Experimental experimental E Ex Exp Expe BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 11 no 0 9 0 0 0 0 0 +[Page 12] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 11 [] 2 7 0 0 0 0 0 +RFC 8609 rfc R RF RFC RFC BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 3 0 no 0 10 0 0 0 0 1 +CCNx TLV ccnx C CC CCN CCNx BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 3 0 no 0 9 0 0 1 0 1 +July 2019 july J Ju Jul July BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 3 0 no 0 10 0 0 0 0 1 +This nested this T Th Thi This BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 0 no 0 9 0 0 0 0 1 +hash values hash h ha has hash BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 0 no 0 10 0 0 0 0 1 +a new a a a a a BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 1 0 0 0 0 0 3 0 .,- 3 9 0 0 0 0 1 +compared between compared c co com comp BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 0 ' 1 8 0 0 0 0 1 +ContentObject's KeyId contentobject's C Co Con Cont BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 3 0 '. 2 9 0 0 0 0 1 +values do values v va val valu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 0 no 0 9 0 0 0 0 1 +still identify still s st sti stil BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 0 no 0 9 0 0 0 0 1 +TLV without tlv T TL TLV TLV BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 3 0 . 1 8 0 0 0 0 1 +alternative approach, alternative a al alt alte BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 0 ,-, 3 10 0 0 0 0 1 +each router each e ea eac each BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 0 --- 3 9 0 0 0 0 1 +hash functions hash h ha has hash BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 0 -. 2 8 0 0 0 0 1 +A CCNx a A A A A BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 1 0 0 0 0 0 3 2 -. 2 10 0 0 0 0 1 +support the support s su sup supp BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 3 2 . 1 5 0 0 0 0 1 ++-----------+------------------------+ +-----------+------------------------+ +-----------+------------------------+ + +- +-- +--- BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 3 3 ----------------------------------- 35 10 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 3 3 no 0 0 0 0 0 0 1 +Abbrev | abbrev A Ab Abb Abbr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 3 3 no 0 2 0 0 0 0 1 +Lengths (octets) lengths L Le Len Leng BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 3 () 2 4 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 3 3 no 0 0 0 0 0 0 1 ++-----------+------------------------+ +-----------+------------------------+ +-----------+------------------------+ + +- +-- +--- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 3 3 ----------------------------------- 35 10 0 0 0 0 1 +| T_SHA-256 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 3 3 - 1 3 0 0 0 0 1 +32 32 32 3 32 32 32 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 0 0 0 0 0 0 0 0 3 3 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 3 3 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 3 3 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 3 3 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 3 3 no 0 0 0 0 0 0 1 +| T_SHA-512 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 3 3 - 1 3 0 0 0 0 1 +64, 32 64, 6 64 64, 64, BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 3 3 , 1 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 3 3 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 3 3 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 3 3 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 3 3 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 3 3 no 0 0 0 0 0 0 1 +n/a n/a n/a n n/ n/a n/a BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 3 / 1 1 0 0 0 0 1 +| Experimental | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 3 3 no 0 6 0 0 0 0 1 ++-----------+------------------------+ +-----------+------------------------+ +-----------+------------------------+ + +- +-- +--- BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 3 3 ----------------------------------- 35 10 0 0 0 0 1 +Table 3: table T Ta Tab Tabl BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 5 : 1 10 0 0 0 0 1 +1 1 1 1 1 1 1 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 3 5 no 0 0 0 0 0 0 1 +2 2 2 2 2 2 2 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 3 5 no 0 0 0 0 0 0 1 +3 3 3 3 3 3 3 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 3 5 no 0 0 0 0 0 0 1 +0 1 0 0 0 0 0 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 3 5 no 0 9 0 0 0 0 1 ++---------------+---------------+---------------+---------------+ +---------------+---------------+---------------+---------------+ +---------------+---------------+---------------+---------------+ + +- +-- +--- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 3 5 ------------------------------------------------------------ 60 10 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 3 5 no 0 0 0 0 0 0 1 +T_FOO T_FOO t_foo T T_ T_F T_FO BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 3 5 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 3 5 no 0 0 0 0 0 0 1 +36 36 36 3 36 36 36 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 0 0 0 0 0 0 0 0 3 5 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 3 5 no 0 0 0 0 0 0 1 ++---------------+---------------+---------------+---------------+ +---------------+---------------+---------------+---------------+ +---------------+---------------+---------------+---------------+ + +- +-- +--- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 3 5 ------------------------------------------------------------ 60 10 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 3 5 no 0 0 0 0 0 0 1 +T_SHA512 T_SHA512 t_sha512 T T_ T_S T_SH BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 3 5 no 0 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 3 5 no 0 0 0 0 0 0 1 +32 32 32 3 32 32 32 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 0 0 0 0 0 0 0 0 3 5 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 3 5 no 0 0 0 0 0 0 1 ++---------------+---------------+---------------+---------------+ +---------------+---------------+---------------+---------------+ +---------------+---------------+---------------+---------------+ + +- +-- +--- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 3 5 ------------------------------------------------------------ 60 10 0 0 0 0 1 +/ / / / / / / BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 3 5 / 1 0 0 0 0 0 1 +32-byte hash 32-byte 3 32 32- 32-b BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 3 5 - 1 2 0 0 0 0 1 +/ / / / / / / BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 3 5 / 1 0 0 0 0 0 1 ++---------------+---------------+---------------+---------------+ +---------------+---------------+---------------+---------------+ +---------------+---------------+---------------+---------------+ + +- +-- +--- BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 3 5 ------------------------------------------------------------ 60 10 0 0 0 0 1 +Figure 9: figure F Fi Fig Figu BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 10 : 1 10 0 0 0 0 1 +3.3.4. Link 3.3.4. 3 3. 3.3 3.3. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 3 10 ... 3 10 0 0 0 0 1 +A Link a A A A A BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 1 0 0 0 0 0 3 10 :,[],[]. 8 10 0 0 0 0 1 +It is it I It It It BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 10 no 0 9 0 0 0 0 1 +Content Object content C Co Con Cont BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 10 ""' 3 9 0 0 0 0 1 +KeyLink field. keylink K Ke Key KeyL BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 3 10 .. 2 8 0 0 0 0 1 +Mosko, et mosko, M Mo Mos Mosk BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 3 11 ,. 2 10 0 0 1 0 0 +Experimental Experimental experimental E Ex Exp Expe BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 11 no 0 9 0 0 0 0 0 +[Page 13] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 11 [] 2 7 0 0 0 0 0 +RFC 8609 rfc R RF RFC RFC BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 3 0 no 0 10 0 0 0 0 1 +CCNx TLV ccnx C CC CCN CCNx BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 3 0 no 0 9 0 0 1 0 1 +July 2019 july J Ju Jul July BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 3 0 no 0 10 0 0 0 0 1 +1 1 1 1 1 1 1 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 3 0 no 0 0 0 0 0 0 1 +2 2 2 2 2 2 2 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 3 0 no 0 0 0 0 0 0 1 +3 3 3 3 3 3 3 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 3 0 no 0 0 0 0 0 0 1 +0 1 0 0 0 0 0 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 3 0 no 0 9 0 0 0 0 1 ++---------------+---------------+---------------+---------------+ +---------------+---------------+---------------+---------------+ +---------------+---------------+---------------+---------------+ + +- +-- +--- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 3 0 ------------------------------------------------------------ 60 10 0 0 0 0 1 +/ Mandatory / / / / / BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 3 0 / 1 3 0 0 0 0 1 +/ / / / / / / BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 3 0 / 1 0 0 0 0 0 1 ++---------------+---------------+---------------+---------------+ +---------------+---------------+---------------+---------------+ +---------------+---------------+---------------+---------------+ + +- +-- +--- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 3 0 ------------------------------------------------------------ 60 10 0 0 0 0 1 +/ Optional / / / / / BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 3 0 / 1 4 0 0 0 0 1 +/ / / / / / / BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 3 0 / 1 0 0 0 0 0 1 ++---------------+---------------+---------------+---------------+ +---------------+---------------+---------------+---------------+ +---------------+---------------+---------------+---------------+ + +- +-- +--- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 3 0 ------------------------------------------------------------ 60 10 0 0 0 0 1 +/ Optional / / / / / BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 3 0 / 1 6 0 0 0 0 1 +/ / / / / / / BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 3 0 / 1 0 0 0 0 0 1 ++---------------+---------------+---------------+---------------+ +---------------+---------------+---------------+---------------+ +---------------+---------------+---------------+---------------+ + +- +-- +--- BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 3 0 ------------------------------------------------------------ 60 10 0 0 0 0 1 +Figure 10: figure F Fi Fig Figu BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 4 : 1 10 0 0 0 0 1 +3.4. Hop-by-Hop 3.4. 3 3. 3.4 3.4. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 3 4 ..-- 4 10 0 0 0 0 1 +Hop-by-hop TLV hop-by-hop H Ho Hop Hop- BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 3 4 -- 2 10 0 0 0 0 1 +to their to t to to to BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 4 .-- 3 9 0 0 0 0 1 +document: document: document: d do doc docu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 4 : 1 1 0 0 0 0 1 ++-------------+--------------------+--------------------------------+ +-------------+--------------------+--------------------------------+ +-------------+--------------------+--------------------------------+ + +- +-- +--- BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 3 4 ----------------------------------------------------------------- 65 10 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 3 4 no 0 0 0 0 0 0 1 +Abbrev Abbrev abbrev A Ab Abb Abbr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 3 4 no 0 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 3 4 no 0 0 0 0 0 0 1 +Name Name name N Na Nam Name BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 4 no 0 0 0 0 0 0 1 +| Description | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 3 4 no 0 2 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 3 4 no 0 0 0 0 0 0 1 ++-------------+--------------------+--------------------------------+ +-------------+--------------------+--------------------------------+ +-------------+--------------------+--------------------------------+ + +- +-- +--- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 3 4 ----------------------------------------------------------------- 65 10 0 0 0 0 1 +| T_INTLIFE | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 3 4 no 0 8 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 3 4 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 3 4 no 0 0 0 0 0 0 1 +| (Section | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 3 4 (..) 4 2 0 0 0 0 1 +| stay | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 3 4 no 0 3 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 3 4 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 3 4 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 3 4 no 0 0 0 0 0 0 1 +| intermediate | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 3 4 . 1 3 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 3 4 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 3 4 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 3 4 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 3 4 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 3 4 no 0 0 0 0 0 0 1 +| T_CACHETIME | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 3 4 no 0 9 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 3 4 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 3 4 no 0 0 0 0 0 0 1 +Time (Section time T Ti Tim Time BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 4 ( 1 2 0 0 0 0 1 +| Content | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 3 4 . 1 2 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 3 4 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 3 4 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 3 4 no 0 0 0 0 0 0 1 +3.4.2) 3.4.2) 3.4.2) 3 3. 3.4 3.4. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 3 4 ..) 3 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 3 4 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 3 4 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 3 4 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 3 4 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 3 4 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 3 4 no 0 0 0 0 0 0 1 +| T_MSGHASH | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 3 4 no 0 2 0 0 0 0 1 +Message Hash message M Me Mes Mess BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 4 no 0 1 0 0 0 0 1 +| A | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 3 4 ( 1 4 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 3 4 no 0 0 0 0 0 0 1 +| (Section | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 3 4 (..) 4 2 0 0 0 0 1 +| 3.3.3). | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 3 4 ..). 4 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 3 4 no 0 0 0 0 0 0 1 ++-------------+--------------------+--------------------------------+ +-------------+--------------------+--------------------------------+ +-------------+--------------------+--------------------------------+ + +- +-- +--- BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 3 4 ----------------------------------------------------------------- 65 10 0 0 0 0 1 +Table 4: table T Ta Tab Tabl BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 9 :-- 3 10 0 0 0 0 1 +Additional hop-by-hop additional A Ad Add Addi BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 9 -- 2 10 0 0 0 0 1 +specifications such specifications s sp spe spec BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 9 . 1 9 0 0 0 0 1 +3.4.1. Interest 3.4.1. 3 3. 3.4 3.4. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 3 10 ... 3 10 0 0 0 0 1 +The Interest the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 10 no 0 9 0 0 0 0 1 +pending at pending p pe pen pend BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 10 . 1 10 0 0 0 0 1 +an unsigned an a an an an BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 3 10 . 1 6 0 0 0 0 1 +A value a A A A A BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 1 0 0 0 0 0 3 10 () 2 10 0 0 0 0 1 +elicit a elicit e el eli elic BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 10 ., 2 9 0 0 0 0 1 +no reply no n no no no BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 10 . 1 10 0 0 0 0 1 +Mosko, et mosko, M Mo Mos Mosk BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 3 11 ,. 2 10 0 0 1 0 0 +Experimental Experimental experimental E Ex Exp Expe BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 11 no 0 9 0 0 0 0 0 +[Page 14] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 11 [] 2 7 0 0 0 0 0 +RFC 8609 rfc R RF RFC RFC BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 3 0 no 0 10 0 0 0 0 1 +CCNx TLV ccnx C CC CCN CCNx BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 3 0 no 0 9 0 0 1 0 1 +July 2019 july J Ju Jul July BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 3 0 no 0 10 0 0 0 0 1 +1 1 1 1 1 1 1 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 3 0 no 0 0 0 0 0 0 1 +2 2 2 2 2 2 2 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 3 0 no 0 0 0 0 0 0 1 +3 3 3 3 3 3 3 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 3 0 no 0 0 0 0 0 0 1 +0 1 0 0 0 0 0 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 3 0 no 0 9 0 0 0 0 1 ++---------------+---------------+---------------+---------------+ +---------------+---------------+---------------+---------------+ +---------------+---------------+---------------+---------------+ + +- +-- +--- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 3 0 ------------------------------------------------------------ 60 10 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 3 0 no 0 0 0 0 0 0 1 +T_INTLIFE T_INTLIFE t_intlife T T_ T_I T_IN BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 3 0 no 0 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 3 0 no 0 0 0 0 0 0 1 +Length Length length L Le Len Leng BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 0 no 0 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 3 0 no 0 0 0 0 0 0 1 ++---------------+---------------+---------------+---------------+ +---------------+---------------+---------------+---------------+ +---------------+---------------+---------------+---------------+ + +- +-- +--- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 3 0 ------------------------------------------------------------ 60 10 0 0 0 0 1 +/ / / / / / / BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 3 0 / 1 0 0 0 0 0 1 +/ / / / / / / BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 3 0 / 1 0 0 0 0 0 1 +/ / / / / / / BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 3 0 / 1 0 0 0 0 0 1 +Lifetime (Length lifetime L Li Lif Life BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 0 () 2 3 0 0 0 0 1 +/ / / / / / / BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 3 0 / 1 0 0 0 0 0 1 +/ / / / / / / BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 3 0 / 1 0 0 0 0 0 1 +/ / / / / / / BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 3 0 / 1 0 0 0 0 0 1 ++---------------+---------------+---------------+---------------+ +---------------+---------------+---------------+---------------+ +---------------+---------------+---------------+---------------+ + +- +-- +--- BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 3 0 ------------------------------------------------------------ 60 10 0 0 0 0 1 +Figure 11: figure F Fi Fig Figu BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 3 : 1 10 0 0 0 0 1 +3.4.2. Recommended 3.4.2. 3 3. 3.4 3.4. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 4 3 ... 3 10 0 0 0 0 1 +The Recommended the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 3 () 2 10 0 0 0 0 1 +of a of o of of of BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 3 no 0 9 0 0 0 0 1 +node. It node. n no nod node BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 3 . 1 8 0 0 0 0 1 +determining how determining d de det dete BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 3 . 1 8 0 0 0 0 1 +recommendation only recommendation r re rec reco BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 3 . 1 9 0 0 0 0 1 +contrast to contrast c co con cont BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 3 (....) 6 9 0 0 0 0 1 +takes precedence takes t ta tak take BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 3 . 1 7 0 0 0 0 1 +Because the because B Be Bec Beca BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 5 -- 2 9 0 0 0 0 1 +and not and a an and and BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 5 ,- 2 10 0 0 0 0 1 +a previously a a a a a BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 1 0 0 0 0 0 4 5 no 0 9 0 0 0 0 1 +needing to needing n ne nee need BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 5 -. 2 9 0 0 0 0 1 +attacker changing attacker a at att atta BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 5 . 1 9 0 0 0 0 1 +The Recommended the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 7 () 2 10 0 0 0 0 1 +integer in integer i in int inte BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 7 no 0 9 0 0 0 0 1 +payload expires payload p pa pay payl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 7 ( 1 9 0 0 0 0 1 +UTC). It utc). U UT UTC UTC) BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 4 7 ).-. 4 4 0 0 0 0 1 +1 1 1 1 1 1 1 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 4 8 no 0 0 0 0 0 0 1 +2 2 2 2 2 2 2 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 4 8 no 0 0 0 0 0 0 1 +3 3 3 3 3 3 3 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 4 8 no 0 0 0 0 0 0 1 +0 1 0 0 0 0 0 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 4 8 no 0 9 0 0 0 0 1 ++---------------+---------------+---------------+---------------+ +---------------+---------------+---------------+---------------+ +---------------+---------------+---------------+---------------+ + +- +-- +--- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 4 8 ------------------------------------------------------------ 60 10 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 8 no 0 0 0 0 0 0 1 +T_CACHETIME T_CACHETIME t_cachetime T T_ T_C T_CA BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 4 8 no 0 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 8 no 0 0 0 0 0 0 1 +8 8 8 8 8 8 8 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 4 8 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 8 no 0 0 0 0 0 0 1 ++---------------+---------------+---------------+---------------+ +---------------+---------------+---------------+---------------+ +---------------+---------------+---------------+---------------+ + +- +-- +--- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 4 8 ------------------------------------------------------------ 60 10 0 0 0 0 1 +/ / / / / / / BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 8 / 1 0 0 0 0 0 1 +/ / / / / / / BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 8 / 1 0 0 0 0 0 1 +/ / / / / / / BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 8 / 1 0 0 0 0 0 1 +Recommended Cache recommended R Re Rec Reco BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 8 no 0 3 0 0 0 0 1 +/ / / / / / / BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 8 / 1 0 0 0 0 0 1 +/ / / / / / / BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 8 / 1 0 0 0 0 0 1 +/ / / / / / / BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 8 / 1 0 0 0 0 0 1 ++---------------+---------------+---------------+---------------+ +---------------+---------------+---------------+---------------+ +---------------+---------------+---------------+---------------+ + +- +-- +--- BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 4 8 ------------------------------------------------------------ 60 10 0 0 0 0 1 +Figure 12: figure F Fi Fig Figu BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 11 : 1 10 0 0 0 0 1 +Mosko, et mosko, M Mo Mos Mosk BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 4 11 ,. 2 10 0 0 1 0 0 +Experimental Experimental experimental E Ex Exp Expe BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 11 no 0 9 0 0 0 0 0 +[Page 15] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 11 [] 2 7 0 0 0 0 0 +RFC 8609 rfc R RF RFC RFC BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 4 0 no 0 10 0 0 0 0 1 +CCNx TLV ccnx C CC CCN CCNx BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 4 0 no 0 9 0 0 1 0 1 +July 2019 july J Ju Jul July BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 4 0 no 0 10 0 0 0 0 1 +3.4.3. Message 3.4.3. 3 3. 3.4 3.4. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 4 0 ... 3 10 0 0 0 0 1 +Within a within W Wi Wit With BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 0 , 1 9 0 0 0 0 1 +at a at a at at at BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 0 -- 2 10 0 0 0 0 1 +of a of o of of of BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 0 .. 2 8 0 0 0 0 1 +permits intermediate permits p pe per perm BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 0 no 0 9 0 0 0 0 1 +against a against a ag aga agai BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 0 no 0 9 0 0 0 0 1 +every hop. every e ev eve ever BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 0 . 1 1 0 0 0 0 1 +The message the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 2 no 0 9 0 0 0 0 1 +Message TLV message M Me Mes Mess BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 2 . 1 9 0 0 0 0 1 +the ContentObjectHashRestriction the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 2 (....). 7 9 0 0 0 0 1 +Hash may hash H Ha Has Hash BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 2 ', 2 10 0 0 0 0 1 +case the case c ca cas case BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 4 2 no 0 9 0 0 0 0 1 +check against check c ch che chec BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 2 '. 2 5 0 0 0 0 1 +The Message the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 4 no 0 10 0 0 0 0 1 +one Message one o on one one BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 4 . 1 3 0 0 0 0 1 +The Message the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 4 , 1 10 0 0 0 0 1 +practical use practical p pr pra prac BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 4 ,' 2 9 0 0 0 0 1 +autonomous system. autonomous a au aut auto BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 4 . 1 2 0 0 0 0 1 +1 1 1 1 1 1 1 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 4 5 no 0 0 0 0 0 0 1 +2 2 2 2 2 2 2 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 4 5 no 0 0 0 0 0 0 1 +3 3 3 3 3 3 3 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 4 5 no 0 0 0 0 0 0 1 +0 1 0 0 0 0 0 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 4 5 no 0 9 0 0 0 0 1 ++---------------+---------------+---------------+---------------+ +---------------+---------------+---------------+---------------+ +---------------+---------------+---------------+---------------+ + +- +-- +--- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 4 5 ------------------------------------------------------------ 60 10 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 5 no 0 0 0 0 0 0 1 +T_MSGHASH T_MSGHASH t_msghash T T_ T_M T_MS BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 4 5 no 0 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 5 no 0 0 0 0 0 0 1 +(length + (length ( (l (le (len BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 5 () 2 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 5 no 0 0 0 0 0 0 1 ++---------------+---------------+---------------+---------------+ +---------------+---------------+---------------+---------------+ +---------------+---------------+---------------+---------------+ + +- +-- +--- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 4 5 ------------------------------------------------------------ 60 10 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 5 no 0 0 0 0 0 0 1 +hash type hash h ha has hash BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 5 no 0 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 5 no 0 0 0 0 0 0 1 +length length length l le len leng BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 5 no 0 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 5 no 0 0 0 0 0 0 1 ++---------------+---------------+---------------+---------------+ +---------------+---------------+---------------+---------------+ +---------------+---------------+---------------+---------------+ + +- +-- +--- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 4 5 ------------------------------------------------------------ 60 10 0 0 0 0 1 +/ / / / / / / BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 5 / 1 0 0 0 0 0 1 +hash value hash h ha has hash BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 5 no 0 1 0 0 0 0 1 +/ / / / / / / BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 5 / 1 0 0 0 0 0 1 ++---------------+---------------+---------------+---------------+ +---------------+---------------+---------------+---------------+ +---------------+---------------+---------------+---------------+ + +- +-- +--- BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 4 5 ------------------------------------------------------------ 60 10 0 0 0 0 1 +Figure 13: figure F Fi Fig Figu BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 11 : 1 10 0 0 0 0 1 +Mosko, et mosko, M Mo Mos Mosk BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 4 11 ,. 2 10 0 0 1 0 0 +Experimental Experimental experimental E Ex Exp Expe BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 11 no 0 9 0 0 0 0 0 +[Page 16] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 11 [] 2 7 0 0 0 0 0 +RFC 8609 rfc R RF RFC RFC BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 4 0 no 0 10 0 0 0 0 1 +CCNx TLV ccnx C CC CCN CCNx BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 4 0 no 0 9 0 0 1 0 1 +July 2019 july J Ju Jul July BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 4 0 no 0 10 0 0 0 0 1 +3.5. Top-Level 3.5. 3 3. 3.5 3.5. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 4 0 ..- 3 10 0 0 0 0 1 +The top-level the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 0 - 1 10 0 0 0 0 1 +a CCNx a a a a a BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 1 0 0 0 0 0 4 0 . 1 2 0 0 0 0 1 ++----------------------+------------+-------------------------------+ +----------------------+------------+-------------------------------+ +----------------------+------------+-------------------------------+ + +- +-- +--- BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 4 1 ----------------------------------------------------------------- 65 10 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 1 no 0 0 0 0 0 0 1 +Abbrev Abbrev abbrev A Ab Abb Abbr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 4 1 no 0 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 1 no 0 0 0 0 0 0 1 +Name Name name N Na Nam Name BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 1 no 0 0 0 0 0 0 1 +| Description | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 1 no 0 2 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 1 no 0 0 0 0 0 0 1 ++----------------------+------------+-------------------------------+ +----------------------+------------+-------------------------------+ +----------------------+------------+-------------------------------+ + +- +-- +--- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 4 1 ----------------------------------------------------------------- 65 10 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 1 no 0 0 0 0 0 0 1 +T_INTEREST T_INTEREST t_interest T T_ T_I T_IN BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 4 1 no 0 1 0 0 0 0 1 +| Interest | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 1 . 1 5 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 1 no 0 0 0 0 0 0 1 +| (Section | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 1 ( 1 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 1 no 0 0 0 0 0 0 1 +3.6) 3.6) 3.6) 3 3. 3.6 3.6) BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 4 1 .) 2 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 1 no 0 0 0 0 0 0 1 +T_OBJECT T_OBJECT t_object T T_ T_O T_OB BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 4 1 no 0 1 0 0 0 0 1 +| Content | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 1 no 0 1 0 0 0 0 1 +| A | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 1 no 0 4 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 1 no 0 0 0 0 0 0 1 +Object Object object O Ob Obj Obje BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 1 no 0 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 1 no 0 0 0 0 0 0 1 +| (Section | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 1 ( 1 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 1 no 0 0 0 0 0 0 1 +3.6) 3.6) 3.6) 3 3. 3.6 3.6) BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 4 1 .) 2 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 1 no 0 0 0 0 0 0 1 +T_VALIDATION_ALG T_VALIDATION_ALG t_validation_alg T T_ T_V T_VA BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 4 1 no 0 2 0 0 0 0 1 +| Validation | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 1 no 0 5 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 1 no 0 0 0 0 0 0 1 +| Algorithm | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 1 no 0 5 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 1 no 0 0 0 0 0 0 1 +| (Section | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 1 ( 1 5 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 1 no 0 0 0 0 0 0 1 +| 3.6.4.1) | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 1 ...)(), 7 6 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 1 no 0 0 0 0 0 0 1 +| Code | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 1 (), 3 4 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 1 no 0 0 0 0 0 0 1 +| signature. | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 1 . 1 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 1 no 0 0 0 0 0 0 1 +| T_VALIDATION_PAYLOAD | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 1 , 1 9 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 1 no 0 0 0 0 0 0 1 +| Payload | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 1 no 0 1 0 0 0 0 1 +| as | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 1 no 0 4 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 1 no 0 0 0 0 0 0 1 +| (Section | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 1 (. 2 3 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 1 no 0 0 0 0 0 0 1 +| 3.6.4.2) | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 1 ...) 4 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 1 no 0 0 0 0 0 0 1 ++----------------------+------------+-------------------------------+ +----------------------+------------+-------------------------------+ +----------------------+------------+-------------------------------+ + +- +-- +--- BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 4 1 ----------------------------------------------------------------- 65 10 0 0 0 0 1 +Table 5: table T Ta Tab Tabl BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 11 : 1 10 0 0 0 0 1 +Mosko, et mosko, M Mo Mos Mosk BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 4 11 ,. 2 10 0 0 1 0 0 +Experimental Experimental experimental E Ex Exp Expe BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 11 no 0 9 0 0 0 0 0 +[Page 17] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 11 [] 2 7 0 0 0 0 0 +RFC 8609 rfc R RF RFC RFC BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 4 0 no 0 10 0 0 0 0 1 +CCNx TLV ccnx C CC CCN CCNx BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 4 0 no 0 9 0 0 1 0 1 +July 2019 july J Ju Jul July BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 4 0 no 0 10 0 0 0 0 1 +3.6. CCNx 3.6. 3 3. 3.6 3.6. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 4 0 .. 2 10 0 0 0 0 1 +This is this T Th Thi This BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 0 . 1 10 0 0 0 0 1 +is the is i is is is BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 0 -- 2 10 0 0 0 0 1 +the Validation the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 0 ." 2 9 0 0 0 0 1 +Message TLV" message M Me Mes Mess BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 0 ". 2 8 0 0 0 0 1 +Message TLV message M Me Mes Mess BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 0 no 0 9 0 0 0 0 1 +Payload. The payload. P Pa Pay Payl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 4 0 . 1 9 0 0 0 0 1 +Content Object content C Co Con Cont BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 0 no 0 9 0 0 0 0 1 +field. The field. f fi fie fiel BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 0 . 1 9 0 0 0 0 1 +Name TLV, name N Na Nam Name BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 0 ,. 2 9 0 0 0 0 1 +and an and a an and and BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 0 . 1 4 0 0 0 0 1 +1 1 1 1 1 1 1 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 4 2 no 0 0 0 0 0 0 1 +2 2 2 2 2 2 2 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 4 2 no 0 0 0 0 0 0 1 +3 3 3 3 3 3 3 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 4 2 no 0 0 0 0 0 0 1 +0 1 0 0 0 0 0 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 4 2 no 0 9 0 0 0 0 1 ++---------------+---------------+---------------+---------------+ +---------------+---------------+---------------+---------------+ +---------------+---------------+---------------+---------------+ + +- +-- +--- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 4 2 ------------------------------------------------------------ 60 10 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 2 no 0 0 0 0 0 0 1 +MessageType MessageType messagetype M Me Mes Mess BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 4 2 no 0 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 2 no 0 0 0 0 0 0 1 +MessageLength MessageLength messagelength M Me Mes Mess BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 4 2 no 0 2 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 2 no 0 0 0 0 0 0 1 ++---------------+---------------+---------------+---------------+ +---------------+---------------+---------------+---------------+ +---------------+---------------+---------------+---------------+ + +- +-- +--- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 4 2 ------------------------------------------------------------ 60 10 0 0 0 0 1 +/ Name / / / / / BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 2 / 1 1 0 0 0 0 1 +(Type = (type ( (T (Ty (Typ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 2 () 2 2 0 0 0 0 1 +/ / / / / / / BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 2 / 1 0 0 0 0 0 1 ++---------------+---------------+---------------+---------------+ +---------------+---------------+---------------+---------------+ +---------------+---------------+---------------+---------------+ + +- +-- +--- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 4 2 ------------------------------------------------------------ 60 10 0 0 0 0 1 +/ Optional / / / / / BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 2 / 1 3 0 0 0 0 1 +(Various Types) (various ( (V (Va (Var BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 2 () 2 2 0 0 0 0 1 +/ / / / / / / BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 2 / 1 0 0 0 0 0 1 ++---------------+---------------+---------------+---------------+ +---------------+---------------+---------------+---------------+ +---------------+---------------+---------------+---------------+ + +- +-- +--- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 4 2 ------------------------------------------------------------ 60 10 0 0 0 0 1 +/ Optional / / / / / BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 2 /() 3 6 0 0 0 0 1 +/ / / / / / / BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 2 / 1 0 0 0 0 0 1 ++---------------+---------------+---------------+---------------+ +---------------+---------------+---------------+---------------+ +---------------+---------------+---------------+---------------+ + +- +-- +--- BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 4 2 ------------------------------------------------------------ 60 10 0 0 0 0 1 +Figure 14: figure F Fi Fig Figu BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 7 : 1 10 0 0 0 0 1 ++-----------+---------------+---------------------------------------+ +-----------+---------------+---------------------------------------+ +-----------+---------------+---------------------------------------+ + +- +-- +--- BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 4 7 ----------------------------------------------------------------- 65 10 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 7 no 0 0 0 0 0 0 1 +Abbrev | abbrev A Ab Abb Abbr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 4 7 no 0 1 0 0 0 0 1 +Name Name name N Na Nam Name BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 7 no 0 0 0 0 0 0 1 +| Description | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 7 no 0 2 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 7 no 0 0 0 0 0 0 1 ++-----------+---------------+---------------------------------------+ +-----------+---------------+---------------------------------------+ +-----------+---------------+---------------------------------------+ + +- +-- +--- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 4 7 ----------------------------------------------------------------- 65 10 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 7 no 0 0 0 0 0 0 1 +T_NAME | t_name T T_ T_N T_NA BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 4 7 ( 1 7 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 7 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 7 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 7 no 0 0 0 0 0 0 1 +3.6.1) 3.6.1) 3.6.1) 3 3. 3.6 3.6. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 4 7 ..) 3 1 0 0 0 0 1 +| Interest | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 7 no 0 5 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 7 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 7 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 7 no 0 0 0 0 0 0 1 +| Object. | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 7 . 1 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 7 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 7 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 7 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 7 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 7 no 0 0 0 0 0 0 1 +| T_PAYLOAD | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 7 no 0 2 0 0 0 0 1 +Payload Payload payload P Pa Pay Payl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 4 7 no 0 1 0 0 0 0 1 +| The | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 7 . 1 3 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 7 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 7 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 7 no 0 0 0 0 0 0 1 +(Section (Section (section ( (S (Se (Sec BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 7 ( 1 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 7 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 7 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 7 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 7 no 0 0 0 0 0 0 1 +3.6.3) 3.6.3) 3.6.3) 3 3. 3.6 3.6. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 4 7 ..) 3 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 7 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 7 no 0 0 0 0 0 0 1 ++-----------+---------------+---------------------------------------+ +-----------+---------------+---------------------------------------+ +-----------+---------------+---------------------------------------+ + +- +-- +--- BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 4 7 ----------------------------------------------------------------- 65 10 0 0 0 0 1 +Table 6: table T Ta Tab Tabl BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 11 : 1 10 0 0 0 0 1 +Mosko, et mosko, M Mo Mos Mosk BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 4 11 ,. 2 10 0 0 1 0 0 +Experimental Experimental experimental E Ex Exp Expe BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 11 no 0 9 0 0 0 0 0 +[Page 18] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 11 [] 2 7 0 0 0 0 0 +RFC 8609 rfc R RF RFC RFC BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 4 0 no 0 10 0 0 0 0 1 +CCNx TLV ccnx C CC CCN CCNx BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 4 0 no 0 9 0 0 1 0 1 +July 2019 july J Ju Jul July BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 4 0 no 0 10 0 0 0 0 1 +3.6.1. Name 3.6.1. 3 3. 3.6 3.6. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 4 0 ... 3 10 0 0 0 0 1 +A Name a A A A A BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 1 0 0 0 0 0 4 0 . 1 9 0 0 0 0 1 +the type the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 0 . 1 10 0 0 0 0 1 +include Pad include i in inc incl BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 0 . 1 2 0 0 0 0 1 +As described as A As As As BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 0 [], 3 8 0 0 0 0 1 +[CCNxURI] notation, [ccnxuri] [ [C [CC [CCN BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 0 [],":/" 7 10 0 0 0 0 1 +(the default (the ( (t (th (the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 0 (). 3 9 0 0 0 0 1 +name segment name n na nam name BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 0 . 1 9 0 0 0 0 1 +TLV encoding, tlv T TL TLV TLV BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 4 0 ,":/". 6 9 0 0 0 0 1 +1 1 1 1 1 1 1 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 5 2 no 0 0 0 0 0 0 1 +2 2 2 2 2 2 2 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 5 2 no 0 0 0 0 0 0 1 +3 3 3 3 3 3 3 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 5 2 no 0 0 0 0 0 0 1 +0 1 0 0 0 0 0 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 5 2 no 0 9 0 0 0 0 1 ++---------------+---------------+---------------+---------------+ +---------------+---------------+---------------+---------------+ +---------------+---------------+---------------+---------------+ + +- +-- +--- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 5 2 ------------------------------------------------------------ 60 10 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 2 no 0 0 0 0 0 0 1 +T_NAME T_NAME t_name T T_ T_N T_NA BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 5 2 no 0 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 2 no 0 0 0 0 0 0 1 +Length Length length L Le Len Leng BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 2 no 0 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 2 no 0 0 0 0 0 0 1 ++---------------+---------------+---------------+---------------+ +---------------+---------------+---------------+---------------+ +---------------+---------------+---------------+---------------+ + +- +-- +--- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 5 2 ------------------------------------------------------------ 60 10 0 0 0 0 1 +/ Name / / / / / BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 2 / 1 3 0 0 0 0 1 +/ / / / / / / BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 2 / 1 0 0 0 0 0 1 ++---------------+---------------+---------------+---------------+ +---------------+---------------+---------------+---------------+ +---------------+---------------+---------------+---------------+ + +- +-- +--- BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 5 2 ------------------------------------------------------------ 60 10 0 0 0 0 1 +Figure 15: figure F Fi Fig Figu BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 5 : 1 10 0 0 0 0 1 ++---------------+-------------+-------------------------------------+ +---------------+-------------+-------------------------------------+ +---------------+-------------+-------------------------------------+ + +- +-- +--- BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 5 5 ----------------------------------------------------------------- 65 10 0 0 0 0 1 +| Symbolic | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 5 no 0 2 0 0 0 0 1 +Name Name name N Na Nam Name BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 5 no 0 0 0 0 0 0 1 +| Description | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 5 no 0 2 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 5 no 0 0 0 0 0 0 1 ++---------------+-------------+-------------------------------------+ +---------------+-------------+-------------------------------------+ +---------------+-------------+-------------------------------------+ + +- +-- +--- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 5 5 ----------------------------------------------------------------- 65 10 0 0 0 0 1 +| T_NAMESEGMENT | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 5 no 0 2 0 0 0 0 1 +Name Name name N Na Nam Name BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 5 no 0 0 0 0 0 0 1 +| A | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 5 . 1 3 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 5 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 5 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 5 no 0 0 0 0 0 0 1 +segment segment segment s se seg segm BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 5 no 0 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 5 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 5 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 5 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 5 no 0 0 0 0 0 0 1 +(Section | (section ( (S (Se (Sec BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 5 ( 1 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 5 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 5 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 5 no 0 0 0 0 0 0 1 +3.6.1.1) | 3.6.1.1) 3 3. 3.6 3.6. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 5 ...) 4 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 5 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 5 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 5 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 5 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 5 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 5 no 0 0 0 0 0 0 1 +T_IPID T_IPID t_ipid T T_ T_I T_IP BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 5 5 no 0 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 5 no 0 0 0 0 0 0 1 +Interest | interest I In Int Inte BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 5 no 0 6 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 5 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 5 no 0 0 0 0 0 0 1 +| Payload | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 5 . 1 6 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 5 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 5 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 5 no 0 0 0 0 0 0 1 +(Section | (section ( (S (Se (Sec BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 5 (, 2 6 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 5 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 5 no 0 0 0 0 0 0 1 +3.6.1.2) | 3.6.1.2) 3 3. 3.6 3.6. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 5 ...). 5 6 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 5 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 5 no 0 0 0 0 0 0 1 +| provides | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 5 no 0 4 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 5 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 5 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 5 no 0 0 0 0 0 0 1 +| between | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 5 no 0 5 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 5 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 5 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 5 no 0 0 0 0 0 0 1 +| payloads | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 5 no 0 5 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 5 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 5 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 5 no 0 0 0 0 0 0 1 +| all | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 5 no 0 4 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 5 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 5 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 5 no 0 0 0 0 0 0 1 +| itself, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 5 , 1 5 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 5 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 5 no 0 0 0 0 0 0 1 +| Payload | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 5 . 1 3 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 5 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 5 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 5 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 5 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 5 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 5 no 0 0 0 0 0 0 1 +T_APP:00 -| t_app:00 T T_ T_A T_AP BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 5 :-- 3 8 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 5 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 5 no 0 0 0 0 0 0 1 +T_APP:4096 | t_app:4096 T T_ T_A T_AP BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 5 :. 2 8 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 5 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 5 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 5 no 0 0 0 0 0 0 1 +(Section | (section ( (S (Se (Sec BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 5 ( 1 7 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 5 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 5 no 0 0 0 0 0 0 1 +3.6.1.1) | 3.6.1.1) 3 3. 3.6 3.6. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 5 ...). 5 3 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 5 no 0 0 0 0 0 0 1 ++---------------+-------------+-------------------------------------+ +---------------+-------------+-------------------------------------+ +---------------+-------------+-------------------------------------+ + +- +-- +--- BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 5 5 ----------------------------------------------------------------- 65 10 0 0 0 0 1 +Table 7: table T Ta Tab Tabl BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 11 : 1 10 0 0 0 0 1 +Mosko, et mosko, M Mo Mos Mosk BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 5 11 ,. 2 10 0 0 1 0 0 +Experimental Experimental experimental E Ex Exp Expe BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 11 no 0 9 0 0 0 0 0 +[Page 19] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 11 [] 2 7 0 0 0 0 0 +RFC 8609 rfc R RF RFC RFC BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 5 0 no 0 10 0 0 0 0 1 +CCNx TLV ccnx C CC CCN CCNx BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 5 0 no 0 9 0 0 1 0 1 +July 2019 july J Ju Jul July BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 5 0 no 0 10 0 0 0 0 1 +3.6.1.1. Name 3.6.1.1. 3 3. 3.6 3.6. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 0 .... 4 10 0 0 0 0 1 +4096 special 4096 4 40 409 4096 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 0 0 0 0 0 0 0 0 5 0 . 1 9 0 0 0 0 1 +have application have h ha hav have BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 0 . 1 9 0 0 0 0 1 +put the put p pu put put BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 0 ' 1 10 0 0 0 0 1 +segments. segments. segments. s se seg segm BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 0 . 1 1 0 0 0 0 1 +For example, for F Fo For For BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 1 ,":///": 8 10 0 0 0 0 1 +1 1 1 1 1 1 1 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 5 1 no 0 0 0 0 0 0 1 +2 2 2 2 2 2 2 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 5 1 no 0 0 0 0 0 0 1 +3 3 3 3 3 3 3 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 5 1 no 0 0 0 0 0 0 1 +0 1 0 0 0 0 0 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 5 1 no 0 9 0 0 0 0 1 ++---------------+---------------+---------------+---------------+ +---------------+---------------+---------------+---------------+ +---------------+---------------+---------------+---------------+ + +- +-- +--- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 5 1 ------------------------------------------------------------ 60 10 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 1 no 0 0 0 0 0 0 1 +(T_NAME) (T_NAME) (t_name) ( (T (T_ (T_N BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 5 1 () 2 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 1 no 0 0 0 0 0 0 1 +0x14 (20) 0x14 0 0x 0x1 0x14 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 1 () 2 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 1 no 0 0 0 0 0 0 1 ++---------------+---------------+---------------+---------------+ +---------------+---------------+---------------+---------------+ +---------------+---------------+---------------+---------------+ + +- +-- +--- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 5 1 ------------------------------------------------------------ 60 10 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 1 no 0 0 0 0 0 0 1 +(T_NAME_SEGMENT) (T_NAME_SEGMENT) (t_name_segment) ( (T (T_ (T_N BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 5 1 () 2 2 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 1 no 0 0 0 0 0 0 1 +0x03 (3) 0x03 0 0x 0x0 0x03 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 1 () 2 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 1 no 0 0 0 0 0 0 1 ++---------------+---------------+---------------+---------------+ +---------------+---------------+---------------+---------------+ +---------------+---------------+---------------+---------------+ + +- +-- +--- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 5 1 ------------------------------------------------------------ 60 10 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 1 no 0 0 0 0 0 0 1 +f f f f f f f BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 5 1 no 0 0 0 0 0 0 1 +o o o o o o o BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 5 1 no 0 0 0 0 0 0 1 +o o o o o o o BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 5 1 no 0 0 0 0 0 0 1 +|(T_NAME_SEGMENT) |(T_NAME_SEGMENT) |(t_name_segment) | |( |(T |(T_ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 5 1 () 2 2 0 0 0 0 1 ++---------------+---------------+---------------+---------------+ +---------------+---------------+---------------+---------------+ +---------------+---------------+---------------+---------------+ + +- +-- +--- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 5 1 ------------------------------------------------------------ 60 10 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 1 no 0 0 0 0 0 0 1 +0x03 (3) 0x03 0 0x 0x0 0x03 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 1 () 2 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 1 no 0 0 0 0 0 0 1 +b b b b b b b BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 5 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 1 no 0 0 0 0 0 0 1 ++---------------+---------------+---------------+---------------+ +---------------+---------------+---------------+---------------+ +---------------+---------------+---------------+---------------+ + +- +-- +--- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 5 1 ------------------------------------------------------------ 60 10 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 1 no 0 0 0 0 0 0 1 +a a a a a a a BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 1 0 0 0 0 0 5 1 no 0 0 0 0 0 0 1 +r r r r r r r BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 5 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 1 no 0 0 0 0 0 0 1 +(T_NAME_SEGMENT) (T_NAME_SEGMENT) (t_name_segment) ( (T (T_ (T_N BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 5 1 () 2 2 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 1 no 0 0 0 0 0 0 1 ++---------------+---------------+---------------+---------------+ +---------------+---------------+---------------+---------------+ +---------------+---------------+---------------+---------------+ + +- +-- +--- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 5 1 ------------------------------------------------------------ 60 10 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 1 no 0 0 0 0 0 0 1 +0x02 (2) 0x02 0 0x 0x0 0x02 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 1 () 2 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 1 no 0 0 0 0 0 0 1 +h h h h h h h BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 5 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 1 no 0 0 0 0 0 0 1 +i i i i i i i BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 5 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 1 no 0 0 0 0 0 0 1 ++---------------+---------------+---------------+---------------+ +---------------+---------------+---------------+---------------+ +---------------+---------------+---------------+---------------+ + +- +-- +--- BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 5 1 ------------------------------------------------------------ 60 10 0 0 0 0 1 +Figure 16: figure F Fi Fig Figu BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 8 : 1 10 0 0 0 0 1 +3.6.1.2. Interest 3.6.1.2. 3 3. 3.6 3.6. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 8 .... 4 10 0 0 0 0 1 +The InterestPayloadID the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 8 no 0 9 0 0 0 0 1 +Interest to interest I In Int Inte BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 8 . 1 9 0 0 0 0 1 +multiplexing of multiplexing m mu mul mult BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 8 no 0 10 0 0 0 0 1 +payloads. A payloads. p pa pay payl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 8 . 1 9 0 0 0 0 1 +Payload as payload P Pa Pay Payl BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 5 8 . 1 4 0 0 0 0 1 +As part as A As As As BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 9 , 1 9 0 0 0 0 1 +one-octet identifier one-octet o on one one- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 9 - 1 7 0 0 0 0 1 +InterestPayloadID followed interestpayloadid I In Int Inte BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 5 9 -. 2 9 0 0 0 0 1 +implementation is implementation i im imp impl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 9 no 0 9 0 0 0 0 1 +receive an receive r re rec rece BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 9 ; 1 10 0 0 0 0 1 +opaque octet opaque o op opa opaq BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 9 no 0 9 0 0 0 0 1 +different payloads. different d di dif diff BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 9 . 1 10 0 0 0 0 1 +segment or segment s se seg segm BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 9 no 0 9 0 0 0 0 1 +algorithms. algorithms. algorithms. a al alg algo BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 9 . 1 1 0 0 0 0 1 +It uses it I It It It BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 11 ... 3 10 0 0 0 0 1 +Mosko, et mosko, M Mo Mos Mosk BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 5 11 ,. 2 10 0 0 1 0 0 +Experimental Experimental experimental E Ex Exp Expe BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 11 no 0 9 0 0 0 0 0 +[Page 20] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 11 [] 2 7 0 0 0 0 0 +RFC 8609 rfc R RF RFC RFC BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 5 0 no 0 10 0 0 0 0 1 +CCNx TLV ccnx C CC CCN CCNx BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 5 0 no 0 9 0 0 1 0 1 +July 2019 july J Ju Jul July BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 5 0 no 0 10 0 0 0 0 1 +In normal in I In In In BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 5 0 , 1 10 0 0 0 0 1 +as an as a as as as BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 0 , 1 9 0 0 0 0 1 +denominator for denominator d de den deno BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 0 . 1 5 0 0 0 0 1 +The InterestPayloadID, the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 1 ,, 2 9 0 0 0 0 1 +security context. security s se sec secu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 5 1 . 1 9 0 0 0 0 1 +entity created entity e en ent enti BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 1 , 1 9 0 0 0 0 1 +signature on signature s si sig sign BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 1 no 0 8 0 0 0 0 1 +ValidationPayload or validationpayload V Va Val Vali BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 5 1 . 1 10 0 0 0 0 1 +3.6.2. Message 3.6.2. 3 3. 3.6 3.6. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 2 ... 3 10 0 0 0 0 1 +Each message each E Ea Eac Each BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 2 () 2 9 0 0 0 0 1 +set of set s se set set BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 2 . 1 10 0 0 0 0 1 +extend the extend e ex ext exte BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 2 . 1 5 0 0 0 0 1 +3.6.2.1. Interest 3.6.2.1. 3 3. 3.6 3.6. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 3 .... 4 10 0 0 0 0 1 +There are there T Th The Ther BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 3 no 0 9 0 0 0 0 1 +message: the message: m me mes mess BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 3 : 1 10 0 0 0 0 1 +selector are selector s se sel sele BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 3 no 0 9 0 0 0 0 1 +Objects that objects O Ob Obj Obje BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 3 . 1 5 0 0 0 0 1 +1 1 1 1 1 1 1 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 5 4 no 0 0 0 0 0 0 1 +2 2 2 2 2 2 2 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 5 4 no 0 0 0 0 0 0 1 +3 3 3 3 3 3 3 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 5 4 no 0 0 0 0 0 0 1 +0 1 0 0 0 0 0 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 5 4 no 0 9 0 0 0 0 1 ++---------------+---------------+---------------+---------------+ +---------------+---------------+---------------+---------------+ +---------------+---------------+---------------+---------------+ + +- +-- +--- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 5 4 ------------------------------------------------------------ 60 10 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 4 no 0 0 0 0 0 0 1 +MessageType MessageType messagetype M Me Mes Mess BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 5 4 no 0 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 4 no 0 0 0 0 0 0 1 +MessageLength MessageLength messagelength M Me Mes Mess BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 5 4 no 0 2 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 4 no 0 0 0 0 0 0 1 ++---------------+---------------+---------------+---------------+ +---------------+---------------+---------------+---------------+ +---------------+---------------+---------------+---------------+ + +- +-- +--- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 5 4 ------------------------------------------------------------ 60 10 0 0 0 0 1 +| Name | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 4 no 0 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 4 no 0 0 0 0 0 0 1 ++---------------+---------------+---------------+---------------+ +---------------+---------------+---------------+---------------+ +---------------+---------------+---------------+---------------+ + +- +-- +--- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 5 4 ------------------------------------------------------------ 60 10 0 0 0 0 1 +/ Optional / / / / / BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 4 / 1 4 0 0 0 0 1 +/ / / / / / / BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 4 / 1 0 0 0 0 0 1 ++---------------------------------------------------------------+ +---------------------------------------------------------------+ +---------------------------------------------------------------+ + +- +-- +--- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 5 4 --------------------------------------------------------------- 63 10 0 0 0 0 1 +/ Optional / / / / / BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 4 / 1 6 0 0 0 0 1 +/ / / / / / / BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 4 / 1 0 0 0 0 0 1 ++---------------------------------------------------------------+ +---------------------------------------------------------------+ +---------------------------------------------------------------+ + +- +-- +--- BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 5 4 --------------------------------------------------------------- 63 10 0 0 0 0 1 +Figure 17: figure F Fi Fig Figu BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 11 : 1 10 0 0 0 0 1 +Mosko, et mosko, M Mo Mos Mosk BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 5 11 ,. 2 10 0 0 1 0 0 +Experimental Experimental experimental E Ex Exp Expe BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 11 no 0 9 0 0 0 0 0 +[Page 21] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 11 [] 2 7 0 0 0 0 0 +RFC 8609 rfc R RF RFC RFC BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 5 0 no 0 10 0 0 0 0 1 +CCNx TLV ccnx C CC CCN CCNx BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 5 0 no 0 9 0 0 1 0 1 +July 2019 july J Ju Jul July BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 5 0 no 0 10 0 0 0 0 1 ++----------------+------------------------------+-------------------+ +----------------+------------------------------+-------------------+ +----------------+------------------------------+-------------------+ + +- +-- +--- BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 5 0 ----------------------------------------------------------------- 65 10 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 0 no 0 0 0 0 0 0 1 +Abbrev Abbrev abbrev A Ab Abb Abbr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 5 0 no 0 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 0 no 0 0 0 0 0 0 1 +Name Name name N Na Nam Name BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 0 no 0 0 0 0 0 0 1 +| Description | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 0 no 0 2 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 0 no 0 0 0 0 0 0 1 ++----------------+------------------------------+-------------------+ +----------------+------------------------------+-------------------+ +----------------+------------------------------+-------------------+ + +- +-- +--- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 5 0 ----------------------------------------------------------------- 65 10 0 0 0 0 1 +| T_KEYIDRESTR | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 0 ( 1 6 0 0 0 0 1 +| A | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 0 no 0 3 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 0 no 0 0 0 0 0 0 1 +3.6.2.1.1) 3.6.2.1.1) 3.6.2.1.1) 3 3. 3.6 3.6. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 0 ....) 5 1 0 0 0 0 1 +| (as | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 0 ( 1 2 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 0 no 0 0 0 0 0 0 1 +| 3.3.3) | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 0 ..) 3 2 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 0 no 0 0 0 0 0 0 1 +| KeyId | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 0 no 0 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 0 no 0 0 0 0 0 0 1 +| T_OBJHASHRESTR | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 0 no 0 9 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 0 no 0 0 0 0 0 0 1 +(Section 3.6.2.1.2) (section ( (S (Se (Sec BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 0 (....) 6 2 0 0 0 0 1 +| (as | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 0 ( 1 2 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 0 no 0 0 0 0 0 0 1 +| 3.3.3) | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 0 ..) 3 2 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 0 no 0 0 0 0 0 0 1 +| hash | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 0 no 0 2 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 0 no 0 0 0 0 0 0 1 +| specific | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 0 no 0 3 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 0 no 0 0 0 0 0 0 1 +| Object | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 0 no 0 3 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 0 no 0 0 0 0 0 0 1 +| satisfy | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 0 no 0 2 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 0 no 0 0 0 0 0 0 1 +| Interest. | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 0 . 1 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 0 no 0 0 0 0 0 0 1 ++----------------+------------------------------+-------------------+ +----------------+------------------------------+-------------------+ +----------------+------------------------------+-------------------+ + +- +-- +--- BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 5 0 ----------------------------------------------------------------- 65 10 0 0 0 0 1 +Table 8: table T Ta Tab Tabl BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 7 : 1 10 0 0 0 0 1 +3.6.2.1.1. KeyIdRestriction 3.6.2.1.1. 3 3. 3.6 3.6. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 7 ..... 5 10 0 0 0 0 1 +An Interest an A An An An BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 5 7 . 1 10 0 0 0 0 1 +that only that t th tha that BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 7 no 0 9 0 0 0 0 1 +Interest. See interest. I In Int Inte BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 7 ....... 7 9 0 0 0 0 1 +3.6.2.1.2. ContentObjectHashRestriction 3.6.2.1.2. 3 3. 3.6 3.6. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 9 ..... 5 10 0 0 0 0 1 +An Interest an A An An An BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 6 9 . 1 9 0 0 0 0 1 +This is this T Th Thi This BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 9 --- 3 10 0 0 0 0 1 +restriction that restriction r re res rest BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 9 , 1 9 0 0 0 0 1 +carried this carried c ca car carr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 9 ((..)). 7 9 0 0 0 0 1 +LENGTH MUST length L LE LEN LENG BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 6 9 ( 1 9 0 0 0 0 1 +Section 3.3.3). section S Se Sec Sect BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 9 ..). 4 2 0 0 0 0 1 +The ContentObjectHashRestriction the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 11 - 1 10 0 0 0 0 1 +length 32 length l le len leng BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 11 . 1 2 0 0 0 0 1 +Mosko, et mosko, M Mo Mos Mosk BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 6 11 ,. 2 10 0 0 1 0 0 +Experimental Experimental experimental E Ex Exp Expe BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 11 no 0 9 0 0 0 0 0 +[Page 22] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 11 [] 2 7 0 0 0 0 0 +RFC 8609 rfc R RF RFC RFC BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 6 0 no 0 10 0 0 0 0 1 +CCNx TLV ccnx C CC CCN CCNx BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 6 0 no 0 9 0 0 1 0 1 +July 2019 july J Ju Jul July BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 6 0 no 0 10 0 0 0 0 1 +1 1 1 1 1 1 1 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 6 0 no 0 0 0 0 0 0 1 +2 2 2 2 2 2 2 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 6 0 no 0 0 0 0 0 0 1 +3 3 3 3 3 3 3 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 6 0 no 0 0 0 0 0 0 1 +0 1 0 0 0 0 0 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 6 0 no 0 9 0 0 0 0 1 ++---------------+---------------+---------------+---------------+ +---------------+---------------+---------------+---------------+ +---------------+---------------+---------------+---------------+ + +- +-- +--- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 6 0 ------------------------------------------------------------ 60 10 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 0 no 0 0 0 0 0 0 1 +T_OBJHASHRESTR T_OBJHASHRESTR t_objhashrestr T T_ T_O T_OB BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 6 0 no 0 2 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 0 no 0 0 0 0 0 0 1 +(LENGTH+4) (LENGTH+4) (length+4) ( (L (LE (LEN BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 0 () 2 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 0 no 0 0 0 0 0 0 1 ++---------------+---------------+---------------+---------------+ +---------------+---------------+---------------+---------------+ +---------------+---------------+---------------+---------------+ + +- +-- +--- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 6 0 ------------------------------------------------------------ 60 10 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 0 no 0 0 0 0 0 0 1 +hash type hash h ha has hash BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 0 no 0 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 0 no 0 0 0 0 0 0 1 +LENGTH LENGTH length L LE LEN LENG BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 6 0 no 0 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 0 no 0 0 0 0 0 0 1 ++---------------+---------------+---------------+---------------+ +---------------+---------------+---------------+---------------+ +---------------+---------------+---------------+---------------+ + +- +-- +--- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 6 0 ------------------------------------------------------------ 60 10 0 0 0 0 1 +/ / / / / / / BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 0 / 1 0 0 0 0 0 1 +LENGTH octets length L LE LEN LENG BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 6 0 no 0 3 0 0 0 0 1 +/ / / / / / / BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 0 / 1 0 0 0 0 0 1 ++---------------+---------------+---------------+---------------+ +---------------+---------------+---------------+---------------+ +---------------+---------------+---------------+---------------+ + +- +-- +--- BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 6 0 ------------------------------------------------------------ 60 10 0 0 0 0 1 +Figure 18: figure F Fi Fig Figu BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 3 : 1 10 0 0 0 0 1 +3.6.2.2. Content 3.6.2.2. 3 3. 3.6 3.6. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 3 .... 4 10 0 0 0 0 1 +The following the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 3 : 1 10 0 0 0 0 1 +PayloadType (optional) payloadtype P Pa Pay Payl BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 6 3 ()(). 5 7 0 0 0 0 1 +1 1 1 1 1 1 1 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 6 3 no 0 0 0 0 0 0 1 +2 2 2 2 2 2 2 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 6 3 no 0 0 0 0 0 0 1 +3 3 3 3 3 3 3 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 6 3 no 0 0 0 0 0 0 1 +0 1 0 0 0 0 0 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 6 3 no 0 9 0 0 0 0 1 ++---------------+---------------+---------------+---------------+ +---------------+---------------+---------------+---------------+ +---------------+---------------+---------------+---------------+ + +- +-- +--- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 6 3 ------------------------------------------------------------ 60 10 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 3 no 0 0 0 0 0 0 1 +MessageType MessageType messagetype M Me Mes Mess BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 6 3 no 0 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 3 no 0 0 0 0 0 0 1 +MessageLength MessageLength messagelength M Me Mes Mess BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 6 3 no 0 2 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 3 no 0 0 0 0 0 0 1 ++---------------+---------------+---------------+---------------+ +---------------+---------------+---------------+---------------+ +---------------+---------------+---------------+---------------+ + +- +-- +--- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 6 3 ------------------------------------------------------------ 60 10 0 0 0 0 1 +| Name | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 3 no 0 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 3 no 0 0 0 0 0 0 1 ++---------------+---------------+---------------+---------------+ +---------------+---------------+---------------+---------------+ +---------------+---------------+---------------+---------------+ + +- +-- +--- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 6 3 ------------------------------------------------------------ 60 10 0 0 0 0 1 +/ Optional / / / / / BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 3 / 1 4 0 0 0 0 1 +/ / / / / / / BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 3 / 1 0 0 0 0 0 1 ++---------------------------------------------------------------+ +---------------------------------------------------------------+ +---------------------------------------------------------------+ + +- +-- +--- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 6 3 --------------------------------------------------------------- 63 10 0 0 0 0 1 +/ Optional / / / / / BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 3 / 1 3 0 0 0 0 1 +/ / / / / / / BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 3 / 1 0 0 0 0 0 1 ++---------------------------------------------------------------+ +---------------------------------------------------------------+ +---------------------------------------------------------------+ + +- +-- +--- BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 6 3 --------------------------------------------------------------- 63 10 0 0 0 0 1 +Figure 19: figure F Fi Fig Figu BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 7 : 1 10 0 0 0 0 1 ++-------------+-------------+---------------------------------------+ +-------------+-------------+---------------------------------------+ +-------------+-------------+---------------------------------------+ + +- +-- +--- BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 6 7 ----------------------------------------------------------------- 65 10 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 7 no 0 0 0 0 0 0 1 +Abbrev Abbrev abbrev A Ab Abb Abbr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 6 7 no 0 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 7 no 0 0 0 0 0 0 1 +Name Name name N Na Nam Name BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 7 no 0 0 0 0 0 0 1 +| Description | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 7 no 0 2 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 7 no 0 0 0 0 0 0 1 ++-------------+-------------+---------------------------------------+ +-------------+-------------+---------------------------------------+ +-------------+-------------+---------------------------------------+ + +- +-- +--- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 6 7 ----------------------------------------------------------------- 65 10 0 0 0 0 1 +| T_PAYLDTYPE | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 7 no 0 8 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 7 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 7 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 7 no 0 0 0 0 0 0 1 +(Section | (section ( (S (Se (Sec BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 7 (. 2 3 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 7 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 7 no 0 0 0 0 0 0 1 +| 3.6.2.2.1) | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 7 ....) 5 2 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 7 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 7 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 7 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 7 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 7 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 7 no 0 0 0 0 0 0 1 +T_EXPIRY | t_expiry T T_ T_E T_EX BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 6 7 no 0 7 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 7 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 7 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 7 no 0 0 0 0 0 0 1 +(Section | (section ( (S (Se (Sec BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 7 (, 2 6 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 7 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 7 no 0 0 0 0 0 0 1 +| 3.6.2.2.2) | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 7 ....) 5 7 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 7 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 7 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 7 no 0 0 0 0 0 0 1 +| UTC. | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 7 ., 2 5 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 7 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 7 no 0 0 0 0 0 0 1 +| be | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 7 . 1 4 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 7 no 0 0 0 0 0 0 1 ++-------------+-------------+---------------------------------------+ +-------------+-------------+---------------------------------------+ +-------------+-------------+---------------------------------------+ + +- +-- +--- BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 6 7 ----------------------------------------------------------------- 65 10 0 0 0 0 1 +Table 9: table T Ta Tab Tabl BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 11 : 1 10 0 0 0 0 1 +Mosko, et mosko, M Mo Mos Mosk BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 6 11 ,. 2 10 0 0 1 0 0 +Experimental Experimental experimental E Ex Exp Expe BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 11 no 0 9 0 0 0 0 0 +[Page 23] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 11 [] 2 7 0 0 0 0 0 +RFC 8609 rfc R RF RFC RFC BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 6 0 no 0 10 0 0 0 0 1 +CCNx TLV ccnx C CC CCN CCNx BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 6 0 no 0 9 0 0 1 0 1 +July 2019 july J Ju Jul July BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 6 0 no 0 10 0 0 0 0 1 +3.6.2.2.1. PayloadType 3.6.2.2.1. 3 3. 3.6 3.6. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 0 ..... 5 10 0 0 0 0 1 +The PayloadType the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 0 no 0 10 0 0 0 0 1 +Payload TLV. payload P Pa Pay Payl BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 6 0 . 1 2 0 0 0 0 1 +o T_PAYLOADTYPE_DATA: o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 6 0 :() 3 10 0 0 0 0 1 +o T_PAYLOADTYPE_KEY: o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 6 0 : 1 10 0 0 0 0 1 +o T_PAYLOADTYPE_LINK: o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 6 1 : 1 10 0 0 0 0 1 +The Data the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 1 no 0 9 0 0 0 0 1 +opaque application opaque o op opa opaq BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 1 . 1 10 0 0 0 0 1 +a DER-encoded a a a a a BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 1 0 0 0 0 0 6 1 -. 2 9 0 0 0 0 1 +is one is i is is is BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 1 (..)., 6 9 0 0 0 0 1 +Data type data D Da Dat Data BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 1 . 1 3 0 0 0 0 1 +1 1 1 1 1 1 1 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 6 2 no 0 0 0 0 0 0 1 +2 2 2 2 2 2 2 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 6 2 no 0 0 0 0 0 0 1 +3 3 3 3 3 3 3 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 6 2 no 0 0 0 0 0 0 1 +0 1 0 0 0 0 0 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 6 2 no 0 9 0 0 0 0 1 ++---------------+---------------+---------------+---------------+ +---------------+---------------+---------------+---------------+ +---------------+---------------+---------------+---------------+ + +- +-- +--- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 6 2 ------------------------------------------------------------ 60 10 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 2 no 0 0 0 0 0 0 1 +T_PAYLDTYPE T_PAYLDTYPE t_payldtype T T_ T_P T_PA BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 6 2 no 0 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 2 no 0 0 0 0 0 0 1 +1 1 1 1 1 1 1 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 6 2 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 2 no 0 0 0 0 0 0 1 ++---------------+---------------+---------------+---------------+ +---------------+---------------+---------------+---------------+ +---------------+---------------+---------------+---------------+ + +- +-- +--- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 6 2 ------------------------------------------------------------ 60 10 0 0 0 0 1 +| PayloadType | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 2 no 0 2 0 0 0 0 1 ++---------------+ +---------------+ +---------------+ + +- +-- +--- BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 6 2 --------------- 15 2 0 0 0 0 1 +Figure 20: figure F Fi Fig Figu BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 5 : 1 10 0 0 0 0 1 +3.6.2.2.2. ExpiryTime 3.6.2.2.2. 3 3. 3.6 3.6. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 5 ..... 5 10 0 0 0 0 1 +The ExpiryTime the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 5 , 1 10 0 0 0 0 1 +by a by b by by by BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 5 no 0 9 0 0 0 0 1 +in UTC. in i in in in BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 6 5 .- 2 9 0 0 0 0 1 +field. A field. f fi fie fiel BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 5 . 1 9 0 0 0 0 1 +Object past object O Ob Obj Obje BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 5 . 1 9 0 0 0 0 1 +not need not n no not not BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 5 . 1 8 0 0 0 0 1 +missing, the missing, m mi mis miss BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 5 ,, 2 9 0 0 0 0 1 +or end or o or or or BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 5 . 1 9 0 0 0 0 1 +1 1 1 1 1 1 1 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 6 8 no 0 0 0 0 0 0 1 +2 2 2 2 2 2 2 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 6 8 no 0 0 0 0 0 0 1 +3 3 3 3 3 3 3 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 6 8 no 0 0 0 0 0 0 1 +0 1 0 0 0 0 0 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 6 8 no 0 9 0 0 0 0 1 ++---------------+---------------+---------------+---------------+ +---------------+---------------+---------------+---------------+ +---------------+---------------+---------------+---------------+ + +- +-- +--- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 6 8 ------------------------------------------------------------ 60 10 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 8 no 0 0 0 0 0 0 1 +T_EXPIRY T_EXPIRY t_expiry T T_ T_E T_EX BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 6 8 no 0 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 8 no 0 0 0 0 0 0 1 +8 8 8 8 8 8 8 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 6 8 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 8 no 0 0 0 0 0 0 1 ++---------------+---------------+---------------+---------------+ +---------------+---------------+---------------+---------------+ +---------------+---------------+---------------+---------------+ + +- +-- +--- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 6 8 ------------------------------------------------------------ 60 10 0 0 0 0 1 +/ / / / / / / BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 8 / 1 0 0 0 0 0 1 +ExpiryTime ExpiryTime expirytime E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 6 8 no 0 1 0 0 0 0 1 +/ / / / / / / BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 8 / 1 0 0 0 0 0 1 +/ / / / / / / BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 8 / 1 0 0 0 0 0 1 +/ / / / / / / BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 8 / 1 0 0 0 0 0 1 ++---------------+---------------+---------------+---------------+ +---------------+---------------+---------------+---------------+ +---------------+---------------+---------------+---------------+ + +- +-- +--- BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 6 8 ------------------------------------------------------------ 60 10 0 0 0 0 1 +Figure 21: figure F Fi Fig Figu BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 11 : 1 10 0 0 0 0 1 +Mosko, et mosko, M Mo Mos Mosk BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 6 11 ,. 2 10 0 0 1 0 0 +Experimental Experimental experimental E Ex Exp Expe BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 11 no 0 9 0 0 0 0 0 +[Page 24] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 11 [] 2 7 0 0 0 0 0 +RFC 8609 rfc R RF RFC RFC BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 6 0 no 0 10 0 0 0 0 1 +CCNx TLV ccnx C CC CCN CCNx BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 6 0 no 0 9 0 0 1 0 1 +July 2019 july J Ju Jul July BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 6 0 no 0 10 0 0 0 0 1 +3.6.3. Payload 3.6.3. 3 3. 3.6 3.6. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 0 ... 3 10 0 0 0 0 1 +The Payload the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 0 . 1 10 0 0 0 0 1 +zero length. zero z ze zer zero BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 0 ., 2 9 0 0 0 0 1 +SHOULD be should S SH SHO SHOU BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 6 0 ,. 2 8 0 0 0 0 1 +1 1 1 1 1 1 1 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 6 1 no 0 0 0 0 0 0 1 +2 2 2 2 2 2 2 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 6 1 no 0 0 0 0 0 0 1 +3 3 3 3 3 3 3 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 6 1 no 0 0 0 0 0 0 1 +0 1 0 0 0 0 0 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 6 1 no 0 9 0 0 0 0 1 ++---------------+---------------+---------------+---------------+ +---------------+---------------+---------------+---------------+ +---------------+---------------+---------------+---------------+ + +- +-- +--- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 6 1 ------------------------------------------------------------ 60 10 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 1 no 0 0 0 0 0 0 1 +T_PAYLOAD T_PAYLOAD t_payload T T_ T_P T_PA BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 6 1 no 0 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 1 no 0 0 0 0 0 0 1 +Length Length length L Le Len Leng BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 1 no 0 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 1 no 0 0 0 0 0 0 1 ++---------------+---------------+---------------+---------------+ +---------------+---------------+---------------+---------------+ +---------------+---------------+---------------+---------------+ + +- +-- +--- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 6 1 ------------------------------------------------------------ 60 10 0 0 0 0 1 +/ / / / / / / BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 1 / 1 0 0 0 0 0 1 +Payload Contents payload P Pa Pay Payl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 6 1 no 0 2 0 0 0 0 1 +/ / / / / / / BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 1 / 1 0 0 0 0 0 1 ++---------------+---------------+---------------+---------------+ +---------------+---------------+---------------+---------------+ +---------------+---------------+---------------+---------------+ + +- +-- +--- BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 6 1 ------------------------------------------------------------ 60 10 0 0 0 0 1 +Figure 22: figure F Fi Fig Figu BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 5 : 1 10 0 0 0 0 1 +3.6.4. Validation 3.6.4. 3 3. 3.6 3.6. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 5 ... 3 10 0 0 0 0 1 +Both Interests both B Bo Bot Both BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 5 no 0 8 0 0 0 0 1 +information about information i in inf info BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 5 . 1 10 0 0 0 0 1 +is contained is i is is is BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 5 : 1 8 0 0 0 0 1 +ValidationPayload TLV. validationpayload V Va Val Vali BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 6 5 . 1 9 0 0 0 0 1 +mechanism to mechanism m me mec mech BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 5 . 1 9 0 0 0 0 1 +verification with verification v ve ver veri BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 6 5 (), 3 8 0 0 0 0 1 +Authentication Code authentication A Au Aut Auth BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 6 5 (),. 4 8 0 0 0 0 1 +ValidationPayload TLV validationpayload V Va Val Vali BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 6 5 , 1 9 0 0 0 0 1 +CRC32C code crc32c C CR CRC CRC3 BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 5 . 1 4 0 0 0 0 1 +An Interest an A An An An BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 6 8 -- 2 10 0 0 0 0 1 +CRC, checksum, crc, C CR CRC CRC, BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 6 8 ,,. 3 3 0 0 0 0 1 +3.6.4.1. Validation 3.6.4.1. 3 3. 3.6 3.6. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 8 .... 4 10 0 0 0 0 1 +The ValidationAlgorithm the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 8 no 0 10 0 0 0 0 1 +information needed information i in inf info BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 8 . 1 9 0 0 0 0 1 +has type has h ha has has BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 8 . 1 8 0 0 0 0 1 +specific type specific s sp spe spec BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 8 . 1 9 0 0 0 0 1 +is identified is i is is is BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 8 "" 2 9 0 0 0 0 1 +and elaborated and a an and and BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 8 . 1 9 0 0 0 0 1 +the TLVs the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 8 ---, 4 9 0 0 0 0 1 +Id, Key id, I Id Id, Id, BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 6 8 ,,. 3 3 0 0 0 0 1 +Complete examples complete C Co Com Comp BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 11 ..... 5 10 0 0 0 0 1 +Mosko, et mosko, M Mo Mos Mosk BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 6 11 ,. 2 10 0 0 1 0 0 +Experimental Experimental experimental E Ex Exp Expe BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 11 no 0 9 0 0 0 0 0 +[Page 25] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 11 [] 2 7 0 0 0 0 0 +RFC 8609 rfc R RF RFC RFC BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 6 0 no 0 10 0 0 0 0 1 +CCNx TLV ccnx C CC CCN CCNx BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 6 0 no 0 9 0 0 1 0 1 +July 2019 july J Ju Jul July BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 6 0 no 0 10 0 0 0 0 1 +1 1 1 1 1 1 1 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 6 0 no 0 0 0 0 0 0 1 +2 2 2 2 2 2 2 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 6 0 no 0 0 0 0 0 0 1 +3 3 3 3 3 3 3 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 6 0 no 0 0 0 0 0 0 1 +0 1 0 0 0 0 0 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 6 0 no 0 9 0 0 0 0 1 ++---------------+---------------+---------------+---------------+ +---------------+---------------+---------------+---------------+ +---------------+---------------+---------------+---------------+ + +- +-- +--- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 6 0 ------------------------------------------------------------ 60 10 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 0 no 0 0 0 0 0 0 1 +T_VALIDATION_ALG T_VALIDATION_ALG t_validation_alg T T_ T_V T_VA BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 6 0 no 0 2 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 0 no 0 0 0 0 0 0 1 +ValidationAlgLength ValidationAlgLength validationalglength V Va Val Vali BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 6 0 no 0 3 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 0 no 0 0 0 0 0 0 1 ++---------------+---------------+---------------+---------------+ +---------------+---------------+---------------+---------------+ +---------------+---------------+---------------+---------------+ + +- +-- +--- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 6 0 ------------------------------------------------------------ 60 10 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 0 no 0 0 0 0 0 0 1 +ValidationType ValidationType validationtype V Va Val Vali BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 6 0 no 0 2 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 0 no 0 0 0 0 0 0 1 +Length Length length L Le Len Leng BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 0 no 0 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 0 no 0 0 0 0 0 0 1 ++---------------+---------------+---------------+---------------+ +---------------+---------------+---------------+---------------+ +---------------+---------------+---------------+---------------+ + +- +-- +--- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 6 0 ------------------------------------------------------------ 60 10 0 0 0 0 1 +/ ValidationType-dependent / / / / / BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 0 /- 2 4 0 0 0 0 1 +/ / / / / / / BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 0 / 1 0 0 0 0 0 1 ++---------------+---------------+---------------+---------------+ +---------------+---------------+---------------+---------------+ +---------------+---------------+---------------+---------------+ + +- +-- +--- BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 6 0 ------------------------------------------------------------ 60 10 0 0 0 0 1 +Figure 23: figure F Fi Fig Figu BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 4 : 1 10 0 0 0 0 1 ++-----------------+---------------+---------------------------------+ +-----------------+---------------+---------------------------------+ +-----------------+---------------+---------------------------------+ + +- +-- +--- BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 7 4 ----------------------------------------------------------------- 65 10 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 4 no 0 0 0 0 0 0 1 +Abbrev Abbrev abbrev A Ab Abb Abbr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 7 4 no 0 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 4 no 0 0 0 0 0 0 1 +Name Name name N Na Nam Name BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 4 no 0 0 0 0 0 0 1 +| Description | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 4 no 0 2 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 4 no 0 0 0 0 0 0 1 ++-----------------+---------------+---------------------------------+ +-----------------+---------------+---------------------------------+ +-----------------+---------------+---------------------------------+ + +- +-- +--- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 7 4 ----------------------------------------------------------------- 65 10 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 4 no 0 0 0 0 0 0 1 +T_CRC32C T_CRC32C t_crc32c T T_ T_C T_CR BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 4 no 0 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 4 no 0 0 0 0 0 0 1 +CRC32C CRC32C crc32c C CR CRC CRC3 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 4 no 0 1 0 0 0 0 1 +| Castagnoli | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 4 (,, 3 5 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 4 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 4 no 0 0 0 0 0 0 1 +(Section (Section (section ( (S (Se (Sec BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 7 4 ( 1 1 0 0 0 0 1 +| etc.) | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 4 .) 2 3 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 4 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 4 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 4 no 0 0 0 0 0 0 1 +3.6.4.1.1) | 3.6.4.1.1) 3 3. 3.6 3.6. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 4 ....). 6 5 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 4 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 4 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 4 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 4 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 4 no 0 0 0 0 0 0 1 +| T_HMAC-SHA256 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 4 --() 4 8 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 4 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 4 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 4 no 0 0 0 0 0 0 1 +(Section (Section (section ( (S (Se (Sec BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 7 4 ( 1 1 0 0 0 0 1 +| hash. | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 4 . 1 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 4 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 4 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 4 no 0 0 0 0 0 0 1 +3.6.4.1.2) | 3.6.4.1.2) 3 3. 3.6 3.6. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 4 ....) 5 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 4 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 4 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 4 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 4 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 4 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 4 no 0 0 0 0 0 0 1 +T_RSA-SHA256 | t_rsa-sha256 T T_ T_R T_RS BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 4 - 1 2 0 0 0 0 1 +RSA-SHA256 | rsa-sha256 R RS RSA RSA- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 4 -- 2 6 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 4 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 4 no 0 0 0 0 0 0 1 +(Section (Section (section ( (S (Se (Sec BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 7 4 ( 1 1 0 0 0 0 1 +| SHA256 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 4 . 1 2 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 4 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 4 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 4 no 0 0 0 0 0 0 1 +3.6.4.1.3) | 3.6.4.1.3) 3 3. 3.6 3.6. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 4 ....) 5 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 4 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 4 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 4 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 4 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 4 no 0 0 0 0 0 0 1 +| T_EC-SECP-256K1 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 4 -- 2 2 0 0 0 0 1 +SECP-256K1 | secp-256k1 S SE SEC SECP BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 4 - 1 6 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 4 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 4 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 4 no 0 0 0 0 0 0 1 +(Section (Section (section ( (S (Se (Sec BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 7 4 ( 1 1 0 0 0 0 1 +| SECP-256K1 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 4 -( 2 4 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 4 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 4 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 4 no 0 0 0 0 0 0 1 +3.6.4.1.3) | 3.6.4.1.3) 3 3. 3.6 3.6. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 4 ....)[]). 9 3 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 4 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 4 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 4 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 4 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 4 no 0 0 0 0 0 0 1 +| T_EC-SECP-384R1 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 4 -- 2 2 0 0 0 0 1 +SECP-384R1 | secp-384r1 S SE SEC SECP BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 4 - 1 6 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 4 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 4 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 4 no 0 0 0 0 0 0 1 +(Section (Section (section ( (S (Se (Sec BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 7 4 ( 1 1 0 0 0 0 1 +| SECP-384R1 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 4 -( 2 4 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 4 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 4 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 4 no 0 0 0 0 0 0 1 +3.6.4.1.3) | 3.6.4.1.3) 3 3. 3.6 3.6. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 4 ....)[]). 9 3 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 4 no 0 0 0 0 0 0 1 ++-----------------+---------------+---------------------------------+ +-----------------+---------------+---------------------------------+ +-----------------+---------------+---------------------------------+ + +- +-- +--- BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 7 4 ----------------------------------------------------------------- 65 10 0 0 0 0 1 +Table 10: table T Ta Tab Tabl BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 10 : 1 10 0 0 0 0 1 +3.6.4.1.1. Message 3.6.4.1.1. 3 3. 3.6 3.6. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 11 ..... 5 10 0 0 0 0 1 +MICs do mics M MI MIC MICs BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 7 11 no 0 9 0 0 0 0 1 +verification. An verification. v ve ver veri BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 11 .-. 3 10 0 0 0 0 1 +Mosko, et mosko, M Mo Mos Mosk BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 7 11 ,. 2 10 0 0 1 0 0 +Experimental Experimental experimental E Ex Exp Expe BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 11 no 0 9 0 0 0 0 0 +[Page 26] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 7 11 [] 2 7 0 0 0 0 0 +RFC 8609 rfc R RF RFC RFC BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 7 0 no 0 10 0 0 0 0 1 +CCNx TLV ccnx C CC CCN CCNx BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 7 0 no 0 9 0 0 1 0 1 +July 2019 july J Ju Jul July BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 7 0 no 0 10 0 0 0 0 1 +3.6.4.1.2. Message 3.6.4.1.2. 3 3. 3.6 3.6. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 0 ..... 5 10 0 0 0 0 1 +MACs are macs M MA MAC MACs BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 0 no 0 9 0 0 0 0 1 +have already have h ha hav have BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 0 .. 2 9 0 0 0 0 1 +A MAC a A A A A BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 1 0 0 0 0 0 7 0 . 1 10 0 0 0 0 1 +The meaning the T Th The The BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 0 no 0 9 0 0 0 0 1 +could be could c co cou coul BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 0 . 1 9 0 0 0 0 1 +an additional an a an an an BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 7 0 ,, 2 9 0 0 0 0 1 +would need would w wo wou woul BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 0 . 1 9 0 0 0 0 1 +3.6.4.1.3. Signature 3.6.4.1.3. 3 3. 3.6 3.6. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 4 ..... 5 10 0 0 0 0 1 +Signature type signature S Si Sig Sign BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 5 no 0 10 0 0 0 0 1 +algorithm to algorithm a al alg algo BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 5 . 1 10 0 0 0 0 1 +on a on o on on on BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 5 ,- 2 9 0 0 0 0 1 +parameters, etc. parameters, p pa par para BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 5 ,. 2 9 0 0 0 0 1 +for locating for f fo for for BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 5 '()-- 5 9 0 0 0 0 1 +optionally a optionally o op opt opti BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 5 . 1 7 0 0 0 0 1 +3.6.4.1.4. Validation-Dependent 3.6.4.1.4. 3 3. 3.6 3.6. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 8 .....- 6 10 0 0 0 0 1 +Different Validation different D Di Dif Diff BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 8 no 0 10 0 0 0 0 1 +data contained data d da dat data BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 8 ., 2 9 0 0 0 0 1 +Key Ids, key K Ke Key Key BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 7 8 ,,,,, 5 9 0 0 0 0 1 +Names all names N Na Nam Name BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 8 . 1 9 0 0 0 0 1 +of Validation-Dependent of o of of of BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 8 - 1 8 0 0 0 0 1 +Validation Algorithm validation V Va Val Vali BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 8 . 1 3 0 0 0 0 1 +Mosko, et mosko, M Mo Mos Mosk BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 7 11 ,. 2 10 0 0 1 0 0 +Experimental Experimental experimental E Ex Exp Expe BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 11 no 0 9 0 0 0 0 0 +[Page 27] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 7 11 [] 2 7 0 0 0 0 0 +RFC 8609 rfc R RF RFC RFC BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 7 0 no 0 10 0 0 0 0 1 +CCNx TLV ccnx C CC CCN CCNx BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 7 0 no 0 9 0 0 1 0 1 +July 2019 july J Ju Jul July BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 7 0 no 0 10 0 0 0 0 1 +Below is below B Be Bel Belo BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 0 -: 2 10 0 0 0 0 1 ++-------------+-----------------+-----------------------------------+ +-------------+-----------------+-----------------------------------+ +-------------+-----------------+-----------------------------------+ + +- +-- +--- BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 7 0 ----------------------------------------------------------------- 65 10 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +Abbrev Abbrev abbrev A Ab Abb Abbr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 7 0 no 0 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +Name Name name N Na Nam Name BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| Description | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 2 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 ++-------------+-----------------+-----------------------------------+ +-------------+-----------------+-----------------------------------+ +-------------+-----------------+-----------------------------------+ + +- +-- +--- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 7 0 ----------------------------------------------------------------- 65 10 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +T_KEYID T_KEYID t_keyid T T_ T_K T_KE BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 7 0 no 0 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +SignerKeyId SignerKeyId signerkeyid S Si Sig Sign BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 7 0 no 0 1 0 0 0 0 1 +| An | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 4 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +(Section (Section (section ( (S (Se (Sec BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 7 0 ( 1 1 0 0 0 0 1 +| secret | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 4 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +3.6.4.1.4.1) | 3.6.4.1.4.1) 3 3. 3.6 3.6. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 0 .....). 7 5 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| T_PUBLICKEY | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 2 0 0 0 0 1 +Public Key public P Pu Pub Publ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 0 no 0 1 0 0 0 0 1 +| DER-encoded | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 -. 2 3 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +(Section (Section (section ( (S (Se (Sec BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 7 0 ( 1 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +3.6.4.1.4.2) | 3.6.4.1.4.2) 3 3. 3.6 3.6. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 0 .....) 6 2 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +T_CERT T_CERT t_cert T T_ T_C T_CE BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 7 0 no 0 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +Certificate Certificate certificate C Ce Cer Cert BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 0 no 0 1 0 0 0 0 1 +| DER-encoded | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 -.. 3 4 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +(Section (Section (section ( (S (Se (Sec BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 7 0 ( 1 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +3.6.4.1.4.3) | 3.6.4.1.4.3) 3 3. 3.6 3.6. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 0 .....) 6 2 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| T_KEYLINK | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 2 0 0 0 0 1 +KeyLink KeyLink keylink K Ke Key KeyL BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 7 0 no 0 1 0 0 0 0 1 +| A | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 . 1 3 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +(Section (Section (section ( (S (Se (Sec BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 7 0 ( 1 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +3.6.4.1.4.4) | 3.6.4.1.4.4) 3 3. 3.6 3.6. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 0 .....) 6 2 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| T_SIGTIME | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 7 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +(Section (Section (section ( (S (Se (Sec BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 7 0 ( 1 1 0 0 0 0 1 +| indicating | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 4 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +3.6.4.1.4.5) | 3.6.4.1.4.5) 3 3. 3.6 3.6. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 0 .....). 7 5 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 ++-------------+-----------------+-----------------------------------+ +-------------+-----------------+-----------------------------------+ +-------------+-----------------+-----------------------------------+ + +- +-- +--- BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 7 0 ----------------------------------------------------------------- 65 10 0 0 0 0 1 +Table 11: table T Ta Tab Tabl BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 8 :- 2 10 0 0 0 0 1 +3.6.4.1.4.1. KeyId 3.6.4.1.4.1. 3 3. 3.6 3.6. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 8 ...... 6 10 0 0 0 0 1 +The KeyId the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 9 . 1 9 0 0 0 0 1 +similar to similar s si sim simi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 9 .(... 5 10 0 0 0 0 1 +of [RFC5280]). of o of of of BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 9 [])., 5 10 0 0 0 0 1 +as from as a as as as BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 9 -. 2 9 0 0 0 0 1 +private key private p pr pri priv BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 9 . 1 7 0 0 0 0 1 +The KeyId the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 10 ... 3 9 0 0 0 0 1 +an application an a an an an BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 7 10 -, 2 10 0 0 0 0 1 +of the of o of of of BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 10 . 1 3 0 0 0 0 1 +Mosko, et mosko, M Mo Mos Mosk BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 7 11 ,. 2 10 0 0 1 0 0 +Experimental Experimental experimental E Ex Exp Expe BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 11 no 0 9 0 0 0 0 0 +[Page 28] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 7 11 [] 2 7 0 0 0 0 0 +RFC 8609 rfc R RF RFC RFC BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 7 0 no 0 10 0 0 0 0 1 +CCNx TLV ccnx C CC CCN CCNx BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 7 0 no 0 9 0 0 1 0 1 +July 2019 july J Ju Jul July BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 7 0 no 0 10 0 0 0 0 1 +1 1 1 1 1 1 1 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +2 2 2 2 2 2 2 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +3 3 3 3 3 3 3 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +0 1 0 0 0 0 0 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 7 0 no 0 9 0 0 0 0 1 ++---------------+---------------+---------------+---------------+ +---------------+---------------+---------------+---------------+ +---------------+---------------+---------------+---------------+ + +- +-- +--- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 7 0 ------------------------------------------------------------ 60 10 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +T_KEYID T_KEYID t_keyid T T_ T_K T_KE BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 7 0 no 0 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +LENGTH+4 LENGTH+4 length+4 L LE LEN LENG BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 0 no 0 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 ++---------------+---------------+---------------+---------------+ +---------------+---------------+---------------+---------------+ +---------------+---------------+---------------+---------------+ + +- +-- +--- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 7 0 ------------------------------------------------------------ 60 10 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +<hash type> <hash < <h <ha <has BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 7 0 no 0 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +LENGTH LENGTH length L LE LEN LENG BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 7 0 no 0 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 ++---------------+---------------+---------------+---------------+ +---------------+---------------+---------------+---------------+ +---------------+---------------+---------------+---------------+ + +- +-- +--- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 7 0 ------------------------------------------------------------ 60 10 0 0 0 0 1 +/ / / / / / / BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 / 1 0 0 0 0 0 1 +LENGTH octets length L LE LEN LENG BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 7 0 no 0 3 0 0 0 0 1 +/ / / / / / / BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 / 1 0 0 0 0 0 1 ++---------------+---------------+---------------+---------------+ +---------------+---------------+---------------+---------------+ +---------------+---------------+---------------+---------------+ + +- +-- +--- BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 7 0 ------------------------------------------------------------ 60 10 0 0 0 0 1 +Figure 24: figure F Fi Fig Figu BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 4 : 1 10 0 0 0 0 1 +3.6.4.1.4.2. Public 3.6.4.1.4.2. 3 3. 3.6 3.6. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 4 ...... 6 10 0 0 0 0 1 +A Public a A A A A BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 1 0 0 0 0 0 7 4 -, 2 10 0 0 0 0 1 +X.509 certificate. x.509 X X. X.5 X.50 BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 4 .. 2 2 0 0 0 0 1 +1 1 1 1 1 1 1 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 7 4 no 0 0 0 0 0 0 1 +2 2 2 2 2 2 2 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 7 4 no 0 0 0 0 0 0 1 +3 3 3 3 3 3 3 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 7 4 no 0 0 0 0 0 0 1 +0 1 0 0 0 0 0 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 7 4 no 0 9 0 0 0 0 1 ++---------------+---------------+---------------+---------------+ +---------------+---------------+---------------+---------------+ +---------------+---------------+---------------+---------------+ + +- +-- +--- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 7 4 ------------------------------------------------------------ 60 10 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 4 no 0 0 0 0 0 0 1 +T_PUBLICKEY T_PUBLICKEY t_publickey T T_ T_P T_PU BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 7 4 no 0 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 4 no 0 0 0 0 0 0 1 +Length Length length L Le Len Leng BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 4 no 0 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 4 no 0 0 0 0 0 0 1 ++---------------+---------------+---------------+---------------+ +---------------+---------------+---------------+---------------+ +---------------+---------------+---------------+---------------+ + +- +-- +--- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 7 4 ------------------------------------------------------------ 60 10 0 0 0 0 1 +/ / / / / / / BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 4 / 1 0 0 0 0 0 1 +Public Key public P Pu Pub Publ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 4 (-) 3 4 0 0 0 0 1 +/ / / / / / / BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 4 / 1 0 0 0 0 0 1 ++---------------+---------------+---------------+---------------+ +---------------+---------------+---------------+---------------+ +---------------+---------------+---------------+---------------+ + +- +-- +--- BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 7 4 ------------------------------------------------------------ 60 10 0 0 0 0 1 +Figure 25: figure F Fi Fig Figu BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 7 : 1 10 0 0 0 0 1 +3.6.4.1.4.3. Certificate 3.6.4.1.4.3. 3 3. 3.6 3.6. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 7 ...... 6 10 0 0 0 0 1 +A Certificate a A A A A BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 1 0 0 0 0 0 7 8 -.. 3 10 0 0 0 0 1 +(Section 3.6.4.1.4.1) (section ( (S (Se (Sec BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 7 8 (.....). 8 8 0 0 0 0 1 +1 1 1 1 1 1 1 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 7 8 no 0 0 0 0 0 0 1 +2 2 2 2 2 2 2 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 7 8 no 0 0 0 0 0 0 1 +3 3 3 3 3 3 3 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 7 8 no 0 0 0 0 0 0 1 +0 1 0 0 0 0 0 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 7 8 no 0 9 0 0 0 0 1 ++---------------+---------------+---------------+---------------+ +---------------+---------------+---------------+---------------+ +---------------+---------------+---------------+---------------+ + +- +-- +--- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 7 8 ------------------------------------------------------------ 60 10 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 8 no 0 0 0 0 0 0 1 +T_CERT T_CERT t_cert T T_ T_C T_CE BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 7 8 no 0 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 8 no 0 0 0 0 0 0 1 +Length Length length L Le Len Leng BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 8 no 0 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 8 no 0 0 0 0 0 0 1 ++---------------+---------------+---------------+---------------+ +---------------+---------------+---------------+---------------+ +---------------+---------------+---------------+---------------+ + +- +-- +--- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 7 8 ------------------------------------------------------------ 60 10 0 0 0 0 1 +/ / / / / / / BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 8 / 1 0 0 0 0 0 1 +Certificate (DER-encoded certificate C Ce Cer Cert BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 8 (-.) 4 4 0 0 0 0 1 +/ / / / / / / BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 8 / 1 0 0 0 0 0 1 ++---------------+---------------+---------------+---------------+ +---------------+---------------+---------------+---------------+ +---------------+---------------+---------------+---------------+ + +- +-- +--- BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 7 8 ------------------------------------------------------------ 60 10 0 0 0 0 1 +Figure 26: figure F Fi Fig Figu BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 11 : 1 10 0 0 0 0 1 +Mosko, et mosko, M Mo Mos Mosk BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 7 11 ,. 2 10 0 0 1 0 0 +Experimental Experimental experimental E Ex Exp Expe BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 11 no 0 9 0 0 0 0 0 +[Page 29] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 7 11 [] 2 7 0 0 0 0 0 +RFC 8609 rfc R RF RFC RFC BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 0 no 0 10 0 0 0 0 1 +CCNx TLV ccnx C CC CCN CCNx BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 8 0 no 0 9 0 0 1 0 1 +July 2019 july J Ju Jul July BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 8 0 no 0 10 0 0 0 0 1 +3.6.4.1.4.4. KeyLink 3.6.4.1.4.4. 3 3. 3.6 3.6. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 0 ...... 6 10 0 0 0 0 1 +A KeyLink a A A A A BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 1 0 0 0 0 0 8 0 . 1 10 0 0 0 0 1 +The KeyLink the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 0 ,, 2 10 0 0 0 0 1 +Content Object content C Co Con Cont BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 0 , 1 9 0 0 0 0 1 +key. Likewise, key. k ke key key. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 0 ., 2 9 0 0 0 0 1 +ContentObject, not contentobject, C Co Con Cont BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 8 0 ,. 2 7 0 0 0 0 1 +1 1 1 1 1 1 1 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 8 1 no 0 0 0 0 0 0 1 +2 2 2 2 2 2 2 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 8 1 no 0 0 0 0 0 0 1 +3 3 3 3 3 3 3 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 8 1 no 0 0 0 0 0 0 1 +0 1 0 0 0 0 0 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 8 1 no 0 9 0 0 0 0 1 ++---------------+---------------+-------------------------------+ +---------------+---------------+-------------------------------+ +---------------+---------------+-------------------------------+ + +- +-- +--- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 1 ------------------------------------------------------------- 61 10 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 1 no 0 0 0 0 0 0 1 +T_KEYLINK T_KEYLINK t_keylink T T_ T_K T_KE BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 1 no 0 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 1 no 0 0 0 0 0 0 1 +Length Length length L Le Len Leng BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 1 no 0 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 1 no 0 0 0 0 0 0 1 ++---------------+---------------+-------------------------------+ +---------------+---------------+-------------------------------+ +---------------+---------------+-------------------------------+ + +- +-- +--- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 1 ------------------------------------------------------------- 61 10 0 0 0 0 1 +/ Link / / / / / BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 1 / 1 1 0 0 0 0 1 +/ / / / / / / BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 1 / 1 0 0 0 0 0 1 ++---------------------------------------------------------------+ +---------------------------------------------------------------+ +---------------------------------------------------------------+ + +- +-- +--- BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 1 --------------------------------------------------------------- 63 10 0 0 0 0 1 +Figure 27: figure F Fi Fig Figu BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 4 : 1 10 0 0 0 0 1 +3.6.4.1.4.5. SignatureTime 3.6.4.1.4.5. 3 3. 3.6 3.6. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 4 ...... 6 10 0 0 0 0 1 +The SignatureTime the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 5 no 0 9 0 0 0 0 1 +which a which w wh whi whic BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 5 . 1 9 0 0 0 0 1 +current time current c cu cur curr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 5 . 1 9 0 0 0 0 1 +to determine to t to to to BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 5 no 0 9 0 0 0 0 1 +validity period validity v va val vali BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 5 , 1 9 0 0 0 0 1 +with other with w wi wit with BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 5 . 1 9 0 0 0 0 1 +any time any a an any any BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 5 , 1 9 0 0 0 0 1 +been created been b be bee been BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 5 . 1 9 0 0 0 0 1 +always include always a al alw alwa BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 5 no 0 10 0 0 0 0 1 +(e.g., HMAC (e.g., ( (e (e. (e.g BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 5 (..,). 6 3 0 0 0 0 1 +SignatureTime is signaturetime S Si Sig Sign BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 8 7 no 0 9 0 0 0 0 1 +indicates when indicates i in ind indi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 7 ( 1 8 0 0 0 0 1 +milliseconds since milliseconds m mi mil mill BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 7 ).-. 4 10 0 0 0 0 1 +1 1 1 1 1 1 1 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 8 8 no 0 0 0 0 0 0 1 +2 2 2 2 2 2 2 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 8 8 no 0 0 0 0 0 0 1 +3 3 3 3 3 3 3 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 8 8 no 0 0 0 0 0 0 1 +0 1 0 0 0 0 0 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 8 8 no 0 9 0 0 0 0 1 ++---------------+---------------+-------------------------------+ +---------------+---------------+-------------------------------+ +---------------+---------------+-------------------------------+ + +- +-- +--- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 8 ------------------------------------------------------------- 61 10 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 8 no 0 0 0 0 0 0 1 +T_SIGTIME T_SIGTIME t_sigtime T T_ T_S T_SI BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 8 no 0 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 8 no 0 0 0 0 0 0 1 +8 8 8 8 8 8 8 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 8 8 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 8 no 0 0 0 0 0 0 1 ++---------------+---------------+-------------------------------+ +---------------+---------------+-------------------------------+ +---------------+---------------+-------------------------------+ + +- +-- +--- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 8 ------------------------------------------------------------- 61 10 0 0 0 0 1 +/ / / / / / / BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 8 / 1 0 0 0 0 0 1 +SignatureTime SignatureTime signaturetime S Si Sig Sign BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 8 8 no 0 2 0 0 0 0 1 +/ / / / / / / BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 8 / 1 0 0 0 0 0 1 ++---------------------------------------------------------------+ +---------------------------------------------------------------+ +---------------------------------------------------------------+ + +- +-- +--- BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 8 --------------------------------------------------------------- 63 10 0 0 0 0 1 +Figure 28: figure F Fi Fig Figu BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 11 : 1 10 0 0 0 0 1 +Mosko, et mosko, M Mo Mos Mosk BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 8 11 ,. 2 10 0 0 1 0 0 +Experimental Experimental experimental E Ex Exp Expe BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 11 no 0 9 0 0 0 0 0 +[Page 30] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 11 [] 2 7 0 0 0 0 0 +RFC 8609 rfc R RF RFC RFC BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 0 no 0 10 0 0 0 0 1 +CCNx TLV ccnx C CC CCN CCNx BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 8 0 no 0 9 0 0 1 0 1 +July 2019 july J Ju Jul July BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 8 0 no 0 10 0 0 0 0 1 +3.6.4.1.5. Validation 3.6.4.1.5. 3 3. 3.6 3.6. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 0 ..... 5 10 0 0 0 0 1 +As an as A As As As BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 0 -, 2 10 0 0 0 0 1 +validation would validation v va val vali BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 0 : 1 3 0 0 0 0 1 +1 1 1 1 1 1 1 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 8 0 no 0 0 0 0 0 0 1 +2 2 2 2 2 2 2 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 8 0 no 0 0 0 0 0 0 1 +3 3 3 3 3 3 3 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 8 0 no 0 0 0 0 0 0 1 +0 1 0 0 0 0 0 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 8 0 no 0 9 0 0 0 0 1 ++---------------+---------------+---------------+---------------+ +---------------+---------------+---------------+---------------+ +---------------+---------------+---------------+---------------+ + +- +-- +--- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 0 ------------------------------------------------------------ 60 10 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 0 0 0 0 0 1 +T_VALIDATION_ALG T_VALIDATION_ALG t_validation_alg T T_ T_V T_VA BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 0 no 0 2 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 0 0 0 0 0 1 +4 4 4 4 4 4 4 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 8 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 0 0 0 0 0 1 ++---------------+---------------+---------------+---------------+ +---------------+---------------+---------------+---------------+ +---------------+---------------+---------------+---------------+ + +- +-- +--- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 0 ------------------------------------------------------------ 60 10 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 0 0 0 0 0 1 +T_CRC32C T_CRC32C t_crc32c T T_ T_C T_CR BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 0 no 0 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 0 0 0 0 0 1 +0 0 0 0 0 0 0 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 8 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 0 0 0 0 0 1 ++---------------+---------------+---------------+---------------+ +---------------+---------------+---------------+---------------+ +---------------+---------------+---------------+---------------+ + +- +-- +--- BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 0 ------------------------------------------------------------ 60 10 0 0 0 0 1 +Figure 29: figure F Fi Fig Figu BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 4 : 1 10 0 0 0 0 1 +As an as A As As As BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 4 -, 2 10 0 0 0 0 1 +using a using u us usi usin BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 4 : 1 4 0 0 0 0 1 +1 1 1 1 1 1 1 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 8 5 no 0 0 0 0 0 0 1 +2 2 2 2 2 2 2 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 8 5 no 0 0 0 0 0 0 1 +3 3 3 3 3 3 3 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 8 5 no 0 0 0 0 0 0 1 +0 1 0 0 0 0 0 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 8 5 no 0 9 0 0 0 0 1 ++---------------+---------------+---------------+---------------+ +---------------+---------------+---------------+---------------+ +---------------+---------------+---------------+---------------+ + +- +-- +--- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 5 ------------------------------------------------------------ 60 10 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 5 no 0 0 0 0 0 0 1 +T_VALIDATION_ALG T_VALIDATION_ALG t_validation_alg T T_ T_V T_VA BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 5 no 0 2 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 5 no 0 0 0 0 0 0 1 +40 40 40 4 40 40 40 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 0 0 0 0 0 0 0 0 8 5 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 5 no 0 0 0 0 0 0 1 ++---------------+---------------+---------------+---------------+ +---------------+---------------+---------------+---------------+ +---------------+---------------+---------------+---------------+ + +- +-- +--- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 5 ------------------------------------------------------------ 60 10 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 5 no 0 0 0 0 0 0 1 +T_HMAC-SHA256 T_HMAC-SHA256 t_hmac-sha256 T T_ T_H T_HM BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 5 - 1 2 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 5 no 0 0 0 0 0 0 1 +36 36 36 3 36 36 36 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 0 0 0 0 0 0 0 0 8 5 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 5 no 0 0 0 0 0 0 1 ++---------------+---------------+---------------+---------------+ +---------------+---------------+---------------+---------------+ +---------------+---------------+---------------+---------------+ + +- +-- +--- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 5 ------------------------------------------------------------ 60 10 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 5 no 0 0 0 0 0 0 1 +T_KEYID T_KEYID t_keyid T T_ T_K T_KE BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 5 no 0 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 5 no 0 0 0 0 0 0 1 +32 32 32 3 32 32 32 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 0 0 0 0 0 0 0 0 8 5 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 5 no 0 0 0 0 0 0 1 ++---------------+---------------+---------------+---------------+ +---------------+---------------+---------------+---------------+ +---------------+---------------+---------------+---------------+ + +- +-- +--- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 5 ------------------------------------------------------------ 60 10 0 0 0 0 1 +/ / / / / / / BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 5 / 1 0 0 0 0 0 1 +KeyId KeyId keyid K Ke Key KeyI BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 8 5 no 0 0 0 0 0 0 1 +/ / / / / / / BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 5 / 1 0 0 0 0 0 1 +/---------------+---------------+-------------------------------+ /---------------+---------------+-------------------------------+ /---------------+---------------+-------------------------------+ / /- /-- /--- BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 5 /------------------------------------------------------------- 62 10 0 0 0 0 1 +Figure 30: figure F Fi Fig Figu BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 11 :- 2 10 0 0 0 0 1 +Mosko, et mosko, M Mo Mos Mosk BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 8 11 ,. 2 10 0 0 1 0 0 +Experimental Experimental experimental E Ex Exp Expe BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 11 no 0 9 0 0 0 0 0 +[Page 31] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 11 [] 2 7 0 0 0 0 0 +RFC 8609 rfc R RF RFC RFC BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 0 no 0 10 0 0 0 0 1 +CCNx TLV ccnx C CC CCN CCNx BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 8 0 no 0 9 0 0 1 0 1 +July 2019 july J Ju Jul July BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 8 0 no 0 10 0 0 0 0 1 +As an as A As As As BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 0 -, 2 10 0 0 0 0 1 +public-key signature public-key p pu pub publ BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 0 -: 2 9 0 0 0 0 1 +1 1 1 1 1 1 1 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 8 0 no 0 0 0 0 0 0 1 +2 2 2 2 2 2 2 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 8 0 no 0 0 0 0 0 0 1 +3 3 3 3 3 3 3 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 8 0 no 0 0 0 0 0 0 1 +0 1 0 0 0 0 0 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 8 0 no 0 9 0 0 0 0 1 ++---------------+---------------+---------------+---------------+ +---------------+---------------+---------------+---------------+ +---------------+---------------+---------------+---------------+ + +- +-- +--- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 0 ------------------------------------------------------------ 60 10 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 0 0 0 0 0 1 +T_VALIDATION_ALG T_VALIDATION_ALG t_validation_alg T T_ T_V T_VA BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 0 no 0 2 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 0 0 0 0 0 1 +44 octets 44 4 44 44 44 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 0 0 0 0 0 0 0 0 8 0 no 0 4 0 0 0 0 1 ++---------------+---------------+---------------+---------------+ +---------------+---------------+---------------+---------------+ +---------------+---------------+---------------+---------------+ + +- +-- +--- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 0 ------------------------------------------------------------ 60 10 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 0 0 0 0 0 1 +T_RSA-SHA256 T_RSA-SHA256 t_rsa-sha256 T T_ T_R T_RS BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 0 - 1 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 0 0 0 0 0 1 +40 octets 40 4 40 40 40 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 0 0 0 0 0 0 0 0 8 0 no 0 4 0 0 0 0 1 ++---------------+---------------+---------------+---------------+ +---------------+---------------+---------------+---------------+ +---------------+---------------+---------------+---------------+ + +- +-- +--- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 0 ------------------------------------------------------------ 60 10 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 0 0 0 0 0 1 +T_KEYID T_KEYID t_keyid T T_ T_K T_KE BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 0 no 0 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 0 0 0 0 0 1 +32 32 32 3 32 32 32 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 0 0 0 0 0 0 0 0 8 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 0 0 0 0 0 1 ++---------------+---------------+---------------+---------------+ +---------------+---------------+---------------+---------------+ +---------------+---------------+---------------+---------------+ + +- +-- +--- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 0 ------------------------------------------------------------ 60 10 0 0 0 0 1 +/ / / / / / / BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 / 1 0 0 0 0 0 1 +KeyId KeyId keyid K Ke Key KeyI BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 8 0 no 0 0 0 0 0 0 1 +/ / / / / / / BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 / 1 0 0 0 0 0 1 +/---------------+---------------+-------------------------------+ /---------------+---------------+-------------------------------+ /---------------+---------------+-------------------------------+ / /- /-- /--- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 0 /------------------------------------------------------------- 62 10 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 0 0 0 0 0 1 +T_PUBLICKEY T_PUBLICKEY t_publickey T T_ T_P T_PU BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 0 no 0 1 0 0 0 0 1 +| Variable | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 () 2 5 0 0 0 0 1 ++---------------+---------------+---------------+---------------+ +---------------+---------------+---------------+---------------+ +---------------+---------------+---------------+---------------+ + +- +-- +--- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 0 ------------------------------------------------------------ 60 10 0 0 0 0 1 +/ / / / / / / BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 / 1 0 0 0 0 0 1 +Public Key public P Pu Pub Publ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 0 (-) 3 4 0 0 0 0 1 +/ / / / / / / BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 / 1 0 0 0 0 0 1 ++---------------+---------------+---------------+---------------+ +---------------+---------------+---------------+---------------+ +---------------+---------------+---------------+---------------+ + +- +-- +--- BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 0 ------------------------------------------------------------ 60 10 0 0 0 0 1 +Figure 31: figure F Fi Fig Figu BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 7 :- 2 10 0 0 0 0 1 +3.6.4.2. Validation 3.6.4.2. 3 3. 3.6 3.6. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 7 .... 4 10 0 0 0 0 1 +1 1 1 1 1 1 1 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 8 8 no 0 0 0 0 0 0 1 +2 2 2 2 2 2 2 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 8 8 no 0 0 0 0 0 0 1 +3 3 3 3 3 3 3 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 8 8 no 0 0 0 0 0 0 1 +0 1 0 0 0 0 0 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 8 8 no 0 9 0 0 0 0 1 ++---------------+---------------+---------------+---------------+ +---------------+---------------+---------------+---------------+ +---------------+---------------+---------------+---------------+ + +- +-- +--- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 8 ------------------------------------------------------------ 60 10 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 8 no 0 0 0 0 0 0 1 +T_VALIDATION_PAYLOAD T_VALIDATION_PAYLOAD t_validation_payload T T_ T_V T_VA BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 8 no 0 3 0 0 0 0 1 +| ValidationPayloadLength | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 8 no 0 3 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 8 no 0 0 0 0 0 0 1 ++---------------+---------------+---------------+---------------+ +---------------+---------------+---------------+---------------+ +---------------+---------------+---------------+---------------+ + +- +-- +--- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 8 ------------------------------------------------------------ 60 10 0 0 0 0 1 +/ Type-dependent / / / / / BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 8 /- 2 3 0 0 0 0 1 +/ / / / / / / BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 8 / 1 0 0 0 0 0 1 ++---------------+---------------+---------------+---------------+ +---------------+---------------+---------------+---------------+ +---------------+---------------+---------------+---------------+ + +- +-- +--- BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 8 ------------------------------------------------------------ 60 10 0 0 0 0 1 +Figure 32: figure F Fi Fig Figu BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 11 : 1 10 0 0 0 0 1 +The ValidationPayload the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 11 , 1 10 0 0 0 0 1 +CRC32C code crc32c C CR CRC CRC3 BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 11 . 1 5 0 0 0 0 1 +Mosko, et mosko, M Mo Mos Mosk BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 8 11 ,. 2 10 0 0 1 0 0 +Experimental Experimental experimental E Ex Exp Expe BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 11 no 0 9 0 0 0 0 0 +[Page 32] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 11 [] 2 7 0 0 0 0 0 +RFC 8609 rfc R RF RFC RFC BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 0 no 0 10 0 0 0 0 1 +CCNx TLV ccnx C CC CCN CCNx BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 8 0 no 0 9 0 0 1 0 1 +July 2019 july J Ju Jul July BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 8 0 no 0 10 0 0 0 0 1 +4. IANA 4. 4 4. 4. 4. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 0 . 1 10 0 0 0 0 1 +This section this T Th Thi This BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 0 no 0 10 0 0 0 0 1 +registered. Each registered. r re reg regi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 0 . 1 9 0 0 0 0 1 +expanding the expanding e ex exp expa BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 0 ,.., 4 9 0 0 0 0 1 +types. As types. t ty typ type BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 0 .[], 4 10 0 0 0 0 1 +"Content-Centric Networking "content-centric " "C "Co "Con BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 0 "-()" 5 8 0 0 0 0 1 +subregistries. subregistries. subregistries. s su sub subr BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 0 . 1 2 0 0 0 0 1 +4.1. Packet 4.1. 4 4. 4.1 4.1. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 3 .. 2 10 0 0 0 0 1 +IANA has iana I IA IAN IANA BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 3 "" 2 10 0 0 0 0 1 +packet types packet p pa pac pack BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 3 . 1 9 0 0 0 0 1 +Required. The required. R Re Req Requ BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 3 ..-. 4 8 0 0 0 0 1 ++------+-------------+----------------------------------+ +------+-------------+----------------------------------+ +------+-------------+----------------------------------+ + +- +-- +--- BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 5 ----------------------------------------------------- 53 10 0 0 0 0 1 +| Type | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 5 no 0 1 0 0 0 0 1 +Name Name name N Na Nam Name BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 5 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 5 no 0 0 0 0 0 0 1 +Reference Reference reference R Re Ref Refe BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 5 no 0 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 5 no 0 0 0 0 0 0 1 ++------+-------------+----------------------------------+ +------+-------------+----------------------------------+ +------+-------------+----------------------------------+ + +- +-- +--- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 5 ----------------------------------------------------- 53 10 0 0 0 0 1 +| 0x00 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 5 (.) 3 10 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 5 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 5 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 5 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 5 no 0 0 0 0 0 0 1 +| 0x01 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 5 (.) 3 9 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 5 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 5 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 5 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 5 no 0 0 0 0 0 0 1 +| 0x02 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 5 (.) 3 9 0 0 0 0 1 ++------+-------------+----------------------------------+ +------+-------------+----------------------------------+ +------+-------------+----------------------------------+ + +- +-- +--- BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 5 ----------------------------------------------------- 53 10 0 0 0 0 1 +Packet Types packet P Pa Pac Pack BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 11 no 0 10 0 0 0 0 1 +Mosko, et mosko, M Mo Mos Mosk BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 8 11 ,. 2 10 0 0 1 0 0 +Experimental Experimental experimental E Ex Exp Expe BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 11 no 0 9 0 0 0 0 0 +[Page 33] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 11 [] 2 7 0 0 0 0 0 +RFC 8609 rfc R RF RFC RFC BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 0 no 0 10 0 0 0 0 1 +CCNx TLV ccnx C CC CCN CCNx BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 8 0 no 0 9 0 0 1 0 1 +July 2019 july J Ju Jul July BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 8 0 no 0 10 0 0 0 0 1 +4.2. Interest 4.2. 4 4. 4.2 4.2. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 0 .. 2 10 0 0 0 0 1 +IANA has iana I IA IAN IANA BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 0 "" 2 10 0 0 0 0 1 +allocated the allocated a al all allo BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 0 . 1 9 0 0 0 0 1 +registration procedure registration r re reg regi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 0 . 1 10 0 0 0 0 1 +1 octet. 1 1 1 1 1 BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 9 0 .-. 3 4 0 0 0 0 1 ++------+---------------------------------------+--------------------+ +------+---------------------------------------+--------------------+ +------+---------------------------------------+--------------------+ + +- +-- +--- BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 1 ----------------------------------------------------------------- 65 10 0 0 0 0 1 +| Type | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 1 no 0 1 0 0 0 0 1 +Name Name name N Na Nam Name BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 1 no 0 0 0 0 0 0 1 +Reference Reference reference R Re Ref Refe BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 1 no 0 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 1 no 0 0 0 0 0 0 1 ++------+---------------------------------------+--------------------+ +------+---------------------------------------+--------------------+ +------+---------------------------------------+--------------------+ + +- +-- +--- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 1 ----------------------------------------------------------------- 65 10 0 0 0 0 1 +| 0x00 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 1 no 0 1 0 0 0 0 1 +Reserved Reserved reserved R Re Res Rese BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 1 no 0 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 1 no 0 0 0 0 0 0 1 +| 0x01 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 1 no 0 1 0 0 0 0 1 +T_RETURN_NO_ROUTE T_RETURN_NO_ROUTE t_return_no_route T T_ T_R T_RE BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 1 no 0 2 0 0 0 0 1 +| Fixed | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 1 no 0 3 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 1 no 0 0 0 0 0 0 1 +| (Section | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 1 (...) 5 3 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 1 no 0 0 0 0 0 0 1 +| 0x02 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 1 no 0 1 0 0 0 0 1 +T_RETURN_LIMIT_EXCEEDED T_RETURN_LIMIT_EXCEEDED t_return_limit_exceeded T T_ T_R T_RE BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 1 no 0 3 0 0 0 0 1 +| Fixed | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 1 no 0 3 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 1 no 0 0 0 0 0 0 1 +| (Section | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 1 (...) 5 3 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 1 no 0 0 0 0 0 0 1 +| 0x03 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 1 no 0 1 0 0 0 0 1 +T_RETURN_NO_RESOURCES T_RETURN_NO_RESOURCES t_return_no_resources T T_ T_R T_RE BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 1 no 0 3 0 0 0 0 1 +| Fixed | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 1 no 0 3 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 1 no 0 0 0 0 0 0 1 +| (Section | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 1 (...) 5 3 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 1 no 0 0 0 0 0 0 1 +| 0x04 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 1 no 0 1 0 0 0 0 1 +T_RETURN_PATH_ERROR T_RETURN_PATH_ERROR t_return_path_error T T_ T_R T_RE BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 1 no 0 2 0 0 0 0 1 +| Fixed | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 1 no 0 3 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 1 no 0 0 0 0 0 0 1 +| (Section | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 1 (...) 5 3 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 1 no 0 0 0 0 0 0 1 +| 0x05 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 1 no 0 1 0 0 0 0 1 +T_RETURN_PROHIBITED T_RETURN_PROHIBITED t_return_prohibited T T_ T_R T_RE BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 1 no 0 2 0 0 0 0 1 +| Fixed | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 1 no 0 3 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 1 no 0 0 0 0 0 0 1 +| (Section | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 1 (...) 5 3 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 1 no 0 0 0 0 0 0 1 +| 0x06 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 1 no 0 1 0 0 0 0 1 +T_RETURN_CONGESTED T_RETURN_CONGESTED t_return_congested T T_ T_R T_RE BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 1 no 0 2 0 0 0 0 1 +| Fixed | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 1 no 0 3 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 1 no 0 0 0 0 0 0 1 +| (Section | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 1 (...) 5 3 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 1 no 0 0 0 0 0 0 1 +| 0x07 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 1 no 0 1 0 0 0 0 1 +T_RETURN_MTU_TOO_LARGE T_RETURN_MTU_TOO_LARGE t_return_mtu_too_large T T_ T_R T_RE BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 1 no 0 3 0 0 0 0 1 +| Fixed | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 1 no 0 3 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 1 no 0 0 0 0 0 0 1 +| (Section | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 1 (...) 5 3 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 1 no 0 0 0 0 0 0 1 +| 0x08 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 1 no 0 10 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 1 no 0 0 0 0 0 0 1 +| (Section | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 1 (...) 5 3 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 1 no 0 0 0 0 0 0 1 +| 0x09 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 1 no 0 1 0 0 0 0 1 +T_RETURN_MALFORMED_INTEREST T_RETURN_MALFORMED_INTEREST t_return_malformed_interest T T_ T_R T_RE BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 1 no 0 4 0 0 0 0 1 +| Fixed | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 1 no 0 3 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 1 no 0 0 0 0 0 0 1 +| (Section | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 1 (...) 5 3 0 0 0 0 1 ++------+---------------------------------------+--------------------+ +------+---------------------------------------+--------------------+ +------+---------------------------------------+--------------------+ + +- +-- +--- BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 1 ----------------------------------------------------------------- 65 10 0 0 0 0 1 +CCNx Interest ccnx C CC CCN CCNx BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 9 11 no 0 10 0 0 0 0 1 +Mosko, et mosko, M Mo Mos Mosk BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 9 11 ,. 2 10 0 0 1 0 0 +Experimental Experimental experimental E Ex Exp Expe BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 11 no 0 9 0 0 0 0 0 +[Page 34] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 11 [] 2 7 0 0 0 0 0 +RFC 8609 rfc R RF RFC RFC BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 0 no 0 10 0 0 0 0 1 +CCNx TLV ccnx C CC CCN CCNx BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 9 0 no 0 9 0 0 1 0 1 +July 2019 july J Ju Jul July BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 9 0 no 0 10 0 0 0 0 1 +4.3. Hop-by-Hop 4.3. 4 4. 4.3 4.3. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 0 ..-- 4 10 0 0 0 0 1 +IANA has iana I IA IAN IANA BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 0 "--" 4 10 0 0 0 0 1 +the hop-by-hop the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 0 --. 3 10 0 0 0 0 1 +RFC Required. rfc R RF RFC RFC BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 0 .. 2 8 0 0 0 0 1 +0x0000-0xFFFF. 0x0000-0xFFFF. 0x0000-0xffff. 0 0x 0x0 0x00 BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 0 -. 2 2 0 0 0 0 1 ++---------------+-------------+-------------------------------------+ +---------------+-------------+-------------------------------------+ +---------------+-------------+-------------------------------------+ + +- +-- +--- BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 1 ----------------------------------------------------------------- 65 10 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 1 no 0 0 0 0 0 0 1 +Type Type type T Ty Typ Type BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 1 no 0 0 0 0 0 0 1 +Name Name name N Na Nam Name BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 1 no 0 0 0 0 0 0 1 +Reference Reference reference R Re Ref Refe BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 1 no 0 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 1 no 0 0 0 0 0 0 1 ++---------------+-------------+-------------------------------------+ +---------------+-------------+-------------------------------------+ +---------------+-------------+-------------------------------------+ + +- +-- +--- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 1 ----------------------------------------------------------------- 65 10 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 1 no 0 0 0 0 0 0 1 +0x0000 0x0000 0x0000 0 0x 0x0 0x00 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 1 no 0 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 1 no 0 0 0 0 0 0 1 +Reserved | reserved R Re Res Rese BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 1 no 0 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 1 no 0 0 0 0 0 0 1 +0x0001 0x0001 0x0001 0 0x 0x0 0x00 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 1 no 0 1 0 0 0 0 1 +| T_INTLIFE | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 1 no 0 2 0 0 0 0 1 +Hop-by-hop TLV hop-by-hop H Ho Hop Hop- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 9 1 --( 3 4 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 1 no 0 0 0 0 0 0 1 +3.4) 3.4) 3.4) 3 3. 3.4 3.4) BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 1 .) 2 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 1 no 0 0 0 0 0 0 1 +0x0002 0x0002 0x0002 0 0x 0x0 0x00 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 1 no 0 1 0 0 0 0 1 +| T_CACHETIME | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 1 no 0 2 0 0 0 0 1 +Hop-by-hop TLV hop-by-hop H Ho Hop Hop- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 9 1 --( 3 4 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 1 no 0 0 0 0 0 0 1 +3.4) 3.4) 3.4) 3 3. 3.4 3.4) BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 1 .) 2 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 1 no 0 0 0 0 0 0 1 +0x0003 0x0003 0x0003 0 0x 0x0 0x00 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 1 no 0 1 0 0 0 0 1 +| T_MSGHASH | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 1 no 0 2 0 0 0 0 1 +Hop-by-hop TLV hop-by-hop H Ho Hop Hop- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 9 1 --( 3 4 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 1 no 0 0 0 0 0 0 1 +3.4) 3.4) 3.4) 3 3. 3.4 3.4) BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 1 .) 2 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 1 no 0 0 0 0 0 0 1 +0x0004 - 0x0004 0 0x 0x0 0x00 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 1 - 1 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 1 no 0 0 0 0 0 0 1 +Reserved | reserved R Re Res Rese BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 1 no 0 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 1 no 0 0 0 0 0 0 1 +0x0007 0x0007 0x0007 0 0x 0x0 0x00 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 1 no 0 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 1 no 0 0 0 0 0 0 1 +0x0FFE 0x0FFE 0x0ffe 0 0x 0x0 0x0F BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 1 no 0 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 1 no 0 0 0 0 0 0 1 +T_PAD T_PAD t_pad T T_ T_P T_PA BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 1 no 0 0 0 0 0 0 1 +Pad (Section pad P Pa Pad Pad BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 1 (..) 4 2 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 1 no 0 0 0 0 0 0 1 +0x0FFF 0x0FFF 0x0fff 0 0x 0x0 0x0F BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 1 no 0 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 1 no 0 0 0 0 0 0 1 +T_ORG T_ORG t_org T T_ T_O T_OR BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 1 no 0 0 0 0 0 0 1 +| Organization-Specific | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 1 -( 2 5 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 1 no 0 0 0 0 0 0 1 +3.3.2) 3.3.2) 3.3.2) 3 3. 3.3 3.3. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 1 ..) 3 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 1 no 0 0 0 0 0 0 1 +| 0x1000-0x1FFF | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 1 - 1 2 0 0 0 0 1 +Reserved | reserved R Re Res Rese BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 1 no 0 1 0 0 0 0 1 +Experimental Use experimental E Ex Exp Expe BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 1 () 2 4 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 1 no 0 0 0 0 0 0 1 ++---------------+-------------+-------------------------------------+ +---------------+-------------+-------------------------------------+ +---------------+-------------+-------------------------------------+ + +- +-- +--- BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 1 ----------------------------------------------------------------- 65 10 0 0 0 0 1 +CCNx Hop-by-Hop ccnx C CC CCN CCNx BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 9 11 -- 2 10 0 0 0 0 1 +Mosko, et mosko, M Mo Mos Mosk BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 9 11 ,. 2 10 0 0 1 0 0 +Experimental Experimental experimental E Ex Exp Expe BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 11 no 0 9 0 0 0 0 0 +[Page 35] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 11 [] 2 7 0 0 0 0 0 +RFC 8609 rfc R RF RFC RFC BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 0 no 0 10 0 0 0 0 1 +CCNx TLV ccnx C CC CCN CCNx BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 9 0 no 0 9 0 0 1 0 1 +July 2019 july J Ju Jul July BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 9 0 no 0 10 0 0 0 0 1 +4.4. Top-Level 4.4. 4 4. 4.4 4.4. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 0 ..- 3 10 0 0 0 0 1 +IANA has iana I IA IAN IANA BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 0 "-" 3 10 0 0 0 0 1 +the top-level the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 0 -. 2 10 0 0 0 0 1 +RFC Required. rfc R RF RFC RFC BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 0 .. 2 8 0 0 0 0 1 +0x0000-0xFFFF. 0x0000-0xFFFF. 0x0000-0xffff. 0 0x 0x0 0x00 BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 0 -. 2 2 0 0 0 0 1 ++--------+----------------------+-------------------------------+ +--------+----------------------+-------------------------------+ +--------+----------------------+-------------------------------+ + +- +-- +--- BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 2 ------------------------------------------------------------- 61 10 0 0 0 0 1 +| Type | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 2 no 0 1 0 0 0 0 1 +Name Name name N Na Nam Name BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 2 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 2 no 0 0 0 0 0 0 1 +Reference Reference reference R Re Ref Refe BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 2 no 0 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 2 no 0 0 0 0 0 0 1 ++--------+----------------------+-------------------------------+ +--------+----------------------+-------------------------------+ +--------+----------------------+-------------------------------+ + +- +-- +--- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 2 ------------------------------------------------------------- 61 10 0 0 0 0 1 +| 0x0000 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 2 no 0 1 0 0 0 0 1 +Reserved Reserved reserved R Re Res Rese BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 2 no 0 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 2 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 2 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 2 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 2 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 2 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 2 no 0 0 0 0 0 0 1 +| 0x0001 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 2 no 0 1 0 0 0 0 1 +T_INTEREST T_INTEREST t_interest T T_ T_I T_IN BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 2 no 0 1 0 0 0 0 1 +| Top-Level | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 2 -(.) 4 5 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 2 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 2 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 2 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 2 no 0 0 0 0 0 0 1 +| 0x0002 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 2 no 0 1 0 0 0 0 1 +T_OBJECT T_OBJECT t_object T T_ T_O T_OB BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 2 no 0 1 0 0 0 0 1 +| Top-Level | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 2 -(.) 4 5 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 2 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 2 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 2 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 2 no 0 0 0 0 0 0 1 +| 0x0003 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 2 no 0 1 0 0 0 0 1 +T_VALIDATION_ALG T_VALIDATION_ALG t_validation_alg T T_ T_V T_VA BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 2 no 0 2 0 0 0 0 1 +| Top-Level | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 2 -(.) 4 5 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 2 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 2 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 2 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 2 no 0 0 0 0 0 0 1 +| 0x0004 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 2 -(.) 4 10 0 0 0 0 1 ++--------+----------------------+-------------------------------+ +--------+----------------------+-------------------------------+ +--------+----------------------+-------------------------------+ + +- +-- +--- BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 2 ------------------------------------------------------------- 61 10 0 0 0 0 1 +CCNx Top-Level ccnx C CC CCN CCNx BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 9 11 - 1 10 0 0 0 0 1 +Mosko, et mosko, M Mo Mos Mosk BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 9 11 ,. 2 10 0 0 1 0 0 +Experimental Experimental experimental E Ex Exp Expe BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 11 no 0 9 0 0 0 0 0 +[Page 36] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 11 [] 2 7 0 0 0 0 0 +RFC 8609 rfc R RF RFC RFC BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 0 no 0 10 0 0 0 0 1 +CCNx TLV ccnx C CC CCN CCNx BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 9 0 no 0 9 0 0 1 0 1 +July 2019 july J Ju Jul July BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 9 0 no 0 10 0 0 0 0 1 +4.5. Name 4.5. 4 4. 4.5 4.5. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 0 .. 2 10 0 0 0 0 1 +IANA has iana I IA IAN IANA BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 0 "" 2 10 0 0 0 0 1 +the name the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 0 . 1 9 0 0 0 0 1 +is Specification is i is is is BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 0 .. 2 9 0 0 0 0 1 +0x0000-0xFFFF. 0x0000-0xFFFF. 0x0000-0xffff. 0 0x 0x0 0x00 BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 0 -. 2 2 0 0 0 0 1 ++--------------+------------------+---------------------------------+ +--------------+------------------+---------------------------------+ +--------------+------------------+---------------------------------+ + +- +-- +--- BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 1 ----------------------------------------------------------------- 65 10 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 1 no 0 0 0 0 0 0 1 +Type Type type T Ty Typ Type BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 1 no 0 0 0 0 0 0 1 +Name Name name N Na Nam Name BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 1 no 0 0 0 0 0 0 1 +Reference Reference reference R Re Ref Refe BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 1 no 0 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 1 no 0 0 0 0 0 0 1 ++--------------+------------------+---------------------------------+ +--------------+------------------+---------------------------------+ +--------------+------------------+---------------------------------+ + +- +-- +--- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 1 ----------------------------------------------------------------- 65 10 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 1 no 0 0 0 0 0 0 1 +0x0000 0x0000 0x0000 0 0x 0x0 0x00 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 1 no 0 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 1 no 0 0 0 0 0 0 1 +Reserved Reserved reserved R Re Res Rese BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 1 no 0 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 1 no 0 0 0 0 0 0 1 +0x0001 0x0001 0x0001 0 0x 0x0 0x00 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 1 no 0 1 0 0 0 0 1 +| T_NAMESEGMENT | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 1 no 0 2 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 1 no 0 0 0 0 0 0 1 +Name (Section name N Na Nam Name BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 1 (..) 4 3 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 1 no 0 0 0 0 0 0 1 +0x0002 0x0002 0x0002 0 0x 0x0 0x00 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 1 no 0 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 1 no 0 0 0 0 0 0 1 +T_IPID T_IPID t_ipid T T_ T_I T_IP BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 1 no 0 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 1 no 0 0 0 0 0 0 1 +Name (Section name N Na Nam Name BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 1 (..) 4 3 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 1 no 0 0 0 0 0 0 1 +0x0010 - 0x0010 0 0x 0x0 0x00 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 1 - 1 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 1 no 0 0 0 0 0 0 1 +Reserved Reserved reserved R Re Res Rese BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 1 no 0 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 1 no 0 0 0 0 0 0 1 +RFC 8609 rfc R RF RFC RFC BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 1 no 0 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 1 no 0 0 0 0 0 0 1 +0x0013 0x0013 0x0013 0 0x 0x0 0x00 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 1 no 0 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 1 no 0 0 0 0 0 0 1 +0x0FFF 0x0FFF 0x0fff 0 0x 0x0 0x0F BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 1 no 0 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 1 no 0 0 0 0 0 0 1 +T_ORG T_ORG t_org T T_ T_O T_OR BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 1 no 0 0 0 0 0 0 1 +Organization-Specific TLVs organization-specific O Or Org Orga BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 1 - 1 3 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 1 no 0 0 0 0 0 0 1 +(Section 3.3.2) (section ( (S (Se (Sec BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 1 (..) 4 2 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 1 no 0 0 0 0 0 0 1 +0x1000 - 0x1000 0 0x 0x1 0x10 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 1 0 0 0 9 1 - 1 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 1 no 0 0 0 0 0 0 1 +T_APP:00 - t_app:00 T T_ T_A T_AP BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 1 :- 2 1 0 0 0 0 1 +| Application | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 1 ( 1 5 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 1 no 0 0 0 0 0 0 1 +0x1FFF 0x1FFF 0x1fff 0 0x 0x1 0x1F BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 1 no 0 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 1 no 0 0 0 0 0 0 1 +T_APP:4096 T_APP:4096 t_app:4096 T T_ T_A T_AP BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 1 : 1 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 1 no 0 0 0 0 0 0 1 +3.6.1) 3.6.1) 3.6.1) 3 3. 3.6 3.6. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 1 ..) 3 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 1 no 0 0 0 0 0 0 1 ++--------------+------------------+---------------------------------+ +--------------+------------------+---------------------------------+ +--------------+------------------+---------------------------------+ + +- +-- +--- BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 1 ----------------------------------------------------------------- 65 10 0 0 0 0 1 +CCNx Name ccnx C CC CCN CCNx BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 9 10 no 0 10 0 0 0 0 1 +4.6. Message 4.6. 4 4. 4.6 4.6. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 10 .. 2 10 0 0 0 0 1 +IANA has iana I IA IAN IANA BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 10 "" 2 10 0 0 0 0 1 +message segment message m me mes mess BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 10 . 1 9 0 0 0 0 1 +RFC Required. rfc R RF RFC RFC BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 10 .. 2 7 0 0 0 0 1 +0x0000-0xFFFF. 0x0000-0xFFFF. 0x0000-0xffff. 0 0x 0x0 0x00 BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 10 -. 2 2 0 0 0 0 1 +Mosko, et mosko, M Mo Mos Mosk BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 9 11 ,. 2 10 0 0 1 0 0 +Experimental Experimental experimental E Ex Exp Expe BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 11 no 0 9 0 0 0 0 0 +[Page 37] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 11 [] 2 7 0 0 0 0 0 +RFC 8609 rfc R RF RFC RFC BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 0 no 0 10 0 0 0 0 1 +CCNx TLV ccnx C CC CCN CCNx BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 9 0 no 0 9 0 0 1 0 1 +July 2019 july J Ju Jul July BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 9 0 no 0 10 0 0 0 0 1 ++---------------+----------------+----------------------------------+ +---------------+----------------+----------------------------------+ +---------------+----------------+----------------------------------+ + +- +-- +--- BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 0 ----------------------------------------------------------------- 65 10 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 0 no 0 0 0 0 0 0 1 +Type Type type T Ty Typ Type BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 0 no 0 0 0 0 0 0 1 +Name Name name N Na Nam Name BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 0 no 0 0 0 0 0 0 1 +Reference Reference reference R Re Ref Refe BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 0 no 0 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 0 no 0 0 0 0 0 0 1 ++---------------+----------------+----------------------------------+ +---------------+----------------+----------------------------------+ +---------------+----------------+----------------------------------+ + +- +-- +--- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 0 ----------------------------------------------------------------- 65 10 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 0 no 0 0 0 0 0 0 1 +0x0000 0x0000 0x0000 0 0x 0x0 0x00 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 0 no 0 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 0 no 0 0 0 0 0 0 1 +T_NAME T_NAME t_name T T_ T_N T_NA BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 0 no 0 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 0 no 0 0 0 0 0 0 1 +Message Types message M Me Mes Mess BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 0 (.) 3 4 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 0 no 0 0 0 0 0 0 1 +0x0001 0x0001 0x0001 0 0x 0x0 0x00 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 0 no 0 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 0 no 0 0 0 0 0 0 1 +T_PAYLOAD T_PAYLOAD t_payload T T_ T_P T_PA BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 0 no 0 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 0 no 0 0 0 0 0 0 1 +Message Types message M Me Mes Mess BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 0 (.) 3 4 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 0 no 0 0 0 0 0 0 1 +0x0002 0x0002 0x0002 0 0x 0x0 0x00 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 0 no 0 1 0 0 0 0 1 +| T_KEYIDRESTR | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 0 no 0 2 0 0 0 0 1 +Message Types message M Me Mes Mess BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 0 (.) 3 4 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 0 no 0 0 0 0 0 0 1 +0x0003 0x0003 0x0003 0 0x 0x0 0x00 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 0 no 0 1 0 0 0 0 1 +| T_OBJHASHRESTR | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 0 no 0 2 0 0 0 0 1 +Message Types message M Me Mes Mess BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 0 (.) 3 4 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 0 no 0 0 0 0 0 0 1 +0x0005 0x0005 0x0005 0 0x 0x0 0x00 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 0 no 0 1 0 0 0 0 1 +| T_PAYLDTYPE | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 0 no 0 2 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 0 no 0 0 0 0 0 0 1 +Content Object content C Co Con Cont BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 0 no 0 4 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 0 no 0 0 0 0 0 0 1 +(Section 3.6.2.2) (section ( (S (Se (Sec BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 0 (...) 5 2 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 0 no 0 0 0 0 0 0 1 +0x0006 0x0006 0x0006 0 0x 0x0 0x00 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 0 no 0 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 0 no 0 0 0 0 0 0 1 +T_EXPIRY T_EXPIRY t_expiry T T_ T_E T_EX BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 0 no 0 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 0 no 0 0 0 0 0 0 1 +Content Object content C Co Con Cont BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 0 no 0 4 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 0 no 0 0 0 0 0 0 1 +(Section 3.6.2.2) (section ( (S (Se (Sec BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 0 (...) 5 2 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 0 no 0 0 0 0 0 0 1 +0x0007 - 0x0007 0 0x 0x0 0x00 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 0 - 1 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 0 no 0 0 0 0 0 0 1 +Reserved Reserved reserved R Re Res Rese BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 0 no 0 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 0 no 0 0 0 0 0 0 1 +RFC 8609 rfc R RF RFC RFC BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 0 no 0 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 0 no 0 0 0 0 0 0 1 +0x000C 0x000C 0x000c 0 0x 0x0 0x00 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 0 no 0 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 0 no 0 0 0 0 0 0 1 +0x0FFE 0x0FFE 0x0ffe 0 0x 0x0 0x0F BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 0 no 0 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 0 no 0 0 0 0 0 0 1 +T_PAD T_PAD t_pad T T_ T_P T_PA BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 0 no 0 0 0 0 0 0 1 +Pad (Section pad P Pa Pad Pad BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 0 (..) 4 2 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 0 no 0 0 0 0 0 0 1 +0x0FFF 0x0FFF 0x0fff 0 0x 0x0 0x0F BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 0 no 0 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 0 no 0 0 0 0 0 0 1 +T_ORG T_ORG t_org T T_ T_O T_OR BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 0 no 0 0 0 0 0 0 1 +Organization-Specific TLVs organization-specific O Or Org Orga BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 0 - 1 3 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 0 no 0 0 0 0 0 0 1 +(Section 3.3.2) (section ( (S (Se (Sec BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 0 (..) 4 2 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 0 no 0 0 0 0 0 0 1 +| 0x1000-0x1FFF | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 0 - 1 2 0 0 0 0 1 +Reserved Reserved reserved R Re Res Rese BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 0 no 0 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 0 no 0 0 0 0 0 0 1 +Experimental Use experimental E Ex Exp Expe BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 0 () 2 4 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 0 no 0 0 0 0 0 0 1 ++---------------+----------------+----------------------------------+ +---------------+----------------+----------------------------------+ +---------------+----------------+----------------------------------+ + +- +-- +--- BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 0 ----------------------------------------------------------------- 65 10 0 0 0 0 1 +CCNx Message ccnx C CC CCN CCNx BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 9 7 no 0 10 0 0 0 0 1 +4.7. Payload 4.7. 4 4. 4.7 4.7. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 7 .. 2 10 0 0 0 0 1 +IANA has iana I IA IAN IANA BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 7 "" 2 10 0 0 0 0 1 +payload types payload p pa pay payl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 7 . 1 8 0 0 0 0 1 +Specification Required. specification S Sp Spe Spec BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 7 .. 2 9 0 0 0 0 1 +0x00-0xFF. 0x00-0xFF. 0x00-0xff. 0 0x 0x0 0x00 BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 7 -. 2 1 0 0 0 0 1 ++------+--------------------+-----------------------------------+ +------+--------------------+-----------------------------------+ +------+--------------------+-----------------------------------+ + +- +-- +--- BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 8 ------------------------------------------------------------- 61 10 0 0 0 0 1 +| Type | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 8 no 0 1 0 0 0 0 1 +Name Name name N Na Nam Name BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 8 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 8 no 0 0 0 0 0 0 1 +Reference Reference reference R Re Ref Refe BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 8 no 0 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 8 no 0 0 0 0 0 0 1 ++------+--------------------+-----------------------------------+ +------+--------------------+-----------------------------------+ +------+--------------------+-----------------------------------+ + +- +-- +--- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 8 ------------------------------------------------------------- 61 10 0 0 0 0 1 +| 0x00 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 8 (....) 6 10 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 8 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 8 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 8 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 8 no 0 0 0 0 0 0 1 +| 0x01 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 8 (....) 6 9 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 8 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 8 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 8 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 8 no 0 0 0 0 0 0 1 +| 0x02 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 8 (....) 6 10 0 0 0 0 1 ++------+--------------------+-----------------------------------+ +------+--------------------+-----------------------------------+ +------+--------------------+-----------------------------------+ + +- +-- +--- BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 8 ------------------------------------------------------------- 61 10 0 0 0 0 1 +CCNx Payload ccnx C CC CCN CCNx BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 10 11 no 0 10 0 0 0 0 1 +Mosko, et mosko, M Mo Mos Mosk BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 10 11 ,. 2 10 0 0 1 0 0 +Experimental Experimental experimental E Ex Exp Expe BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 11 no 0 9 0 0 0 0 0 +[Page 38] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 11 [] 2 7 0 0 0 0 0 +RFC 8609 rfc R RF RFC RFC BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 0 no 0 10 0 0 0 0 1 +CCNx TLV ccnx C CC CCN CCNx BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 10 0 no 0 9 0 0 1 0 1 +July 2019 july J Ju Jul July BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 10 0 no 0 10 0 0 0 0 1 +4.8. Validation 4.8. 4 4. 4.8 4.8. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 0 .. 2 10 0 0 0 0 1 +IANA has iana I IA IAN IANA BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 0 "" 2 10 0 0 0 0 1 +allocated the allocated a al all allo BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 0 . 1 9 0 0 0 0 1 +registration procedure registration r re reg regi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 0 . 1 10 0 0 0 0 1 +2 octets. 2 2 2 2 2 BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 10 0 .-. 3 5 0 0 0 0 1 ++---------------+-----------------+---------------------------------+ +---------------+-----------------+---------------------------------+ +---------------+-----------------+---------------------------------+ + +- +-- +--- BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 1 ----------------------------------------------------------------- 65 10 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 1 no 0 0 0 0 0 0 1 +Type Type type T Ty Typ Type BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 1 no 0 0 0 0 0 0 1 +Name Name name N Na Nam Name BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 1 no 0 0 0 0 0 0 1 +Reference Reference reference R Re Ref Refe BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 1 no 0 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 1 no 0 0 0 0 0 0 1 ++---------------+-----------------+---------------------------------+ +---------------+-----------------+---------------------------------+ +---------------+-----------------+---------------------------------+ + +- +-- +--- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 1 ----------------------------------------------------------------- 65 10 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 1 no 0 0 0 0 0 0 1 +0x0000 0x0000 0x0000 0 0x 0x0 0x00 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 1 no 0 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 1 no 0 0 0 0 0 0 1 +Reserved Reserved reserved R Re Res Rese BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 1 no 0 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 1 no 0 0 0 0 0 0 1 +0x0002 0x0002 0x0002 0 0x 0x0 0x00 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 1 no 0 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 1 no 0 0 0 0 0 0 1 +T_CRC32C T_CRC32C t_crc32c T T_ T_C T_CR BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 1 no 0 1 0 0 0 0 1 +| Validation | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 1 ( 1 4 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 1 no 0 0 0 0 0 0 1 +3.6.4.1) 3.6.4.1) 3.6.4.1) 3 3. 3.6 3.6. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 1 ...) 4 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 1 no 0 0 0 0 0 0 1 +0x0004 0x0004 0x0004 0 0x 0x0 0x00 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 1 no 0 1 0 0 0 0 1 +| T_HMAC-SHA256 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 1 -( 2 7 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 1 no 0 0 0 0 0 0 1 +3.6.4.1) 3.6.4.1) 3.6.4.1) 3 3. 3.6 3.6. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 1 ...) 4 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 1 no 0 0 0 0 0 0 1 +0x0005 0x0005 0x0005 0 0x 0x0 0x00 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 1 no 0 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 1 no 0 0 0 0 0 0 1 +T_RSA-SHA256 | t_rsa-sha256 T T_ T_R T_RS BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 1 -( 2 6 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 1 no 0 0 0 0 0 0 1 +3.6.4.1) 3.6.4.1) 3.6.4.1) 3 3. 3.6 3.6. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 1 ...) 4 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 1 no 0 0 0 0 0 0 1 +0x0006 0x0006 0x0006 0 0x 0x0 0x00 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 1 no 0 1 0 0 0 0 1 +| T_EC-SECP-256K1 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 1 --( 3 7 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 1 no 0 0 0 0 0 0 1 +3.6.4.1) 3.6.4.1) 3.6.4.1) 3 3. 3.6 3.6. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 1 ...) 4 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 1 no 0 0 0 0 0 0 1 +0x0007 0x0007 0x0007 0 0x 0x0 0x00 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 1 no 0 1 0 0 0 0 1 +| T_EC-SECP-384R1 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 1 --( 3 7 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 1 no 0 0 0 0 0 0 1 +3.6.4.1) 3.6.4.1) 3.6.4.1) 3 3. 3.6 3.6. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 1 ...) 4 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 1 no 0 0 0 0 0 0 1 +0x0FFE 0x0FFE 0x0ffe 0 0x 0x0 0x0F BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 1 no 0 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 1 no 0 0 0 0 0 0 1 +T_PAD T_PAD t_pad T T_ T_P T_PA BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 1 no 0 0 0 0 0 0 1 +Pad (Section pad P Pa Pad Pad BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 1 (..) 4 2 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 1 no 0 0 0 0 0 0 1 +0x0FFF 0x0FFF 0x0fff 0 0x 0x0 0x0F BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 1 no 0 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 1 no 0 0 0 0 0 0 1 +T_ORG T_ORG t_org T T_ T_O T_OR BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 1 no 0 0 0 0 0 0 1 +Organization-Specific TLVs organization-specific O Or Org Orga BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 1 - 1 3 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 1 no 0 0 0 0 0 0 1 +(Section 3.3.2) (section ( (S (Se (Sec BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 1 (..) 4 2 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 1 no 0 0 0 0 0 0 1 +| 0x1000-0x1FFF | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 1 - 1 2 0 0 0 0 1 +Reserved Reserved reserved R Re Res Rese BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 1 no 0 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 1 no 0 0 0 0 0 0 1 +Experimental Use experimental E Ex Exp Expe BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 1 () 2 4 0 0 0 0 1 ++---------------+-----------------+---------------------------------+ +---------------+-----------------+---------------------------------+ +---------------+-----------------+---------------------------------+ + +- +-- +--- BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 1 ----------------------------------------------------------------- 65 10 0 0 0 0 1 +CCNx Validation ccnx C CC CCN CCNx BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 10 11 no 0 10 0 0 0 0 1 +Mosko, et mosko, M Mo Mos Mosk BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 10 11 ,. 2 10 0 0 1 0 0 +Experimental Experimental experimental E Ex Exp Expe BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 11 no 0 9 0 0 0 0 0 +[Page 39] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 11 [] 2 7 0 0 0 0 0 +RFC 8609 rfc R RF RFC RFC BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 0 no 0 10 0 0 0 0 1 +CCNx TLV ccnx C CC CCN CCNx BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 10 0 no 0 9 0 0 1 0 1 +July 2019 july J Ju Jul July BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 10 0 no 0 10 0 0 0 0 1 +4.9. Validation-Dependent 4.9. 4 4. 4.9 4.9. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 0 ..- 3 10 0 0 0 0 1 +IANA has iana I IA IAN IANA BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 0 "-" 3 10 0 0 0 0 1 +and allocated and a an and and BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 0 -. 2 9 0 0 0 0 1 +The registration the T Th The The BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 0 . 1 9 0 0 0 0 1 +octets. The octets. o oc oct octe BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 0 .-. 3 5 0 0 0 0 1 ++---------------+----------------+----------------------------------+ +---------------+----------------+----------------------------------+ +---------------+----------------+----------------------------------+ + +- +-- +--- BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 1 ----------------------------------------------------------------- 65 10 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 1 no 0 0 0 0 0 0 1 +Type Type type T Ty Typ Type BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 1 no 0 0 0 0 0 0 1 +Name Name name N Na Nam Name BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 1 no 0 0 0 0 0 0 1 +Reference Reference reference R Re Ref Refe BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 1 no 0 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 1 no 0 0 0 0 0 0 1 ++---------------+----------------+----------------------------------+ +---------------+----------------+----------------------------------+ +---------------+----------------+----------------------------------+ + +- +-- +--- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 1 ----------------------------------------------------------------- 65 10 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 1 no 0 0 0 0 0 0 1 +0x0000 0x0000 0x0000 0 0x 0x0 0x00 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 1 no 0 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 1 no 0 0 0 0 0 0 1 +Reserved Reserved reserved R Re Res Rese BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 1 no 0 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 1 no 0 0 0 0 0 0 1 +0x0009 0x0009 0x0009 0 0x 0x0 0x00 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 1 no 0 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 1 no 0 0 0 0 0 0 1 +T_KEYID T_KEYID t_keyid T T_ T_K T_KE BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 1 no 0 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 1 no 0 0 0 0 0 0 1 +Validation-Dependent Data validation-dependent V Va Val Vali BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 1 - 1 3 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 1 no 0 0 0 0 0 0 1 +(Section 3.6.4.1.4) (section ( (S (Se (Sec BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 1 (....) 6 2 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 1 no 0 0 0 0 0 0 1 +0x000A 0x000A 0x000a 0 0x 0x0 0x00 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 1 no 0 1 0 0 0 0 1 +| T_PUBLICKEYLOC | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 1 no 0 2 0 0 0 0 1 +Validation-Dependent Data validation-dependent V Va Val Vali BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 1 - 1 3 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 1 no 0 0 0 0 0 0 1 +(Section 3.6.4.1.4) (section ( (S (Se (Sec BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 1 (....) 6 2 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 1 no 0 0 0 0 0 0 1 +0x000B 0x000B 0x000b 0 0x 0x0 0x00 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 1 no 0 1 0 0 0 0 1 +| T_PUBLICKEY | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 1 no 0 2 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 1 no 0 0 0 0 0 0 1 +Validation-Dependent Data validation-dependent V Va Val Vali BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 1 - 1 3 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 1 no 0 0 0 0 0 0 1 +(Section 3.6.4.1.4) (section ( (S (Se (Sec BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 1 (....) 6 2 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 1 no 0 0 0 0 0 0 1 +0x000C 0x000C 0x000c 0 0x 0x0 0x00 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 1 no 0 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 1 no 0 0 0 0 0 0 1 +T_CERT T_CERT t_cert T T_ T_C T_CE BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 1 no 0 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 1 no 0 0 0 0 0 0 1 +Validation-Dependent Data validation-dependent V Va Val Vali BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 1 - 1 3 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 1 no 0 0 0 0 0 0 1 +(Section 3.6.4.1.4) (section ( (S (Se (Sec BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 1 (....) 6 2 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 1 no 0 0 0 0 0 0 1 +0x000D 0x000D 0x000d 0 0x 0x0 0x00 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 1 no 0 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 1 no 0 0 0 0 0 0 1 +T_LINK T_LINK t_link T T_ T_L T_LI BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 1 no 0 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 1 no 0 0 0 0 0 0 1 +Validation-Dependent Data validation-dependent V Va Val Vali BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 1 - 1 3 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 1 no 0 0 0 0 0 0 1 +(Section 3.6.4.1.4) (section ( (S (Se (Sec BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 1 (....) 6 2 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 1 no 0 0 0 0 0 0 1 +0x000E 0x000E 0x000e 0 0x 0x0 0x00 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 1 no 0 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 1 no 0 0 0 0 0 0 1 +T_KEYLINK T_KEYLINK t_keylink T T_ T_K T_KE BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 1 no 0 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 1 no 0 0 0 0 0 0 1 +Validation-Dependent Data validation-dependent V Va Val Vali BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 1 - 1 3 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 1 no 0 0 0 0 0 0 1 +(Section 3.6.4.1.4) (section ( (S (Se (Sec BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 1 (....) 6 2 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 1 no 0 0 0 0 0 0 1 +0x000F 0x000F 0x000f 0 0x 0x0 0x00 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 1 no 0 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 1 no 0 0 0 0 0 0 1 +T_SIGTIME T_SIGTIME t_sigtime T T_ T_S T_SI BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 1 no 0 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 1 no 0 0 0 0 0 0 1 +Validation-Dependent Data validation-dependent V Va Val Vali BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 1 - 1 3 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 1 no 0 0 0 0 0 0 1 +(Section 3.6.4.1.4) (section ( (S (Se (Sec BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 1 (....) 6 2 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 1 no 0 0 0 0 0 0 1 +0x0FFF 0x0FFF 0x0fff 0 0x 0x0 0x0F BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 1 no 0 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 1 no 0 0 0 0 0 0 1 +T_ORG T_ORG t_org T T_ T_O T_OR BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 1 no 0 0 0 0 0 0 1 +Organization-Specific TLVs organization-specific O Or Org Orga BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 1 - 1 3 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 1 no 0 0 0 0 0 0 1 +(Section 3.3.2) (section ( (S (Se (Sec BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 1 (..) 4 2 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 1 no 0 0 0 0 0 0 1 +| 0x1000-0x1FFF | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 1 - 1 2 0 0 0 0 1 +Reserved Reserved reserved R Re Res Rese BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 1 no 0 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 1 no 0 0 0 0 0 0 1 +Experimental Use experimental E Ex Exp Expe BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 1 () 2 4 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 1 no 0 0 0 0 0 0 1 ++---------------+----------------+----------------------------------+ +---------------+----------------+----------------------------------+ +---------------+----------------+----------------------------------+ + +- +-- +--- BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 1 ----------------------------------------------------------------- 65 10 0 0 0 0 1 +CCNx Validation-Dependent ccnx C CC CCN CCNx BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 10 10 - 1 10 0 0 0 0 1 +4.10. Hash 4.10. 4 4. 4.1 4.10 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 10 .. 2 10 0 0 0 0 1 +IANA has iana I IA IAN IANA BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 10 "" 2 8 0 0 0 0 1 +allocated the allocated a al all allo BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 10 . 1 10 0 0 0 0 1 +procedure is procedure p pr pro proc BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 10 .. 2 9 0 0 0 0 1 +The range the T Th The The BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 10 -. 2 4 0 0 0 0 1 +Mosko, et mosko, M Mo Mos Mosk BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 10 11 ,. 2 10 0 0 1 0 0 +Experimental Experimental experimental E Ex Exp Expe BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 11 no 0 9 0 0 0 0 0 +[Page 40] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 11 [] 2 7 0 0 0 0 0 +RFC 8609 rfc R RF RFC RFC BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 0 no 0 10 0 0 0 0 1 +CCNx TLV ccnx C CC CCN CCNx BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 10 0 no 0 9 0 0 1 0 1 +July 2019 july J Ju Jul July BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 10 0 no 0 10 0 0 0 0 1 ++---------------+-----------+---------------------------------------+ +---------------+-----------+---------------------------------------+ +---------------+-----------+---------------------------------------+ + +- +-- +--- BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 0 ----------------------------------------------------------------- 65 10 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 no 0 0 0 0 0 0 1 +Type Type type T Ty Typ Type BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 no 0 0 0 0 0 0 1 +Name Name name N Na Nam Name BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 no 0 0 0 0 0 0 1 +Reference Reference reference R Re Ref Refe BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 0 no 0 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 no 0 0 0 0 0 0 1 ++---------------+-----------+---------------------------------------+ +---------------+-----------+---------------------------------------+ +---------------+-----------+---------------------------------------+ + +- +-- +--- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 0 ----------------------------------------------------------------- 65 10 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 no 0 0 0 0 0 0 1 +0x0000 0x0000 0x0000 0 0x 0x0 0x00 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 0 no 0 1 0 0 0 0 1 +| Reserved | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 no 0 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 no 0 0 0 0 0 0 1 +0x0001 0x0001 0x0001 0 0x 0x0 0x00 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 0 no 0 1 0 0 0 0 1 +| T_SHA-256 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 - 1 2 0 0 0 0 1 +Hash Format hash H Ha Has Hash BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 0 (..) 4 4 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 no 0 0 0 0 0 0 1 +0x0002 0x0002 0x0002 0 0x 0x0 0x00 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 0 no 0 1 0 0 0 0 1 +| T_SHA-512 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 - 1 2 0 0 0 0 1 +Hash Format hash H Ha Has Hash BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 0 (..) 4 4 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 no 0 0 0 0 0 0 1 +0x0FFF 0x0FFF 0x0fff 0 0x 0x0 0x0F BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 0 no 0 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 no 0 0 0 0 0 0 1 +T_ORG T_ORG t_org T T_ T_O T_OR BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 0 no 0 0 0 0 0 0 1 +| Organization-Specific | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 -( 2 5 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 no 0 0 0 0 0 0 1 +3.3.2) 3.3.2) 3.3.2) 3 3. 3.3 3.3. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 0 ..) 3 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 no 0 0 0 0 0 0 1 +| 0x1000-0x1FFF | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 - 1 4 0 0 0 0 1 +Experimental Use experimental E Ex Exp Expe BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 0 () 2 4 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 no 0 0 0 0 0 0 1 ++---------------+-----------+---------------------------------------+ +---------------+-----------+---------------------------------------+ +---------------+-----------+---------------------------------------+ + +- +-- +--- BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 0 ----------------------------------------------------------------- 65 10 0 0 0 0 1 +CCNx Hash ccnx C CC CCN CCNx BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 10 4 no 0 10 0 0 0 0 1 +5. Security 5. 5 5. 5. 5. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 5 . 1 10 0 0 0 0 1 +The CCNx the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 5 , 1 9 0 0 0 0 1 +operate as operate o op ope oper BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 5 no 0 9 0 0 0 0 1 +tunnels. It tunnels. t tu tun tunn BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 5 . 1 9 0 0 0 0 1 +via a via v vi via via BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 5 (..,) 5 8 0 0 0 0 1 +Authentication Code authentication A Au Aut Auth BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 10 5 (..,)., 7 9 0 0 0 0 1 +may instead may m ma may may BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 1 0 0 10 5 (..,). 6 9 0 0 0 0 1 +does not does d do doe does BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 5 ; 1 10 0 0 0 0 1 +high-layer protocol high-layer h hi hig high BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 5 -(..,[]). 9 9 0 0 0 0 1 +The CCNx the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 7 (.., 4 9 0 0 0 0 1 +SHA-256 or sha-256 S SH SHA SHA- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 7 -),(..,),(.., 13 9 0 0 0 0 1 +ECDSA) to ecdsa) E EC ECD ECDS BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 7 ). 2 9 0 0 0 0 1 +will, an will, w wi wil will BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 7 , 1 9 0 0 0 0 1 +ValidationAlgorithm in validationalgorithm V Va Val Vali BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 10 7 ., 2 9 0 0 0 0 1 +example, are example, e ex exa exam BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 7 ,, 2 9 0 0 0 0 1 +and Signatures and a an and and BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 7 no 0 9 0 0 0 0 1 +open a open o op ope open BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 7 . 1 9 0 0 0 0 1 +explicit protocol explicit e ex exp expl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 7 . 1 9 0 0 0 0 1 +general guideline, general g ge gen gene BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 7 , 1 9 0 0 0 0 1 +detect unintentionally detect d de det dete BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 7 . 1 10 0 0 0 0 1 +Interest, one interest, I In Int Inte BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 7 , 1 9 0 0 0 0 1 +protocol that protocol p pr pro prot BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 7 , 1 10 0 0 0 0 1 +being used being b be bei bein BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 7 . 1 9 0 0 0 0 1 +signature does signature s si sig sign BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 7 . 1 8 0 0 0 0 1 +examples in examples e ex exa exam BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 7 - 1 9 0 0 0 0 1 +[mobile] [ace]. [mobile] [ [m [mo [mob BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 7 [][]. 5 2 0 0 0 0 1 +Mosko, et mosko, M Mo Mos Mosk BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 10 11 ,. 2 10 0 0 1 0 0 +Experimental Experimental experimental E Ex Exp Expe BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 11 no 0 9 0 0 0 0 0 +[Page 41] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 11 [] 2 7 0 0 0 0 0 +RFC 8609 rfc R RF RFC RFC BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 0 no 0 10 0 0 0 0 1 +CCNx TLV ccnx C CC CCN CCNx BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 10 0 no 0 9 0 0 1 0 1 +July 2019 july J Ju Jul July BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 10 0 no 0 10 0 0 0 0 1 +As a as A As As As BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 0 , 1 9 0 0 0 0 1 +arrives at arrives a ar arr arri BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 0 . 1 10 0 0 0 0 1 +include a include i in inc incl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 0 no 0 8 0 0 0 0 1 +PublicKeyLocator field publickeylocator P Pu Pub Publ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 10 0 (- 2 9 0 0 0 0 1 +certificate) that certificate) c ce cer cert BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 0 ). 2 9 0 0 0 0 1 +specification is specification s sp spe spec BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 0 [][], 5 9 0 0 0 0 1 +TLS 1.3 tls T TL TLS TLS BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 0 .. 2 9 0 0 0 0 1 +Trust is trust T Tr Tru Trus BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 0 no 0 9 0 0 0 0 1 +applications or applications a ap app appl BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 10 0 . 1 5 0 0 0 0 1 +The combination the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 2 (..,[]) 7 9 0 0 0 0 1 +and an and a an and and BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 2 (..,[]) 7 8 0 0 0 0 1 +equivalent of equivalent e eq equ equi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 2 . 1 9 0 0 0 0 1 +Interests and interests I In Int Inte BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 2 . 1 9 0 0 0 0 1 +completely hides completely c co com comp BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 2 no 0 9 0 0 0 0 1 +layer. This layer. l la lay laye BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 2 . 1 9 0 0 0 0 1 +has little has h ha has has BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 2 , 1 10 0 0 0 0 1 +the ephemeral the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 2 .- 2 9 0 0 0 0 1 +mobility, but mobility, m mo mob mobi BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 2 ,-. 3 8 0 0 0 0 1 +Broadcast encryption broadcast B Br Bro Broa BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 5 - 1 10 0 0 0 0 1 +with multiple with w wi wit with BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 5 . 1 9 0 0 0 0 1 +no recommendation no n no no no BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 5 . 1 6 0 0 0 0 1 +The specific the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 5 . 1 9 0 0 0 0 1 +This document this T Th Thi This BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 5 --(). 5 9 0 0 0 0 1 +compromise between compromise c co com comp BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 5 no 0 9 0 0 0 0 1 +and lengths. and a an and and BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 5 .-- 3 9 0 0 0 0 1 +length L length l le len leng BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 5 no 0 10 0 0 0 0 1 +be byte be b be be be BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 5 .- 2 9 0 0 0 0 1 +2-byte L. 2-byte 2 2- 2-b 2-by BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 5 -.-. 4 9 0 0 0 0 1 +The first the T Th The The BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 5 ., 2 9 0 0 0 0 1 +as 0x02 as a as as as BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 5 ,, 2 9 0 0 0 0 1 +if they if i if if if BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 5 ,, 2 9 0 0 0 0 1 +illegal. If illegal. i il ill ille BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 5 ., 2 9 0 0 0 0 1 +buffers not buffers b bu buf buff BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 5 ., 2 9 0 0 0 0 1 +must validate must m mu mus must BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 5 -- 2 9 0 0 0 0 1 +every hop. every e ev eve ever BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 5 .,: 3 9 0 0 0 0 1 +how to how h ho how how BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 5 ., 2 9 0 0 0 0 1 +components, then components, c co com comp BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 5 ,, 2 9 0 0 0 0 1 +might have might m mi mig migh BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 5 . 1 9 0 0 0 0 1 +14 fields 14 1 14 14 14 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 0 0 0 0 0 0 0 0 11 5 ,. 2 9 0 0 0 0 1 +that one that t th tha that BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 5 ,,, 3 9 0 0 0 0 1 +as one as a as as as BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 5 no 0 9 0 0 0 0 1 +different format. different d di dif diff BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 5 . 1 2 0 0 0 0 1 +Mosko, et mosko, M Mo Mos Mosk BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 11 ,. 2 10 0 0 1 0 0 +Experimental Experimental experimental E Ex Exp Expe BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 11 no 0 9 0 0 0 0 0 +[Page 42] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 11 [] 2 7 0 0 0 0 0 +RFC 8609 rfc R RF RFC RFC BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 11 0 no 0 10 0 0 0 0 1 +CCNx TLV ccnx C CC CCN CCNx BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 0 no 0 9 0 0 1 0 1 +July 2019 july J Ju Jul July BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 11 0 no 0 10 0 0 0 0 1 +The Interest the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 0 no 0 9 0 0 0 0 1 +hop. Therefore, hop. h ho hop hop. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 0 ., 2 9 0 0 0 0 1 +used locally used u us use used BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 0 . 1 9 0 0 0 0 1 +Interest payload interest I In Int Inte BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 0 . 1 9 0 0 0 0 1 +the Interest the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 0 no 0 10 0 0 0 0 1 +to negate to t to to to BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 0 . 1 4 0 0 0 0 1 +Caching nodes caching C Ca Cac Cach BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 1 . 1 9 0 0 0 0 1 +is essential is i is is is BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 1 no 0 9 0 0 0 0 1 +[RFC8569] to [rfc8569] [ [R [RF [RFC BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 1 [].. 4 8 0 0 0 0 1 +mechanism to mechanism m me mec mech BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 1 ( 1 9 0 0 0 0 1 +are no are a ar are are BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 1 ""), 4 9 0 0 0 0 1 +it might it i it it it BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 1 . 1 9 0 0 0 0 1 +access to access a ac acc acce BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 1 :, 2 9 0 0 0 0 1 +restricted, and restricted, r re res rest BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 1 ,., 3 9 0 0 0 0 1 +then the then t th the then BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 1 , 1 10 0 0 0 0 1 +matching cached matching m ma mat matc BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 1 ., 2 9 0 0 0 0 1 +requester is requester r re req requ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 1 , 1 9 0 0 0 0 1 +Store (and store S St Sto Stor BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 1 () 2 9 0 0 0 0 1 +matches the matches m ma mat matc BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 1 .( 2 9 0 0 0 0 1 +often used often o of oft ofte BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 1 ), 2 9 0 0 0 0 1 +the KeyId the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 1 . 1 9 0 0 0 0 1 +attention in attention a at att atte BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 1 . 1 9 0 0 0 0 1 +Content Store content C Co Con Cont BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 1 no 0 9 0 0 0 0 1 +verify the verify v ve ver veri BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 1 -- 2 9 0 0 0 0 1 +the public the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 1 no 0 9 0 0 0 0 1 +addition to addition a ad add addi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 1 ., 2 9 0 0 0 0 1 +Store should store S St Sto Stor BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 1 no 0 9 0 0 0 0 1 +respond. respond. respond. r re res resp BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 1 . 1 1 0 0 0 0 1 +A user-level a A A A A BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 1 0 0 0 0 0 11 7 - 1 9 0 0 0 0 1 +fetching a fetching f fe fet fetc BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 7 ., 2 9 0 0 0 0 1 +that is that t th tha that BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 7 .- 2 9 0 0 0 0 1 +level cache level l le lev leve BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 7 --, 3 10 0 0 0 0 1 +cache operator cache c ca cac cach BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 7 no 0 10 0 0 0 0 1 +signature. signature. signature. s si sig sign BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 7 . 1 1 0 0 0 0 1 +The CCNx the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 9 . 1 9 0 0 0 0 1 +It specifies it I It It It BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 9 no 0 9 0 0 0 0 1 +be implemented be b be be be BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 9 . 1 9 0 0 0 0 1 +systems, so systems, s sy sys syst BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 9 ,-- 3 9 0 0 0 0 1 +they would they t th the they BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 9 -- 2 10 0 0 0 0 1 +buffer. Some buffer. b bu buf buff BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 9 .,, 3 9 0 0 0 0 1 +each hop, each e ea eac each BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 9 ,() 3 9 0 0 0 0 1 +algorithm, and algorithm, a al alg algo BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 9 , 1 9 0 0 0 0 1 +hash type hash h ha has hash BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 9 . 1 3 0 0 0 0 1 +Mosko, et mosko, M Mo Mos Mosk BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 11 ,. 2 10 0 0 1 0 0 +Experimental Experimental experimental E Ex Exp Expe BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 11 no 0 9 0 0 0 0 0 +[Page 43] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 11 [] 2 7 0 0 0 0 0 +RFC 8609 rfc R RF RFC RFC BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 11 0 no 0 10 0 0 0 0 1 +CCNx TLV ccnx C CC CCN CCNx BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 0 no 0 9 0 0 1 0 1 +July 2019 july J Ju Jul July BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 11 0 no 0 10 0 0 0 0 1 +A CCNx a A A A A BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 1 0 0 0 0 0 11 0 ,- 2 8 0 0 0 0 1 +insensitive hostname. insensitive i in ins inse BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 0 .- 2 9 0 0 0 0 1 +matching of matching m ma mat matc BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 0 . 1 9 0 0 0 0 1 +that human-entered that t th tha that BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 0 -- 2 9 0 0 0 0 1 +symbol mismatches symbol s sy sym symb BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 0 no 0 10 0 0 0 0 1 +the CCNx the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 0 .- 2 9 0 0 0 0 1 +routable prefix routable r ro rou rout BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 0 --,":/."-- 10 9 0 0 0 0 1 +registrations for registrations r re reg regi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 0 ":/.". 6 10 0 0 0 0 1 +this is this t th thi this BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 0 no 0 8 0 0 0 0 1 +conventions, there conventions, c co con conv BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 0 ,. 2 6 0 0 0 0 1 +For a for F Fo For For BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 3 - 1 10 0 0 0 0 1 +approaches, see approaches, a ap app appr BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 3 ,[][]. 6 5 0 0 0 0 1 +6. References 6. 6 6. 6. 6. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 4 . 1 10 0 0 0 0 1 +6.1. Normative 6.1. 6 6. 6.1 6.1. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 4 .. 2 10 0 0 0 0 1 +[RFC2119] Bradner, [rfc2119] [ [R [RF [RFC BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 1 0 0 0 11 4 [],.," 6 10 0 0 0 0 1 +Requirement Levels", requirement R Re Req Requ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 4 ",,, 4 6 0 0 0 0 1 +DOI 10.17487/RFC2119, doi D DO DOI DOI BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 1 0 0 0 0 0 0 11 4 ./,, 4 5 0 0 0 0 1 +<https://www.rfc-editor.org/info/rfc2119>. <https://www.rfc-editor.org/info/rfc2119>. <https://www.rfc-editor.org/info/rfc2119>. < <h <ht <htt BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 1 0 0 1 11 4 ://.-.//. 9 6 0 0 0 0 1 +[RFC8174] Leiba, [rfc8174] [ [R [RF [RFC BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 5 [],.," 6 10 0 0 0 0 1 +2119 Key 2119 2 21 211 2119 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 0 0 0 0 1 0 0 0 11 5 ",,,./, 7 8 0 0 0 0 1 +May 2017, may M Ma May May BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 11 5 ,://.-.//. 10 8 0 0 0 0 1 +6.2. Informative 6.2. 6 6. 6.2 6.2. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 6 .. 2 10 0 0 0 0 1 +[ace] [ace] [ace] [ [a [ac [ace BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 7 [] 2 1 0 0 0 0 1 +Shang, W., shang, S Sh Sha Shan BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 7 ,.,,.,,.,,.,., 14 9 0 0 0 0 1 +"NDN-ACE: Access "ndn-ace: " "N "ND "NDN BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 11 7 "-: 3 10 0 0 0 0 1 +named data named n na nam name BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 7 ",-, 4 9 0 0 0 0 1 +2015, <http://new.named-data.net/wp-content/uploads/2015/ 2015, 2 20 201 2015 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 1 0 0 0 11 7 ,://.-./-/// 12 9 0 0 0 0 1 +12/ndn-0036-1-ndn-ace.pdf>. 12/ndn-0036-1-ndn-ace.pdf>. 12/ndn-0036-1-ndn-ace.pdf>. 1 12 12/ 12/n BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 7 /----.. 7 4 0 0 0 0 1 +[ccnxke] [ccnxke] [ccnxke] [ [c [cc [ccn BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 9 [] 2 1 0 0 0 0 1 +Mosko, M., mosko, M Mo Mos Mosk BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 9 ,.,,.,.," 9 9 0 0 0 0 1 +Protocol Version protocol P Pr Pro Prot BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 9 .",,--- 7 10 0 0 0 0 1 +ccnxkeyexchange-02, March ccnxkeyexchange-02, c cc ccn ccnx BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 9 -,. 3 5 0 0 0 0 1 +[CCNxURI] Mosko, [ccnxuri] [ [C [CC [CCN BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 10 [],..,"", 9 10 0 0 0 0 1 +Progress, draft-mosko-icnrg-ccnxurischeme-01, progress, P Pr Pro Prog BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 10 ,----,. 7 9 0 0 0 0 1 +[CCNxz] [CCNxz] [ccnxz] [ [C [CC [CCN BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 10 [] 2 1 0 0 0 0 1 +Mosko, M., mosko, M Mo Mos Mosk BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 10 ,.," 4 10 0 0 0 0 1 +Code", commit code", C Co Cod Code BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 10 ",,, 4 6 0 0 0 0 1 +<https://github.com/PARC/CCNxz>. <https://github.com/PARC/CCNxz>. <https://github.com/parc/ccnxz>. < <h <ht <htt BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 1 11 10 ://.//. 7 6 0 0 0 0 1 +Mosko, et mosko, M Mo Mos Mosk BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 11 ,. 2 10 0 0 1 0 0 +Experimental Experimental experimental E Ex Exp Expe BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 11 no 0 9 0 0 0 0 0 +[Page 44] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 11 [] 2 7 0 0 0 0 0 +RFC 8609 rfc R RF RFC RFC BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 11 0 no 0 10 0 0 0 0 1 +CCNx TLV ccnx C CC CCN CCNx BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 0 no 0 9 0 0 1 0 1 +July 2019 july J Ju Jul July BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 11 0 no 0 10 0 0 0 0 1 +[compress] Mosko, [compress] [ [c [co [com BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 0 [],.,"-", 9 10 0 0 0 0 1 +ICNRG Interim icnrg I IC ICN ICNR BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 11 0 ,, 2 4 0 0 0 0 1 +<https://datatracker.ietf.org/meeting/interim-2016-icnrg- <https://datatracker.ietf.org/meeting/interim-2016-icnrg- <https://datatracker.ietf.org/meeting/interim-2016-icnrg- < <h <ht <htt BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 1 0 0 1 11 0 ://..//--- 10 8 0 0 0 0 1 +02/materials/slides-interim-2016-icnrg-2-7>. 02/materials/slides-interim-2016-icnrg-2-7>. 02/materials/slides-interim-2016-icnrg-2-7>. 0 02 02/ 02/m BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 1 0 0 0 11 0 //-----. 8 6 0 0 0 0 1 +[ECC] [ECC] [ecc] [ [E [EC [ECC BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 11 1 [] 2 1 0 0 0 0 1 +Certicom Research, certicom C Ce Cer Cert BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 1 ,": 3 10 0 0 0 0 1 +Domain Parameters", domain D Do Dom Doma BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 1 ",, 3 4 0 0 0 0 1 +<http://www.secg.org/sec2-v2.pdf>. <http://www.secg.org/sec2-v2.pdf>. <http://www.secg.org/sec2-v2.pdf>. < <h <ht <htt BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 1 11 1 ://../-.. 9 6 0 0 0 0 1 +[esic] [esic] [esic] [ [e [es [esi BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 2 [] 2 1 0 0 0 0 1 +Mosko, M. mosko, M Mo Mos Mosk BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 2 ,..," 5 9 0 0 0 0 1 +(ESIC)", Work (esic)", ( (E (ES (ESI BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 11 2 ()",,----, 10 10 0 0 0 0 1 +September 2017. september S Se Sep Sept BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 0 0 0 1 0 0 11 2 . 1 3 0 0 0 0 1 +[IANA-PEN] IANA, [iana-pen] [ [I [IA [IAN BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 11 3 [-],"", 7 8 0 0 0 0 1 +<http://www.iana.org/assignments/enterprise-numbers>. <http://www.iana.org/assignments/enterprise-numbers>. <http://www.iana.org/assignments/enterprise-numbers>. < <h <ht <htt BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 1 11 3 ://..//-. 9 10 0 0 0 0 1 +[mobile] [mobile] [mobile] [ [m [mo [mob BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 3 [] 2 1 0 0 0 0 1 +Mosko, M., mosko, M Mo Mos Mosk BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 3 ,.,,.,.," 9 10 0 0 0 0 1 +Content-Centric Networks", content-centric C Co Con Cont BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 3 -",,, 5 9 0 0 0 0 1 +<http://dl.ifip.org/db/conf/networking/ <http://dl.ifip.org/db/conf/networking/ <http://dl.ifip.org/db/conf/networking/ < <h <ht <htt BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 1 11 3 ://..//// 9 7 0 0 0 0 1 +networking2017/1570334964.pdf>. networking2017/1570334964.pdf>. networking2017/1570334964.pdf>. n ne net netw BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 1 0 0 0 11 3 /.. 3 5 0 0 0 0 1 +[nnc] [nnc] [nnc] [ [n [nn [nnc BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 4 [] 2 1 0 0 0 0 1 +Jacobson, V., jacobson, J Ja Jac Jaco BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 4 ,.,,.,,.,,., 12 9 0 0 0 0 1 +Briggs, N., briggs, B Br Bri Brig BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 4 ,.,.,"", 8 10 0 0 0 0 1 +Proceedings of proceedings P Pr Pro Proc BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 4 no 0 8 0 0 0 0 1 +Emerging networking emerging E Em Eme Emer BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 4 ( 1 10 0 0 0 0 1 +'09), 2009, '09), ' '0 '09 '09) BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 4 '),,://.././.. 14 10 0 0 0 0 1 +[RFC5280] Cooper, [rfc5280] [ [R [RF [RFC BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 6 [],.,,.,,.,,., 14 10 0 0 0 0 1 +Housley, R., housley, H Ho Hou Hous BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 6 ,.,.,". 7 8 0 0 0 0 1 +Infrastructure Certificate infrastructure I In Inf Infr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 6 no 0 9 0 0 0 0 1 +(CRL) Profile", (crl) ( (C (CR (CRL BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 11 6 ()",,./,, 9 9 0 0 0 0 1 +<https://www.rfc-editor.org/info/rfc5280>. <https://www.rfc-editor.org/info/rfc5280>. <https://www.rfc-editor.org/info/rfc5280>. < <h <ht <htt BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 1 11 6 ://.-.//. 9 6 0 0 0 0 1 +[RFC7927] Kutscher, [rfc7927] [ [R [RF [RFC BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 8 [],.,.,,.,,.,,., 16 10 0 0 0 0 1 +Corujo, D., corujo, C Co Cor Coru BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 8 ,.,,.,,.,., 11 8 0 0 0 0 1 +"Information-Centric Networking "information-centric " "I "In "Inf BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 8 "-() 4 7 0 0 0 0 1 +Challenges", RFC challenges", C Ch Cha Chal BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 8 ",,./,, 7 8 0 0 0 0 1 +<https://www.rfc-editor.org/info/rfc7927>. <https://www.rfc-editor.org/info/rfc7927>. <https://www.rfc-editor.org/info/rfc7927>. < <h <ht <htt BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 1 11 8 ://.-.//. 9 6 0 0 0 0 1 +[RFC7945] Pentikousis, [rfc7945] [ [R [RF [RFC BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 10 [],.,.,,.,,.,,., 16 10 0 0 0 0 1 +and G. and a an and and BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 10 .,"-: 5 8 0 0 0 0 1 +and Security and a an and and BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 10 ",, 3 5 0 0 0 0 1 +DOI 10.17487/RFC7945, doi D DO DOI DOI BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 1 0 0 0 0 0 0 11 10 ./,, 4 5 0 0 0 0 1 +<https://www.rfc-editor.org/info/rfc7945>. <https://www.rfc-editor.org/info/rfc7945>. <https://www.rfc-editor.org/info/rfc7945>. < <h <ht <htt BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 1 11 10 ://.-.//. 9 6 0 0 0 0 1 +Mosko, et mosko, M Mo Mos Mosk BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 11 ,. 2 10 0 0 1 0 0 +Experimental Experimental experimental E Ex Exp Expe BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 11 no 0 9 0 0 0 0 0 +[Page 45] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 11 [] 2 7 0 0 0 0 0 +RFC 8609 rfc R RF RFC RFC BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 11 0 no 0 10 0 0 0 0 1 +CCNx TLV ccnx C CC CCN CCNx BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 0 no 0 9 0 0 1 0 1 +July 2019 july J Ju Jul July BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 11 0 no 0 10 0 0 0 0 1 +[RFC8126] Cotton, [rfc8126] [ [R [RF [RFC BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 0 [],.,,.,.," 11 10 0 0 0 0 1 +Writing an writing W Wr Wri Writ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 0 ",, 3 8 0 0 0 0 1 +RFC 8126, rfc R RF RFC RFC BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 11 0 ,./,, 5 6 0 0 0 0 1 +<https://www.rfc-editor.org/info/rfc8126>. <https://www.rfc-editor.org/info/rfc8126>. <https://www.rfc-editor.org/info/rfc8126>. < <h <ht <htt BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 1 11 0 ://.-.//. 9 6 0 0 0 0 1 +[RFC8569] Mosko, [rfc8569] [ [R [RF [RFC BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 3 [],.,,.,.,"- 12 10 0 0 0 0 1 +Networking (CCNx) networking N Ne Net Netw BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 3 ()",, 5 6 0 0 0 0 1 +DOI 10.17487/RFC8569, doi D DO DOI DOI BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 1 0 0 0 0 0 0 11 3 ./,, 4 5 0 0 0 0 1 +<https://www.rfc-editor.org/info/rfc8569>. <https://www.rfc-editor.org/info/rfc8569>. <https://www.rfc-editor.org/info/rfc8569>. < <h <ht <htt BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 1 11 3 ://.-.//. 9 6 0 0 0 0 1 +Authors' Addresses authors' A Au Aut Auth BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 6 ' 1 10 0 0 0 0 1 +Marc Mosko marc M Ma Mar Marc BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 0 0 0 0 0 0 11 6 no 0 3 0 0 0 0 1 +PARC, Inc. parc, P PA PAR PARC BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 11 6 ,. 2 3 0 0 0 0 1 +Palo Alto, palo P Pa Pal Palo BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 6 , 1 10 0 0 0 0 1 +United States united U Un Uni Unit BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 6 no 0 8 0 0 0 0 1 +Phone: +01 phone: P Ph Pho Phon BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 7 :-- 3 10 0 0 0 0 1 +Email: mmosko@parc.com email: E Em Ema Emai BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 7 :. 2 9 0 0 0 0 1 +Ignacio Solis ignacio I Ig Ign Igna BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 0 0 0 0 0 0 11 8 no 0 4 0 0 0 0 1 +LinkedIn LinkedIn linkedin L Li Lin Link BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 8 no 0 2 0 0 0 0 1 +Mountain View, mountain M Mo Mou Moun BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 8 , 1 10 0 0 0 0 1 +United States united U Un Uni Unit BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 8 no 0 7 0 0 0 0 1 +Email: nsolis@linkedin.com email: E Em Ema Emai BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 9 :. 2 10 0 0 0 0 1 +Christopher A. christopher C Ch Chr Chri BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 0 0 0 0 0 0 11 9 . 1 6 0 0 0 0 1 +University of university U Un Uni Univ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 9 , 1 10 0 0 0 0 1 +Irvine, California irvine, I Ir Irv Irvi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 9 , 1 7 0 0 0 0 1 +United States united U Un Uni Unit BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 9 no 0 7 0 0 0 0 1 +Phone: +01 phone: P Ph Pho Phon BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 10 :-- 3 10 0 0 0 0 1 +Email: woodc1@uci.edu email: E Em Ema Emai BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 10 :. 2 9 0 0 0 0 1 +Mosko, et mosko, M Mo Mos Mosk BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 11 ,. 2 10 0 0 1 0 0 +Experimental Experimental experimental E Ex Exp Expe BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 11 no 0 9 0 0 0 0 0 +[Page 46] [page [ [P [Pa [Pag BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 11 [] 2 7 0 0 0 0 0 + diff --git a/grobid-trainer/resources/dataset/segmentation/sdo/ietf/corpus/raw/XP015133676.training.segmentation b/grobid-trainer/resources/dataset/segmentation/sdo/ietf/corpus/raw/XP015133676.training.segmentation new file mode 100644 index 0000000000..a84fcaf084 --- /dev/null +++ b/grobid-trainer/resources/dataset/segmentation/sdo/ietf/corpus/raw/XP015133676.training.segmentation @@ -0,0 +1,4320 @@ +server date server s se ser serv BLOCKSTART PAGESTART NEWFONT HIGHERFONT 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 0 ; 1 10 0 0 0 0 0 +Internet Engineering internet I In Int Inte BLOCKSTART PAGEIN NEWFONT HIGHERFONT 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 () 2 10 0 0 0 0 1 +G. Selander g. G G. G. G. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 . 1 4 0 0 0 0 1 +Request for request R Re Req Requ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 : 1 10 0 0 0 0 1 +J. Mattsson j. J J. J. J. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 . 1 4 0 0 0 0 1 +Updates: 7252 updates: U Up Upd Upda BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 : 1 5 0 0 0 0 1 +F. Palombini f. F F. F. F. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 . 1 4 0 0 0 0 1 +Category: Standards category: C Ca Cat Cate BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 : 1 9 0 0 0 0 1 +Ericsson AB ericsson E Er Eri Eric BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 no 0 4 0 0 0 0 1 +ISSN: 2070-1721 issn: I IS ISS ISSN BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 :- 2 5 0 0 0 0 1 +L. Seitz l. L L. L. L. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 . 1 3 0 0 0 0 1 +RISE RISE rise R RI RIS RISE BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 no 0 1 0 0 0 0 1 +July 2019 july J Ju Jul July BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 0 0 no 0 3 0 0 0 0 1 +Object Security object O Ob Obj Obje BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 2 () 2 10 0 0 0 0 1 +Abstract Abstract abstract A Ab Abs Abst BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 2 no 0 10 0 0 0 0 1 +This document this T Th Thi This BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 2 no 0 8 0 0 0 0 1 +Environments (OSCORE), environments E En Env Envi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 2 (),- 4 9 0 0 0 0 1 +the Constrained the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 2 (), 3 9 0 0 0 0 1 +Signing and signing S Si Sig Sign BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 2 ().-- 5 10 0 0 0 0 1 +between endpoints between b be bet betw BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 2 -. 2 9 0 0 0 0 1 +OSCORE is oscore O OS OSC OSCO BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 2 no 0 9 0 0 0 0 1 +range of range r ra ran rang BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 2 , 1 9 0 0 0 0 1 +transport protocols. transport t tr tra tran BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 2 . 1 3 0 0 0 0 1 +Although an although A Al Alt Alth BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 5 , 1 9 0 0 0 0 1 +options processing options o op opt opti BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 5 ., 2 10 0 0 0 0 1 +updates RFC updates u up upd upda BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 5 . 1 2 0 0 0 0 1 +Status of status S St Sta Stat BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 7 no 0 10 0 0 0 0 1 +This is this T Th Thi This BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 7 . 1 10 0 0 0 0 1 +This document this T Th Thi This BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 7 no 0 9 0 0 0 0 1 +(IETF). It (ietf). ( (I (IE (IET BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 7 ().. 4 9 0 0 0 0 1 +received public received r re rec rece BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 7 no 0 10 0 0 0 0 1 +Internet Engineering internet I In Int Inte BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 7 (). 3 9 0 0 0 0 1 +Internet Standards internet I In Int Inte BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 7 . 1 8 0 0 0 0 1 +Information about information I In Inf Info BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 10 ,, 2 10 0 0 0 0 1 +and how and a an and and BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 10 no 0 7 0 0 0 0 1 +https://www.rfc-editor.org/info/rfc8613. https://www.rfc-editor.org/info/rfc8613. https://www.rfc-editor.org/info/rfc8613. h ht htt http BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 1 0 10 ://.-.//. 9 6 0 0 0 0 1 +Selander, et selander, S Se Sel Sela BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 11 ,. 2 10 0 0 1 1 0 +Standards Track standards S St Sta Stan BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 0 11 no 0 9 0 0 0 0 0 +[Page 1] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 11 [] 2 5 0 0 0 0 0 +RFC 8613 rfc R RF RFC RFC BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 no 0 10 0 0 0 0 1 +OSCORE OSCORE oscore O OS OSC OSCO BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 no 0 7 0 0 0 0 1 +July 2019 july J Ju Jul July BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 0 0 no 0 10 0 0 0 0 1 +Copyright Notice copyright C Co Cop Copy BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 no 0 10 0 0 0 0 1 +Copyright (c) copyright C Co Cop Copy BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 () 2 10 0 0 0 0 1 +document authors. document d do doc docu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 .. 2 6 0 0 0 0 1 +This document this T Th Thi This BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 2 ' 1 8 0 0 0 0 1 +Provisions Relating provisions P Pr Pro Prov BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 2 no 0 5 0 0 0 0 1 +(https://trustee.ietf.org/license-info) in (https://trustee.ietf.org/license-info) ( (h (ht (htt BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 1 0 2 (://../-) 9 9 0 0 0 0 1 +publication of publication p pu pub publ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 2 . 1 8 0 0 0 0 1 +carefully, as carefully, c ca car care BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 2 , 1 10 0 0 0 0 1 +to this to t to to to BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 2 . 1 9 0 0 0 0 1 +include Simplified include i in inc incl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 2 . 1 9 0 0 0 0 1 +the Trust the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 2 no 0 9 0 0 0 0 1 +described in described d de des desc BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 2 . 1 5 0 0 0 0 1 +Selander, et selander, S Se Sel Sela BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 11 ,. 2 10 0 0 1 0 0 +Standards Track standards S St Sta Stan BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 0 11 no 0 9 0 0 0 0 0 +[Page 2] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 11 [] 2 5 0 0 0 0 0 +RFC 8613 rfc R RF RFC RFC BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 no 0 10 0 0 0 0 1 +OSCORE OSCORE oscore O OS OSC OSCO BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 no 0 7 0 0 0 0 1 +July 2019 july J Ju Jul July BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 0 0 no 0 10 0 0 0 0 1 +Table of table T Ta Tab Tabl BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 no 0 10 0 0 0 0 1 +1. Introduction 1. 1 1. 1. 1. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ......................... 25 9 0 0 0 0 1 +5 5 5 5 5 5 5 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 0 0 no 0 0 0 0 0 0 1 +1.1. Terminology 1.1. 1 1. 1.1 1.1. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ......................... 25 9 0 0 0 0 1 +7 7 7 7 7 7 7 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 0 0 no 0 0 0 0 0 0 1 +2. The 2. 2 2. 2. 2. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ....................... 23 9 0 0 0 0 1 +8 8 8 8 8 8 8 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 0 0 no 0 0 0 0 0 0 1 +3. The 3. 3 3. 3. 3. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ..................... 21 9 0 0 0 0 1 +8 8 8 8 8 8 8 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 0 0 no 0 0 0 0 0 0 1 +3.1. Security 3.1. 3 3. 3.1 3.1. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ................. 17 9 0 0 0 0 1 +9 9 9 9 9 9 9 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 0 0 no 0 0 0 0 0 0 1 +3.2. Establishment 3.2. 3 3. 3.2 3.2. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ........ 8 9 0 0 0 0 1 +3.3. Requirements 3.3. 3 3. 3.3 3.3. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ....... 7 9 0 0 0 0 1 +4. Protected 4. 4 4. 4. 4. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ................... 19 9 0 0 0 0 1 +4.1. CoAP 4.1. 4 4. 4.1 4.1. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ........................ 24 9 0 0 0 0 1 +4.2. CoAP 4.2. 4 4. 4.2 4.2. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ............... 15 9 0 0 0 0 1 +4.3. Signaling 4.3. 4 4. 4.3 4.3. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ..................... 21 9 0 0 0 0 1 +5. The 5. 5 5. 5. 5. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ........................ 24 9 0 0 0 0 1 +5.1. ID 5.1. 5 5. 5.1 5.1. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ..''.............. 18 9 0 0 0 0 1 +5.2. AEAD 5.2. 5 5. 5.2 5.2. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ......................... 25 9 0 0 0 0 1 +5.3. Plaintext 5.3. 5 5. 5.3 5.3. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 .......................... 26 9 0 0 0 0 1 +5.4. Additional 5.4. 5 5. 5.4 5.4. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ................ 16 9 0 0 0 0 1 +6. OSCORE 6. 6 6. 6. 6. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ................... 19 9 0 0 0 0 1 +6.1. Encoding 6.1. 6 6. 6.1 6.1. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ............. 13 9 0 0 0 0 1 +6.2. Encoding 6.2. 6 6. 6.2 6.2. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ............... 15 9 0 0 0 0 1 +6.3. Examples 6.3. 6 6. 6.3 6.3. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ............. 13 9 0 0 0 0 1 +7. Message 7. 7 7. 7. 7. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 .,,, 4 8 0 0 0 0 1 +Protection . protection P Pr Pro Prot BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 ......................... 25 9 0 0 0 0 1 +7.1. Message 7.1. 7 7. 7.1 7.1. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ....................... 23 9 0 0 0 0 1 +7.2. Sequence 7.2. 7 7. 7.2 7.2. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ...................... 22 9 0 0 0 0 1 +7.3. Freshness 7.3. 7 7. 7.3 7.3. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 .......................... 26 9 0 0 0 0 1 +7.4. Replay 7.4. 7 7. 7.4 7.4. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ...................... 22 9 0 0 0 0 1 +7.5. Losing 7.5. 7 7. 7.5 7.5. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 .............. 14 9 0 0 0 0 1 +8. Processing 8. 8 8. 8. 8. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 .......................... 26 9 0 0 0 0 1 +8.1. Protecting 8.1. 8 8. 8.1 8.1. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ................... 19 9 0 0 0 0 1 +8.2. Verifying 8.2. 8 8. 8.2 8.2. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 .................... 20 9 0 0 0 0 1 +8.3. Protecting 8.3. 8 8. 8.3 8.3. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ................... 19 9 0 0 0 0 1 +8.4. Verifying 8.4. 8 8. 8.4 8.4. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ................... 19 9 0 0 0 0 1 +9. Web 9. 9 9. 9. 9. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 .......................... 26 9 0 0 0 0 1 +10. CoAP-to-CoAP 10. 1 10 10. 10. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 .--................ 19 10 0 0 0 0 1 +11. HTTP 11. 1 11 11. 11. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ........................ 24 10 0 0 0 0 1 +11.1. The 11.1. 1 11 11. 11.1 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ................ 16 9 0 0 0 0 1 +11.2. CoAP-to-HTTP 11.2. 1 11 11. 11.2 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ..--.................. 22 9 0 0 0 0 1 +11.3. HTTP-to-CoAP 11.3. 1 11 11. 11.3 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ..--.................. 22 9 0 0 0 0 1 +11.4. HTTP 11.4. 1 11 11. 11.4 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ....................... 23 9 0 0 0 0 1 +11.5. Example: 11.5. 1 11 11. 11.5 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ..:.......... 13 9 0 0 0 0 1 +11.6. Example: 11.6. 1 11 11. 11.6 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ..:.......... 13 9 0 0 0 0 1 +12. Security 12. 1 12 12. 12. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 .................... 20 10 0 0 0 0 1 +12.1. End-to-end 12.1. 1 12 12. 12.1 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ..--................. 21 9 0 0 0 0 1 +12.2. Security 12.2. 1 12 12. 12.2 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ............... 15 9 0 0 0 0 1 +12.3. Master 12.3. 1 12 12. 12.3 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ....................... 23 9 0 0 0 0 1 +12.4. Replay 12.4. 1 12 12. 12.4 BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ..................... 21 9 0 0 0 0 1 +Selander, et selander, S Se Sel Sela BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 11 ,. 2 10 0 0 1 0 0 +Standards Track standards S St Sta Stan BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 0 11 no 0 9 0 0 0 0 0 +[Page 3] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 11 [] 2 5 0 0 0 0 0 +RFC 8613 rfc R RF RFC RFC BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 no 0 10 0 0 0 0 1 +OSCORE OSCORE oscore O OS OSC OSCO BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 no 0 7 0 0 0 0 1 +July 2019 july J Ju Jul July BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 0 0 no 0 10 0 0 0 0 1 +12.5. Client 12.5. 1 12 12. 12.5 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ...................... 22 9 0 0 0 0 1 +12.6. Cryptographic 12.6. 1 12 12. 12.6 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ................ 16 9 0 0 0 0 1 +12.7. Message 12.7. 1 12 12. 12.7 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 .................... 20 9 0 0 0 0 1 +12.8. Privacy 12.8. 1 12 12. 12.8 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ................... 19 9 0 0 0 0 1 +13. IANA 13. 1 13 13. 13. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ...................... 22 10 0 0 0 0 1 +13.1. COSE 13.1. 1 13 13. 13.1 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 .............. 14 9 0 0 0 0 1 +13.2. CoAP 13.2. 1 13 13. 13.2 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ................ 16 9 0 0 0 0 1 +13.3. CoAP 13.3. 1 13 13. 13.3 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ........... 11 9 0 0 0 0 1 +13.4. Header 13.4. 1 13 13. 13.4 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ................. 17 9 0 0 0 0 1 +13.5. Media 13.5. 1 13 13. 13.5 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 .................. 18 9 0 0 0 0 1 +13.6. CoAP 13.6. 1 13 13. 13.6 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ..-............. 16 9 0 0 0 0 1 +13.7. OSCORE 13.7. 1 13 13. 13.7 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ................. 17 9 0 0 0 0 1 +13.8. Expert 13.8. 1 13 13. 13.8 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ................. 17 9 0 0 0 0 1 +14. References 14. 1 14 14. 14. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 .......................... 26 9 0 0 0 0 1 +14.1. Normative 14.1. 1 14 14. 14.1 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 .................... 20 9 0 0 0 0 1 +14.2. Informative 14.2. 1 14 14. 14.2 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ................... 19 9 0 0 0 0 1 +Appendix A. appendix A Ap App Appe BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 .................. 18 9 0 0 0 0 1 +A.1. Secure a.1. A A. A.1 A.1. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ................... 19 9 0 0 0 0 1 +A.2. Secure a.2. A A. A.2 A.2. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ................. 17 9 0 0 0 0 1 +Appendix B. appendix A Ap App Appe BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 ................. 17 9 0 0 0 0 1 +B.1. Security b.1. B B. B.1 B.1. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ................ 16 9 0 0 0 0 1 +B.2. Security b.2. B B. B.2 B.2. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ........... 11 9 0 0 0 0 1 +Appendix C. appendix A Ap App Appe BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 ..................... 21 9 0 0 0 0 1 +C.1. Test c.1. C C. C.1 C.1. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ..:..... 8 9 0 0 0 0 1 +C.2. Test c.2. C C. C.2 C.2. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ..:.... 7 9 0 0 0 0 1 +C.3. Test c.3. C C. C.3 C.3. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ..:...... 9 9 0 0 0 0 1 +C.4. Test c.4. C C. C.4 C.4. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ..:,.......... 14 9 0 0 0 0 1 +C.5. Test c.5. C C. C.5 C.5. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ..:,.......... 14 9 0 0 0 0 1 +C.6. Test c.6. C C. C.6 C.6. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ..:,.......... 14 9 0 0 0 0 1 +C.7. Test c.7. C C. C.7 C.7. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ..:,......... 13 9 0 0 0 0 1 +C.8. Test c.8. C C. C.8 C.8. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ..:,. 5 9 0 0 0 0 1 +Appendix D. appendix A Ap App Appe BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 ........... 11 9 0 0 0 0 1 +D.1. Threat d.1. D D. D.1 D.1. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ........................ 24 9 0 0 0 0 1 +D.2. Supporting d.2. D D. D.2 D.2. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ................. 17 9 0 0 0 0 1 +D.3. Protected d.3. D D. D.3 D.3. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 .................. 18 9 0 0 0 0 1 +D.4. Uniqueness d.4. D D. D.4 D.4. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ..(,)............... 20 9 0 0 0 0 1 +D.5. Unprotected d.5. D D. D.5 D.5. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ................. 17 9 0 0 0 0 1 +Appendix E. appendix A Ap App Appe BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 ..................... 21 9 0 0 0 0 1 +Acknowledgments . acknowledgments A Ac Ack Ackn BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 ......................... 25 10 0 0 0 0 1 +Authors' Addresses authors' A Au Aut Auth BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 '....................... 24 9 0 0 0 0 1 +Selander, et selander, S Se Sel Sela BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 11 ,. 2 10 0 0 1 0 0 +Standards Track standards S St Sta Stan BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 0 11 no 0 9 0 0 0 0 0 +[Page 4] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 11 [] 2 5 0 0 0 0 0 +RFC 8613 rfc R RF RFC RFC BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 no 0 10 0 0 0 0 1 +OSCORE OSCORE oscore O OS OSC OSCO BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 no 0 7 0 0 0 0 1 +July 2019 july J Ju Jul July BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 0 0 no 0 10 0 0 0 0 1 +1. Introduction 1. 1 1. 1. 1. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 . 1 10 0 0 0 0 1 +The Constrained the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 ()[] 4 9 0 0 0 0 1 +transfer protocol transfer t tr tra tran BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 no 0 8 0 0 0 0 1 +[RFC7228]; CoAP [rfc7228]; [ [R [RF [RFC BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 [];[]. 6 9 0 0 0 0 1 +the use the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 no 0 10 0 0 0 0 1 +[RFC6347] for [rfc6347] [ [R [RF [RFC BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 [].--,--,-- 11 9 0 0 0 0 1 +proxies require proxies p pr pro prox BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 []. 3 9 0 0 0 0 1 +Therefore, the therefore, T Th The Ther BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 , 1 9 0 0 0 0 1 +performing the performing p pe per perf BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 , 1 9 0 0 0 0 1 +eavesdrop on, eavesdrop e ea eav eave BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 ,, 2 9 0 0 0 0 1 +metadata in metadata m me met meta BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 0 . 1 8 0 0 0 0 1 +inject, delete, inject, i in inj inje BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 ,, 2 10 0 0 0 0 1 +by (D)TLS. by b by by by BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 (). 3 1 0 0 0 0 1 +This document this T Th Thi This BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 3 no 0 9 0 0 0 0 1 +Environments (OSCORE) environments E En Env Envi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 3 (),- 4 9 0 0 0 0 1 +mappable HTTP mappable m ma map mapp BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 3 -- 2 9 0 0 0 0 1 +nodes such nodes n no nod node BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 3 - 1 9 0 0 0 0 1 +including HTTP-to-CoAP including i in inc incl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 3 --[]. 5 9 0 0 0 0 1 +CoAP features coap C Co CoA CoAP BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 3 [], 3 9 0 0 0 0 1 +[RFC7641], Block-wise [rfc7641], [ [R [RF [RFC BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 3 [],-[],-[], 11 9 0 0 0 0 1 +as well as a as as as BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 3 []. 3 9 0 0 0 0 1 +end-to-end security end-to-end e en end end- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 3 -- 2 8 0 0 0 0 1 +intermediary nodes intermediary i in int inte BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 3 [--]. 5 8 0 0 0 0 1 +essentially protects essentially e es ess esse BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 3 :, 2 9 0 0 0 0 1 +the requested the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 3 ,,.(), 6 9 0 0 0 0 1 +where "RESTful" where w wh whe wher BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 3 ""() 4 10 0 0 0 0 1 +Architecture [REST]. architecture A Ar Arc Arch BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 3 []. 3 9 0 0 0 0 1 +layer nor layer l la lay laye BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 3 ,; 2 9 0 0 0 0 1 +therefore, those therefore, t th the ther BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 3 ,[]. 4 8 0 0 0 0 1 +Additionally, since additionally, A Ad Add Addi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 3 , 1 9 0 0 0 0 1 +transport [RFC7252] transport t tr tra tran BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 3 [][] 4 9 0 0 0 0 1 +differ only differ d di dif diff BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 3 , 1 9 0 0 0 0 1 +to both to t to to to BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 3 (). 3 8 0 0 0 0 1 +OSCORE works oscore O OS OSC OSCO BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 9 , 1 9 0 0 0 0 1 +small message small s sm sma smal BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 0 9 no 0 10 0 0 0 0 1 +addition to addition a ad add addi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 9 . 1 9 0 0 0 0 1 +are given are a ar are are BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 9 . 1 9 0 0 0 0 1 +layer, such layer, l la lay laye BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 9 ,,-(.., 7 8 0 0 0 0 1 +[CoAP-802.15.4]). OSCORE [coap-802.15.4]). [ [C [Co [CoA BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 9 [-..]). 7 9 0 0 0 0 1 +HTTP. OSCORE http. H HT HTT HTTP BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 9 ., 2 9 0 0 0 0 1 +also be also a al als also BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 9 -, 2 9 0 0 0 0 1 +below. below. below. b be bel belo BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 9 . 1 1 0 0 0 0 1 +Selander, et selander, S Se Sel Sela BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 11 ,. 2 10 0 0 1 0 0 +Standards Track standards S St Sta Stan BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 0 11 no 0 9 0 0 0 0 0 +[Page 5] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 11 [] 2 5 0 0 0 0 0 +RFC 8613 rfc R RF RFC RFC BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 no 0 10 0 0 0 0 1 +OSCORE OSCORE oscore O OS OSC OSCO BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 no 0 7 0 0 0 0 1 +July 2019 july J Ju Jul July BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 0 0 no 0 10 0 0 0 0 1 ++-----------------------------------+ +-----------------------------------+ +-----------------------------------+ + +- +-- +--- BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 ----------------------------------- 35 9 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 no 0 0 0 0 0 0 1 +Application Application application A Ap App Appl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 no 0 3 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 no 0 0 0 0 0 0 1 ++-----------------------------------+ +-----------------------------------+ +-----------------------------------+ + +- +-- +--- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 ----------------------------------- 35 9 0 0 0 0 1 ++-----------------------------------+ \ +-----------------------------------+ + +- +-- +--- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 ----------------------------------- 35 10 0 0 0 0 1 +| Requests | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 // 2 9 0 0 0 0 1 +|-----------------------------------| | |-----------------------------------| | |- |-- |--- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 ----------------------------------- 35 10 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 no 0 0 0 0 0 0 1 +OSCORE OSCORE oscore O OS OSC OSCO BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 no 0 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 no 0 2 0 0 0 0 1 +|-----------------------------------| | |-----------------------------------| | |- |-- |--- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 ----------------------------------- 35 10 0 0 0 0 1 +| Messaging | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 / 1 10 0 0 0 0 1 ++-----------------------------------+ / +-----------------------------------+ + +- +-- +--- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 -----------------------------------/ 36 10 0 0 0 0 1 ++-----------------------------------+ +-----------------------------------+ +-----------------------------------+ + +- +-- +--- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 ----------------------------------- 35 9 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 no 0 0 0 0 0 0 1 +UDP / udp U UD UDP UDP BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 //... 5 4 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 no 0 0 0 0 0 0 1 ++-----------------------------------+ +-----------------------------------+ +-----------------------------------+ + +- +-- +--- BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 ----------------------------------- 35 9 0 0 0 0 1 +Figure 1: figure F Fi Fig Figu BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 4 : 1 10 0 0 0 0 1 +OSCORE is oscore O OS OSC OSCO BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 1 4 no 0 9 0 0 0 0 1 +still allowing still s st sti stil BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 4 (). 3 9 0 0 0 0 1 +existing CoAP-to-CoAP existing e ex exi exis BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 4 --[],- 6 9 0 0 0 0 1 +proxy will proxy p pr pro prox BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 4 .--[] 5 9 0 0 0 0 1 +CoAP-to-HTTP proxies coap-to-http C Co CoA CoAP BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 1 4 --, 3 9 0 0 0 0 1 +Section 11. section S Se Sec Sect BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 4 . 1 9 0 0 0 0 1 +more hops more m mo mor more BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 4 --,.., 6 10 0 0 0 0 1 +hop and hop h ho hop hop BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 4 . 1 9 0 0 0 0 1 +affect the affect a af aff affe BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 4 ;, 2 9 0 0 0 0 1 +scheme defined scheme s sc sch sche BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 4 . 1 8 0 0 0 0 1 +conditions for conditions c co con cond BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 4 . 1 5 0 0 0 0 1 +OSCORE uses oscore O OS OSC OSCO BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 1 7 --- 3 9 0 0 0 0 1 +band or band b ba ban band BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 7 (.). 4 9 0 0 0 0 1 +technical solution technical t te tec tech BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 7 no 0 9 0 0 0 0 1 +(COSE) [RFC8152], (cose) ( (C (CO (COS BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 1 7 ()[],--,, 9 10 0 0 0 0 1 +protection, and protection, p pr pro prot BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 7 ,. 2 10 0 0 0 0 1 +of COSE of o of of of BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 7 ,. 2 9 0 0 0 0 1 +signaled in signaled s si sig sign BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 7 (), 3 9 0 0 0 0 1 +new header new n ne new new BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 7 (.)(.). 7 10 0 0 0 0 1 +solution transforms solution s so sol solu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 7 /"" 3 9 0 0 0 0 1 +before sending, before b be bef befo BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 7 ,. 2 9 0 0 0 0 1 +is a is i is is is BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 7 / 1 8 0 0 0 0 1 +following way: following f fo fol foll BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 7 :/ 2 9 0 0 0 0 1 +(if not (if ( (i (if (if BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 7 (). 3 8 0 0 0 0 1 +encrypted message encrypted e en enc encr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 7 no 0 9 0 0 0 0 1 +CoAP payload/HTTP coap C Co CoA CoAP BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 1 7 /,/ 3 10 0 0 0 0 1 +header field header h he hea head BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 7 . 1 9 0 0 0 0 1 +OSCORE messages, oscore O OS OSC OSCO BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 1 7 ,, 2 9 0 0 0 0 1 +provided in provided p pr pro prov BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 7 . 1 9 0 0 0 0 1 +Section 11. section S Se Sec Sect BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 7 . 1 1 0 0 0 0 1 +Selander, et selander, S Se Sel Sela BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 1 11 ,. 2 10 0 0 1 0 0 +Standards Track standards S St Sta Stan BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 1 11 no 0 9 0 0 0 0 0 +[Page 6] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 11 [] 2 5 0 0 0 0 0 +RFC 8613 rfc R RF RFC RFC BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 1 0 no 0 10 0 0 0 0 1 +OSCORE OSCORE oscore O OS OSC OSCO BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 1 0 no 0 7 0 0 0 0 1 +July 2019 july J Ju Jul July BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 1 0 no 0 10 0 0 0 0 1 +Client Client client C Cl Cli Clie BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 0 no 0 1 0 0 0 0 1 +Server Server server S Se Ser Serv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 1 0 no 0 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 no 0 0 0 0 0 0 1 +OSCORE request oscore O OS OSC OSCO BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 1 0 -.: 3 6 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 no 0 0 0 0 0 0 1 +Header, Token, header, H He Hea Head BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 0 ,, 2 3 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 no 0 0 0 0 0 0 1 +Options: OSCORE, options: O Op Opt Opti BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 0 :,..., 6 4 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 no 0 0 0 0 0 0 1 +Payload: COSE payload: P Pa Pay Payl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 1 0 : 1 5 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 no 0 0 0 0 0 0 1 ++--------------------------------------------->| +--------------------------------------------->| +--------------------------------------------->| + +- +-- +--- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 1 0 --------------------------------------------- 45 10 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 no 0 0 0 0 0 0 1 +|<---------------------------------------------+ |<---------------------------------------------+ |<---------------------------------------------+ | |< |<- |<-- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 1 0 --------------------------------------------- 45 10 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 no 0 0 0 0 0 0 1 +OSCORE response oscore O OS OSC OSCO BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 1 0 -.(): 5 6 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 no 0 0 0 0 0 0 1 +Header, Token, header, H He Hea Head BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 0 ,, 2 3 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 no 0 0 0 0 0 0 1 +Options: OSCORE, options: O Op Opt Opti BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 0 :,..., 6 4 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 no 0 0 0 0 0 0 1 +Payload: COSE payload: P Pa Pay Payl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 1 0 : 1 5 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 no 0 0 0 0 0 0 1 +Figure 2: figure F Fi Fig Figu BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 3 : 1 10 0 0 0 0 1 +An implementation an A An An An BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 1 3 no 0 9 0 0 0 0 1 +the client the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 3 ,, 2 10 0 0 0 0 1 +only one only o on onl only BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 3 . 1 4 0 0 0 0 1 +1.1. Terminology 1.1. 1 1. 1.1 1.1. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 4 .. 2 10 0 0 0 0 1 +The key the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 4 "","","","","", 15 9 0 0 0 0 1 +"SHOULD", "SHOULD "should", " "S "SH "SHO BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 1 4 "","","","","", 15 10 0 0 0 0 1 +"OPTIONAL" in "optional" " "O "OP "OPT BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 1 4 "" 2 9 0 0 0 0 1 +BCP 14 bcp B BC BCP BCP BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 1 4 [][],, 6 9 0 0 0 0 1 +capitals, as capitals, c ca cap capi BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 4 ,. 2 3 0 0 0 0 1 +Readers are readers R Re Rea Read BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 6 no 0 9 0 0 0 0 1 +described in described d de des desc BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 6 [],[], 6 9 0 0 0 0 1 +Representation (CBOR) representation R Re Rep Repr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 6 ()[], 5 9 0 0 0 0 1 +(CDDL) [RFC8610] (cddl) ( (C (CD (CDD BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 1 6 ()[], 5 8 0 0 0 0 1 +environments [RFC7228]. environments e en env envi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 6 []. 3 10 0 0 0 0 1 +[RFC7641], Block-wise [rfc7641], [ [R [RF [RFC BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 6 [],-[],-[] 10 10 0 0 0 0 1 +reliable transport reliable r re rel reli BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 6 []. 3 4 0 0 0 0 1 +The term the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 8 ""-- 4 9 0 0 0 0 1 +path. The path. p pa pat path BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 8 ."--"("--" 10 9 0 0 0 0 1 +"hop-by-hop fragmentation") "hop-by-hop " "h "ho "hop BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 8 "--")"--", 10 10 0 0 0 0 1 +document to document d do doc docu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 8 no 0 9 0 0 0 0 1 +the intermediaries, the t th the the BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 8 ,. 2 9 0 0 0 0 1 +The term the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 10 "" 2 10 0 0 0 0 1 +that the that t th tha that BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 10 / 1 10 0 0 0 0 1 +(see Figure (see ( (s (se (see BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 10 (). 3 2 0 0 0 0 1 +Selander, et selander, S Se Sel Sela BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 1 11 ,. 2 10 0 0 1 0 0 +Standards Track standards S St Sta Stan BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 1 11 no 0 9 0 0 0 0 0 +[Page 7] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 11 [] 2 5 0 0 0 0 0 +RFC 8613 rfc R RF RFC RFC BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 1 0 no 0 10 0 0 0 0 1 +OSCORE OSCORE oscore O OS OSC OSCO BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 1 0 no 0 7 0 0 0 0 1 +July 2019 july J Ju Jul July BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 1 0 no 0 10 0 0 0 0 1 +The terms the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 0 ,,, 3 10 0 0 0 0 1 +Secret, Master secret, S Se Sec Secr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 0 ,,,,, 5 10 0 0 0 0 1 +Key, ID key, K Ke Key Key, BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 0 ,,.. 4 8 0 0 0 0 1 +2. The 2. 2 2. 2. 2. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 1 . 1 10 0 0 0 0 1 +The OSCORE the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 1 (, 2 9 0 0 0 0 1 +extends "Table extends e ex ext exte BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 1 ":"[]) 6 9 0 0 0 0 1 +message is message m me mes mess BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 1 no 0 10 0 0 0 0 1 +object (see object o ob obj obje BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 1 ()., 4 9 0 0 0 0 1 +to forward, to t to to to BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 1 ,,. 3 8 0 0 0 0 1 ++------+---+---+---+---+----------------+--------+--------+---------+ +------+---+---+---+---+----------------+--------+--------+---------+ +------+---+---+---+---+----------------+--------+--------+---------+ + +- +-- +--- BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 1 2 ----------------------------------------------------------- 59 10 0 0 0 0 1 +| No. | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 2 . 1 4 0 0 0 0 1 +| Format | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 2 no 0 4 0 0 0 0 1 ++------+---+---+---+---+----------------+--------+--------+---------+ +------+---+---+---+---+----------------+--------+--------+---------+ +------+---+---+---+---+----------------+--------+--------+---------+ + +- +-- +--- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 1 2 ----------------------------------------------------------- 59 10 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 2 no 0 0 0 0 0 0 1 +9 | 9 9 9 9 9 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 1 2 no 0 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 2 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 2 no 0 0 0 0 0 0 1 +| OSCORE | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 2 no 0 1 0 0 0 0 1 +| (*) | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 2 (*) 3 0 0 0 0 0 1 +| 0-255 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 2 -() 3 2 0 0 0 0 1 ++------+---+---+---+---+----------------+--------+--------+---------+ +------+---+---+---+---+----------------+--------+--------+---------+ +------+---+---+---+---+----------------+--------+--------+---------+ + +- +-- +--- BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 1 2 ----------------------------------------------------------- 59 10 0 0 0 0 1 +C = c C C C C BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 6 , 1 8 0 0 0 0 1 +U = u U U U U BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 6 , 1 7 0 0 0 0 1 +N = n N N N N BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 6 , 1 10 0 0 0 0 1 +R = r R R R R BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 6 no 0 9 0 0 0 0 1 +(*) See (*) ( (* (*) (*) BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 1 6 (*). 4 9 0 0 0 0 1 +Figure 3: figure F Fi Fig Figu BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 6 : 1 10 0 0 0 0 1 +The OSCORE the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 6 (), 3 9 0 0 0 0 1 +Sender Sequence sender S Se Sen Send BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 6 ,, 2 9 0 0 0 0 1 +fields are fields f fi fie fiel BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 1 6 (). 3 9 0 0 0 0 1 +specified in specified s sp spe spec BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 6 .(), 4 9 0 0 0 0 1 +the option the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 6 (). 3 9 0 0 0 0 1 +receiving a receiving r re rec rece BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 1 6 no 0 10 0 0 0 0 1 +option SHALL option o op opt opti BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 6 . 1 7 0 0 0 0 1 +A successful a A A A A BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 1 0 0 0 0 0 1 8 no 0 10 0 0 0 0 1 +contain the contain c co con cont BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 8 . 1 9 0 0 0 0 1 +OSCORE option oscore O OS OSC OSCO BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 1 8 (). 3 8 0 0 0 0 1 +For CoAP for F Fo For For BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 9 ,. 2 10 0 0 0 0 1 +3. The 3. 3 3. 3. 3. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 9 . 1 10 0 0 0 0 1 +OSCORE requires oscore O OS OSC OSCO BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 1 10 no 0 9 0 0 0 0 1 +context used context c co con cont BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 10 . 1 9 0 0 0 0 1 +Authenticated Encryption authenticated A Au Aut Auth BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 10 (,[]) 5 9 0 0 0 0 1 +algorithm for algorithm a al alg algo BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 10 . 1 9 0 0 0 0 1 +In this in I In In In BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 1 10 , 1 10 0 0 0 0 1 +in client in i in in in BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 1 10 no 0 9 0 0 0 0 1 +function. function. function. f fu fun func BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 10 . 1 1 0 0 0 0 1 +Selander, et selander, S Se Sel Sela BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 1 11 ,. 2 10 0 0 1 0 0 +Standards Track standards S St Sta Stan BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 1 11 no 0 9 0 0 0 0 0 +[Page 8] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 11 [] 2 5 0 0 0 0 0 +RFC 8613 rfc R RF RFC RFC BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 1 0 no 0 10 0 0 0 0 1 +OSCORE OSCORE oscore O OS OSC OSCO BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 1 0 no 0 7 0 0 0 0 1 +July 2019 july J Ju Jul July BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 1 0 no 0 10 0 0 0 0 1 +3.1. Security 3.1. 3 3. 3.1 3.1. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 0 .. 2 10 0 0 0 0 1 +The security the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 0 no 0 10 0 0 0 0 1 +carry out carry c ca car carr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 1 0 ., 2 10 0 0 0 0 1 +the security the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 0 ""," 4 9 0 0 0 0 1 +Context", and context", C Co Con Cont BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 1 0 ","". 5 5 0 0 0 0 1 +The endpoints the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 1 no 0 10 0 0 0 0 1 +verify messages verify v ve ver veri BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 1 ; 1 10 0 0 0 0 1 +being derived being b be bei bein BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 1 . 1 9 0 0 0 0 1 +servers need servers s se ser serv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 1 no 0 10 0 0 0 0 1 +use. use. use. u us use use. BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 1 . 1 0 0 0 0 0 1 +An endpoint an A An An An BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 1 2 (); 3 9 0 0 0 0 1 +the other the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 2 ,(), 4 9 0 0 0 0 1 +to derive to t to to to BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 2 . 1 8 0 0 0 0 1 +endpoints, the endpoints, e en end endp BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 2 , 1 9 0 0 0 0 1 +Context of context C Co Con Cont BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 2 ,., 3 8 0 0 0 0 1 +security contexts security s se sec secu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 1 2 no 0 10 0 0 0 0 1 +not the not n no not not BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 2 ,. 2 9 0 0 0 0 1 +security context security s se sec secu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 1 2 . 1 5 0 0 0 0 1 +.---------------------. .---------------------. .---------------------. . .- .-- .--- BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 1 5 .---------------------. 23 5 0 0 0 0 1 +.---------------------. .---------------------. .---------------------. . .- .-- .--- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 1 5 .---------------------. 23 5 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 5 no 0 0 0 0 0 0 1 +Common Context common C Co Com Comm BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 5 no 0 3 0 0 0 0 1 +| = | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 5 no 0 1 0 0 0 0 1 +Common Context common C Co Com Comm BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 5 no 0 3 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 5 no 0 0 0 0 0 0 1 ++---------------------+ +---------------------+ +---------------------+ + +- +-- +--- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 1 5 --------------------- 21 5 0 0 0 0 1 ++---------------------+ +---------------------+ +---------------------+ + +- +-- +--- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 1 5 --------------------- 21 5 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 5 no 0 0 0 0 0 0 1 +Sender Context sender S Se Sen Send BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 5 no 0 3 0 0 0 0 1 +| = | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 5 no 0 5 0 0 0 0 1 ++---------------------+ +---------------------+ +---------------------+ + +- +-- +--- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 1 5 --------------------- 21 5 0 0 0 0 1 ++---------------------+ +---------------------+ +---------------------+ + +- +-- +--- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 1 5 --------------------- 21 5 0 0 0 0 1 +| Recipient | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 5 no 0 5 0 0 0 0 1 +Sender Context sender S Se Sen Send BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 5 no 0 3 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 5 no 0 0 0 0 0 0 1 +'---------------------' '---------------------' '---------------------' ' '- '-- '--- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 1 5 '---------------------' 23 5 0 0 0 0 1 +'---------------------' '---------------------' '---------------------' ' '- '-- '--- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 1 5 '---------------------' 23 5 0 0 0 0 1 +Client Client client C Cl Cli Clie BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 5 no 0 1 0 0 0 0 1 +Server Server server S Se Ser Serv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 1 5 no 0 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 5 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 5 no 0 0 0 0 0 0 1 +Retrieve context retrieve R Re Ret Retr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 5 : 1 8 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 5 no 0 0 0 0 0 0 1 +target resource target t ta tar targ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 5 no 0 3 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 5 no 0 0 0 0 0 0 1 +Token = token T To Tok Toke BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 5 , 1 3 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 5 no 0 0 0 0 0 0 1 +Protect request protect P Pr Pro Prot BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 5 no 0 4 0 0 0 0 1 +kid = kid k ki kid kid BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 5 ,... 4 3 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 5 no 0 0 0 0 0 0 1 +Sender Context sender S Se Sen Send BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 5 no 0 3 0 0 0 0 1 ++---------------------->| Retrieve +---------------------->| + +- +-- +--- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 1 5 ---------------------- 22 10 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 5 no 0 0 0 0 0 0 1 +| RID | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 5 no 0 2 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 5 no 0 0 0 0 0 0 1 +| Verify | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 5 no 0 4 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 5 no 0 0 0 0 0 0 1 +| Recipient | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 5 no 0 4 0 0 0 0 1 +| OSCORE | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 5 : 1 3 0 0 0 0 1 +| Protect | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 5 no 0 5 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 5 no 0 0 0 0 0 0 1 +Token = token T To Tok Toke BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 5 ,... 4 7 0 0 0 0 1 +Retrieve context retrieve R Re Ret Retr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 5 ---------------------- 22 10 0 0 0 0 1 +Token = token T To Tok Toke BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 5 no 0 3 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 5 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 5 no 0 0 0 0 0 0 1 +Verify request verify V Ve Ver Veri BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 5 no 0 4 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 5 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 5 no 0 0 0 0 0 0 1 +Recipient Context recipient R Re Rec Reci BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 5 no 0 3 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 5 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 5 no 0 0 0 0 0 0 1 +Figure 4: figure F Fi Fig Figu BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 11 : 1 10 0 0 0 0 1 +Selander, et selander, S Se Sel Sela BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 1 11 ,. 2 10 0 0 1 0 0 +Standards Track standards S St Sta Stan BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 1 11 no 0 9 0 0 0 0 0 +[Page 9] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 11 [] 2 5 0 0 0 0 0 +RFC 8613 rfc R RF RFC RFC BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 1 0 no 0 10 0 0 0 0 1 +OSCORE OSCORE oscore O OS OSC OSCO BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 1 0 no 0 7 0 0 0 0 1 +July 2019 july J Ju Jul July BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 1 0 no 0 10 0 0 0 0 1 +The Common the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 0 : 1 10 0 0 0 0 1 +o AEAD o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 1 0 .. 2 10 0 0 0 0 1 +o HKDF o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 1 0 .-(, 4 10 0 0 0 0 1 +[RFC5869]) used [rfc5869]) [ [R [RF [RFC BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 0 []),, 5 9 0 0 0 0 1 +Common IV. common C Co Com Comm BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 0 . 1 1 0 0 0 0 1 +o Master o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 1 1 .,( 3 10 0 0 0 0 1 +Section 12.3) section S Se Sec Sect BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 1 .). 3 9 0 0 0 0 1 +o Master o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 1 2 .- 2 10 0 0 0 0 1 +salt used salt s sa sal salt BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 2 . 1 6 0 0 0 0 1 +o ID o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 1 3 .- 2 10 0 0 0 0 1 +additional information additional a ad add addi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 3 no 0 10 0 0 0 0 1 +derive AEAD derive d de der deri BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 3 . 1 9 0 0 0 0 1 +described in described d de des desc BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 3 .. 2 4 0 0 0 0 1 +o Common o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 1 4 ., 2 10 0 0 0 0 1 +Salt, and salt, S Sa Sal Salt BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 4 ,.( 3 9 0 0 0 0 1 +Section 5.2). section S Se Sec Sect BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 4 .).. 4 9 0 0 0 0 1 +The Sender the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 5 : 1 10 0 0 0 0 1 +o Sender o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 1 6 ., 2 10 0 0 0 0 1 +derive AEAD derive d de der deri BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 6 , 1 8 0 0 0 0 1 +uniqueness of uniqueness u un uni uniq BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 6 . 1 9 0 0 0 0 1 +AEAD Algorithm. aead A AE AEA AEAD BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 1 6 . 1 2 0 0 0 0 1 +o Sender o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 1 7 . 1 9 0 0 0 0 1 +protect messages protect p pr pro prot BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 7 . 1 10 0 0 0 0 1 +ID. Length id. I ID ID. ID. BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 1 7 .. 2 7 0 0 0 0 1 +o Sender o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 1 8 .- 2 10 0 0 0 0 1 +to enumerate to t to to to BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 8 ,.., 4 8 0 0 0 0 1 +notifications. Used notifications. n no not noti BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 8 .""[] 5 9 0 0 0 0 1 +AEAD nonces. aead A AE AEA AEAD BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 1 8 .. 2 9 0 0 0 0 1 +Initialization is initialization I In Ini Init BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 1 8 ... 3 6 0 0 0 0 1 +The Recipient the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 10 : 1 10 0 0 0 0 1 +o Recipient o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 1 10 ., 2 10 0 0 0 0 1 +to derive to t to to to BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 10 , 1 8 0 0 0 0 1 +uniqueness of uniqueness u un uni uniq BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 10 . 1 9 0 0 0 0 1 +AEAD Algorithm. aead A AE AEA AEAD BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 1 10 . 1 2 0 0 0 0 1 +Selander, et selander, S Se Sel Sela BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 1 11 ,. 2 10 0 0 1 0 0 +Standards Track standards S St Sta Stan BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 1 11 no 0 9 0 0 0 0 0 +[Page 10] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 11 [] 2 5 0 0 0 0 0 +RFC 8613 rfc R RF RFC RFC BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 1 0 no 0 10 0 0 0 0 1 +OSCORE OSCORE oscore O OS OSC OSCO BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 1 0 no 0 7 0 0 0 0 1 +July 2019 july J Ju Jul July BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 1 0 no 0 10 0 0 0 0 1 +o Recipient o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 1 0 . 1 10 0 0 0 0 1 +verify messages verify v ve ver veri BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 0 . 1 8 0 0 0 0 1 +Recipient ID. recipient R Re Rec Reci BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 0 .. 2 8 0 0 0 0 1 +o Replay o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 1 1 (). 3 9 0 0 0 0 1 +requests received. requests r re req requ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 1 1 .. 2 10 0 0 0 0 1 +and Section and a an and and BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 1 ... 3 2 0 0 0 0 1 +All parameters all A Al All All BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 2 no 0 9 0 0 0 0 1 +immutable once immutable i im imm immu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 2 . 1 9 0 0 0 0 1 +free up free f fr fre free BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 1 2 ,, 2 8 0 0 0 0 1 +Recipient Key, recipient R Re Rec Reci BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 2 ,., 3 10 0 0 0 0 1 +may free may m ma may may BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 1 0 0 1 2 no 0 9 0 0 0 0 1 +after the after a af aft afte BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 2 . 1 6 0 0 0 0 1 +Endpoints MAY endpoints E En End Endp BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 1 5 no 0 9 0 0 0 0 1 +security context security s se sec secu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 1 5 . 1 9 0 0 0 0 1 +server, the server, s se ser serv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 5 , 1 9 0 0 0 0 1 +Context, and context, C Co Con Cont BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 5 ,. 2 10 0 0 0 0 1 +The endpoints the T Th The The BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 5 / 1 9 0 0 0 0 1 +roles. In roles. r ro rol role BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 5 ., 2 10 0 0 0 0 1 +AEAD keys aead A AE AEA AEAD BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 1 5 . 1 3 0 0 0 0 1 +3.2. Establishment 3.2. 3 3. 3.2 3.2. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 7 .. 2 10 0 0 0 0 1 +Each endpoint each E Ea Eac Each BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 8 no 0 10 0 0 0 0 1 +small set small s sm sma smal BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 1 8 . 1 10 0 0 0 0 1 +be preestablished: be b be be be BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 8 : 1 2 0 0 0 0 1 +o Master o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 1 9 no 0 10 0 0 0 0 1 +o Sender o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 1 9 no 0 10 0 0 0 0 1 +o Recipient o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 1 9 no 0 10 0 0 0 0 1 +The following the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 9 . 1 10 0 0 0 0 1 +these parameters these t th the thes BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 9 , 1 9 0 0 0 0 1 +below is below b be bel belo BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 9 : 1 2 0 0 0 0 1 +o AEAD o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 1 10 no 0 10 0 0 0 0 1 +* Default * * * * * BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 10 *----(:) 8 10 0 0 0 0 1 +o Master o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 1 11 no 0 10 0 0 0 0 1 +* Default * * * * * BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 11 * 1 10 0 0 0 0 1 +Selander, et selander, S Se Sel Sela BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 1 11 ,. 2 10 0 0 1 0 0 +Standards Track standards S St Sta Stan BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 1 11 no 0 9 0 0 0 0 0 +[Page 11] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 11 [] 2 5 0 0 0 0 0 +RFC 8613 rfc R RF RFC RFC BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 1 0 no 0 10 0 0 0 0 1 +OSCORE OSCORE oscore O OS OSC OSCO BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 1 0 no 0 7 0 0 0 0 1 +July 2019 july J Ju Jul July BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 1 0 no 0 10 0 0 0 0 1 +o HKDF o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 1 0 no 0 10 0 0 0 0 1 +* Default * * * * * BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 *- 2 10 0 0 0 0 1 +o Replay o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 1 0 no 0 10 0 0 0 0 1 +* The * * * * * BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 *-( 3 10 0 0 0 0 1 +Section 4.1.2.6 section S Se Sec Sect BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 0 ...[] 5 8 0 0 0 0 1 +All input all A Al All All BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 2 no 0 9 0 0 0 0 1 +endpoints, but endpoints, e en end endp BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 2 , 1 9 0 0 0 0 1 +endpoints. The endpoints. e en end endp BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 2 . 1 9 0 0 0 0 1 +application specific. application a ap app appl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 2 . 1 8 0 0 0 0 1 +establishment are establishment e es est esta BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 2 . 1 10 0 0 0 0 1 +OSCORE in oscore O OS OSC OSCO BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 1 2 . 1 3 0 0 0 0 1 +3.2.1. Derivation 3.2.1. 3 3. 3.2 3.2. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 4 ...,, 5 10 0 0 0 0 1 +The HKDF the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 5 -[] 3 9 0 0 0 0 1 +defined for defined d de def defi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 5 [].-. 5 9 0 0 0 0 1 +The security the T Th The The BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 5 ,, 2 10 0 0 0 0 1 +IV SHALL iv I IV IV IV BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 1 5 , 1 9 0 0 0 0 1 +consists of consists c co con cons BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 5 -- 2 10 0 0 0 0 1 +[RFC5869]: [RFC5869]: [rfc5869]: [ [R [RF [RFC BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 5 []: 3 1 0 0 0 0 1 +output parameter output o ou out outp BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 7 (,,,) 5 10 0 0 0 0 1 +where: where: where: w wh whe wher BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 8 : 1 10 0 0 0 0 1 +o salt o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 1 8 no 0 10 0 0 0 0 1 +o IKM o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 1 8 no 0 10 0 0 0 0 1 +o info o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 1 9 ( 1 10 0 0 0 0 1 +notation follows notation n no not nota BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 9 []): 4 9 0 0 0 0 1 +info = info i in inf info BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 0 0 0 0 0 0 1 10 [ 1 3 0 0 0 0 1 +id : id i id id id BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 0 0 0 0 0 0 1 10 :, 2 4 0 0 0 0 1 +id_context : id_context i id id_ id_c BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 10 :/, 3 10 0 0 0 0 1 +alg_aead : alg_aead a al alg alg_ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 10 :/, 3 9 0 0 0 0 1 +type : type t ty typ type BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 10 :, 2 5 0 0 0 0 1 +L : l L L L L BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 10 :, 2 4 0 0 0 0 1 +] ] ] ] ] ] ] BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 10 ] 1 0 0 0 0 0 1 +Selander, et selander, S Se Sel Sela BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 1 11 ,. 2 10 0 0 1 0 0 +Standards Track standards S St Sta Stan BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 1 11 no 0 9 0 0 0 0 0 +[Page 12] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 11 [] 2 5 0 0 0 0 0 +RFC 8613 rfc R RF RFC RFC BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 1 0 no 0 10 0 0 0 0 1 +OSCORE OSCORE oscore O OS OSC OSCO BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 1 0 no 0 7 0 0 0 0 1 +July 2019 july J Ju Jul July BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 1 0 no 0 10 0 0 0 0 1 +where: where: where: w wh whe wher BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 0 : 1 10 0 0 0 0 1 +o id o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 1 0 no 0 10 0 0 0 0 1 +Recipient Key, recipient R Re Rec Reci BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 0 ,, 2 8 0 0 0 0 1 +deriving the deriving d de der deri BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 0 . 1 3 0 0 0 0 1 +o id_context o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 1 1 , 1 10 0 0 0 0 1 +provided. provided. provided. p pr pro prov BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 1 . 1 1 0 0 0 0 1 +o alg_aead o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 1 1 ,[]. 4 10 0 0 0 0 1 +o type o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 1 2 """". 5 10 0 0 0 0 1 +include a include i in inc incl BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 2 . 1 4 0 0 0 0 1 +o L o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 1 3 /, 2 10 0 0 0 0 1 +bytes. bytes. bytes. b by byt byte BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 3 . 1 1 0 0 0 0 1 +For example, for F Fo For For BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 3 ,----(. 7 10 0 0 0 0 1 +[RFC8152]) is [rfc8152]) [ [R [RF [RFC BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 3 []),, 5 9 0 0 0 0 1 +for L for f fo for for BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 3 . 1 9 0 0 0 0 1 +default algorithms default d de def defa BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 3 -----, 6 9 0 0 0 0 1 +phase of phase p ph pha phas BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 3 (): 3 8 0 0 0 0 1 +PRK = prk P PR PRK PRK BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 1 6 --(,) 5 10 0 0 0 0 1 +and as and a an and and BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 6 , 1 9 0 0 0 0 1 +phase of phase p ph pha phas BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 6 ;, 2 9 0 0 0 0 1 +Sender Key, sender S Se Sen Send BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 6 ,, 2 10 0 0 0 0 1 +of of of o of of of BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 6 no 0 0 0 0 0 0 1 +output parameter output o ou out outp BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 8 --(,) 5 10 0 0 0 0 1 +where different where w wh whe wher BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 8 no 0 10 0 0 0 0 1 +and where and a an and and BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 8 . 1 7 0 0 0 0 1 +Note that note N No Not Note BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 9 [], 3 10 0 0 0 0 1 +set to set s se set set BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 9 ., 2 9 0 0 0 0 1 +the salt the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 9 . 1 9 0 0 0 0 1 +OSCORE sets oscore O OS OSC OSCO BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 2 9 , 1 9 0 0 0 0 1 +converted to converted c co con conv BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 9 (.[]). 6 9 0 0 0 0 1 +Selander, et selander, S Se Sel Sela BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 2 11 ,. 2 10 0 0 1 0 0 +Standards Track standards S St Sta Stan BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 2 11 no 0 9 0 0 0 0 0 +[Page 13] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 11 [] 2 5 0 0 0 0 0 +RFC 8613 rfc R RF RFC RFC BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 2 0 no 0 10 0 0 0 0 1 +OSCORE OSCORE oscore O OS OSC OSCO BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 2 0 no 0 7 0 0 0 0 1 +July 2019 july J Ju Jul July BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 2 0 no 0 10 0 0 0 0 1 +3.2.2. Initial 3.2.2. 3 3. 3.2 3.2. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 0 ... 3 10 0 0 0 0 1 +The Sender the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 0 . 1 10 0 0 0 0 1 +The supported the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 0 no 0 9 0 0 0 0 1 +application specific application a ap app appl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 0 ( 1 9 0 0 0 0 1 +Section 7.4). section S Se Sec Sect BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 0 .).- 4 9 0 0 0 0 1 +received messages received r re rec rece BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 0 /(... 5 10 0 0 0 0 1 +of [RFC6347]) of o of of of BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 0 []). 4 5 0 0 0 0 1 +3.3. Requirements 3.3. 3 3. 3.3 3.3. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 2 .. 2 10 0 0 0 0 1 +To ensure to T To To To BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 2 ,(, 3 9 0 0 0 0 1 +Salt, ID salt, S Sa Sal Salt BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 2 ,,),..,( 8 9 0 0 0 0 1 +Context, Sender context, C Co Con Cont BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 2 ,) 2 9 0 0 0 0 1 +contexts using contexts c co con cont BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 2 . 1 9 0 0 0 0 1 +that Sender that t th tha that BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 2 no 0 10 0 0 0 0 1 +using the using u us usi usin BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 2 ,,; 3 9 0 0 0 0 1 +requirement guarantees requirement r re req requ BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 2 (,). 4 9 0 0 0 0 1 +Different methods different D Di Dif Diff BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 5 : 1 9 0 0 0 0 1 +allows the allows a al all allo BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 5 , 1 10 0 0 0 0 1 +third party third t th thi thir BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 5 (..,[-]), 9 9 0 0 0 0 1 +out-of-band. The out-of-band. o ou out out- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 5 --.( 4 9 0 0 0 0 1 +string is string s st str stri BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 5 ). 2 9 0 0 0 0 1 +bytes equals bytes b by byt byte BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 5 ,.. 3 9 0 0 0 0 1 +For AES-CCM-16-64-128 for F Fo For For BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 5 ----. 5 9 0 0 0 0 1 +To simplify to T To To To BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 8 , 1 9 0 0 0 0 1 +ID SHOULD id I ID ID ID BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 1 0 0 0 0 0 0 2 8 no 0 9 0 0 0 0 1 +endpoint. If endpoint. e en end endp BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 8 . 1 9 0 0 0 0 1 +Recipient Contexts, recipient R Re Rec Reci BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 8 ,.., 4 9 0 0 0 0 1 +different Common different d di dif diff BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 8 , 1 10 0 0 0 0 1 +times before times t ti tim time BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 8 no 0 9 0 0 0 0 1 +Recipient ID. recipient R Re Rec Reci BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 8 . 1 2 0 0 0 0 1 +The ID the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 10 . 1 10 0 0 0 0 1 +methods used methods m me met meth BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 10 no 0 9 0 0 0 0 1 +the ID the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 10 ., 2 8 0 0 0 0 1 +introduce randomness introduce i in int intr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 10 ( 1 9 0 0 0 0 1 +Appendix B.2). appendix A Ap App Appe BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 10 .).. 4 7 0 0 0 0 1 +Selander, et selander, S Se Sel Sela BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 2 11 ,. 2 10 0 0 1 0 0 +Standards Track standards S St Sta Stan BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 2 11 no 0 9 0 0 0 0 0 +[Page 14] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 11 [] 2 5 0 0 0 0 0 +RFC 8613 rfc R RF RFC RFC BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 2 0 no 0 10 0 0 0 0 1 +OSCORE OSCORE oscore O OS OSC OSCO BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 2 0 no 0 7 0 0 0 0 1 +July 2019 july J Ju Jul July BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 2 0 no 0 10 0 0 0 0 1 +4. Protected 4. 4 4. 4. 4. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 0 . 1 10 0 0 0 0 1 +OSCORE transforms oscore O OS OSC OSCO BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 2 0 ( 1 10 0 0 0 0 1 +an HTTP an a an an an BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 2 0 ),. 3 9 0 0 0 0 1 +protects as protects p pr pro prot BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 0 no 0 9 0 0 0 0 1 +allowing certain allowing a al all allo BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 0 (). 3 9 0 0 0 0 1 +section defines section s se sec sect BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 0 no 0 10 0 0 0 0 1 +them end-to-end them t th the them BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 0 --(). 5 8 0 0 0 0 1 +The remainder the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 2 no 0 8 0 0 0 0 1 +behavior in behavior b be beh beha BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 2 . 1 10 0 0 0 0 1 +hop in hop h ho hop hop BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 2 --, 3 8 0 0 0 0 1 +conceptual CoAP conceptual c co con conc BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 2 / 1 9 0 0 0 0 1 +message as message m me mes mess BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 2 ., 2 9 0 0 0 0 1 +conceptually transformed conceptually c co con conc BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 2 no 0 9 0 0 0 0 1 +message, and message, m me mes mess BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 2 ,. 2 8 0 0 0 0 1 +implementation might implementation i im imp impl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 2 no 0 9 0 0 0 0 1 +the intervening the t th the the BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 2 . 1 5 0 0 0 0 1 +Protection of protection P Pr Pro Prot BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 5 ([]) 4 9 0 0 0 0 1 +specified in specified s sp spe spec BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 5 .. 2 10 0 0 0 0 1 +request/response messages. request/response r re req requ BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 5 /. 2 4 0 0 0 0 1 +Message fields message M Me Mes Mess BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 6 -- 2 10 0 0 0 0 1 +between CoAP between b be bet betw BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 6 : 1 8 0 0 0 0 1 +o Class o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 2 6 :, 2 10 0 0 0 0 1 +o Class o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 2 6 :, 2 10 0 0 0 0 1 +o Class o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 2 7 :. 2 10 0 0 0 0 1 +The sending the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 7 no 0 9 0 0 0 0 1 +ciphertext of ciphertext c ci cip ciph BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 7 . 1 9 0 0 0 0 1 +endpoint SHALL endpoint e en end endp BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 7 no 0 9 0 0 0 0 1 +algorithm, allowing algorithm, a al alg algo BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 7 , 1 10 0 0 0 0 1 +changed in changed c ch cha chan BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 7 . 1 9 0 0 0 0 1 +in transfer. in i in in in BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 2 7 . 1 8 0 0 0 0 1 +transferred in transferred t tr tra tran BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 7 , 1 9 0 0 0 0 1 +which is which w wh whi whic BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 7 . 1 4 0 0 0 0 1 +Message fields message M Me Mes Mess BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 9 ,.., 4 9 0 0 0 0 1 +ciphertext of ciphertext c ci cip ciph BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 9 ,""(). 6 10 0 0 0 0 1 +fields transferred fields f fi fie fiel BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 2 9 no 0 9 0 0 0 0 1 +message, which message, m me mes mess BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 9 ,,""( 5 10 0 0 0 0 1 +Class U). class C Cl Cla Clas BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 9 ).. 3 8 0 0 0 0 1 +Selander, et selander, S Se Sel Sela BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 2 11 ,. 2 10 0 0 1 0 0 +Standards Track standards S St Sta Stan BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 2 11 no 0 9 0 0 0 0 0 +[Page 15] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 11 [] 2 5 0 0 0 0 0 +RFC 8613 rfc R RF RFC RFC BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 2 0 no 0 10 0 0 0 0 1 +OSCORE OSCORE oscore O OS OSC OSCO BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 2 0 no 0 7 0 0 0 0 1 +July 2019 july J Ju Jul July BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 2 0 no 0 10 0 0 0 0 1 +An OSCORE an A An An An BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 2 0 no 0 10 0 0 0 0 1 +a certain a a a a a BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 1 0 0 0 0 0 2 0 . 1 9 0 0 0 0 1 +the receiving the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 0 , 1 9 0 0 0 0 1 +enable proxy enable e en ena enab BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 0 . 1 3 0 0 0 0 1 +4.1. CoAP 4.1. 4 4. 4.1 4.1. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 2 .. 2 10 0 0 0 0 1 +A summary a A A A A BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 1 0 0 0 0 0 2 2 . 1 9 0 0 0 0 1 +that some that t th tha that BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 2 , 1 10 0 0 0 0 1 +are protected are a ar are are BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 2 . 1 8 0 0 0 0 1 +processing as processing p pr pro proc BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 2 ... 3 6 0 0 0 0 1 +Options that options O Op Opt Opti BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 4 no 0 9 0 0 0 0 1 +defined SHALL defined d de def defi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 4 (). 3 9 0 0 0 0 1 +Specifications of specifications S Sp Spe Spec BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 4 no 0 8 0 0 0 0 1 +processed with processed p pr pro proc BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 4 . 1 10 0 0 0 0 1 +it requires it i it it it BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 4 ., 2 9 0 0 0 0 1 +the potential the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 4 no 0 9 0 0 0 0 1 +documented (see documented d do doc docu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 4 (.). 4 4 0 0 0 0 1 +4.1.1. Inner 4.1.1. 4 4. 4.1 4.1. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 7 ... 3 10 0 0 0 0 1 +Inner option inner I In Inn Inne BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 8 () 2 10 0 0 0 0 1 +directly with directly d di dir dire BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 8 . 1 5 0 0 0 0 1 +The sending the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 8 no 0 9 0 0 0 0 1 +present in present p pr pre pres BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 8 no 0 9 0 0 0 0 1 +object (Section object o ob obj obje BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 8 (.) 3 10 0 0 0 0 1 +from the from f fr fro from BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 8 . 1 3 0 0 0 0 1 +The processing the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 10 no 0 10 0 0 0 0 1 +endpoint is endpoint e en end endp BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 10 ... 3 7 0 0 0 0 1 +Selander, et selander, S Se Sel Sela BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 2 11 ,. 2 10 0 0 1 0 0 +Standards Track standards S St Sta Stan BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 2 11 no 0 9 0 0 0 0 0 +[Page 16] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 11 [] 2 5 0 0 0 0 0 +RFC 8613 rfc R RF RFC RFC BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 2 0 no 0 10 0 0 0 0 1 +OSCORE OSCORE oscore O OS OSC OSCO BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 2 0 no 0 7 0 0 0 0 1 +July 2019 july J Ju Jul July BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 2 0 no 0 10 0 0 0 0 1 ++------+-----------------+---+---+ +------+-----------------+---+---+ +------+-----------------+---+---+ + +- +-- +--- BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 2 0 ----------------------------- 29 10 0 0 0 0 1 +| No. | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 . 1 3 0 0 0 0 1 +| E | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 2 0 0 0 0 1 ++------+-----------------+---+---+ +------+-----------------+---+---+ +------+-----------------+---+---+ + +- +-- +--- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 2 0 ----------------------------- 29 10 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 0 0 0 0 0 1 +1 | 1 1 1 1 1 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 2 0 - 1 3 0 0 0 0 1 +| x | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 0 0 0 0 0 1 +3 | 3 3 3 3 3 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 2 0 - 1 3 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 0 0 0 0 0 1 +| x | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 0 0 0 0 0 1 +4 | 4 4 4 4 4 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 2 0 no 0 2 0 0 0 0 1 +| x | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 0 0 0 0 0 1 +5 | 5 5 5 5 5 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 2 0 -- 2 5 0 0 0 0 1 +| x | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 0 0 0 0 0 1 +6 | 6 6 6 6 6 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 2 0 no 0 3 0 0 0 0 1 +| x | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 2 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 0 0 0 0 0 1 +7 | 7 7 7 7 7 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 2 0 - 1 3 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 0 0 0 0 0 1 +| x | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 0 0 0 0 0 1 +8 | 8 8 8 8 8 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 2 0 - 1 5 0 0 0 0 1 +| x | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 0 0 0 0 0 1 +9 | 9 9 9 9 9 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 2 0 no 0 3 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 0 0 0 0 0 1 +| x | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 1 0 0 0 0 1 +| 11 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 - 1 4 0 0 0 0 1 +| x | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 0 0 0 0 0 1 +| 12 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 - 1 8 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 0 0 0 0 0 1 +| 14 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 - 1 4 0 0 0 0 1 +| x | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 2 0 0 0 0 1 +| 15 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 - 1 4 0 0 0 0 1 +| x | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 0 0 0 0 0 1 +| 17 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 4 0 0 0 0 1 +| x | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 0 0 0 0 0 1 +| 20 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 - 1 8 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 0 0 0 0 0 1 +| 23 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 4 0 0 0 0 1 +| x | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 2 0 0 0 0 1 +| 27 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 4 0 0 0 0 1 +| x | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 2 0 0 0 0 1 +| 28 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 3 0 0 0 0 1 +| x | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 2 0 0 0 0 1 +| 35 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 - 1 4 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 0 0 0 0 0 1 +| x | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 1 0 0 0 0 1 +| 39 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 - 1 5 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 0 0 0 0 0 1 +| x | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 1 0 0 0 0 1 +| 60 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 3 0 0 0 0 1 +| x | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 2 0 0 0 0 1 +| 258 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 - 1 5 0 0 0 0 1 +| x | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 2 0 0 0 0 1 ++------+-----------------+---+---+ +------+-----------------+---+---+ +------+-----------------+---+---+ + +- +-- +--- BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 2 0 ----------------------------- 29 10 0 0 0 0 1 +E = e E E E E BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 7 () 2 10 0 0 0 0 1 +U = u U U U U BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 7 () 2 5 0 0 0 0 1 +Figure 5: figure F Fi Fig Figu BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 8 : 1 10 0 0 0 0 1 +4.1.2. Outer 4.1.2. 4 4. 4.1 4.1. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 8 ... 3 10 0 0 0 0 1 +Outer option outer O Ou Out Oute BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 8 () 2 10 0 0 0 0 1 +operations, see operations, o op ope oper BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 8 ,.. 3 4 0 0 0 0 1 +The sending the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 9 no 0 9 0 0 0 0 1 +present in present p pr pre pres BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 9 no 0 9 0 0 0 0 1 +message. All message. m me mes mess BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 9 ., 2 9 0 0 0 0 1 +option, SHALL option, o op opt opti BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 9 ,.[], 5 10 0 0 0 0 1 +where the where w wh whe wher BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 9 no 0 9 0 0 0 0 1 +instance of instance i in ins inst BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 9 . 1 5 0 0 0 0 1 +The processing the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 11 no 0 10 0 0 0 0 1 +specified in specified s sp spe spec BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 11 ... 3 5 0 0 0 0 1 +Selander, et selander, S Se Sel Sela BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 2 11 ,. 2 10 0 0 1 0 0 +Standards Track standards S St Sta Stan BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 2 11 no 0 9 0 0 0 0 0 +[Page 17] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 11 [] 2 5 0 0 0 0 0 +RFC 8613 rfc R RF RFC RFC BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 2 0 no 0 10 0 0 0 0 1 +OSCORE OSCORE oscore O OS OSC OSCO BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 2 0 no 0 7 0 0 0 0 1 +July 2019 july J Ju Jul July BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 2 0 no 0 10 0 0 0 0 1 +A procedure a A A A A BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 1 0 0 0 0 0 2 0 -- 2 9 0 0 0 0 1 +fields is fields f fi fie fiel BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 2 0 .. 2 9 0 0 0 0 1 +repeatable Class repeatable r re rep repe BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 0 no 0 10 0 0 0 0 1 +the order the t th the the BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 0 . 1 9 0 0 0 0 1 +Note: There note: N No Not Note BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 1 :. 2 10 0 0 0 0 1 +4.1.3. Special 4.1.3. 4 4. 4.1 4.1. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 1 ... 3 10 0 0 0 0 1 +Some options some S So Som Some BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 1 . 1 10 0 0 0 0 1 +4.1.3.1. Max-Age 4.1.3.1. 4 4. 4.1 4.1. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 2 ....- 5 10 0 0 0 0 1 +An Inner an A An An An BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 2 2 - 1 10 0 0 0 0 1 +response may response r re res resp BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 2 ([]),- 6 9 0 0 0 0 1 +to-end from to-end t to to- to-e BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 2 -, 2 9 0 0 0 0 1 +option is option o op opt opti BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 2 .- 2 9 0 0 0 0 1 +processed by processed p pr pro proc BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 2 , 1 8 0 0 0 0 1 +Section 4.1.1. section S Se Sec Sect BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 2 ... 3 2 0 0 0 0 1 +An Outer an A An An An BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 2 4 - 1 9 0 0 0 0 1 +of error of o of of of BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 4 - 1 9 0 0 0 0 1 +intermediary nodes. intermediary i in int inte BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 4 .- 2 10 0 0 0 0 1 +with value with w wi wit with BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 4 ,., 3 9 0 0 0 0 1 +8.2, and 8.2, 8 8. 8.2 8.2, BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 4 .,.,, 5 8 0 0 0 0 1 +subsequent OSCORE subsequent s su sub subs BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 4 no 0 8 0 0 0 0 1 +intermediary node intermediary i in int inte BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 4 .- 2 9 0 0 0 0 1 +relieves the relieves r re rel reli BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 4 . 1 8 0 0 0 0 1 +Successful OSCORE successful S Su Suc Succ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 4 - 1 9 0 0 0 0 1 +option. Except option. o op opt opti BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 4 .(...) 6 9 0 0 0 0 1 +used, responses used, u us use used BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 4 ,-. 3 9 0 0 0 0 1 +(Changed) responses, (changed) ( (C (Ch (Cha BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 4 (),-(.). 8 9 0 0 0 0 1 +Observe responses, observe O Ob Obs Obse BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 4 ,,- 3 10 0 0 0 0 1 +value 0 value v va val valu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 4 . 1 8 0 0 0 0 1 +The Outer the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 8 - 1 10 0 0 0 0 1 +Section 4.1.2. section S Se Sec Sect BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 8 ... 3 2 0 0 0 0 1 +4.1.3.2. Uri-Host 4.1.3.2. 4 4. 4.1 4.1. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 9 ....-- 6 10 0 0 0 0 1 +When the when W Wh Whe When BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 9 --( 3 10 0 0 0 0 1 +Section 5.10.1 section S Se Sec Sect BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 9 ..[]), 6 8 0 0 0 0 1 +(Section 5.4.4 (section ( (S (Se (Sec BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 9 (..[]), 7 9 0 0 0 0 1 +and privacy. and a an and and BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 9 . 1 1 0 0 0 0 1 +In order in I In In In BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 2 10 ,-,-, 5 10 0 0 0 0 1 +and Uri-Port and a an and and BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 10 -.-, 4 9 0 0 0 0 1 +Section 4.1.3.3. section S Se Sec Sect BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 10 .... 4 2 0 0 0 0 1 +Selander, et selander, S Se Sel Sela BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 2 11 ,. 2 10 0 0 1 0 0 +Standards Track standards S St Sta Stan BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 2 11 no 0 9 0 0 0 0 0 +[Page 18] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 11 [] 2 5 0 0 0 0 0 +RFC 8613 rfc R RF RFC RFC BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 2 0 no 0 10 0 0 0 0 1 +OSCORE OSCORE oscore O OS OSC OSCO BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 2 0 no 0 7 0 0 0 0 1 +July 2019 july J Ju Jul July BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 2 0 no 0 10 0 0 0 0 1 +Manipulation of manipulation M Ma Man Mani BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 0 (-,- 4 10 0 0 0 0 1 +Port, destination port, P Po Por Port BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 0 ,/) 3 9 0 0 0 0 1 +OSCORE message oscore O OS OSC OSCO BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 2 0 . 1 10 0 0 0 0 1 +servers SHALL servers s se ser serv BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 0 . 1 7 0 0 0 0 1 +4.1.3.3. Proxy-Uri 4.1.3.3. 4 4. 4.1 4.1. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 1 ....- 5 10 0 0 0 0 1 +When Proxy-Uri when W Wh Whe When BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 1 -, 2 9 0 0 0 0 1 +Proxy-Uri value proxy-uri P Pr Pro Prox BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 2 1 --, 3 10 0 0 0 0 1 +Uri-Host, Uri-Port, uri-host, U Ur Uri Uri- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 2 1 -,-,-,- 7 9 0 0 0 0 1 +Section 6.4 section S Se Sec Sect BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 1 .[]. 4 3 0 0 0 0 1 +Uri-Path and uri-path U Ur Uri Uri- BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 2 3 -- 2 10 0 0 0 0 1 +processed as processed p pr pro proc BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 3 (..). 5 6 0 0 0 0 1 +The Proxy-Uri the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 3 - 1 9 0 0 0 0 1 +composition of composition c co com comp BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 3 -,-,- 5 9 0 0 0 0 1 +specified in specified s sp spe spec BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 3 .[] 3 10 0 0 0 0 1 +option of option o op opt opti BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 3 (..). 5 5 0 0 0 0 1 +Note that note N No Not Note BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 5 -- 2 9 0 0 0 0 1 +Uri-* options uri-* U Ur Uri Uri- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 2 5 -*( 3 9 0 0 0 0 1 +[RFC7252]). OSCORE-aware [rfc7252]). [ [R [RF [RFC BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 5 []).- 5 9 0 0 0 0 1 +component of component c co com comp BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 5 (..[]), 7 10 0 0 0 0 1 +so that so s so so so BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 2 5 - 1 9 0 0 0 0 1 +to-HTTP proxies to-http t to to- to-H BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 5 -(.). 5 9 0 0 0 0 1 +cross-protocol proxying cross-protocol c cr cro cros BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 5 -, 2 9 0 0 0 0 1 +is expected is i is is is BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 5 -* 2 9 0 0 0 0 1 +decomposing the decomposing d de dec deco BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 5 -,. 3 9 0 0 0 0 1 +An example an A An An An BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 2 9 -. 2 10 0 0 0 0 1 +the original the t th the the BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 9 : 1 5 0 0 0 0 1 +o Proxy-Uri o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 2 9 -"://./?" 9 10 0 0 0 0 1 +During OSCORE during D Du Dur Duri BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 10 ,-: 3 10 0 0 0 0 1 +o Proxy-Scheme o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 2 10 -"" 3 10 0 0 0 0 1 +o Uri-Host o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 2 10 -"." 4 10 0 0 0 0 1 +o Uri-Port o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 2 10 -""() 5 10 0 0 0 0 1 +o Uri-Path o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 2 11 -"" 3 10 0 0 0 0 1 +o Uri-Query o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 2 11 -"" 3 10 0 0 0 0 1 +Selander, et selander, S Se Sel Sela BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 2 11 ,. 2 10 0 0 1 0 0 +Standards Track standards S St Sta Stan BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 2 11 no 0 9 0 0 0 0 0 +[Page 19] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 11 [] 2 5 0 0 0 0 0 +RFC 8613 rfc R RF RFC RFC BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 2 0 no 0 10 0 0 0 0 1 +OSCORE OSCORE oscore O OS OSC OSCO BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 2 0 no 0 7 0 0 0 0 1 +July 2019 july J Ju Jul July BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 2 0 no 0 10 0 0 0 0 1 +Uri-Path and uri-path U Ur Uri Uri- BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 2 0 -- 2 8 0 0 0 0 1 +Section 4.1.1; section S Se Sec Sect BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 0 ..;, 4 10 0 0 0 0 1 +object: object: object: o ob obj obje BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 0 : 1 1 0 0 0 0 1 +o Uri-Path o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 2 1 -"" 3 10 0 0 0 0 1 +o Uri-Query o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 2 1 -"" 3 10 0 0 0 0 1 +The remaining the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 1 - 1 10 0 0 0 0 1 +options part options o op opt opti BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 1 ,: 2 7 0 0 0 0 1 +o Proxy-Uri o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 2 2 -"://." 7 10 0 0 0 0 1 +See Sections see S Se See See BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 2 2 ..[]. 5 10 0 0 0 0 1 +4.1.3.4. The 4.1.3.4. 4 4. 4.1 4.1. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 2 .... 4 10 0 0 0 0 1 +Block-wise [RFC7959] block-wise B Bl Blo Bloc BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 3 -[]. 4 9 0 0 0 0 1 +support CoAP support s su sup supp BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 2 3 [] 2 9 0 0 0 0 1 +block-wise transfers. block-wise b bl blo bloc BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 3 -.(,,, 6 9 0 0 0 0 1 +Size2), when size2), S Si Siz Size BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 3 ),, 3 8 0 0 0 0 1 +segmentation such segmentation s se seg segm BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 3 . 1 9 0 0 0 0 1 +options, when options, o op opt opti BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 3 ,,-- 4 10 0 0 0 0 1 +of the of o of of of BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 3 . 1 9 0 0 0 0 1 +different performance different d di dif diff BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 3 no 0 8 0 0 0 0 1 +transport. The transport. t tr tra tran BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 3 .-- 3 9 0 0 0 0 1 +both in both b bo bot both BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 3 -, 2 9 0 0 0 0 1 +blocks are blocks b bl blo bloc BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 3 . 1 3 0 0 0 0 1 +4.1.3.4.1. Inner 4.1.3.4.1. 4 4. 4.1 4.1. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 6 ..... 5 10 0 0 0 0 1 +The sending the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 6 no 0 10 0 0 0 0 1 +[RFC7959] before [rfc7959] [ [R [RF [RFC BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 6 []., 4 9 0 0 0 0 1 +the Block the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 6 no 0 9 0 0 0 0 1 +options (Section options o op opt opti BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 6 (..). 5 9 0 0 0 0 1 +the OSCORE the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 6 - 1 9 0 0 0 0 1 +[RFC7959]. [RFC7959]. [rfc7959]. [ [R [RF [RFC BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 6 []. 3 1 0 0 0 0 1 +4.1.3.4.2. Outer 4.1.3.4.2. 4 4. 4.1 4.1. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 8 ..... 5 10 0 0 0 0 1 +Proxies MAY proxies P Pr Pro Prox BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 8 [] 2 10 0 0 0 0 1 +Block option block B Bl Blo Bloc BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 2 8 (..). 5 9 0 0 0 0 1 +that the that t th tha that BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 8 no 0 9 0 0 0 0 1 +protected. As protected. p pr pro prot BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 8 ., 2 9 0 0 0 0 1 +fragments indefinitely, fragments f fr fra frag BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 8 , 1 10 0 0 0 0 1 +the last the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 8 ([]) 4 9 0 0 0 0 1 +message and message m me mes mess BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 8 ., 2 9 0 0 0 0 1 +OSCORE and oscore O OS OSC OSCO BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 2 8 [] 2 9 0 0 0 0 1 +Selander, et selander, S Se Sel Sela BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 2 11 ,. 2 10 0 0 1 0 0 +Standards Track standards S St Sta Stan BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 2 11 no 0 9 0 0 0 0 0 +[Page 20] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 11 [] 2 5 0 0 0 0 0 +RFC 8613 rfc R RF RFC RFC BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 2 0 no 0 10 0 0 0 0 1 +OSCORE OSCORE oscore O OS OSC OSCO BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 2 0 no 0 7 0 0 0 0 1 +July 2019 july J Ju Jul July BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 2 0 no 0 10 0 0 0 0 1 +maximum unfragmented maximum m ma max maxi BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 0 () 2 10 0 0 0 0 1 +the maximum the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 0 . 1 9 0 0 0 0 1 +Messages exceeding messages M Me Mes Mess BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 0 no 0 9 0 0 0 0 1 +endpoint using endpoint e en end endp BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 0 (....). 7 8 0 0 0 0 1 +An endpoint an A An An An BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 2 1 no 0 10 0 0 0 0 1 +SHALL first shall S SH SHA SHAL BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 2 1 [], 3 9 0 0 0 0 1 +blocks of blocks b bl blo bloc BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 1 no 0 9 0 0 0 0 1 +message size message m me mes mess BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 1 . 1 9 0 0 0 0 1 +former case, former f fo for form BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 1 , 1 9 0 0 0 0 1 +defined in defined d de def defi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 1 ., 2 10 0 0 0 0 1 +discarded. discarded. discarded. d di dis disc BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 1 . 1 1 0 0 0 0 1 +Because of because B Be Bec Beca BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 3 --, 3 10 0 0 0 0 1 +server may, server s se ser serv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 3 ,, 2 9 0 0 0 0 1 +target the target t ta tar targ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 3 .- 2 9 0 0 0 0 1 +of blocks of o of of of BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 3 ,, 2 9 0 0 0 0 1 +using the using u us usi usin BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 3 -.. 3 9 0 0 0 0 1 +[CoAP-ECHO-REQ-TAG]. [CoAP-ECHO-REQ-TAG]. [coap-echo-req-tag]. [ [C [Co [CoA BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 3 [---]. 6 3 0 0 0 0 1 +4.1.3.5. Observe 4.1.3.5. 4 4. 4.1 4.1. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 3 5 .... 4 10 0 0 0 0 1 +Observe [RFC7641] observe O Ob Obs Obse BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 5 []. 3 10 0 0 0 0 1 +support CoAP support s su sup supp BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 3 5 [] 2 10 0 0 0 0 1 +[RFC7641], in [rfc7641], [ [R [RF [RFC BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 3 5 [],- 4 9 0 0 0 0 1 +omitted. omitted. omitted. o om omi omit BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 5 . 1 1 0 0 0 0 1 +The support the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 6 [] 2 8 0 0 0 0 1 +requirements on requirements r re req requ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 6 ..[--],.., 10 10 0 0 0 0 1 +that observations that t th tha that BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 6 , 1 9 0 0 0 0 1 +Figure 8 figure F Fi Fig Figu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 6 []. 3 3 0 0 0 0 1 +Inner Observe inner I In Inn Inne BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 8 no 0 9 0 0 0 0 1 +option between option o op opt opti BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 8 . 1 10 0 0 0 0 1 +forwarding by forwarding f fo for forw BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 8 . 1 4 0 0 0 0 1 +The server the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 9 () 2 8 0 0 0 0 1 +responses (with responses r re res resp BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 9 () 2 8 0 0 0 0 1 +registrations, except registrations, r re reg regi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 9 , 1 10 0 0 0 0 1 +omitted. omitted. omitted. o om omi omit BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 9 . 1 1 0 0 0 0 1 +For cancellations, for F Fo For For BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 10 ,.[] 4 9 0 0 0 0 1 +options MUST options o op opt opti BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 10 no 0 10 0 0 0 0 1 +for the for f fo for for BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 10 . 1 9 0 0 0 0 1 +messages, this messages, m me mes mess BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 10 , 1 10 0 0 0 0 1 +message. message. message. m me mes mess BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 10 . 1 1 0 0 0 0 1 +Selander, et selander, S Se Sel Sela BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 3 11 ,. 2 10 0 0 1 0 0 +Standards Track standards S St Sta Stan BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 3 11 no 0 9 0 0 0 0 0 +[Page 21] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 11 [] 2 5 0 0 0 0 0 +RFC 8613 rfc R RF RFC RFC BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 3 0 no 0 10 0 0 0 0 1 +OSCORE OSCORE oscore O OS OSC OSCO BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 3 0 no 0 7 0 0 0 0 1 +July 2019 july J Ju Jul July BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 3 0 no 0 10 0 0 0 0 1 +[RFC7252] does [rfc7252] [ [R [RF [RFC BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 3 0 [] 2 10 0 0 0 0 1 +the same the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 0 ., 2 10 0 0 0 0 1 +SHOULD NOT should S SH SHO SHOU BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 3 0 no 0 9 0 0 0 0 1 +request with request r re req requ BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 0 . 1 4 0 0 0 0 1 +Since POST since S Si Sin Sinc BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 1 , 1 10 0 0 0 0 1 +the Observe the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 1 ,.() 4 9 0 0 0 0 1 +requests and requests r re req requ BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 3 1 .()(.). 7 9 0 0 0 0 1 +4.1.3.5.1. Registrations 4.1.3.5.1. 4 4. 4.1 4.1. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 3 2 ..... 5 10 0 0 0 0 1 +The Inner the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 2 no 0 10 0 0 0 0 1 +Observe value observe O Ob Obs Obse BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 2 ;() 3 9 0 0 0 0 1 +(cancellation). (cancellation). (cancellation). ( (c (ca (can BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 2 (). 3 2 0 0 0 0 1 +Every time every E Ev Eve Ever BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 3 , 1 9 0 0 0 0 1 +new Partial new n ne new new BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 3 (), 3 9 0 0 0 0 1 +OSCORE option oscore O OS OSC OSCO BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 3 3 . 1 10 0 0 0 0 1 +request as request r re req requ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 3 ''( 3 9 0 0 0 0 1 +Section 5.4). section S Se Sec Sect BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 3 .). 3 2 0 0 0 0 1 +Intermediaries are intermediaries I In Int Inte BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 5 no 0 9 0 0 0 0 1 +context used context c co con cont BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 5 ;, 2 9 0 0 0 0 1 +transform responses transform t tr tra tran BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 5 ( 1 10 0 0 0 0 1 +the receiving the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 5 ). 2 9 0 0 0 0 1 +has the has h ha has has BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 5 no 0 8 0 0 0 0 1 +operations. operations. operations. o op ope oper BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 5 . 1 1 0 0 0 0 1 +o An o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 3 6 no 0 10 0 0 0 0 1 +change the change c ch cha chan BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 6 no 0 9 0 0 0 0 1 +option (see option o op opt opti BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 6 ([]). 5 8 0 0 0 0 1 +cancellation may cancellation c ca can canc BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 6 .[]. 4 9 0 0 0 0 1 +o An o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 3 7 no 0 10 0 0 0 0 1 +into an into i in int into BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 7 -( 2 9 0 0 0 0 1 +[RFC7641]) that [rfc7641]) [ [R [RF [RFC BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 3 7 []). 4 7 0 0 0 0 1 +o An o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 3 8 no 0 10 0 0 0 0 1 +Observe registration observe O Ob Obs Obse BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 8 () 2 9 0 0 0 0 1 +as coming as a as as as BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 8 .- 2 9 0 0 0 0 1 +initiate registrations initiate i in ini init BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 8 (). 3 9 0 0 0 0 1 +OSCORE-unaware proxy oscore-unaware O OS OSC OSCO BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 3 8 - 1 9 0 0 0 0 1 +client, the client, c cl cli clie BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 8 , 1 9 0 0 0 0 1 +triggered. To triggered. t tr tri trig BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 8 .- 2 9 0 0 0 0 1 +proxy canceling proxy p pr pro prox BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 8 , 1 8 0 0 0 0 1 +replayed registration replayed r re rep repl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 8 no 0 8 0 0 0 0 1 +notification. Alternatively, notification. n no not noti BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 8 ., 2 8 0 0 0 0 1 +notification. notification. notification. n no not noti BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 8 . 1 2 0 0 0 0 1 +Selander, et selander, S Se Sel Sela BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 3 11 ,. 2 10 0 0 1 0 0 +Standards Track standards S St Sta Stan BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 3 11 no 0 9 0 0 0 0 0 +[Page 22] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 11 [] 2 5 0 0 0 0 0 +RFC 8613 rfc R RF RFC RFC BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 3 0 no 0 10 0 0 0 0 1 +OSCORE OSCORE oscore O OS OSC OSCO BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 3 0 no 0 7 0 0 0 0 1 +July 2019 july J Ju Jul July BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 3 0 no 0 10 0 0 0 0 1 +o An o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 3 0 - 1 10 0 0 0 0 1 +Observe cancellation observe O Ob Obs Obse BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 0 () 2 9 0 0 0 0 1 +as coming as a as as as BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 0 . 1 9 0 0 0 0 1 +intermediaries to intermediaries i in int inte BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 0 ,.., 4 9 0 0 0 0 1 +Observe option observe O Ob Obs Obse BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 0 (.[]); 6 8 0 0 0 0 1 +however, that however, h ho how howe BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 0 ,,.., 5 8 0 0 0 0 1 +sending a sending s se sen send BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 0 . 1 7 0 0 0 0 1 +specification. specification. specification. s sp spe spec BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 0 . 1 2 0 0 0 0 1 +4.1.3.5.2. Notifications 4.1.3.5.2. 4 4. 4.1 4.1. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 3 2 ..... 5 10 0 0 0 0 1 +If the if I If If If BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 2 , 1 9 0 0 0 0 1 +included in included i in inc incl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 2 (), 3 10 0 0 0 0 1 +the first the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 2 . 1 8 0 0 0 0 1 +against replay, against a ag aga agai BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 2 , 1 9 0 0 0 0 1 +each Observation each e ea eac each BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 2 .- 2 9 0 0 0 0 1 +negative integer negative n ne neg nega BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 2 no 0 9 0 0 0 0 1 +notifications for notifications n no not noti BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 2 . 1 9 0 0 0 0 1 +details of details d de det deta BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 2 no 0 9 0 0 0 0 1 +Section 7.4.1. section S Se Sec Sect BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 2 ... 3 2 0 0 0 0 1 +For notifications, for F Fo For For BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 5 ,( 2 10 0 0 0 0 1 +Section 3.2 section S Se Sec Sect BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 5 .[]). 5 8 0 0 0 0 1 +notification is notification n no not noti BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 5 no 0 9 0 0 0 0 1 +responses to responses r re res resp BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 5 , 1 9 0 0 0 0 1 +Observe option observe O Ob Obs Obse BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 5 . 1 9 0 0 0 0 1 +ordering of ordering o or ord orde BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 5 no 0 9 0 0 0 0 1 +Partial IVs partial P Pa Par Part BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 5 . 1 8 0 0 0 0 1 +If the if I If If If BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 7 no 0 9 0 0 0 0 1 +Inner Observe inner I In Inn Inne BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 7 ,- 2 10 0 0 0 0 1 +response, as response, r re res resp BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 7 ,.. 3 9 0 0 0 0 1 +response to response r re res resp BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 7 -, 2 10 0 0 0 0 1 +it stops it i it it it BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 7 ,.. 3 8 0 0 0 0 1 +A client a A A A A BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 1 0 0 0 0 0 3 9 no 0 10 0 0 0 0 1 +as the as a as as as BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 9 ,. 2 9 0 0 0 0 1 +support existing support s su sup supp BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 3 9 , 1 8 0 0 0 0 1 +implementation MAY implementation i im imp impl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 9 no 0 9 0 0 0 0 1 +significant bytes significant s si sig sign BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 9 . 1 9 0 0 0 0 1 +sure that sure s su sur sure BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 9 no 0 9 0 0 0 0 1 +oldest. oldest. oldest. o ol old olde BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 9 . 1 1 0 0 0 0 1 +Selander, et selander, S Se Sel Sela BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 3 11 ,. 2 10 0 0 1 0 0 +Standards Track standards S St Sta Stan BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 3 11 no 0 9 0 0 0 0 0 +[Page 23] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 11 [] 2 5 0 0 0 0 0 +RFC 8613 rfc R RF RFC RFC BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 3 0 no 0 10 0 0 0 0 1 +OSCORE OSCORE oscore O OS OSC OSCO BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 3 0 no 0 7 0 0 0 0 1 +July 2019 july J Ju Jul July BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 3 0 no 0 10 0 0 0 0 1 +4.1.3.6. No-Response 4.1.3.6. 4 4. 4.1 4.1. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 3 0 ....- 5 10 0 0 0 0 1 +No-Response [RFC7967] no-response N No No- No-R BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 0 -[] 3 9 0 0 0 0 1 +communicate its communicate c co com comm BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 0 no 0 9 0 0 0 0 1 +particular request. particular p pa par part BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 0 .[] 3 10 0 0 0 0 1 +OSCORE option oscore O OS OSC OSCO BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 3 0 []. 3 6 0 0 0 0 1 +If used, if I If If If BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 1 ,-.- 4 9 0 0 0 0 1 +processed by processed p pr pro proc BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 1 ... 3 9 0 0 0 0 1 +SHOULD NOT should S SH SHO SHOU BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 3 1 .- 2 9 0 0 0 0 1 +option. The option. o op opt opti BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 1 .- 2 8 0 0 0 0 1 +(suppress all (suppress ( (s (su (sup BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 1 (). 3 9 0 0 0 0 1 +client MUST client c cl cli clie BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 1 .() 3 10 0 0 0 0 1 +error messages error e er err erro BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 1 no 0 8 0 0 0 0 1 +destination time destination d de des dest BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 1 . 1 5 0 0 0 0 1 +4.1.3.7. OSCORE 4.1.3.7. 4 4. 4.1 4.1. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 3 4 .... 4 10 0 0 0 0 1 +The OSCORE the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 4 no 0 10 0 0 0 0 1 +an indication an a an an an BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 3 4 . 1 9 0 0 0 0 1 +in the in i in in in BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 3 4 no 0 9 0 0 0 0 1 +a whole, a a a a a BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 1 0 0 0 0 0 3 4 , 1 9 0 0 0 0 1 +(see Section (see ( (s (se (see BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 4 (.).: 5 9 0 0 0 0 1 +processing detects processing p pr pro proc BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 4 , 1 9 0 0 0 0 1 +then processing then t th the then BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 4 . 1 4 0 0 0 0 1 +4.2. CoAP 4.2. 4 4. 4.2 4.2. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 3 6 .. 2 10 0 0 0 0 1 +A summary a A A A A BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 1 0 0 0 0 0 3 6 no 0 10 0 0 0 0 1 +shown in shown s sh sho show BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 6 , 1 9 0 0 0 0 1 +CoAP over coap C Co CoA CoAP BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 3 6 (). 3 7 0 0 0 0 1 ++------------------+---+---+ +------------------+---+---+ +------------------+---+---+ + +- +-- +--- BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 3 7 ------------------------ 24 6 0 0 0 0 1 +| Field | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 3 7 no 0 1 0 0 0 0 1 +| E | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 3 7 no 0 2 0 0 0 0 1 ++------------------+---+---+ +------------------+---+---+ +------------------+---+---+ + +- +-- +--- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 3 7 ------------------------ 24 6 0 0 0 0 1 +| Version | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 3 7 () 2 3 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 3 7 no 0 0 0 0 0 0 1 +| x | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 3 7 no 0 1 0 0 0 0 1 +| Type | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 3 7 () 2 3 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 3 7 no 0 0 0 0 0 0 1 +| x | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 3 7 no 0 1 0 0 0 0 1 +| Length | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 3 7 () 2 3 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 3 7 no 0 0 0 0 0 0 1 +| x | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 3 7 no 0 1 0 0 0 0 1 +| Token | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 3 7 no 0 3 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 3 7 no 0 0 0 0 0 0 1 +| x | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 3 7 no 0 1 0 0 0 0 1 +| Code | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 3 7 no 0 1 0 0 0 0 1 +| x | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 3 7 no 0 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 3 7 no 0 0 0 0 0 0 1 +| Message | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 3 7 () 2 5 0 0 0 0 1 +| x | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 3 7 no 0 1 0 0 0 0 1 +| Token | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 3 7 no 0 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 3 7 no 0 0 0 0 0 0 1 +| x | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 3 7 no 0 1 0 0 0 0 1 +| Payload | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 3 7 no 0 2 0 0 0 0 1 +| x | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 3 7 no 0 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 3 7 no 0 0 0 0 0 0 1 ++------------------+---+---+ +------------------+---+---+ +------------------+---+---+ + +- +-- +--- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 3 7 ------------------------ 24 6 0 0 0 0 1 +E = e E E E E BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 3 7 () 2 10 0 0 0 0 1 +U = u U U U U BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 3 7 () 2 5 0 0 0 0 1 +Figure 6: figure F Fi Fig Figu BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 11 : 1 10 0 0 0 0 1 +Selander, et selander, S Se Sel Sela BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 3 11 ,. 2 10 0 0 1 0 0 +Standards Track standards S St Sta Stan BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 3 11 no 0 9 0 0 0 0 0 +[Page 24] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 11 [] 2 5 0 0 0 0 0 +RFC 8613 rfc R RF RFC RFC BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 3 0 no 0 10 0 0 0 0 1 +OSCORE OSCORE oscore O OS OSC OSCO BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 3 0 no 0 7 0 0 0 0 1 +July 2019 july J Ju Jul July BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 3 0 no 0 10 0 0 0 0 1 +Most CoAP most M Mo Mos Most BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 0 (..,- 5 10 0 0 0 0 1 +header) are header) h he hea head BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 0 )/;, 4 10 0 0 0 0 1 +they cannot, they t th the they BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 0 ,,-- 4 10 0 0 0 0 1 +the other. the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 0 ., 2 9 0 0 0 0 1 +request/response layer request/response r re req requ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 0 / 1 8 0 0 0 0 1 +(Section 2 (section ( (S (Se (Sec BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 0 ([]), 5 9 0 0 0 0 1 +not protected not n no not not BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 0 . 1 3 0 0 0 0 1 +The CoAP the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 2 . 1 9 0 0 0 0 1 +encrypted and encrypted e en enc encr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 2 () 2 8 0 0 0 0 1 +intermediary from intermediary i in int inte BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 2 (.., 4 10 0 0 0 0 1 +from GET from f fr fro from BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 2 ). 2 3 0 0 0 0 1 +The sending the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 3 no 0 9 0 0 0 0 1 +message into message m me mes mess BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 3 (.). 4 9 0 0 0 0 1 +After that, after A Af Aft Afte BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 3 , 1 10 0 0 0 0 1 +message. With message. m me mes mess BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 3 .(...), 7 9 0 0 0 0 1 +SHALL be shall S SH SHA SHAL BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 3 3 .().() 6 9 0 0 0 0 1 +responses. The responses. r re res resp BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 3 . 1 9 0 0 0 0 1 +the OSCORE the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 3 no 0 9 0 0 0 0 1 +(Section 5.3) (section ( (S (Se (Sec BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 3 (.). 4 6 0 0 0 0 1 +The other the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 6 ( 1 10 0 0 0 0 1 +U). The u). U U) U). U). BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 3 6 ). 2 9 0 0 0 0 1 +original message original o or ori orig BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 6 . 1 8 0 0 0 0 1 +receiving endpoint receiving r re rec rece BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 3 6 no 0 9 0 0 0 0 1 +OSCORE message oscore O OS OSC OSCO BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 3 6 . 1 8 0 0 0 0 1 +The CoAP the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 7 ,, 2 9 0 0 0 0 1 +encrypted and encrypted e en enc encr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 7 ;, 2 9 0 0 0 0 1 +field. The field. f fi fie fiel BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 7 . 1 9 0 0 0 0 1 +message into message m me mes mess BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 7 (.). 4 9 0 0 0 0 1 +The receiving the T Th The The BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 7 , 1 10 0 0 0 0 1 +recreates the recreates r re rec recr BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 7 . 1 7 0 0 0 0 1 +4.3. Signaling 4.3. 4 4. 4.3 4.3. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 3 9 .. 2 10 0 0 0 0 1 +Signaling messages signaling S Si Sig Sign BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 3 9 (.-.) 5 10 0 0 0 0 1 +information related information i in inf info BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 9 no 0 9 0 0 0 0 1 +specific case specific s sp spe spec BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 9 []. 3 8 0 0 0 0 1 +OSCORE MAY oscore O OS OSC OSCO BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 3 10 no 0 10 0 0 0 0 1 +coincide with coincide c co coi coin BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 10 . 1 10 0 0 0 0 1 +used to used u us use used BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 10 : 1 4 0 0 0 0 1 +o To o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 3 11 [], 3 9 0 0 0 0 1 +Settings Message settings S Se Set Sett BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 11 (). 3 10 0 0 0 0 1 +message SHALL message m me mes mess BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 11 . 1 4 0 0 0 0 1 +Selander, et selander, S Se Sel Sela BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 3 11 ,. 2 10 0 0 1 0 0 +Standards Track standards S St Sta Stan BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 3 11 no 0 9 0 0 0 0 0 +[Page 25] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 11 [] 2 5 0 0 0 0 0 +RFC 8613 rfc R RF RFC RFC BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 3 0 no 0 10 0 0 0 0 1 +OSCORE OSCORE oscore O OS OSC OSCO BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 3 0 no 0 7 0 0 0 0 1 +July 2019 july J Ju Jul July BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 3 0 no 0 10 0 0 0 0 1 +o Signaling o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 3 0 , 1 9 0 0 0 0 1 +except in except e ex exc exce BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 0 no 0 10 0 0 0 0 1 +a previous a a a a a BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 1 0 0 0 0 0 3 0 ; 1 10 0 0 0 0 1 +response message. response r re res resp BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 0 .,.() 5 9 0 0 0 0 1 +request and request r re req requ BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 0 .(). 4 6 0 0 0 0 1 +o The o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 3 2 .(), 4 10 0 0 0 0 1 +unless it unless u un unl unle BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 2 , 1 9 0 0 0 0 1 +case it case c ca cas case BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 3 2 .(). 4 5 0 0 0 0 1 +o All o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 3 3 ,, 2 10 0 0 0 0 1 +(Class E). (class ( (C (Cl (Cla BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 3 (). 3 1 0 0 0 0 1 +NOTE: Option note: N NO NOT NOTE BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 3 3 : 1 10 0 0 0 0 1 +Code (see code C Co Cod Code BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 3 (.[]). 6 5 0 0 0 0 1 +If OSCORE if I If If If BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 4 , 1 10 0 0 0 0 1 +be unaltered be b be be be BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 4 . 1 3 0 0 0 0 1 +5. The 5. 5 5. 5. 5. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 3 4 . 1 10 0 0 0 0 1 +This section this T Th Thi This BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 4 [] 2 9 0 0 0 0 1 +data in data d da dat data BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 4 . 1 10 0 0 0 0 1 +structure (see structure s st str stru BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 4 (.[]). 6 10 0 0 0 0 1 +AEAD key aead A AE AEA AEAD BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 3 4 ,, 2 9 0 0 0 0 1 +Number are number N Nu Num Numb BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 4 . 1 4 0 0 0 0 1 +The AEAD the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 6 ----. 5 9 0 0 0 0 1 +[RFC8152] is [rfc8152] [ [R [RF [RFC BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 3 6 [].----, 8 9 0 0 0 0 1 +length of length l le len leng BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 6 ; 1 10 0 0 0 0 1 +AEAD nonce aead A AE AEA AEAD BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 3 6 . 1 10 0 0 0 0 1 +Number is number N Nu Num Numb BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 6 . 1 5 0 0 0 0 1 +As specified as A As As As BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 8 [], 3 9 0 0 0 0 1 +encrypted and encrypted e en enc encr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 8 , 1 10 0 0 0 0 1 +(AAD) denotes (aad) ( (A (AA (AAD BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 3 8 (). 3 9 0 0 0 0 1 +The COSE the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 9 no 0 10 0 0 0 0 1 +as follows: as a as as as BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 9 : 1 1 0 0 0 0 1 +o The o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 3 9 ''. 3 10 0 0 0 0 1 +o The o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 3 10 '': 3 10 0 0 0 0 1 +* The * * * * * BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 3 10 *''. 4 9 0 0 0 0 1 +Sequence Number. sequence S Se Seq Sequ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 10 . 1 9 0 0 0 0 1 +removed when removed r re rem remo BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 10 , 1 9 0 0 0 0 1 +Partial IV partial P Pa Par Part BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 10 ,. 2 10 0 0 0 0 1 +Selander, et selander, S Se Sel Sela BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 3 11 ,. 2 10 0 0 1 0 0 +Standards Track standards S St Sta Stan BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 3 11 no 0 9 0 0 0 0 0 +[Page 26] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 11 [] 2 5 0 0 0 0 0 +RFC 8613 rfc R RF RFC RFC BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 3 0 no 0 10 0 0 0 0 1 +OSCORE OSCORE oscore O OS OSC OSCO BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 3 0 no 0 7 0 0 0 0 1 +July 2019 july J Ju Jul July BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 3 0 no 0 10 0 0 0 0 1 +This parameter this T Th Thi This BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 0 no 0 9 0 0 0 0 1 +typically be typically t ty typ typi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 0 (, 2 9 0 0 0 0 1 +Observe notifications observe O Ob Obs Obse BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 0 (....) 6 10 0 0 0 0 1 +synchronization (Appendix synchronization s sy syn sync BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 0 (..)). 6 5 0 0 0 0 1 +* The * * * * * BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 3 1 *''.. 5 10 0 0 0 0 1 +parameter SHALL parameter p pa par para BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 1 no 0 9 0 0 0 0 1 +be present be b be be be BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 1 . 1 9 0 0 0 0 1 +included in included i in inc incl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 1 no 0 9 0 0 0 0 1 +communication [Group-OSCORE]. communication c co com comm BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 3 1 [-]. 4 4 0 0 0 0 1 +* Optionally, * * * * * BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 3 2 *,''(.). 8 10 0 0 0 0 1 +parameter MAY parameter p pa par para BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 2 ,, 2 9 0 0 0 0 1 +an ID an a an an an BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 3 2 (.). 4 9 0 0 0 0 1 +present in present p pr pre pres BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 2 :'' 3 9 0 0 0 0 1 +used in used u us use used BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 2 ..'' 4 9 0 0 0 0 1 +is present is i is is is BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 2 , 1 10 0 0 0 0 1 +context with context c co con cont BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 2 . 1 8 0 0 0 0 1 +o The o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 3 5 ''( 3 10 0 0 0 0 1 +or Recipient or o or or or BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 5 ),(.),( 7 9 0 0 0 0 1 +Section 5.3), section S Se Sec Sect BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 5 .),(.). 7 9 0 0 0 0 1 +of [RFC8152]. of o of of of BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 5 []. 3 2 0 0 0 0 1 +The encryption the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 6 .[]. 4 10 0 0 0 0 1 +5.1. ID 5.1. 5 5. 5.1 5.1. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 3 7 ..'' 4 10 0 0 0 0 1 +For certain for F Fo For For BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 7 ,.., 4 9 0 0 0 0 1 +used with used u us use used BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 7 ,(, 3 10 0 0 0 0 1 +see Section see s se see see BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 3 7 .) 2 9 0 0 0 0 1 +the security the t th the the BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 7 (.).: 5 7 0 0 0 0 1 +o If o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 3 8 , 1 10 0 0 0 0 1 +identifier can identifier i id ide iden BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 8 . 1 5 0 0 0 0 1 +o The o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 3 9 no 0 10 0 0 0 0 1 +Recipient Contexts, recipient R Re Rec Reci BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 9 ,.. 3 5 0 0 0 0 1 +o In o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 3 9 [-], 4 9 0 0 0 0 1 +identifier is identifier i id ide iden BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 9 no 0 10 0 0 0 0 1 +contexts for contexts c co con cont BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 9 . 1 8 0 0 0 0 1 +The Sender the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 10 no 0 9 0 0 0 0 1 +input parameters input i in inp inpu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 10 ( 1 10 0 0 0 0 1 +Section 3.2). section S Se Sec Sect BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 10 .). 3 2 0 0 0 0 1 +Selander, et selander, S Se Sel Sela BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 3 11 ,. 2 10 0 0 1 0 0 +Standards Track standards S St Sta Stan BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 3 11 no 0 9 0 0 0 0 0 +[Page 27] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 11 [] 2 5 0 0 0 0 0 +RFC 8613 rfc R RF RFC RFC BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 3 0 no 0 10 0 0 0 0 1 +OSCORE OSCORE oscore O OS OSC OSCO BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 3 0 no 0 7 0 0 0 0 1 +July 2019 july J Ju Jul July BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 3 0 no 0 10 0 0 0 0 1 +While the while W Wh Whi Whil BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 0 '', 3 10 0 0 0 0 1 +COSE header cose C CO COS COSE BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 3 0 '' 2 9 0 0 0 0 1 +Context in context C Co Con Cont BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 0 ,. 2 5 0 0 0 0 1 ++----------+--------+------------+----------------+-----------------+ +----------+--------+------------+----------------+-----------------+ +----------+--------+------------+----------------+-----------------+ + +- +-- +--- BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 3 0 --------------------------------------------------------------- 63 10 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 3 0 no 0 0 0 0 0 0 1 +Name Name name N Na Nam Name BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 0 no 0 0 0 0 0 0 1 +| Label | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 3 0 no 0 5 0 0 0 0 1 +Description Description description D De Des Desc BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 0 no 0 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 3 0 no 0 0 0 0 0 0 1 ++----------+--------+------------+----------------+-----------------+ +----------+--------+------------+----------------+-----------------+ +----------+--------+------------+----------------+-----------------+ + +- +-- +--- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 3 0 --------------------------------------------------------------- 63 10 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 3 0 no 0 0 0 0 0 0 1 +kid kid kid k ki kid kid BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 3 0 no 0 0 0 0 0 0 1 +10 | 10 1 10 10 10 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 0 0 0 0 0 0 0 0 3 0 no 0 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 3 0 no 0 0 0 0 0 0 1 +| Identifies | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 3 0 no 0 2 0 0 0 0 1 +| context | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 3 0 no 0 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 3 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 3 0 no 0 0 0 0 0 0 1 +| context | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 3 0 no 0 2 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 3 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 3 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 3 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 3 0 no 0 0 0 0 0 0 1 +| key | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 3 0 no 0 2 0 0 0 0 1 ++----------+--------+------------+----------------+-----------------+ +----------+--------+------------+----------------+-----------------+ +----------+--------+------------+----------------+-----------------+ + +- +-- +--- BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 3 0 --------------------------------------------------------------- 63 10 0 0 0 0 1 +Figure 7: figure F Fi Fig Figu BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 4 :'' 3 10 0 0 0 0 1 +If ID if I If If If BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 4 - 1 9 0 0 0 0 1 +'kid context' 'kid ' 'k 'ki 'kid BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 4 '' 2 9 0 0 0 0 1 +not find not n no not not BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 4 , 1 9 0 0 0 0 1 +Context in context C Co Con Cont BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 4 ''. 3 9 0 0 0 0 1 +since the since s si sin sinc BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 4 , 1 10 0 0 0 0 1 +response blocked response r re res resp BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 4 -. 2 5 0 0 0 0 1 +5.2. AEAD 5.2. 5 5. 5.2 5.2. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 4 6 .. 2 10 0 0 0 0 1 +The high-level the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 6 -. 2 9 0 0 0 0 1 +[IV-GEN]. The [iv-gen]. [ [I [IV [IV- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 4 6 [-]. 4 10 0 0 0 0 1 +here (see here h he her here BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 6 (): 3 3 0 0 0 0 1 +1. left-pad 1. 1 1. 1. 1. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 4 7 .-(), 5 10 0 0 0 0 1 +2. left-pad 2. 2 2. 2. 2. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 4 7 .- 2 10 0 0 0 0 1 +IV (ID_PIV) iv I IV IV IV BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 4 7 (), 3 9 0 0 0 0 1 +3. concatenate 3. 3 3. 3. 3. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 4 8 .() 3 10 0 0 0 0 1 +padded ID_PIV padded p pa pad padd BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 8 , 1 5 0 0 0 0 1 +4. and 4. 4 4. 4. 4. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 4 8 .. 2 10 0 0 0 0 1 +Note that note N No Not Note BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 8 , 1 10 0 0 0 0 1 +equal or equal e eq equ equa BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 8 . 1 9 0 0 0 0 1 +with S, with w wi wit with BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 8 ,,- 3 8 0 0 0 0 1 +encryption keys encryption e en enc encr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 8 no 0 9 0 0 0 0 1 +specific key specific s sp spe spec BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 8 ,.. 3 6 0 0 0 0 1 +If the if I If If If BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 10 , 1 10 0 0 0 0 1 +request is request r re req requ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 10 .(.., 5 9 0 0 0 0 1 +when there when w wh whe when BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 10 ), 2 10 0 0 0 0 1 +response should response r re res resp BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 10 no 0 9 0 0 0 0 1 +overhead. Both overhead. o ov ove over BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 10 . 1 9 0 0 0 0 1 +Selander, et selander, S Se Sel Sela BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 4 11 ,. 2 10 0 0 1 0 0 +Standards Track standards S St Sta Stan BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 4 11 no 0 9 0 0 0 0 0 +[Page 28] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 11 [] 2 5 0 0 0 0 0 +RFC 8613 rfc R RF RFC RFC BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 4 0 no 0 10 0 0 0 0 1 +OSCORE OSCORE oscore O OS OSC OSCO BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 4 0 no 0 7 0 0 0 0 1 +July 2019 july J Ju Jul July BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 4 0 no 0 10 0 0 0 0 1 +properties, see properties, p pr pro prop BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 0 ,...- 5 9 0 0 0 0 1 +scenario where scenario s sc sce scen BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 0 no 0 9 0 0 0 0 1 +server is server s se ser serv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 0 ,... 4 10 0 0 0 0 1 +For processing for F Fo For For BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 0 . 1 6 0 0 0 0 1 +<-nonce length <-nonce < <- <-n <-no BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 1 ------ 6 8 0 0 0 0 1 ++---+-------------------+--------+---------+-----+ +---+-------------------+--------+---------+-----+ +---+-------------------+--------+---------+-----+ + +- +-- +--- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 4 1 -------------------------------------------- 44 10 0 0 0 0 1 +| S | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 1 no 0 1 0 0 0 0 1 +padding padding padding p pa pad padd BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 1 no 0 1 0 0 0 0 1 +| ID_PIV | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 1 ---- 4 6 0 0 0 0 1 ++---+-------------------+--------+---------+-----+ +---+-------------------+--------+---------+-----+ +---+-------------------+--------+---------+-----+ + +- +-- +--- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 4 1 -------------------------------------------- 44 10 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 1 no 0 0 0 0 0 0 1 +<----------------nonce length <----------------nonce < <- <-- <--- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 1 -------------------------------- 32 9 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 1 no 0 0 0 0 0 0 1 ++------------------------------------------------+ +------------------------------------------------+ +------------------------------------------------+ + +- +-- +--- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 4 1 ------------------------------------------------ 48 10 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 1 no 0 0 0 0 0 0 1 +Common IV common C Co Com Comm BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 1 no 0 1 0 0 0 0 1 +|->(XOR) |->(XOR) |->(xor) | |- |-> |->( BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 4 1 -() 3 1 0 0 0 0 1 ++------------------------------------------------+ +------------------------------------------------+ +------------------------------------------------+ + +- +-- +--- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 4 1 ------------------------------------------------ 48 10 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 1 no 0 0 0 0 0 0 1 +<----------------nonce length <----------------nonce < <- <-- <--- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 1 -------------------------------- 32 9 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 1 no 0 0 0 0 0 0 1 ++------------------------------------------------+ +------------------------------------------------+ +------------------------------------------------+ + +- +-- +--- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 4 1 ------------------------------------------------ 48 10 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 1 no 0 0 0 0 0 0 1 +Nonce Nonce nonce N No Non Nonc BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 4 1 no 0 1 0 0 0 0 1 +|<---+ |<---+ |<---+ | |< |<- |<-- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 4 1 --- 3 1 0 0 0 0 1 ++------------------------------------------------+ +------------------------------------------------+ +------------------------------------------------+ + +- +-- +--- BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 4 1 ------------------------------------------------ 48 10 0 0 0 0 1 +Figure 8: figure F Fi Fig Figu BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 7 : 1 10 0 0 0 0 1 +5.3. Plaintext 5.3. 5 5. 5.3 5.3. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 4 7 .. 2 10 0 0 0 0 1 +The plaintext the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 8 no 0 10 0 0 0 0 1 +header (see header h he hea head BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 8 (): 3 5 0 0 0 0 1 +o the o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 4 8 no 0 10 0 0 0 0 1 +[RFC7252]; and [rfc7252]; [ [R [RF [RFC BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 4 8 []; 3 2 0 0 0 0 1 +o all o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 4 9 (..) 4 10 0 0 0 0 1 +original CoAP original o or ori orig BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 9 (.). 4 9 0 0 0 0 1 +as described as a as as as BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 9 .[], 4 9 0 0 0 0 1 +difference from difference d di dif diff BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 9 no 0 8 0 0 0 0 1 +option; and option; o op opt opti BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 9 ; 1 1 0 0 0 0 1 +o the o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 4 10 ,, 2 10 0 0 0 0 1 +prefixed by prefixed p pr pre pref BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 10 -(). 4 6 0 0 0 0 1 +NOTE: The note: N NO NOT NOTE BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 4 11 : 1 10 0 0 0 0 1 +end-to-end between end-to-end e en end end- BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 11 --. 3 4 0 0 0 0 1 +Selander, et selander, S Se Sel Sela BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 4 11 ,. 2 10 0 0 1 0 0 +Standards Track standards S St Sta Stan BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 4 11 no 0 9 0 0 0 0 0 +[Page 29] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 11 [] 2 5 0 0 0 0 0 +RFC 8613 rfc R RF RFC RFC BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 4 0 no 0 10 0 0 0 0 1 +OSCORE OSCORE oscore O OS OSC OSCO BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 4 0 no 0 7 0 0 0 0 1 +July 2019 july J Ju Jul July BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 4 0 no 0 10 0 0 0 0 1 +0 0 0 0 0 0 0 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 4 0 no 0 0 0 0 0 0 1 +1 1 1 1 1 1 1 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 4 0 no 0 0 0 0 0 0 1 +2 2 2 2 2 2 2 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 4 0 no 0 0 0 0 0 0 1 +3 3 3 3 3 3 3 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 4 0 no 0 0 0 0 0 0 1 +0 1 0 0 0 0 0 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 4 0 no 0 9 0 0 0 0 1 ++-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ + +- +-+ +-+- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 4 0 -------------------------------- 32 10 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 0 no 0 0 0 0 0 0 1 +Code Code code C Co Cod Code BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 0 no 0 0 0 0 0 0 1 +Class E class C Cl Cla Clas BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 0 ()... 5 4 0 0 0 0 1 ++-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ + +- +-+ +-+- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 4 0 -------------------------------- 32 10 0 0 0 0 1 +|1 1 |1 | |1 |1 |1 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 4 0 no 0 2 0 0 0 0 1 +Payload (if payload P Pa Pay Payl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 4 0 ()... 5 3 0 0 0 0 1 ++-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ + +- +-+ +-+- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 4 0 -------------------------------- 32 10 0 0 0 0 1 +(only if (only ( (o (on (onl BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 0 () 2 4 0 0 0 0 1 +Figure 9: figure F Fi Fig Figu BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 5 : 1 10 0 0 0 0 1 +5.4. Additional 5.4. 5 5. 5.4 5.4. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 4 5 .. 2 10 0 0 0 0 1 +The external_aad the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 5 no 0 9 0 0 0 0 1 +defined below, defined d de def defi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 5 ,[] 3 10 0 0 0 0 1 +Appendix E: appendix A Ap App Appe BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 5 : 1 1 0 0 0 0 1 +external_aad = external_aad e ex ext exte BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 6 . 1 10 0 0 0 0 1 +aad_array = aad_array a aa aad aad_ BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 7 [ 1 3 0 0 0 0 1 +oscore_version : oscore_version o os osc osco BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 7 :, 2 5 0 0 0 0 1 +algorithms : algorithms a al alg algo BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 7 :[:/], 6 10 0 0 0 0 1 +request_kid : request_kid r re req requ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 7 :, 2 5 0 0 0 0 1 +request_piv : request_piv r re req requ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 7 :, 2 5 0 0 0 0 1 +options : options o op opt opti BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 7 :, 2 4 0 0 0 0 1 +] ] ] ] ] ] ] BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 7 ] 1 0 0 0 0 0 1 +where: where: where: w wh whe wher BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 8 : 1 10 0 0 0 0 1 +o oscore_version: o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 4 8 :. 2 8 0 0 0 0 1 +Implementations of implementations I Im Imp Impl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 8 . 1 10 0 0 0 0 1 +Other values other O Ot Oth Othe BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 8 . 1 7 0 0 0 0 1 +o algorithms: o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 4 8 :(), 4 10 0 0 0 0 1 +according to according a ac acc acco BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 8 . 1 8 0 0 0 0 1 +o alg_aead: o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 4 9 : 1 10 0 0 0 0 1 +used for used u us use used BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 9 (.). 4 6 0 0 0 0 1 +o request_kid: o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 4 10 :'' 3 10 0 0 0 0 1 +the request the t th the the BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 10 (). 3 4 0 0 0 0 1 +o request_piv: o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 4 10 :'' 3 10 0 0 0 0 1 +object of object o ob obj obje BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 10 (). 3 5 0 0 0 0 1 +Selander, et selander, S Se Sel Sela BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 4 11 ,. 2 10 0 0 1 0 0 +Standards Track standards S St Sta Stan BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 4 11 no 0 9 0 0 0 0 0 +[Page 30] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 11 [] 2 5 0 0 0 0 0 +RFC 8613 rfc R RF RFC RFC BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 4 0 no 0 10 0 0 0 0 1 +OSCORE OSCORE oscore O OS OSC OSCO BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 4 0 no 0 7 0 0 0 0 1 +July 2019 july J Ju Jul July BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 4 0 no 0 10 0 0 0 0 1 +o options: o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 4 0 :(..) 5 10 0 0 0 0 1 +in the in i in in in BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 4 0 . 1 9 0 0 0 0 1 +of [RFC7252], of o of of of BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 0 [], 3 8 0 0 0 0 1 +previously included previously p pr pre prev BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 0 . 1 7 0 0 0 0 1 +The oscore_version the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 1 -- 2 9 0 0 0 0 1 +band; thus, band; b ba ban band BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 1 ;,, 3 10 0 0 0 0 1 +allows to allows a al all allo BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 1 . 1 8 0 0 0 0 1 +NOTE: The note: N NO NOT NOTE BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 4 3 :,, 3 10 0 0 0 0 1 +requests and requests r re req requ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 4 3 ,,..,, 6 9 0 0 0 0 1 +need not need n ne nee need BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 3 . 1 7 0 0 0 0 1 +The AAD the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 4 . 1 10 0 0 0 0 1 +of [RFC8152] of o of of of BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 4 []([] 5 8 0 0 0 0 1 +Appendix E): appendix A Ap App Appe BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 4 ): 2 1 0 0 0 0 1 +AAD = aad A AA AAD AAD BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 4 5 ["",'',] 8 10 0 0 0 0 1 +The following the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 5 no 0 10 0 0 0 0 1 +AES-CCM-16-64-128 (10), aes-ccm-16-64-128 A AE AES AES- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 4 5 ----(),, 8 10 0 0 0 0 1 +Class I class C Cl Cla Clas BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 5 : 1 2 0 0 0 0 1 +o oscore_version: o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 4 7 :() 3 10 0 0 0 0 1 +o algorithms: o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 4 7 :() 3 10 0 0 0 0 1 +o request_kid: o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 4 7 :() 3 10 0 0 0 0 1 +o request_piv: o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 4 7 :() 3 10 0 0 0 0 1 +o options: o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 4 8 :() 3 10 0 0 0 0 1 +o aad_array: o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 4 8 :() 3 10 0 0 0 0 1 +o external_aad: o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 4 8 :() 3 10 0 0 0 0 1 +o AAD: o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 4 8 :() 3 10 0 0 0 0 1 +Note that note N No Not Note BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 9 no 0 10 0 0 0 0 1 +with the with w wi wit with BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 9 . 1 3 0 0 0 0 1 +6. OSCORE 6. 6 6. 6. 6. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 4 9 . 1 10 0 0 0 0 1 +The Concise the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 10 ()[] 4 9 0 0 0 0 1 +very small very v ve ver very BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 10 . 1 10 0 0 0 0 1 +and Encryption and a an and and BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 10 ()[] 4 10 0 0 0 0 1 +of signed of o of of of BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 10 ., 2 8 0 0 0 0 1 +Selander, et selander, S Se Sel Sela BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 4 11 ,. 2 10 0 0 1 0 0 +Standards Track standards S St Sta Stan BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 4 11 no 0 9 0 0 0 0 0 +[Page 31] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 11 [] 2 5 0 0 0 0 0 +RFC 8613 rfc R RF RFC RFC BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 4 0 no 0 10 0 0 0 0 1 +OSCORE OSCORE oscore O OS OSC OSCO BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 4 0 no 0 7 0 0 0 0 1 +July 2019 july J Ju Jul July BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 4 0 no 0 10 0 0 0 0 1 +support a support s su sup supp BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 4 0 no 0 9 0 0 0 0 1 +fully optimized fully f fu ful full BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 0 , 1 10 0 0 0 0 1 +larger than larger l la lar larg BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 0 ., 2 9 0 0 0 0 1 +a stateless a a a a a BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 1 0 0 0 0 0 4 0 , 1 9 0 0 0 0 1 +information from information i in inf info BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 0 , 1 9 0 0 0 0 1 +per-packet overhead. per-packet p pe per per- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 0 -. 2 9 0 0 0 0 1 +object is object o ob obj obje BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 0 "". 3 6 0 0 0 0 1 +The COSE_Encrypt0 the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 1 no 0 10 0 0 0 0 1 +option and option o op opt opti BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 1 . 1 9 0 0 0 0 1 +the COSE the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 1 . 1 8 0 0 0 0 1 +encoded as encoded e en enc enco BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 1 . 1 6 0 0 0 0 1 +6.1. Encoding 6.1. 6 6. 6.1 6.1. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 4 3 .. 2 10 0 0 0 0 1 +The value the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 3 , 1 9 0 0 0 0 1 +the 'Partial the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 3 '',''( 6 10 0 0 0 0 1 +value), and value), v va val valu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 3 ),'': 5 6 0 0 0 0 1 +0 1 0 0 0 0 0 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 4 4 --------------------------- 27 9 0 0 0 0 1 ++-+-+-+-+-+-+-+-+-------------------------------------- +-+-+-+-+-+-+-+-+-------------------------------------- +-+-+-+-+-+-+-+-+-------------------------------------- + +- +-+ +-+- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 4 4 ---------------------------------------------- 46 10 0 0 0 0 1 +|0 0 |0 | |0 |0 |0 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 4 4 no 0 2 0 0 0 0 1 +Partial IV partial P Pa Par Part BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 4 ()... 5 4 0 0 0 0 1 ++-+-+-+-+-+-+-+-+-------------------------------------- +-+-+-+-+-+-+-+-+-------------------------------------- +-+-+-+-+-+-+-+-+-------------------------------------- + +- +-+ +-+- BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 4 4 ---------------------------------------------- 46 10 0 0 0 0 1 +<-1 byte <-1 < <- <-1 <-1 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 4 6 ------------- 13 5 0 0 0 0 1 ++------------+----------------------+------------------+ +------------+----------------------+------------------+ +------------+----------------------+------------------+ + +- +-- +--- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 4 6 ---------------------------------------------------- 52 10 0 0 0 0 1 +| s | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 6 ()()()... 9 10 0 0 0 0 1 ++------------+----------------------+------------------+ +------------+----------------------+------------------+ +------------+----------------------+------------------+ + +- +-- +--- BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 4 6 ---------------------------------------------------- 52 10 0 0 0 0 1 +Figure 10: figure F Fi Fig Figu BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 8 : 1 10 0 0 0 0 1 +o The o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 4 8 ,, 2 10 0 0 0 0 1 +following set following f fo fol foll BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 8 '' 2 9 0 0 0 0 1 +parameter: parameter: parameter: p pa par para BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 8 : 1 1 0 0 0 0 1 +* The * * * * * BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 9 * 1 10 0 0 0 0 1 +n. If n. n n. n. n. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 9 ., 2 8 0 0 0 0 1 +compressed COSE compressed c co com comp BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 9 . 1 8 0 0 0 0 1 +reserved. reserved. reserved. r re res rese BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 9 . 1 1 0 0 0 0 1 +* The * * * * * BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 10 *'',. 5 10 0 0 0 0 1 +set to set s se set set BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 10 ''. 3 9 0 0 0 0 1 +* The * * * * * BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 10 *'',. 5 10 0 0 0 0 1 +It is it I It It It BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 10 ' 1 9 0 0 0 0 1 +context' (see context' c co con cont BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 10 '(.). 5 4 0 0 0 0 1 +Selander, et selander, S Se Sel Sela BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 4 11 ,. 2 10 0 0 1 0 0 +Standards Track standards S St Sta Stan BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 4 11 no 0 9 0 0 0 0 0 +[Page 32] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 11 [] 2 5 0 0 0 0 0 +RFC 8613 rfc R RF RFC RFC BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 4 0 no 0 10 0 0 0 0 1 +OSCORE OSCORE oscore O OS OSC OSCO BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 4 0 no 0 7 0 0 0 0 1 +July 2019 july J Ju Jul July BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 4 0 no 0 10 0 0 0 0 1 +* The * * * * * BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 0 *-- 3 10 0 0 0 0 1 +future use. future f fu fut futu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 0 .. 2 9 0 0 0 0 1 +According to according A Ac Acc Acco BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 0 , 1 10 0 0 0 0 1 +to 1, to t to to to BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 0 , 1 8 0 0 0 0 1 +decompression fails decompression d de dec deco BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 0 .. 2 9 0 0 0 0 1 +The flag the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 1 "" 2 10 0 0 0 0 1 +specified in specified s sp spe spec BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 1 .. 2 4 0 0 0 0 1 +o The o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 4 2 , 1 10 0 0 0 0 1 +Partial IV partial P Pa Par Part BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 2 (). 3 4 0 0 0 0 1 +o The o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 4 3 '' 2 10 0 0 0 0 1 +(Section 5.1), (section ( (S (Se (Sec BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 3 (.),''(). 9 8 0 0 0 0 1 +o The o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 4 4 '',' 4 10 0 0 0 0 1 +context' flag context' c co con cont BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 4 '(). 4 4 0 0 0 0 1 +o The o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 4 4 '','' 5 10 0 0 0 0 1 +present (k present p pr pre pres BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 4 (). 3 2 0 0 0 0 1 +Note that note N No Not Note BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 5 '' 2 10 0 0 0 0 1 +value, even value, v va val valu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 5 , 1 9 0 0 0 0 1 +additional fields additional a ad add addi BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 5 . 1 5 0 0 0 0 1 +The length the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 6 no 0 9 0 0 0 0 1 +length of length l le len leng BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 6 ,'','', 7 9 0 0 0 0 1 +section, and section, s se sec sect BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 6 ,, 2 10 0 0 0 0 1 +defined in defined d de def defi BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 6 . 1 8 0 0 0 0 1 +6.2. Encoding 6.2. 6 6. 6.2 6.2. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 4 7 .. 2 10 0 0 0 0 1 +The payload the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 7 no 0 10 0 0 0 0 1 +COSE object. cose C CO COS COSE BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 4 7 . 1 1 0 0 0 0 1 +6.3. Examples 6.3. 6 6. 6.3 6.3. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 4 8 .. 2 10 0 0 0 0 1 +This section this T Th Thi This BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 8 no 0 9 0 0 0 0 1 +requests and requests r re req requ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 4 8 . 1 9 0 0 0 0 1 +is set is i is is is BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 8 ( 1 9 0 0 0 0 1 +known). Note known). k kn kno know BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 8 )., 3 9 0 0 0 0 1 +full security full f fu ful full BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 8 ,, 2 9 0 0 0 0 1 +input necessary input i in inp inpu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 8 ,.., 4 10 0 0 0 0 1 +object. The object. o ob obj obje BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 8 . 1 9 0 0 0 0 1 +Section 6, section S Se Sec Sect BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 8 ,, 2 10 0 0 0 0 1 +two CoAP two t tw two two BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 8 :. 2 6 0 0 0 0 1 +Selander, et selander, S Se Sel Sela BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 4 11 ,. 2 10 0 0 1 0 0 +Standards Track standards S St Sta Stan BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 4 11 no 0 9 0 0 0 0 0 +[Page 33] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 11 [] 2 5 0 0 0 0 0 +RFC 8613 rfc R RF RFC RFC BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 4 0 no 0 10 0 0 0 0 1 +OSCORE OSCORE oscore O OS OSC OSCO BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 4 0 no 0 7 0 0 0 0 1 +July 2019 july J Ju Jul July BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 4 0 no 0 10 0 0 0 0 1 +1. Request 1. 1 1. 1. 1. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 4 0 ., 2 10 0 0 0 0 1 +0x25, and 0x25, 0 0x 0x2 0x25 BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 4 0 , 1 4 0 0 0 0 1 +Before compression before B Be Bef Befo BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 1 (): 3 10 0 0 0 0 1 +[ [ [ [ [ [ [ BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 1 [ 1 0 0 0 0 0 1 +h'', h'', h'', h h' h'' h'', BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 1 '', 3 1 0 0 0 0 1 +{ 4:h'25', { { { { { BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 1 :'',:'', 8 6 0 0 0 0 1 +h'aea0155667924dff8a24e4cb35b9', h'aea0155667924dff8a24e4cb35b9', h'aea0155667924dff8a24e4cb35b9', h h' h'a h'ae BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 1 0 0 0 4 1 '', 3 10 0 0 0 0 1 +] ] ] ] ] ] ] BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 1 ] 1 0 0 0 0 0 1 +After compression after A Af Aft Afte BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 2 (): 3 10 0 0 0 0 1 +Flag byte: flag F Fl Fla Flag BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 3 :() 3 10 0 0 0 0 1 +Option Value: option O Op Opt Opti BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 3 :() 3 10 0 0 0 0 1 +Payload: 0xaea0155667924dff8a24e4cb35b9 payload: P Pa Pay Payl BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 4 4 :() 3 10 0 0 0 0 1 +2. Request 2. 2 2. 2. 2. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 4 4 ., 2 10 0 0 0 0 1 +empty string, empty e em emp empt BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 4 , 1 5 0 0 0 0 1 +Before compression before B Be Bef Befo BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 5 (): 3 10 0 0 0 0 1 +[ [ [ [ [ [ [ BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 5 [ 1 0 0 0 0 0 1 +h'', h'', h'', h h' h'' h'', BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 5 '', 3 1 0 0 0 0 1 +{ 4:h'', { { { { { BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 5 :'',:'', 8 6 0 0 0 0 1 +h'aea0155667924dff8a24e4cb35b9', h'aea0155667924dff8a24e4cb35b9', h'aea0155667924dff8a24e4cb35b9', h h' h'a h'ae BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 1 0 0 0 4 5 '', 3 10 0 0 0 0 1 +] ] ] ] ] ] ] BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 5 ] 1 0 0 0 0 0 1 +After compression after A Af Aft Afte BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 6 (): 3 10 0 0 0 0 1 +Flag byte: flag F Fl Fla Flag BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 7 :() 3 10 0 0 0 0 1 +Option Value: option O Op Opt Opti BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 7 :() 3 10 0 0 0 0 1 +Payload: 0xaea0155667924dff8a24e4cb35b9 payload: P Pa Pay Payl BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 4 8 :() 3 10 0 0 0 0 1 +3. Request 3. 3 3. 3. 3. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 4 8 ., 2 10 0 0 0 0 1 +empty string, empty e em emp empt BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 8 ,, 2 9 0 0 0 0 1 +Before compression before B Be Bef Befo BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 9 (): 3 10 0 0 0 0 1 +[ [ [ [ [ [ [ BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 10 [ 1 0 0 0 0 0 1 +h'', h'', h'', h h' h'' h'', BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 10 '', 3 1 0 0 0 0 1 +{ 4:h'', { { { { { BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 10 :'',:'',:'', 12 10 0 0 0 0 1 +h'aea0155667924dff8a24e4cb35b9', h'aea0155667924dff8a24e4cb35b9', h'aea0155667924dff8a24e4cb35b9', h h' h'a h'ae BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 1 0 0 0 4 10 '', 3 8 0 0 0 0 1 +] ] ] ] ] ] ] BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 10 ] 1 0 0 0 0 0 1 +Selander, et selander, S Se Sel Sela BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 4 11 ,. 2 10 0 0 1 0 0 +Standards Track standards S St Sta Stan BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 4 11 no 0 9 0 0 0 0 0 +[Page 34] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 11 [] 2 5 0 0 0 0 0 +RFC 8613 rfc R RF RFC RFC BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 4 0 no 0 10 0 0 0 0 1 +OSCORE OSCORE oscore O OS OSC OSCO BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 4 0 no 0 7 0 0 0 0 1 +July 2019 july J Ju Jul July BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 4 0 no 0 10 0 0 0 0 1 +After compression after A Af Aft Afte BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 0 (): 3 10 0 0 0 0 1 +Flag byte: flag F Fl Fla Flag BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 0 :() 3 10 0 0 0 0 1 +Option Value: option O Op Opt Opti BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 1 :() 3 10 0 0 0 0 1 +Payload: 0xae payload: P Pa Pay Payl BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 4 2 :() 3 10 0 0 0 0 1 +4. Response 4. 4 4. 4. 4. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 4 2 . 1 10 0 0 0 0 1 +Partial IV partial P Pa Par Part BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 2 no 0 1 0 0 0 0 1 +Before compression before B Be Bef Befo BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 3 (): 3 10 0 0 0 0 1 +[ [ [ [ [ [ [ BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 3 [ 1 0 0 0 0 0 1 +h'', h'', h'', h h' h'' h'', BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 3 '', 3 1 0 0 0 0 1 +{}, {}, {}, { {} {}, {}, BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 4 3 , 1 1 0 0 0 0 1 +h'aea0155667924dff8a24e4cb35b9', h'aea0155667924dff8a24e4cb35b9', h'aea0155667924dff8a24e4cb35b9', h h' h'a h'ae BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 1 0 0 0 4 3 '', 3 10 0 0 0 0 1 +] ] ] ] ] ] ] BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 3 ] 1 0 0 0 0 0 1 +After compression after A Af Aft Afte BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 4 (): 3 10 0 0 0 0 1 +Flag byte: flag F Fl Fla Flag BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 5 :() 3 10 0 0 0 0 1 +Option Value: option O Op Opt Opti BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 5 :() 3 10 0 0 0 0 1 +Payload: 0xaea0155667924dff8a24e4cb35b9 payload: P Pa Pay Payl BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 4 6 :() 3 10 0 0 0 0 1 +5. Response 5. 5 5. 5. 5. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 4 6 . 1 10 0 0 0 0 1 +Partial IV partial P Pa Par Part BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 6 no 0 2 0 0 0 0 1 +Before compression before B Be Bef Befo BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 7 (): 3 10 0 0 0 0 1 +[ [ [ [ [ [ [ BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 8 [ 1 0 0 0 0 0 1 +h'', h'', h'', h h' h'' h'', BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 8 '', 3 1 0 0 0 0 1 +{ 6:h'07' { { { { { BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 8 :'', 4 3 0 0 0 0 1 +h'aea0155667924dff8a24e4cb35b9', h'aea0155667924dff8a24e4cb35b9', h'aea0155667924dff8a24e4cb35b9', h h' h'a h'ae BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 1 0 0 0 4 8 '', 3 10 0 0 0 0 1 +] ] ] ] ] ] ] BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 8 ] 1 0 0 0 0 0 1 +After compression after A Af Aft Afte BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 9 (): 3 10 0 0 0 0 1 +Flag byte: flag F Fl Fla Flag BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 9 :() 3 10 0 0 0 0 1 +Option Value: option O Op Opt Opti BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 10 :() 3 10 0 0 0 0 1 +Payload: 0xaea0155667924dff8a24e4cb35b9 payload: P Pa Pay Payl BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 4 10 :() 3 10 0 0 0 0 1 +Selander, et selander, S Se Sel Sela BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 4 11 ,. 2 10 0 0 1 0 0 +Standards Track standards S St Sta Stan BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 4 11 no 0 9 0 0 0 0 0 +[Page 35] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 11 [] 2 5 0 0 0 0 0 +RFC 8613 rfc R RF RFC RFC BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 4 0 no 0 10 0 0 0 0 1 +OSCORE OSCORE oscore O OS OSC OSCO BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 4 0 no 0 7 0 0 0 0 1 +July 2019 july J Ju Jul July BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 4 0 no 0 10 0 0 0 0 1 +7. Message 7. 7 7. 7. 7. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 4 0 .,,, 4 10 0 0 0 0 1 +7.1. Message 7.1. 7 7. 7.1 7.1. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 4 0 .. 2 10 0 0 0 0 1 +In order in I In In In BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 4 0 no 0 8 0 0 0 0 1 +[CoAP-Actuators] from [coap-actuators] [ [C [Co [CoA BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 0 [-]- 4 8 0 0 0 0 1 +intermediaries, OSCORE intermediaries, i in int inte BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 0 , 1 9 0 0 0 0 1 +the 'kid' the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 0 ''. 3 9 0 0 0 0 1 +Therefore, the therefore, T Th The Ther BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 0 ,'' 3 10 0 0 0 0 1 +request until request r re req requ BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 0 . 1 6 0 0 0 0 1 +7.2. Sequence 7.2. 7 7. 7.2 7.2. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 4 2 .. 2 10 0 0 0 0 1 +An AEAD an A An An An BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 4 2 . 1 9 0 0 0 0 1 +uniqueness of uniqueness u un uni uniq BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 2 (,)., 5 9 0 0 0 0 1 +particular depends particular p pa par part BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 2 ( 1 9 0 0 0 0 1 +the Sender the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 2 ,). 3 8 0 0 0 0 1 +processed concurrently, processed p pr pro proc BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 2 , 1 10 0 0 0 0 1 +Sender Sequence sender S Se Sen Send BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 2 . 1 5 0 0 0 0 1 +7.2.1. Maximum 7.2.1. 7 7. 7.2 7.2. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 4 4 ... 3 10 0 0 0 0 1 +The maximum the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 5 ( 1 9 0 0 0 0 1 +Section 12) section S Se Sec Sect BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 5 ). 2 9 0 0 0 0 1 +Number exceeds number N Nu Num Numb BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 5 , 1 10 0 0 0 0 1 +messages with messages m me mes mess BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 5 ., 2 10 0 0 0 0 1 +SHOULD acquire should S SH SHO SHOU BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 4 5 . 1 9 0 0 0 0 1 +latter is latter l la lat latt BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 5 . 1 6 0 0 0 0 1 +7.3. Freshness 7.3. 7 7. 7.3 7.3. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 7 .. 2 10 0 0 0 0 1 +For requests, for F Fo For For BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 7 , 1 9 0 0 0 0 1 +not older not n no not not BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 7 . 1 8 0 0 0 0 1 +stronger demands stronger s st str stro BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 7 (..,), 6 9 0 0 0 0 1 +OSCORE needs oscore O OS OSC OSCO BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 5 7 ( 1 10 0 0 0 0 1 +example, as example, e ex exa exam BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 7 ,[---]). 8 6 0 0 0 0 1 +Assuming an assuming A As Ass Assu BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 8 (), 3 9 0 0 0 0 1 +guarantees that guarantees g gu gua guar BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 8 . 1 8 0 0 0 0 1 +responses that responses r re res resp BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 8 (.., 4 9 0 0 0 0 1 +response to response r re res resp BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 8 ),. 3 8 0 0 0 0 1 +notifications, the notifications, n no not noti BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 8 ,, 2 9 0 0 0 0 1 +is RECOMMENDED is i is is is BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 8 -. 2 10 0 0 0 0 1 +Note that note N No Not Note BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 8 no 0 9 0 0 0 0 1 +server created server s se ser serv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 8 ,.., 4 9 0 0 0 0 1 +does not does d do doe does BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 8 . 1 4 0 0 0 0 1 +Selander, et selander, S Se Sel Sela BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 5 11 ,. 2 10 0 0 1 0 0 +Standards Track standards S St Sta Stan BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 5 11 no 0 9 0 0 0 0 0 +[Page 36] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 11 [] 2 5 0 0 0 0 0 +RFC 8613 rfc R RF RFC RFC BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 5 0 no 0 10 0 0 0 0 1 +OSCORE OSCORE oscore O OS OSC OSCO BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 5 0 no 0 7 0 0 0 0 1 +July 2019 july J Ju Jul July BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 5 0 no 0 10 0 0 0 0 1 +For requests for F Fo For For BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 0 , 1 9 0 0 0 0 1 +freshness in freshness f fr fre fres BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 0 no 0 8 0 0 0 0 1 +recipient to recipient r re rec reci BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 0 . 1 10 0 0 0 0 1 +7.4. Replay 7.4. 7 7. 7.4 7.4. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 1 .. 2 10 0 0 0 0 1 +In order in I In In In BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 5 1 ,' 2 9 0 0 0 0 1 +Context includes context C Co Con Cont BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 1 . 1 9 0 0 0 0 1 +Sender Sequence sender S Se Sen Send BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 1 '' 2 9 0 0 0 0 1 +COSE object cose C CO COS COSE BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 5 1 (.). 4 9 0 0 0 0 1 +verification fails, verification v ve ver veri BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 5 1 ,, 2 10 0 0 0 0 1 +it MAY it i it it it BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 1 .(). 4 9 0 0 0 0 1 +Also, the also, A Al Als Also BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 1 ,- 2 9 0 0 0 0 1 +inform any inform i in inf info BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 1 . 1 9 0 0 0 0 1 +diagnostic payload diagnostic d di dia diag BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 1 "". 3 9 0 0 0 0 1 +size and size s si siz size BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 1 no 0 9 0 0 0 0 1 +protocol with protocol p pr pro prot BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 1 . 1 9 0 0 0 0 1 +reliable and reliable r re rel reli BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 1 ,..,, 5 9 0 0 0 0 1 +the server the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 1 no 0 9 0 0 0 0 1 +that newly that t th tha that BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 1 no 0 9 0 0 0 0 1 +1. However, 1. 1 1. 1. 1. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 1 ., 2 9 0 0 0 0 1 +and where and a an and and BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 1 , 1 9 0 0 0 0 1 +restrictive and restrictive r re res rest BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 1 ( 1 9 0 0 0 0 1 +Section 3.2.2). section S Se Sec Sect BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 1 ..). 4 2 0 0 0 0 1 +Responses (with responses R Re Res Resp BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 7 () 2 10 0 0 0 0 1 +as they as a as as as BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 7 no 0 9 0 0 0 0 1 +response is response r re res resp BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 7 . 1 9 0 0 0 0 1 +replay protection replay r re rep repl BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 7 . 1 4 0 0 0 0 1 +The operation the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 8 no 0 10 0 0 0 0 1 +protection MUST protection p pr pro prot BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 8 . 1 4 0 0 0 0 1 +7.4.1. Replay 7.4.1. 7 7. 7.4 7.4. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 8 ... 3 10 0 0 0 0 1 +The following the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 8 no 0 10 0 0 0 0 1 +supported. supported. supported. s su sup supp BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 8 . 1 1 0 0 0 0 1 +The Notification the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 9 (....) 6 10 0 0 0 0 1 +Partial IV partial P Pa Par Part BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 9 no 0 8 0 0 0 0 1 +response to response r re res resp BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 9 . 1 9 0 0 0 0 1 +most one most m mo mos most BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 9 , 1 10 0 0 0 0 1 +oldest notification oldest o ol old olde BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 9 . 1 9 0 0 0 0 1 +containing a containing c co con cont BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 9 no 0 8 0 0 0 0 1 +Notification Number notification N No Not Noti BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 9 . 1 9 0 0 0 0 1 +client MUST client c cl cli clie BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 9 no 0 9 0 0 0 0 1 +Selander, et selander, S Se Sel Sela BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 5 11 ,. 2 10 0 0 1 0 0 +Standards Track standards S St Sta Stan BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 5 11 no 0 9 0 0 0 0 0 +[Page 37] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 11 [] 2 5 0 0 0 0 0 +RFC 8613 rfc R RF RFC RFC BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 5 0 no 0 10 0 0 0 0 1 +OSCORE OSCORE oscore O OS OSC OSCO BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 5 0 no 0 7 0 0 0 0 1 +July 2019 july J Ju Jul July BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 5 0 no 0 10 0 0 0 0 1 +been previously been b be bee been BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 0 . 1 10 0 0 0 0 1 +processes notifications processes p pr pro proc BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 0 no 0 9 0 0 0 0 1 +Notification Number. notification N No Not Noti BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 0 . 1 3 0 0 0 0 1 +If the if I If If If BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 0 , 1 9 0 0 0 0 1 +Partial IV partial P Pa Par Part BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 0 , 1 10 0 0 0 0 1 +SHALL overwrite shall S SH SHA SHAL BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 5 0 no 0 9 0 0 0 0 1 +received Partial received r re rec rece BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 0 . 1 3 0 0 0 0 1 +7.5. Losing 7.5. 7 7. 7.5 7.5. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 1 .. 2 10 0 0 0 0 1 +To prevent to T To To To BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 2 no 0 9 0 0 0 0 1 +acceptance of acceptance a ac acc acce BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 2 , 1 9 0 0 0 0 1 +situation of situation s si sit situ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 2 , 1 9 0 0 0 0 1 +the Sender the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 2 . 1 9 0 0 0 0 1 +stored in stored s st sto stor BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 2 ,.., 4 10 0 0 0 0 1 +reboot. There reboot. r re reb rebo BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 2 .,: 3 9 0 0 0 0 1 +1. The 1. 1 1. 1. 1. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 4 . 1 9 0 0 0 0 1 +updating the updating u up upd upda BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 4 ( 1 9 0 0 0 0 1 +Sequence Number sequence S Se Seq Sequ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 4 ). 2 9 0 0 0 0 1 +mutable parts mutable m mu mut muta BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 4 no 0 10 0 0 0 0 1 +the lifetime the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 4 no 0 9 0 0 0 0 1 +fresh security fresh f fr fre fres BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 4 no 0 9 0 0 0 0 1 +data. Examples data. d da dat data BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 4 . 1 9 0 0 0 0 1 +memory, see memory, m me mem memo BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 4 ,.., 4 10 0 0 0 0 1 +Appendix B.1.2. appendix A Ap App Appe BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 4 ... 3 10 0 0 0 0 1 +context stored context c co con cont BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 4 , 1 9 0 0 0 0 1 +previous Sender previous p pr pre prev BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 4 no 0 10 0 0 0 0 1 +received messages. received r re rec rece BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 4 . 1 3 0 0 0 0 1 +2. The 2. 2 2. 2. 2. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 7 . 1 9 0 0 0 0 1 +derive new derive d de der deri BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 7 ,. 2 10 0 0 0 0 1 +example. This example. e ex exa exam BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 7 .. 2 9 0 0 0 0 1 +3. The 3. 3 3. 3. 3. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 8 .-- 3 9 0 0 0 0 1 +establishment protocol establishment e es est esta BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 8 [-]. 4 10 0 0 0 0 1 +the execution the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 8 - 1 10 0 0 0 0 1 +source of source s so sou sour BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 8 . 1 3 0 0 0 0 1 +4. The 4. 4 4. 4. 4. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 9 . 1 10 0 0 0 0 1 +secrecy resulting secrecy s se sec secr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 9 , 1 8 0 0 0 0 1 +entirely new entirely e en ent enti BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 9 . 1 9 0 0 0 0 1 +source of source s so sou sour BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 9 ,, 2 9 0 0 0 0 1 +processing of processing p pr pro proc BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 9 -,.., 5 9 0 0 0 0 1 +in terms in i in in in BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 5 9 . 1 4 0 0 0 0 1 +Selander, et selander, S Se Sel Sela BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 5 11 ,. 2 10 0 0 1 0 0 +Standards Track standards S St Sta Stan BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 5 11 no 0 9 0 0 0 0 0 +[Page 38] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 11 [] 2 5 0 0 0 0 0 +RFC 8613 rfc R RF RFC RFC BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 5 0 no 0 10 0 0 0 0 1 +OSCORE OSCORE oscore O OS OSC OSCO BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 5 0 no 0 7 0 0 0 0 1 +July 2019 july J Ju Jul July BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 5 0 no 0 10 0 0 0 0 1 +The endpoints the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 0 no 0 9 0 0 0 0 1 +method is method m me met meth BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 0 . 1 9 0 0 0 0 1 +the devices the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 0 . 1 9 0 0 0 0 1 +exchange protocol exchange e ex exc exch BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 0 no 0 10 0 0 0 0 1 +secrecy. secrecy. secrecy. s se sec secr BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 0 . 1 1 0 0 0 0 1 +8. Processing 8. 8 8. 8. 8. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 1 . 1 10 0 0 0 0 1 +This section this T Th Thi This BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 1 . 1 9 0 0 0 0 1 +processing for processing p pr pro proc BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 1 -. 2 10 0 0 0 0 1 +Note that, note N No Not Note BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 2 ,[]/ 4 9 0 0 0 0 1 +destination pair destination d de des dest BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 2 , 1 9 0 0 0 0 1 +endpoints MUST endpoints e en end endp BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 2 (,, 3 9 0 0 0 0 1 +Partial IV partial P Pa Par Part BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 2 ), 2 10 0 0 0 0 1 +Context and context C Co Con Cont BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 2 . 1 9 0 0 0 0 1 +association MAY association a as ass asso BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 2 no 0 9 0 0 0 0 1 +protect or protect p pr pro prot BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 2 , 1 8 0 0 0 0 1 +processing, where processing, p pr pro proc BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 2 , 1 8 0 0 0 0 1 +Observation is observation O Ob Obs Obse BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 2 . 1 3 0 0 0 0 1 +The processing the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 6 no 0 10 0 0 0 0 1 +described in described d de des desc BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 6 [-]. 4 5 0 0 0 0 1 +8.1. Protecting 8.1. 8 8. 8.1 8.1. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 6 .. 2 10 0 0 0 0 1 +Given a given G Gi Giv Give BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 6 , 1 10 0 0 0 0 1 +create an create c cr cre crea BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 6 : 1 3 0 0 0 0 1 +1. Retrieve 1. 1 1. 1. 1. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 7 .. 2 10 0 0 0 0 1 +2. Compose 2. 2 2. 2. 2. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 8 .,. 3 10 0 0 0 0 1 +and 5.4. and a an and and BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 8 .. 2 1 0 0 0 0 1 +3. Encode 3. 3 3. 3. 3. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 8 .( 2 10 0 0 0 0 1 +order) and order) o or ord orde BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 8 ). 2 9 0 0 0 0 1 +the AEAD the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 8 ,, 2 9 0 0 0 0 1 +described in described d de des desc BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 8 .. 2 4 0 0 0 0 1 +4. Encrypt 4. 4 4. 4. 4. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 10 .. 2 10 0 0 0 0 1 +object as object o ob obj obje BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 10 . 1 5 0 0 0 0 1 +5. Format 5. 5 5. 5. 5. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 10 .. 2 10 0 0 0 0 1 +option is option o op opt opti BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 10 (..). 5 5 0 0 0 0 1 +Selander, et selander, S Se Sel Sela BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 5 11 ,. 2 10 0 0 1 0 0 +Standards Track standards S St Sta Stan BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 5 11 no 0 9 0 0 0 0 0 +[Page 39] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 11 [] 2 5 0 0 0 0 0 +RFC 8613 rfc R RF RFC RFC BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 5 0 no 0 10 0 0 0 0 1 +OSCORE OSCORE oscore O OS OSC OSCO BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 5 0 no 0 7 0 0 0 0 1 +July 2019 july J Ju Jul July BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 5 0 no 0 10 0 0 0 0 1 +8.2. Verifying 8.2. 8 8. 8.2 8.2. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 0 .. 2 10 0 0 0 0 1 +A server a A A A A BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 1 0 0 0 0 0 5 0 no 0 10 0 0 0 0 1 +perform the perform p pe per perf BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 0 : 1 4 0 0 0 0 1 +1. Discard 1. 1 1. 1. 1. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 0 .('' 4 10 0 0 0 0 1 +in column in i in in in BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 5 0 )., 3 8 0 0 0 0 1 +If-Match Outer if-match I If If- If-M BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 0 -,- 3 9 0 0 0 0 1 +is not is i is is is BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 0 . 1 2 0 0 0 0 1 +2. Decompress 2. 2 2. 2. 2. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 2 .() 3 10 0 0 0 0 1 +Context associated context C Co Con Cont BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 2 '', 3 9 0 0 0 0 1 +additionally using additionally a ad add addi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 2 '',. 4 9 0 0 0 0 1 +Recipient Context recipient R Re Rec Reci BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 2 no 0 8 0 0 0 0 1 +context, e.g. context, c co con cont BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 2 ,.... 5 8 0 0 0 0 1 +decompression or decompression d de dec deco BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 2 , 1 9 0 0 0 0 1 +fails to fails f fa fai fail BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 2 no 0 8 0 0 0 0 1 +corresponding to corresponding c co cor corr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 2 '', 3 9 0 0 0 0 1 +SHALL stop shall S SH SHA SHAL BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 5 2 . 1 5 0 0 0 0 1 +* If * * * * * BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 5 * 1 9 0 0 0 0 1 +decode, the decode, d de dec deco BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 5 ,.() 4 10 0 0 0 0 1 +message. The message. m me mes mess BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 5 .- 2 9 0 0 0 0 1 +value zero. value v va val valu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 5 . 1 9 0 0 0 0 1 +"Failed to "failed " "F "Fa "Fai BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 5 "". 3 4 0 0 0 0 1 +* If * * * * * BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 7 * 1 9 0 0 0 0 1 +Recipient ID recipient R Re Rec Reci BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 7 '', 3 10 0 0 0 0 1 +the server the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 7 .() 3 9 0 0 0 0 1 +message. The message. m me mes mess BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 7 .- 2 9 0 0 0 0 1 +value zero. value v va val valu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 7 . 1 9 0 0 0 0 1 +"Security context "security " "S "Se "Sec BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 7 "". 3 5 0 0 0 0 1 +3. Verify 3. 3 3. 3. 3. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 9 . 1 10 0 0 0 0 1 +Replay Window, replay R Re Rep Repl BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 9 ,.. 3 6 0 0 0 0 1 +4. Compose 4. 4 4. 4. 4. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 10 .,.. 4 10 0 0 0 0 1 +5. Compute 5. 5 5. 5. 5. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 10 .,, 3 10 0 0 0 0 1 +Partial IV, partial P Pa Par Part BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 10 ,. 2 6 0 0 0 0 1 +Selander, et selander, S Se Sel Sela BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 5 11 ,. 2 10 0 0 1 0 0 +Standards Track standards S St Sta Stan BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 5 11 no 0 9 0 0 0 0 0 +[Page 40] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 11 [] 2 5 0 0 0 0 0 +RFC 8613 rfc R RF RFC RFC BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 5 0 no 0 10 0 0 0 0 1 +OSCORE OSCORE oscore O OS OSC OSCO BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 5 0 no 0 7 0 0 0 0 1 +July 2019 july J Ju Jul July BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 5 0 no 0 10 0 0 0 0 1 +6. Decrypt 6. 6 6. 6. 6. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 0 ., 2 9 0 0 0 0 1 +Section 5.3 section S Se Sec Sect BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 0 .[].( 5 10 0 0 0 0 1 +verification of verification v ve ver veri BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 5 0 .) 2 5 0 0 0 0 1 +* If * * * * * BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 1 *, 2 10 0 0 0 0 1 +request and request r re req requ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 1 .() 3 9 0 0 0 0 1 +message. The message. m me mes mess BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 1 .- 2 9 0 0 0 0 1 +value zero. value v va val valu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 1 . 1 9 0 0 0 0 1 +"Decryption failed". "decryption " "D "De "Dec BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 1 "". 3 3 0 0 0 0 1 +* If * * * * * BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 2 *,, 3 10 0 0 0 0 1 +in Section in i in in in BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 5 2 . 1 2 0 0 0 0 1 +7. Add 7. 7 7. 7. 7. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 3 .,, 3 10 0 0 0 0 1 +request. The request. r re req requ BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 3 .. 2 6 0 0 0 0 1 +8. The 8. 8 8. 8. 8. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 4 .[]. 4 10 0 0 0 0 1 +8.2.1. Supporting 8.2.1. 8 8. 8.2 8.2. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 4 ...- 4 10 0 0 0 0 1 +If Block-wise if I If If If BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 4 -, 2 10 0 0 0 0 1 +other: other: other: o ot oth othe BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 4 : 1 1 0 0 0 0 1 +A. If a. A A. A. A. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 5 5 .-, 3 9 0 0 0 0 1 +Block options block B Bl Blo Bloc BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 5 5 [], 3 10 0 0 0 0 1 +have been have h ha hav have BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 5 (...). 6 6 0 0 0 0 1 +8.3. Protecting 8.3. 8 8. 8.3 8.3. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 6 .. 2 10 0 0 0 0 1 +If a if I If If If BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 6 , 1 10 0 0 0 0 1 +server SHALL server s se ser serv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 6 no 0 8 0 0 0 0 1 +response. Note response. r re res resp BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 6 . 1 8 0 0 0 0 1 +processing (step processing p pr pro proc BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 6 (.), 4 8 0 0 0 0 1 +successful CoAP successful s su suc succ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 6 ,(,, 4 10 0 0 0 0 1 +in Section in i in in in BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 5 6 .) 2 9 0 0 0 0 1 +simple CoAP simple s si sim simp BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 6 ,. 2 7 0 0 0 0 1 +1. Retrieve 1. 1 1. 1. 1. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 9 . 1 10 0 0 0 0 1 +with the with w wi wit with BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 9 . 1 2 0 0 0 0 1 +2. Compose 2. 2 2. 2. 2. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 10 .,. 3 10 0 0 0 0 1 +and 5.4. and a an and and BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 10 .. 2 1 0 0 0 0 1 +3. Compute 3. 3 3. 3. 3. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 10 ..: 3 10 0 0 0 0 1 +* Either * * * * * BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 11 *, 2 10 0 0 0 0 1 +Selander, et selander, S Se Sel Sela BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 5 11 ,. 2 10 0 0 1 0 0 +Standards Track standards S St Sta Stan BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 5 11 no 0 9 0 0 0 0 0 +[Page 41] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 11 [] 2 5 0 0 0 0 0 +RFC 8613 rfc R RF RFC RFC BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 5 0 no 0 10 0 0 0 0 1 +OSCORE OSCORE oscore O OS OSC OSCO BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 5 0 no 0 7 0 0 0 0 1 +July 2019 july J Ju Jul July BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 5 0 no 0 10 0 0 0 0 1 +* Encode * * * * * BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 0 *( 2 10 0 0 0 0 1 +order) and order) o or ord orde BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 0 ). 2 8 0 0 0 0 1 +Compute the compute C Co Com Comp BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 0 ,, 2 9 0 0 0 0 1 +Partial IV. partial P Pa Par Part BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 0 . 1 1 0 0 0 0 1 +4. Encrypt 4. 4 4. 4. 4. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 1 .. 2 10 0 0 0 0 1 +object as object o ob obj obje BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 1 . 1 8 0 0 0 0 1 +constructed from constructed c co con cons BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 1 , 1 8 0 0 0 0 1 +included in included i in inc incl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 1 . 1 9 0 0 0 0 1 +used, the used, u us use used BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 1 ,. 2 8 0 0 0 0 1 +5. Format 5. 5 5. 5. 5. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 4 .. 2 10 0 0 0 0 1 +option is option o op opt opti BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 4 (..). 5 5 0 0 0 0 1 +8.3.1. Supporting 8.3.1. 8 8. 8.3 8.3. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 5 ... 3 10 0 0 0 0 1 +If Observe if I If If If BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 5 , 1 10 0 0 0 0 1 +and 3 and a an and and BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 5 .: 2 3 0 0 0 0 1 +A. If a. A A. A. A. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 5 6 .: 2 10 0 0 0 0 1 +o If o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 5 6 : 1 10 0 0 0 0 1 +* compute * * * * * BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 6 *.: 3 10 0 0 0 0 1 ++ Either + + + + + BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 7 , 1 10 0 0 0 0 1 ++ Encode + + + + + BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 7 ( 1 9 0 0 0 0 1 +byte order) byte b by byt byte BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 7 ). 2 10 0 0 0 0 1 +Compute the compute C Co Com Comp BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 7 ,, 2 9 0 0 0 0 1 +Partial IV. partial P Pa Par Part BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 7 . 1 1 0 0 0 0 1 +Then, go then, T Th The Then BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 9 ,. 2 10 0 0 0 0 1 +o If o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 5 9 : 1 10 0 0 0 0 1 +* encode * * * * * BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 9 *( 2 10 0 0 0 0 1 +order) and order) o or ord orde BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 9 ). 2 8 0 0 0 0 1 +Compute the compute C Co Com Comp BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 9 ,, 2 9 0 0 0 0 1 +Partial IV, partial P Pa Par Part BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 9 ,. 2 4 0 0 0 0 1 +Selander, et selander, S Se Sel Sela BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 5 11 ,. 2 10 0 0 1 0 0 +Standards Track standards S St Sta Stan BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 5 11 no 0 9 0 0 0 0 0 +[Page 42] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 11 [] 2 5 0 0 0 0 0 +RFC 8613 rfc R RF RFC RFC BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 5 0 no 0 10 0 0 0 0 1 +OSCORE OSCORE oscore O OS OSC OSCO BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 5 0 no 0 7 0 0 0 0 1 +July 2019 july J Ju Jul July BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 5 0 no 0 10 0 0 0 0 1 +8.4. Verifying 8.4. 8 8. 8.4 8.4. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 0 .. 2 10 0 0 0 0 1 +A client a A A A A BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 1 0 0 0 0 0 5 0 no 0 10 0 0 0 0 1 +perform the perform p pe per perf BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 0 : 1 4 0 0 0 0 1 +1. Discard 1. 1 1. 1. 1. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 1 .('' 4 10 0 0 0 0 1 +in column in i in in in BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 5 1 )., 3 9 0 0 0 0 1 +Outer option outer O Ou Out Oute BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 1 ,-. 3 8 0 0 0 0 1 +2. Retrieve 2. 2 2. 2. 2. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 2 . 1 10 0 0 0 0 1 +with the with w wi wit with BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 2 .(). 4 8 0 0 0 0 1 +either the either e ei eit eith BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 2 , 1 8 0 0 0 0 1 +then go then t th the then BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 2 . 1 2 0 0 0 0 1 +3. Compose 3. 3 3. 3. 3. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 3 .,.. 4 10 0 0 0 0 1 +4. Compute 4. 4 4. 4. 4. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 4 . 1 10 0 0 0 0 1 +* If * * * * * BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 4 *, 2 10 0 0 0 0 1 +nonce from nonce n no non nonc BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 4 . 1 5 0 0 0 0 1 +* If * * * * * BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 5 *, 2 10 0 0 0 0 1 +nonce from nonce n no non nonc BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 5 ,,, 3 9 0 0 0 0 1 +received in received r re rec rece BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 5 . 1 4 0 0 0 0 1 +5. Decrypt 5. 5 5. 5. 5. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 6 ., 2 9 0 0 0 0 1 +Section 5.3 section S Se Sec Sect BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 6 .[].( 5 9 0 0 0 0 1 +verification of verification v ve ver veri BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 5 6 .), 3 10 0 0 0 0 1 +8. 8. 8. 8 8. 8. 8. BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 6 . 1 0 0 0 0 0 1 +6. Add 6. 6 6. 6. 6. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 7 .,. 3 10 0 0 0 0 1 +The OSCORE the T Th The The BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 7 . 1 4 0 0 0 0 1 +7. The 7. 7 7. 7. 7. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 8 .[]. 4 10 0 0 0 0 1 +8. In 8. 8 8. 8. 8. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 8 .: 2 10 0 0 0 0 1 +client SHALL client c cl cli clie BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 8 . 1 6 0 0 0 0 1 +8.4.1. Supporting 8.4.1. 8 8. 8.4 8.4. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 9 ...- 4 10 0 0 0 0 1 +If Block-wise if I If If If BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 9 -, 2 10 0 0 0 0 1 +other: other: other: o ot oth othe BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 9 : 1 1 0 0 0 0 1 +A. If a. A A. A. A. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 5 10 .-, 3 10 0 0 0 0 1 +Block options block B Bl Blo Bloc BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 5 10 [], 3 9 0 0 0 0 1 +response have response r re res resp BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 10 (...). 6 7 0 0 0 0 1 +Selander, et selander, S Se Sel Sela BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 5 11 ,. 2 10 0 0 1 0 0 +Standards Track standards S St Sta Stan BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 5 11 no 0 9 0 0 0 0 0 +[Page 43] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 11 [] 2 5 0 0 0 0 0 +RFC 8613 rfc R RF RFC RFC BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 5 0 no 0 10 0 0 0 0 1 +OSCORE OSCORE oscore O OS OSC OSCO BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 5 0 no 0 7 0 0 0 0 1 +July 2019 july J Ju Jul July BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 5 0 no 0 10 0 0 0 0 1 +8.4.2. Supporting 8.4.2. 8 8. 8.4 8.4. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 0 ... 3 10 0 0 0 0 1 +If Observe if I If If If BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 0 : 1 10 0 0 0 0 1 +Insert the insert I In Ins Inse BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 0 : 1 10 0 0 0 0 1 +A. If a. A A. A. A. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 5 0 .,: 3 10 0 0 0 0 1 +o If o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 5 1 , 1 9 0 0 0 0 1 +Observe option observe O Ob Obs Obse BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 1 , 1 10 0 0 0 0 1 +already used already a al alr alre BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 1 ,. 2 4 0 0 0 0 1 +o If o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 5 2 no 0 10 0 0 0 0 1 +option is option o op opt opti BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 2 , 1 8 0 0 0 0 1 +Section 4.1.3.5.2 section S Se Sec Sect BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 2 ......,: 8 6 0 0 0 0 1 +* initialize * * * * * BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 3 *( 2 10 0 0 0 0 1 +verified notification), verified v ve ver veri BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 3 ), 2 4 0 0 0 0 1 +* overwrite * * * * * BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 4 *( 2 10 0 0 0 0 1 +was greater was w wa was was BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 4 ). 2 6 0 0 0 0 1 +Replace step replace R Re Rep Repl BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 4 .: 2 10 0 0 0 0 1 +B. In b. B B. B. B. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 5 5 .: 2 9 0 0 0 0 1 +client SHALL client c cl cli clie BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 5 . 1 8 0 0 0 0 1 +occurring while occurring o oc occ occu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 5 no 0 10 0 0 0 0 1 +not cancel not n no not not BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 5 . 1 9 0 0 0 0 1 +re-registering the re-registering r re re- re-r BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 5 -. 2 6 0 0 0 0 1 +9. Web 9. 9 9. 9. 9. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 6 . 1 10 0 0 0 0 1 +The use the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 6 "" 2 9 0 0 0 0 1 +web link web w we web web BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 5 6 [],..,- 7 10 0 0 0 0 1 +[RFC6690] if [rfc6690] [ [R [RF [RFC BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 6 []. 3 7 0 0 0 0 1 +The "osc" the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 8 "" 2 10 0 0 0 0 1 +link is link l li lin link BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 5 8 , 1 10 0 0 0 0 1 +not supported. not n no not not BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 8 ., 2 9 0 0 0 0 1 +any security any a an any any BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 8 no 0 9 0 0 0 0 1 +run OSCORE. run r ru run run BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 8 . 1 1 0 0 0 0 1 +A value a A A A A BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 1 0 0 0 0 0 6 10 ""; 3 10 0 0 0 0 1 +MUST be must M MU MUS MUST BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 6 10 ."" 3 10 0 0 0 0 1 +than once than t th tha than BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 10 -; 2 10 0 0 0 0 1 +ignored by ignored i ig ign igno BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 10 . 1 2 0 0 0 0 1 +Selander, et selander, S Se Sel Sela BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 6 11 ,. 2 10 0 0 1 0 0 +Standards Track standards S St Sta Stan BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 6 11 no 0 9 0 0 0 0 0 +[Page 44] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 11 [] 2 5 0 0 0 0 0 +RFC 8613 rfc R RF RFC RFC BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 6 0 no 0 10 0 0 0 0 1 +OSCORE OSCORE oscore O OS OSC OSCO BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 6 0 no 0 7 0 0 0 0 1 +July 2019 july J Ju Jul July BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 6 0 no 0 10 0 0 0 0 1 +The example the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 0 "": 3 9 0 0 0 0 1 +client does client c cl cli clie BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 0 no 0 9 0 0 0 0 1 +resources, one resources, r re res reso BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 0 ,"" 3 10 0 0 0 0 1 +the resource the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 0 .-( 3 10 0 0 0 0 1 +Section 5 section S Se Sec Sect BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 0 []). 4 4 0 0 0 0 1 +REQ: GET req: R RE REQ REQ: BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 6 2 :/.-/ 5 10 0 0 0 0 1 +RES: 2.05 res: R RE RES RES: BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 6 2 :. 2 6 0 0 0 0 1 +</sensors/temp>;osc, </sensors/temp>;osc, </sensors/temp>;osc, < </ </s </se BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 2 //;, 4 7 0 0 0 0 1 +</sensors/light>;if="sensor" </sensors/light>;if="sensor" </sensors/light>;if="sensor" < </ </s </se BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 2 //;"" 5 10 0 0 0 0 1 +Figure 11: figure F Fi Fig Figu BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 3 : 1 10 0 0 0 0 1 +10. CoAP-to-CoAP 10. 1 10 10. 10. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 3 .-- 3 10 0 0 0 0 1 +CoAP is coap C Co CoA CoAP BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 6 3 (.[]). 6 10 0 0 0 0 1 +OSCORE is oscore O OS OSC OSCO BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 6 4 -. 2 8 0 0 0 0 1 +Security requirements security S Se Sec Secu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 6 4 .. 2 9 0 0 0 0 1 +[CoAP-E2E-Sec]. Proxy [coap-e2e-sec]. [ [C [Co [CoA BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 4 [--].()- 8 9 0 0 0 0 1 +works as works w wo wor work BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 4 [].() 5 10 0 0 0 0 1 +options works options o op opt opti BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 4 []. 3 5 0 0 0 0 1 +However, not however, H Ho How Howe BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 6 ,: 2 10 0 0 0 0 1 +o Since o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 6 6 no 0 9 0 0 0 0 1 +request, caching request, r re req requ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 6 ,. 2 10 0 0 0 0 1 +proxies, OSCORE proxies, p pr pro prox BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 6 ,-, 3 7 0 0 0 0 1 +Section 4.1.3.1. section S Se Sec Sect BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 6 .... 4 2 0 0 0 0 1 +o Proxy o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 6 8 () 2 10 0 0 0 0 1 +[RFC7641] is [rfc7641] [ [R [RF [RFC BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 8 [].... 6 6 0 0 0 0 1 +Optionally, a optionally, O Op Opt Opti BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 9 ,. 2 10 0 0 0 0 1 +OSCORE-aware CoAP oscore-aware O OS OSC OSCO BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 6 9 -: 2 3 0 0 0 0 1 +o SHALL o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 6 9 no 0 10 0 0 0 0 1 +present. present. present. p pr pre pres BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 9 . 1 1 0 0 0 0 1 +o SHOULD o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 6 10 . 1 10 0 0 0 0 1 +In the in I In In In BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 6 10 (...),- 7 10 0 0 0 0 1 +proxy: proxy: proxy: p pr pro prox BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 10 : 1 1 0 0 0 0 1 +o SHALL o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 6 11 . 1 10 0 0 0 0 1 +Selander, et selander, S Se Sel Sela BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 6 11 ,. 2 10 0 0 1 0 0 +Standards Track standards S St Sta Stan BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 6 11 no 0 9 0 0 0 0 0 +[Page 45] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 11 [] 2 5 0 0 0 0 0 +RFC 8613 rfc R RF RFC RFC BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 6 0 no 0 10 0 0 0 0 1 +OSCORE OSCORE oscore O OS OSC OSCO BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 6 0 no 0 7 0 0 0 0 1 +July 2019 july J Ju Jul July BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 6 0 no 0 10 0 0 0 0 1 +o MAY o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 6 0 no 0 10 0 0 0 0 1 +the Observe the t th the the BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 0 . 1 2 0 0 0 0 1 +11. HTTP 11. 1 11 11. 11. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 0 . 1 10 0 0 0 0 1 +The CoAP the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 0 / 1 10 0 0 0 0 1 +as described as a as as as BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 0 [].- 4 9 0 0 0 0 1 +further detailed further f fu fur furt BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 0 []. 3 9 0 0 0 0 1 +needed to needed n ne nee need BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 0 . 1 9 0 0 0 0 1 +mapping between mapping m ma map mapp BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 0 -, 2 9 0 0 0 0 1 +OSCORE may oscore O OS OSC OSCO BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 6 0 --,.., 6 9 0 0 0 0 1 +CoAP server. coap C Co CoA CoAP BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 6 0 .... 4 8 0 0 0 0 1 +11.1. The 11.1. 1 11 11. 11.1 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 3 .. 2 10 0 0 0 0 1 +The HTTP the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 3 (.) 3 10 0 0 0 0 1 +the content the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 3 no 0 9 0 0 0 0 1 +messages over messages m me mes mess BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 3 . 1 3 0 0 0 0 1 +The HTTP the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 4 no 0 9 0 0 0 0 1 +responses with responses r re res resp BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 4 ()., 4 10 0 0 0 0 1 +field Content-Type field f fi fie fiel BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 6 4 -'/'(.) 7 10 0 0 0 0 1 +indicating that indicating i in ind indi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 4 no 0 9 0 0 0 0 1 +payload (see payload p pa pay payl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 4 (.). 4 9 0 0 0 0 1 +other message other o ot oth othe BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 4 . 1 3 0 0 0 0 1 +Using the using U Us Usi Usin BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 6 -()[], 6 9 0 0 0 0 1 +including the including i in inc incl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 6 no 0 9 0 0 0 0 1 +specification: ALPHA specification: s sp spe spec BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 6 :()(), 6 10 0 0 0 0 1 +OSCORE header oscore O OS OSC OSCO BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 6 6 . 1 6 0 0 0 0 1 +base64url-char = base64url-char b ba bas base BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 7 -//"-"/"" 9 10 0 0 0 0 1 +OSCORE = oscore O OS OSC OSCO BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 6 8 *- 2 10 0 0 0 0 1 +The HTTP the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 8 no 0 9 0 0 0 0 1 +Connection header connection C Co Con Conn BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 8 (.[]) 5 9 0 0 0 0 1 +not hop-by-hop. not n no not not BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 8 --. 3 9 0 0 0 0 1 +from cache from f fr fro from BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 8 (..,-:- 7 9 0 0 0 0 1 +cache) and cache) c ca cac cach BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 8 )(.. 4 10 0 0 0 0 1 +[RFC7231]). Since [rfc7231]). [ [R [RF [RFC BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 8 []). 4 9 0 0 0 0 1 +message processing, message m me mes mess BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 8 , 1 9 0 0 0 0 1 +message unusable message m me mes mess BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 8 (. 2 9 0 0 0 0 1 +[RFC7230]). [RFC7230]). [rfc7230]). [ [R [RF [RFC BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 8 []). 4 1 0 0 0 0 1 +Selander, et selander, S Se Sel Sela BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 6 11 ,. 2 10 0 0 1 0 0 +Standards Track standards S St Sta Stan BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 6 11 no 0 9 0 0 0 0 0 +[Page 46] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 11 [] 2 5 0 0 0 0 0 +RFC 8613 rfc R RF RFC RFC BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 6 0 no 0 10 0 0 0 0 1 +OSCORE OSCORE oscore O OS OSC OSCO BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 6 0 no 0 7 0 0 0 0 1 +July 2019 july J Ju Jul July BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 6 0 no 0 10 0 0 0 0 1 +In general, in I In In In BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 6 0 ,,, 3 9 0 0 0 0 1 +modify the modify m mo mod modi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 0 ., 2 9 0 0 0 0 1 +header field header h he hea head BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 0 no 0 9 0 0 0 0 1 +resulting in resulting r re res resu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 0 . 1 10 0 0 0 0 1 +field is field f fi fie fiel BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 6 0 . 1 7 0 0 0 0 1 +Since redirects since S Si Sin Sinc BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 1 no 0 10 0 0 0 0 1 +([RFC8075] [RFC7252]), ([rfc8075] ( ([ ([R ([RF BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 1 ([][]), 7 9 0 0 0 0 1 +for redirects for f fo for for BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 1 .----, 6 9 0 0 0 0 1 +such conditions such s su suc such BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 1 : 1 3 0 0 0 0 1 +o the o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 6 3 --, 3 10 0 0 0 0 1 +client as client c cl cli clie BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 3 . 1 4 0 0 0 0 1 +o the o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 6 3 -- 2 10 0 0 0 0 1 +body to body b bo bod body BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 3 . 1 3 0 0 0 0 1 +o the o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 6 4 no 0 10 0 0 0 0 1 +context required context c co con cont BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 4 . 1 8 0 0 0 0 1 +Since OSCORE since S Si Sin Sinc BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 5 , 1 10 0 0 0 0 1 +the HTTP the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 5 () 2 10 0 0 0 0 1 +or 308 or o or or or BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 5 ()() 4 10 0 0 0 0 1 +(Found). (Found). (found). ( (F (Fo (Fou BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 5 (). 3 1 0 0 0 0 1 +For the for F Fo For For BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 6 ----, 5 9 0 0 0 0 1 +redirect is redirect r re red redi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 6 [], 3 10 0 0 0 0 1 +receiving a receiving r re rec rece BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 6 6 no 0 9 0 0 0 0 1 +server it server s se ser serv BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 6 . 1 4 0 0 0 0 1 +11.2. CoAP-to-HTTP 11.2. 1 11 11. 11.2 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 7 ..-- 4 10 0 0 0 0 1 +Section 10.1 section S Se Sec Sect BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 8 .[]-- 5 9 0 0 0 0 1 +HTTP cross-protocol http H HT HTT HTTP BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 6 8 -. 2 10 0 0 0 0 1 +messages are messages m me mes mess BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 8 : 1 3 0 0 0 0 1 +o The o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 6 8 : 1 10 0 0 0 0 1 +* AA * * * * * BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 9 *;, 3 10 0 0 0 0 1 +* the * * * * * BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 9 *(.) 4 10 0 0 0 0 1 +(Section 5 (section ( (S (Se (Sec BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 9 ([]). 5 7 0 0 0 0 1 +Implementation notes implementation I Im Imp Impl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 9 no 0 9 0 0 0 0 1 +of [RFC7515]. of o of of of BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 9 []. 3 2 0 0 0 0 1 +o The o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 6 10 -'/'( 5 10 0 0 0 0 1 +Section 13.5), section S Se Sec Sect BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 10 .),-. 5 8 0 0 0 0 1 +Selander, et selander, S Se Sel Sela BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 6 11 ,. 2 10 0 0 1 0 0 +Standards Track standards S St Sta Stan BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 6 11 no 0 9 0 0 0 0 0 +[Page 47] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 11 [] 2 5 0 0 0 0 0 +RFC 8613 rfc R RF RFC RFC BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 6 0 no 0 10 0 0 0 0 1 +OSCORE OSCORE oscore O OS OSC OSCO BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 6 0 no 0 7 0 0 0 0 1 +July 2019 july J Ju Jul July BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 6 0 no 0 10 0 0 0 0 1 +11.3. HTTP-to-CoAP 11.3. 1 11 11. 11.3 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 0 ..-- 4 10 0 0 0 0 1 +Section 10.2 section S Se Sec Sect BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 0 .[][] 5 9 0 0 0 0 1 +HTTP-to-CoAP proxy. http-to-coap H HT HTT HTTP BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 6 0 --. 3 10 0 0 0 0 1 +OSCORE header oscore O OS OSC OSCO BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 6 0 . 1 5 0 0 0 0 1 +o The o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 6 1 : 1 10 0 0 0 0 1 +* empty * * * * * BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 1 * 1 10 0 0 0 0 1 +zero byte zero z ze zer zero BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 1 ();, 4 7 0 0 0 0 1 +* the * * * * * BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 2 * 1 9 0 0 0 0 1 +base64url (Section base64url b ba bas base BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 2 ([]). 5 8 0 0 0 0 1 +Implementation notes implementation I Im Imp Impl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 2 no 0 10 0 0 0 0 1 +of [RFC7515]. of o of of of BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 2 []. 3 2 0 0 0 0 1 +o The o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 6 3 -, 2 10 0 0 0 0 1 +OSCORE (Section oscore O OS OSC OSCO BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 6 3 (.). 4 5 0 0 0 0 1 +11.4. HTTP 11.4. 1 11 11. 11.4 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 4 .. 2 10 0 0 0 0 1 +Restricted to restricted R Re Res Rest BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 4 no 0 9 0 0 0 0 1 +mapping, OSCORE mapping, m ma map mapp BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 4 ,. 2 10 0 0 0 0 1 +The sending the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 5 [] 2 9 0 0 0 0 1 +message into message m me mes mess BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 5 . 1 10 0 0 0 0 1 +OSCORE as oscore O OS OSC OSCO BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 6 5 . 1 9 0 0 0 0 1 +mapped to mapped m ma map mapp BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 5 . 1 9 0 0 0 0 1 +with the with w wi wit with BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 5 .. 2 4 0 0 0 0 1 +The receiving the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 7 no 0 10 0 0 0 0 1 +using [RFC8075] using u us usi usin BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 7 [].. 4 9 0 0 0 0 1 +processed as processed p pr pro proc BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 7 ., 2 10 0 0 0 0 1 +CoAP message coap C Co CoA CoAP BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 6 7 no 0 9 0 0 0 0 1 +endpoint. endpoint. endpoint. e en end endp BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 7 . 1 1 0 0 0 0 1 +11.5. Example: 11.5. 1 11 11. 11.5 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 9 ..: 3 10 0 0 0 0 1 +This section this T Th Thi This BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 9 no 0 9 0 0 0 0 1 +between an between b be bet betw BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 9 . 1 9 0 0 0 0 1 +example is example e ex exa exam BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 9 no 0 10 0 0 0 0 1 +the message the t th the the BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 9 . 1 8 0 0 0 0 1 +Mapping and mapping M Ma Map Mapp BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 11 ""(.. 5 10 0 0 0 0 1 +[RFC8075]). [RFC8075]). [rfc8075]). [ [R [RF [RFC BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 11 []). 4 1 0 0 0 0 1 +Selander, et selander, S Se Sel Sela BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 6 11 ,. 2 10 0 0 1 0 0 +Standards Track standards S St Sta Stan BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 6 11 no 0 9 0 0 0 0 0 +[Page 48] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 11 [] 2 5 0 0 0 0 0 +RFC 8613 rfc R RF RFC RFC BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 6 0 no 0 10 0 0 0 0 1 +OSCORE OSCORE oscore O OS OSC OSCO BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 6 0 no 0 7 0 0 0 0 1 +July 2019 july J Ju Jul July BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 6 0 no 0 10 0 0 0 0 1 +[HTTP request [http [ [H [HT [HTT BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 6 0 [--] 4 10 0 0 0 0 1 +GET http://proxy.url/hc/?target_uri=coap://server.url/orders get G GE GET GET BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 6 0 ://.//?://./ 12 10 0 0 0 0 1 +HTTP/1.1 HTTP/1.1 http/1.1 H HT HTT HTTP BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 0 /. 2 1 0 0 0 0 1 +[HTTP request [http [ [H [HT [HTT BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 6 1 [--] 4 10 0 0 0 0 1 +POST http://proxy.url/hc/?target_uri=coap://server.url/ post P PO POS POST BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 1 1 0 0 0 0 0 6 1 ://.//?://.//. 14 10 0 0 0 0 1 +Content-Type: application/oscore content-type: C Co Con Cont BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 1 -:/ 3 5 0 0 0 0 1 +OSCORE: CSU oscore: O OS OSC OSCO BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 6 1 : 1 1 0 0 0 0 1 +Body: 09 body: B Bo Bod Body BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 1 :[] 3 6 0 0 0 0 1 +[CoAP request [coap [ [C [Co [CoA BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 3 [--] 4 10 0 0 0 0 1 +POST coap://server.url/ post P PO POS POST BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 1 1 0 0 0 0 0 6 4 ://./ 5 5 0 0 0 0 1 +OSCORE: 09 oscore: O OS OSC OSCO BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 6 4 : 1 2 0 0 0 0 1 +Payload: 09 payload: P Pa Pay Payl BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 6 4 :[] 3 10 0 0 0 0 1 +[CoAP request [coap [ [C [Co [CoA BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 5 [--] 4 10 0 0 0 0 1 +GET coap://server.url/orders get G GE GET GET BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 6 5 ://./ 5 10 0 0 0 0 1 +[CoAP response [coap [ [C [Co [CoA BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 5 [--] 4 10 0 0 0 0 1 +2.05 Content 2.05 2 2. 2.0 2.05 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 6 . 1 3 0 0 0 0 1 +Content-Format: 0 content-format: C Co Con Cont BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 6 -: 2 5 0 0 0 0 1 +Payload: Exterminate! payload: P Pa Pay Payl BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 6 6 :!! 3 10 0 0 0 0 1 +[CoAP response [coap [ [C [Co [CoA BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 7 [--] 4 10 0 0 0 0 1 +2.04 Changed 2.04 2 2. 2.0 2.04 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 7 . 1 2 0 0 0 0 1 +OSCORE: [empty] oscore: O OS OSC OSCO BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 6 7 :[] 3 3 0 0 0 0 1 +Payload: 00 payload: P Pa Pay Payl BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 6 7 :...[] 6 10 0 0 0 0 1 +[HTTP response [http [ [H [HT [HTT BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 6 8 [--] 4 10 0 0 0 0 1 +HTTP/1.1 200 http/1.1 H HT HTT HTTP BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 8 /. 2 3 0 0 0 0 1 +Content-Type: application/oscore content-type: C Co Con Cont BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 8 -:/ 3 6 0 0 0 0 1 +OSCORE: AA oscore: O OS OSC OSCO BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 6 8 : 1 2 0 0 0 0 1 +Body: 00 body: B Bo Bod Body BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 8 :...[] 6 10 0 0 0 0 1 +[HTTP response [http [ [H [HT [HTT BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 6 10 [--] 4 10 0 0 0 0 1 +HTTP/1.1 200 http/1.1 H HT HTT HTTP BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 10 /. 2 5 0 0 0 0 1 +Content-Type: text/plain content-type: C Co Con Cont BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 10 -:/ 3 7 0 0 0 0 1 +Body: Exterminate! body: B Bo Bod Body BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 10 :!! 3 10 0 0 0 0 1 +Selander, et selander, S Se Sel Sela BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 6 11 ,. 2 10 0 0 1 0 0 +Standards Track standards S St Sta Stan BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 6 11 no 0 9 0 0 0 0 0 +[Page 49] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 11 [] 2 5 0 0 0 0 0 +RFC 8613 rfc R RF RFC RFC BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 6 0 no 0 10 0 0 0 0 1 +OSCORE OSCORE oscore O OS OSC OSCO BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 6 0 no 0 7 0 0 0 0 1 +July 2019 july J Ju Jul July BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 6 0 no 0 10 0 0 0 0 1 +Note that note N No Not Note BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 0 ()-- 4 9 0 0 0 0 1 +is the is i is is is BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 0 .(), 4 9 0 0 0 0 1 +Code 200 code C Co Cod Code BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 0 () 2 9 0 0 0 0 1 +2.05 (Content), 2.05 2 2. 2.0 2.05 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 0 .(), 4 10 0 0 0 0 1 +carried in carried c ca car carr BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 0 . 1 6 0 0 0 0 1 +11.6. Example: 11.6. 1 11 11. 11.6 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 2 ..: 3 10 0 0 0 0 1 +This section this T Th Thi This BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 3 no 0 9 0 0 0 0 1 +between a between b be bet betw BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 3 . 1 9 0 0 0 0 1 +example is example e ex exa exam BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 3 no 0 10 0 0 0 0 1 +the message the t th the the BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 3 . 1 8 0 0 0 0 1 +[CoAP request [coap [ [C [Co [CoA BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 4 [--] 4 10 0 0 0 0 1 +GET coap://proxy.url/ get G GE GET GET BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 6 5 ://./ 5 6 0 0 0 0 1 +Proxy-Uri=http://server.url/orders Proxy-Uri=http://server.url/orders proxy-uri=http://server.url/orders P Pr Pro Prox BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 1 6 5 -://./ 6 10 0 0 0 0 1 +[CoAP request [coap [ [C [Co [CoA BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 5 [--] 4 10 0 0 0 0 1 +POST coap://proxy.url/ post P PO POS POST BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 1 1 0 0 0 0 0 6 6 ://./ 5 4 0 0 0 0 1 +Proxy-Uri=http://server.url/ Proxy-Uri=http://server.url/ proxy-uri=http://server.url/ P Pr Pro Prox BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 1 6 6 -://./ 6 6 0 0 0 0 1 +OSCORE: 09 oscore: O OS OSC OSCO BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 6 6 : 1 2 0 0 0 0 1 +Payload: 09 payload: P Pa Pay Payl BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 6 6 :[] 3 10 0 0 0 0 1 +[HTTP request [http [ [H [HT [HTT BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 6 7 [--] 4 10 0 0 0 0 1 +POST http://server.url/ post P PO POS POST BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 1 1 0 0 0 0 0 6 7 ://.//. 7 7 0 0 0 0 1 +Content-Type: application/oscore content-type: C Co Con Cont BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 7 -:/ 3 7 0 0 0 0 1 +OSCORE: CSU oscore: O OS OSC OSCO BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 6 7 : 1 2 0 0 0 0 1 +Body: 09 body: B Bo Bod Body BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 7 :[] 3 10 0 0 0 0 1 +[HTTP request [http [ [H [HT [HTT BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 6 8 [--] 4 10 0 0 0 0 1 +GET http://server.url/orders get G GE GET GET BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 6 8 ://.//. 7 10 0 0 0 0 1 +[HTTP response [http [ [H [HT [HTT BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 6 9 [--] 4 10 0 0 0 0 1 +HTTP/1.1 200 http/1.1 H HT HTT HTTP BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 9 /. 2 5 0 0 0 0 1 +Content-Type: text/plain content-type: C Co Con Cont BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 9 -:/ 3 7 0 0 0 0 1 +Body: Exterminate! body: B Bo Bod Body BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 9 :!! 3 10 0 0 0 0 1 +[HTTP response [http [ [H [HT [HTT BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 6 10 [--] 4 10 0 0 0 0 1 +HTTP/1.1 200 http/1.1 H HT HTT HTTP BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 10 /. 2 3 0 0 0 0 1 +Content-Type: application/oscore content-type: C Co Con Cont BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 10 -:/ 3 6 0 0 0 0 1 +OSCORE: AA oscore: O OS OSC OSCO BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 6 10 : 1 2 0 0 0 0 1 +Body: 00 body: B Bo Bod Body BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 10 :...[] 6 10 0 0 0 0 1 +Selander, et selander, S Se Sel Sela BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 6 11 ,. 2 10 0 0 1 0 0 +Standards Track standards S St Sta Stan BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 6 11 no 0 9 0 0 0 0 0 +[Page 50] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 11 [] 2 5 0 0 0 0 0 +RFC 8613 rfc R RF RFC RFC BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 6 0 no 0 10 0 0 0 0 1 +OSCORE OSCORE oscore O OS OSC OSCO BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 6 0 no 0 7 0 0 0 0 1 +July 2019 july J Ju Jul July BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 6 0 no 0 10 0 0 0 0 1 +[CoAP response [coap [ [C [Co [CoA BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 0 [--] 4 10 0 0 0 0 1 +2.04 Changed 2.04 2 2. 2.0 2.04 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 0 . 1 2 0 0 0 0 1 +OSCORE: [empty] oscore: O OS OSC OSCO BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 6 0 :[] 3 3 0 0 0 0 1 +Payload: 00 payload: P Pa Pay Payl BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 6 0 :...[] 6 10 0 0 0 0 1 +[CoAP response [coap [ [C [Co [CoA BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 1 [--] 4 10 0 0 0 0 1 +2.05 Content 2.05 2 2. 2.0 2.05 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 1 . 1 3 0 0 0 0 1 +Content-Format: 0 content-format: C Co Con Cont BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 1 -: 2 5 0 0 0 0 1 +Payload: Exterminate! payload: P Pa Pay Payl BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 6 1 :!! 3 10 0 0 0 0 1 +Note that note N No Not Note BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 1 .()-- 5 10 0 0 0 0 1 +the mapping the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 1 (),. 4 9 0 0 0 0 1 +(Content) in (content) ( (C (Co (Con BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 1 () 2 9 0 0 0 0 1 +the compressed the t th the the BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 1 . 1 9 0 0 0 0 1 +12. Security 12. 1 12 12. 12. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 3 . 1 10 0 0 0 0 1 +An overview an A An An An BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 6 3 . 1 10 0 0 0 0 1 +12.1. End-to-end 12.1. 1 12 12. 12.1 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 4 ..-- 4 10 0 0 0 0 1 +In scenarios in I In In In BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 6 4 , 1 9 0 0 0 0 1 +transport layer transport t tr tra tran BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 4 ()-- 4 9 0 0 0 0 1 +hop. As hop. h ho hop hop. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 4 ., 2 9 0 0 0 0 1 +any information. any a an any any BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 4 . 1 9 0 0 0 0 1 +considered trustworthy considered c co con cons BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 4 , 1 9 0 0 0 0 1 +perspective, but perspective, p pe per pers BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 4 ,, 2 8 0 0 0 0 1 +intermediaries are intermediaries i in int inte BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 4 no 0 9 0 0 0 0 1 +commands to commands c co com comm BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 4 ("","", 7 9 0 0 0 0 1 +"raise bridge"). "raise " "r "ra "rai BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 4 ""). 4 9 0 0 0 0 1 +intermediary nodes intermediary i in int inte BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 4 , 1 10 0 0 0 0 1 +such an such s su suc such BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 4 . 1 4 0 0 0 0 1 +(D)TLS protects (d)tls ( (D (D) (D)T BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 6 8 ()--.- 6 9 0 0 0 0 1 +to-end all to-end t to to- to-e BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 8 -( 2 10 0 0 0 0 1 +Section 4). section S Se Sec Sect BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 8 ).(),- 6 9 0 0 0 0 1 +to-end security to-end t to to- to-e BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 8 -,-- 4 9 0 0 0 0 1 +hop protection hop h ho hop hop BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 8 , 1 9 0 0 0 0 1 +endpoint and endpoint e en end endp BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 8 ., 2 9 0 0 0 0 1 +with HTTP, with w wi wit with BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 8 ,, 2 10 0 0 0 0 1 +e.g., between e.g., e e. e.g e.g. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 8 .., 3 9 0 0 0 0 1 +and CoAP. and a an and and BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 8 . 1 1 0 0 0 0 1 +Selander, et selander, S Se Sel Sela BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 6 11 ,. 2 10 0 0 1 0 0 +Standards Track standards S St Sta Stan BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 6 11 no 0 9 0 0 0 0 0 +[Page 51] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 11 [] 2 5 0 0 0 0 0 +RFC 8613 rfc R RF RFC RFC BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 6 0 no 0 10 0 0 0 0 1 +OSCORE OSCORE oscore O OS OSC OSCO BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 6 0 no 0 7 0 0 0 0 1 +July 2019 july J Ju Jul July BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 6 0 no 0 10 0 0 0 0 1 +Applications need applications A Ap App Appl BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 6 0 no 0 9 0 0 0 0 1 +messages types messages m me mes mess BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 0 -- 2 10 0 0 0 0 1 +manipulated. The manipulated. m ma man mani BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 0 . 1 9 0 0 0 0 1 +analyzed in analyzed a an ana anal BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 0 .. 2 3 0 0 0 0 1 +12.2. Security 12.2. 1 12 12. 12.2 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 1 .. 2 10 0 0 0 0 1 +The use the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 1 no 0 10 0 0 0 0 1 +this document this t th thi this BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 1 . 1 9 0 0 0 0 1 +to establish to t to to to BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 1 . 1 9 0 0 0 0 1 +on a on o on on on BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 1 . 1 9 0 0 0 0 1 +parameters may parameters p pa par para BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 1 no 0 8 0 0 0 0 1 +establishment protocol establishment e es est esta BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 1 / 1 9 0 0 0 0 1 +Recipient ID, recipient R Re Rec Reci BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 1 , 1 9 0 0 0 0 1 +of the of o of of of BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 1 no 0 9 0 0 0 0 1 +(ACE) framework (ace) ( (A (AC (ACE BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 6 1 ()[-]. 6 9 0 0 0 0 1 +the requirements the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 1 no 0 9 0 0 0 0 1 +use are use u us use use BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 1 (.). 4 9 0 0 0 0 1 +While recipient while W Wh Whi Whil BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 1 no 0 8 0 0 0 0 1 +security contexts security s se sec secu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 6 1 (.), 4 9 0 0 0 0 1 +process multiple process p pr pro proc BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 1 no 0 9 0 0 0 0 1 +context or context c co con cont BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 1 . 1 9 0 0 0 0 1 +with a with w wi wit with BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 1 . 1 7 0 0 0 0 1 +12.3. Master 12.3. 1 12 12. 12.3 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 6 .. 2 10 0 0 0 0 1 +OSCORE uses oscore O OS OSC OSCO BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 6 6 [] 2 9 0 0 0 0 1 +derive the derive d de der deri BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 6 . 1 10 0 0 0 0 1 +context parameters context c co con cont BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 6 .;, 3 10 0 0 0 0 1 +focus on focus f fo foc focu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 6 ., 2 9 0 0 0 0 1 +composition of composition c co com comp BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 6 no 0 8 0 0 0 0 1 +[RFC5869] and [rfc5869] [ [R [RF [RFC BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 6 [] 2 9 0 0 0 0 1 +(IKM). (IKM). (ikm). ( (I (IK (IKM BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 6 6 (). 3 1 0 0 0 0 1 +Informally, HKDF informally, I In Inf Info BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 8 , 1 9 0 0 0 0 1 +of randomness of o of of of BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 8 ( 1 10 0 0 0 0 1 +an attacker an a an an an BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 6 8 ) 1 9 0 0 0 0 1 +more cryptographically more m mo mor more BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 8 []. 3 7 0 0 0 0 1 +Therefore, the therefore, T Th The Ther BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 9 ,, 2 9 0 0 0 0 1 +addition to addition a ad add addi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 9 , 1 8 0 0 0 0 1 +randomness. The randomness. r ra ran rand BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 9 . 1 9 0 0 0 0 1 +the necessary the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 9 . 1 9 0 0 0 0 1 +pre-shared key pre-shared p pr pre pre- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 9 - 1 9 0 0 0 0 1 +[OSCORE-PROFILE], the [oscore-profile], [ [O [OS [OSC BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 6 9 [-], 4 10 0 0 0 0 1 +good random good g go goo good BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 6 9 . 1 9 0 0 0 0 1 +are described are a ar are are BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 9 []. 3 4 0 0 0 0 1 +Selander, et selander, S Se Sel Sela BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 6 11 ,. 2 10 0 0 1 0 0 +Standards Track standards S St Sta Stan BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 6 11 no 0 9 0 0 0 0 0 +[Page 52] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 11 [] 2 5 0 0 0 0 0 +RFC 8613 rfc R RF RFC RFC BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 6 0 no 0 10 0 0 0 0 1 +OSCORE OSCORE oscore O OS OSC OSCO BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 6 0 no 0 7 0 0 0 0 1 +July 2019 july J Ju Jul July BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 6 0 no 0 10 0 0 0 0 1 +12.4. Replay 12.4. 1 12 12. 12.4 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 0 .. 2 10 0 0 0 0 1 +Replay attacks replay R Re Rep Repl BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 0 no 0 9 0 0 0 0 1 +implementation. Most implementation. i im imp impl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 0 . 1 10 0 0 0 0 1 +message, for message, m me mes mess BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 0 , 1 9 0 0 0 0 1 +field 'Partial field f fi fie fiel BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 6 0 ''. 3 9 0 0 0 0 1 +number larger number n nu num numb BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 0 , 1 9 0 0 0 0 1 +sequence number sequence s se seq sequ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 0 ., 2 10 0 0 0 0 1 +it may it i it it it BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 0 no 0 9 0 0 0 0 1 +equal to equal e eq equ equa BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 0 . 1 10 0 0 0 0 1 +may try may m ma may may BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 1 0 0 6 0 no 0 9 0 0 0 0 1 +message (see message m me mes mess BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 0 (.). 4 3 0 0 0 0 1 +Note that note N No Not Note BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 3 no 0 10 0 0 0 0 1 +replay attacks, replay r re rep repl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 3 ,, 2 8 0 0 0 0 1 +synchronized. synchronized. synchronized. s sy syn sync BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 3 . 1 2 0 0 0 0 1 +12.5. Client 12.5. 1 12 12. 12.5 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 3 .. 2 10 0 0 0 0 1 +A verified a A A A A BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 1 0 0 0 0 0 7 4 no 0 9 0 0 0 0 1 +of the of o of of of BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 4 ., 2 9 0 0 0 0 1 +that the that t th tha that BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 4 , 1 10 0 0 0 0 1 +message may message m me mes mess BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 4 , 1 9 0 0 0 0 1 +which now which w wh whi whic BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 4 . 1 9 0 0 0 0 1 +the server the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 4 no 0 9 0 0 0 0 1 +the client the t th the the BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 4 ([---]). 8 5 0 0 0 0 1 +12.6. Cryptographic 12.6. 1 12 12. 12.6 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 6 .. 2 10 0 0 0 0 1 +The maximum the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 6 no 0 8 0 0 0 0 1 +algorithm. The algorithm. a al alg algo BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 6 .-, 3 9 0 0 0 0 1 +algorithm-specific lower algorithm-specific a al alg algo BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 6 -, 2 9 0 0 0 0 1 +must be must m mu mus must BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 6 . 1 8 0 0 0 0 1 +(Section 5.2) (section ( (S (Se (Sec BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 7 6 (.), 4 9 0 0 0 0 1 +Partial IV partial P Pa Par Part BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 6 .-- 3 9 0 0 0 0 1 +algorithm AES-CCM-16-64-128 algorithm a al alg algo BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 6 ----*. 6 10 0 0 0 0 1 +AEAD algorithms aead A AE AEA AEAD BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 7 6 . 1 10 0 0 0 0 1 +In order in I In In In BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 7 8 no 0 8 0 0 0 0 1 +repeatedly encrypted repeatedly r re rep repe BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 8 , 1 10 0 0 0 0 1 +the AEAD the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 8 no 0 9 0 0 0 0 1 +per-context initialization per-context p pe per per- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 8 -() 3 9 0 0 0 0 1 +keys (see keys k ke key keys BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 7 8 (.[]), 6 9 0 0 0 0 1 +the key the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 8 ([])., 6 9 0 0 0 0 1 +Sender Key, sender S Se Sen Send BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 8 ,,, 3 9 0 0 0 0 1 +the parameters the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 8 . 1 9 0 0 0 0 1 +amount of amount a am amo amou BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 8 (.). 4 5 0 0 0 0 1 +Selander, et selander, S Se Sel Sela BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 7 11 ,. 2 10 0 0 1 0 0 +Standards Track standards S St Sta Stan BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 7 11 no 0 9 0 0 0 0 0 +[Page 53] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 7 11 [] 2 5 0 0 0 0 0 +RFC 8613 rfc R RF RFC RFC BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 7 0 no 0 10 0 0 0 0 1 +OSCORE OSCORE oscore O OS OSC OSCO BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 7 0 no 0 7 0 0 0 0 1 +July 2019 july J Ju Jul July BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 7 0 no 0 10 0 0 0 0 1 +The ID the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 0 ,, 2 8 0 0 0 0 1 +implicitly integrity implicitly i im imp impl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 0 , 1 9 0 0 0 0 1 +nonce or nonce n no non nonc BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 7 0 . 1 10 0 0 0 0 1 +12.7. Message 12.7. 1 12 12. 12.7 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 1 .. 2 10 0 0 0 0 1 +The Inner the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 1 no 0 9 0 0 0 0 1 +into OSCORE-protected into i in int into BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 1 - 1 9 0 0 0 0 1 +verify blocks verify v ve ver veri BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 1 . 1 9 0 0 0 0 1 +Block options block B Bl Blo Bloc BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 7 1 no 0 10 0 0 0 0 1 +cannot be cannot c ca can cann BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 1 ,, 2 9 0 0 0 0 1 +restricted in restricted r re res rest BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 1 no 0 9 0 0 0 0 1 +fragmentation of fragmentation f fr fra frag BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 1 .( 2 9 0 0 0 0 1 +which the which w wh whi whic BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 1 no 0 9 0 0 0 0 1 +endpoint discards endpoint e en end endp BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 7 1 ,) 2 9 0 0 0 0 1 +obtained as obtained o ob obt obta BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 1 . 1 6 0 0 0 0 1 +12.8. Privacy 12.8. 1 12 12. 12.8 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 4 .. 2 10 0 0 0 0 1 +Privacy threats privacy P Pr Pri Priv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 4 no 0 9 0 0 0 0 1 +reduced by reduced r re red redu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 4 .-- 3 9 0 0 0 0 1 +encryption of encryption e en enc encr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 7 4 no 0 9 0 0 0 0 1 +for proxy for f fo for for BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 4 no 0 10 0 0 0 0 1 +actuator communication, actuator a ac act actu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 7 4 , 1 8 0 0 0 0 1 +personal sphere. personal p pe per pers BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 4 . 1 2 0 0 0 0 1 +The unprotected the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 6 ()- 3 9 0 0 0 0 1 +information, see information, i in inf info BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 6 ,.., 4 10 0 0 0 0 1 +for example, for f fo for for BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 6 ,(), 4 9 0 0 0 0 1 +matching of matching m ma mat matc BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 6 (). 3 9 0 0 0 0 1 +OSCORE does oscore O OS OSC OSCO BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 7 6 no 0 9 0 0 0 0 1 +not both not n no not not BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 6 -. 2 10 0 0 0 0 1 +visible to visible v vi vis visi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 6 - 1 8 0 0 0 0 1 +transporting the transporting t tr tra tran BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 6 ,- 2 9 0 0 0 0 1 +message is message m me mes mess BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 6 . 1 6 0 0 0 0 1 +COSE message cose C CO COS COSE BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 7 9 ,..,, 5 9 0 0 0 0 1 +about the about a ab abo abou BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 9 .,''' 5 9 0 0 0 0 1 +context', which context', c co con cont BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 7 9 ', 2 9 0 0 0 0 1 +context, may context, c co con cont BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 9 ,.'' 4 9 0 0 0 0 1 +'kid context' 'kid ' 'k 'ki 'kid BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 7 9 '' 2 10 0 0 0 0 1 +one client. one o on one one BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 9 . 1 1 0 0 0 0 1 +Unprotected error unprotected U Un Unp Unpr BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 10 no 0 9 0 0 0 0 1 +state in state s st sta stat BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 10 . 1 9 0 0 0 0 1 +signaling messages signaling s si sig sign BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 7 10 no 0 10 0 0 0 0 1 +Selander, et selander, S Se Sel Sela BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 7 11 ,. 2 10 0 0 1 0 0 +Standards Track standards S St Sta Stan BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 7 11 no 0 9 0 0 0 0 0 +[Page 54] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 7 11 [] 2 5 0 0 0 0 0 +RFC 8613 rfc R RF RFC RFC BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 7 0 no 0 10 0 0 0 0 1 +OSCORE OSCORE oscore O OS OSC OSCO BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 7 0 no 0 7 0 0 0 0 1 +July 2019 july J Ju Jul July BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 7 0 no 0 10 0 0 0 0 1 +used on used u us use used BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 0 . 1 8 0 0 0 0 1 +Section 7.5 section S Se Sec Sect BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 0 .. 2 10 0 0 0 0 1 +be mitigated be b be be be BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 0 no 0 9 0 0 0 0 1 +Sequence Number sequence S Se Seq Sequ BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 0 . 1 7 0 0 0 0 1 +The length the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 2 no 0 9 0 0 0 0 1 +message. Applications message. m me mes mess BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 2 . 1 10 0 0 0 0 1 +traffic analysis. traffic t tr tra traf BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 2 . 1 2 0 0 0 0 1 +13. IANA 13. 1 13 13. 13. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 3 . 1 10 0 0 0 0 1 +13.1. COSE 13.1. 1 13 13. 13.1 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 3 .. 2 10 0 0 0 0 1 +The 'kid the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 4 ''" 3 10 0 0 0 0 1 +Parameters" registry: parameters" P Pa Par Para BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 7 4 ": 2 3 0 0 0 0 1 +o Name: o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 7 4 : 1 10 0 0 0 0 1 +o Label: o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 7 5 : 1 10 0 0 0 0 1 +o Value o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 7 5 : 1 10 0 0 0 0 1 +o Value o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 7 5 : 1 10 0 0 0 0 1 +o Description: o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 7 5 : 1 10 0 0 0 0 1 +o Reference: o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 7 6 :. 2 10 0 0 0 0 1 +13.2. CoAP 13.2. 1 13 13. 13.2 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 6 .. 2 10 0 0 0 0 1 +The OSCORE the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 6 "" 2 10 0 0 0 0 1 +registry: registry: registry: r re reg regi BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 6 : 1 1 0 0 0 0 1 ++--------+-----------------+-------------------+ +--------+-----------------+-------------------+ +--------+-----------------+-------------------+ + +- +-- +--- BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 7 7 -------------------------------------------- 44 10 0 0 0 0 1 +| Number | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 7 no 0 3 0 0 0 0 1 +| Reference | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 7 no 0 2 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 7 no 0 0 0 0 0 0 1 ++--------+-----------------+-------------------+ +--------+-----------------+-------------------+ +--------+-----------------+-------------------+ + +- +-- +--- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 7 7 -------------------------------------------- 44 10 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 7 no 0 0 0 0 0 0 1 +9 | 9 9 9 9 9 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 7 7 no 0 2 0 0 0 0 1 +| [RFC8613] | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 7 [] 2 2 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 7 no 0 0 0 0 0 0 1 ++--------+-----------------+-------------------+ +--------+-----------------+-------------------+ +--------+-----------------+-------------------+ + +- +-- +--- BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 7 7 -------------------------------------------- 44 10 0 0 0 0 1 +Selander, et selander, S Se Sel Sela BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 7 11 ,. 2 10 0 0 1 0 0 +Standards Track standards S St Sta Stan BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 7 11 no 0 9 0 0 0 0 0 +[Page 55] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 7 11 [] 2 5 0 0 0 0 0 +RFC 8613 rfc R RF RFC RFC BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 7 0 no 0 10 0 0 0 0 1 +OSCORE OSCORE oscore O OS OSC OSCO BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 7 0 no 0 7 0 0 0 0 1 +July 2019 july J Ju Jul July BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 7 0 no 0 10 0 0 0 0 1 +Furthermore, the furthermore, F Fu Fur Furt BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 0 ," 2 9 0 0 0 0 1 +Numbers" registry numbers" N Nu Num Numb BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 7 0 " 1 10 0 0 0 0 1 +specifying OSCORE specifying s sp spe spec BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 0 : 1 6 0 0 0 0 1 ++--------+-----------------+-------------------------------+ +--------+-----------------+-------------------------------+ +--------+-----------------+-------------------------------+ + +- +-- +--- BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 7 0 -------------------------------------------------------- 56 10 0 0 0 0 1 +| Number | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 2 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +Reference Reference reference R Re Ref Refe BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 0 no 0 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 ++--------+-----------------+-------------------------------+ +--------+-----------------+-------------------------------+ +--------+-----------------+-------------------------------+ + +- +-- +--- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 7 0 -------------------------------------------------------- 56 10 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +1 1 1 1 1 1 1 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| If-Match | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 - 1 1 0 0 0 0 1 +| [RFC7252] | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 [][] 4 3 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +3 3 3 3 3 3 3 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| Uri-Host | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 - 1 1 0 0 0 0 1 +| [RFC7252] | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 [][] 4 3 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +4 4 4 4 4 4 4 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| ETag | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 1 0 0 0 0 1 +| [RFC7252] | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 [][] 4 3 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +5 5 5 5 5 5 5 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| If-None-Match | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 -- 2 2 0 0 0 0 1 +| [RFC7252] | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 [][] 4 3 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +6 6 6 6 6 6 6 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| Observe | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 1 0 0 0 0 1 +| [RFC7641] | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 [][] 4 3 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +7 7 7 7 7 7 7 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| Uri-Port | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 - 1 1 0 0 0 0 1 +| [RFC7252] | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 [][] 4 3 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +8 8 8 8 8 8 8 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| Location-Path | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 - 1 2 0 0 0 0 1 +| [RFC7252] | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 [][] 4 3 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| 11 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| Uri-Path | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 - 1 1 0 0 0 0 1 +| [RFC7252] | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 [][] 4 3 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| 12 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| Content-Format | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 -[][] 5 6 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| 14 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| Max-Age | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 - 1 1 0 0 0 0 1 +| [RFC7252] | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 [][] 4 3 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| 15 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| Uri-Query | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 - 1 1 0 0 0 0 1 +| [RFC7252] | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 [][] 4 3 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| 17 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| Accept | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 1 0 0 0 0 1 +| [RFC7252] | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 [][] 4 3 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| 20 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| Location-Query | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 -[][] 5 6 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| 23 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| Block2 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 1 0 0 0 0 1 +| [RFC7959] | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 [][][] 6 5 0 0 0 0 1 +| 27 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| Block1 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 1 0 0 0 0 1 +| [RFC7959] | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 [][][] 6 5 0 0 0 0 1 +| 28 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| Size2 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 1 0 0 0 0 1 +| [RFC7959] | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 [][] 4 3 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| 35 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| Proxy-Uri | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 - 1 1 0 0 0 0 1 +| [RFC7252] | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 [][] 4 3 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| 39 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| Proxy-Scheme | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 - 1 2 0 0 0 0 1 +| [RFC7252] | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 [][] 4 3 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| 60 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| Size1 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 1 0 0 0 0 1 +| [RFC7252] | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 [][] 4 3 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| 258 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| No-Response | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 - 1 2 0 0 0 0 1 +| [RFC7967] | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 [][] 4 3 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 ++--------+-----------------+-------------------------------+ +--------+-----------------+-------------------------------+ +--------+-----------------+-------------------------------+ + +- +-- +--- BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 7 0 -------------------------------------------------------- 56 10 0 0 0 0 1 +Future additions future F Fu Fut Futu BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 8 "" 2 9 0 0 0 0 1 +provide a provide p pr pro prov BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 8 no 0 10 0 0 0 0 1 +that CoAP that t th tha that BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 8 . 1 4 0 0 0 0 1 +13.3. CoAP 13.3. 1 13 13. 13.3 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 8 .. 2 10 0 0 0 0 1 +The OSCORE the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 8 " 1 10 0 0 0 0 1 +Numbers" registry: numbers" N Nu Num Numb BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 7 8 ": 2 3 0 0 0 0 1 ++------------+--------+---------------------+-------------------+ +------------+--------+---------------------+-------------------+ +------------+--------+---------------------+-------------------+ + +- +-- +--- BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 7 9 ------------------------------------------------------------ 60 10 0 0 0 0 1 +| Applies | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 9 no 0 4 0 0 0 0 1 +| Reference | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 9 no 0 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 9 no 0 0 0 0 0 0 1 ++------------+--------+---------------------+-------------------+ +------------+--------+---------------------+-------------------+ +------------+--------+---------------------+-------------------+ + +- +-- +--- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 7 9 ------------------------------------------------------------ 60 10 0 0 0 0 1 +| 7.xx | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 9 .() 3 2 0 0 0 0 1 +9 | 9 9 9 9 9 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 7 9 no 0 1 0 0 0 0 1 +| [RFC8613] | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 9 [] 2 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 9 no 0 0 0 0 0 0 1 ++------------+--------+---------------------+-------------------+ +------------+--------+---------------------+-------------------+ +------------+--------+---------------------+-------------------+ + +- +-- +--- BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 7 9 ------------------------------------------------------------ 60 10 0 0 0 0 1 +Selander, et selander, S Se Sel Sela BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 7 11 ,. 2 10 0 0 1 0 0 +Standards Track standards S St Sta Stan BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 7 11 no 0 9 0 0 0 0 0 +[Page 56] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 7 11 [] 2 5 0 0 0 0 0 +RFC 8613 rfc R RF RFC RFC BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 7 0 no 0 10 0 0 0 0 1 +OSCORE OSCORE oscore O OS OSC OSCO BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 7 0 no 0 7 0 0 0 0 1 +July 2019 july J Ju Jul July BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 7 0 no 0 10 0 0 0 0 1 +13.4. Header 13.4. 1 13 13. 13.4 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 0 .. 2 10 0 0 0 0 1 +The HTTP the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 0 "" 2 10 0 0 0 0 1 +registry: registry: registry: r re reg regi BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 0 : 1 1 0 0 0 0 1 ++-------------------+----------+----------+---------------------+ +-------------------+----------+----------+---------------------+ +-------------------+----------+----------+---------------------+ + +- +-- +--- BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 7 1 ------------------------------------------------------------ 60 10 0 0 0 0 1 +| Header | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 1 no 0 6 0 0 0 0 1 +| Reference | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 1 no 0 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 1 no 0 0 0 0 0 0 1 ++-------------------+----------+----------+---------------------+ +-------------------+----------+----------+---------------------+ +-------------------+----------+----------+---------------------+ + +- +-- +--- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 7 1 ------------------------------------------------------------ 60 10 0 0 0 0 1 +| OSCORE | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 1 no 0 1 0 0 0 0 1 +| http | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 1 no 0 1 0 0 0 0 1 +| standard | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 1 [], 3 3 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 1 no 0 0 0 0 0 0 1 +| Section | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 1 . 1 2 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 1 no 0 0 0 0 0 0 1 ++-------------------+----------+----------+---------------------+ +-------------------+----------+----------+---------------------+ +-------------------+----------+----------+---------------------+ + +- +-- +--- BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 7 1 ------------------------------------------------------------ 60 10 0 0 0 0 1 +13.5. Media 13.5. 1 13 13. 13.5 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 5 .. 2 10 0 0 0 0 1 +This section this T Th Thi This BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 6 '/' 3 9 0 0 0 0 1 +"Media Types" "media " "M "Me "Med BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 7 6 "". 3 10 0 0 0 0 1 +content is content c co con cont BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 6 . 1 9 0 0 0 0 1 +without the without w wi wit with BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 6 . 1 9 0 0 0 0 1 +Type name: type T Ty Typ Type BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 7 : 1 10 0 0 0 0 1 +Subtype name: subtype S Su Sub Subt BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 7 7 : 1 10 0 0 0 0 1 +Required parameters: required R Re Req Requ BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 8 :/ 2 10 0 0 0 0 1 +Optional parameters: optional O Op Opt Opti BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 8 :/ 2 10 0 0 0 0 1 +Encoding considerations: encoding E En Enc Enco BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 8 : 1 10 0 0 0 0 1 +Security considerations: security S Se Sec Secu BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 7 8 : 1 10 0 0 0 0 1 +of [RFC8613]. of o of of of BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 8 []. 3 2 0 0 0 0 1 +Interoperability considerations: interoperability I In Int Inte BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 7 9 :/ 2 10 0 0 0 0 1 +Published specification: published P Pu Pub Publ BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 9 :[] 3 10 0 0 0 0 1 +Applications that applications A Ap App Appl BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 7 9 : 1 10 0 0 0 0 1 +security content security s se sec secu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 7 9 (). 3 6 0 0 0 0 1 +Fragment identifier fragment F Fr Fra Frag BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 10 :/ 2 10 0 0 0 0 1 +Additional information: additional A Ad Add Addi BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 10 : 1 10 0 0 0 0 1 +* Deprecated * * * * * BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 10 *:/ 3 10 0 0 0 0 1 +* Magic * * * * * BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 10 *():/ 5 5 0 0 0 0 1 +* File * * * * * BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 10 *():/ 5 5 0 0 0 0 1 +* Macintosh * * * * * BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 10 *():/ 5 7 0 0 0 0 1 +Selander, et selander, S Se Sel Sela BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 7 11 ,. 2 10 0 0 1 0 0 +Standards Track standards S St Sta Stan BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 7 11 no 0 9 0 0 0 0 0 +[Page 57] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 7 11 [] 2 5 0 0 0 0 0 +RFC 8613 rfc R RF RFC RFC BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 7 0 no 0 10 0 0 0 0 1 +OSCORE OSCORE oscore O OS OSC OSCO BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 7 0 no 0 7 0 0 0 0 1 +July 2019 july J Ju Jul July BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 7 0 no 0 10 0 0 0 0 1 +Person & person P Pe Per Pers BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 7 0 : 1 10 0 0 0 0 1 +IESG <iesg@ietf.org> iesg I IE IES IESG BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 7 0 . 1 3 0 0 0 0 1 +Intended usage: intended I In Int Inte BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 0 : 1 10 0 0 0 0 1 +Restrictions on restrictions R Re Res Rest BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 0 :/ 2 10 0 0 0 0 1 +Author: Goeran author: A Au Aut Auth BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 0 :.. 3 10 0 0 0 0 1 +Change Controller: change C Ch Cha Chan BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 1 : 1 10 0 0 0 0 1 +Provisional registration? provisional P Pr Pro Prov BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 1 ? 1 10 0 0 0 0 1 +13.6. CoAP 13.6. 1 13 13. 13.6 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 1 ..- 3 10 0 0 0 0 1 +This section this T Th Thi This BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 1 '/' 3 10 0 0 0 0 1 +in the in i in in in BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 7 1 "-".- 5 9 0 0 0 0 1 +OSCORE payload oscore O OS OSC OSCO BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 7 1 no 0 9 0 0 0 0 1 +NOT be not N NO NOT NOT BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 7 1 . 1 9 0 0 0 0 1 +understood without understood u un und unde BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 1 . 1 9 0 0 0 0 1 ++----------------------+----------+----------+-------------------+ +----------------------+----------+----------+-------------------+ +----------------------+----------+----------+-------------------+ + +- +-- +--- BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 7 3 ------------------------------------------------------------- 61 10 0 0 0 0 1 +| Media | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 3 no 0 1 0 0 0 0 1 +| Encoding | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 3 no 0 1 0 0 0 0 1 +ID ID id I ID ID ID BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 1 0 0 0 0 0 0 7 3 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 3 no 0 0 0 0 0 0 1 +Reference Reference reference R Re Ref Refe BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 3 no 0 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 3 no 0 0 0 0 0 0 1 ++----------------------+----------+----------+-------------------+ +----------------------+----------+----------+-------------------+ +----------------------+----------+----------+-------------------+ + +- +-- +--- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 7 3 ------------------------------------------------------------- 61 10 0 0 0 0 1 +| application/oscore | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 3 / 1 3 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 3 no 0 0 0 0 0 0 1 +| 10001 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 3 no 0 1 0 0 0 0 1 +| [RFC8613] | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 3 [] 2 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 3 no 0 0 0 0 0 0 1 ++----------------------+----------+----------+-------------------+ +----------------------+----------+----------+-------------------+ +----------------------+----------+----------+-------------------+ + +- +-- +--- BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 7 3 ------------------------------------------------------------- 61 10 0 0 0 0 1 +13.7. OSCORE 13.7. 1 13 13. 13.7 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 6 .. 2 10 0 0 0 0 1 +This document this T Th Thi This BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 7 no 0 10 0 0 0 0 1 +the "CoRE the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 7 "". 3 9 0 0 0 0 1 +"OSCORE Flag "oscore " "O "OS "OSC BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 7 7 "". 3 9 0 0 0 0 1 +Review policy review R Re Rev Revi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 7 []. 3 10 0 0 0 0 1 +Section 13.8. section S Se Sec Sect BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 7 .. 2 2 0 0 0 0 1 +The columns the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 8 : 1 10 0 0 0 0 1 +o Bit o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 7 8 : 1 10 0 0 0 0 1 +OSCORE flag oscore O OS OSC OSCO BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 7 8 ,. 2 9 0 0 0 0 1 +bit position bit b bi bit bit BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 8 , 1 9 0 0 0 0 1 +range 0 range r ra ran rang BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 8 . 1 2 0 0 0 0 1 +o Name: o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 7 10 : 1 10 0 0 0 0 1 +discuss the discuss d di dis disc BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 10 . 1 9 0 0 0 0 1 +protocol. Names protocol. p pr pro prot BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 10 .. 2 7 0 0 0 0 1 +o Description: o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 7 11 : 1 10 0 0 0 0 1 +bit. bit. bit. b bi bit bit. BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 11 . 1 0 0 0 0 0 1 +Selander, et selander, S Se Sel Sela BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 7 11 ,. 2 10 0 0 1 0 0 +Standards Track standards S St Sta Stan BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 7 11 no 0 9 0 0 0 0 0 +[Page 58] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 7 11 [] 2 5 0 0 0 0 0 +RFC 8613 rfc R RF RFC RFC BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 7 0 no 0 10 0 0 0 0 1 +OSCORE OSCORE oscore O OS OSC OSCO BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 7 0 no 0 7 0 0 0 0 1 +July 2019 july J Ju Jul July BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 7 0 no 0 10 0 0 0 0 1 +o Reference: o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 7 0 : 1 10 0 0 0 0 1 +the entry. the t th the the BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 0 . 1 1 0 0 0 0 1 +The initial the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 0 . 1 9 0 0 0 0 1 +reference column reference r re ref refe BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 0 . 1 9 0 0 0 0 1 +Position of position P Po Pos Posi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 0 ''. 3 9 0 0 0 0 1 +Position of position P Po Pos Posi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 0 no 0 10 0 0 0 0 1 +to expand to t to to to BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 0 ., 2 9 0 0 0 0 1 +entries 8-63 entries e en ent entr BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 0 -. 2 6 0 0 0 0 1 ++--------------+-------------+-----------------------------+-----------+ +--------------+-------------+-----------------------------+-----------+ +--------------+-------------+-----------------------------+-----------+ + +- +-- +--- BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 7 1 ------------------------------------------------------------------- 67 10 0 0 0 0 1 +| Bit | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 1 no 0 3 0 0 0 0 1 +| Description | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 1 no 0 1 0 0 0 0 1 +| Reference | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 1 no 0 1 0 0 0 0 1 ++--------------+-------------+-----------------------------+-----------+ +--------------+-------------+-----------------------------+-----------+ +--------------+-------------+-----------------------------+-----------+ + +- +-- +--- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 7 1 ------------------------------------------------------------------- 67 10 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 1 no 0 0 0 0 0 0 1 +0 0 0 0 0 0 0 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 7 1 no 0 0 0 0 0 0 1 +| Reserved | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 1 no 0 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 1 no 0 0 0 0 0 0 1 ++--------------+-------------+-----------------------------+-----------+ +--------------+-------------+-----------------------------+-----------+ +--------------+-------------+-----------------------------+-----------+ + +- +-- +--- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 7 1 ------------------------------------------------------------------- 67 10 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 1 no 0 0 0 0 0 0 1 +1 1 1 1 1 1 1 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 7 1 no 0 0 0 0 0 0 1 +| Reserved | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 1 no 0 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 1 no 0 0 0 0 0 0 1 ++--------------+-------------+-----------------------------+-----------+ +--------------+-------------+-----------------------------+-----------+ +--------------+-------------+-----------------------------+-----------+ + +- +-- +--- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 7 1 ------------------------------------------------------------------- 67 10 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 1 no 0 0 0 0 0 0 1 +2 2 2 2 2 2 2 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 7 1 no 0 0 0 0 0 0 1 +| Unassigned | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 1 no 0 2 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 1 no 0 0 0 0 0 0 1 ++--------------+-------------+-----------------------------+-----------+ +--------------+-------------+-----------------------------+-----------+ +--------------+-------------+-----------------------------+-----------+ + +- +-- +--- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 7 1 ------------------------------------------------------------------- 67 10 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 1 no 0 0 0 0 0 0 1 +3 3 3 3 3 3 3 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 7 1 no 0 0 0 0 0 0 1 +| Kid | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 1 no 0 5 0 0 0 0 1 +| [RFC8613] | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 1 [] 2 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 1 no 0 0 0 0 0 0 1 +| Flag | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 1 no 0 0 0 0 0 0 1 +| is | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 1 no 0 2 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 1 no 0 0 0 0 0 0 1 +| compressed | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 1 no 0 3 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 1 no 0 0 0 0 0 0 1 ++--------------+-------------+-----------------------------+-----------+ +--------------+-------------+-----------------------------+-----------+ +--------------+-------------+-----------------------------+-----------+ + +- +-- +--- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 7 1 ------------------------------------------------------------------- 67 10 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 1 no 0 0 0 0 0 0 1 +4 4 4 4 4 4 4 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 7 1 no 0 0 0 0 0 0 1 +| Kid | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 1 no 0 1 0 0 0 0 1 +| Set | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 1 [] 2 5 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 1 no 0 0 0 0 0 0 1 +| in | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 1 no 0 3 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 1 no 0 0 0 0 0 0 1 +| object | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 1 no 0 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 1 no 0 0 0 0 0 0 1 ++--------------+-------------+-----------------------------+-----------+ +--------------+-------------+-----------------------------+-----------+ +--------------+-------------+-----------------------------+-----------+ + +- +-- +--- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 7 1 ------------------------------------------------------------------- 67 10 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 1 no 0 0 0 0 0 0 1 +5-7 5-7 5-7 5 5- 5-7 5-7 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 1 - 1 0 0 0 0 0 1 +| Partial | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 1 no 0 5 0 0 0 0 1 +| [RFC8613] | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 1 [] 2 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 1 no 0 0 0 0 0 0 1 +| Length | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 1 no 0 1 0 0 0 0 1 +| length; | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 1 ; 1 3 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 1 no 0 0 0 0 0 0 1 +| 0 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 1 no 0 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 1 no 0 0 0 0 0 0 1 ++--------------+-------------+-----------------------------+-----------+ +--------------+-------------+-----------------------------+-----------+ +--------------+-------------+-----------------------------+-----------+ + +- +-- +--- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 7 1 ------------------------------------------------------------------- 67 10 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 1 no 0 0 0 0 0 0 1 +8-63 8-63 8-63 8 8- 8-6 8-63 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 1 - 1 0 0 0 0 0 1 +| Unassigned | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 1 no 0 2 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 1 no 0 0 0 0 0 0 1 ++--------------+-------------+-----------------------------+-----------+ +--------------+-------------+-----------------------------+-----------+ +--------------+-------------+-----------------------------+-----------+ + +- +-- +--- BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 7 1 ------------------------------------------------------------------- 67 10 0 0 0 0 1 +13.8. Expert 13.8. 1 13 13. 13.8 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 9 .. 2 10 0 0 0 0 1 +The expert the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 9 no 0 9 0 0 0 0 1 +expected to expected e ex exp expe BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 9 no 0 10 0 0 0 0 1 +not be not n no not not BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 9 , 1 9 0 0 0 0 1 +duplicate one duplicate d du dup dupl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 9 , 1 9 0 0 0 0 1 +point is point p po poi poin BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 9 . 1 9 0 0 0 0 1 +expected to expected e ex exp expe BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 9 no 0 9 0 0 0 0 1 +code points. code c co cod code BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 9 . 1 9 0 0 0 0 1 +entries when entries e en ent entr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 9 , 1 9 0 0 0 0 1 +encoded value encoded e en enc enco BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 9 no 0 9 0 0 0 0 1 +left that left l le lef left BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 9 no 0 10 0 0 0 0 1 +Selander, et selander, S Se Sel Sela BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 8 11 ,. 2 10 0 0 1 0 0 +Standards Track standards S St Sta Stan BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 8 11 no 0 9 0 0 0 0 0 +[Page 59] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 11 [] 2 5 0 0 0 0 0 +RFC 8613 rfc R RF RFC RFC BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 0 no 0 10 0 0 0 0 1 +OSCORE OSCORE oscore O OS OSC OSCO BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 0 no 0 7 0 0 0 0 1 +July 2019 july J Ju Jul July BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 8 0 no 0 10 0 0 0 0 1 +on. Experts on. o on on. on. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 0 .- 2 10 0 0 0 0 1 +points are points p po poi poin BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 0 (.., 4 9 0 0 0 0 1 +bits expansion bits b bi bit bits BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 0 ). 2 5 0 0 0 0 1 +14. References 14. 1 14 14. 14. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 1 . 1 10 0 0 0 0 1 +14.1. Normative 14.1. 1 14 14. 14.1 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 1 .. 2 10 0 0 0 0 1 +[RFC2119] Bradner, [rfc2119] [ [R [RF [RFC BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 1 0 0 0 8 1 [],.," 6 10 0 0 0 0 1 +Requirement Levels", requirement R Re Req Requ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 1 ",,, 4 6 0 0 0 0 1 +DOI 10.17487/RFC2119, doi D DO DOI DOI BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 1 0 0 0 0 0 0 8 1 ./,, 4 5 0 0 0 0 1 +<https://www.rfc-editor.org/info/rfc2119>. <https://www.rfc-editor.org/info/rfc2119>. <https://www.rfc-editor.org/info/rfc2119>. < <h <ht <htt BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 1 0 0 1 8 1 ://.-.//. 9 6 0 0 0 0 1 +[RFC4086] Eastlake [rfc4086] [ [R [RF [RFC BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 2 [],.,,.,., 10 9 0 0 0 0 1 +"Randomness Requirements "randomness " "R "Ra "Ran BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 2 "",,, 5 10 0 0 0 0 1 +DOI 10.17487/RFC4086, doi D DO DOI DOI BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 1 0 0 0 0 0 0 8 2 ./,, 4 5 0 0 0 0 1 +<https://www.rfc-editor.org/info/rfc4086>. <https://www.rfc-editor.org/info/rfc4086>. <https://www.rfc-editor.org/info/rfc4086>. < <h <ht <htt BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 1 8 2 ://.-.//. 9 7 0 0 0 0 1 +[RFC4648] Josefsson, [rfc4648] [ [R [RF [RFC BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 4 [],.,",, 8 10 0 0 0 0 1 +Encodings", RFC encodings", E En Enc Enco BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 8 4 ",,./,, 7 9 0 0 0 0 1 +<https://www.rfc-editor.org/info/rfc4648>. <https://www.rfc-editor.org/info/rfc4648>. <https://www.rfc-editor.org/info/rfc4648>. < <h <ht <htt BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 1 8 4 ://.-.//. 9 6 0 0 0 0 1 +[RFC5234] Crocker, [rfc5234] [ [R [RF [RFC BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 5 [],.,..," 9 10 0 0 0 0 1 +Specifications: ABNF", specifications: S Sp Spe Spec BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 5 :",,, 5 5 0 0 0 0 1 +DOI 10.17487/RFC5234, doi D DO DOI DOI BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 1 0 0 0 0 0 0 8 5 ./,, 4 5 0 0 0 0 1 +<https://www.rfc-editor.org/info/rfc5234>. <https://www.rfc-editor.org/info/rfc5234>. <https://www.rfc-editor.org/info/rfc5234>. < <h <ht <htt BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 1 8 5 ://.-.//. 9 6 0 0 0 0 1 +[RFC6347] Rescorla, [rfc6347] [ [R [RF [RFC BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 6 [],..," 7 10 0 0 0 0 1 +Security Version security S Se Sec Secu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 8 6 .",,./, 7 8 0 0 0 0 1 +January 2012, january J Ja Jan Janu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 0 0 0 1 0 0 8 6 ,://.-.//. 10 8 0 0 0 0 1 +[RFC7049] Bormann, [rfc7049] [ [R [RF [RFC BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 7 [],..," 7 10 0 0 0 0 1 +Representation (CBOR)", representation R Re Rep Repr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 7 ()",,./, 8 9 0 0 0 0 1 +October 2013, october O Oc Oct Octo BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 8 7 ,://.-.//. 10 9 0 0 0 0 1 +[RFC7230] Fielding, [rfc7230] [ [R [RF [RFC BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 8 [],.,..,.," 11 10 0 0 0 0 1 +Protocol (HTTP/1.1): protocol P Pr Pro Prot BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 8 (/.):", 7 7 0 0 0 0 1 +RFC 7230, rfc R RF RFC RFC BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 8 ,./,, 5 6 0 0 0 0 1 +<https://www.rfc-editor.org/info/rfc7230>. <https://www.rfc-editor.org/info/rfc7230>. <https://www.rfc-editor.org/info/rfc7230>. < <h <ht <htt BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 1 8 8 ://.-.//. 9 6 0 0 0 0 1 +[RFC7231] Fielding, [rfc7231] [ [R [RF [RFC BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 10 [],.,..,.," 11 10 0 0 0 0 1 +Protocol (HTTP/1.1): protocol P Pr Pro Prot BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 10 (/.):",, 8 7 0 0 0 0 1 +DOI 10.17487/RFC7231, doi D DO DOI DOI BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 1 0 0 0 0 0 0 8 10 ./,, 4 4 0 0 0 0 1 +<https://www.rfc-editor.org/info/rfc7231>. <https://www.rfc-editor.org/info/rfc7231>. <https://www.rfc-editor.org/info/rfc7231>. < <h <ht <htt BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 1 8 10 ://.-.//. 9 6 0 0 0 0 1 +Selander, et selander, S Se Sel Sela BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 8 11 ,. 2 10 0 0 1 0 0 +Standards Track standards S St Sta Stan BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 8 11 no 0 9 0 0 0 0 0 +[Page 60] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 11 [] 2 5 0 0 0 0 0 +RFC 8613 rfc R RF RFC RFC BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 0 no 0 10 0 0 0 0 1 +OSCORE OSCORE oscore O OS OSC OSCO BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 0 no 0 7 0 0 0 0 1 +July 2019 july J Ju Jul July BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 8 0 no 0 10 0 0 0 0 1 +[RFC7252] Shelby, [rfc7252] [ [R [RF [RFC BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 0 [],.,,.,.," 11 10 0 0 0 0 1 +Application Protocol application A Ap App Appl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 0 ()",, 5 5 0 0 0 0 1 +DOI 10.17487/RFC7252, doi D DO DOI DOI BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 1 0 0 0 0 0 0 8 0 ./,, 4 4 0 0 0 0 1 +<https://www.rfc-editor.org/info/rfc7252>. <https://www.rfc-editor.org/info/rfc7252>. <https://www.rfc-editor.org/info/rfc7252>. < <h <ht <htt BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 1 8 0 ://.-.//. 9 6 0 0 0 0 1 +[RFC7641] Hartke, [rfc7641] [ [R [RF [RFC BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 1 [],.," 6 10 0 0 0 0 1 +Application Protocol application A Ap App Appl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 1 ()",, 5 6 0 0 0 0 1 +DOI 10.17487/RFC7641, doi D DO DOI DOI BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 1 0 0 0 0 0 0 8 1 ./,, 4 6 0 0 0 0 1 +<https://www.rfc-editor.org/info/rfc7641>. <https://www.rfc-editor.org/info/rfc7641>. <https://www.rfc-editor.org/info/rfc7641>. < <h <ht <htt BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 1 8 1 ://.-.//. 9 6 0 0 0 0 1 +[RFC7959] Bormann, [rfc7959] [ [R [RF [RFC BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 2 [],..,.,"- 10 10 0 0 0 0 1 +the Constrained the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 2 ()",, 5 8 0 0 0 0 1 +DOI 10.17487/RFC7959, doi D DO DOI DOI BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 1 0 0 0 0 0 0 8 2 ./,, 4 5 0 0 0 0 1 +<https://www.rfc-editor.org/info/rfc7959>. <https://www.rfc-editor.org/info/rfc7959>. <https://www.rfc-editor.org/info/rfc7959>. < <h <ht <htt BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 1 8 2 ://.-.//. 9 6 0 0 0 0 1 +[RFC8075] Castellani, [rfc8075] [ [R [RF [RFC BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 3 [],.,,.,,.,,., 14 10 0 0 0 0 1 +E. Dijk, e. E E. E. E. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 3 .,": 4 8 0 0 0 0 1 +the Constrained the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 3 ()",, 5 8 0 0 0 0 1 +DOI 10.17487/RFC8075, doi D DO DOI DOI BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 1 0 0 0 0 0 0 8 3 ./,, 4 5 0 0 0 0 1 +<https://www.rfc-editor.org/info/rfc8075>. <https://www.rfc-editor.org/info/rfc8075>. <https://www.rfc-editor.org/info/rfc8075>. < <h <ht <htt BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 1 8 3 ://.-.//. 9 6 0 0 0 0 1 +[RFC8132] van [rfc8132] [ [R [RF [RFC BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 4 [],.,,.,.," 11 10 0 0 0 0 1 +FETCH Methods fetch F FE FET FETC BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 8 4 no 0 8 0 0 0 0 1 +(CoAP)", RFC (coap)", ( (C (Co (CoA BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 4 ()",,./,, 9 7 0 0 0 0 1 +<https://www.rfc-editor.org/info/rfc8132>. <https://www.rfc-editor.org/info/rfc8132>. <https://www.rfc-editor.org/info/rfc8132>. < <h <ht <htt BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 1 8 4 ://.-.//. 9 6 0 0 0 0 1 +[RFC8152] Schaad, [rfc8152] [ [R [RF [RFC BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 6 [],.,"()", 10 10 0 0 0 0 1 +RFC 8152, rfc R RF RFC RFC BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 6 ,./,, 5 6 0 0 0 0 1 +<https://www.rfc-editor.org/info/rfc8152>. <https://www.rfc-editor.org/info/rfc8152>. <https://www.rfc-editor.org/info/rfc8152>. < <h <ht <htt BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 1 8 6 ://.-.//. 9 6 0 0 0 0 1 +[RFC8174] Leiba, [rfc8174] [ [R [RF [RFC BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 7 [],.," 6 10 0 0 0 0 1 +2119 Key 2119 2 21 211 2119 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 0 0 0 0 1 0 0 0 8 7 ",,,./, 7 8 0 0 0 0 1 +May 2017, may M Ma May May BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 8 7 ,://.-.//. 10 8 0 0 0 0 1 +[RFC8288] Nottingham, [rfc8288] [ [R [RF [RFC BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 8 [],.,"",, 9 10 0 0 0 0 1 +DOI 10.17487/RFC8288, doi D DO DOI DOI BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 1 0 0 0 0 0 0 8 8 ./,, 4 7 0 0 0 0 1 +<https://www.rfc-editor.org/info/rfc8288>. <https://www.rfc-editor.org/info/rfc8288>. <https://www.rfc-editor.org/info/rfc8288>. < <h <ht <htt BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 1 8 8 ://.-.//. 9 8 0 0 0 0 1 +[RFC8323] Bormann, [rfc8323] [ [R [RF [RFC BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 9 [],.,,.,,.,,., 14 10 0 0 0 0 1 +Silverajan, B., silverajan, S Si Sil Silv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 8 9 ,.,.,.,"( 9 8 0 0 0 0 1 +Application Protocol) application A Ap App Appl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 9 ),,", 5 8 0 0 0 0 1 +RFC 8323, rfc R RF RFC RFC BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 9 ,./,, 5 7 0 0 0 0 1 +<https://www.rfc-editor.org/info/rfc8323>. <https://www.rfc-editor.org/info/rfc8323>. <https://www.rfc-editor.org/info/rfc8323>. < <h <ht <htt BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 1 8 9 ://.-.//. 9 6 0 0 0 0 1 +[RFC8446] Rescorla, [rfc8446] [ [R [RF [RFC BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 10 [],.,"() 8 10 0 0 0 0 1 +Version 1.3", version V Ve Ver Vers BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 10 .",,./,, 8 8 0 0 0 0 1 +<https://www.rfc-editor.org/info/rfc8446>. <https://www.rfc-editor.org/info/rfc8446>. <https://www.rfc-editor.org/info/rfc8446>. < <h <ht <htt BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 1 8 10 ://.-.//. 9 6 0 0 0 0 1 +Selander, et selander, S Se Sel Sela BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 8 11 ,. 2 10 0 0 1 0 0 +Standards Track standards S St Sta Stan BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 8 11 no 0 9 0 0 0 0 0 +[Page 61] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 11 [] 2 5 0 0 0 0 0 +RFC 8613 rfc R RF RFC RFC BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 0 no 0 10 0 0 0 0 1 +OSCORE OSCORE oscore O OS OSC OSCO BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 0 no 0 7 0 0 0 0 1 +July 2019 july J Ju Jul July BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 8 0 no 0 10 0 0 0 0 1 +[RFC8610] Birkholz, [rfc8610] [ [R [RF [RFC BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 0 [],.,,.,.," 11 10 0 0 0 0 1 +Definition Language definition D De Def Defi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 0 (): 3 8 0 0 0 0 1 +Express Concise express E Ex Exp Expr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 0 () 2 8 0 0 0 0 1 +JSON Data json J JS JSO JSON BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 0 ",,./, 6 8 0 0 0 0 1 +June 2019, june J Ju Jun June BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 0 0 0 1 0 0 8 0 ,://.-.//. 10 8 0 0 0 0 1 +14.2. Informative 14.2. 1 14 14. 14.2 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 2 .. 2 10 0 0 0 0 1 +[ACE-OAuth] [ACE-OAuth] [ace-oauth] [ [A [AC [ACE BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 2 [-] 3 2 0 0 0 0 1 +Seitz, L., seitz, S Se Sei Seit BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 8 2 ,.,,.,,.,,., 12 10 0 0 0 0 1 +H. Tschofenig, h. H H. H. H. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 2 .," 3 9 0 0 0 0 1 +Constrained Environments constrained C Co Con Cons BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 2 (). 3 8 0 0 0 0 1 +Framework (ACE-OAuth)", framework F Fr Fra Fram BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 2 (-)",,--- 9 9 0 0 0 0 1 +oauth-authz-24, March oauth-authz-24, o oa oau oaut BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 2 --,. 4 4 0 0 0 0 1 +[CoAP-802.15.4] [CoAP-802.15.4] [coap-802.15.4] [ [C [Co [CoA BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 4 [-..] 5 2 0 0 0 0 1 +Bormann, C., bormann, B Bo Bor Borm BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 8 4 ,.,"() 6 10 0 0 0 0 1 +IEEE 802.15.4 ieee I IE IEE IEEE BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 4 ..", 4 8 0 0 0 0 1 +Progress, draft-bormann-6lo-coap-802-15-ie-00, progress, P Pr Pro Prog BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 4 ,-------,. 10 10 0 0 0 0 1 +[CoAP-Actuators] [CoAP-Actuators] [coap-actuators] [ [C [Co [CoA BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 5 [-] 3 2 0 0 0 0 1 +Mattsson, J., mattsson, M Ma Mat Matt BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 8 5 ,.,,.,,.,,., 12 9 0 0 0 0 1 +and C. and a an and and BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 5 .,"", 5 10 0 0 0 0 1 +Progress, draft-mattsson-core-coap-actuators-06, progress, P Pr Pro Prog BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 5 ,-----, 7 10 0 0 0 0 1 +2018. 2018. 2018. 2 20 201 2018 BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 1 0 0 0 8 5 . 1 1 0 0 0 0 1 +[CoAP-E2E-Sec] [CoAP-E2E-Sec] [coap-e2e-sec] [ [C [Co [CoA BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 6 [--] 4 2 0 0 0 0 1 +Selander, G., selander, S Se Sel Sela BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 8 6 ,.,,.,.," 9 10 0 0 0 0 1 +for CoAP for f fo for for BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 6 --",,- 6 9 0 0 0 0 1 +hartke-core-e2e-security-reqs-03, July hartke-core-e2e-security-reqs-03, h ha har hart BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 6 -----,. 7 7 0 0 0 0 1 +[CoAP-ECHO-REQ-TAG] [CoAP-ECHO-REQ-TAG] [coap-echo-req-tag] [ [C [Co [CoA BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 7 [---] 5 3 0 0 0 0 1 +Amsuess, C., amsuess, A Am Ams Amsu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 8 7 ,.,,.,.,":, 11 10 0 0 0 0 1 +Request-Tag, and request-tag, R Re Req Requ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 7 -,",, 5 9 0 0 0 0 1 +draft-ietf-core-echo-request-tag-04, March draft-ietf-core-echo-request-tag-04, d dr dra draf BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 7 ------,. 8 8 0 0 0 0 1 +[Group-OSCORE] [Group-OSCORE] [group-oscore] [ [G [Gr [Gro BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 9 [-] 3 2 0 0 0 0 1 +Tiloca, M., tiloca, T Ti Til Tilo BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 8 9 ,.,,.,,.,., 11 9 0 0 0 0 1 +"Group OSCORE "group " "G "Gr "Gro BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 9 "-", 4 10 0 0 0 0 1 +in Progress, in i in in in BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 8 9 ,-----, 7 9 0 0 0 0 1 +2019. 2019. 2019. 2 20 201 2019 BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 1 0 0 0 8 9 . 1 1 0 0 0 0 1 +[IV-GEN] [IV-GEN] [iv-gen] [ [I [IV [IV- BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 10 [-] 3 1 0 0 0 0 1 +McGrew, D., mcgrew, M Mc McG McGr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 8 10 ,.," 4 9 0 0 0 0 1 +Vectors (IVs) vectors V Ve Vec Vect BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 10 ()",,-- 7 10 0 0 0 0 1 +iv-gen-03, October iv-gen-03, i iv iv- iv-g BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 10 --,. 4 4 0 0 0 0 1 +Selander, et selander, S Se Sel Sela BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 8 11 ,. 2 10 0 0 1 0 0 +Standards Track standards S St Sta Stan BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 8 11 no 0 9 0 0 0 0 0 +[Page 62] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 11 [] 2 5 0 0 0 0 0 +RFC 8613 rfc R RF RFC RFC BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 0 no 0 10 0 0 0 0 1 +OSCORE OSCORE oscore O OS OSC OSCO BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 0 no 0 7 0 0 0 0 1 +July 2019 july J Ju Jul July BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 8 0 no 0 10 0 0 0 0 1 +[MF00] [MF00] [mf00] [ [M [MF [MF0 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 0 [] 2 1 0 0 0 0 1 +McGrew, D. mcgrew, M Mc McG McGr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 8 0 ,..," 5 10 0 0 0 0 1 +of Redundant of o of of of BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 0 no 0 8 0 0 0 0 1 +Security", Proceedings security", S Se Sec Secu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 8 0 ", 2 9 0 0 0 0 1 +Selected Areas selected S Se Sel Sele BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 0 ()- 3 8 0 0 0 0 1 +Verlag., pp. verlag., V Ve Ver Verl BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 8 0 .,.-,. 6 4 0 0 0 0 1 +[OSCORE-PROFILE] [OSCORE-PROFILE] [oscore-profile] [ [O [OS [OSC BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 1 [-] 3 2 0 0 0 0 1 +Palombini, F., palombini, P Pa Pal Palo BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 8 1 ,.,,.,,.,., 11 10 0 0 0 0 1 +"OSCORE profile "oscore " "O "OS "OSC BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 1 " 1 9 0 0 0 0 1 +for Constrained for f fo for for BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 1 ", 2 8 0 0 0 0 1 +Progress, draft-ietf-ace-oscore-profile-07, progress, P Pr Pro Prog BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 1 ,-----,. 8 10 0 0 0 0 1 +[REST] [REST] [rest] [ [R [RE [RES BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 2 [] 2 1 0 0 0 0 1 +Fielding, R., fielding, F Fi Fie Fiel BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 8 2 ,.," 4 10 0 0 0 0 1 +Network-based Software network-based N Ne Net Netw BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 2 -",.. 5 8 0 0 0 0 1 +Dissertation, University dissertation, D Di Dis Diss BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 8 2 ,,,. 4 10 0 0 0 0 1 +[RFC3552] Rescorla, [rfc3552] [ [R [RF [RFC BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 3 [],..," 7 10 0 0 0 0 1 +Text on text T Te Tex Text BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 3 ",,, 4 7 0 0 0 0 1 +DOI 10.17487/RFC3552, doi D DO DOI DOI BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 1 0 0 0 0 0 0 8 3 ./,, 4 5 0 0 0 0 1 +<https://www.rfc-editor.org/info/rfc3552>. <https://www.rfc-editor.org/info/rfc3552>. <https://www.rfc-editor.org/info/rfc3552>. < <h <ht <htt BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 1 8 3 ://.-.//. 9 6 0 0 0 0 1 +[RFC3986] Berners-Lee, [rfc3986] [ [R [RF [RFC BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 4 []-,.,,.,.," 12 10 0 0 0 0 1 +Resource Identifier resource R Re Res Reso BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 4 ():",, 6 7 0 0 0 0 1 +RFC 3986, rfc R RF RFC RFC BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 4 ,./,, 5 6 0 0 0 0 1 +<https://www.rfc-editor.org/info/rfc3986>. <https://www.rfc-editor.org/info/rfc3986>. <https://www.rfc-editor.org/info/rfc3986>. < <h <ht <htt BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 1 8 4 ://.-.//. 9 6 0 0 0 0 1 +[RFC5116] McGrew, [rfc5116] [ [R [RF [RFC BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 6 [],.," 6 10 0 0 0 0 1 +Encryption", RFC encryption", E En Enc Encr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 8 6 ",,./,, 7 8 0 0 0 0 1 +<https://www.rfc-editor.org/info/rfc5116>. <https://www.rfc-editor.org/info/rfc5116>. <https://www.rfc-editor.org/info/rfc5116>. < <h <ht <htt BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 1 8 6 ://.-.//. 9 6 0 0 0 0 1 +[RFC5869] Krawczyk, [rfc5869] [ [R [RF [RFC BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 7 [],..,"--- 10 10 0 0 0 0 1 +Key Derivation key K Ke Key Key BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 8 7 ()",, 5 6 0 0 0 0 1 +DOI 10.17487/RFC5869, doi D DO DOI DOI BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 1 0 0 0 0 0 0 8 7 ./,, 4 4 0 0 0 0 1 +<https://www.rfc-editor.org/info/rfc5869>. <https://www.rfc-editor.org/info/rfc5869>. <https://www.rfc-editor.org/info/rfc5869>. < <h <ht <htt BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 1 8 7 ://.-.//. 9 6 0 0 0 0 1 +[RFC6690] Shelby, [rfc6690] [ [R [RF [RFC BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 8 [],.,"() 8 10 0 0 0 0 1 +Format", RFC format", F Fo For Form BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 8 8 ",,./,, 7 7 0 0 0 0 1 +<https://www.rfc-editor.org/info/rfc6690>. <https://www.rfc-editor.org/info/rfc6690>. <https://www.rfc-editor.org/info/rfc6690>. < <h <ht <htt BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 1 8 8 ://.-.//. 9 6 0 0 0 0 1 +[RFC7228] Bormann, [rfc7228] [ [R [RF [RFC BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 9 [],.,,.,.," 11 10 0 0 0 0 1 +Constrained-Node Networks", constrained-node C Co Con Cons BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 9 -",, 4 5 0 0 0 0 1 +DOI 10.17487/RFC7228, doi D DO DOI DOI BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 1 0 0 0 0 0 0 8 9 ./,, 4 4 0 0 0 0 1 +<https://www.rfc-editor.org/info/rfc7228>. <https://www.rfc-editor.org/info/rfc7228>. <https://www.rfc-editor.org/info/rfc7228>. < <h <ht <htt BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 1 8 9 ://.-.//. 9 6 0 0 0 0 1 +[RFC7515] Jones, [rfc7515] [ [R [RF [RFC BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 10 [],.,,.,.," 11 10 0 0 0 0 1 +Signature (JWS)", signature S Si Sig Sign BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 10 ()",,./, 8 8 0 0 0 0 1 +2015, <https://www.rfc-editor.org/info/rfc7515>. 2015, 2 20 201 2015 BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 1 0 0 0 8 10 ,://.-.//. 10 8 0 0 0 0 1 +Selander, et selander, S Se Sel Sela BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 8 11 ,. 2 10 0 0 1 0 0 +Standards Track standards S St Sta Stan BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 8 11 no 0 9 0 0 0 0 0 +[Page 63] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 11 [] 2 5 0 0 0 0 0 +RFC 8613 rfc R RF RFC RFC BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 0 no 0 10 0 0 0 0 1 +OSCORE OSCORE oscore O OS OSC OSCO BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 0 no 0 7 0 0 0 0 1 +July 2019 july J Ju Jul July BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 8 0 no 0 10 0 0 0 0 1 +[RFC7967] Bhattacharyya, [rfc7967] [ [R [RF [RFC BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 0 [],.,,.,,.,. 12 10 0 0 0 0 1 +Bose, "Constrained bose, B Bo Bos Bose BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 8 0 ,"() 4 9 0 0 0 0 1 +No Server no N No No No BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 0 ",,./, 6 8 0 0 0 0 1 +August 2016, august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 8 0 ,://.-.//. 10 8 0 0 0 0 1 +[RFC8126] Cotton, [rfc8126] [ [R [RF [RFC BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 5 [],.,,.,.," 11 10 0 0 0 0 1 +Writing an writing W Wr Wri Writ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 5 ",, 3 8 0 0 0 0 1 +RFC 8126, rfc R RF RFC RFC BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 5 ,./,, 5 6 0 0 0 0 1 +<https://www.rfc-editor.org/info/rfc8126>. <https://www.rfc-editor.org/info/rfc8126>. <https://www.rfc-editor.org/info/rfc8126>. < <h <ht <htt BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 1 8 5 ://.-.//. 9 6 0 0 0 0 1 +Selander, et selander, S Se Sel Sela BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 8 10 ,. 2 10 0 0 1 0 0 +Standards Track standards S St Sta Stan BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 8 10 no 0 9 0 0 0 0 0 +[Page 64] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 10 [] 2 5 0 0 0 0 0 +RFC 8613 rfc R RF RFC RFC BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 0 no 0 10 0 0 0 0 1 +OSCORE OSCORE oscore O OS OSC OSCO BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 0 no 0 7 0 0 0 0 1 +July 2019 july J Ju Jul July BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 8 0 no 0 10 0 0 0 0 1 +Appendix A. appendix A Ap App Appe BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 0 . 1 10 0 0 0 0 1 +This section this T Th Thi This BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 0 , 1 8 0 0 0 0 1 +Section 2.2.1.1 section S Se Sec Sect BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 0 ...[--]., 9 9 0 0 0 0 1 +based on based b ba bas base BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 0 no 0 9 0 0 0 0 1 +between client between b be bet betw BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 0 ., 2 9 0 0 0 0 1 +indicate the indicate i in ind indi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 0 no 0 10 0 0 0 0 1 +(compressed) COSE (compressed) ( (c (co (com BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 0 (). 3 4 0 0 0 0 1 +A.1. Secure a.1. A A. A.1 A.1. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 2 .. 2 10 0 0 0 0 1 +This example this T Th Thi This BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 2 no 0 10 0 0 0 0 1 +server. server. server. s se ser serv BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 2 . 1 1 0 0 0 0 1 +Client Proxy client C Cl Cli Clie BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 3 no 0 6 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 3 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 3 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 3 no 0 0 0 0 0 0 1 ++------>| +------>| +------>| + +- +-- +--- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 3 ------ 6 3 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 3 no 0 0 0 0 0 0 1 +Code: 0.02 code: C Co Cod Code BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 3 :.() 4 5 0 0 0 0 1 +| POST | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 3 no 0 2 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 3 no 0 0 0 0 0 0 1 +Token: 0x8c token: T To Tok Toke BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 3 : 1 3 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 3 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 3 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 3 no 0 0 0 0 0 0 1 +OSCORE: [kid:5f, oscore: O OS OSC OSCO BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 3 :[:,:] 6 10 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 3 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 3 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 3 no 0 0 0 0 0 0 1 +Payload: {Code:0.01, payload: P Pa Pay Payl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 8 3 ::., 4 6 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 3 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 3 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 3 no 0 0 0 0 0 0 1 +Uri-Path:"alarm_status"} Uri-Path:"alarm_status"} uri-path:"alarm_status"} U Ur Uri Uri- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 8 3 -:"" 4 7 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 3 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 3 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 3 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 3 no 0 0 0 0 0 0 1 ++------>| +------>| +------>| + +- +-- +--- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 3 ------ 6 3 0 0 0 0 1 +Code: 0.02 code: C Co Cod Code BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 3 :.() 4 5 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 3 no 0 0 0 0 0 0 1 +| POST | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 3 no 0 2 0 0 0 0 1 +Token: 0x7b token: T To Tok Toke BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 3 : 1 3 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 3 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 3 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 3 no 0 0 0 0 0 0 1 +OSCORE: [kid:5f, oscore: O OS OSC OSCO BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 3 :[:,:] 6 10 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 3 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 3 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 3 no 0 0 0 0 0 0 1 +Payload: {Code:0.01, payload: P Pa Pay Payl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 8 3 ::., 4 6 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 3 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 3 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 3 no 0 0 0 0 0 0 1 +Uri-Path:"alarm_status"} Uri-Path:"alarm_status"} uri-path:"alarm_status"} U Ur Uri Uri- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 8 3 -:"" 4 7 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 3 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 3 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 3 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 3 no 0 0 0 0 0 0 1 +|<------+ |<------+ |<------+ | |< |<- |<-- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 3 ------ 6 3 0 0 0 0 1 +Code: 2.04 code: C Co Cod Code BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 3 :.() 4 6 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 3 no 0 0 0 0 0 0 1 +| 2.04 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 3 . 1 2 0 0 0 0 1 +Token: 0x7b token: T To Tok Toke BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 3 : 1 3 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 3 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 3 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 3 no 0 0 0 0 0 0 1 +OSCORE: - oscore: O OS OSC OSCO BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 3 :- 2 2 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 3 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 3 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 3 no 0 0 0 0 0 0 1 +Payload: {Code:2.05, payload: P Pa Pay Payl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 8 3 ::.,"" 6 8 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 3 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 3 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 3 no 0 0 0 0 0 0 1 +|<------+ |<------+ |<------+ | |< |<- |<-- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 3 ------ 6 3 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 3 no 0 0 0 0 0 0 1 +Code: 2.04 code: C Co Cod Code BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 3 :.() 4 6 0 0 0 0 1 +| 2.04 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 3 . 1 2 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 3 no 0 0 0 0 0 0 1 +Token: 0x8c token: T To Tok Toke BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 3 : 1 3 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 3 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 3 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 3 no 0 0 0 0 0 0 1 +OSCORE: - oscore: O OS OSC OSCO BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 3 :- 2 2 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 3 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 3 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 3 no 0 0 0 0 0 0 1 +Payload: {Code:2.05, payload: P Pa Pay Payl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 8 3 ::.,"" 6 8 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 3 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 3 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 3 no 0 0 0 0 0 0 1 +Square brackets square S Sq Squ Squa BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 9 [...]. 6 10 0 0 0 0 1 +Curly brackets curly C Cu Cur Curl BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 9 .... 4 7 0 0 0 0 1 +Figure 12: figure F Fi Fig Figu BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 10 : 1 10 0 0 0 0 1 +The CoAP the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 10 / 1 9 0 0 0 0 1 +dummy Codes dummy d du dum dumm BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 10 (/) 3 9 0 0 0 0 1 +message. The message. m me mes mess BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 10 .-("")("") 10 10 0 0 0 0 1 +encrypted. encrypted. encrypted. e en enc encr BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 10 . 1 1 0 0 0 0 1 +Selander, et selander, S Se Sel Sela BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 8 11 ,. 2 10 0 0 1 0 0 +Standards Track standards S St Sta Stan BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 8 11 no 0 9 0 0 0 0 0 +[Page 65] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 11 [] 2 5 0 0 0 0 0 +RFC 8613 rfc R RF RFC RFC BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 0 no 0 10 0 0 0 0 1 +OSCORE OSCORE oscore O OS OSC OSCO BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 0 no 0 7 0 0 0 0 1 +July 2019 july J Ju Jul July BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 8 0 no 0 10 0 0 0 0 1 +The COSE the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 0 (), 3 8 0 0 0 0 1 +indicating which indicating i in ind indi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 0 no 0 10 0 0 0 0 1 +a Partial a a a a a BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 1 0 0 0 0 0 8 0 (). 3 2 0 0 0 0 1 +The server the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 1 .. 2 10 0 0 0 0 1 +client verifies client c cl cli clie BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 1 .. 2 8 0 0 0 0 1 +A.2. Secure a.2. A A. A.2 A.2. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 1 .. 2 10 0 0 0 0 1 +This example this T Th Thi This BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 2 no 0 10 0 0 0 0 1 +sugar measurement sugar s su sug suga BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 2 (/), 4 10 0 0 0 0 1 +220 mg/dl 220 2 22 220 220 BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 0 0 0 0 0 0 0 0 8 2 //. 3 6 0 0 0 0 1 +Client Proxy client C Cl Cli Clie BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 3 no 0 6 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 3 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 3 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 3 no 0 0 0 0 0 0 1 ++------>| +------>| +------>| + +- +-- +--- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 3 ------ 6 3 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 3 no 0 0 0 0 0 0 1 +Code: 0.05 code: C Co Cod Code BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 3 :.() 4 5 0 0 0 0 1 +| FETCH | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 3 no 0 3 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 3 no 0 0 0 0 0 0 1 +Token: 0x83 token: T To Tok Toke BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 3 : 1 3 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 3 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 3 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 3 no 0 0 0 0 0 0 1 +Observe: 0 observe: O Ob Obs Obse BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 3 : 1 3 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 3 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 3 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 3 no 0 0 0 0 0 0 1 +OSCORE: [kid:ca, oscore: O OS OSC OSCO BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 3 :[:,:] 6 10 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 3 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 3 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 3 no 0 0 0 0 0 0 1 +Payload: {Code:0.01, payload: P Pa Pay Payl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 8 3 ::., 4 6 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 3 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 3 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 3 no 0 0 0 0 0 0 1 +Observe:0, Observe:0, observe:0, O Ob Obs Obse BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 3 :, 2 3 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 3 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 3 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 3 no 0 0 0 0 0 0 1 +Uri-Path:"glucose"} Uri-Path:"glucose"} uri-path:"glucose"} U Ur Uri Uri- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 8 3 -:"" 4 6 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 3 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 3 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 3 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 3 no 0 0 0 0 0 0 1 ++------>| +------>| +------>| + +- +-- +--- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 3 ------ 6 3 0 0 0 0 1 +Code: 0.05 code: C Co Cod Code BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 3 :.() 4 5 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 3 no 0 0 0 0 0 0 1 +| FETCH | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 3 no 0 3 0 0 0 0 1 +Token: 0xbe token: T To Tok Toke BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 3 : 1 3 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 3 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 3 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 3 no 0 0 0 0 0 0 1 +Observe: 0 observe: O Ob Obs Obse BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 3 : 1 3 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 3 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 3 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 3 no 0 0 0 0 0 0 1 +OSCORE: [kid:ca, oscore: O OS OSC OSCO BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 3 :[:,:] 6 10 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 3 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 3 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 3 no 0 0 0 0 0 0 1 +Payload: {Code:0.01, payload: P Pa Pay Payl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 8 3 ::., 4 6 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 3 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 3 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 3 no 0 0 0 0 0 0 1 +Observe:0, Observe:0, observe:0, O Ob Obs Obse BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 3 :, 2 3 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 3 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 3 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 3 no 0 0 0 0 0 0 1 +Uri-Path:"glucose"} Uri-Path:"glucose"} uri-path:"glucose"} U Ur Uri Uri- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 8 3 -:"" 4 6 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 3 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 3 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 3 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 3 no 0 0 0 0 0 0 1 +|<------+ |<------+ |<------+ | |< |<- |<-- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 3 ------ 6 3 0 0 0 0 1 +Code: 2.05 code: C Co Cod Code BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 3 :.() 4 6 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 3 no 0 0 0 0 0 0 1 +| 2.05 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 3 . 1 2 0 0 0 0 1 +Token: 0xbe token: T To Tok Toke BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 3 : 1 3 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 3 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 3 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 3 no 0 0 0 0 0 0 1 +Observe: 7 observe: O Ob Obs Obse BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 3 : 1 3 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 3 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 3 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 3 no 0 0 0 0 0 0 1 +OSCORE: - oscore: O OS OSC OSCO BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 3 :- 2 2 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 3 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 3 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 3 no 0 0 0 0 0 0 1 +Payload: {Code:2.05, payload: P Pa Pay Payl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 8 3 ::., 4 6 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 3 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 3 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 3 no 0 0 0 0 0 0 1 +Observe:-, Observe:-, observe:-, O Ob Obs Obse BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 8 3 :-, 3 3 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 3 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 3 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 3 no 0 0 0 0 0 0 1 +Content-Format:0, "220"} content-format:0, C Co Con Cont BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 3 -:,"" 5 7 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 3 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 3 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 3 no 0 0 0 0 0 0 1 +|<------+ |<------+ |<------+ | |< |<- |<-- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 3 ------ 6 3 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 3 no 0 0 0 0 0 0 1 +Code: 2.05 code: C Co Cod Code BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 3 :.() 4 6 0 0 0 0 1 +| 2.05 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 3 . 1 2 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 3 no 0 0 0 0 0 0 1 +Token: 0x83 token: T To Tok Toke BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 3 : 1 3 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 3 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 3 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 3 no 0 0 0 0 0 0 1 +Observe: 7 observe: O Ob Obs Obse BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 3 : 1 3 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 3 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 3 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 3 no 0 0 0 0 0 0 1 +OSCORE: - oscore: O OS OSC OSCO BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 3 :- 2 2 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 3 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 3 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 3 no 0 0 0 0 0 0 1 +Payload: {Code:2.05, payload: P Pa Pay Payl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 8 3 ::., 4 6 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 3 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 3 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 3 no 0 0 0 0 0 0 1 +Observe:-, Observe:-, observe:-, O Ob Obs Obse BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 8 3 :-, 3 3 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 3 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 3 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 3 no 0 0 0 0 0 0 1 +Content-Format:0, "220"} content-format:0, C Co Con Cont BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 3 -:,"" 5 7 0 0 0 0 1 +... ... ... . .. ... ... BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 3 ... 3 1 0 0 0 0 1 +... ... ... . .. ... ... BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 3 ... 3 1 0 0 0 0 1 +... ... ... . .. ... ... BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 3 ... 3 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 3 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 3 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 3 no 0 0 0 0 0 0 1 +Selander, et selander, S Se Sel Sela BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 8 11 ,. 2 10 0 0 1 0 0 +Standards Track standards S St Sta Stan BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 8 11 no 0 9 0 0 0 0 0 +[Page 66] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 11 [] 2 5 0 0 0 0 0 +RFC 8613 rfc R RF RFC RFC BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 0 no 0 10 0 0 0 0 1 +OSCORE OSCORE oscore O OS OSC OSCO BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 0 no 0 7 0 0 0 0 1 +July 2019 july J Ju Jul July BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 8 0 no 0 10 0 0 0 0 1 +| | | | | | | BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 0 0 0 0 0 1 +|<------+ |<------+ |<------+ | |< |<- |<-- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 0 ------ 6 4 0 0 0 0 1 +Code: 2.05 code: C Co Cod Code BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 0 :.() 4 8 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 0 0 0 0 0 1 +| 2.05 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 . 1 3 0 0 0 0 1 +Token: 0xbe token: T To Tok Toke BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 0 : 1 4 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 0 0 0 0 0 1 +Observe: 8 observe: O Ob Obs Obse BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 0 : 1 4 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 0 0 0 0 0 1 +OSCORE: [Partial oscore: O OS OSC OSCO BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 0 :[:] 4 9 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 0 0 0 0 0 1 +Payload: {Code:2.05, payload: P Pa Pay Payl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 8 0 ::., 4 8 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 0 0 0 0 0 1 +Observe:-, Observe:-, observe:-, O Ob Obs Obse BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 8 0 :-, 3 4 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 0 0 0 0 0 1 +Content-Format:0, "180"} content-format:0, C Co Con Cont BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 0 -:,"" 5 10 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 0 0 0 0 0 1 +|<------+ |<------+ |<------+ | |< |<- |<-- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 0 ------ 6 4 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 0 0 0 0 0 1 +Code: 2.05 code: C Co Cod Code BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 0 :.() 4 8 0 0 0 0 1 +| 2.05 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 . 1 3 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 0 0 0 0 0 1 +Token: 0x83 token: T To Tok Toke BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 0 : 1 4 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 0 0 0 0 0 1 +Observe: 8 observe: O Ob Obs Obse BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 0 : 1 4 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 0 0 0 0 0 1 +OSCORE: [Partial oscore: O OS OSC OSCO BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 0 :[:] 4 9 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 0 0 0 0 0 1 +Payload: {Code:2.05, payload: P Pa Pay Payl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 8 0 ::., 4 8 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 0 0 0 0 0 1 +Observe:-, Observe:-, observe:-, O Ob Obs Obse BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 8 0 :-, 3 4 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 0 0 0 0 0 1 +Content-Format:0, "180"} content-format:0, C Co Con Cont BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 0 -:,"" 5 10 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 0 0 0 0 0 1 +Square brackets square S Sq Squ Squa BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 5 [...] 5 10 0 0 0 0 1 +header. Curly header. h he hea head BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 5 ..... 5 8 0 0 0 0 1 +Figure 13: figure F Fi Fig Figu BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 6 : 1 10 0 0 0 0 1 +The dummy the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 6 (/) 3 9 0 0 0 0 1 +Observe messages. observe O Ob Obs Obse BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 6 .-() 4 10 0 0 0 0 1 +("220" and ("220" ( (" ("2 ("22 BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 6 (""""). 7 5 0 0 0 0 1 +The COSE the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 7 (), 3 8 0 0 0 0 1 +indicating the indicating i in ind indi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 7 no 0 9 0 0 0 0 1 +Partial IV partial P Pa Par Part BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 7 (). 3 10 0 0 0 0 1 +Partial IV partial P Pa Par Part BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 7 (). 3 9 0 0 0 0 1 +request. request. request. r re req requ BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 7 . 1 1 0 0 0 0 1 +The server the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 9 . 1 10 0 0 0 0 1 +The client the T Th The The BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 9 no 0 9 0 0 0 0 1 +that the that t th tha that BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 9 no 0 9 0 0 0 0 1 +received in received r re rec rece BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 9 , 1 8 0 0 0 0 1 +notification without notification n no not noti BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 9 ,. 2 9 0 0 0 0 1 +Selander, et selander, S Se Sel Sela BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 8 11 ,. 2 10 0 0 1 0 0 +Standards Track standards S St Sta Stan BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 8 11 no 0 9 0 0 0 0 0 +[Page 67] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 11 [] 2 5 0 0 0 0 0 +RFC 8613 rfc R RF RFC RFC BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 0 no 0 10 0 0 0 0 1 +OSCORE OSCORE oscore O OS OSC OSCO BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 0 no 0 7 0 0 0 0 1 +July 2019 july J Ju Jul July BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 8 0 no 0 10 0 0 0 0 1 +Appendix B. appendix A Ap App Appe BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 0 . 1 10 0 0 0 0 1 +For many for F Fo For For BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 0 (),- 4 9 0 0 0 0 1 +random Master random r ra ran rand BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 0 no 0 9 0 0 0 0 1 +with the with w wi wit with BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 0 . 1 9 0 0 0 0 1 +in this in i in in in BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 8 0 ., 2 9 0 0 0 0 1 +derived once derived d de der deri BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 0 ., 2 10 0 0 0 0 1 +contexts are contexts c co con cont BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 0 . 1 8 0 0 0 0 1 +B.1. Security b.1. B B. B.1 B.1. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 2 .. 2 10 0 0 0 0 1 +An application an A An An An BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 8 2 no 0 9 0 0 0 0 1 +handle the handle h ha han hand BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 2 ,.., 4 10 0 0 0 0 1 +reboot. reboot. reboot. r re reb rebo BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 2 . 1 1 0 0 0 0 1 +B.1.1. Sender b.1.1. B B. B.1 B.1. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 3 ... 3 10 0 0 0 0 1 +In order in I In In In BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 9 3 , 1 9 0 0 0 0 1 +implement procedures implement i im imp impl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 3 no 0 10 0 0 0 0 1 +operations and operations o op ope oper BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 9 3 , 1 9 0 0 0 0 1 +that the that t th tha that BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 3 no 0 9 0 0 0 0 1 +context parameters context c co con cont BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 3 (.). 4 9 0 0 0 0 1 +such a such s su suc such BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 3 . 1 2 0 0 0 0 1 +There are there T Th The Ther BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 5 . 1 9 0 0 0 0 1 +example, flash example, e ex exa exam BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 5 , 1 9 0 0 0 0 1 +during its during d du dur duri BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 5 ., 2 8 0 0 0 0 1 +nonvolatile memory nonvolatile n no non nonv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 5 ,.., 4 10 0 0 0 0 1 +caching, which caching, c ca cac cach BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 5 , 1 9 0 0 0 0 1 +being stored being b be bei bein BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 5 . 1 7 0 0 0 0 1 +However, many however, H Ho How Howe BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 7 , 1 9 0 0 0 0 1 +nonvolatile memory, nonvolatile n no non nonv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 7 , 1 10 0 0 0 0 1 +amount of amount a am amo amou BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 7 , 1 9 0 0 0 0 1 +randomness. randomness. randomness. r ra ran rand BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 7 . 1 1 0 0 0 0 1 +To prevent to T To To To BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 8 , 1 10 0 0 0 0 1 +the following the t th the the BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 8 : 1 7 0 0 0 0 1 +o Before o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 9 9 no 0 10 0 0 0 0 1 +K, where k, K K, K, K, BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 9 ,, 2 9 0 0 0 0 1 +(SSN1) in (ssn1) ( (S (SS (SSN BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 9 ()., 4 8 0 0 0 0 1 +initiates the initiates i in ini init BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 9 () 2 8 0 0 0 0 1 +stored in stored s st sto stor BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 9 :, 2 9 0 0 0 0 1 +where F where w wh whe wher BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 9 . 1 4 0 0 0 0 1 +Selander, et selander, S Se Sel Sela BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 9 11 ,. 2 10 0 0 1 0 0 +Standards Track standards S St Sta Stan BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 9 11 no 0 9 0 0 0 0 0 +[Page 68] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 11 [] 2 5 0 0 0 0 0 +RFC 8613 rfc R RF RFC RFC BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 0 no 0 10 0 0 0 0 1 +OSCORE OSCORE oscore O OS OSC OSCO BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 0 no 0 7 0 0 0 0 1 +July 2019 july J Ju Jul July BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 9 0 no 0 10 0 0 0 0 1 +* Writing * * * * * BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 0 *; 2 10 0 0 0 0 1 +a trade-off a a a a a BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 1 0 0 0 0 0 9 0 - 1 8 0 0 0 0 1 +efficient use efficient e ef eff effi BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 0 . 1 6 0 0 0 0 1 +* Writing * * * * * BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 1 *, 2 9 0 0 0 0 1 +failure; F failure; f fa fai fail BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 1 ; 1 10 0 0 0 0 1 +used before used u us use used BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 1 . 1 7 0 0 0 0 1 +If F if I If If If BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 2 no 0 10 0 0 0 0 1 +Sequence Number sequence S Se Seq Sequ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 2 , 1 10 0 0 0 0 1 +section MUST section s se sec sect BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 2 . 1 4 0 0 0 0 1 +B.1.2. Replay b.1.2. B B. B.1 B.1. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 3 ... 3 10 0 0 0 0 1 +In case in I In In In BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 9 3 , 1 9 0 0 0 0 1 +accepting replay accepting a ac acc acce BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 3 , 1 10 0 0 0 0 1 +perform the perform p pe per perf BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 3 : 1 7 0 0 0 0 1 +o The o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 9 4 no 0 9 0 0 0 0 1 +Appendix B.1.1 appendix A Ap App Appe BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 4 .. 2 10 0 0 0 0 1 +the Echo the t th the the BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 4 (). 3 4 0 0 0 0 1 +o For o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 9 5 ,, 2 9 0 0 0 0 1 +the server the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 5 , 1 10 0 0 0 0 1 +OSCORE protected oscore O OS OSC OSCO BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 5 .(), 4 9 0 0 0 0 1 +option [CoAP-ECHO-REQ-TAG] option o op opt opti BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 5 [---]. 6 9 0 0 0 0 1 +MUST use must M MU MUS MUST BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 9 5 no 0 9 0 0 0 0 1 +include the include i in inc incl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 5 (). 3 9 0 0 0 0 1 +server with server s se ser serv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 5 no 0 9 0 0 0 0 1 +request as request r re req requ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 5 , 1 10 0 0 0 0 1 +as the as a as as as BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 5 . 1 9 0 0 0 0 1 +B.1.3. Notifications b.1.3. B B. B.1 B.1. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 9 ... 3 10 0 0 0 0 1 +To prevent to T To To To BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 10 no 0 8 0 0 0 0 1 +notifications, the notifications, n no not noti BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 10 , 1 10 0 0 0 0 1 +booting: booting: booting: b bo boo boot BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 10 : 1 1 0 0 0 0 1 +o The o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 9 10 no 0 10 0 0 0 0 1 +Notification Numbers. notification N No Not Noti BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 10 . 1 9 0 0 0 0 1 +Observe option. observe O Ob Obs Obse BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 10 . 1 2 0 0 0 0 1 +Selander, et selander, S Se Sel Sela BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 9 11 ,. 2 10 0 0 1 0 0 +Standards Track standards S St Sta Stan BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 9 11 no 0 9 0 0 0 0 0 +[Page 69] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 11 [] 2 5 0 0 0 0 0 +RFC 8613 rfc R RF RFC RFC BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 0 no 0 10 0 0 0 0 1 +OSCORE OSCORE oscore O OS OSC OSCO BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 0 no 0 7 0 0 0 0 1 +July 2019 july J Ju Jul July BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 9 0 no 0 10 0 0 0 0 1 +B.2. Security b.2. B B. B.2 B.2. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 0 .. 2 10 0 0 0 0 1 +An application an A An An An BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 9 0 no 0 9 0 0 0 0 1 +multiple security multiple m mu mul mult BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 0 . 1 10 0 0 0 0 1 +requirements on requirements r re req requ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 0 no 0 9 0 0 0 0 1 +(Section 3.3) (section ( (S (Se (Sec BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 0 (.), 4 8 0 0 0 0 1 +recommissioned, or recommissioned, r re rec reco BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 0 ,. 2 5 0 0 0 0 1 +This section this T Th Thi This BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 2 no 0 9 0 0 0 0 1 +the ID the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 2 no 0 10 0 0 0 0 1 +preestablished between preestablished p pr pre pree BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 2 , 1 9 0 0 0 0 1 +Secret, Master secret, S Se Sec Secr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 2 ,,/(.), 7 9 0 0 0 0 1 +derive new derive d de der deri BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 2 . 1 8 0 0 0 0 1 +between client between b be bet betw BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 2 ''. 3 9 0 0 0 0 1 +protocol MUST protocol p pr pro prot BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 2 no 0 9 0 0 0 0 1 +randomness. randomness. randomness. r ra ran rand BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 2 . 1 1 0 0 0 0 1 +During normal during D Du Dur Duri BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 4 , 1 9 0 0 0 0 1 +context may context c co con cont BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 4 '',,'', 7 10 0 0 0 0 1 +facilitates for facilitates f fa fac faci BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 4 . 1 8 0 0 0 0 1 +Alternatively, the alternatively, A Al Alt Alte BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 4 ,'' 3 9 0 0 0 0 1 +is expected is i is is is BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 4 ;.. 3 9 0 0 0 0 1 +The protocol the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 6 no 0 9 0 0 0 0 1 +mutable part mutable m mu mut muta BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 6 , 1 9 0 0 0 0 1 +e.g., when e.g., e e. e.g e.g. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 6 ..,. 4 9 0 0 0 0 1 +be used be b be be be BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 6 no 0 10 0 0 0 0 1 +context. For context. c co con cont BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 6 ., 2 9 0 0 0 0 1 +of input of o of of of BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 6 (, 2 9 0 0 0 0 1 +Identifiers), then identifiers), I Id Ide Iden BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 9 6 ), 2 10 0 0 0 0 1 +context is context c co con cont BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 6 . 1 6 0 0 0 0 1 +Note that note N No Not Note BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 9 no 0 10 0 0 0 0 1 +it is it i it it it BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 9 , 1 9 0 0 0 0 1 +stopping processing stopping s st sto stop BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 9 no 0 8 0 0 0 0 1 +Section 8.2. section S Se Sec Sect BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 9 .. 2 1 0 0 0 0 1 +The protocol the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 10 . 1 9 0 0 0 0 1 +client or client c cl cli clie BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 10 , 1 10 0 0 0 0 1 +step 1 step s st ste step BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 10 . 1 2 0 0 0 0 1 +Selander, et selander, S Se Sel Sela BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 9 11 ,. 2 10 0 0 1 0 0 +Standards Track standards S St Sta Stan BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 9 11 no 0 9 0 0 0 0 0 +[Page 70] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 11 [] 2 5 0 0 0 0 0 +RFC 8613 rfc R RF RFC RFC BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 0 no 0 10 0 0 0 0 1 +OSCORE OSCORE oscore O OS OSC OSCO BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 0 no 0 7 0 0 0 0 1 +July 2019 july J Ju Jul July BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 9 0 no 0 10 0 0 0 0 1 +Client Client client C Cl Cli Clie BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 0 no 0 1 0 0 0 0 1 +Server Server server S Se Ser Serv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 9 0 no 0 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 0 no 0 0 0 0 0 0 1 +1. Protect 1. 1 1. 1. 1. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 0 . 1 2 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 0 no 0 0 0 0 0 0 1 +request #1 request r re req requ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 0 # 1 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 0 no 0 0 0 0 0 0 1 +ID Context id I ID ID ID BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 1 0 0 0 0 0 0 9 0 no 0 2 0 0 0 0 1 +|--------------------->| 2. |--------------------->| | |- |-- |--- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 0 ---------------------. 22 6 0 0 0 0 1 +| kid_context | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 0 no 0 3 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 0 no 0 0 0 0 0 0 1 +ID Context id I ID ID ID BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 1 0 0 0 0 0 0 9 0 no 0 2 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 0 no 0 0 0 0 0 0 1 +response #1 response r re res resp BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 0 # 1 2 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 0 no 0 0 0 0 0 0 1 +Protect with protect P Pr Pro Prot BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 0 no 0 2 0 0 0 0 1 +3. Verify 3. 3 3. 3. 3. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 0 . 1 2 0 0 0 0 1 +|<---------------------| |<---------------------| |<---------------------| | |< |<- |<-- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 0 --------------------- 21 4 0 0 0 0 1 +ID Context id I ID ID ID BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 1 0 0 0 0 0 0 9 0 no 0 3 0 0 0 0 1 +ID Context id I ID ID ID BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 1 0 0 0 0 0 0 9 0 no 0 3 0 0 0 0 1 +kid_context = kid_context k ki kid kid_ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 0 no 0 2 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 0 no 0 0 0 0 0 0 1 +Protect with protect P Pr Pro Prot BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 0 no 0 2 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 0 no 0 0 0 0 0 0 1 +request #2 request r re req requ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 0 # 1 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 0 no 0 0 0 0 0 0 1 +ID Context id I ID ID ID BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 1 0 0 0 0 0 0 9 0 ---------------------. 22 10 0 0 0 0 1 +| kid_context | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 0 no 0 4 0 0 0 0 1 +ID Context id I ID ID ID BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 1 0 0 0 0 0 0 9 0 no 0 3 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 0 no 0 0 0 0 0 0 1 +response #2 response r re res resp BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 0 # 1 2 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 0 no 0 0 0 0 0 0 1 +Protect with protect P Pr Pro Prot BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 0 no 0 2 0 0 0 0 1 +5. Verify 5. 5 5. 5. 5. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 0 . 1 2 0 0 0 0 1 +|<---------------------| |<---------------------| |<---------------------| | |< |<- |<-- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 0 --------------------- 21 4 0 0 0 0 1 +ID Context id I ID ID ID BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 1 0 0 0 0 0 0 9 0 no 0 3 0 0 0 0 1 +ID Context id I ID ID ID BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 1 0 0 0 0 0 0 9 0 no 0 3 0 0 0 0 1 +| | | | | | | BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 0 no 0 0 0 0 0 0 1 +Figure 14: figure F Fi Fig Figu BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 4 : 1 10 0 0 0 0 1 +1. (Optional) 1. 1 1. 1. 1. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 4 .() 3 10 0 0 0 0 1 +with the with w wi wit with BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 4 ,.., 4 9 0 0 0 0 1 +first time first f fi fir firs BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 4 , 1 9 0 0 0 0 1 +string R1 string s st str stri BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 4 no 0 9 0 0 0 0 1 +parameters shared parameters p pa par para BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 4 no 0 9 0 0 0 0 1 +context. The context. c co con cont BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 4 . 1 8 0 0 0 0 1 +protected with protected p pr pro prot BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 4 , 1 9 0 0 0 0 1 +in a in i in in in BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 9 4 ''. 3 8 0 0 0 0 1 +special resource special s sp spe spec BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 4 . 1 8 0 0 0 0 1 +2. The 2. 2 2. 2. 2. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 6 . 1 10 0 0 0 0 1 +a valid a a a a a BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 1 0 0 0 0 0 9 6 , 1 9 0 0 0 0 1 +a new a a a a a BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 1 0 0 0 0 0 9 6 no 0 9 0 0 0 0 1 +part of part p pa par part BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 6 ,..,, 5 9 0 0 0 0 1 +Number or number N Nu Num Numb BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 6 . 1 8 0 0 0 0 1 +request (see request r re req requ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 6 (.) 3 9 0 0 0 0 1 +context using context c co con cont BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 6 ('') 4 9 0 0 0 0 1 +ID Context id I ID ID ID BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 1 0 0 0 0 0 0 9 6 no 0 9 0 0 0 0 1 +'kid', then 'kid', ' 'k 'ki 'kid BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 6 '', 3 9 0 0 0 0 1 +second security second s se sec seco BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 6 . 1 9 0 0 0 0 1 +server sends server s se ser serv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 6 .() 3 9 0 0 0 0 1 +second security second s se sec seco BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 6 , 1 9 0 0 0 0 1 +'kid context', 'kid ' 'k 'ki 'kid BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 6 '',. 4 9 0 0 0 0 1 +lead to lead l le lea lead BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 6 #. 2 8 0 0 0 0 1 +server may server s se ser serv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 6 # 1 8 0 0 0 0 1 +security context, security s se sec secu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 9 6 ,. 2 9 0 0 0 0 1 +Multiple instances multiple M Mu Mul Mult BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 6 no 0 9 0 0 0 0 1 +protocol runs protocol p pr pro prot BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 6 ,... 4 7 0 0 0 0 1 +Selander, et selander, S Se Sel Sela BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 9 11 ,. 2 10 0 0 1 0 0 +Standards Track standards S St Sta Stan BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 9 11 no 0 9 0 0 0 0 0 +[Page 71] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 11 [] 2 5 0 0 0 0 0 +RFC 8613 rfc R RF RFC RFC BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 0 no 0 10 0 0 0 0 1 +OSCORE OSCORE oscore O OS OSC OSCO BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 0 no 0 7 0 0 0 0 1 +July 2019 july J Ju Jul July BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 9 0 no 0 10 0 0 0 0 1 +3. The 3. 3 3. 3. 3. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 0 .'' 3 10 0 0 0 0 1 +CBOR bstr cbor C CB CBO CBOR BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 0 no 0 8 0 0 0 0 1 +Context = context C Co Con Cont BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 0 . 1 9 0 0 0 0 1 +using ID using u us usi usin BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 0 . 1 9 0 0 0 0 1 +response (see response r re res resp BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 0 (.), 4 9 0 0 0 0 1 +then the then t th the then BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 0 no 0 9 0 0 0 0 1 +context derived context c co con cont BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 0 , 1 9 0 0 0 0 1 +random byte random r ra ran rand BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 0 . 1 9 0 0 0 0 1 +R2 || r2 R R2 R2 R2 BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 0 ''. 3 7 0 0 0 0 1 +4. If 4. 4 4. 4. 4. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 3 .'' 3 10 0 0 0 0 1 +CBOR bstr cbor C CB CBO CBOR BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 3 , 1 9 0 0 0 0 1 +to an to t to to to BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 3 #, 2 8 0 0 0 0 1 +received before, received r re rec rece BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 3 , 1 9 0 0 0 0 1 +with ID with w wi wit with BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 3 . 1 8 0 0 0 0 1 +request #2 request r re req requ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 3 #.( 3 9 0 0 0 0 1 +Section 8.2) section S Se Sec Sect BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 3 .), 3 9 0 0 0 0 1 +marks the marks m ma mar mark BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 9 3 no 0 9 0 0 0 0 1 +removes all removes r re rem remo BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 3 no 0 9 0 0 0 0 1 +from the from f fr fro from BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 3 . 1 8 0 0 0 0 1 +security context security s se sec secu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 9 3 , 1 9 0 0 0 0 1 +security contexts security s se sec secu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 9 3 . 1 8 0 0 0 0 1 +same security same s sa sam same BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 3 . 1 6 0 0 0 0 1 +5. If 5. 5 5. 5. 5. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 6 . 1 10 0 0 0 0 1 +security context security s se sec secu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 9 6 (.), 4 9 0 0 0 0 1 +then the then t th the then BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 6 no 0 9 0 0 0 0 1 +this server. this t th thi this BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 6 . 1 8 0 0 0 0 1 +security context security s se sec secu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 9 6 , 1 8 0 0 0 0 1 +security contexts security s se sec secu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 9 6 . 1 4 0 0 0 0 1 +If verification if I If If If BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 8 , 1 10 0 0 0 0 1 +message. message. message. m me mes mess BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 8 . 1 1 0 0 0 0 1 +The length the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 8 ,,. 3 9 0 0 0 0 1 +application needs application a ap app appl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 8 no 0 9 0 0 0 0 1 +probability of probability p pr pro prob BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 8 ;, 2 9 0 0 0 0 1 +least 8 least l le lea leas BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 8 . 1 9 0 0 0 0 1 +replayed request replayed r re rep repl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 8 #, 2 10 0 0 0 0 1 +by the by b by by by BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 8 ., 2 9 0 0 0 0 1 +bytes results bytes b by byt byte BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 8 # 1 8 0 0 0 0 1 +messages, which messages, m me mes mess BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 8 , 1 9 0 0 0 0 1 +handling on handling h ha han hand BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 8 . 1 7 0 0 0 0 1 +Selander, et selander, S Se Sel Sela BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 9 11 ,. 2 10 0 0 1 0 0 +Standards Track standards S St Sta Stan BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 9 11 no 0 9 0 0 0 0 0 +[Page 72] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 11 [] 2 5 0 0 0 0 0 +RFC 8613 rfc R RF RFC RFC BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 0 no 0 10 0 0 0 0 1 +OSCORE OSCORE oscore O OS OSC OSCO BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 0 no 0 7 0 0 0 0 1 +July 2019 july J Ju Jul July BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 9 0 no 0 10 0 0 0 0 1 +Request #2 request R Re Req Requ BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 0 #. 2 9 0 0 0 0 1 +action of action a ac act acti BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 0 # 1 10 0 0 0 0 1 +completed the completed c co com comp BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 0 . 1 9 0 0 0 0 1 +The client the T Th The The BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 0 # 1 9 0 0 0 0 1 +step 5. step s st ste step BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 0 . 1 1 0 0 0 0 1 +When sending when W Wh Whe When BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 1 #, 2 9 0 0 0 0 1 +(derived with (derived ( (d (de (der BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 1 (). 3 9 0 0 0 0 1 +receiving response receiving r re rec rece BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 9 1 #, 2 9 0 0 0 0 1 +(protected with (protected ( (p (pr (pro BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 1 ( 1 10 0 0 0 0 1 +Secret) was secret) S Se Sec Secr BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 9 1 )#. 3 8 0 0 0 0 1 +Similarly, when similarly, S Si Sim Simi BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 3 ,#, 3 10 0 0 0 0 1 +request (protected request r re req requ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 3 ( 1 9 0 0 0 0 1 +the Master the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 3 ) 1 10 0 0 0 0 1 +#1. When #1. # #1 #1. #1. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 3 #.#, 4 9 0 0 0 0 1 +Key (derived key K Ke Key Key BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 9 3 (). 3 9 0 0 0 0 1 +Implementation and implementation I Im Imp Impl BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 4 -- 2 10 0 0 0 0 1 +Appendix B.2.1 appendix A Ap App Appe BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 4 ..... 5 5 0 0 0 0 1 +B.2.1. Implementation b.2.1. B B. B.2 B.2. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 5 ... 3 10 0 0 0 0 1 +This section this T Th Thi This BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 5 no 0 10 0 0 0 0 1 +described in described d de des desc BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 5 . 1 5 0 0 0 0 1 +The server the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 5 no 0 10 0 0 0 0 1 +able to able a ab abl able BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 5 . 1 9 0 0 0 0 1 +legitimately receive legitimately l le leg legi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 5 # 1 9 0 0 0 0 1 +immutable security immutable i im imm immu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 5 ,..,. 5 9 0 0 0 0 1 +old request old o ol old old BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 5 # 1 8 0 0 0 0 1 +distinguish from distinguish d di dis dist BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 5 . 1 9 0 0 0 0 1 +when the when w wh whe when BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 5 . 1 9 0 0 0 0 1 +receives a receives r re rec rece BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 5 # 1 9 0 0 0 0 1 +respond with respond r re res resp BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 5 .(). 4 10 0 0 0 0 1 +The server the T Th The The BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 5 , 1 10 0 0 0 0 1 +e.g., set e.g., e e. e.g e.g. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 5 ..,, 4 9 0 0 0 0 1 +security contexts security s se sec secu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 9 5 ., 2 9 0 0 0 0 1 +information can information i in inf info BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 5 . 1 5 0 0 0 0 1 +As an as A As As As BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 9 , 1 10 0 0 0 0 1 +a way a a a a a BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 1 0 0 0 0 0 9 9 (#)( 4 10 0 0 0 0 1 +of request of o of of of BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 9 #). 3 9 0 0 0 0 1 +MUST NOT must M MU MUS MUST BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 9 9 #. 2 9 0 0 0 0 1 +One construction one O On One One BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 9 no 0 9 0 0 0 0 1 +secret random secret s se sec secr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 9 no 0 9 0 0 0 0 1 +parameters associated parameters p pa par para BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 9 . 1 9 0 0 0 0 1 +Selander, et selander, S Se Sel Sela BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 9 11 ,. 2 10 0 0 1 0 0 +Standards Track standards S St Sta Stan BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 9 11 no 0 9 0 0 0 0 0 +[Page 73] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 11 [] 2 5 0 0 0 0 0 +RFC 8613 rfc R RF RFC RFC BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 0 no 0 10 0 0 0 0 1 +OSCORE OSCORE oscore O OS OSC OSCO BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 0 no 0 7 0 0 0 0 1 +July 2019 july J Ju Jul July BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 9 0 no 0 10 0 0 0 0 1 +server to server s se ser serv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 0 # 1 10 0 0 0 0 1 +storing the storing s st sto stor BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 0 no 0 10 0 0 0 0 1 +response #1. response r re res resp BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 0 #..: 4 9 0 0 0 0 1 +o In o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 9 1 ,., 3 9 0 0 0 0 1 +server generates server s se ser serv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 1 ( 1 8 0 0 0 0 1 +associated with associated a as ass asso BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 1 ), 2 9 0 0 0 0 1 +HMAC(K_HMAC, S2) hmac(k_hmac, H HM HMA HMAC BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 1 (,), 4 10 0 0 0 0 1 +truncated to truncated t tr tru trun BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 1 ., 2 9 0 0 0 0 1 +which it which w wh whi whic BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 1 .,, 3 9 0 0 0 0 1 +first and first f fi fir firs BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 1 . 1 8 0 0 0 0 1 +o In o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 9 3 , 1 9 0 0 0 0 1 +value, the value, v va val valu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 3 , 1 9 0 0 0 0 1 +truncated HMAC, truncated t tr tru trun BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 3 , 1 10 0 0 0 0 1 +on verification on o on on on BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 3 . 1 9 0 0 0 0 1 +the protocol the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 3 (#), 4 9 0 0 0 0 1 +until it until u un unt unti BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 3 (), 3 9 0 0 0 0 1 +erased. (The erased. e er era eras BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 3 .( 2 9 0 0 0 0 1 +R2 in r2 R R2 R2 R2 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 3 . 1 9 0 0 0 0 1 +of request of o of of of BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 3 #.) 3 2 0 0 0 0 1 +The length the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 6 no 0 9 0 0 0 0 1 +collision of collision c co col coll BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 6 ., 2 9 0 0 0 0 1 +setting the setting s se set sett BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 6 no 0 10 0 0 0 0 1 +after 2^32 after a af aft afte BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 6 #, 2 10 0 0 0 0 1 +constrained server constrained c co con cons BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 6 . 1 10 0 0 0 0 1 +Two endpoints two T Tw Two Two BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 7 no 0 9 0 0 0 0 1 +two instances two t tw two two BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 7 , 1 9 0 0 0 0 1 +client, e.g., client, c cl cli clie BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 7 ,..,. 5 9 0 0 0 0 1 +race condition race r ra rac race BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 9 7 , 1 10 0 0 0 0 1 +both endpoints both b bo bot both BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 7 no 0 8 0 0 0 0 1 +converging. Both converging. c co con conv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 7 ., 2 9 0 0 0 0 1 +handled in handled h ha han hand BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 7 . 1 9 0 0 0 0 1 +spread out spread s sp spr spre BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 7 ,, 2 9 0 0 0 0 1 +when the when w wh whe when BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 7 , 1 9 0 0 0 0 1 +adding a adding a ad add addi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 7 no 0 10 0 0 0 0 1 +such parallel such s su suc such BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 7 . 1 6 0 0 0 0 1 +B.2.2. Attack b.2.2. B B. B.2 B.2. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 10 ... 3 10 0 0 0 0 1 +An on-path an A An An An BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 9 10 - 1 10 0 0 0 0 1 +process verification process p pr pro proc BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 10 . 1 9 0 0 0 0 1 +access to access a ac acc acce BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 10 . 1 7 0 0 0 0 1 +Selander, et selander, S Se Sel Sela BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 9 11 ,. 2 10 0 0 1 0 0 +Standards Track standards S St Sta Stan BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 9 11 no 0 9 0 0 0 0 0 +[Page 74] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 11 [] 2 5 0 0 0 0 0 +RFC 8613 rfc R RF RFC RFC BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 0 no 0 10 0 0 0 0 1 +OSCORE OSCORE oscore O OS OSC OSCO BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 0 no 0 7 0 0 0 0 1 +July 2019 july J Ju Jul July BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 9 0 no 0 10 0 0 0 0 1 +Replaying an replaying R Re Rep Repl BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 0 '' 2 9 0 0 0 0 1 +server does server s se ser serv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 0 . 1 9 0 0 0 0 1 +the server the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 0 no 0 10 0 0 0 0 1 +a response. a a a a a BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 1 0 0 0 0 0 9 0 ., 2 9 0 0 0 0 1 +discarded. This discarded. d di dis disc BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 0 .-- 3 9 0 0 0 0 1 +against the against a ag aga agai BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 0 ,.., 4 9 0 0 0 0 1 +state associated state s st sta stat BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 0 , 1 10 0 0 0 0 1 +legitimate client legitimate l le leg legi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 0 . 1 9 0 0 0 0 1 +data caching data d da dat data BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 0 #; 2 9 0 0 0 0 1 +see Appendix see s se see see BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 9 0 ... 3 2 0 0 0 0 1 +Replaying response replaying R Re Rep Repl BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 3 # 1 10 0 0 0 0 1 +#1 will #1 # #1 #1 #1 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 3 #,# 3 9 0 0 0 0 1 +#1, through #1, # #1 #1, #1, BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 3 #, 2 9 0 0 0 0 1 +request #1 request r re req requ BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 3 ##. 3 8 0 0 0 0 1 +If request if I If If If BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 5 #, 2 9 0 0 0 0 1 +valid security valid v va val vali BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 5 ,# 2 9 0 0 0 0 1 +normal replay normal n no nor norm BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 5 .,# 3 9 0 0 0 0 1 +already been already a al alr alre BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 5 ,# 2 10 0 0 0 0 1 +from the from f fr fro from BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 5 no 0 9 0 0 0 0 1 +response to response r re res resp BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 5 . 1 3 0 0 0 0 1 +Appendix C. appendix A Ap App Appe BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 7 . 1 10 0 0 0 0 1 +This appendix this T Th Thi This BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 7 no 0 9 0 0 0 0 1 +CoAP messages coap C Co CoA CoAP BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 10 7 ., 2 9 0 0 0 0 1 +how to how h ho how how BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 7 . 1 10 0 0 0 0 1 +Note that note N No Not Note BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 8 . 1 9 0 0 0 0 1 +and the and a an and and BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 8 - 1 10 0 0 0 0 1 +the same the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 8 no 0 9 0 0 0 0 1 +with comparisons. with w wi wit with BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 8 . 1 2 0 0 0 0 1 +C.1. Test c.1. C C. C.1 C.1. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 9 ..: 3 10 0 0 0 0 1 +In this in I In In In BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 10 9 ,. 2 10 0 0 0 0 1 +values are values v va val valu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 9 . 1 6 0 0 0 0 1 +C.1.1. Client c.1.1. C C. C.1 C.1. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 10 ... 3 10 0 0 0 0 1 +Inputs: Inputs: inputs: I In Inp Inpu BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 10 : 1 10 0 0 0 0 1 +o Master o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 10 10 :() 3 10 0 0 0 0 1 +o Master o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 10 11 :() 3 10 0 0 0 0 1 +o Sender o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 10 11 :() 3 10 0 0 0 0 1 +Selander, et selander, S Se Sel Sela BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 10 11 ,. 2 10 0 0 1 0 0 +Standards Track standards S St Sta Stan BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 10 11 no 0 9 0 0 0 0 0 +[Page 75] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 11 [] 2 5 0 0 0 0 0 +RFC 8613 rfc R RF RFC RFC BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 0 no 0 10 0 0 0 0 1 +OSCORE OSCORE oscore O OS OSC OSCO BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 0 no 0 7 0 0 0 0 1 +July 2019 july J Ju Jul July BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 10 0 no 0 10 0 0 0 0 1 +o Recipient o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 10 0 :() 3 10 0 0 0 0 1 +From the from F Fr Fro From BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 0 , 1 10 0 0 0 0 1 +o info o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 10 1 ():() 5 10 0 0 0 0 1 +o info o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 10 1 ():() 5 10 0 0 0 0 1 +o info o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 10 2 ():() 5 10 0 0 0 0 1 +Outputs: Outputs: outputs: O Ou Out Outp BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 3 : 1 10 0 0 0 0 1 +o Sender o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 10 3 :() 3 10 0 0 0 0 1 +o Recipient o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 10 3 :() 3 10 0 0 0 0 1 +o Common o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 10 4 :() 3 10 0 0 0 0 1 +From the from F Fr Fro From BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 4 ( 1 10 0 0 0 0 1 +sender and sender s se sen send BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 4 ): 2 3 0 0 0 0 1 +o sender o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 10 5 :() 3 10 0 0 0 0 1 +o recipient o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 10 5 :() 3 10 0 0 0 0 1 +C.1.2. Server c.1.2. C C. C.1 C.1. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 6 ... 3 10 0 0 0 0 1 +Inputs: Inputs: inputs: I In Inp Inpu BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 6 : 1 10 0 0 0 0 1 +o Master o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 10 6 :() 3 10 0 0 0 0 1 +o Master o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 10 7 :() 3 10 0 0 0 0 1 +o Sender o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 10 7 :() 3 10 0 0 0 0 1 +o Recipient o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 10 8 :() 3 10 0 0 0 0 1 +From the from F Fr Fro From BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 8 , 1 10 0 0 0 0 1 +o info o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 10 8 ():() 5 10 0 0 0 0 1 +o info o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 10 9 ():() 5 10 0 0 0 0 1 +o info o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 10 10 ():() 5 10 0 0 0 0 1 +Outputs: Outputs: outputs: O Ou Out Outp BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 10 : 1 10 0 0 0 0 1 +o Sender o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 10 10 :() 3 10 0 0 0 0 1 +Selander, et selander, S Se Sel Sela BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 10 11 ,. 2 10 0 0 1 0 0 +Standards Track standards S St Sta Stan BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 10 11 no 0 9 0 0 0 0 0 +[Page 76] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 11 [] 2 5 0 0 0 0 0 +RFC 8613 rfc R RF RFC RFC BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 0 no 0 10 0 0 0 0 1 +OSCORE OSCORE oscore O OS OSC OSCO BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 0 no 0 7 0 0 0 0 1 +July 2019 july J Ju Jul July BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 10 0 no 0 10 0 0 0 0 1 +o Recipient o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 10 0 :() 3 10 0 0 0 0 1 +o Common o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 10 0 :() 3 10 0 0 0 0 1 +From the from F Fr Fro From BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 1 ( 1 10 0 0 0 0 1 +sender and sender s se sen send BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 1 ): 2 3 0 0 0 0 1 +o sender o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 10 2 :() 3 10 0 0 0 0 1 +o recipient o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 10 2 :() 3 10 0 0 0 0 1 +C.2. Test c.2. C C. C.2 C.2. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 3 ..: 3 10 0 0 0 0 1 +In this in I In In In BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 10 3 ,, 2 10 0 0 0 0 1 +HKDF, and hkdf, H HK HKD HKDF BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 3 ,. 2 3 0 0 0 0 1 +C.2.1. Client c.2.1. C C. C.2 C.2. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 4 ... 3 10 0 0 0 0 1 +Inputs: Inputs: inputs: I In Inp Inpu BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 4 : 1 10 0 0 0 0 1 +o Master o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 10 4 :() 3 10 0 0 0 0 1 +o Sender o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 10 5 :() 3 10 0 0 0 0 1 +o Recipient o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 10 5 :() 3 10 0 0 0 0 1 +From the from F Fr Fro From BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 6 , 1 10 0 0 0 0 1 +o info o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 10 6 ():() 5 10 0 0 0 0 1 +o info o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 10 7 ():() 5 10 0 0 0 0 1 +o info o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 10 7 ():() 5 10 0 0 0 0 1 +Outputs: Outputs: outputs: O Ou Out Outp BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 8 : 1 10 0 0 0 0 1 +o Sender o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 10 8 :() 3 10 0 0 0 0 1 +o Recipient o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 10 8 :() 3 10 0 0 0 0 1 +o Common o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 10 9 :() 3 10 0 0 0 0 1 +From the from F Fr Fro From BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 9 ( 1 10 0 0 0 0 1 +sender and sender s se sen send BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 9 ): 2 3 0 0 0 0 1 +o sender o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 10 10 :() 3 10 0 0 0 0 1 +o recipient o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 10 11 :() 3 10 0 0 0 0 1 +Selander, et selander, S Se Sel Sela BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 10 11 ,. 2 10 0 0 1 0 0 +Standards Track standards S St Sta Stan BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 10 11 no 0 9 0 0 0 0 0 +[Page 77] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 11 [] 2 5 0 0 0 0 0 +RFC 8613 rfc R RF RFC RFC BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 0 no 0 10 0 0 0 0 1 +OSCORE OSCORE oscore O OS OSC OSCO BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 0 no 0 7 0 0 0 0 1 +July 2019 july J Ju Jul July BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 10 0 no 0 10 0 0 0 0 1 +C.2.2. Server c.2.2. C C. C.2 C.2. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 0 ... 3 10 0 0 0 0 1 +Inputs: Inputs: inputs: I In Inp Inpu BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 0 : 1 10 0 0 0 0 1 +o Master o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 10 0 :() 3 10 0 0 0 0 1 +o Sender o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 10 1 :() 3 10 0 0 0 0 1 +o Recipient o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 10 1 :() 3 10 0 0 0 0 1 +From the from F Fr Fro From BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 2 , 1 10 0 0 0 0 1 +o info o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 10 2 ():() 5 10 0 0 0 0 1 +o info o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 10 2 ():() 5 10 0 0 0 0 1 +o info o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 10 3 ():() 5 10 0 0 0 0 1 +Outputs: Outputs: outputs: O Ou Out Outp BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 4 : 1 10 0 0 0 0 1 +o Sender o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 10 4 :() 3 10 0 0 0 0 1 +o Recipient o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 10 4 :() 3 10 0 0 0 0 1 +o Common o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 10 5 :() 3 10 0 0 0 0 1 +From the from F Fr Fro From BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 5 ( 1 10 0 0 0 0 1 +sender and sender s se sen send BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 5 ): 2 3 0 0 0 0 1 +o sender o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 10 6 :() 3 10 0 0 0 0 1 +o recipient o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 10 7 :() 3 10 0 0 0 0 1 +C.3. Test c.3. C C. C.3 C.3. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 7 ..: 3 10 0 0 0 0 1 +In this in I In In In BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 10 8 , 1 10 0 0 0 0 1 +bytes are bytes b by byt byte BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 8 . 1 9 0 0 0 0 1 +HKDF. HKDF. hkdf. H HK HKD HKDF BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 8 . 1 0 0 0 0 0 1 +C.3.1. Client c.3.1. C C. C.3 C.3. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 9 ... 3 10 0 0 0 0 1 +Inputs: Inputs: inputs: I In Inp Inpu BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 10 : 1 10 0 0 0 0 1 +o Master o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 10 10 :() 3 10 0 0 0 0 1 +o Master o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 10 10 :() 3 10 0 0 0 0 1 +o Sender o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 10 11 :() 3 10 0 0 0 0 1 +Selander, et selander, S Se Sel Sela BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 10 11 ,. 2 10 0 0 1 0 0 +Standards Track standards S St Sta Stan BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 10 11 no 0 9 0 0 0 0 0 +[Page 78] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 11 [] 2 5 0 0 0 0 0 +RFC 8613 rfc R RF RFC RFC BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 0 no 0 10 0 0 0 0 1 +OSCORE OSCORE oscore O OS OSC OSCO BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 0 no 0 7 0 0 0 0 1 +July 2019 july J Ju Jul July BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 10 0 no 0 10 0 0 0 0 1 +o Recipient o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 10 0 :() 3 10 0 0 0 0 1 +o ID o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 10 0 :() 3 10 0 0 0 0 1 +From the from F Fr Fro From BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 1 , 1 10 0 0 0 0 1 +o info o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 10 1 ():( 4 10 0 0 0 0 1 +bytes) bytes) bytes) b by byt byte BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 1 ) 1 1 0 0 0 0 1 +o info o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 10 2 (): 3 10 0 0 0 0 1 +(18 bytes) (18 ( (1 (18 (18 BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 2 () 2 1 0 0 0 0 1 +o info o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 10 3 ():( 4 10 0 0 0 0 1 +bytes) bytes) bytes) b by byt byte BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 3 ) 1 1 0 0 0 0 1 +Outputs: Outputs: outputs: O Ou Out Outp BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 3 : 1 10 0 0 0 0 1 +o Sender o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 10 3 :() 3 10 0 0 0 0 1 +o Recipient o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 10 4 :() 3 10 0 0 0 0 1 +o Common o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 10 4 :() 3 10 0 0 0 0 1 +From the from F Fr Fro From BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 5 ( 1 10 0 0 0 0 1 +sender and sender s se sen send BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 5 ): 2 3 0 0 0 0 1 +o sender o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 10 6 :() 3 10 0 0 0 0 1 +o recipient o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 10 6 :() 3 10 0 0 0 0 1 +C.3.2. Server c.3.2. C C. C.3 C.3. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 7 ... 3 10 0 0 0 0 1 +Inputs: Inputs: inputs: I In Inp Inpu BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 7 : 1 10 0 0 0 0 1 +o Master o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 10 7 :() 3 10 0 0 0 0 1 +o Master o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 10 8 :() 3 10 0 0 0 0 1 +o Sender o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 10 8 :() 3 10 0 0 0 0 1 +o Recipient o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 10 9 :() 3 10 0 0 0 0 1 +o ID o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 10 9 :() 3 10 0 0 0 0 1 +From the from F Fr Fro From BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 10 , 1 10 0 0 0 0 1 +o info o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 10 10 ():( 4 10 0 0 0 0 1 +bytes) bytes) bytes) b by byt byte BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 10 ) 1 1 0 0 0 0 1 +Selander, et selander, S Se Sel Sela BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 10 11 ,. 2 10 0 0 1 0 0 +Standards Track standards S St Sta Stan BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 10 11 no 0 9 0 0 0 0 0 +[Page 79] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 11 [] 2 5 0 0 0 0 0 +RFC 8613 rfc R RF RFC RFC BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 0 no 0 10 0 0 0 0 1 +OSCORE OSCORE oscore O OS OSC OSCO BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 0 no 0 7 0 0 0 0 1 +July 2019 july J Ju Jul July BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 10 0 no 0 10 0 0 0 0 1 +o info o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 10 0 ():( 4 10 0 0 0 0 1 +bytes) bytes) bytes) b by byt byte BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 0 ) 1 1 0 0 0 0 1 +o info o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 10 1 ():( 4 10 0 0 0 0 1 +bytes) bytes) bytes) b by byt byte BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 1 ) 1 1 0 0 0 0 1 +Outputs: Outputs: outputs: O Ou Out Outp BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 1 : 1 10 0 0 0 0 1 +o Sender o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 10 1 :() 3 10 0 0 0 0 1 +o Recipient o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 10 2 :() 3 10 0 0 0 0 1 +o Common o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 10 2 :() 3 10 0 0 0 0 1 +From the from F Fr Fro From BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 3 ( 1 10 0 0 0 0 1 +sender and sender s se sen send BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 3 ): 2 3 0 0 0 0 1 +o sender o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 10 4 :() 3 10 0 0 0 0 1 +o recipient o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 10 4 :() 3 10 0 0 0 0 1 +C.4. Test c.4. C C. C.4 C.4. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 5 ..:, 4 10 0 0 0 0 1 +This section this T Th Thi This BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 5 - 1 10 0 0 0 0 1 +request using request r re req requ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 5 .. 2 9 0 0 0 0 1 +unprotected request unprotected u un unp unpr BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 5 --. 3 10 0 0 0 0 1 +Unprotected CoAP unprotected U Un Unp Unpr BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 7 : 1 4 0 0 0 0 1 +0x44015d1f00003974396c6f63616c686f737483747631 (22 0x44015d1f00003974396c6f63616c686f737483747631 0 0x 0x4 0x44 BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 7 () 2 10 0 0 0 0 1 +Common Context: common C Co Com Comm BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 8 : 1 10 0 0 0 0 1 +o AEAD o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 10 8 :(----) 7 10 0 0 0 0 1 +o Key o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 10 9 :- 2 10 0 0 0 0 1 +o Common o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 10 9 :() 3 10 0 0 0 0 1 +Sender Context: sender S Se Sen Send BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 9 : 1 10 0 0 0 0 1 +o Sender o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 10 10 :() 3 10 0 0 0 0 1 +o Sender o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 10 10 :() 3 10 0 0 0 0 1 +o Sender o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 10 11 : 1 10 0 0 0 0 1 +Selander, et selander, S Se Sel Sela BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 10 11 ,. 2 10 0 0 1 0 0 +Standards Track standards S St Sta Stan BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 10 11 no 0 9 0 0 0 0 0 +[Page 80] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 11 [] 2 5 0 0 0 0 0 +RFC 8613 rfc R RF RFC RFC BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 0 no 0 10 0 0 0 0 1 +OSCORE OSCORE oscore O OS OSC OSCO BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 0 no 0 7 0 0 0 0 1 +July 2019 july J Ju Jul July BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 10 0 no 0 10 0 0 0 0 1 +The following the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 0 : 1 10 0 0 0 0 1 +o Partial o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 10 0 :() 3 10 0 0 0 0 1 +o kid: o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 10 1 :() 3 10 0 0 0 0 1 +o aad_array: o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 10 1 :() 3 10 0 0 0 0 1 +o AAD: o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 10 2 :() 3 10 0 0 0 0 1 +o plaintext: o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 10 2 :() 3 10 0 0 0 0 1 +o encryption o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 10 2 :() 3 10 0 0 0 0 1 +o nonce: o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 10 3 :() 3 10 0 0 0 0 1 +From the from F Fr Fro From BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 3 ,: 2 10 0 0 0 0 1 +o OSCORE o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 10 4 :() 3 10 0 0 0 0 1 +o ciphertext: o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 10 4 :() 3 10 0 0 0 0 1 +From there: from F Fr Fro From BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 5 : 1 10 0 0 0 0 1 +o Protected o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 10 5 (): 3 10 0 0 0 0 1 +3616c686f7374620914ff612f1092f1776f1c1668b3825e (35 3616c686f7374620914ff612f1092f1776f1c1668b3825e 3 36 361 3616 BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 1 0 0 0 10 5 () 2 8 0 0 0 0 1 +C.5. Test c.5. C C. C.5 C.5. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 6 ..:, 4 10 0 0 0 0 1 +This section this T Th Thi This BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 6 - 1 10 0 0 0 0 1 +request using request r re req requ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 6 .. 2 9 0 0 0 0 1 +unprotected request unprotected u un unp unpr BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 6 --. 3 10 0 0 0 0 1 +Unprotected CoAP unprotected U Un Unp Unpr BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 8 : 1 4 0 0 0 0 1 +0x440171c30000b932396c6f63616c686f737483747631 (22 0x440171c30000b932396c6f63616c686f737483747631 0 0x 0x4 0x44 BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 1 0 0 0 10 8 () 2 10 0 0 0 0 1 +Common Context: common C Co Com Comm BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 9 : 1 10 0 0 0 0 1 +o AEAD o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 10 9 :(----) 7 10 0 0 0 0 1 +o Key o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 10 9 :- 2 10 0 0 0 0 1 +o Common o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 10 10 :() 3 10 0 0 0 0 1 +Sender Context: sender S Se Sen Send BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 10 : 1 10 0 0 0 0 1 +o Sender o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 10 10 :() 3 10 0 0 0 0 1 +Selander, et selander, S Se Sel Sela BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 10 11 ,. 2 10 0 0 1 0 0 +Standards Track standards S St Sta Stan BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 10 11 no 0 9 0 0 0 0 0 +[Page 81] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 11 [] 2 5 0 0 0 0 0 +RFC 8613 rfc R RF RFC RFC BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 0 no 0 10 0 0 0 0 1 +OSCORE OSCORE oscore O OS OSC OSCO BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 0 no 0 7 0 0 0 0 1 +July 2019 july J Ju Jul July BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 10 0 no 0 10 0 0 0 0 1 +o Sender o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 10 0 :() 3 10 0 0 0 0 1 +o Sender o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 10 0 : 1 10 0 0 0 0 1 +The following the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 1 : 1 10 0 0 0 0 1 +o Partial o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 10 1 :() 3 10 0 0 0 0 1 +o kid: o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 10 1 :() 3 10 0 0 0 0 1 +o aad_array: o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 10 2 :() 3 10 0 0 0 0 1 +o AAD: o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 10 2 :() 3 10 0 0 0 0 1 +o plaintext: o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 10 2 :() 3 10 0 0 0 0 1 +o encryption o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 10 3 :() 3 10 0 0 0 0 1 +o nonce: o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 10 3 :() 3 10 0 0 0 0 1 +From the from F Fr Fro From BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 4 ,: 2 10 0 0 0 0 1 +o OSCORE o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 10 4 :() 3 10 0 0 0 0 1 +o ciphertext: o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 10 4 :() 3 10 0 0 0 0 1 +From there: from F Fr Fro From BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 5 : 1 10 0 0 0 0 1 +o Protected o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 10 5 (): 3 10 0 0 0 0 1 +3616c686f737463091400ff4ed339a5a379b0b8bc731fffb0 (36 3616c686f737463091400ff4ed339a5a379b0b8bc731fffb0 3 36 361 3616 BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 1 0 0 0 10 5 () 2 8 0 0 0 0 1 +C.6. Test c.6. C C. C.6 C.6. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 6 ..:, 4 10 0 0 0 0 1 +This section this T Th Thi This BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 6 - 1 10 0 0 0 0 1 +request for request r re req requ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 6 no 0 9 0 0 0 0 1 +to be to t to to to BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 6 ,'' 3 8 0 0 0 0 1 +protected message. protected p pr pro prot BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 6 . 1 8 0 0 0 0 1 +derived in derived d de der deri BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 6 .. 2 9 0 0 0 0 1 +Uri-Path and uri-path U Ur Uri Uri- BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 10 6 --. 3 4 0 0 0 0 1 +Unprotected CoAP unprotected U Un Unp Unpr BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 9 : 1 4 0 0 0 0 1 +0x44012f8eef9bbf7a396c6f63616c686f737483747631 (22 0x44012f8eef9bbf7a396c6f63616c686f737483747631 0 0x 0x4 0x44 BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 9 () 2 10 0 0 0 0 1 +Common Context: common C Co Com Comm BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 10 : 1 10 0 0 0 0 1 +o AEAD o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 10 10 :(----) 7 10 0 0 0 0 1 +o Key o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 10 11 :- 2 10 0 0 0 0 1 +Selander, et selander, S Se Sel Sela BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 10 11 ,. 2 10 0 0 1 0 0 +Standards Track standards S St Sta Stan BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 10 11 no 0 9 0 0 0 0 0 +[Page 82] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 11 [] 2 5 0 0 0 0 0 +RFC 8613 rfc R RF RFC RFC BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 0 no 0 10 0 0 0 0 1 +OSCORE OSCORE oscore O OS OSC OSCO BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 0 no 0 7 0 0 0 0 1 +July 2019 july J Ju Jul July BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 10 0 no 0 10 0 0 0 0 1 +o Common o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 10 0 :() 3 10 0 0 0 0 1 +o ID o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 10 1 :() 3 10 0 0 0 0 1 +Sender Context: sender S Se Sen Send BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 1 : 1 10 0 0 0 0 1 +o Sender o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 10 1 :() 3 10 0 0 0 0 1 +o Sender o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 10 2 :() 3 10 0 0 0 0 1 +o Sender o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 10 3 : 1 10 0 0 0 0 1 +The following the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 3 : 1 10 0 0 0 0 1 +o Partial o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 10 4 :() 3 10 0 0 0 0 1 +o kid: o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 10 4 :() 3 10 0 0 0 0 1 +o kid o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 10 5 :() 3 10 0 0 0 0 1 +o aad_array: o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 10 5 :() 3 10 0 0 0 0 1 +o AAD: o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 10 6 :() 3 10 0 0 0 0 1 +o plaintext: o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 10 6 :() 3 10 0 0 0 0 1 +o encryption o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 10 7 :() 3 10 0 0 0 0 1 +o nonce: o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 10 7 :() 3 10 0 0 0 0 1 +From the from F Fr Fro From BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 8 ,: 2 10 0 0 0 0 1 +o OSCORE o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 10 8 :() 3 10 0 0 0 0 1 +o ciphertext: o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 10 9 :() 3 10 0 0 0 0 1 +From there: from F Fr Fro From BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 10 : 1 10 0 0 0 0 1 +o Protected o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 10 10 (): 3 6 0 0 0 0 1 +0x44022f8eef9bbf7a396c6f63616c686f73746b19140837cbf3210017a2d3ff 0x44022f8eef9bbf7a396c6f63616c686f73746b19140837cbf3210017a2d3ff 0x44022f8eef9bbf7a396c6f63616c686f73746b19140837cbf3210017a2d3ff 0 0x 0x4 0x44 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 1 0 0 0 10 10 no 0 10 0 0 0 0 1 +72cd7273fd331ac45cffbe55c3 (44 72cd7273fd331ac45cffbe55c3 7 72 72c 72cd BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 10 () 2 5 0 0 0 0 1 +Selander, et selander, S Se Sel Sela BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 10 11 ,. 2 10 0 0 1 0 0 +Standards Track standards S St Sta Stan BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 10 11 no 0 9 0 0 0 0 0 +[Page 83] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 11 [] 2 5 0 0 0 0 0 +RFC 8613 rfc R RF RFC RFC BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 0 no 0 10 0 0 0 0 1 +OSCORE OSCORE oscore O OS OSC OSCO BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 0 no 0 7 0 0 0 0 1 +July 2019 july J Ju Jul July BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 10 0 no 0 10 0 0 0 0 1 +C.7. Test c.7. C C. C.7 C.7. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 0 ..:, 4 10 0 0 0 0 1 +This section this T Th Thi This BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 0 -. 2 9 0 0 0 0 1 +(Content) response (content) ( (C (Co (Con BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 0 ().. 4 10 0 0 0 0 1 +response has response r re res resp BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 0 "!". 4 9 0 0 0 0 1 +response does response r re res resp BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 0 ''. 3 10 0 0 0 0 1 +parameters are parameters p pa par para BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 0 . 1 6 0 0 0 0 1 +Unprotected CoAP unprotected U Un Unp Unpr BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 4 : 1 4 0 0 0 0 1 +0x64455d1f00003974ff48656c6c6f20576f726c6421 (21 0x64455d1f00003974ff48656c6c6f20576f726c6421 0 0x 0x6 0x64 BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 1 0 0 0 10 4 () 2 10 0 0 0 0 1 +Common Context: common C Co Com Comm BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 4 : 1 10 0 0 0 0 1 +o AEAD o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 10 4 :(----) 7 10 0 0 0 0 1 +o Key o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 10 5 :- 2 10 0 0 0 0 1 +o Common o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 10 5 :() 3 10 0 0 0 0 1 +Sender Context: sender S Se Sen Send BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 6 : 1 10 0 0 0 0 1 +o Sender o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 10 6 :() 3 10 0 0 0 0 1 +o Sender o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 10 6 :() 3 10 0 0 0 0 1 +o Sender o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 10 7 : 1 10 0 0 0 0 1 +The following the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 7 : 1 10 0 0 0 0 1 +o aad_array: o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 10 8 :() 3 10 0 0 0 0 1 +o AAD: o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 10 8 :() 3 10 0 0 0 0 1 +o plaintext: o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 10 8 :() 3 10 0 0 0 0 1 +o encryption o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 10 9 :() 3 10 0 0 0 0 1 +o nonce: o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 10 9 :() 3 10 0 0 0 0 1 +From the from F Fr Fro From BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 10 ,: 2 10 0 0 0 0 1 +o OSCORE o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 10 10 :() 3 10 0 0 0 0 1 +o ciphertext: o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 10 11 :( 2 10 0 0 0 0 1 +bytes) bytes) bytes) b by byt byte BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 11 ) 1 1 0 0 0 0 1 +Selander, et selander, S Se Sel Sela BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 10 11 ,. 2 10 0 0 1 0 0 +Standards Track standards S St Sta Stan BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 10 11 no 0 9 0 0 0 0 0 +[Page 84] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 11 [] 2 5 0 0 0 0 0 +RFC 8613 rfc R RF RFC RFC BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 0 no 0 10 0 0 0 0 1 +OSCORE OSCORE oscore O OS OSC OSCO BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 0 no 0 7 0 0 0 0 1 +July 2019 july J Ju Jul July BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 10 0 no 0 10 0 0 0 0 1 +From there: from F Fr Fro From BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 0 : 1 10 0 0 0 0 1 +o Protected o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 10 0 (): 3 6 0 0 0 0 1 +0x64445d1f0000397490ffdbaad1e9a7e7b2a813d3c31524378303cdafae119106 0x64445d1f0000397490ffdbaad1e9a7e7b2a813d3c31524378303cdafae119106 0x64445d1f0000397490ffdbaad1e9a7e7b2a813d3c31524378303cdafae119106 0 0x 0x6 0x64 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 1 0 0 0 10 0 no 0 10 0 0 0 0 1 +(32 bytes) (32 ( (3 (32 (32 BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 0 () 2 1 0 0 0 0 1 +C.8. Test c.8. C C. C.8 C.8. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 1 ..:, 4 10 0 0 0 0 1 +This section this T Th Thi This BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 1 . 1 9 0 0 0 0 1 +(Content) response (content) ( (C (Co (Con BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 1 ().. 4 10 0 0 0 0 1 +response has response r re res resp BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 1 "!". 4 9 0 0 0 0 1 +response does response r re res resp BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 1 '',. 4 10 0 0 0 0 1 +that some that t th tha that BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 1 . 1 7 0 0 0 0 1 +Unprotected CoAP unprotected U Un Unp Unpr BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 5 : 1 4 0 0 0 0 1 +0x64455d1f00003974ff48656c6c6f20576f726c6421 (21 0x64455d1f00003974ff48656c6c6f20576f726c6421 0 0x 0x6 0x64 BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 1 0 0 0 10 5 () 2 10 0 0 0 0 1 +Common Context: common C Co Com Comm BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 5 : 1 10 0 0 0 0 1 +o AEAD o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 10 5 :(----) 7 10 0 0 0 0 1 +o Key o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 10 6 :- 2 10 0 0 0 0 1 +o Common o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 10 6 :() 3 10 0 0 0 0 1 +Sender Context: sender S Se Sen Send BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 7 : 1 10 0 0 0 0 1 +o Sender o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 10 7 :() 3 10 0 0 0 0 1 +o Sender o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 10 7 :() 3 10 0 0 0 0 1 +o Sender o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 10 8 : 1 10 0 0 0 0 1 +The following the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 8 : 1 10 0 0 0 0 1 +o Partial o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 10 9 :() 3 10 0 0 0 0 1 +o aad_array: o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 10 9 :() 3 10 0 0 0 0 1 +o AAD: o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 10 9 :() 3 10 0 0 0 0 1 +o plaintext: o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 10 10 :() 3 10 0 0 0 0 1 +o encryption o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 10 10 :() 3 10 0 0 0 0 1 +o nonce: o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 10 11 :() 3 10 0 0 0 0 1 +Selander, et selander, S Se Sel Sela BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 10 11 ,. 2 10 0 0 1 0 0 +Standards Track standards S St Sta Stan BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 10 11 no 0 9 0 0 0 0 0 +[Page 85] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 11 [] 2 5 0 0 0 0 0 +RFC 8613 rfc R RF RFC RFC BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 0 no 0 10 0 0 0 0 1 +OSCORE OSCORE oscore O OS OSC OSCO BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 0 no 0 7 0 0 0 0 1 +July 2019 july J Ju Jul July BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 10 0 no 0 10 0 0 0 0 1 +From the from F Fr Fro From BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 0 ,: 2 10 0 0 0 0 1 +o OSCORE o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 10 0 :() 3 10 0 0 0 0 1 +o ciphertext: o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 10 0 :( 2 10 0 0 0 0 1 +bytes) bytes) bytes) b by byt byte BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 0 ) 1 1 0 0 0 0 1 +From there: from F Fr Fro From BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 1 : 1 10 0 0 0 0 1 +o Protected o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 10 1 (): 3 10 0 0 0 0 1 +ff4d4c13669384b67354b2b6175ff4b8658c666a6cf88e (34 ff4d4c13669384b67354b2b6175ff4b8658c666a6cf88e f ff ff4 ff4d BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 1 0 0 0 10 1 () 2 8 0 0 0 0 1 +Appendix D. appendix A Ap App Appe BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 1 . 1 10 0 0 0 0 1 +D.1. Threat d.1. D D. D.1 D.1. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 1 .. 2 10 0 0 0 0 1 +This section this T Th Thi This BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 2 []. 3 10 0 0 0 0 1 +It is it I It It It BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 2 no 0 9 0 0 0 0 1 +been compromised. been b be bee been BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 2 . 1 9 0 0 0 0 1 +CoAP channel coap C Co CoA CoAP BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 10 2 , 1 8 0 0 0 0 1 +intermediary nodes. intermediary i in int inte BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 2 . 1 9 0 0 0 0 1 +or active or o or or or BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 2 --;, 4 9 0 0 0 0 1 +traffic analysis, traffic t tr tra traf BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 2 ,,,,,, 6 10 0 0 0 0 1 +replay, man-in-the-middle, replay, r re rep repl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 2 ,---,--. 8 9 0 0 0 0 1 +that the that t th tha that BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 2 no 0 9 0 0 0 0 1 +undetectably remove, undetectably u un und unde BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 2 ,,. 3 10 0 0 0 0 1 +OSCORE targets oscore O OS OSC OSCO BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 5 / 1 9 0 0 0 0 1 +(Section 2 (section ( (S (Se (Sec BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 5 ([]), 5 10 0 0 0 0 1 +Payload, Code, payload, P Pa Pay Payl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 10 5 ,,-/-, 6 9 0 0 0 0 1 +instances (Section instances i in ins inst BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 5 (.). 4 3 0 0 0 0 1 +OSCORE does oscore O OS OSC OSCO BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 7 ( 1 9 0 0 0 0 1 +[RFC7252]) or [rfc7252]) [ [R [RF [RFC BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 7 []) 3 10 0 0 0 0 1 +the CoAP the t th the the BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 7 . 1 4 0 0 0 0 1 +Additionally, OSCORE additionally, A Ad Add Addi BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 8 , 1 9 0 0 0 0 1 +(Section 4.1), (section ( (S (Se (Sec BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 8 (.), 4 9 0 0 0 0 1 +operations (see operations o op ope oper BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 10 8 (..[]). 7 9 0 0 0 0 1 +(forwarding, cross-protocol, (forwarding, ( (f (fo (for BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 8 (,-,..,- 8 9 0 0 0 0 1 +such as such s su suc such BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 8 )( 2 9 0 0 0 0 1 +instruction from instruction i in ins inst BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 8 ), 2 9 0 0 0 0 1 +redirected to redirected r re red redi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 8 . 1 10 0 0 0 0 1 +the request the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 8 . 1 9 0 0 0 0 1 +For cross-protocol for F Fo For For BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 8 -, 2 9 0 0 0 0 1 +Selander, et selander, S Se Sel Sela BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 10 11 ,. 2 10 0 0 1 0 0 +Standards Track standards S St Sta Stan BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 10 11 no 0 9 0 0 0 0 0 +[Page 86] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 11 [] 2 5 0 0 0 0 0 +RFC 8613 rfc R RF RFC RFC BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 0 no 0 10 0 0 0 0 1 +OSCORE OSCORE oscore O OS OSC OSCO BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 0 no 0 7 0 0 0 0 1 +July 2019 july J Ju Jul July BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 10 0 no 0 10 0 0 0 0 1 +the message the t th the the BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 0 . 1 9 0 0 0 0 1 +Manipulation of manipulation M Ma Man Mani BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 0 no 0 10 0 0 0 0 1 +message reaches message m me mes mess BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 0 . 1 8 0 0 0 0 1 +Attacks on attacks A At Att Atta BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 1 - 1 10 0 0 0 0 1 +of-service attacks of-service o of of- of-s BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 1 -, 2 9 0 0 0 0 1 +details are details d de det deta BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 1 .. 2 5 0 0 0 0 1 +Attacks against attacks A At Att Atta BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 2 -. 2 10 0 0 0 0 1 +is intended is i is is is BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 2 ,,, 3 9 0 0 0 0 1 +modification, deletion, modification, m mo mod modi BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 2 ,,,--. 6 9 0 0 0 0 1 +OSCORE is oscore O OS OSC OSCO BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 3 no 0 10 0 0 0 0 1 +Appendix D. appendix A Ap App Appe BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 3 . 1 1 0 0 0 0 1 +D.2. Supporting d.2. D D. D.2 D.2. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 3 .. 2 10 0 0 0 0 1 +CoAP is coap C Co CoA CoAP BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 10 3 / 1 10 0 0 0 0 1 +CoAP message coap C Co CoA CoAP BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 10 3 no 0 9 0 0 0 0 1 +environments, e.g., environments, e en env envi BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 3 ,..,-. 6 9 0 0 0 0 1 +Securing CoAP securing S Se Sec Secu BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 4 no 0 9 0 0 0 0 1 +between the between b be bet betw BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 4 , 1 9 0 0 0 0 1 +possible. In possible. p po pos poss BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 4 ., 2 9 0 0 0 0 1 +transport layer transport t tr tra tran BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 4 ;, 2 10 0 0 0 0 1 +the CoAP the t th the the BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 4 . 1 9 0 0 0 0 1 +Requirements for requirements R Re Req Requ BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 6 -- 2 8 0 0 0 0 1 +[CoAP-E2E-Sec], in [coap-e2e-sec], [ [C [Co [CoA BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 6 [--],, 6 8 0 0 0 0 1 +Section 2.2.1. section S Se Sec Sect BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 6 ..., 4 10 0 0 0 0 1 +proxies and proxies p pr pro prox BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 6 no 0 9 0 0 0 0 1 +operations. operations. operations. o op ope oper BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 6 . 1 1 0 0 0 0 1 +By working by B By By By BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 8 , 1 10 0 0 0 0 1 +fields to fields f fi fie fiel BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 11 8 , 1 9 0 0 0 0 1 +required for required r re req requ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 8 no 0 9 0 0 0 0 1 +message fields message m me mes mess BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 8 . 1 10 0 0 0 0 1 +the remainder the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 8 , 1 9 0 0 0 0 1 +protected message protected p pr pro prot BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 8 no 0 9 0 0 0 0 1 +intended for intended i in int inte BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 8 . 1 7 0 0 0 0 1 +D.3. Protected d.3. D D. D.3 D.3. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 10 .. 2 10 0 0 0 0 1 +Protected message protected P Pr Pro Prot BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 10 (.) 3 10 0 0 0 0 1 +and the and a an and and BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 10 (.) 3 9 0 0 0 0 1 +using an using u us usi usin BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 10 . 1 3 0 0 0 0 1 +Selander, et selander, S Se Sel Sela BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 11 ,. 2 10 0 0 1 0 0 +Standards Track standards S St Sta Stan BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 11 11 no 0 9 0 0 0 0 0 +[Page 87] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 11 [] 2 5 0 0 0 0 0 +RFC 8613 rfc R RF RFC RFC BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 11 0 no 0 10 0 0 0 0 1 +OSCORE OSCORE oscore O OS OSC OSCO BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 11 0 no 0 7 0 0 0 0 1 +July 2019 july J Ju Jul July BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 11 0 no 0 10 0 0 0 0 1 +OSCORE depends oscore O OS OSC OSCO BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 11 0 no 0 8 0 0 0 0 1 +(Section 12.3) (section ( (S (Se (Sec BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 0 (.), 4 10 0 0 0 0 1 +making (key, making m ma mak maki BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 0 (,)(.). 7 9 0 0 0 0 1 +true, and true, t tr tru true BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 0 , 1 9 0 0 0 0 1 +Section 7.2.1, section S Se Sec Sect BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 0 ..,: 4 9 0 0 0 0 1 +o Confidentiality: o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 11 1 : 1 10 0 0 0 0 1 +plaintext contents plaintext p pl pla plai BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 1 no 0 9 0 0 0 0 1 +different plaintexts different d di dif diff BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 1 (.). 4 7 0 0 0 0 1 +o Integrity: o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 11 2 : 1 10 0 0 0 0 1 +message with message m me mes mess BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 2 no 0 9 0 0 0 0 1 +OSCORE message oscore O OS OSC OSCO BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 11 2 . 1 8 0 0 0 0 1 +o Request-response o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 11 3 -: 2 10 0 0 0 0 1 +client match client c cl cli clie BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 3 . 1 6 0 0 0 0 1 +o Non-replayability: o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 11 4 -: 2 10 0 0 0 0 1 +receiver to receiver r re rec rece BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 4 no 0 10 0 0 0 0 1 +accepted. accepted. accepted. a ac acc acce BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 4 . 1 1 0 0 0 0 1 +In the in I In In In BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 11 4 ,,.., 5 9 0 0 0 0 1 +compromised intermediary. compromised c co com comp BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 4 ., 2 8 0 0 0 0 1 +properties by properties p pr pro prop BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 4 - 1 9 0 0 0 0 1 +uniqueness of uniqueness u un uni uniq BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 4 (,).[] 6 9 0 0 0 0 1 +confidentiality and confidentiality c co con conf BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 4 .- 2 9 0 0 0 0 1 +is provided is i is is is BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 4 '' 2 9 0 0 0 0 1 +the AAD the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 4 .- 2 8 0 0 0 0 1 +notifications is notifications n no not noti BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 4 (,) 3 9 0 0 0 0 1 +replay protection replay r re rep repl BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 4 (,.). 5 10 0 0 0 0 1 +OSCORE is oscore O OS OSC OSCO BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 11 7 no 0 10 0 0 0 0 1 +on observing on o on on on BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 7 . 1 10 0 0 0 0 1 +not provide not n no not not BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 7 , 1 9 0 0 0 0 1 +the application the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 7 no 0 9 0 0 0 0 1 +from directly from f fr fro from BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 7 ., 2 8 0 0 0 0 1 +information about information i in inf info BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 7 - 1 9 0 0 0 0 1 +attacks observing attacks a at att atta BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 7 . 1 5 0 0 0 0 1 +D.4. Uniqueness d.4. D D. D.4 D.4. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 9 ..(,) 5 10 0 0 0 0 1 +In this in I In In In BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 11 9 ,(,) 4 10 0 0 0 0 1 +as the as a as as as BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 9 .... 4 8 0 0 0 0 1 +Fix a fix F Fi Fix Fix BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 10 (.), 4 9 0 0 0 0 1 +encrypting endpoint. encrypting e en enc encr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 10 . 1 9 0 0 0 0 1 +server roles, server s se ser serv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 10 , 1 9 0 0 0 0 1 +of its of o of of of BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 10 .() 3 10 0 0 0 0 1 +Selander, et selander, S Se Sel Sela BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 11 ,. 2 10 0 0 1 0 0 +Standards Track standards S St Sta Stan BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 11 11 no 0 9 0 0 0 0 0 +[Page 88] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 11 [] 2 5 0 0 0 0 0 +RFC 8613 rfc R RF RFC RFC BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 11 0 no 0 10 0 0 0 0 1 +OSCORE OSCORE oscore O OS OSC OSCO BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 11 0 no 0 7 0 0 0 0 1 +July 2019 july J Ju Jul July BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 11 0 no 0 10 0 0 0 0 1 +they are they t th the they BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 0 , 1 9 0 0 0 0 1 +encrypted by encrypted e en enc encr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 0 . 1 10 0 0 0 0 1 +be proven be b be be be BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 0 . 1 9 0 0 0 0 1 +Since the since S Si Sin Sinc BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 1 ,, 2 10 0 0 0 0 1 +PIV takes piv P PI PIV PIV BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 11 1 no 0 9 0 0 0 0 1 +response, and response, r re res resp BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 1 , 1 9 0 0 0 0 1 +Partial IV partial P Pa Par Part BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 1 ().(.) 6 9 0 0 0 0 1 +size of size s si siz size BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 1 ()(, 4 9 0 0 0 0 1 +PIV) pairs. piv) P PI PIV PIV) BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 11 1 ).: 3 4 0 0 0 0 1 +A. For a. A A. A. A. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 11 3 .,(.., 6 10 0 0 0 0 1 +notifications): notifications): notifications): n no not noti BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 3 ): 2 2 0 0 0 0 1 +o ID_PIV o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 11 4 no 0 10 0 0 0 0 1 +o PIV o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 11 4 no 0 10 0 0 0 0 1 +Since the since S Si Sin Sinc BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 4 , 1 9 0 0 0 0 1 +nonces used nonces n no non nonc BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 4 no 0 8 0 0 0 0 1 +encrypted messages encrypted e en enc encr BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 4 (..). 5 10 0 0 0 0 1 +B. For b. B B. B. B. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 11 5 .(.., 5 10 0 0 0 0 1 +request): request): request): r re req requ BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 5 ): 2 1 0 0 0 0 1 +o ID_PIV o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 11 6 no 0 10 0 0 0 0 1 +o PIV o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 11 6 no 0 10 0 0 0 0 1 +Since the since S Si Sin Sinc BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 7 , 1 9 0 0 0 0 1 +ID of id I ID ID ID BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 1 0 0 0 0 0 0 11 7 ., 2 9 0 0 0 0 1 +different compared different d di dif diff BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 7 , 1 10 0 0 0 0 1 +generated the generated g ge gen gene BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 7 . 1 9 0 0 0 0 1 +verified for verified v ve ver veri BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 7 (.) 3 9 0 0 0 0 1 +Context, PIV context, C Co Con Cont BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 7 ,, 2 9 0 0 0 0 1 +case B case c ca cas case BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 11 7 . 1 2 0 0 0 0 1 +D.5. Unprotected d.5. D D. D.5 D.5. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 9 .. 2 10 0 0 0 0 1 +This section this T Th Thi This BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 9 no 0 9 0 0 0 0 1 +protected by protected p pr pro prot BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 9 .. 2 10 0 0 0 0 1 +D.5.1. CoAP d.5.1. D D. D.5 D.5. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 10 ... 3 10 0 0 0 0 1 +o Version. o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 11 10 .[] 3 9 0 0 0 0 1 +sensitive to sensitive s se sen sens BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 10 ., 2 9 0 0 0 0 1 +version defined. version v ve ver vers BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 10 . 1 10 0 0 0 0 1 +Selander, et selander, S Se Sel Sela BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 11 ,. 2 10 0 0 1 0 0 +Standards Track standards S St Sta Stan BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 11 11 no 0 9 0 0 0 0 0 +[Page 89] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 11 [] 2 5 0 0 0 0 0 +RFC 8613 rfc R RF RFC RFC BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 11 0 no 0 10 0 0 0 0 1 +OSCORE OSCORE oscore O OS OSC OSCO BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 11 0 no 0 7 0 0 0 0 1 +July 2019 july J Ju Jul July BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 11 0 no 0 10 0 0 0 0 1 +denial-of-service attack. denial-of-service d de den deni BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 0 --. 3 10 0 0 0 0 1 +attacks to attacks a at att atta BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 0 - 1 10 0 0 0 0 1 +the CoAP the t th the the BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 0 . 1 2 0 0 0 0 1 +o Token/Token o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 11 0 /.- 3 10 0 0 0 0 1 +for differentiating for f fo for for BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 0 []. 3 9 0 0 0 0 1 +proxies are proxies p pr pro prox BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 0 no 0 9 0 0 0 0 1 +between hops. between b be bet betw BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 0 . 1 8 0 0 0 0 1 +requests to requests r re req requ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 11 0 . 1 9 0 0 0 0 1 +particular, this particular, p pa par part BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 0 ,, 2 8 0 0 0 0 1 +responses are responses r re res resp BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 0 . 1 9 0 0 0 0 1 +Token Length token T To Tok Toke BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 0 --- 3 10 0 0 0 0 1 +attack, since attack, a at att atta BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 0 , 1 9 0 0 0 0 1 +request the request r re req requ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 0 no 0 10 0 0 0 0 1 +verify integrity verify v ve ver veri BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 0 . 1 5 0 0 0 0 1 +o Code. o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 11 3 . 1 10 0 0 0 0 1 +for requests for f fo for for BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 3 . 1 9 0 0 0 0 1 +receiving the receiving r re rec rece BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 11 3 no 0 9 0 0 0 0 1 +Inner CoAP inner I In Inn Inne BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 3 (.)., 5 9 0 0 0 0 1 +from attackers from f fr fro from BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 3 no 0 9 0 0 0 0 1 +endpoint. However, endpoint. e en end endp BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 3 ., 2 9 0 0 0 0 1 +value for value v va val valu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 3 () 2 10 0 0 0 0 1 +may, depending may, m ma may may, BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 3 , 1 10 0 0 0 0 1 +for several for f fo for for BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 3 ,, 2 9 0 0 0 0 1 +which is which w wh whi whic BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 3 --. 3 10 0 0 0 0 1 +POST reveals post P PO POS POST BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 1 1 0 0 0 0 0 11 3 no 0 10 0 0 0 0 1 +Outer Observe outer O Ou Out Oute BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 3 . 1 3 0 0 0 0 1 +o Type/Message o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 11 6 /./[] 5 9 0 0 0 0 1 +information about information i in inf info BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 6 ,.., 4 10 0 0 0 0 1 +reading the reading r re rea read BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 6 no 0 9 0 0 0 0 1 +messages are messages m me mes mess BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 6 . 1 9 0 0 0 0 1 +change Type change c ch cha chan BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 6 . 1 9 0 0 0 0 1 +in CoAP in i in in in BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 11 6 []/ 3 9 0 0 0 0 1 +message. A message. m me mes mess BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 6 .-- 3 9 0 0 0 0 1 +service attack. service s se ser serv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 6 ., 2 8 0 0 0 0 1 +endpoint believe endpoint e en end endp BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 6 no 0 9 0 0 0 0 1 +message. By message. m me mes mess BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 6 ., 2 9 0 0 0 0 1 +observation. By observation. o ob obs obse BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 6 ., 2 9 0 0 0 0 1 +the receiving the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 6 no 0 8 0 0 0 0 1 +requested. requested. requested. r re req requ BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 6 . 1 1 0 0 0 0 1 +o Length. o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 11 10 .[], 4 10 0 0 0 0 1 +which may which w wh whi whic BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 10 . 1 9 0 0 0 0 1 +present in present p pr pre pres BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 10 / 1 9 0 0 0 0 1 +message. A message. m me mes mess BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 10 .-- 3 9 0 0 0 0 1 +to changing to t to to to BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 10 . 1 4 0 0 0 0 1 +Selander, et selander, S Se Sel Sela BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 11 ,. 2 10 0 0 1 0 0 +Standards Track standards S St Sta Stan BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 11 11 no 0 9 0 0 0 0 0 +[Page 90] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 11 [] 2 5 0 0 0 0 0 +RFC 8613 rfc R RF RFC RFC BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 11 0 no 0 10 0 0 0 0 1 +OSCORE OSCORE oscore O OS OSC OSCO BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 11 0 no 0 7 0 0 0 0 1 +July 2019 july J Ju Jul July BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 11 0 no 0 10 0 0 0 0 1 +D.5.2. CoAP d.5.2. D D. D.5 D.5. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 0 ... 3 10 0 0 0 0 1 +o Max-Age. o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 11 0 -.- 3 10 0 0 0 0 1 +caching of caching c ca cac cach BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 0 . 1 9 0 0 0 0 1 +cause unnecessary cause c ca cau caus BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 0 . 1 9 0 0 0 0 1 +with this with w wi wit with BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 0 . 1 2 0 0 0 0 1 +o Proxy-Uri/Proxy-Scheme. o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 11 1 -/-. 4 10 0 0 0 0 1 +proxy deployments. proxy p pr pro prox BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 1 .,- 3 9 0 0 0 0 1 +contain the contain c co con cont BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 1 -/-. 4 10 0 0 0 0 1 +of Proxy-Uri of o of of of BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 1 - 1 10 0 0 0 0 1 +change them change c ch cha chan BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 1 . 1 9 0 0 0 0 1 +verify what verify v ve ver veri BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 1 , 1 9 0 0 0 0 1 +requested by requested r re req requ BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 1 . 1 9 0 0 0 0 1 +o Uri-Host/Uri-Port. o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 11 3 -/-.,-/ 7 9 0 0 0 0 1 +Uri-Port may uri-port U Ur Uri Uri- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 3 -, 2 10 0 0 0 0 1 +to handle to t to to to BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 3 (...). 6 9 0 0 0 0 1 +Uri-Host may uri-host U Ur Uri Uri- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 3 -, 2 9 0 0 0 0 1 +that of that t th tha that BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 3 ,- 2 8 0 0 0 0 1 +information, which information, i in inf info BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 3 ,. 2 5 0 0 0 0 1 +o Observe. o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 11 5 . 1 9 0 0 0 0 1 +support forwarding support s su sup supp BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 11 5 , 1 9 0 0 0 0 1 +endpoints since endpoints e en end endp BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 5 no 0 10 0 0 0 0 1 +in the in i in in in BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 11 5 . 1 9 0 0 0 0 1 +of notifications, of o of of of BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 5 , 1 9 0 0 0 0 1 +reordering (see reordering r re reo reor BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 5 (...)., 7 9 0 0 0 0 1 +since only since s si sin sinc BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 5 , 1 9 0 0 0 0 1 +correct ordering correct c co cor corr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 5 . 1 9 0 0 0 0 1 +notifications over notifications n no not noti BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 5 no 0 9 0 0 0 0 1 +or nature or o or or or BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 5 .(....) 7 9 0 0 0 0 1 +are not are a ar are are BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 5 no 0 9 0 0 0 0 1 +responses are responses r re res resp BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 5 (.). 4 9 0 0 0 0 1 +However, that however, H Ho How Howe BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 5 , 1 8 0 0 0 0 1 +cancellations possible, cancellations c ca can canc BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 5 ,, 2 9 0 0 0 0 1 +all options all a al all all BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 5 no 0 9 0 0 0 0 1 +be the be b be be be BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 5 (...). 6 5 0 0 0 0 1 +o Block1/Block2/Size1/Size2. o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 11 9 ///. 4 8 0 0 0 0 1 +fragmentation of fragmentation f fr fra frag BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 9 no 0 9 0 0 0 0 1 +performed by performed p pe per perf BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 9 . 1 8 0 0 0 0 1 +options indicates options o op opt opti BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 9 , 1 10 0 0 0 0 1 +can be can c ca can can BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 9 . 1 9 0 0 0 0 1 +these options these t th the thes BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 9 --,.., 6 9 0 0 0 0 1 +injection of injection i in inj inje BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 9 . 1 9 0 0 0 0 1 +Selander, et selander, S Se Sel Sela BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 11 ,. 2 10 0 0 1 0 0 +Standards Track standards S St Sta Stan BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 11 11 no 0 9 0 0 0 0 0 +[Page 91] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 11 [] 2 5 0 0 0 0 0 +RFC 8613 rfc R RF RFC RFC BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 11 0 no 0 10 0 0 0 0 1 +OSCORE OSCORE oscore O OS OSC OSCO BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 11 0 no 0 7 0 0 0 0 1 +July 2019 july J Ju Jul July BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 11 0 no 0 10 0 0 0 0 1 +maximum size maximum m ma max maxi BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 0 , 1 7 0 0 0 0 1 +(Section 4.1.3.4.2), (section ( (S (Se (Sec BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 0 (....),, 8 10 0 0 0 0 1 +intended as intended i in int inte BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 0 . 1 9 0 0 0 0 1 +o No-Response. o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 11 1 -.- 3 9 0 0 0 0 1 +proxy functionality, proxy p pr pro prox BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 1 , 1 9 0 0 0 0 1 +from proxies from f fr fro from BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 1 , 1 9 0 0 0 0 1 +servers by servers s se ser serv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 1 no 0 9 0 0 0 0 1 +responses. Modifying responses. r re res resp BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 1 . 1 9 0 0 0 0 1 +denial-of-service attack denial-of-service d de den deni BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 1 --, 3 9 0 0 0 0 1 +the option the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 1 , 1 10 0 0 0 0 1 +between the between b be bet betw BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 1 . 1 8 0 0 0 0 1 +expected to expected e ex exp expe BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 1 no 0 9 0 0 0 0 1 +exchange. exchange. exchange. e ex exc exch BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 1 . 1 1 0 0 0 0 1 +o OSCORE. o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 11 4 . 1 9 0 0 0 0 1 +compressed COSE compressed c co com comp BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 4 . 1 10 0 0 0 0 1 +verification to verification v ve ver veri BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 11 4 . 1 3 0 0 0 0 1 +D.5.3. Error d.5.3. D D. D.5 D.5. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 4 ... 3 10 0 0 0 0 1 +Error messages error E Er Err Erro BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 5 -- 2 10 0 0 0 0 1 +end. Error end. e en end end. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 5 . 1 9 0 0 0 0 1 +always possible always a al alw alwa BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 5 ,.., 4 9 0 0 0 0 1 +locate the locate l lo loc loca BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 5 ., 2 9 0 0 0 0 1 +error messages error e er err erro BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 5 no 0 8 0 0 0 0 1 +retransmissions. Those retransmissions. r re ret retr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 5 ., 2 10 0 0 0 0 1 +which is which w wh whi whic BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 5 --. 3 6 0 0 0 0 1 +This document this T Th Thi This BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 7 no 0 9 0 0 0 0 1 +payloads for payloads p pa pay payl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 7 . 1 9 0 0 0 0 1 +reveal information reveal r re rev reve BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 7 no 0 9 0 0 0 0 1 +on the on o on on on BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 7 . 1 9 0 0 0 0 1 +error messages, error e er err erro BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 7 ,, 2 9 0 0 0 0 1 +responding altogether responding r re res resp BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 7 , 1 10 0 0 0 0 1 +a security a a a a a BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 1 0 0 0 0 0 11 7 ., 2 9 0 0 0 0 1 +rely on rely r re rel rely BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 7 no 0 9 0 0 0 0 1 +actions, as actions, a ac act acti BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 7 , 1 9 0 0 0 0 1 +manipulated. manipulated. manipulated. m ma man mani BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 7 . 1 1 0 0 0 0 1 +Signaling messages signaling S Si Sig Sign BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 10 [] 2 10 0 0 0 0 1 +hop-by-hop; spoofing hop-by-hop; h ho hop hop- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 10 --;-- 5 9 0 0 0 0 1 +service attack service s se ser serv BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 10 . 1 5 0 0 0 0 1 +Selander, et selander, S Se Sel Sela BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 11 ,. 2 10 0 0 1 0 0 +Standards Track standards S St Sta Stan BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 11 11 no 0 9 0 0 0 0 0 +[Page 92] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 11 [] 2 5 0 0 0 0 0 +RFC 8613 rfc R RF RFC RFC BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 11 0 no 0 10 0 0 0 0 1 +OSCORE OSCORE oscore O OS OSC OSCO BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 11 0 no 0 7 0 0 0 0 1 +July 2019 july J Ju Jul July BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 11 0 no 0 10 0 0 0 0 1 +D.5.4. HTTP d.5.4. D D. D.5 D.5. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 0 ... 3 10 0 0 0 0 1 +In contrast in I In In In BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 11 0 , 1 9 0 0 0 0 1 +enable CoAP-CoAP enable e en ena enab BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 0 -, 2 9 0 0 0 0 1 +restricted to restricted r re res rest BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 0 . 1 10 0 0 0 0 1 +Any unprotected any A An Any Any BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 0 no 0 9 0 0 0 0 1 +transport of transport t tr tra tran BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 0 -- 2 9 0 0 0 0 1 +attacks. It attacks. a at att atta BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 0 .[] 3 9 0 0 0 0 1 +HTTP hops, http H HT HTT HTTP BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 11 0 , 1 9 0 0 0 0 1 +headers, but headers, h he hea head BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 0 ,. 2 9 0 0 0 0 1 +Appendix E. appendix A Ap App Appe BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 3 . 1 10 0 0 0 0 1 +Data structure data D Da Dat Data BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 3 no 0 9 0 0 0 0 1 +CDDL language cddl C CD CDD CDDL BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 11 3 []. 3 10 0 0 0 0 1 +summarizes the summarizes s su sum summ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 3 no 0 9 0 0 0 0 1 +specification. specification. specification. s sp spe spec BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 3 . 1 2 0 0 0 0 1 +Within the within W Wi Wit With BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 4 ," 2 10 0 0 0 0 1 +type", where type", t ty typ type BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 4 ",""""."" 9 9 0 0 0 0 1 +one of: one o on one one BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 4 : 1 1 0 0 0 0 1 +o a o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 11 5 ,. 2 9 0 0 0 0 1 +predefined named predefined p pr pre pred BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 5 no 0 9 0 0 0 0 1 +follows: "uint", follows: f fo fol foll BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 5 :"",( 5 9 0 0 0 0 1 +major type major m ma maj majo BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 11 5 );"",( 6 8 0 0 0 0 1 +represented in represented r re rep repr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 5 );"", 5 10 0 0 0 0 1 +(as represented (as ( (a (as (as BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 5 ();"", 6 9 0 0 0 0 1 +(as represented (as ( (a (as (as BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 5 (); 3 6 0 0 0 0 1 +o a o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 11 7 , 1 10 0 0 0 0 1 +"/"; "/"; "/"; " "/ "/" "/"; BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 11 7 "/"; 4 0 0 0 0 0 1 +o an o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 11 8 (), 3 10 0 0 0 0 1 +sequence of sequence s se seq sequ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 8 no 0 8 0 0 0 0 1 +sequence of sequence s se seq sequ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 8 ",", 4 9 0 0 0 0 1 +enclosed by enclosed e en enc encl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 8 "[""]". 7 9 0 0 0 0 1 +array description array a ar arr arra BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 8 -- 2 9 0 0 0 0 1 +the sequence the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 8 . 1 9 0 0 0 0 1 +is of is i is is is BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 8 ":","" 6 9 0 0 0 0 1 +the entry the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 8 "" 2 7 0 0 0 0 1 +corresponding to corresponding c co cor corr BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 8 . 1 4 0 0 0 0 1 +Selander, et selander, S Se Sel Sela BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 11 ,. 2 10 0 0 1 0 0 +Standards Track standards S St Sta Stan BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 11 11 no 0 9 0 0 0 0 0 +[Page 93] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 11 [] 2 5 0 0 0 0 0 +RFC 8613 rfc R RF RFC RFC BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 11 0 no 0 10 0 0 0 0 1 +OSCORE OSCORE oscore O OS OSC OSCO BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 11 0 no 0 7 0 0 0 0 1 +July 2019 july J Ju Jul July BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 11 0 no 0 10 0 0 0 0 1 +Acknowledgments Acknowledgments acknowledgments A Ac Ack Ackn BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 0 no 0 10 0 0 0 0 1 +The following the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 0 : 1 10 0 0 0 0 1 +Amsuess, Tobias amsuess, A Am Ams Amsu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 0 ,,,, 4 9 0 0 0 0 1 +Campbell, Esko campbell, C Ca Cam Camp BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 0 ,,,,, 5 9 0 0 0 0 1 +Klaus Hartke, klaus K Kl Kla Klau BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 0 0 0 0 0 0 11 0 ,,,, 4 9 0 0 0 0 1 +Eric Rescorla, eric E Er Eri Eric BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 0 0 0 0 0 0 11 0 ,,,, 4 10 0 0 0 0 1 +der Stok, der d de der der BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 0 ,,,,, 5 10 0 0 0 0 1 +and Malisa and a an and and BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 0 . 1 2 0 0 0 0 1 +Ludwig Seitz ludwig L Lu Lud Ludw BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 0 0 0 0 0 0 11 5 no 0 10 0 0 0 0 1 +the CelticPlus the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 5 ,. 2 9 0 0 0 0 1 +Seitz had seitz S Se Sei Seit BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 0 0 0 0 0 0 11 5 no 0 10 0 0 0 0 1 +the grant the t th the the BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 5 -. 2 3 0 0 0 0 1 +Authors' Addresses authors' A Au Aut Auth BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 8 ' 1 10 0 0 0 0 1 +Goeran Selander goeran G Go Goe Goer BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 8 no 0 10 0 0 0 0 1 +Ericsson AB ericsson E Er Eri Eric BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 8 no 0 7 0 0 0 0 1 +Email: goran.selander@ericsson.com email: E Em Ema Emai BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 8 :.. 3 10 0 0 0 0 1 +John Mattsson john J Jo Joh John BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 0 0 0 0 0 0 11 9 no 0 10 0 0 0 0 1 +Ericsson AB ericsson E Er Eri Eric BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 9 no 0 8 0 0 0 0 1 +Email: john.mattsson@ericsson.com email: E Em Ema Emai BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 9 :.. 3 10 0 0 0 0 1 +Francesca Palombini francesca F Fr Fra Fran BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 0 0 0 0 0 0 11 9 no 0 10 0 0 0 0 1 +Ericsson AB ericsson E Er Eri Eric BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 9 no 0 6 0 0 0 0 1 +Email: francesca.palombini@ericsson.com email: E Em Ema Emai BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 10 :.. 3 10 0 0 0 0 1 +Ludwig Seitz ludwig L Lu Lud Ludw BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 0 0 0 0 0 0 11 10 no 0 10 0 0 0 0 1 +RISE RISE rise R RI RIS RISE BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 11 10 no 0 3 0 0 0 0 1 +Email: ludwig.seitz@ri.se email: E Em Ema Emai BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 10 :.. 3 10 0 0 0 0 1 +Selander, et selander, S Se Sel Sela BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 11 ,. 2 10 0 0 1 0 0 +Standards Track standards S St Sta Stan BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 11 11 no 0 9 0 0 0 0 0 +[Page 94] [page [ [P [Pa [Pag BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 11 [] 2 5 0 0 0 0 0 + diff --git a/grobid-trainer/resources/dataset/segmentation/sdo/ietf/corpus/raw/XP015133683.training.segmentation b/grobid-trainer/resources/dataset/segmentation/sdo/ietf/corpus/raw/XP015133683.training.segmentation new file mode 100644 index 0000000000..08410b872e --- /dev/null +++ b/grobid-trainer/resources/dataset/segmentation/sdo/ietf/corpus/raw/XP015133683.training.segmentation @@ -0,0 +1,408 @@ +server date server s se ser serv BLOCKSTART PAGESTART NEWFONT HIGHERFONT 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 0 ; 1 10 0 0 0 0 0 +Internet Engineering internet I In Int Inte BLOCKSTART PAGEIN NEWFONT HIGHERFONT 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 () 2 10 0 0 0 0 1 +E. Wilde e. E E. E. E. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 . 1 3 0 0 0 0 1 +Request for request R Re Req Requ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 : 1 10 0 0 0 0 1 +July 2019 july J Ju Jul July BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 0 0 no 0 3 0 0 0 0 1 +Category: Informational category: C Ca Cat Cate BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 : 1 8 0 0 0 0 1 +ISSN: 2070-1721 issn: I IS ISS ISSN BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 :- 2 5 0 0 0 0 1 +Link Relation link L Li Lin Link BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 0 1 no 0 10 0 0 0 0 1 +Abstract Abstract abstract A Ab Abs Abst BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 1 no 0 10 0 0 0 0 1 +Many resources many M Ma Man Many BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 0 1 no 0 10 0 0 0 0 1 +are provided are a ar are are BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 1 no 0 9 0 0 0 0 1 +provider. Often, provider. p pr pro prov BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 1 .," 3 9 0 0 0 0 1 +services" or services" s se ser serv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 1 """. 4 9 0 0 0 0 1 +that represent that t th tha that BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 1 no 0 9 0 0 0 0 1 +that provide that t th tha that BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 1 ,,, 3 8 0 0 0 0 1 +information for information i in inf info BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 1 . 1 9 0 0 0 0 1 +for human for f fo for for BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 1 , 1 9 0 0 0 0 1 +automated consumers. automated a au aut auto BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 1 .' 2 9 0 0 0 0 1 +context. This context. c co con cont BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 1 . 1 9 0 0 0 0 1 +status resources status s st sta stat BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 1 no 0 10 0 0 0 0 1 +status. status. status. s st sta stat BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 1 . 1 1 0 0 0 0 1 +Status of status S St Sta Stat BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 6 no 0 10 0 0 0 0 1 +This document this T Th Thi This BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 6 ; 1 10 0 0 0 0 1 +published for published p pu pub publ BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 6 . 1 5 0 0 0 0 1 +This document this T Th Thi This BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 7 no 0 9 0 0 0 0 1 +(IETF). It (ietf). ( (I (IE (IET BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 7 ().. 4 9 0 0 0 0 1 +received public received r re rec rece BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 7 no 0 10 0 0 0 0 1 +Internet Engineering internet I In Int Inte BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 7 (). 3 9 0 0 0 0 1 +approved by approved a ap app appr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 7 no 0 9 0 0 0 0 1 +Standard; see standard; S St Sta Stan BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 7 ;. 2 5 0 0 0 0 1 +Information about information I In Inf Info BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 10 ,, 2 10 0 0 0 0 1 +and how and a an and and BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 10 no 0 7 0 0 0 0 1 +https://www.rfc-editor.org/info/rfc8631. https://www.rfc-editor.org/info/rfc8631. https://www.rfc-editor.org/info/rfc8631. h ht htt http BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 1 0 10 ://.-.//. 9 6 0 0 0 0 1 +Wilde Wilde wilde W Wi Wil Wild BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 0 0 0 0 0 0 0 11 no 0 4 0 0 0 0 0 +Informational Informational informational I In Inf Info BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 11 no 0 10 0 0 0 0 0 +[Page 1] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 11 [] 2 6 0 0 0 0 0 +RFC 8631 rfc R RF RFC RFC BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 no 0 10 0 0 0 0 1 +Link Relation link L Li Lin Link BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 0 0 no 0 10 0 0 1 1 1 +July 2019 july J Ju Jul July BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 0 0 no 0 2 0 0 0 0 1 +Copyright Notice copyright C Co Cop Copy BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 no 0 10 0 0 0 0 1 +Copyright (c) copyright C Co Cop Copy BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 () 2 10 0 0 0 0 1 +document authors. document d do doc docu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 .. 2 6 0 0 0 0 1 +This document this T Th Thi This BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 0 ' 1 8 0 0 0 0 1 +Provisions Relating provisions P Pr Pro Prov BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 0 no 0 5 0 0 0 0 1 +(https://trustee.ietf.org/license-info) in (https://trustee.ietf.org/license-info) ( (h (ht (htt BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 1 1 0 (://../-) 9 9 0 0 0 0 1 +publication of publication p pu pub publ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 0 . 1 8 0 0 0 0 1 +carefully, as carefully, c ca car care BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 0 , 1 10 0 0 0 0 1 +to this to t to to to BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 0 . 1 9 0 0 0 0 1 +include Simplified include i in inc incl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 0 . 1 9 0 0 0 0 1 +the Trust the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 0 no 0 9 0 0 0 0 1 +described in described d de des desc BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 0 . 1 5 0 0 0 0 1 +Table of table T Ta Tab Tabl BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 2 no 0 10 0 0 0 0 1 +1. Introduction 1. 1 1. 1. 1. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 2 ......................... 25 9 0 0 0 0 1 +2 2 2 2 2 2 2 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 1 2 no 0 0 0 0 0 0 1 +2. Terminology 2. 2 2. 2. 2. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 2 .......................... 26 10 0 0 0 0 1 +4 4 4 4 4 4 4 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 1 2 no 0 0 0 0 0 0 1 +3. Web 3. 3 3. 3. 3. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 2 ......................... 25 9 0 0 0 0 1 +4 4 4 4 4 4 4 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 1 2 no 0 0 0 0 0 0 1 +3.1. Documenting 3.1. 3 3. 3.1 3.1. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 2 .................. 18 9 0 0 0 0 1 +5 5 5 5 5 5 5 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 1 2 no 0 0 0 0 0 0 1 +3.2. Describing 3.2. 3 3. 3.2 3.2. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 2 ................... 19 9 0 0 0 0 1 +5 5 5 5 5 5 5 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 1 2 no 0 0 0 0 0 0 1 +3.3. Unified 3.3. 3 3. 3.3 3.3. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 2 ../............ 15 9 0 0 0 0 1 +5 5 5 5 5 5 5 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 1 2 no 0 0 0 0 0 0 1 +4. Link 4. 4 4. 4. 4. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 2 ................ 16 10 0 0 0 0 1 +5 5 5 5 5 5 5 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 1 2 no 0 0 0 0 0 0 1 +4.1. The 4.1. 4 4. 4.1 4.1. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 2 ..-........... 14 9 0 0 0 0 1 +6 6 6 6 6 6 6 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 1 2 no 0 0 0 0 0 0 1 +4.2. The 4.2. 4 4. 4.2 4.2. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 2 ..-........... 14 9 0 0 0 0 1 +6 6 6 6 6 6 6 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 1 2 no 0 0 0 0 0 0 1 +4.3. The 4.3. 4 4. 4.3 4.3. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 2 ..-........... 14 9 0 0 0 0 1 +6 6 6 6 6 6 6 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 1 2 no 0 0 0 0 0 0 1 +5. Web 5. 5 5. 5. 5. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 2 ................. 17 9 0 0 0 0 1 +7 7 7 7 7 7 7 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 1 2 no 0 0 0 0 0 0 1 +6. IANA 6. 6 6. 6. 6. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 2 ...................... 22 10 0 0 0 0 1 +7 7 7 7 7 7 7 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 1 2 no 0 0 0 0 0 0 1 +6.1. Link 6.1. 6 6. 6.1 6.1. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 2 ..:-............. 17 9 0 0 0 0 1 +7 7 7 7 7 7 7 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 1 2 no 0 0 0 0 0 0 1 +6.2. Link 6.2. 6 6. 6.2 6.2. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 2 ..:-............ 16 9 0 0 0 0 1 +7 7 7 7 7 7 7 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 1 2 no 0 0 0 0 0 0 1 +6.3. Link 6.3. 6 6. 6.3 6.3. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 2 ..:-............ 16 9 0 0 0 0 1 +8 8 8 8 8 8 8 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 1 2 no 0 0 0 0 0 0 1 +6.4. Link 6.4. 6 6. 6.4 6.4. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 2 ..:............... 18 9 0 0 0 0 1 +8 8 8 8 8 8 8 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 1 2 no 0 0 0 0 0 0 1 +7. Security 7. 7 7. 7. 7. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 2 .................... 20 10 0 0 0 0 1 +8 8 8 8 8 8 8 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 1 2 no 0 0 0 0 0 0 1 +8. References 8. 8 8. 8. 8. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 2 .......................... 26 9 0 0 0 0 1 +9 9 9 9 9 9 9 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 1 2 no 0 0 0 0 0 0 1 +8.1. Normative 8.1. 8 8. 8.1 8.1. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 2 .................... 20 9 0 0 0 0 1 +9 9 9 9 9 9 9 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 1 2 no 0 0 0 0 0 0 1 +8.2. Informative 8.2. 8 8. 8.2 8.2. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 2 ................... 19 9 0 0 0 0 1 +9 9 9 9 9 9 9 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 1 2 no 0 0 0 0 0 0 1 +Acknowledgements . acknowledgements A Ac Ack Ackn BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 2 ........................ 24 10 0 0 0 0 1 +9 9 9 9 9 9 9 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 1 2 no 0 0 0 0 0 0 1 +Author's Address author's A Au Aut Auth BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 1 2 '........................ 25 10 0 0 0 0 1 +9 9 9 9 9 9 9 BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 1 2 no 0 0 0 0 0 0 1 +Wilde Wilde wilde W Wi Wil Wild BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 0 0 0 0 0 0 3 11 no 0 4 0 0 0 0 0 +Informational Informational informational I In Inf Info BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 3 11 no 0 10 0 0 0 0 0 +[Page 2] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 11 [] 2 6 0 0 0 0 0 +RFC 8631 rfc R RF RFC RFC BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 3 0 no 0 10 0 0 0 0 1 +Link Relation link L Li Lin Link BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 3 0 no 0 10 0 0 1 0 1 +July 2019 july J Ju Jul July BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 3 0 no 0 2 0 0 0 0 1 +1. Introduction 1. 1 1. 1. 1. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 3 0 . 1 10 0 0 0 0 1 +One of one O On One One BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 0 no 0 9 0 0 0 0 1 +interact with interact i in int inte BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 0 no 0 9 0 0 0 0 1 +specifics of specifics s sp spe spec BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 0 . 1 9 0 0 0 0 1 +architecture [W3C.REC-webarch-20041215] architecture a ar arc arch BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 0 [.--],, 7 9 0 0 0 0 1 +media types, media m me med medi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 0 ,' 2 9 0 0 0 0 1 +resources without resources r re res reso BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 0 no 0 10 0 0 0 0 1 +with other with w wi wit with BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 0 . 1 3 0 0 0 0 1 +Many resources many M Ma Man Many BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 3 2 no 0 9 0 0 0 0 1 +that are that t th tha that BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 2 """". 5 9 0 0 0 0 1 +cases, these cases, c ca cas case BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 2 ,, 2 10 0 0 0 0 1 +it may it i it it it BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 2 no 0 9 0 0 0 0 1 +information. information. information. i in inf info BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 2 . 1 1 0 0 0 0 1 +Service information service S Se Ser Serv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 3 no 0 9 0 0 0 0 1 +resources can resources r re res reso BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 3 : 1 10 0 0 0 0 1 +primarily targets primarily p pr pri prim BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 3 no 0 10 0 0 0 0 1 +for human for f fo for for BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 3 ,. 2 8 0 0 0 0 1 +category is category c ca cat cate BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 3 no 0 9 0 0 0 0 1 +description model description d de des desc BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 3 no 0 9 0 0 0 0 1 +machines --for machines m ma mac mach BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 3 --,. 4 7 0 0 0 0 1 +In the in I In In In BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 3 5 ,- 2 10 0 0 0 0 1 +to as to t to to to BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 5 "",- 4 10 0 0 0 0 1 +to as to t to to to BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 5 "". 3 3 0 0 0 0 1 +These two these T Th The Thes BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 6 , 1 9 0 0 0 0 1 +representations have representations r re rep repr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 6 no 0 9 0 0 0 0 1 +consumption and consumption c co con cons BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 6 ., 2 9 0 0 0 0 1 +typical pattern typical t ty typ typi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 6 / 1 9 0 0 0 0 1 +is human-oriented, is i is is is BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 6 -,- 3 10 0 0 0 0 1 +service in service s se ser serv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 6 , 1 8 0 0 0 0 1 +complemented by complemented c co com comp BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 6 - 1 9 0 0 0 0 1 +detailed technical detailed d de det deta BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 6 . 1 9 0 0 0 0 1 +could be could c co cou coul BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 6 , 1 9 0 0 0 0 1 +audiences, it audiences, a au aud audi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 6 , 1 9 0 0 0 0 1 +them. them. them. t th the them BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 6 . 1 0 0 0 0 0 1 +In addition, in I In In In BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 4 9 , 1 8 0 0 0 0 1 +provided as provided p pr pro prov BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 9 , 1 9 0 0 0 0 1 +well. Generally well. w we wel well BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 9 .,/ 3 9 0 0 0 0 1 +resources associated resources r re res reso BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 9 ( 1 9 0 0 0 0 1 +being two being b be bei bein BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 9 ). 2 9 0 0 0 0 1 +all of all a al all all BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 9 /, 2 10 0 0 0 0 1 +possible to possible p po pos poss BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 9 no 0 9 0 0 0 0 1 +service metadata. service s se ser serv BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 9 . 1 2 0 0 0 0 1 +Wilde Wilde wilde W Wi Wil Wild BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 0 0 0 0 0 0 4 11 no 0 4 0 0 0 0 0 +Informational Informational informational I In Inf Info BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 4 11 no 0 10 0 0 0 0 0 +[Page 3] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 11 [] 2 6 0 0 0 0 0 +RFC 8631 rfc R RF RFC RFC BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 4 0 no 0 10 0 0 0 0 1 +Link Relation link L Li Lin Link BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 4 0 no 0 10 0 0 1 0 1 +July 2019 july J Ju Jul July BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 4 0 no 0 2 0 0 0 0 1 +In addition in I In In In BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 4 0 no 0 9 0 0 0 0 1 +service, this service, s se ser serv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 0 , 1 10 0 0 0 0 1 +of a of o of of of BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 0 no 0 8 0 0 0 0 1 +information about information i in inf info BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 0 . 1 9 0 0 0 0 1 +operational information operational o op ope oper BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 0 no 0 9 0 0 0 0 1 +information about information i in inf info BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 0 "". 3 7 0 0 0 0 1 +This memo this T Th Thi This BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 2 no 0 9 0 0 0 0 1 +for all for f fo for for BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 2 . 1 9 0 0 0 0 1 +service to service s se ser serv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 2 ,,, 3 10 0 0 0 0 1 +of their of o of of of BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 2 no 0 9 0 0 0 0 1 +that purpose. that t th tha that BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 2 . 1 2 0 0 0 0 1 +2. Terminology 2. 2 2. 2. 2. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 3 . 1 10 0 0 0 0 1 +The key the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 3 "","","","","", 15 9 0 0 0 0 1 +"SHOULD", "SHOULD "should", " "S "SH "SHO BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 5 3 "","","","","", 15 10 0 0 0 0 1 +"OPTIONAL" in "optional" " "O "OP "OPT BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 5 3 "" 2 9 0 0 0 0 1 +BCP 14 bcp B BC BCP BCP BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 5 3 [][],, 6 9 0 0 0 0 1 +capitals, as capitals, c ca cap capi BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 3 ,. 2 3 0 0 0 0 1 +3. Web 3. 3 3. 3. 3. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 5 . 1 10 0 0 0 0 1 +"Web Services" "web " "W "We "Web BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 5 """"(" 6 10 0 0 0 0 1 +API" or api" A AP API API" BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 5 5 """). 5 9 0 0 0 0 1 +Following the following F Fo Fol Foll BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 5 no 0 6 0 0 0 0 1 +[W3C.REC-webarch-20041215], they [w3c.rec-webarch-20041215], [ [W [W3 [W3C BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 1 0 0 0 5 5 [.--],-, 8 10 0 0 0 0 1 +which are which w wh whi whic BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 5 no 0 8 0 0 0 0 1 +representation. Many representation. r re rep repr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 5 . 1 9 0 0 0 0 1 +links, and links, l li lin link BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 5 ,. 2 6 0 0 0 0 1 +Using typed using U Us Usi Usin BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 7 , 1 10 0 0 0 0 1 +resources. RFC resources. r re res reso BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 7 .[] 3 9 0 0 0 0 1 +link relation link l li lin link BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 5 7 , 1 9 0 0 0 0 1 +registered in registered r re reg regi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 7 . 1 9 0 0 0 0 1 +links according links l li lin link BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 7 no 0 8 0 0 0 0 1 +represent resource represent r re rep repr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 7 no 0 8 0 0 0 0 1 +reinvent registered reinvent r re rei rein BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 7 . 1 5 0 0 0 0 1 +In recent in I In In In BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 5 9 ,, 2 9 0 0 0 0 1 +description languages, description d de des desc BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 9 , 1 9 0 0 0 0 1 +popularity of popularity p po pop popu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 9 no 0 9 0 0 0 0 1 +services. However, services. s se ser serv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 9 ., 2 9 0 0 0 0 1 +languages varies languages l la lan lang BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 9 , 1 9 0 0 0 0 1 +general application general g ge gen gene BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 9 ,, 2 10 0 0 0 0 1 +the preferred the t th the the BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 9 . 1 6 0 0 0 0 1 +Wilde Wilde wilde W Wi Wil Wild BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 0 0 0 0 0 0 5 11 no 0 4 0 0 0 0 0 +Informational Informational informational I In Inf Info BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 5 11 no 0 10 0 0 0 0 0 +[Page 4] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 11 [] 2 6 0 0 0 0 0 +RFC 8631 rfc R RF RFC RFC BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 5 0 no 0 10 0 0 0 0 1 +Link Relation link L Li Lin Link BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 5 0 no 0 10 0 0 1 0 1 +July 2019 july J Ju Jul July BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 5 0 no 0 2 0 0 0 0 1 +This specification this T Th Thi This BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 0 no 0 10 0 0 0 0 1 +to link to t to to to BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 0 /. 2 9 0 0 0 0 1 +should not should s sh sho shou BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 0 no 0 8 0 0 0 0 1 +documentation and/or documentation d do doc docu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 6 0 /, 2 9 0 0 0 0 1 +those that those t th tho thos BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 0 . 1 6 0 0 0 0 1 +This specification this T Th Thi This BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 2 no 0 9 0 0 0 0 1 +service metadata. service s se ser serv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 2 . 1 8 0 0 0 0 1 +documentation and/or documentation d do doc docu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 6 2 / 1 10 0 0 0 0 1 +service, such service, s se ser serv BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 2 ,. 2 8 0 0 0 0 1 +3.1. Documenting 3.1. 3 3. 3.1 3.1. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 3 .. 2 10 0 0 0 0 1 +In the in I In In In BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 6 3 ,"" 3 9 0 0 0 0 1 +information that information i in inf info BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 3 . 1 9 0 0 0 0 1 +Typical representations typical T Ty Typ Typi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 3 no 0 10 0 0 0 0 1 +PDF. PDF. pdf. P PD PDF PDF. BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 6 3 . 1 0 0 0 0 0 1 +Documentation is documentation D Do Doc Docu BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 6 4 , 1 10 0 0 0 0 1 +structure of structure s st str stru BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 4 no 0 10 0 0 0 0 1 +which the which w wh whi whic BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 4 . 1 5 0 0 0 0 1 +3.2. Describing 3.2. 3 3. 3.2 3.2. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 5 .. 2 10 0 0 0 0 1 +In the in I In In In BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 6 5 ,"" 3 8 0 0 0 0 1 +information that information i in inf info BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 5 . 1 9 0 0 0 0 1 +Typical representations typical T Ty Typ Typi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 5 no 0 10 0 0 0 0 1 +service itself, service s se ser serv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 5 ,' 2 9 0 0 0 0 1 +technology landscape technology t te tec tech BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 5 ,, 2 9 0 0 0 0 1 +Framework (RDF), framework F Fr Fra Fram BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 5 (),. 4 9 0 0 0 0 1 +each of each e ea eac each BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 5 , 1 9 0 0 0 0 1 +defined to defined d de def defi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 5 no 0 8 0 0 0 0 1 +service. service. service. s se ser serv BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 5 . 1 1 0 0 0 0 1 +Descriptions are descriptions D De Des Desc BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 8 , 1 9 0 0 0 0 1 +depend on depend d de dep depe BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 8 ., 2 9 0 0 0 0 1 +the earlier the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 8 , 1 8 0 0 0 0 1 +Description Language description D De Des Desc BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 8 (),"", 6 10 0 0 0 0 1 +which are which w wh whi whic BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 8 no 0 9 0 0 0 0 1 +underlying model underlying u un und unde BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 8 (). 3 10 0 0 0 0 1 +Other description other O Ot Oth Othe BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 8 - 1 10 0 0 0 0 1 +use different use u us use use BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 8 , 1 9 0 0 0 0 1 +descriptions by descriptions d de des desc BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 8 /. 2 6 0 0 0 0 1 +Wilde Wilde wilde W Wi Wil Wild BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 0 0 0 0 0 0 7 11 no 0 4 0 0 0 0 0 +Informational Informational informational I In Inf Info BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 7 11 no 0 10 0 0 0 0 0 +[Page 5] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 7 11 [] 2 6 0 0 0 0 0 +RFC 8631 rfc R RF RFC RFC BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 7 0 no 0 10 0 0 0 0 1 +Link Relation link L Li Lin Link BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 7 0 no 0 10 0 0 1 0 1 +July 2019 july J Ju Jul July BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 7 0 no 0 2 0 0 0 0 1 +3.3. Unified 3.3. 3 3. 3.3 3.3. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 0 ../ 3 10 0 0 0 0 1 +If service if I If If If BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 0 no 0 9 0 0 0 0 1 +between service between b be bet betw BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 0 (.) 3 9 0 0 0 0 1 +(Section 3.2), (section ( (S (Se (Sec BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 7 0 (.), 4 9 0 0 0 0 1 +links. In links. l li lin link BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 0 ., 2 8 0 0 0 0 1 +previously defined previously p pr pre prev BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 0 ""[], 5 10 0 0 0 0 1 +not indicate not n no not not BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 0 no 0 9 0 0 0 0 1 +thus may thus t th thu thus BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 0 . 1 9 0 0 0 0 1 +4. Link 4. 4 4. 4. 4. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 2 . 1 10 0 0 0 0 1 +In order in I In In In BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 7 3 no 0 8 0 0 0 0 1 +individual resources individual i in ind indi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 3 / 1 8 0 0 0 0 1 +metadata, this metadata, m me met meta BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 7 3 , 1 10 0 0 0 0 1 +relation types. relation r re rel rela BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 3 . 1 2 0 0 0 0 1 +4.1. The 4.1. 4 4. 4.1 4.1. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 4 ..- 3 10 0 0 0 0 1 +The "service-doc" the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 4 "-" 3 10 0 0 0 0 1 +that a that t th tha that BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 4 no 0 9 0 0 0 0 1 +URI. The uri. U UR URI URI. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 7 4 . 1 10 0 0 0 0 1 +is primarily is i is is is BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 4 . 1 6 0 0 0 0 1 +4.2. The 4.2. 4 4. 4.2 4.2. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 5 ..- 3 10 0 0 0 0 1 +The "service-desc" the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 5 "-" 3 9 0 0 0 0 1 +that a that t th tha that BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 5 . 1 10 0 0 0 0 1 +The target the T Th The The BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 5 no 0 10 0 0 0 0 1 +is primarily is i is is is BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 5 ., 2 9 0 0 0 0 1 +provided in provided p pr pro prov BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 5 , 1 8 0 0 0 0 1 +libraries, or libraries, l li lib libr BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 5 ,. 2 4 0 0 0 0 1 +4.3. The 4.3. 4 4. 4.3 4.3. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 7 ..- 3 10 0 0 0 0 1 +The "service-meta" the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 7 "-" 3 9 0 0 0 0 1 +metadata for metadata m me met meta BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 7 . 1 9 0 0 0 0 1 +any kind any a an any any BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 7 no 0 9 0 0 0 0 1 +service users, service s se ser serv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 7 ,/ 2 10 0 0 0 0 1 +facets of facets f fa fac face BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 7 . 1 9 0 0 0 0 1 +provide a provide p pr pro prov BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 7 no 0 9 0 0 0 0 1 +consumption. In consumption. c co con cons BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 7 ., 2 9 0 0 0 0 1 +is consumed is i is is is BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 7 ,,. 3 8 0 0 0 0 1 +Since service since S Si Sin Sinc BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 10 no 0 10 0 0 0 0 1 +different representations, different d di dif diff BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 10 , 1 9 0 0 0 0 1 +using the using u us usi usin BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 10 "-" 3 9 0 0 0 0 1 +about the about a ab abo abou BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 10 . 1 9 0 0 0 0 1 +Wilde Wilde wilde W Wi Wil Wild BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 0 0 0 0 0 0 8 11 no 0 4 0 0 0 0 0 +Informational Informational informational I In Inf Info BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 8 11 no 0 10 0 0 0 0 0 +[Page 6] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 11 [] 2 6 0 0 0 0 0 +RFC 8631 rfc R RF RFC RFC BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 0 no 0 10 0 0 0 0 1 +Link Relation link L Li Lin Link BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 8 0 no 0 10 0 0 1 0 1 +July 2019 july J Ju Jul July BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 8 0 no 0 2 0 0 0 0 1 +This definition this T Th Thi This BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 0 "-" 3 10 0 0 0 0 1 +assumptions about assumptions a as ass assu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 0 , 1 9 0 0 0 0 1 +specific mechanism specific s sp spe spec BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 0 "- 2 9 0 0 0 0 1 +meta" link meta" m me met meta BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 0 ". 2 5 0 0 0 0 1 +One example one O On One One BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 1 "-" 3 9 0 0 0 0 1 +description, which description, d de des desc BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 1 ,- 2 10 0 0 0 0 1 +of a of o of of of BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 1 ."-" 4 9 0 0 0 0 1 +contains additional contains c co con cont BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 1 , 1 9 0 0 0 0 1 +classify the classify c cl cla clas BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 1 no 0 9 0 0 0 0 1 +that makes that t th tha that BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 1 no 0 9 0 0 0 0 1 +identifiable information. identifiable i id ide iden BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 1 . 1 3 0 0 0 0 1 +5. Web 5. 5 5. 5. 5. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 4 . 1 10 0 0 0 0 1 +Web services web W We Web Web BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 9 4 no 0 9 0 0 0 0 1 +hosted and hosted h ho hos host BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 4 no 0 9 0 0 0 0 1 +may be may m ma may may BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 1 0 0 9 4 . 1 9 0 0 0 0 1 +that a that t th tha that BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 4 , 1 8 0 0 0 0 1 +information about information i in inf info BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 4 / 1 10 0 0 0 0 1 +status information, status s st sta stat BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 4 ,. 2 10 0 0 0 0 1 +The "status" the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 6 "" 2 9 0 0 0 0 1 +resource, allowing resource, r re res reso BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 6 , 1 9 0 0 0 0 1 +Web service's web W We Web Web BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 9 6 '. 2 9 0 0 0 0 1 +all resources all a al all all BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 6 -- 2 9 0 0 0 0 1 +such as such s su suc such BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 6 '/' 3 9 0 0 0 0 1 +resource (i.e., resource r re res reso BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 6 (..,). 6 10 0 0 0 0 1 +This memo this T Th Thi This BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 9 no 0 10 0 0 0 0 1 +in any in i in in in BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 9 9 . 1 8 0 0 0 0 1 +consumption or consumption c co con cons BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 9 ." 2 9 0 0 0 0 1 +light" indicator light" l li lig ligh BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 9 " 1 8 0 0 0 0 1 +representation conveying representation r re rep repr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 9 , 1 10 0 0 0 0 1 +subsystems and/or subsystems s su sub subs BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 9 /. 2 5 0 0 0 0 1 +Wilde Wilde wilde W Wi Wil Wild BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 0 0 0 0 0 0 9 11 no 0 4 0 0 0 0 0 +Informational Informational informational I In Inf Info BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 9 11 no 0 10 0 0 0 0 0 +[Page 7] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 11 [] 2 6 0 0 0 0 0 +RFC 8631 rfc R RF RFC RFC BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 0 no 0 10 0 0 0 0 1 +Link Relation link L Li Lin Link BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 9 0 no 0 10 0 0 1 0 1 +July 2019 july J Ju Jul July BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 9 0 no 0 2 0 0 0 0 1 +6. IANA 6. 6 6. 6. 6. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 0 . 1 10 0 0 0 0 1 +The link the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 1 no 0 10 0 0 0 0 1 +Section 4.2 section S Se Sec Sect BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 1 .[]. 4 5 0 0 0 0 1 +6.1. Link 6.1. 6 6. 6.1 6.1. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 2 ..:- 4 10 0 0 0 0 1 +Relation Name: relation R Re Rel Rela BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 3 :- 2 10 0 0 0 0 1 +Description: Identifies description: D De Des Desc BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 3 : 1 10 0 0 0 0 1 +is primarily is i is is is BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 3 . 1 6 0 0 0 0 1 +Reference: RFC reference: R Re Ref Refe BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 4 : 1 10 0 0 0 0 1 +6.2. Link 6.2. 6 6. 6.2 6.2. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 4 ..:- 4 10 0 0 0 0 1 +Relation Name: relation R Re Rel Rela BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 5 :- 2 10 0 0 0 0 1 +Description: Identifies description: D De Des Desc BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 5 : 1 10 0 0 0 0 1 +primarily intended primarily p pr pri prim BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 5 . 1 7 0 0 0 0 1 +Reference: RFC reference: R Re Ref Refe BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 6 : 1 10 0 0 0 0 1 +6.3. Link 6.3. 6 6. 6.3 6.3. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 7 ..:- 4 10 0 0 0 0 1 +Relation Name: relation R Re Rel Rela BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 7 :- 2 10 0 0 0 0 1 +Description: Identifies description: D De Des Desc BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 8 : 1 10 0 0 0 0 1 +primarily intended primarily p pr pri prim BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 8 . 1 7 0 0 0 0 1 +Reference: RFC reference: R Re Ref Refe BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 9 : 1 10 0 0 0 0 1 +6.4. Link 6.4. 6 6. 6.4 6.4. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 9 ..: 3 10 0 0 0 0 1 +Relation Name: relation R Re Rel Rela BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 10 : 1 10 0 0 0 0 1 +Description: Identifies description: D De Des Desc BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 10 :' 2 10 0 0 0 0 1 +status. status. status. s st sta stat BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 10 . 1 1 0 0 0 0 1 +Reference: RFC reference: R Re Ref Refe BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 11 : 1 10 0 0 0 0 1 +Wilde Wilde wilde W Wi Wil Wild BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 0 0 0 0 0 0 10 11 no 0 4 0 0 0 0 0 +Informational Informational informational I In Inf Info BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 10 11 no 0 10 0 0 0 0 0 +[Page 8] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 11 [] 2 6 0 0 0 0 0 +RFC 8631 rfc R RF RFC RFC BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 0 no 0 10 0 0 0 0 1 +Link Relation link L Li Lin Link BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 10 0 no 0 10 0 0 1 0 1 +July 2019 july J Ju Jul July BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 10 0 no 0 2 0 0 0 0 1 +7. Security 7. 7 7. 7. 7. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 0 . 1 10 0 0 0 0 1 +Web service web W We Web Web BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 10 0 no 0 9 0 0 0 0 1 +documentation may documentation d do doc docu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 10 0 no 0 10 0 0 0 0 1 +about a about a ab abo abou BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 0 () 2 9 0 0 0 0 1 +known security known k kn kno know BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 0 . 1 9 0 0 0 0 1 +descriptions and descriptions d de des desc BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 0 no 0 9 0 0 0 0 1 +necessary and necessary n ne nec nece BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 0 no 0 10 0 0 0 0 1 +the service. the t th the the BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 0 . 1 1 0 0 0 0 1 +Another potential another A An Ano Anot BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 2 no 0 9 0 0 0 0 1 +publishing service publishing p pu pub publ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 2 no 0 10 0 0 0 0 1 +clients (both clients c cl cli clie BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 2 () 2 9 0 0 0 0 1 +access to access a ac acc acce BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 2 . 1 9 0 0 0 0 1 +service's potential service's s se ser serv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 2 ' 1 9 0 0 0 0 1 +exploit or exploit e ex exp expl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 2 no 0 9 0 0 0 0 1 +is accessed is i is is is BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 2 . 1 4 0 0 0 0 1 +Web service web W We Web Web BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 10 5 no 0 9 0 0 0 0 1 +documentation can documentation d do doc docu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 10 5 . 1 8 0 0 0 0 1 +trusting service trusting t tr tru trus BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 5 ( 1 9 0 0 0 0 1 +descriptions are descriptions d de des desc BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 5 ) 1 10 0 0 0 0 1 +safe practice. safe s sa saf safe BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 5 . 1 9 0 0 0 0 1 +service descriptions service s se ser serv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 5 no 0 9 0 0 0 0 1 +therefore be therefore t th the ther BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 5 . 1 7 0 0 0 0 1 +8. References 8. 8 8. 8. 8. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 7 . 1 10 0 0 0 0 1 +8.1. Normative 8.1. 8 8. 8.1 8.1. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 7 .. 2 10 0 0 0 0 1 +[RFC2119] Bradner, [rfc2119] [ [R [RF [RFC BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 1 0 0 0 11 8 [],.," 6 10 0 0 0 0 1 +Requirement Levels", requirement R Re Req Requ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 8 ",,, 4 6 0 0 0 0 1 +DOI 10.17487/RFC2119, doi D DO DOI DOI BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 1 0 0 0 0 0 0 11 8 ./,, 4 5 0 0 0 0 1 +<https://www.rfc-editor.org/info/rfc2119>. <https://www.rfc-editor.org/info/rfc2119>. <https://www.rfc-editor.org/info/rfc2119>. < <h <ht <htt BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 1 0 0 1 11 8 ://.-.//. 9 6 0 0 0 0 1 +[RFC8174] Leiba, [rfc8174] [ [R [RF [RFC BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 9 [],.," 6 10 0 0 0 0 1 +2119 Key 2119 2 21 211 2119 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 0 0 0 0 1 0 0 0 11 9 ",,,./, 7 8 0 0 0 0 1 +May 2017, may M Ma May May BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 11 9 ,://.-.//. 10 8 0 0 0 0 1 +[RFC8288] Nottingham, [rfc8288] [ [R [RF [RFC BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 10 [],.,"",, 9 10 0 0 0 0 1 +DOI 10.17487/RFC8288, doi D DO DOI DOI BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 1 0 0 0 0 0 0 11 10 ./,, 4 7 0 0 0 0 1 +<https://www.rfc-editor.org/info/rfc8288>. <https://www.rfc-editor.org/info/rfc8288>. <https://www.rfc-editor.org/info/rfc8288>. < <h <ht <htt BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 1 11 10 ://.-.//. 9 8 0 0 0 0 1 +Wilde Wilde wilde W Wi Wil Wild BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 0 0 0 0 0 0 11 11 no 0 4 0 0 0 0 0 +Informational Informational informational I In Inf Info BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 11 no 0 10 0 0 0 0 0 +[Page 9] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 11 [] 2 6 0 0 0 0 0 +RFC 8631 rfc R RF RFC RFC BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 11 0 no 0 10 0 0 0 0 1 +Link Relation link L Li Lin Link BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 11 0 no 0 10 0 0 1 0 1 +July 2019 july J Ju Jul July BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 11 0 no 0 2 0 0 0 0 1 +8.2. Informative 8.2. 8 8. 8.2 8.2. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 0 .. 2 10 0 0 0 0 1 +[RFC5023] Gregorio, [rfc5023] [ [R [RF [RFC BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 1 [],.,..,.," 11 10 0 0 0 0 1 +Publishing Protocol", publishing P Pu Pub Publ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 1 ",,./, 6 9 0 0 0 0 1 +October 2007, october O Oc Oct Octo BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 11 1 ,://.-.//. 10 9 0 0 0 0 1 +[W3C.REC-webarch-20041215] [W3C.REC-webarch-20041215] [w3c.rec-webarch-20041215] [ [W [W3 [W3C BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 1 0 0 0 11 4 [.--] 5 4 0 0 0 0 1 +Jacobs, I. jacobs, J Ja Jac Jaco BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 4 ,..," 5 10 0 0 0 0 1 +Web, Volume web, W We Web Web, BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 4 ,", 3 7 0 0 0 0 1 +Recommendation REC-webarch-20041215, recommendation R Re Rec Reco BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 4 --,, 4 9 0 0 0 0 1 +<http://www.w3.org/TR/2004/REC-webarch-20041215>. <http://www.w3.org/TR/2004/REC-webarch-20041215>. <http://www.w3.org/tr/2004/rec-webarch-20041215>. < <h <ht <htt BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 1 0 0 1 11 4 ://..///--. 11 8 0 0 0 0 1 +Acknowledgements Acknowledgements acknowledgements A Ac Ack Ackn BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 7 no 0 10 0 0 0 0 1 +Thanks to thanks T Th Tha Than BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 7 ,,,, 4 10 0 0 0 0 1 +Benjamin Kaduk, benjamin B Be Ben Benj BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 0 0 0 0 0 0 11 7 ,,, 3 10 0 0 0 0 1 +their comments their t th the thei BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 7 . 1 4 0 0 0 0 1 +Author's Address author's A Au Aut Auth BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 10 ' 1 10 0 0 0 0 1 +Erik Wilde erik E Er Eri Erik BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 0 0 0 0 0 0 11 10 no 0 10 0 0 0 0 1 +Email: erik.wilde@dret.net email: E Em Ema Emai BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 10 :.. 3 10 0 0 0 0 1 +URI: URI: uri: U UR URI URI: BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 11 10 : 1 1 0 0 0 0 1 +http://dret.net/netdret/ http://dret.net/netdret/ http://dret.net/netdret/ h ht htt http BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 1 11 10 ://.// 6 9 0 0 0 0 1 +Wilde Wilde wilde W Wi Wil Wild BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 0 0 0 0 0 0 11 11 no 0 4 0 0 0 0 0 +Informational Informational informational I In Inf Info BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 11 no 0 10 0 0 0 0 0 +[Page 10] [page [ [P [Pa [Pag BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 11 [] 2 7 0 0 0 0 0 + diff --git a/grobid-trainer/resources/dataset/segmentation/sdo/ietf/corpus/raw/XP015133848.training.segmentation b/grobid-trainer/resources/dataset/segmentation/sdo/ietf/corpus/raw/XP015133848.training.segmentation new file mode 100644 index 0000000000..79f3ddacd4 --- /dev/null +++ b/grobid-trainer/resources/dataset/segmentation/sdo/ietf/corpus/raw/XP015133848.training.segmentation @@ -0,0 +1,1950 @@ +server date server s se ser serv BLOCKSTART PAGESTART NEWFONT HIGHERFONT 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 0 ; 1 10 0 0 0 0 0 +Network Working network N Ne Net Netw BLOCKSTART PAGEIN NEWFONT HIGHERFONT 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 0 0 no 0 10 0 0 0 0 1 +S. Previdi s. S S. S. S. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 . 1 3 0 0 0 0 1 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 - 1 4 0 0 0 0 1 +Individual Individual individual I In Ind Indi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 no 0 3 0 0 0 0 1 +Intended status: intended I In Int Inte BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 : 1 10 0 0 0 0 1 +C. Filsfils c. C C. C. C. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 . 1 3 0 0 0 0 1 +Expires: January expires: E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 :, 2 7 0 0 0 0 1 +Cisco Systems, cisco C Ci Cis Cisc BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 0 0 0 0 0 0 0 0 ,. 2 6 0 0 0 0 1 +P. Mattes p. P P. P. P. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 . 1 3 0 0 0 0 1 +Microsoft Microsoft microsoft M Mi Mic Micr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 no 0 3 0 0 0 0 1 +E. Rosen e. E E. E. E. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 . 1 2 0 0 0 0 1 +Juniper Networks juniper J Ju Jun Juni BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 no 0 5 0 0 0 0 1 +D. Jain d. D D. D. D. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 . 1 2 0 0 0 0 1 +S. Lin s. S S. S. S. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 . 1 2 0 0 0 0 1 +Google Google google G Go Goo Goog BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 no 0 2 0 0 0 0 1 +July 5, july J Ju Jul July BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 0 0 , 1 3 0 0 0 0 1 +Advertising Segment advertising A Ad Adv Adve BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 2 no 0 10 0 0 0 0 1 +draft-ietf-idr-segment-routing-te-policy-07 draft-ietf-idr-segment-routing-te-policy-07 draft-ietf-idr-segment-routing-te-policy-07 d dr dra draf BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 2 ------- 7 10 0 0 0 0 1 +Abstract Abstract abstract A Ab Abs Abst BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 2 no 0 10 0 0 0 0 1 +This document this T Th Thi This BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 2 no 0 9 0 0 0 0 1 +advertise a advertise a ad adv adve BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 2 (). 3 9 0 0 0 0 1 +An SR an A An An An BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 0 2 , 1 9 0 0 0 0 1 +more segment more m mo mor more BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 2 . 1 9 0 0 0 0 1 +candidate paths candidate c ca can cand BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 2 . 1 10 0 0 0 0 1 +a number a a a a a BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 1 0 0 0 0 0 0 2 ,..,,,,. 8 9 0 0 0 0 1 +This document this T Th Thi This BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 2 no 0 8 0 0 0 0 1 +distribute candidate distribute d di dis dist BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 2 .- 2 8 0 0 0 0 1 +Encapsulation Attribute encapsulation E En Enc Enca BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 2 . 1 5 0 0 0 0 1 +Status of status S St Sta Stat BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 6 no 0 10 0 0 0 0 1 +This Internet-Draft this T Th Thi This BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 7 - 1 10 0 0 0 0 1 +provisions of provisions p pr pro prov BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 7 . 1 5 0 0 0 0 1 +Internet-Drafts are internet-drafts I In Int Inte BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 7 - 1 9 0 0 0 0 1 +Task Force task T Ta Tas Task BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 7 (). 3 9 0 0 0 0 1 +working documents working w wo wor work BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 7 -.- 3 10 0 0 0 0 1 +Drafts is drafts D Dr Dra Draf BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 7 ://..///. 9 8 0 0 0 0 1 +Internet-Drafts are internet-drafts I In Int Inte BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 9 - 1 10 0 0 0 0 1 +and may and a an and and BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 9 ,, 2 9 0 0 0 0 1 +time. It time. t ti tim time BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 9 .- 2 8 0 0 0 0 1 +material or material m ma mat mate BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 9 "." 3 8 0 0 0 0 1 +This Internet-Draft this T Th Thi This BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 11 -,. 3 10 0 0 0 0 1 +Previdi, et previdi, P Pr Pre Prev BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 11 ,. 2 6 0 0 1 1 0 +Expires January expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 11 , 1 10 0 0 0 0 0 +[Page 1] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 11 [] 2 3 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 - 1 10 0 0 1 1 1 +Segment Routing segment S Se Seg Segm BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 no 0 10 0 0 1 1 1 +July 2019 july J Ju Jul July BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 0 0 no 0 3 0 0 0 0 1 +Copyright Notice copyright C Co Cop Copy BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 no 0 10 0 0 0 0 1 +Copyright (c) copyright C Co Cop Copy BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 () 2 10 0 0 0 0 1 +document authors. document d do doc docu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 .. 2 6 0 0 0 0 1 +This document this T Th Thi This BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 ' 1 8 0 0 0 0 1 +Provisions Relating provisions P Pr Pro Prov BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 no 0 5 0 0 0 0 1 +(https://trustee.ietf.org/license-info) in (https://trustee.ietf.org/license-info) ( (h (ht (htt BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 1 0 0 (://../-) 9 9 0 0 0 0 1 +publication of publication p pu pub publ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 . 1 8 0 0 0 0 1 +carefully, as carefully, c ca car care BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 , 1 10 0 0 0 0 1 +to this to t to to to BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 . 1 9 0 0 0 0 1 +include Simplified include i in inc incl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 . 1 9 0 0 0 0 1 +the Trust the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 no 0 9 0 0 0 0 1 +described in described d de des desc BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 . 1 5 0 0 0 0 1 +Table of table T Ta Tab Tabl BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 1 no 0 10 0 0 0 0 1 +1. Introduction 1. 1 1. 1. 1. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 1 ......................... 25 9 0 0 0 0 1 +3 3 3 3 3 3 3 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 0 1 no 0 0 0 0 0 0 1 +1.1. Requirements 1.1. 1 1. 1.1 1.1. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 1 .................... 20 9 0 0 0 0 1 +5 5 5 5 5 5 5 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 0 1 no 0 0 0 0 0 0 1 +2. SR 2. 2 2. 2. 2. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 1 ...................... 22 9 0 0 0 0 1 +5 5 5 5 5 5 5 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 0 1 no 0 0 0 0 0 0 1 +2.1. SR 2.1. 2 2. 2.1 2.1. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 1 ................... 19 9 0 0 0 0 1 +5 5 5 5 5 5 5 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 0 1 no 0 0 0 0 0 0 1 +2.2. SR 2.2. 2 2. 2.2 2.2. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 1 ........ 8 9 0 0 0 0 1 +7 7 7 7 7 7 7 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 0 1 no 0 0 0 0 0 0 1 +2.3. Remote 2.3. 2 2. 2.3 2.3. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 1 .................. 18 9 0 0 0 0 1 +8 8 8 8 8 8 8 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 0 1 no 0 0 0 0 0 0 1 +2.4. SR 2.4. 2 2. 2.4 2.4. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 1 ..-................... 22 9 0 0 0 0 1 +9 9 9 9 9 9 9 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 0 1 no 0 0 0 0 0 0 1 +2.4.1. Preference 2.4.1. 2 2. 2.4 2.4. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 1 ...-................. 21 8 0 0 0 0 1 +9 9 9 9 9 9 9 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 0 1 no 0 0 0 0 0 0 1 +2.4.2. Binding 2.4.2. 2 2. 2.4 2.4. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 1 ...-................. 21 9 0 0 0 0 1 +2.4.3. Segment 2.4.3. 2 2. 2.4 2.4. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 1 ...-................ 20 9 0 0 0 0 1 +2.4.4. Explicit 2.4.4. 2 2. 2.4 2.4. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 1 ...-......... 13 9 0 0 0 0 1 +2.4.5. Policy 2.4.5. 2 2. 2.4 2.4. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 1 ...-............... 19 9 0 0 0 0 1 +2.4.6. Policy 2.4.6. 2 2. 2.4 2.4. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 1 ...-................. 21 9 0 0 0 0 1 +3. Extended 3. 3 3. 3. 3. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 1 ................... 19 9 0 0 0 0 1 +4. SR 4. 4 4. 4. 4. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 1 ..................... 21 9 0 0 0 0 1 +4.1. Configuration 4.1. 4 4. 4.1 4.1. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 1 ....... 7 9 0 0 0 0 1 +4.2. Reception 4.2. 4 4. 4.2 4.2. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 1 ............... 15 9 0 0 0 0 1 +4.2.1. Acceptance 4.2.1. 4 4. 4.2 4.2. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 1 .............. 14 9 0 0 0 0 1 +4.2.2. Usable 4.2.2. 4 4. 4.2 4.2. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 1 ................... 19 9 0 0 0 0 1 +4.2.3. Passing 4.2.3. 4 4. 4.2 4.2. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 1 ........ 8 9 0 0 0 0 1 +4.2.4. Propagation 4.2.4. 4 4. 4.2 4.2. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 1 ................ 16 9 0 0 0 0 1 +4.3. Flowspec 4.3. 4 4. 4.3 4.3. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 1 .................. 18 9 0 0 0 0 1 +5. Contributors 5. 5 5. 5. 5. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 1 ......................... 25 9 0 0 0 0 1 +6. Acknowledgments 6. 6 6. 6. 6. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 1 ........................ 24 10 0 0 0 0 1 +7. Implementation 7. 7 7. 7. 7. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 1 ..................... 21 10 0 0 0 0 1 +8. IANA 8. 8 8. 8. 8. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 1 ...................... 22 10 0 0 0 0 1 +8.1. Existing 8.1. 8 8. 8.1 8.1. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 1 ..: 3 9 0 0 0 0 1 +(SAFI) Parameters (safi) ( (S (SA (SAF BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 1 ().................... 22 8 0 0 0 0 1 +8.2. Existing 8.2. 8 8. 8.2 8.2. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 1 ..: 3 8 0 0 0 0 1 +Tunnel Types tunnel T Tu Tun Tunn BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 1 ...................... 22 8 0 0 0 0 1 +8.3. Existing 8.3. 8 8. 8.3 8.3. BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 1 ..: 3 8 0 0 0 0 1 +Previdi, et previdi, P Pr Pre Prev BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 11 ,. 2 6 0 0 1 0 0 +Expires January expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 11 , 1 10 0 0 0 0 0 +[Page 2] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 11 [] 2 3 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 - 1 10 0 0 1 0 1 +Segment Routing segment S Se Seg Segm BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 no 0 10 0 0 1 0 1 +July 2019 july J Ju Jul July BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 0 0 no 0 3 0 0 0 0 1 +sub-TLVs . sub-tlvs s su sub sub- BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 0 -........................ 25 8 0 0 0 0 1 +8.4. New 8.4. 8 8. 8.4 8.4. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ..:-.......... 14 9 0 0 0 0 1 +8.5. New 8.5. 8 8. 8.5 8.5. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ..:........ 11 9 0 0 0 0 1 +8.6. New 8.6. 8 8. 8.6 8.6. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ..:.......... 13 9 0 0 0 0 1 +9. Security 9. 9 9. 9. 9. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 .................... 20 10 0 0 0 0 1 +10. References 10. 1 10 10. 10. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 .......................... 26 10 0 0 0 0 1 +10.1. Normative 10.1. 1 10 10. 10.1 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 .................... 20 9 0 0 0 0 1 +10.2. Informational 10.2. 1 10 10. 10.2 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 .................. 18 9 0 0 0 0 1 +Authors' Addresses authors' A Au Aut Auth BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 '....................... 24 10 0 0 0 0 1 +1. Introduction 1. 1 1. 1. 1. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 5 . 1 10 0 0 0 0 1 +Segment Routing segment S Se Seg Segm BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 5 () 2 9 0 0 0 0 1 +along any along a al alo alon BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 5 .- 2 10 0 0 0 0 1 +to source to t to to to BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 5 [-.---]. 8 7 0 0 0 0 1 +The headend the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 5 no 0 10 0 0 0 0 1 +Policy (SR policy P Po Pol Poli BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 5 (). 3 3 0 0 0 0 1 +The header the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 6 no 0 10 0 0 0 0 1 +ordered list ordered o or ord orde BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 6 . 1 8 0 0 0 0 1 +[I-D.ietf-spring-segment-routing-policy] details [i-d.ietf-spring-segment-routing-policy] [ [I [I- [I-D BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 6 [-.----] 8 10 0 0 0 0 1 +Policy and policy P Po Pol Poli BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 6 . 1 9 0 0 0 0 1 +MPLS and mpls M MP MPL MPLS BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 1 6 . 1 7 0 0 0 0 1 +[I-D.filsfils-spring-sr-policy-considerations] describes [i-d.filsfils-spring-sr-policy-considerations] [ [I [I- [I-D BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 7 [-.----] 8 9 0 0 0 0 1 +implementation aspects implementation i im imp impl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 7 no 0 9 0 0 0 0 1 +introduces the introduces i in int intr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 7 () 2 10 0 0 0 0 1 +functionality as functionality f fu fun func BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 7 no 0 6 0 0 0 0 1 +[I-D.ietf-spring-segment-routing-policy]: [I-D.ietf-spring-segment-routing-policy]: [i-d.ietf-spring-segment-routing-policy]: [ [I [I- [I-D BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 7 [-.----]: 9 6 0 0 0 0 1 +o The o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 1 8 no 0 10 0 0 0 0 1 +various mechanisms various v va var vari BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 8 (,,). 5 7 0 0 0 0 1 +o The o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 1 9 . 1 10 0 0 0 0 1 +o The o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 1 9 no 0 10 0 0 0 0 1 +Policy. Policy. policy. P Po Pol Poli BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 9 . 1 1 0 0 0 0 1 +o The o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 1 10 no 0 10 0 0 0 0 1 +forwarding plane. forwarding f fo for forw BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 10 . 1 2 0 0 0 0 1 +This document this T Th Thi This BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 10 no 0 9 0 0 0 0 1 +of the of o of of of BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 10 . 1 10 0 0 0 0 1 +The document the T Th The The BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 10 no 0 9 0 0 0 0 1 +process and process p pr pro proc BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 10 no 0 9 0 0 0 0 1 +Previdi, et previdi, P Pr Pre Prev BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 1 11 ,. 2 6 0 0 1 0 0 +Expires January expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 11 , 1 10 0 0 0 0 0 +[Page 3] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 11 [] 2 3 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 1 0 - 1 10 0 0 1 0 1 +Segment Routing segment S Se Seg Segm BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 0 no 0 10 0 0 1 0 1 +July 2019 july J Ju Jul July BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 1 0 no 0 3 0 0 0 0 1 +and lies and a an and and BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 0 ,, 2 10 0 0 0 0 1 +appropriate. appropriate. appropriate. a ap app appr BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 0 . 1 2 0 0 0 0 1 +This document this T Th Thi This BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 0 no 0 9 0 0 0 0 1 +candidate paths candidate c ca can cand BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 0 . 1 9 0 0 0 0 1 +propagate the propagate p pr pro prop BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 0 . 1 9 0 0 0 0 1 +for BGP for f fo for for BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 0 "". 3 8 0 0 0 0 1 +headend of headend h he hea head BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 0 , 1 8 0 0 0 0 1 +candidate paths candidate c ca can cand BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 0 "". 3 9 0 0 0 0 1 +are then are a ar are are BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 0 . 1 9 0 0 0 0 1 +paths learned paths p pa pat path BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 0 , 1 10 0 0 0 0 1 +to be to t to to to BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 0 . 1 9 0 0 0 0 1 +Policy candidate policy P Po Pol Poli BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 0 . 1 6 0 0 0 0 1 +This document this T Th Thi This BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 3 (). 3 9 0 0 0 0 1 +messages of messages m me mes mess BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 3 ,, 2 9 0 0 0 0 1 +and the and a an and and BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 3 no 0 10 0 0 0 0 1 +SR Policy. sr S SR SR SR BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 1 3 . 1 1 0 0 0 0 1 +While for while W Wh Whi Whil BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 4 , 1 9 0 0 0 0 1 +it has it i it it it BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 4 no 0 10 0 0 0 0 1 +policy and policy p po pol poli BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 4 no 0 9 0 0 0 0 1 +paths provided paths p pa pat path BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 4 ( 1 10 0 0 0 0 1 +defined in defined d de def defi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 4 ),, 3 8 0 0 0 0 1 +configuration. configuration. configuration. c co con conf BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 4 . 1 2 0 0 0 0 1 +Typically, a typically, T Ty Typ Typi BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 6 , 1 9 0 0 0 0 1 +them to them t th the them BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 6 -(). 4 9 0 0 0 0 1 +policy advertisement policy p po pol poli BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 6 . 1 10 0 0 0 0 1 +The policy the T Th The The BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 6 ,, 2 9 0 0 0 0 1 +tailored for tailored t ta tai tail BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 6 -. 2 8 0 0 0 0 1 +advertisement may advertisement a ad adv adve BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 6 - 1 9 0 0 0 0 1 +propagated any propagated p pr pro prop BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 6 . 1 3 0 0 0 0 1 +Alternatively, a alternatively, A Al Alt Alte BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 8 ,(..,) 6 9 0 0 0 0 1 +Policies representing policies P Po Pol Poli BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 8 ., 2 10 0 0 0 0 1 +to send to t to to to BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 8 -- 2 10 0 0 0 0 1 +end, without end, e en end end, BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 8 ,. 2 9 0 0 0 0 1 +An SR an A An An An BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 1 9 ,, 2 10 0 0 0 0 1 +traverse any traverse t tr tra trav BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 9 (,[]). 6 6 0 0 0 0 1 +In some in I In In In BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 1 9 , 1 9 0 0 0 0 1 +router to router r ro rou rout BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 9 -. 2 9 0 0 0 0 1 +situations, BGP situations, s si sit situ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 9 , 1 8 0 0 0 0 1 +advertisements, or advertisements, a ad adv adve BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 9 , 1 9 0 0 0 0 1 +propagate through propagate p pr pro prop BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 9 . 1 9 0 0 0 0 1 +possible, an possible, p po pos poss BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 9 , 1 10 0 0 0 0 1 +Previdi, et previdi, P Pr Pre Prev BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 1 11 ,. 2 6 0 0 1 0 0 +Expires January expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 11 , 1 10 0 0 0 0 0 +[Page 4] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 11 [] 2 3 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 1 0 - 1 10 0 0 1 0 1 +Segment Routing segment S Se Seg Segm BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 0 no 0 10 0 0 1 0 1 +July 2019 july J Ju Jul July BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 1 0 no 0 3 0 0 0 0 1 +enables a enables e en ena enab BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 0 no 0 9 0 0 0 0 1 +head-end for head-end h he hea head BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 0 -. 2 10 0 0 0 0 1 +more Route more m mo mor more BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 0 no 0 8 0 0 0 0 1 +([RFC4360]). ([RFC4360]). ([rfc4360]). ( ([ ([R ([RF BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 0 ([]). 5 1 0 0 0 0 1 +The BGP the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 1 no 0 10 0 0 0 0 1 +following components: following f fo fol foll BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 1 : 1 3 0 0 0 0 1 +o A o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 1 2 () 2 10 0 0 0 0 1 +identifies an identifies i id ide iden BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 2 . 1 3 0 0 0 0 1 +o A o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 1 2 ,- 2 10 0 0 0 0 1 +to be to t to to to BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 2 ( 1 9 0 0 0 0 1 +in [I-D.ietf-idr-tunnel-encaps]) in i in in in BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 1 2 [-.---]) 8 9 0 0 0 0 1 +SR Policy, sr S SR SR SR BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 1 2 ,. 2 8 0 0 0 0 1 +o One o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 1 4 - 1 10 0 0 0 0 1 +([RFC4360]) attached ([rfc4360]) ( ([ ([R ([RF BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 4 ([]) 4 9 0 0 0 0 1 +indicates the indicates i in ind indi BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 4 -. 2 9 0 0 0 0 1 +o The o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 1 5 ( 1 6 0 0 0 0 1 +[I-D.ietf-idr-tunnel-encaps]) and [i-d.ietf-idr-tunnel-encaps]) [ [I [I- [I-D BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 5 [-.---]) 8 9 0 0 0 0 1 +into an into i in int into BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 5 ,. 2 7 0 0 0 0 1 +[I-D.ietf-spring-segment-routing-policy]. This [i-d.ietf-spring-segment-routing-policy]. [ [I [I- [I-D BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 5 [-.----]. 9 8 0 0 0 0 1 +(Section 3) (section ( (S (Se (Sec BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 5 () 2 10 0 0 0 0 1 +using the using u us usi usin BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 5 . 1 7 0 0 0 0 1 +1.1. Requirements 1.1. 1 1. 1.1 1.1. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 7 .. 2 10 0 0 0 0 1 +The key the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 8 "","","","","", 15 9 0 0 0 0 1 +"SHOULD", "SHOULD "should", " "S "SH "SHO BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 1 8 "","","","","" 14 10 0 0 0 0 1 +document are document d do doc docu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 8 []. 3 9 0 0 0 0 1 +2. SR 2. 2 2. 2. 2. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 9 . 1 10 0 0 0 0 1 +2.1. SR 2.1. 2 2. 2.1 2.1. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 9 .. 2 10 0 0 0 0 1 +A new a A A A A BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 1 0 0 0 0 0 1 10 :,( 3 10 0 0 0 0 1 +IANA (see iana I IA IAN IANA BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 1 10 ()" 3 10 0 0 0 0 1 +(SAFI) Parameters" (safi) ( (S (SA (SAF BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 1 10 ()"). 5 4 0 0 0 0 1 +The SR the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 11 : 1 10 0 0 0 0 1 +Previdi, et previdi, P Pr Pre Prev BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 1 11 ,. 2 6 0 0 1 0 0 +Expires January expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 11 , 1 10 0 0 0 0 0 +[Page 5] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 11 [] 2 3 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 1 0 - 1 10 0 0 1 0 1 +Segment Routing segment S Se Seg Segm BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 0 no 0 10 0 0 1 0 1 +July 2019 july J Ju Jul July BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 1 0 no 0 3 0 0 0 0 1 ++------------------+ +------------------+ +------------------+ + +- +-- +--- BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 1 0 ------------------ 18 10 0 0 0 0 1 +| NLRI | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 no 0 6 0 0 0 0 1 +| 1 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 no 0 4 0 0 0 0 1 ++------------------+ +------------------+ +------------------+ + +- +-- +--- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 1 0 ------------------ 18 10 0 0 0 0 1 +| Distinguisher | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 no 0 7 0 0 0 0 1 +| 4 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 no 0 5 0 0 0 0 1 ++------------------+ +------------------+ +------------------+ + +- +-- +--- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 1 0 ------------------ 18 10 0 0 0 0 1 +| Policy | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 no 0 7 0 0 0 0 1 +| 4 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 no 0 5 0 0 0 0 1 ++------------------+ +------------------+ +------------------+ + +- +-- +--- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 1 0 ------------------ 18 10 0 0 0 0 1 +| Endpoint | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 no 0 5 0 0 0 0 1 +| 4 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 no 0 8 0 0 0 0 1 ++------------------+ +------------------+ +------------------+ + +- +-- +--- BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 1 0 ------------------ 18 10 0 0 0 0 1 +where: where: where: w wh whe wher BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 2 : 1 10 0 0 0 0 1 +o NLRI o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 1 2 : 1 10 0 0 0 0 1 +[RFC4760]. [RFC4760]. [rfc4760]. [ [R [RF [RFC BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 2 []. 3 1 0 0 0 0 1 +o Distinguisher: o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 1 3 :- 2 9 0 0 0 0 1 +the context the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 3 ,. 2 9 0 0 0 0 1 +semantic value semantic s se sem sema BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 3 no 0 9 0 0 0 0 1 +make unique make m ma mak make BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 3 () 2 10 0 0 0 0 1 +same SR same s sa sam same BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 3 . 1 2 0 0 0 0 1 +o Policy o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 1 4 :-() 4 10 0 0 0 0 1 +policy. The policy. p po pol poli BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 4 . 1 9 0 0 0 0 1 +prefixes to prefixes p pr pre pref BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 4 no 0 6 0 0 0 0 1 +[I-D.ietf-spring-segment-routing-policy]. [I-D.ietf-spring-segment-routing-policy]. [i-d.ietf-spring-segment-routing-policy]. [ [I [I- [I-D BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 4 [-.----]. 9 6 0 0 0 0 1 +o Endpoint: o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 1 5 :. 2 10 0 0 0 0 1 +represent a represent r re rep repr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 5 (.., 4 9 0 0 0 0 1 +address). The address). a ad add addr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 5 ).(-) 5 9 0 0 0 0 1 +(16-octet) address (16-octet) ( (1 (16 (16- BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 5 (-). 4 8 0 0 0 0 1 +The color the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 7 no 0 10 0 0 0 0 1 +Payload prefixes payload P Pa Pay Payl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 1 7 no 0 7 0 0 0 0 1 +[I-D.ietf-spring-segment-routing-policy]. [I-D.ietf-spring-segment-routing-policy]. [i-d.ietf-spring-segment-routing-policy]. [ [I [I- [I-D BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 7 [-.----]. 9 6 0 0 0 0 1 +The NLRI the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 8 no 0 9 0 0 0 0 1 +[RFC4271] using [rfc4271] [ [R [RF [RFC BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 8 [][] 4 10 0 0 0 0 1 +1 or 1 1 1 1 1 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 1 8 ()( 3 9 0 0 0 0 1 +the "Subsequent the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 8 "()" 4 8 0 0 0 0 1 +registry). registry). registry). r re reg regi BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 8 ). 2 1 0 0 0 0 1 +An update an A An An An BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 2 9 no 0 9 0 0 0 0 1 +attribute with attribute a at att attr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 9 no 0 9 0 0 0 0 1 +attributes. In attributes. a at att attr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 9 ., 2 10 0 0 0 0 1 +of the of o of of of BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 9 . 1 4 0 0 0 0 1 +The next-hop the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 10 -() 3 10 0 0 0 0 1 +be either be b be be be BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 10 , 1 8 0 0 0 0 1 +Previdi, et previdi, P Pr Pre Prev BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 2 11 ,. 2 6 0 0 1 0 0 +Expires January expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 11 , 1 10 0 0 0 0 0 +[Page 6] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 11 [] 2 3 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 2 0 - 1 10 0 0 1 0 1 +Segment Routing segment S Se Seg Segm BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 0 no 0 10 0 0 1 0 1 +July 2019 july J Ju Jul July BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 2 0 no 0 3 0 0 0 0 1 +independent of independent i in ind inde BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 0 .- 2 9 0 0 0 0 1 +address specifies address a ad add addr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 0 -.- 3 9 0 0 0 0 1 +length is length l le len leng BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 0 ,-;- 4 9 0 0 0 0 1 +length is length l le len leng BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 0 ,;- 3 10 0 0 0 0 1 +length is length l le len leng BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 0 ,- 2 9 0 0 0 0 1 +local IPv6 local l lo loc loca BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 0 .- 2 9 0 0 0 0 1 +attendant processing attendant a at att atte BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 0 no 0 9 0 0 0 0 1 +described in described d de des desc BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 0 []. 3 5 0 0 0 0 1 +It is it I It It It BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 3 no 0 9 0 0 0 0 1 +with an with w wi wit with BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 3 , 1 10 0 0 0 0 1 +best paths best b be bes best BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 3 . 1 9 0 0 0 0 1 +words, this words, w wo wor word BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 3 , 1 9 0 0 0 0 1 +selection rules. selection s se sel sele BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 3 . 1 2 0 0 0 0 1 +It has it I It It It BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 5 no 0 9 0 0 0 0 1 +Policy (endpoint, policy P Po Pol Poli BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 5 (,)-, 5 9 0 0 0 0 1 +recommended that recommended r re rec reco BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 5 . 1 9 0 0 0 0 1 +installed into installed i in ins inst BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 5 no 0 9 0 0 0 0 1 +NLRIs have nlris N NL NLR NLRI BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 2 5 ,, 2 10 0 0 0 0 1 +both advertisements both b bo bot both BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 5 no 0 9 0 0 0 0 1 +paths. In paths. p pa pat path BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 5 ., 2 9 0 0 0 0 1 +each candidate each e ea eac each BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 5 ,. 2 7 0 0 0 0 1 +[I-D.ietf-spring-segment-routing-policy], is [i-d.ietf-spring-segment-routing-policy], [ [I [I- [I-D BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 5 [-.----],. 10 9 0 0 0 0 1 +2.2. SR 2.2. 2 2. 2.2 2.2. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 9 .. 2 10 0 0 0 0 1 +The content the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 9 no 0 9 0 0 0 0 1 +Attribute originally attribute A At Att Attr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 9 [-.---] 7 9 0 0 0 0 1 +new Tunnel-Type new n ne new new BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 9 -(,( 4 8 0 0 0 0 1 +Section 8) section S Se Sec Sect BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 9 )"" 3 10 0 0 0 0 1 +registry). registry). registry). r re reg regi BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 9 ). 2 1 0 0 0 0 1 +The SR the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 11 : 1 10 0 0 0 0 1 +Previdi, et previdi, P Pr Pre Prev BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 2 11 ,. 2 6 0 0 1 0 0 +Expires January expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 11 , 1 10 0 0 0 0 0 +[Page 7] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 11 [] 2 3 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 2 0 - 1 10 0 0 1 0 1 +Segment Routing segment S Se Seg Segm BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 0 no 0 10 0 0 1 0 1 +July 2019 july J Ju Jul July BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 2 0 no 0 3 0 0 0 0 1 +SR Policy sr S SR SR SR BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 2 0 :,-, 4 10 0 0 0 0 1 +Attributes: Attributes: attributes: A At Att Attr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 0 : 1 1 0 0 0 0 1 +Tunnel Encaps tunnel T Tu Tun Tunn BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 0 () 2 4 0 0 0 0 1 +Tunnel Type: tunnel T Tu Tun Tunn BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 0 : 1 3 0 0 0 0 1 +Binding SID binding B Bi Bin Bind BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 0 no 0 1 0 0 0 0 1 +Preference Preference preference P Pr Pre Pref BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 0 no 0 1 0 0 0 0 1 +Priority Priority priority P Pr Pri Prio BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 0 no 0 1 0 0 0 0 1 +Policy Name policy P Po Pol Poli BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 0 no 0 1 0 0 0 0 1 +Explicit NULL explicit E Ex Exp Expl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 0 () 2 5 0 0 0 0 1 +Segment List segment S Se Seg Segm BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 0 no 0 2 0 0 0 0 1 +Weight Weight weight W We Wei Weig BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 0 no 0 1 0 0 0 0 1 +Segment Segment segment S Se Seg Segm BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 0 no 0 1 0 0 0 0 1 +Segment Segment segment S Se Seg Segm BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 0 no 0 1 0 0 0 0 1 +... ... ... . .. ... ... BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 2 0 ... 3 0 0 0 0 0 1 +... ... ... . .. ... ... BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 2 0 ... 3 0 0 0 0 0 1 +where: where: where: w wh whe wher BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 0 : 1 1 0 0 0 0 1 +o SR o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 2 2 .. 2 10 0 0 0 0 1 +o Tunnel o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 2 3 no 0 10 0 0 0 0 1 +[I-D.ietf-idr-tunnel-encaps]. [I-D.ietf-idr-tunnel-encaps]. [i-d.ietf-idr-tunnel-encaps]. [ [I [I- [I-D BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 3 [-.---]. 8 6 0 0 0 0 1 +o Tunnel-Type o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 2 3 -(" 3 10 0 0 0 0 1 +Encapsulation Attribute encapsulation E En Enc Enca BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 2 3 "). 3 7 0 0 0 0 1 +o Preference, o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 2 4 ,,,,,- 6 10 0 0 0 0 1 +List, Weight list, L Li Lis List BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 4 ,-. 3 10 0 0 0 0 1 +o Additional o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 2 5 -. 2 10 0 0 0 0 1 +A Tunnel a A A A A BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 1 0 0 0 0 0 2 6 no 0 10 0 0 0 0 1 +of type of o of of of BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 6 ""."" 5 9 0 0 0 0 1 +appears, the appears, a ap app appe BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 6 ,"-- 4 9 0 0 0 0 1 +withdraw" strategy withdraw" w wi wit with BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 6 "[]. 4 6 0 0 0 0 1 +Multiple occurrences multiple M Mu Mul Mult BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 8 "" 2 10 0 0 0 0 1 +SR Policy. sr S SR SR SR BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 2 8 . 1 1 0 0 0 0 1 +Multiple occurrences multiple M Mu Mul Mult BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 9 "" 2 10 0 0 0 0 1 +Segment List. segment S Se Seg Segm BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 9 . 1 2 0 0 0 0 1 +2.3. Remote 2.3. 2 2. 2.3 2.3. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 9 .. 2 10 0 0 0 0 1 +The Remote the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 10 -, 2 8 0 0 0 0 1 +[I-D.ietf-idr-tunnel-encaps], MAY [i-d.ietf-idr-tunnel-encaps], [ [I [I- [I-D BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 10 [-.---], 8 10 0 0 0 0 1 +encodings. encodings. encodings. e en enc enco BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 10 . 1 1 0 0 0 0 1 +Previdi, et previdi, P Pr Pre Prev BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 2 11 ,. 2 6 0 0 1 0 0 +Expires January expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 11 , 1 10 0 0 0 0 0 +[Page 8] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 11 [] 2 3 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 2 0 - 1 10 0 0 1 0 1 +Segment Routing segment S Se Seg Segm BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 0 no 0 10 0 0 1 0 1 +July 2019 july J Ju Jul July BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 2 0 no 0 3 0 0 0 0 1 +The Remote the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 0 - 1 9 0 0 0 0 1 +encodings and encodings e en enc enco BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 0 no 0 9 0 0 0 0 1 +the SR the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 0 .,- 3 10 0 0 0 0 1 +the Color the t th the the BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 0 -. 2 7 0 0 0 0 1 +2.4. SR 2.4. 2 2. 2.4 2.4. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 1 ..- 3 10 0 0 0 0 1 +This section this T Th Thi This BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 1 -. 2 10 0 0 0 0 1 +Preference, Binding preference, P Pr Pre Pref BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 2 ,,-,, 5 9 0 0 0 0 1 +Explicit NULL explicit E Ex Exp Expl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 2 -" 2 10 0 0 0 0 1 +Encapsulation Attribute encapsulation E En Enc Enca BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 2 2 -". 3 6 0 0 0 0 1 +Weight and weight W We Wei Weig BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 2 - 1 10 0 0 0 0 1 +in this in i in in in BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 2 2 :"-". 5 8 0 0 0 0 1 +Section 8 section S Se Sec Sect BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 2 . 1 6 0 0 0 0 1 +2.4.1. Preference 2.4.1. 2 2. 2.4 2.4. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 3 ...- 4 10 0 0 0 0 1 +The Preference the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 3 - 1 10 0 0 0 0 1 +selection or selection s se sel sele BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 3 .- 2 9 0 0 0 0 1 +are used are a ar are are BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 3 . 1 7 0 0 0 0 1 +[I-D.ietf-spring-segment-routing-policy]. [I-D.ietf-spring-segment-routing-policy]. [i-d.ietf-spring-segment-routing-policy]. [ [I [I- [I-D BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 3 [-.----]. 9 6 0 0 0 0 1 +The Preference the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 5 - 1 9 0 0 0 0 1 +once in once o on onc once BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 5 .- 2 9 0 0 0 0 1 +once, the once, o on onc once BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 5 ,"--" 5 10 0 0 0 0 1 +strategy of strategy s st str stra BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 5 []. 3 4 0 0 0 0 1 +The Preference the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 6 -: 2 10 0 0 0 0 1 +0 0 0 0 0 0 0 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 2 6 no 0 0 0 0 0 0 1 +1 1 1 1 1 1 1 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 2 6 no 0 0 0 0 0 0 1 +2 2 2 2 2 2 2 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 2 6 no 0 0 0 0 0 0 1 +3 3 3 3 3 3 3 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 2 6 no 0 0 0 0 0 0 1 +0 1 0 0 0 0 0 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 2 6 no 0 9 0 0 0 0 1 ++-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ + +- +-+ +-+- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 2 6 -------------------------------- 32 10 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 6 no 0 0 0 0 0 0 1 +Type Type type T Ty Typ Type BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 6 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 6 no 0 0 0 0 0 0 1 +Length Length length L Le Len Leng BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 6 no 0 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 6 no 0 0 0 0 0 0 1 +Flags Flags flags F Fl Fla Flag BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 6 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 6 no 0 0 0 0 0 0 1 +RESERVED RESERVED reserved R RE RES RESE BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 2 6 no 0 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 6 no 0 0 0 0 0 0 1 ++-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ + +- +-+ +-+- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 2 6 -------------------------------- 32 10 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 6 no 0 0 0 0 0 0 1 +Preference (4 preference P Pr Pre Pref BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 6 () 2 3 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 6 no 0 0 0 0 0 0 1 ++-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ + +- +-+ +-+- BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 2 6 -------------------------------- 32 10 0 0 0 0 1 +where: where: where: w wh whe wher BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 10 : 1 10 0 0 0 0 1 +o Type: o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 2 10 : 1 10 0 0 0 0 1 +o Length: o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 2 10 :. 2 10 0 0 0 0 1 +o Flags: o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 2 10 :.. 3 10 0 0 0 0 1 +SHOULD be should S SH SHO SHOU BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 2 10 no 0 9 0 0 0 0 1 +receipt. receipt. receipt. r re rec rece BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 10 . 1 1 0 0 0 0 1 +Previdi, et previdi, P Pr Pre Prev BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 2 11 ,. 2 6 0 0 1 0 0 +Expires January expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 11 , 1 10 0 0 0 0 0 +[Page 9] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 11 [] 2 3 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 2 0 - 1 10 0 0 1 0 1 +Segment Routing segment S Se Seg Segm BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 0 no 0 10 0 0 1 0 1 +July 2019 july J Ju Jul July BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 2 0 no 0 3 0 0 0 0 1 +o RESERVED: o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 2 0 :. 2 10 0 0 0 0 1 +transmission and transmission t tr tra tran BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 0 . 1 7 0 0 0 0 1 +o Preference: o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 2 0 :-. 3 10 0 0 0 0 1 +2.4.2. Binding 2.4.2. 2 2. 2.4 2.4. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 1 ...- 4 10 0 0 0 0 1 +The Binding the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 1 -. 2 10 0 0 0 0 1 +sub-TLV are sub-tlv s su sub sub- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 1 - 1 8 0 0 0 0 1 +[I-D.ietf-spring-segment-routing-policy]. [I-D.ietf-spring-segment-routing-policy]. [i-d.ietf-spring-segment-routing-policy]. [ [I [I- [I-D BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 1 [-.----]. 9 6 0 0 0 0 1 +The Binding the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 2 - 1 10 0 0 0 0 1 +once in once o on onc once BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 2 .- 2 9 0 0 0 0 1 +once, the once, o on onc once BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 2 ,"--" 5 10 0 0 0 0 1 +strategy of strategy s st str stra BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 2 []. 3 4 0 0 0 0 1 +The Binding the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 3 -: 2 10 0 0 0 0 1 +0 0 0 0 0 0 0 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 2 3 no 0 0 0 0 0 0 1 +1 1 1 1 1 1 1 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 2 3 no 0 0 0 0 0 0 1 +2 2 2 2 2 2 2 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 2 3 no 0 0 0 0 0 0 1 +3 3 3 3 3 3 3 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 2 3 no 0 0 0 0 0 0 1 +0 1 0 0 0 0 0 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 2 3 no 0 9 0 0 0 0 1 ++-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ + +- +-+ +-+- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 2 3 -------------------------------- 32 10 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 3 no 0 0 0 0 0 0 1 +Type Type type T Ty Typ Type BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 3 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 3 no 0 0 0 0 0 0 1 +Length Length length L Le Len Leng BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 3 no 0 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 3 no 0 0 0 0 0 0 1 +Flags Flags flags F Fl Fla Flag BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 3 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 3 no 0 0 0 0 0 0 1 +RESERVED RESERVED reserved R RE RES RESE BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 2 3 no 0 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 3 no 0 0 0 0 0 0 1 ++-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ + +- +-+ +-+- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 2 3 -------------------------------- 32 10 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 3 no 0 0 0 0 0 0 1 +Binding SID binding B Bi Bin Bind BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 3 (,) 3 5 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 3 no 0 0 0 0 0 0 1 ++-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ + +- +-+ +-+- BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 2 3 -------------------------------- 32 10 0 0 0 0 1 +where: where: where: w wh whe wher BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 8 : 1 10 0 0 0 0 1 +o Type: o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 3 8 : 1 10 0 0 0 0 1 +o Length: o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 3 8 : 1 10 0 0 0 0 1 +and Length and a an and and BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 8 .. 2 5 0 0 0 0 1 +o Flags: o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 3 8 :.( 3 9 0 0 0 0 1 +assigned by assigned a as ass assi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 8 "" 2 10 0 0 0 0 1 +defined in defined d de def defi BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 8 .): 3 6 0 0 0 0 1 +0 1 0 0 0 0 0 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 3 9 no 0 8 0 0 0 0 1 ++-+-+-+-+-+-+-+-+ +-+-+-+-+-+-+-+-+ +-+-+-+-+-+-+-+-+ + +- +-+ +-+- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 3 9 -------- 8 10 0 0 0 0 1 +|S|I| |S|I| |s|i| | |S |S| |S|I BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 3 9 no 0 3 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 3 9 no 0 1 0 0 0 0 1 ++-+-+-+-+-+-+-+-+ +-+-+-+-+-+-+-+-+ +-+-+-+-+-+-+-+-+ + +- +-+ +-+- BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 3 9 -------- 8 10 0 0 0 0 1 +where: where: where: w wh whe wher BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 10 : 1 10 0 0 0 0 1 +* S-Flag: * * * * * BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 3 10 *-:"--". 8 10 0 0 0 0 1 +It is it I It It It BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 10 .. 2 8 0 0 0 0 1 +[I-D.ietf-spring-segment-routing-policy]. [I-D.ietf-spring-segment-routing-policy]. [i-d.ietf-spring-segment-routing-policy]. [ [I [I- [I-D BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 10 [-.----]. 9 6 0 0 0 0 1 +Previdi, et previdi, P Pr Pre Prev BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 3 11 ,. 2 6 0 0 1 0 0 +Expires January expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 11 , 1 10 0 0 0 0 0 +[Page 10] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 3 0 - 1 10 0 0 1 0 1 +Segment Routing segment S Se Seg Segm BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 0 no 0 10 0 0 1 0 1 +July 2019 july J Ju Jul July BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 3 0 no 0 3 0 0 0 0 1 +* I-Flag: * * * * * BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 3 0 *-:"". 6 10 0 0 0 0 1 +is used is i is is is BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 0 . 1 7 0 0 0 0 1 +[I-D.ietf-spring-segment-routing-policy]. [I-D.ietf-spring-segment-routing-policy]. [i-d.ietf-spring-segment-routing-policy]. [ [I [I- [I-D BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 0 [-.----]. 9 6 0 0 0 0 1 +* Unused * * * * * BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 3 1 * 1 10 0 0 0 0 1 +transmission and transmission t tr tra tran BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 1 . 1 7 0 0 0 0 1 +o RESERVED: o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 3 1 :. 2 10 0 0 0 0 1 +transmission and transmission t tr tra tran BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 1 . 1 7 0 0 0 0 1 +o Binding o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 3 2 :,. 3 10 0 0 0 0 1 +o If o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 3 2 -. 2 10 0 0 0 0 1 +format is format f fo for form BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 2 .,,() 5 9 0 0 0 0 1 +RESERVED and reserved R RE RES RESE BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 3 2 . 1 8 0 0 0 0 1 +0 0 0 0 0 0 0 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 3 3 no 0 0 0 0 0 0 1 +1 1 1 1 1 1 1 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 3 3 no 0 0 0 0 0 0 1 +2 2 2 2 2 2 2 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 3 3 no 0 0 0 0 0 0 1 +3 3 3 3 3 3 3 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 3 3 no 0 0 0 0 0 0 1 +0 1 0 0 0 0 0 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 3 3 no 0 9 0 0 0 0 1 ++-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ + +- +-+ +-+- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 3 3 -------------------------------- 32 10 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 3 3 no 0 0 0 0 0 0 1 +Label Label label L La Lab Labe BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 3 no 0 0 0 0 0 0 1 +| TC | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 3 3 no 0 1 0 0 0 0 1 +TTL TTL ttl T TT TTL TTL BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 3 3 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 3 3 no 0 0 0 0 0 0 1 ++-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ + +- +-+ +-+- BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 3 3 -------------------------------- 32 10 0 0 0 0 1 +If length if I If If If BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 6 -. 2 10 0 0 0 0 1 +2.4.3. Segment 2.4.3. 2 2. 2.4 2.4. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 3 6 ...- 4 10 0 0 0 0 1 +The Segment the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 6 - 1 10 0 0 0 0 1 +endpoint as endpoint e en end endp BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 6 . 1 5 0 0 0 0 1 +[I-D.ietf-spring-segment-routing-policy]. The [i-d.ietf-spring-segment-routing-policy]. [ [I [I- [I-D BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 6 [-.----].- 10 9 0 0 0 0 1 +includes the includes i in inc incl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 6 (..,) 5 9 0 0 0 0 1 +optional Weight optional o op opt opti BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 6 -. 2 3 0 0 0 0 1 +The Segment the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 8 - 1 9 0 0 0 0 1 +number of number n nu num numb BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 8 .-. 3 8 0 0 0 0 1 +According to according A Ac Acc Acco BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 8 [-.---],- 9 10 0 0 0 0 1 +TLV codepoint tlv T TL TLV TLV BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 3 8 ., 2 9 0 0 0 0 1 +the Segment the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 8 -(). 4 9 0 0 0 0 1 +See Section see S Se See See BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 3 8 . 1 7 0 0 0 0 1 +The Segment the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 10 - 1 10 0 0 0 0 1 +the SR the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 10 .-,- 4 9 0 0 0 0 1 +encoding a encoding e en enc enco BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 10 ,. 2 6 0 0 0 0 1 +The Segment the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 10 -- 2 10 0 0 0 0 1 +MAY contain may M MA MAY MAY BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 1 1 0 0 1 0 0 3 10 -. 2 4 0 0 0 0 1 +The Segment the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 11 -: 2 10 0 0 0 0 1 +Previdi, et previdi, P Pr Pre Prev BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 3 11 ,. 2 6 0 0 1 0 0 +Expires January expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 11 , 1 10 0 0 0 0 0 +[Page 11] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 3 0 - 1 10 0 0 1 0 1 +Segment Routing segment S Se Seg Segm BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 0 no 0 10 0 0 1 0 1 +July 2019 july J Ju Jul July BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 3 0 no 0 3 0 0 0 0 1 +0 0 0 0 0 0 0 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 3 0 no 0 0 0 0 0 0 1 +1 1 1 1 1 1 1 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 3 0 no 0 0 0 0 0 0 1 +2 2 2 2 2 2 2 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 3 0 no 0 0 0 0 0 0 1 +3 3 3 3 3 3 3 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 3 0 no 0 0 0 0 0 0 1 +0 1 0 0 0 0 0 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 3 0 no 0 9 0 0 0 0 1 ++-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ + +- +-+ +-+- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 3 0 -------------------------------- 32 10 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 3 0 no 0 0 0 0 0 0 1 +Type Type type T Ty Typ Type BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 3 0 no 0 0 0 0 0 0 1 +Length Length length L Le Len Leng BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 0 no 0 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 3 0 no 0 0 0 0 0 0 1 +RESERVED RESERVED reserved R RE RES RESE BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 3 0 no 0 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 3 0 no 0 0 0 0 0 0 1 ++-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ + +- +-+ +-+- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 3 0 -------------------------------- 32 10 0 0 0 0 1 +// // // / // // // BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 3 0 // 2 0 0 0 0 0 1 +sub-TLVs sub-TLVs sub-tlvs s su sub sub- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 0 - 1 1 0 0 0 0 1 +// // // / // // // BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 3 0 // 2 0 0 0 0 0 1 ++-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ + +- +-+ +-+- BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 3 0 -------------------------------- 32 10 0 0 0 0 1 +where: where: where: w wh whe wher BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 4 : 1 10 0 0 0 0 1 +o Type: o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 3 5 :. 2 10 0 0 0 0 1 +o Length: o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 3 5 :( 2 9 0 0 0 0 1 +fields) of fields) f fi fie fiel BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 5 )--. 4 10 0 0 0 0 1 +o RESERVED: o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 3 5 :. 2 10 0 0 0 0 1 +transmission and transmission t tr tra tran BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 5 . 1 7 0 0 0 0 1 +o sub-TLVs: o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 3 6 -: 2 10 0 0 0 0 1 +* An * * * * * BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 3 6 *-. 3 10 0 0 0 0 1 +* Zero * * * * * BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 3 6 *-. 3 10 0 0 0 0 1 +Validation of validation V Va Val Vali BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 7 - 1 10 0 0 0 0 1 +completely within completely c co com comp BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 7 no 0 9 0 0 0 0 1 +[I-D.ietf-spring-segment-routing-policy]. [I-D.ietf-spring-segment-routing-policy]. [i-d.ietf-spring-segment-routing-policy]. [ [I [I- [I-D BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 7 [-.----]. 9 6 0 0 0 0 1 +2.4.3.1. Weight 2.4.3.1. 2 2. 2.4 2.4. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 3 8 ....- 5 10 0 0 0 0 1 +The Weight the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 8 - 1 10 0 0 0 0 1 +list. The list. l li lis list BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 8 .- 2 9 0 0 0 0 1 +described in described d de des desc BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 8 . 1 4 0 0 0 0 1 +[I-D.ietf-spring-segment-routing-policy]. [I-D.ietf-spring-segment-routing-policy]. [i-d.ietf-spring-segment-routing-policy]. [ [I [I- [I-D BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 8 [-.----]. 9 6 0 0 0 0 1 +The Weight the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 9 - 1 10 0 0 0 0 1 +inside the inside i in ins insi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 9 -.- 3 9 0 0 0 0 1 +than once, than t th tha than BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 9 ,"-- 4 9 0 0 0 0 1 +withdraw" strategy withdraw" w wi wit with BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 9 "[]. 4 6 0 0 0 0 1 +The Weight the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 11 -: 2 10 0 0 0 0 1 +Previdi, et previdi, P Pr Pre Prev BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 3 11 ,. 2 6 0 0 1 0 0 +Expires January expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 11 , 1 10 0 0 0 0 0 +[Page 12] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 3 0 - 1 10 0 0 1 0 1 +Segment Routing segment S Se Seg Segm BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 0 no 0 10 0 0 1 0 1 +July 2019 july J Ju Jul July BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 3 0 no 0 3 0 0 0 0 1 +0 0 0 0 0 0 0 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 3 0 no 0 0 0 0 0 0 1 +1 1 1 1 1 1 1 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 3 0 no 0 0 0 0 0 0 1 +2 2 2 2 2 2 2 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 3 0 no 0 0 0 0 0 0 1 +3 3 3 3 3 3 3 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 3 0 no 0 0 0 0 0 0 1 +0 1 0 0 0 0 0 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 3 0 no 0 9 0 0 0 0 1 ++-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ + +- +-+ +-+- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 3 0 -------------------------------- 32 10 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 3 0 no 0 0 0 0 0 0 1 +Type Type type T Ty Typ Type BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 3 0 no 0 0 0 0 0 0 1 +Length Length length L Le Len Leng BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 0 no 0 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 3 0 no 0 0 0 0 0 0 1 +Flags Flags flags F Fl Fla Flag BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 3 0 no 0 0 0 0 0 0 1 +RESERVED RESERVED reserved R RE RES RESE BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 3 0 no 0 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 3 0 no 0 0 0 0 0 0 1 ++-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ + +- +-+ +-+- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 3 0 -------------------------------- 32 10 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 3 0 no 0 0 0 0 0 0 1 +Weight Weight weight W We Wei Weig BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 0 no 0 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 3 0 no 0 0 0 0 0 0 1 ++-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ + +- +-+ +-+- BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 3 0 -------------------------------- 32 10 0 0 0 0 1 +where: where: where: w wh whe wher BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 5 : 1 10 0 0 0 0 1 +Type: 9 type: T Ty Typ Type BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 5 :(" 3 10 0 0 0 0 1 +Sub-TLVs" defined sub-tlvs" S Su Sub Sub- BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 3 5 -"). 4 5 0 0 0 0 1 +Length: 6. length: L Le Len Leng BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 6 :. 2 10 0 0 0 0 1 +Flags: 1 flags: F Fl Fla Flag BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 6 :.. 3 9 0 0 0 0 1 +SHOULD be should S SH SHO SHOU BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 3 6 . 1 10 0 0 0 0 1 +RESERVED: 1 reserved: R RE RES RESE BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 3 7 :. 2 10 0 0 0 0 1 +and MUST and a an and and BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 7 . 1 4 0 0 0 0 1 +2.4.3.2. Segment 2.4.3.2. 2 2. 2.4 2.4. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 3 7 ....- 5 10 0 0 0 0 1 +The Segment the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 7 - 1 9 0 0 0 0 1 +(i.e., a (i.e., ( (i (i. (i.e BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 7 (..,).- 7 10 0 0 0 0 1 +TLVs constitute tlvs T TL TLV TLVs BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 3 7 . 1 7 0 0 0 0 1 +The Segment the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 9 - 1 10 0 0 0 0 1 +Segment List segment S Se Seg Segm BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 9 -. 2 3 0 0 0 0 1 +The Segment the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 9 - 1 9 0 0 0 0 1 +selection or selection s se sel sele BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 9 .- 2 10 0 0 0 0 1 +are used are a ar are are BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 9 no 0 8 0 0 0 0 1 +[I-D.ietf-spring-segment-routing-policy]. [I-D.ietf-spring-segment-routing-policy]. [i-d.ietf-spring-segment-routing-policy]. [ [I [I- [I-D BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 9 [-.----]. 9 6 0 0 0 0 1 +[I-D.ietf-spring-segment-routing-policy] defines [i-d.ietf-spring-segment-routing-policy] [ [I [I- [I-D BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 11 [-.----] 8 10 0 0 0 0 1 +Segments: Segments: segments: S Se Seg Segm BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 11 : 1 1 0 0 0 0 1 +Previdi, et previdi, P Pr Pre Prev BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 4 11 ,. 2 6 0 0 1 0 0 +Expires January expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 11 , 1 10 0 0 0 0 0 +[Page 13] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 4 0 - 1 10 0 0 1 0 1 +Segment Routing segment S Se Seg Segm BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 0 no 0 10 0 0 1 0 1 +July 2019 july J Ju Jul July BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 4 0 no 0 3 0 0 0 0 1 +Type 1: type T Ty Typ Type BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 0 :, 2 5 0 0 0 0 1 +Type 2: type T Ty Typ Type BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 0 :, 2 5 0 0 0 0 1 +Type 3: type T Ty Typ Type BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 0 : 1 5 0 0 0 0 1 +Type 4: type T Ty Typ Type BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 0 : 1 6 0 0 0 0 1 +Type 5: type T Ty Typ Type BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 0 : 1 5 0 0 0 0 1 +Type 6: type T Ty Typ Type BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 0 : 1 6 0 0 0 0 1 +Type 7: type T Ty Typ Type BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 0 : 1 10 0 0 0 0 1 +Type 8: type T Ty Typ Type BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 0 : 1 8 0 0 0 0 1 +Type 9: type T Ty Typ Type BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 0 : 1 6 0 0 0 0 1 +Type 10: type T Ty Typ Type BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 0 : 1 9 0 0 0 0 1 +Type 11: type T Ty Typ Type BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 0 : 1 5 0 0 0 0 1 +2.4.3.2.1. Type 2.4.3.2.1. 2 2. 2.4 2.4. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 4 3 .....:, 7 10 0 0 0 0 1 +The Type-1 the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 4 -- 2 10 0 0 0 0 1 +MPLS label. mpls M MP MPL MPLS BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 4 4 .: 2 5 0 0 0 0 1 +0 0 0 0 0 0 0 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 4 4 no 0 0 0 0 0 0 1 +1 1 1 1 1 1 1 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 4 4 no 0 0 0 0 0 0 1 +2 2 2 2 2 2 2 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 4 4 no 0 0 0 0 0 0 1 +3 3 3 3 3 3 3 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 4 4 no 0 0 0 0 0 0 1 +0 1 0 0 0 0 0 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 4 4 no 0 9 0 0 0 0 1 ++-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ + +- +-+ +-+- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 4 4 -------------------------------- 32 10 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 4 no 0 0 0 0 0 0 1 +Type Type type T Ty Typ Type BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 4 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 4 no 0 0 0 0 0 0 1 +Length Length length L Le Len Leng BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 4 no 0 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 4 no 0 0 0 0 0 0 1 +Flags Flags flags F Fl Fla Flag BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 4 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 4 no 0 0 0 0 0 0 1 +RESERVED RESERVED reserved R RE RES RESE BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 4 4 no 0 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 4 no 0 0 0 0 0 0 1 ++-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ + +- +-+ +-+- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 4 4 -------------------------------- 32 10 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 4 no 0 0 0 0 0 0 1 +Label Label label L La Lab Labe BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 4 no 0 0 0 0 0 0 1 +| TC | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 4 no 0 1 0 0 0 0 1 +TTL TTL ttl T TT TTL TTL BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 4 4 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 4 no 0 0 0 0 0 0 1 ++-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ + +- +-+ +-+- BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 4 4 -------------------------------- 32 10 0 0 0 0 1 +where: where: where: w wh whe wher BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 8 : 1 10 0 0 0 0 1 +o Type: o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 4 8 :(" 3 10 0 0 0 0 1 +Sub-TLVs" defined sub-tlvs" S Su Sub Sub- BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 4 8 -"). 4 5 0 0 0 0 1 +o Length o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 4 9 . 1 10 0 0 0 0 1 +o Flags: o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 4 9 :..... 6 10 0 0 0 0 1 +o RESERVED: o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 4 9 :. 2 10 0 0 0 0 1 +transmission and transmission t tr tra tran BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 9 . 1 7 0 0 0 0 1 +o Label: o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 4 10 :. 2 10 0 0 0 0 1 +o TC: o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 4 10 :. 2 10 0 0 0 0 1 +o S: o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 4 10 :--. 4 10 0 0 0 0 1 +o TTL: o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 4 11 :. 2 10 0 0 0 0 1 +The following the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 11 --: 3 10 0 0 0 0 1 +Previdi, et previdi, P Pr Pre Prev BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 4 11 ,. 2 6 0 0 1 0 0 +Expires January expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 11 , 1 10 0 0 0 0 0 +[Page 14] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 4 0 - 1 10 0 0 1 0 1 +Segment Routing segment S Se Seg Segm BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 0 no 0 10 0 0 1 0 1 +July 2019 july J Ju Jul July BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 4 0 no 0 3 0 0 0 0 1 +o The o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 4 0 , 1 10 0 0 0 0 1 +upon reception. upon u up upo upon BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 0 . 1 2 0 0 0 0 1 +o If o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 4 0 , 1 10 0 0 0 0 1 +sets the sets s se set sets BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 0 . 1 4 0 0 0 0 1 +o If o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 4 1 , 1 10 0 0 0 0 1 +sets the sets s se set sets BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 1 . 1 4 0 0 0 0 1 +o If o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 4 1 , 1 10 0 0 0 0 1 +puts those puts p pu put puts BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 1 /. 2 6 0 0 0 0 1 +o The o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 4 2 ' 1 9 0 0 0 0 1 +fields. This fields. f fi fie fiel BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 2 .. 2 10 0 0 0 0 1 +One possible one O On One One BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 2 no 0 9 0 0 0 0 1 +fields have fields f fi fie fiel BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 4 2 . 1 7 0 0 0 0 1 +2.4.3.2.2. Type 2.4.3.2.2. 2 2. 2.4 2.4. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 4 3 .....:, 7 10 0 0 0 0 1 +The Type-2 the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 4 -- 2 10 0 0 0 0 1 +an IPv6 an a an an an BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 4 4 .: 2 6 0 0 0 0 1 +0 0 0 0 0 0 0 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 4 4 no 0 0 0 0 0 0 1 +1 1 1 1 1 1 1 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 4 4 no 0 0 0 0 0 0 1 +2 2 2 2 2 2 2 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 4 4 no 0 0 0 0 0 0 1 +3 3 3 3 3 3 3 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 4 4 no 0 0 0 0 0 0 1 +0 1 0 0 0 0 0 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 4 4 no 0 9 0 0 0 0 1 ++-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ + +- +-+ +-+- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 4 4 -------------------------------- 32 10 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 4 no 0 0 0 0 0 0 1 +Type Type type T Ty Typ Type BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 4 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 4 no 0 0 0 0 0 0 1 +Length Length length L Le Len Leng BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 4 no 0 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 4 no 0 0 0 0 0 0 1 +Flags Flags flags F Fl Fla Flag BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 4 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 4 no 0 0 0 0 0 0 1 +RESERVED RESERVED reserved R RE RES RESE BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 4 4 no 0 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 4 no 0 0 0 0 0 0 1 ++-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ + +- +-+ +-+- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 4 4 -------------------------------- 32 10 0 0 0 0 1 +// // // / // // // BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 4 4 // 2 0 0 0 0 0 1 +SRv6 SID srv6 S SR SRv SRv6 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 4 4 () 2 3 0 0 0 0 1 +// // // / // // // BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 4 4 // 2 0 0 0 0 0 1 ++-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ + +- +-+ +-+- BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 4 4 -------------------------------- 32 10 0 0 0 0 1 +where: where: where: w wh whe wher BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 9 : 1 10 0 0 0 0 1 +o Type: o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 4 9 :(" 3 10 0 0 0 0 1 +Sub-TLVs" defined sub-tlvs" S Su Sub Sub- BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 4 9 -"). 4 5 0 0 0 0 1 +o Length o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 4 9 . 1 10 0 0 0 0 1 +o Flags: o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 4 9 :..... 6 10 0 0 0 0 1 +o RESERVED: o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 4 10 :. 2 10 0 0 0 0 1 +transmission and transmission t tr tra tran BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 10 . 1 7 0 0 0 0 1 +o SRv6 o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 4 10 :. 2 10 0 0 0 0 1 +The IPv6 the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 11 () 2 10 0 0 0 0 1 +[I-D.ietf-6man-segment-routing-header]. [I-D.ietf-6man-segment-routing-header]. [i-d.ietf-6man-segment-routing-header]. [ [I [I- [I-D BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 4 11 [-.----]. 9 7 0 0 0 0 1 +Previdi, et previdi, P Pr Pre Prev BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 4 11 ,. 2 6 0 0 1 0 0 +Expires January expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 11 , 1 10 0 0 0 0 0 +[Page 15] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 4 0 - 1 10 0 0 1 0 1 +Segment Routing segment S Se Seg Segm BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 0 no 0 10 0 0 1 0 1 +July 2019 july J Ju Jul July BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 4 0 no 0 3 0 0 0 0 1 +2.4.3.2.3. Type 2.4.3.2.3. 2 2. 2.4 2.4. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 4 0 .....: 6 10 0 0 0 0 1 +The Type-3 the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 0 --, 3 10 0 0 0 0 1 +and an and a an and and BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 0 . 1 9 0 0 0 0 1 +follows: follows: follows: f fo fol foll BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 0 : 1 1 0 0 0 0 1 +0 0 0 0 0 0 0 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 4 1 no 0 0 0 0 0 0 1 +1 1 1 1 1 1 1 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 4 1 no 0 0 0 0 0 0 1 +2 2 2 2 2 2 2 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 4 1 no 0 0 0 0 0 0 1 +3 3 3 3 3 3 3 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 4 1 no 0 0 0 0 0 0 1 +0 1 0 0 0 0 0 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 4 1 no 0 9 0 0 0 0 1 ++-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ + +- +-+ +-+- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 4 1 -------------------------------- 32 10 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 1 no 0 0 0 0 0 0 1 +Type Type type T Ty Typ Type BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 1 no 0 0 0 0 0 0 1 +Length Length length L Le Len Leng BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 1 no 0 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 1 no 0 0 0 0 0 0 1 +Flags Flags flags F Fl Fla Flag BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 1 no 0 0 0 0 0 0 1 +| SR | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 1 no 0 2 0 0 0 0 1 ++-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ + +- +-+ +-+- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 4 1 -------------------------------- 32 10 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 1 no 0 0 0 0 0 0 1 +IPv4 Node ipv4 I IP IPv IPv4 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 4 1 () 2 4 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 1 no 0 0 0 0 0 0 1 ++-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ + +- +-+ +-+- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 4 1 -------------------------------- 32 10 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 1 no 0 0 0 0 0 0 1 +SID (optional, sid S SI SID SID BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 1 0 0 0 0 0 0 4 1 (,) 3 3 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 1 no 0 0 0 0 0 0 1 ++-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ + +- +-+ +-+- BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 4 1 -------------------------------- 32 10 0 0 0 0 1 +where: where: where: w wh whe wher BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 6 : 1 10 0 0 0 0 1 +o Type: o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 4 6 :(" 3 10 0 0 0 0 1 +Sub-TLVs" defined sub-tlvs" S Su Sub Sub- BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 4 6 -"). 4 5 0 0 0 0 1 +o Length o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 4 6 . 1 10 0 0 0 0 1 +o Flags: o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 4 6 :..... 6 10 0 0 0 0 1 +o SR o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 4 7 : 1 9 0 0 0 0 1 +section 3.1.1 section s se sec sect BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 7 ..[-.---],- 11 10 0 0 0 0 1 +defined in defined d de def defi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 7 ..... 5 9 0 0 0 0 1 +SRPM as srpm S SR SRP SRPM BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 4 7 no 0 5 0 0 0 0 1 +[I-D.ietf-spring-segment-routing-policy]. When [i-d.ietf-spring-segment-routing-policy]. [ [I [I- [I-D BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 7 [-.----].- 10 9 0 0 0 0 1 +encoded, this encoded, e en enc enco BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 7 , 1 9 0 0 0 0 1 +ignored on ignored i ig ign igno BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 7 . 1 2 0 0 0 0 1 +o IPv4 o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 4 9 :. 2 10 0 0 0 0 1 +o SID: o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 4 9 :. 2 10 0 0 0 0 1 +The following the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 9 --: 3 10 0 0 0 0 1 +o The o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 4 9 . 1 10 0 0 0 0 1 +o The o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 4 10 no 0 10 0 0 0 0 1 +label, TC, label, l la lab labe BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 10 ,,..... 7 8 0 0 0 0 1 +o If o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 4 10 ,. 2 10 0 0 0 0 1 +o If o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 5 11 , 1 10 0 0 0 0 1 +present. present. present. p pr pre pres BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 11 . 1 1 0 0 0 0 1 +Previdi, et previdi, P Pr Pre Prev BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 5 11 ,. 2 6 0 0 1 0 0 +Expires January expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 11 , 1 10 0 0 0 0 0 +[Page 16] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 5 0 - 1 10 0 0 1 0 1 +Segment Routing segment S Se Seg Segm BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 0 no 0 10 0 0 1 0 1 +July 2019 july J Ju Jul July BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 5 0 no 0 3 0 0 0 0 1 +2.4.3.2.4. Type 2.4.3.2.4. 2 2. 2.4 2.4. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 0 .....: 6 10 0 0 0 0 1 +The Type-4 the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 0 --, 3 10 0 0 0 0 1 +and an and a an and and BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 0 . 1 9 0 0 0 0 1 +follows: follows: follows: f fo fol foll BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 0 : 1 1 0 0 0 0 1 +0 0 0 0 0 0 0 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 5 1 no 0 0 0 0 0 0 1 +1 1 1 1 1 1 1 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 5 1 no 0 0 0 0 0 0 1 +2 2 2 2 2 2 2 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 5 1 no 0 0 0 0 0 0 1 +3 3 3 3 3 3 3 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 5 1 no 0 0 0 0 0 0 1 +0 1 0 0 0 0 0 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 5 1 no 0 9 0 0 0 0 1 ++-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ + +- +-+ +-+- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 5 1 -------------------------------- 32 10 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 1 no 0 0 0 0 0 0 1 +Type Type type T Ty Typ Type BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 1 no 0 0 0 0 0 0 1 +Length Length length L Le Len Leng BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 1 no 0 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 1 no 0 0 0 0 0 0 1 +Flags Flags flags F Fl Fla Flag BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 1 no 0 0 0 0 0 0 1 +| SR | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 1 no 0 2 0 0 0 0 1 ++-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ + +- +-+ +-+- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 5 1 -------------------------------- 32 10 0 0 0 0 1 +// // // / // // // BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 5 1 // 2 0 0 0 0 0 1 +IPv6 Node ipv6 I IP IPv IPv6 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 1 () 2 4 0 0 0 0 1 +// // // / // // // BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 5 1 // 2 0 0 0 0 0 1 ++-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ + +- +-+ +-+- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 5 1 -------------------------------- 32 10 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 1 no 0 0 0 0 0 0 1 +SID (optional, sid S SI SID SID BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 1 0 0 0 0 0 0 5 1 (,) 3 3 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 1 no 0 0 0 0 0 0 1 ++-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ + +- +-+ +-+- BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 5 1 -------------------------------- 32 10 0 0 0 0 1 +where: where: where: w wh whe wher BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 6 : 1 10 0 0 0 0 1 +o Type: o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 5 6 :(" 3 10 0 0 0 0 1 +Sub-TLVs" defined sub-tlvs" S Su Sub Sub- BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 5 6 -"). 4 5 0 0 0 0 1 +o Length o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 5 6 . 1 10 0 0 0 0 1 +o Flags: o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 5 6 :..... 6 10 0 0 0 0 1 +o SR o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 5 7 : 1 9 0 0 0 0 1 +section 3.1.1 section s se sec sect BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 7 ..[-.---],- 11 10 0 0 0 0 1 +defined in defined d de def defi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 7 ..... 5 9 0 0 0 0 1 +SRPM as srpm S SR SRP SRPM BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 5 7 no 0 5 0 0 0 0 1 +[I-D.ietf-spring-segment-routing-policy]. When [i-d.ietf-spring-segment-routing-policy]. [ [I [I- [I-D BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 7 [-.----].- 10 9 0 0 0 0 1 +encoded, this encoded, e en enc enco BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 7 , 1 9 0 0 0 0 1 +ignored on ignored i ig ign igno BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 7 . 1 2 0 0 0 0 1 +o IPv6 o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 5 9 :. 2 10 0 0 0 0 1 +o SID: o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 5 9 :. 2 10 0 0 0 0 1 +The following the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 9 --: 3 10 0 0 0 0 1 +o The o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 5 10 . 1 10 0 0 0 0 1 +o The o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 5 10 no 0 10 0 0 0 0 1 +label, TC, label, l la lab labe BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 10 ,,..... 7 8 0 0 0 0 1 +o If o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 5 10 ,. 2 10 0 0 0 0 1 +o If o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 5 11 , 1 10 0 0 0 0 1 +present. present. present. p pr pre pres BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 11 . 1 1 0 0 0 0 1 +Previdi, et previdi, P Pr Pre Prev BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 5 11 ,. 2 6 0 0 1 0 0 +Expires January expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 11 , 1 10 0 0 0 0 0 +[Page 17] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 5 0 - 1 10 0 0 1 0 1 +Segment Routing segment S Se Seg Segm BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 0 no 0 10 0 0 1 0 1 +July 2019 july J Ju Jul July BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 5 0 no 0 3 0 0 0 0 1 +2.4.3.2.5. Type 2.4.3.2.5. 2 2. 2.4 2.4. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 0 .....: 6 10 0 0 0 0 1 +The Type-5 the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 0 --, 3 9 0 0 0 0 1 +interface Identifier interface i in int inte BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 0 () 2 10 0 0 0 0 1 +form of form f fo for form BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 0 .: 2 7 0 0 0 0 1 +0 0 0 0 0 0 0 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 5 1 no 0 0 0 0 0 0 1 +1 1 1 1 1 1 1 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 5 1 no 0 0 0 0 0 0 1 +2 2 2 2 2 2 2 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 5 1 no 0 0 0 0 0 0 1 +3 3 3 3 3 3 3 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 5 1 no 0 0 0 0 0 0 1 +0 1 0 0 0 0 0 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 5 1 no 0 9 0 0 0 0 1 ++-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ + +- +-+ +-+- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 5 1 -------------------------------- 32 10 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 1 no 0 0 0 0 0 0 1 +Type Type type T Ty Typ Type BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 1 no 0 0 0 0 0 0 1 +Length Length length L Le Len Leng BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 1 no 0 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 1 no 0 0 0 0 0 0 1 +Flags Flags flags F Fl Fla Flag BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 1 no 0 0 0 0 0 0 1 +RESERVED RESERVED reserved R RE RES RESE BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 5 1 no 0 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 1 no 0 0 0 0 0 0 1 ++-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ + +- +-+ +-+- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 5 1 -------------------------------- 32 10 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 1 no 0 0 0 0 0 0 1 +Local Interface local L Lo Loc Loca BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 1 () 2 4 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 1 no 0 0 0 0 0 0 1 ++-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ + +- +-+ +-+- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 5 1 -------------------------------- 32 10 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 1 no 0 0 0 0 0 0 1 +IPv4 Node ipv4 I IP IPv IPv4 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 1 () 2 4 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 1 no 0 0 0 0 0 0 1 ++-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ + +- +-+ +-+- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 5 1 -------------------------------- 32 10 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 1 no 0 0 0 0 0 0 1 +SID (optional, sid S SI SID SID BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 1 0 0 0 0 0 0 5 1 (,) 3 3 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 1 no 0 0 0 0 0 0 1 ++-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ + +- +-+ +-+- BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 5 1 -------------------------------- 32 10 0 0 0 0 1 +where: where: where: w wh whe wher BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 7 : 1 10 0 0 0 0 1 +o Type: o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 5 7 :(" 3 10 0 0 0 0 1 +Sub-TLVs" defined sub-tlvs" S Su Sub Sub- BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 5 7 -"). 4 5 0 0 0 0 1 +o Length o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 5 7 . 1 10 0 0 0 0 1 +o Flags: o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 5 8 :..... 6 10 0 0 0 0 1 +o RESERVED: o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 5 8 :. 2 10 0 0 0 0 1 +transmission and transmission t tr tra tran BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 8 . 1 7 0 0 0 0 1 +o Local o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 5 8 : 1 10 0 0 0 0 1 +[I-D.ietf-pce-segment-routing]. [I-D.ietf-pce-segment-routing]. [i-d.ietf-pce-segment-routing]. [ [I [I- [I-D BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 8 [-.---]. 8 5 0 0 0 0 1 +o IPv4 o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 5 9 :. 2 10 0 0 0 0 1 +o SID: o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 5 9 :. 2 10 0 0 0 0 1 +The following the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 9 --: 3 10 0 0 0 0 1 +o The o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 5 10 . 1 10 0 0 0 0 1 +o The o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 5 10 . 1 10 0 0 0 0 1 +o The o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 5 10 no 0 10 0 0 0 0 1 +label, TC, label, l la lab labe BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 10 ,,..... 7 8 0 0 0 0 1 +o If o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 5 11 , 1 10 0 0 0 0 1 +are present. are a ar are are BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 11 . 1 1 0 0 0 0 1 +Previdi, et previdi, P Pr Pre Prev BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 5 11 ,. 2 6 0 0 1 0 0 +Expires January expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 11 , 1 10 0 0 0 0 0 +[Page 18] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 5 0 - 1 10 0 0 1 0 1 +Segment Routing segment S Se Seg Segm BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 0 no 0 10 0 0 1 0 1 +July 2019 july J Ju Jul July BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 5 0 no 0 3 0 0 0 0 1 +o If o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 5 0 ,, 2 10 0 0 0 0 1 +ID and id I ID ID ID BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 1 0 0 0 0 0 0 5 0 . 1 4 0 0 0 0 1 +2.4.3.2.6. Type 2.4.3.2.6. 2 2. 2.4 2.4. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 0 .....: 6 10 0 0 0 0 1 +The Type-6 the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 1 --, 3 9 0 0 0 0 1 +adjacency remote adjacency a ad adj adja BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 1 no 0 10 0 0 0 0 1 +label. The label. l la lab labe BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 1 .: 2 4 0 0 0 0 1 +0 0 0 0 0 0 0 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 5 2 no 0 0 0 0 0 0 1 +1 1 1 1 1 1 1 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 5 2 no 0 0 0 0 0 0 1 +2 2 2 2 2 2 2 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 5 2 no 0 0 0 0 0 0 1 +3 3 3 3 3 3 3 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 5 2 no 0 0 0 0 0 0 1 +0 1 0 0 0 0 0 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 5 2 no 0 9 0 0 0 0 1 ++-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ + +- +-+ +-+- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 5 2 -------------------------------- 32 10 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 2 no 0 0 0 0 0 0 1 +Type Type type T Ty Typ Type BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 2 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 2 no 0 0 0 0 0 0 1 +Length Length length L Le Len Leng BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 2 no 0 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 2 no 0 0 0 0 0 0 1 +Flags Flags flags F Fl Fla Flag BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 2 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 2 no 0 0 0 0 0 0 1 +RESERVED RESERVED reserved R RE RES RESE BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 5 2 no 0 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 2 no 0 0 0 0 0 0 1 ++-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ + +- +-+ +-+- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 5 2 -------------------------------- 32 10 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 2 no 0 0 0 0 0 0 1 +Local IPv4 local L Lo Loc Loca BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 2 () 2 4 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 2 no 0 0 0 0 0 0 1 ++-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ + +- +-+ +-+- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 5 2 -------------------------------- 32 10 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 2 no 0 0 0 0 0 0 1 +Remote IPv4 remote R Re Rem Remo BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 2 () 2 4 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 2 no 0 0 0 0 0 0 1 ++-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ + +- +-+ +-+- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 5 2 -------------------------------- 32 10 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 2 no 0 0 0 0 0 0 1 +SID (optional, sid S SI SID SID BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 1 0 0 0 0 0 0 5 2 (,) 3 3 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 2 no 0 0 0 0 0 0 1 ++-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ + +- +-+ +-+- BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 5 2 -------------------------------- 32 10 0 0 0 0 1 +where: where: where: w wh whe wher BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 8 : 1 10 0 0 0 0 1 +o Type: o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 5 8 :(" 3 10 0 0 0 0 1 +Sub-TLVs" defined sub-tlvs" S Su Sub Sub- BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 5 8 -"). 4 5 0 0 0 0 1 +o Length o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 5 8 . 1 10 0 0 0 0 1 +o Flags: o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 5 8 :..... 6 10 0 0 0 0 1 +o RESERVED: o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 6 9 :. 2 10 0 0 0 0 1 +transmission and transmission t tr tra tran BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 9 . 1 7 0 0 0 0 1 +o Local o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 6 9 :. 2 10 0 0 0 0 1 +o Remote o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 6 10 :. 2 10 0 0 0 0 1 +o SID: o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 6 10 :. 2 10 0 0 0 0 1 +The following the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 10 --: 3 10 0 0 0 0 1 +o The o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 6 10 no 0 10 0 0 0 0 1 +local address. local l lo loc loca BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 10 . 1 2 0 0 0 0 1 +o The o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 6 11 no 0 10 0 0 0 0 1 +end of end e en end end BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 11 . 1 3 0 0 0 0 1 +Previdi, et previdi, P Pr Pre Prev BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 6 11 ,. 2 6 0 0 1 0 0 +Expires January expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 11 , 1 10 0 0 0 0 0 +[Page 19] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 6 0 - 1 10 0 0 1 0 1 +Segment Routing segment S Se Seg Segm BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 0 no 0 10 0 0 1 0 1 +July 2019 july J Ju Jul July BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 6 0 no 0 3 0 0 0 0 1 +o The o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 6 0 no 0 10 0 0 0 0 1 +label, TC, label, l la lab labe BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 0 ,,..... 7 8 0 0 0 0 1 +o If o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 6 0 , 1 10 0 0 0 0 1 +present. present. present. p pr pre pres BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 0 . 1 1 0 0 0 0 1 +o If o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 6 1 ,, 2 10 0 0 0 0 1 +and the and a an and and BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 1 . 1 4 0 0 0 0 1 +2.4.3.2.7. Type 2.4.3.2.7. 2 2. 2.4 2.4. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 1 .....: 6 10 0 0 0 0 1 +pair with pair p pa pai pair BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 1 no 0 5 0 0 0 0 1 +The Type-7 the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 2 -- 2 10 0 0 0 0 1 +IPv6 local ipv6 I IP IPv IPv6 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 2 ,( 2 8 0 0 0 0 1 +Interface ID), interface I In Int Inte BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 2 ),, 3 8 0 0 0 0 1 +identifier (Remote identifier i id ide iden BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 2 () 2 9 0 0 0 0 1 +an MPLS an a an an an BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 6 2 .: 2 5 0 0 0 0 1 +0 0 0 0 0 0 0 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 6 3 no 0 0 0 0 0 0 1 +1 1 1 1 1 1 1 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 6 3 no 0 0 0 0 0 0 1 +2 2 2 2 2 2 2 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 6 3 no 0 0 0 0 0 0 1 +3 3 3 3 3 3 3 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 6 3 no 0 0 0 0 0 0 1 +0 1 0 0 0 0 0 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 6 3 no 0 9 0 0 0 0 1 ++-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ + +- +-+ +-+- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 6 3 -------------------------------- 32 10 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 3 no 0 0 0 0 0 0 1 +Type Type type T Ty Typ Type BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 3 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 3 no 0 0 0 0 0 0 1 +Length Length length L Le Len Leng BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 3 no 0 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 3 no 0 0 0 0 0 0 1 +Flags Flags flags F Fl Fla Flag BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 3 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 3 no 0 0 0 0 0 0 1 +RESERVED RESERVED reserved R RE RES RESE BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 6 3 no 0 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 3 no 0 0 0 0 0 0 1 ++-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ + +- +-+ +-+- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 6 3 -------------------------------- 32 10 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 3 no 0 0 0 0 0 0 1 +Local Interface local L Lo Loc Loca BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 3 () 2 4 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 3 no 0 0 0 0 0 0 1 ++-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ + +- +-+ +-+- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 6 3 -------------------------------- 32 10 0 0 0 0 1 +// // // / // // // BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 6 3 // 2 0 0 0 0 0 1 +IPv6 Local ipv6 I IP IPv IPv6 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 3 () 2 5 0 0 0 0 1 +// // // / // // // BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 6 3 // 2 0 0 0 0 0 1 ++-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ + +- +-+ +-+- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 6 3 -------------------------------- 32 10 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 3 no 0 0 0 0 0 0 1 +Remote Interface remote R Re Rem Remo BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 3 () 2 4 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 3 no 0 0 0 0 0 0 1 ++-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ + +- +-+ +-+- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 6 3 -------------------------------- 32 10 0 0 0 0 1 +// // // / // // // BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 6 3 // 2 0 0 0 0 0 1 +IPv6 Remote ipv6 I IP IPv IPv6 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 3 () 2 5 0 0 0 0 1 +// // // / // // // BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 6 3 // 2 0 0 0 0 0 1 ++-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ + +- +-+ +-+- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 6 3 -------------------------------- 32 10 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 3 no 0 0 0 0 0 0 1 +SID (optional, sid S SI SID SID BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 1 0 0 0 0 0 0 6 3 (,) 3 3 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 3 no 0 0 0 0 0 0 1 ++-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ + +- +-+ +-+- BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 6 3 -------------------------------- 32 10 0 0 0 0 1 +where: where: where: w wh whe wher BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 9 : 1 10 0 0 0 0 1 +o Type: o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 6 9 :(" 3 10 0 0 0 0 1 +Sub-TLVs" defined sub-tlvs" S Su Sub Sub- BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 6 9 -"). 4 5 0 0 0 0 1 +o Length o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 6 10 ,,. 3 10 0 0 0 0 1 +o Flags: o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 6 10 :..... 6 10 0 0 0 0 1 +o RESERVED: o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 6 10 :. 2 10 0 0 0 0 1 +transmission and transmission t tr tra tran BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 10 . 1 7 0 0 0 0 1 +o Local o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 6 11 : 1 10 0 0 0 0 1 +[I-D.ietf-pce-segment-routing]. [I-D.ietf-pce-segment-routing]. [i-d.ietf-pce-segment-routing]. [ [I [I- [I-D BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 11 [-.---]. 8 5 0 0 0 0 1 +Previdi, et previdi, P Pr Pre Prev BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 6 11 ,. 2 6 0 0 1 0 0 +Expires January expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 11 , 1 10 0 0 0 0 0 +[Page 20] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 6 0 - 1 10 0 0 1 0 1 +Segment Routing segment S Se Seg Segm BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 0 no 0 10 0 0 1 0 1 +July 2019 july J Ju Jul July BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 6 0 no 0 3 0 0 0 0 1 +o IPv6 o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 6 0 :. 2 10 0 0 0 0 1 +o Remote o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 6 0 : 1 10 0 0 0 0 1 +[I-D.ietf-pce-segment-routing]. [I-D.ietf-pce-segment-routing]. [i-d.ietf-pce-segment-routing]. [ [I [I- [I-D BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 0 [-.---]. 8 4 0 0 0 0 1 +o IPv6 o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 6 1 :. 2 10 0 0 0 0 1 +o SID: o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 6 2 :. 2 10 0 0 0 0 1 +The following the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 2 --: 3 10 0 0 0 0 1 +o The o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 6 2 no 0 10 0 0 0 0 1 +present. present. present. p pr pre pres BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 2 . 1 1 0 0 0 0 1 +o The o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 6 3 . 1 10 0 0 0 0 1 +If Remote if I If If If BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 3 , 1 9 0 0 0 0 1 +present as present p pr pre pres BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 3 .,, 3 9 0 0 0 0 1 +the Remote the t th the the BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 3 . 1 7 0 0 0 0 1 +o The o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 6 4 no 0 10 0 0 0 0 1 +label, TC, label, l la lab labe BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 4 ,,..... 7 8 0 0 0 0 1 +o If o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 6 5 , 1 10 0 0 0 0 1 +Address are address A Ad Add Addr BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 5 . 1 3 0 0 0 0 1 +o If o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 6 6 ,, 2 10 0 0 0 0 1 +and the and a an and and BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 6 . 1 4 0 0 0 0 1 +o If o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 6 7 ,, 2 9 0 0 0 0 1 +Address, Remote address, A Ad Add Addr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 7 ,, 2 10 0 0 0 0 1 +present. present. present. p pr pre pres BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 7 . 1 1 0 0 0 0 1 +o If o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 6 8 ,, 2 10 0 0 0 0 1 +Address, Remote address, A Ad Add Addr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 8 ,, 2 9 0 0 0 0 1 +MPLS SID mpls M MP MPL MPLS BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 6 8 . 1 3 0 0 0 0 1 +2.4.3.2.8. Type 2.4.3.2.8. 2 2. 2.4 2.4. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 9 .....: 6 10 0 0 0 0 1 +for SR for f fo for for BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 9 no 0 1 0 0 0 0 1 +The Type-8 the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 10 --, 3 9 0 0 0 0 1 +adjacency remote adjacency a ad adj adja BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 10 no 0 10 0 0 0 0 1 +label. The label. l la lab labe BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 10 .: 2 4 0 0 0 0 1 +Previdi, et previdi, P Pr Pre Prev BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 6 11 ,. 2 6 0 0 1 0 0 +Expires January expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 11 , 1 10 0 0 0 0 0 +[Page 21] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 6 0 - 1 10 0 0 1 0 1 +Segment Routing segment S Se Seg Segm BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 0 no 0 10 0 0 1 0 1 +July 2019 july J Ju Jul July BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 6 0 no 0 3 0 0 0 0 1 +0 0 0 0 0 0 0 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 6 0 no 0 0 0 0 0 0 1 +1 1 1 1 1 1 1 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 6 0 no 0 0 0 0 0 0 1 +2 2 2 2 2 2 2 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 6 0 no 0 0 0 0 0 0 1 +3 3 3 3 3 3 3 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 6 0 no 0 0 0 0 0 0 1 +0 1 0 0 0 0 0 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 6 0 no 0 9 0 0 0 0 1 ++-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ + +- +-+ +-+- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 6 0 -------------------------------- 32 10 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 0 no 0 0 0 0 0 0 1 +Type Type type T Ty Typ Type BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 0 no 0 0 0 0 0 0 1 +Length Length length L Le Len Leng BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 0 no 0 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 0 no 0 0 0 0 0 0 1 +Flags Flags flags F Fl Fla Flag BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 0 no 0 0 0 0 0 0 1 +RESERVED RESERVED reserved R RE RES RESE BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 6 0 no 0 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 0 no 0 0 0 0 0 0 1 ++-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ + +- +-+ +-+- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 6 0 -------------------------------- 32 10 0 0 0 0 1 +// // // / // // // BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 6 0 // 2 0 0 0 0 0 1 +Local IPv6 local L Lo Loc Loca BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 0 () 2 4 0 0 0 0 1 +// // // / // // // BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 6 0 // 2 0 0 0 0 0 1 ++-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ + +- +-+ +-+- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 6 0 -------------------------------- 32 10 0 0 0 0 1 +// // // / // // // BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 6 0 // 2 0 0 0 0 0 1 +Remote IPv6 remote R Re Rem Remo BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 0 () 2 4 0 0 0 0 1 +// // // / // // // BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 6 0 // 2 0 0 0 0 0 1 ++-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ + +- +-+ +-+- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 6 0 -------------------------------- 32 10 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 0 no 0 0 0 0 0 0 1 +SID (optional, sid S SI SID SID BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 1 0 0 0 0 0 0 6 0 (,) 3 3 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 0 no 0 0 0 0 0 0 1 ++-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ + +- +-+ +-+- BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 6 0 -------------------------------- 32 10 0 0 0 0 1 +where: where: where: w wh whe wher BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 6 : 1 10 0 0 0 0 1 +o Type: o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 6 6 :(" 3 10 0 0 0 0 1 +Sub-TLVs" defined sub-tlvs" S Su Sub Sub- BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 6 6 -"). 4 5 0 0 0 0 1 +o Length o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 6 7 . 1 10 0 0 0 0 1 +o Flags: o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 6 7 :..... 6 10 0 0 0 0 1 +o RESERVED: o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 6 7 :. 2 10 0 0 0 0 1 +transmission and transmission t tr tra tran BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 7 . 1 7 0 0 0 0 1 +o Local o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 6 8 :. 2 10 0 0 0 0 1 +o Remote o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 6 8 :. 2 10 0 0 0 0 1 +o SID: o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 6 8 :. 2 10 0 0 0 0 1 +The following the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 8 --: 3 10 0 0 0 0 1 +o The o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 6 9 no 0 10 0 0 0 0 1 +local address. local l lo loc loca BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 9 . 1 2 0 0 0 0 1 +o The o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 6 9 no 0 10 0 0 0 0 1 +end of end e en end end BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 9 . 1 3 0 0 0 0 1 +o The o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 7 10 no 0 10 0 0 0 0 1 +label, TC, label, l la lab labe BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 10 ,,..... 7 8 0 0 0 0 1 +o If o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 7 10 , 1 10 0 0 0 0 1 +present. present. present. p pr pre pres BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 10 . 1 1 0 0 0 0 1 +o If o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 7 11 , 1 10 0 0 0 0 1 +SID are sid S SI SID SID BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 1 0 0 0 0 0 0 7 11 . 1 2 0 0 0 0 1 +Previdi, et previdi, P Pr Pre Prev BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 7 11 ,. 2 6 0 0 1 0 0 +Expires January expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 11 , 1 10 0 0 0 0 0 +[Page 22] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 7 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 7 0 - 1 10 0 0 1 0 1 +Segment Routing segment S Se Seg Segm BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 0 no 0 10 0 0 1 0 1 +July 2019 july J Ju Jul July BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 7 0 no 0 3 0 0 0 0 1 +2.4.3.2.9. Type 2.4.3.2.9. 2 2. 2.4 2.4. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 0 .....: 6 10 0 0 0 0 1 +The Type-9 the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 0 --, 3 10 0 0 0 0 1 +and an and a an and and BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 0 . 1 9 0 0 0 0 1 +follows: follows: follows: f fo fol foll BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 0 : 1 1 0 0 0 0 1 +0 0 0 0 0 0 0 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 7 1 no 0 0 0 0 0 0 1 +1 1 1 1 1 1 1 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 7 1 no 0 0 0 0 0 0 1 +2 2 2 2 2 2 2 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 7 1 no 0 0 0 0 0 0 1 +3 3 3 3 3 3 3 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 7 1 no 0 0 0 0 0 0 1 +0 1 0 0 0 0 0 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 7 1 no 0 9 0 0 0 0 1 ++-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ + +- +-+ +-+- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 7 1 -------------------------------- 32 10 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 1 no 0 0 0 0 0 0 1 +Type Type type T Ty Typ Type BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 1 no 0 0 0 0 0 0 1 +Length Length length L Le Len Leng BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 1 no 0 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 1 no 0 0 0 0 0 0 1 +Flags Flags flags F Fl Fla Flag BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 1 no 0 0 0 0 0 0 1 +| SR | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 1 no 0 2 0 0 0 0 1 ++-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ + +- +-+ +-+- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 7 1 -------------------------------- 32 10 0 0 0 0 1 +// // // / // // // BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 7 1 // 2 0 0 0 0 0 1 +IPv6 Node ipv6 I IP IPv IPv6 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 1 () 2 4 0 0 0 0 1 +// // // / // // // BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 7 1 // 2 0 0 0 0 0 1 ++-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ + +- +-+ +-+- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 7 1 -------------------------------- 32 10 0 0 0 0 1 +// // // / // // // BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 7 1 // 2 0 0 0 0 0 1 +SID (optional, sid S SI SID SID BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 1 0 0 0 0 0 0 7 1 (,) 3 3 0 0 0 0 1 +// // // / // // // BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 7 1 // 2 0 0 0 0 0 1 ++-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ + +- +-+ +-+- BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 7 1 -------------------------------- 32 10 0 0 0 0 1 +where: where: where: w wh whe wher BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 6 : 1 10 0 0 0 0 1 +o Type: o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 7 6 :(" 3 10 0 0 0 0 1 +Sub-TLVs" defined sub-tlvs" S Su Sub Sub- BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 7 6 -"). 4 5 0 0 0 0 1 +o Length o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 7 6 . 1 10 0 0 0 0 1 +o Flags: o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 7 7 :..... 6 10 0 0 0 0 1 +o SR o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 7 7 : 1 9 0 0 0 0 1 +section 3.1.1 section s se sec sect BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 7 ..[-.---],- 11 10 0 0 0 0 1 +defined in defined d de def defi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 7 ..... 5 9 0 0 0 0 1 +SRPM as srpm S SR SRP SRPM BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 7 7 no 0 5 0 0 0 0 1 +[I-D.ietf-spring-segment-routing-policy]. When [i-d.ietf-spring-segment-routing-policy]. [ [I [I- [I-D BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 7 7 [-.----].- 10 9 0 0 0 0 1 +encoded, this encoded, e en enc enco BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 7 , 1 9 0 0 0 0 1 +ignored on ignored i ig ign igno BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 7 . 1 2 0 0 0 0 1 +o IPv6 o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 7 9 :. 2 10 0 0 0 0 1 +o SID: o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 7 9 :. 2 10 0 0 0 0 1 +The following the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 9 --: 3 10 0 0 0 0 1 +o The o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 7 10 . 1 10 0 0 0 0 1 +o The o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 7 10 no 0 10 0 0 0 0 1 +octet IPv6 octet o oc oct octe BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 7 10 . 1 3 0 0 0 0 1 +o If o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 7 10 ,. 2 10 0 0 0 0 1 +o If o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 7 11 , 1 10 0 0 0 0 1 +present. present. present. p pr pre pres BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 11 . 1 1 0 0 0 0 1 +Previdi, et previdi, P Pr Pre Prev BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 7 11 ,. 2 6 0 0 1 0 0 +Expires January expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 11 , 1 10 0 0 0 0 0 +[Page 23] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 7 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 7 0 - 1 10 0 0 1 0 1 +Segment Routing segment S Se Seg Segm BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 0 no 0 10 0 0 1 0 1 +July 2019 july J Ju Jul July BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 7 0 no 0 3 0 0 0 0 1 +2.4.3.2.10. Type 2.4.3.2.10. 2 2. 2.4 2.4. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 0 .....: 6 10 0 0 0 0 1 +pair for pair p pa pai pair BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 0 no 0 4 0 0 0 0 1 +The Type-10 the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 0 -- 2 10 0 0 0 0 1 +local node local l lo loc loca BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 0 ,( 2 9 0 0 0 0 1 +ID), remote id), I ID ID) ID), BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 7 0 ),,( 4 10 0 0 0 0 1 +Interface ID) interface I In Int Inte BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 0 ). 2 9 0 0 0 0 1 +The format the T Th The The BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 0 : 1 3 0 0 0 0 1 +0 0 0 0 0 0 0 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 7 1 no 0 0 0 0 0 0 1 +1 1 1 1 1 1 1 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 7 1 no 0 0 0 0 0 0 1 +2 2 2 2 2 2 2 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 7 1 no 0 0 0 0 0 0 1 +3 3 3 3 3 3 3 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 7 1 no 0 0 0 0 0 0 1 +0 1 0 0 0 0 0 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 7 1 no 0 9 0 0 0 0 1 ++-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ + +- +-+ +-+- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 7 1 -------------------------------- 32 10 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 1 no 0 0 0 0 0 0 1 +Type Type type T Ty Typ Type BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 1 no 0 0 0 0 0 0 1 +Length Length length L Le Len Leng BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 1 no 0 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 1 no 0 0 0 0 0 0 1 +Flags Flags flags F Fl Fla Flag BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 1 no 0 0 0 0 0 0 1 +RESERVED RESERVED reserved R RE RES RESE BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 7 1 no 0 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 1 no 0 0 0 0 0 0 1 ++-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ + +- +-+ +-+- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 7 1 -------------------------------- 32 10 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 1 no 0 0 0 0 0 0 1 +Local Interface local L Lo Loc Loca BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 1 () 2 4 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 1 no 0 0 0 0 0 0 1 ++-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ + +- +-+ +-+- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 7 1 -------------------------------- 32 10 0 0 0 0 1 +// // // / // // // BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 7 1 // 2 0 0 0 0 0 1 +IPv6 Local ipv6 I IP IPv IPv6 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 1 () 2 5 0 0 0 0 1 +// // // / // // // BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 7 1 // 2 0 0 0 0 0 1 ++-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ + +- +-+ +-+- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 7 1 -------------------------------- 32 10 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 1 no 0 0 0 0 0 0 1 +Remote Interface remote R Re Rem Remo BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 1 () 2 4 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 1 no 0 0 0 0 0 0 1 ++-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ + +- +-+ +-+- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 7 1 -------------------------------- 32 10 0 0 0 0 1 +// // // / // // // BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 7 1 // 2 0 0 0 0 0 1 +IPv6 Remote ipv6 I IP IPv IPv6 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 1 () 2 5 0 0 0 0 1 +// // // / // // // BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 7 1 // 2 0 0 0 0 0 1 ++-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ + +- +-+ +-+- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 7 1 -------------------------------- 32 10 0 0 0 0 1 +// // // / // // // BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 7 1 // 2 0 0 0 0 0 1 +SID (optional, sid S SI SID SID BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 1 0 0 0 0 0 0 7 1 (,) 3 3 0 0 0 0 1 +// // // / // // // BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 7 1 // 2 0 0 0 0 0 1 ++-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ + +- +-+ +-+- BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 7 1 -------------------------------- 32 10 0 0 0 0 1 +where: where: where: w wh whe wher BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 8 : 1 10 0 0 0 0 1 +o Type: o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 7 8 :(" 3 10 0 0 0 0 1 +Sub-TLVs" defined sub-tlvs" S Su Sub Sub- BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 7 8 -"). 4 5 0 0 0 0 1 +o Length o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 7 9 ,,. 3 10 0 0 0 0 1 +o Flags: o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 7 9 :..... 6 10 0 0 0 0 1 +o RESERVED: o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 7 9 :. 2 10 0 0 0 0 1 +transmission and transmission t tr tra tran BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 9 . 1 7 0 0 0 0 1 +o Local o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 7 10 : 1 10 0 0 0 0 1 +[I-D.ietf-pce-segment-routing]. [I-D.ietf-pce-segment-routing]. [i-d.ietf-pce-segment-routing]. [ [I [I- [I-D BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 7 10 [-.---]. 8 5 0 0 0 0 1 +o IPv6 o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 7 10 :. 2 10 0 0 0 0 1 +o Remote o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 7 10 : 1 10 0 0 0 0 1 +[I-D.ietf-pce-segment-routing]. [I-D.ietf-pce-segment-routing]. [i-d.ietf-pce-segment-routing]. [ [I [I- [I-D BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 7 10 [-.---]. 8 4 0 0 0 0 1 +o IPv6 o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 7 11 :. 2 10 0 0 0 0 1 +o SID: o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 7 11 :. 2 10 0 0 0 0 1 +Previdi, et previdi, P Pr Pre Prev BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 7 11 ,. 2 6 0 0 1 0 0 +Expires January expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 11 , 1 10 0 0 0 0 0 +[Page 24] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 7 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 7 0 - 1 10 0 0 1 0 1 +Segment Routing segment S Se Seg Segm BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 0 no 0 10 0 0 1 0 1 +July 2019 july J Ju Jul July BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 7 0 no 0 3 0 0 0 0 1 +The following the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 0 --: 3 10 0 0 0 0 1 +o The o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 10 0 0 0 0 1 +present. present. present. p pr pre pres BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 0 . 1 1 0 0 0 0 1 +o The o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 7 0 . 1 10 0 0 0 0 1 +If Remote if I If If If BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 0 , 1 9 0 0 0 0 1 +present as present p pr pre pres BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 0 .,, 3 9 0 0 0 0 1 +the Remote the t th the the BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 0 . 1 7 0 0 0 0 1 +o The o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 7 1 no 0 10 0 0 0 0 1 +octet IPv6 octet o oc oct octe BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 7 1 . 1 3 0 0 0 0 1 +o If o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 7 2 ,, 2 10 0 0 0 0 1 +Address, are address, A Ad Add Addr BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 2 ,. 2 3 0 0 0 0 1 +o If o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 7 2 ,, 2 10 0 0 0 0 1 +Address and address A Ad Add Addr BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 2 . 1 5 0 0 0 0 1 +o If o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 7 3 ,, 2 9 0 0 0 0 1 +Address, Remote address, A Ad Add Addr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 3 ,, 2 10 0 0 0 0 1 +present. present. present. p pr pre pres BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 3 . 1 1 0 0 0 0 1 +o If o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 7 4 ,, 2 10 0 0 0 0 1 +Address, Remote address, A Ad Add Addr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 4 ,, 2 9 0 0 0 0 1 +SRv6 SID srv6 S SR SRv SRv6 BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 4 . 1 3 0 0 0 0 1 +2.4.3.2.11. Type 2.4.3.2.11. 2 2. 2.4 2.4. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 4 .....: 6 10 0 0 0 0 1 +optional SID optional o op opt opti BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 4 no 0 1 0 0 0 0 1 +The Type-11 the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 5 --, 3 10 0 0 0 0 1 +adjacency remote adjacency a ad adj adja BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 7 5 no 0 9 0 0 0 0 1 +address. The address. a ad add addr BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 5 .: 2 5 0 0 0 0 1 +0 0 0 0 0 0 0 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 7 5 no 0 0 0 0 0 0 1 +1 1 1 1 1 1 1 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 7 5 no 0 0 0 0 0 0 1 +2 2 2 2 2 2 2 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 7 5 no 0 0 0 0 0 0 1 +3 3 3 3 3 3 3 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 7 5 no 0 0 0 0 0 0 1 +0 1 0 0 0 0 0 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 7 5 no 0 9 0 0 0 0 1 ++-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ + +- +-+ +-+- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 7 5 -------------------------------- 32 10 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 5 no 0 0 0 0 0 0 1 +Type Type type T Ty Typ Type BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 5 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 5 no 0 0 0 0 0 0 1 +Length Length length L Le Len Leng BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 5 no 0 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 5 no 0 0 0 0 0 0 1 +Flags Flags flags F Fl Fla Flag BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 5 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 5 no 0 0 0 0 0 0 1 +RESERVED RESERVED reserved R RE RES RESE BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 7 5 no 0 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 5 no 0 0 0 0 0 0 1 ++-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ + +- +-+ +-+- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 7 5 -------------------------------- 32 10 0 0 0 0 1 +// // // / // // // BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 7 5 // 2 0 0 0 0 0 1 +Local IPv6 local L Lo Loc Loca BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 5 () 2 4 0 0 0 0 1 +// // // / // // // BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 7 5 // 2 0 0 0 0 0 1 ++-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ + +- +-+ +-+- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 7 5 -------------------------------- 32 10 0 0 0 0 1 +// // // / // // // BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 7 5 // 2 0 0 0 0 0 1 +Remote IPv6 remote R Re Rem Remo BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 5 () 2 4 0 0 0 0 1 +// // // / // // // BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 7 5 // 2 0 0 0 0 0 1 ++-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ + +- +-+ +-+- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 7 5 -------------------------------- 32 10 0 0 0 0 1 +// // // / // // // BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 7 5 // 2 0 0 0 0 0 1 +SID (optional, sid S SI SID SID BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 1 0 0 0 0 0 0 7 5 (,) 3 3 0 0 0 0 1 +// // // / // // // BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 7 5 // 2 0 0 0 0 0 1 ++-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ + +- +-+ +-+- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 7 5 -------------------------------- 32 10 0 0 0 0 1 +where: where: where: w wh whe wher BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 5 : 1 1 0 0 0 0 1 +Previdi, et previdi, P Pr Pre Prev BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 8 11 ,. 2 6 0 0 1 0 0 +Expires January expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 11 , 1 10 0 0 0 0 0 +[Page 25] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 8 0 - 1 10 0 0 1 0 1 +Segment Routing segment S Se Seg Segm BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 0 no 0 10 0 0 1 0 1 +July 2019 july J Ju Jul July BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 8 0 no 0 3 0 0 0 0 1 +o Type: o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 8 0 :(" 3 10 0 0 0 0 1 +Sub-TLVs" defined sub-tlvs" S Su Sub Sub- BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 8 0 -"). 4 5 0 0 0 0 1 +o Length o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 8 1 . 1 10 0 0 0 0 1 +o Flags: o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 8 1 :..... 6 10 0 0 0 0 1 +o RESERVED: o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 8 2 :. 2 10 0 0 0 0 1 +transmission and transmission t tr tra tran BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 2 . 1 7 0 0 0 0 1 +o Local o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 8 2 :. 2 10 0 0 0 0 1 +o Remote o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 8 3 :. 2 10 0 0 0 0 1 +o SID: o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 8 3 :. 2 10 0 0 0 0 1 +The following the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 3 --: 3 10 0 0 0 0 1 +o The o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 8 4 . 1 10 0 0 0 0 1 +o The o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 8 4 . 1 10 0 0 0 0 1 +o The o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 8 5 no 0 10 0 0 0 0 1 +octet IPv6 octet o oc oct octe BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 5 . 1 3 0 0 0 0 1 +o If o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 8 5 , 1 10 0 0 0 0 1 +IPv6 Node ipv6 I IP IPv IPv6 BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 5 . 1 4 0 0 0 0 1 +o If o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 8 6 ,, 2 10 0 0 0 0 1 +Node Address node N No Nod Node BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 6 . 1 6 0 0 0 0 1 +2.4.3.2.12. Segment 2.4.3.2.12. 2 2. 2.4 2.4. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 7 ..... 5 10 0 0 0 0 1 +The Segment the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 7 no 0 10 0 0 0 0 1 +"Flags" field "flags" " "F "Fl "Fla BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 7 ""(" 4 9 0 0 0 0 1 +Policy Segment policy P Po Pol Poli BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 7 ".): 4 8 0 0 0 0 1 +0 1 0 0 0 0 0 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 8 9 no 0 8 0 0 0 0 1 ++-+-+-+-+-+-+-+-+ +-+-+-+-+-+-+-+-+ +-+-+-+-+-+-+-+-+ + +- +-+ +-+- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 9 -------- 8 10 0 0 0 0 1 +|V|A| |V|A| |v|a| | |V |V| |V|A BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 9 no 0 3 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 9 no 0 1 0 0 0 0 1 ++-+-+-+-+-+-+-+-+ +-+-+-+-+-+-+-+-+ +-+-+-+-+-+-+-+-+ + +- +-+ +-+- BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 9 -------- 8 10 0 0 0 0 1 +where: where: where: w wh whe wher BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 10 : 1 10 0 0 0 0 1 +V-Flag: This v-flag: V V- V-F V-Fl BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 8 10 -:" 3 10 0 0 0 0 1 +verification" as verification" v ve ver veri BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 10 ". 2 7 0 0 0 0 1 +[I-D.ietf-spring-segment-routing-policy]. [I-D.ietf-spring-segment-routing-policy]. [i-d.ietf-spring-segment-routing-policy]. [ [I [I- [I-D BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 10 [-.----]. 9 7 0 0 0 0 1 +Previdi, et previdi, P Pr Pre Prev BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 8 11 ,. 2 6 0 0 1 0 0 +Expires January expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 11 , 1 10 0 0 0 0 0 +[Page 26] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 8 0 - 1 10 0 0 1 0 1 +Segment Routing segment S Se Seg Segm BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 0 no 0 10 0 0 1 0 1 +July 2019 july J Ju Jul July BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 8 0 no 0 3 0 0 0 0 1 +A-Flag: This a-flag: A A- A-F A-Fl BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 0 -: 2 10 0 0 0 0 1 +"SR Algorithm" "sr " "S "SR "SR BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 0 "". 3 9 0 0 0 0 1 +Algorithm is algorithm A Al Alg Algo BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 0 no 0 8 0 0 0 0 1 +[I-D.ietf-spring-segment-routing-policy]. [I-D.ietf-spring-segment-routing-policy]. [i-d.ietf-spring-segment-routing-policy]. [ [I [I- [I-D BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 0 [-.----]. 9 6 0 0 0 0 1 +Unused bits unused U Un Unu Unus BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 1 no 0 10 0 0 0 0 1 +transmission and transmission t tr tra tran BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 1 . 1 8 0 0 0 0 1 +The following the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 2 : 1 10 0 0 0 0 1 +o V-Flag o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 8 2 -. 2 10 0 0 0 0 1 +o A-Flag o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 8 2 -,.- 4 10 0 0 0 0 1 +appears with appears a ap app appe BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 2 ,. 2 9 0 0 0 0 1 +2.4.4. Explicit 2.4.4. 2 2. 2.4 2.4. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 3 ...- 4 10 0 0 0 0 1 +In order in I In In In BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 8 3 , 1 9 0 0 0 0 1 +necessary to necessary n ne nec nece BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 3 , 1 10 0 0 0 0 1 +more labels more m mo mor more BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 3 . 1 4 0 0 0 0 1 +The Explicit the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 4 ()- 3 10 0 0 0 0 1 +whether an whether w wh whe whet BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 4 [] 2 9 0 0 0 0 1 +unlabeled IP unlabeled u un unl unla BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 4 . 1 6 0 0 0 0 1 +If an if I If If If BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 5 -, 2 10 0 0 0 0 1 +Explicit NULL explicit E Ex Exp Expl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 5 no 0 8 0 0 0 0 1 +configuration. configuration. configuration. c co con conf BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 5 . 1 2 0 0 0 0 1 +The ENLP the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 6 - 1 10 0 0 0 0 1 +the SR the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 6 .-, 3 9 0 0 0 0 1 +update is update u up upd upda BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 6 "--" 4 9 0 0 0 0 1 +of [RFC7606] of o of of of BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 6 []. 3 3 0 0 0 0 1 +The contents the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 7 - 1 10 0 0 0 0 1 +section 4.1 section s se sec sect BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 7 .[-.----]. 10 8 0 0 0 0 1 +0 0 0 0 0 0 0 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 8 8 no 0 0 0 0 0 0 1 +1 1 1 1 1 1 1 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 8 8 no 0 0 0 0 0 0 1 +2 2 2 2 2 2 2 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 8 8 no 0 0 0 0 0 0 1 +3 3 3 3 3 3 3 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 8 8 no 0 0 0 0 0 0 1 +0 1 0 0 0 0 0 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 8 8 no 0 9 0 0 0 0 1 ++-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ + +- +-+ +-+- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 8 -------------------------------- 32 10 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 8 no 0 0 0 0 0 0 1 +Type Type type T Ty Typ Type BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 8 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 8 no 0 0 0 0 0 0 1 +Length Length length L Le Len Leng BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 8 no 0 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 8 no 0 0 0 0 0 0 1 +Flags Flags flags F Fl Fla Flag BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 8 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 8 no 0 0 0 0 0 0 1 +RESERVED RESERVED reserved R RE RES RESE BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 8 8 no 0 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 8 no 0 0 0 0 0 0 1 ++-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ + +- +-+ +-+- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 8 -------------------------------- 32 10 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 8 no 0 0 0 0 0 0 1 +ENLP ENLP enlp E EN ENL ENLP BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 8 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 8 no 0 0 0 0 0 0 1 ++-+-+-+-+-+-+-+-+ +-+-+-+-+-+-+-+-+ +-+-+-+-+-+-+-+-+ + +- +-+ +-+- BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 8 -------- 8 2 0 0 0 0 1 +Where: Where: where: W Wh Whe Wher BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 11 : 1 10 0 0 0 0 1 +Previdi, et previdi, P Pr Pre Prev BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 8 11 ,. 2 6 0 0 1 0 0 +Expires January expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 11 , 1 10 0 0 0 0 0 +[Page 27] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 8 0 - 1 10 0 0 1 0 1 +Segment Routing segment S Se Seg Segm BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 0 no 0 10 0 0 1 0 1 +July 2019 july J Ju Jul July BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 8 0 no 0 3 0 0 0 0 1 +Type: TBD1 type: T Ty Typ Type BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 0 :(" 3 10 0 0 0 0 1 +Encapsulation Attribute encapsulation E En Enc Enca BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 8 0 -" 2 9 0 0 0 0 1 +Section 8.3). section S Se Sec Sect BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 0 .). 3 2 0 0 0 0 1 +Length: 3. length: L Le Len Leng BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 1 :. 2 10 0 0 0 0 1 +Flags: 1 flags: F Fl Fla Flag BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 1 :.. 3 10 0 0 0 0 1 +SHOULD be should S SH SHO SHOU BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 8 1 no 0 9 0 0 0 0 1 +receipt. receipt. receipt. r re rec rece BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 1 . 1 1 0 0 0 0 1 +RESERVED: 1 reserved: R RE RES RESE BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 8 2 :. 2 10 0 0 0 0 1 +transmission and transmission t tr tra tran BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 2 . 1 8 0 0 0 0 1 +ENLP(Explicit NULL enlp(explicit E EN ENL ENLP BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 8 3 (): 3 10 0 0 0 0 1 +labels are labels l la lab labe BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 3 no 0 9 0 0 0 0 1 +steered into steered s st ste stee BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 3 . 1 8 0 0 0 0 1 +following 4 following f fo fol foll BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 3 : 1 3 0 0 0 0 1 +0: Reserved. 0: 0 0: 0: 0: BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 5 :. 2 10 0 0 0 0 1 +1: Push 1: 1 1: 1: 1: BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 5 : 1 9 0 0 0 0 1 +packet, but packet, p pa pac pack BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 5 , 1 10 0 0 0 0 1 +unlabeled IPv6 unlabeled u un unl unla BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 5 . 1 3 0 0 0 0 1 +2: Push 2: 2 2: 2: 2: BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 6 : 1 9 0 0 0 0 1 +packet, but packet, p pa pac pack BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 6 , 1 10 0 0 0 0 1 +unlabeled IPv4 unlabeled u un unl unla BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 6 . 1 3 0 0 0 0 1 +3: Push 3: 3 3: 3: 3: BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 7 : 1 9 0 0 0 0 1 +packet, and packet, p pa pac pack BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 7 , 1 10 0 0 0 0 1 +IPv6 packet. ipv6 I IP IPv IPv6 BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 7 . 1 2 0 0 0 0 1 +4: Do 4: 4 4: 4: 4: BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 8 :. 2 10 0 0 0 0 1 +5 -255: 5 5 5 5 5 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 8 8 -:. 3 10 0 0 0 0 1 +The ENLP the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 9 no 0 9 0 0 0 0 1 +implementations SHOULD implementations i im imp impl BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 9 -. 2 10 0 0 0 0 1 +The policy the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 9 - 1 10 0 0 0 0 1 +configuration. The configuration. c co con conf BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 9 .. 2 5 0 0 0 0 1 +[I-D.ietf-spring-segment-routing-policy] draft [i-d.ietf-spring-segment-routing-policy] [ [I [I- [I-D BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 9 [-.----] 8 9 0 0 0 0 1 +behavior on behavior b be beh beha BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 9 . 1 9 0 0 0 0 1 +Previdi, et previdi, P Pr Pre Prev BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 8 11 ,. 2 6 0 0 1 0 0 +Expires January expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 11 , 1 10 0 0 0 0 0 +[Page 28] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 8 0 - 1 10 0 0 1 0 1 +Segment Routing segment S Se Seg Segm BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 0 no 0 10 0 0 1 0 1 +July 2019 july J Ju Jul July BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 8 0 no 0 3 0 0 0 0 1 +2.4.5. Policy 2.4.5. 2 2. 2.4 2.4. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 0 ...- 4 10 0 0 0 0 1 +An operator an A An An An BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 8 0 - 1 10 0 0 0 0 1 +in which in i in in in BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 8 0 -. 2 9 0 0 0 0 1 +The Priority the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 1 - 1 10 0 0 0 0 1 +selection or selection s se sel sele BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 1 .- 2 10 0 0 0 0 1 +are used are a ar are are BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 1 . 1 8 0 0 0 0 1 +[I-D.ietf-spring-segment-routing-policy]. [I-D.ietf-spring-segment-routing-policy]. [i-d.ietf-spring-segment-routing-policy]. [ [I [I- [I-D BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 1 [-.----]. 9 6 0 0 0 0 1 +The Priority the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 2 - 1 9 0 0 0 0 1 +once in once o on onc once BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 2 .- 2 10 0 0 0 0 1 +once, the once, o on onc once BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 2 ,"--" 5 10 0 0 0 0 1 +strategy of strategy s st str stra BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 2 []. 3 4 0 0 0 0 1 +The Priority the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 3 -: 2 10 0 0 0 0 1 +0 0 0 0 0 0 0 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 9 3 no 0 0 0 0 0 0 1 +1 1 1 1 1 1 1 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 9 3 no 0 0 0 0 0 0 1 +2 2 2 2 2 2 2 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 9 3 no 0 0 0 0 0 0 1 +3 3 3 3 3 3 3 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 9 3 no 0 0 0 0 0 0 1 +0 1 0 0 0 0 0 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 9 3 no 0 9 0 0 0 0 1 ++-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ + +- +-+ +-+- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 3 -------------------------------- 32 10 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 3 no 0 0 0 0 0 0 1 +Type Type type T Ty Typ Type BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 3 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 3 no 0 0 0 0 0 0 1 +Length Length length L Le Len Leng BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 3 no 0 1 0 0 0 0 1 +| Priority | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 3 no 0 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 3 no 0 0 0 0 0 0 1 +RESERVED RESERVED reserved R RE RES RESE BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 9 3 no 0 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 3 no 0 0 0 0 0 0 1 ++-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ + +- +-+ +-+- BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 3 -------------------------------- 32 10 0 0 0 0 1 +Where: Where: where: W Wh Whe Wher BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 7 : 1 10 0 0 0 0 1 +Type: TBD2 type: T Ty Typ Type BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 7 :(" 3 10 0 0 0 0 1 +Encapsulation Attribute encapsulation E En Enc Enca BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 9 7 -" 2 9 0 0 0 0 1 +Section 8.3). section S Se Sec Sect BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 7 .). 3 2 0 0 0 0 1 +Length: 2. length: L Le Len Leng BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 7 :. 2 10 0 0 0 0 1 +Priority: a priority: P Pr Pri Prio BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 8 :-. 3 10 0 0 0 0 1 +RESERVED: 1 reserved: R RE RES RESE BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 9 8 :. 2 10 0 0 0 0 1 +transmission and transmission t tr tra tran BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 8 . 1 8 0 0 0 0 1 +2.4.6. Policy 2.4.6. 2 2. 2.4 2.4. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 8 ...- 4 10 0 0 0 0 1 +An operator an A An An An BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 9 8 - 1 10 0 0 0 0 1 +to the to t to to to BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 8 . 1 4 0 0 0 0 1 +Usage of usage U Us Usa Usag BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 9 - 1 10 0 0 0 0 1 +[I-D.ietf-spring-segment-routing-policy]. [I-D.ietf-spring-segment-routing-policy]. [i-d.ietf-spring-segment-routing-policy]. [ [I [I- [I-D BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 9 [-.----]. 9 7 0 0 0 0 1 +The Policy the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 10 - 1 9 0 0 0 0 1 +policy name. policy p po pol poli BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 10 .-. 3 9 0 0 0 0 1 +[I-D.ietf-idr-tunnel-encaps], the [i-d.ietf-idr-tunnel-encaps], [ [I [I- [I-D BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 10 [-.---],- 9 10 0 0 0 0 1 +defines the defines d de def defi BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 10 ., 2 10 0 0 0 0 1 +Previdi, et previdi, P Pr Pre Prev BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 9 11 ,. 2 6 0 0 1 0 0 +Expires January expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 11 , 1 10 0 0 0 0 0 +[Page 29] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 9 0 - 1 10 0 0 1 0 1 +Segment Routing segment S Se Seg Segm BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 0 no 0 10 0 0 1 0 1 +July 2019 july J Ju Jul July BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 9 0 no 0 3 0 0 0 0 1 +sub-TLV a sub-tlv s su sub sub- BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 0 -(). 4 10 0 0 0 0 1 +details of details d de det deta BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 0 . 1 5 0 0 0 0 1 +The Policy the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 0 - 1 10 0 0 0 0 1 +once in once o on onc once BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 0 .- 2 9 0 0 0 0 1 +than once, than t th tha than BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 0 ,"-- 4 9 0 0 0 0 1 +withdraw" strategy withdraw" w wi wit with BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 0 "[]. 4 6 0 0 0 0 1 +The Policy the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 2 -: 2 10 0 0 0 0 1 +0 0 0 0 0 0 0 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 9 2 no 0 0 0 0 0 0 1 +1 1 1 1 1 1 1 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 9 2 no 0 0 0 0 0 0 1 +2 2 2 2 2 2 2 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 9 2 no 0 0 0 0 0 0 1 +3 3 3 3 3 3 3 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 9 2 no 0 0 0 0 0 0 1 +0 1 0 0 0 0 0 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 9 2 no 0 9 0 0 0 0 1 ++-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ + +- +-+ +-+- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 2 -------------------------------- 32 10 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 2 no 0 0 0 0 0 0 1 +Type Type type T Ty Typ Type BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 2 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 2 no 0 0 0 0 0 0 1 +Length Length length L Le Len Leng BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 2 no 0 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 2 no 0 0 0 0 0 0 1 +RESERVED RESERVED reserved R RE RES RESE BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 9 2 no 0 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 2 no 0 0 0 0 0 0 1 ++-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ + +- +-+ +-+- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 2 -------------------------------- 32 10 0 0 0 0 1 +// // // / // // // BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 2 // 2 0 0 0 0 0 1 +Policy Name policy P Po Pol Poli BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 2 no 0 1 0 0 0 0 1 +// // // / // // // BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 2 // 2 0 0 0 0 0 1 ++-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ + +- +-+ +-+- BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 2 -------------------------------- 32 10 0 0 0 0 1 +Where: Where: where: W Wh Whe Wher BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 6 : 1 10 0 0 0 0 1 +Type: TBD3 type: T Ty Typ Type BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 6 :(" 3 10 0 0 0 0 1 +Encapsulation Attribute encapsulation E En Enc Enca BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 9 6 -" 2 9 0 0 0 0 1 +Section 8.3). section S Se Sec Sect BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 6 .). 3 2 0 0 0 0 1 +Length: Variable. length: L Le Len Leng BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 7 :. 2 10 0 0 0 0 1 +RESERVED: 1 reserved: R RE RES RESE BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 9 7 :. 2 10 0 0 0 0 1 +transmission and transmission t tr tra tran BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 7 . 1 8 0 0 0 0 1 +Policy Name: policy P Po Pol Poli BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 7 :. 2 10 0 0 0 0 1 +of printable of o of of of BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 7 ,. 2 8 0 0 0 0 1 +3. Extended 3. 3 3. 3. 3. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 8 . 1 10 0 0 0 0 1 +The Color the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 8 no 0 6 0 0 0 0 1 +[I-D.ietf-idr-tunnel-encaps] is [i-d.ietf-idr-tunnel-encaps] [ [I [I- [I-D BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 8 [-.---]. 8 10 0 0 0 0 1 +When the when W Wh Whe When BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 9 no 0 10 0 0 0 0 1 +the traffic the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 9 ,( 2 9 0 0 0 0 1 +[I-D.ietf-idr-tunnel-encaps] is [i-d.ietf-idr-tunnel-encaps] [ [I [I- [I-D BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 9 [-.---]: 8 7 0 0 0 0 1 +1 1 1 1 1 1 1 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 9 10 no 0 0 0 0 0 0 1 +0 1 0 0 0 0 0 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 9 10 no 0 9 0 0 0 0 1 ++-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ + +- +-+ +-+- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 10 ---------------- 16 10 0 0 0 0 1 +|C O| |c | |C |C |C BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 10 no 0 1 0 0 0 0 1 +RESERVED RESERVED reserved R RE RES RESE BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 9 10 no 0 2 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 10 no 0 0 0 0 0 0 1 ++-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ + +- +-+ +-+- BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 10 ---------------- 16 10 0 0 0 0 1 +Previdi, et previdi, P Pr Pre Prev BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 9 11 ,. 2 6 0 0 1 0 0 +Expires January expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 11 , 1 10 0 0 0 0 0 +[Page 30] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 9 0 - 1 10 0 0 1 0 1 +Segment Routing segment S Se Seg Segm BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 0 no 0 10 0 0 1 0 1 +July 2019 july J Ju Jul July BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 9 0 no 0 3 0 0 0 0 1 +where CO where w wh whe wher BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 0 "-". 4 7 0 0 0 0 1 +[I-D.ietf-spring-segment-routing-policy] defines [i-d.ietf-spring-segment-routing-policy] [ [I [I- [I-D BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 0 [-.----] 8 9 0 0 0 0 1 +these bits these t th the thes BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 0 no 0 10 0 0 0 0 1 +Policies. Policies. policies. P Po Pol Poli BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 0 . 1 1 0 0 0 0 1 +4. SR 4. 4 4. 4. 4. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 1 . 1 10 0 0 0 0 1 +As described as A As As As BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 1 , 1 9 0 0 0 0 1 +not the not n no not not BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 1 . 1 9 0 0 0 0 1 +and propagation and a an and and BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 1 no 0 10 0 0 0 0 1 +outside the outside o ou out outs BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 1 . 1 9 0 0 0 0 1 +use can use u us use use BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 1 [-.----]. 9 9 0 0 0 0 1 +4.1. Configuration 4.1. 4 4. 4.1 4.1. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 3 .. 2 10 0 0 0 0 1 +Typically, but typically, T Ty Typ Typi BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 3 ,, 2 10 0 0 0 0 1 +controller. controller. controller. c co con cont BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 3 . 1 1 0 0 0 0 1 +Multiple SR multiple M Mu Mul Mult BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 4 , 1 8 0 0 0 0 1 +endpoint> tuple endpoint> e en end endp BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 4 no 0 10 0 0 0 0 1 +intended to intended i in int inte BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 4 -. 2 4 0 0 0 0 1 +The distinguisher the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 5 no 0 10 0 0 0 0 1 +selection among selection s se sel sele BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 5 no 0 9 0 0 0 0 1 +across route across a ac acr acro BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 5 []. 3 5 0 0 0 0 1 +Moreover, one moreover, M Mo Mor More BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 6 ,- 2 9 0 0 0 0 1 +advertisement, where advertisement, a ad adv adve BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 6 ,- 2 10 0 0 0 0 1 +intended head-ends intended i in int inte BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 6 -. 2 7 0 0 0 0 1 +If no if I If If If BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 7 -, 2 9 0 0 0 0 1 +assumed that assumed a as ass assu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 7 no 0 9 0 0 0 0 1 +(e.g., through (e.g., ( (e (e. (e.g BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 7 (..,). 6 9 0 0 0 0 1 +case, the case, c ca cas case BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 7 , 1 10 0 0 0 0 1 +update. update. update. u up upd upda BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 7 . 1 1 0 0 0 0 1 +4.2. Reception 4.2. 4 4. 4.2 4.2. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 8 .. 2 10 0 0 0 0 1 +On reception on O On On On BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 9 , 1 10 0 0 0 0 1 +it's first it's i it it' it's BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 9 ',. 3 8 0 0 0 0 1 +4.2.1. Acceptance 4.2.1. 4 4. 4.2 4.2. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 9 ... 3 10 0 0 0 0 1 +When a when W Wh Whe When BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 10 no 0 10 0 0 0 0 1 +to determine to t to to to BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 10 '.: 3 8 0 0 0 0 1 +o The o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 9 10 , 1 9 0 0 0 0 1 +endpoint field endpoint e en end endp BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 10 no 0 10 0 0 0 0 1 +Previdi, et previdi, P Pr Pre Prev BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 9 11 ,. 2 6 0 0 1 0 0 +Expires January expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 11 , 1 10 0 0 0 0 0 +[Page 31] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 9 0 - 1 10 0 0 1 0 1 +Segment Routing segment S Se Seg Segm BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 0 no 0 10 0 0 1 0 1 +July 2019 july J Ju Jul July BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 9 0 no 0 3 0 0 0 0 1 +either 12 either e ei eit eith BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 0 ( 1 10 0 0 0 0 1 +endpoint). endpoint). endpoint). e en end endp BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 0 ). 2 1 0 0 0 0 1 +o The o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 9 0 no 0 10 0 0 0 0 1 +or at or o or or or BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 0 -- 2 9 0 0 0 0 1 +format. If format. f fo for form BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 0 . 1 8 0 0 0 0 1 +policy update policy p po pol poli BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 0 - 1 9 0 0 0 0 1 +NO_ADVERTISE community, no_advertise N NO NO_ NO_A BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 0 ,. 2 9 0 0 0 0 1 +Furthermore, it furthermore, F Fu Fur Furt BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 0 ,, 2 9 0 0 0 0 1 +"treat-as-withdraw" strategy "treat-as-withdraw" " "t "tr "tre BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 0 "--"[]. 7 8 0 0 0 0 1 +o The o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 9 2 no 0 10 0 0 0 0 1 +Update and update U Up Upd Upda BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 2 ( 1 8 0 0 0 0 1 +codepoint is codepoint c co cod code BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 2 ,()" 4 9 0 0 0 0 1 +Tunnel Encapsulation tunnel T Tu Tun Tunn BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 2 "). 3 8 0 0 0 0 1 +A router a A A A A BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 1 0 0 0 0 0 9 4 no 0 8 0 0 0 0 1 +according to according a ac acc acco BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 4 . 1 10 0 0 0 0 1 +route MUST route r ro rou rout BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 4 ,"--" 5 9 0 0 0 0 1 +strategy of strategy s st str stra BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 4 []. 3 5 0 0 0 0 1 +A unacceptable a A A A A BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 1 0 0 0 0 0 9 5 no 0 9 0 0 0 0 1 +invalid attribute invalid i in inv inva BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 5 no 0 10 0 0 0 0 1 +Policy. Policy. policy. P Po Pol Poli BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 5 . 1 1 0 0 0 0 1 +4.2.2. Usable 4.2.2. 4 4. 4.2 4.2. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 5 ... 3 10 0 0 0 0 1 +If one if I If If If BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 6 -,- 3 9 0 0 0 0 1 +target MUST target t ta tar targ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 6 no 0 10 0 0 0 0 1 +for the for f fo for for BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 6 . 1 8 0 0 0 0 1 +defined in defined d de def defi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 6 [].- 4 9 0 0 0 0 1 +target extended target t ta tar targ BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 6 . 1 7 0 0 0 0 1 +If one if I If If If BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 7 - 1 9 0 0 0 0 1 +the local the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 7 ,, 2 8 0 0 0 0 1 +acceptable, it acceptable, a ac acc acce BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 7 ,. 2 9 0 0 0 0 1 +noted that noted n no not note BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 7 , 1 10 0 0 0 0 1 +it MAY it i it it it BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 7 no 0 9 0 0 0 0 1 +Section 4.2.4. section S Se Sec Sect BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 7 ... 3 2 0 0 0 0 1 +The SR the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 9 no 0 10 0 0 0 0 1 +are sent are a ar are are BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 9 . 1 3 0 0 0 0 1 +4.2.3. Passing 4.2.3. 4 4. 4.2 4.2. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 10 ... 3 10 0 0 0 0 1 +Once BGP once O On Onc Once BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 10 , 1 10 0 0 0 0 1 +the SR the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 10 ., 2 9 0 0 0 0 1 +candidate path candidate c ca can cand BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 10 , 1 9 0 0 0 0 1 +Previdi, et previdi, P Pr Pre Prev BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 10 11 ,. 2 6 0 0 1 0 0 +Expires January expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 11 , 1 10 0 0 0 0 0 +[Page 32] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 10 0 - 1 10 0 0 1 0 1 +Segment Routing segment S Se Seg Segm BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 0 no 0 10 0 0 1 0 1 +July 2019 july J Ju Jul July BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 10 0 no 0 3 0 0 0 0 1 +for breaking for f fo for for BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 0 - 1 10 0 0 0 0 1 +section 2.4 section s se sec sect BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 0 .[-.----]. 10 8 0 0 0 0 1 +The SRPM the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 1 no 0 7 0 0 0 0 1 +[I-D.ietf-spring-segment-routing-policy] to [i-d.ietf-spring-segment-routing-policy] [ [I [I- [I-D BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 1 [-.----] 8 10 0 0 0 0 1 +Policy candidate policy P Po Pol Poli BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 1 no 0 10 0 0 0 0 1 +among the among a am amo amon BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 1 . 1 6 0 0 0 0 1 +4.2.4. Propagation 4.2.4. 4 4. 4.2 4.2. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 2 ... 3 10 0 0 0 0 1 +By default, by B By By By BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 3 , 1 10 0 0 0 0 1 +it to it i it it it BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 3 . 1 3 0 0 0 0 1 +However, a however, H Ho How Howe BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 3 , 1 9 0 0 0 0 1 +SR Policy sr S SR SR SR BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 3 (.., 4 10 0 0 0 0 1 +propagation by propagation p pr pro prop BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 3 -). 3 9 0 0 0 0 1 +SR Policy sr S SR SR SR BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 5 no 0 10 0 0 0 0 1 +propagated, even propagated, p pr pro prop BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 5 ,. 2 6 0 0 0 0 1 +Only SR only O On Onl Only BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 6 no 0 10 0 0 0 0 1 +attached to attached a at att atta BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 6 . 1 5 0 0 0 0 1 +4.3. Flowspec 4.3. 4 4. 4.3 4.3. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 6 .. 2 10 0 0 0 0 1 +The SR the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 7 no 0 8 0 0 0 0 1 +([RFC5575]). In ([rfc5575]). ( ([ ([R ([RF BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 7 ([]).,- 7 9 0 0 0 0 1 +specified as specified s sp spe spec BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 7 [-.----], 9 9 0 0 0 0 1 +the next-hop the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 7 - 1 9 0 0 0 0 1 +sub-TLVs. The sub-tlvs. s su sub sub- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 7 -.(..,) 7 10 0 0 0 0 1 +is imposed is i is is is BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 7 no 0 9 0 0 0 0 1 +steer them steer s st ste stee BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 7 - 1 9 0 0 0 0 1 +NLRI. NLRI. nlri. N NL NLR NLRI BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 7 . 1 0 0 0 0 0 1 +5. Contributors 5. 5 5. 5. 5. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 10 . 1 10 0 0 0 0 1 +Kausik Majumdar kausik K Ka Kau Kaus BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 10 10 no 0 10 0 0 0 0 1 +Cisco Systems cisco C Ci Cis Cisc BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 0 0 0 0 0 0 10 10 no 0 8 0 0 0 0 1 +US US us U US US US BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 1 1 0 0 0 0 0 10 10 no 0 1 0 0 0 0 1 +Email: kmajumda@cisco.com email: E Em Ema Emai BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 10 10 :. 2 10 0 0 0 0 1 +Zafar Ali zafar Z Za Zaf Zafa BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 10 11 no 0 7 0 0 0 0 1 +Cisco Systems cisco C Ci Cis Cisc BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 0 0 0 0 0 0 10 11 no 0 10 0 0 0 0 1 +US US us U US US US BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 1 1 0 0 0 0 0 10 11 no 0 2 0 0 0 0 1 +Email: zali@cisco.com email: E Em Ema Emai BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 10 11 :. 2 10 0 0 0 0 1 +Previdi, et previdi, P Pr Pre Prev BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 10 11 ,. 2 6 0 0 1 0 0 +Expires January expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 11 , 1 10 0 0 0 0 0 +[Page 33] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 10 0 - 1 10 0 0 1 0 1 +Segment Routing segment S Se Seg Segm BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 0 no 0 10 0 0 1 0 1 +July 2019 july J Ju Jul July BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 10 0 no 0 3 0 0 0 0 1 +Arjun Sreekantiah arjun A Ar Arj Arju BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 10 0 no 0 10 0 0 0 0 1 +Cisco Systems cisco C Ci Cis Cisc BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 0 0 0 0 0 0 10 0 no 0 7 0 0 0 0 1 +US US us U US US US BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 1 1 0 0 0 0 0 10 0 no 0 1 0 0 0 0 1 +Email: asreekan@cisco.com email: E Em Ema Emai BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 10 0 :. 2 10 0 0 0 0 1 +Acee Lindem acee A Ac Ace Acee BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 10 1 no 0 8 0 0 0 0 1 +Cisco Systems cisco C Ci Cis Cisc BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 0 0 0 0 0 0 10 1 no 0 10 0 0 0 0 1 +US US us U US US US BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 1 1 0 0 0 0 0 10 1 no 0 2 0 0 0 0 1 +Email: acee@cisco.com email: E Em Ema Emai BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 10 1 :. 2 10 0 0 0 0 1 +Siva Sivabalan siva S Si Siv Siva BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 10 1 no 0 10 0 0 0 0 1 +Cisco Systems cisco C Ci Cis Cisc BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 0 0 0 0 0 0 10 1 no 0 9 0 0 0 0 1 +US US us U US US US BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 1 1 0 0 0 0 0 10 1 no 0 2 0 0 0 0 1 +Email: msiva@cisco.com email: E Em Ema Emai BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 10 2 :. 2 10 0 0 0 0 1 +Imtiyaz Mohammad imtiyaz I Im Imt Imti BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 10 2 no 0 10 0 0 0 0 1 +Arista Networks arista A Ar Ari Aris BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 10 2 no 0 9 0 0 0 0 1 +India India india I In Ind Indi BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 0 0 0 0 0 0 10 2 no 0 3 0 0 0 0 1 +Email: imtiyaz@arista.com email: E Em Ema Emai BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 10 2 :. 2 10 0 0 0 0 1 +Gaurav Dawra gaurav G Ga Gau Gaur BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 10 2 no 0 9 0 0 0 0 1 +Cisco Systems cisco C Ci Cis Cisc BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 0 0 0 0 0 0 10 2 no 0 10 0 0 0 0 1 +US US us U US US US BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 1 1 0 0 0 0 0 10 2 no 0 2 0 0 0 0 1 +Email: gdawra.ietf@gmail.com email: E Em Ema Emai BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 10 3 :.. 3 10 0 0 0 0 1 +6. Acknowledgments 6. 6 6. 6. 6. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 3 . 1 10 0 0 0 0 1 +The authors the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 3 , 1 10 0 0 0 0 1 +Scudder, Przemyslaw scudder, S Sc Scu Scud BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 10 3 ,,, 3 9 0 0 0 0 1 +Talaulikar for talaulikar T Ta Tal Tala BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 10 3 . 1 8 0 0 0 0 1 +7. Implementation 7. 7 7. 7. 7. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 5 . 1 10 0 0 0 0 1 +Note to note N No Not Note BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 5 :, 2 10 0 0 0 0 1 +as well as a as as as BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 5 . 1 5 0 0 0 0 1 +This section this T Th Thi This BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 7 no 0 9 0 0 0 0 1 +protocol defined protocol p pr pro prot BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 7 no 0 10 0 0 0 0 1 +Internet-Draft, and internet-draft, I In Int Inte BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 10 7 -,[]. 5 9 0 0 0 0 1 +The description the T Th The The BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 7 no 0 9 0 0 0 0 1 +assist the assist a as ass assi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 7 no 0 9 0 0 0 0 1 +RFCs. Please rfcs. R RF RFC RFCs BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 10 7 . 1 9 0 0 0 0 1 +here does here h he her here BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 7 ., 2 9 0 0 0 0 1 +Previdi, et previdi, P Pr Pre Prev BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 10 11 ,. 2 6 0 0 1 0 0 +Expires January expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 11 , 1 10 0 0 0 0 0 +[Page 34] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 10 0 - 1 10 0 0 1 0 1 +Segment Routing segment S Se Seg Segm BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 0 no 0 10 0 0 1 0 1 +July 2019 july J Ju Jul July BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 10 0 no 0 3 0 0 0 0 1 +has been has h ha has has BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 0 no 0 9 0 0 0 0 1 +supplied by supplied s su sup supp BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 0 ., 2 10 0 0 0 0 1 +be construed be b be be be BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 0 , 1 9 0 0 0 0 1 +features. Readers features. f fe fea feat BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 0 . 1 10 0 0 0 0 1 +exist. exist. exist. e ex exi exis BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 0 . 1 1 0 0 0 0 1 +According to according A Ac Acc Acco BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 2 []," 4 10 0 0 0 0 1 +to assign to t to to to BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 2 no 0 9 0 0 0 0 1 +running code, running r ru run runn BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 10 2 , 1 10 0 0 0 0 1 +and feedback and a an and and BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 2 . 1 9 0 0 0 0 1 +It is it I It It It BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 2 no 0 9 0 0 0 0 1 +they see they t th the they BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 2 ". 2 2 0 0 0 0 1 +Several early several S Se Sev Seve BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 5 no 0 10 0 0 0 0 1 +a forthcoming a a a a a BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 1 0 0 0 0 0 10 5 . 1 8 0 0 0 0 1 +interoperability testing, interoperability i in int inte BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 5 ,, 2 9 0 0 0 0 1 +implementations have implementations i im imp impl BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 5 : 1 7 0 0 0 0 1 +o Preference o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 10 7 -: 2 10 0 0 0 0 1 +o Binding o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 10 7 -: 2 10 0 0 0 0 1 +o Segment o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 10 7 -: 2 10 0 0 0 0 1 +When IANA-assigned when W Wh Whe When BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 7 -, 2 10 0 0 0 0 1 +updated to updated u up upd upda BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 7 . 1 3 0 0 0 0 1 +8. IANA 8. 8 8. 8. 8. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 8 . 1 10 0 0 0 0 1 +This document this T Th Thi This BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 8 -: 2 10 0 0 0 0 1 +o Subsequent o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 10 9 () 2 10 0 0 0 0 1 +o BGP o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 10 9 no 0 10 0 0 0 0 1 +o BGP o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 10 9 - 1 10 0 0 0 0 1 +This document this T Th Thi This BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 10 : 1 10 0 0 0 0 1 +o SR o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 10 10 - 1 10 0 0 0 0 1 +o SR o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 10 10 no 0 10 0 0 0 0 1 +o SR o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 10 11 no 0 10 0 0 0 0 1 +Previdi, et previdi, P Pr Pre Prev BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 10 11 ,. 2 6 0 0 1 0 0 +Expires January expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 11 , 1 10 0 0 0 0 0 +[Page 35] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 10 0 - 1 10 0 0 1 0 1 +Segment Routing segment S Se Seg Segm BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 0 no 0 10 0 0 1 0 1 +July 2019 july J Ju Jul July BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 10 0 no 0 3 0 0 0 0 1 +8.1. Existing 8.1. 8 8. 8.1 8.1. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 0 ..:() 5 10 0 0 0 0 1 +Parameters Parameters parameters P Pa Par Para BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 0 no 0 1 0 0 0 0 1 +This document this T Th Thi This BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 0 " 1 9 0 0 0 0 1 +Family Identifiers family F Fa Fam Fami BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 0 ()": 4 10 0 0 0 0 1 +Codepoint Codepoint codepoint C Co Cod Code BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 10 1 no 0 2 0 0 0 0 1 +Description Description description D De Des Desc BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 1 no 0 2 0 0 0 0 1 +Reference Reference reference R Re Ref Refe BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 1 no 0 2 0 0 0 0 1 +----------------------------------------------- ----------------------------------------------- ----------------------------------------------- - -- --- ---- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 1 ----------------------------------------------- 47 10 0 0 0 0 1 +73 73 73 7 73 73 73 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 0 0 0 0 0 0 0 0 10 1 no 0 0 0 0 0 0 1 +SR Policy sr S SR SR SR BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 1 no 0 3 0 0 0 0 1 +This document this T Th Thi This BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 1 no 0 2 0 0 0 0 1 +8.2. Existing 8.2. 8 8. 8.2 8.2. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 3 ..: 3 10 0 0 0 0 1 +This document this T Th Thi This BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 3 -" 2 9 0 0 0 0 1 +Encapsulation Attribute encapsulation E En Enc Enca BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 10 3 ": 2 10 0 0 0 0 1 +Codepoint Codepoint codepoint C Co Cod Code BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 10 4 no 0 2 0 0 0 0 1 +Description Description description D De Des Desc BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 4 no 0 2 0 0 0 0 1 +Reference Reference reference R Re Ref Refe BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 4 no 0 2 0 0 0 0 1 +-------------------------------------------------- -------------------------------------------------- -------------------------------------------------- - -- --- ---- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 4 -------------------------------------------------- 50 10 0 0 0 0 1 +15 15 15 1 15 15 15 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 0 0 0 0 0 0 0 0 10 4 no 0 0 0 0 0 0 1 +SR Policy sr S SR SR SR BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 4 no 0 3 0 0 0 0 1 +This document this T Th Thi This BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 4 no 0 2 0 0 0 0 1 +8.3. Existing 8.3. 8 8. 8.3 8.3. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 5 ..:- 4 10 0 0 0 0 1 +This document this T Th Thi This BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 6 -" 2 10 0 0 0 0 1 +Encapsulation Attribute encapsulation E En Enc Enca BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 10 6 -": 3 9 0 0 0 0 1 +Codepoint Codepoint codepoint C Co Cod Code BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 10 6 no 0 1 0 0 0 0 1 +Description Description description D De Des Desc BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 6 no 0 2 0 0 0 0 1 +Reference Reference reference R Re Ref Refe BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 6 no 0 1 0 0 0 0 1 +------------------------------------------------------ ------------------------------------------------------ ------------------------------------------------------ - -- --- ---- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 6 ------------------------------------------------------ 54 10 0 0 0 0 1 +12 12 12 1 12 12 12 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 0 0 0 0 0 0 0 0 10 6 no 0 0 0 0 0 0 1 +Preference sub-TLV preference P Pr Pre Pref BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 6 - 1 3 0 0 0 0 1 +This document this T Th Thi This BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 6 no 0 2 0 0 0 0 1 +13 13 13 1 13 13 13 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 0 0 0 0 0 0 0 0 10 6 no 0 0 0 0 0 0 1 +Binding SID binding B Bi Bin Bind BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 6 - 1 3 0 0 0 0 1 +This document this T Th Thi This BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 6 no 0 2 0 0 0 0 1 +128 128 128 1 12 128 128 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 0 0 0 0 0 0 0 0 10 6 no 0 0 0 0 0 0 1 +Segment List segment S Se Seg Segm BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 6 - 1 3 0 0 0 0 1 +This document this T Th Thi This BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 6 no 0 2 0 0 0 0 1 +TBD1 TBD1 tbd1 T TB TBD TBD1 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 6 no 0 0 0 0 0 0 1 +ENLP sub-TLV enlp E EN ENL ENLP BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 6 - 1 2 0 0 0 0 1 +This document this T Th Thi This BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 6 no 0 2 0 0 0 0 1 +TBD2 TBD2 tbd2 T TB TBD TBD2 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 6 no 0 0 0 0 0 0 1 +Priority sub-TLV priority P Pr Pri Prio BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 6 - 1 3 0 0 0 0 1 +This document this T Th Thi This BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 6 no 0 2 0 0 0 0 1 +TBD3 TBD3 tbd3 T TB TBD TBD3 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 6 no 0 0 0 0 0 0 1 +Policy Name policy P Po Pol Poli BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 6 - 1 3 0 0 0 0 1 +This document this T Th Thi This BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 6 no 0 2 0 0 0 0 1 +8.4. New 8.4. 8 8. 8.4 8.4. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 9 ..:- 4 10 0 0 0 0 1 +This document this T Th Thi This BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 10 "- 2 9 0 0 0 0 1 +TLVs". The tlvs". T TL TLV TLVs BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 10 10 "." 3 10 0 0 0 0 1 +Served (FCFS)" served S Se Ser Serv BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 10 ()"[]. 6 5 0 0 0 0 1 +Following Sub-TLV following F Fo Fol Foll BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 11 -: 2 10 0 0 0 0 1 +Previdi, et previdi, P Pr Pre Prev BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 10 11 ,. 2 6 0 0 1 0 0 +Expires January expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 11 , 1 10 0 0 0 0 0 +[Page 36] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 10 0 - 1 10 0 0 1 0 1 +Segment Routing segment S Se Seg Segm BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 0 no 0 10 0 0 1 0 1 +July 2019 july J Ju Jul July BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 10 0 no 0 3 0 0 0 0 1 +Value Value value V Va Val Valu BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 0 no 0 0 0 0 0 0 1 +Description Description description D De Des Desc BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 0 no 0 1 0 0 0 0 1 +Reference Reference reference R Re Ref Refe BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 0 no 0 1 0 0 0 0 1 +--------------------------------------------------------------------------------- --------------------------------------------------------------------------------- --------------------------------------------------------------------------------- - -- --- ---- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 0 --------------------------------------------------------------------------------- 81 10 0 0 0 0 1 +1 1 1 1 1 1 1 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 10 0 no 0 0 0 0 0 0 1 +MPLS SID mpls M MP MPL MPLS BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 0 - 1 2 0 0 0 0 1 +This document this T Th Thi This BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 0 no 0 1 0 0 0 0 1 +2 2 2 2 2 2 2 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 10 0 no 0 0 0 0 0 0 1 +SRv6 SID srv6 S SR SRv SRv6 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 0 - 1 2 0 0 0 0 1 +This document this T Th Thi This BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 0 no 0 1 0 0 0 0 1 +3 3 3 3 3 3 3 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 10 0 no 0 0 0 0 0 0 1 +IPv4 Node ipv4 I IP IPv IPv4 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 0 - 1 3 0 0 0 0 1 +This document this T Th Thi This BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 0 no 0 1 0 0 0 0 1 +4 4 4 4 4 4 4 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 10 0 no 0 0 0 0 0 0 1 +IPv6 Node ipv6 I IP IPv IPv6 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 0 -- 2 4 0 0 0 0 1 +This document this T Th Thi This BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 0 no 0 1 0 0 0 0 1 +5 5 5 5 5 5 5 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 10 0 no 0 0 0 0 0 0 1 +IPv4 Node, ipv4 I IP IPv IPv4 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 0 ,- 2 4 0 0 0 0 1 +This document this T Th Thi This BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 0 no 0 1 0 0 0 0 1 +6 6 6 6 6 6 6 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 10 0 no 0 0 0 0 0 0 1 +IPv4 Local/Remote ipv4 I IP IPv IPv4 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 0 /- 2 7 0 0 0 0 1 +7 7 7 7 7 7 7 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 10 0 no 0 0 0 0 0 0 1 +IPv6 Node, ipv6 I IP IPv IPv6 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 0 , 1 7 0 0 0 0 1 +and SID and a an and and BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 0 -- 2 3 0 0 0 0 1 +8 8 8 8 8 8 8 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 10 0 no 0 0 0 0 0 0 1 +IPv6 Local/Remote ipv6 I IP IPv IPv6 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 0 /- 2 7 0 0 0 0 1 +9 9 9 9 9 9 9 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 10 0 no 0 0 0 0 0 0 1 +Weight sub-TLV weight W We Wei Weig BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 0 - 1 1 0 0 0 0 1 +This document this T Th Thi This BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 0 no 0 1 0 0 0 0 1 +10 10 10 1 10 10 10 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 0 0 0 0 0 0 0 0 10 0 no 0 0 0 0 0 0 1 +IPv6 Node ipv6 I IP IPv IPv6 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 0 - 1 4 0 0 0 0 1 +This document this T Th Thi This BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 0 no 0 1 0 0 0 0 1 +11 11 11 1 11 11 11 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 0 0 0 0 0 0 0 0 10 0 no 0 0 0 0 0 0 1 +IPv6 Node, ipv6 I IP IPv IPv6 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 0 , 1 7 0 0 0 0 1 +and SID and a an and and BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 0 - 1 3 0 0 0 0 1 +12 12 12 1 12 12 12 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 0 0 0 0 0 0 0 0 10 0 no 0 0 0 0 0 0 1 +IPv6 Local/Remote ipv6 I IP IPv IPv6 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 0 / 1 4 0 0 0 0 1 +This document this T Th Thi This BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 0 no 0 1 0 0 0 0 1 +SRv6 sub-TLV srv6 S SR SRv SRv6 BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 0 - 1 1 0 0 0 0 1 +8.5. New 8.5. 8 8. 8.5 8.5. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 5 ..: 3 10 0 0 0 0 1 +This document this T Th Thi This BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 5 " 1 9 0 0 0 0 1 +Flags". The flags". F Fl Fla Flag BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 5 "." 3 10 0 0 0 0 1 +Served (FCFS)" served S Se Ser Serv BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 5 ()"[]. 6 5 0 0 0 0 1 +Following Flags following F Fo Fol Foll BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 6 : 1 10 0 0 0 0 1 +Bit Bit bit B Bi Bit Bit BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 6 no 0 0 0 0 0 0 1 +Description Description description D De Des Desc BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 6 no 0 1 0 0 0 0 1 +Reference Reference reference R Re Ref Refe BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 6 no 0 1 0 0 0 0 1 +--------------------------------------------------------------------------------- --------------------------------------------------------------------------------- --------------------------------------------------------------------------------- - -- --- ---- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 11 6 --------------------------------------------------------------------------------- 81 10 0 0 0 0 1 +0 0 0 0 0 0 0 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 11 6 no 0 0 0 0 0 0 1 +Specified-BSID-Only Flag specified-bsid-only S Sp Spe Spec BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 6 --(-) 5 4 0 0 0 0 1 +This document this T Th Thi This BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 6 no 0 1 0 0 0 0 1 +1 1 1 1 1 1 1 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 11 6 no 0 0 0 0 0 0 1 +Drop Upon drop D Dr Dro Drop BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 11 6 (-) 3 3 0 0 0 0 1 +This document this T Th Thi This BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 6 no 0 1 0 0 0 0 1 +2-7 2-7 2-7 2 2- 2-7 2-7 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 6 - 1 0 0 0 0 0 1 +Unassigned Unassigned unassigned U Un Una Unas BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 6 no 0 1 0 0 0 0 1 +8.6. New 8.6. 8 8. 8.6 8.6. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 8 ..: 3 10 0 0 0 0 1 +This document this T Th Thi This BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 8 " 1 9 0 0 0 0 1 +Flags". The flags". F Fl Fla Flag BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 8 "." 3 10 0 0 0 0 1 +Served (FCFS)" served S Se Ser Serv BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 8 ()"[]. 6 5 0 0 0 0 1 +Following Flags following F Fo Fol Foll BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 9 : 1 10 0 0 0 0 1 +Bit Bit bit B Bi Bit Bit BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 9 no 0 0 0 0 0 0 1 +Description Description description D De Des Desc BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 9 no 0 1 0 0 0 0 1 +Reference Reference reference R Re Ref Refe BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 9 no 0 1 0 0 0 0 1 +--------------------------------------------------------------------------------- --------------------------------------------------------------------------------- --------------------------------------------------------------------------------- - -- --- ---- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 11 9 --------------------------------------------------------------------------------- 81 10 0 0 0 0 1 +0 0 0 0 0 0 0 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 11 9 no 0 0 0 0 0 0 1 +Segment Verification segment S Se Seg Segm BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 9 (-) 3 4 0 0 0 0 1 +This document this T Th Thi This BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 9 no 0 1 0 0 0 0 1 +1 1 1 1 1 1 1 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 11 9 no 0 0 0 0 0 0 1 +SR Algorithm sr S SR SR SR BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 11 9 (-) 3 3 0 0 0 0 1 +This document this T Th Thi This BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 9 no 0 1 0 0 0 0 1 +2-7 2-7 2-7 2 2- 2-7 2-7 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 9 - 1 0 0 0 0 0 1 +Unassigned Unassigned unassigned U Un Una Unas BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 9 no 0 1 0 0 0 0 1 +Previdi, et previdi, P Pr Pre Prev BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 11 ,. 2 6 0 0 1 0 0 +Expires January expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 11 , 1 10 0 0 0 0 0 +[Page 37] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 0 - 1 10 0 0 1 0 1 +Segment Routing segment S Se Seg Segm BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 0 no 0 10 0 0 1 0 1 +July 2019 july J Ju Jul July BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 11 0 no 0 3 0 0 0 0 1 +9. Security 9. 9 9. 9. 9. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 0 . 1 10 0 0 0 0 1 +TBD. TBD. tbd. T TB TBD TBD. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 11 0 . 1 10 0 0 0 0 1 +10. References 10. 1 10 10. 10. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 0 . 1 10 0 0 0 0 1 +10.1. Normative 10.1. 1 10 10. 10.1 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 0 .. 2 10 0 0 0 0 1 +[I-D.ietf-idr-tunnel-encaps] [I-D.ietf-idr-tunnel-encaps] [i-d.ietf-idr-tunnel-encaps] [ [I [I- [I-D BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 0 [-.---] 7 5 0 0 0 0 1 +Patel, K., patel, P Pa Pat Pate BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 0 ,.,,.,,.,.," 12 10 0 0 0 0 1 +BGP Tunnel bgp B BG BGP BGP BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 11 0 ",--- 5 8 0 0 0 0 1 +tunnel-encaps-12 (work tunnel-encaps-12 t tu tun tunn BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 0 --(),. 6 8 0 0 0 0 1 +[I-D.ietf-pce-segment-routing] [I-D.ietf-pce-segment-routing] [i-d.ietf-pce-segment-routing] [ [I [I- [I-D BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 2 [-.---] 7 5 0 0 0 0 1 +Sivabalan, S., sivabalan, S Si Siv Siva BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 2 ,.,,.,,.,,., 12 10 0 0 0 0 1 +and J. and a an and and BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 2 .,"", 5 9 0 0 0 0 1 +draft-ietf-pce-segment-routing-16 (work draft-ietf-pce-segment-routing-16 d dr dra draf BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 2 -----(), 8 9 0 0 0 0 1 +March 2019. march M Ma Mar Marc BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 11 2 . 1 2 0 0 0 0 1 +[I-D.ietf-spring-segment-routing] [I-D.ietf-spring-segment-routing] [i-d.ietf-spring-segment-routing] [ [I [I- [I-D BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 3 [-.---] 7 5 0 0 0 0 1 +Filsfils, C., filsfils, F Fi Fil Fils BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 3 ,.,,.,,.,,., 12 9 0 0 0 0 1 +Litkowski, S., litkowski, L Li Lit Litk BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 3 ,.,.," 6 8 0 0 0 0 1 +Architecture", draft-ietf-spring-segment-routing-15 architecture", A Ar Arc Arch BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 3 ",-----( 8 10 0 0 0 0 1 +in progress), in i in in in BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 11 3 ),. 3 4 0 0 0 0 1 +[I-D.ietf-spring-segment-routing-policy] [I-D.ietf-spring-segment-routing-policy] [i-d.ietf-spring-segment-routing-policy] [ [I [I- [I-D BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 5 [-.----] 8 7 0 0 0 0 1 +Filsfils, C., filsfils, F Fi Fil Fils BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 5 ,.,,.,..,., 11 9 0 0 0 0 1 +bogdanov@google.com, b., bogdanov@google.com, b bo bog bogd BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 5 .,.,.," 7 10 0 0 0 0 1 +Policy Architecture", policy P Po Pol Poli BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 5 ",----- 7 9 0 0 0 0 1 +policy-03 (work policy-03 p po pol poli BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 5 -(),. 5 7 0 0 0 0 1 +[RFC2119] Bradner, [rfc2119] [ [R [RF [RFC BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 1 0 0 0 11 6 [],.," 6 10 0 0 0 0 1 +Requirement Levels", requirement R Re Req Requ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 6 ",,, 4 6 0 0 0 0 1 +DOI 10.17487/RFC2119, doi D DO DOI DOI BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 1 0 0 0 0 0 0 11 6 ./,, 4 5 0 0 0 0 1 +<https://www.rfc-editor.org/info/rfc2119>. <https://www.rfc-editor.org/info/rfc2119>. <https://www.rfc-editor.org/info/rfc2119>. < <h <ht <htt BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 1 0 0 1 11 6 ://.-.//. 9 6 0 0 0 0 1 +[RFC3032] Rosen, [rfc3032] [ [R [RF [RFC BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 8 [],.,,.,,.,,., 14 10 0 0 0 0 1 +Farinacci, D., farinacci, F Fa Far Fari BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 8 ,.,,.,.," 9 9 0 0 0 0 1 +Encoding", RFC encoding", E En Enc Enco BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 8 ",,./,, 7 9 0 0 0 0 1 +<https://www.rfc-editor.org/info/rfc3032>. <https://www.rfc-editor.org/info/rfc3032>. <https://www.rfc-editor.org/info/rfc3032>. < <h <ht <htt BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 1 11 8 ://.-.//. 9 7 0 0 0 0 1 +[RFC4271] Rekhter, [rfc4271] [ [R [RF [RFC BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 9 [],.,.,,.,.,.,.," 17 10 0 0 0 0 1 +Border Gateway border B Bo Bor Bord BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 9 (-)",, 6 7 0 0 0 0 1 +DOI 10.17487/RFC4271, doi D DO DOI DOI BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 1 0 0 0 0 0 0 11 9 ./,, 4 5 0 0 0 0 1 +<https://www.rfc-editor.org/info/rfc4271>. <https://www.rfc-editor.org/info/rfc4271>. <https://www.rfc-editor.org/info/rfc4271>. < <h <ht <htt BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 1 11 9 ://.-.//. 9 6 0 0 0 0 1 +Previdi, et previdi, P Pr Pre Prev BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 11 ,. 2 6 0 0 1 0 0 +Expires January expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 11 , 1 10 0 0 0 0 0 +[Page 38] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 0 - 1 10 0 0 1 0 1 +Segment Routing segment S Se Seg Segm BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 0 no 0 10 0 0 1 0 1 +July 2019 july J Ju Jul July BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 11 0 no 0 3 0 0 0 0 1 +[RFC4360] Sangli, [rfc4360] [ [R [RF [RFC BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 0 [],.,,.,.," 11 10 0 0 0 0 1 +Communities Attribute", communities C Co Com Comm BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 0 ",,./, 6 8 0 0 0 0 1 +February 2006, february F Fe Feb Febr BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 11 0 ,://.-.//. 10 9 0 0 0 0 1 +[RFC4760] Bates, [rfc4760] [ [R [RF [RFC BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 1 [],.,,.,,.,., 13 10 0 0 0 0 1 +"Multiprotocol Extensions "multiprotocol " "M "Mu "Mul BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 1 "-",, 5 8 0 0 0 0 1 +DOI 10.17487/RFC4760, doi D DO DOI DOI BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 1 0 0 0 0 0 0 11 1 ./,, 4 6 0 0 0 0 1 +<https://www.rfc-editor.org/info/rfc4760>. <https://www.rfc-editor.org/info/rfc4760>. <https://www.rfc-editor.org/info/rfc4760>. < <h <ht <htt BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 1 11 1 ://.-.//. 9 7 0 0 0 0 1 +[RFC5575] Marques, [rfc5575] [ [R [RF [RFC BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 2 [],.,,.,,.,,.,,., 17 10 0 0 0 0 1 +and D. and a an and and BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 2 .," 3 7 0 0 0 0 1 +Rules", RFC rules", R Ru Rul Rule BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 2 ",,./,, 7 7 0 0 0 0 1 +<https://www.rfc-editor.org/info/rfc5575>. <https://www.rfc-editor.org/info/rfc5575>. <https://www.rfc-editor.org/info/rfc5575>. < <h <ht <htt BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 1 11 2 ://.-.//. 9 6 0 0 0 0 1 +[RFC7606] Chen, [rfc7606] [ [R [RF [RFC BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 3 [],.,.,,.,.,,.,. 16 10 0 0 0 0 1 +Patel, "Revised patel, P Pa Pat Pate BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 3 ,"", 4 8 0 0 0 0 1 +RFC 7606, rfc R RF RFC RFC BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 11 3 ,./,, 5 6 0 0 0 0 1 +<https://www.rfc-editor.org/info/rfc7606>. <https://www.rfc-editor.org/info/rfc7606>. <https://www.rfc-editor.org/info/rfc7606>. < <h <ht <htt BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 1 11 3 ://.-.//. 9 6 0 0 0 0 1 +[RFC8126] Cotton, [rfc8126] [ [R [RF [RFC BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 4 [],.,,.,.," 11 10 0 0 0 0 1 +Writing an writing W Wr Wri Writ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 4 ",, 3 8 0 0 0 0 1 +RFC 8126, rfc R RF RFC RFC BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 11 4 ,./,, 5 6 0 0 0 0 1 +<https://www.rfc-editor.org/info/rfc8126>. <https://www.rfc-editor.org/info/rfc8126>. <https://www.rfc-editor.org/info/rfc8126>. < <h <ht <htt BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 1 11 4 ://.-.//. 9 6 0 0 0 0 1 +10.2. Informational 10.2. 1 10 10. 10.2 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 6 .. 2 10 0 0 0 0 1 +[I-D.filsfils-spring-sr-policy-considerations] [I-D.filsfils-spring-sr-policy-considerations] [i-d.filsfils-spring-sr-policy-considerations] [ [I [I- [I-D BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 6 [-.----] 8 7 0 0 0 0 1 +Filsfils, C., filsfils, F Fi Fil Fils BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 6 ,.,,.,,.,,., 12 10 0 0 0 0 1 +P. Mattes, p. P P. P. P. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 11 6 .," 3 8 0 0 0 0 1 +Considerations", draft-filsfils-spring-sr-policy- considerations", C Co Con Cons BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 6 ",----- 7 8 0 0 0 0 1 +considerations-03 (work considerations-03 c co con cons BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 6 -(),. 5 8 0 0 0 0 1 +[I-D.ietf-6man-segment-routing-header] [I-D.ietf-6man-segment-routing-header] [i-d.ietf-6man-segment-routing-header] [ [I [I- [I-D BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 7 [-.----] 8 6 0 0 0 0 1 +Filsfils, C., filsfils, F Fi Fil Fils BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 7 ,.,,.,,.,,., 12 8 0 0 0 0 1 +Matsushima, S., matsushima, M Ma Mat Mats BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 7 ,.,...," 8 10 0 0 0 0 1 +Routing Header routing R Ro Rou Rout BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 11 7 ()",----- 9 9 0 0 0 0 1 +header-21 (work header-21 h he hea head BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 7 -(),. 5 6 0 0 0 0 1 +[I-D.ietf-idr-flowspec-redirect-ip] [I-D.ietf-idr-flowspec-redirect-ip] [i-d.ietf-idr-flowspec-redirect-ip] [ [I [I- [I-D BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 8 [-.----] 8 6 0 0 0 0 1 +Uttaro, J., uttaro, U Ut Utt Utta BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 8 ,.,,.,,.,,.,,., 15 8 0 0 0 0 1 +Simpson, A., simpson, S Si Sim Simp BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 8 ,.,.,"- 7 10 0 0 0 0 1 +IP Action", ip I IP IP IP BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 1 0 0 0 0 0 0 11 8 ",------( 9 9 0 0 0 0 1 +in progress), in i in in in BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 11 8 ),. 3 4 0 0 0 0 1 +[RFC4456] Bates, [rfc4456] [ [R [RF [RFC BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 10 [],.,,.,.," 11 10 0 0 0 0 1 +Reflection: An reflection: R Re Ref Refl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 10 : 1 9 0 0 0 0 1 +(IBGP)", RFC (ibgp)", ( (I (IB (IBG BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 11 10 ()",,./,, 9 9 0 0 0 0 1 +<https://www.rfc-editor.org/info/rfc4456>. <https://www.rfc-editor.org/info/rfc4456>. <https://www.rfc-editor.org/info/rfc4456>. < <h <ht <htt BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 1 11 10 ://.-.//. 9 7 0 0 0 0 1 +Previdi, et previdi, P Pr Pre Prev BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 11 ,. 2 6 0 0 1 0 0 +Expires January expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 11 , 1 10 0 0 0 0 0 +[Page 39] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 0 - 1 10 0 0 1 0 1 +Segment Routing segment S Se Seg Segm BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 0 no 0 10 0 0 1 0 1 +July 2019 july J Ju Jul July BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 11 0 no 0 3 0 0 0 0 1 +[RFC7942] Sheffer, [rfc7942] [ [R [RF [RFC BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 0 [],..," 7 10 0 0 0 0 1 +Code: The code: C Co Cod Code BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 0 :",, 4 7 0 0 0 0 1 +RFC 7942, rfc R RF RFC RFC BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 11 0 ,./,, 5 6 0 0 0 0 1 +<https://www.rfc-editor.org/info/rfc7942>. <https://www.rfc-editor.org/info/rfc7942>. <https://www.rfc-editor.org/info/rfc7942>. < <h <ht <htt BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 1 11 0 ://.-.//. 9 6 0 0 0 0 1 +Authors' Addresses authors' A Au Aut Auth BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 4 ' 1 10 0 0 0 0 1 +Stefano Previdi stefano S St Ste Stef BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 0 0 0 0 0 0 11 4 no 0 10 0 0 0 0 1 +Individual Individual individual I In Ind Indi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 4 no 0 6 0 0 0 0 1 +IT IT it I IT IT IT BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 11 4 no 0 1 0 0 0 0 1 +Email: stefano@previdi.net email: E Em Ema Emai BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 5 :. 2 10 0 0 0 0 1 +Clarence Filsfils clarence C Cl Cla Clar BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 0 0 0 0 0 0 11 5 no 0 9 0 0 0 0 1 +Cisco Systems, cisco C Ci Cis Cisc BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 0 0 0 0 0 0 11 5 ,. 2 10 0 0 0 0 1 +Brussels Brussels brussels B Br Bru Brus BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 5 no 0 4 0 0 0 0 1 +BE BE be B BE BE BE BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 11 5 no 0 1 0 0 0 0 1 +Email: cfilsfil@cisco.com email: E Em Ema Emai BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 6 :. 2 10 0 0 0 0 1 +Paul Mattes paul P Pa Pau Paul BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 0 0 0 0 0 0 11 6 no 0 6 0 0 0 0 1 +Microsoft Microsoft microsoft M Mi Mic Micr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 6 no 0 5 0 0 0 0 1 +One Microsoft one O On One One BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 6 no 0 10 0 0 0 0 1 +Redmond, WA redmond, R Re Red Redm BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 6 , 1 10 0 0 0 0 1 +USA USA usa U US USA USA BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 11 6 no 0 2 0 0 0 0 1 +Email: pamattes@microsoft.com email: E Em Ema Emai BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 8 :. 2 10 0 0 0 0 1 +Eric Rosen eric E Er Eri Eric BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 0 0 0 0 0 0 11 8 no 0 4 0 0 0 0 1 +Juniper Networks juniper J Ju Jun Juni BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 8 no 0 6 0 0 0 0 1 +10 Technology 10 1 10 10 10 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 0 0 0 0 0 0 0 0 11 8 no 0 10 0 0 0 0 1 +Westford, MA westford, W We Wes West BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 8 , 1 7 0 0 0 0 1 +US US us U US US US BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 1 1 0 0 0 0 0 11 8 no 0 1 0 0 0 0 1 +Email: erosen@juniper.net email: E Em Ema Emai BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 9 :. 2 10 0 0 0 0 1 +Dhanendra Jain dhanendra D Dh Dha Dhan BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 10 no 0 10 0 0 0 0 1 +Google Google google G Go Goo Goog BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 10 no 0 4 0 0 0 0 1 +Email: dhanendra.ietf@gmail.com email: E Em Ema Emai BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 10 :.. 3 10 0 0 0 0 1 +Previdi, et previdi, P Pr Pre Prev BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 10 ,. 2 6 0 0 1 0 0 +Expires January expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 10 , 1 10 0 0 0 0 0 +[Page 40] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 10 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 0 - 1 10 0 0 1 0 1 +Segment Routing segment S Se Seg Segm BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 1 no 0 10 0 0 1 0 1 +July 2019 july J Ju Jul July BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 11 1 no 0 3 0 0 0 0 1 +Steven Lin steven S St Ste Stev BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 0 0 0 0 0 0 11 4 no 0 10 0 0 0 0 1 +Google Google google G Go Goo Goog BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 4 no 0 6 0 0 0 0 1 +Email: stevenlin@google.com email: E Em Ema Emai BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 5 :. 2 10 0 0 0 0 1 +Previdi, et previdi, P Pr Pre Prev BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 7 ,. 2 6 0 0 1 0 0 +Expires January expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 7 , 1 10 0 0 0 0 0 +[Page 41] [page [ [P [Pa [Pag BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 7 [] 2 4 0 0 0 0 0 + diff --git a/grobid-trainer/resources/dataset/segmentation/sdo/ietf/corpus/raw/XP015134132.training.segmentation b/grobid-trainer/resources/dataset/segmentation/sdo/ietf/corpus/raw/XP015134132.training.segmentation new file mode 100644 index 0000000000..d557ae9493 --- /dev/null +++ b/grobid-trainer/resources/dataset/segmentation/sdo/ietf/corpus/raw/XP015134132.training.segmentation @@ -0,0 +1,352 @@ +server date server s se ser serv BLOCKSTART PAGESTART NEWFONT HIGHERFONT 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 0 ; 1 10 0 0 0 0 0 +Network Working network N Ne Net Netw BLOCKSTART PAGEIN NEWFONT HIGHERFONT 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 0 0 no 0 10 0 0 0 0 1 +I. Learmonth i. I I. I. I. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 . 1 4 0 0 0 0 1 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 - 1 4 0 0 0 0 1 +Tor Project tor T To Tor Tor BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 no 0 3 0 0 0 0 1 +Intended status: intended I In Int Inte BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 : 1 10 0 0 0 0 1 +July 8, july J Ju Jul July BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 0 0 , 1 4 0 0 0 0 1 +Expires: January expires: E Ex Exp Expi BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 :, 2 8 0 0 0 0 1 +Guidelines for guidelines G Gu Gui Guid BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 1 no 0 10 0 0 0 0 1 +draft-irtf-pearg-safe-internet-measurement-01 draft-irtf-pearg-safe-internet-measurement-01 draft-irtf-pearg-safe-internet-measurement-01 d dr dra draf BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 1 ------ 6 7 0 0 0 0 1 +Abstract Abstract abstract A Ab Abs Abst BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 1 no 0 10 0 0 0 0 1 +Researchers from researchers R Re Res Rese BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 2 no 0 8 0 0 0 0 1 +measurements as measurements m me mea meas BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 2 . 1 9 0 0 0 0 1 +give insight give g gi giv give BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 2 , 1 10 0 0 0 0 1 +come at come c co com come BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 2 . 1 9 0 0 0 0 1 +for ensuring for f fo for for BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 2 . 1 9 0 0 0 0 1 +Note Note note N No Not Note BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 4 no 0 10 0 0 0 0 1 +Comments are comments C Co Com Comm BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 0 4 no 0 10 0 0 0 0 1 +group's mailing group's g gr gro grou BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 4 './(). 6 9 0 0 0 0 1 +The sources the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 5 : 1 10 0 0 0 0 1 +https://github.com/irl/draft-safe-internet-measurement https://github.com/irl/draft-safe-internet-measurement https://github.com/irl/draft-safe-internet-measurement h ht htt http BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 1 0 5 ://.//--- 9 10 0 0 0 0 1 +Status of status S St Sta Stat BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 5 no 0 10 0 0 0 0 1 +This Internet-Draft this T Th Thi This BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 6 - 1 10 0 0 0 0 1 +provisions of provisions p pr pro prov BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 6 . 1 5 0 0 0 0 1 +Internet-Drafts are internet-drafts I In Int Inte BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 6 - 1 9 0 0 0 0 1 +Task Force task T Ta Tas Task BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 6 (). 3 9 0 0 0 0 1 +working documents working w wo wor work BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 6 -.- 3 10 0 0 0 0 1 +Drafts is drafts D Dr Dra Draf BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 6 ://..///. 9 8 0 0 0 0 1 +Internet-Drafts are internet-drafts I In Int Inte BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 8 - 1 10 0 0 0 0 1 +and may and a an and and BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 8 ,, 2 9 0 0 0 0 1 +time. It time. t ti tim time BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 8 .- 2 8 0 0 0 0 1 +material or material m ma mat mate BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 8 "." 3 8 0 0 0 0 1 +This Internet-Draft this T Th Thi This BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 10 -,. 3 10 0 0 0 0 1 +Copyright Notice copyright C Co Cop Copy BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 10 no 0 10 0 0 0 0 1 +Copyright (c) copyright C Co Cop Copy BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 10 () 2 10 0 0 0 0 1 +document authors. document d do doc docu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 10 .. 2 6 0 0 0 0 1 +Learmonth Learmonth learmonth L Le Lea Lear BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 1 11 no 0 4 0 0 1 1 0 +Expires January expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 11 , 1 10 0 0 0 0 0 +[Page 1] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 11 [] 2 3 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 1 0 - 1 10 0 0 1 1 1 +Safe Internet safe S Sa Saf Safe BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 0 no 0 10 0 0 1 1 1 +July 2019 july J Ju Jul July BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 1 0 no 0 3 0 0 0 0 1 +This document this T Th Thi This BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 0 ' 1 8 0 0 0 0 1 +Provisions Relating provisions P Pr Pro Prov BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 0 no 0 5 0 0 0 0 1 +(https://trustee.ietf.org/license-info) in (https://trustee.ietf.org/license-info) ( (h (ht (htt BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 1 1 0 (://../-) 9 9 0 0 0 0 1 +publication of publication p pu pub publ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 0 . 1 8 0 0 0 0 1 +carefully, as carefully, c ca car care BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 0 , 1 10 0 0 0 0 1 +to this to t to to to BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 0 . 1 2 0 0 0 0 1 +1. Introduction 1. 1 1. 1. 1. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 2 . 1 10 0 0 0 0 1 +Performing research performing P Pe Per Perf BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 2 , 1 9 0 0 0 0 1 +testbed or testbed t te tes test BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 2 ,- 2 9 0 0 0 0 1 +space with space s sp spa spac BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 2 . 1 8 0 0 0 0 1 +academic and academic a ac aca acad BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 2 no 0 10 0 0 0 0 1 +of scientific of o of of of BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 2 no 0 9 0 0 0 0 1 +other users. other o ot oth othe BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 2 . 1 1 0 0 0 0 1 +1.1. Scope 1.1. 1 1. 1.1 1.1. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 4 .. 2 10 0 0 0 0 1 +Following the following F Fo Fol Foll BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 4 no 0 9 0 0 0 0 1 +substitute for substitute s su sub subs BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 4 , 1 9 0 0 0 0 1 +these guidelines these t th the thes BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 4 ., 2 10 0 0 0 0 1 +guidelines are guidelines g gu gui guid BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 4 no 0 8 0 0 0 0 1 +considered before considered c co con cons BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 4 no 0 9 0 0 0 0 1 +impacts on impacts i im imp impa BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 4 . 1 3 0 0 0 0 1 +1.2. Active 1.2. 1 1. 1.2 1.2. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 6 .. 2 10 0 0 0 0 1 +Internet measurement internet I In Int Inte BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 2 6 no 0 9 0 0 0 0 1 +groups: active groups: g gr gro grou BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 6 :. 2 8 0 0 0 0 1 +measurements generate measurements m me mea meas BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 6 . 1 10 0 0 0 0 1 +throughput testing throughput t th thr thro BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 6 [] 2 10 0 0 0 0 1 +feature-dependent connectivity feature-dependent f fe fea feat BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 6 - 1 8 0 0 0 0 1 +[PATHspider] both [pathspider] [ [P [PA [PAT BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 6 []. 3 9 0 0 0 0 1 +measurements requires measurements m me mea meas BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 6 . 1 5 0 0 0 0 1 +Both active both B Bo Bot Both BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 8 . 1 9 0 0 0 0 1 +active measurement active a ac act acti BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 8 -- 2 9 0 0 0 0 1 +attack, while attack, a at att atta BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 8 , 1 10 0 0 0 0 1 +of user of o of of of BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 8 . 1 2 0 0 0 0 1 +The type the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 10 no 0 10 0 0 0 0 1 +include both include i in inc incl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 10 . 1 8 0 0 0 0 1 +considerations in considerations c co con cons BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 10 no 0 9 0 0 0 0 1 +their applicability their t th the thei BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 10 . 1 8 0 0 0 0 1 +Learmonth Learmonth learmonth L Le Lea Lear BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 2 11 no 0 4 0 0 1 0 0 +Expires January expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 11 , 1 10 0 0 0 0 0 +[Page 2] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 11 [] 2 3 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 2 0 - 1 10 0 0 1 0 1 +Safe Internet safe S Sa Saf Safe BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 0 no 0 10 0 0 1 0 1 +July 2019 july J Ju Jul July BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 2 0 no 0 3 0 0 0 0 1 +2. Consent 2. 2 2. 2. 2. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 0 . 1 10 0 0 0 0 1 +In an in I In In In BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 2 0 , 1 10 0 0 0 0 1 +that may that t th tha that BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 0 ,, 2 8 0 0 0 0 1 +experiment. In experiment. e ex exp expe BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 0 ., 2 9 0 0 0 0 1 +done. done. done. d do don done BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 0 . 1 0 0 0 0 0 1 +2.1. Informed 2.1. 2 2. 2.1 2.1. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 1 .. 2 10 0 0 0 0 1 +For consent for F Fo For For BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 2 , 1 10 0 0 0 0 1 +the users. the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 2 . 1 9 0 0 0 0 1 +provide a provide p pr pro prov BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 2 no 0 8 0 0 0 0 1 +depending on depending d de dep depe BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 2 . 1 8 0 0 0 0 1 +2.2. Informed 2.2. 2 2. 2.2 2.2. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 3 3 ..: 3 10 0 0 0 0 1 +A researcher a A A A A BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 1 0 0 0 0 0 3 3 no 0 9 0 0 0 0 1 +collect information collect c co col coll BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 3 . 1 9 0 0 0 0 1 +will be will w wi wil will BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 3 3 ' 1 10 0 0 0 0 1 +blocked webpages. blocked b bl blo bloc BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 3 . 1 2 0 0 0 0 1 +This experiment this T Th Thi This BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 4 no 0 10 0 0 0 0 1 +the circumstances, the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 4 , 1 9 0 0 0 0 1 +arrest or arrest a ar arr arre BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 4 . 1 10 0 0 0 0 1 +that is that t th tha that BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 4 no 0 9 0 0 0 0 1 +before proceeding. before b be bef befo BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 4 . 1 2 0 0 0 0 1 +2.3. Proxy 2.3. 2 2. 2.3 2.3. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 3 6 .. 2 10 0 0 0 0 1 +In cases in I In In In BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 3 6 no 0 10 0 0 0 0 1 +all users all a al all all BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 6 , 1 9 0 0 0 0 1 +consent. Proxy consent. c co con cons BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 6 . 1 8 0 0 0 0 1 +employer that employer e em emp empl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 6 no 0 10 0 0 0 0 1 +of a of o of of of BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 6 . 1 5 0 0 0 0 1 +In some in I In In In BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 3 8 , 1 9 0 0 0 0 1 +service that service s se ser serv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 8 no 0 10 0 0 0 0 1 +perform certain perform p pe per perf BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 8 . 1 4 0 0 0 0 1 +2.4. Proxy 2.4. 2 2. 2.4 2.4. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 3 9 ..: 3 10 0 0 0 0 1 +A researcher a A A A A BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 1 0 0 0 0 0 3 9 no 0 10 0 0 0 0 1 +TCP options tcp T TC TCP TCP BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 3 9 no 0 8 0 0 0 0 1 +corporate wireless corporate c co cor corp BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 9 . 1 4 0 0 0 0 1 +The employer the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 10 no 0 9 0 0 0 0 1 +them to them t th the them BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 10 no 0 9 0 0 0 0 1 +employees (the employees e em emp empl BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 10 (). 3 10 0 0 0 0 1 +Learmonth Learmonth learmonth L Le Lea Lear BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 4 11 no 0 4 0 0 1 0 0 +Expires January expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 11 , 1 10 0 0 0 0 0 +[Page 3] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 11 [] 2 3 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 4 0 - 1 10 0 0 1 0 1 +Safe Internet safe S Sa Saf Safe BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 0 no 0 10 0 0 1 0 1 +July 2019 july J Ju Jul July BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 4 0 no 0 3 0 0 0 0 1 +may affect may m ma may may BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 1 0 0 4 0 . 1 10 0 0 0 0 1 +example, to example, e ex exa exam BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 0 , 1 9 0 0 0 0 1 +allowed, whereas allowed, a al all allo BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 0 ,. 2 7 0 0 0 0 1 +2.5. Implied 2.5. 2 2. 2.5 2.5. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 4 1 .. 2 10 0 0 0 0 1 +In larger in I In In In BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 4 1 , 1 9 0 0 0 0 1 +be practical. be b be be be BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 1 ., 2 9 0 0 0 0 1 +users for users u us use user BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 1 . 1 9 0 0 0 0 1 +have certain have h ha hav have BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 1 no 0 9 0 0 0 0 1 +align with align a al ali alig BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 1 no 0 9 0 0 0 0 1 +are using. are a ar are are BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 1 ., 2 10 0 0 0 0 1 +if asked if i if if if BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 1 ' 1 9 0 0 0 0 1 +to perform. to t to to to BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 1 . 1 1 0 0 0 0 1 +Implied consent implied I Im Imp Impl BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 3 no 0 9 0 0 0 0 1 +experiment that experiment e ex exp expe BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 3 no 0 9 0 0 0 0 1 +information. If information. i in inf info BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 3 ., 2 10 0 0 0 0 1 +proxy consent proxy p pr pro prox BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 3 no 0 9 0 0 0 0 1 +expectations of expectations e ex exp expe BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 3 . 1 4 0 0 0 0 1 +2.6. Implied 2.6. 2 2. 2.6 2.6. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 4 5 ..: 3 10 0 0 0 0 1 +A researcher a A A A A BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 1 0 0 0 0 0 4 5 no 0 10 0 0 0 0 1 +the maximum the t th the the BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 5 . 1 8 0 0 0 0 1 +The operator the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 6 no 0 10 0 0 0 0 1 +a popular a a a a a BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 1 0 0 0 0 0 4 6 no 0 10 0 0 0 0 1 +in surveys in i in in in BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 4 6 no 0 9 0 0 0 0 1 +not expect not n no not not BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 6 no 0 9 0 0 0 0 1 +numbers of numbers n nu num numb BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 4 6 . 1 5 0 0 0 0 1 +2.7. Implied 2.7. 2 2. 2.7 2.7. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 7 ..: 3 10 0 0 0 0 1 +A researcher a A A A A BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 1 0 0 0 0 0 5 7 / 1 10 0 0 0 0 1 +and how and a an and and BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 7 . 1 9 0 0 0 0 1 +of their of o of of of BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 7 no 0 9 0 0 0 0 1 +back. These back. b ba bac back BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 7 . 1 8 0 0 0 0 1 +software's auto-update software's s so sof soft BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 7 '-. 3 9 0 0 0 0 1 +performance metrics performance p pe per perf BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 7 no 0 10 0 0 0 0 1 +or sensitive or o or or or BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 7 . 1 3 0 0 0 0 1 +As users as A As As As BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 9 , 1 10 0 0 0 0 1 +the behaviour the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 9 . 1 9 0 0 0 0 1 +users have users u us use user BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 9 no 0 9 0 0 0 0 1 +the developers the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 9 , 1 9 0 0 0 0 1 +metrics would metrics m me met metr BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 0 0 0 0 0 0 5 9 . 1 8 0 0 0 0 1 +Learmonth Learmonth learmonth L Le Lea Lear BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 5 11 no 0 4 0 0 1 0 0 +Expires January expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 11 , 1 10 0 0 0 0 0 +[Page 4] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 11 [] 2 3 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 5 0 - 1 10 0 0 1 0 1 +Safe Internet safe S Sa Saf Safe BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 0 no 0 10 0 0 1 0 1 +July 2019 july J Ju Jul July BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 5 0 no 0 3 0 0 0 0 1 +software update, software s so sof soft BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 0 ,/ 2 10 0 0 0 0 1 +of users of o of of of BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 0 . 1 8 0 0 0 0 1 +The reduced the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 1 no 0 10 0 0 0 0 1 +risk updates, risk r ri ris risk BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 1 , 1 9 0 0 0 0 1 +push to push p pu pus push BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 1 /., 3 9 0 0 0 0 1 +new behaviour new n ne new new BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 1 no 0 9 0 0 0 0 1 +users are users u us use user BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 1 . 1 6 0 0 0 0 1 +In the in I In In In BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 6 2 , 1 9 0 0 0 0 1 +be easy be b be be be BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 2 no 0 8 0 0 0 0 1 +experiment and experiment e ex exp expe BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 2 , 1 10 0 0 0 0 1 +consent to consent c co con cons BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 2 . 1 7 0 0 0 0 1 +3. Safety 3. 3 3. 3. 3. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 4 . 1 10 0 0 0 0 1 +3.1. Isolate 3.1. 3 3. 3.1 3.1. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 4 .. 2 10 0 0 0 0 1 +Wherever possible, wherever W Wh Whe Wher BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 4 ,. 2 9 0 0 0 0 1 +there are there t th the ther BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 4 no 0 10 0 0 0 0 1 +your experiments. your y yo you your BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 4 . 1 2 0 0 0 0 1 +When measuring when W Wh Whe When BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 5 , 1 9 0 0 0 0 1 +effects on effects e ef eff effe BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 5 no 0 9 0 0 0 0 1 +approach can approach a ap app appr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 5 no 0 10 0 0 0 0 1 +experiments using experiments e ex exp expe BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 5 . 1 5 0 0 0 0 1 +WAN link wan W WA WAN WAN BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 1 1 0 0 0 0 0 6 6 / 1 10 0 0 0 0 1 +packet loss packet p pa pac pack BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 6 []. 3 10 0 0 0 0 1 +emulated using emulated e em emu emul BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 6 . 1 5 0 0 0 0 1 +3.2. Be 3.2. 3 3. 3.2 3.2. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 7 ..' 3 10 0 0 0 0 1 +If your if I If If If BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 7 no 0 8 0 0 0 0 1 +infrastructure that infrastructure i in inf infr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 7 , 1 9 0 0 0 0 1 +consequences of consequences c co con cons BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 7 . 1 10 0 0 0 0 1 +consume bandwidth consume c co con cons BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 7 . 1 7 0 0 0 0 1 +In more in I In In In BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 6 8 , 1 8 0 0 0 0 1 +generated that generated g ge gen gene BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 8 no 0 8 0 0 0 0 1 +infrastructure. The infrastructure. i in inf infr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 8 . 1 10 0 0 0 0 1 +jurisdictions and jurisdictions j ju jur juri BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 8 no 0 9 0 0 0 0 1 +legal for legal l le leg lega BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 8 . 1 2 0 0 0 0 1 +If you if I If If If BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 10 , 1 9 0 0 0 0 1 +deviate from deviate d de dev devi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 10 , 1 10 0 0 0 0 1 +an attack an a an an an BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 7 10 no 0 9 0 0 0 0 1 +are representative are a ar are are BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 10 . 1 7 0 0 0 0 1 +Learmonth Learmonth learmonth L Le Lea Lear BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 7 11 no 0 4 0 0 1 0 0 +Expires January expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 11 , 1 10 0 0 0 0 0 +[Page 5] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 7 11 [] 2 3 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 7 0 - 1 10 0 0 1 0 1 +Safe Internet safe S Sa Saf Safe BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 0 no 0 10 0 0 1 0 1 +July 2019 july J Ju Jul July BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 7 0 no 0 3 0 0 0 0 1 +3.2.1. Maintain 3.2.1. 3 3. 3.2 3.2. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 0 ..."" 5 10 0 0 0 0 1 +When performing when W Wh Whe When BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 0 , 1 10 0 0 0 0 1 +list of list l li lis list BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 0 no 0 9 0 0 0 0 1 +appear in appear a ap app appe BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 0 . 1 9 0 0 0 0 1 +active measurement, active a ac act acti BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 0 , 1 9 0 0 0 0 1 +measurement system, measurement m me mea meas BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 0 , 1 9 0 0 0 0 1 +"Do Not "do " "D "Do "Do BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 7 0 "". 3 2 0 0 0 0 1 +If complaints if I If If If BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 2 no 0 9 0 0 0 0 1 +towards a towards t to tow towa BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 2 , 1 9 0 0 0 0 1 +"Do Not "do " "D "Do "Do BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 7 2 "", 3 10 0 0 0 0 1 +automated. automated. automated. a au aut auto BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 2 . 1 1 0 0 0 0 1 +You may you Y Yo You You BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 3 no 0 10 0 0 0 0 1 +to your to t to to to BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 3 . 1 10 0 0 0 0 1 +research and research r re res rese BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 7 3 . 1 10 0 0 0 0 1 +you plan you y yo you you BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 3 no 0 9 0 0 0 0 1 +results, e.g. results, r re res resu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 3 ,.., 4 9 0 0 0 0 1 +from the from f fr fro from BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 3 . 1 2 0 0 0 0 1 +Be aware be B Be Be Be BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 5 , 1 9 0 0 0 0 1 +possible to possible p po pos poss BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 5 "". 3 9 0 0 0 0 1 +example, if example, e ex exa exam BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 5 ,- 2 10 0 0 0 0 1 +it would it i it it it BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 5 no 0 9 0 0 0 0 1 +determine which determine d de det dete BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 5 . 1 4 0 0 0 0 1 +3.3. Data 3.3. 3 3. 3.3 3.3. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 7 .. 2 10 0 0 0 0 1 +When collecting, when W Wh Whe When BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 7 ,,, 3 8 0 0 0 0 1 +measurement, use measurement, m me mea meas BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 7 ,. 2 10 0 0 0 0 1 +Reducing the reducing R Re Red Redu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 7 no 0 9 0 0 0 0 1 +misused or misused m mi mis misu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 7 . 1 2 0 0 0 0 1 +When deciding when W Wh Whe When BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 9 , 1 10 0 0 0 0 1 +might be might m mi mig migh BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 9 ., 2 9 0 0 0 0 1 +through operation through t th thr thro BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 9 no 0 9 0 0 0 0 1 +system. system. system. s sy sys syst BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 9 . 1 1 0 0 0 0 1 +When directly when W Wh Whe When BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 10 no 0 9 0 0 0 0 1 +passive observer, passive p pa pas pass BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 10 ,.[] 4 10 0 0 0 0 1 +minimalization considerations minimalization m mi min mini BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 10 . 1 8 0 0 0 0 1 +3.3.1. Discarding 3.3.1. 3 3. 3.3 3.3. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 11 ... 3 10 0 0 0 0 1 +XXX: Discard xxx: X XX XXX XXX: BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 11 :. 2 10 0 0 0 0 1 +Learmonth Learmonth learmonth L Le Lea Lear BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 8 11 no 0 4 0 0 1 0 0 +Expires January expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 11 , 1 10 0 0 0 0 0 +[Page 6] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 11 [] 2 3 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 8 0 - 1 10 0 0 1 0 1 +Safe Internet safe S Sa Saf Safe BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 0 no 0 10 0 0 1 0 1 +July 2019 july J Ju Jul July BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 9 0 no 0 3 0 0 0 0 1 +When performing when W Wh Whe When BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 0 no 0 10 0 0 0 0 1 +that you that t th tha that BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 0 . 1 9 0 0 0 0 1 +by some by b by by by BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 0 . 1 8 0 0 0 0 1 +Again, this again, A Ag Aga Agai BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 1 , 1 9 0 0 0 0 1 +your experiment. your y yo you your BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 1 .[],, 5 9 0 0 0 0 1 +that any that t th tha that BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 1 no 0 10 0 0 0 0 1 +discarded and discarded d di dis disc BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 1 . 1 6 0 0 0 0 1 +3.3.2. Masking 3.3.2. 3 3. 3.3 3.3. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 3 ... 3 10 0 0 0 0 1 +XXX: Mask xxx: X XX XXX XXX: BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 3 :. 2 8 0 0 0 0 1 +Particularly useful particularly P Pa Par Part BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 3 no 0 10 0 0 0 0 1 +particular class particular p pa par part BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 3 , 1 9 0 0 0 0 1 +of the of o of of of BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 3 ,. 2 9 0 0 0 0 1 +replace content replace r re rep repl BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 3 ,. 2 5 0 0 0 0 1 +3.3.3. Reduce 3.3.3. 3 3. 3.3 3.3. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 5 ... 3 10 0 0 0 0 1 +XXX: Binning, xxx: X XX XXX XXX: BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 6 :,,,. 5 10 0 0 0 0 1 +3.3.4. Data 3.3.4. 3 3. 3.3 3.3. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 6 ... 3 10 0 0 0 0 1 +When collecting when W Wh Whe When BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 6 , 1 10 0 0 0 0 1 +using bins using u us usi usin BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 6 .:. 3 8 0 0 0 0 1 +XXX: Do xxx: X XX XXX XXX: BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 7 :, 2 10 0 0 0 0 1 +disk. disk. disk. d di dis disk BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 7 . 1 0 0 0 0 0 1 +[Tor.2017-04-001] presents [tor.2017-04-001] [ [T [To [Tor BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 1 0 0 0 9 8 [.--]-- 7 10 0 0 0 0 1 +in the in i in in in BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 9 8 ,. 2 8 0 0 0 0 1 +4. Risk 4. 4 4. 4. 4. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 9 . 1 10 0 0 0 0 1 +The benefits the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 9 . 1 10 0 0 0 0 1 +(e.g. third-party (e.g. ( (e (e. (e.g BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 9 (..-). 6 8 0 0 0 0 1 +5. Security 5. 5 5. 5. 5. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 10 . 1 10 0 0 0 0 1 +Take reasonable take T Ta Tak Take BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 10 ,.. 3 10 0 0 0 0 1 +your data your y yo you your BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 10 . 1 5 0 0 0 0 1 +6. IANA 6. 6 6. 6. 6. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 11 . 1 10 0 0 0 0 1 +This document this T Th Thi This BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 11 . 1 10 0 0 0 0 1 +Learmonth Learmonth learmonth L Le Lea Lear BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 10 11 no 0 4 0 0 1 0 0 +Expires January expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 11 , 1 10 0 0 0 0 0 +[Page 7] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 11 [] 2 3 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 10 0 - 1 10 0 0 1 0 1 +Safe Internet safe S Sa Saf Safe BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 0 no 0 10 0 0 1 0 1 +July 2019 july J Ju Jul July BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 10 0 no 0 3 0 0 0 0 1 +7. Acknowledgements 7. 7 7. 7. 7. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 0 . 1 10 0 0 0 0 1 +Many of many M Ma Man Many BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 10 0 no 0 8 0 0 0 0 1 +[TorSafetyBoard] adapted [torsafetyboard] [ [T [To [Tor BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 0 [] 2 10 0 0 0 0 1 +research. research. research. r re res rese BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 0 . 1 1 0 0 0 0 1 +Other considerations other O Ot Oth Othe BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 1 [] 2 10 0 0 0 0 1 +and its and a an and and BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 1 []. 3 7 0 0 0 0 1 +8. Informative 8. 8 8. 8. 8. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 1 . 1 10 0 0 0 0 1 +[MenloReport] [MenloReport] [menloreport] [ [M [Me [Men BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 2 [] 2 2 0 0 0 0 1 +Dittrich, D. dittrich, D Di Dit Ditt BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 10 2 ,..,": 6 10 0 0 0 0 1 +Principles Guiding principles P Pr Pri Prin BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 2 no 0 8 0 0 0 0 1 +Technology Research", technology T Te Tec Tech BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 2 ",, 3 6 0 0 0 0 1 +<https://www.caida.org/publications/papers/2012/ <https://www.caida.org/publications/papers/2012/ <https://www.caida.org/publications/papers/2012/ < <h <ht <htt BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 1 0 0 1 10 2 ://..//// 9 8 0 0 0 0 1 +menlo_report_actual_formatted/>. menlo_report_actual_formatted/>. menlo_report_actual_formatted/>. m me men menl BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 2 /. 2 5 0 0 0 0 1 +[MenloReportCompanion] [MenloReportCompanion] [menloreportcompanion] [ [M [Me [Men BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 3 [] 2 4 0 0 0 0 1 +Bailey, M., bailey, B Ba Bai Bail BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 10 3 ,.,,.,.," 9 10 0 0 0 0 1 +Ethical Principles ethical E Et Eth Ethi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 3 no 0 9 0 0 0 0 1 +Technology Research", technology T Te Tec Tech BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 3 ",, 3 6 0 0 0 0 1 +<https://www.impactcybertrust.org/link_docs/ <https://www.impactcybertrust.org/link_docs/ <https://www.impactcybertrust.org/link_docs/ < <h <ht <htt BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 1 10 3 ://..// 7 8 0 0 0 0 1 +Menlo-Report-Companion.pdf>. Menlo-Report-Companion.pdf>. menlo-report-companion.pdf>. M Me Men Menl BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 10 3 --.. 4 5 0 0 0 0 1 +[netem] [netem] [netem] [ [n [ne [net BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 4 [] 2 1 0 0 0 0 1 +Stephen, H., stephen, S St Ste Step BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 10 4 ,.,"",. 7 10 0 0 0 0 1 +[PATHspider] [PATHspider] [pathspider] [ [P [PA [PAT BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 5 [] 2 2 0 0 0 0 1 +Learmonth, I., learmonth, L Le Lea Lear BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 10 5 ,.,,.,,.,. 10 9 0 0 0 0 1 +Fairhurst, "PATHspider: fairhurst, F Fa Fai Fair BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 10 5 ,": 3 10 0 0 0 0 1 +path transparency", path p pa pat path BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 5 ",./., 6 9 0 0 0 0 1 +2016, 2016, 2016, 2 20 201 2016 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 1 0 0 0 10 5 , 1 1 0 0 0 0 1 +<https://dl.acm.org/citation.cfm?doid=2959424.2959441>. <https://dl.acm.org/citation.cfm?doid=2959424.2959441>. <https://dl.acm.org/citation.cfm?doid=2959424.2959441>. < <h <ht <htt BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 1 0 0 1 10 5 ://../.?.. 10 9 0 0 0 0 1 +[RFC2544] Bradner, [rfc2544] [ [R [RF [RFC BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 1 0 0 0 11 7 [],..," 7 10 0 0 0 0 1 +Network Interconnect network N Ne Net Netw BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 11 7 ",, 3 6 0 0 0 0 1 +DOI 10.17487/RFC2544, doi D DO DOI DOI BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 1 0 0 0 0 0 0 11 7 ./,, 4 5 0 0 0 0 1 +<https://www.rfc-editor.org/info/rfc2544>. <https://www.rfc-editor.org/info/rfc2544>. <https://www.rfc-editor.org/info/rfc2544>. < <h <ht <htt BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 1 0 0 1 11 7 ://.-.//. 9 6 0 0 0 0 1 +[RFC6349] Constantine, [rfc6349] [ [R [RF [RFC BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 8 [],.,,.,,.,., 13 10 0 0 0 0 1 +"Framework for "framework " "F "Fr "Fra BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 8 "",, 4 7 0 0 0 0 1 +DOI 10.17487/RFC6349, doi D DO DOI DOI BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 1 0 0 0 0 0 0 11 8 ./,, 4 5 0 0 0 0 1 +<https://www.rfc-editor.org/info/rfc6349>. <https://www.rfc-editor.org/info/rfc6349>. <https://www.rfc-editor.org/info/rfc6349>. < <h <ht <htt BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 1 11 8 ://.-.//. 9 6 0 0 0 0 1 +[RFC6973] Cooper, [rfc6973] [ [R [RF [RFC BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 9 [],.,,.,,.,,., 14 10 0 0 0 0 1 +Morris, J., morris, M Mo Mor Morr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 9 ,.,,.,.," 9 7 0 0 0 0 1 +Considerations for considerations C Co Con Cons BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 9 ",, 3 8 0 0 0 0 1 +2013, <https://www.rfc-editor.org/info/rfc6937>. 2013, 2 20 201 2013 BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 1 0 0 0 11 9 ,://.-.//. 10 7 0 0 0 0 1 +Learmonth Learmonth learmonth L Le Lea Lear BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 11 no 0 4 0 0 1 0 0 +Expires January expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 11 , 1 10 0 0 0 0 0 +[Page 8] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 11 [] 2 3 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 0 - 1 10 0 0 1 0 1 +Safe Internet safe S Sa Saf Safe BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 0 no 0 10 0 0 1 0 1 +July 2019 july J Ju Jul July BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 11 0 no 0 3 0 0 0 0 1 +[Tor.2017-04-001] [Tor.2017-04-001] [tor.2017-04-001] [ [T [To [Tor BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 1 0 0 0 11 1 [.--] 5 3 0 0 0 0 1 +Herm, K., herm, H He Her Herm BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 1 ,.,"'- 6 8 0 0 0 0 1 +statistics", Tor statistics", s st sta stat BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 1 ",--,, 6 10 0 0 0 0 1 +<https://research.torproject.org/techreports/ <https://research.torproject.org/techreports/ <https://research.torproject.org/techreports/ < <h <ht <htt BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 1 11 1 ://..// 7 8 0 0 0 0 1 +privacy-in-memory-2017-04-28.pdf>. privacy-in-memory-2017-04-28.pdf>. privacy-in-memory-2017-04-28.pdf>. p pr pri priv BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 1 0 0 0 11 1 -----.. 7 6 0 0 0 0 1 +[TorSafetyBoard] [TorSafetyBoard] [torsafetyboard] [ [T [To [Tor BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 6 [] 2 3 0 0 0 0 1 +Tor Project, tor T To Tor Tor BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 6 ,"", 4 8 0 0 0 0 1 +<https://research.torproject.org/safetyboard/>. <https://research.torproject.org/safetyboard/>. <https://research.torproject.org/safetyboard/>. < <h <ht <htt BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 1 11 6 ://..//. 8 10 0 0 0 0 1 +Author's Address author's A Au Aut Auth BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 8 ' 1 10 0 0 0 0 1 +Iain R. iain I Ia Iai Iain BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 0 0 0 0 0 0 11 9 . 1 10 0 0 0 0 1 +Tor Project tor T To Tor Tor BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 9 no 0 6 0 0 0 0 1 +Email: irl@torproject.org email: E Em Ema Emai BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 10 :. 2 10 0 0 0 0 1 +Learmonth Learmonth learmonth L Le Lea Lear BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 10 no 0 4 0 0 1 0 0 +Expires January expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 10 , 1 10 0 0 0 0 0 +[Page 9] [page [ [P [Pa [Pag BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 10 [] 2 3 0 0 0 0 0 + diff --git a/grobid-trainer/resources/dataset/segmentation/sdo/ietf/corpus/raw/XP015134172.training.segmentation b/grobid-trainer/resources/dataset/segmentation/sdo/ietf/corpus/raw/XP015134172.training.segmentation new file mode 100644 index 0000000000..e044580495 --- /dev/null +++ b/grobid-trainer/resources/dataset/segmentation/sdo/ietf/corpus/raw/XP015134172.training.segmentation @@ -0,0 +1,346 @@ +server date server s se ser serv BLOCKSTART PAGESTART NEWFONT HIGHERFONT 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 0 ; 1 10 0 0 0 0 0 +Network Working network N Ne Net Netw BLOCKSTART PAGEIN NEWFONT HIGHERFONT 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 0 0 no 0 10 0 0 0 0 1 +B. Liu b. B B. B. B. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 . 1 2 0 0 0 0 1 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 - 1 4 0 0 0 0 1 +Huawei Technologies huawei H Hu Hua Huaw BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 no 0 6 0 0 0 0 1 +Intended status: intended I In Int Inte BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 : 1 10 0 0 0 0 1 +July 8, july J Ju Jul July BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 0 0 , 1 3 0 0 0 0 1 +Expires: January expires: E Ex Exp Expi BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 :, 2 7 0 0 0 0 1 +Instant Congestion instant I In Ins Inst BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 1 () 2 10 0 0 0 0 1 +Engineering Engineering engineering E En Eng Engi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 1 no 0 1 0 0 0 0 1 +draft-liu-ican-00 draft-liu-ican-00 draft-liu-ican-00 d dr dra draf BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 1 --- 3 2 0 0 0 0 1 +Abstract Abstract abstract A Ab Abs Abst BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 1 no 0 10 0 0 0 0 1 +iCAN (instant ican i iC iCA iCAN BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 1 () 2 10 0 0 0 0 1 +running directly running r ru run runn BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 0 1 : 1 5 0 0 0 0 1 +o To o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 0 2 - 1 10 0 0 0 0 1 +candidate paths. candidate c ca can cand BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 2 . 1 2 0 0 0 0 1 +o The o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 0 3 no 0 10 0 0 0 0 1 +path, so path, p pa pat path BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 3 , 1 10 0 0 0 0 1 +be switched be b be be be BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 3 . 1 5 0 0 0 0 1 +This is this T Th Thi This BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 4 no 0 10 0 0 0 0 1 +achieve: achieve: achieve: a ac ach achi BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 4 : 1 1 0 0 0 0 1 +o SDN o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 0 4 , 1 10 0 0 0 0 1 +able to able a ab abl able BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 4 -, 2 9 0 0 0 0 1 +nor able nor n no nor nor BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 4 no 0 8 0 0 0 0 1 +(especially in (especially ( (e (es (esp BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 4 ()., 4 9 0 0 0 0 1 +perfectly: controller perfectly: p pe per perf BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 4 :-, 3 9 0 0 0 0 1 +does the does d do doe does BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 4 . 1 6 0 0 0 0 1 +o Traditional o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 0 7 -. 2 10 0 0 0 0 1 +Status of status S St Sta Stat BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 7 no 0 10 0 0 0 0 1 +This Internet-Draft this T Th Thi This BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 7 - 1 10 0 0 0 0 1 +provisions of provisions p pr pro prov BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 7 . 1 5 0 0 0 0 1 +Internet-Drafts are internet-drafts I In Int Inte BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 1 8 - 1 9 0 0 0 0 1 +Task Force task T Ta Tas Task BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 8 (). 3 9 0 0 0 0 1 +working documents working w wo wor work BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 8 -.- 3 10 0 0 0 0 1 +Drafts is drafts D Dr Dra Draf BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 8 ://..///. 9 8 0 0 0 0 1 +Internet-Drafts are internet-drafts I In Int Inte BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 1 9 - 1 10 0 0 0 0 1 +and may and a an and and BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 9 ,, 2 9 0 0 0 0 1 +time. It time. t ti tim time BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 9 .- 2 8 0 0 0 0 1 +material or material m ma mat mate BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 9 "." 3 8 0 0 0 0 1 +Liu Liu liu L Li Liu Liu BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 0 0 0 0 0 0 1 11 no 0 1 0 0 0 0 0 +Expires January expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 11 , 1 10 0 0 0 0 0 +[Page 1] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 11 [] 2 3 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 1 0 - 1 10 0 0 1 1 1 +iCAN iCAN ican i iC iCA iCAN BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 0 no 0 5 0 0 0 0 1 +July 2019 july J Ju Jul July BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 1 0 no 0 10 0 0 0 0 1 +This Internet-Draft this T Th Thi This BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 0 -,. 3 10 0 0 0 0 1 +Copyright Notice copyright C Co Cop Copy BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 0 no 0 10 0 0 0 0 1 +Copyright (c) copyright C Co Cop Copy BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 0 () 2 10 0 0 0 0 1 +document authors. document d do doc docu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 0 .. 2 6 0 0 0 0 1 +This document this T Th Thi This BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 0 ' 1 8 0 0 0 0 1 +Provisions Relating provisions P Pr Pro Prov BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 0 no 0 5 0 0 0 0 1 +(https://trustee.ietf.org/license-info) in (https://trustee.ietf.org/license-info) ( (h (ht (htt BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 1 1 0 (://../-) 9 9 0 0 0 0 1 +publication of publication p pu pub publ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 0 . 1 8 0 0 0 0 1 +carefully, as carefully, c ca car care BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 0 , 1 10 0 0 0 0 1 +to this to t to to to BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 0 . 1 9 0 0 0 0 1 +include Simplified include i in inc incl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 0 . 1 9 0 0 0 0 1 +the Trust the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 0 no 0 9 0 0 0 0 1 +described in described d de des desc BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 0 . 1 5 0 0 0 0 1 +Table of table T Ta Tab Tabl BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 2 no 0 10 0 0 0 0 1 +1. Introduction 1. 1 1. 1. 1. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 2 ......................... 25 9 0 0 0 0 1 +2 2 2 2 2 2 2 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 2 2 no 0 0 0 0 0 0 1 +2. iCAN 2. 2 2. 2. 2. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 2 ....... 7 9 0 0 0 0 1 +3 3 3 3 3 3 3 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 2 2 no 0 0 0 0 0 0 1 +2.1. Architecture 2.1. 2 2. 2.1 2.1. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 2 ........................ 24 9 0 0 0 0 1 +3 3 3 3 3 3 3 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 2 2 no 0 0 0 0 0 0 1 +2.2. Key 2.2. 2 2. 2.2 2.2. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 2 ................. 17 9 0 0 0 0 1 +5 5 5 5 5 5 5 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 2 2 no 0 0 0 0 0 0 1 +2.2.1. Path 2.2.1. 2 2. 2.2 2.2. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 2 .................. 18 9 0 0 0 0 1 +5 5 5 5 5 5 5 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 2 2 no 0 0 0 0 0 0 1 +2.2.2. Recognition 2.2.2. 2 2. 2.2 2.2. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 2 ....... 7 9 0 0 0 0 1 +5 5 5 5 5 5 5 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 2 2 no 0 0 0 0 0 0 1 +2.2.3. Flow 2.2.3. 2 2. 2.2 2.2. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 2 ............... 15 9 0 0 0 0 1 +5 5 5 5 5 5 5 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 2 2 no 0 0 0 0 0 0 1 +3. Use 3. 3 3. 3. 3. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 2 ....................... 23 10 0 0 0 0 1 +6 6 6 6 6 6 6 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 2 2 no 0 0 0 0 0 0 1 +3.1. Network 3.1. 3 3. 3.1 3.1. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 2 ................... 19 9 0 0 0 0 1 +6 6 6 6 6 6 6 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 2 2 no 0 0 0 0 0 0 1 +3.2. SLA 3.2. 3 3. 3.2 3.2. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 2 ........................ 24 9 0 0 0 0 1 +6 6 6 6 6 6 6 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 2 2 no 0 0 0 0 0 0 1 +3.3. Fine-Granularity 3.3. 3 3. 3.3 3.3. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 2 ..-.............. 17 9 0 0 0 0 1 +6 6 6 6 6 6 6 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 2 2 no 0 0 0 0 0 0 1 +4. Implementation 4. 4 4. 4. 4. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 2 ................... 19 9 0 0 0 0 1 +6 6 6 6 6 6 6 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 2 2 no 0 0 0 0 0 0 1 +4.1. iCAN 4.1. 4 4. 4.1 4.1. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 2 ....................... 23 9 0 0 0 0 1 +6 6 6 6 6 6 6 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 2 2 no 0 0 0 0 0 0 1 +4.2. iCAN 4.2. 4 4. 4.2 4.2. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 2 ....................... 23 9 0 0 0 0 1 +7 7 7 7 7 7 7 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 2 2 no 0 0 0 0 0 0 1 +4.3. iCAN 4.3. 4 4. 4.3 4.3. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 2 ../-................. 21 9 0 0 0 0 1 +7 7 7 7 7 7 7 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 2 2 no 0 0 0 0 0 0 1 +5. Standardization 5. 5 5. 5. 5. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 2 ................. 17 9 0 0 0 0 1 +7 7 7 7 7 7 7 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 2 2 no 0 0 0 0 0 0 1 +6. Security 6. 6 6. 6. 6. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 2 .................... 20 10 0 0 0 0 1 +7 7 7 7 7 7 7 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 2 2 no 0 0 0 0 0 0 1 +7. IANA 7. 7 7. 7. 7. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 2 ...................... 22 10 0 0 0 0 1 +7 7 7 7 7 7 7 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 2 2 no 0 0 0 0 0 0 1 +8. Acknowledgements 8. 8 8. 8. 8. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 2 ....................... 23 9 0 0 0 0 1 +7 7 7 7 7 7 7 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 2 2 no 0 0 0 0 0 0 1 +9. References 9. 9 9. 9. 9. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 2 .......................... 26 9 0 0 0 0 1 +8 8 8 8 8 8 8 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 2 2 no 0 0 0 0 0 0 1 +9.1. Normative 9.1. 9 9. 9.1 9.1. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 2 .................... 20 9 0 0 0 0 1 +8 8 8 8 8 8 8 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 2 2 no 0 0 0 0 0 0 1 +9.2. Informative 9.2. 9 9. 9.2 9.2. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 2 ................... 19 9 0 0 0 0 1 +8 8 8 8 8 8 8 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 2 2 no 0 0 0 0 0 0 1 +Author's Address author's A Au Aut Auth BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 2 2 '........................ 25 10 0 0 0 0 1 +8 8 8 8 8 8 8 BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 2 2 no 0 0 0 0 0 0 1 +1. Introduction 1. 1 1. 1. 1. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 4 11 . 1 10 0 0 0 0 1 +Traditional IP traditional T Tr Tra Trad BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 11 , 1 9 0 0 0 0 1 +which can which w wh whi whic BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 11 .- 2 9 0 0 0 0 1 +the capability the t th the the BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 11 -, 2 10 0 0 0 0 1 +Liu Liu liu L Li Liu Liu BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 0 0 0 0 0 0 4 11 no 0 1 0 0 0 0 0 +Expires January expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 11 , 1 10 0 0 0 0 0 +[Page 2] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 11 [] 2 3 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 4 0 - 1 10 0 0 1 0 1 +iCAN iCAN ican i iC iCA iCAN BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 0 no 0 5 0 0 0 0 1 +July 2019 july J Ju Jul July BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 4 0 no 0 10 0 0 0 0 1 +is doable; is i is is is BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 0 ;,- 3 10 0 0 0 0 1 +of the of o of of of BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 0 . 1 8 0 0 0 0 1 +flexibility that flexibility f fl fle flex BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 0 ; 1 10 0 0 0 0 1 +controller, it controller, c co con cont BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 0 ,. 2 4 0 0 0 0 1 +However, the however, H Ho How Howe BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 1 ,, 2 9 0 0 0 0 1 +which implies which w wh whi whic BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 1 no 0 8 0 0 0 0 1 +situation in situation s si sit situ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 1 -, 2 9 0 0 0 0 1 +planning/controlling (minuets, planning/controlling p pl pla plan BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 1 /(,-) 5 9 0 0 0 0 1 +traffic and traffic t tr tra traf BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 1 no 0 9 0 0 0 0 1 +real-time (e.g. real-time r re rea real BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 1 -(..-)., 8 9 0 0 0 0 1 +(metro, backbones (metro, ( (m (me (met BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 1 (,.), 5 10 0 0 0 0 1 +resources could resources r re res reso BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 1 , 1 9 0 0 0 0 1 +waste of waste w wa was wast BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 1 . 1 4 0 0 0 0 1 +This draft this T Th Thi This BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 6 () 2 10 0 0 0 0 1 +architecture to architecture a ar arc arch BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 6 - 1 9 0 0 0 0 1 +time in time t ti tim time BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 6 . 1 9 0 0 0 0 1 +iCAN includes ican i iC iCA iCAN BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 6 : 1 4 0 0 0 0 1 +o A o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 5 7 no 0 10 0 0 0 0 1 +congestion situation congestion c co con cong BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 7 , 1 10 0 0 0 0 1 +are underload are a ar are are BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 7 . 1 6 0 0 0 0 1 +o Recognizing o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 5 9 , 1 10 0 0 0 0 1 +o Ingress o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 5 9 , 1 10 0 0 0 0 1 +balance, or balance, b ba bal bala BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 9 , 1 7 0 0 0 0 1 +This draft this T Th Thi This BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 10 no 0 10 0 0 0 0 1 +iCAN. iCAN. ican. i iC iCA iCAN BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 10 . 1 0 0 0 0 0 1 +2. iCAN 2. 2 2. 2. 2. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 11 . 1 10 0 0 0 0 1 +2.1. Architecture 2.1. 2 2. 2.1 2.1. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 11 .. 2 10 0 0 0 0 1 +Liu Liu liu L Li Liu Liu BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 0 0 0 0 0 0 5 11 no 0 1 0 0 0 0 0 +Expires January expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 11 , 1 10 0 0 0 0 0 +[Page 3] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 11 [] 2 3 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 5 0 - 1 10 0 0 1 0 1 +iCAN iCAN ican i iC iCA iCAN BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 0 no 0 5 0 0 0 0 1 +July 2019 july J Ju Jul July BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 5 0 no 0 10 0 0 0 0 1 ++-----------+ +-----------+ +-----------+ + +- +-- +--- BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 5 0 ----------- 11 2 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 0 no 0 0 0 0 0 0 1 +| Controller| | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 0 no 0 2 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 0 no 0 0 0 0 0 0 1 ++-----------+ +-----------+ +-----------+ + +- +-- +--- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 5 0 ----------- 11 2 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 0 no 0 0 0 0 0 0 1 +0.Multi-path | 0.multi-path 0 0. 0.M 0.Mu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 0 .- 2 2 0 0 0 0 1 +Planning | planning P Pl Pla Plan BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 0 no 0 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 0 no 0 0 0 0 0 0 1 +v v v v v v v BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 5 0 no 0 0 0 0 0 0 1 ++-----------+ --------Path +-----------+ + +- +-- +--- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 5 0 ----------------------------------------- 41 8 0 0 0 0 1 +Imcoming Flows imcoming I Im Imc Imco BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 5 0 . 1 10 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 0 no 0 0 0 0 0 0 1 +--------------> | --------------> - -- --- ---- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 5 0 -------------- 14 3 0 0 0 0 1 +| --------Path | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 0 -------------------- 20 5 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 0 no 0 0 0 0 0 0 1 ++-/------\--+ <--------------------------> +-/------\--+ + +- +-/ +-/- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 5 0 -/-------------------------------------------- 46 8 0 0 0 0 1 +/ / / / / / / BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 0 / 1 0 0 0 0 0 1 +\ \ \ \ \ \ \ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 0 no 0 0 0 0 0 0 1 +1.Path Quality 1.path 1 1. 1.P 1.Pa BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 0 . 1 4 0 0 0 0 1 +/ 2. / / / / / BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 0 /.() 4 7 0 0 0 0 1 +/ recognition / / / / / BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 0 / 1 2 0 0 0 0 1 +/ / / / / / / BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 0 / 1 0 0 0 0 0 1 +\ \ \ \ \ \ \ BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 0 no 0 0 0 0 0 0 1 +As above as A As As As BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 5 ,: 2 10 0 0 0 0 1 +1. Controller 1. 1 1. 1. 1. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 6 . 1 10 0 0 0 0 1 +-Responsible for -responsible - -R -Re -Res BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 6 - 1 9 0 0 0 0 1 +that could that t th tha that BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 6 /. 2 10 0 0 0 0 1 +-After delivering -after - -A -Af -Aft BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 6 -, 2 10 0 0 0 0 1 +controller would controller c co con cont BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 6 . 1 5 0 0 0 0 1 +2. Ingress 2. 2 2. 2. 2. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 7 .: 2 10 0 0 0 0 1 +-Serves as -serves - -S -Se -Ser BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 7 -"". 4 10 0 0 0 0 1 +-Responsible for -responsible - -R -Re -Res BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 8 -, 2 10 0 0 0 0 1 +which is which w wh whi whic BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 8 no 0 9 0 0 0 0 1 +measurement protocol. measurement m me mea meas BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 8 . 1 3 0 0 0 0 1 +-After getting -after - -A -Af -Aft BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 8 -, 2 10 0 0 0 0 1 +calculate which calculate c ca cal calc BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 8 , 1 9 0 0 0 0 1 +in order in i in in in BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 6 8 no 0 9 0 0 0 0 1 +transport quality transport t tr tra tran BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 8 . 1 7 0 0 0 0 1 +-In order -in - -I -In -In BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 7 10 -, 2 9 0 0 0 0 1 +router needs router r ro rou rout BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 7 10 , 1 10 0 0 0 0 1 +switching the switching s sw swi swit BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 7 10 . 1 8 0 0 0 0 1 +Liu Liu liu L Li Liu Liu BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 0 0 0 0 0 0 7 11 no 0 1 0 0 0 0 0 +Expires January expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 11 , 1 10 0 0 0 0 0 +[Page 4] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 7 11 [] 2 3 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 7 0 - 1 10 0 0 1 0 1 +iCAN iCAN ican i iC iCA iCAN BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 7 0 no 0 5 0 0 0 0 1 +July 2019 july J Ju Jul July BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 7 0 no 0 10 0 0 0 0 1 +3. Egress 3. 3 3. 3. 3. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 0 .: 2 10 0 0 0 0 1 +-Only needs -only - -O -On -Onl BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 7 0 - 1 10 0 0 0 0 1 +path assessment. path p pa pat path BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 0 . 1 2 0 0 0 0 1 +2.2. Key 2.2. 2 2. 2.2 2.2. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 0 .. 2 10 0 0 0 0 1 +2.2.1. Path 2.2.1. 2 2. 2.2 2.2. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 1 ... 3 10 0 0 0 0 1 +o Req-1: o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 7 1 -: 2 10 0 0 0 0 1 +paths. (Note: paths. p pa pat path BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 1 .(:: 4 9 0 0 0 0 1 +[I-D.dang-ippm-congestion].) [I-D.dang-ippm-congestion].) [i-d.dang-ippm-congestion].) [ [I [I- [I-D BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 7 1 [-.--].) 8 4 0 0 0 0 1 +o Req-2: o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 7 2 -:. 3 10 0 0 0 0 1 +iCAN is ican i iC iCA iCAN BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 7 2 -, 2 9 0 0 0 0 1 +needs to needs n ne nee need BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 2 . 1 4 0 0 0 0 1 +o Req-3: o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 7 3 -: 2 10 0 0 0 0 1 +same ingress/egress same s sa sam same BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 3 /.(: 4 9 0 0 0 0 1 +congestion metric congestion c co con cong BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 3 : 1 5 0 0 0 0 1 +[I-D.dang-ippm-multiple-path-measurement].) [I-D.dang-ippm-multiple-path-measurement].) [i-d.dang-ippm-multiple-path-measurement].) [ [I [I- [I-D BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 7 3 [-.----].) 10 6 0 0 0 0 1 +2.2.2. Recognition 2.2.2. 2 2. 2.2 2.2. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 5 ... 3 10 0 0 0 0 1 +o Req-1: o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 7 5 -: 2 10 0 0 0 0 1 +within a within w wi wit with BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 5 . 1 3 0 0 0 0 1 +o Req-2: o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 8 6 -:' 3 10 0 0 0 0 1 +timeslot. timeslot. timeslot. t ti tim time BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 6 . 1 1 0 0 0 0 1 +2.2.3. Flow 2.2.3. 2 2. 2.2 2.2. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 6 ... 3 10 0 0 0 0 1 +o Req-1: o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 8 7 -:. 3 10 0 0 0 0 1 +switching is switching s sw swi swit BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 8 7 . 1 6 0 0 0 0 1 +o Req-2: o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 8 7 -: 2 8 0 0 0 0 1 +artificially create artificially a ar art arti BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 7 . 1 9 0 0 0 0 1 +immediately, then immediately, i im imm imme BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 7 ,, 2 10 0 0 0 0 1 +out-of-order packets out-of-order o ou out out- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 7 -- 2 10 0 0 0 0 1 +paths. paths. paths. p pa pat path BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 7 . 1 1 0 0 0 0 1 +o Req-3: o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 8 9 -: 2 10 0 0 0 0 1 +flows from flows f fl flo flow BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 9 . 1 3 0 0 0 0 1 +o Req-4: o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 8 10 -: 2 10 0 0 0 0 1 +that they that t th tha that BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 10 ', 2 10 0 0 0 0 1 +to avoid to t to to to BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 10 . 1 7 0 0 0 0 1 +Liu Liu liu L Li Liu Liu BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 0 0 0 0 0 0 8 11 no 0 1 0 0 0 0 0 +Expires January expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 11 , 1 10 0 0 0 0 0 +[Page 5] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 11 [] 2 3 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 8 0 - 1 10 0 0 1 0 1 +iCAN iCAN ican i iC iCA iCAN BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 0 no 0 5 0 0 0 0 1 +July 2019 july J Ju Jul July BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 8 0 no 0 10 0 0 0 0 1 +3. Use 3. 3 3. 3. 3. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 0 . 1 10 0 0 0 0 1 +3.1. Network 3.1. 3 3. 3.1 3.1. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 0 .. 2 10 0 0 0 0 1 +Background problem: background B Ba Bac Back BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 0 :. 2 10 0 0 0 0 1 +While some while W Wh Whi Whil BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 1 , 1 9 0 0 0 0 1 +loaded: unbalance loaded: l lo loa load BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 1 :(.. 4 9 0 0 0 0 1 +could not could c co cou coul BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 1 /); 3 10 0 0 0 0 1 +could lows could c co cou coul BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 1 (, 2 9 0 0 0 0 1 +e.g. a e.g. e e. e.g e.g. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 1 .. 2 9 0 0 0 0 1 +traffic, a traffic, t tr tra traf BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 1 ,). 3 7 0 0 0 0 1 +iCAN could ican i iC iCA iCAN BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 3 no 0 10 0 0 0 0 1 +a pair a a a a a BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 1 0 0 0 0 0 9 3 /., 3 9 0 0 0 0 1 +real throughput real r re rea real BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 3 . 1 9 0 0 0 0 1 +3.2. SLA 3.2. 3 3. 3.2 3.2. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 5 .. 2 10 0 0 0 0 1 +Since iCAN since S Si Sin Sinc BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 5 -, 2 9 0 0 0 0 1 +important flows. important i im imp impo BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 5 . 1 9 0 0 0 0 1 +to be to t to to to BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 5 , 1 9 0 0 0 0 1 +paths, and paths, p pa pat path BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 5 , 1 10 0 0 0 0 1 +path. path. path. p pa pat path BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 5 . 1 0 0 0 0 0 1 +(More content (more ( (M (Mo (Mor BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 7 () 2 10 0 0 0 0 1 +3.3. Fine-Granularity 3.3. 3 3. 3.3 3.3. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 7 ..- 3 10 0 0 0 0 1 +Traditional reliability traditional T Tr Tra Trad BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 7 , 1 10 0 0 0 0 1 +link on link l li lin link BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 9 7 ., 2 9 0 0 0 0 1 +could also could c co cou coul BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 7 . 1 6 0 0 0 0 1 +(More content (more ( (M (Mo (Mor BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 8 () 2 10 0 0 0 0 1 +4. Implementation 4. 4 4. 4. 4. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 8 . 1 10 0 0 0 0 1 +4.1. iCAN 4.1. 4 4. 4.1 4.1. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 8 .. 2 10 0 0 0 0 1 +-SR Multiple -sr - -S -SR -SR BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 9 - 1 10 0 0 0 0 1 +For example, for F Fo For For BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 9 , 1 10 0 0 0 0 1 +nodes, and nodes, n no nod node BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 9 ,-- 3 9 0 0 0 0 1 +LSP1/2/3. LSP1/2/3. lsp1/2/3. L LS LSP LSP1 BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 9 //. 3 1 0 0 0 0 1 +The probe the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 10 - 1 10 0 0 0 0 1 +list paths. list l li lis list BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 10 . 1 9 0 0 0 0 1 +the three the t th the the BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 10 no 0 10 0 0 0 0 1 +Liu Liu liu L Li Liu Liu BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 0 0 0 0 0 0 10 11 no 0 1 0 0 0 0 0 +Expires January expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 11 , 1 10 0 0 0 0 0 +[Page 6] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 11 [] 2 3 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 10 0 - 1 10 0 0 1 0 1 +iCAN iCAN ican i iC iCA iCAN BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 0 no 0 5 0 0 0 0 1 +July 2019 july J Ju Jul July BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 10 0 no 0 10 0 0 0 0 1 +SR-lists, and sr-lists, S SR SR- SR-l BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 10 0 -, 2 10 0 0 0 0 1 +congestion to congestion c co con cong BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 0 . 1 8 0 0 0 0 1 +-SR Multiple -sr - -S -SR -SR BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 1 - 1 10 0 0 0 0 1 +In loose in I In In In BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 10 1 , 1 10 0 0 0 0 1 +to probe to t to to to BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 1 ., 2 8 0 0 0 0 1 +operations on operations o op ope oper BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 10 1 no 0 9 0 0 0 0 1 +scenario. scenario. scenario. s sc sce scen BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 1 . 1 1 0 0 0 0 1 +4.2. iCAN 4.2. 4 4. 4.2 4.2. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 3 .. 2 10 0 0 0 0 1 +TBD. TBD. tbd. T TB TBD TBD. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 4 . 1 10 0 0 0 0 1 +4.3. iCAN 4.3. 4 4. 4.3 4.3. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 4 ../- 4 10 0 0 0 0 1 +TBD. TBD. tbd. T TB TBD TBD. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 4 . 1 10 0 0 0 0 1 +5. Standardization 5. 5 5. 5. 5. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 4 . 1 10 0 0 0 0 1 +1. Multi-path 1. 1 1. 1. 1. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 5 .-( 3 10 0 0 0 0 1 +devices) devices) devices) d de dev devi BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 5 ) 1 1 0 0 0 0 1 +2. Path 2. 2 2. 2. 2. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 5 .(), 4 10 0 0 0 0 1 +mostly regarding mostly m mo mos most BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 5 -... 4 8 0 0 0 0 1 +3. Flow 3. 3 3. 3. 3. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 7 .( 2 9 0 0 0 0 1 +devices), mostly devices), d de dev devi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 7 ),-.. 5 10 0 0 0 0 1 +. . . . . . . BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 7 . 1 0 0 0 0 0 1 +(More content (more ( (M (Mo (Mor BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 8 (.) 3 10 0 0 0 0 1 +6. Security 6. 6 6. 6. 6. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 8 . 1 10 0 0 0 0 1 +TBD. TBD. tbd. T TB TBD TBD. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 8 . 1 10 0 0 0 0 1 +7. IANA 7. 7 7. 7. 7. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 9 . 1 10 0 0 0 0 1 +TBD. TBD. tbd. T TB TBD TBD. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 9 . 1 10 0 0 0 0 1 +8. Acknowledgements 8. 8 8. 8. 8. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 9 . 1 10 0 0 0 0 1 +Very valuable very V Ve Ver Very BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 9 , 1 10 0 0 0 0 1 +and Bruno and a an and and BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 9 . 1 2 0 0 0 0 1 +A commercial a A A A A BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 1 0 0 0 0 0 10 10 no 0 10 0 0 0 0 1 +prove the prove p pr pro prov BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 10 . 1 8 0 0 0 0 1 +Liu Liu liu L Li Liu Liu BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 0 0 0 0 0 0 11 11 no 0 1 0 0 0 0 0 +Expires January expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 11 , 1 10 0 0 0 0 0 +[Page 7] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 11 [] 2 3 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 0 - 1 10 0 0 1 0 1 +iCAN iCAN ican i iC iCA iCAN BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 0 no 0 5 0 0 0 0 1 +July 2019 july J Ju Jul July BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 11 0 no 0 10 0 0 0 0 1 +9. References 9. 9 9. 9. 9. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 0 . 1 10 0 0 0 0 1 +9.1. Normative 9.1. 9 9. 9.1 9.1. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 0 .. 2 10 0 0 0 0 1 +[RFC2119] Bradner, [rfc2119] [ [R [RF [RFC BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 1 0 0 0 11 0 [],.," 6 10 0 0 0 0 1 +Requirement Levels", requirement R Re Req Requ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 0 ",,, 4 6 0 0 0 0 1 +DOI 10.17487/RFC2119, doi D DO DOI DOI BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 1 0 0 0 0 0 0 11 0 ./,, 4 5 0 0 0 0 1 +<https://www.rfc-editor.org/info/rfc2119>. <https://www.rfc-editor.org/info/rfc2119>. <https://www.rfc-editor.org/info/rfc2119>. < <h <ht <htt BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 1 0 0 1 11 0 ://.-.//. 9 6 0 0 0 0 1 +[RFC2629] Rose, [rfc2629] [ [R [RF [RFC BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 1 0 0 0 11 3 [],.,"-",, 10 10 0 0 0 0 1 +DOI 10.17487/RFC2629, doi D DO DOI DOI BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 1 0 0 0 0 0 0 11 3 ./,, 4 5 0 0 0 0 1 +<https://www.rfc-editor.org/info/rfc2629>. <https://www.rfc-editor.org/info/rfc2629>. <https://www.rfc-editor.org/info/rfc2629>. < <h <ht <htt BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 1 0 0 1 11 3 ://.-.//. 9 6 0 0 0 0 1 +9.2. Informative 9.2. 9 9. 9.2 9.2. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 5 .. 2 10 0 0 0 0 1 +[I-D.dang-ippm-congestion] [I-D.dang-ippm-congestion] [i-d.dang-ippm-congestion] [ [I [I- [I-D BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 5 [-.--] 6 4 0 0 0 0 1 +Dang, J. dang, D Da Dan Dang BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 5 ,..,"- 6 9 0 0 0 0 1 +IPPM", draft-dang-ippm-congestion-01 ippm", I IP IPP IPPM BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 11 5 ",----(), 9 10 0 0 0 0 1 +March 2019. march M Ma Mar Marc BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 11 5 . 1 2 0 0 0 0 1 +[I-D.dang-ippm-multiple-path-measurement] [I-D.dang-ippm-multiple-path-measurement] [i-d.dang-ippm-multiple-path-measurement] [ [I [I- [I-D BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 7 [-.----] 8 7 0 0 0 0 1 +Dang, J. dang, D Da Dan Dang BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 7 ,..,"- 6 10 0 0 0 0 1 +Protocol for protocol P Pr Pro Prot BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 7 ",----- 7 8 0 0 0 0 1 +measurement-01 (work measurement-01 m me mea meas BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 7 -(),. 5 7 0 0 0 0 1 +Author's Address author's A Au Aut Auth BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 9 ' 1 10 0 0 0 0 1 +Bing Liu bing B Bi Bin Bing BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 0 0 0 0 0 0 11 9 no 0 2 0 0 0 0 1 +Huawei Technologies huawei H Hu Hua Huaw BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 9 no 0 5 0 0 0 0 1 +Q14, Huawei q14, Q Q1 Q14 Q14, BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 9 , 1 5 0 0 0 0 1 +No.156 Beiqing no.156 N No No. No.1 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 9 . 1 5 0 0 0 0 1 +Hai-Dian District, hai-dian H Ha Hai Hai- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 9 -, 2 10 0 0 0 0 1 +P.R. China p.r. P P. P.R P.R. BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 11 9 .. 2 3 0 0 0 0 1 +Email: leo.liubing@huawei.com email: E Em Ema Emai BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 11 :.. 3 10 0 0 0 0 1 +Liu Liu liu L Li Liu Liu BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 0 0 0 0 0 0 11 11 no 0 1 0 0 0 0 0 +Expires January expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 11 , 1 10 0 0 0 0 0 +[Page 8] [page [ [P [Pa [Pag BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 11 [] 2 3 0 0 0 0 0 + diff --git a/grobid-trainer/resources/dataset/segmentation/sdo/ietf/corpus/raw/XP015134323.training.segmentation b/grobid-trainer/resources/dataset/segmentation/sdo/ietf/corpus/raw/XP015134323.training.segmentation new file mode 100644 index 0000000000..ff7d9147e7 --- /dev/null +++ b/grobid-trainer/resources/dataset/segmentation/sdo/ietf/corpus/raw/XP015134323.training.segmentation @@ -0,0 +1,841 @@ +server date server s se ser serv BLOCKSTART PAGESTART NEWFONT HIGHERFONT 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 0 ; 1 10 0 0 0 0 0 +Benchmarking Working benchmarking B Be Ben Benc BLOCKSTART PAGEIN NEWFONT HIGHERFONT 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 no 0 10 0 0 0 0 1 +M. Konstantynowicz, m. M M. M. M. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 .,. 3 7 0 0 0 0 1 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 - 1 4 0 0 0 0 1 +V. Polak, v. V V. V. V. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 .,. 3 4 0 0 0 0 1 +Intended status: intended I In Int Inte BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 : 1 10 0 0 0 0 1 +Cisco Systems cisco C Ci Cis Cisc BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 0 0 0 0 0 0 0 0 no 0 4 0 0 0 0 1 +Expires: January expires: E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 :, 2 8 0 0 0 0 1 +July 08, july J Ju Jul July BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 0 0 , 1 4 0 0 0 0 1 +Probabilistic Loss probabilistic P Pr Pro Prob BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 1 () 2 10 0 0 0 0 1 +draft-vpolak-bmwg-plrsearch-02 draft-vpolak-bmwg-plrsearch-02 draft-vpolak-bmwg-plrsearch-02 d dr dra draf BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 1 ---- 4 4 0 0 0 0 1 +Abstract Abstract abstract A Ab Abs Abst BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 1 no 0 10 0 0 0 0 1 +This document this T Th Thi This BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 1 no 0 9 0 0 0 0 1 +described in described d de des desc BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 1 []( 3 9 0 0 0 0 1 +Function Virtualization) function F Fu Fun Func BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 1 ), 2 10 0 0 0 0 1 +sometimes referred sometimes s so som some BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 1 "". 3 9 0 0 0 0 1 +approach proposed approach a ap app appr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 1 no 0 9 0 0 0 0 1 +probabilistic in probabilistic p pr pro prob BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 1 ,. 2 6 0 0 0 0 1 +Status of status S St Sta Stat BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 3 no 0 10 0 0 0 0 1 +This Internet-Draft this T Th Thi This BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 4 - 1 10 0 0 0 0 1 +provisions of provisions p pr pro prov BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 4 . 1 5 0 0 0 0 1 +Internet-Drafts are internet-drafts I In Int Inte BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 4 - 1 9 0 0 0 0 1 +Task Force task T Ta Tas Task BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 4 (). 3 9 0 0 0 0 1 +working documents working w wo wor work BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 4 -.- 3 10 0 0 0 0 1 +Drafts is drafts D Dr Dra Draf BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 4 ://..///. 9 8 0 0 0 0 1 +Internet-Drafts are internet-drafts I In Int Inte BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 6 - 1 10 0 0 0 0 1 +and may and a an and and BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 6 ,, 2 9 0 0 0 0 1 +time. It time. t ti tim time BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 6 .- 2 8 0 0 0 0 1 +material or material m ma mat mate BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 6 "." 3 8 0 0 0 0 1 +This Internet-Draft this T Th Thi This BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 7 -,. 3 10 0 0 0 0 1 +Copyright Notice copyright C Co Cop Copy BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 8 no 0 10 0 0 0 0 1 +Copyright (c) copyright C Co Cop Copy BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 8 () 2 10 0 0 0 0 1 +document authors. document d do doc docu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 8 .. 2 6 0 0 0 0 1 +This document this T Th Thi This BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 9 ' 1 8 0 0 0 0 1 +Provisions Relating provisions P Pr Pro Prov BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 9 no 0 5 0 0 0 0 1 +(https://trustee.ietf.org/license-info) in (https://trustee.ietf.org/license-info) ( (h (ht (htt BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 1 0 9 (://../-) 9 9 0 0 0 0 1 +publication of publication p pu pub publ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 9 . 1 8 0 0 0 0 1 +carefully, as carefully, c ca car care BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 9 , 1 10 0 0 0 0 1 +to this to t to to to BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 9 . 1 9 0 0 0 0 1 +include Simplified include i in inc incl BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 9 . 1 9 0 0 0 0 1 +Konstantynowicz & konstantynowicz K Ko Kon Kons BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 11 , 1 10 0 0 1 1 0 +[Page 1] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 11 [] 2 1 0 0 0 0 0 +Internet-DraProbabilistic Loss internet-draprobabilistic I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 - 1 10 0 0 1 1 1 +the Trust the t th the the BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 no 0 10 0 0 0 0 1 +described in described d de des desc BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 . 1 6 0 0 0 0 1 +Table of table T Ta Tab Tabl BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 no 0 10 0 0 0 0 1 +1. Motivation 1. 1 1. 1. 1. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 .......................... 26 9 0 0 0 0 1 +3 3 3 3 3 3 3 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 0 0 no 0 0 0 0 0 0 1 +2. Relation 2. 2 2. 2. 2. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ...................... 22 9 0 0 0 0 1 +4 4 4 4 4 4 4 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 0 0 no 0 0 0 0 0 0 1 +3. Terms 3. 3 3. 3. 3. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ..................... 21 9 0 0 0 0 1 +4 4 4 4 4 4 4 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 0 0 no 0 0 0 0 0 0 1 +3.1. Device 3.1. 3 3. 3.1 3.1. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ...................... 22 9 0 0 0 0 1 +4 4 4 4 4 4 4 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 0 0 no 0 0 0 0 0 0 1 +3.2. System 3.2. 3 3. 3.2 3.2. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ...................... 22 9 0 0 0 0 1 +4 4 4 4 4 4 4 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 0 0 no 0 0 0 0 0 0 1 +3.3. SUT 3.3. 3 3. 3.3 3.3. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ...................... 22 9 0 0 0 0 1 +4 4 4 4 4 4 4 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 0 0 no 0 0 0 0 0 0 1 +3.4. SUT 3.4. 3 3. 3.4 3.4. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 .......................... 26 9 0 0 0 0 1 +4 4 4 4 4 4 4 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 0 0 no 0 0 0 0 0 0 1 +3.5. Network 3.5. 3 3. 3.5 3.5. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ....................... 23 9 0 0 0 0 1 +5 5 5 5 5 5 5 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 0 0 no 0 0 0 0 0 0 1 +3.6. Packet 3.6. 3 3. 3.6 3.6. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ........................... 27 9 0 0 0 0 1 +5 5 5 5 5 5 5 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 0 0 no 0 0 0 0 0 0 1 +3.6.1. Packet 3.6.1. 3 3. 3.6 3.6. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ...................... 22 8 0 0 0 0 1 +5 5 5 5 5 5 5 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 0 0 no 0 0 0 0 0 0 1 +3.6.2. Packet 3.6.2. 3 3. 3.6 3.6. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ...................... 22 9 0 0 0 0 1 +5 5 5 5 5 5 5 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 0 0 no 0 0 0 0 0 0 1 +3.6.3. Packet 3.6.3. 3 3. 3.6 3.6. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ........................ 24 9 0 0 0 0 1 +5 5 5 5 5 5 5 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 0 0 no 0 0 0 0 0 0 1 +3.6.4. Other 3.6.4. 3 3. 3.6 3.6. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ....................... 23 9 0 0 0 0 1 +5 5 5 5 5 5 5 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 0 0 no 0 0 0 0 0 0 1 +3.7. Traffic 3.7. 3 3. 3.7 3.7. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ....................... 23 9 0 0 0 0 1 +6 6 6 6 6 6 6 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 0 0 no 0 0 0 0 0 0 1 +3.8. Traffic 3.8. 3 3. 3.8 3.8. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ...................... 22 9 0 0 0 0 1 +6 6 6 6 6 6 6 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 0 0 no 0 0 0 0 0 0 1 +3.9. Offered 3.9. 3 3. 3.9 3.9. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ........................ 24 9 0 0 0 0 1 +6 6 6 6 6 6 6 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 0 0 no 0 0 0 0 0 0 1 +3.10. Trial 3.10. 3 3. 3.1 3.10 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ...................... 22 9 0 0 0 0 1 +6 6 6 6 6 6 6 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 0 0 no 0 0 0 0 0 0 1 +3.11. Trial 3.11. 3 3. 3.1 3.11 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ....................... 23 9 0 0 0 0 1 +7 7 7 7 7 7 7 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 0 0 no 0 0 0 0 0 0 1 +3.12. Packet 3.12. 3 3. 3.1 3.12 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ......................... 25 9 0 0 0 0 1 +7 7 7 7 7 7 7 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 0 0 no 0 0 0 0 0 0 1 +3.12.1. Loss 3.12.1. 3 3. 3.1 3.12 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ........................ 24 9 0 0 0 0 1 +7 7 7 7 7 7 7 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 0 0 no 0 0 0 0 0 0 1 +3.12.2. Loss 3.12.2. 3 3. 3.1 3.12 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ........................ 24 8 0 0 0 0 1 +7 7 7 7 7 7 7 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 0 0 no 0 0 0 0 0 0 1 +3.12.3. Loss 3.12.3. 3 3. 3.1 3.12 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ........................ 24 9 0 0 0 0 1 +7 7 7 7 7 7 7 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 0 0 no 0 0 0 0 0 0 1 +3.13. Trial 3.13. 3 3. 3.1 3.13 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ............... 15 9 0 0 0 0 1 +7 7 7 7 7 7 7 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 0 0 no 0 0 0 0 0 0 1 +3.14. Trial 3.14. 3 3. 3.1 3.14 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ............ 12 9 0 0 0 0 1 +8 8 8 8 8 8 8 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 0 0 no 0 0 0 0 0 0 1 +3.15. Average 3.15. 3 3. 3.1 3.15 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ..................... 21 9 0 0 0 0 1 +8 8 8 8 8 8 8 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 0 0 no 0 0 0 0 0 0 1 +3.16. Duration 3.16. 3 3. 3.1 3.16 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ................. 17 9 0 0 0 0 1 +8 8 8 8 8 8 8 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 0 0 no 0 0 0 0 0 0 1 +3.17. Load 3.17. 3 3. 3.1 3.17 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ........................ 24 9 0 0 0 0 1 +9 9 9 9 9 9 9 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 0 0 no 0 0 0 0 0 0 1 +3.17.1. Zero 3.17.1. 3 3. 3.1 3.17 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ..................... 21 9 0 0 0 0 1 +9 9 9 9 9 9 9 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 0 0 no 0 0 0 0 0 0 1 +3.17.2. Guaranteed 3.17.2. 3 3. 3.1 3.17 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 .................. 18 9 0 0 0 0 1 +9 9 9 9 9 9 9 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 0 0 no 0 0 0 0 0 0 1 +3.17.3. Non-Deterministic 3.17.3. 3 3. 3.1 3.17 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ...-.............. 18 9 0 0 0 0 1 +9 9 9 9 9 9 9 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 0 0 no 0 0 0 0 0 0 1 +3.17.4. Normal 3.17.4. 3 3. 3.1 3.17 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 .................. 18 9 0 0 0 0 1 +9 9 9 9 9 9 9 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 0 0 no 0 0 0 0 0 0 1 +3.18. Deterministic 3.18. 3 3. 3.1 3.18 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 .................... 20 9 0 0 0 0 1 +3.19. Througphput 3.19. 3 3. 3.1 3.19 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ......................... 25 10 0 0 0 0 1 +3.20. Deterministic 3.20. 3 3. 3.2 3.20 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 .................... 20 9 0 0 0 0 1 +3.21. Probabilistic 3.21. 3 3. 3.2 3.21 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 .................... 20 9 0 0 0 0 1 +3.22. Loss 3.22. 3 3. 3.2 3.22 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ..................... 21 10 0 0 0 0 1 +3.23. Target 3.23. 3 3. 3.2 3.23 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ...................... 22 10 0 0 0 0 1 +3.24. Critical 3.24. 3 3. 3.2 3.24 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ........................ 24 10 0 0 0 0 1 +3.25. Critical 3.25. 3 3. 3.2 3.25 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ................... 19 9 0 0 0 0 1 +3.26. Fitting 3.26. 3 3. 3.2 3.26 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ...................... 22 9 0 0 0 0 1 +3.27. Shape 3.27. 3 3. 3.2 3.27 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 .................. 18 10 0 0 0 0 1 +3.28. Parameter 3.28. 3 3. 3.2 3.28 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ....................... 23 10 0 0 0 0 1 +4. Abstract 4. 4 4. 4. 4. BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ...................... 22 10 0 0 0 0 1 +Konstantynowicz & konstantynowicz K Ko Kon Kons BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 2 11 , 1 10 0 0 1 0 0 +[Page 2] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 11 [] 2 1 0 0 0 0 0 +Internet-DraProbabilistic Loss internet-draprobabilistic I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 2 0 - 1 10 0 0 1 0 1 +4.1. High 4.1. 4 4. 4.1 4.1. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 0 ................... 19 9 0 0 0 0 1 +4.2. Main 4.2. 4 4. 4.2 4.2. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 0 ......................... 25 9 0 0 0 0 1 +4.2.1. Trial 4.2.1. 4 4. 4.2 4.2. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 0 ...................... 22 9 0 0 0 0 1 +4.2.2. Target 4.2.2. 4 4. 4.2 4.2. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 0 ..................... 21 9 0 0 0 0 1 +4.3. PLRsearch 4.3. 4 4. 4.3 4.3. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 0 .................. 18 9 0 0 0 0 1 +4.3.1. Bayesian 4.3.1. 4 4. 4.3 4.3. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 0 .................... 20 9 0 0 0 0 1 +4.3.2. Iterative 4.3.2. 4 4. 4.3 4.3. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 0 ..................... 21 9 0 0 0 0 1 +4.3.3. Fitting 4.3.3. 4 4. 4.3 4.3. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 0 ..................... 21 9 0 0 0 0 1 +4.3.4. Measurement 4.3.4. 4 4. 4.3 4.3. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 0 .................... 20 9 0 0 0 0 1 +4.3.5. Fitting 4.3.5. 4 4. 4.3 4.3. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 0 ........ 8 9 0 0 0 0 1 +4.3.6. Exit 4.3.6. 4 4. 4.3 4.3. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 0 ...................... 22 9 0 0 0 0 1 +4.3.7. Integration 4.3.7. 4 4. 4.3 4.3. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 0 ........................ 24 9 0 0 0 0 1 +4.3.8. Optimizations 4.3.8. 4 4. 4.3 4.3. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 0 ....................... 23 9 0 0 0 0 1 +4.3.9. Offered 4.3.9. 4 4. 4.3 4.3. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 0 .................. 18 9 0 0 0 0 1 +4.3.10. Trend 4.3.10. 4 4. 4.3 4.3. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 0 ...................... 22 9 0 0 0 0 1 +5. Sample 5. 5 5. 5. 5. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 0 .:.......... 12 10 0 0 0 0 1 +5.1. Measurement 5.1. 5 5. 5.1 5.1. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 0 ...................... 22 9 0 0 0 0 1 +5.2. Rounding 5.2. 5 5. 5.2 5.2. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 0 ............... 15 9 0 0 0 0 1 +5.3. Fitting 5.3. 5 5. 5.3 5.3. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 0 ...................... 22 9 0 0 0 0 1 +5.3.1. Stretch 5.3.1. 5 5. 5.3 5.3. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 0 ..................... 21 9 0 0 0 0 1 +5.3.2. Erf 5.3.2. 5 5. 5.3 5.3. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 0 ....................... 23 9 0 0 0 0 1 +5.4. Prior 5.4. 5 5. 5.4 5.4. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 0 ..................... 21 9 0 0 0 0 1 +5.5. Integrator 5.5. 5 5. 5.5 5.5. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 0 ......................... 25 9 0 0 0 0 1 +5.6. Offered 5.6. 5 5. 5.6 5.6. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 0 ................... 19 9 0 0 0 0 1 +6. IANA 6. 6 6. 6. 6. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 0 ...................... 22 10 0 0 0 0 1 +7. Security 7. 7 7. 7. 7. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 0 .................... 20 10 0 0 0 0 1 +8. Acknowledgements 8. 8 8. 8. 8. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 0 ....................... 23 9 0 0 0 0 1 +9. References 9. 9 9. 9. 9. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 0 .......................... 26 9 0 0 0 0 1 +9.1. Normative 9.1. 9 9. 9.1 9.1. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 0 .................... 20 9 0 0 0 0 1 +9.2. Informative 9.2. 9 9. 9.2 9.2. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 0 ................... 19 9 0 0 0 0 1 +Authors' Addresses authors' A Au Aut Auth BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 2 0 '....................... 24 10 0 0 0 0 1 +1. Motivation 1. 1 1. 1. 1. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 3 10 . 1 10 0 0 0 0 1 +Network providers network N Ne Net Netw BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 3 10 . 1 10 0 0 0 0 1 +[RFC2544] assumes [rfc2544] [ [R [RF [RFC BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 1 0 0 0 3 10 [] 2 10 0 0 0 0 1 +offered load. offered o of off offe BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 10 .. 2 10 0 0 0 0 1 +This makes this T Th Thi This BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 10 ( 1 9 0 0 0 0 1 +[RFC2544] and [rfc2544] [ [R [RF [RFC BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 1 0 0 0 3 10 [][----] 8 9 0 0 0 0 1 +trial) to trial) t tr tri tria BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 10 ), 2 9 0 0 0 0 1 +standard deviation, standard s st sta stan BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 10 ," 2 8 0 0 0 0 1 +throughput" actually throughput" t th thr thro BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 10 ". 2 3 0 0 0 0 1 +We need we W We We We BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 11 , 1 10 0 0 0 0 1 +account. account. account. a ac acc acco BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 11 . 1 1 0 0 0 0 1 +Konstantynowicz & konstantynowicz K Ko Kon Kons BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 3 11 , 1 10 0 0 1 0 0 +[Page 3] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 11 [] 2 1 0 0 0 0 0 +Internet-DraProbabilistic Loss internet-draprobabilistic I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 3 0 - 1 10 0 0 1 0 1 +2. Relation 2. 2 2. 2. 2. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 3 0 . 1 10 0 0 0 0 1 +The aim the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 0 [] 2 9 0 0 0 0 1 +suitable for suitable s su sui suit BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 0 no 0 10 0 0 0 0 1 +NFV systems. nfv N NF NFV NFV BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 3 0 . 1 1 0 0 0 0 1 +3. Terms 3. 3 3. 3. 3. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 3 1 . 1 10 0 0 0 0 1 +3.1. Device 3.1. 3 3. 3.1 3.1. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 3 1 .. 2 10 0 0 0 0 1 +In software in I In In In BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 3 2 ,"" 3 10 0 0 0 0 1 +tasked with tasked t ta tas task BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 2 . 1 9 0 0 0 0 1 +software components software s so sof soft BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 2 (). 3 9 0 0 0 0 1 +possible to possible p po pos poss BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 2 , 1 9 0 0 0 0 1 +and hardware and a an and and BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 2 . 1 6 0 0 0 0 1 +For purposes for F Fo For For BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 4 , 1 9 0 0 0 0 1 +components is components c co com comp BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 4 ""(). 5 9 0 0 0 0 1 +of the of o of of of BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 4 no 0 9 0 0 0 0 1 +[RFC2544] methods, [rfc2544] [ [R [RF [RFC BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 1 0 0 0 3 4 [],[]. 6 10 0 0 0 0 1 +Device under device D De Dev Devi BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 6 ()- 3 9 0 0 0 0 1 +results using results r re res resu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 3 6 , 1 10 0 0 0 0 1 +this document. this t th thi this BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 6 . 1 2 0 0 0 0 1 +3.2. System 3.2. 3 3. 3.2 3.2. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 3 7 .. 2 10 0 0 0 0 1 +System under system S Sy Sys Syst BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 7 () 2 9 0 0 0 0 1 +performance is performance p pe per perf BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 7 . 1 9 0 0 0 0 1 +other parts, other o ot oth othe BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 7 ,, 2 10 0 0 0 0 1 +affecting the affecting a af aff affe BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 7 . 1 5 0 0 0 0 1 +3.3. SUT 3.3. 3 3. 3.3 3.3. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 3 8 .. 2 10 0 0 0 0 1 +Usually, system usually, U Us Usu Usua BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 9 ,, 2 10 0 0 0 0 1 +its performance. its i it its its BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 9 . 1 8 0 0 0 0 1 +configuration has configuration c co con conf BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 9 . 1 4 0 0 0 0 1 +3.4. SUT 3.4. 3 3. 3.4 3.4. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 3 10 .. 2 10 0 0 0 0 1 +Similarly to similarly S Si Sim Simi BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 10 [], 3 10 0 0 0 0 1 +been updated been b be bee been BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 10 , 1 9 0 0 0 0 1 +before the before b be bef befo BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 10 (). 3 7 0 0 0 0 1 +Konstantynowicz & konstantynowicz K Ko Kon Kons BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 3 11 , 1 10 0 0 1 0 0 +[Page 4] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 11 [] 2 1 0 0 0 0 0 +Internet-DraProbabilistic Loss internet-draprobabilistic I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 3 0 - 1 10 0 0 1 0 1 +3.5. Network 3.5. 3 3. 3.5 3.5. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 3 0 .. 2 10 0 0 0 0 1 +Network traffic network N Ne Net Netw BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 3 0 no 0 9 0 0 0 0 1 +and the and a an and and BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 0 (), 3 9 0 0 0 0 1 +information about information i in inf info BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 0 . 1 9 0 0 0 0 1 +applicable only applicable a ap app appl BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 0 . 1 10 0 0 0 0 1 +3.6. Packet 3.6. 3 3. 3.6 3.6. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 3 2 .. 2 10 0 0 0 0 1 +Unit of unit U Un Uni Unit BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 2 no 0 10 0 0 0 0 1 +test. Term test. t te tes test BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 2 ."" 3 9 0 0 0 0 1 +frames. frames. frames. f fr fra fram BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 2 . 1 1 0 0 0 0 1 +3.6.1. Packet 3.6.1. 3 3. 3.6 3.6. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 3 3 ... 3 10 0 0 0 0 1 +Packet can packet P Pa Pac Pack BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 3 , 1 10 0 0 0 0 1 +to the to t to to to BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 3 . 1 3 0 0 0 0 1 +Each offered each E Ea Eac Each BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 4 no 0 10 0 0 0 0 1 +time. time. time. t ti tim time BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 4 . 1 0 0 0 0 0 1 +3.6.2. Packet 3.6.2. 3 3. 3.6 3.6. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 3 5 ... 3 10 0 0 0 0 1 +Packet can packet P Pa Pac Pack BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 5 , 1 10 0 0 0 0 1 +has been has h ha has has BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 5 ., 2 9 0 0 0 0 1 +system under system s sy sys syst BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 5 . 1 5 0 0 0 0 1 +It is it I It It It BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 6 no 0 10 0 0 0 0 1 +packet, so packet, p pa pac pack BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 6 , 1 9 0 0 0 0 1 +number of number n nu num numb BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 6 . 1 3 0 0 0 0 1 +3.6.3. Packet 3.6.3. 3 3. 3.6 3.6. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 4 7 ... 3 10 0 0 0 0 1 +Packet can packet P Pa Pac Pack BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 7 , 1 10 0 0 0 0 1 +manner. manner. manner. m ma man mann BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 7 . 1 1 0 0 0 0 1 +It is it I It It It BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 8 no 0 10 0 0 0 0 1 +packet, so packet, p pa pac pack BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 8 , 1 9 0 0 0 0 1 +number of number n nu num numb BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 8 . 1 4 0 0 0 0 1 +Usually, the usually, U Us Usu Usua BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 9 , 1 10 0 0 0 0 1 +packets offered, packets p pa pac pack BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 9 ,. 2 8 0 0 0 0 1 +3.6.4. Other 3.6.4. 3 3. 3.6 3.6. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 4 10 ... 3 10 0 0 0 0 1 +PLRsearch is plrsearch P PL PLR PLRs BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 4 10 no 0 9 0 0 0 0 1 +networking (duplicated, networking n ne net netw BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 10 (,,), 5 10 0 0 0 0 1 +Konstantynowicz & konstantynowicz K Ko Kon Kons BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 4 11 , 1 10 0 0 1 0 0 +[Page 5] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 11 [] 2 1 0 0 0 0 0 +Internet-DraProbabilistic Loss internet-draprobabilistic I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 4 0 - 1 10 0 0 1 0 1 +test specification test t te tes test BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 0 no 0 10 0 0 0 0 1 +three categories. three t th thr thre BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 0 . 1 2 0 0 0 0 1 +3.7. Traffic 3.7. 3 3. 3.7 3.7. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 4 0 .. 2 10 0 0 0 0 1 +Usually, the usually, U Us Usu Usua BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 1 ,"" 3 10 0 0 0 0 1 +of a of o of of of BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 1 (),"" 5 9 0 0 0 0 1 +network traffic network n ne net netw BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 4 1 . 1 9 0 0 0 0 1 +Also, some also, A Al Als Also BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 2 ,"" 3 10 0 0 0 0 1 +offered to offered o of off offe BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 2 . 1 4 0 0 0 0 1 +All such all A Al All All BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 3 ( 1 10 0 0 0 0 1 +measurements) are measurements) m me mea meas BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 3 ). 2 6 0 0 0 0 1 +Similarly to similarly S Si Sim Simi BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 3 , 1 10 0 0 0 0 1 +only one only o on onl only BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 3 . 1 9 0 0 0 0 1 +3.8. Traffic 3.8. 3 3. 3.8 3.8. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 4 4 .. 2 10 0 0 0 0 1 +Traffic generator traffic T Tr Tra Traf BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 4 , 1 9 0 0 0 0 1 +the system the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 4 , 1 9 0 0 0 0 1 +highly predictable highly h hi hig high BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 4 ( 1 9 0 0 0 0 1 +known), and known), k kn kno know BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 4 ),( 3 10 0 0 0 0 1 +distinguish lost distinguish d di dis dist BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 4 ). 2 8 0 0 0 0 1 +Traffic generator traffic T Tr Tra Traf BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 6 no 0 10 0 0 0 0 1 +profile, and profile, p pr pro prof BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 6 ,. 2 9 0 0 0 0 1 +Criteria defining criteria C Cr Cri Crit BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 7 no 0 10 0 0 0 0 1 +test specification test t te tes test BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 7 . 1 4 0 0 0 0 1 +3.9. Offered 3.9. 3 3. 3.9 3.9. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 4 8 .. 2 10 0 0 0 0 1 +Offered load offered O Of Off Offe BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 8 () 2 10 0 0 0 0 1 +network traffic network n ne net netw BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 4 8 , 1 9 0 0 0 0 1 +constant for constant c co con cons BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 8 . 1 6 0 0 0 0 1 +3.10. Trial 3.10. 3 3. 3.1 3.10 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 4 9 .. 2 10 0 0 0 0 1 +Trial measurement trial T Tr Tri Tria BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 4 9 () 2 10 0 0 0 0 1 +under test under u un und unde BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 9 , 1 9 0 0 0 0 1 +particular duration. particular p pa par part BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 9 . 1 3 0 0 0 0 1 +After that, after A Af Aft Afte BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 10 ,, 2 10 0 0 0 0 1 +traffic generator traffic t tr tra traf BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 10 . 1 8 0 0 0 0 1 +Konstantynowicz & konstantynowicz K Ko Kon Kons BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 4 11 , 1 10 0 0 1 0 0 +[Page 6] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 11 [] 2 1 0 0 0 0 0 +Internet-DraProbabilistic Loss internet-draprobabilistic I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 4 0 - 1 10 0 0 1 0 1 +After that, after A Af Aft Afte BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 0 ,( 2 9 0 0 0 0 1 +offered load offered o of off offe BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 0 ). 2 9 0 0 0 0 1 +generator should generator g ge gen gene BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 0 no 0 10 0 0 0 0 1 +previous trial previous p pr pre prev BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 0 . 1 4 0 0 0 0 1 +3.11. Trial 3.11. 3 3. 3.1 3.11 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 4 1 .. 2 10 0 0 0 0 1 +Duration for duration D Du Dur Dura BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 1 no 0 10 0 0 0 0 1 +constant offered constant c co con cons BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 1 . 1 3 0 0 0 0 1 +In theory, in I In In In BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 4 2 , 1 10 0 0 0 0 1 +duration predict duration d du dur dura BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 2 , 1 9 0 0 0 0 1 +traffic generator traffic t tr tra traf BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 2 no 0 9 0 0 0 0 1 +precisely enough precisely p pr pre prec BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 2 ., 2 9 0 0 0 0 1 +not change not n no not not BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 2 . 1 7 0 0 0 0 1 +3.12. Packet 3.12. 3 3. 3.1 3.12 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 4 4 .. 2 10 0 0 0 0 1 +Packet loss packet P Pa Pac Pack BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 4 . 1 10 0 0 0 0 1 +It can it I It It It BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 5 ,. 2 10 0 0 0 0 1 +(or non-zero) (or ( (o (or (or BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 5 (-)(- 5 9 0 0 0 0 1 +zero, respecively). zero, z ze zer zero BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 5 ,). 3 2 0 0 0 0 1 +3.12.1. Loss 3.12.1. 3 3. 3.1 3.12 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 4 6 ... 3 10 0 0 0 0 1 +Number of number N Nu Num Numb BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 6 () 2 9 0 0 0 0 1 +by the by b by by by BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 6 . 1 10 0 0 0 0 1 +in packets. in i in in in BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 4 6 . 1 1 0 0 0 0 1 +3.12.2. Loss 3.12.2. 3 3. 3.1 3.12 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 4 7 ... 3 10 0 0 0 0 1 +Loss rate loss L Lo Los Loss BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 8 . 1 10 0 0 0 0 1 +Measured in measured M Me Mea Meas BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 8 . 1 5 0 0 0 0 1 +3.12.3. Loss 3.12.3. 3 3. 3.1 3.12 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 4 8 ... 3 10 0 0 0 0 1 +Loss ratio loss L Lo Los Loss BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 9 no 0 10 0 0 0 0 1 +offered. Measured offered. o of off offe BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 9 .() 3 10 0 0 0 0 1 +zero or zero z ze zer zero BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 9 (). 3 3 0 0 0 0 1 +3.13. Trial 3.13. 3 3. 3.1 3.13 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 10 .. 2 10 0 0 0 0 1 +Trial order trial T Tr Tri Tria BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 5 10 ,( 2 9 0 0 0 0 1 +just assumed) just j ju jus just BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 10 ) 1 10 0 0 0 0 1 +order independence. order o or ord orde BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 10 . 1 2 0 0 0 0 1 +Konstantynowicz & konstantynowicz K Ko Kon Kons BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 5 11 , 1 10 0 0 1 0 0 +[Page 7] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 11 [] 2 1 0 0 0 0 0 +Internet-DraProbabilistic Loss internet-draprobabilistic I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 5 0 - 1 10 0 0 1 0 1 +That means that T Th Tha That BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 0 no 0 8 0 0 0 0 1 +performed, the performed, p pe per perf BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 0 , 1 9 0 0 0 0 1 +the same, the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 0 , 1 10 0 0 0 0 1 +whe performing whe w wh whe whe BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 0 . 1 8 0 0 0 0 1 +PLRsearch assumes plrsearch P PL PLR PLRs BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 5 1 . 1 10 0 0 0 0 1 +In practice, in I In In In BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 5 2 , 1 9 0 0 0 0 1 +independent, but independent, i in ind inde BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 2 , 1 10 0 0 0 0 1 +into account. into i in int into BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 2 . 1 2 0 0 0 0 1 +3.14. Trial 3.14. 3 3. 3.1 3.14 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 3 .. 2 10 0 0 0 0 1 +When a when W Wh Whe When BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 3 no 0 10 0 0 0 0 1 +measurements of measurements m me mea meas BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 3 , 1 9 0 0 0 0 1 +Numbers implies numbers N Nu Num Numb BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 5 3 no 0 10 0 0 0 0 1 +a specific a a a a a BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 1 0 0 0 0 0 5 3 . 1 9 0 0 0 0 1 +This probability this T Th Thi This BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 4 no 0 9 0 0 0 0 1 +distribution, and distribution, d di dis dist BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 4 , 1 9 0 0 0 0 1 +it. That it. i it it. it. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 4 .,, 3 9 0 0 0 0 1 +the chosen the t th the the BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 4 ,. 2 10 0 0 0 0 1 +As the as A As As As BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 6 , 1 10 0 0 0 0 1 +distribution does distribution d di dis dist BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 6 no 0 9 0 0 0 0 1 +measurements, of measurements, m me mea meas BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 6 ,(). 4 8 0 0 0 0 1 +3.15. Average 3.15. 3 3. 3.1 3.15 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 7 .. 2 10 0 0 0 0 1 +Probability distribution probability P Pr Pro Prob BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 7 () 2 9 0 0 0 0 1 +computation of computation c co com comp BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 7 - 1 10 0 0 0 0 1 +on the on o on on on BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 7 (). 3 8 0 0 0 0 1 +Average loss average A Av Ave Aver BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 8 no 0 10 0 0 0 0 1 +given trial given g gi giv give BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 8 . 1 6 0 0 0 0 1 +3.16. Duration 3.16. 3 3. 3.1 3.16 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 9 .. 2 10 0 0 0 0 1 +Duration independent duration D Du Dur Dura BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 9 , 1 9 0 0 0 0 1 +whose trial whose w wh who whos BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 9 ( 1 9 0 0 0 0 1 +assumed) to assumed) a as ass assu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 9 ). 2 10 0 0 0 0 1 +definition of definition d de def defi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 9 no 0 9 0 0 0 0 1 +theoretical. theoretical. theoretical. t th the theo BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 9 . 1 1 0 0 0 0 1 +The only the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 11 no 0 10 0 0 0 0 1 +trial duration. trial t tr tri tria BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 5 11 . 1 2 0 0 0 0 1 +Konstantynowicz & konstantynowicz K Ko Kon Kons BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 5 11 , 1 10 0 0 1 0 0 +[Page 8] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 11 [] 2 1 0 0 0 0 0 +Internet-DraProbabilistic Loss internet-draprobabilistic I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 5 0 - 1 10 0 0 1 0 1 +In theory, in I In In In BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 5 0 , 1 10 0 0 0 0 1 +distribution to distribution d di dis dist BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 0 ., 2 9 0 0 0 0 1 +distributions are distributions d di dis dist BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 0 . 1 4 0 0 0 0 1 +PLRsearch assumes plrsearch P PL PLR PLRs BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 5 1 , 1 10 0 0 0 0 1 +least for least l le lea leas BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 1 no 0 9 0 0 0 0 1 +initiated by initiated i in ini init BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 1 . 1 3 0 0 0 0 1 +3.17. Load 3.17. 3 3. 3.1 3.17 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 2 .. 2 10 0 0 0 0 1 +For a for F Fo For For BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 2 , 1 10 0 0 0 0 1 +distribution depends distribution d di dis dist BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 2 . 1 7 0 0 0 0 1 +It is it I It It It BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 3 no 0 10 0 0 0 0 1 +trial results. trial t tr tri tria BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 5 3 . 1 2 0 0 0 0 1 +3.17.1. Zero 3.17.1. 3 3. 3.1 3.17 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 3 ... 3 10 0 0 0 0 1 +A particular a A A A A BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 1 0 0 0 0 0 5 4 no 0 9 0 0 0 0 1 +region, if region, r re reg regi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 4 ,- 2 10 0 0 0 0 1 +result is result r re res resu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 4 , 1 9 0 0 0 0 1 +from zero. from f fr fro from BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 4 . 1 1 0 0 0 0 1 +3.17.2. Guaranteed 3.17.2. 3 3. 3.1 3.17 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 5 ... 3 10 0 0 0 0 1 +A particular a A A A A BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 1 0 0 0 0 0 5 5 no 0 9 0 0 0 0 1 +region, if region, r re reg regi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 5 , 1 9 0 0 0 0 1 +result (for result r re res resu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 5 (-), 4 10 0 0 0 0 1 +or at or o or or or BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 5 . 1 7 0 0 0 0 1 +3.17.3. Non-Deterministic 3.17.3. 3 3. 3.1 3.17 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 7 ...- 4 10 0 0 0 0 1 +A particular a A A A A BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 1 0 0 0 0 0 5 8 - 1 8 0 0 0 0 1 +deterministic region, deterministic d de det dete BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 8 , 1 9 0 0 0 0 1 +measurement result measurement m me mea meas BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 8 (-) 3 10 0 0 0 0 1 +practically distinguishable practically p pr pra prac BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 8 . 1 7 0 0 0 0 1 +3.17.4. Normal 3.17.4. 3 3. 3.1 3.17 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 9 ... 3 10 0 0 0 0 1 +Although theoretically although A Al Alt Alth BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 9 , 1 10 0 0 0 0 1 +document assumes document d do doc docu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 9 , 1 10 0 0 0 0 1 +values smaller values v va val valu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 9 -, 2 10 0 0 0 0 1 +values smaller values v va val valu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 9 . 1 6 0 0 0 0 1 +Konstantynowicz & konstantynowicz K Ko Kon Kons BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 5 11 , 1 10 0 0 1 0 0 +[Page 9] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 11 [] 2 1 0 0 0 0 0 +Internet-DraProbabilistic Loss internet-draprobabilistic I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 5 0 - 1 10 0 0 1 0 1 +3.18. Deterministic 3.18. 3 3. 3.1 3.18 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 0 .. 2 10 0 0 0 0 1 +A hypothetical a A A A A BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 1 0 0 0 0 0 6 0 no 0 9 0 0 0 0 1 +ordering, whose ordering, o or ord orde BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 0 ,-( 3 10 0 0 0 0 1 +present due present p pr pre pres BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 0 "" 2 9 0 0 0 0 1 +expected number expected e ex exp expe BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 0 ). 2 8 0 0 0 0 1 +A duration a A A A A BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 1 0 0 0 0 0 6 2 no 0 10 0 0 0 0 1 +non-deterministic system. non-deterministic n no non non- BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 2 -. 2 3 0 0 0 0 1 +3.19. Througphput 3.19. 3 3. 3.1 3.19 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 2 .. 2 10 0 0 0 0 1 +Throughput is throughput T Th Thr Thro BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 6 2 no 0 10 0 0 0 0 1 +loss for loss l lo los loss BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 2 . 1 8 0 0 0 0 1 +For duration for F Fo For For BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 3 , 1 10 0 0 0 0 1 +throughput is throughput t th thr thro BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 3 . 1 9 0 0 0 0 1 +3.20. Deterministic 3.20. 3 3. 3.2 3.20 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 4 .. 2 10 0 0 0 0 1 +Any algorithm any A An Any Any BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 4 no 0 10 0 0 0 0 1 +load belonging load l lo loa load BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 4 () 2 9 0 0 0 0 1 +search. search. search. s se sea sear BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 4 . 1 1 0 0 0 0 1 +This definition this T Th Thi This BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 5 "" 2 10 0 0 0 0 1 +which perform which w wh whi whic BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 5 ,- 2 9 0 0 0 0 1 +results pointing results r re res resu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 6 5 -. 2 6 0 0 0 0 1 +Binary Search binary B Bi Bin Bina BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 6 . 1 10 0 0 0 0 1 +Single run single S Si Sin Sing BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 6 no 0 10 0 0 0 0 1 +system is system s sy sys syst BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 6 no 0 9 0 0 0 0 1 +precision (not precision p pr pre prec BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 6 (-). 4 8 0 0 0 0 1 +Multiple runs multiple M Mu Mul Mult BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 8 - 1 9 0 0 0 0 1 +deterministic system deterministic d de det dete BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 8 - 1 8 0 0 0 0 1 +deterministic region. deterministic d de det dete BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 8 . 1 10 0 0 0 0 1 +results depends results r re res resu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 6 8 . 1 5 0 0 0 0 1 +3.21. Probabilistic 3.21. 3 3. 3.2 3.21 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 9 .. 2 10 0 0 0 0 1 +Any algorithm any A An Any Any BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 9 no 0 9 0 0 0 0 1 +observed results observed o ob obs obse BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 9 , 1 10 0 0 0 0 1 +that non-deterministic that t th tha that BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 9 -, 2 9 0 0 0 0 1 +probabilistic search. probabilistic p pr pro prob BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 9 . 1 3 0 0 0 0 1 +A probabilistic a A A A A BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 1 0 0 0 0 0 6 10 ,- 2 9 0 0 0 0 1 +deterministic region deterministic d de det dete BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 10 , 1 10 0 0 0 0 1 +Konstantynowicz & konstantynowicz K Ko Kon Kons BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 6 11 , 1 10 0 0 1 0 0 +[Page 10] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 11 [] 2 2 0 0 0 0 0 +Internet-DraProbabilistic Loss internet-draprobabilistic I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 6 0 - 1 10 0 0 1 0 1 +perform probabilistic perform p pe per perf BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 0 , 1 10 0 0 0 0 1 +deterministic search. deterministic d de det dete BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 0 . 1 3 0 0 0 0 1 +While probabilistic while W Wh Whi Whil BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 1 , 1 10 0 0 0 0 1 +would need would w wo wou woul BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 1 no 0 10 0 0 0 0 1 +non-deterministic region, non-deterministic n no non non- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 1 -, 2 10 0 0 0 0 1 +almost surely almost a al alm almo BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 1 . 1 7 0 0 0 0 1 +3.22. Loss 3.22. 3 3. 3.2 3.22 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 3 .. 2 10 0 0 0 0 1 +For any for F Fo For For BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 3 , 1 10 0 0 0 0 1 +only on only o on onl only BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 3 (). 3 7 0 0 0 0 1 +Loss ratio loss L Lo Los Loss BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 4 no 0 10 0 0 0 0 1 +load to load l lo loa load BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 4 . 1 4 0 0 0 0 1 +This function this T Th Thi This BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 5 . 1 10 0 0 0 0 1 +3.23. Target 3.23. 3 3. 3.2 3.23 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 5 .. 2 10 0 0 0 0 1 +Input parameter input I In Inp Inpu BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 5 . 1 10 0 0 0 0 1 +PLRsearch aims plrsearch P PL PLR PLRs BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 6 5 . 1 4 0 0 0 0 1 +3.24. Critical 3.24. 3 3. 3.2 3.24 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 6 .. 2 10 0 0 0 0 1 +Aggregate rate aggregate A Ag Agg Aggr BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 6 , 1 9 0 0 0 0 1 +ratio exactly ratio r ra rat rati BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 6 , 1 10 0 0 0 0 1 +for infinite for f fo for for BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 6 . 1 5 0 0 0 0 1 +3.25. Critical 3.25. 3 3. 3.2 3.25 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 8 .. 2 10 0 0 0 0 1 +Any quantitative any A An Any Any BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 8 no 0 10 0 0 0 0 1 +is able is i is is is BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 8 . 1 10 0 0 0 0 1 +3.26. Fitting 3.26. 3 3. 3.2 3.26 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 9 .. 2 10 0 0 0 0 1 +Any function any A An Any Any BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 9 no 0 9 0 0 0 0 1 +ratio function. ratio r ra rat rati BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 9 .() 3 10 0 0 0 0 1 +with few with w wi wit with BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 9 . 1 4 0 0 0 0 1 +3.27. Shape 3.27. 3 3. 3.2 3.27 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 10 .. 2 10 0 0 0 0 1 +Any formula any A An Any Any BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 11 . 1 10 0 0 0 0 1 +Konstantynowicz & konstantynowicz K Ko Kon Kons BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 6 11 , 1 10 0 0 1 0 0 +[Page 11] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 11 [] 2 2 0 0 0 0 0 +Internet-DraProbabilistic Loss internet-draprobabilistic I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 6 0 - 1 10 0 0 1 0 1 +3.28. Parameter 3.28. 3 3. 3.2 3.28 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 0 .. 2 10 0 0 0 0 1 +A subset a A A A A BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 1 0 0 0 0 0 6 0 . 1 10 0 0 0 0 1 +vector of vector v ve vec vect BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 0 .( 2 9 0 0 0 0 1 +formula with formula f fo for form BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 0 )( 2 9 0 0 0 0 1 +values for values v va val valu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 0 ). 2 4 0 0 0 0 1 +4. Abstract 4. 4 4. 4. 4. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 1 . 1 10 0 0 0 0 1 +4.1. High 4.1. 4 4. 4.1 4.1. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 2 .. 2 10 0 0 0 0 1 +PLRsearch accepts plrsearch P PL PLR PLRs BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 6 2 , 1 10 0 0 0 0 1 +trial measurements trial t tr tri tria BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 6 2 (), 3 9 0 0 0 0 1 +returns some returns r re ret retu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 2 . 1 6 0 0 0 0 1 +PLRsearch input plrsearch P PL PLR PLRs BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 6 3 . 1 10 0 0 0 0 1 +First group first F Fi Fir Firs BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 3 :. 2 9 0 0 0 0 1 +(function) accepting (function) ( (f (fu (fun BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 3 (), 3 10 0 0 0 0 1 +measured loss measured m me mea meas BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 3 . 1 3 0 0 0 0 1 +Second group second S Se Sec Seco BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 4 no 0 10 0 0 0 0 1 +to work to t to to to BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 4 ,. 2 9 0 0 0 0 1 +Also, target also, A Al Als Also BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 4 ,(). 4 9 0 0 0 0 1 +Third group third T Th Thi Thir BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 5 . 1 8 0 0 0 0 1 +duration for duration d du dur dura BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 5 , 1 9 0 0 0 0 1 +subsequent trial subsequent s su sub subs BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 5 ,. 2 8 0 0 0 0 1 +PLRsearch implementation plrsearch P PL PLR PLRs BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 7 5 no 0 10 0 0 0 0 1 +exit condition exit e ex exi exit BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 5 . 1 6 0 0 0 0 1 +The returned the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 7 () 2 9 0 0 0 0 1 +of critical of o of of of BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 7 . 1 9 0 0 0 0 1 +their users, their t th the thei BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 7 ,, 2 10 0 0 0 0 1 +and upper and a an and and BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 7 . 1 2 0 0 0 0 1 +4.2. Main 4.2. 4 4. 4.2 4.2. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 8 .. 2 10 0 0 0 0 1 +The search the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 8 no 0 10 0 0 0 0 1 +critical load, critical c cr cri crit BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 8 , 1 9 0 0 0 0 1 +the critical the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 8 no 0 9 0 0 0 0 1 +critical load. critical c cr cri crit BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 8 . 1 9 0 0 0 0 1 +the estimate the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 8 , 1 8 0 0 0 0 1 +approach the approach a ap app appr BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 8 . 1 4 0 0 0 0 1 +The only the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 10 no 0 9 0 0 0 0 1 +computation is computation c co com comp BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 10 .() 3 10 0 0 0 0 1 +taken into taken t ta tak take BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 7 10 . 1 3 0 0 0 0 1 +Konstantynowicz & konstantynowicz K Ko Kon Kons BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 7 11 , 1 10 0 0 1 0 0 +[Page 12] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 7 11 [] 2 2 0 0 0 0 0 +Internet-DraProbabilistic Loss internet-draprobabilistic I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 7 0 - 1 10 0 0 1 0 1 +PLRsearch uses plrsearch P PL PLR PLRs BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 7 0 , 1 8 0 0 0 0 1 +integration, which integration, i in int inte BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 0 ,. 2 10 0 0 0 0 1 +Therefore it therefore T Th The Ther BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 0 no 0 9 0 0 0 0 1 +result starts result r re res resu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 0 no 0 10 0 0 0 0 1 +estimates. estimates. estimates. e es est esti BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 0 . 1 1 0 0 0 0 1 +During the during D Du Dur Duri BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 1 , 1 9 0 0 0 0 1 +numerical computations, numerical n nu num nume BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 1 , 1 10 0 0 0 0 1 +perform trial perform p pe per perf BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 1 , 1 9 0 0 0 0 1 +them. The them. t th the them BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 1 . 1 8 0 0 0 0 1 +linearly, as linearly, l li lin line BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 1 , 1 10 0 0 0 0 1 +to process. to t to to to BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 1 . 1 1 0 0 0 0 1 +4.2.1. Trial 4.2.1. 4 4. 4.2 4.2. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 3 ... 3 10 0 0 0 0 1 +[RFC2544] motivates [rfc2544] [ [R [RF [RFC BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 1 0 0 0 7 3 [] 2 10 0 0 0 0 1 +idea of idea i id ide idea BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 3 ( 1 10 0 0 0 0 1 +as memory as a as as as BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 3 ). 2 2 0 0 0 0 1 +Practical results practical P Pr Pra Prac BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 4 no 0 9 0 0 0 0 1 +relative change relative r re rel rela BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 4 no 0 10 0 0 0 0 1 +loss ratio, loss l lo los loss BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 4 ,. 2 8 0 0 0 0 1 +While the while W Wh Whi Whil BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 5 no 0 10 0 0 0 0 1 +of trial of o of of of BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 5 ,. 2 9 0 0 0 0 1 +is duration is i is is is BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 5 , 1 9 0 0 0 0 1 +numeric integration numeric n nu num nume BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 5 . 1 4 0 0 0 0 1 +4.2.2. Target 4.2.2. 4 4. 4.2 4.2. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 7 ... 3 10 0 0 0 0 1 +(TODO: Link (todo: ( (T (TO (TOD BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 7 7 (:-.) 5 10 0 0 0 0 1 +4.3. PLRsearch 4.3. 4 4. 4.3 4.3. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 8 .. 2 10 0 0 0 0 1 +Here we here H He Her Here BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 8 no 0 10 0 0 0 0 1 +other search other o ot oth othe BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 8 , 1 8 0 0 0 0 1 +general. general. general. g ge gen gene BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 8 . 1 1 0 0 0 0 1 +4.3.1. Bayesian 4.3.1. 4 4. 4.3 4.3. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 9 ... 3 10 0 0 0 0 1 +PLRsearch uses plrsearch P PL PLR PLRs BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 7 9 , 1 9 0 0 0 0 1 +Bayesian inference bayesian B Ba Bay Baye BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 7 9 no 0 10 0 0 0 0 1 +function parameter function f fu fun func BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 9 . 1 3 0 0 0 0 1 +Specifically, the specifically, S Sp Spe Spec BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 10 , 1 10 0 0 0 0 1 +the model the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 10 ., 2 9 0 0 0 0 1 +duration results, duration d du dur dura BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 10 ,, 2 10 0 0 0 0 1 +quantities describing quantities q qu qua quan BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 10 . 1 7 0 0 0 0 1 +Konstantynowicz & konstantynowicz K Ko Kon Kons BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 7 11 , 1 10 0 0 1 0 0 +[Page 13] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 7 11 [] 2 2 0 0 0 0 0 +Internet-DraProbabilistic Loss internet-draprobabilistic I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 7 0 - 1 10 0 0 1 0 1 +Likelihood of likelihood L Li Lik Like BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 0 no 0 9 0 0 0 0 1 +distribution of distribution d di dis dist BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 0 ( 1 10 0 0 0 0 1 +specific point specific s sp spe spec BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 0 ). 2 5 0 0 0 0 1 +Side note: side S Si Sid Side BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 1 : 1 9 0 0 0 0 1 +distribution (acknowledging distribution d di dis dist BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 1 ( 1 10 0 0 0 0 1 +higher than higher h hi hig high BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 1 ), 2 9 0 0 0 0 1 +to be to t to to to BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 1 . 1 9 0 0 0 0 1 +lowers the lowers l lo low lowe BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 1 , 1 9 0 0 0 0 1 +the algorithm the t th the the BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 1 . 1 8 0 0 0 0 1 +4.3.2. Iterative 4.3.2. 4 4. 4.3 4.3. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 3 ... 3 10 0 0 0 0 1 +The idea the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 3 , 1 10 0 0 0 0 1 +inference to inference i in inf infe BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 3 no 0 10 0 0 0 0 1 +and the and a an and and BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 3 . 1 6 0 0 0 0 1 +The required the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 4 no 0 10 0 0 0 0 1 +trial measurements. trial t tr tri tria BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 7 4 . 1 3 0 0 0 0 1 +This means this T Th Thi This BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 4 ""() 4 9 0 0 0 0 1 +input to input i in inp inpu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 4 "", 3 10 0 0 0 0 1 +and the and a an and and BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 4 no 0 9 0 0 0 0 1 +offered load offered o of off offe BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 4 "". 3 5 0 0 0 0 1 +Other schemes other O Ot Oth Othe BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 6 , 1 8 0 0 0 0 1 +measurements (by measurements m me mea meas BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 6 (), 3 10 0 0 0 0 1 +higher number higher h hi hig high BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 6 no 0 10 0 0 0 0 1 +affects offered affects a af aff affe BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 6 . 1 3 0 0 0 0 1 +4.3.3. Fitting 4.3.3. 4 4. 4.3 4.3. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 7 ... 3 10 0 0 0 0 1 +To make to T To To To BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 7 no 0 10 0 0 0 0 1 +algorithm uses algorithm a al alg algo BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 7 . 1 9 0 0 0 0 1 +As the as A As As As BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 7 no 0 9 0 0 0 0 1 +from the from f fr fro from BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 7 , 1 9 0 0 0 0 1 +behaved for behaved b be beh beha BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 7 , 1 9 0 0 0 0 1 +predict non-positive predict p pr pre pred BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 7 -. 2 5 0 0 0 0 1 +4.3.4. Measurement 4.3.4. 4 4. 4.3 4.3. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 9 ... 3 10 0 0 0 0 1 +Results from results R Re Res Resu BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 8 9 no 0 9 0 0 0 0 1 +the critical the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 9 , 1 9 0 0 0 0 1 +not need not n no not not BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 9 . 1 9 0 0 0 0 1 +guaranteed loss guaranteed g gu gua guar BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 9 , 1 9 0 0 0 0 1 +fitting function fitting f fi fit fitt BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 9 "", 3 10 0 0 0 0 1 +measurement confirming measurement m me mea meas BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 9 no 0 9 0 0 0 0 1 +impact. impact. impact. i im imp impa BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 9 . 1 1 0 0 0 0 1 +Konstantynowicz & konstantynowicz K Ko Kon Kons BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 8 11 , 1 10 0 0 1 0 0 +[Page 14] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 11 [] 2 2 0 0 0 0 0 +Internet-DraProbabilistic Loss internet-draprobabilistic I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 8 0 - 1 10 0 0 1 0 1 +Discarding some discarding D Di Dis Disc BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 0 ,""- 4 9 0 0 0 0 1 +methods (other methods m me met meth BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 0 () 2 10 0 0 0 0 1 +is not is i is is is BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 0 , 1 8 0 0 0 0 1 +unstable. We unstable. u un uns unst BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 0 .() 3 9 0 0 0 0 1 +near the near n ne nea near BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 0 ,- 2 9 0 0 0 0 1 +(eventually) for (eventually) ( (e (ev (eve BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 0 ()-. 4 7 0 0 0 0 1 +4.3.5. Fitting 4.3.5. 4 4. 4.3 4.3. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 2 ... 3 10 0 0 0 0 1 +To accomodate to T To To To BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 2 , 1 10 0 0 0 0 1 +is expected is i is is is BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 2 no 0 9 0 0 0 0 1 +(mainly affecting (mainly ( (m (ma (mai BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 2 (). 3 10 0 0 0 0 1 +The general the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 4 no 0 10 0 0 0 0 1 +function, some function, f fu fun func BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 4 ,. 2 8 0 0 0 0 1 +It is it I It It It BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 4 no 0 9 0 0 0 0 1 +distribution of distribution d di dis dist BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 4 . 1 9 0 0 0 0 1 +each parameter each e ea eac each BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 4 no 0 9 0 0 0 0 1 +common interval. common c co com comm BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 4 .- 2 10 0 0 0 0 1 +into their into i in int into BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 4 . 1 8 0 0 0 0 1 +4.3.6. Exit 4.3.6. 4 4. 4.3 4.3. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 6 ... 3 10 0 0 0 0 1 +Exit condition exit E Ex Exi Exit BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 6 no 0 10 0 0 0 0 1 +critical load critical c cr cri crit BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 6 (), 3 9 0 0 0 0 1 +search time search s se sea sear BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 6 . 1 4 0 0 0 0 1 +The algorithm the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 7 no 0 10 0 0 0 0 1 +its critical its i it its its BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 7 . 1 4 0 0 0 0 1 +4.3.7. Integration 4.3.7. 4 4. 4.3 4.3. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 8 ... 3 10 0 0 0 0 1 +The posterior the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 8 no 0 10 0 0 0 0 1 +be integrable be b be be be BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 8 . 1 3 0 0 0 0 1 +The search the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 9 no 0 10 0 0 0 0 1 +some time, some s so som some BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 9 ,( 2 9 0 0 0 0 1 +suitable method, suitable s su sui suit BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 9 ,) 2 8 0 0 0 0 1 +precision. precision. precision. p pr pre prec BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 9 . 1 1 0 0 0 0 1 +4.3.8. Optimizations 4.3.8. 4 4. 4.3 4.3. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 10 ... 3 10 0 0 0 0 1 +After enough after A Af Aft Afte BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 10 , 1 10 0 0 0 0 1 +in a in i in in in BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 8 10 . 1 9 0 0 0 0 1 +should take should s sh sho shou BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 10 . 1 4 0 0 0 0 1 +Konstantynowicz & konstantynowicz K Ko Kon Kons BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 8 11 , 1 10 0 0 1 0 0 +[Page 15] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 11 [] 2 2 0 0 0 0 0 +Internet-DraProbabilistic Loss internet-draprobabilistic I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 8 0 - 1 10 0 0 1 0 1 +Even in even E Ev Eve Even BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 0 ,, 2 10 0 0 0 0 1 +the integration the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 0 no 0 9 0 0 0 0 1 +means, for means, m me mea mean BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 0 ,. 2 9 0 0 0 0 1 +4.3.9. Offered 4.3.9. 4 4. 4.3 4.3. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 1 ... 3 10 0 0 0 0 1 +The simplest the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 1 no 0 10 0 0 0 0 1 +equal to equal e eq equ equa BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 1 ( 1 9 0 0 0 0 1 +function shapes) function f fu fun func BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 1 ). 2 6 0 0 0 0 1 +Contrary to contrary C Co Con Cont BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 2 , 1 10 0 0 0 0 1 +affecting offered affecting a af aff affe BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 2 , 1 9 0 0 0 0 1 +can help can c ca can can BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 2 . 1 4 0 0 0 0 1 +4.3.10. Trend 4.3.10. 4 4. 4.3 4.3. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 3 ... 3 10 0 0 0 0 1 +If the if I If If If BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 3 ( 1 9 0 0 0 0 1 +equilibrium), average equilibrium), e eq equ equi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 3 ), 2 9 0 0 0 0 1 +equilibrium estimates equilibrium e eq equ equi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 3 , 1 10 0 0 0 0 1 +values. values. values. v va val valu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 3 . 1 1 0 0 0 0 1 +But such but B Bu But But BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 4 -, 2 9 0 0 0 0 1 +the trend the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 4 ., 2 9 0 0 0 0 1 +of some of o of of of BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 4 ( 1 10 0 0 0 0 1 +independence or independence i in ind inde BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 4 ). 2 5 0 0 0 0 1 +It is it I It It It BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 6 no 0 9 0 0 0 0 1 +direct critical direct d di dir dire BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 6 , 1 8 0 0 0 0 1 +conclusion. Alternatively, conclusion. c co con conc BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 6 ., 2 9 0 0 0 0 1 +conditions, requiring conditions, c co con cond BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 6 ,. 2 10 0 0 0 0 1 +5. Sample 5. 5 5. 5. 5. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 7 .:. 3 10 0 0 0 0 1 +The search the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 7 , 1 9 0 0 0 0 1 +measurements at measurements m me mea meas BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 7 no 0 10 0 0 0 0 1 +generator. generator. generator. g ge gen gene BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 7 . 1 1 0 0 0 0 1 +The implemented the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 8 . 1 10 0 0 0 0 1 +stores each stores s st sto stor BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 8 (, 2 10 0 0 0 0 1 +agnostic to agnostic a ag agn agno BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 8 , 1 10 0 0 0 0 1 +of packets of o of of of BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 8 ), 2 9 0 0 0 0 1 +generator lists generator g ge gen gene BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 8 . 1 5 0 0 0 0 1 +5.1. Measurement 5.1. 5 5. 5.1 5.1. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 10 .. 2 10 0 0 0 0 1 +In a in I In In In BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 9 10 .,. 3 10 0 0 0 0 1 +second delay second s se sec seco BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 10 no 0 9 0 0 0 0 1 +traffic generator traffic t tr tra traf BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 10 (-). 4 4 0 0 0 0 1 +Konstantynowicz & konstantynowicz K Ko Kon Kons BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 9 11 , 1 10 0 0 1 0 0 +[Page 16] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 11 [] 2 2 0 0 0 0 0 +Internet-DraProbabilistic Loss internet-draprobabilistic I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 9 0 - 1 10 0 0 1 0 1 +As measurements as A As As As BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 0 , 1 10 0 0 0 0 1 +takes more takes t ta tak take BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 0 (), 3 9 0 0 0 0 1 +constant part constant c co con cons BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 0 (). 3 8 0 0 0 0 1 +Also, the also, A Al Als Also BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 1 , 1 10 0 0 0 0 1 +region the region r re reg regi BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 1 . 1 8 0 0 0 0 1 +And of and A An And And BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 1 , 1 10 0 0 0 0 1 +the CPUs the t th the the BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 1 . 1 5 0 0 0 0 1 +All those all A Al All All BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 2 no 0 9 0 0 0 0 1 +increasing trial increasing i in inc incr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 2 ( 1 10 0 0 0 0 1 +5.1 seconds 5.1 5 5. 5.1 5.1 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 2 .,. 3 9 0 0 0 0 1 +second longer). second s se sec seco BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 2 ). 2 2 0 0 0 0 1 +5.2. Rounding 5.2. 5 5. 5.2 5.2. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 3 .. 2 10 0 0 0 0 1 +In order in I In In In BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 9 3 , 1 9 0 0 0 0 1 +logarithm (instead logarithm l lo log loga BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 3 () 2 9 0 0 0 0 1 +is never is i is is is BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 3 .( 2 8 0 0 0 0 1 +supported by supported s su sup supp BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 3 ),"". 5 9 0 0 0 0 1 +Specific functions specific S Sp Spe Spec BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 3 (" 2 10 0 0 0 0 1 +of exponentials") of o of of of BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 3 "). 3 8 0 0 0 0 1 +5.3. Fitting 5.3. 5 5. 5.3 5.3. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 5 .. 2 10 0 0 0 0 1 +Current implementation current C Cu Cur Curr BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 6 ., 2 10 0 0 0 0 1 +estimates for estimates e es est esti BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 6 , 1 9 0 0 0 0 1 +systematic error, systematic s sy sys syst BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 6 , 1 8 0 0 0 0 1 +integrator. Otherwise integrator. i in int inte BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 6 . 1 9 0 0 0 0 1 +is unrealistically is i is is is BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 6 . 1 3 0 0 0 0 1 +Both functions both B Bo Bot Both BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 7 ,( 2 10 0 0 0 0 1 +rate of rate r ra rat rate BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 7 ). 2 5 0 0 0 0 1 +As Primitive as A As As As BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 8 no 0 9 0 0 0 0 1 +function, and function, f fu fun func BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 8 , 1 10 0 0 0 0 1 +function; both function; f fu fun func BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 8 ; 1 10 0 0 0 0 1 +Function to function F Fu Fun Func BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 8 ( 1 8 0 0 0 0 1 +increasing function increasing i in inc incr BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 8 ). 2 6 0 0 0 0 1 +As not as A As As As BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 9 , 1 9 0 0 0 0 1 +(especially with (especially ( (e (es (esp BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 9 () 2 10 0 0 0 0 1 +not easily not n no not not BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 9 . 1 3 0 0 0 0 1 +Both fitting both B Bo Bot Both BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 10 """", 5 10 0 0 0 0 1 +by simply by b by by by BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 10 (-, 3 8 0 0 0 0 1 +direction) the direction) d di dir dire BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 10 ).- 3 9 0 0 0 0 1 +Konstantynowicz & konstantynowicz K Ko Kon Kons BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 9 11 , 1 10 0 0 1 0 0 +[Page 17] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 11 [] 2 2 0 0 0 0 0 +Internet-DraProbabilistic Loss internet-draprobabilistic I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 9 0 - 1 10 0 0 1 0 1 +(the loss (the ( (t (th (the BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 0 () 2 10 0 0 0 0 1 +rate staying rate r ra rat rate BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 0 . 1 8 0 0 0 0 1 +In both in I In In In BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 9 0 ( 1 10 0 0 0 0 1 +a symmetric a a a a a BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 1 0 0 0 0 0 9 0 ),"" 4 9 0 0 0 0 1 +the aforementioned the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 0 , 1 9 0 0 0 0 1 +parameter is parameter p pa par para BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 0 "", 3 10 0 0 0 0 1 +tests are tests t te tes test BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 0 . 1 4 0 0 0 0 1 +Both fitting both B Bo Bot Both BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 2 , 1 9 0 0 0 0 1 +rounding errors rounding r ro rou roun BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 2 . 1 9 0 0 0 0 1 +given as given g gi giv give BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 2 ,, 2 10 0 0 0 0 1 +formulas are formulas f fo for form BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 2 . 1 4 0 0 0 0 1 +Both fitting both B Bo Bot Both BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 3 no 0 8 0 0 0 0 1 +formulas, each formulas, f fo for form BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 3 , 1 9 0 0 0 0 1 +places. Overflows places. p pl pla plac BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 3 . 1 8 0 0 0 0 1 +formulas for formulas f fo for form BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 3 . 1 10 0 0 0 0 1 +using approximate using u us usi usin BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 3 , 1 9 0 0 0 0 1 +have their have h ha hav have BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 3 ., 2 8 0 0 0 0 1 +function implementations function f fu fun func BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 3 "", 3 8 0 0 0 0 1 +discontinuities are discontinuities d di dis disc BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 3 . 1 7 0 0 0 0 1 +5.3.1. Stretch 5.3.1. 5 5. 5.3 5.3. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 5 ... 3 10 0 0 0 0 1 +The original the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 5 () 2 10 0 0 0 0 1 +Function to function F Fu Fun Func BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 5 ."" 3 9 0 0 0 0 1 +related a related r re rel rela BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 5 no 0 9 0 0 0 0 1 +activation function. activation a ac act acti BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 5 . 1 3 0 0 0 0 1 +Formula for formula F Fo For Form BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 6 :() 3 10 0 0 0 0 1 +from offered from f fr fro from BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 6 (),()(), 8 9 0 0 0 0 1 +given as given g gi giv give BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 6 : 1 5 0 0 0 0 1 +r = r r r r r BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 10 7 (*((/))*[((/)(/))/((/))])/(/) 29 10 0 0 0 0 1 +5.3.2. Erf 5.3.2. 5 5. 5.3 5.3. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 8 ... 3 10 0 0 0 0 1 +The original the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 8 no 0 10 0 0 0 0 1 +Function. The function. F Fu Fun Func BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 8 ."", 4 9 0 0 0 0 1 +primitive to primitive p pr pri prim BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 8 . 1 3 0 0 0 0 1 +Formula for formula F Fo For Form BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 9 :() 3 10 0 0 0 0 1 +offered load offered o of off offe BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 9 (),()(), 8 9 0 0 0 0 1 +as InputForm as a as as as BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 9 : 1 4 0 0 0 0 1 +r = r r r r r BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 10 10 ((*((-((-)/))-(-(/))))/[]*[/] 29 10 0 0 0 0 1 ++ (b + + + + + BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 10 (-)*[(-)/])/([/]) 17 6 0 0 0 0 1 +Konstantynowicz & konstantynowicz K Ko Kon Kons BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 10 11 , 1 10 0 0 1 0 0 +[Page 18] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 11 [] 2 2 0 0 0 0 0 +Internet-DraProbabilistic Loss internet-draprobabilistic I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 10 0 - 1 10 0 0 1 0 1 +5.4. Prior 5.4. 5 5. 5.4 5.4. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 0 .. 2 10 0 0 0 0 1 +The numeric the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 0 no 0 10 0 0 0 0 1 +(independently and) (independently ( (i (in (ind BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 0 ()(-,). 7 7 0 0 0 0 1 +As both as A As As As BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 1 """" 4 9 0 0 0 0 1 +dimensionless, a dimensionless, d di dim dime BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 1 ,. 2 10 0 0 0 0 1 +inherited from inherited i in inh inhe BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 1 . 1 5 0 0 0 0 1 +The "mrr" the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 1 "" 2 10 0 0 0 0 1 +one, but one, o on one one, BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 1 , 1 9 0 0 0 0 1 +second. second. second. s se sec seco BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 1 . 1 1 0 0 0 0 1 +The "stretch" the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 2 """" 4 10 0 0 0 0 1 +to a to t to to to BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 2 ; 1 9 0 0 0 0 1 +Distribution. Distribution. distribution. D Di Dis Dist BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 2 . 1 2 0 0 0 0 1 +5.5. Integrator 5.5. 5 5. 5.5 5.5. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 3 .. 2 10 0 0 0 0 1 +After few after A Af Aft Afte BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 3 , 1 9 0 0 0 0 1 +function arguments function f fu fun func BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 3 . 1 9 0 0 0 0 1 +integrator is integrator i in int inte BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 3 no 0 9 0 0 0 0 1 +biased distribution biased b bi bia bias BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 3 , 1 8 0 0 0 0 1 +deliberately larger deliberately d de del deli BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 3 . 1 10 0 0 0 0 1 +(-1, 1) (-1, ( (- (-1 (-1, BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 3 (-,),. 6 6 0 0 0 0 1 +The the the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 5 no 0 10 0 0 0 0 1 +is based is i is is is BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 5 no 0 9 0 0 0 0 1 +(within the (within ( (w (wi (wit BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 5 (), 3 9 0 0 0 0 1 +designed to designed d de des desi BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 5 -. 2 6 0 0 0 0 1 +Each computation each E Ea Eac Each BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 6 no 0 9 0 0 0 0 1 +the previous the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 6 ( 1 9 0 0 0 0 1 +used in used u us use used BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 6 ), 2 9 0 0 0 0 1 +set to set s se set set BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 6 ., 2 9 0 0 0 0 1 +center is center c ce cen cent BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 10 6 . 1 9 0 0 0 0 1 +come, their come, c co com come BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 6 ,() 3 9 0 0 0 0 1 +to the to t to to to BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 6 (). 3 9 0 0 0 0 1 +new sample new n ne new new BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 6 -, 2 10 0 0 0 0 1 +(for data (for ( (f (fo (for BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 6 ()() 4 9 0 0 0 0 1 +average if average a av ave aver BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 6 ., 2 9 0 0 0 0 1 +uses covariance uses u us use uses BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 6 (. 2 9 0 0 0 0 1 +default). default). default). d de def defa BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 6 ). 2 1 0 0 0 0 1 +This combination this T Th Thi This BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 10 , 1 10 0 0 0 0 1 +follows two follows f fo fol foll BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 10 .( 2 10 0 0 0 0 1 +or single or o or or or BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 10 ) 1 9 0 0 0 0 1 +locating the locating l lo loc loca BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 10 . 1 10 0 0 0 0 1 +Konstantynowicz & konstantynowicz K Ko Kon Kons BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 11 , 1 10 0 0 1 0 0 +[Page 19] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 11 [] 2 2 0 0 0 0 0 +Internet-DraProbabilistic Loss internet-draprobabilistic I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 0 - 1 10 0 0 1 0 1 +The second the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 0 () 2 10 0 0 0 0 1 +relevant for relevant r re rel rele BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 0 . 1 6 0 0 0 0 1 +5.6. Offered 5.6. 5 5. 5.6 5.6. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 0 .. 2 10 0 0 0 0 1 +First two first F Fi Fir Firs BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 1 no 0 10 0 0 0 0 1 +interval and interval i in int inte BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 1 .- 2 9 0 0 0 0 1 +logic, offered logic, l lo log logi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 1 , 1 9 0 0 0 0 1 +ratio if ratio r ra rat rati BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 1 . 1 9 0 0 0 0 1 +Basis for basis B Ba Bas Basi BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 2 no 0 10 0 0 0 0 1 +average of average a av ave aver BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 2 , 1 9 0 0 0 0 1 +function. function. function. f fu fun func BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 2 . 1 1 0 0 0 0 1 +There is there T Th The Ther BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 3 , 1 10 0 0 0 0 1 +consequent zero consequent c co con cons BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 3 . 1 10 0 0 0 0 1 +measurement result measurement m me mea meas BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 3 no 0 9 0 0 0 0 1 +higher. Sorted higher. h hi hig high BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 3 .() 3 8 0 0 0 0 1 +maintained. maintained. maintained. m ma mai main BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 3 . 1 1 0 0 0 0 1 +When a when W Wh Whe When BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 4 no 0 9 0 0 0 0 1 +encountered, a encountered, e en enc enco BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 4 ,. 2 10 0 0 0 0 1 +the estimate the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 4 , 1 9 0 0 0 0 1 +average of average a av ave aver BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 4 no 0 9 0 0 0 0 1 +offered load. offered o of off offe BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 4 . 1 9 0 0 0 0 1 +additional consecutive additional a ad add addi BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 4 . 1 6 0 0 0 0 1 +This behavior this T Th Thi This BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 6 , 1 10 0 0 0 0 1 +not need not n no not not BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 6 . 1 9 0 0 0 0 1 +the smallest the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 6 () 2 9 0 0 0 0 1 +offered load offered o of off offe BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 6 . 1 10 0 0 0 0 1 +if the if i if if if BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 6 no 0 9 0 0 0 0 1 +when loss when w wh whe when BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 6 . 1 9 0 0 0 0 1 +adds 4 adds a ad add adds BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 6 , 1 9 0 0 0 0 1 +fairly stable fairly f fa fai fair BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 6 . 1 8 0 0 0 0 1 +6. IANA 6. 6 6. 6. 6. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 10 . 1 10 0 0 0 0 1 +No requests no N No No No BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 10 . 1 10 0 0 0 0 1 +7. Security 7. 7 7. 7. 7. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 10 . 1 10 0 0 0 0 1 +Benchmarking activities benchmarking B Be Ben Benc BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 10 no 0 9 0 0 0 0 1 +technology characterization technology t te tec tech BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 10 / 1 10 0 0 0 0 1 +a laboratory a a a a a BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 1 0 0 0 0 0 11 10 , 1 9 0 0 0 0 1 +constraints specified constraints c co con cons BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 10 . 1 6 0 0 0 0 1 +Konstantynowicz & konstantynowicz K Ko Kon Kons BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 11 , 1 10 0 0 1 0 0 +[Page 20] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 11 [] 2 2 0 0 0 0 0 +Internet-DraProbabilistic Loss internet-draprobabilistic I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 0 - 1 10 0 0 1 0 1 +The benchmarking the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 0 no 0 10 0 0 0 0 1 +and MUST and a an and and BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 0 no 0 9 0 0 0 0 1 +traffic into traffic t tr tra traf BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 0 no 0 9 0 0 0 0 1 +management network. management m ma man mana BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 11 0 . 1 2 0 0 0 0 1 +Further, benchmarking further, F Fu Fur Furt BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 2 ,"-", 5 10 0 0 0 0 1 +solely on solely s so sol sole BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 2 /. 2 8 0 0 0 0 1 +Special capabilities special S Sp Spe Spec BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 3 / 1 10 0 0 0 0 1 +benchmarking purposes. benchmarking b be ben benc BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 3 . 1 9 0 0 0 0 1 +from the from f fr fro from BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 3 / 1 9 0 0 0 0 1 +networks. networks. networks. n ne net netw BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 3 . 1 1 0 0 0 0 1 +8. Acknowledgements 8. 8 8. 8. 8. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 4 . 1 10 0 0 0 0 1 +.. .. .. . .. .. .. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 11 4 .. 2 10 0 0 0 0 1 +9. References 9. 9 9. 9. 9. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 5 . 1 10 0 0 0 0 1 +9.1. Normative 9.1. 9 9. 9.1 9.1. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 5 .. 2 10 0 0 0 0 1 +[RFC2544] Bradner, [rfc2544] [ [R [RF [RFC BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 1 0 0 0 11 5 [],..," 7 10 0 0 0 0 1 +Network Interconnect network N Ne Net Netw BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 11 5 ",, 3 6 0 0 0 0 1 +DOI 10.17487/RFC2544, doi D DO DOI DOI BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 1 0 0 0 0 0 0 11 5 ./,, 4 5 0 0 0 0 1 +<https://www.rfc-editor.org/info/rfc2544>. <https://www.rfc-editor.org/info/rfc2544>. <https://www.rfc-editor.org/info/rfc2544>. < <h <ht <htt BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 1 0 0 1 11 5 ://.-.//. 9 6 0 0 0 0 1 +[RFC8174] Leiba, [rfc8174] [ [R [RF [RFC BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 7 [],.," 6 10 0 0 0 0 1 +2119 Key 2119 2 21 211 2119 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 0 0 0 0 1 0 0 0 11 7 ",,,./, 7 8 0 0 0 0 1 +May 2017, may M Ma May May BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 11 7 ,://.-.//. 10 8 0 0 0 0 1 +9.2. Informative 9.2. 9 9. 9.2 9.2. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 8 .. 2 10 0 0 0 0 1 +[draft-vpolak-mkonstan-bmwg-mlrsearch] [draft-vpolak-mkonstan-bmwg-mlrsearch] [draft-vpolak-mkonstan-bmwg-mlrsearch] [ [d [dr [dra BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 9 [----] 6 7 0 0 0 0 1 +"Multiple Loss "multiple " "M "Mu "Mul BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 9 " 1 9 0 0 0 0 1 +(MLRsearch)", July (mlrsearch)", ( (M (ML (MLR BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 9 ()",,://..// 12 10 0 0 0 0 1 +draft-vpolak-mkonstan-bmwg-mlrsearch>. draft-vpolak-mkonstan-bmwg-mlrsearch>. draft-vpolak-mkonstan-bmwg-mlrsearch>. d dr dra draf BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 9 ----. 5 7 0 0 0 0 1 +Authors' Addresses authors' A Au Aut Auth BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 10 ' 1 10 0 0 0 0 1 +Maciek Konstantynowicz maciek M Ma Mac Maci BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 10 () 2 10 0 0 0 0 1 +Cisco Systems cisco C Ci Cis Cisc BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 0 0 0 0 0 0 11 10 no 0 4 0 0 0 0 1 +Email: mkonstan@cisco.com email: E Em Ema Emai BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 11 :. 2 10 0 0 0 0 1 +Konstantynowicz & konstantynowicz K Ko Kon Kons BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 11 , 1 10 0 0 1 0 0 +[Page 21] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 11 [] 2 2 0 0 0 0 0 +Internet-DraProbabilistic Loss internet-draprobabilistic I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 0 - 1 10 0 0 1 0 1 +Vratko Polak vratko V Vr Vra Vrat BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 3 () 2 10 0 0 0 0 1 +Cisco Systems cisco C Ci Cis Cisc BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 0 0 0 0 0 0 11 3 no 0 6 0 0 0 0 1 +Email: vrpolak@cisco.com email: E Em Ema Emai BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 6 :. 2 10 0 0 0 0 1 +Konstantynowicz & konstantynowicz K Ko Kon Kons BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 7 , 1 10 0 0 1 0 0 +[Page 22] [page [ [P [Pa [Pag BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 7 [] 2 2 0 0 0 0 0 + diff --git a/grobid-trainer/resources/dataset/segmentation/sdo/ietf/corpus/raw/XP015134608.training.segmentation b/grobid-trainer/resources/dataset/segmentation/sdo/ietf/corpus/raw/XP015134608.training.segmentation new file mode 100644 index 0000000000..30de96def2 --- /dev/null +++ b/grobid-trainer/resources/dataset/segmentation/sdo/ietf/corpus/raw/XP015134608.training.segmentation @@ -0,0 +1,34787 @@ +server date server s se ser serv BLOCKSTART PAGESTART NEWFONT HIGHERFONT 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 0 ; 1 10 0 0 0 0 0 +NFSv4 NFSv4 nfsv4 N NF NFS NFSv BLOCKSTART PAGEIN NEWFONT HIGHERFONT 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 no 0 10 0 0 0 0 1 +D. Noveck, d. D D. D. D. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 .,. 3 4 0 0 0 0 1 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 - 1 4 0 0 0 0 1 +NetApp NetApp netapp N Ne Net NetA BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 no 0 2 0 0 0 0 1 +Obsoletes: 5661 obsoletes: O Ob Obs Obso BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 :() 3 9 0 0 0 0 1 +C. Lever c. C C. C. C. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 . 1 2 0 0 0 0 1 +Intended status: intended I In Int Inte BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 : 1 10 0 0 0 0 1 +ORACLE ORACLE oracle O OR ORA ORAC BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 no 0 2 0 0 0 0 1 +Expires: February expires: E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 :, 2 7 0 0 0 0 1 +August 4, august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 0 0 , 1 4 0 0 0 0 1 +Network File network N Ne Net Netw BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 0 1 () 2 10 0 0 0 0 1 +draft-ietf-nfsv4-rfc5661sesqui-msns-01 draft-ietf-nfsv4-rfc5661sesqui-msns-01 draft-ietf-nfsv4-rfc5661sesqui-msns-01 d dr dra draf BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 1 ----- 5 6 0 0 0 0 1 +Abstract Abstract abstract A Ab Abs Abst BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 2 no 0 10 0 0 0 0 1 +This document this T Th Thi This BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 2 () 2 10 0 0 0 0 1 +version 1, version v ve ver vers BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 2 ,( 2 9 0 0 0 0 1 +version 4 version v ve ver vers BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 2 ,) 2 9 0 0 0 0 1 +protocol extensions protocol p pr pro prot BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 2 . 1 9 0 0 0 0 1 +no dependencies no n no no no BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 2 , 1 10 0 0 0 0 1 +separate protocol. separate s se sep sepa BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 2 . 1 2 0 0 0 0 1 +This document this T Th Thi This BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 4 . 1 8 0 0 0 0 1 +treatment of treatment t tr tre trea BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 4 - 1 10 0 0 0 0 1 +the description the t th the the BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 4 . 1 8 0 0 0 0 1 +Status of status S St Sta Stat BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 5 no 0 10 0 0 0 0 1 +This Internet-Draft this T Th Thi This BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 5 - 1 10 0 0 0 0 1 +provisions of provisions p pr pro prov BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 5 . 1 5 0 0 0 0 1 +Internet-Drafts are internet-drafts I In Int Inte BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 6 - 1 9 0 0 0 0 1 +Task Force task T Ta Tas Task BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 6 (). 3 9 0 0 0 0 1 +working documents working w wo wor work BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 6 -.- 3 10 0 0 0 0 1 +Drafts is drafts D Dr Dra Draf BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 6 ://..///. 9 8 0 0 0 0 1 +Internet-Drafts are internet-drafts I In Int Inte BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 7 - 1 10 0 0 0 0 1 +and may and a an and and BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 7 ,, 2 9 0 0 0 0 1 +time. It time. t ti tim time BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 7 .- 2 8 0 0 0 0 1 +material or material m ma mat mate BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 7 "." 3 8 0 0 0 0 1 +This Internet-Draft this T Th Thi This BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 9 -,. 3 10 0 0 0 0 1 +Copyright Notice copyright C Co Cop Copy BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 9 no 0 10 0 0 0 0 1 +Copyright (c) copyright C Co Cop Copy BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 9 () 2 10 0 0 0 0 1 +document authors. document d do doc docu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 9 .. 2 6 0 0 0 0 1 +This document this T Th Thi This BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 10 ' 1 9 0 0 0 0 1 +Provisions Relating provisions P Pr Pro Prov BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 10 no 0 5 0 0 0 0 1 +(https://trustee.ietf.org/license-info) in (https://trustee.ietf.org/license-info) ( (h (ht (htt BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 1 0 10 (://../-) 9 10 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 11 no 0 6 0 0 1 1 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 11 , 1 10 0 0 0 0 0 +[Page 1] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 11 [] 2 3 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 - 1 10 0 0 1 1 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 . 1 10 0 0 1 1 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 0 0 no 0 4 0 0 0 0 1 +publication of publication p pu pub publ BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 . 1 8 0 0 0 0 1 +carefully, as carefully, c ca car care BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 , 1 10 0 0 0 0 1 +to this to t to to to BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 . 1 9 0 0 0 0 1 +include Simplified include i in inc incl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 . 1 9 0 0 0 0 1 +the Trust the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 no 0 9 0 0 0 0 1 +described in described d de des desc BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 . 1 5 0 0 0 0 1 +This document this T Th Thi This BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 no 0 9 0 0 0 0 1 +Contributions published contributions C Co Con Cont BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 no 0 9 0 0 0 0 1 +10, 2008. 10, 1 10 10, 10, BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ,.() 4 9 0 0 0 0 1 +material may material m ma mat mate BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 no 0 9 0 0 0 0 1 +modifications of modifications m mo mod modi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 . 1 9 0 0 0 0 1 +Without obtaining without W Wi Wit With BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 () 2 10 0 0 0 0 1 +the copyright the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 , 1 9 0 0 0 0 1 +outside the outside o ou out outs BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 , 1 9 0 0 0 0 1 +not be not n no not not BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 , 1 9 0 0 0 0 1 +it for it i it it it BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 no 0 10 0 0 0 0 1 +than English. than t th tha than BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 . 1 2 0 0 0 0 1 +Table of table T Ta Tab Tabl BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 2 no 0 10 0 0 0 0 1 +1. Introduction 1. 1 1. 1. 1. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 2 ......................... 25 9 0 0 0 0 1 +7 7 7 7 7 7 7 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 0 2 no 0 0 0 0 0 0 1 +1.1. Introduction 1.1. 1 1. 1.1 1.1. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 2 ................. 17 9 0 0 0 0 1 +7 7 7 7 7 7 7 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 0 2 no 0 0 0 0 0 0 1 +1.2. The 1.2. 1 1. 1.2 1.2. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 2 ......... 9 9 0 0 0 0 1 +8 8 8 8 8 8 8 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 0 2 no 0 0 0 0 0 0 1 +1.3. Requirements 1.3. 1 1. 1.3 1.3. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 2 .................... 20 9 0 0 0 0 1 +9 9 9 9 9 9 9 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 0 2 no 0 0 0 0 0 0 1 +1.4. Scope 1.4. 1 1. 1.4 1.4. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 2 ................... 19 9 0 0 0 0 1 +9 9 9 9 9 9 9 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 0 2 no 0 0 0 0 0 0 1 +1.5. NFSv4 1.5. 1 1. 1.5 1.5. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 2 ......................... 25 9 0 0 0 0 1 +9 9 9 9 9 9 9 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 0 2 no 0 0 0 0 0 0 1 +1.6. NFSv4.1 1.6. 1 1. 1.6 1.6. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 2 ......................... 25 9 0 0 0 0 1 +1.7. General 1.7. 1 1. 1.7 1.7. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 2 ..................... 21 9 0 0 0 0 1 +1.8. Overview 1.8. 1 1. 1.8 1.8. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 2 ................. 17 9 0 0 0 0 1 +1.9. Differences 1.9. 1 1. 1.9 1.9. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 2 ................... 19 9 0 0 0 0 1 +2. Core 2. 2 2. 2. 2. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 2 ...................... 22 10 0 0 0 0 1 +2.1. Introduction 2.1. 2 2. 2.1 2.1. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 2 ........................ 24 9 0 0 0 0 1 +2.2. RPC 2.2. 2 2. 2.2 2.2. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 2 ......................... 25 9 0 0 0 0 1 +2.3. COMPOUND 2.3. 2 2. 2.3 2.3. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 2 .................. 18 9 0 0 0 0 1 +2.4. Client 2.4. 2 2. 2.4 2.4. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 2 ............ 12 9 0 0 0 0 1 +2.5. Server 2.5. 2 2. 2.5 2.5. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 2 ........................ 24 9 0 0 0 0 1 +2.6. Security 2.6. 2 2. 2.6 2.6. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 2 ................ 16 9 0 0 0 0 1 +2.7. Minor 2.7. 2 2. 2.7 2.7. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 2 ...................... 22 9 0 0 0 0 1 +2.8. Non-RPC-Based 2.8. 2 2. 2.8 2.8. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 2 ..--............. 17 9 0 0 0 0 1 +2.9. Transport 2.9. 2 2. 2.9 2.9. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 2 ...................... 22 9 0 0 0 0 1 +2.10. Session 2.10. 2 2. 2.1 2.10 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 2 ........................... 27 9 0 0 0 0 1 +3. Protocol 3. 3 3. 3. 3. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 2 ............... 15 10 0 0 0 0 1 +3.1. Basic 3.1. 3 3. 3.1 3.1. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 2 ....................... 23 9 0 0 0 0 1 +3.2. Basic 3.2. 3 3. 3.2 3.2. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 2 ...................... 22 9 0 0 0 0 1 +3.3. Structured 3.3. 3 3. 3.3 3.3. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 2 .................... 20 9 0 0 0 0 1 +4. Filehandles 4. 4 4. 4. 4. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 2 .......................... 26 10 0 0 0 0 1 +4.1. Obtaining 4.1. 4 4. 4.1 4.1. BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 2 ............... 15 9 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 11 , 1 10 0 0 0 0 0 +[Page 2] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 11 [] 2 3 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 0 0 no 0 4 0 0 0 0 1 +4.2. Filehandle 4.2. 4 4. 4.2 4.2. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ...................... 22 9 0 0 0 0 1 +4.3. One 4.3. 4 4. 4.3 4.3. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ...... 6 9 0 0 0 0 1 +4.4. Client 4.4. 4 4. 4.4 4.4. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ......... 9 9 0 0 0 0 1 +5. File 5. 5 5. 5. 5. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ........................ 24 10 0 0 0 0 1 +5.1. REQUIRED 5.1. 5 5. 5.1 5.1. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ..................... 21 9 0 0 0 0 1 +5.2. RECOMMENDED 5.2. 5 5. 5.2 5.2. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ................... 19 9 0 0 0 0 1 +5.3. Named 5.3. 5 5. 5.3 5.3. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ...................... 22 9 0 0 0 0 1 +5.4. Classification 5.4. 5 5. 5.4 5.4. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ................ 16 9 0 0 0 0 1 +5.5. Set-Only 5.5. 5 5. 5.5 5.5. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ..--............ 16 9 0 0 0 0 1 +5.6. REQUIRED 5.6. 5 5. 5.6 5.6. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ..-.. 5 9 0 0 0 0 1 +5.7. RECOMMENDED 5.7. 5 5. 5.7 5.7. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ..-. 4 9 0 0 0 0 1 +5.8. Attribute 5.8. 5 5. 5.8 5.8. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 .. 2 2 0 0 0 0 1 +Definitions . definitions D De Def Defi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 .............. 14 6 0 0 0 0 1 +5.9. Interpreting 5.9. 5 5. 5.9 5.9. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ............. 13 9 0 0 0 0 1 +5.10. Character 5.10. 5 5. 5.1 5.10 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 .................. 18 9 0 0 0 0 1 +5.11. Directory 5.11. 5 5. 5.1 5.11 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 .............. 14 9 0 0 0 0 1 +5.12. pNFS 5.12. 5 5. 5.1 5.12 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ................. 17 9 0 0 0 0 1 +5.13. Retention 5.13. 5 5. 5.1 5.13 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 .................... 20 9 0 0 0 0 1 +6. Access 6. 6 6. 6. 6. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ................... 19 10 0 0 0 0 1 +6.1. Goals 6.1. 6 6. 6.1 6.1. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ............................ 28 9 0 0 0 0 1 +6.2. File 6.2. 6 6. 6.2 6.2. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ................. 17 9 0 0 0 0 1 +6.3. Common 6.3. 6 6. 6.3 6.3. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ....................... 23 9 0 0 0 0 1 +6.4. Requirements 6.4. 6 6. 6.4 6.4. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ........................ 24 9 0 0 0 0 1 +7. Single-Server 7. 7 7. 7. 7. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 .-................... 21 10 0 0 0 0 1 +7.1. Server 7.1. 7 7. 7.1 7.1. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ....................... 23 9 0 0 0 0 1 +7.2. Browsing 7.2. 7 7. 7.2 7.2. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ...................... 22 9 0 0 0 0 1 +7.3. Server 7.3. 7 7. 7.3 7.3. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 .................. 18 9 0 0 0 0 1 +7.4. Multiple 7.4. 7 7. 7.4 7.4. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ....................... 23 9 0 0 0 0 1 +7.5. Filehandle 7.5. 7 7. 7.5 7.5. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 .................... 20 9 0 0 0 0 1 +7.6. Exported 7.6. 7 7. 7.6 7.6. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ........................ 24 9 0 0 0 0 1 +7.7. Mount 7.7. 7 7. 7.7 7.7. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 .................... 20 9 0 0 0 0 1 +7.8. Security 7.8. 7 7. 7.8 7.8. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ......... 9 9 0 0 0 0 1 +8. State 8. 8 8. 8. 8. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ....................... 23 9 0 0 0 0 1 +8.1. Client 8.1. 8 8. 8.1 8.1. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 .................... 20 9 0 0 0 0 1 +8.2. Stateid 8.2. 8 8. 8.2 8.2. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ..................... 21 9 0 0 0 0 1 +8.3. Lease 8.3. 8 8. 8.3 8.3. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ........................ 24 9 0 0 0 0 1 +8.4. Crash 8.4. 8 8. 8.4 8.4. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ....................... 23 9 0 0 0 0 1 +8.5. Server 8.5. 8 8. 8.5 8.5. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ................. 17 9 0 0 0 0 1 +8.6. Short 8.6. 8 8. 8.6 8.6. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 .................... 20 9 0 0 0 0 1 +8.7. Clocks, 8.7. 8 8. 8.7 8.7. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ..,, 4 7 0 0 0 0 1 +Expiration . expiration E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 ....................... 23 8 0 0 0 0 1 +8.8. Obsolete 8.8. 8 8. 8.8 8.8. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ......... 9 9 0 0 0 0 1 +9. File 9. 9 9. 9. 9. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 .............. 14 10 0 0 0 0 1 +9.1. Opens 9.1. 9 9. 9.1 9.1. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ..-............... 18 9 0 0 0 0 1 +9.2. Lock 9.2. 9 9. 9.2 9.2. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ......................... 25 9 0 0 0 0 1 +9.3. Upgrading 9.3. 9 9. 9.3 9.3. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ............... 15 9 0 0 0 0 1 +9.4. Stateid 9.4. 9 9. 9.4 9.4. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ..-........ 11 9 0 0 0 0 1 +9.5. Issues 9.5. 9 9. 9.5 9.5. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ..-............ 15 9 0 0 0 0 1 +9.6. Blocking 9.6. 9 9. 9.6 9.6. BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ....................... 23 9 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 11 , 1 10 0 0 0 0 0 +[Page 3] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 11 [] 2 3 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 0 0 no 0 4 0 0 0 0 1 +9.7. Share 9.7. 9 9. 9.7 9.7. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ..................... 21 9 0 0 0 0 1 +9.8. OPEN/CLOSE 9.8. 9 9. 9.8 9.8. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ../.................. 21 9 0 0 0 0 1 +9.9. Open 9.9. 9 9. 9.9 9.9. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ................. 17 9 0 0 0 0 1 +9.10. Parallel 9.10. 9 9. 9.1 9.10 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ....................... 23 9 0 0 0 0 1 +9.11. Reclaim 9.11. 9 9. 9.1 9.11 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ..-.......... 13 9 0 0 0 0 1 +10. Client-Side 10. 1 10 10. 10. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 .-..................... 23 10 0 0 0 0 1 +10.1. Performance 10.1. 1 10 10. 10.1 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ..-..... 8 9 0 0 0 0 1 +10.2. Delegation 10.2. 1 10 10. 10.2 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 .................. 18 9 0 0 0 0 1 +10.3. Data 10.3. 1 10 10. 10.3 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ........................ 24 9 0 0 0 0 1 +10.4. Open 10.4. 1 10 10. 10.4 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ...................... 22 9 0 0 0 0 1 +10.5. Data 10.5. 1 10 10. 10.5 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ................ 16 9 0 0 0 0 1 +10.6. Attribute 10.6. 1 10 10. 10.6 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ..................... 21 9 0 0 0 0 1 +10.7. Data 10.7. 1 10 10. 10.7 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ..... 5 9 0 0 0 0 1 +10.8. Name 10.8. 1 10 10. 10.8 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 .. 2 9 0 0 0 0 1 +10.9. Directory 10.9. 1 10 10. 10.9 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ................... 19 9 0 0 0 0 1 +11. Multi-Server 11. 1 11 11. 11. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 .-................... 21 9 0 0 0 0 1 +11.1. Terminology 11.1. 1 11 11. 11.1 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ........................ 24 9 0 0 0 0 1 +11.2. File 11.2. 1 11 11. 11.2 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 .............. 14 9 0 0 0 0 1 +11.3. File 11.3. 1 11 11. 11.3 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 .............. 14 9 0 0 0 0 1 +11.4. Getting 11.4. 1 11 11. 11.4 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ........ 8 9 0 0 0 0 1 +11.5. Uses 11.5. 1 11 11. 11.5 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 .......... 10 9 0 0 0 0 1 +11.6. Users 11.6. 1 11 11. 11.6 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ..-...... 9 9 0 0 0 0 1 +11.7. Additional 11.7. 1 11 11. 11.7 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ..-......... 12 9 0 0 0 0 1 +11.8. Overview 11.8. 1 11 11. 11.8 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ............ 12 9 0 0 0 0 1 +11.9. Effecting 11.9. 1 11 11. 11.9 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ........... 11 9 0 0 0 0 1 +11.10. Effecting 11.10. 1 11 11. 11.1 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ............. 13 9 0 0 0 0 1 +11.11. Transferring 11.11. 1 11 11. 11.1 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ............. 13 9 0 0 0 0 1 +11.12. Client 11.12. 1 11 11. 11.1 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 .... 4 9 0 0 0 0 1 +11.13. Server 11.13. 1 11 11. 11.1 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ........... 11 9 0 0 0 0 1 +11.14. Effecting 11.14. 1 11 11. 11.1 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 .............. 14 9 0 0 0 0 1 +11.15. The 11.15. 1 11 11. 11.1 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ................. 17 9 0 0 0 0 1 +11.16. The 11.16. 1 11 11. 11.1 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 .............. 14 9 0 0 0 0 1 +11.17. The 11.17. 1 11 11. 11.1 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 .................. 18 9 0 0 0 0 1 +12. Parallel 12. 1 12 12. 12. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 .()..................... 24 10 0 0 0 0 1 +12.1. Introduction 12.1. 1 12 12. 12.1 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ........................ 24 9 0 0 0 0 1 +12.2. pNFS 12.2. 1 12 12. 12.2 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ...................... 22 9 0 0 0 0 1 +12.3. pNFS 12.3. 1 12 12. 12.3 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ...................... 22 9 0 0 0 0 1 +12.4. pNFS 12.4. 1 12 12. 12.4 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ...................... 22 9 0 0 0 0 1 +12.5. Layout 12.5. 1 12 12. 12.5 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ...................... 22 9 0 0 0 0 1 +12.6. pNFS 12.6. 1 12 12. 12.6 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ....................... 23 9 0 0 0 0 1 +12.7. Recovery 12.7. 1 12 12. 12.7 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 .......................... 26 9 0 0 0 0 1 +12.8. Metadata 12.8. 1 12 12. 12.8 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ............. 13 9 0 0 0 0 1 +12.9. Security 12.9. 1 12 12. 12.9 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 .............. 14 9 0 0 0 0 1 +13. NFSv4.1 13. 1 13 13. 13. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ..:. 4 10 0 0 0 0 1 +13.1. Client 13.1. 1 13 13. 13.1 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ............ 12 9 0 0 0 0 1 +13.2. File 13.2. 1 13 13. 13.2 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 .................. 18 9 0 0 0 0 1 +13.3. File 13.3. 1 13 13. 13.3 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ................... 19 9 0 0 0 0 1 +13.4. Interpreting 13.4. 1 13 13. 13.4 BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ................ 16 9 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 11 , 1 10 0 0 0 0 0 +[Page 4] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 11 [] 2 3 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 0 0 no 0 4 0 0 0 0 1 +13.5. Data 13.5. 1 13 13. 13.5 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 .................. 18 9 0 0 0 0 1 +13.6. Operations 13.6. 1 13 13. 13.6 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ........... 11 9 0 0 0 0 1 +13.7. COMMIT 13.7. 1 13 13. 13.7 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ............... 15 9 0 0 0 0 1 +13.8. The 13.8. 1 13 13. 13.8 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ..................... 21 9 0 0 0 0 1 +13.9. Metadata 13.9. 1 13 13. 13.9 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ........ 8 9 0 0 0 0 1 +13.10. Data 13.10. 1 13 13. 13.1 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 .............. 14 9 0 0 0 0 1 +13.11. Layout 13.11. 1 13 13. 13.1 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ............... 15 9 0 0 0 0 1 +13.12. Security 13.12. 1 13 13. 13.1 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ...... 6 9 0 0 0 0 1 +14. Internationalization 14. 1 14 14. 14. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ..................... 21 10 0 0 0 0 1 +14.1. Stringprep 14.1. 1 14 14. 14.1 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ......... 9 9 0 0 0 0 1 +14.2. Stringprep 14.2. 1 14 14. 14.2 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ........ 8 9 0 0 0 0 1 +14.3. Stringprep 14.3. 1 14 14. 14.3 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ....... 7 9 0 0 0 0 1 +14.4. UTF-8 14.4. 1 14 14. 14.4 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ..-................... 22 9 0 0 0 0 1 +14.5. UTF-8 14.5. 1 14 14. 14.5 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ..-.................. 21 9 0 0 0 0 1 +15. Error 15. 1 15 15. 15. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ......................... 25 10 0 0 0 0 1 +15.1. Error 15.1. 1 15 15. 15.1 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ..................... 21 9 0 0 0 0 1 +15.2. Operations 15.2. 1 15 15. 15.2 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ............. 13 9 0 0 0 0 1 +15.3. Callback 15.3. 1 15 15. 15.3 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ......... 9 9 0 0 0 0 1 +15.4. Errors 15.4. 1 15 15. 15.4 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 .......... 10 9 0 0 0 0 1 +16. NFSv4.1 16. 1 16 16. 16. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ....................... 23 10 0 0 0 0 1 +16.1. Procedure 16.1. 1 16 16. 16.1 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ..:-............ 16 9 0 0 0 0 1 +16.2. Procedure 16.2. 1 16 16. 16.2 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ..:-...... 10 9 0 0 0 0 1 +17. Operations: 17. 1 17 17. 17. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 .:,,....... 11 10 0 0 0 0 1 +18. NFSv4.1 18. 1 18 18. 18. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ....................... 23 10 0 0 0 0 1 +18.1. Operation 18.1. 1 18 18. 18.1 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ..:-....... 11 9 0 0 0 0 1 +18.2. Operation 18.2. 1 18 18. 18.2 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ..:-............ 16 9 0 0 0 0 1 +18.3. Operation 18.3. 1 18 18. 18.3 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ..:-........ 12 9 0 0 0 0 1 +18.4. Operation 18.4. 1 18 18. 18.4 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ..:--. 6 9 0 0 0 0 1 +18.5. Operation 18.5. 1 18 18. 18.5 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ..:- 4 8 0 0 0 0 1 +Recovery . recovery R Re Rec Reco BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 ........................ 24 8 0 0 0 0 1 +18.6. Operation 18.6. 1 18 18. 18.6 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ..:-...... 10 9 0 0 0 0 1 +18.7. Operation 18.7. 1 18 18. 18.7 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ..:-......... 13 9 0 0 0 0 1 +18.8. Operation 18.8. 1 18 18. 18.8 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ..:-...... 10 9 0 0 0 0 1 +18.9. Operation 18.9. 1 18 18. 18.9 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ..:-....... 11 9 0 0 0 0 1 +18.10. Operation 18.10. 1 18 18. 18.1 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ..:-............ 16 9 0 0 0 0 1 +18.11. Operation 18.11. 1 18 18. 18.1 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ..:-.......... 14 9 0 0 0 0 1 +18.12. Operation 18.12. 1 18 18. 18.1 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ..:-........... 15 9 0 0 0 0 1 +18.13. Operation 18.13. 1 18 18. 18.1 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ..:-......... 13 9 0 0 0 0 1 +18.14. Operation 18.14. 1 18 18. 18.1 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ..:-.... 8 9 0 0 0 0 1 +18.15. Operation 18.15. 1 18 18. 18.1 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ..:- 4 9 0 0 0 0 1 +18.16. Operation 18.16. 1 18 18. 18.1 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ..:-........ 12 9 0 0 0 0 1 +18.17. Operation 18.17. 1 18 18. 18.1 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ..:- 4 9 0 0 0 0 1 +18.18. Operation 18.18. 1 18 18. 18.1 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ..:-. 5 9 0 0 0 0 1 +18.19. Operation 18.19. 1 18 18. 18.1 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ..:-...... 10 9 0 0 0 0 1 +18.20. Operation 18.20. 1 18 18. 18.2 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ..:- 4 5 0 0 0 0 1 +Public Filehandle public P Pu Pub Publ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 .... 4 4 0 0 0 0 1 +18.21. Operation 18.21. 1 18 18. 18.2 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ..:-..... 9 9 0 0 0 0 1 +18.22. Operation 18.22. 1 18 18. 18.2 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ..:-.......... 14 9 0 0 0 0 1 +18.23. Operation 18.23. 1 18 18. 18.2 BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ..:-......... 13 9 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 11 , 1 10 0 0 0 0 0 +[Page 5] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 11 [] 2 3 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 0 0 no 0 4 0 0 0 0 1 +18.24. Operation 18.24. 1 18 18. 18.2 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ..:-...... 10 9 0 0 0 0 1 +18.25. Operation 18.25. 1 18 18. 18.2 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ..:-.... 8 9 0 0 0 0 1 +18.26. Operation 18.26. 1 18 18. 18.2 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ..:-..... 9 9 0 0 0 0 1 +18.27. Operation 18.27. 1 18 18. 18.2 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ..:-... 7 9 0 0 0 0 1 +18.28. Operation 18.28. 1 18 18. 18.2 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ..:-..... 9 9 0 0 0 0 1 +18.29. Operation 18.29. 1 18 18. 18.2 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ..:-... 7 9 0 0 0 0 1 +18.30. Operation 18.30. 1 18 18. 18.3 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ..:-......... 13 9 0 0 0 0 1 +18.31. Operation 18.31. 1 18 18. 18.3 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ..:-..... 9 9 0 0 0 0 1 +18.32. Operation 18.32. 1 18 18. 18.3 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ..:-.......... 14 9 0 0 0 0 1 +18.33. Operation 18.33. 1 18 18. 18.3 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ..:-.. 6 9 0 0 0 0 1 +18.34. Operation 18.34. 1 18 18. 18.3 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ..:- 4 7 0 0 0 0 1 +Connection with connection C Co Con Conn BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 ................ 16 8 0 0 0 0 1 +18.35. Operation 18.35. 1 18 18. 18.3 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ..:-... 7 9 0 0 0 0 1 +18.36. Operation 18.36. 1 18 18. 18.3 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ..:- 4 8 0 0 0 0 1 +Confirm Client confirm C Co Con Conf BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 ................... 19 8 0 0 0 0 1 +18.37. Operation 18.37. 1 18 18. 18.3 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ..:-... 7 9 0 0 0 0 1 +18.38. Operation 18.38. 1 18 18. 18.3 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ..:- 4 9 0 0 0 0 1 +18.39. Operation 18.39. 1 18 18. 18.3 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ..:- 4 8 0 0 0 0 1 +Delegation . delegation D De Del Dele BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 ....................... 23 8 0 0 0 0 1 +18.40. Operation 18.40. 1 18 18. 18.4 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ..:-.. 6 9 0 0 0 0 1 +18.41. Operation 18.41. 1 18 18. 18.4 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ..:- 4 8 0 0 0 0 1 +for a for f fo for for BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 ................... 19 8 0 0 0 0 1 +18.42. Operation 18.42. 1 18 18. 18.4 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ..:- 4 8 0 0 0 0 1 +Layout . layout L La Lay Layo BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 ......................... 25 8 0 0 0 0 1 +18.43. Operation 18.43. 1 18 18. 18.4 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ..:-.... 8 9 0 0 0 0 1 +18.44. Operation 18.44. 1 18 18. 18.4 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ..:- 4 9 0 0 0 0 1 +18.45. Operation 18.45. 1 18 18. 18.4 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ..:- 4 8 0 0 0 0 1 +Object . object O Ob Obj Obje BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 ......................... 25 8 0 0 0 0 1 +18.46. Operation 18.46. 1 18 18. 18.4 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ..:-- 5 9 0 0 0 0 1 +and Control and a an and and BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 ...................... 22 8 0 0 0 0 1 +18.47. Operation 18.47. 1 18 18. 18.4 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ..:-... 7 9 0 0 0 0 1 +18.48. Operation 18.48. 1 18 18. 18.4 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ..:- 4 9 0 0 0 0 1 +18.49. Operation 18.49. 1 18 18. 18.4 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ..:-... 7 9 0 0 0 0 1 +18.50. Operation 18.50. 1 18 18. 18.5 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ..:-.. 6 9 0 0 0 0 1 +18.51. Operation 18.51. 1 18 18. 18.5 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ..:- 4 8 0 0 0 0 1 +Finished . finished F Fi Fin Fini BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 ........................ 24 8 0 0 0 0 1 +18.52. Operation 18.52. 1 18 18. 18.5 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ..:-...... 10 9 0 0 0 0 1 +19. NFSv4.1 19. 1 19 19. 19. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ................... 19 10 0 0 0 0 1 +19.1. Procedure 19.1. 1 19 19. 19.1 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ..:-.......... 14 9 0 0 0 0 1 +19.2. Procedure 19.2. 1 19 19. 19.2 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ..:-..... 9 9 0 0 0 0 1 +20. NFSv4.1 20. 2 20 20. 20. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ................... 19 10 0 0 0 0 1 +20.1. Operation 20.1. 2 20 20. 20.1 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ..:-........ 12 9 0 0 0 0 1 +20.2. Operation 20.2. 2 20 20. 20.2 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ..:-...... 10 9 0 0 0 0 1 +20.3. Operation 20.3. 2 20 20. 20.3 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ..:- 4 9 0 0 0 0 1 +20.4. Operation 20.4. 2 20 20. 20.4 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ..:- 4 8 0 0 0 0 1 +Changes . changes C Ch Cha Chan BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 0 0 ........................ 24 8 0 0 0 0 1 +20.5. Operation 20.5. 2 20 20. 20.5 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ..:- 4 8 0 0 0 0 1 +Delegation to delegation D De Del Dele BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 .................. 18 8 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 11 , 1 10 0 0 0 0 0 +[Page 6] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 11 [] 2 3 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 0 0 no 0 4 0 0 0 0 1 +20.6. Operation 20.6. 2 20 20. 20.6 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ..:- 4 8 0 0 0 0 1 +Objects . objects O Ob Obj Obje BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 ........................ 24 8 0 0 0 0 1 +20.7. Operation 20.7. 2 20 20. 20.7 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ..:- 4 8 0 0 0 0 1 +for Recallable for f fo for for BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 ................. 17 8 0 0 0 0 1 +20.8. Operation 20.8. 2 20 20. 20.8 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ..:- 4 8 0 0 0 0 1 +Limits . limits L Li Lim Limi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 ......................... 25 8 0 0 0 0 1 +20.9. Operation 20.9. 2 20 20. 20.9 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ..:- 4 7 0 0 0 0 1 +Sequencing and sequencing S Se Seq Sequ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 ................. 17 8 0 0 0 0 1 +20.10. Operation 20.10. 2 20 20. 20.1 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ..:- 4 8 0 0 0 0 1 +Delegation Wants delegation D De Del Dele BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 .................... 20 8 0 0 0 0 1 +20.11. Operation 20.11. 2 20 20. 20.1 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ..:- 4 9 0 0 0 0 1 +Lock Availability lock L Lo Loc Lock BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 0 0 ................... 19 8 0 0 0 0 1 +20.12. Operation 20.12. 2 20 20. 20.1 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ..:- 4 8 0 0 0 0 1 +Device ID device D De Dev Devi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 ................... 19 8 0 0 0 0 1 +20.13. Operation 20.13. 2 20 20. 20.1 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ..:- 4 9 0 0 0 0 1 +21. Security 21. 2 21 21. 21. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 .................... 20 10 0 0 0 0 1 +22. IANA 22. 2 22 22. 22. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ...................... 22 10 0 0 0 0 1 +22.1. IANA 22.1. 2 22 22. 22.1 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 .................... 20 9 0 0 0 0 1 +22.2. Named 22.2. 2 22 22. 22.2 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ................ 16 9 0 0 0 0 1 +22.3. Device 22.3. 2 22 22. 22.3 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 .................. 18 9 0 0 0 0 1 +22.4. Object 22.4. 2 22 22. 22.4 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 .................... 20 9 0 0 0 0 1 +22.5. Layout 22.5. 2 22 22. 22.5 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ........................ 24 9 0 0 0 0 1 +22.6. Path 22.6. 2 22 22. 22.6 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ................. 17 9 0 0 0 0 1 +23. References 23. 2 23 23. 23. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 .......................... 26 9 0 0 0 0 1 +23.1. Normative 23.1. 2 23 23. 23.1 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 .................... 20 9 0 0 0 0 1 +23.2. Informative 23.2. 2 23 23. 23.2 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ................... 19 9 0 0 0 0 1 +Appendix A. appendix A Ap App Appe BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 ................. 17 9 0 0 0 0 1 +Appendix B. appendix A Ap App Appe BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 ................ 16 9 0 0 0 0 1 +B.1. Revisions b.1. B B. B.1 B.1. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ..[]........ 12 9 0 0 0 0 1 +B.2. Revisions b.2. B B. B.2 B.2. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ..[]........ 12 9 0 0 0 0 1 +B.3. Revisions b.3. B B. B.3 B.3. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ..[].... 8 9 0 0 0 0 1 +B.4. Other b.4. B B. B.4 B.4. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ..[]............ 16 9 0 0 0 0 1 +Appendix C. appendix A Ap App Appe BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 ...... 6 9 0 0 0 0 1 +Appendix D. appendix A Ap App Appe BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 ................... 19 9 0 0 0 0 1 +Authors' Addresses authors' A Au Aut Auth BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 '....................... 24 9 0 0 0 0 1 +1. Introduction 1. 1 1. 1. 1. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 10 . 1 10 0 0 0 0 1 +1.1. Introduction 1.1. 1 1. 1.1 1.1. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 10 .. 2 10 0 0 0 0 1 +The revised the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 10 no 0 8 0 0 0 0 1 +(NFSv4.1) protocol (nfsv4.1) ( (N (NF (NFS BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 10 (.) 3 9 0 0 0 0 1 +full use full f fu ful full BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 10 - 1 9 0 0 0 0 1 +features and features f fe fea feat BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 10 no 0 9 0 0 0 0 1 +connection with connection c co con conn BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 10 .. 2 10 0 0 0 0 1 +for this for f fo for for BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 10 no 0 9 0 0 0 0 1 +specific changes specific s sp spe spec BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 10 . 1 7 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 11 , 1 10 0 0 0 0 0 +[Page 7] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 11 [] 2 3 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 0 0 no 0 4 0 0 0 0 1 +This document this T Th Thi This BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 no 0 10 0 0 0 0 1 +protocol, rather protocol, p pr pro prot BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 ,., 3 9 0 0 0 0 1 +not, as not, n no not not, BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 , 1 9 0 0 0 0 1 +versions, a versions, v ve ver vers BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 ,"", 4 9 0 0 0 0 1 +protocol, with protocol, p pr pro prot BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 ,. 2 8 0 0 0 0 1 +document would document d do doc docu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 . 1 9 0 0 0 0 1 +This would this T Th Thi This BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 no 0 9 0 0 0 0 1 +update RFC5661 update u up upd upda BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 [],. 4 8 0 0 0 0 1 +addition, it addition, a ad add addi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 , 1 8 0 0 0 0 1 +description in description d de des desc BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 []. 3 9 0 0 0 0 1 +o Work o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 0 3 [] 2 10 0 0 0 0 1 +RFC5661 [60] rfc5661 R RF RFC RFC5 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 3 [], 3 9 0 0 0 0 1 +situation in situation s si sit situ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 3 no 0 9 0 0 0 0 1 +the NFSv4.1 the t th the the BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 3 .. 2 3 0 0 0 0 1 +o Work o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 0 4 [] 2 10 0 0 0 0 1 +curently updates curently c cu cur cure BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 4 []. 3 9 0 0 0 0 1 +resulting document resulting r re res resu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 4 ,. 2 10 0 0 0 0 1 +obsolete RFC8434 obsolete o ob obs obso BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 4 . 1 5 0 0 0 0 1 +o There o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 0 5 no 0 8 0 0 0 0 1 +internationalization since internationalization i in int inte BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 5 no 0 9 0 0 0 0 1 +section (Section section s se sec sect BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 5 () 2 10 0 0 0 0 1 +the needs the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 5 . 1 10 0 0 0 0 1 +a new a a a a a BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 1 0 0 0 0 0 0 5 [] 2 9 0 0 0 0 1 +create a create c cr cre crea BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 5 no 0 9 0 0 0 0 1 +NFSv4 minor nfsv4 N NF NFS NFSv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 5 no 0 9 0 0 0 0 1 +defining both defining d de def defi BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 5 ... 3 5 0 0 0 0 1 +o There o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 0 7 .. 2 10 0 0 0 0 1 +The issues the T Th The The BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 7 no 0 8 0 0 0 0 1 +Appendix C. appendix A Ap App Appe BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 7 . 1 1 0 0 0 0 1 +Until the until U Un Unt Unti BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 8 ,, 2 9 0 0 0 0 1 +description of description d de des desc BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 8 no 0 9 0 0 0 0 1 +description would description d de des desc BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 8 , 1 10 0 0 0 0 1 +as RFC8434 as a as as as BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 8 [][]. 5 6 0 0 0 0 1 +1.2. The 1.2. 1 1. 1.2 1.2. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 9 .. 2 10 0 0 0 0 1 +The NFS the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 9 (.) 3 9 0 0 0 0 1 +minor version minor m mi min mino BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 0 9 (). 3 10 0 0 0 0 1 +version, NFSv4.0, version, v ve ver vers BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 9 ,.,[]. 6 9 0 0 0 0 1 +follows the follows f fo fol foll BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 9 no 0 9 0 0 0 0 1 +Section 10 section S Se Sec Sect BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 9 .,(" 4 9 0 0 0 0 1 +client and client c cl cli clie BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 9 no 0 9 0 0 0 0 1 +versions 0 versions v ve ver vers BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 9 -")(" 5 9 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 11 , 1 10 0 0 0 0 0 +[Page 8] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 11 [] 2 3 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 0 0 no 0 4 0 0 0 0 1 +as mandatory as a as as as BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 "). 3 9 0 0 0 0 1 +introduction of introduction i in int intr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 - 1 9 0 0 0 0 1 +operations and operations o op ope oper BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 0 0 . 1 8 0 0 0 0 1 +features are features f fe fea feat BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 no 0 10 0 0 0 0 1 +existing and existing e ex exi exis BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 . 1 9 0 0 0 0 1 +would add would w wo wou woul BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 . 1 10 0 0 0 0 1 +NFSv4.1 accordingly nfsv4.1 N NF NFS NFSv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 . 1 8 0 0 0 0 1 +(Section 2.7). (section ( (S (Se (Sec BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 0 (.). 4 2 0 0 0 0 1 +As a as A As As As BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 2 ,. 2 9 0 0 0 0 1 +NFSv4, but nfsv4, N NF NFS NFSv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 2 ,, 2 9 0 0 0 0 1 +based on based b ba bas base BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 2 ..,. 4 9 0 0 0 0 1 +some additional some s so som some BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 2 , 1 10 0 0 0 0 1 +NFSv4.1. NFSv4.1. nfsv4.1. N NF NFS NFSv BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 2 .. 2 1 0 0 0 0 1 +1.3. Requirements 1.3. 1 1. 1.3 1.3. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 4 .. 2 10 0 0 0 0 1 +The key the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 4 "","","","","", 15 9 0 0 0 0 1 +"SHOULD", "SHOULD "should", " "S "SH "SHO BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 4 "","","","","" 14 10 0 0 0 0 1 +document are document d do doc docu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 4 []. 3 8 0 0 0 0 1 +1.4. Scope 1.4. 1 1. 1.4 1.4. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 6 .. 2 10 0 0 0 0 1 +This document this T Th Thi This BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 6 .. 2 10 0 0 0 0 1 +NFSv4.0, this nfsv4.0, N NF NFS NFSv BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 6 .,: 3 5 0 0 0 0 1 +o describe o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 0 7 ., 2 10 0 0 0 0 1 +with NFSv4.1. with w wi wit with BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 7 .. 2 2 0 0 0 0 1 +o modify o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 0 7 .. 2 10 0 0 0 0 1 +o clarify o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 0 7 .. 2 10 0 0 0 0 1 +1.5. NFSv4 1.5. 1 1. 1.5 1.5. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 8 .. 2 10 0 0 0 0 1 +The NFSv4 the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 8 no 0 10 0 0 0 0 1 +already by already a al alr alre BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 8 []. 3 9 0 0 0 0 1 +previous versions: previous p pr pre prev BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 8 :; 2 8 0 0 0 0 1 +protocols, operating protocols, p pr pro prot BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 8 ,,;; 4 10 0 0 0 0 1 +performance. NFSv4 performance. p pe per perf BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 8 .: 2 6 0 0 0 0 1 +o Improved o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 0 9 no 0 10 0 0 0 0 1 +The protocol the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 10 , 1 10 0 0 0 0 1 +where latency where w wh whe wher BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 10 , 1 9 0 0 0 0 1 +large numbers large l la lar larg BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 0 10 . 1 5 0 0 0 0 1 +o Strong o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 0 11 no 0 10 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 11 , 1 10 0 0 0 0 0 +[Page 9] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 11 [] 2 3 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 0 0 no 0 4 0 0 0 0 1 +The protocol the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 no 0 9 0 0 0 0 1 +supporting the supporting s su sup supp BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 .,. 3 9 0 0 0 0 1 +protocol provides protocol p pr pro prot BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 no 0 9 0 0 0 0 1 +ability to ability a ab abi abil BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 no 0 10 0 0 0 0 1 +support a support s su sup supp BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 0 0 . 1 6 0 0 0 0 1 +o Good o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 0 2 - 1 10 0 0 0 0 1 +The protocol the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 2 , 1 10 0 0 0 0 1 +common set common c co com comm BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 2 no 0 10 0 0 0 0 1 +or operating or o or or or BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 2 . 1 5 0 0 0 0 1 +o Designed o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 0 3 no 0 10 0 0 0 0 1 +The protocol the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 3 no 0 10 0 0 0 0 1 +framework that framework f fr fra fram BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 3 . 1 9 0 0 0 0 1 +1.6. NFSv4.1 1.6. 1 1. 1.6 1.6. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 4 ... 3 10 0 0 0 0 1 +NFSv4.1 has nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 4 ., 2 10 0 0 0 0 1 +the overall the t th the the BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 4 . 1 3 0 0 0 0 1 +o To o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 0 5 no 0 10 0 0 0 0 1 +discovered in discovered d di dis disc BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 5 . 1 5 0 0 0 0 1 +o To o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 0 5 no 0 10 0 0 0 0 1 +addressed in addressed a ad add addr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 5 ., 2 9 0 0 0 0 1 +stated in stated s st sta stat BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 5 .,. 3 9 0 0 0 0 1 +protocol in protocol p pr pro prot BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 5 .. 2 5 0 0 0 0 1 +o To o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 0 7 no 0 10 0 0 0 0 1 +protocol and protocol p pr pro prot BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 7 . 1 6 0 0 0 0 1 +o To o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 0 7 no 0 10 0 0 0 0 1 +deployments including deployments d de dep depl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 7 no 0 9 0 0 0 0 1 +access to access a ac acc acce BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 7 . 1 7 0 0 0 0 1 +1.7. General 1.7. 1 1. 1.7 1.7. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 8 .. 2 10 0 0 0 0 1 +The following the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 9 no 0 10 0 0 0 0 1 +reader. reader. reader. r re rea read BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 9 . 1 1 0 0 0 0 1 +Byte: In byte: B By Byt Byte BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 9 :,,.., 6 10 0 0 0 0 1 +bits in bits b bi bit bits BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 9 . 1 2 0 0 0 0 1 +Client: The client: C Cl Cli Clie BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 10 :' 2 10 0 0 0 0 1 +resources. The resources. r re res reso BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 10 . 1 9 0 0 0 0 1 +logic to logic l lo log logi BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 10 . 1 10 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 11 , 1 10 0 0 0 0 0 +[Page 10] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 0 0 no 0 4 0 0 0 0 1 +the traditional the t th the the BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 no 0 10 0 0 0 0 1 +system services system s sy sys syst BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 . 1 6 0 0 0 0 1 +A client a A A A A BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 1 0 0 0 0 0 0 0 . 1 10 0 0 0 0 1 +With reference with W Wi Wit With BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 1 -, 2 9 0 0 0 0 1 +entity that entity e en ent enti BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 1 no 0 10 0 0 0 0 1 +applications. This applications. a ap app appl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 1 . 1 10 0 0 0 0 1 +recovery for recovery r re rec reco BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 1 . 1 5 0 0 0 0 1 +Note that note N No Not Note BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 2 no 0 9 0 0 0 0 1 +connection and connection c co con conn BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 2 no 0 10 0 0 0 0 1 +node. node. node. n no nod node BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 2 . 1 0 0 0 0 0 1 +Client ID: client C Cl Cli Clie BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 2 :-, 3 10 0 0 0 0 1 +short-hand reference short-hand s sh sho shor BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 2 -- 2 9 0 0 0 0 1 +owner. The owner. o ow own owne BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 2 .. 2 9 0 0 0 0 1 +Client Owner: client C Cl Cli Clie BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 3 :, 2 10 0 0 0 0 1 +server, that server, s se ser serv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 3 ,. 2 9 0 0 0 0 1 +and source and a an and and BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 3 no 0 9 0 0 0 0 1 +may share may m ma may may BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 1 0 0 0 3 . 1 8 0 0 0 0 1 +requests from requests r re req requ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 0 3 no 0 9 0 0 0 0 1 +from the from f fr fro from BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 3 . 1 3 0 0 0 0 1 +File System: file F Fi Fil File BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 5 : 1 9 0 0 0 0 1 +server (as server s se ser serv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 5 (, 2 10 0 0 0 0 1 +which is which w wh whi whic BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 5 ) 1 10 0 0 0 0 1 +attribute (see attribute a at att attr BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 5 (...). 6 5 0 0 0 0 1 +Lease: A lease: L Le Lea Leas BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 6 : 1 10 0 0 0 0 1 +which the which w wh whi whic BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 6 . 1 9 0 0 0 0 1 +lease period, lease l le lea leas BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 6 , 1 9 0 0 0 0 1 +extended. A extended. e ex ext exte BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 6 . 1 10 0 0 0 0 1 +granted after granted g gr gra gran BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 6 . 1 5 0 0 0 0 1 +A server a A A A A BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 1 0 0 0 0 0 0 8 . 1 10 0 0 0 0 1 +Lock: The lock: L Lo Loc Lock BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 8 :""-( 5 9 0 0 0 0 1 +environments, also environments, e en env envi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 8 ,),, 4 10 0 0 0 0 1 +delegations, or delegations, d de del dele BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 8 ,. 2 9 0 0 0 0 1 +Secret State secret S Se Sec Secr BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 9 (): 3 10 0 0 0 0 1 +between a between b be bet betw BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 9 . 1 9 0 0 0 0 1 +an internal an a an an an BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 0 9 (,.) 4 8 0 0 0 0 1 +Services (GSS) services S Se Ser Serv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 0 9 ()(; 4 7 0 0 0 0 1 +Section 2.10.9). section S Se Sec Sect BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 9 ..). 4 9 0 0 0 0 1 +message integrity message m me mes mess BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 9 (). 3 7 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 11 , 1 10 0 0 0 0 0 +[Page 11] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 0 0 no 0 4 0 0 0 0 1 +Section 2.10.8.3 section S Se Sec Sect BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 .... 4 10 0 0 0 0 1 +the SSV the t th the the BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 . 1 3 0 0 0 0 1 +Server: The server: S Se Ser Serv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 1 : 1 10 0 0 0 0 1 +access to access a ac acc acce BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 1 no 0 8 0 0 0 0 1 +owner. A owner. o ow own owne BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 1 .. 2 7 0 0 0 0 1 +Server Owner: server S Se Ser Serv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 2 :. 2 10 0 0 0 0 1 +The server the T Th The The BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 2 no 0 8 0 0 0 0 1 +identifier. When identifier. i id ide iden BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 2 . 1 9 0 0 0 0 1 +with the with w wi wit with BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 2 , 1 9 0 0 0 0 1 +are the are a ar are are BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 2 ( 1 9 0 0 0 0 1 +connection) and connection) c co con conn BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 2 ) 1 8 0 0 0 0 1 +connections. When connections. c co con conn BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 2 . 1 9 0 0 0 0 1 +identifiers, the identifiers, i id ide iden BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 2 , 1 9 0 0 0 0 1 +associable with associable a as ass asso BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 2 . 1 5 0 0 0 0 1 +Stable Storage: stable S St Sta Stab BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 5 : 1 10 0 0 0 0 1 +an NFSv4.1 an a an an an BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 0 5 . 1 9 0 0 0 0 1 +power failures power p po pow powe BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 0 5 (,, 3 8 0 0 0 0 1 +several power several s se sev seve BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 5 ), 2 9 0 0 0 0 1 +failures, and/or failures, f fa fai fail BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 5 ,/ 2 9 0 0 0 0 1 +storage medium storage s st sto stor BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 5 (,, 3 8 0 0 0 0 1 +memory, etc.). memory, m me mem memo BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 5 ,.). 4 2 0 0 0 0 1 +Some examples some S So Som Some BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 7 no 0 10 0 0 0 0 1 +server include: server s se ser serv BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 7 : 1 2 0 0 0 0 1 +1. Media 1. 1 1. 1. 1. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 7 .;, 3 9 0 0 0 0 1 +successfully written successfully s su suc succ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 7 ,, 2 10 0 0 0 0 1 +platter. platter. platter. p pl pla plat BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 7 . 1 1 0 0 0 0 1 +2. An 2. 2 2. 2. 2. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 8 .-,- 4 10 0 0 0 0 1 +intermediate storage intermediate i in int inte BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 8 (). 3 9 0 0 0 0 1 +3. Server 3. 3 3. 3. 3. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 9 .- 2 10 0 0 0 0 1 +and recovery and a an and and BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 9 . 1 3 0 0 0 0 1 +4. Cache 4. 4 4. 4. 4. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 9 .() 3 10 0 0 0 0 1 +recovery software. recovery r re rec reco BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 9 . 1 3 0 0 0 0 1 +Stateid: A stateid: S St Sta Stat BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 10 :- 2 10 0 0 0 0 1 +uniquely defines uniquely u un uni uniq BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 10 no 0 9 0 0 0 0 1 +server for server s se ser serv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 10 --/- 4 10 0 0 0 0 1 +a specific a a a a a BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 1 0 0 0 0 0 0 10 . 1 5 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 11 , 1 10 0 0 0 0 0 +[Page 12] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 0 0 no 0 4 0 0 0 0 1 +Verifier: A verifier: V Ve Ver Veri BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 :- 2 10 0 0 0 0 1 +that the that t th tha that BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 no 0 9 0 0 0 0 1 +and lost and a an and and BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 . 1 5 0 0 0 0 1 +1.8. Overview 1.8. 1 1. 1.8 1.8. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 1 ... 3 10 0 0 0 0 1 +The major the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 1 .. 2 10 0 0 0 0 1 +This will this T Th Thi This BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 1 no 0 9 0 0 0 0 1 +reader who reader r re rea read BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 1 no 0 10 0 0 0 0 1 +and the and a an and and BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 1 . 1 9 0 0 0 0 1 +to the to t to to to BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 1 , 1 9 0 0 0 0 1 +that is that t th tha that BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 1 . 1 9 0 0 0 0 1 +Data Representation data D Da Dat Data BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 1 ()() 4 9 0 0 0 0 1 +as described as a as as as BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 1 [][]. 5 9 0 0 0 0 1 +distributed file distributed d di dis dist BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 1 . 1 6 0 0 0 0 1 +In general, in I In In In BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 0 4 ,. 2 10 0 0 0 0 1 +features added features f fe fea feat BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 4 no 0 9 0 0 0 0 1 +protocol but protocol p pr pro prot BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 4 ... 3 9 0 0 0 0 1 +for a for f fo for for BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 4 ... 3 8 0 0 0 0 1 +1.8.1. RPC 1.8.1. 1 1. 1.8 1.8. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 5 ... 3 10 0 0 0 0 1 +As with as A As As As BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 5 , 1 9 0 0 0 0 1 +(XDR) and (xdr) ( (X (XD (XDR BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 5 ()(). 5 10 0 0 0 0 1 +protocol are protocol p pr pro prot BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 5 [][].-- 7 8 0 0 0 0 1 +security requirements, security s se sec secu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 0 5 ,[] 3 10 0 0 0 0 1 +the basic the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 5 ., 2 8 0 0 0 0 1 +mechanisms can mechanisms m me mec mech BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 5 ,, 2 9 0 0 0 0 1 +privacy to privacy p pr pri priv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 5 . 1 9 0 0 0 0 1 +[5] to [5] [ [5 [5] [5] BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 5 []., 4 9 0 0 0 0 1 +other mechanisms other o ot oth othe BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 5 .. 2 10 0 0 0 0 1 +To enable to T To To To BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 8 -,. 3 9 0 0 0 0 1 +operations that operations o op ope oper BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 0 8 no 0 9 0 0 0 0 1 +about its about a ab abo abou BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 8 no 0 10 0 0 0 0 1 +for access for f fo for for BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 8 '., 3 9 0 0 0 0 1 +client can client c cl cli clie BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 8 no 0 9 0 0 0 0 1 +policies specified policies p po pol poli BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 8 . 1 7 0 0 0 0 1 +NFSv4.1 introduces nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 9 .(...), 7 9 0 0 0 0 1 +called pNFS. called c ca cal call BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 9 . 1 9 0 0 0 0 1 +significantly modified significantly s si sig sign BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 9 ( 1 8 0 0 0 0 1 +Section 12.9), section S Se Sec Sect BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 9 .),. 4 9 0 0 0 0 1 +level of level l le lev leve BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 9 ( 1 8 0 0 0 0 1 +Section 12.2.5) section S Se Sec Sect BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 9 ..)(.). 7 10 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 11 , 1 10 0 0 0 0 0 +[Page 13] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 0 0 no 0 4 0 0 0 0 1 +1.8.2. Protocol 1.8.2. 1 1. 1.8 1.8. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ... 3 10 0 0 0 0 1 +1.8.2.1. Core 1.8.2.1. 1 1. 1.8 1.8. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 .... 4 10 0 0 0 0 1 +Unlike NFSv3, unlike U Un Unl Unli BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 ,(..,, 6 9 0 0 0 0 1 +NSM (Network nsm N NS NSM NSM BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 (),), 5 9 0 0 0 0 1 +NFSv4 a nfsv4 N NF NFS NFSv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 . 1 9 0 0 0 0 1 +Facilities that facilities F Fa Fac Faci BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 ,, 2 10 0 0 0 0 1 +integrated within integrated i in int inte BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 . 1 6 0 0 0 0 1 +1.8.2.2. Parallel 1.8.2.2. 1 1. 1.8 1.8. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 2 .... 4 10 0 0 0 0 1 +Minor version minor M Mi Min Mino BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 0 2 - 1 9 0 0 0 0 1 +server implementation server s se ser serv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 2 no 0 10 0 0 0 0 1 +data access, data d da dat data BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 2 ,. 2 9 0 0 0 0 1 +Such parallel such S Su Suc Such BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 3 no 0 10 0 0 0 0 1 +as "layouts", as a as as as BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 3 "",. 4 10 0 0 0 0 1 +Clients direct clients C Cl Cli Clie BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 3 no 0 9 0 0 0 0 1 +specified by specified s sp spe spec BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 3 no 0 9 0 0 0 0 1 +NFSv4.1 or nfsv4.1 N NF NFS NFSv BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 3 .. 2 5 0 0 0 0 1 +Because the because B Be Bec Beca BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 5 no 0 8 0 0 0 0 1 +necessarily RPC-based, necessarily n ne nec nece BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 5 -,-(..) 7 10 0 0 0 0 1 +is obviously is i is is is BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 5 (.). 4 9 0 0 0 0 1 +varies with varies v va var vari BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 5 (..) 4 10 0 0 0 0 1 +access, and access, a ac acc acce BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 5 ,(.). 5 8 0 0 0 0 1 +1.8.3. File 1.8.3. 1 1. 1.8 1.8. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 7 ... 3 10 0 0 0 0 1 +The general the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 7 . 1 9 0 0 0 0 1 +same as same s sa sam same BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 7 . 1 9 0 0 0 0 1 +with the with w wi wit with BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 7 no 0 10 0 0 0 0 1 +streams. In streams. s st str stre BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 7 ., 2 10 0 0 0 0 1 +with UTF-8 with w wi wit with BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 7 -. 2 8 0 0 0 0 1 +The NFSv4.1 the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 9 . 1 9 0 0 0 0 1 +for the for f fo for for BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 9 . 1 9 0 0 0 0 1 +systems exported systems s sy sys syst BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 0 9 no 0 10 0 0 0 0 1 +systems are systems s sy sys syst BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 0 9 - 1 8 0 0 0 0 1 +filehandle. This filehandle. f fi fil file BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 9 . 1 9 0 0 0 0 1 +functions previously functions f fu fun func BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 9 . 1 9 0 0 0 0 1 +provides any provides p pr pro prov BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 9 no 0 9 0 0 0 0 1 +arise due arise a ar ari aris BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 9 . 1 8 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 11 , 1 10 0 0 0 0 0 +[Page 14] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 0 0 no 0 4 0 0 0 0 1 +1.8.3.1. Filehandles 1.8.3.1. 1 1. 1.8 1.8. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 .... 4 10 0 0 0 0 1 +As in as A As As As BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 , 1 9 0 0 0 0 1 +used to used u us use used BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 .- 2 9 0 0 0 0 1 +create operations create c cr cre crea BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 , 1 10 0 0 0 0 1 +which are which w wh whi whic BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 . 1 9 0 0 0 0 1 +The NFSv4.1 the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 1 ., 2 9 0 0 0 0 1 +guaranteed to guaranteed g gu gua guar BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 1 no 0 9 0 0 0 0 1 +designated. In designated. d de des desi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 1 ., 2 10 0 0 0 0 1 +filehandles with filehandles f fi fil file BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 1 , 1 10 0 0 0 0 1 +filehandles. filehandles. filehandles. f fi fil file BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 1 . 1 1 0 0 0 0 1 +1.8.3.2. File 1.8.3.2. 1 1. 1.8 1.8. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 3 .... 4 10 0 0 0 0 1 +The NFSv4.1 the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 3 . 1 10 0 0 0 0 1 +structure, which structure, s st str stru BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 3 ,,, 3 9 0 0 0 0 1 +attributes (see attributes a at att attr BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 3 (). 3 4 0 0 0 0 1 +Several (but several S Se Sev Seve BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 4 () 2 10 0 0 0 0 1 +attributes of attributes a at att attr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 4 ( 1 9 0 0 0 0 1 +[34]). An [34]). [ [3 [34 [34] BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 4 []).' 5 9 0 0 0 0 1 +(Section 5.8.1.2) (section ( (S (Se (Sec BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 4 (...) 5 9 0 0 0 0 1 +directories (also directories d di dir dire BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 4 () 2 9 0 0 0 0 1 +and other and a an and and BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 4 . 1 9 0 0 0 0 1 +Section 5.1. section S Se Sec Sect BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 4 .. 2 1 0 0 0 0 1 +An example an A An An An BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 0 6 ,,. 3 9 0 0 0 0 1 +These attributes these T Th The Thes BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 6 () 2 10 0 0 0 0 1 +(Section 6). (section ( (S (Se (Sec BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 6 (). 3 9 0 0 0 0 1 +beyond the beyond b be bey beyo BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 6 . 1 8 0 0 0 0 1 +specification of specification s sp spe spec BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 6 no 0 9 0 0 0 0 1 +and groups. and a an and and BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 6 ., 2 9 0 0 0 0 1 +access permissions access a ac acc acce BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 6 no 0 9 0 0 0 0 1 +system objects system s sy sys syst BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 6 . 1 9 0 0 0 0 1 +Section 5.2. section S Se Sec Sect BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 6 .. 2 1 0 0 0 0 1 +A named a A A A A BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 1 0 0 0 0 0 0 9 no 0 10 0 0 0 0 1 +directory or directory d di dir dire BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 9 . 1 10 0 0 0 0 1 +are meant are a ar are are BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 9 no 0 10 0 0 0 0 1 +application-specific data application-specific a ap app appl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 9 -.. 3 9 0 0 0 0 1 +modifies named modifies m mo mod modi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 9 . 1 9 0 0 0 0 1 +allowed operations allowed a al all allo BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 9 - 1 8 0 0 0 0 1 +interoperable implementations. interoperable i in int inte BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 9 . 1 9 0 0 0 0 1 +Section 5.3. section S Se Sec Sect BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 9 .. 2 1 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 11 , 1 10 0 0 0 0 0 +[Page 15] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 0 0 no 0 4 0 0 0 0 1 +1.8.3.3. Multi-Server 1.8.3.3. 1 1. 1.8 1.8. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ....- 5 10 0 0 0 0 1 +NFSv4.1 contains nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 . 1 9 0 0 0 0 1 +namespaces that namespaces n na nam name BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 0 no 0 10 0 0 0 0 1 +a non-disruptive a a a a a BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 1 0 0 0 0 0 0 0 - 1 9 0 0 0 0 1 +between servers. between b be bet betw BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 . 1 9 0 0 0 0 1 +file system file f fi fil file BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 ,, 2 9 0 0 0 0 1 +information that information i in inf info BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 no 0 9 0 0 0 0 1 +system. system. system. s sy sys syst BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 . 1 1 0 0 0 0 1 +These attributes these T Th The Thes BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 2 no 0 10 0 0 0 0 1 +systems: systems: systems: s sy sys syst BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 2 : 1 1 0 0 0 0 1 +o Alternate o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 0 3 no 0 10 0 0 0 0 1 +instance. instance. instance. i in ins inst BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 3 . 1 1 0 0 0 0 1 +o The o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 0 3 no 0 10 0 0 0 0 1 +used in used u us use used BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 3 no 0 9 0 0 0 0 1 +unavailable. unavailable. unavailable. u un una unav BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 3 . 1 1 0 0 0 0 1 +These file these T Th The Thes BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 4 no 0 9 0 0 0 0 1 +concept of concept c co con conc BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 4 , 1 9 0 0 0 0 1 +namespace is namespace n na nam name BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 4 no 0 10 0 0 0 0 1 +being any being b be bei bein BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 4 . 1 9 0 0 0 0 1 +For example, for F Fo For For BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 4 , 1 1 0 0 0 0 1 +o These o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 0 6 no 0 10 0 0 0 0 1 +referrals whereby referrals r re ref refe BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 6 no 0 8 0 0 0 0 1 +system provided system s sy sys syst BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 6 .- 2 9 0 0 0 0 1 +server namespaces server s se ser serv BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 6 . 1 5 0 0 0 0 1 +o These o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 0 7 no 0 10 0 0 0 0 1 +system becomes system s sy sys syst BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 7 .- 2 9 0 0 0 0 1 +file systems file f fi fil file BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 7 . 1 5 0 0 0 0 1 +1.8.4. Locking 1.8.4. 1 1. 1.8 1.8. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 8 ... 3 10 0 0 0 0 1 +As mentioned as A As As As BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 8 ,. 2 9 0 0 0 0 1 +locking facilities. locking l lo loc lock BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 8 . 1 9 0 0 0 0 1 +many types many m ma man many BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 0 8 . 1 10 0 0 0 0 1 +Recallable locks recallable R Re Rec Reca BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 8 no 0 9 0 0 0 0 1 +that certain that t th tha that BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 8 . 1 9 0 0 0 0 1 +When circumstances when W Wh Whe When BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 8 , 1 9 0 0 0 0 1 +request. The request. r re req requ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 8 . 1 10 0 0 0 0 1 +caching to caching c ca cac cach BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 8 . 1 7 0 0 0 0 1 +The types the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 11 : 1 10 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 11 , 1 10 0 0 0 0 0 +[Page 16] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 0 0 no 0 4 0 0 0 0 1 +o Share o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 0 0 . 1 10 0 0 0 0 1 +o Byte-range o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 0 0 -. 2 10 0 0 0 0 1 +o File o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 0 0 , 1 9 0 0 0 0 1 +holder that holder h ho hol hold BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 0 0 no 0 10 0 0 0 0 1 +long as long l lo lon long BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 0 0 . 1 5 0 0 0 0 1 +o Directory o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 0 1 , 1 10 0 0 0 0 1 +holder that holder h ho hol hold BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 0 1 no 0 9 0 0 0 0 1 +long as long l lo lon long BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 0 1 . 1 4 0 0 0 0 1 +o Layouts, o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 0 2 , 1 10 0 0 0 0 1 +direct access direct d di dir dire BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 2 no 0 9 0 0 0 0 1 +client and client c cl cli clie BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 2 ' 1 8 0 0 0 0 1 +inconsistent with inconsistent i in inc inco BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 2 no 0 9 0 0 0 0 1 +held. held. held. h he hel held BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 2 . 1 0 0 0 0 0 1 +All locks all A Al All All BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 4 - 1 10 0 0 0 0 1 +wide lease. wide w wi wid wide BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 4 . 1 10 0 0 0 0 1 +renew that renew r re ren rene BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 4 .', 3 9 0 0 0 0 1 +the client's the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 4 '. 2 10 0 0 0 0 1 +restart, clients restart, r re res rest BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 4 , 1 9 0 0 0 0 1 +within a within w wi wit with BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 4 . 1 4 0 0 0 0 1 +1.9. Differences 1.9. 1 1. 1.9 1.9. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 7 ... 3 10 0 0 0 0 1 +The following the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 7 no 0 10 0 0 0 0 1 +1 and 1 1 1 1 1 BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 0 7 : 1 3 0 0 0 0 1 +o Implementation o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 0 7 (.). 4 10 0 0 0 0 1 +o Parallel o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 0 8 (). 3 10 0 0 0 0 1 +o Addition o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 0 8 no 0 10 0 0 0 0 1 +lock reclamation lock l lo loc lock BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 0 8 (.). 4 6 0 0 0 0 1 +o Enhanced o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 0 9 . 1 10 0 0 0 0 1 +* Delegations * * * * * BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 9 * 1 10 0 0 0 0 1 +regular files regular r re reg regu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 9 (.,.). 6 7 0 0 0 0 1 +* Operations * * * * * BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 10 * 1 10 0 0 0 0 1 +delegations (Section delegations d de del dele BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 10 (.,.,.). 8 9 0 0 0 0 1 +* Notifications * * * * * BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 10 * 1 10 0 0 0 0 1 +(Section 18.39, (section ( (S (Se (Sec BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 10 (.,.). 6 5 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 11 , 1 10 0 0 0 0 0 +[Page 17] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 0 0 no 0 4 0 0 0 0 1 +* A * * * * * BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 * 1 10 0 0 0 0 1 +or more or o or or or BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 , 1 9 0 0 0 0 1 +method to method m me met meth BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 no 0 9 0 0 0 0 1 +(Section 20.6). (section ( (S (Se (Sec BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 0 (.). 4 2 0 0 0 0 1 +o Attributes o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 0 1 no 0 10 0 0 0 0 1 +the OPEN the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 1 ( 1 9 0 0 0 0 1 +Section 18.16). section S Se Sec Sect BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 1 .). 3 2 0 0 0 0 1 +o Open o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 0 2 no 0 9 0 0 0 0 1 +("hard link" ("hard ( (" ("h ("ha BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 2 (""[]) 6 9 0 0 0 0 1 +zero, thus zero, z ze zer zero BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 2 , 1 10 0 0 0 0 1 +to partially to t to to to BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 2 --"" 4 9 0 0 0 0 1 +(see the (see ( (s (se (see BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 2 ( 1 8 0 0 0 0 1 +Section 18.16). section S Se Sec Sect BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 2 .). 3 2 0 0 0 0 1 +o Improved o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 0 5 no 0 10 0 0 0 0 1 +Lists (Section lists L Li Lis List BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 5 (..,..,...). 12 8 0 0 0 0 1 +o Data o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 0 6 (.). 4 10 0 0 0 0 1 +o Identification o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 0 6 no 0 10 0 0 0 0 1 +(Section 18.35). (section ( (S (Se (Sec BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 6 (.). 4 2 0 0 0 0 1 +o Support o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 0 7 - 1 10 0 0 0 0 1 +(see the (see ( (s (se (see BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 7 ( 1 8 0 0 0 0 1 +Section 18.16 section S Se Sec Sect BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 7 ..). 4 5 0 0 0 0 1 +o In o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 0 8 .,- 3 10 0 0 0 0 1 +[35]. [35]. [35]. [ [3 [35 [35] BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 8 []. 3 0 0 0 0 0 1 +2. Core 2. 2 2. 2. 2. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 8 . 1 10 0 0 0 0 1 +2.1. Introduction 2.1. 2 2. 2.1 2.1. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 8 .. 2 10 0 0 0 0 1 +NFSv4.1 relies nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 9 . 1 8 0 0 0 0 1 +operation. This operation. o op ope oper BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 9 . 1 10 0 0 0 0 1 +this section. this t th thi this BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 9 . 1 2 0 0 0 0 1 +2.2. RPC 2.2. 2 2. 2.2 2.2. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 10 .. 2 10 0 0 0 0 1 +The NFSv4.1 the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 10 .() 3 10 0 0 0 0 1 +that uses that t th tha that BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 10 no 0 9 0 0 0 0 1 +Representation (XDR) representation R Re Rep Repr BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 10 ()[][]. 7 7 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 11 , 1 10 0 0 0 0 0 +[Page 18] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 0 0 no 0 4 0 0 0 0 1 +2.2.1. RPC-Based 2.2.1. 2 2. 2.2 2.2. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ...- 4 10 0 0 0 0 1 +Previous NFS previous P Pr Pre Prev BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 - 1 9 0 0 0 0 1 +authentication model, authentication a au aut auth BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 0 , 1 9 0 0 0 0 1 +client, and client, c cl cli clie BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 ,., 3 9 0 0 0 0 1 +NFS has nfs N NF NFS NFS BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 . 1 9 0 0 0 0 1 +forms of forms f fo for form BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 ,, 2 9 0 0 0 0 1 +and required and a an and and BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 -.. 3 9 0 0 0 0 1 +depends on depends d de dep depe BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 no 0 9 0 0 0 0 1 +for a for f fo for for BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 -.- 3 10 0 0 0 0 1 +model has model m mo mod mode BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 , 1 10 0 0 0 0 1 +server authenticated server s se ser serv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 0 . 1 9 0 0 0 0 1 +security services security s se sec secu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 0 0 .. 2 6 0 0 0 0 1 +2.2.1.1. RPC 2.2.1.1. 2 2. 2.2 2.2. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 3 .... 4 10 0 0 0 0 1 +As described as A As As As BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 3 .("")[], 8 9 0 0 0 0 1 +is encapsulated is i is is is BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 3 , 1 9 0 0 0 0 1 +flavor, and flavor, f fl fla flav BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 3 ,. 2 9 0 0 0 0 1 +Every RPC every E Ev Eve Ever BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 3 no 0 8 0 0 0 0 1 +authenticate a authenticate a au aut auth BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 3 ....., 6 10 0 0 0 0 1 +some security some s so som some BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 3 . 1 8 0 0 0 0 1 +NFSv4.1 clients nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 5 ..( 3 8 0 0 0 0 1 +requirement to requirement r re req requ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 5 .) 2 8 0 0 0 0 1 +flavors, such flavors, f fl fla flav BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 5 ,,. 3 10 0 0 0 0 1 +2.2.1.1.1. RPCSEC_GSS 2.2.1.1.1. 2 2. 2.2 2.2. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 6 ..... 5 10 0 0 0 0 1 +RPCSEC_GSS [4] rpcsec_gss R RP RPC RPCS BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 7 []-[]. 6 9 0 0 0 0 1 +for the for f fo for for BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 7 no 0 10 0 0 0 0 1 +the additional the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 7 no 0 9 0 0 0 0 1 +flavors. flavors. flavors. f fl fla flav BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 7 . 1 1 0 0 0 0 1 +2.2.1.1.1.1. Identification, 2.2.1.1.1.1. 2 2. 2.2 2.2. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 8 ......,,, 9 10 0 0 0 0 1 +Via the via V Vi Via Via BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 8 -, 2 10 0 0 0 0 1 +users on users u us use user BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 8 ,. 2 9 0 0 0 0 1 +perform integrity perform p pe per perf BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 8 , 1 9 0 0 0 0 1 +RPC header, rpc R RP RPC RPC BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 8 ,.,, 4 9 0 0 0 0 1 +usually via usually u us usu usua BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 8 ,. 2 9 0 0 0 0 1 +Privacy is privacy P Pr Pri Priv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 8 . 1 9 0 0 0 0 1 +privacy is privacy p pr pri priv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 8 ,,, 3 9 0 0 0 0 1 +are enabled. are a ar are are BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 8 .,, 3 9 0 0 0 0 1 +authentication and authentication a au aut auth BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 8 . 1 9 0 0 0 0 1 +privacy are privacy p pr pri priv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 8 ,, 2 8 0 0 0 0 1 +identification is identification i id ide iden BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 8 . 1 7 0 0 0 0 1 +identification as identification i id ide iden BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 8 . 1 5 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 11 , 1 10 0 0 0 0 0 +[Page 19] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 0 0 no 0 4 0 0 0 0 1 +Although GSS-API although A Al Alt Alth BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 - 1 9 0 0 0 0 1 +privacy and privacy p pr pri priv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 ,-' 3 10 0 0 0 0 1 +not used not n no not not BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 '., 3 10 0 0 0 0 1 +request and request r re req requ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 - 1 10 0 0 0 0 1 +integrity service, integrity i in int inte BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 ,- 2 9 0 0 0 0 1 +authentication and authentication a au aut auth BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 0 .[]. 4 8 0 0 0 0 1 +NFSv4.1 client nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 2 .' 2 9 0 0 0 0 1 +authentication service. authentication a au aut auth BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 2 ..' 3 9 0 0 0 0 1 +privacy service. privacy p pr pri priv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 2 ..' 3 10 0 0 0 0 1 +service. service. service. s se ser serv BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 2 . 1 1 0 0 0 0 1 +2.2.1.1.1.2. Security 2.2.1.1.1.2. 2 2. 2.2 2.2. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 3 ....... 7 10 0 0 0 0 1 +RPCSEC_GSS, via rpcsec_gss, R RP RPC RPCS BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 3 ,-, 3 10 0 0 0 0 1 +security services. security s se sec secu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 0 3 .,. 3 9 0 0 0 0 1 +support the support s su sup supp BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 0 3 . 1 6 0 0 0 0 1 +The use the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 4 , 1 9 0 0 0 0 1 +protection (QOP), protection p pr pro prot BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 4 (),(,,). 8 9 0 0 0 0 1 +For the for F Fo For For BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 4 ,. 2 10 0 0 0 0 1 +zero is zero z ze zer zero BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 4 ,' 2 9 0 0 0 0 1 +configuration to configuration c co con conf BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 4 . 1 9 0 0 0 0 1 +Each mandated each E Ea Eac Each BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 4 no 0 9 0 0 0 0 1 +algorithms for algorithms a al alg algo BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 4 .. 2 9 0 0 0 0 1 +and servers and a an and and BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 4 no 0 10 0 0 0 0 1 +with the with w wi wit with BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 4 no 0 8 0 0 0 0 1 +mechanism. mechanism. mechanism. m me mec mech BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 4 . 1 1 0 0 0 0 1 +2.2.1.1.1.2.1. Kerberos 2.2.1.1.1.2.1. 2 2. 2.2 2.2. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 7 ....... 7 10 0 0 0 0 1 +The Kerberos the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 7 -[] 3 10 0 0 0 0 1 +implemented with implemented i im imp impl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 7 no 0 9 0 0 0 0 1 +following table: following f fo fol foll BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 7 : 1 2 0 0 0 0 1 +column descriptions: column c co col colu BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 8 : 1 6 0 0 0 0 1 +1 == 1 1 1 1 1 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 0 8 no 0 8 0 0 0 0 1 +2 == 2 2 2 2 2 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 0 8 no 0 7 0 0 0 0 1 +3 == 3 3 3 3 3 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 0 8 ' 1 6 0 0 0 0 1 +4 == 4 4 4 4 4 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 0 8 no 0 7 0 0 0 0 1 +5 == 5 5 5 5 5 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 0 8 . 1 10 0 0 0 0 1 +6 == 6 6 6 6 6 BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 0 8 . 1 10 0 0 0 0 1 +1 1 1 1 1 1 1 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 0 9 no 0 0 0 0 0 0 1 +2 2 2 2 2 2 2 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 0 9 no 0 0 0 0 0 0 1 +3 3 3 3 3 3 3 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 0 9 no 0 0 0 0 0 0 1 +4 4 4 4 4 4 4 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 0 9 no 0 0 0 0 0 0 1 +5 5 5 5 5 5 5 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 0 9 no 0 0 0 0 0 0 1 +6 6 6 6 6 6 6 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 0 9 no 0 0 0 0 0 0 1 +------------------------------------------------------------------ ------------------------------------------------------------------ ------------------------------------------------------------------ - -- --- ---- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 9 ------------------------------------------------------------------ 66 10 0 0 0 0 1 +390003 krb5 390003 3 39 390 3900 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 0 0 0 0 0 0 0 0 0 9 no 0 1 0 0 0 0 1 +1.2.840.113554.1.2.2 rpc_gss_svc_none 1.2.840.113554.1.2.2 1 1. 1.2 1.2. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 1 0 0 0 0 9 ...... 6 5 0 0 0 0 1 +yes yes yes y ye yes yes BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 9 no 0 1 0 0 0 0 1 +390004 krb5i 390004 3 39 390 3900 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 0 0 0 0 0 0 0 0 0 9 no 0 1 0 0 0 0 1 +1.2.840.113554.1.2.2 rpc_gss_svc_integrity 1.2.840.113554.1.2.2 1 1. 1.2 1.2. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 1 0 0 0 0 9 ...... 6 7 0 0 0 0 1 +390005 krb5p 390005 3 39 390 3900 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 0 0 0 0 0 0 0 0 0 9 no 0 1 0 0 0 0 1 +1.2.840.113554.1.2.2 rpc_gss_svc_privacy 1.2.840.113554.1.2.2 1 1. 1.2 1.2. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 1 0 0 0 0 9 ...... 6 6 0 0 0 0 1 +no yes no n no no no BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 9 no 0 1 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 11 , 1 10 0 0 0 0 0 +[Page 20] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 0 0 no 0 4 0 0 0 0 1 +Note that note N No Not Note BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 no 0 10 0 0 0 0 1 +as a as a as as as BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 .. 2 9 0 0 0 0 1 +includes a includes i in inc incl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 - 1 9 0 0 0 0 1 +API mechanism, api A AP API API BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 ,. 2 9 0 0 0 0 1 +needed for needed n ne nee need BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 no 0 9 0 0 0 0 1 +MOUNT protocol mount M MO MOU MOUN BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 1 1 0 0 0 0 0 0 0 []. 3 5 0 0 0 0 1 +At the at A At At At BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 2 ., 2 9 0 0 0 0 1 +(AES) with (aes) ( (A (AE (AES BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 2 ()-. 4 9 0 0 0 0 1 +In contrast, in I In In In BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 0 2 ,., 3 9 0 0 0 0 1 +REQUIRED for required R RE REQ REQU BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 0 2 ,. 2 8 0 0 0 0 1 +specification, because specification, s sp spe spec BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 2 , 1 10 0 0 0 0 1 +not specify not n no not not BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 2 .. 2 9 0 0 0 0 1 +specify REQUIRED specify s sp spe spec BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 2 ,, 2 8 0 0 0 0 1 +implementor is implementor i im imp impl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 2 no 0 9 0 0 0 0 1 +standard if standard s st sta stan BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 2 . 1 8 0 0 0 0 1 +2.2.1.1.1.2.1.1. Security 2.2.1.1.1.2.1.1. 2 2. 2.2 2.2. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 6 ........ 8 10 0 0 0 0 1 +in Kerberos in i in in in BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 0 6 no 0 2 0 0 0 0 1 +When deploying when W Wh Whe When BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 6 ., 2 10 0 0 0 0 1 +on the on o on on on BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 6 . 1 8 0 0 0 0 1 +Kerberos V5 kerberos K Ke Ker Kerb BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 6 no 0 9 0 0 0 0 1 +or server, or o or or or BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 6 , 1 9 0 0 0 0 1 +NFSv4.1 to nfsv4.1 N NF NFS NFSv BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 6 .. 2 8 0 0 0 0 1 +2.2.1.1.1.3. GSS 2.2.1.1.1.3. 2 2. 2.2 2.2. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 8 ...... 6 10 0 0 0 0 1 +Regardless of regardless R Re Reg Rega BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 9 , 1 10 0 0 0 0 1 +the NFS the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 9 - 1 7 0 0 0 0 1 +GSS_C_NT_HOSTBASED_SERVICE name gss_c_nt_hostbased_service G GS GSS GSS_ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 9 . 1 9 0 0 0 0 1 +names are names n na nam name BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 9 : 1 3 0 0 0 0 1 +service@hostname service@hostname service@hostname s se ser serv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 10 no 0 10 0 0 0 0 1 +For NFS, for F Fo For For BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 10 ,"" 3 10 0 0 0 0 1 +nfs nfs nfs n nf nfs nfs BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 10 no 0 10 0 0 0 0 1 +Implementations of implementations I Im Imp Impl BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 10 no 0 10 0 0 0 0 1 +various different various v va var vari BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 10 ., 2 9 0 0 0 0 1 +RECOMMENDED: RECOMMENDED: recommended: R RE REC RECO BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 0 10 : 1 1 0 0 0 0 1 +nfs/hostname nfs/hostname nfs/hostname n nf nfs nfs/ BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 11 / 1 10 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 11 , 1 10 0 0 0 0 0 +[Page 21] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 0 0 no 0 4 0 0 0 0 1 +2.3. COMPOUND 2.3. 2 2. 2.3 2.3. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 .. 2 10 0 0 0 0 1 +A significant a A A A A BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 1 0 0 0 0 0 0 0 no 0 10 0 0 0 0 1 +NFSv4 is nfsv4 N NF NFS NFSv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 . 1 9 0 0 0 0 1 +protocol, in protocol, p pr pro prot BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 ,, 2 8 0 0 0 0 1 +procedures, NULL procedures, p pr pro proc BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 ,. 2 9 0 0 0 0 1 +a series a a a a a BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 1 0 0 0 0 0 0 0 no 0 9 0 0 0 0 1 +sorts of sorts s so sor sort BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 . 1 8 0 0 0 0 1 +The operations the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 2 no 0 9 0 0 0 0 1 +order by order o or ord orde BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 2 ,. 2 10 0 0 0 0 1 +of facilities of o of of of BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 2 . 1 9 0 0 0 0 1 +Once an once O On Onc Once BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 2 , 1 9 0 0 0 0 1 +the results the t th the the BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 2 . 1 9 0 0 0 0 1 +With the with W Wi Wit With BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 4 , 1 9 0 0 0 0 1 +simple or simple s si sim simp BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 4 . 1 9 0 0 0 0 1 +reduction in reduction r re red redu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 4 no 0 9 0 0 0 0 1 +operations. For operations. o op ope oper BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 4 .,- 3 9 0 0 0 0 1 +constructed by constructed c co con cons BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 4 . 1 9 0 0 0 0 1 +further combined further f fu fur furt BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 4 ,, 2 9 0 0 0 0 1 +plus READ plus p pl plu plus BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 4 no 0 10 0 0 0 0 1 +additional latency. additional a ad add addi BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 4 . 1 2 0 0 0 0 1 +NFSv4.1 also nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 6 . 1 9 0 0 0 0 1 +which the which w wh whi whic BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 6 . 1 9 0 0 0 0 1 +have a have h ha hav have BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 6 . 1 9 0 0 0 0 1 +all minor all a al all all BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 6 , 1 10 0 0 0 0 1 +procedures: CB_NULL procedures: p pr pro proc BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 6 :. 2 9 0 0 0 0 1 +defined in defined d de def defi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 6 no 0 10 0 0 0 0 1 +of callback of o of of of BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 6 . 1 3 0 0 0 0 1 +The addition the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 8 no 0 9 0 0 0 0 1 +COMPOUND and compound C CO COM COMP BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 0 8 no 0 10 0 0 0 0 1 +extending the extending e ex ext exte BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 8 . 1 8 0 0 0 0 1 +Except for except E Ex Exc Exce BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 9 , 1 10 0 0 0 0 1 +server requests server s se ser serv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 9 no 0 9 0 0 0 0 1 +context of context c co con cont BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 9 . 1 9 0 0 0 0 1 +request and request r re req requ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 9 - 1 9 0 0 0 0 1 +requests. requests. requests. r re req requ BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 9 . 1 1 0 0 0 0 1 +2.4. Client 2.4. 2 2. 2.4 2.4. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 10 .. 2 10 0 0 0 0 1 +For each for F Fo For For BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 11 , 1 10 0 0 0 0 1 +specific client specific s sp spe spec BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 11 . 1 8 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 11 , 1 10 0 0 0 0 0 +[Page 22] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 0 0 no 0 4 0 0 0 0 1 +Each distinct each E Ea Eac Each BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 . 1 9 0 0 0 0 1 +client ID client c cl cli clie BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 - 1 10 0 0 0 0 1 +given time. given g gi giv give BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 .- 2 8 0 0 0 0 1 +initializes, and initializes, i in ini init BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 ,-. 3 9 0 0 0 0 1 +IDs are ids I ID IDs IDs BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 . 1 9 0 0 0 0 1 +During steady during D Du Dur Duri BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 1 , 1 9 0 0 0 0 1 +operation is operation o op ope oper BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 1 (.) 3 10 0 0 0 0 1 +operation is operation o op ope oper BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 1 . 1 9 0 0 0 0 1 +session is session s se ses sess BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 1 . 1 2 0 0 0 0 1 +Unlike NFSv4.0, unlike U Un Unl Unli BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 3 .,. 3 10 0 0 0 0 1 +ID is id I ID ID ID BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 1 0 0 0 0 0 0 0 3 . 1 9 0 0 0 0 1 +A sequence a A A A A BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 1 0 0 0 0 0 0 3 no 0 9 0 0 0 0 1 +operation using operation o op ope oper BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 3 ( 1 8 0 0 0 0 1 +EXCHANGE_ID) is exchange_id) E EX EXC EXCH BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 3 ) 1 9 0 0 0 0 1 +the server. the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 3 . 1 9 0 0 0 0 1 +the client the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 3 no 0 9 0 0 0 0 1 +state that state s st sta stat BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 3 no 0 9 0 0 0 0 1 +on the on o on on on BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 3 .- 2 9 0 0 0 0 1 +lock, share lock, l lo loc lock BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 3 ,,,-- 5 8 0 0 0 0 1 +supports neither supports s su sup supp BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 3 no 0 10 0 0 0 0 1 +types --all types t ty typ type BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 3 -- 2 9 0 0 0 0 1 +the same the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 3 ., 2 9 0 0 0 0 1 +Section 10.2.1. section S Se Sec Sect BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 3 ..., 4 8 0 0 0 0 1 +Section 12.7.1. section S Se Sec Sect BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 3 ... 3 2 0 0 0 0 1 +Releasing such releasing R Re Rel Rele BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 7 no 0 9 0 0 0 0 1 +that one that t th tha that BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 7 . 1 9 0 0 0 0 1 +cannot be cannot c ca can cann BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 7 ,, 2 9 0 0 0 0 1 +will remain will w wi wil will BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 0 7 (.) 3 9 0 0 0 0 1 +and the and a an and and BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 7 , 1 10 0 0 0 0 1 +it makes it i it it it BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 7 . 1 5 0 0 0 0 1 +Client identification client C Cl Cli Clie BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 9 no 0 10 0 0 0 0 1 +data type: data d da dat data BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 9 : 1 1 0 0 0 0 1 +struct client_owner4 struct s st str stru BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 9 no 0 7 0 0 0 0 1 +verifier4 verifier4 verifier4 v ve ver veri BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 9 no 0 3 0 0 0 0 1 +co_verifier; co_verifier; co_verifier; c co co_ co_v BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 9 ; 1 4 0 0 0 0 1 +opaque opaque opaque o op opa opaq BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 9 no 0 2 0 0 0 0 1 +co_ownerid<NFS4_OPAQUE_LIMIT>; co_ownerid<NFS4_OPAQUE_LIMIT>; co_ownerid<nfs4_opaque_limit>; c co co_ co_o BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 9 ; 1 10 0 0 0 0 1 +}; }; }; } }; }; }; BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 9 ; 1 0 0 0 0 0 1 +The first the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 10 ,,. 3 9 0 0 0 0 1 +server will server s se ser serv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 10 ' 1 10 0 0 0 0 1 +if co_verifier if i if if if BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 10 no 0 9 0 0 0 0 1 +recorded for recorded r re rec reco BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 10 ( 1 9 0 0 0 0 1 +field). field). field). f fi fie fiel BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 10 ). 2 1 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 11 , 1 10 0 0 0 0 0 +[Page 23] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 0 0 no 0 4 0 0 0 0 1 +The second the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 ,, 2 9 0 0 0 0 1 +uniquely defines uniquely u un uni uniq BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 no 0 10 0 0 0 0 1 +client bear client c cl cli clie BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 . 1 8 0 0 0 0 1 +There are there T Th The Ther BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 1 no 0 10 0 0 0 0 1 +co_ownerid string: co_ownerid c co co_ co_o BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 1 : 1 2 0 0 0 0 1 +o The o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 0 1 no 0 9 0 0 0 0 1 +present the present p pr pre pres BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 1 . 1 8 0 0 0 0 1 +presenting the presenting p pr pre pres BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 1 no 0 10 0 0 0 0 1 +to one to t to to to BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 1 no 0 9 0 0 0 0 1 +cancelled. cancelled. cancelled. c ca can canc BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 1 . 1 1 0 0 0 0 1 +o The o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 0 3 no 0 10 0 0 0 0 1 +(e.g., restarts) (e.g., ( (e (e. (e.g BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 3 (..,) 5 10 0 0 0 0 1 +the same the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 3 . 1 9 0 0 0 0 1 +that requires that t th tha that BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 3 no 0 10 0 0 0 0 1 +this precludes this t th thi this BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 3 no 0 9 0 0 0 0 1 +where there where w wh whe wher BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 3 no 0 9 0 0 0 0 1 +NFSv4.1 server. nfsv4.1 N NF NFS NFSv BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 3 .. 2 2 0 0 0 0 1 +o The o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 0 5 no 0 10 0 0 0 0 1 +the client the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 5 ., 2 8 0 0 0 0 1 +interfaces, the interfaces, i in int inte BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 5 , 1 9 0 0 0 0 1 +paths as paths p pa pat path BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 5 ...(: 5 9 0 0 0 0 1 +was advised was w wa was was BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 5 .[].) 5 6 0 0 0 0 1 +o The o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 0 7 no 0 10 0 0 0 0 1 +client's network client's c cl cli clie BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 7 ', 2 8 0 0 0 0 1 +implementation knows implementation i im imp impl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 7 no 0 8 0 0 0 0 1 +addresses. This addresses. a ad add addr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 7 . 1 9 0 0 0 0 1 +even changes even e ev eve even BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 7 no 0 8 0 0 0 0 1 +incarnation. Thus, incarnation. i in inc inca BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 7 .,, 3 9 0 0 0 0 1 +includes just includes i in inc incl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 7 ' 1 8 0 0 0 0 1 +string, there string, s st str stri BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 7 , 1 9 0 0 0 0 1 +network address, network n ne net netw BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 0 7 ,, 2 9 0 0 0 0 1 +generating the generating g ge gen gene BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 7 , 1 9 0 0 0 0 1 +co_ownerid string. co_ownerid c co co_ co_o BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 7 . 1 2 0 0 0 0 1 +Given the given G Gi Giv Give BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 10 ,- 2 10 0 0 0 0 1 +co_ownerid string co_ownerid c co co_ co_o BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 10 : 1 6 0 0 0 0 1 +o If o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 0 10 ,'. 3 10 0 0 0 0 1 +o Additional o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 0 11 , 1 10 0 0 0 0 1 +more of: more m mo mor more BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 11 : 1 1 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 11 , 1 10 0 0 0 0 0 +[Page 24] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 0 0 no 0 4 0 0 0 0 1 +* The * * * * * BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 *'(, 4 10 0 0 0 0 1 +best to best b be bes best BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 -). 3 9 0 0 0 0 1 +* A * * * * * BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 *()(,- 6 10 0 0 0 0 1 +should be should s sh sho shou BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 ). 2 3 0 0 0 0 1 +* The * * * * * BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 1 *. 2 10 0 0 0 0 1 +on the on o on on on BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 1 ( 1 8 0 0 0 0 1 +mentioned caution mentioned m me men ment BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 1 no 0 9 0 0 0 0 1 +file, because file, f fi fil file BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 1 ,.). 4 9 0 0 0 0 1 +* A * * * * * BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 2 *., 3 10 0 0 0 0 1 +the same the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 2 , 1 9 0 0 0 0 1 +problem as problem p pr pro prob BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 2 no 0 8 0 0 0 0 1 +installation. installation. installation. i in ins inst BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 2 . 1 2 0 0 0 0 1 +o For o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 0 3 -., 3 9 0 0 0 0 1 +information to information i in inf info BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 3 - 1 9 0 0 0 0 1 +clients running clients c cl cli clie BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 3 , 1 10 0 0 0 0 1 +other unique other o ot oth othe BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 3 . 1 3 0 0 0 0 1 +The client the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 4 ( 1 10 0 0 0 0 1 +EXCHANGE_ID) and exchange_id) E EX EXC EXCH BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 4 ) 1 10 0 0 0 0 1 +client ID client c cl cli clie BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 4 . 1 9 0 0 0 0 1 +server restarts. server s se ser serv BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 4 . 1 2 0 0 0 0 1 +In the in I In In In BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 0 5 , 1 9 0 0 0 0 1 +current client current c cu cur curr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 5 no 0 8 0 0 0 0 1 +NFS4ERR_STALE_CLIENTID error. nfs4err_stale_clientid N NF NFS NFS4 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 5 . 1 9 0 0 0 0 1 +the characteristics the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 5 , 1 9 0 0 0 0 1 +the session the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 5 (...), 6 9 0 0 0 0 1 +the client the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 5 no 0 9 0 0 0 0 1 +new session new n ne new new BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 5 no 0 9 0 0 0 0 1 +NFS4ERR_STALE_CLIENTID, indicating nfs4err_stale_clientid, N NF NFS NFS4 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 5 , 1 10 0 0 0 0 1 +obtained via obtained o ob obt obta BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 5 no 0 9 0 0 0 0 1 +client ID. client c cl cli clie BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 5 . 1 1 0 0 0 0 1 +When a when W Wh Whe When BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 8 , 1 9 0 0 0 0 1 +needs to needs n ne nee need BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 8 no 0 8 0 0 0 0 1 +NFS4ERR_BADSESSION, since nfs4err_badsession, N NF NFS NFS4 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 8 , 1 10 0 0 0 0 1 +a server a a a a a BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 1 0 0 0 0 0 0 8 . 1 9 0 0 0 0 1 +server as server s se ser serv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 8 no 0 9 0 0 0 0 1 +recognized, as recognized, r re rec reco BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 8 ,, 2 9 0 0 0 0 1 +reject the reject r re rej reje BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 8 . 1 8 0 0 0 0 1 +In the in I In In In BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 0 10 ,- 2 9 0 0 0 0 1 +establish communication establish e es est esta BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 10 . 1 10 0 0 0 0 1 +This session this T Th Thi This BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 10 no 0 9 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 11 , 1 10 0 0 0 0 0 +[Page 25] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 0 0 no 0 4 0 0 0 0 1 +only be only o on onl only BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 no 0 9 0 0 0 0 1 +transmitted and transmitted t tr tra tran BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 . 1 9 0 0 0 0 1 +the server the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 ; 1 9 0 0 0 0 1 +otherwise, NFS4ERR_DEADSESSION otherwise, o ot oth othe BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 ,., 3 9 0 0 0 0 1 +session is session s se ses sess BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 ""., 4 9 0 0 0 0 1 +perform new perform p pe per perf BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 ,. 2 9 0 0 0 0 1 +If an if I If If If BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 no 0 10 0 0 0 0 1 +client ID, client c cl cli clie BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 , 1 7 0 0 0 0 1 +NFS4ERR_STALE_CLIENTID. NFS4ERR_STALE_CLIENTID. nfs4err_stale_clientid. N NF NFS NFS4 BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 . 1 3 0 0 0 0 1 +When NFS4ERR_STALE_CLIENTID when W Wh Whe When BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 2 no 0 8 0 0 0 0 1 +situations, the situations, s si sit situ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 2 , 1 10 0 0 0 0 1 +EXCHANGE_ID operation, exchange_id E EX EXC EXCH BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 2 , 1 10 0 0 0 0 1 +session, and session, s se ses sess BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 2 , 1 9 0 0 0 0 1 +server restart server s se ser serv BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 2 (..). 5 5 0 0 0 0 1 +See the see S Se See See BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 0 4 (.) 3 8 0 0 0 0 1 +CREATE_SESSION (Section create_session C CR CRE CREA BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 4 (.) 3 10 0 0 0 0 1 +operations. operations. operations. o op ope oper BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 4 . 1 1 0 0 0 0 1 +2.4.1. Upgrade 2.4.1. 2 2. 2.4 2.4. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 4 ..... 5 10 0 0 0 0 1 +To facilitate to T To To To BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 4 .., 3 10 0 0 0 0 1 +value of value v va val valu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 4 no 0 9 0 0 0 0 1 +data type data d da dat data BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 4 no 0 9 0 0 0 0 1 +operation of operation o op ope oper BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 4 .. 2 9 0 0 0 0 1 +client to client c cl cli clie BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 4 (.., 4 9 0 0 0 0 1 +by the by b by by by BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 4 .). 3 9 0 0 0 0 1 +value of value v va val valu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 4 no 0 9 0 0 0 0 1 +value of value v va val valu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 4 .' 2 9 0 0 0 0 1 +the server's the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 4 '(. 3 9 0 0 0 0 1 +specification [33]), specification s sp spe spec BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 4 []),. 5 9 0 0 0 0 1 +client ID client c cl cli clie BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 4 , 1 9 0 0 0 0 1 +operations. The operations. o op ope oper BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 4 . 1 9 0 0 0 0 1 +the nfs_client_id4. the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 4 .. 2 9 0 0 0 0 1 +client. The client. c cl cli clie BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 4 .' 2 9 0 0 0 0 1 +address. The address. a ad add addr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 4 . 1 9 0 0 0 0 1 +to wait to t to to to BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 4 , 1 9 0 0 0 0 1 +expire. expire. expire. e ex exp expi BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 4 . 1 1 0 0 0 0 1 +2.4.2. Server 2.4.2. 2 2. 2.4 2.4. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 9 ... 3 10 0 0 0 0 1 +NFSv4.1 introduces nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 10 . 1 8 0 0 0 0 1 +(Section 18.50), (section ( (S (Se (Sec BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 10 (.), 4 10 0 0 0 0 1 +it no it i it it it BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 10 ., 2 9 0 0 0 0 1 +client ID. client c cl cli clie BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 10 . 1 9 0 0 0 0 1 +associated with associated a as ass asso BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 10 ,. 2 9 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 11 , 1 10 0 0 0 0 0 +[Page 26] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 0 0 no 0 4 0 0 0 0 1 +If the if I If If If BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 no 0 9 0 0 0 0 1 +for its for f fo for for BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 (, 2 9 0 0 0 0 1 +opens, locks, opens, o op ope open BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 ,,,,), 6 10 0 0 0 0 1 +to unilaterally to t to to to BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 . 1 10 0 0 0 0 1 +If the if I If If If BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 , 1 10 0 0 0 0 1 +ensure that ensure e en ens ensu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 no 0 10 0 0 0 0 1 +use the use u us use use BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 / 1 10 0 0 0 0 1 +ID. The id. I ID ID. ID. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 . 1 9 0 0 0 0 1 +since the since s si sin sinc BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 no 0 9 0 0 0 0 1 +will be will w wi wil will BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 0 0 . 1 9 0 0 0 0 1 +Typically, a typically, T Ty Typ Typi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 , 1 9 0 0 0 0 1 +been no been b be bee been BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 . 1 9 0 0 0 0 1 +are sessions, are a ar are are BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 ,,,,,, 6 9 0 0 0 0 1 +server MUST server s se ser serv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 0 ..... 5 9 0 0 0 0 1 +discussion on discussion d di dis disc BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 . 1 6 0 0 0 0 1 +2.4.3. Resolving 2.4.3. 2 2. 2.4 2.4. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 4 ... 3 10 0 0 0 0 1 +When the when W Wh Whe When BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 4 no 0 10 0 0 0 0 1 +has no has h ha has has BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 4 ,, 2 10 0 0 0 0 1 +MUST allow must M MU MUS MUST BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 0 4 no 0 9 0 0 0 0 1 +by the by b by by by BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 4 . 1 5 0 0 0 0 1 +When the when W Wh Whe When BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 6 no 0 10 0 0 0 0 1 +owner that owner o ow own owne BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 6 no 0 8 0 0 0 0 1 +unexpired lease, unexpired u un une unex BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 6 , 1 10 0 0 0 0 1 +previous incarnation previous p pr pre prev BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 6 no 0 9 0 0 0 0 1 +true: true: true: t tr tru true BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 6 : 1 0 0 0 0 0 1 +o The o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 0 7 no 0 10 0 0 0 0 1 +the same the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 7 no 0 8 0 0 0 0 1 +operation. Note operation. o op ope oper BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 7 . 1 8 0 0 0 0 1 +SP4_MACH_CRED state sp4_mach_cred S SP SP4 SP4_ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 7 (.), 4 10 0 0 0 0 1 +be based be b be be be BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 7 , 1 10 0 0 0 0 1 +MUST be must M MU MUS MUST BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 0 7 , 1 9 0 0 0 0 1 +principal MUST principal p pr pri prin BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 7 no 0 8 0 0 0 0 1 +created. created. created. c cr cre crea BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 7 . 1 1 0 0 0 0 1 +o The o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 0 9 no 0 8 0 0 0 0 1 +(Section 18.35, (section ( (S (Se (Sec BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 9 (.,...) 7 9 0 0 0 0 1 +EXCHANGE_ID with exchange_id E EX EXC EXCH BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 9 no 0 10 0 0 0 0 1 +GSS SSV gss G GS GSS GSS BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 9 (..). 5 5 0 0 0 0 1 +o The o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 0 10 , 1 10 0 0 0 0 1 +the conditions the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 10 , 1 9 0 0 0 0 1 +SP4_MACH_CRED state sp4_mach_cred S SP SP4 SP4_ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 10 . 1 9 0 0 0 0 1 +across client across a ac acr acro BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 10 , 1 9 0 0 0 0 1 +client sends client c cl cli clie BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 10 , 1 9 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 11 , 1 10 0 0 0 0 0 +[Page 27] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 0 0 no 0 4 0 0 0 0 1 +client MAY client c cl cli clie BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 no 0 8 0 0 0 0 1 +RPCSEC_GSS handle. rpcsec_gss R RP RPC RPCS BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 .,, 3 9 0 0 0 0 1 +principal MUST principal p pr pri prin BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 , 1 8 0 0 0 0 1 +RPCSEC_GSS service rpcsec_gss R RP RPC RPCS BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 , 1 10 0 0 0 0 1 +GSS mechanism gss G GS GSS GSS BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 no 0 9 0 0 0 0 1 +client ID client c cl cli clie BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 . 1 3 0 0 0 0 1 +If none if I If If If BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 1 , 1 10 0 0 0 0 1 +NFS4ERR_CLID_INUSE. NFS4ERR_CLID_INUSE. nfs4err_clid_inuse. N NF NFS NFS4 BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 1 . 1 3 0 0 0 0 1 +If the if I If If If BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 2 no 0 9 0 0 0 0 1 +which created which w wh whi whic BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 2 , 1 9 0 0 0 0 1 +differs from differs d di dif diff BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 2 , 1 9 0 0 0 0 1 +then after then t th the then BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 2 no 0 9 0 0 0 0 1 +client ID, client c cl cli clie BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 2 ,. 2 9 0 0 0 0 1 +the same the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 2 (.., 4 9 0 0 0 0 1 +client ID client c cl cli clie BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 2 (.)(..), 8 10 0 0 0 0 1 +the server the t th the the BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 2 . 1 4 0 0 0 0 1 +2.5. Server 2.5. 2 2. 2.5 2.5. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 4 .. 2 10 0 0 0 0 1 +The server the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 5 (.), 4 9 0 0 0 0 1 +unlike the unlike u un unl unli BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 5 ,. 2 10 0 0 0 0 1 +owner is owner o ow own owne BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 5 : 1 6 0 0 0 0 1 +struct server_owner4 struct s st str stru BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 6 no 0 7 0 0 0 0 1 +uint64_t uint64_t uint64_t u ui uin uint BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 6 no 0 2 0 0 0 0 1 +so_minor_id; so_minor_id; so_minor_id; s so so_ so_m BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 6 ; 1 4 0 0 0 0 1 +opaque opaque opaque o op opa opaq BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 6 no 0 2 0 0 0 0 1 +so_major_id<NFS4_OPAQUE_LIMIT>; so_major_id<NFS4_OPAQUE_LIMIT>; so_major_id<nfs4_opaque_limit>; s so so_ so_m BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 6 ; 1 10 0 0 0 0 1 +}; }; }; } }; }; }; BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 6 ; 1 0 0 0 0 0 1 +The server the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 6 . 1 9 0 0 0 0 1 +fields are fields f fi fie fiel BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 0 6 , 1 10 0 0 0 0 1 +each EXCHANGE_ID each e ea eac each BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 6 no 0 9 0 0 0 0 1 +server (as server s se ser serv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 6 (.). 4 9 0 0 0 0 1 +also the also a al als also BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 6 , 1 10 0 0 0 0 1 +server, but server, s se ser serv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 6 ,. 2 9 0 0 0 0 1 +reader is reader r re rea read BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 6 no 0 8 0 0 0 0 1 +accidentally claim accidentally a ac acc acci BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 6 / 1 9 0 0 0 0 1 +so_minor_id; the so_minor_id; s so so_ so_m BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 6 ;... 4 9 0 0 0 0 1 +order to order o or ord orde BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 6 . 1 9 0 0 0 0 1 +The considerations the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 9 no 0 9 0 0 0 0 1 +for generating for f fo for for BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 9 (.). 4 8 0 0 0 0 1 +consequences of consequences c co con cons BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 9 no 0 10 0 0 0 0 1 +are less are a ar are are BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 9 no 0 9 0 0 0 0 1 +client can client c cl cli clie BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 9 no 0 9 0 0 0 0 1 +(see Section (see ( (s (se (see BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 9 (..). 5 3 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 11 , 1 10 0 0 0 0 0 +[Page 28] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 0 0 no 0 4 0 0 0 0 1 +2.6. Security 2.6. 2 2. 2.6 2.6. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 .. 2 10 0 0 0 0 1 +With the with W Wi Wit With BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 . 1 9 0 0 0 0 1 +mechanisms, the mechanisms, m me mec mech BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 , 1 10 0 0 0 0 1 +mechanism is mechanism m me mec mech BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 . 1 9 0 0 0 0 1 +NFS server nfs N NF NFS NFS BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 no 0 9 0 0 0 0 1 +that are that t th tha that BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 . 1 9 0 0 0 0 1 +considered security considered c co con cons BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 ,, 2 8 0 0 0 0 1 +implementations, are implementations, i im imp impl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 ,., 3 9 0 0 0 0 1 +server may server s se ser serv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 0 no 0 9 0 0 0 0 1 +boundaries may boundaries b bo bou boun BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 . 1 10 0 0 0 0 1 +The security the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 3 no 0 9 0 0 0 0 1 +with a with w wi wit with BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 3 no 0 9 0 0 0 0 1 +intercepting the intercepting i in int inte BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 3 no 0 9 0 0 0 0 1 +server to server s se ser serv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 3 . 1 10 0 0 0 0 1 +See Section see S Se See See BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 0 3 . 1 5 0 0 0 0 1 +2.6.1. NFSv4.1 2.6.1. 2 2. 2.6 2.6. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 4 .... 4 10 0 0 0 0 1 +An NFS an A An An An BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 0 4 "" 2 9 0 0 0 0 1 +security policy security s se sec secu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 0 4 . 1 9 0 0 0 0 1 +consists of consists c co con cons BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 4 (...), 6 9 0 0 0 0 1 +flavor is flavor f fl fla flav BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 4 ,-(), 5 10 0 0 0 0 1 +GSS-API quality gss-api G GS GSS GSS- BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 4 -,. 3 8 0 0 0 0 1 +2.6.2. SECINFO 2.6.2. 2 2. 2.6 2.6. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 6 ... 3 10 0 0 0 0 1 +The SECINFO the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 6 no 0 9 0 0 0 0 1 +determine, on determine, d de det dete BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 6 ,-, 3 9 0 0 0 0 1 +used for used u us use used BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 6 ., 2 9 0 0 0 0 1 +either operation either e ei eit eith BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 6 no 0 10 0 0 0 0 1 +or when or o or or or BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 6 . 1 10 0 0 0 0 1 +However, the however, H Ho How Howe BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 6 ,' 2 10 0 0 0 0 1 +the client the t th the the BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 6 . 1 6 0 0 0 0 1 +Where the where W Wh Whe Wher BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 8 no 0 9 0 0 0 0 1 +access that access a ac acc acce BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 8 no 0 9 0 0 0 0 1 +connection used connection c co con conn BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 8 (.., 4 9 0 0 0 0 1 +read-only vs. read-only r re rea read BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 8 -.-), 5 10 0 0 0 0 1 +access should access a ac acc acce BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 8 . 1 9 0 0 0 0 1 +is the is i is is is BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 8 no 0 8 0 0 0 0 1 +principals whose principals p pr pri prin BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 8 (.., 4 8 0 0 0 0 1 +disallowing root disallowing d di dis disa BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 8 ), 2 9 0 0 0 0 1 +principals should principals p pr pri prin BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 8 . 1 5 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 11 , 1 10 0 0 0 0 0 +[Page 29] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 0 0 no 0 4 0 0 0 0 1 +2.6.3. Security 2.6.3. 2 2. 2.6 2.6. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ... 3 10 0 0 0 0 1 +Based on based B Ba Bas Base BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 . 1 9 0 0 0 0 1 +support a support s su sup supp BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 0 0 (.., 4 8 0 0 0 0 1 +RPCSEC_GSS), the rpcsec_gss), R RP RPC RPCS BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 ), 2 9 0 0 0 0 1 +with one with w wi wit with BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 . 1 9 0 0 0 0 1 +the server, the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 ,. 2 10 0 0 0 0 1 +This error this T Th Thi This BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 no 0 9 0 0 0 0 1 +tuple currently tuple t tu tup tupl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 0 '. 2 10 0 0 0 0 1 +The client the T Th The The BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 (...) 5 10 0 0 0 0 1 +what security what w wh wha what BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 no 0 9 0 0 0 0 1 +that is that t th tha that BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 . 1 5 0 0 0 0 1 +2.6.3.1. Using 2.6.3.1. 2 2. 2.6 2.6. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 4 ....,, 6 10 0 0 0 0 1 +This section this T Th Thi This BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 4 .. 2 10 0 0 0 0 1 +2.6.3.1.1. Put 2.6.3.1.1. 2 2. 2.6 2.6. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 4 ..... 5 10 0 0 0 0 1 +The term the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 4 "",, 4 9 0 0 0 0 1 +PUTFH, and putfh, P PU PUT PUTF BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 4 ,. 2 9 0 0 0 0 1 +the server the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 4 no 0 10 0 0 0 0 1 +filehandle operation. filehandle f fi fil file BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 4 . 1 3 0 0 0 0 1 +2.6.3.1.1.1. Put 2.6.3.1.1.1. 2 2. 2.6 2.6. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 6 ...... 6 10 0 0 0 0 1 +The client the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 6 ,, 2 9 0 0 0 0 1 +RENAME. SAVEFH rename. R RE REN RENA BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 0 6 .. 2 8 0 0 0 0 1 +whether or whether w wh whe whet BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 6 , 1 10 0 0 0 0 1 +the server the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 6 no 0 9 0 0 0 0 1 +operations and operations o op ope oper BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 0 6 no 0 9 0 0 0 0 1 +other subsections other o ot oth othe BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 6 ..... 5 6 0 0 0 0 1 +2.6.3.1.1.2. Two 2.6.3.1.1.2. 2 2. 2.6 2.6. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 8 ...... 6 10 0 0 0 0 1 +For a for F Fo For For BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 8 , 1 9 0 0 0 0 1 +return NFS4ERR_WRONGSEC return r re ret retu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 8 -. 2 9 0 0 0 0 1 +The Nth the T Th The The BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 8 no 0 10 0 0 0 0 1 +a subseries a a a a a BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 1 0 0 0 0 0 0 8 ., 2 9 0 0 0 0 1 +COMPOUND request compound C CO COM COMP BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 0 8 --,, 4 9 0 0 0 0 1 +LOOKUP --then lookup L LO LOO LOOK BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 8 -- 2 9 0 0 0 0 1 +purposes, and purposes, p pu pur purp BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 8 ,, 2 8 0 0 0 0 1 +according to according a ac acc acco BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 8 ...... 6 4 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 11 , 1 10 0 0 0 0 0 +[Page 30] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 0 0 no 0 4 0 0 0 0 1 +2.6.3.1.1.3. Put 2.6.3.1.1.3. 2 2. 2.6 2.6. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ......( 7 10 0 0 0 0 1 +Name) Name) name) N Na Nam Name BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 ) 1 0 0 0 0 0 1 +This situation this T Th Thi This BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 no 0 10 0 0 0 0 1 +a LOOKUP a a a a a BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 1 0 0 0 0 0 0 0 no 0 9 0 0 0 0 1 +name. name. name. n na nam name BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 . 1 0 0 0 0 0 1 +In this in I In In In BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 0 1 , 1 9 0 0 0 0 1 +policy boundary, policy p po pol poli BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 1 , 1 10 0 0 0 0 1 +supports may supports s su sup supp BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 1 . 1 8 0 0 0 0 1 +implementation may implementation i im imp impl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 1 no 0 9 0 0 0 0 1 +security policy security s se sec secu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 0 1 . 1 9 0 0 0 0 1 +(sec_policy_child is (sec_policy_child ( (s (se (sec BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 1 (, 2 8 0 0 0 0 1 +sec_policy_parent is sec_policy_parent s se sec sec_ BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 1 ). 2 6 0 0 0 0 1 +(a) sec_policy_child (a) ( (a (a) (a) BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 3 ()(). 5 10 0 0 0 0 1 +means that means m me mea mean BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 0 3 no 0 10 0 0 0 0 1 +policy of policy p po pol poli BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 3 no 0 9 0 0 0 0 1 +directory. directory. directory. d di dir dire BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 3 . 1 1 0 0 0 0 1 +(b) sec_policy_child (b) ( (b (b) (b) BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 4 ()!(, 5 10 0 0 0 0 1 +{} for {} { {} {} {} BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 4 ). 2 8 0 0 0 0 1 +tuples specified tuples t tu tup tupl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 4 no 0 8 0 0 0 0 1 +always has always a al alw alwa BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 4 -. 2 8 0 0 0 0 1 +(c) sec_policy_child (c) ( (c (c) (c) BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 5 (). 3 10 0 0 0 0 1 +set of set s se set set BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 5 no 0 8 0 0 0 0 1 +child directory child c ch chi chil BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 0 5 . 1 9 0 0 0 0 1 +other words, other o ot oth othe BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 5 , 1 8 0 0 0 0 1 +administrator may administrator a ad adm admi BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 0 5 . 1 5 0 0 0 0 1 +In order in I In In In BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 0 7 ()( 3 10 0 0 0 0 1 +client chooses client c cl cli clie BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 7 ) 1 9 0 0 0 0 1 +and (c), and a an and and BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 7 (), 3 10 0 0 0 0 1 +when there when w wh whe when BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 7 ., 2 9 0 0 0 0 1 +returned from returned r re ret retu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 7 () 2 9 0 0 0 0 1 +follows. follows. follows. f fo fol foll BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 7 . 1 1 0 0 0 0 1 +Since the since S Si Sin Sinc BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 8 (), 3 10 0 0 0 0 1 +be followed be b be be be BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 8 .(), 4 9 0 0 0 0 1 +possible for possible p po pos poss BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 8 no 0 9 0 0 0 0 1 +of LOOKUP of o of of of BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 8 no 0 9 0 0 0 0 1 +operation. The operation. o op ope oper BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 8 . 1 9 0 0 0 0 1 +PUTPUBFH, where putpubfh, P PU PUT PUTP BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 8 , 1 9 0 0 0 0 1 +root or root r ro roo root BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 0 8 . 1 9 0 0 0 0 1 +used by used u us use used BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 8 no 0 9 0 0 0 0 1 +time the time t ti tim time BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 8 . 1 4 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 11 , 1 10 0 0 0 0 0 +[Page 31] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 0 0 no 0 4 0 0 0 0 1 +Therefore, an therefore, T Th The Ther BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 ,. 2 10 0 0 0 0 1 +response to response r re res resp BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 no 0 9 0 0 0 0 1 +immediately followed immediately i im imm imme BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 . 1 9 0 0 0 0 1 +2.6.3.1.1.4. Put 2.6.3.1.1.4. 2 2. 2.6 2.6. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 1 ...... 6 10 0 0 0 0 1 +Since SECINFO since S Si Sin Sinc BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 1 , 1 9 0 0 0 0 1 +return NFS4ERR_WRONGSEC return r re ret retu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 1 . 1 9 0 0 0 0 1 +solves this solves s so sol solv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 1 , 1 10 0 0 0 0 1 +opposite direction opposite o op opp oppo BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 1 ......, 7 9 0 0 0 0 1 +filehandle operation filehandle f fi fil file BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 1 no 0 9 0 0 0 0 1 +NFS4ERR_WRONGSEC. If nfs4err_wrongsec. N NF NFS NFS4 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 1 ., 2 9 0 0 0 0 1 +the client's the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 1 ', 2 9 0 0 0 0 1 +LOOKUPP, GETFH lookupp, L LO LOO LOOK BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 1 , 1 9 0 0 0 0 1 +supports. supports. supports. s su sup supp BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 1 . 1 1 0 0 0 0 1 +Regardless of regardless R Re Reg Rega BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 4 ,. 2 10 0 0 0 0 1 +MUST NOT must M MU MUS MUST BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 0 4 no 0 9 0 0 0 0 1 +operation if operation o op ope oper BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 4 . 1 9 0 0 0 0 1 +2.6.3.1.1.5. Put 2.6.3.1.1.5. 2 2. 2.6 2.6. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 5 ....../ 7 10 0 0 0 0 1 +A security-sensitive a A A A A BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 1 0 0 0 0 0 0 5 - 1 9 0 0 0 0 1 +tuple when tuple t tu tup tupl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 5 ' 1 9 0 0 0 0 1 +security tuples. security s se sec secu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 0 5 . 1 9 0 0 0 0 1 +have to have h ha hav have BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 5 no 0 9 0 0 0 0 1 +either the either e ei eit eith BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 5 no 0 10 0 0 0 0 1 +or the or o or or or BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 5 ( 1 8 0 0 0 0 1 +directory indicated directory d di dir dire BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 5 )., 3 9 0 0 0 0 1 +to be to t to to to BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 5 ; 1 9 0 0 0 0 1 +otherwise, the otherwise, o ot oth othe BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 5 , 1 10 0 0 0 0 1 +authentication error. authentication a au aut auth BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 5 . 1 3 0 0 0 0 1 +In theory, in I In In In BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 0 9 , 1 10 0 0 0 0 1 +SECINFO or secinfo S SE SEC SECI BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 9 no 0 9 0 0 0 0 1 +policy. But policy. p po pol poli BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 9 ., 2 9 0 0 0 0 1 +flavors from flavors f fl fla flav BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 9 , 1 9 0 0 0 0 1 +those in those t th tho thos BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 9 . 1 3 0 0 0 0 1 +The NFSv4.1 the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 10 . 1 8 0 0 0 0 1 +filehandle operation filehandle f fi fil file BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 10 no 0 9 0 0 0 0 1 +SECINFO_NO_NAME. The secinfo_no_name. S SE SEC SECI BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 10 .. 2 10 0 0 0 0 1 +from SECINFO from f fr fro from BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 10 . 1 4 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 11 , 1 10 0 0 0 0 0 +[Page 32] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 0 0 no 0 4 0 0 0 0 1 +2.6.3.1.1.6. Put 2.6.3.1.1.6. 2 2. 2.6 2.6. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ...... 6 10 0 0 0 0 1 +The NFSv4.1 the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 .. 2 10 0 0 0 0 1 +2.6.3.1.1.7. Put 2.6.3.1.1.7. 2 2. 2.6 2.6. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ...... 6 10 0 0 0 0 1 +"Anything Else" "anything " "A "An "Any BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 1 "". 3 10 0 0 0 0 1 +The security the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 1 no 0 9 0 0 0 0 1 +in the in i in in in BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 0 1 ., 2 9 0 0 0 0 1 +operation MUST operation o op ope oper BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 1 no 0 10 0 0 0 0 1 +mismatch. This mismatch. m mi mis mism BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 1 . 1 9 0 0 0 0 1 +an allowable an a an an an BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 0 1 . 1 6 0 0 0 0 1 +A COMPOUND a A A A A BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 1 0 0 0 0 0 0 2 no 0 8 0 0 0 0 1 +SECINFO_NO_NAME (style secinfo_no_name S SE SEC SECI BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 2 () 2 10 0 0 0 0 1 +for the for f fo for for BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 2 . 1 7 0 0 0 0 1 +The NFSv4.1 the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 3 . 1 10 0 0 0 0 1 +other than other o ot oth othe BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 3 ,,,( 4 10 0 0 0 0 1 +component name). component c co com comp BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 3 ). 2 2 0 0 0 0 1 +2.6.3.1.1.8. Operations 2.6.3.1.1.8. 2 2. 2.6 2.6. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 4 ...... 6 10 0 0 0 0 1 +Suppose a suppose S Su Sup Supp BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 4 no 0 9 0 0 0 0 1 +SEQUENCE, PUTFH, sequence, S SE SEQ SEQU BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 0 4 ,,,, 4 10 0 0 0 0 1 +used does used u us use used BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 4 .( 2 9 0 0 0 0 1 +Section 2.6.3.1.1.5), section S Se Sec Sect BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 4 .....), 7 9 0 0 0 0 1 +NFS4ERR_WRONGSEC. By nfs4err_wrongsec. N NF NFS NFS4 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 4 .(.....), 9 9 0 0 0 0 1 +return NFS4ERR_WRONGSEC. return r re ret retu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 4 . 1 9 0 0 0 0 1 +SECINFO and secinfo S SE SEC SECI BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 4 ( 1 10 0 0 0 0 1 +this is this t th thi this BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 4 .). 3 9 0 0 0 0 1 +for READ for f fo for for BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 4 ,. 2 8 0 0 0 0 1 +2.6.3.1.2. LINK 2.6.3.1.2. 2 2. 2.6 2.6. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 7 ..... 5 10 0 0 0 0 1 +The LINK the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 8 no 0 8 0 0 0 0 1 +filehandles. Technically, filehandles. f fi fil file BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 8 ., 2 9 0 0 0 0 1 +from LINK from f fr fro from BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 8 no 0 9 0 0 0 0 1 +rejects the rejects r re rej reje BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 8 ' 1 8 0 0 0 0 1 +credentials. If credentials. c cr cre cred BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 8 ., 2 10 0 0 0 0 1 +between the between b be bet betw BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 8 , 1 10 0 0 0 0 1 +means that means m me mea mean BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 0 8 no 0 9 0 0 0 0 1 +intended LINK intended i in int inte BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 8 . 1 5 0 0 0 0 1 +For example, for F Fo For For BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 10 ,: 2 9 0 0 0 0 1 +SEQUENCE, PUTFH sequence, S SE SEQ SEQU BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 0 10 ,,,,"""", 9 9 0 0 0 0 1 +filehandles bFH filehandles f fi fil file BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 10 . 1 10 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 11 , 1 10 0 0 0 0 0 +[Page 33] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 0 0 no 0 4 0 0 0 0 1 +common security common c co com comm BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 no 0 10 0 0 0 0 1 +bFH. If bfh. b bF bFH bFH. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 0 . 1 9 0 0 0 0 1 +bFH's security bfh's b bF bFH bFH' BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 0 '', 3 9 0 0 0 0 1 +operation will operation o op ope oper BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 . 1 9 0 0 0 0 1 +request, the request, r re req requ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 ,,,,, 5 9 0 0 0 0 1 +RENAME "c" rename R RE REN RENA BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 """",' 6 10 0 0 0 0 1 +but not but b bu but but BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 '. 2 9 0 0 0 0 1 +RENAME operation. rename R RE REN RENA BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 . 1 2 0 0 0 0 1 +To prevent to T To To To BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 2 no 0 10 0 0 0 0 1 +LINK or link L LI LIN LINK BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 1 1 0 0 0 0 0 0 2 , 1 9 0 0 0 0 1 +SECINFO, the secinfo, S SE SEC SECI BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 2 , 1 9 0 0 0 0 1 +current and current c cu cur curr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 2 no 0 9 0 0 0 0 1 +tuple, and tuple, t tu tup tupl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 2 , 1 9 0 0 0 0 1 +that situation. that t th tha that BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 2 .: 2 8 0 0 0 0 1 +o The o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 0 4 . 1 10 0 0 0 0 1 +o The o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 0 5 no 0 10 0 0 0 0 1 +to override to t to to to BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 5 ,. 2 9 0 0 0 0 1 +2.7. Minor 2.7. 2 2. 2.7 2.7. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 5 .. 2 10 0 0 0 0 1 +To address to T To To To BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 5 no 0 9 0 0 0 0 1 +need arises, need n ne nee need BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 5 ,. 2 10 0 0 0 0 1 +allow for allow a al all allo BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 5 . 1 6 0 0 0 0 1 +The base the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 6 no 0 9 0 0 0 0 1 +future accepted future f fu fut futu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 6 no 0 9 0 0 0 0 1 +Standards Track standards S St Sta Stan BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 0 6 . 1 9 0 0 0 0 1 +represented by represented r re rep repr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 6 [],. 4 10 0 0 0 0 1 +The COMPOUND the T Th The The BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 6 no 0 9 0 0 0 0 1 +minor version minor m mi min mino BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 0 6 . 1 6 0 0 0 0 1 +The following the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 8 no 0 10 0 0 0 0 1 +minor versions. minor m mi min mino BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 0 8 . 1 9 0 0 0 0 1 +to the to t to to to BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 8 . 1 9 0 0 0 0 1 +1. 1. 1. 1 1. 1. 1. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 9 . 1 0 0 0 0 0 1 +Procedures are procedures P Pr Pro Proc BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 9 . 1 10 0 0 0 0 1 +To maintain to T To To To BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 10 , 1 10 0 0 0 0 1 +add to add a ad add add BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 10 . 1 7 0 0 0 0 1 +2. 2. 2. 2 2. 2. 2. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 10 . 1 0 0 0 0 0 1 +Minor versions minor M Mi Min Mino BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 0 10 no 0 10 0 0 0 0 1 +CB_COMPOUND procedures. cb_compound C CB CB_ CB_C BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 10 . 1 4 0 0 0 0 1 +The addition the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 11 no 0 10 0 0 0 0 1 +procedures does procedures p pr pro proc BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 11 . 1 7 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 11 , 1 10 0 0 0 0 0 +[Page 34] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 0 0 no 0 4 0 0 0 0 1 +* Minor * * * * * BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 * 1 10 0 0 0 0 1 +represents sets represents r re rep repr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 no 0 8 0 0 0 0 1 +represents sets represents r re rep repr BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 . 1 6 0 0 0 0 1 +This allows this T Th Thi This BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 1 no 0 10 0 0 0 0 1 +for future for f fo for for BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 1 . 1 5 0 0 0 0 1 +* Minor * * * * * BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 2 * 1 10 0 0 0 0 1 +documented attribute. documented d do doc docu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 2 . 1 3 0 0 0 0 1 +Since attribute since S Si Sin Sinc BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 2 no 0 9 0 0 0 0 1 +per-attribute, XDR-encoded per-attribute, p pe per per- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 2 -,-, 4 10 0 0 0 0 1 +new attributes new n ne new new BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 2 no 0 10 0 0 0 0 1 +be too be b be be be BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 2 . 1 3 0 0 0 0 1 +3. 3. 3. 3 3. 3. 3. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 4 . 1 0 0 0 0 0 1 +Minor versions minor M Mi Min Mino BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 0 4 no 0 10 0 0 0 0 1 +operation's arguments operation's o op ope oper BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 4 '. 2 5 0 0 0 0 1 +Again, the again, A Ag Aga Agai BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 4 , 1 10 0 0 0 0 1 +for a for f fo for for BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 4 . 1 9 0 0 0 0 1 +be added be b be be be BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 4 no 0 9 0 0 0 0 1 +version. version. version. v ve ver vers BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 4 . 1 1 0 0 0 0 1 +This rule this T Th Thi This BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 6 no 0 10 0 0 0 0 1 +version: version: version: v ve ver vers BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 6 : 1 1 0 0 0 0 1 +* adding * * * * * BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 6 *, 2 9 0 0 0 0 1 +GETATTR's bitmap4 getattr's G GE GET GETA BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 6 ', 2 9 0 0 0 0 1 +variants of variants v va var vari BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 6 , 1 10 0 0 0 0 1 +with such with w wi wit with BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 6 no 0 3 0 0 0 0 1 +* adding * * * * * BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 8 * 1 10 0 0 0 0 1 +words words words w wo wor word BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 8 no 0 0 0 0 0 0 1 +* extending * * * * * BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 8 *(*) 4 10 0 0 0 0 1 +values values values v va val valu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 8 no 0 1 0 0 0 0 1 +* adding * * * * * BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 9 * 1 10 0 0 0 0 1 +4. 4. 4. 4 4. 4. 4. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 9 . 1 0 0 0 0 0 1 +Minor versions minor M Mi Min Mino BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 0 9 no 0 10 0 0 0 0 1 +attributes. attributes. attributes. a at att attr BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 9 . 1 2 0 0 0 0 1 +5. 5. 5. 5 5. 5. 5. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 10 . 1 0 0 0 0 0 1 +Minor versions minor M Mi Min Mino BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 0 10 . 1 10 0 0 0 0 1 +This prevents this T Th Thi This BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 10 no 0 10 0 0 0 0 1 +"slot" in "slot" " "s "sl "slo BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 10 "". 3 5 0 0 0 0 1 +6. 6. 6. 6 6. 6. 6. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 11 . 1 0 0 0 0 0 1 +Minor versions minor M Mi Min Mino BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 0 11 . 1 10 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 11 , 1 10 0 0 0 0 0 +[Page 35] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 0 0 no 0 4 0 0 0 0 1 +7. 7. 7. 7 7. 7. 7. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 . 1 0 0 0 0 0 1 +Minor versions minor M Mi Min Mino BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 0 0 . 1 10 0 0 0 0 1 +8. 8. 8. 8 8. 8. 8. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 . 1 0 0 0 0 0 1 +Minor versions minor M Mi Min Mino BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 0 0 . 1 10 0 0 0 0 1 +Specifying that specifying S Sp Spe Spec BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 1 no 0 8 0 0 0 0 1 +equivalent to equivalent e eq equ equi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 1 ., 2 9 0 0 0 0 1 +that the that t th tha that BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 1 . 1 9 0 0 0 0 1 +server, an server, s se ser serv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 1 ,"" 3 9 0 0 0 0 1 +the request the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 1 . 1 9 0 0 0 0 1 +the obsolescence the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 1 no 0 10 0 0 0 0 1 +so that so s so so so BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 0 1 . 1 9 0 0 0 0 1 +1. Minor 1. 1 1. 1. 1. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 3 . 1 10 0 0 0 0 1 +implemented. implemented. implemented. i im imp impl BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 3 . 1 2 0 0 0 0 1 +2. Minor 2. 2 2. 2. 2. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 4 . 1 10 0 0 0 0 1 +value MUST value v va val valu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 4 . 1 5 0 0 0 0 1 +9. 9. 9. 9 9. 9. 9. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 4 . 1 0 0 0 0 0 1 +Minor versions minor M Mi Min Mino BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 0 4 no 0 10 0 0 0 0 1 +RECOMMENDED, or recommended, R RE REC RECO BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 0 4 ,. 2 7 0 0 0 0 1 +10. Minor 10. 1 10 10. 10. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 5 . 1 10 0 0 0 0 1 +RECOMMENDED, or recommended, R RE REC RECO BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 0 5 ,. 2 7 0 0 0 0 1 +11. A 11. 1 11 11. 11. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 5 . 1 10 0 0 0 0 1 +minor versions minor m mi min mino BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 0 5 -. 2 6 0 0 0 0 1 +12. Except 12. 1 12 12. 12. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 6 ., 2 10 0 0 0 0 1 +introduce REQUIRED introduce i in int intr BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 6 . 1 5 0 0 0 0 1 +This rule this T Th Thi This BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 7 no 0 9 0 0 0 0 1 +forces the forces f fo for forc BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 7 no 0 10 0 0 0 0 1 +feature as feature f fe fea feat BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 7 ., 2 8 0 0 0 0 1 +features are features f fe fea feat BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 7 . 1 9 0 0 0 0 1 +infrastructural features infrastructural i in inf infr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 7 no 0 8 0 0 0 0 1 +complicates implementation complicates c co com comp BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 7 . 1 7 0 0 0 0 1 +13. A 13. 1 13 13. 13. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 8 .,, 3 10 0 0 0 0 1 +similar returned similar s si sim simi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 8 no 0 10 0 0 0 0 1 +version X version v ve ver vers BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 8 , 1 10 0 0 0 0 1 +where X where w wh whe wher BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 8 !. 2 2 0 0 0 0 1 +2.8. Non-RPC-Based 2.8. 2 2. 2.8 2.8. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 10 ..-- 4 10 0 0 0 0 1 +As described as A As As As BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 10 .....,. 7 9 0 0 0 0 1 +identification, authentication, identification, i id ide iden BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 10 ,,,.. 5 9 0 0 0 0 1 +itself provides itself i it its itse BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 10 no 0 10 0 0 0 0 1 +in the in i in in in BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 0 10 . 1 4 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 11 , 1 10 0 0 0 0 0 +[Page 36] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 0 0 no 0 4 0 0 0 0 1 +2.8.1. Authorization 2.8.1. 2 2. 2.8 2.8. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ... 3 10 0 0 0 0 1 +Authorization to authorization A Au Aut Auth BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 . 1 9 0 0 0 0 1 +ultimately determined ultimately u ul ult ulti BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 .. 2 8 0 0 0 0 1 +predetermine its predetermine p pr pre pred BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 (.) 3 10 0 0 0 0 1 +and the and a an and and BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 (.). 4 6 0 0 0 0 1 +Principals with principals P Pr Pri Prin BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 2 no 0 8 0 0 0 0 1 +authorization on authorization a au aut auth BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 2 (.) 3 9 0 0 0 0 1 +operation. Attributes operation. o op ope oper BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 2 .,, 3 10 0 0 0 0 1 +owner_group, acl, owner_group, o ow own owne BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 2 ,,,.. 5 7 0 0 0 0 1 +2.8.2. Auditing 2.8.2. 2 2. 2.8 2.8. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 3 ... 3 10 0 0 0 0 1 +NFSv4.1 provides nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 3 .-, 3 10 0 0 0 0 1 +sacl attributes sacl s sa sac sacl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 3 . 1 9 0 0 0 0 1 +of this of o of of of BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 3 no 0 9 0 0 0 0 1 +policies. policies. policies. p po pol poli BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 3 . 1 1 0 0 0 0 1 +2.8.3. Intrusion 2.8.3. 2 2. 2.8 2.8. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 4 ... 3 10 0 0 0 0 1 +NFSv4.1 provides nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 5 .-, 3 9 0 0 0 0 1 +acl and acl a ac acl acl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 5 . 1 9 0 0 0 0 1 +as the as a as as as BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 5 . 1 9 0 0 0 0 1 +this specification this t th thi this BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 5 no 0 10 0 0 0 0 1 +alarms. alarms. alarms. a al ala alar BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 5 . 1 1 0 0 0 0 1 +2.9. Transport 2.9. 2 2. 2.9 2.9. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 6 .. 2 10 0 0 0 0 1 +2.9.1. REQUIRED 2.9.1. 2 2. 2.9 2.9. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 6 ... 3 10 0 0 0 0 1 +NFSv4.1 works nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 7 .()-- 5 10 0 0 0 0 1 +based transports based b ba bas base BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 7 : 1 7 0 0 0 0 1 +o The o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 0 7 ,. 2 10 0 0 0 0 1 +requires but requires r re req requ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 7 . 1 9 0 0 0 0 1 +[37]. [37]. [37]. [ [3 [37 [37] BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 7 []. 3 0 0 0 0 0 1 +o The o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 0 8 . 1 9 0 0 0 0 1 +delivery simplifies delivery d de del deli BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 8 , 1 10 0 0 0 0 1 +the sending the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 8 no 0 9 0 0 0 0 1 +record marking record r re rec reco BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 8 []. 3 4 0 0 0 0 1 +Where an where W Wh Whe Wher BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 9 . 1 9 0 0 0 0 1 +network protocol, network n ne net netw BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 0 9 , 1 10 0 0 0 0 1 +the IETF-approved the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 9 -. 2 9 0 0 0 0 1 +time this time t ti tim time BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 9 , 1 9 0 0 0 0 1 +above attributes above a ab abo abov BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 9 no 0 8 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 11 , 1 10 0 0 0 0 0 +[Page 37] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 0 0 no 0 4 0 0 0 0 1 +Protocol (SCTP). protocol P Pr Pro Prot BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 ()., 4 10 0 0 0 0 1 +an NFSv4.1 an a an an an BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 0 0 . 1 9 0 0 0 0 1 +transport protocol. transport t tr tra tran BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 . 1 2 0 0 0 0 1 +Even if even E Ev Eve Even BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 .-, 3 10 0 0 0 0 1 +RECOMMENDED that recommended R RE REC RECO BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 . 1 9 0 0 0 0 1 +It is it I It It It BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 1 no 0 9 0 0 0 0 1 +NFSv4.1; however, nfsv4.1; N NF NFS NFSv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 1 .;,- 4 9 0 0 0 0 1 +with congestion with w wi wit with BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 1 . 1 9 0 0 0 0 1 +As a as A As As As BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 1 ,. 2 9 0 0 0 0 1 +transport. NFSv4.1 transport. t tr tra tran BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 1 .. 2 9 0 0 0 0 1 +server transport server s se ser serv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 1 no 0 9 0 0 0 0 1 +constitute a constitute c co con cons BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 1 , 1 10 0 0 0 0 1 +concept of concept c co con conc BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 1 . 1 3 0 0 0 0 1 +2.9.2. Client 2.9.2. 2 2. 2.9 2.9. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 4 ... 3 10 0 0 0 0 1 +If a if I If If If BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 4 -(..,), 7 10 0 0 0 0 1 +and server and a an and and BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 4 - 1 9 0 0 0 0 1 +reasons: reasons: reasons: r re rea reas BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 4 : 1 1 0 0 0 0 1 +1. This 1. 1 1. 1. 1. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 5 .' 2 10 0 0 0 0 1 +control mechanisms control c co con cont BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 5 -. 2 7 0 0 0 0 1 +2. This 2. 2 2. 2. 2. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 5 . 1 10 0 0 0 0 1 +eliminating the eliminating e el eli elim BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 5 . 1 9 0 0 0 0 1 +3. The 3. 3 3. 3. 3. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 6 ..., 4 10 0 0 0 0 1 +client and client c cl cli clie BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 6 -( 2 9 0 0 0 0 1 +Section 2.10.3.1) section S Se Sec Sect BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 6 ...). 5 5 0 0 0 0 1 +In order in I In In In BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 0 7 ,- 2 10 0 0 0 0 1 +used, and used, u us use used BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 7 ,: 2 7 0 0 0 0 1 +o A o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 0 7 no 0 10 0 0 0 0 1 +request was request r re req requ BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 7 . 1 9 0 0 0 0 1 +o A o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 0 8 , 1 10 0 0 0 0 1 +a retry. a a a a a BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 1 0 0 0 0 0 0 8 .([] 4 8 0 0 0 0 1 +apply because apply a ap app appl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 8 , 1 9 0 0 0 0 1 +lower layer lower l lo low lowe BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 8 .), 3 8 0 0 0 0 1 +SHOULD return should S SH SHO SHOU BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 0 8 (...), 6 9 0 0 0 0 1 +MAY disconnect may M MA MAY MAY BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 1 1 0 0 1 0 0 0 8 . 1 4 0 0 0 0 1 +When sending when W Wh Whe When BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 10 , 1 10 0 0 0 0 1 +full network full f fu ful full BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 10 (..,-, 6 9 0 0 0 0 1 +source port source s so sou sour BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 10 ) 1 10 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 11 , 1 10 0 0 0 0 0 +[Page 38] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 0 0 no 0 4 0 0 0 0 1 +from which from f fr fro from BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 .- 2 9 0 0 0 0 1 +oriented transport, oriented o or ori orie BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 , 1 10 0 0 0 0 1 +which the which w wh whi whic BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 . 1 4 0 0 0 0 1 +If a if I If If If BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 1 no 0 10 0 0 0 0 1 +before the before b be bef befo BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 1 , 1 9 0 0 0 0 1 +reply. If reply. r re rep repl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 1 . 1 9 0 0 0 0 1 +destination full destination d de des dest BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 1 , 1 9 0 0 0 0 1 +replier MUST replier r re rep repl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 1 no 0 9 0 0 0 0 1 +request. The request. r re req requ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 1 . 1 9 0 0 0 0 1 +retry a retry r re ret retr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 1 ( 1 10 0 0 0 0 1 +is associated is i is is is BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 1 '). 3 7 0 0 0 0 1 +When using when W Wh Whe When BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 3 , 1 10 0 0 0 0 1 +tolerating retries tolerating t to tol tole BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 3 : 1 7 0 0 0 0 1 +o RDMA o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 0 4 "", 3 9 0 0 0 0 1 +credit is credit c cr cre cred BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 4 . 1 9 0 0 0 0 1 +were to were w we wer were BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 4 (), 3 9 0 0 0 0 1 +additional credit. additional a ad add addi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 4 ., 2 10 0 0 0 0 1 +certainly result certainly c ce cer cert BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 4 , 1 9 0 0 0 0 1 +would typically would w wo wou woul BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 4 no 0 8 0 0 0 0 1 +request. If request. r re req requ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 4 ., 2 10 0 0 0 0 1 +credit consumed credit c cr cre cred BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 4 no 0 9 0 0 0 0 1 +failure unless failure f fa fai fail BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 4 no 0 9 0 0 0 0 1 +available credit, available a av ava avai BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 4 ,. 2 7 0 0 0 0 1 +o RDMA o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 0 7 .. 2 10 0 0 0 0 1 +The reply the T Th The The BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 7 no 0 10 0 0 0 0 1 +lost, such lost, l lo los lost BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 7 ,. 2 9 0 0 0 0 1 +a dynamic a a a a a BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 1 0 0 0 0 0 0 7 , 1 9 0 0 0 0 1 +not be not n no not not BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 7 . 1 10 0 0 0 0 1 +contents must contents c co con cont BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 7 , 1 9 0 0 0 0 1 +and credit and a an and and BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 7 no 0 8 0 0 0 0 1 +refreshed by refreshed r re ref refr BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 7 . 1 4 0 0 0 0 1 +In addition, in I In In In BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 0 9 ,..., 5 10 0 0 0 0 1 +active, the active, a ac act acti BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 9 ,.. 3 9 0 0 0 0 1 +2.9.3. Ports 2.9.3. 2 2. 2.9 2.9. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 10 ... 3 10 0 0 0 0 1 +Historically, NFSv3 historically, H Hi His Hist BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 10 ,. 2 9 0 0 0 0 1 +registered port registered r re reg regi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 10 [] 2 10 0 0 0 0 1 +configuration. NFSv4.1 configuration. c co con conf BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 10 .. 2 8 0 0 0 0 1 +protocols as protocols p pr pro prot BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 10 []. 3 4 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 11 , 1 10 0 0 0 0 0 +[Page 39] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 0 0 no 0 4 0 0 0 0 1 +2.10. Session 2.10. 2 2. 2.1 2.10 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 .. 2 10 0 0 0 0 1 +NFSv4.1 clients nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 . 1 10 0 0 0 0 1 +feature as feature f fe fea feat BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 . 1 5 0 0 0 0 1 +2.10.1. Motivation 2.10.1. 2 2. 2.1 2.10 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 1 ... 3 10 0 0 0 0 1 +Previous versions previous P Pr Pre Prev BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 1 no 0 10 0 0 0 0 1 +following: following: following: f fo fol foll BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 1 : 1 1 0 0 0 0 1 +o Lack o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 0 1 (). 3 10 0 0 0 0 1 +lack of lack l la lac lack BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 1 . 1 9 0 0 0 0 1 +o Limited o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 0 2 , 1 9 0 0 0 0 1 +callbacks through callbacks c ca cal call BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 2 , 1 10 0 0 0 0 1 +requests and requests r re req requ BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 0 2 . 1 3 0 0 0 0 1 +o Limited o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 0 3 . 1 10 0 0 0 0 1 +o Requiring o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 0 3 . 1 10 0 0 0 0 1 +Through the through T Th Thr Thro BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 4 ,. 2 10 0 0 0 0 1 +shortfalls with shortfalls s sh sho shor BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 4 : 1 5 0 0 0 0 1 +o EOS o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 0 4 , 1 10 0 0 0 0 1 +feasible to feasible f fe fea feas BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 4 no 0 9 0 0 0 0 1 +through server through t th thr thro BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 4 . 1 9 0 0 0 0 1 +revisions of revisions r re rev revi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 4 no 0 8 0 0 0 0 1 +approaches often approaches a ap app appr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 4 . 1 9 0 0 0 0 1 +Section 2.10.6, section S Se Sec Sect BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 4 ..,. 4 8 0 0 0 0 1 +parallelism. parallelism. parallelism. p pa par para BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 4 . 1 2 0 0 0 0 1 +o The o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 0 6 .(.,) 5 10 0 0 0 0 1 +transport connections transport t tr tra tran BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 6 no 0 9 0 0 0 0 1 +sending callback sending s se sen send BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 6 , 1 8 0 0 0 0 1 +(Section 18.34). (section ( (S (Se (Sec BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 6 (.). 4 9 0 0 0 0 1 +callbacks caused callbacks c ca cal call BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 6 ' 1 9 0 0 0 0 1 +sequencing properties sequencing s se seq sequ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 6 no 0 7 0 0 0 0 1 +(Section 2.10.6.3). (section ( (S (Se (Sec BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 6 (...). 6 2 0 0 0 0 1 +o The o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 0 9 . 1 10 0 0 0 0 1 +connections with connections c co con conn BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 9 , 1 9 0 0 0 0 1 +(Section 2.10.5). (section ( (S (Se (Sec BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 9 (..). 5 3 0 0 0 0 1 +o The o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 0 10 . 1 10 0 0 0 0 1 +of client of o of of of BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 10 no 0 9 0 0 0 0 1 +compute a compute c co com comp BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 10 no 0 8 0 0 0 0 1 +operations (Section operations o op ope oper BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 0 10 (...). 6 4 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 11 , 1 10 0 0 0 0 0 +[Page 40] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 0 0 no 0 4 0 0 0 0 1 +o The o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 0 0 . 1 10 0 0 0 0 1 +use by use u us use use BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 ' 1 9 0 0 0 0 1 +authenticate to authenticate a au aut auth BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 (...). 6 9 0 0 0 0 1 +A session a A A A A BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 1 0 0 0 0 0 0 1 ,- 2 9 0 0 0 0 1 +by a by b by by by BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 1 no 0 8 0 0 0 0 1 +connections. Its connections. c co con conn BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 1 .' 2 9 0 0 0 0 1 +to the to t to to to BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 1 (). 3 9 0 0 0 0 1 +entirely independent entirely e en ent enti BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 1 , 1 9 0 0 0 0 1 +exists whether exists e ex exi exis BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 1 . 1 9 0 0 0 0 1 +or more or o or or or BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 1 - 1 9 0 0 0 0 1 +may be may m ma may may BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 1 0 0 0 1 no 0 9 0 0 0 0 1 +client's client client's c cl cli clie BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 1 ', 2 9 0 0 0 0 1 +sessions. When sessions. s se ses sess BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 1 . 1 9 0 0 0 0 1 +ID's sessions id's I ID ID' ID's BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 1 ',,, 4 9 0 0 0 0 1 +delegations, layouts, delegations, d de del dele BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 1 ,,.. 4 9 0 0 0 0 1 +serves as serves s se ser serv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 1 no 0 10 0 0 0 0 1 +associated client associated a as ass asso BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 1 , 1 9 0 0 0 0 1 +means of means m me mea mean BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 0 1 . 1 4 0 0 0 0 1 +A single a A A A A BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 1 0 0 0 0 0 0 5 . 1 10 0 0 0 0 1 +NOT serve not N NO NOT NOT BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 0 5 . 1 4 0 0 0 0 1 +2.10.2. NFSv4 2.10.2. 2 2. 2.1 2.10 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 6 ... 3 10 0 0 0 0 1 +Sessions are sessions S Se Ses Sess BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 0 6 ..., 4 9 0 0 0 0 1 +infrastructure change infrastructure i in inf infr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 6 no 0 9 0 0 0 0 1 +version number version v ve ver vers BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 6 () 2 9 0 0 0 0 1 +NFS. However, nfs. N NF NFS NFS. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 6 ., 2 9 0 0 0 0 1 +single procedure, single s si sin sing BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 6 ,, 2 9 0 0 0 0 1 +arbitrary number arbitrary a ar arb arbi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 6 ,. 2 9 0 0 0 0 1 +with little with w wi wit with BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 6 . 1 9 0 0 0 0 1 +field, and field, f fi fie fiel BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 6 ,.. 3 9 0 0 0 0 1 +NFSv4 server nfsv4 N NF NFS NFSv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 6 , 1 10 0 0 0 0 1 +expects a expects e ex exp expe BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 6 .. 2 9 0 0 0 0 1 +NFSv4.1 defines nfsv4.1 N NF NFS NFSv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 6 ., 2 9 0 0 0 0 1 +COMPOUND that compound C CO COM COMP BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 0 6 , 1 8 0 0 0 0 1 +exception of exception e ex exc exce BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 6 , 1 8 0 0 0 0 1 +DESTROY_SESSION (Section destroy_session D DE DES DEST BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 6 (.). 4 4 0 0 0 0 1 +2.10.2.1. SEQUENCE 2.10.2.1. 2 2. 2.1 2.10 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 10 .... 4 10 0 0 0 0 1 +In NFSv4.1, in I In In In BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 0 10 .,, 3 9 0 0 0 0 1 +first operation first f fi fir firs BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 10 . 1 9 0 0 0 0 1 +SEQUENCE is sequence S SE SEQ SEQU BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 0 10 . 1 10 0 0 0 0 1 +associates all associates a as ass asso BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 0 10 no 0 9 0 0 0 0 1 +particular session. particular p pa par part BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 10 . 1 10 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 11 , 1 10 0 0 0 0 0 +[Page 41] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 0 0 no 0 4 0 0 0 0 1 +maintaining EOS maintaining m ma mai main BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 (..).-. 7 10 0 0 0 0 1 +COMPOUND requests compound C CO COM COMP BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 : 1 6 0 0 0 0 1 ++-----+--------------+-----------+------------+-----------+---- +-----+--------------+-----------+------------+-----------+---- +-----+--------------+-----------+------------+-----------+---- + +- +-- +--- BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 --------------------------------------------------------- 57 10 0 0 0 0 1 +| tag | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 no 0 4 0 0 0 0 1 +|SEQUENCE op |sequence | |S |SE |SEQ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 ... 3 4 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 no 0 0 0 0 0 0 1 +(== 1) (== ( (= (== (== BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 () 2 1 0 0 0 0 1 +| (limited) | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 () 2 3 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 0 0 no 0 0 0 0 0 0 1 ++-----+--------------+-----------+------------+-----------+---- +-----+--------------+-----------+------------+-----------+---- +-----+--------------+-----------+------------+-----------+---- + +- +-- +--- BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 --------------------------------------------------------- 57 10 0 0 0 0 1 +and the and a an and and BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 2 : 1 10 0 0 0 0 1 ++------------+-----+--------+-------------------------------+--// +------------+-----+--------+-------------------------------+--// +------------+-----+--------+-------------------------------+--// + +- +-- +--- BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 2 ----------------------------------------------------------// 60 10 0 0 0 0 1 +|last status |last | |l |la |las BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 2 // 2 9 0 0 0 0 1 ++------------+-----+--------+-------------------------------+--// +------------+-----+--------+-------------------------------+--// +------------+-----+--------+-------------------------------+--// + +- +-- +--- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 2 ----------------------------------------------------------// 60 10 0 0 0 0 1 +//-----------------------+---- //-----------------------+---- //-----------------------+---- / // //- //-- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 2 //--------------------------- 29 4 0 0 0 0 1 +// status // / // // // BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 2 //... 5 4 0 0 0 0 1 +//-----------------------+---- //-----------------------+---- //-----------------------+---- / // //- //-- BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 2 //--------------------------- 29 4 0 0 0 0 1 +A CB_COMPOUND a A A A A BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 1 0 0 0 0 0 0 5 no 0 9 0 0 0 0 1 +COMPOUND, but compound, C CO COM COMP BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 0 5 ,, 2 10 0 0 0 0 1 +operation. CB_COMPOUND operation. o op ope oper BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 5 . 1 8 0 0 0 0 1 +"callback_ident", which "callback_ident", " "c "ca "cal BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 5 "",. 4 10 0 0 0 0 1 +by the by b by by by BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 5 ., 2 9 0 0 0 0 1 +also includes also a al als also BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 5 no 0 9 0 0 0 0 1 +(Section 2.10.6.3). (section ( (S (Se (Sec BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 5 (...). 6 2 0 0 0 0 1 +2.10.2.2. Client 2.10.2.2. 2 2. 2.1 2.10 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 7 .... 4 10 0 0 0 0 1 +Each client each E Ea Eac Each BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 7 (.). 4 9 0 0 0 0 1 +A client a A A A A BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 1 0 0 0 0 0 0 7 no 0 9 0 0 0 0 1 +access in access a ac acc acce BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 7 ..( 3 9 0 0 0 0 1 +sending a sending s se sen send BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 7 no 0 10 0 0 0 0 1 +request from request r re req requ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 7 ), 2 9 0 0 0 0 1 +ID is id I ID ID ID BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 1 0 0 0 0 0 0 0 7 . 1 4 0 0 0 0 1 +State (which state S St Sta Stat BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 8 (,,, 4 9 0 0 0 0 1 +and layouts and a an and and BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 8 (..)). 6 9 0 0 0 0 1 +is not is i is is is BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 8 . 1 9 0 0 0 0 1 +operations from operations o op ope oper BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 0 8 , 1 9 0 0 0 0 1 +provided the provided p pr pro prov BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 8 . 1 8 0 0 0 0 1 +callback MAY callback c ca cal call BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 8 no 0 10 0 0 0 0 1 +that originally that t th tha that BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 8 . 1 9 0 0 0 0 1 +example, if example, e ex exa exam BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 8 ,, 2 9 0 0 0 0 1 +recall the recall r re rec reca BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 8 no 0 9 0 0 0 0 1 +associated with associated a as ass asso BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 8 ....... 7 9 0 0 0 0 1 +discuss the discuss d di dis disc BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 8 . 1 7 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 11 , 1 10 0 0 0 0 0 +[Page 42] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 0 0 no 0 4 0 0 0 0 1 +2.10.3. Channels 2.10.3. 2 2. 2.1 2.10 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ... 3 10 0 0 0 0 1 +A channel a A A A A BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 1 0 0 0 0 0 0 0 . 1 10 0 0 0 0 1 +ONC RPC onc O ON ONC ONC BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 . 1 4 0 0 0 0 1 +Each session each E Ea Eac Each BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 1 : 1 9 0 0 0 0 1 +backchannel. Because backchannel. b ba bac back BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 1 ., 2 10 0 0 0 0 1 +because each because b be bec beca BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 1 , 1 8 0 0 0 0 1 +assigned identifiers. assigned a as ass assi BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 1 . 1 3 0 0 0 0 1 +The fore the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 2 no 0 10 0 0 0 0 1 +server, and server, s se ser serv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 2 ,. 2 9 0 0 0 0 1 +always has always a al alw alwa BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 2 . 1 3 0 0 0 0 1 +The backchannel the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 3 , 1 10 0 0 0 0 1 +and carries and a an and and BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 3 . 1 10 0 0 0 0 1 +is a is i is is is BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 3 ;, 2 9 0 0 0 0 1 +features of features f fe fea feat BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 3 ... 3 9 0 0 0 0 1 +support backchannels. support s su sup supp BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 0 3 . 1 3 0 0 0 0 1 +Each session each E Ea Eac Each BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 4 , 1 10 0 0 0 0 1 +caches (see caches c ca cac cach BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 4 (...). 6 8 0 0 0 0 1 +requires a requires r re req requ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 4 (,, 3 10 0 0 0 0 1 +retries) because retries) r re ret retr BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 4 ). 2 8 0 0 0 0 1 +2.10.3.1. Association 2.10.3.1. 2 2. 2.1 2.10 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 5 ....,, 6 10 0 0 0 0 1 +Each channel each E Ea Eac Each BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 6 no 0 9 0 0 0 0 1 +(whether of (whether ( (w (wh (whe BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 6 ( 1 9 0 0 0 0 1 +protocols). A protocols). p pr pro prot BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 6 ). 2 9 0 0 0 0 1 +channels of channels c ch cha chan BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 6 ; 1 9 0 0 0 0 1 +connection will connection c co con conn BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 6 no 0 9 0 0 0 0 1 +the CREATE_SESSION the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 6 (.) 3 9 0 0 0 0 1 +(Section 18.34) (section ( (S (Se (Sec BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 6 (.). 4 8 0 0 0 0 1 +CREATE_SESSION, the create_session, C CR CRE CREA BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 6 , 1 9 0 0 0 0 1 +request is request r re req requ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 6 , 1 9 0 0 0 0 1 +optionally the optionally o op opt opti BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 6 . 1 8 0 0 0 0 1 +protection (Section protection p pr pro prot BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 6 (.), 4 9 0 0 0 0 1 +SEQUENCE is sequence S SE SEQ SEQU BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 0 6 , 1 10 0 0 0 0 1 +automatically associated automatically a au aut auto BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 6 no 0 8 0 0 0 0 1 +specified in specified s sp spe spec BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 6 . 1 5 0 0 0 0 1 +A connection's a A A A A BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 1 0 0 0 0 0 0 10 '. 2 9 0 0 0 0 1 +connection associated connection c co con conn BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 10 () 2 10 0 0 0 0 1 +simultaneously associated simultaneously s si sim simu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 10 () 2 10 0 0 0 0 1 +including sessions including i in inc incl BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 10 . 1 8 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 11 , 1 10 0 0 0 0 0 +[Page 43] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 0 0 no 0 4 0 0 0 0 1 +It is it I It It It BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 no 0 9 0 0 0 0 1 +associated with associated a as ass asso BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 ., 2 9 0 0 0 0 1 +connections can connections c co con conn BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 . 1 10 0 0 0 0 1 +RDMA and rdma R RD RDM RDMA BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 -, 2 9 0 0 0 0 1 +the maximum the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 no 0 9 0 0 0 0 1 +total number total t to tot tota BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 (...)., 7 9 0 0 0 0 1 +RDMA credits rdma R RD RDM RDMA BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 ,- 2 10 0 0 0 0 1 +outstanding request. outstanding o ou out outs BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 ., 2 9 0 0 0 0 1 +it MUST it i it it it BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 no 0 9 0 0 0 0 1 +to a to t to to to BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 . 1 2 0 0 0 0 1 +It is it I It It It BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 3 no 0 10 0 0 0 0 1 +associated with associated a as ass asso BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 3 , 1 10 0 0 0 0 1 +type to type t ty typ type BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 3 . 1 6 0 0 0 0 1 +2.10.4. Server 2.10.4. 2 2. 2.1 2.10 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 4 ... 3 10 0 0 0 0 1 +Servers each servers S Se Ser Serv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 4 no 0 9 0 0 0 0 1 +string eir_server_scope string s st str stri BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 4 no 0 8 0 0 0 0 1 +EXCHANGE_ID operation. exchange_id E EX EXC EXCH BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 4 . 1 9 0 0 0 0 1 +group of group g gr gro grou BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 4 no 0 10 0 0 0 0 1 +the same the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 4 no 0 9 0 0 0 0 1 +otherwise opaque otherwise o ot oth othe BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 4 ., 2 9 0 0 0 0 1 +servers within servers s se ser serv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 4 , 1 9 0 0 0 0 1 +cases, identifiers cases, c ca cas case BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 4 , 1 8 0 0 0 0 1 +presented to presented p pr pre pres BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 4 . 1 6 0 0 0 0 1 +The use the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 7 no 0 8 0 0 0 0 1 +generated by generated g ge gen gene BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 7 . 1 9 0 0 0 0 1 +cases, it cases, c ca cas case BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 7 ,., 3 8 0 0 0 0 1 +generated by generated g ge gen gene BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 7 ., 2 9 0 0 0 0 1 +be because be b be be be BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 7 no 0 10 0 0 0 0 1 +on another on o on on on BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 7 . 1 5 0 0 0 0 1 +When servers when W Wh Whe When BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 8 , 1 10 0 0 0 0 1 +values applies values v va val valu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 8 : 1 6 0 0 0 0 1 +o Filehandle o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 0 9 . 1 10 0 0 0 0 1 +the same the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 9 . 1 9 0 0 0 0 1 +sent to sent s se sen sent BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 9 no 0 9 0 0 0 0 1 +other. other. other. o ot oth othe BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 9 . 1 1 0 0 0 0 1 +o Server o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 0 10 ., 2 9 0 0 0 0 1 +server owner server s se ser serv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 10 . 1 9 0 0 0 0 1 +server scope server s se ser serv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 10 , 1 10 0 0 0 0 1 +as different as a as as as BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 10 . 1 9 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 11 , 1 10 0 0 0 0 0 +[Page 44] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 0 0 no 0 4 0 0 0 0 1 +The coordination the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 no 0 10 0 0 0 0 1 +can be can c ca can can BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 , 1 9 0 0 0 0 1 +space. The space. s sp spa spac BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 . 1 8 0 0 0 0 1 +implementation, but implementation, i im imp impl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 , 1 9 0 0 0 0 1 +in which in i in in in BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 0 0 . 1 5 0 0 0 0 1 +Clients will clients C Cl Cli Clie BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 1 no 0 9 0 0 0 0 1 +multiple servers multiple m mu mul mult BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 1 , 1 10 0 0 0 0 1 +be discussed be b be be be BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 1 : 1 7 0 0 0 0 1 +o When o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 0 2 no 0 9 0 0 0 0 1 +operations sent operations o op ope oper BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 0 2 no 0 10 0 0 0 0 1 +purpose of purpose p pu pur purp BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 2 , 1 9 0 0 0 0 1 +as described as a as as as BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 2 .... 4 5 0 0 0 0 1 +o When o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 0 3 no 0 9 0 0 0 0 1 +address to address a ad add addr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 3 , 1 9 0 0 0 0 1 +necessity for necessity n ne nec nece BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 3 no 0 10 0 0 0 0 1 +attempted, as attempted, a at att atte BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 3 ,.... 5 6 0 0 0 0 1 +When two when W Wh Whe When BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 4 , 1 9 0 0 0 0 1 +network addresses, network n ne net netw BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 0 4 ,, 2 9 0 0 0 0 1 +ways a ways w wa way ways BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 4 no 0 10 0 0 0 0 1 +servers cooperating servers s se ser serv BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 4 . 1 4 0 0 0 0 1 +o If o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 0 5 ([],[], 7 10 0 0 0 0 1 +[27]) authentication [27]) [ [2 [27 [27] BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 5 []) 3 9 0 0 0 0 1 +targets, the targets, t ta tar targ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 5 ,. 2 8 0 0 0 0 1 +RECOMMENDED that recommended R RE REC RECO BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 0 5 no 0 9 0 0 0 0 1 +scope and scope s sc sco scop BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 5 no 0 9 0 0 0 0 1 +name. In name. n na nam name BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 5 .,' 3 8 0 0 0 0 1 +validating server validating v va val vali BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 5 . 1 3 0 0 0 0 1 +o The o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 0 7 no 0 10 0 0 0 0 1 +fs_locations or fs_locations f fs fs_ fs_l BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 7 no 0 9 0 0 0 0 1 +system. For system. s sy sys syst BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 7 ., 2 8 0 0 0 0 1 +particular file particular p pa par part BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 7 no 0 9 0 0 0 0 1 +particular file particular p pa par part BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 7 , 1 9 0 0 0 0 1 +system may system s sy sys syst BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 7 . 1 9 0 0 0 0 1 +first server first f fi fir firs BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 7 no 0 9 0 0 0 0 1 +with RPCSEC_GSS with w wi wit with BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 7 . 1 9 0 0 0 0 1 +of the of o of of of BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 7 . 1 9 0 0 0 0 1 +successfully authenticates successfully s su suc succ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 7 , 1 9 0 0 0 0 1 +request and request r re req requ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 7 no 0 10 0 0 0 0 1 +attribute refers attribute a at att attr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 7 , 1 10 0 0 0 0 1 +scope is scope s sc sco scop BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 7 . 1 9 0 0 0 0 1 +form of form f fo for form BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 7 no 0 9 0 0 0 0 1 +system involved system s sy sys syst BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 7 (..). 5 7 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 11 , 1 10 0 0 0 0 0 +[Page 45] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 0 0 no 0 4 0 0 0 0 1 +2.10.5. Trunking 2.10.5. 2 2. 2.1 2.10 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ... 3 10 0 0 0 0 1 +Trunking is trunking T Tr Tru Trun BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 no 0 10 0 0 0 0 1 +server in server s se ser serv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 0 .. 2 9 0 0 0 0 1 +supports two supports s su sup supp BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 : 1 9 0 0 0 0 1 +trunking. trunking. trunking. t tr tru trun BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 0 . 1 1 0 0 0 0 1 +In the in I In In In BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 0 1 , 1 9 0 0 0 0 1 +that all that t th tha that BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 1 . 1 9 0 0 0 0 1 +servers MUST servers s se ser serv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 1 . 1 8 0 0 0 0 1 +connections use connections c co con conn BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 1 , 1 10 0 0 0 0 1 +the server the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 1 .. 2 9 0 0 0 0 1 +clustered configuration clustered c cl clu clus BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 1 no 0 9 0 0 0 0 1 +servers to servers s se ser serv BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 1 . 1 5 0 0 0 0 1 +Clients may clients C Cl Cli Clie BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 3 , 1 9 0 0 0 0 1 +trunking between trunking t tr tru trun BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 3 , 1 9 0 0 0 0 1 +servers' mandates servers' s se ser serv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 3 '( 2 9 0 0 0 0 1 +below). With below). b be bel belo BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 3 )., 3 9 0 0 0 0 1 +server to server s se ser serv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 3 no 0 10 0 0 0 0 1 +ID and id I ID ID ID BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 1 0 0 0 0 0 0 0 3 no 0 9 0 0 0 0 1 +backchannel allow backchannel b ba bac back BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 3 no 0 9 0 0 0 0 1 +callbacks. callbacks. callbacks. c ca cal call BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 3 . 1 1 0 0 0 0 1 +Session trunking session S Se Ses Sess BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 5 no 0 8 0 0 0 0 1 +connections, each connections, c co con conn BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 5 ,/ 2 9 0 0 0 0 1 +network addresses, network n ne net netw BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 0 5 ,. 2 9 0 0 0 0 1 +addresses (server addresses a ad add addr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 5 (), 3 10 0 0 0 0 1 +server MUST server s se ser serv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 5 . 1 9 0 0 0 0 1 +addresses are addresses a ad add addr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 5 , 1 9 0 0 0 0 1 +the data the t th the the BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 5 (). 3 8 0 0 0 0 1 +Client ID client C Cl Cli Clie BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 7 no 0 9 0 0 0 0 1 +same client same s sa sam same BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 7 . 1 9 0 0 0 0 1 +target network target t ta tar targ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 7 no 0 9 0 0 0 0 1 +those same those t th tho thos BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 7 .,, 3 9 0 0 0 0 1 +presenting the presenting p pr pre pres BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 7 (.) 3 10 0 0 0 0 1 +scope (Section scope s sc sco scop BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 7 (..), 5 9 0 0 0 0 1 +trunking. When trunking. t tr tru trun BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 7 . 1 9 0 0 0 0 1 +server scope, server s se ser serv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 7 , 1 9 0 0 0 0 1 +locking state locking l lo loc lock BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 7 , 1 9 0 0 0 0 1 +trunking. trunking. trunking. t tr tru trun BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 7 . 1 1 0 0 0 0 1 +Distinguishing when distinguishing D Di Dis Dist BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 10 no 0 9 0 0 0 0 1 +ID trunking id I ID ID ID BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 1 0 0 0 0 0 0 0 10 no 0 10 0 0 0 0 1 +(Section 18.35) (section ( (S (Se (Sec BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 10 (.). 4 9 0 0 0 0 1 +EXCHANGE_IDs over exchange_ids E EX EXC EXCH BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 10 , 1 9 0 0 0 0 1 +different target different d di dif diff BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 10 , 1 9 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 1 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 11 , 1 10 0 0 0 0 0 +[Page 46] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 1 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 1 0 no 0 4 0 0 0 0 1 +the same the t th the the BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 0 .. 2 9 0 0 0 0 1 +server is server s se ser serv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 0 , 1 9 0 0 0 0 1 +result MUST result r re res resu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 0 , 1 7 0 0 0 0 1 +eir_server_owner.so_major_id, and eir_server_owner.so_major_id, e ei eir eir_ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 0 .,. 3 9 0 0 0 0 1 +then treat then t th the then BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 0 ( 1 10 0 0 0 0 1 +to verification; to t to to to BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 0 ;...), 6 9 0 0 0 0 1 +connection to connection c co con conn BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 0 .' 2 9 0 0 0 0 1 +whether session whether w wh whe whet BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 0 . 1 8 0 0 0 0 1 +Session Trunking. session S Se Ses Sess BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 2 . 1 10 0 0 0 0 1 +different EXCHANGE_ID different d di dif diff BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 2 ,, 2 7 0 0 0 0 1 +eir_server_owner.so_major_id, eir_server_owner.so_minor_id, eir_server_owner.so_major_id, e ei eir eir_ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 2 .,., 4 9 0 0 0 0 1 +eir_server_scope results eir_server_scope e ei eir eir_ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 2 , 1 9 0 0 0 0 1 +the client the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 2 . 1 8 0 0 0 0 1 +client has client c cl cli clie BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 2 , 1 8 0 0 0 0 1 +eir_server_owner.so_major_id, eir_server_scope, eir_server_owner.so_major_id, e ei eir eir_ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 2 .,, 3 7 0 0 0 0 1 +eir_server_owner.so_minor_id, then eir_server_owner.so_minor_id, e ei eir eir_ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 2 ., 2 9 0 0 0 0 1 +CREATE_SESSION operation create_session C CR CRE CREA BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 1 2 , 1 8 0 0 0 0 1 +associates the associates a as ass asso BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 1 2 . 1 9 0 0 0 0 1 +for the for f fo for for BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 2 , 1 8 0 0 0 0 1 +associate the associate a as ass asso BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 2 . 1 5 0 0 0 0 1 +Of course, of O Of Of Of BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 5 ,, 2 10 0 0 0 0 1 +it is it i it it it BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 5 . 1 9 0 0 0 0 1 +connection. This connection. c co con conn BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 5 . 1 9 0 0 0 0 1 +below. It below. b be bel belo BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 5 . 1 9 0 0 0 0 1 +choose to choose c ch cho choo BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 5 . 1 3 0 0 0 0 1 +Client ID client C Cl Cli Clie BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 7 . 1 10 0 0 0 0 1 +two different two t tw two two BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 7 ,, 2 8 0 0 0 0 1 +eir_server_owner.so_major_id, and eir_server_owner.so_major_id, e ei eir eir_ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 7 ., 2 9 0 0 0 0 1 +in both in i in in in BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 1 7 , 1 9 0 0 0 0 1 +perform client perform p pe per perf BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 7 ( 1 8 0 0 0 0 1 +eir_server_owner.so_minor_id results eir_server_owner.so_minor_id e ei eir eir_ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 7 .). 3 8 0 0 0 0 1 +associate each associate a as ass asso BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 7 , 1 9 0 0 0 0 1 +session is session s se ses sess BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 7 . 1 6 0 0 0 0 1 +The client the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 9 no 0 9 0 0 0 0 1 +CREATE_SESSION on create_session C CR CRE CREA BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 1 9 , 1 10 0 0 0 0 1 +was returned was w wa was was BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 9 . 1 9 0 0 0 0 1 +sessions and sessions s se ses sess BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 1 9 no 0 9 0 0 0 0 1 +session. The session. s se ses sess BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 9 . 1 10 0 0 0 0 1 +by simply by b by by by BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 9 . 1 7 0 0 0 0 1 +When doing when W Wh Whe When BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 11 , 1 9 0 0 0 0 1 +sessions associated sessions s se ses sess BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 1 11 . 1 10 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 1 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 11 , 1 10 0 0 0 0 0 +[Page 47] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 1 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 1 0 no 0 4 0 0 0 0 1 +server to server s se ser serv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 0 no 0 9 0 0 0 0 1 +able to able a ab abl able BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 0 . 1 10 0 0 0 0 1 +It is it I It It It BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 0 , 1 8 0 0 0 0 1 +reconfiguration events, reconfiguration r re rec reco BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 0 , 1 10 0 0 0 0 1 +may be may m ma may may BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 1 0 0 1 0 no 0 10 0 0 0 0 1 +network address. network n ne net netw BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 1 0 . 1 2 0 0 0 0 1 +In most in I In In In BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 1 1 no 0 9 0 0 0 0 1 +indicate that indicate i in ind indi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 1 no 0 10 0 0 0 0 1 +connected to connected c co con conn BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 1 . 1 5 0 0 0 0 1 +Some guidelines some S So Som Some BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 2 : 1 10 0 0 0 0 1 +o When o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 1 3 , 1 10 0 0 0 0 1 +any id's any a an any any BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 3 '(..,, 6 9 0 0 0 0 1 +client ids) client c cl cli clie BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 3 ),, 3 9 0 0 0 0 1 +the new the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 3 , 1 9 0 0 0 0 1 +not due not n no not not BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 3 ., 2 9 0 0 0 0 1 +lost/stale although lost/stale l lo los lost BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 3 / 1 9 0 0 0 0 1 +inadvertent acceptance inadvertent i in ina inad BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 3 no 0 9 0 0 0 0 1 +the next the t th the the BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 3 . 1 2 0 0 0 0 1 +o When o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 1 5 no 0 6 0 0 0 0 1 +eir_server_owner.so_major_id changes, eir_server_owner.so_major_id e ei eir eir_ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 5 ., 2 9 0 0 0 0 1 +filehandles it filehandles f fi fil file BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 5 ,, 2 9 0 0 0 0 1 +to reclaim to t to to to BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 5 -. 2 10 0 0 0 0 1 +file handle file f fi fil file BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 5 , 1 10 0 0 0 0 1 +can proceed can c ca can can BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 5 - 1 9 0 0 0 0 1 +state. state. state. s st sta stat BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 5 . 1 1 0 0 0 0 1 +o When o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 1 7 . 1 10 0 0 0 0 1 +same, the same, s sa sam same BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 7 ,- 2 7 0 0 0 0 1 +eir_server_owner.so_minor_id in eir_server_owner.so_minor_id e ei eir eir_ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 7 . 1 9 0 0 0 0 1 +trunking. This trunking. t tr tru trun BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 7 . 1 9 0 0 0 0 1 +sessions being sessions s se ses sess BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 1 7 . 1 3 0 0 0 0 1 +2.10.5.1. Verifying 2.10.5.1. 2 2. 2.1 2.10 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 9 .... 4 10 0 0 0 0 1 +When the when W Wh Whe When BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 9 no 0 9 0 0 0 0 1 +matching or matching m ma mat matc BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 9 ,, 2 9 0 0 0 0 1 +and eir_clientid and a an and and BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 9 , 1 9 0 0 0 0 1 +servers' claims. servers' s se ser serv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 9 '. 2 10 0 0 0 0 1 +traffic in traffic t tr tra traf BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 9 : 1 4 0 0 0 0 1 +o For o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 1 10 , 1 8 0 0 0 0 1 +connections between connections c co con conn BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 10 no 0 10 0 0 0 0 1 +with the with w wi wit with BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 10 ., 2 9 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 1 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 11 , 1 10 0 0 0 0 0 +[Page 48] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 1 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 1 0 no 0 4 0 0 0 0 1 +servers MUST servers s se ser serv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 0 . 1 9 0 0 0 0 1 +a client a a a a a BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 1 0 0 0 0 0 1 0 , 1 8 0 0 0 0 1 +BIND_CONN_TO_SESSION is bind_conn_to_session B BI BIN BIND BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 1 0 no 0 10 0 0 0 0 1 +SP4_MACH_CRED (Section sp4_mach_cred S SP SP4 SP4_ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 0 (.). 4 8 0 0 0 0 1 +SP4_SSV, reliable sp4_ssv, S SP SP4 SP4_ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 0 ,( 2 9 0 0 0 0 1 +SSV) that ssv) S SS SSV SSV) BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 1 0 )(.) 4 9 0 0 0 0 1 +operation. operation. operation. o op ope oper BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 0 . 1 1 0 0 0 0 1 +When a when W Wh Whe When BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 2 ( 1 9 0 0 0 0 1 +BIND_CONN_TO_SESSION operation, bind_conn_to_session B BI BIN BIND BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 1 2 ,.), 4 10 0 0 0 0 1 +specified SP4_SSV specified s sp spe spec BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 2 no 0 9 0 0 0 0 1 +operation, the operation, o op ope oper BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 2 , 1 9 0 0 0 0 1 +RPCSEC_GSS protection, rpcsec_gss R RP RPC RPCS BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 1 2 ,, 2 8 0 0 0 0 1 +RPCSEC_GSS handle rpcsec_gss R RP RPC RPCS BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 1 2 ( 1 8 0 0 0 0 1 +Section 2.10.9). section S Se Sec Sect BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 2 ..). 4 2 0 0 0 0 1 +If the if I If If If BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 4 no 0 9 0 0 0 0 1 +session of session s se ses sess BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 4 , 1 9 0 0 0 0 1 +attempt because attempt a at att atte BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 4 no 0 9 0 0 0 0 1 +BIND_CONN_TO_SESSION arguments, bind_conn_to_session B BI BIN BIND BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 1 4 , 1 9 0 0 0 0 1 +because the because b be bec beca BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 4 . 1 9 0 0 0 0 1 +mistakenly or mistakenly m mi mis mist BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 4 no 0 9 0 0 0 0 1 +attempt, the attempt, a at att atte BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 4 , 1 10 0 0 0 0 1 +not be not n no not not BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 4 , 1 9 0 0 0 0 1 +use the use u us use use BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 4 . 1 8 0 0 0 0 1 +If the if I If If If BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 6 , 1 9 0 0 0 0 1 +BIND_CONN_TO_SESSION operation bind_conn_to_session B BI BIN BIND BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 1 6 no 0 9 0 0 0 0 1 +privacy, using privacy, p pr pri priv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 6 , 1 9 0 0 0 0 1 +ID was id I ID ID ID BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 1 0 0 0 0 0 0 1 6 . 1 9 0 0 0 0 1 +client that client c cl cli clie BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 6 no 0 10 0 0 0 0 1 +of the of o of of of BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 6 . 1 3 0 0 0 0 1 +o For o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 1 8 , 1 10 0 0 0 0 1 +verifying that verifying v ve ver veri BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 8 no 0 9 0 0 0 0 1 +EXCHANGE_ID operations exchange_id E EX EXC EXCH BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 1 8 . 1 9 0 0 0 0 1 +option is option o op opt opti BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 8 no 0 9 0 0 0 0 1 +EXCHANGE_ID operation. exchange_id E EX EXC EXCH BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 1 8 . 1 9 0 0 0 0 1 +RPCSEC_GSS authentication, rpcsec_gss R RP RPC RPCS BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 1 8 , 1 10 0 0 0 0 1 +the GSS the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 8 . 1 9 0 0 0 0 1 +ID trunking id I ID ID ID BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 1 0 0 0 0 0 0 1 8 ,' 2 10 0 0 0 0 1 +the same, the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 8 , 1 9 0 0 0 0 1 +allowed. allowed. allowed. a al all allo BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 8 . 1 1 0 0 0 0 1 +The second the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 11 . 1 10 0 0 0 0 1 +When the when W Wh Whe When BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 11 , 1 8 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 1 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 11 , 1 10 0 0 0 0 0 +[Page 49] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 1 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 1 0 no 0 4 0 0 0 0 1 +protection. The protection. p pr pro prot BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 0 . 1 9 0 0 0 0 1 +be confirmed be b be be be BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 0 . 1 9 0 0 0 0 1 +SET_SSV. Later, set_ssv. S SE SET SET_ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 1 0 ., 2 8 0 0 0 0 1 +destination network destination d de des dest BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 0 no 0 9 0 0 0 0 1 +EXCHANGE_ID was exchange_id E EX EXC EXCH BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 1 0 . 1 9 0 0 0 0 1 +reply has reply r re rep repl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 0 ,., 3 10 0 0 0 0 1 +eir_server_scope. If eir_server_scope. e ei eir eir_ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 0 ., 2 9 0 0 0 0 1 +a CREATE_SESSION a a a a a BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 1 0 0 0 0 0 1 0 , 1 9 0 0 0 0 1 +protected with protected p pr pro prot BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 0 no 0 9 0 0 0 0 1 +returned by returned r re ret retu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 0 . 1 9 0 0 0 0 1 +CREATE_SESSION request, create_session C CR CRE CREA BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 1 0 , 1 9 0 0 0 0 1 +verifier and verifier v ve ver veri BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 0 , 1 10 0 0 0 0 1 +server knows server s se ser serv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 0 , 1 10 0 0 0 0 1 +the purposes the t th the the BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 0 . 1 9 0 0 0 0 1 +2.10.6. Exactly 2.10.6. 2 2. 2.1 2.10 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 4 ... 3 10 0 0 0 0 1 +Via the via V Vi Via Via BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 4 ,.() 4 10 0 0 0 0 1 +requests sent requests r re req requ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 1 4 . 1 9 0 0 0 0 1 +channel and channel c ch cha chan BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 4 . 1 3 0 0 0 0 1 +Each COMPOUND each E Ea Eac Each BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 5 no 0 9 0 0 0 0 1 +SEQUENCE or sequence S SE SEQ SEQU BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 1 5 no 0 9 0 0 0 0 1 +exactly once. exactly e ex exa exac BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 5 . 1 9 0 0 0 0 1 +request is request r re req requ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 5 ( 1 7 0 0 0 0 1 +Section 2.10.6.1.3). section S Se Sec Sect BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 5 ....). 6 9 0 0 0 0 1 +sending the sending s se sen send BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 5 no 0 10 0 0 0 0 1 +and pNFS and a an and and BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 5 . 1 8 0 0 0 0 1 +requirement, divide requirement, r re req requ BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 5 ,: 2 8 0 0 0 0 1 +o Non-idempotent o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 1 8 -. 2 10 0 0 0 0 1 +o Idempotent o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 1 8 . 1 10 0 0 0 0 1 +o Idempotent o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 1 8 -. 2 10 0 0 0 0 1 +An example an A An An An BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 1 8 -., 3 9 0 0 0 0 1 +replier executes replier r re rep repl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 8 , 1 9 0 0 0 0 1 +execution succeeds, execution e ex exe exec BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 8 ,-. 3 9 0 0 0 0 1 +returns the returns r re ret retu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 8 -,. 3 10 0 0 0 0 1 +Therefore, EOS therefore, T Th The Ther BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 8 ,-. 3 8 0 0 0 0 1 +An example an A An An An BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 1 10 no 0 9 0 0 0 0 1 +containing a containing c co con cont BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 10 . 1 9 0 0 0 0 1 +has the has h ha has has BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 10 . 1 8 0 0 0 0 1 +Nevertheless, enforcing nevertheless, N Ne Nev Neve BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 10 , 1 10 0 0 0 0 1 +requests is requests r re req requ BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 1 10 . 1 6 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 1 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 11 , 1 10 0 0 0 0 0 +[Page 50] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 1 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 1 0 no 0 4 0 0 0 0 1 +Suppose a suppose S Su Sup Supp BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 0 no 0 10 0 0 0 0 1 +enforce EOS, enforce e en enf enfo BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 0 ,, 2 9 0 0 0 0 1 +partition. The partition. p pa par part BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 0 .-. 3 9 0 0 0 0 1 +Now, the now, N No Now Now, BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 0 ,. 2 9 0 0 0 0 1 +be in be b be be be BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 0 , 1 10 0 0 0 0 1 +while the while w wh whi whil BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 0 '/ 2 9 0 0 0 0 1 +system for system s sy sys syst BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 0 . 1 9 0 0 0 0 1 +attempt of attempt a at att atte BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 0 , 1 9 0 0 0 0 1 +free to free f fr fre free BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 1 0 ,-. 3 9 0 0 0 0 1 +original A original o or ori orig BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 0 '/ 2 9 0 0 0 0 1 +(thus the (thus ( (t (th (thu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 0 (), 3 9 0 0 0 0 1 +written by written w wr wri writ BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 0 . 1 7 0 0 0 0 1 +An example an A An An An BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 1 3 - 1 9 0 0 0 0 1 +containing SEQUENCE, containing c co con cont BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 3 ,,,.- 5 9 0 0 0 0 1 +execution of execution e ex exe exec BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 3 no 0 10 0 0 0 0 1 +an incorrect an a an an an BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 1 3 .,, 3 9 0 0 0 0 1 +the replier the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 3 , 1 8 0 0 0 0 1 +idempotent and idempotent i id ide idem BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 3 -. 2 4 0 0 0 0 1 +Note that note N No Not Note BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 4 no 0 9 0 0 0 0 1 +persists the persists p pe per pers BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 4 , 1 10 0 0 0 0 1 +somehow implemented somehow s so som some BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 4 (, 2 9 0 0 0 0 1 +server exists, server s se ser serv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 4 , 1 9 0 0 0 0 1 +storage versus storage s st sto stor BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 4 ). 2 8 0 0 0 0 1 +Section 2.10.6.5 section S Se Sec Sect BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 4 .... 4 10 0 0 0 0 1 +Regardless, even regardless, R Re Reg Rega BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 4 ,, 2 10 0 0 0 0 1 +improves robustness improves i im imp impr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 4 no 0 9 0 0 0 0 1 +because the because b be bec beca BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 4 / 1 9 0 0 0 0 1 +ONC RPC onc O ON ONC ONC BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 1 4 ().... 6 9 0 0 0 0 1 +shortcomings of shortcomings s sh sho shor BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 4 no 0 9 0 0 0 0 1 +how NFSv4.1 how h ho how how BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 4 .. 2 6 0 0 0 0 1 +2.10.6.1. Slot 2.10.6.1. 2 2. 2.1 2.10 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 8 .... 4 10 0 0 0 0 1 +The RPC the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 8 (),, 4 9 0 0 0 0 1 +to be to t to to to BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 8 , 1 8 0 0 0 0 1 +reasons. First, reasons. r re rea reas BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 8 .,; 3 9 0 0 0 0 1 +cannot be cannot c ca can cann BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 8 no 0 10 0 0 0 0 1 +previously sent previously p pr pre prev BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 8 .- 2 9 0 0 0 0 1 +request cache, request r re req requ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 8 , 1 9 0 0 0 0 1 +expensive look expensive e ex exp expe BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 8 ( 1 9 0 0 0 0 1 +address). NFSv4.1 address). a ad add addr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 8 )..-, 5 9 0 0 0 0 1 +index into index i in ind inde BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 8 ,., 3 8 0 0 0 0 1 +because RPC because b be bec beca BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 8 , 1 9 0 0 0 0 1 +there is there t th the ther BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 8 no 0 9 0 0 0 0 1 +at any at a at at at BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 8 ., 2 9 0 0 0 0 1 +storing all storing s st sto stor BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 8 .; 2 9 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 1 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 11 , 1 10 0 0 0 0 0 +[Page 51] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 1 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 1 0 no 0 4 0 0 0 0 1 +over four over o ov ove over BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 0 (). 3 10 0 0 0 0 1 +In practice, in I In In In BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 1 0 , 1 9 0 0 0 0 1 +number of number n nu num numb BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 0 , 1 9 0 0 0 0 1 +(LRU) approach (lru) ( (L (LR (LRU BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 1 0 () 2 9 0 0 0 0 1 +cache is cache c ca cac cach BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 0 .., 3 9 0 0 0 0 1 +bounded by bounded b bo bou boun BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 0 , 1 9 0 0 0 0 1 +used to used u us use used BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 0 . 1 9 0 0 0 0 1 +In the in I In In In BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 1 2 .,, 3 9 0 0 0 0 1 +it selects it i it it it BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 2 ..,' 4 9 0 0 0 0 1 +current maximum current c cu cur curr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 2 no 0 10 0 0 0 0 1 +which the which w wh whi whic BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 2 . 1 9 0 0 0 0 1 +to ca_maxrequests to t to to to BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 2 -(.), 5 9 0 0 0 0 1 +response to response r re res resp BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 2 no 0 9 0 0 0 0 1 +section. The section. s se sec sect BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 2 . 1 9 0 0 0 0 1 +requester has requester r re req requ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 2 ."" 3 10 0 0 0 0 1 +requester has requester r re req requ BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 2 . 1 7 0 0 0 0 1 +A slot a A A A A BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 1 0 0 0 0 0 1 4 no 0 9 0 0 0 0 1 +the request the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 4 .- 2 9 0 0 0 0 1 +unsigned value, unsigned u un uns unsi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 4 ,..(- 5 9 0 0 0 0 1 +1). The 1). 1 1) 1). 1). BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 4 )., 3 9 0 0 0 0 1 +sequence ID sequence s se seq sequ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 4 (.)., 5 9 0 0 0 0 1 +request MUST request r re req requ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 4 no 0 9 0 0 0 0 1 +the previous the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 4 . 1 9 0 0 0 0 1 +0xFFFFFFFF, then 0xffffffff, 0 0x 0xF 0xFF BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 4 , 1 10 0 0 0 0 1 +ID set id I ID ID ID BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 1 0 0 0 0 0 0 1 4 (..,(-)). 9 6 0 0 0 0 1 +The sequence the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 7 . 1 9 0 0 0 0 1 +the critical the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 7 : 1 9 0 0 0 0 1 +whether a whether w wh whe whet BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 7 , 1 9 0 0 0 0 1 +never-before-seen request. never-before-seen n ne nev neve BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 7 --. 3 9 0 0 0 0 1 +assert that assert a as ass asse BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 7 , 1 9 0 0 0 0 1 +given request given g gi giv give BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 7 no 0 10 0 0 0 0 1 +it unless it i it it it BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 7 ., 2 9 0 0 0 0 1 +has seen has h ha has has BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 7 ,. 2 8 0 0 0 0 1 +The replier the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 9 ' 1 10 0 0 0 0 1 +last one last l la las last BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 9 , 1 9 0 0 0 0 1 +request is: request r re req requ BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 9 : 1 1 0 0 0 0 1 +o A o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 1 10 , 1 10 0 0 0 0 1 +previously seen previously p pr pre prev BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 10 (). 3 9 0 0 0 0 1 +The replier the T Th The The BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 10 , 1 9 0 0 0 0 1 +MUST increase must M MU MUS MUST BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 1 10 '. 2 6 0 0 0 0 1 +o A o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 1 11 , 1 10 0 0 0 0 1 +currently recorded currently c cu cur curr BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 11 . 1 8 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 1 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 11 , 1 10 0 0 0 0 0 +[Page 52] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 1 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 1 0 no 0 4 0 0 0 0 1 +executed to executed e ex exe exec BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 0 ,. 2 10 0 0 0 0 1 +Section 2.10.6.2 section S Se Sec Sect BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 0 ... 3 9 0 0 0 0 1 +retries of retries r re ret retr BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 0 . 1 7 0 0 0 0 1 +o A o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 1 1 , 1 9 0 0 0 0 1 +(accounting for (accounting ( (a (ac (acc BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 1 () 2 10 0 0 0 0 1 +slot. The slot. s sl slo slot BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 1 .( 2 9 0 0 0 0 1 +result from result r re res resu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 1 ). 2 5 0 0 0 0 1 +o A o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 1 2 , 1 10 0 0 0 0 1 +than (accounting than t th tha than BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 2 () 2 9 0 0 0 0 1 +the slot. the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 2 . 1 9 0 0 0 0 1 +zero once zero z ze zer zero BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 2 , 1 9 0 0 0 0 1 +misordered retry misordered m mi mis miso BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 2 ., 2 9 0 0 0 0 1 +return NFS4ERR_SEQ_MISORDERED return r re ret retu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 2 ( 1 9 0 0 0 0 1 +CB_SEQUENCE). CB_SEQUENCE). cb_sequence). C CB CB_ CB_S BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 1 2 ). 2 2 0 0 0 0 1 +Unlike the unlike U Un Unl Unli BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 3 ,; 2 9 0 0 0 0 1 +has two has h ha has has BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 3 . 1 9 0 0 0 0 1 +session, the session, s se ses sess BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 3 , 1 10 0 0 0 0 1 +of COMPOUND of o of of of BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 3 ., 2 10 0 0 0 0 1 +which is which w wh whi whic BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 3 -( 2 8 0 0 0 0 1 +duplicate request duplicate d du dup dupl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 3 -),- 4 9 0 0 0 0 1 +cannot be cannot c ca can cann BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 3 . 1 9 0 0 0 0 1 +retransmitted requests, retransmitted r re ret retr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 3 , 1 9 0 0 0 0 1 +the request the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 3 , 1 9 0 0 0 0 1 +cache further. cache c ca cac cach BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 3 . 1 9 0 0 0 0 1 +the required the t th the the BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 3 . 1 7 0 0 0 0 1 +The slot the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 7 ,, 2 9 0 0 0 0 1 +traditional role traditional t tr tra trad BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 7 no 0 8 0 0 0 0 1 +replier's reply replier's r re rep repl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 7 '. 2 9 0 0 0 0 1 +more portable more m mo mor more BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 7 -- 2 9 0 0 0 0 1 +reassignment of reassignment r re rea reas BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 7 . 1 9 0 0 0 0 1 +addition, the addition, a ad add addi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 7 ,, 2 9 0 0 0 0 1 +robustness of robustness r ro rob robu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 0 0 0 0 0 0 1 7 no 0 10 0 0 0 0 1 +requester. While requester. r re req requ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 7 . 1 9 0 0 0 0 1 +purposes of purposes p pu pur purp BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 7 ( 1 9 0 0 0 0 1 +same XID same s sa sam same BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 7 ), 2 8 0 0 0 0 1 +considerations for considerations c co con cons BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 7 . 1 9 0 0 0 0 1 +previous versions previous p pr pre prev BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 7 . 1 9 0 0 0 0 1 +needs to needs n ne nee need BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 7 . 1 9 0 0 0 0 1 +request. The request. r re req requ BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 7 .: 2 4 0 0 0 0 1 +o The o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 1 11 . 1 10 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 1 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 11 , 1 10 0 0 0 0 0 +[Page 53] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 1 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 1 0 no 0 4 0 0 0 0 1 +o The o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 1 0 no 0 10 0 0 0 0 1 +layer, prior layer, l la lay laye BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 0 ,. 2 8 0 0 0 0 1 +CB_SEQUENCE operation. cb_sequence C CB CB_ CB_S BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 1 0 . 1 3 0 0 0 0 1 +o If o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 1 0 no 0 10 0 0 0 0 1 +CB_SEQUENCE (e.g., cb_sequence C CB CB_ CB_S BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 1 0 (..,), 6 8 0 0 0 0 1 +needed for needed n ne nee need BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 0 . 1 9 0 0 0 0 1 +o The o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 1 1 . 1 9 0 0 0 0 1 +so, the so, s so so, so, BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 1 ,,,() 5 10 0 0 0 0 1 +in the in i in in in BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 1 1 , 1 9 0 0 0 0 1 +only the only o on onl only BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 1 . 1 7 0 0 0 0 1 +Given that given G Gi Giv Give BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 3 -, 2 9 0 0 0 0 1 +the question: the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 3 : 1 9 0 0 0 0 1 +ID, slot id, I ID ID, ID, BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 1 3 ,,? 3 9 0 0 0 0 1 +means that means m me mea mean BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 1 3 no 0 9 0 0 0 0 1 +session ID, session s se ses sess BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 3 , 1 8 0 0 0 0 1 +associated with associated a as ass asso BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 3 . 1 9 0 0 0 0 1 +ID in id I ID ID ID BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 1 0 0 0 0 0 0 1 3 no 0 10 0 0 0 0 1 +to look to t to to to BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 3 ., 2 9 0 0 0 0 1 +is only is i is is is BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 3 ,- 2 10 0 0 0 0 1 +reply with reply r re rep repl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 3 [];,, 5 10 0 0 0 0 1 +ID in id I ID ID ID BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 1 0 0 0 0 0 0 1 3 no 0 9 0 0 0 0 1 +belongs to belongs b be bel belo BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 3 . 1 4 0 0 0 0 1 +The SEQUENCE the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 6 () 2 8 0 0 0 0 1 +"highest_slotid" value, "highest_slotid" " "h "hi "hig BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 6 "", 3 10 0 0 0 0 1 +information. The information. i in inf info BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 6 . 1 8 0 0 0 0 1 +representing the representing r re rep repr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 6 - 1 9 0 0 0 0 1 +value. The value. v va val valu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 6 . 1 8 0 0 0 0 1 +conservative value conservative c co con cons BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 6 , 1 9 0 0 0 0 1 +above the above a ab abo abov BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 6 no 0 9 0 0 0 0 1 +optimal level. optimal o op opt opti BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 6 . 1 9 0 0 0 0 1 +request slots request r re req requ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 6 , 1 8 0 0 0 0 1 +information to information i in inf info BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 6 . 1 5 0 0 0 0 1 +The replier the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 9 no 0 10 0 0 0 0 1 +enforced highest_slotid, enforced e en enf enfo BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 9 ,: 2 7 0 0 0 0 1 +o The o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 1 9 no 0 10 0 0 0 0 1 +highest_slotid the highest_slotid h hi hig high BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 9 . 1 9 0 0 0 0 1 +permits the permits p pe per perm BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 9 () 2 8 0 0 0 0 1 +requester that requester r re req requ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 9 , 1 9 0 0 0 0 1 +more fairly more m mo mor more BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 9 no 0 9 0 0 0 0 1 +other requesters. other o ot oth othe BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 9 . 1 8 0 0 0 0 1 +replier's value replier's r re rep repl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 9 ', 2 9 0 0 0 0 1 +hard limits hard h ha har hard BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 9 '. 2 8 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 1 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 11 , 1 10 0 0 0 0 0 +[Page 54] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 1 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 1 0 no 0 4 0 0 0 0 1 +However, because however, H Ho How Howe BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 0 ,, 2 9 0 0 0 0 1 +active requests active a ac act acti BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 0 ;, 2 10 0 0 0 0 1 +replier must replier r re rep repl BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 0 . 1 9 0 0 0 0 1 +o The o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 1 1 no 0 9 0 0 0 0 1 +requester is requester r re req requ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 1 no 0 8 0 0 0 0 1 +CB_SEQUENCE operation. cb_sequence C CB CB_ CB_S BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 1 1 .' 2 9 0 0 0 0 1 +SHOULD be should S SH SHO SHOU BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 1 1 no 0 10 0 0 0 0 1 +in the in i in in in BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 1 1 . 1 6 0 0 0 0 1 +A requester a A A A A BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 1 0 0 0 0 0 1 2 no 0 9 0 0 0 0 1 +highest_slotid argument highest_slotid h hi hig high BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 2 ,.. 3 8 0 0 0 0 1 +requester continues requester r re req requ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 2 no 0 9 0 0 0 0 1 +response to response r re res resp BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 2 , 1 8 0 0 0 0 1 +highest_slotid argument highest_slotid h hi hig high BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 2 no 0 7 0 0 0 0 1 +highest_slotid. This highest_slotid. h hi hig high BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 2 . 1 9 0 0 0 0 1 +behavior when behavior b be beh beha BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 2 no 0 9 0 0 0 0 1 +with slot with w wi wit with BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 2 . 1 9 0 0 0 0 1 +with such with w wi wit with BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 2 , 1 10 0 0 0 0 1 +action, and action, a ac act acti BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 2 , 1 9 0 0 0 0 1 +less than less l le les less BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 2 ., 2 9 0 0 0 0 1 +the requester the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 2 no 0 9 0 0 0 0 1 +that is that t th tha that BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 2 ', 2 9 0 0 0 0 1 +the server the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 2 , 1 10 0 0 0 0 1 +the request the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 2 no 0 9 0 0 0 0 1 +the request the t th the the BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 2 . 1 3 0 0 0 0 1 +The replier the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 6 no 0 9 0 0 0 0 1 +requester sends requester r re req requ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 6 no 0 10 0 0 0 0 1 +to the to t to to to BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 6 '. 2 6 0 0 0 0 1 +The requester the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 7 no 0 9 0 0 0 0 1 +non-retry requests non-retry n no non non- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 7 -' 2 9 0 0 0 0 1 +highest_slotid. Once highest_slotid. h hi hig high BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 7 . 1 8 0 0 0 0 1 +enforced highest_slotid, enforced e en enf enfo BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 7 , 1 9 0 0 0 0 1 +retries on retries r re ret retr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 7 '. 2 9 0 0 0 0 1 +request is request r re req requ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 7 no 0 9 0 0 0 0 1 +enforced highest_slotid, enforced e en enf enfo BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 7 , 1 9 0 0 0 0 1 +what is what w wh wha what BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 7 ', 2 10 0 0 0 0 1 +the slot the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 7 (, 2 9 0 0 0 0 1 +do one do d do do do BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 7 ). 2 9 0 0 0 0 1 +slot is slot s sl slo slot BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 7 , 1 9 0 0 0 0 1 +indicating it indicating i in ind indi BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 7 . 1 8 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 1 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 11 , 1 10 0 0 0 0 0 +[Page 55] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 1 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 1 0 no 0 4 0 0 0 0 1 +o The o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 1 0 no 0 10 0 0 0 0 1 +new request. new n ne new new BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 0 ., 2 9 0 0 0 0 1 +entries faster. entries e en ent entr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 0 ., 2 9 0 0 0 0 1 +its granted its i it its its BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 0 , 1 9 0 0 0 0 1 +receipt of receipt r re rec rece BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 0 . 1 9 0 0 0 0 1 +the slot the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 0 no 0 9 0 0 0 0 1 +the replier's the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 0 '', 3 8 0 0 0 0 1 +because the because b be bec beca BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 0 no 0 9 0 0 0 0 1 +the update the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 0 ., 2 9 0 0 0 0 1 +case, the case, c ca cas case BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 0 , 1 8 0 0 0 0 1 +entries at entries e en ent entr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 0 no 0 9 0 0 0 0 1 +outstanding, until outstanding, o ou out outs BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 0 , 1 9 0 0 0 0 1 +reply containing reply r re rep repl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 0 . 1 9 0 0 0 0 1 +infer that infer i in inf infe BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 0 no 0 9 0 0 0 0 1 +new request new n ne new new BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 0 no 0 9 0 0 0 0 1 +the next the t th the the BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 0 . 1 4 0 0 0 0 1 +2.10.6.1.1. Caching 2.10.6.1.1. 2 2. 2.1 2.10 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 4 ..... 5 10 0 0 0 0 1 +When a when W Wh Whe When BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 4 , 1 9 0 0 0 0 1 +its reply its i it its its BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 4 .,, 3 10 0 0 0 0 1 +ID, and id, I ID ID, ID, BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 1 4 ,. 2 9 0 0 0 0 1 +SEQUENCE also sequence S SE SEQ SEQU BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 1 4 ,, 2 10 0 0 0 0 1 +and status and a an and and BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 4 ., 2 9 0 0 0 0 1 +re-compute the re-compute r re re- re-c BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 4 -, 2 9 0 0 0 0 1 +session, and/or session, s se ses sess BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 4 ,/., 4 10 0 0 0 0 1 +CB_SEQUENCE includes cb_sequence C CB CB_ CB_S BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 1 4 . 1 9 0 0 0 0 1 +The client the T Th The The BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 4 - 1 9 0 0 0 0 1 +session as session s se ses sess BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 4 . 1 3 0 0 0 0 1 +Regardless of regardless R Re Reg Rega BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 7 - 1 9 0 0 0 0 1 +ID, target id, I ID ID, ID, BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 1 7 ,,, 3 9 0 0 0 0 1 +MUST NOT must M MU MUS MUST BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 1 7 - 1 9 0 0 0 0 1 +receives a receives r re rec rece BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 7 , 1 9 0 0 0 0 1 +knowing whether knowing k kn kno know BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 7 no 0 9 0 0 0 0 1 +response to response r re res resp BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 7 no 0 9 0 0 0 0 1 +request. Therefore, request. r re req requ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 7 .,, 3 9 0 0 0 0 1 +slot ID, slot s sl slo slot BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 7 , 1 9 0 0 0 0 1 +request was request r re req requ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 7 . 1 9 0 0 0 0 1 +information is information i in inf info BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 7 , 1 9 0 0 0 0 1 +unneeded work. unneeded u un unn unne BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 7 . 1 9 0 0 0 0 1 +get the get g ge get get BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 7 no 0 10 0 0 0 0 1 +by subsequent by b by by by BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 7 , 1 9 0 0 0 0 1 +that might that t th tha that BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 7 . 1 3 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 1 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 11 , 1 10 0 0 0 0 0 +[Page 56] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 1 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 1 0 no 0 4 0 0 0 0 1 +2.10.6.1.2. Errors 2.10.6.1.2. 2 2. 2.1 2.10 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 0 ..... 5 10 0 0 0 0 1 +Any time any A An Any Any BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 0 , 1 10 0 0 0 0 1 +the slot the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 0 . 1 9 0 0 0 0 1 +cache entry cache c ca cac cach BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 0 no 0 9 0 0 0 0 1 +or CB_SEQUENCE. or o or or or BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 0 . 1 2 0 0 0 0 1 +2.10.6.1.3. Optional 2.10.6.1.3. 2 2. 2.1 2.10 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 1 ..... 5 10 0 0 0 0 1 +On a on O On On On BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 1 -, 2 9 0 0 0 0 1 +replier to replier r re rep repl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 1 no 0 8 0 0 0 0 1 +operation (SEQUENCE operation o op ope oper BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 1 () 2 8 0 0 0 0 1 +csa_cachethis fields csa_cachethis c cs csa csa_ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 1 . 1 9 0 0 0 0 1 +The reason the T Th The The BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 1 no 0 10 0 0 0 0 1 +is that is i is is is BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 1 []. 3 9 0 0 0 0 1 +Caching the caching C Ca Cac Cach BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 1 1 . 1 9 0 0 0 0 1 +large (see large l la lar larg BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 1 1 (...),. 7 9 0 0 0 0 1 +if the if i if if if BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 1 , 1 8 0 0 0 0 1 +unnecessarily caching unnecessarily u un unn unne BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 1 no 0 9 0 0 0 0 1 +RPC latency. rpc R RP RPC RPC BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 1 1 . 1 1 0 0 0 0 1 +Whether or whether W Wh Whe Whet BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 5 no 0 10 0 0 0 0 1 +effect on effect e ef eff effe BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 5 . 1 8 0 0 0 0 1 +CB_SEQUENCE are cb_sequence C CB CB_ CB_S BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 1 5 ,' 2 8 0 0 0 0 1 +incremented by incremented i in inc incr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 5 . 1 9 0 0 0 0 1 +cache the cache c ca cac cach BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 5 ,: 2 8 0 0 0 0 1 +o The o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 1 7 . 1 9 0 0 0 0 1 +sa_cachethis or sa_cachethis s sa sa_ sa_c BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 7 , 1 10 0 0 0 0 1 +to cache. to t to to to BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 7 . 1 8 0 0 0 0 1 +implementation. implementation. implementation. i im imp impl BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 7 . 1 2 0 0 0 0 1 +o The o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 1 8 no 0 10 0 0 0 0 1 +original results original o or ori orig BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 8 , 1 9 0 0 0 0 1 +with the with w wi wit with BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 8 no 0 9 0 0 0 0 1 +error NFS4ERR_RETRY_UNCACHED_REP. error e er err erro BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 8 ., 2 9 0 0 0 0 1 +retries the retries r re ret retr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 8 ,. 2 9 0 0 0 0 1 +replier receives replier r re rep repl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 8 no 0 9 0 0 0 0 1 +the COMPOUND the t th the the BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 8 ,, 2 9 0 0 0 0 1 +* MAY * * * * * BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 10 * 1 10 0 0 0 0 1 +operation if operation o op ope oper BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 10 no 0 10 0 0 0 0 1 +(granted, a (granted, ( (g (gr (gra BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 10 (, 2 9 0 0 0 0 1 +NFSv4.1 protocol). nfsv4.1 N NF NFS NFSv BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 10 .). 3 3 0 0 0 0 1 +* MUST * * * * * BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 11 * 1 10 0 0 0 0 1 +Sequence operation sequence S Se Seq Sequ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 11 no 0 9 0 0 0 0 1 +operation. operation. operation. o op ope oper BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 11 . 1 1 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 1 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 11 , 1 10 0 0 0 0 0 +[Page 57] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 1 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 1 0 no 0 4 0 0 0 0 1 +o If o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 1 0 , 1 10 0 0 0 0 1 +that was that t th tha that BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 0 no 0 9 0 0 0 0 1 +be supported be b be be be BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 0 (..,), 6 10 0 0 0 0 1 +replier MUST replier r re rep repl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 0 . 1 9 0 0 0 0 1 +the replier the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 0 no 0 9 0 0 0 0 1 +NFS4ERR_NOTSUPP as nfs4err_notsupp N NF NFS NFS4 BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 0 . 1 4 0 0 0 0 1 +o If o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 1 1 , 1 9 0 0 0 0 1 +replier MAY replier r re rep repl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 1 , 1 10 0 0 0 0 1 +provided the provided p pr pro prov BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 1 no 0 9 0 0 0 0 1 +state of state s st sta stat BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 1 . 1 9 0 0 0 0 1 +include: NFS4ERR_NOTSUPP include: i in inc incl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 1 : 1 9 0 0 0 0 1 +but not but b bu but but BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 1 , 1 9 0 0 0 0 1 +supported by supported s su sup supp BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 1 ;; 2 7 0 0 0 0 1 +NFS4ERR_REQ_TOO_BIG. NFS4ERR_REQ_TOO_BIG. nfs4err_req_too_big. N NF NFS NFS4 BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 1 . 1 3 0 0 0 0 1 +The discussion the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 4 no 0 9 0 0 0 0 1 +original one. original o or ori orig BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 4 ...... 6 9 0 0 0 0 1 +do, and do, d do do, do, BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 4 ,. 2 9 0 0 0 0 1 +Since the since S Si Sin Sinc BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 4 no 0 9 0 0 0 0 1 +that would that t th tha that BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 4 no 0 10 0 0 0 0 1 +retry, the retry, r re ret retr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 4 , 1 9 0 0 0 0 1 +responses: responses: responses: r re res resp BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 4 : 1 1 0 0 0 0 1 +o The o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 1 6 ( 1 9 0 0 0 0 1 +cached it cached c ca cac cach BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 6 no 0 10 0 0 0 0 1 +and retry and a an and and BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 6 ). 2 2 0 0 0 0 1 +o A o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 1 7 no 0 10 0 0 0 0 1 +error NFS4ERR_FALSE_RETRY. error e er err erro BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 7 . 1 4 0 0 0 0 1 +o A o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 1 7 no 0 9 0 0 0 0 1 +NFS4_OK, together nfs4_ok, N NF NFS NFS4 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 7 , 1 10 0 0 0 0 1 +retried request retried r re ret retr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 7 no 0 9 0 0 0 0 1 +other error other o ot oth othe BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 7 . 1 4 0 0 0 0 1 +o A o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 1 8 no 0 10 0 0 0 0 1 +NFS4_OK, together nfs4_ok, N NF NFS NFS4 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 8 , 1 9 0 0 0 0 1 +original request original o or ori orig BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 8 no 0 9 0 0 0 0 1 +other error other o ot oth othe BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 8 . 1 4 0 0 0 0 1 +2.10.6.1.3.1. False 2.10.6.1.3.1. 2 2. 2.1 2.10 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 9 ...... 6 10 0 0 0 0 1 +If a if I If If If BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 9 no 0 10 0 0 0 0 1 +ID that id I ID ID ID BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 1 0 0 0 0 0 0 1 9 no 0 9 0 0 0 0 1 +retried request retried r re ret retr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 9 , 1 10 0 0 0 0 1 +retry that retry r re ret retr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 9 no 0 9 0 0 0 0 1 +operations from operations o op ope oper BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 1 9 no 0 9 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 1 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 11 , 1 10 0 0 0 0 0 +[Page 58] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 1 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 1 0 no 0 4 0 0 0 0 1 +principal in principal p pr pri prin BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 0 ' 1 10 0 0 0 0 1 +different user, different d di dif diff BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 0 ,. 2 10 0 0 0 0 1 +a false a a a a a BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 1 0 0 0 0 0 1 0 ,() 3 9 0 0 0 0 1 +NFS4ERR_FALSE_RETRY in nfs4err_false_retry N NF NFS NFS4 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 0 no 0 9 0 0 0 0 1 +detects a detects d de det dete BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 0 . 1 3 0 0 0 0 1 +Translations of translations T Tr Tra Tran BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 1 1 no 0 9 0 0 0 0 1 +due to due d du due due BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 1 , 1 10 0 0 0 0 1 +the replier, the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 1 , 1 9 0 0 0 0 1 +are the are a ar are are BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 1 . 1 9 0 0 0 0 1 +different between different d di dif diff BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 1 , 1 9 0 0 0 0 1 +MUST return must M MU MUS MUST BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 1 1 . 1 4 0 0 0 0 1 +If an if I If If If BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 3 , 1 10 0 0 0 0 1 +that was that t th tha that BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 3 no 0 9 0 0 0 0 1 +supported in supported s su sup supp BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 3 (..,), 6 9 0 0 0 0 1 +replier MAY replier r re rep repl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 3 ( 1 9 0 0 0 0 1 +of the of o of of of BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 3 )., 3 9 0 0 0 0 1 +MAY return may M MA MAY MAY BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 1 1 0 0 1 0 0 1 3 no 0 10 0 0 0 0 1 +appropriate. Note appropriate. a ap app appr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 3 . 1 9 0 0 0 0 1 +replier deals replier r re rep repl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 3 . 1 8 0 0 0 0 1 +difference is difference d di dif diff BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 3 no 0 10 0 0 0 0 1 +Sequence operations, sequence S Se Seq Sequ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 3 , 1 9 0 0 0 0 1 +error for error e er err erro BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 3 no 0 9 0 0 0 0 1 +that MUST that t th tha that BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 3 . 1 9 0 0 0 0 1 +2.10.6.2. Retry 2.10.6.2. 2 2. 2.1 2.10 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 6 .... 4 10 0 0 0 0 1 +A requester a A A A A BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 1 0 0 0 0 0 1 6 , 1 10 0 0 0 0 1 +to send to t to to to BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 6 . 1 9 0 0 0 0 1 +and re-send and a an and and BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 6 -,- 3 9 0 0 0 0 1 +different connection different d di dif diff BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 6 . 1 9 0 0 0 0 1 +If the if I If If If BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 7 - 1 10 0 0 0 0 1 +over the over o ov ove over BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 7 , 1 9 0 0 0 0 1 +reconnect because reconnect r re rec reco BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 7 no 0 10 0 0 0 0 1 +backchannel. The backchannel. b ba bac back BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 7 .- 2 8 0 0 0 0 1 +connection that connection c co con conn BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 7 '. 2 10 0 0 0 0 1 +is no is i is is is BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 7 , 1 10 0 0 0 0 1 +no backchannel no n no no no BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 7 no 0 9 0 0 0 0 1 +bit in bit b bi bit bit BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 7 . 1 9 0 0 0 0 1 +The client the T Th The The BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 7 ( 1 9 0 0 0 0 1 +destroy the destroy d de des dest BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 7 ). 2 3 0 0 0 0 1 +Note that note N No Not Note BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 10 no 0 8 0 0 0 0 1 +disconnect between disconnect d di dis disc BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 10 ., 2 9 0 0 0 0 1 +consume resources, consume c co con cons BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 10 ,,, 3 10 0 0 0 0 1 +not, consumes not, n no not not, BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 10 ,., 3 9 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 1 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 11 , 1 10 0 0 0 0 0 +[Page 59] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 1 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 1 0 no 0 4 0 0 0 0 1 +sent shortly sent s se sen sent BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 0 , 1 9 0 0 0 0 1 +bandwidth and bandwidth b ba ban band BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 0 ' 1 10 0 0 0 0 1 +control system. control c co con cont BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 0 . 1 2 0 0 0 0 1 +A requester a A A A A BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 1 0 0 0 0 0 1 0 no 0 9 0 0 0 0 1 +for another for f fo for for BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 0 ., 2 9 0 0 0 0 1 +requester does requester r re req requ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 0 no 0 9 0 0 0 0 1 +next request. next n ne nex next BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 0 ., 2 9 0 0 0 0 1 +sequence ID sequence s se seq sequ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 0 ,. 2 9 0 0 0 0 1 +uses the uses u us use uses BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 0 ,. 2 9 0 0 0 0 1 +replier has replier r re rep repl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 0 , 1 10 0 0 0 0 1 +is not is i is is is BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 0 ,' 2 9 0 0 0 0 1 +request with request r re req requ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 0 ( 1 9 0 0 0 0 1 +CB_SEQUENCE). CB_SEQUENCE). cb_sequence). C CB CB_ CB_S BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 1 0 ). 2 2 0 0 0 0 1 +RDMA fabrics rdma R RD RDM RDMA BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 1 3 () 2 10 0 0 0 0 1 +within each within w wi wit with BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 3 /""[] 5 9 0 0 0 0 1 +of a of o of of of BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 3 ., 2 8 0 0 0 0 1 +operations become operations o op ope oper BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 1 3 . 1 9 0 0 0 0 1 +ensure that ensure e en ens ensu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 3 no 0 9 0 0 0 0 1 +cache use cache c ca cac cach BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 3 (). 3 9 0 0 0 0 1 +A retry a A A A A BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 1 0 0 0 0 0 1 5 no 0 10 0 0 0 0 1 +on the on o on on on BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 5 . 1 9 0 0 0 0 1 +NFS4ERR_DELAY as nfs4err_delay N NF NFS NFS4 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 5 , 1 9 0 0 0 0 1 +implementations MAY implementations i im imp impl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 5 . 1 9 0 0 0 0 1 +SEQUENCE and sequence S SE SEQ SEQU BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 1 5 , 1 9 0 0 0 0 1 +approach allows approach a ap app appr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 5 no 0 9 0 0 0 0 1 +to be to t to to to BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 5 ( 1 8 0 0 0 0 1 +requester specified requester r re req requ BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 5 ). 2 6 0 0 0 0 1 +2.10.6.3. Resolving 2.10.6.3. 2 2. 2.1 2.10 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 7 .... 4 10 0 0 0 0 1 +It is it I It It It BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 7 no 0 9 0 0 0 0 1 +the reply the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 7 ., 2 9 0 0 0 0 1 +client may client c cl cli clie BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 7 , 1 9 0 0 0 0 1 +but the but b bu but but BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 7 ( 1 9 0 0 0 0 1 +the delegation) the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 7 ). 2 9 0 0 0 0 1 +operation arrives operation o op ope oper BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 7 , 1 10 0 0 0 0 1 +the backchannel, the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 7 ,, 2 9 0 0 0 0 1 +perhaps even perhaps p pe per perh BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 7 , 1 8 0 0 0 0 1 +associated with associated a as ass asso BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 7 . 1 5 0 0 0 0 1 +The presence the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 10 no 0 9 0 0 0 0 1 +this issue. this t th thi this BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 10 ., 2 9 0 0 0 0 1 +uniquely identified uniquely u un uni uniq BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 10 ,, 2 9 0 0 0 0 1 +triple. By triple. t tr tri trip BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 10 .() 3 10 0 0 0 0 1 +are retired, are a ar are are BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 10 ,"" 3 10 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 1 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 11 , 1 10 0 0 0 0 0 +[Page 60] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 1 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 1 0 no 0 4 0 0 0 0 1 +each of each e ea eac each BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 0 '. 2 9 0 0 0 0 1 +sufficient information sufficient s su suf suff BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 0 no 0 10 0 0 0 0 1 +between an between b be bet betw BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 0 . 1 9 0 0 0 0 1 +For each for F Fo For For BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 0 no 0 9 0 0 0 0 1 +callback, the callback, c ca cal call BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 0 ,"",, 5 9 0 0 0 0 1 +sequence ID sequence s se seq sequ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 0 no 0 8 0 0 0 0 1 +retirement rules retirement r re ret reti BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 0 , 1 9 0 0 0 0 1 +in fact, in i in in in BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 1 0 ,'., 4 9 0 0 0 0 1 +slot ID, slot s sl slo slot BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 0 ,, 2 10 0 0 0 0 1 +the associated the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 0 no 0 8 0 0 0 0 1 +identifiers (in identifiers i id ide iden BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 0 ('), 4 9 0 0 0 0 1 +benefit of benefit b be ben bene BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 0 ., 2 9 0 0 0 0 1 +server to server s se ser serv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 0 , 1 10 0 0 0 0 1 +certain that certain c ce cer cert BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 0 . 1 7 0 0 0 0 1 +The CB_SEQUENCE the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 4 no 0 9 0 0 0 0 1 +list of list l li lis list BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 4 "",,. 5 9 0 0 0 0 1 +the client the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 4 no 0 9 0 0 0 0 1 +ID, slot id, I ID ID, ID, BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 1 4 ,,(.., 6 9 0 0 0 0 1 +server's reply server's s se ser serv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 4 '), 3 9 0 0 0 0 1 +that the that t th tha that BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 4 ,. 2 9 0 0 0 0 1 +client does client c cl cli clie BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 4 no 0 9 0 0 0 0 1 +triple to triple t tr tri trip BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 4 ( 1 8 0 0 0 0 1 +referring to referring r re ref refe BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 4 ), 2 10 0 0 0 0 1 +to this to t to to to BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 4 . 1 9 0 0 0 0 1 +requests that requests r re req requ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 1 4 no 0 9 0 0 0 0 1 +to in to t to to to BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 4 . 1 4 0 0 0 0 1 +The client the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 7 no 0 10 0 0 0 0 1 +to arrive to t to to to BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 7 , 1 9 0 0 0 0 1 +because it because b be bec beca BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 7 . 1 9 0 0 0 0 1 +client should client c cl cli clie BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 7 no 0 9 0 0 0 0 1 +within the within w wi wit with BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 7 - 1 9 0 0 0 0 1 +server, and server, s se ser serv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 7 ,. 2 8 0 0 0 0 1 +expires, it expires, e ex exp expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 7 ,. 2 9 0 0 0 0 1 +are other are a ar are are BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 7 . 1 9 0 0 0 0 1 +them are them t th the them BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 7 .... 4 9 0 0 0 0 1 +2.10.6.4. COMPOUND 2.10.6.4. 2 2. 2.1 2.10 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 9 .... 4 10 0 0 0 0 1 +Very large very V Ve Ver Very BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 9 no 0 9 0 0 0 0 1 +issues (especially issues i is iss issu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 9 (). 3 9 0 0 0 0 1 +session is session s se ses sess BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 9 (.),(), 7 10 0 0 0 0 1 +the client the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 9 - 1 9 0 0 0 0 1 +send or send s se sen send BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 9 (),- 4 9 0 0 0 0 1 +will return will w wi wil will BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 1 9 (),- 4 9 0 0 0 0 1 +reply they reply r re rep repl BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 9 (). 3 10 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 1 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 11 , 1 10 0 0 0 0 0 +[Page 61] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 1 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 1 0 no 0 4 0 0 0 0 1 +If a if I If If If BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 0 , 1 9 0 0 0 0 1 +status NFS4ERR_REQ_TOO_BIG. status s st sta stat BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 0 . 1 10 0 0 0 0 1 +as the as a as as as BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 0 () 2 9 0 0 0 0 1 +the request the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 0 ( 1 9 0 0 0 0 1 +and that and a an and and BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 0 ), 2 9 0 0 0 0 1 +it MAY it i it it it BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 0 no 0 8 0 0 0 0 1 +COMPOUND or compound C CO COM COMP BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 1 0 ( 1 9 0 0 0 0 1 +operation did operation o op ope oper BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 0 no 0 9 0 0 0 0 1 +cache does cache c ca cac cach BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 0 ). 2 9 0 0 0 0 1 +the operation the t th the the BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 0 . 1 6 0 0 0 0 1 +If a if I If If If BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 2 , 1 10 0 0 0 0 1 +NFS4ERR_REP_TOO_BIG. A nfs4err_rep_too_big. N NF NFS NFS4 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 2 . 1 9 0 0 0 0 1 +status for status s st sta stat BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 2 () 2 9 0 0 0 0 1 +request, or request, r re req requ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 2 ,( 2 10 0 0 0 0 1 +same COMPOUND same s sa sam same BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 2 ). 2 8 0 0 0 0 1 +NFS4ERR_REP_TOO_BIG in nfs4err_rep_too_big N NF NFS NFS4 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 2 , 1 9 0 0 0 0 1 +the response the t th the the BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 2 . 1 7 0 0 0 0 1 +If sa_cachethis if I If If If BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 4 , 1 10 0 0 0 0 1 +a reply a a a a a BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 1 0 0 0 0 0 1 4 no 0 10 0 0 0 0 1 +operation (see operation o op ope oper BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 4 (....). 7 8 0 0 0 0 1 +ca_maxresponsesize_cached (and ca_maxresponsesize_cached c ca ca_ ca_m BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 4 ( 1 9 0 0 0 0 1 +TRUE), then true), T TR TRU TRUE BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 1 4 ),. 3 9 0 0 0 0 1 +Even if even E Ev Eve Even BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 4 ( 1 9 0 0 0 0 1 +matter) is matter) m ma mat matt BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 4 ) 1 9 0 0 0 0 1 +(SEQUENCE or (sequence ( (S (SE (SEQ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 1 4 (), 3 8 0 0 0 0 1 +sa_cachethis or sa_cachethis s sa sa_ sa_c BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 4 ., 2 9 0 0 0 0 1 +has eleven has h ha has has BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 4 ,, 2 9 0 0 0 0 1 +RENAME, and rename, R RE REN RENA BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 1 4 ,, 2 9 0 0 0 0 1 +server may server s se ser serv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 4 no 0 8 0 0 0 0 1 +operation. Since operation. o op ope oper BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 4 ., 2 9 0 0 0 0 1 +the non-idempotent the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 4 -,' 3 9 0 0 0 0 1 +needs to needs n ne nee need BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 4 no 0 9 0 0 0 0 1 +once semantics. once o on onc once BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 4 ., 2 9 0 0 0 0 1 +have cached have h ha hav have BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 4 no 0 9 0 0 0 0 1 +requested operations, requested r re req requ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 4 , 1 9 0 0 0 0 1 +NFS4ERR_REP_TOO_BIG_TO_CACHE. NFS4ERR_REP_TOO_BIG_TO_CACHE. nfs4err_rep_too_big_to_cache. N NF NFS NFS4 BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 4 . 1 4 0 0 0 0 1 +A client a A A A A BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 1 0 0 0 0 0 1 9 no 0 10 0 0 0 0 1 +the current the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 9 (,,, 4 9 0 0 0 0 1 +RESTOREFH), it restorefh), R RE RES REST BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 1 9 ), 2 9 0 0 0 0 1 +operation. Otherwise, operation. o op ope oper BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 9 ., 2 9 0 0 0 0 1 +that changed that t th tha that BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 9 , 1 9 0 0 0 0 1 +filehandle. For filehandle. f fi fil file BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 9 .(.), 5 10 0 0 0 0 1 +always available always a al alw alwa BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 9 . 1 9 0 0 0 0 1 +handling of handling h ha han hand BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 9 -: 2 8 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 1 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 11 , 1 10 0 0 0 0 0 +[Page 62] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 1 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 1 0 no 0 4 0 0 0 0 1 +o Within o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 1 0 , 1 9 0 0 0 0 1 +immediately after immediately i im imm imme BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 0 -. 2 9 0 0 0 0 1 +client MUST client c cl cli clie BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 0 - 1 8 0 0 0 0 1 +operation that operation o op ope oper BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 0 -(..,), 7 9 0 0 0 0 1 +unless the unless u un unl unle BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 0 ., 2 9 0 0 0 0 1 +because even because b be bec beca BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 0 -, 2 10 0 0 0 0 1 +produced originated produced p pr pro prod BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 0 no 0 9 0 0 0 0 1 +(e.g., PUTFH, (e.g., ( (e (e. (e.g BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 0 (..,,),-(..,,). 15 9 0 0 0 0 1 +the origin the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 0 -, 2 9 0 0 0 0 1 +GETFH after getfh G GE GET GETF BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 1 0 , 1 8 0 0 0 0 1 +RESTOREFH returns restorefh R RE RES REST BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 1 0 . 1 4 0 0 0 0 1 +o A o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 1 3 no 0 6 0 0 0 0 1 +NFS4ERR_REP_TOO_BIG_TO_CACHE (if nfs4err_rep_too_big_to_cache N NF NFS NFS4 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 3 () 2 9 0 0 0 0 1 +filehandle-changing operation filehandle-changing f fi fil file BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 3 - 1 10 0 0 0 0 1 +the next the t th the the BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 3 . 1 3 0 0 0 0 1 +o A o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 1 4 no 0 7 0 0 0 0 1 +NFS4ERR_REP_TOO_BIG_TO_CACHE (if nfs4err_rep_too_big_to_cache N NF NFS NFS4 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 4 () 2 8 0 0 0 0 1 +filehandle-changing, non-idempotent filehandle-changing, f fi fil file BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 4 -,- 3 9 0 0 0 0 1 +be too be b be be be BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 4 , 1 10 0 0 0 0 1 +OPEN. OPEN. open. O OP OPE OPEN BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 1 4 . 1 0 0 0 0 0 1 +o A o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 1 5 - 1 10 0 0 0 0 1 +current filehandle-changing current c cu cur curr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 5 -, 2 9 0 0 0 0 1 +operation (in operation o op ope oper BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 5 () 2 9 0 0 0 0 1 +GETFH. The getfh. G GE GET GETF BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 1 5 . 1 9 0 0 0 0 1 +advance whether advance a ad adv adva BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 5 no 0 8 0 0 0 0 1 +ca_maxresponsesize_cached or ca_maxresponsesize_cached c ca ca_ ca_m BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 5 . 1 7 0 0 0 0 1 +2.10.6.5. Persistence 2.10.6.5. 2 2. 2.1 2.10 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 7 .... 4 10 0 0 0 0 1 +Since the since S Si Sin Sinc BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 7 , 1 10 0 0 0 0 1 +to persist to t to to to BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 7 . 1 9 0 0 0 0 1 +following information following f fo fol foll BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 7 ( 1 9 0 0 0 0 1 +session was session s se ses sess BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 7 ;.): 4 5 0 0 0 0 1 +o The o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 1 8 . 1 10 0 0 0 0 1 +o The o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 1 9 no 0 10 0 0 0 0 1 +slot. slot. slot. s sl slo slot BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 9 . 1 0 0 0 0 0 1 +The above the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 9 no 0 9 0 0 0 0 1 +any requests any a an any any BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 9 . 1 10 0 0 0 0 1 +If the if I If If If BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 9 , 1 9 0 0 0 0 1 +any more any a an any any BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 9 , 1 9 0 0 0 0 1 +state across state s st sta stat BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 9 ,, 2 10 0 0 0 0 1 +any NFSv4.1-level any a an any any BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 9 .-. 3 9 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 1 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 11 , 1 10 0 0 0 0 0 +[Page 63] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 1 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 1 0 no 0 4 0 0 0 0 1 +replier is replier r re rep repl BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 0 , 1 8 0 0 0 0 1 +persisting, any persisting, p pe per pers BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 0 , 1 10 0 0 0 0 1 +will return will w wi wil will BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 1 0 , 1 9 0 0 0 0 1 +new requests new n ne new new BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 0 (..,' 5 9 0 0 0 0 1 +sequence ID) sequence s se seq sequ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 0 )( 2 9 0 0 0 0 1 +SEQUENCE). Such sequence). S SE SEQ SEQU BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 1 0 )..- 4 8 0 0 0 0 1 +animate a animate a an ani anim BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 0 no 0 9 0 0 0 0 1 +accept new accept a ac acc acce BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 0 .-, 3 10 0 0 0 0 1 +server needs server s se ser serv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 0 no 0 8 0 0 0 0 1 +restart: restart: restart: r re res rest BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 0 : 1 1 0 0 0 0 1 +o The o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 1 3 . 1 10 0 0 0 0 1 +more sessions more m mo mor more BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 3 - 1 9 0 0 0 0 1 +animated session. animated a an ani anim BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 3 . 1 2 0 0 0 0 1 +o The o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 1 3 ' 1 9 0 0 0 0 1 +(see Sections (see ( (s (se (see BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 3 (..). 5 10 0 0 0 0 1 +client create client c cl cli clie BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 3 . 1 4 0 0 0 0 1 +o The o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 1 4 . 1 10 0 0 0 0 1 +to authenticate to t to to to BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 4 . 1 8 0 0 0 0 1 +o The o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 1 5 , 1 10 0 0 0 0 1 +ID was id I ID ID ID BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 1 0 0 0 0 0 0 1 5 (.). 4 9 0 0 0 0 1 +new sessions, new n ne new new BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 5 , 1 9 0 0 0 0 1 +sessions. sessions. sessions. s se ses sess BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 5 . 1 1 0 0 0 0 1 +o The o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 1 6 .. 2 10 0 0 0 0 1 +A persistent a A A A A BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 1 0 0 0 0 0 1 6 . 1 9 0 0 0 0 1 +execution of execution e ex exe exec BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 6 () 2 9 0 0 0 0 1 +placement of placement p pl pla plac BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 6 . 1 9 0 0 0 0 1 +a client a a a a a BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 1 0 0 0 0 0 1 6 no 0 8 0 0 0 0 1 +executed on executed e ex exe exec BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 6 , 1 9 0 0 0 0 1 +original cached original o or ori orig BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 6 no 0 9 0 0 0 0 1 +has been has h ha has has BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 6 ( 1 10 0 0 0 0 1 +session that session s se ses sess BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 6 no 0 9 0 0 0 0 1 +session for session s se ses sess BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 6 ). 2 5 0 0 0 0 1 +A server a A A A A BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 1 0 0 0 0 0 1 9 no 0 10 0 0 0 0 1 +that contains that t th tha that BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 9 --- 3 9 0 0 0 0 1 +operations. This operations. o op ope oper BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 9 . 1 8 0 0 0 0 1 +execution and execution e ex exe exec BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 9 . 1 9 0 0 0 0 1 +view the view v vi vie view BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 9 no 0 9 0 0 0 0 1 +operation in operation o op ope oper BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 9 no 0 8 0 0 0 0 1 +persistent storage, persistent p pe per pers BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 9 ,. 2 9 0 0 0 0 1 +failure before failure f fa fai fail BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 9 , 1 9 0 0 0 0 1 +back the back b ba bac back BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 1 9 ., 2 9 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 1 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 11 , 1 10 0 0 0 0 0 +[Page 64] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 1 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 1 0 no 0 4 0 0 0 0 1 +restarts, its restarts, r re res rest BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 0 , 1 10 0 0 0 0 1 +starting the starting s st sta star BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 0 .. 2 4 0 0 0 0 1 +While the while W Wh Whi Whil BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 0 no 0 10 0 0 0 0 1 +the request the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 0 no 0 9 0 0 0 0 1 +document, an document, d do doc docu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 0 ,[] 3 9 0 0 0 0 1 +[42]. [42]. [42]. [ [4 [42 [42] BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 0 []. 3 0 0 0 0 0 1 +2.10.7. RDMA 2.10.7. 2 2. 2.1 2.10 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 1 ... 3 10 0 0 0 0 1 +A complete a A A A A BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 1 0 0 0 0 0 1 2 - 1 9 0 0 0 0 1 +RDMA transports rdma R RD RDM RDMA BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 1 2 []., 4 9 0 0 0 0 1 +including NFSv4.1, including i in inc incl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 2 .,[]., 6 9 0 0 0 0 1 +this specification this t th thi this BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 2 ; 1 9 0 0 0 0 1 +only the only o on onl only BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 2 -/. 3 10 0 0 0 0 1 +2.10.7.1. RDMA 2.10.7.1. 2 2. 2.1 2.10 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 3 .... 4 10 0 0 0 0 1 +RDMA requires rdma R RD RDM RDMA BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 1 4 no 0 10 0 0 0 0 1 +specific size specific s sp spe spec BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 4 . 1 7 0 0 0 0 1 +Registration of registration R Re Reg Regi BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 4 -, 2 9 0 0 0 0 1 +since it since s si sin sinc BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 4 ,(.., 5 10 0 0 0 0 1 +readable/writable), and readable/writable), r re rea read BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 4 /),. 4 9 0 0 0 0 1 +Preregistration is preregistration P Pr Pre Prer BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 1 4 . 1 9 0 0 0 0 1 +are specific are a ar are are BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 4 no 0 9 0 0 0 0 1 +endpoints; therefore, endpoints; e en end endp BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 4 ;, 2 9 0 0 0 0 1 +manage resources manage m ma man mana BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 4 . 1 4 0 0 0 0 1 +Following basic following F Fo Fol Foll BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 6 , 1 10 0 0 0 0 1 +layer to layer l la lay laye BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 6 ./ 2 9 0 0 0 0 1 +NFSv4.1 implementation; nfsv4.1 N NF NFS NFSv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 6 .; 2 9 0 0 0 0 1 +the remote the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 6 no 0 9 0 0 0 0 1 +fatal error fatal f fa fat fata BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 6 . 1 5 0 0 0 0 1 +NFSv4.1 manages nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 8 .-( 3 9 0 0 0 0 1 +Section 2.10), section S Se Sec Sect BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 8 .),- 4 8 0 0 0 0 1 +connection basis. connection c co con conn BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 8 . 1 9 0 0 0 0 1 +over RDMA over o ov ove over BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 8 ,. 2 10 0 0 0 0 1 +an RDMA an a an an an BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 1 8 . 1 9 0 0 0 0 1 +session, then session, s se ses sess BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 8 , 1 8 0 0 0 0 1 +connections associated connections c co con conn BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 8 , 1 10 0 0 0 0 1 +in the in i in in in BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 1 8 , 1 9 0 0 0 0 1 +is the is i is is is BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 8 . 1 3 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 1 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 11 , 1 10 0 0 0 0 0 +[Page 65] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 1 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 1 0 no 0 4 0 0 0 0 1 +2.10.7.2. Flow 2.10.7.2. 2 2. 2.1 2.10 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 0 .... 4 10 0 0 0 0 1 +Previous versions previous P Pr Pre Prev BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 0 ;, 2 9 0 0 0 0 1 +rely on rely r re rel rely BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 0 no 0 9 0 0 0 0 1 +requests. This requests. r re req requ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 0 ., 2 9 0 0 0 0 1 +flow control flow f fl flo flow BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 0 no 0 10 0 0 0 0 1 +exceeded. Limits exceeded. e ex exc exce BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 0 . 1 9 0 0 0 0 1 +therefore negotiated therefore t th the ther BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 0 ( 1 8 0 0 0 0 1 +ca_maxrequests field ca_maxrequests c ca ca_ ca_m BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 0 .). 3 9 0 0 0 0 1 +the maxima the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 0 ' 1 10 0 0 0 0 1 +channel(s) must channel(s) c ch cha chan BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 0 (). 3 9 0 0 0 0 1 +limits as limits l li lim limi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 0 .[]; 4 9 0 0 0 0 1 +RDMA connections, rdma R RD RDM RDMA BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 1 0 , 1 9 0 0 0 0 1 +will be will w wi wil will BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 1 0 ., 2 9 0 0 0 0 1 +onus is onus o on onu onus BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 0 no 0 9 0 0 0 0 1 +credits across credits c cr cre cred BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 0 ' 1 9 0 0 0 0 1 +does exceed does d do doe does BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 0 '. 2 9 0 0 0 0 1 +The limits the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 4 ' 1 10 0 0 0 0 1 +by manipulating by b by by by BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 4 .. 2 9 0 0 0 0 1 +addition, the addition, a ad add addi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 4 ,(.) 4 9 0 0 0 0 1 +can be can c ca can can BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 4 no 0 9 0 0 0 0 1 +server, thereby server, s se ser serv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 4 , 1 9 0 0 0 0 1 +have outstanding have h ha hav have BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 4 . 1 4 0 0 0 0 1 +2.10.7.3. Padding 2.10.7.3. 2 2. 2.1 2.10 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 6 .... 4 10 0 0 0 0 1 +Header padding header H He Hea Head BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 6 ( 1 10 0 0 0 0 1 +the ca_headerpadsize the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 6 .), 3 9 0 0 0 0 1 +and subsequently and a an and and BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 6 ,[]. 4 9 0 0 0 0 1 +Zero padding zero Z Ze Zer Zero BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 6 . 1 3 0 0 0 0 1 +Padding leverages padding P Pa Pad Padd BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 7 no 0 10 0 0 0 0 1 +data, even data, d da dat data BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 7 ,(). 4 9 0 0 0 0 1 +If requested, if I If If If BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 7 , 1 9 0 0 0 0 1 +within the within w wi wit with BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 7 no 0 9 0 0 0 0 1 +boundary. The boundary. b bo bou boun BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 7 .( 2 9 0 0 0 0 1 +the negotiated the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 7 )"" 3 9 0 0 0 0 1 +is aligned. is i is is is BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 7 ., 2 9 0 0 0 0 1 +allows them allows a al all allo BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 7 no 0 9 0 0 0 0 1 +carried by carried c ca car carr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 7 no 0 10 0 0 0 0 1 +the server, the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 7 ,.' 3 9 0 0 0 0 1 +layer encounters layer l la lay laye BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 7 , 1 9 0 0 0 0 1 +RDMA layer's rdma R RD RDM RDMA BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 1 7 ' 1 10 0 0 0 0 1 +padding on padding p pa pad padd BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 7 ., 2 9 0 0 0 0 1 +need for need n ne nee need BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 7 no 0 9 0 0 0 0 1 +client writes client c cl cli clie BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 7 . 1 9 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 1 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 11 , 1 10 0 0 0 0 0 +[Page 66] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 1 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 1 0 no 0 4 0 0 0 0 1 +message round message m me mes mess BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 0 --, 3 10 0 0 0 0 1 +latency is latency l la lat late BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 0 . 1 2 0 0 0 0 1 +The value the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 0 . 1 9 0 0 0 0 1 +A primary a A A A A BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 1 0 0 0 0 0 1 0 - 1 9 0 0 0 0 1 +authentication information, authentication a au aut auth BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 0 ,-, 3 9 0 0 0 0 1 +possibly in possibly p po pos poss BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 0 . 1 8 0 0 0 0 1 +COMPOUNDs, sizes compounds, C CO COM COMP BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 0 ,,. 3 10 0 0 0 0 1 +go into go g go go go BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 0 . 1 9 0 0 0 0 1 +therefore minimal therefore t th the ther BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 0 . 1 9 0 0 0 0 1 +value carefully, value v va val valu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 0 ,, 2 9 0 0 0 0 1 +versa. The versa. v ve ver vers BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 0 . 1 8 0 0 0 0 1 +performance. performance. performance. p pe per perf BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 0 . 1 1 0 0 0 0 1 +Sender gather: sender S Se Sen Send BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 3 : 1 3 0 0 0 0 1 +|RPC Request|Pad |rpc | |R |RP |RPC BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 1 3 -... 4 10 0 0 0 0 1 +\------+----------------------/ \------+----------------------/ \------+----------------------/ \ \- \-- \--- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 1 3 ----------------------------/ 29 6 0 0 0 0 1 +\ \ \ \ \ \ \ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 3 no 0 0 0 0 0 0 1 +\ \ \ \ \ \ \ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 3 no 0 0 0 0 0 0 1 +\ \ \ \ \ \ \ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 3 no 0 0 0 0 0 0 1 +\ \ \ \ \ \ \ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 3 no 0 0 0 0 0 0 1 +Receiver scatter: receiver R Re Rec Rece BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 3 : 1 3 0 0 0 0 1 +\-----------+-... \-----------+-... \-----------+-... \ \- \-- \--- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 1 3 ------------... 15 3 0 0 0 0 1 +/-----+----------------\ /-----+----------------\ /-----+----------------\ / /- /-- /--- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 1 3 /--------------------- 22 5 0 0 0 0 1 +\ \ \ \ \ \ \ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 3 no 0 0 0 0 0 0 1 +\ \ \ \ \ \ \ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 3 no 0 0 0 0 0 0 1 +|RPC Request|Pad|Length| |rpc | |R |RP |RPC BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 1 3 no 0 5 0 0 0 0 1 +-> |FS -> - -> -> -> BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 1 3 ---... 6 6 0 0 0 0 1 +In the in I In In In BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 1 5 , 1 10 0 0 0 0 1 +posted receive posted p po pos post BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 5 , 1 10 0 0 0 0 1 +the now-complete the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 5 -. 2 9 0 0 0 0 1 +For a for F Fo For For BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 5 , 1 10 0 0 0 0 1 +copies of copies c co cop copi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 5 ,-- 3 10 0 0 0 0 1 +buffer advertisement buffer b bu buf buff BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 5 .- 2 10 0 0 0 0 1 +and integrated and a an and and BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 5 ,. 2 9 0 0 0 0 1 +perform similar perform p pe per perf BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 5 ,. 2 6 0 0 0 0 1 +2.10.7.4. Dual 2.10.7.4. 2 2. 2.1 2.10 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 8 ....- 5 10 0 0 0 0 1 +Some RDMA some S So Som Some BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 8 (..,[])""(- 11 10 0 0 0 0 1 +RDMA) phase, rdma) R RD RDM RDMA BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 1 8 ),"" 4 10 0 0 0 0 1 +to RDMA to t to to to BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 8 ,. 2 9 0 0 0 0 1 +connections always connections c co con conn BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 8 .., 3 9 0 0 0 0 1 +assume, a assume, a as ass assu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 8 ,. 2 9 0 0 0 0 1 +associated with associated a as ass asso BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 8 , 1 9 0 0 0 0 1 +the connection the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 8 -(. 3 10 0 0 0 0 1 +and 18.34). and a an and and BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 8 .). 3 1 0 0 0 0 1 +2.10.8. Session 2.10.8. 2 2. 2.1 2.10 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 11 ... 3 10 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 1 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 11 , 1 10 0 0 0 0 0 +[Page 67] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 1 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 1 0 no 0 4 0 0 0 0 1 +2.10.8.1. Session 2.10.8.1. 2 2. 2.1 2.10 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 0 .... 4 10 0 0 0 0 1 +Via session/connection via V Vi Via Via BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 0 /,. 3 9 0 0 0 0 1 +that provided that t th tha that BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 0 .. 2 9 0 0 0 0 1 +client-initiated (see client-initiated c cl cli clie BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 0 -(.) 4 10 0 0 0 0 1 +and routing and a an and and BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 0 .'( 3 9 0 0 0 0 1 +Section 18.35), section S Se Sec Sect BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 0 .), 3 9 0 0 0 0 1 +being activated being b be bei bein BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 0 (.). 4 9 0 0 0 0 1 +the backchannel the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 0 ( 1 10 0 0 0 0 1 +Section 2.10.8.2). section S Se Sec Sect BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 0 ...). 5 2 0 0 0 0 1 +2.10.8.2. Backchannel 2.10.8.2. 2 2. 2.1 2.10 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 2 .... 4 10 0 0 0 0 1 +When the when W Wh Whe When BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 2 ., 2 9 0 0 0 0 1 +server of server s se ser serv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 2 no 0 9 0 0 0 0 1 +requests. If requests. r re req requ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 2 ., 2 10 0 0 0 0 1 +the principal the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 2 . 1 9 0 0 0 0 1 +server is server s se ser serv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 2 / 1 9 0 0 0 0 1 +client offers, client c cl cli clie BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 2 ,., 3 10 0 0 0 0 1 +the client the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 2 no 0 8 0 0 0 0 1 +backchannel as backchannel b ba bac back BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 2 ., 2 9 0 0 0 0 1 +implement an implement i im imp impl BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 2 .[]. 4 9 0 0 0 0 1 +The CREATE_SESSION the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 5 (.) 3 8 0 0 0 0 1 +(Section 18.33) (section ( (S (Se (Sec BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 5 (.)/ 4 10 0 0 0 0 1 +principal combinations. principal p pr pri prin BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 5 . 1 3 0 0 0 0 1 +Also note also A Al Als Also BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 6 (. 2 10 0 0 0 0 1 +and 2.10.8.3) and a an and and BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 6 ...)- 5 8 0 0 0 0 1 +RPCSEC_GSS contexts rpcsec_gss R RP RPC RPCS BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 1 6 (..). 5 5 0 0 0 0 1 +2.10.8.3. Protection 2.10.8.3. 2 2. 2.1 2.10 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 7 .... 4 10 0 0 0 0 1 +As described as A As As As BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 7 , 1 9 0 0 0 0 1 +NFSv4.1 is nfsv4.1 N NF NFS NFSv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 7 . 1 9 0 0 0 0 1 +with a with w wi wit with BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 7 no 0 9 0 0 0 0 1 +legitimate client legitimate l le leg legi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 7 . 1 9 0 0 0 0 1 +slot ID slot s sl slo slot BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 7 , 1 8 0 0 0 0 1 +attacker's result attacker's a at att atta BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 7 ', 2 10 0 0 0 0 1 +client and client c cl cli clie BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 7 ., 2 9 0 0 0 0 1 +send a send s se sen send BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 7 no 0 10 0 0 0 0 1 +associated with associated a as ass asso BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 7 . 1 9 0 0 0 0 1 +using the using u us usi usin BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 7 , 1 9 0 0 0 0 1 +operations to operations o op ope oper BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 1 7 . 1 9 0 0 0 0 1 +Setting a setting S Se Set Sett BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 7 no 0 9 0 0 0 0 1 +credentials when credentials c cr cre cred BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 7 ' 1 9 0 0 0 0 1 +around, but around, a ar aro arou BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 7 , 1 9 0 0 0 0 1 +from releasing from f fr fro from BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 7 , 1 9 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 1 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 11 , 1 10 0 0 0 0 0 +[Page 68] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 1 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 1 0 no 0 4 0 0 0 0 1 +context cannot context c co con cont BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 0 ( 1 10 0 0 0 0 1 +the client). the t th the the BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 0 ). 2 1 0 0 0 0 1 +NFSv4.1 provides nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 0 ., 2 9 0 0 0 0 1 +which are which w wh whi whic BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 0 no 0 10 0 0 0 0 1 +(Section 18.35). (section ( (S (Se (Sec BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 0 (.). 4 2 0 0 0 0 1 +The first the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 1 (). 3 10 0 0 0 0 1 +The other the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 1 () 2 10 0 0 0 0 1 +traits: traits: traits: t tr tra trai BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 1 : 1 1 0 0 0 0 1 +o An o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 1 2 - 1 10 0 0 0 0 1 +and session and a an and and BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 2 , 1 8 0 0 0 0 1 +destroying a destroying d de des dest BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 2 ,, 2 9 0 0 0 0 1 +and destroying and a an and and BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 2 . 1 4 0 0 0 0 1 +o Because o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 1 3 no 0 10 0 0 0 0 1 +maintenance, the maintenance, m ma mai main BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 3 , 1 10 0 0 0 0 1 +a legitimate a a a a a BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 1 0 0 0 0 0 1 3 , 1 8 0 0 0 0 1 +legitimate client legitimate l le leg legi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 3 ' 1 10 0 0 0 0 1 +lock state lock l lo loc lock BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 1 3 ,,,,. 5 9 0 0 0 0 1 +o In o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 1 4 ' 1 10 0 0 0 0 1 +namespace require namespace n na nam name BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 4 , 1 9 0 0 0 0 1 +use an use u us use use BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 4 -(.., 5 8 0 0 0 0 1 +LOCKU, CLOSE, locku, L LO LOC LOCK BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 1 4 ,,.). 5 9 0 0 0 0 1 +that removes that t th tha that BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 4 (.., 4 9 0 0 0 0 1 +might have might m mi mig migh BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 4 ). 2 9 0 0 0 0 1 +However, the however, H Ho How Howe BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 4 , 1 9 0 0 0 0 1 +a principal, a a a a a BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 1 0 0 0 0 0 1 4 , 1 8 0 0 0 0 1 +(perhaps because (perhaps ( (p (pe (per BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 4 (). 3 8 0 0 0 0 1 +establishes SP4_MACH_CRED establishes e es est esta BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 4 , 1 9 0 0 0 0 1 +list of list l li lis list BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 4 no 0 9 0 0 0 0 1 +credential (if credential c cr cre cred BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 4 ()( 3 9 0 0 0 0 1 +SP4_SSV is sp4_ssv S SP SP4 SP4_ BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 4 ). 2 2 0 0 0 0 1 +The SP4_MACH_CRED the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 9 no 0 9 0 0 0 0 1 +where the where w wh whe wher BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 9 no 0 9 0 0 0 0 1 +principal that principal p pr pri prin BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 9 . 1 10 0 0 0 0 1 +The security the T Th The The BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 9 no 0 9 0 0 0 0 1 +depends entirely depends d de dep depe BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 9 -. 2 8 0 0 0 0 1 +Assuming a assuming A As Ass Assu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 9 - 1 9 0 0 0 0 1 +operations like operations o op ope oper BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 1 9 ,, 2 7 0 0 0 0 1 +DESTROY_SESSION, and destroy_session, D DE DES DEST BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 1 9 , 1 9 0 0 0 0 1 +associating a associating a as ass asso BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 9 , 1 10 0 0 0 0 1 +session with session s se ses sess BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 9 . 1 3 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 1 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 11 , 1 10 0 0 0 0 0 +[Page 69] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 1 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 1 0 no 0 4 0 0 0 0 1 +There are there T Th The Ther BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 0 : 1 10 0 0 0 0 1 +1. The 1. 1 1. 1. 1. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 0 .,- 3 9 0 0 0 0 1 +machine credential machine m ma mac mach BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 0 (.., 4 9 0 0 0 0 1 +if Kerberos if i if if if BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 0 ,"" 3 10 0 0 0 0 1 +from a from f fr fro from BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 0 ). 2 6 0 0 0 0 1 +2. The 2. 2 2. 2. 2. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 1 ., 2 10 0 0 0 0 1 +sessions are sessions s se ses sess BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 1 1 .' 2 8 0 0 0 0 1 +expires, then expires, e ex exp expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 1 ,, 2 9 0 0 0 0 1 +since the since s si sin sinc BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 1 , 1 7 0 0 0 0 1 +inconvenienced. inconvenienced. inconvenienced. i in inc inco BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 1 . 1 2 0 0 0 0 1 +3. The 3. 3 3. 3. 3. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 3 ., 2 9 0 0 0 0 1 +implementation has implementation i im imp impl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 3 . 1 9 0 0 0 0 1 +effectively the effectively e ef eff effe BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 3 , 1 10 0 0 0 0 1 +is that is i is is is BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 3 no 0 9 0 0 0 0 1 +each, so each, e ea eac each BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 3 ,. 2 8 0 0 0 0 1 +The SP4_SSV the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 4 (.), 4 8 0 0 0 0 1 +RPCSEC_GSS and rpcsec_gss R RP RPC RPCS BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 1 4 (..), 5 9 0 0 0 0 1 +state from state s st sta stat BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 4 . 1 10 0 0 0 0 1 +situation comprised situation s si sit situ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 4 no 0 10 0 0 0 0 1 +system administrator system s sy sys syst BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 4 no 0 9 0 0 0 0 1 +permanent machine permanent p pe per perm BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 4 . 1 9 0 0 0 0 1 +and updated and a an and and BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 4 (.). 4 8 0 0 0 0 1 +prevent eavesdropping, prevent p pr pre prev BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 4 , 1 9 0 0 0 0 1 +with the with w wi wit with BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 4 . 1 8 0 0 0 0 1 +intractable for intractable i in int intr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 4 , 1 9 0 0 0 0 1 +rogue connections rogue r ro rog rogu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 4 , 1 9 0 0 0 0 1 +ID: ID: id: I ID ID: ID: BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 1 4 : 1 0 0 0 0 0 1 +o The o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 1 7 no 0 10 0 0 0 0 1 +and new and a an and and BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 7 ,. 2 3 0 0 0 0 1 +o Because o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 1 8 ,, 2 10 0 0 0 0 1 +client that client c cl cli clie BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 8 no 0 9 0 0 0 0 1 +protection to protection p pr pro prot BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 8 no 0 9 0 0 0 0 1 +least one least l le lea leas BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 8 no 0 9 0 0 0 0 1 +operation or operation o op ope oper BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 8 no 0 8 0 0 0 0 1 +client ID. client c cl cli clie BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 8 ., 2 9 0 0 0 0 1 +tokens (Section tokens t to tok toke BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 8 (..). 5 9 0 0 0 0 1 +a session a a a a a BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 1 0 0 0 0 0 1 8 . 1 3 0 0 0 0 1 +o A o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 1 10 no 0 10 0 0 0 0 1 +SET_SSV. Instead, set_ssv. S SE SET SET_ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 1 10 ., 2 9 0 0 0 0 1 +exclusive ORed exclusive e ex exc excl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 10 (). 3 9 0 0 0 0 1 +new principal new n ne new new BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 10 , 1 9 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 1 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 11 , 1 10 0 0 0 0 0 +[Page 70] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 1 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 1 0 no 0 4 0 0 0 0 1 +SHOULD send should S SH SHO SHOU BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 1 0 ' 1 8 0 0 0 0 1 +credentials, with credentials, c cr cre cred BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 0 ,. 2 10 0 0 0 0 1 +Here are here H He Her Here BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 0 no 0 10 0 0 0 0 1 +named Eve named n na nam name BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 0 , 1 9 0 0 0 0 1 +each attack: each e ea eac each BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 0 : 1 1 0 0 0 0 1 +o Suppose o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 1 1 . 1 9 0 0 0 0 1 +Eve's use eve's E Ev Eve Eve' BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 1 1 '. 2 9 0 0 0 0 1 +client to client c cl cli clie BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 1 , 1 9 0 0 0 0 1 +that the that t th tha that BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 1 no 0 8 0 0 0 0 1 +credential. Eve's credential. c cr cre cred BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 1 .' 2 10 0 0 0 0 1 +created. The created. c cr cre crea BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 1 . 1 9 0 0 0 0 1 +protected by protected p pr pro prot BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 1 no 0 9 0 0 0 0 1 +client, which client, c cl cli clie BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 1 ,'. 3 9 0 0 0 0 1 +eavesdrop on eavesdrop e ea eav eave BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 1 no 0 9 0 0 0 0 1 +and the and a an and and BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 1 . 1 10 0 0 0 0 1 +client sends client c cl cli clie BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 1 , 1 9 0 0 0 0 1 +knows her knows k kn kno know BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 1 ,. 2 9 0 0 0 0 1 +compute an compute c co com comp BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 1 no 0 9 0 0 0 0 1 +accept, and accept, a ac acc acce BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 1 , 1 9 0 0 0 0 1 +session. Eve session. s se ses sess BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 1 . 1 9 0 0 0 0 1 +legitimate session, legitimate l le leg legi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 1 ,/, 3 10 0 0 0 0 1 +Bob accesses bob B Bo Bob Bob BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 1 1 , 1 9 0 0 0 0 1 +legitimate client legitimate l le leg legi BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 1 . 1 8 0 0 0 0 1 +The client's the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 6 ' 1 10 0 0 0 0 1 +use, and use, u us use use, BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 6 ,. 2 9 0 0 0 0 1 +be unable be b be be be BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 6 , 1 9 0 0 0 0 1 +the old the t th the the BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 6 . 1 3 0 0 0 0 1 +Once the once O On Onc Once BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 7 no 0 10 0 0 0 0 1 +using Bob's using u us usi usin BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 7 ', 2 9 0 0 0 0 1 +the legitimate the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 7 ,., 3 9 0 0 0 0 1 +because the because b be bec beca BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 7 no 0 9 0 0 0 0 1 +the new the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 7 , 1 9 0 0 0 0 1 +rogue connection rogue r ro rog rogu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 7 . 1 5 0 0 0 0 1 +The question the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 9 no 0 10 0 0 0 0 1 +hijacked the hijacked h hi hij hija BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 9 ? 1 9 0 0 0 0 1 +principal, Bob, principal, p pr pri prin BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 9 ,,, 3 9 0 0 0 0 1 +SET_SSV, which set_ssv, S SE SET SET_ BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 1 9 ,-: 3 8 0 0 0 0 1 +* Let * * * * * BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 10 *, 2 10 0 0 0 0 1 +SET_SSV with set_ssv S SE SET SET_ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 1 10 no 0 9 0 0 0 0 1 +legitimate client legitimate l le leg legi BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 10 . 1 9 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 1 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 11 , 1 10 0 0 0 0 0 +[Page 71] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 1 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 1 0 no 0 4 0 0 0 0 1 +SET_SSV sent set_ssv S SE SET SET_ BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 1 0 ', 2 9 0 0 0 0 1 +the legitimate the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 0 ., 2 9 0 0 0 0 1 +Eve can eve E Ev Eve Eve BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 1 0 , 1 10 0 0 0 0 1 +the digest the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 0 no 0 9 0 0 0 0 1 +fail. That fail. f fa fai fail BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 0 . 1 9 0 0 0 0 1 +apparently been apparently a ap app appa BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 0 . 1 4 0 0 0 0 1 +* Alternatively, * * * * * BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 2 *, 2 10 0 0 0 0 1 +the legitimate the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 2 . 1 9 0 0 0 0 1 +verification of verification v ve ver veri BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 1 2 ' 1 9 0 0 0 0 1 +on the on o on on on BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 2 , 1 9 0 0 0 0 1 +apparent that apparent a ap app appa BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 2 . 1 6 0 0 0 0 1 +* Alternatively, * * * * * BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 4 *,, 3 10 0 0 0 0 1 +with the with w wi wit with BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 4 no 0 9 0 0 0 0 1 +uses for uses u us use uses BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 4 . 1 9 0 0 0 0 1 +client the client c cl cli clie BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 4 . 1 9 0 0 0 0 1 +response is response r re res resp BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 4 . 1 9 0 0 0 0 1 +either session either e ei eit eith BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 4 , 1 9 0 0 0 0 1 +destroys the destroys d de des dest BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 4 . 1 4 0 0 0 0 1 +o Eve o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 1 6 , 1 10 0 0 0 0 1 +then destroys then t th the then BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 6 ., 2 9 0 0 0 0 1 +the legitimate the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 6 ,' 2 8 0 0 0 0 1 +credentials. The credentials. c cr cre cred BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 6 . 1 9 0 0 0 0 1 +session does session s se ses sess BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 6 . 1 9 0 0 0 0 1 +session, this session, s se ses sess BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 6 , 1 10 0 0 0 0 1 +which the which w wh whi whic BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 6 , 1 9 0 0 0 0 1 +hijacked. The hijacked. h hi hij hija BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 6 .. 2 9 0 0 0 0 1 +o If o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 1 9 no 0 8 0 0 0 0 1 +establishes an establishes e es est esta BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 9 , 1 9 0 0 0 0 1 +and therefore and a an and and BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 9 , 1 9 0 0 0 0 1 +digest verification digest d di dig dige BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 9 ., 2 9 0 0 0 0 1 +has not has h ha has has BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 9 , 1 10 0 0 0 0 1 +for that for f fo for for BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 9 . 1 2 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 1 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 11 , 1 10 0 0 0 0 0 +[Page 72] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 1 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 1 0 no 0 4 0 0 0 0 1 +In summary, in I In In In BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 1 0 ,' 2 10 0 0 0 0 1 +is in is i is is is BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 0 , 1 9 0 0 0 0 1 +first session, first f fi fir firs BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 0 ,.- 3 8 0 0 0 0 1 +malicious user malicious m ma mal mali BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 0 , 1 9 0 0 0 0 1 +hijack and hijack h hi hij hija BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 0 .- 2 8 0 0 0 0 1 +successfully modifies successfully s su suc succ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 0 ,. 2 9 0 0 0 0 1 +operations to operations o op ope oper BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 1 0 -. 2 6 0 0 0 0 1 +Note that note N No Not Note BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 2 no 0 10 0 0 0 0 1 +prevent hijacking prevent p pr pre prev BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 2 no 0 9 0 0 0 0 1 +associated with associated a as ass asso BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 2 .- 2 9 0 0 0 0 1 +is to is i is is is BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 2 ,. 2 9 0 0 0 0 1 +If a if I If If If BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 3 , 1 9 0 0 0 0 1 +locking state locking l lo loc lock BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 3 no 0 8 0 0 0 0 1 +clients. However, clients. c cl cli clie BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 3 ., 2 9 0 0 0 0 1 +RPCSEC_GSS with rpcsec_gss R RP RPC RPCS BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 1 3 , 1 9 0 0 0 0 1 +and if and a an and and BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 3 (.) 3 10 0 0 0 0 1 +in force, in i in in in BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 1 3 , 1 9 0 0 0 0 1 +state. state. state. s st sta stat BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 3 . 1 1 0 0 0 0 1 +2.10.9. The 2.10.9. 2 2. 2.1 2.10 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 5 ...() 5 10 0 0 0 0 1 +The SSV the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 5 no 0 9 0 0 0 0 1 +NFSv4.1 that nfsv4.1 N NF NFS NFSv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 5 ... 3 9 0 0 0 0 1 +mechanism are mechanism m me mec mech BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 5 ., 2 10 0 0 0 0 1 +the contexts the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 5 no 0 9 0 0 0 0 1 +SP4_SSV protection. sp4_ssv S SP SP4 SP4_ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 5 . 1 9 0 0 0 0 1 +(emitted by (emitted ( (e (em (emi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 5 ()( 3 9 0 0 0 0 1 +GSS_Wrap). GSS_Wrap). gss_wrap). G GS GSS GSS_ BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 1 5 ). 2 1 0 0 0 0 1 +The mechanism the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 6 no 0 6 0 0 0 0 1 +iso.org.dod.internet.private.enterprise.Michael Eisler.nfs.ssv_mech iso.org.dod.internet.private.enterprise.michael i is iso iso. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 6 ........ 8 9 0 0 0 0 1 +(1.3.6.1.4.1.28882.1.1). While (1.3.6.1.4.1.28882.1.1). ( (1 (1. (1.3 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 1 0 0 0 1 6 (........). 11 10 0 0 0 0 1 +initial context initial i in ini init BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 6 , 1 9 0 0 0 0 1 +that the that t th tha that BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 6 no 0 9 0 0 0 0 1 +SECINFO or secinfo S SE SEC SECI BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 1 6 (.). 4 8 0 0 0 0 1 +The SSV the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 8 . 1 9 0 0 0 0 1 +Each time each E Ea Eac Each BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 8 , 1 9 0 0 0 0 1 +client and client c cl cli clie BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 8 . 1 9 0 0 0 0 1 +depends on depends d de dep depe BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 8 . 1 10 0 0 0 0 1 +The calculation the T Th The The BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 8 [], 3 9 0 0 0 0 1 +as the as a as as as BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 8 ,-, 3 9 0 0 0 0 1 +and the and a an and and BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 8 no 0 9 0 0 0 0 1 +value for value v va val valu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 8 . 1 9 0 0 0 0 1 +output of output o ou out outp BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 8 no 0 8 0 0 0 0 1 +encryption algorithm encryption e en enc encr BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 8 (), 3 9 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 1 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 11 , 1 10 0 0 0 0 0 +[Page 73] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 1 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 1 0 no 0 4 0 0 0 0 1 +the subkey the t th the the BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 0 ,.., 4 9 0 0 0 0 1 +subkey is subkey s su sub subk BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 0 , 1 10 0 0 0 0 1 +MUST be must M MU MUS MUST BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 1 0 . 1 10 0 0 0 0 1 +that the that t th tha that BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 0 no 0 10 0 0 0 0 1 +than the than t th tha than BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 0 ( 1 9 0 0 0 0 1 +Section 18.35). section S Se Sec Sect BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 0 .). 3 2 0 0 0 0 1 +/* Input /* / /* /* /* BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 1 3 /**/ 4 10 0 0 0 0 1 +enum ssv_subkey4 enum e en enu enum BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 3 no 0 5 0 0 0 0 1 +SSV4_SUBKEY_MIC_I2T SSV4_SUBKEY_MIC_I2T ssv4_subkey_mic_i2t S SS SSV SSV4 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 3 no 0 5 0 0 0 0 1 += 1, = = = = = BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 3 , 1 1 0 0 0 0 1 +SSV4_SUBKEY_MIC_T2I SSV4_SUBKEY_MIC_T2I ssv4_subkey_mic_t2i S SS SSV SSV4 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 3 no 0 5 0 0 0 0 1 += 2, = = = = = BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 3 , 1 1 0 0 0 0 1 +SSV4_SUBKEY_SEAL_I2T SSV4_SUBKEY_SEAL_I2T ssv4_subkey_seal_i2t S SS SSV SSV4 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 3 no 0 6 0 0 0 0 1 += 3, = = = = = BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 3 , 1 1 0 0 0 0 1 +SSV4_SUBKEY_SEAL_T2I SSV4_SUBKEY_SEAL_T2I ssv4_subkey_seal_t2i S SS SSV SSV4 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 3 no 0 6 0 0 0 0 1 += 4 = = = = = BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 3 no 0 1 0 0 0 0 1 +}; }; }; } }; }; }; BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 1 3 ; 1 0 0 0 0 0 1 +The subkey the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 4 no 0 10 0 0 0 0 1 +message integrity message m me mes mess BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 4 (). 3 9 0 0 0 0 1 +client, whether client, c cl cli clie BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 4 , 1 9 0 0 0 0 1 +response over response r re res resp BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 4 . 1 8 0 0 0 0 1 +SSV4_SUBKEY_MIC_T2I is ssv4_subkey_mic_t2i S SS SSV SSV4 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 4 . 1 9 0 0 0 0 1 +server. The server. s se ser serv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 4 . 1 9 0 0 0 0 1 +encryption text encryption e en enc encr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 4 ., 2 10 0 0 0 0 1 +derived from derived d de der deri BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 4 no 0 9 0 0 0 0 1 +originating from originating o or ori orig BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 4 .. 2 5 0 0 0 0 1 +The PerMsgToken the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 8 : 1 10 0 0 0 0 1 +/* Input /* / /* /* /* BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 1 8 /**/ 4 10 0 0 0 0 1 +struct ssv_mic_plain_tkn4 struct s st str stru BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 8 no 0 8 0 0 0 0 1 +uint32_t uint32_t uint32_t u ui uin uint BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 8 no 0 2 0 0 0 0 1 +smpt_ssv_seq; smpt_ssv_seq; smpt_ssv_seq; s sm smp smpt BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 8 ; 1 4 0 0 0 0 1 +opaque opaque opaque o op opa opaq BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 8 no 0 2 0 0 0 0 1 +smpt_orig_plain<>; smpt_orig_plain<>; smpt_orig_plain<>; s sm smp smpt BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 8 ; 1 5 0 0 0 0 1 +}; }; }; } }; }; }; BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 1 8 ; 1 0 0 0 0 0 1 +/* SSV /* / /* /* /* BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 1 9 /**/ 4 10 0 0 0 0 1 +struct ssv_mic_tkn4 struct s st str stru BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 9 no 0 6 0 0 0 0 1 +uint32_t uint32_t uint32_t u ui uin uint BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 9 no 0 2 0 0 0 0 1 +smt_ssv_seq; smt_ssv_seq; smt_ssv_seq; s sm smt smt_ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 9 ; 1 4 0 0 0 0 1 +opaque opaque opaque o op opa opaq BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 9 no 0 2 0 0 0 0 1 +smt_hmac<>; smt_hmac<>; smt_hmac<>; s sm smt smt_ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 9 ; 1 3 0 0 0 0 1 +}; }; }; } }; }; }; BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 1 9 ; 1 0 0 0 0 0 1 +The field the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 10 no 0 10 0 0 0 0 1 +from SSV4_SUBKEY_MIC_I2T from f fr fro from BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 10 ,- 2 9 0 0 0 0 1 +way hash way w wa way way BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 1 10 , 1 9 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 1 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 11 , 1 10 0 0 0 0 0 +[Page 74] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 1 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 1 0 no 0 4 0 0 0 0 1 +as represented as a as as as BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 0 . 1 8 0 0 0 0 1 +smpt_ssv_seq is smpt_ssv_seq s sm smp smpt BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 0 . 1 9 0 0 0 0 1 +is the is i is is is BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 0 ""()(.. 7 9 0 0 0 0 1 +[7]). The [7]). [ [7 [7] [7]) BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 0 []).() 6 9 0 0 0 0 1 +containing the containing c co con cont BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 0 .' 2 9 0 0 0 0 1 +GSS_GetMIC() encodes gss_getmic() G GS GSS GSS_ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 1 0 (), 3 10 0 0 0 0 1 +include an include i in inc incl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 0 -,. 3 9 0 0 0 0 1 +Prepended to prepended P Pr Pre Prep BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 1 0 , 1 10 0 0 0 0 1 +making up making m ma mak maki BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 0 , 1 10 0 0 0 0 1 +which in which w wh whi whic BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 0 . 1 6 0 0 0 0 1 +The token the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 4 () 2 10 0 0 0 0 1 +ssv_mic_tkn4. The ssv_mic_tkn4. s ss ssv ssv_ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 4 . 1 9 0 0 0 0 1 +number, which number, n nu num numb BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 4 ,(.) 4 10 0 0 0 0 1 +the first the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 4 ., 2 9 0 0 0 0 1 +is incremented is i is is is BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 4 ., 2 9 0 0 0 0 1 +version of version v ve ver vers BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 4 (). 3 9 0 0 0 0 1 +Section 18.35, section S Se Sec Sect BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 4 ., 2 10 0 0 0 0 1 +versions of versions v ve ver vers BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 4 . 1 9 0 0 0 0 1 +serializing all serializing s se ser seri BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 4 no 0 9 0 0 0 0 1 +operations. Once operations. o op ope oper BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 4 ., 2 9 0 0 0 0 1 +smt_hmac, which smt_hmac, s sm smt smt_ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 4 ,-, 3 9 0 0 0 0 1 +necessary padding. necessary n ne nec nece BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 4 . 1 9 0 0 0 0 1 +of smt_ssv_seq. of o of of of BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 4 . 1 2 0 0 0 0 1 +The SealedMessage the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 9 : 1 10 0 0 0 0 1 +/* Input /* / /* /* /* BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 1 9 /**/ 4 10 0 0 0 0 1 +struct ssv_seal_plain_tkn4 struct s st str stru BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 9 no 0 5 0 0 0 0 1 +opaque opaque opaque o op opa opaq BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 9 no 0 1 0 0 0 0 1 +sspt_confounder<>; sspt_confounder<>; sspt_confounder<>; s ss ssp sspt BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 9 ; 1 3 0 0 0 0 1 +uint32_t uint32_t uint32_t u ui uin uint BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 9 no 0 1 0 0 0 0 1 +sspt_ssv_seq; sspt_ssv_seq; sspt_ssv_seq; s ss ssp sspt BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 9 ; 1 2 0 0 0 0 1 +opaque opaque opaque o op opa opaq BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 9 no 0 1 0 0 0 0 1 +sspt_orig_plain<>; sspt_orig_plain<>; sspt_orig_plain<>; s ss ssp sspt BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 9 ; 1 3 0 0 0 0 1 +opaque opaque opaque o op opa opaq BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 9 no 0 1 0 0 0 0 1 +sspt_pad<>; sspt_pad<>; sspt_pad<>; s ss ssp sspt BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 9 ; 1 2 0 0 0 0 1 +}; }; }; } }; }; }; BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 1 9 ; 1 0 0 0 0 0 1 +/* SSV /* / /* /* /* BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 1 10 /**/ 4 10 0 0 0 0 1 +struct ssv_seal_cipher_tkn4 struct s st str stru BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 10 no 0 8 0 0 0 0 1 +uint32_t uint32_t uint32_t u ui uin uint BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 10 no 0 2 0 0 0 0 1 +ssct_ssv_seq; ssct_ssv_seq; ssct_ssv_seq; s ss ssc ssct BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 10 ; 1 4 0 0 0 0 1 +opaque opaque opaque o op opa opaq BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 10 no 0 2 0 0 0 0 1 +ssct_iv<>; ssct_iv<>; ssct_iv<>; s ss ssc ssct BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 10 ; 1 3 0 0 0 0 1 +opaque opaque opaque o op opa opaq BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 10 no 0 2 0 0 0 0 1 +ssct_encr_data<>; ssct_encr_data<>; ssct_encr_data<>; s ss ssc ssct BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 10 ; 1 5 0 0 0 0 1 +opaque opaque opaque o op opa opaq BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 10 no 0 2 0 0 0 0 1 +ssct_hmac<>; ssct_hmac<>; ssct_hmac<>; s ss ssc ssct BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 10 ; 1 3 0 0 0 0 1 +}; }; }; } }; }; }; BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 1 10 ; 1 0 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 1 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 11 , 1 10 0 0 0 0 0 +[Page 75] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 1 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 1 0 no 0 4 0 0 0 0 1 +The token the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 0 () 2 10 0 0 0 0 1 +ssv_seal_cipher_tkn4. ssv_seal_cipher_tkn4. ssv_seal_cipher_tkn4. s ss ssv ssv_ BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 0 . 1 3 0 0 0 0 1 +The ssct_ssv_seq the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 0 . 1 10 0 0 0 0 1 +The ssct_encr_data the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 1 no 0 9 0 0 0 0 1 +XDR encoded xdr X XD XDR XDR BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 1 1 . 1 9 0 0 0 0 1 +subkey derived subkey s su sub subk BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 1 , 1 10 0 0 0 0 1 +the encryption the t th the the BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 1 . 1 8 0 0 0 0 1 +The ssct_iv the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 2 () 2 8 0 0 0 0 1 +encryption algorithm encryption e en enc encr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 2 (). 3 9 0 0 0 0 1 +content and content c co con cont BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 2 no 0 9 0 0 0 0 1 +encryption algorithm. encryption e en enc encr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 2 .,-- 4 9 0 0 0 0 1 +use a use u us use use BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 2 -(), 4 10 0 0 0 0 1 +for each for f fo for for BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 2 no 0 10 0 0 0 0 1 +encrypted with encrypted e en enc encr BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 2 . 1 5 0 0 0 0 1 +The ssct_hmac the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 4 no 0 9 0 0 0 0 1 +value of value v va val valu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 4 no 0 10 0 0 0 0 1 +text. The text. t te tex text BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 4 . 1 9 0 0 0 0 1 +SSV4_SUBKEY_MIC_T2I, and ssv4_subkey_mic_t2i, S SS SSV SSV4 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 4 ,- 2 8 0 0 0 0 1 +negotiated by negotiated n ne neg nego BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 4 . 1 3 0 0 0 0 1 +The sspt_confounder the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 5 . 1 10 0 0 0 0 1 +The sspt_ssv_seq the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 5 . 1 10 0 0 0 0 1 +The field the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 6 no 0 10 0 0 0 0 1 +"input_message" input "input_message" " "i "in "inp BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 6 ""()(.. 7 9 0 0 0 0 1 +[7]). As [7]). [ [7 [7] [7]) BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 6 []).' 5 9 0 0 0 0 1 +GSS_GetMIC() entry gss_getmic() G GS GSS GSS_ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 1 6 (),() 5 9 0 0 0 0 1 +pointer to pointer p po poi poin BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 1 6 , 1 9 0 0 0 0 1 +sspt_orig_plain representing sspt_orig_plain s ss ssp sspt BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 6 , 1 9 0 0 0 0 1 +fields of fields f fi fie fiel BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 1 6 . 1 8 0 0 0 0 1 +The sspt_pad the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 8 no 0 9 0 0 0 0 1 +require inputs require r re req requ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 8 -. 2 9 0 0 0 0 1 +is zero is i is is is BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 8 . 1 9 0 0 0 0 1 +of ssv_seal_plain_tkn4 of o of of of BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 8 -, 2 10 0 0 0 0 1 +each array each e ea eac each BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 8 , 1 9 0 0 0 0 1 +that follows that t th tha that BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 8 no 0 10 0 0 0 0 1 +per the per p pe per per BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 8 . 1 3 0 0 0 0 1 +For example, for F Fo For For BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 10 ,-, 3 9 0 0 0 0 1 +and the and a an and and BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 10 , 1 10 0 0 0 0 1 +field is field f fi fie fiel BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 1 10 . 1 9 0 0 0 0 1 +eight bytes eight e ei eig eigh BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 10 (), 3 9 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 1 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 11 , 1 10 0 0 0 0 0 +[Page 76] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 1 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 1 0 no 0 4 0 0 0 0 1 +uses four uses u us use uses BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 0 ,( 2 10 0 0 0 0 1 ++ 15 + + + + + BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 ), 2 9 0 0 0 0 1 +field is field f fi fie fiel BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 1 0 .. 2 9 0 0 0 0 1 +is 48; is i is is is BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 0 ;, 2 9 0 0 0 0 1 +bytes, or bytes, b by byt byte BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 0 ,. 2 9 0 0 0 0 1 +encoded bytes encoded e en enc enco BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 0 . 1 6 0 0 0 0 1 +GSS_Wrap() emits gss_wrap() G GS GSS GSS_ BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 1 2 () 2 10 0 0 0 0 1 +type ssv_seal_cipher_tkn4. type t ty typ type BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 2 . 1 9 0 0 0 0 1 +the caller the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 2 (), 3 10 0 0 0 0 1 +has confidentiality. has h ha has has BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 2 . 1 9 0 0 0 0 1 +RPCSEC_GSS, and rpcsec_gss, R RP RPC RPCS BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 1 2 ,() 3 10 0 0 0 0 1 +confidentiality. confidentiality. confidentiality. c co con conf BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 2 . 1 2 0 0 0 0 1 +There is there T Th The Ther BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 3 . 1 9 0 0 0 0 1 +client ID client c cl cli clie BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 3 /. 2 9 0 0 0 0 1 +client ID client c cl cli clie BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 3 /. 2 9 0 0 0 0 1 +not expire not n no not not BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 3 ( 1 10 0 0 0 0 1 +client ID client c cl cli clie BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 3 ). 2 9 0 0 0 0 1 +context expiration context c co con cont BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 3 " 1 9 0 0 0 0 1 +long", hence long", l lo lon long BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 3 ",, 3 10 0 0 0 0 1 +client can client c cl cli clie BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 3 no 0 8 0 0 0 0 1 +operations, which operations, o op ope oper BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 3 ,' 2 8 0 0 0 0 1 +RPCSEC_GSS credentials. rpcsec_gss R RP RPC RPCS BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 1 3 ., 2 8 0 0 0 0 1 +destroying the destroying d de des dest BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 3 '. 2 5 0 0 0 0 1 +SSV RPCSEC_GSS ssv S SS SSV SSV BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 1 7 no 0 10 0 0 0 0 1 +time, and time, t ti tim time BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 7 , 1 9 0 0 0 0 1 +RPCSEC_GSS handles. rpcsec_gss R RP RPC RPCS BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 1 7 . 1 9 0 0 0 0 1 +imply that imply i im imp impl BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 7 . 1 7 0 0 0 0 1 +The client the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 8 no 0 9 0 0 0 0 1 +context can context c co con cont BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 8 ()(). 5 10 0 0 0 0 1 +If SET_SSV if I If If If BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 8 , 1 10 0 0 0 0 1 +MUST fail. must M MU MUS MUST BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 1 8 . 1 1 0 0 0 0 1 +The SSV the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 9 no 0 10 0 0 0 0 1 +its tokens its i it its its BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 9 ( 1 9 0 0 0 0 1 +Section 5.2.2, section S Se Sec Sect BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 9 ..,"",[])., 11 8 0 0 0 0 1 +Section 2.10.10 section S Se Sec Sect BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 9 .. 2 8 0 0 0 0 1 +mechanism when mechanism m me mec mech BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 9 . 1 5 0 0 0 0 1 +2.10.10. Security 2.10.10. 2 2. 2.1 2.10 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 10 ... 3 10 0 0 0 0 1 +Mechanism Mechanism mechanism M Me Mec Mech BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 10 no 0 1 0 0 0 0 1 +When a when W Wh Whe When BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 10 ( 1 10 0 0 0 0 1 +Section 18.35), section S Se Sec Sect BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 10 .), 3 9 0 0 0 0 1 +RPCSEC_GSS handles rpcsec_gss R RP RPC RPCS BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 1 10 ( 1 8 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 1 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 11 , 1 10 0 0 0 0 0 +[Page 77] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 1 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 1 0 no 0 4 0 0 0 0 1 +Section 2.10.9). section S Se Sec Sect BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 0 ..).( 5 9 0 0 0 0 1 +version 2, version v ve ver vers BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 0 ,[][]), 7 9 0 0 0 0 1 +special care special s sp spe spec BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 0 . 1 9 0 0 0 0 1 +client to client c cl cli clie BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 0 ---. 4 9 0 0 0 0 1 +RPCSEC_GSS reply rpcsec_gss R RP RPC RPCS BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 1 0 () 2 9 0 0 0 0 1 +value of value v va val valu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 0 ( 1 9 0 0 0 0 1 +rpc_gss_cred_ver_1_t) (see rpc_gss_cred_ver_1_t) r rp rpc rpc_ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 0 )(...[]). 9 9 0 0 0 0 1 +RPCSEC_GSS handles rpcsec_gss R RP RPC RPCS BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 1 0 , 1 9 0 0 0 0 1 +used to used u us use used BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 0 , 1 10 0 0 0 0 1 +an attacker an a an an an BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 1 0 , 1 9 0 0 0 0 1 +used for used u us use used BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 0 . 1 3 0 0 0 0 1 +There are there T Th The Ther BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 3 no 0 10 0 0 0 0 1 +verifier in verifier v ve ver veri BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 3 .. 2 9 0 0 0 0 1 +o Each o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 1 3 no 0 10 0 0 0 0 1 +EXCHANGE_ID, the exchange_id, E EX EXC EXCH BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 1 3 , 1 9 0 0 0 0 1 +the SSV. the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 3 ., 2 9 0 0 0 0 1 +the re-use the t th the the BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 3 -. 2 7 0 0 0 0 1 +o When o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 1 4 , 1 9 0 0 0 0 1 +SHOULD assign should S SH SHO SHOU BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 1 4 - 1 9 0 0 0 0 1 +each SSV each e ea eac each BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 4 . 1 9 0 0 0 0 1 +equal to equal e eq equ equa BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 4 /([] 4 9 0 0 0 0 1 +MAXSEQ). When maxseq). M MA MAX MAXS BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 1 4 )., 3 9 0 0 0 0 1 +SHOULD force should S SH SHO SHOU BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 1 4 no 0 9 0 0 0 0 1 +RPC request rpc R RP RPC RPC BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 1 4 (... 4 10 0 0 0 0 1 +[4]). [4]). [4]). [ [4 [4] [4]) BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 4 []). 4 0 0 0 0 0 1 +o When o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 1 7 , 1 9 0 0 0 0 1 +force the force f fo for forc BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 7 no 0 9 0 0 0 0 1 +request on request r re req requ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 7 . 1 9 0 0 0 0 1 +requester is requester r re req requ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 7 , 1 10 0 0 0 0 1 +using new using u us usi usin BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 7 ., 2 8 0 0 0 0 1 +client SHOULD client c cl cli clie BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 7 no 0 9 0 0 0 0 1 +server has server s se ser serv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 7 ' 1 9 0 0 0 0 1 +handle. By handle. h ha han hand BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 7 .,, 3 9 0 0 0 0 1 +so the so s so so so BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 1 7 no 0 9 0 0 0 0 1 +previous verifier previous p pr pre prev BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 7 . 1 7 0 0 0 0 1 +Note that note N No Not Note BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 9 no 0 8 0 0 0 0 1 +handles, the handles, h ha han hand BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 9 ,--- 4 9 0 0 0 0 1 +SSV RPCSEC_GSS ssv S SS SSV SSV BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 1 9 no 0 10 0 0 0 0 1 +exist. This exist. e ex exi exis BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 9 . 1 9 0 0 0 0 1 +computed from computed c co com comp BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 9 no 0 9 0 0 0 0 1 +seq_num (see seq_num s se seq seq_ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 9 (..[]). 7 9 0 0 0 0 1 +to avoid to t to to to BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 9 -, 2 9 0 0 0 0 1 +such as such s su suc such BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 9 ,-- 3 9 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 1 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 11 , 1 10 0 0 0 0 0 +[Page 78] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 1 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 1 0 no 0 4 0 0 0 0 1 +the-middle will the-middle t th the the- BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 0 - 1 10 0 0 0 0 1 +verifier in verifier v ve ver veri BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 0 . 1 6 0 0 0 0 1 +2.10.11. Session 2.10.11. 2 2. 2.1 2.10 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 0 ...- 4 10 0 0 0 0 1 +2.10.11.1. Obligations 2.10.11.1. 2 2. 2.1 2.10 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 1 .... 4 10 0 0 0 0 1 +The server the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 1 no 0 9 0 0 0 0 1 +backchannel resources backchannel b ba bac back BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 1 no 0 10 0 0 0 0 1 +(RPCSEC_GSS contexts (rpcsec_gss ( (R (RP (RPC BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 1 1 (). 3 9 0 0 0 0 1 +resources vanish, resources r re res reso BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 1 , 1 8 0 0 0 0 1 +Section 2.10.13.2. section S Se Sec Sect BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 1 .... 4 2 0 0 0 0 1 +2.10.11.2. Obligations 2.10.11.2. 2 2. 2.1 2.10 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 2 .... 4 10 0 0 0 0 1 +The client the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 2 no 0 10 0 0 0 0 1 +the session: the t th the the BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 2 : 1 1 0 0 0 0 1 +o Keep o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 1 3 . 1 10 0 0 0 0 1 +that requires that t th tha that BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 3 no 0 9 0 0 0 0 1 +risks having risks r ri ris risk BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 3 . 1 9 0 0 0 0 1 +because sessions because b be bec beca BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 3 , 1 9 0 0 0 0 1 +force the force f fo for forc BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 3 . 1 8 0 0 0 0 1 +consider a consider c co con cons BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 3 no 0 9 0 0 0 0 1 +session before session s se ses sess BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 3 (..) 4 9 0 0 0 0 1 +expired. expired. expired. e ex exp expi BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 3 . 1 1 0 0 0 0 1 +o Destroy o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 1 5 . 1 10 0 0 0 0 1 +sessions, one sessions, s se ses sess BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 5 ,, 2 10 0 0 0 0 1 +has been has h ha has has BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 5 , 1 9 0 0 0 0 1 +session. session. session. s se ses sess BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 5 . 1 1 0 0 0 0 1 +o Maintain o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 1 6 . 1 10 0 0 0 0 1 +If the if I If If If BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 6 no 0 9 0 0 0 0 1 +flavor for flavor f fl fla flav BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 6 , 1 9 0 0 0 0 1 +handles and/or handles h ha han hand BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 6 / 1 9 0 0 0 0 1 +via BACKCHANNEL_CTL via v vi via via BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 6 . 1 7 0 0 0 0 1 +o Preserve o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 1 8 . 1 9 0 0 0 0 1 +backchannel in backchannel b ba bac back BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 8 no 0 9 0 0 0 0 1 +notify the notify n no not noti BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 8 . 1 9 0 0 0 0 1 +is not is i is is is BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 8 , 1 9 0 0 0 0 1 +client to client c cl cli clie BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 8 (.., 4 9 0 0 0 0 1 +restarted without restarted r re res rest BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 8 ). 2 8 0 0 0 0 1 +server, not server, s se ser serv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 8 ,,' 3 8 0 0 0 0 1 +connection is connection c co con conn BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 8 , 1 10 0 0 0 0 1 +operation when operation o op ope oper BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 8 ' 1 9 0 0 0 0 1 +backchannel has backchannel b ba bac back BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 8 . 1 4 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 1 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 11 , 1 10 0 0 0 0 0 +[Page 79] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 1 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 1 0 no 0 4 0 0 0 0 1 +2.10.11.3. Steps 2.10.11.3. 2 2. 2.1 2.10 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 0 .... 4 10 0 0 0 0 1 +If the if I If If If BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 0 , 1 10 0 0 0 0 1 +to establish to t to to to BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 0 . 1 9 0 0 0 0 1 +protection, in protection, p pr pro prot BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 0 ,, 2 9 0 0 0 0 1 +minimum specify minimum m mi min mini BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 0 ,, 2 7 0 0 0 0 1 +BIND_CONN_TO_SESSION, BACKCHANNEL_CTL, bind_conn_to_session, B BI BIN BIND BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 1 0 ,,. 3 9 0 0 0 0 1 +opts for opts o op opt opts BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 0 ,- 2 9 0 0 0 0 1 +RPCSEC_GSS handles. rpcsec_gss R RP RPC RPCS BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 1 0 . 1 2 0 0 0 0 1 +The client the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 2 no 0 8 0 0 0 0 1 +connection to connection c co con conn BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 2 . 1 9 0 0 0 0 1 +whether or whether w wh whe whet BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 2 no 0 9 0 0 0 0 1 +through a through t th thr thro BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 2 , 1 10 0 0 0 0 1 +future reference. future f fu fut futu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 2 . 1 2 0 0 0 0 1 +If the if I If If If BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 3 no 0 9 0 0 0 0 1 +was created, was w wa was was BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 3 , 1 10 0 0 0 0 1 +the session the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 3 . 1 9 0 0 0 0 1 +client ID, client c cl cli clie BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 3 ,. 2 6 0 0 0 0 1 +If the if I If If If BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 5 ,, 2 8 0 0 0 0 1 +notifications, or notifications, n no not noti BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 5 ,, 2 9 0 0 0 0 1 +it needs it i it it it BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 5 no 0 10 0 0 0 0 1 +not already not n no not not BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 5 ., 2 8 0 0 0 0 1 +BIND_CONN_TO_SESSION to bind_conn_to_session B BI BIN BIND BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 1 5 no 0 10 0 0 0 0 1 +the session's the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 5 '., 3 9 0 0 0 0 1 +the client the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 5 no 0 9 0 0 0 0 1 +for the for f fo for for BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 5 . 1 8 0 0 0 0 1 +BACKCHANNEL_CTL. If backchannel_ctl. B BA BAC BACK BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 1 5 . 1 9 0 0 0 0 1 +protection when protection p pr pro prot BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 5 , 1 10 0 0 0 0 1 +that the that t th tha that BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 5 . 1 8 0 0 0 0 1 +If the if I If If If BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 8 no 0 8 0 0 0 0 1 +backchannel, then backchannel, b ba bac back BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 8 , 1 9 0 0 0 0 1 +connection it connection c co con conn BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 8 . 1 10 0 0 0 0 1 +use additional use u us use use BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 8 , 1 9 0 0 0 0 1 +call BIND_CONN_TO_SESSION call c ca cal call BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 1 8 no 0 9 0 0 0 0 1 +state protection state s st sta stat BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 8 . 1 7 0 0 0 0 1 +At this at A At At At BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 9 ,. 2 10 0 0 0 0 1 +2.10.12. Session 2.10.12. 2 2. 2.1 2.10 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 10 ... 3 10 0 0 0 0 1 +The server the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 10 . 1 10 0 0 0 0 1 +If the if I If If If BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 10 , 1 10 0 0 0 0 1 +the session. the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 10 ., 2 10 0 0 0 0 1 +MUST renew must M MU MUS MUST BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 1 10 . 1 9 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 1 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 11 , 1 10 0 0 0 0 0 +[Page 80] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 1 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 1 0 no 0 4 0 0 0 0 1 +inactivity timer inactivity i in ina inac BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 0 no 0 9 0 0 0 0 1 +(Section 5.8.1.11). (section ( (S (Se (Sec BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 0 (...).(.), 10 9 0 0 0 0 1 +server receives server s se ser serv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 0 , 1 8 0 0 0 0 1 +inactivity timer, inactivity i in ina inac BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 0 , 1 9 0 0 0 0 1 +rest of rest r re res rest BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 0 ' 1 10 0 0 0 0 1 +executing. Once executing. e ex exe exec BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 0 ., 2 10 0 0 0 0 1 +the session the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 0 no 0 10 0 0 0 0 1 +current time current c cu cur curr BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 0 . 1 8 0 0 0 0 1 +2.10.13. Session 2.10.13. 2 2. 2.1 2.10 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 2 ...- 4 10 0 0 0 0 1 +2.10.13.1. Events 2.10.13.1. 2 2. 2.1 2.10 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 3 .... 4 10 0 0 0 0 1 +The following the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 3 . 1 10 0 0 0 0 1 +2.10.13.1.1. RPCSEC_GSS 2.10.13.1.1. 2 2. 2.1 2.10 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 3 ..... 5 10 0 0 0 0 1 +If all if I If If If BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 3 no 0 9 0 0 0 0 1 +callback use callback c ca cal call BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 3 , 1 10 0 0 0 0 1 +BACKCHANNEL_CTL. The backchannel_ctl. B BA BAC BACK BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 1 3 . 1 9 0 0 0 0 1 +indicates when indicates i in ind indi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 3 , 1 9 0 0 0 0 1 +(see Section (see ( (s (se (see BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 3 (..). 5 3 0 0 0 0 1 +2.10.13.1.2. Connection 2.10.13.1.2. 2 2. 2.1 2.10 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 5 ..... 5 10 0 0 0 0 1 +If the if I If If If BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 5 no 0 9 0 0 0 0 1 +retain the retain r re ret reta BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 5 ,,, 3 10 0 0 0 0 1 +when the when w wh whe when BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 5 , 1 10 0 0 0 0 1 +the spo_must_enforce the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 5 , 1 9 0 0 0 0 1 +to associate to t to to to BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 5 . 1 6 0 0 0 0 1 +If there if I If If If BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 6 , 1 9 0 0 0 0 1 +then if then t th the then BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 6 , 1 9 0 0 0 0 1 +retry the retry r re ret retr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 6 ,.... 5 9 0 0 0 0 1 +not necessary not n no not not BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 6 no 0 9 0 0 0 0 1 +source network source s so sou sour BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 6 no 0 10 0 0 0 0 1 +lost connection. lost l lo los lost BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 6 .,, 3 9 0 0 0 0 1 +in the in i in in in BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 1 6 , 1 9 0 0 0 0 1 +recognize the recognize r re rec reco BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 6 no 0 9 0 0 0 0 1 +disconnect. disconnect. disconnect. d di dis disc BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 6 . 1 1 0 0 0 0 1 +If the if I If If If BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 9 no 0 10 0 0 0 0 1 +backchannel, and backchannel, b ba bac back BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 9 ,/ 2 9 0 0 0 0 1 +prevent revocation prevent p pr pre prev BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 9 , 1 8 0 0 0 0 1 +reconnect, and reconnect, r re rec reco BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 9 ,, 2 9 0 0 0 0 1 +session and session s se ses sess BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 9 . 1 9 0 0 0 0 1 +indicate when indicate i in ind indi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 9 no 0 9 0 0 0 0 1 +result from result r re res resu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 9 . 1 3 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 1 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 11 , 1 10 0 0 0 0 0 +[Page 81] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 1 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 1 0 no 0 4 0 0 0 0 1 +2.10.13.1.3. Backchannel 2.10.13.1.3. 2 2. 2.1 2.10 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 0 ..... 5 10 0 0 0 0 1 +Via the via V Vi Via Via BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 0 no 0 9 0 0 0 0 1 +means, the means, m me mea mean BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 0 , 1 8 0 0 0 0 1 +contexts it contexts c co con cont BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 0 . 1 9 0 0 0 0 1 +client wants client c cl cli clie BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 0 / 1 9 0 0 0 0 1 +state subject state s st sta stat BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 0 , 1 10 0 0 0 0 1 +to assign to t to to to BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 0 . 1 3 0 0 0 0 1 +2.10.13.1.4. Loss 2.10.13.1.4. 2 2. 2.1 2.10 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 2 ..... 5 10 0 0 0 0 1 +The replier the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 2 .: 2 10 0 0 0 0 1 +o Replier o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 1 3 . 1 10 0 0 0 0 1 +o A o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 1 3 no 0 10 0 0 0 0 1 +on the on o on on on BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 3 . 1 9 0 0 0 0 1 +replier indicated replier r re rep repl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 3 no 0 9 0 0 0 0 1 +persist the persist p pe per pers BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 3 . 1 2 0 0 0 0 1 +o The o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 1 4 no 0 10 0 0 0 0 1 +for a for f fo for for BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 4 . 1 5 0 0 0 0 1 +o As o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 1 5 no 0 9 0 0 0 0 1 +servers, a servers, s se ser serv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 5 , 1 9 0 0 0 0 1 +becomes connected becomes b be bec beco BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 5 no 0 9 0 0 0 0 1 +the session the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 5 . 1 8 0 0 0 0 1 +generally only generally g ge gen gene BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 5 no 0 10 0 0 0 0 1 +for a for f fo for for BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 5 . 1 1 0 0 0 0 1 +Loss of loss L Lo Los Loss BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 7 . 1 10 0 0 0 0 1 +indicates loss indicates i in ind indi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 7 no 0 8 0 0 0 0 1 +NFS4ERR_BADSESSION on nfs4err_badsession N NF NFS NFS4 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 7 no 0 10 0 0 0 0 1 +that refers that t th tha that BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 7 . 1 5 0 0 0 0 1 +After an after A Af Aft Afte BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 8 , 1 9 0 0 0 0 1 +connections. The connections. c co con conn BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 8 . 1 9 0 0 0 0 1 +not been not n no not not BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 8 ., 2 8 0 0 0 0 1 +association enforcement association a as ass asso BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 8 , 1 9 0 0 0 0 1 +BIND_CONN_TO_SESSION using bind_conn_to_session B BI BIN BIND BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 1 8 ., 2 9 0 0 0 0 1 +SEQUENCE. If sequence. S SE SEQ SEQU BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 1 8 . 1 7 0 0 0 0 1 +NFS4ERR_BADSESSION, the nfs4err_badsession, N NF NFS NFS4 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 8 , 1 10 0 0 0 0 1 +it when it i it it it BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 8 . 1 9 0 0 0 0 1 +survives session survives s su sur surv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 8 , 1 9 0 0 0 0 1 +sends over sends s se sen send BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 8 . 1 9 0 0 0 0 1 +client again client c cl cli clie BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 8 . 1 5 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 1 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 11 , 1 10 0 0 0 0 0 +[Page 82] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 1 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 1 0 no 0 4 0 0 0 0 1 +Here is here H He Her Here BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 0 no 0 8 0 0 0 0 1 +NFS4ERR_BADSESSION. It nfs4err_badsession. N NF NFS NFS4 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 0 ., 2 9 0 0 0 0 1 +not want not n no not not BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 0 , 1 10 0 0 0 0 1 +parts of parts p pa par part BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 0 ., 2 10 0 0 0 0 1 +various possible various v va var vari BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 0 : 1 4 0 0 0 0 1 +1. If 1. 1 1. 1. 1. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 1 . 1 10 0 0 0 0 1 +addresses associated addresses a ad add addr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 1 , 1 10 0 0 0 0 1 +with a with w wi wit with BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 1 ,, 2 8 0 0 0 0 1 +connections. connections. connections. c co con conn BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 1 . 1 2 0 0 0 0 1 +2. If 2. 2 2. 2. 2. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 2 .,, 3 10 0 0 0 0 1 +a strong a a a a a BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 1 0 0 0 0 0 1 2 '. 2 9 0 0 0 0 1 +The client the T Th The The BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 2 no 0 8 0 0 0 0 1 +returned NFS4ERR_BADSESSION returned r re ret retu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 2 no 0 9 0 0 0 0 1 +client ID client c cl cli clie BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 2 (.., 4 9 0 0 0 0 1 +returned). The returned). r re ret retu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 2 ). 2 9 0 0 0 0 1 +address was address a ad add addr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 2 , 1 9 0 0 0 0 1 +availability benefits availability a av ava avai BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 2 . 1 8 0 0 0 0 1 +3. If 3. 3 3. 3. 3. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 4 ., 2 10 0 0 0 0 1 +session no session s se ses sess BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 4 no 0 9 0 0 0 0 1 +for which for f fo for for BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 4 no 0 9 0 0 0 0 1 +ID. It id. I ID ID. ID. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 1 4 . 1 9 0 0 0 0 1 +other network other o ot oth othe BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 4 . 1 9 0 0 0 0 1 +the connections the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 4 no 0 9 0 0 0 0 1 +those network those t th tho thos BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 4 . 1 9 0 0 0 0 1 +but a but b bu but but BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 4 , 1 9 0 0 0 0 1 +server restart. server s se ser serv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 4 . 1 9 0 0 0 0 1 +are returned, are a ar are are BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 4 , 1 9 0 0 0 0 1 +did delete did d di did did BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 4 , 1 8 0 0 0 0 1 +CREATE_SESSION if create_session C CR CRE CREA BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 1 4 . 1 9 0 0 0 0 1 +If a if I If If If BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 4 , 1 9 0 0 0 0 1 +to find to t to to to BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 4 ., 2 9 0 0 0 0 1 +not find not n no not not BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 4 , 1 9 0 0 0 0 1 +be unable be b be be be BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 4 ., 2 9 0 0 0 0 1 +returned to returned r re ret retu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 4 . 1 9 0 0 0 0 1 +is using is i is is is BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 4 "",. 4 9 0 0 0 0 1 +4. If 4. 4 4. 4. 4. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 9 . 1 10 0 0 0 0 1 +session ID session s se ses sess BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 9 ,, 2 9 0 0 0 0 1 +associated with associated a as ass asso BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 9 , 1 9 0 0 0 0 1 +find other find f fi fin find BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 9 ., 2 9 0 0 0 0 1 +find any find f fi fin find BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 9 , 1 9 0 0 0 0 1 +unable to unable u un una unab BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 9 ., 2 9 0 0 0 0 1 +returned to returned r re ret retu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 9 . 1 9 0 0 0 0 1 +is using is i is is is BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 9 "",. 4 9 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 1 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 11 , 1 10 0 0 0 0 0 +[Page 83] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 1 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 1 0 no 0 4 0 0 0 0 1 +If there if I If If If BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 0 no 0 9 0 0 0 0 1 +address being address a ad add addr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 0 no 0 10 0 0 0 0 1 +different, it different, d di dif diff BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 0 , 1 10 0 0 0 0 1 +first will first f fi fir firs BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 0 ., 2 9 0 0 0 0 1 +managing server managing m ma man mana BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 0 no 0 9 0 0 0 0 1 +scope values, scope s sc sco scop BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 0 , 1 9 0 0 0 0 1 +disconnected from disconnected d di dis disc BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 0 no 0 8 0 0 0 0 1 +reconfiguration. Nonetheless, reconfiguration. r re rec reco BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 0 ., 2 9 0 0 0 0 1 +will always will w wi wil will BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 1 0 ; 1 9 0 0 0 0 1 +deal with deal d de dea deal BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 1 0 . 1 9 0 0 0 0 1 +a session a a a a a BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 1 0 0 0 0 0 1 0 , 1 9 0 0 0 0 1 +either that either e ei eit eith BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 0 no 0 9 0 0 0 0 1 +sequence value sequence s se seq sequ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 0 ., 2 9 0 0 0 0 1 +client receives client c cl cli clie BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 0 , 1 10 0 0 0 0 1 +EXCHANGE_ID to exchange_id E EX EXC EXCH BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 1 0 no 0 8 0 0 0 0 1 +RECOMMENDED. RECOMMENDED. recommended. R RE REC RECO BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 1 0 . 1 1 0 0 0 0 1 +A variation a A A A A BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 1 0 0 0 0 0 1 4 ' 1 9 0 0 0 0 1 +moves, there moves, m mo mov move BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 4 ,.,.., 6 9 0 0 0 0 1 +port 2049. port p po por port BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 4 .,: 3 9 0 0 0 0 1 +server returns server s se ser serv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 4 , 1 9 0 0 0 0 1 +PROG_MISMATCH error, prog_mismatch P PR PRO PROG BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 1 4 ,, 2 10 0 0 0 0 1 +attempts to attempts a at att atte BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 4 . 1 9 0 0 0 0 1 +be treated be b be be be BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 4 no 0 10 0 0 0 0 1 +these purposes. these t th the thes BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 4 . 1 2 0 0 0 0 1 +When the when W Wh Whe When BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 6 , 1 10 0 0 0 0 1 +to recover. to t to to to BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 6 .- 2 9 0 0 0 0 1 +might have might m mi mig migh BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 6 . 1 9 0 0 0 0 1 +The client the T Th The The BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 6 . 1 7 0 0 0 0 1 +Note that note N No Not Note BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 7 -, 2 9 0 0 0 0 1 +open, delegation, open, o op ope open BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 7 ,,,,, 5 10 0 0 0 0 1 +and layouts and a an and and BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 7 , 1 9 0 0 0 0 1 +not the not n no not not BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 7 .-,,, 5 10 0 0 0 0 1 +or layout or o or or or BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 7 , 1 9 0 0 0 0 1 +depends on depends d de dep depe BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 7 ; 1 9 0 0 0 0 1 +of session, of o of of of BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 7 ,-,,,. 6 10 0 0 0 0 1 +Section 8.4.2. section S Se Sec Sect BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 7 ..., 4 9 0 0 0 0 1 +recovery may recovery r re rec reco BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 7 . 1 4 0 0 0 0 1 +It is it I It It It BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 10 no 0 7 0 0 0 0 1 +NFS4ERR_STALE_CLIENTID (e.g., nfs4err_stale_clientid N NF NFS NFS4 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 10 (.., 4 10 0 0 0 0 1 +preserve client preserve p pr pre pres BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 10 )., 3 9 0 0 0 0 1 +EXCHANGE_ID, followed exchange_id, E EX EXC EXCH BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 1 10 ,. 2 6 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 1 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 11 , 1 10 0 0 0 0 0 +[Page 84] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 1 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 1 0 no 0 4 0 0 0 0 1 +2.10.13.2. Events 2.10.13.2. 2 2. 2.1 2.10 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 0 .... 4 10 0 0 0 0 1 +The following the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 0 . 1 10 0 0 0 0 1 +2.10.13.2.1. Client 2.10.13.2.1. 2 2. 2.1 2.10 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 0 ..... 5 10 0 0 0 0 1 +As described as A As As As BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 1 ., 2 10 0 0 0 0 1 +in such in i in in in BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 1 1 no 0 9 0 0 0 0 1 +had. had. had. h ha had had. BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 1 . 1 0 0 0 0 0 1 +2.10.13.2.2. Client 2.10.13.2.2. 2 2. 2.1 2.10 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 2 ..... 5 10 0 0 0 0 1 +If a if I If If If BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 2 , 1 8 0 0 0 0 1 +EXCHANGE_ID with exchange_id E EX EXC EXCH BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 1 2 ., 2 9 0 0 0 0 1 +state that state s st sta stat BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 2 . 1 9 0 0 0 0 1 +time, and time, t ti tim time BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 2 ,, 2 10 0 0 0 0 1 +old session old o ol old old BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 2 . 1 5 0 0 0 0 1 +2.10.13.2.3. Extended 2.10.13.2.3. 2 2. 2.1 2.10 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 4 ..... 5 10 0 0 0 0 1 +To the to T To To To BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 4 , 1 9 0 0 0 0 1 +from a from f fr fro from BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 4 (....). 7 9 0 0 0 0 1 +Unless the unless U Un Unl Unle BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 4 , 1 10 0 0 0 0 1 +is free is i is is is BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 4 no 0 8 0 0 0 0 1 +permanently. permanently. permanently. p pe per perm BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 4 . 1 1 0 0 0 0 1 +2.10.13.2.4. Backchannel 2.10.13.2.4. 2 2. 2.1 2.10 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 6 ..... 5 10 0 0 0 0 1 +If there if I If If If BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 6 no 0 8 0 0 0 0 1 +connection loss, connection c co con conn BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 6 ,, 2 8 0 0 0 0 1 +described in described d de des desc BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 6 .... 4 9 0 0 0 0 1 +retry requests retry r re ret retr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 6 no 0 10 0 0 0 0 1 +or the or o or or or BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 6 . 1 9 0 0 0 0 1 +long as long l lo lon long BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 1 6 ,, 2 9 0 0 0 0 1 +that of that t th tha that BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 6 , 1 9 0 0 0 0 1 +request as request r re req requ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 6 no 0 8 0 0 0 0 1 +disconnect. disconnect. disconnect. d di dis disc BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 6 . 1 1 0 0 0 0 1 +If the if I If If If BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 9 no 0 8 0 0 0 0 1 +backchannel, then backchannel, b ba bac back BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 9 , 1 7 0 0 0 0 1 +sr_status_flags field sr_status_flags s sr sr_ sr_s BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 9 no 0 9 0 0 0 0 1 +is re-established. is i is is is BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 9 -., 3 9 0 0 0 0 1 +different status different d di dif diff BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 9 :' 2 10 0 0 0 0 1 +and no and a an and and BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 9 . 1 9 0 0 0 0 1 +Section 18.46 section S Se Sec Sect BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 9 . 1 8 0 0 0 0 1 +sr_status_flags. sr_status_flags. sr_status_flags. s sr sr_ sr_s BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 9 . 1 2 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 1 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 11 , 1 10 0 0 0 0 0 +[Page 85] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 1 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 1 0 no 0 4 0 0 0 0 1 +2.10.13.2.5. GSS 2.10.13.2.5. 2 2. 2.1 2.10 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 0 ..... 5 10 0 0 0 0 1 +The server the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 0 no 0 9 0 0 0 0 1 +assigned to assigned a as ass assi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 0 , 1 10 0 0 0 0 1 +near expiry near n ne nea near BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 0 (..,), 6 9 0 0 0 0 1 +indicate so indicate i in ind indi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 0 . 1 9 0 0 0 0 1 +The server the T Th The The BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 0 ' 1 9 0 0 0 0 1 +RPCSEC_GSS handles rpcsec_gss R RP RPC RPCS BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 1 0 no 0 10 0 0 0 0 1 +SEQUENCE replies. sequence S SE SEQ SEQU BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 1 0 . 1 2 0 0 0 0 1 +2.10.14. Parallel 2.10.14. 2 2. 2.1 2.10 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 3 ... 3 10 0 0 0 0 1 +A client a A A A A BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 1 0 0 0 0 0 1 3 -, 2 9 0 0 0 0 1 +metadata server metadata m me met meta BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 3 ,, 2 10 0 0 0 0 1 +or three or o or or or BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 3 ., 2 9 0 0 0 0 1 +EXCHGID4_FLAG_USE_PNFS_MDS, and exchgid4_flag_use_pnfs_mds, E EX EXC EXCH BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 3 ,( 2 10 0 0 0 0 1 +mutually exclusive) mutually m mu mut mutu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 3 ) 1 9 0 0 0 0 1 +results to results r re res resu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 1 3 no 0 10 0 0 0 0 1 +created under created c cr cre crea BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 3 , 1 10 0 0 0 0 1 +it will it i it it it BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 3 .. 2 9 0 0 0 0 1 +sessions considerations. sessions s se ses sess BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 1 3 . 1 3 0 0 0 0 1 +3. Protocol 3. 3 3. 3. 3. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 6 . 1 10 0 0 0 0 1 +The syntax the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 6 . 1 9 0 0 0 0 1 +protocol are protocol p pr pro prot BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 6 [][] 4 9 0 0 0 0 1 +documents. The documents. d do doc docu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 6 . 1 10 0 0 0 0 1 +constants, types, constants, c co con cons BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 6 ,,. 3 10 0 0 0 0 1 +list of list l li lis list BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 6 []. 3 5 0 0 0 0 1 +3.1. Basic 3.1. 3 3. 3.1 3.1. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 8 .. 2 10 0 0 0 0 1 +const NFS4_FHSIZE const c co con cons BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 9 no 0 6 0 0 0 0 1 += 128; = = = = = BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 9 ; 1 2 0 0 0 0 1 +const NFS4_VERIFIER_SIZE const c co con cons BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 9 no 0 9 0 0 0 0 1 += 8; = = = = = BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 9 ; 1 1 0 0 0 0 1 +const NFS4_OPAQUE_LIMIT const c co con cons BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 9 no 0 9 0 0 0 0 1 += 1024; = = = = = BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 9 ; 1 3 0 0 0 0 1 +const NFS4_SESSIONID_SIZE const c co con cons BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 9 no 0 10 0 0 0 0 1 += 16; = = = = = BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 9 ; 1 2 0 0 0 0 1 +const NFS4_INT64_MAX const c co con cons BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 9 no 0 9 0 0 0 0 1 += 0x7fffffffffffffff; = = = = = BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 9 ; 1 10 0 0 0 0 1 +const NFS4_UINT64_MAX const c co con cons BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 9 no 0 10 0 0 0 0 1 += 0xffffffffffffffff; = = = = = BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 9 ; 1 10 0 0 0 0 1 +const NFS4_INT32_MAX const c co con cons BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 9 no 0 9 0 0 0 0 1 += 0x7fffffff; = = = = = BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 9 ; 1 6 0 0 0 0 1 +const NFS4_UINT32_MAX const c co con cons BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 9 no 0 10 0 0 0 0 1 += 0xffffffff; = = = = = BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 9 ; 1 6 0 0 0 0 1 +const NFS4_MAXFILELEN const c co con cons BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 10 no 0 10 0 0 0 0 1 += 0xffffffffffffffff; = = = = = BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 10 ; 1 10 0 0 0 0 1 +const NFS4_MAXFILEOFF const c co con cons BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 10 no 0 10 0 0 0 0 1 += 0xfffffffffffffffe; = = = = = BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 10 ; 1 10 0 0 0 0 1 +Except where except E Ex Exc Exce BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 10 ,. 2 10 0 0 0 0 1 +o NFS4_FHSIZE o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 1 11 . 1 10 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 1 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 11 , 1 10 0 0 0 0 0 +[Page 86] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 1 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 1 0 no 0 4 0 0 0 0 1 +o NFS4_VERIFIER_SIZE o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 1 0 . 1 10 0 0 0 0 1 +o NFS4_OPAQUE_LIMIT o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 1 0 no 0 10 0 0 0 0 1 +information. information. information. i in inf info BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 0 . 1 2 0 0 0 0 1 +o NFS4_SESSIONID_SIZE o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 1 0 . 1 10 0 0 0 0 1 +o NFS4_INT64_MAX o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 1 1 -. 2 10 0 0 0 0 1 +o NFS4_UINT64_MAX o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 1 1 - 1 10 0 0 0 0 1 +integer. integer. integer. i in int inte BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 1 . 1 1 0 0 0 0 1 +o NFS4_INT32_MAX o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 1 2 -. 2 10 0 0 0 0 1 +o NFS4_UINT32_MAX o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 1 2 - 1 10 0 0 0 0 1 +integer. integer. integer. i in int inte BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 2 . 1 1 0 0 0 0 1 +o NFS4_MAXFILELEN o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 1 2 . 1 10 0 0 0 0 1 +o NFS4_MAXFILEOFF o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 1 3 . 1 10 0 0 0 0 1 +3.2. Basic 3.2. 3 3. 3.2 3.2. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 3 .. 2 10 0 0 0 0 1 +These are these T Th The Thes BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 3 .. 2 10 0 0 0 0 1 ++---------------+---------------------------------------------------+ +---------------+---------------------------------------------------+ +---------------+---------------------------------------------------+ + +- +-- +--- BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 1 3 ------------------------------------------------------------------ 66 10 0 0 0 0 1 +| Data | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 3 no 0 1 0 0 0 0 1 +| Definition | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 3 no 0 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 3 no 0 0 0 0 0 0 1 ++---------------+---------------------------------------------------+ +---------------+---------------------------------------------------+ +---------------+---------------------------------------------------+ + +- +-- +--- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 1 3 ------------------------------------------------------------------ 66 10 0 0 0 0 1 +| int32_t | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 3 no 0 1 0 0 0 0 1 +| typedef | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 3 ; 1 3 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 3 no 0 0 0 0 0 0 1 +| uint32_t | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 3 no 0 1 0 0 0 0 1 +| typedef | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 3 ; 1 4 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 3 no 0 0 0 0 0 0 1 +| int64_t | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 3 no 0 1 0 0 0 0 1 +| typedef | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 3 ; 1 3 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 3 no 0 0 0 0 0 0 1 +| uint64_t | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 3 no 0 1 0 0 0 0 1 +| typedef | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 3 ; 1 5 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 3 no 0 0 0 0 0 0 1 +| attrlist4 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 3 no 0 1 0 0 0 0 1 +| typedef | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 3 ; 1 4 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 3 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 3 no 0 0 0 0 0 0 1 +| Used | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 3 /. 2 5 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 3 no 0 0 0 0 0 0 1 +| bitmap4 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 3 no 0 1 0 0 0 0 1 +| typedef | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 3 ; 1 4 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 3 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 3 no 0 0 0 0 0 0 1 +| Used | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 3 . 1 5 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 3 no 0 0 0 0 0 0 1 +| changeid4 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 3 no 0 1 0 0 0 0 1 +| typedef | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 3 ; 1 4 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 3 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 3 no 0 0 0 0 0 0 1 +| Used | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 3 . 1 6 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 3 no 0 0 0 0 0 0 1 +| clientid4 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 3 no 0 1 0 0 0 0 1 +| typedef | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 3 ; 1 4 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 3 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 3 no 0 0 0 0 0 0 1 +| Shorthand | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 3 . 1 6 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 3 no 0 0 0 0 0 0 1 +| count4 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 3 no 0 1 0 0 0 0 1 +| typedef | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 3 ; 1 3 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 3 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 3 no 0 0 0 0 0 0 1 +| Various | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 3 (,,). 5 7 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 3 no 0 0 0 0 0 0 1 +| length4 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 3 no 0 1 0 0 0 0 1 +| typedef | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 3 ; 1 4 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 3 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 3 no 0 0 0 0 0 0 1 +| The | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 3 -. 2 6 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 3 no 0 0 0 0 0 0 1 +| mode4 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 3 no 0 1 0 0 0 0 1 +| typedef | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 3 ; 1 3 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 3 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 3 no 0 0 0 0 0 0 1 +| Mode | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 3 . 1 4 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 3 no 0 0 0 0 0 0 1 +| nfs_cookie4 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 3 no 0 2 0 0 0 0 1 +| typedef | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 3 ; 1 4 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 3 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 3 no 0 0 0 0 0 0 1 +| Opaque | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 3 . 1 5 0 0 0 0 1 +| | | | | | | BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 3 no 0 0 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 1 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 11 , 1 10 0 0 0 0 0 +[Page 87] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 1 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 1 0 no 0 4 0 0 0 0 1 +| nfs_fh4 | | | | | BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 no 0 1 0 0 0 0 1 +| typedef | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 ; 1 7 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 no 0 0 0 0 0 0 1 +| Filehandle | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 . 1 4 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 no 0 0 0 0 0 0 1 +| nfs_ftype4 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 no 0 2 0 0 0 0 1 +| enum | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 ; 1 3 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 no 0 0 0 0 0 0 1 +| Various | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 . 1 5 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 no 0 0 0 0 0 0 1 +| nfsstat4 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 no 0 2 0 0 0 0 1 +| enum | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 ; 1 3 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 no 0 0 0 0 0 0 1 +| Return | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 . 1 5 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 no 0 0 0 0 0 0 1 +| offset4 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 no 0 1 0 0 0 0 1 +| typedef | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 ; 1 5 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 no 0 0 0 0 0 0 1 +| Various | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 (,,, 4 9 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 no 0 0 0 0 0 0 1 +| COMMIT). | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 ). 2 2 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 no 0 0 0 0 0 0 1 +| qop4 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 no 0 1 0 0 0 0 1 +| typedef | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 ; 1 4 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 no 0 0 0 0 0 0 1 +| Quality | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 . 1 9 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 no 0 0 0 0 0 0 1 +| sec_oid4 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 no 0 2 0 0 0 0 1 +| typedef | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 ; 1 5 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 no 0 0 0 0 0 0 1 +| Security | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 . 1 9 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 no 0 0 0 0 0 0 1 +| type | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 ., 2 9 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 no 0 0 0 0 0 0 1 +| an | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 .- 2 10 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 no 0 0 0 0 0 0 1 +| the | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 . 1 9 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 no 0 0 0 0 0 0 1 +| See | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 []. 3 4 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 no 0 0 0 0 0 0 1 +| sequenceid4 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 no 0 2 0 0 0 0 1 +| typedef | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 ; 1 6 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 no 0 0 0 0 0 0 1 +| Sequence | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 no 0 8 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 no 0 0 0 0 0 0 1 +| operations | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 (,, 3 8 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 no 0 0 0 0 0 0 1 +| SEQUENCE, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 ,). 3 4 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 no 0 0 0 0 0 0 1 +| seqid4 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 no 0 1 0 0 0 0 1 +| typedef | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 ; 1 5 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 no 0 0 0 0 0 0 1 +| Sequence | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 . 1 7 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 no 0 0 0 0 0 0 1 +| sessionid4 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 no 0 2 0 0 0 0 1 +| typedef | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 []; 3 9 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 no 0 0 0 0 0 0 1 +| Session | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 . 1 4 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 no 0 0 0 0 0 0 1 +| slotid4 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 no 0 1 0 0 0 0 1 +| typedef | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 ; 1 5 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 no 0 0 0 0 0 0 1 +| Sequencing | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 no 0 7 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 no 0 0 0 0 0 0 1 +| operations | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 (,). 4 7 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 no 0 0 0 0 0 0 1 +| utf8string | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 no 0 2 0 0 0 0 1 +| typedef | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 ; 1 5 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 no 0 0 0 0 0 0 1 +| UTF-8 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 -. 2 5 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 no 0 0 0 0 0 0 1 +| utf8str_cis | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 no 0 2 0 0 0 0 1 +| typedef | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 ; 1 6 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 no 0 0 0 0 0 0 1 +| Case-insensitive | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 --. 3 6 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 no 0 0 0 0 0 0 1 +| utf8str_cs | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 no 0 2 0 0 0 0 1 +| typedef | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 ; 1 6 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 no 0 0 0 0 0 0 1 +| Case-sensitive | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 --. 3 5 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 no 0 0 0 0 0 0 1 +| utf8str_mixed | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 ; 1 9 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 no 0 0 0 0 0 0 1 +| UTF-8 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 -- 2 10 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 no 0 0 0 0 0 0 1 +| case-insensitive | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 -. 2 5 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 no 0 0 0 0 0 0 1 +| component4 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 no 0 2 0 0 0 0 1 +| typedef | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 ; 1 6 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 no 0 0 0 0 0 0 1 +| Represents | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 . 1 6 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 no 0 0 0 0 0 0 1 +| linktext4 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 no 0 2 0 0 0 0 1 +| typedef | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 ; 1 6 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 no 0 0 0 0 0 0 1 +| Symbolic | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 ("" 3 8 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 no 0 0 0 0 0 0 1 +| defined | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 []). 4 8 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 no 0 0 0 0 0 0 1 +| pathname4 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 no 0 2 0 0 0 0 1 +| typedef | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 ; 1 6 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 no 0 0 0 0 0 0 1 +| Represents | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 . 1 7 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 no 0 0 0 0 0 0 1 +| verifier4 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 no 0 2 0 0 0 0 1 +| typedef | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 []; 3 9 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 no 0 0 0 0 0 0 1 +| Verifier | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 (, 2 9 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 no 0 0 0 0 0 0 1 +| CREATE, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 ,,,,) 5 8 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 no 0 0 0 0 0 0 1 +| NFS4_VERIFIER_SIZE | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 . 1 7 0 0 0 0 1 +| | | | | | | BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 no 0 0 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 1 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 11 , 1 10 0 0 0 0 0 +[Page 88] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 1 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 1 0 no 0 4 0 0 0 0 1 ++---------------+---------------------------------------------------+ +---------------+---------------------------------------------------+ +---------------+---------------------------------------------------+ + +- +-- +--- BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 1 0 ------------------------------------------------------------------ 66 10 0 0 0 0 1 +End of end E En End End BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 1 no 0 10 0 0 0 0 1 +Table 1 table T Ta Tab Tabl BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 1 no 0 10 0 0 0 0 1 +3.3. Structured 3.3. 3 3. 3.3 3.3. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 2 .. 2 10 0 0 0 0 1 +3.3.1. nfstime4 3.3.1. 3 3. 3.3 3.3. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 2 ... 3 10 0 0 0 0 1 +struct nfstime4 struct s st str stru BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 2 no 0 10 0 0 0 0 1 +int64_t int64_t int64_t i in int int6 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 2 no 0 4 0 0 0 0 1 +seconds; seconds; seconds; s se sec seco BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 2 ; 1 5 0 0 0 0 1 +uint32_t uint32_t uint32_t u ui uin uint BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 2 no 0 5 0 0 0 0 1 +nseconds; nseconds; nseconds; n ns nse nsec BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 2 ; 1 5 0 0 0 0 1 +}; }; }; } }; }; }; BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 1 2 ; 1 1 0 0 0 0 1 +The nfstime4 the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 2 no 0 9 0 0 0 0 1 +since midnight since s si sin sinc BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 2 , 1 9 0 0 0 0 1 +Time (UTC). time T Ti Tim Time BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 2 (). 3 9 0 0 0 0 1 +dates after dates d da dat date BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 2 ,. 2 9 0 0 0 0 1 +the seconds the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 2 ,. 2 9 0 0 0 0 1 +In both in I In In In BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 1 2 , 1 10 0 0 0 0 1 +for the for f fo for for BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 2 ., 2 9 0 0 0 0 1 +represented is represented r re rep repr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 2 -,, 3 9 0 0 0 0 1 +seconds field seconds s se sec seco BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 2 (-) 3 8 0 0 0 0 1 +nseconds field nseconds n ns nse nsec BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 2 -(). 4 9 0 0 0 0 1 +Values greater values V Va Val Valu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 2 ,,. 3 8 0 0 0 0 1 +This data this T Th Thi This BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 8 . 1 9 0 0 0 0 1 +converts to converts c co con conv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 8 no 0 10 0 0 0 0 1 +time values, time t ti tim time BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 8 ,. 2 8 0 0 0 0 1 +precision of precision p pr pre prec BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 8 no 0 9 0 0 0 0 1 +defined, loss defined, d de def defi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 8 ,. 2 9 0 0 0 0 1 +protocol is protocol p pr pro prot BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 8 . 1 9 0 0 0 0 1 +3.3.2. time_how4 3.3.2. 3 3. 3.3 3.3. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 10 ... 3 10 0 0 0 0 1 +enum time_how4 enum e en enu enum BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 10 no 0 6 0 0 0 0 1 +SET_TO_SERVER_TIME4 = set_to_server_time4 S SE SET SET_ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 10 , 1 10 0 0 0 0 1 +SET_TO_CLIENT_TIME4 = set_to_client_time4 S SE SET SET_ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 10 no 0 9 0 0 0 0 1 +}; }; }; } }; }; }; BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 1 10 ; 1 1 0 0 0 0 1 +3.3.3. settime4 3.3.3. 3 3. 3.3 3.3. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 11 ... 3 10 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 1 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 11 , 1 10 0 0 0 0 0 +[Page 89] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 1 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 1 0 no 0 4 0 0 0 0 1 +union settime4 union u un uni unio BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 0 () 2 10 0 0 0 0 1 +case SET_TO_CLIENT_TIME4: case c ca cas case BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 1 0 : 1 6 0 0 0 0 1 +nfstime4 nfstime4 nfstime4 n nf nfs nfst BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 0 no 0 2 0 0 0 0 1 +time; time; time; t ti tim time BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 0 ; 1 1 0 0 0 0 1 +default: default: default: d de def defa BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 0 : 1 2 0 0 0 0 1 +void; void; void; v vo voi void BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 0 ; 1 1 0 0 0 0 1 +}; }; }; } }; }; }; BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 1 0 ; 1 0 0 0 0 0 1 +The time_how4 the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 1 no 0 10 0 0 0 0 1 +in file in i in in in BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 1 1 ., 2 9 0 0 0 0 1 +the server the t th the the BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 1 . 1 9 0 0 0 0 1 +3.3.4. specdata4 3.3.4. 3 3. 3.3 3.3. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 3 ... 3 10 0 0 0 0 1 +struct specdata4 struct s st str stru BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 3 no 0 4 0 0 0 0 1 +uint32_t specdata1; uint32_t u ui uin uint BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 3 ;/**/ 5 10 0 0 0 0 1 +uint32_t specdata2; uint32_t u ui uin uint BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 3 ;/**/ 5 10 0 0 0 0 1 +}; }; }; } }; }; }; BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 1 3 ; 1 0 0 0 0 0 1 +This data this T Th Thi This BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 4 no 0 10 0 0 0 0 1 +types NF4CHR types t ty typ type BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 4 . 1 3 0 0 0 0 1 +3.3.5. fsid4 3.3.5. 3 3. 3.3 3.3. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 5 ... 3 10 0 0 0 0 1 +struct fsid4 struct s st str stru BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 5 no 0 10 0 0 0 0 1 +uint64_t uint64_t uint64_t u ui uin uint BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 5 no 0 6 0 0 0 0 1 +major; major; major; m ma maj majo BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 5 ; 1 4 0 0 0 0 1 +uint64_t uint64_t uint64_t u ui uin uint BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 5 no 0 6 0 0 0 0 1 +minor; minor; minor; m mi min mino BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 5 ; 1 4 0 0 0 0 1 +}; }; }; } }; }; }; BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 1 5 ; 1 2 0 0 0 0 1 +3.3.6. change_policy4 3.3.6. 3 3. 3.3 3.3. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 6 ... 3 10 0 0 0 0 1 +struct change_policy4 struct s st str stru BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 6 no 0 10 0 0 0 0 1 +uint64_t uint64_t uint64_t u ui uin uint BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 6 no 0 3 0 0 0 0 1 +cp_major; cp_major; cp_major; c cp cp_ cp_m BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 6 ; 1 4 0 0 0 0 1 +uint64_t uint64_t uint64_t u ui uin uint BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 6 no 0 3 0 0 0 0 1 +cp_minor; cp_minor; cp_minor; c cp cp_ cp_m BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 6 ; 1 4 0 0 0 0 1 +}; }; }; } }; }; }; BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 1 6 ; 1 1 0 0 0 0 1 +The change_policy4 the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 7 no 0 8 0 0 0 0 1 +RECOMMENDED attribute. recommended R RE REC RECO BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 1 7 . 1 9 0 0 0 0 1 +analogous to analogous a an ana anal BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 7 . 1 10 0 0 0 0 1 +value valid value v va val valu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 7 - 1 8 0 0 0 0 1 +persistent storage, persistent p pe per pers BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 7 ,-, 3 9 0 0 0 0 1 +be a be b be be be BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 7 - 1 8 0 0 0 0 1 +persistently, within persistently, p pe per pers BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 7 ,. 2 6 0 0 0 0 1 +3.3.7. fattr4 3.3.7. 3 3. 3.3 3.3. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 11 ... 3 10 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 1 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 11 , 1 10 0 0 0 0 0 +[Page 90] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 1 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 1 0 no 0 4 0 0 0 0 1 +struct fattr4 struct s st str stru BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 0 no 0 10 0 0 0 0 1 +bitmap4 bitmap4 bitmap4 b bi bit bitm BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 0 no 0 5 0 0 0 0 1 +attrmask; attrmask; attrmask; a at att attr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 0 ; 1 6 0 0 0 0 1 +attrlist4 attrlist4 attrlist4 a at att attr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 0 no 0 6 0 0 0 0 1 +attr_vals; attr_vals; attr_vals; a at att attr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 0 ; 1 6 0 0 0 0 1 +}; }; }; } }; }; }; BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 1 0 ; 1 1 0 0 0 0 1 +The fattr4 the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 0 no 0 10 0 0 0 0 1 +attributes. attributes. attributes. a at att attr BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 0 . 1 1 0 0 0 0 1 +The bitmap the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 1 - 1 9 0 0 0 0 1 +values. The values. v va val valu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 1 . 1 9 0 0 0 0 1 +can be can c ca can can BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 1 (/), 4 10 0 0 0 0 1 +integer is integer i in int inte BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 1 (). 3 3 0 0 0 0 1 +0 0 0 0 0 0 0 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 1 3 no 0 0 0 0 0 0 1 +1 1 1 1 1 1 1 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 1 3 no 0 0 0 0 0 0 1 ++-----------+-----------+-----------+-- +-----------+-----------+-----------+-- +-----------+-----------+-----------+-- + +- +-- +--- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 1 3 ----------------------------------- 35 10 0 0 0 0 1 +| count | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 3 no 0 2 0 0 0 0 1 +| 31 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 3 .... 4 5 0 0 0 0 1 ++-----------+-----------+-----------+-- +-----------+-----------+-----------+-- +-----------+-----------+-----------+-- + +- +-- +--- BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 1 3 ----------------------------------- 35 10 0 0 0 0 1 +3.3.8. change_info4 3.3.8. 3 3. 3.3 3.3. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 5 ... 3 10 0 0 0 0 1 +struct change_info4 struct s st str stru BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 5 no 0 10 0 0 0 0 1 +bool bool bool b bo boo bool BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 5 no 0 2 0 0 0 0 1 +atomic; atomic; atomic; a at ato atom BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 5 ; 1 3 0 0 0 0 1 +changeid4 changeid4 changeid4 c ch cha chan BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 5 no 0 4 0 0 0 0 1 +before; before; before; b be bef befo BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 5 ; 1 3 0 0 0 0 1 +changeid4 changeid4 changeid4 c ch cha chan BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 5 no 0 4 0 0 0 0 1 +after; after; after; a af aft afte BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 5 ; 1 3 0 0 0 0 1 +}; }; }; } }; }; }; BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 1 5 ; 1 1 0 0 0 0 1 +This data this T Th Thi This BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 6 ,,,, 4 9 0 0 0 0 1 +RENAME operations rename R RE REN RENA BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 1 6 no 0 9 0 0 0 0 1 +attribute for attribute a at att attr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 6 no 0 10 0 0 0 0 1 +resides. resides. resides. r re res resi BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 6 . 1 1 0 0 0 0 1 +3.3.9. netaddr4 3.3.9. 3 3. 3.3 3.3. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 7 ... 3 10 0 0 0 0 1 +struct netaddr4 struct s st str stru BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 7 no 0 4 0 0 0 0 1 +/* see /* / /* /* /* BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 1 7 /**/ 4 7 0 0 0 0 1 +string na_r_netid<>; string s st str stri BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 7 ;/**/ 5 8 0 0 0 0 1 +string na_r_addr<>; string s st str stri BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 7 ;/**/ 5 10 0 0 0 0 1 +}; }; }; } }; }; }; BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 1 7 ; 1 0 0 0 0 0 1 +The netaddr4 the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 8 no 0 8 0 0 0 0 1 +endpoints. The endpoints. e en end endp BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 8 . 1 9 0 0 0 0 1 +netid and netid n ne net neti BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 8 .[]. 4 9 0 0 0 0 1 +The netid the T Th The The BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 8 no 0 9 0 0 0 0 1 +defined in defined d de def defi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 8 [],... 6 10 0 0 0 0 1 +5.2.3.4. 5.2.3.4. 5.2.3.4. 5 5. 5.2 5.2. BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 8 .... 4 1 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 1 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 11 , 1 10 0 0 0 0 0 +[Page 91] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 1 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 1 0 no 0 4 0 0 0 0 1 +3.3.10. state_owner4 3.3.10. 3 3. 3.3 3.3. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 0 ... 3 10 0 0 0 0 1 +struct state_owner4 struct s st str stru BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 0 no 0 8 0 0 0 0 1 +clientid4 clientid4 clientid4 c cl cli clie BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 0 no 0 3 0 0 0 0 1 +clientid; clientid; clientid; c cl cli clie BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 0 ; 1 3 0 0 0 0 1 +opaque opaque opaque o op opa opaq BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 0 no 0 2 0 0 0 0 1 +owner<NFS4_OPAQUE_LIMIT>; owner<NFS4_OPAQUE_LIMIT>; owner<nfs4_opaque_limit>; o ow own owne BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 0 ; 1 10 0 0 0 0 1 +}; }; }; } }; }; }; BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 1 0 ; 1 1 0 0 0 0 1 +typedef state_owner4 typedef t ty typ type BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 1 ; 1 10 0 0 0 0 1 +typedef state_owner4 typedef t ty typ type BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 1 ; 1 10 0 0 0 0 1 +The state_owner4 the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 1 no 0 10 0 0 0 0 1 +(Section 3.3.10.1) (section ( (S (Se (Sec BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 1 (...)(...). 11 8 0 0 0 0 1 +3.3.10.1. open_owner4 3.3.10.1. 3 3. 3.3 3.3. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 2 .... 4 10 0 0 0 0 1 +This data this T Th Thi This BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 3 . 1 10 0 0 0 0 1 +3.3.10.2. lock_owner4 3.3.10.2. 3 3. 3.3 3.3. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 3 .... 4 10 0 0 0 0 1 +This structure this T Th Thi This BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 4 - 1 10 0 0 0 0 1 +state. state. state. s st sta stat BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 4 . 1 1 0 0 0 0 1 +3.3.11. open_to_lock_owner4 3.3.11. 3 3. 3.3 3.3. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 4 ... 3 10 0 0 0 0 1 +struct open_to_lock_owner4 struct s st str stru BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 4 no 0 10 0 0 0 0 1 +seqid4 seqid4 seqid4 s se seq seqi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 4 no 0 2 0 0 0 0 1 +open_seqid; open_seqid; open_seqid; o op ope open BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 4 ; 1 4 0 0 0 0 1 +stateid4 stateid4 stateid4 s st sta stat BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 4 no 0 3 0 0 0 0 1 +open_stateid; open_stateid; open_stateid; o op ope open BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 4 ; 1 4 0 0 0 0 1 +seqid4 seqid4 seqid4 s se seq seqi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 4 no 0 2 0 0 0 0 1 +lock_seqid; lock_seqid; lock_seqid; l lo loc lock BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 4 ; 1 4 0 0 0 0 1 +lock_owner4 lock_owner4 lock_owner4 l lo loc lock BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 4 no 0 4 0 0 0 0 1 +lock_owner; lock_owner; lock_owner; l lo loc lock BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 4 ; 1 4 0 0 0 0 1 +}; }; }; } }; }; }; BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 1 4 ; 1 1 0 0 0 0 1 +This data this T Th Thi This BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 5 no 0 9 0 0 0 0 1 +open_owner4. It open_owner4. o op ope open BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 5 ., 2 10 0 0 0 0 1 +that the that t th tha that BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 5 no 0 9 0 0 0 0 1 +that of that t th tha that BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 5 . 1 9 0 0 0 0 1 +the confirmation the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 5 / 1 10 0 0 0 0 1 +to established to t to to to BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 5 /. 2 9 0 0 0 0 1 +3.3.12. stateid4 3.3.12. 3 3. 3.3 3.3. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 8 ... 3 10 0 0 0 0 1 +struct stateid4 struct s st str stru BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 9 no 0 10 0 0 0 0 1 +uint32_t uint32_t uint32_t u ui uin uint BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 9 no 0 5 0 0 0 0 1 +seqid; seqid; seqid; s se seq seqi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 9 ; 1 3 0 0 0 0 1 +opaque opaque opaque o op opa opaq BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 9 no 0 3 0 0 0 0 1 +other[12]; other[12]; other[12]; o ot oth othe BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 9 []; 3 6 0 0 0 0 1 +}; }; }; } }; }; }; BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 1 9 ; 1 1 0 0 0 0 1 +This data this T Th Thi This BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 9 no 0 9 0 0 0 0 1 +between the between b be bet betw BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 9 . 1 10 0 0 0 0 1 +data type data d da dat data BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 9 ."" 3 9 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 1 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 11 , 1 10 0 0 0 0 0 +[Page 92] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 1 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 1 0 no 0 4 0 0 0 0 1 +undefined. The undefined. u un und unde BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 0 ."" 3 9 0 0 0 0 1 +one at one o on one one BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 0 . 1 9 0 0 0 0 1 +client will client c cl cli clie BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 0 no 0 10 0 0 0 0 1 +of OPEN of o of of of BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 0 . 1 5 0 0 0 0 1 +3.3.13. layouttype4 3.3.13. 3 3. 3.3 3.3. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 1 ... 3 10 0 0 0 0 1 +enum layouttype4 enum e en enu enum BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 2 no 0 8 0 0 0 0 1 +LAYOUT4_NFSV4_1_FILES LAYOUT4_NFSV4_1_FILES layout4_nfsv4_1_files L LA LAY LAYO BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 2 no 0 10 0 0 0 0 1 += 0x1, = = = = = BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 2 , 1 3 0 0 0 0 1 +LAYOUT4_OSD2_OBJECTS LAYOUT4_OSD2_OBJECTS layout4_osd2_objects L LA LAY LAYO BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 2 no 0 9 0 0 0 0 1 += 0x2, = = = = = BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 2 , 1 3 0 0 0 0 1 +LAYOUT4_BLOCK_VOLUME LAYOUT4_BLOCK_VOLUME layout4_block_volume L LA LAY LAYO BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 2 no 0 9 0 0 0 0 1 += 0x3 = = = = = BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 2 no 0 2 0 0 0 0 1 +}; }; }; } }; }; }; BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 1 2 ; 1 1 0 0 0 0 1 +This data this T Th Thi This BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 2 . 1 10 0 0 0 0 1 +server advertises server s se ser serv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 2 no 0 8 0 0 0 0 1 +fs_layout_type file fs_layout_type f fs fs_ fs_l BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 2 (..). 5 10 0 0 0 0 1 +for layouts for f fo for for BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 2 , 1 9 0 0 0 0 1 +layouts in layouts l la lay layo BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 2 --. 3 6 0 0 0 0 1 +The layouttype4 the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 4 . 1 8 0 0 0 0 1 +represented by represented r re rep repr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 4 . 1 10 0 0 0 0 1 +is reserved. is i is is is BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 4 .- 2 9 0 0 0 0 1 +globally unique globally g gl glo glob BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 4 no 0 9 0 0 0 0 1 +Section 22.5; section S Se Sec Sect BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 4 .;. 3 9 0 0 0 0 1 +0x80000000-0xFFFFFFFF are 0x80000000-0xffffffff 0 0x 0x8 0x80 BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 4 -. 2 9 0 0 0 0 1 +The LAYOUT4_NFSV4_1_FILES the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 6 . 1 10 0 0 0 0 1 +layout type, layout l la lay layo BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 6 ,,. 3 8 0 0 0 0 1 +LAYOUT4_OSD2_OBJECTS enumeration layout4_osd2_objects L LA LAY LAYO BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 6 , 1 10 0 0 0 0 1 +defined in defined d de def defi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 6 [],., 5 9 0 0 0 0 1 +enumeration specifies enumeration e en enu enum BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 6 /, 2 9 0 0 0 0 1 +[44], is [44], [ [4 [44 [44] BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 6 [],. 4 3 0 0 0 0 1 +3.3.14. deviceid4 3.3.14. 3 3. 3.3 3.3. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 9 ... 3 10 0 0 0 0 1 +const NFS4_DEVICEID4_SIZE const c co con cons BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 9 ; 1 10 0 0 0 0 1 +typedef opaque typedef t ty typ type BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 9 []; 3 10 0 0 0 0 1 +Layout information layout L La Lay Layo BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 9 no 0 10 0 0 0 0 1 +through a through t th thr thro BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 9 . 1 8 0 0 0 0 1 +obtained with obtained o ob obt obta BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 9 . 1 8 0 0 0 0 1 +guaranteed to guaranteed g gu gua guar BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 9 . 1 9 0 0 0 0 1 +is unique is i is is is BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 9 ... 3 9 0 0 0 0 1 +more details. more m mo mor more BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 9 . 1 2 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 1 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 11 , 1 10 0 0 0 0 0 +[Page 93] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 1 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 1 0 no 0 4 0 0 0 0 1 +3.3.15. device_addr4 3.3.15. 3 3. 3.3 3.3. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 0 ... 3 10 0 0 0 0 1 +struct device_addr4 struct s st str stru BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 0 no 0 10 0 0 0 0 1 +layouttype4 layouttype4 layouttype4 l la lay layo BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 0 no 0 5 0 0 0 0 1 +da_layout_type; da_layout_type; da_layout_type; d da da_ da_l BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 0 ; 1 7 0 0 0 0 1 +opaque opaque opaque o op opa opaq BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 0 no 0 3 0 0 0 0 1 +da_addr_body<>; da_addr_body<>; da_addr_body<>; d da da_ da_a BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 0 ; 1 7 0 0 0 0 1 +}; }; }; } }; }; }; BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 1 0 ; 1 1 0 0 0 0 1 +The device the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 1 no 0 10 0 0 0 0 1 +storage device. storage s st sto stor BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 1 . 1 9 0 0 0 0 1 +types to types t ty typ type BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 1 . 1 9 0 0 0 0 1 +opaque da_addr_body opaque o op opa opaq BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 1 no 0 9 0 0 0 0 1 +da_layout_type field. da_layout_type d da da_ da_l BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 1 . 1 3 0 0 0 0 1 +This document this T Th Thi This BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 3 . 1 10 0 0 0 0 1 +(see Section (see ( (s (se (see BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 3 (.), 4 9 0 0 0 0 1 +address and address a ad add addr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 3 . 1 9 0 0 0 0 1 +communicate with communicate c co com comm BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 3 ., 2 9 0 0 0 0 1 +for other for f fo for for BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 3 .- 2 8 0 0 0 0 1 +storage devices storage s st sto stor BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 3 (.., 4 9 0 0 0 0 1 +System Interface system S Sy Sys Syst BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 3 ()) 3 8 0 0 0 0 1 +respective layout respective r re res resp BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 3 . 1 4 0 0 0 0 1 +3.3.16. layout_content4 3.3.16. 3 3. 3.3 3.3. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 6 ... 3 10 0 0 0 0 1 +struct layout_content4 struct s st str stru BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 6 no 0 10 0 0 0 0 1 +layouttype4 loc_type; layouttype4 l la lay layo BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 6 ; 1 8 0 0 0 0 1 +opaque opaque opaque o op opa opaq BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 6 no 0 2 0 0 0 0 1 +loc_body<>; loc_body<>; loc_body<>; l lo loc loc_ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 6 ; 1 4 0 0 0 0 1 +}; }; }; } }; }; }; BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 1 6 ; 1 1 0 0 0 0 1 +The loc_body the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 7 no 0 8 0 0 0 0 1 +(loc_type). This (loc_type). ( (l (lo (loc BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 7 ().. 4 10 0 0 0 0 1 +layout type; layout l la lay layo BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 7 ;.. 3 7 0 0 0 0 1 +3.3.17. layout4 3.3.17. 3 3. 3.3 3.3. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 8 ... 3 10 0 0 0 0 1 +struct layout4 struct s st str stru BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 8 no 0 10 0 0 0 0 1 +offset4 offset4 offset4 o of off offs BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 8 no 0 4 0 0 0 0 1 +lo_offset; lo_offset; lo_offset; l lo lo_ lo_o BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 8 ; 1 6 0 0 0 0 1 +length4 length4 length4 l le len leng BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 8 no 0 4 0 0 0 0 1 +lo_length; lo_length; lo_length; l lo lo_ lo_l BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 8 ; 1 6 0 0 0 0 1 +layoutiomode4 layoutiomode4 layoutiomode4 l la lay layo BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 8 no 0 8 0 0 0 0 1 +lo_iomode; lo_iomode; lo_iomode; l lo lo_ lo_i BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 8 ; 1 6 0 0 0 0 1 +layout_content4 layout_content4 layout_content4 l la lay layo BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 8 no 0 9 0 0 0 0 1 +lo_content; lo_content; lo_content; l lo lo_ lo_c BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 8 ; 1 7 0 0 0 0 1 +}; }; }; } }; }; }; BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 1 8 ; 1 1 0 0 0 0 1 +The layout4 the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 9 . 1 9 0 0 0 0 1 +specific data specific s sp spe spec BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 9 .- 2 9 0 0 0 0 1 +dividable, the dividable, d di div divi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 9 ,', 3 10 0 0 0 0 1 +the client the t th the the BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 9 ,,. 3 8 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 1 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 11 , 1 10 0 0 0 0 0 +[Page 94] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 1 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 1 0 no 0 4 0 0 0 0 1 +3.3.18. layoutupdate4 3.3.18. 3 3. 3.3 3.3. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 0 ... 3 10 0 0 0 0 1 +struct layoutupdate4 struct s st str stru BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 0 no 0 10 0 0 0 0 1 +layouttype4 layouttype4 layouttype4 l la lay layo BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 0 no 0 5 0 0 0 0 1 +lou_type; lou_type; lou_type; l lo lou lou_ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 0 ; 1 4 0 0 0 0 1 +opaque opaque opaque o op opa opaq BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 0 no 0 3 0 0 0 0 1 +lou_body<>; lou_body<>; lou_body<>; l lo lou lou_ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 0 ; 1 5 0 0 0 0 1 +}; }; }; } }; }; }; BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 1 0 ; 1 1 0 0 0 0 1 +The layoutupdate4 the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 1 no 0 9 0 0 0 0 1 +layout information layout l la lay layo BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 1 no 0 9 0 0 0 0 1 +(Section 18.42) (section ( (S (Se (Sec BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 1 (.). 4 9 0 0 0 0 1 +layout type layout l la lay layo BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 1 () 2 9 0 0 0 0 1 +metadata server. metadata m me met meta BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 1 .,/, 4 9 0 0 0 0 1 +could include could c co cou coul BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 1 . 1 9 0 0 0 0 1 +contents of contents c co con cont BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 1 no 0 10 0 0 0 0 1 +type. The type. t ty typ type BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 1 ..-; 4 9 0 0 0 0 1 +lou_type is lou_type l lo lou lou_ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 1 , 1 9 0 0 0 0 1 +zero length. zero z ze zer zero BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 1 . 1 1 0 0 0 0 1 +3.3.19. layouthint4 3.3.19. 3 3. 3.3 3.3. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 4 ... 3 10 0 0 0 0 1 +struct layouthint4 struct s st str stru BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 4 no 0 10 0 0 0 0 1 +layouttype4 layouttype4 layouttype4 l la lay layo BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 4 no 0 5 0 0 0 0 1 +loh_type; loh_type; loh_type; l lo loh loh_ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 4 ; 1 4 0 0 0 0 1 +opaque opaque opaque o op opa opaq BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 4 no 0 3 0 0 0 0 1 +loh_body<>; loh_body<>; loh_body<>; l lo loh loh_ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 4 ; 1 5 0 0 0 0 1 +}; }; }; } }; }; }; BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 1 4 ; 1 1 0 0 0 0 1 +The layouthint4 the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 5 no 0 9 0 0 0 0 1 +about the about a ab abo abou BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 5 . 1 10 0 0 0 0 1 +It is it I It It It BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 5 no 0 9 0 0 0 0 1 +in Section in i in in in BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 1 5 ... 3 9 0 0 0 0 1 +selectively ignore selectively s se sel sele BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 5 . 1 9 0 0 0 0 1 +provided at provided p pr pro prov BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 5 no 0 9 0 0 0 0 1 +OPEN. The open. O OP OPE OPEN BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 1 5 . 1 8 0 0 0 0 1 +(loh_type). The (loh_type). ( (l (lo (loh BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 5 ()..- 5 7 0 0 0 0 1 +nfsv4_1_file_layouthint4 data nfsv4_1_file_layouthint4 n nf nfs nfsv BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 5 .. 2 9 0 0 0 0 1 +3.3.20. layoutiomode4 3.3.20. 3 3. 3.3 3.3. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 8 ... 3 10 0 0 0 0 1 +enum layoutiomode4 enum e en enu enum BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 9 no 0 10 0 0 0 0 1 +LAYOUTIOMODE4_READ LAYOUTIOMODE4_READ layoutiomode4_read L LA LAY LAYO BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 9 no 0 9 0 0 0 0 1 += 1, = = = = = BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 9 , 1 2 0 0 0 0 1 +LAYOUTIOMODE4_RW LAYOUTIOMODE4_RW layoutiomode4_rw L LA LAY LAYO BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 9 no 0 8 0 0 0 0 1 += 2, = = = = = BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 9 , 1 2 0 0 0 0 1 +LAYOUTIOMODE4_ANY LAYOUTIOMODE4_ANY layoutiomode4_any L LA LAY LAYO BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 9 no 0 8 0 0 0 0 1 += 3 = = = = = BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 9 no 0 1 0 0 0 0 1 +}; }; }; } }; }; }; BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 1 9 ; 1 1 0 0 0 0 1 +The iomode the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 9 no 0 10 0 0 0 0 1 +read and read r re rea read BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 1 9 . 1 8 0 0 0 0 1 +LAYOUTIOMODE4_ANY iomode layoutiomode4_any L LA LAY LAYO BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 9 no 0 9 0 0 0 0 1 +LAYOUTGET operation, layoutget L LA LAY LAYO BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 1 9 , 1 8 0 0 0 0 1 +LAYOUTRETURN and layoutreturn L LA LAY LAYO BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 1 9 . 1 9 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 1 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 11 , 1 10 0 0 0 0 0 +[Page 95] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 1 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 1 0 no 0 4 0 0 0 0 1 +iomode specifies iomode i io iom iomo BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 0 no 0 10 0 0 0 0 1 +and LAYOUTIOMODE4_RW and a an and and BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 0 , 1 8 0 0 0 0 1 +respectively. The respectively. r re res resp BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 0 .' 2 10 0 0 0 0 1 +the layout the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 0 ./ 2 9 0 0 0 0 1 +accesses against accesses a ac acc acce BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 0 . 1 8 0 0 0 0 1 +3.3.21. nfs_impl_id4 3.3.21. 3 3. 3.3 3.3. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 2 ... 3 10 0 0 0 0 1 +struct nfs_impl_id4 struct s st str stru BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 2 no 0 10 0 0 0 0 1 +utf8str_cis utf8str_cis utf8str_cis u ut utf utf8 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 2 no 0 5 0 0 0 0 1 +nii_domain; nii_domain; nii_domain; n ni nii nii_ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 2 ; 1 5 0 0 0 0 1 +utf8str_cs utf8str_cs utf8str_cs u ut utf utf8 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 2 no 0 5 0 0 0 0 1 +nii_name; nii_name; nii_name; n ni nii nii_ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 2 ; 1 4 0 0 0 0 1 +nfstime4 nfstime4 nfstime4 n nf nfs nfst BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 2 no 0 4 0 0 0 0 1 +nii_date; nii_date; nii_date; n ni nii nii_ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 2 ; 1 4 0 0 0 0 1 +}; }; }; } }; }; }; BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 1 2 ; 1 1 0 0 0 0 1 +This data this T Th Thi This BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 3 no 0 9 0 0 0 0 1 +details. The details. d de det deta BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 3 . 1 9 0 0 0 0 1 +implementor is implementor i im imp impl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 3 . 1 10 0 0 0 0 1 +the implementation the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 3 . 1 9 0 0 0 0 1 +that the that t th tha that BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 3 , 1 9 0 0 0 0 1 +machine platforms, machine m ma mac mach BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 3 ,,,. 4 8 0 0 0 0 1 +nii_date field nii_date n ni nii nii_ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 3 no 0 9 0 0 0 0 1 +published or published p pu pub publ BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 3 . 1 2 0 0 0 0 1 +3.3.22. threshold_item4 3.3.22. 3 3. 3.3 3.3. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 6 ... 3 10 0 0 0 0 1 +struct threshold_item4 struct s st str stru BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 6 no 0 10 0 0 0 0 1 +layouttype4 layouttype4 layouttype4 l la lay layo BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 6 no 0 4 0 0 0 0 1 +thi_layout_type; thi_layout_type; thi_layout_type; t th thi thi_ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 6 ; 1 6 0 0 0 0 1 +bitmap4 bitmap4 bitmap4 b bi bit bitm BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 6 no 0 3 0 0 0 0 1 +thi_hintset; thi_hintset; thi_hintset; t th thi thi_ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 6 ; 1 5 0 0 0 0 1 +opaque opaque opaque o op opa opaq BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 6 no 0 2 0 0 0 0 1 +thi_hintlist<>; thi_hintlist<>; thi_hintlist<>; t th thi thi_ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 6 ; 1 6 0 0 0 0 1 +}; }; }; } }; }; }; BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 1 6 ; 1 1 0 0 0 0 1 +This data this T Th Thi This BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 7 no 0 10 0 0 0 0 1 +helping the helping h he hel help BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 7 / 1 10 0 0 0 0 1 +the metadata the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 7 . 1 8 0 0 0 0 1 +consists of consists c co con cons BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 7 (),() 5 10 0 0 0 0 1 +describing the describing d de des desc BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 7 ( 1 9 0 0 0 0 1 +based on based b ba bas base BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 7 ),() 4 9 0 0 0 0 1 +content is content c co con cont BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 7 . 1 9 0 0 0 0 1 +attribute for attribute a at att attr BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 7 . 1 4 0 0 0 0 1 +The thi_hintset the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 11 : 1 10 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 1 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 11 , 1 10 0 0 0 0 0 +[Page 96] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 1 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 1 0 no 0 4 0 0 0 0 1 ++-------------------------+---+---------+---------------------------+ +-------------------------+---+---------+---------------------------+ +-------------------------+---+---------+---------------------------+ + +- +-- +--- BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 1 0 ---------------------------------------------------------------- 64 10 0 0 0 0 1 +| name | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 no 0 1 0 0 0 0 1 +| # | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 # 1 1 0 0 0 0 1 +| Description | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 no 0 2 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 no 0 0 0 0 0 0 1 +| Type | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 no 0 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 no 0 0 0 0 0 0 1 ++-------------------------+---+---------+---------------------------+ +-------------------------+---+---------+---------------------------+ +-------------------------+---+---------+---------------------------+ + +- +-- +--- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 1 0 ---------------------------------------------------------------- 64 10 0 0 0 0 1 +| threshold4_read_size | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 no 0 3 0 0 0 0 1 +| 0 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 ' 1 5 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 no 0 0 0 0 0 0 1 +| less | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 no 0 3 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 no 0 0 0 0 0 0 1 +| threshold4_read_size, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 , 1 3 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 no 0 0 0 0 0 0 1 +| then | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 no 0 3 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 no 0 0 0 0 0 0 1 +| that | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 no 0 4 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 no 0 0 0 0 0 0 1 +| the | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 no 0 4 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 no 0 0 0 0 0 0 1 +| not | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 . 1 3 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 no 0 0 0 0 0 0 1 +| threshold4_write_size | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 no 0 3 0 0 0 0 1 +| 1 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 ' 1 5 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 no 0 0 0 0 0 0 1 +| less | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 no 0 3 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 no 0 0 0 0 0 0 1 +| threshold4_write_size, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 , 1 3 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 no 0 0 0 0 0 0 1 +| then | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 no 0 3 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 no 0 0 0 0 0 0 1 +| that | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 no 0 4 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 no 0 0 0 0 0 0 1 +| the | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 no 0 4 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 no 0 0 0 0 0 0 1 +| not | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 . 1 3 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 no 0 0 0 0 0 0 1 +| threshold4_read_iosize | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 / 1 9 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 no 0 0 0 0 0 0 1 +| this | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 , 1 3 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 no 0 0 0 0 0 0 1 +| RECOMMENDED | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 no 0 4 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 no 0 0 0 0 0 0 1 +| through | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 . 1 2 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 no 0 0 0 0 0 0 1 +| threshold4_write_iosize | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 / 1 10 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 no 0 0 0 0 0 0 1 +| this | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 , 1 3 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 no 0 0 0 0 0 0 1 +| RECOMMENDED | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 no 0 4 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 no 0 0 0 0 0 0 1 +| through | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 . 1 2 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 no 0 0 0 0 0 0 1 ++-------------------------+---+---------+---------------------------+ +-------------------------+---+---------+---------------------------+ +-------------------------+---+---------+---------------------------+ + +- +-- +--- BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 1 0 ---------------------------------------------------------------- 64 10 0 0 0 0 1 +3.3.23. mdsthreshold4 3.3.23. 3 3. 3.3 3.3. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 9 ... 3 10 0 0 0 0 1 +struct mdsthreshold4 struct s st str stru BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 9 no 0 7 0 0 0 0 1 +threshold_item4 mth_hints<>; threshold_item4 t th thr thre BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 9 ; 1 10 0 0 0 0 1 +}; }; }; } }; }; }; BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 1 9 ; 1 1 0 0 0 0 1 +This data this T Th Thi This BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 9 no 0 7 0 0 0 0 1 +threshold_item4, each threshold_item4, t th thr thre BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 9 ,. 2 10 0 0 0 0 1 +An array an A An An An BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 1 9 no 0 9 0 0 0 0 1 +types for types t ty typ type BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 9 . 1 3 0 0 0 0 1 +4. Filehandles 4. 4 4. 4. 4. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 10 . 1 10 0 0 0 0 1 +The filehandle the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 10 - 1 10 0 0 0 0 1 +for a for f fo for for BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 10 . 1 9 0 0 0 0 1 +to the to t to to to BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 10 ., 2 9 0 0 0 0 1 +the filehandle the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 10 no 0 9 0 0 0 0 1 +object. object. object. o ob obj obje BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 10 . 1 1 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 2 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 11 , 1 10 0 0 0 0 0 +[Page 97] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 2 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 2 0 no 0 4 0 0 0 0 1 +4.1. Obtaining 4.1. 4 4. 4.1 4.1. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 0 .. 2 10 0 0 0 0 1 +The operations the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 0 no 0 9 0 0 0 0 1 +more filehandles. more m mo mor more BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 0 ., 2 8 0 0 0 0 1 +initiate communication initiate i in ini init BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 0 .( 2 9 0 0 0 0 1 +1813 [34]), 1813 1 18 181 1813 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 0 0 0 0 1 0 0 0 2 0 []), 4 9 0 0 0 0 1 +filehandle. The filehandle. f fi fil file BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 0 .,, 3 9 0 0 0 0 1 +the mechanism the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 0 - 1 10 0 0 0 0 1 +filehandle, which filehandle, f fi fil file BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 0 ,. 2 8 0 0 0 0 1 +The MOUNT the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 2 no 0 10 0 0 0 0 1 +via firewalls. via v vi via via BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 2 . 1 8 0 0 0 0 1 +filehandle was filehandle f fi fil file BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 2 [][]. 5 9 0 0 0 0 1 +the use the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 2 no 0 9 0 0 0 0 1 +operation in operation o op ope oper BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 2 , 1 9 0 0 0 0 1 +MOUNT protocol mount M MO MOU MOUN BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 1 1 0 0 0 0 0 2 2 no 0 9 0 0 0 0 1 +client and client c cl cli clie BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 2 . 1 2 0 0 0 0 1 +Therefore, the therefore, T Th The Ther BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 4 ,. 2 10 0 0 0 0 1 +for translation for f fo for for BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 4 -. 2 9 0 0 0 0 1 +special filehandles special s sp spe spec BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 4 no 0 9 0 0 0 0 1 +client. client. client. c cl cli clie BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 4 . 1 1 0 0 0 0 1 +4.1.1. Root 4.1.1. 4 4. 4.1 4.1. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 5 ... 3 10 0 0 0 0 1 +The first the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 5 . 1 9 0 0 0 0 1 +ROOT filehandle root R RO ROO ROOT BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 1 1 0 0 0 0 0 2 5 "" 2 10 0 0 0 0 1 +at the at a at at at BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 5 . 1 8 0 0 0 0 1 +filehandle by filehandle f fi fil file BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 5 . 1 9 0 0 0 0 1 +operation instructs operation o op ope oper BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 5 "" 2 10 0 0 0 0 1 +ROOT of root R RO ROO ROOT BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 1 1 0 0 0 0 0 2 5 '. 2 9 0 0 0 0 1 +used, the used, u us use used BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 5 ,' 2 9 0 0 0 0 1 +tree with tree t tr tre tree BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 5 . 1 9 0 0 0 0 1 +namespace is namespace n na nam name BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 5 . 1 3 0 0 0 0 1 +4.1.2. Public 4.1.2. 4 4. 4.1 4.1. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 8 ... 3 10 0 0 0 0 1 +The second the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 8 . 1 9 0 0 0 0 1 +ROOT filehandle, root R RO ROO ROOT BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 1 1 0 0 0 0 0 2 8 , 1 9 0 0 0 0 1 +arbitrary file arbitrary a ar arb arbi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 8 . 1 8 0 0 0 0 1 +responsible for responsible r re res resp BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 8 . 1 9 0 0 0 0 1 +and the and a an and and BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 8 . 1 8 0 0 0 0 1 +However, it however, H Ho How Howe BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 8 , 1 9 0 0 0 0 1 +the policies the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 8 no 0 10 0 0 0 0 1 +PUBLIC filehandle public P PU PUB PUBL BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 2 8 . 1 9 0 0 0 0 1 +make any make m ma mak make BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 8 . 1 9 0 0 0 0 1 +filehandle via filehandle f fi fil file BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 8 . 1 5 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 2 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 11 , 1 10 0 0 0 0 0 +[Page 98] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 2 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 2 0 no 0 4 0 0 0 0 1 +4.2. Filehandle 4.2. 4 4. 4.2 4.2. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 0 .. 2 10 0 0 0 0 1 +In the in I In In In BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 2 0 , 1 10 0 0 0 0 1 +set of set s se set set BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 0 ."" 3 9 0 0 0 0 1 +NFSv4.1. The nfsv4.1. N NF NFS NFSv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 0 .. 2 9 0 0 0 0 1 +before. A before. b be bef befo BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 0 .. 2 8 0 0 0 0 1 +"volatile" filehandle, "volatile" " "v "vo "vol BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 0 "", 3 9 0 0 0 0 1 +environments. environments. environments. e en env envi BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 0 . 1 2 0 0 0 0 1 +The volatile the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 2 no 0 8 0 0 0 0 1 +functionality or functionality f fu fun func BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 2 no 0 8 0 0 0 0 1 +implementation of implementation i im imp impl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 2 . 1 9 0 0 0 0 1 +environments do environments e en env envi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 2 -- 2 10 0 0 0 0 1 +used to used u us use used BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 2 . 1 9 0 0 0 0 1 +file system file f fi fil file BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 2 ' 1 10 0 0 0 0 1 +programming interfaces programming p pr pro prog BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 2 no 0 8 0 0 0 0 1 +invariant. Volatile invariant. i in inv inva BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 2 . 1 9 0 0 0 0 1 +server functionality server s se ser serv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 2 no 0 9 0 0 0 0 1 +system reorganization system s sy sys syst BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 2 ., 2 9 0 0 0 0 1 +increases the increases i in inc incr BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 2 . 1 7 0 0 0 0 1 +Since the since S Si Sin Sinc BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 4 no 0 8 0 0 0 0 1 +filehandles differently, filehandles f fi fil file BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 4 , 1 10 0 0 0 0 1 +by the by b by by by BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 4 no 0 10 0 0 0 0 1 +server. server. server. s se ser serv BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 4 . 1 1 0 0 0 0 1 +4.2.1. General 4.2.1. 4 4. 4.2 4.2. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 5 ... 3 10 0 0 0 0 1 +The filehandle the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 6 no 0 9 0 0 0 0 1 +distinguish an distinguish d di dis dist BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 6 ., 2 9 0 0 0 0 1 +opaque. The opaque. o op opa opaq BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 6 . 1 10 0 0 0 0 1 +can compare can c ca can can BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 6 no 0 9 0 0 0 0 1 +doing a doing d do doi doin BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 6 --., 4 8 0 0 0 0 1 +otherwise interpret otherwise o ot oth othe BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 6 . 1 9 0 0 0 0 1 +from the from f fr fro from BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 6 ,. 2 9 0 0 0 0 1 +Servers SHOULD servers S Se Ser Serv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 2 6 -- 2 9 0 0 0 0 1 +filehandles and filehandles f fi fil file BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 6 ,. 2 9 0 0 0 0 1 +filehandle comparisons filehandle f fi fil file BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 6 , 1 9 0 0 0 0 1 +behavior. All behavior. b be beh beha BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 6 . 1 10 0 0 0 0 1 +cannot be cannot c ca can cann BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 6 no 0 9 0 0 0 0 1 +and in and a an and and BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 6 , 1 10 0 0 0 0 1 +incorrect behavior. incorrect i in inc inco BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 6 . 1 9 0 0 0 0 1 +comparison in comparison c co com comp BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 6 no 0 8 0 0 0 0 1 +Section 10.3.4. section S Se Sec Sect BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 6 ... 3 2 0 0 0 0 1 +As an as A As As As BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 10 , 1 8 0 0 0 0 1 +traversed at traversed t tr tra trav BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 10 , 1 10 0 0 0 0 1 +server SHOULD server s se ser serv BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 10 . 1 9 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 2 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 11 , 1 10 0 0 0 0 0 +[Page 99] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 2 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 2 0 no 0 4 0 0 0 0 1 +occur if occur o oc occ occu BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 0 ([]) 4 10 0 0 0 0 1 +refer to refer r re ref refe BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 0 . 1 9 0 0 0 0 1 +example, if example, e ex exa exam BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 0 ,//////, 8 9 0 0 0 0 1 +server SHOULD server s se ser serv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 0 ' 1 8 0 0 0 0 1 +traversals. traversals. traversals. t tr tra trav BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 0 . 1 1 0 0 0 0 1 +4.2.2. Persistent 4.2.2. 4 4. 4.2 4.2. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 1 ... 3 10 0 0 0 0 1 +A persistent a A A A A BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 1 0 0 0 0 0 2 1 no 0 10 0 0 0 0 1 +lifetime of lifetime l li lif life BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 1 . 1 9 0 0 0 0 1 +server creates server s se ser serv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 1 , 1 10 0 0 0 0 1 +MUST accept must M MU MUS MUST BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 2 1 no 0 10 0 0 0 0 1 +the object. the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 1 ., 2 9 0 0 0 0 1 +same filehandle same s sa sam same BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 1 ' 1 8 0 0 0 0 1 +instantiation. Similarly, instantiation. i in ins inst BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 1 .,, 3 9 0 0 0 0 1 +NFS server nfs N NF NFS NFS BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 2 1 . 1 9 0 0 0 0 1 +The persistent the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 4 no 0 9 0 0 0 0 1 +file system file f fi fil file BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 4 . 1 9 0 0 0 0 1 +persistent filehandle persistent p pe per pers BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 4 , 1 10 0 0 0 0 1 +an error an a an an an BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 2 4 . 1 9 0 0 0 0 1 +file system file f fi fil file BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 4 . 1 9 0 0 0 0 1 +system may system s sy sys syst BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 4 no 0 10 0 0 0 0 1 +media is media m me med medi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 4 no 0 9 0 0 0 0 1 +whole has whole w wh who whol BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 4 no 0 9 0 0 0 0 1 +from the from f fr fro from BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 4 '(..,). 7 9 0 0 0 0 1 +4.2.3. Volatile 4.2.3. 4 4. 4.2 4.2. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 7 ... 3 10 0 0 0 0 1 +A volatile a A A A A BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 1 0 0 0 0 0 2 7 no 0 8 0 0 0 0 1 +characteristics of characteristics c ch cha char BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 7 . 1 10 0 0 0 0 1 +that a that t th tha that BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 7 no 0 9 0 0 0 0 1 +points in points p po poi poin BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 7 . 1 9 0 0 0 0 1 +volatile filehandle volatile v vo vol vola BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 7 , 1 9 0 0 0 0 1 +server should server s se ser serv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 7 ( 1 10 0 0 0 0 1 +persistent filehandles). persistent p pe per pers BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 7 ). 2 8 0 0 0 0 1 +determines that determines d de det dete BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 7 , 1 9 0 0 0 0 1 +should return should s sh sho shou BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 7 . 1 6 0 0 0 0 1 +The REQUIRED the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 9 "" 2 10 0 0 0 0 1 +determine what determine d de det dete BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 9 no 0 9 0 0 0 0 1 +particular file particular p pa par part BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 9 . 1 9 0 0 0 0 1 +following values: following f fo fol foll BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 9 : 1 2 0 0 0 0 1 +FH4_PERSISTENT The fh4_persistent F FH FH4 FH4_ BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 10 no 0 9 0 0 0 0 1 +persistent filehandle, persistent p pe per pers BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 10 , 1 10 0 0 0 0 1 +from the from f fr fro from BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 10 . 1 7 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 2 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 11 , 1 10 0 0 0 0 0 +[Page 100] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 2 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 2 0 no 0 4 0 0 0 0 1 +NFS4ERR_FHEXPIRED for nfs4err_fhexpired N NF NFS NFS4 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 0 . 1 10 0 0 0 0 1 +as a as a as as as BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 0 . 1 9 0 0 0 0 1 +FH4_VOLATILE_ANY The fh4_volatile_any F FH FH4 FH4_ BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 1 , 1 10 0 0 0 0 1 +specifically excluded specifically s sp spe spec BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 1 (..,). 6 8 0 0 0 0 1 +FH4_NOEXPIRE_WITH_OPEN May fh4_noexpire_with_open F FH FH4 FH4_ BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 1 . 1 10 0 0 0 0 1 +If this if I If If If BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 1 , 1 8 0 0 0 0 1 +qualified to qualified q qu qua qual BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 1 no 0 9 0 0 0 0 1 +open. open. open. o op ope open BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 1 . 1 0 0 0 0 0 1 +FH4_VOL_MIGRATION The fh4_vol_migration F FH FH4 FH4_ BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 2 no 0 10 0 0 0 0 1 +system transition system s sy sys syst BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 2 (), 3 9 0 0 0 0 1 +which the which w wh whi whic BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 2 no 0 9 0 0 0 0 1 +class information class c cl cla clas BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 2 . 1 9 0 0 0 0 1 +this bit this t th thi this BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 2 , 1 9 0 0 0 0 1 +information should information i in inf info BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 2 no 0 9 0 0 0 0 1 +system transitions. system s sy sys syst BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 2 . 1 2 0 0 0 0 1 +FH4_VOL_RENAME The fh4_vol_rename F FH FH4 FH4_ BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 4 . 1 9 0 0 0 0 1 +includes a includes i in inc incl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 4 no 0 9 0 0 0 0 1 +other client. other o ot oth othe BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 4 .,. 3 10 0 0 0 0 1 +Servers that servers S Se Ser Serv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 2 5 no 0 10 0 0 0 0 1 +require special require r re req requ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 5 . 1 9 0 0 0 0 1 +This situation this T Th Thi This BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 5 no 0 9 0 0 0 0 1 +set, if set, s se set set, BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 5 , 1 9 0 0 0 0 1 +set, or set, s se set set, BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 5 ,-- 3 9 0 0 0 0 1 +different handle different d di dif diff BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 5 ., 2 9 0 0 0 0 1 +RENAME or rename R RE REN RENA BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 2 5 no 0 8 0 0 0 0 1 +components leading components c co com comp BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 5 ., 2 9 0 0 0 0 1 +deny all deny d de den deny BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 2 5 , 1 10 0 0 0 0 1 +to make to t to to to BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 5 no 0 9 0 0 0 0 1 +expired do expired e ex exp expi BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 5 . 1 6 0 0 0 0 1 +Volatile filehandles volatile V Vo Vol Vola BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 10 no 0 9 0 0 0 0 1 +the pseudo the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 10 .. 2 10 0 0 0 0 1 +a discussion a a a a a BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 1 0 0 0 0 0 2 10 . 1 3 0 0 0 0 1 +4.3. One 4.3. 4 4. 4.3 4.3. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 10 .. 2 10 0 0 0 0 1 +A volatile a A A A A BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 1 0 0 0 0 0 2 11 ,,: 3 10 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 2 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 11 , 1 10 0 0 0 0 0 +[Page 101] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 2 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 2 0 no 0 4 0 0 0 0 1 +[volatile bit [volatile [ [v [vo [vol BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 0 [] 2 10 0 0 0 0 1 +o slot o o o o o BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 9 0 0 0 0 1 +o generation o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 2 1 / 1 10 0 0 0 0 1 +slot slot slot s sl slo slot BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 1 no 0 0 0 0 0 0 1 +When the when W Wh Whe When BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 1 , 1 10 0 0 0 0 1 +following checks, following f fo fol foll BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 1 , 1 9 0 0 0 0 1 +has passed. has h ha has has BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 1 . 1 9 0 0 0 0 1 +boot time, boot b bo boo boot BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 1 ,., 3 10 0 0 0 0 1 +NFS4ERR_BADHANDLE. If nfs4err_badhandle. N NF NFS NFS4 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 1 ., 2 9 0 0 0 0 1 +NFS4ERR_FHEXPIRED. NFS4ERR_FHEXPIRED. nfs4err_fhexpired. N NF NFS NFS4 BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 1 . 1 2 0 0 0 0 1 +When the when W Wh Whe When BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 3 ,(). 4 10 0 0 0 0 1 +If the if I If If If BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 3 , 1 10 0 0 0 0 1 +different structure different d di dif diff BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 3 . 1 5 0 0 0 0 1 +4.4. Client 4.4. 4 4. 4.4 4.4. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 4 .. 2 10 0 0 0 0 1 +If possible, if I If If If BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 4 , 1 9 0 0 0 0 1 +NFS4ERR_FHEXPIRED error. nfs4err_fhexpired N NF NFS NFS4 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 4 . 1 9 0 0 0 0 1 +responsibility so responsibility r re res resp BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 4 no 0 9 0 0 0 0 1 +expiration of expiration e ex exp expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 4 . 1 8 0 0 0 0 1 +persistent filehandles, persistent p pe per pers BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 4 , 1 10 0 0 0 0 1 +steps. steps. steps. s st ste step BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 4 . 1 1 0 0 0 0 1 +For volatile for F Fo For For BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 5 , 1 10 0 0 0 0 1 +the component the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 5 no 0 9 0 0 0 0 1 +object in object o ob obj obje BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 5 ., 2 9 0 0 0 0 1 +recover by recover r re rec reco BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 5 no 0 9 0 0 0 0 1 +available or available a av ava avai BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 5 ' 1 9 0 0 0 0 1 +namespace. namespace. namespace. n na nam name BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 5 . 1 1 0 0 0 0 1 +If the if I If If If BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 7 no 0 10 0 0 0 0 1 +from the from f fr fro from BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 7 , 1 9 0 0 0 0 1 +recover from recover r re rec reco BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 7 . 1 5 0 0 0 0 1 +It is it I It It It BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 8 no 0 10 0 0 0 0 1 +has been has h ha has has BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 8 ., 2 9 0 0 0 0 1 +it is it i it it it BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 8 . 1 9 0 0 0 0 1 +However, in however, H Ho How Howe BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 8 , 1 9 0 0 0 0 1 +the file the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 8 , 1 9 0 0 0 0 1 +recover. The recover. r re rec reco BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 8 . 1 9 0 0 0 0 1 +processing of processing p pr pro proc BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 8 . 1 9 0 0 0 0 1 +new filehandle new n ne new new BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 8 . 1 9 0 0 0 0 1 +the COMPOUND the t th the the BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 8 : 1 9 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 2 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 11 , 1 10 0 0 0 0 0 +[Page 102] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 2 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 2 0 no 0 4 0 0 0 0 1 +RENAME A rename R RE REN RENA BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 2 0 no 0 10 0 0 0 0 1 +LOOKUP B lookup L LO LOO LOOK BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 2 0 no 0 8 0 0 0 0 1 +GETFH GETFH getfh G GE GET GETF BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 2 0 no 0 5 0 0 0 0 1 +Note that note N No Not Note BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 0 . 1 10 0 0 0 0 1 +example only example e ex exa exam BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 0 no 0 9 0 0 0 0 1 +filehandle. filehandle. filehandle. f fi fil file BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 0 . 1 1 0 0 0 0 1 +5. File 5. 5 5. 5. 5. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 1 . 1 10 0 0 0 0 1 +To meet to T To To To BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 1 no 0 8 0 0 0 0 1 +interoperability with interoperability i in int inte BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 1 -, 2 9 0 0 0 0 1 +handled in handled h ha han hand BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 1 . 1 9 0 0 0 0 1 +fixed list fixed f fi fix fixe BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 1 no 0 10 0 0 0 0 1 +support or support s su sup supp BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 2 1 . 1 9 0 0 0 0 1 +new needs new n ne new new BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 1 -. 2 9 0 0 0 0 1 +the NFSv4.1 the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 1 ., 2 10 0 0 0 0 1 +server supports server s se ser serv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 1 no 0 9 0 0 0 0 1 +attributes (or attributes a at att attr BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 1 (). 3 4 0 0 0 0 1 +To this to T To To To BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 3 ,:, 3 9 0 0 0 0 1 +RECOMMENDED, and recommended, R RE REC RECO BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 2 3 ,. 2 10 0 0 0 0 1 +supported in supported s su sup supp BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 3 .- 2 9 0 0 0 0 1 +encoding and encoding e en enc enco BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 3 . 1 10 0 0 0 0 1 +a bit a a a a a BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 1 0 0 0 0 0 2 3 ; 1 9 0 0 0 0 1 +response includes response r re res resp BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 3 no 0 10 0 0 0 0 1 +in the in i in in in BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 2 3 . 1 10 0 0 0 0 1 +to the to t to to to BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 3 no 0 10 0 0 0 0 1 +Standards Track standards S St Sta Stan BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 2 3 no 0 9 0 0 0 0 1 +defines the defines d de def defi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 3 .. 2 9 0 0 0 0 1 +discussion. discussion. discussion. d di dis disc BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 3 . 1 1 0 0 0 0 1 +Named attributes named N Na Nam Name BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 6 , 1 9 0 0 0 0 1 +accesses a accesses a ac acc acce BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 6 no 0 9 0 0 0 0 1 +system object. system s sy sys syst BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 6 . 1 9 0 0 0 0 1 +returns the returns r re ret retu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 6 . 1 9 0 0 0 0 1 +for the for f fo for for BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 6 no 0 10 0 0 0 0 1 +or READDIR or o or or or BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 6 no 0 9 0 0 0 0 1 +attributes and attributes a at att attr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 6 . 1 10 0 0 0 0 1 +example: example: example: e ex exa exam BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 6 : 1 1 0 0 0 0 1 ++----------+-----------+---------------------------------+ +----------+-----------+---------------------------------+ +----------+-----------+---------------------------------+ + +- +-- +--- BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 2 8 ------------------------------------------------------ 54 10 0 0 0 0 1 +| LOOKUP | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 8 no 0 1 0 0 0 0 1 +| "foo" | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 8 "" 2 1 0 0 0 0 1 +| ; | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 8 ; 1 2 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 8 no 0 0 0 0 0 0 1 +| GETATTR | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 8 no 0 3 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 8 no 0 0 0 0 0 0 1 +| OPENATTR | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 8 no 0 2 0 0 0 0 1 +| ; | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 8 ;' 2 6 0 0 0 0 1 +| LOOKUP | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 8 no 0 1 0 0 0 0 1 +| "x11icon" | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 8 ""; 3 7 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 8 no 0 0 0 0 0 0 1 +| READ | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 8 no 0 1 0 0 0 0 1 +| 0,4096 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 8 , 1 1 0 0 0 0 1 +| ; | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 8 ; 1 4 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 8 no 0 0 0 0 0 0 1 ++----------+-----------+---------------------------------+ +----------+-----------+---------------------------------+ +----------+-----------+---------------------------------+ + +- +-- +--- BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 2 8 ------------------------------------------------------ 54 10 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 2 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 11 , 1 10 0 0 0 0 0 +[Page 103] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 2 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 2 0 no 0 4 0 0 0 0 1 +Named attributes named N Na Nam Name BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 0 no 0 10 0 0 0 0 1 +than by than t th tha than BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 0 . 1 9 0 0 0 0 1 +encouraged to encouraged e en enc enco BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 0 no 0 9 0 0 0 0 1 +by bringing by b by by by BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 0 . 1 7 0 0 0 0 1 +The set the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 1 no 0 10 0 0 0 0 1 +small since small s sm sma smal BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 2 1 . 1 9 0 0 0 0 1 +server should server s se ser serv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 1 no 0 9 0 0 0 0 1 +possible but, possible p po pos poss BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 1 ,, 2 9 0 0 0 0 1 +support all support s su sup supp BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 2 1 . 1 9 0 0 0 0 1 +both needed both b bo bot both BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 1 no 0 8 0 0 0 0 1 +reasonably computable reasonably r re rea reas BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 1 no 0 9 0 0 0 0 1 +the server. the t th the the BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 1 . 1 1 0 0 0 0 1 +Note that note N No Not Note BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 3 no 0 10 0 0 0 0 1 +for protocol for f fo for for BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 3 . 1 9 0 0 0 0 1 +about the about a ab abo abou BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 3 ' 1 10 0 0 0 0 1 +not the not n no not not BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 3 no 0 9 0 0 0 0 1 +directory. Therefore, directory. d di dir dire BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 3 ., 2 9 0 0 0 0 1 +named attribute named n na nam name BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 3 . 1 5 0 0 0 0 1 +5.1. REQUIRED 5.1. 5 5. 5.1 5.1. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 4 .. 2 10 0 0 0 0 1 +These MUST these T Th The Thes BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 5 . 1 9 0 0 0 0 1 +to ensure to t to to to BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 5 . 1 10 0 0 0 0 1 +and return and a an and and BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 5 , 1 10 0 0 0 0 1 +with an with w wi wit with BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 5 . 1 9 0 0 0 0 1 +REQUIRED attributes required R RE REQ REQU BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 2 5 no 0 9 0 0 0 0 1 +limited in limited l li lim limi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 5 . 1 9 0 0 0 0 1 +to be to t to to to BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 5 , 1 9 0 0 0 0 1 +server MUST server s se ser serv BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 5 . 1 4 0 0 0 0 1 +5.2. RECOMMENDED 5.2. 5 5. 5.2 5.2. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 7 .. 2 10 0 0 0 0 1 +These attributes these T Th The Thes BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 7 no 0 10 0 0 0 0 1 +NFSv4.1 protocol. nfsv4.1 N NF NFS NFSv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 7 .., 3 9 0 0 0 0 1 +and servers. and a an and and BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 7 . 1 9 0 0 0 0 1 +returned by returned r re ret retu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 7 no 0 9 0 0 0 0 1 +case where case c ca cas case BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 2 7 . 1 9 0 0 0 0 1 +set of set s se set set BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 7 no 0 8 0 0 0 0 1 +attributes the attributes a at att attr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 7 . 1 9 0 0 0 0 1 +of requests of o of of of BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 7 no 0 9 0 0 0 0 1 +rather than rather r ra rat rath BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 7 . 1 9 0 0 0 0 1 +servers will servers s se ser serv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 7 no 0 9 0 0 0 0 1 +fail to fail f fa fai fail BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 7 no 0 9 0 0 0 0 1 +operating environments. operating o op ope oper BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 7 . 1 9 0 0 0 0 1 +they don't they t th the they BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 7 '""., 5 9 0 0 0 0 1 +modification time modification m mo mod modi BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 7 no 0 9 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 2 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 11 , 1 10 0 0 0 0 0 +[Page 104] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 2 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 2 0 no 0 4 0 0 0 0 1 +supported by supported s su sup supp BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 0 . 1 8 0 0 0 0 1 +clients, but clients, c cl cli clie BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 0 , 1 10 0 0 0 0 1 +to fabricate to t to to to BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 0 no 0 9 0 0 0 0 1 +attribute. attribute. attribute. a at att attr BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 0 . 1 1 0 0 0 0 1 +5.3. Named 5.3. 5 5. 5.3 5.3. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 1 .. 2 10 0 0 0 0 1 +These attributes these T Th The Thes BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 1 no 0 9 0 0 0 0 1 +protocol but protocol p pr pro prot BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 1 no 0 9 0 0 0 0 1 +correspond to correspond c co cor corr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 1 no 0 9 0 0 0 0 1 +the file the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 1 . 1 9 0 0 0 0 1 +accessed by accessed a ac acc acce BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 1 . 1 9 0 0 0 0 1 +returns a returns r re ret retu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 1 "", 3 9 0 0 0 0 1 +further perusal further f fu fur furt BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 1 no 0 9 0 0 0 0 1 +operations that operations o op ope oper BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 2 1 ., 2 9 0 0 0 0 1 +READDIR may readdir R RE REA READ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 2 1 , 1 9 0 0 0 0 1 +LOOKUP and lookup L LO LOO LOOK BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 2 1 . 1 10 0 0 0 0 1 +named attribute named n na nam name BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 1 no 0 8 0 0 0 0 1 +creation. creation. creation. c cr cre crea BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 1 . 1 1 0 0 0 0 1 +Once an once O On Onc Once BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 4 , 1 10 0 0 0 0 1 +normal READ normal n no nor norm BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 4 no 0 9 0 0 0 0 1 +returned by returned r re ret retu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 4 . 1 2 0 0 0 0 1 +Named attributes named N Na Nam Name BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 5 no 0 10 0 0 0 0 1 +(non-named) attributes. (non-named) ( (n (no (non BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 5 (-). 4 9 0 0 0 0 1 +REQUIRED attributes required R RE REQ REQU BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 2 5 . 1 9 0 0 0 0 1 +However, the however, H Ho How Howe BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 5 , 1 9 0 0 0 0 1 +attribute directory attribute a at att attr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 5 ,, 2 9 0 0 0 0 1 +as that as a as as as BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 5 . 1 6 0 0 0 0 1 +Named attributes named N Na Nam Name BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 7 no 0 9 0 0 0 0 1 +target of target t ta tar targ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 7 (, 2 10 0 0 0 0 1 +these will these t th the thes BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 7 )., 3 8 0 0 0 0 1 +delegations is delegations d de del dele BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 7 ', 2 10 0 0 0 0 1 +delegations on delegations d de del dele BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 7 . 1 9 0 0 0 0 1 +It is it I It It It BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 8 . 1 9 0 0 0 0 1 +client should client c cl cli clie BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 8 no 0 10 0 0 0 0 1 +in the in i in in in BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 2 8 '. 2 8 0 0 0 0 1 +attributes, a attributes, a at att attr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 8 , 1 9 0 0 0 0 1 +to copy to t to to to BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 8 ' 1 9 0 0 0 0 1 +one location one o on one one BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 8 ; 1 9 0 0 0 0 1 +regular directory regular r re reg regu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 8 no 0 9 0 0 0 0 1 +well. well. well. w we wel well BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 8 . 1 0 0 0 0 0 1 +In NFSv4.1, in I In In In BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 2 11 ., 2 8 0 0 0 0 1 +restricted in restricted r re res rest BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 11 , 1 10 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 2 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 11 , 1 10 0 0 0 0 0 +[Page 105] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 2 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 2 0 no 0 4 0 0 0 0 1 +of non-interoperable of o of of of BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 0 - 1 10 0 0 0 0 1 +fully general fully f fu ful full BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 0 no 0 9 0 0 0 0 1 +while others while w wh whi whil BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 0 no 0 9 0 0 0 0 1 +attributes. In attributes. a at att attr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 0 ., 2 9 0 0 0 0 1 +come to come c co com come BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 0 -.: 3 9 0 0 0 0 1 +o CREATE o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 2 1 ., 2 10 0 0 0 0 1 +objects as objects o ob obj obje BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 1 no 0 9 0 0 0 0 1 +named attributes. named n na nam name BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 1 ., 2 9 0 0 0 0 1 +named attribute named n na nam name BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 1 , 1 9 0 0 0 0 1 +attributes for attributes a at att attr BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 1 . 1 6 0 0 0 0 1 +o If o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 2 3 no 0 10 0 0 0 0 1 +attribute, the attribute, a at att attr BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 3 ,. 2 8 0 0 0 0 1 +o Doing o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 2 3 no 0 10 0 0 0 0 1 +directory or directory d di dir dire BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 3 (..,--) 7 9 0 0 0 0 1 +is not is i is is is BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 3 . 1 2 0 0 0 0 1 +o Creating o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 2 4 no 0 10 0 0 0 0 1 +named attribute named n na nam name BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 4 no 0 8 0 0 0 0 1 +allowed. allowed. allowed. a al all allo BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 4 . 1 1 0 0 0 0 1 +Names of names N Na Nam Name BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 5 no 0 10 0 0 0 0 1 +IETF Standards ietf I IE IET IETF BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 2 5 .. 2 8 0 0 0 0 1 +discussion. discussion. discussion. d di dis disc BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 5 . 1 1 0 0 0 0 1 +5.4. Classification 5.4. 5 5. 5.4 5.4. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 6 .. 2 10 0 0 0 0 1 +Each of each E Ea Eac Each BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 6 no 0 9 0 0 0 0 1 +one of one o on one one BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 6 :(.., 5 10 0 0 0 0 1 +will be will w wi wil will BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 2 6 no 0 9 0 0 0 0 1 +owner; see owner; o ow own owne BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 6 ;.), 4 9 0 0 0 0 1 +system (i.e., system s sy sys syst BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 6 (.., 4 10 0 0 0 0 1 +all file all a al all all BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 6 (...) 5 10 0 0 0 0 1 +and server and a an and and BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 6 ),. 3 8 0 0 0 0 1 +possible that possible p po pos poss BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 6 no 0 9 0 0 0 0 1 +file system, file f fi fil file BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 6 ,"" 3 8 0 0 0 0 1 +(Section 5.8.2.16) (section ( (S (Se (Sec BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 6 (...). 6 7 0 0 0 0 1 +time_access_set and time_access_set t ti tim time BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 6 no 0 9 0 0 0 0 1 +because they because b be bec beca BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 6 - 1 9 0 0 0 0 1 +and time_modify, and a an and and BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 6 ,. 2 9 0 0 0 0 1 +o The o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 2 11 -: 2 10 0 0 0 0 1 +lease_time lease_time lease_time l le lea leas BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 11 no 0 10 0 0 0 0 1 +o The o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 2 11 -: 2 10 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 2 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 11 , 1 10 0 0 0 0 0 +[Page 106] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 2 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 2 0 no 0 4 0 0 0 0 1 +supported_attrs, suppattr_exclcreat, supported_attrs, s su sup supp BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 0 ,,, 3 8 0 0 0 0 1 +link_support, symlink_support, link_support, l li lin link BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 0 ,,,, 4 10 0 0 0 0 1 +cansettime, case_insensitive, cansettime, c ca can cans BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 0 ,,, 3 7 0 0 0 0 1 +chown_restricted, files_avail, chown_restricted, c ch cho chow BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 0 ,,,, 4 9 0 0 0 0 1 +fs_locations, homogeneous, fs_locations, f fs fs_ fs_l BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 0 ,,,,, 5 9 0 0 0 0 1 +maxwrite, no_trunc, maxwrite, m ma max maxw BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 0 ,,,,, 5 9 0 0 0 0 1 +time_delta, change_policy, time_delta, t ti tim time BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 0 ,,,, 4 9 0 0 0 0 1 +fs_locations_info, fs_charset_cap fs_locations_info, f fs fs_ fs_l BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 0 , 1 5 0 0 0 0 1 +o The o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 2 2 -: 2 10 0 0 0 0 1 +type, change, type, t ty typ type BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 2 ,,,,,,, 7 10 0 0 0 0 1 +acl, archive, acl, a ac acl acl, BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 2 ,,,,,,, 7 8 0 0 0 0 1 +numlinks, owner, numlinks, n nu num numl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 2 ,,,,,, 6 9 0 0 0 0 1 +time_access, time_backup, time_access, t ti tim time BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 2 ,,,, 4 8 0 0 0 0 1 +time_modify, mounted_on_fileid, time_modify, t ti tim time BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 2 ,,, 3 7 0 0 0 0 1 +dirent_notif_delay, dacl, dirent_notif_delay, d di dir dire BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 2 ,,,,, 5 9 0 0 0 0 1 +layout_blksize, layout_alignment, layout_blksize, l la lay layo BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 2 ,,,, 4 9 0 0 0 0 1 +retention_set, retentevt_get, retention_set, r re ret rete BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 2 ,,,, 4 9 0 0 0 0 1 +mode_set_masked mode_set_masked mode_set_masked m mo mod mode BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 2 no 0 2 0 0 0 0 1 +For quota_avail_hard, for F Fo For For BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 4 ,,, 3 10 0 0 0 0 1 +definitions below definitions d de def defi BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 4 . 1 8 0 0 0 0 1 +5.5. Set-Only 5.5. 5 5. 5.5 5.5. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 5 ..-- 4 10 0 0 0 0 1 +Some REQUIRED some S So Som Some BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 5 -;.., 5 10 0 0 0 0 1 +be set be b be be be BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 5 ., 2 9 0 0 0 0 1 +REQUIRED and required R RE REQ REQU BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 2 5 -;.., 5 9 0 0 0 0 1 +retrieved via retrieved r re ret retr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 5 . 1 9 0 0 0 0 1 +to set to t to to to BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 5 --, 3 9 0 0 0 0 1 +MUST return must M MU MUS MUST BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 2 5 . 1 3 0 0 0 0 1 +5.6. REQUIRED 5.6. 5 5. 5.6 5.6. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 8 ..- 3 10 0 0 0 0 1 +The list the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 8 . 1 10 0 0 0 0 1 +the columns the t th the the BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 8 : 1 4 0 0 0 0 1 +o Name: o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 2 9 :. 2 10 0 0 0 0 1 +o Id: o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 2 9 :. 2 9 0 0 0 0 1 +conflicts between conflicts c co con conf BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 9 [], 3 9 0 0 0 0 1 +likely authoritative, likely l li lik like BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 9 , 1 10 0 0 0 0 1 +document and/or document d do doc docu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 9 /[].[]. 7 8 0 0 0 0 1 +o Data o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 2 11 :. 2 10 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 2 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 11 , 1 10 0 0 0 0 0 +[Page 107] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 2 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 2 0 no 0 4 0 0 0 0 1 +o Acc: o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 2 0 :.-( 4 10 0 0 0 0 1 +may retrieve, may m ma may may BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 1 0 0 2 0 ,).-( 5 9 0 0 0 0 1 +may set, may m ma may may BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 1 0 0 2 0 ,)./( 5 9 0 0 0 0 1 +may retrieve, may m ma may may BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 1 0 0 2 0 ,). 3 4 0 0 0 0 1 +o Defined o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 2 0 : 1 10 0 0 0 0 1 +attribute. attribute. attribute. a at att attr BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 0 . 1 1 0 0 0 0 1 ++--------------------+----+------------+-----+-------------------+ +--------------------+----+------------+-----+-------------------+ +--------------------+----+------------+-----+-------------------+ + +- +-- +--- BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 2 1 ------------------------------------------------------------ 60 10 0 0 0 0 1 +| Name | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 1 no 0 1 0 0 0 0 1 +| Id | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 1 : 1 5 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 1 no 0 0 0 0 0 0 1 ++--------------------+----+------------+-----+-------------------+ +--------------------+----+------------+-----+-------------------+ +--------------------+----+------------+-----+-------------------+ + +- +-- +--- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 2 1 ------------------------------------------------------------ 60 10 0 0 0 0 1 +| supported_attrs | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 1 no 0 2 0 0 0 0 1 +| 0 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 1 no 0 2 0 0 0 0 1 +| R | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 1 no 0 0 0 0 0 0 1 +| Section | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 1 ... 3 2 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 1 no 0 0 0 0 0 0 1 +| type | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 1 no 0 1 0 0 0 0 1 +| 1 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 1 no 0 3 0 0 0 0 1 +| Section | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 1 ... 3 2 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 1 no 0 0 0 0 0 0 1 +| fh_expire_type | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 1 no 0 2 0 0 0 0 1 +| 2 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 1 no 0 2 0 0 0 0 1 +| R | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 1 no 0 0 0 0 0 0 1 +| Section | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 1 ... 3 2 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 1 no 0 0 0 0 0 0 1 +| change | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 1 no 0 1 0 0 0 0 1 +| 3 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 1 no 0 2 0 0 0 0 1 +| R | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 1 no 0 0 0 0 0 0 1 +| Section | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 1 ... 3 2 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 1 no 0 0 0 0 0 0 1 +| size | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 1 no 0 1 0 0 0 0 1 +| 4 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 1 no 0 2 0 0 0 0 1 +| R | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 1 ... 3 3 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 1 no 0 0 0 0 0 0 1 +| link_support | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 1 no 0 2 0 0 0 0 1 +| 5 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 1 no 0 1 0 0 0 0 1 +| R | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 1 no 0 0 0 0 0 0 1 +| Section | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 1 ... 3 2 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 1 no 0 0 0 0 0 0 1 +| symlink_support | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 1 no 0 2 0 0 0 0 1 +| 6 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 1 no 0 1 0 0 0 0 1 +| R | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 1 no 0 0 0 0 0 0 1 +| Section | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 1 ... 3 2 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 1 no 0 0 0 0 0 0 1 +| named_attr | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 1 no 0 1 0 0 0 0 1 +| 7 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 1 no 0 1 0 0 0 0 1 +| R | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 1 no 0 0 0 0 0 0 1 +| Section | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 1 ... 3 2 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 1 no 0 0 0 0 0 0 1 +| fsid | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 1 no 0 1 0 0 0 0 1 +| 8 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 1 no 0 1 0 0 0 0 1 +| R | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 1 no 0 0 0 0 0 0 1 +| Section | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 1 ... 3 2 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 1 no 0 0 0 0 0 0 1 +| unique_handles | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 1 no 0 2 0 0 0 0 1 +| 9 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 1 no 0 1 0 0 0 0 1 +| R | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 1 no 0 0 0 0 0 0 1 +| Section | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 1 ... 3 3 0 0 0 0 1 +| lease_time | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 1 no 0 1 0 0 0 0 1 +| 10 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 1 no 0 3 0 0 0 0 1 +| Section | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 1 ... 3 3 0 0 0 0 1 +| rdattr_error | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 1 no 0 2 0 0 0 0 1 +| 11 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 1 no 0 1 0 0 0 0 1 +| R | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 1 no 0 0 0 0 0 0 1 +| Section | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 1 ... 3 3 0 0 0 0 1 +| filehandle | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 1 no 0 1 0 0 0 0 1 +| 19 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 1 no 0 2 0 0 0 0 1 +| R | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 1 no 0 0 0 0 0 0 1 +| Section | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 1 ... 3 3 0 0 0 0 1 +| suppattr_exclcreat | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 1 no 0 5 0 0 0 0 1 +| R | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 1 no 0 0 0 0 0 0 1 +| Section | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 1 ... 3 3 0 0 0 0 1 ++--------------------+----+------------+-----+-------------------+ +--------------------+----+------------+-----+-------------------+ +--------------------+----+------------+-----+-------------------+ + +- +-- +--- BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 2 1 ------------------------------------------------------------ 60 10 0 0 0 0 1 +Table 2 table T Ta Tab Tabl BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 6 no 0 10 0 0 0 0 1 +5.7. RECOMMENDED 5.7. 5 5. 5.7 5.7. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 7 ..- 3 10 0 0 0 0 1 +The RECOMMENDED the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 7 . 1 9 0 0 0 0 1 +the column the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 7 ;. 2 10 0 0 0 0 1 +meanings. meanings. meanings. m me mea mean BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 7 . 1 1 0 0 0 0 1 ++--------------------+----+----------------+-----+------------------+ +--------------------+----+----------------+-----+------------------+ +--------------------+----+----------------+-----+------------------+ + +- +-- +--- BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 2 7 --------------------------------------------------------------- 63 10 0 0 0 0 1 +| Name | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 7 no 0 1 0 0 0 0 1 +| Id | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 7 no 0 2 0 0 0 0 1 +| Acc | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 7 : 1 2 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 7 no 0 0 0 0 0 0 1 ++--------------------+----+----------------+-----+------------------+ +--------------------+----+----------------+-----+------------------+ +--------------------+----+----------------+-----+------------------+ + +- +-- +--- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 2 7 --------------------------------------------------------------- 63 10 0 0 0 0 1 +| acl | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 7 no 0 0 0 0 0 0 1 +| 12 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 7 no 0 2 0 0 0 0 1 +| R | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 7 .. 2 3 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 7 no 0 0 0 0 0 0 1 +| aclsupport | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 7 no 0 1 0 0 0 0 1 +| 13 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 7 no 0 2 0 0 0 0 1 +| R | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 7 no 0 0 0 0 0 0 1 +| Section | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 7 ... 3 2 0 0 0 0 1 +| archive | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 7 no 0 1 0 0 0 0 1 +| 14 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 7 no 0 1 0 0 0 0 1 +| R | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 7 ... 3 3 0 0 0 0 1 +| cansettime | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 7 no 0 1 0 0 0 0 1 +| 15 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 7 no 0 1 0 0 0 0 1 +| R | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 7 no 0 0 0 0 0 0 1 +| Section | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 7 ... 3 2 0 0 0 0 1 +| case_insensitive | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 7 no 0 2 0 0 0 0 1 +| 16 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 7 no 0 1 0 0 0 0 1 +| R | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 7 no 0 0 0 0 0 0 1 +| Section | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 7 ... 3 2 0 0 0 0 1 +| case_preserving | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 7 no 0 2 0 0 0 0 1 +| 17 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 7 no 0 1 0 0 0 0 1 +| R | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 7 no 0 0 0 0 0 0 1 +| Section | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 7 ... 3 2 0 0 0 0 1 +| change_policy | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 7 no 0 2 0 0 0 0 1 +| 60 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 7 no 0 2 0 0 0 0 1 +| R | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 7 no 0 0 0 0 0 0 1 +| Section | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 7 ... 3 2 0 0 0 0 1 +| chown_restricted | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 7 no 0 2 0 0 0 0 1 +| 18 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 7 no 0 1 0 0 0 0 1 +| R | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 7 no 0 0 0 0 0 0 1 +| Section | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 7 ... 3 2 0 0 0 0 1 +| dacl | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 7 no 0 1 0 0 0 0 1 +| 58 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 7 no 0 2 0 0 0 0 1 +| R | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 7 .. 2 3 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 7 no 0 0 0 0 0 0 1 +| dir_notif_delay | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 7 no 0 2 0 0 0 0 1 +| 56 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 7 no 0 2 0 0 0 0 1 +| R | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 7 no 0 0 0 0 0 0 1 +| Section | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 7 .. 2 2 0 0 0 0 1 +| | | | | | | BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 7 no 0 0 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 2 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 11 , 1 10 0 0 0 0 0 +[Page 108] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 2 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 2 0 no 0 4 0 0 0 0 1 +| dirent_notif_delay | | | | | BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 7 0 0 0 0 1 +| R | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 0 0 0 0 0 1 +| Section | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 .. 2 3 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 0 0 0 0 0 1 +| fileid | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 1 0 0 0 0 1 +| 20 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 3 0 0 0 0 1 +| R | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 0 0 0 0 0 1 +| Section | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 ... 3 4 0 0 0 0 1 +| files_avail | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 2 0 0 0 0 1 +| 21 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 3 0 0 0 0 1 +| R | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 0 0 0 0 0 1 +| Section | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 ... 3 4 0 0 0 0 1 +| files_free | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 2 0 0 0 0 1 +| 22 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 3 0 0 0 0 1 +| R | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 0 0 0 0 0 1 +| Section | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 ... 3 4 0 0 0 0 1 +| files_total | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 2 0 0 0 0 1 +| 23 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 3 0 0 0 0 1 +| R | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 0 0 0 0 0 1 +| Section | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 ... 3 4 0 0 0 0 1 +| fs_charset_cap | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 3 0 0 0 0 1 +| 76 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 3 0 0 0 0 1 +| R | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 0 0 0 0 0 1 +| Section | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 ... 3 4 0 0 0 0 1 +| fs_layout_type | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 3 0 0 0 0 1 +| 62 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 5 0 0 0 0 1 +| Section | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 .. 2 3 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 0 0 0 0 0 1 +| fs_locations | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 3 0 0 0 0 1 +| 24 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 4 0 0 0 0 1 +| R | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 0 0 0 0 0 1 +| Section | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 ... 3 4 0 0 0 0 1 +| fs_locations_info | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 * 1 6 0 0 0 0 1 +| R | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 0 0 0 0 0 1 +| Section | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 ... 3 4 0 0 0 0 1 +| fs_status | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 2 0 0 0 0 1 +| 61 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 3 0 0 0 0 1 +| R | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 0 0 0 0 0 1 +| Section | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 ... 3 4 0 0 0 0 1 +| hidden | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 1 0 0 0 0 1 +| 25 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 2 0 0 0 0 1 +| R | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 ... 3 5 0 0 0 0 1 +| homogeneous | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 2 0 0 0 0 1 +| 26 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 2 0 0 0 0 1 +| R | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 0 0 0 0 0 1 +| Section | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 ... 3 4 0 0 0 0 1 +| layout_alignment | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 3 0 0 0 0 1 +| 66 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 3 0 0 0 0 1 +| R | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 0 0 0 0 0 1 +| Section | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 .. 2 3 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 0 0 0 0 0 1 +| layout_blksize | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 3 0 0 0 0 1 +| 65 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 3 0 0 0 0 1 +| R | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 0 0 0 0 0 1 +| Section | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 .. 2 3 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 0 0 0 0 0 1 +| layout_hint | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 2 0 0 0 0 1 +| 63 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 3 0 0 0 0 1 +| W | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 0 0 0 0 0 1 +| Section | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 .. 2 3 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 0 0 0 0 0 1 +| layout_type | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 2 0 0 0 0 1 +| 64 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 5 0 0 0 0 1 +| Section | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 .. 2 3 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 0 0 0 0 0 1 +| maxfilesize | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 2 0 0 0 0 1 +| 27 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 3 0 0 0 0 1 +| R | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 0 0 0 0 0 1 +| Section | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 ... 3 4 0 0 0 0 1 +| maxlink | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 2 0 0 0 0 1 +| 28 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 3 0 0 0 0 1 +| R | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 0 0 0 0 0 1 +| Section | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 ... 3 4 0 0 0 0 1 +| maxname | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 2 0 0 0 0 1 +| 29 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 3 0 0 0 0 1 +| R | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 0 0 0 0 0 1 +| Section | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 ... 3 4 0 0 0 0 1 +| maxread | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 2 0 0 0 0 1 +| 30 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 3 0 0 0 0 1 +| R | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 0 0 0 0 0 1 +| Section | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 ... 3 4 0 0 0 0 1 +| maxwrite | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 2 0 0 0 0 1 +| 31 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 3 0 0 0 0 1 +| R | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 0 0 0 0 0 1 +| Section | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 ... 3 4 0 0 0 0 1 +| mdsthreshold | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 3 0 0 0 0 1 +| 68 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 5 0 0 0 0 1 +| Section | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 .. 2 3 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 0 0 0 0 0 1 +| mimetype | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 2 0 0 0 0 1 +| 32 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 3 0 0 0 0 1 +| R | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 ... 3 5 0 0 0 0 1 +| mode | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 1 0 0 0 0 1 +| 33 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 2 0 0 0 0 1 +| R | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 .. 2 4 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 0 0 0 0 0 1 +| mode_set_masked | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 3 0 0 0 0 1 +| 74 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 4 0 0 0 0 1 +| W | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 0 0 0 0 0 1 +| Section | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 .. 2 3 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 0 0 0 0 0 1 +| mounted_on_fileid | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 7 0 0 0 0 1 +| R | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 0 0 0 0 0 1 +| Section | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 ... 3 4 0 0 0 0 1 +| no_trunc | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 2 0 0 0 0 1 +| 34 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 2 0 0 0 0 1 +| R | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 0 0 0 0 0 1 +| Section | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 ... 3 4 0 0 0 0 1 +| numlinks | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 2 0 0 0 0 1 +| 35 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 3 0 0 0 0 1 +| R | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 0 0 0 0 0 1 +| Section | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 ... 3 4 0 0 0 0 1 +| owner | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 1 0 0 0 0 1 +| 36 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 ... 3 10 0 0 0 0 1 +| owner_group | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 2 0 0 0 0 1 +| 37 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 ... 3 10 0 0 0 0 1 +| quota_avail_hard | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 3 0 0 0 0 1 +| 38 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 3 0 0 0 0 1 +| R | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 0 0 0 0 0 1 +| Section | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 ... 3 4 0 0 0 0 1 +| quota_avail_soft | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 3 0 0 0 0 1 +| 39 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 3 0 0 0 0 1 +| R | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 0 0 0 0 0 1 +| Section | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 ... 3 4 0 0 0 0 1 +| quota_used | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 2 0 0 0 0 1 +| 40 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 3 0 0 0 0 1 +| R | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 0 0 0 0 0 1 +| Section | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 ... 3 4 0 0 0 0 1 +| rawdev | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 1 0 0 0 0 1 +| 41 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 3 0 0 0 0 1 +| R | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 0 0 0 0 0 1 +| Section | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 ... 3 4 0 0 0 0 1 +| retentevt_get | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 3 0 0 0 0 1 +| 71 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 5 0 0 0 0 1 +| Section | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 .. 2 3 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 0 0 0 0 0 1 +| retentevt_set | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 3 0 0 0 0 1 +| 72 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 5 0 0 0 0 1 +| Section | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 .. 2 3 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 0 0 0 0 0 1 +| retention_get | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 3 0 0 0 0 1 +| 69 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 5 0 0 0 0 1 +| Section | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 .. 2 3 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 0 0 0 0 0 1 +| retention_hold | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 3 0 0 0 0 1 +| 73 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 3 0 0 0 0 1 +| R | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 .. 2 4 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 0 0 0 0 0 1 +| retention_set | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 3 0 0 0 0 1 +| 70 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 5 0 0 0 0 1 +| Section | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 .. 2 3 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 0 0 0 0 0 1 +| sacl | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 1 0 0 0 0 1 +| 59 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 3 0 0 0 0 1 +| R | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 .. 2 4 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 0 0 0 0 0 1 +| space_avail | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 2 0 0 0 0 1 +| 42 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 3 0 0 0 0 1 +| R | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 0 0 0 0 0 1 +| Section | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 ... 3 4 0 0 0 0 1 +| space_free | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 2 0 0 0 0 1 +| 43 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 3 0 0 0 0 1 +| R | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 0 0 0 0 0 1 +| Section | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 ... 3 4 0 0 0 0 1 +| space_total | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 2 0 0 0 0 1 +| 44 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 3 0 0 0 0 1 +| R | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 0 0 0 0 0 1 +| Section | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 ... 3 4 0 0 0 0 1 +| space_used | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 2 0 0 0 0 1 +| 45 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 3 0 0 0 0 1 +| R | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 0 0 0 0 0 1 +| Section | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 ... 3 4 0 0 0 0 1 +| system | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 1 0 0 0 0 1 +| 46 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 2 0 0 0 0 1 +| R | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 ... 3 5 0 0 0 0 1 +| time_access | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 2 0 0 0 0 1 +| 47 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 3 0 0 0 0 1 +| R | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 0 0 0 0 0 1 +| Section | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 ... 3 4 0 0 0 0 1 +| time_access_set | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 3 0 0 0 0 1 +| 48 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 3 0 0 0 0 1 +| W | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 0 0 0 0 0 1 +| Section | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 ... 3 4 0 0 0 0 1 +| time_backup | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 2 0 0 0 0 1 +| 49 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 3 0 0 0 0 1 +| R | | | | | BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 ... 3 5 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 2 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 11 , 1 10 0 0 0 0 0 +[Page 109] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 2 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 2 0 no 0 4 0 0 0 0 1 +| time_create | | | | | BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 2 0 0 0 0 1 +| 50 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 2 0 0 0 0 1 +| R | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 ... 3 3 0 0 0 0 1 +| time_delta | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 1 0 0 0 0 1 +| 51 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 2 0 0 0 0 1 +| R | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 0 0 0 0 0 1 +| Section | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 ... 3 3 0 0 0 0 1 +| time_metadata | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 2 0 0 0 0 1 +| 52 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 2 0 0 0 0 1 +| R | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 0 0 0 0 0 1 +| Section | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 ... 3 3 0 0 0 0 1 +| time_modify | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 2 0 0 0 0 1 +| 53 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 2 0 0 0 0 1 +| R | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 0 0 0 0 0 1 +| Section | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 ... 3 3 0 0 0 0 1 +| time_modify_set | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 2 0 0 0 0 1 +| 54 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 2 0 0 0 0 1 +| W | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 0 0 0 0 0 1 +| Section | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 ... 3 3 0 0 0 0 1 ++--------------------+----+----------------+-----+------------------+ +--------------------+----+----------------+-----+------------------+ +--------------------+----+----------------+-----+------------------+ + +- +-- +--- BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 2 0 --------------------------------------------------------------- 63 10 0 0 0 0 1 +Table 3 table T Ta Tab Tabl BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 4 no 0 10 0 0 0 0 1 +* fs_locations_info4 * * * * * BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 4 * 1 10 0 0 0 0 1 +5.8. Attribute 5.8. 5 5. 5.8 5.8. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 5 .. 2 10 0 0 0 0 1 +5.8.1. Definitions 5.8.1. 5 5. 5.8 5.8. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 5 ... 3 10 0 0 0 0 1 +5.8.1.1. Attribute 5.8.1.1. 5 5. 5.8 5.8. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 5 ....: 5 10 0 0 0 0 1 +The bit the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 5 no 0 9 0 0 0 0 1 +attributes that attributes a at att attr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 5 . 1 10 0 0 0 0 1 +attribute applies attribute a at att attr BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 5 . 1 8 0 0 0 0 1 +5.8.1.2. Attribute 5.8.1.2. 5 5. 5.8 5.8. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 7 ....: 5 10 0 0 0 0 1 +Designates the designates D De Des Desi BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 7 no 0 10 0 0 0 0 1 +special constants: special s sp spe spec BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 7 : 1 2 0 0 0 0 1 +o NF4REG o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 2 8 . 1 10 0 0 0 0 1 +o NF4DIR o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 2 8 . 1 10 0 0 0 0 1 +o NF4BLK o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 2 8 . 1 10 0 0 0 0 1 +o NF4CHR o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 2 8 . 1 10 0 0 0 0 1 +o NF4LNK o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 2 9 . 1 10 0 0 0 0 1 +o NF4SOCK o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 2 9 . 1 10 0 0 0 0 1 +o NF4FIFO o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 2 9 . 1 10 0 0 0 0 1 +o NF4ATTRDIR o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 2 10 . 1 10 0 0 0 0 1 +o NF4NAMEDATTR o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 2 10 . 1 10 0 0 0 0 1 +Within the within W Wi Wit With BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 10 , 1 10 0 0 0 0 1 +phrases will phrases p ph phr phra BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 10 : 1 7 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 2 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 11 , 1 10 0 0 0 0 0 +[Page 110] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 2 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 2 0 no 0 4 0 0 0 0 1 +o The o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 2 0 ""' 3 10 0 0 0 0 1 +is NF4DIR is i is is is BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 0 . 1 3 0 0 0 0 1 +o The o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 2 1 ""' 3 10 0 0 0 0 1 +attribute is attribute a at att attr BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 1 ,,,. 4 8 0 0 0 0 1 +o The o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 2 2 """" 4 10 0 0 0 0 1 +that the that t th tha that BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 2 '. 2 9 0 0 0 0 1 +5.8.1.3. Attribute 5.8.1.3. 5 5. 5.8 5.8. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 3 ....: 5 10 0 0 0 0 1 +Server uses server S Se Ser Serv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 2 3 no 0 10 0 0 0 0 1 +client. See client. c cl cli clie BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 3 .. 2 7 0 0 0 0 1 +5.8.1.4. Attribute 5.8.1.4. 5 5. 5.8 5.8. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 4 ....: 5 10 0 0 0 0 1 +A value a A A A A BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 1 0 0 0 0 0 2 4 no 0 10 0 0 0 0 1 +file data, file f fi fil file BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 4 ,, 2 9 0 0 0 0 1 +modified. The modified. m mo mod modi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 4 .' 2 9 0 0 0 0 1 +for this for f fo for for BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 4 ', 2 10 0 0 0 0 1 +be updated be b be be be BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 4 . 1 9 0 0 0 0 1 +5.8.1.5. Attribute 5.8.1.5. 5 5. 5.8 5.8. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 6 ....: 5 10 0 0 0 0 1 +The size the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 7 . 1 10 0 0 0 0 1 +5.8.1.6. Attribute 5.8.1.6. 5 5. 5.8 5.8. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 7 ....: 5 10 0 0 0 0 1 +TRUE, if true, T TR TRU TRUE BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 2 7 ,'. 3 10 0 0 0 0 1 +5.8.1.7. Attribute 5.8.1.7. 5 5. 5.8 5.8. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 8 ....: 5 10 0 0 0 0 1 +TRUE, if true, T TR TRU TRUE BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 2 8 ,'. 3 10 0 0 0 0 1 +5.8.1.8. Attribute 5.8.1.8. 5 5. 5.8 5.8. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 8 ....: 5 10 0 0 0 0 1 +TRUE, if true, T TR TRU TRUE BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 2 9 ,., 3 10 0 0 0 0 1 +has a has h ha has has BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 9 -. 2 6 0 0 0 0 1 +5.8.1.9. Attribute 5.8.1.9. 5 5. 5.8 5.8. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 10 ....: 5 10 0 0 0 0 1 +Unique file unique U Un Uni Uniq BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 10 no 0 9 0 0 0 0 1 +object. The object. o ob obj obje BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 10 ., 2 10 0 0 0 0 1 +which are which w wh whi whic BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 10 . 1 4 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 2 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 11 , 1 10 0 0 0 0 0 +[Page 111] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 2 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 2 0 no 0 4 0 0 0 0 1 +5.8.1.10. Attribute 5.8.1.10. 5 5. 5.8 5.8. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 0 ....: 5 10 0 0 0 0 1 +TRUE, if true, T TR TRU TRUE BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 2 0 , 1 10 0 0 0 0 1 +different file different d di dif diff BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 0 . 1 4 0 0 0 0 1 +5.8.1.11. Attribute 5.8.1.11. 5 5. 5.8 5.8. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 1 ....: 5 10 0 0 0 0 1 +Duration of duration D Du Dur Dura BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 2 . 1 10 0 0 0 0 1 +5.8.1.12. Attribute 5.8.1.12. 5 5. 5.8 5.8. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 2 ....: 5 10 0 0 0 0 1 +Error returned error E Er Err Erro BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 2 no 0 10 0 0 0 0 1 +READDIR operation. readdir R RE REA READ BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 2 2 . 1 3 0 0 0 0 1 +5.8.1.13. Attribute 5.8.1.13. 5 5. 5.8 5.8. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 3 ....: 5 10 0 0 0 0 1 +The filehandle the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 3 (). 3 10 0 0 0 0 1 +5.8.1.14. Attribute 5.8.1.14. 5 5. 5.8 5.8. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 4 ....: 5 10 0 0 0 0 1 +The bit the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 4 no 0 10 0 0 0 0 1 +that are that t th tha that BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 4 no 0 9 0 0 0 0 1 +the OPEN the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 4 . 1 9 0 0 0 0 1 +objects with objects o ob obj obje BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 4 . 1 4 0 0 0 0 1 +5.8.2. Definitions 5.8.2. 5 5. 5.8 5.8. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 6 ... 3 10 0 0 0 0 1 +The definitions the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 6 . 1 10 0 0 0 0 1 +Collections that collections C Co Col Coll BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 6 no 0 10 0 0 0 0 1 +sections. sections. sections. s se sec sect BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 6 . 1 1 0 0 0 0 1 +5.8.2.1. Attribute 5.8.2.1. 5 5. 5.8 5.8. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 7 ....: 5 10 0 0 0 0 1 +TRUE, if true, T TR TRU TRUE BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 2 8 , 1 10 0 0 0 0 1 +modification (deprecated modification m mo mod modi BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 8 (). 3 8 0 0 0 0 1 +5.8.2.2. Attribute 5.8.2.2. 5 5. 5.8 5.8. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 9 ....: 5 10 0 0 0 0 1 +TRUE, if true, T TR TRU TRUE BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 2 9 , 1 10 0 0 0 0 1 +object as object o ob obj obje BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 9 . 1 6 0 0 0 0 1 +5.8.2.3. Attribute 5.8.2.3. 5 5. 5.8 5.8. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 10 ....: 5 10 0 0 0 0 1 +TRUE, if true, T TR TRU TRUE BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 2 10 , 1 10 0 0 0 0 1 +insensitive. insensitive. insensitive. i in ins inse BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 10 . 1 2 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 2 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 11 , 1 10 0 0 0 0 0 +[Page 112] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 2 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 2 0 no 0 4 0 0 0 0 1 +5.8.2.4. Attribute 5.8.2.4. 5 5. 5.8 5.8. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 0 ....: 5 10 0 0 0 0 1 +TRUE, if true, T TR TRU TRUE BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 2 0 ,. 2 10 0 0 0 0 1 +5.8.2.5. Attribute 5.8.2.5. 5 5. 5.8 5.8. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 1 ....: 5 10 0 0 0 0 1 +A value a A A A A BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 1 0 0 0 0 0 2 1 no 0 10 0 0 0 0 1 +some server some s so som some BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 1 no 0 9 0 0 0 0 1 +subject to subject s su sub subj BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 1 ., 2 9 0 0 0 0 1 +can be can c ca can can BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 1 no 0 9 0 0 0 0 1 +and the and a an and and BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 1 . 1 9 0 0 0 0 1 +On the on O On On On BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 1 , 1 9 0 0 0 0 1 +change in change c ch cha chan BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 1 . 1 9 0 0 0 0 1 +to determine to t to to to BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 1 . 1 8 0 0 0 0 1 +Section 3.3.6 section S Se Sec Sect BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 1 ... 3 3 0 0 0 0 1 +This attribute this T Th Thi This BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 4 no 0 8 0 0 0 0 1 +fs_locations or fs_locations f fs fs_ fs_l BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 4 , 1 9 0 0 0 0 1 +system goes system s sy sys syst BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 4 -, 2 10 0 0 0 0 1 +allowable set allowable a al all allo BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 4 no 0 10 0 0 0 0 1 +thereof is thereof t th the ther BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 4 . 1 3 0 0 0 0 1 +5.8.2.6. Attribute 5.8.2.6. 5 5. 5.8 5.8. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 6 ....: 5 10 0 0 0 0 1 +If TRUE, if I If If If BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 6 , 1 9 0 0 0 0 1 +owner or owner o ow own owne BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 6 no 0 9 0 0 0 0 1 +privileged user privileged p pr pri priv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 6 (,"" 4 10 0 0 0 0 1 +or, in or, o or or, or, BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 6 ,,""). 6 7 0 0 0 0 1 +5.8.2.7. Attribute 5.8.2.7. 5 5. 5.8 5.8. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 8 ....: 5 10 0 0 0 0 1 +A number a A A A A BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 1 0 0 0 0 0 2 8 . 1 10 0 0 0 0 1 +5.8.2.8. Attribute 5.8.2.8. 5 5. 5.8 5.8. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 9 ....: 5 10 0 0 0 0 1 +File slots file F Fi Fil File BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 9 no 0 10 0 0 0 0 1 +object --this object o ob obj obje BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 9 --. 3 7 0 0 0 0 1 +5.8.2.9. Attribute 5.8.2.9. 5 5. 5.8 5.8. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 10 ....: 5 10 0 0 0 0 1 +Free file free F Fr Fre Free BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 2 10 -- 2 10 0 0 0 0 1 +should be should s sh sho shou BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 10 . 1 6 0 0 0 0 1 +5.8.2.10. Attribute 5.8.2.10. 5 5. 5.8 5.8. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 10 ....: 5 10 0 0 0 0 1 +Total file total T To Tot Tota BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 11 . 1 10 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 2 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 11 , 1 10 0 0 0 0 0 +[Page 113] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 2 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 2 0 no 0 4 0 0 0 0 1 +5.8.2.11. Attribute 5.8.2.11. 5 5. 5.8 5.8. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 0 ....: 5 10 0 0 0 0 1 +Character set character C Ch Cha Char BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 0 ... 3 10 0 0 0 0 1 +5.8.2.12. Attribute 5.8.2.12. 5 5. 5.8 5.8. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 1 ....: 5 10 0 0 0 0 1 +Locations where locations L Lo Loc Loca BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 1 . 1 10 0 0 0 0 1 +NFS4ERR_MOVED as nfs4err_moved N NF NFS NFS4 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 1 ,. 2 9 0 0 0 0 1 +Section 11.15 section S Se Sec Sect BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 1 .. 2 4 0 0 0 0 1 +5.8.2.13. Attribute 5.8.2.13. 5 5. 5.8 5.8. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 3 ....: 5 10 0 0 0 0 1 +Full function full F Fu Ful Full BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 3 ... 3 10 0 0 0 0 1 +details. details. details. d de det deta BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 3 . 1 1 0 0 0 0 1 +5.8.2.14. Attribute 5.8.2.14. 5 5. 5.8 5.8. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 4 ....: 5 10 0 0 0 0 1 +Generic file generic G Ge Gen Gene BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 4 .. 2 10 0 0 0 0 1 +details. details. details. d de det deta BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 4 . 1 1 0 0 0 0 1 +5.8.2.15. Attribute 5.8.2.15. 5 5. 5.8 5.8. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 5 ....: 5 10 0 0 0 0 1 +TRUE, if true, T TR TRU TRUE BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 2 5 , 1 10 0 0 0 0 1 +API. API. api. A AP API API. BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 2 5 . 1 0 0 0 0 0 1 +5.8.2.16. Attribute 5.8.2.16. 5 5. 5.8 5.8. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 6 ....: 5 10 0 0 0 0 1 +TRUE, if true, T TR TRU TRUE BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 2 6 ,';.., 6 10 0 0 0 0 1 +in the in i in in in BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 2 6 () 2 9 0 0 0 0 1 +have common have h ha hav have BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 6 --. 3 7 0 0 0 0 1 +5.8.2.17. Attribute 5.8.2.17. 5 5. 5.8 5.8. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 8 ....: 5 10 0 0 0 0 1 +Maximum supported maximum M Ma Max Maxi BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 8 . 1 10 0 0 0 0 1 +5.8.2.18. Attribute 5.8.2.18. 5 5. 5.8 5.8. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 9 ....: 5 10 0 0 0 0 1 +Maximum number maximum M Ma Max Maxi BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 9 . 1 10 0 0 0 0 1 +5.8.2.19. Attribute 5.8.2.19. 5 5. 5.8 5.8. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 9 ....: 5 10 0 0 0 0 1 +Maximum file maximum M Ma Max Maxi BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 10 . 1 10 0 0 0 0 1 +5.8.2.20. Attribute 5.8.2.20. 5 5. 5.8 5.8. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 10 ....: 5 10 0 0 0 0 1 +Maximum amount maximum M Ma Max Maxi BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 10 no 0 10 0 0 0 0 1 +object. object. object. o ob obj obje BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 10 . 1 1 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 2 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 11 , 1 10 0 0 0 0 0 +[Page 114] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 2 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 2 0 no 0 4 0 0 0 0 1 +5.8.2.21. Attribute 5.8.2.21. 5 5. 5.8 5.8. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 0 ....: 5 10 0 0 0 0 1 +Maximum amount maximum M Ma Max Maxi BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 0 no 0 9 0 0 0 0 1 +object. This object. o ob obj obje BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 0 .. 2 10 0 0 0 0 1 +Lack of lack L La Lac Lack BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 0 no 0 8 0 0 0 0 1 +bandwidth or bandwidth b ba ban band BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 0 . 1 7 0 0 0 0 1 +5.8.2.22. Attribute 5.8.2.22. 5 5. 5.8 5.8. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 1 ....: 5 10 0 0 0 0 1 +MIME body mime M MI MIM MIME BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 2 1 /. 2 10 0 0 0 0 1 +5.8.2.23. Attribute 5.8.2.23. 5 5. 5.8 5.8. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 2 ....: 5 10 0 0 0 0 1 +Like fileid, like L Li Lik Like BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 2 , 1 10 0 0 0 0 1 +system, this system, s sy sys syst BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 2 , 1 9 0 0 0 0 1 +directory. directory. directory. d di dir dire BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 2 . 1 1 0 0 0 0 1 +UNIX-based operating unix-based U UN UNI UNIX BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 2 3 - 1 9 0 0 0 0 1 +namespace by namespace n na nam name BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 3 () 2 10 0 0 0 0 1 +file object file f fi fil file BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 3 (,) 3 9 0 0 0 0 1 +file system. file f fi fil file BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 3 .' 2 9 0 0 0 0 1 +API like api A AP API API BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 2 3 (),, 4 9 0 0 0 0 1 +with a with w wi wit with BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 3 .' 2 9 0 0 0 0 1 +directory entry directory d di dir dire BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 3 () 2 9 0 0 0 0 1 +system call system s sy sys syst BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 3 .() 3 9 0 0 0 0 1 +of the of o of of of BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 3 ,() 3 8 0 0 0 0 1 +returning the returning r re ret retu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 3 () 2 10 0 0 0 0 1 +systems were systems s sy sys syst BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 2 3 . 1 5 0 0 0 0 1 +Unlike NFSv3, unlike U Un Unl Unli BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 6 ,.' 3 10 0 0 0 0 1 +file systems. file f fi fil file BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 6 . 1 9 0 0 0 0 1 +the filehandle the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 6 no 0 9 0 0 0 0 1 +from that from f fr fro from BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 6 .- 2 9 0 0 0 0 1 +will consider will w wi wil will BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 2 6 "". 3 9 0 0 0 0 1 +scheme for scheme s sc sch sche BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 6 no 0 9 0 0 0 0 1 +directory. This directory. d di dir dire BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 6 .()' 4 9 0 0 0 0 1 +stat() of stat() s st sta stat BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 6 (). 3 9 0 0 0 0 1 +The mounted_on_fileid the T Th The The BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 6 no 0 9 0 0 0 0 1 +readdir() would readdir() r re rea read BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 6 (). 3 7 0 0 0 0 1 +While the while W Wh Whi Whil BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 9 . 1 8 0 0 0 0 1 +corresponding to corresponding c co cor corr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 9 ( 1 9 0 0 0 0 1 +does not does d do doe does BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 9 ,), 3 9 0 0 0 0 1 +is a is i is is is BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 9 no 0 9 0 0 0 0 1 +one that one o on one one BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 9 . 1 9 0 0 0 0 1 +Instead, if instead, I In Ins Inst BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 9 ,, 2 8 0 0 0 0 1 +potential for potential p po pot pote BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 9 . 1 10 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 2 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 11 , 1 10 0 0 0 0 0 +[Page 115] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 2 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 2 0 no 0 4 0 0 0 0 1 +If the if I If If If BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 0 no 0 9 0 0 0 0 1 +file object, file f fi fil file BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 0 , 1 10 0 0 0 0 1 +the same the t th the the BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 0 . 1 6 0 0 0 0 1 +The mounted_on_fileid the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 1 , 1 10 0 0 0 0 1 +provide it provide p pr pro prov BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 1 ,-, 3 8 0 0 0 0 1 +straightforward. Usually, straightforward. s st str stra BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 1 ., 2 10 0 0 0 0 1 +a READDIR a a a a a BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 1 0 0 0 0 0 2 1 ,(- 3 9 0 0 0 0 1 +based servers) based b ba bas base BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 1 ) 1 9 0 0 0 0 1 +fileid of fileid f fi fil file BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 1 (). 3 7 0 0 0 0 1 +mounted_on_fileid is mounted_on_fileid m mo mou moun BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 1 , 1 9 0 0 0 0 1 +should obey should s sh sho shou BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 1 no 0 10 0 0 0 0 1 +to the to t to to to BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 1 '',.., 6 9 0 0 0 0 1 +what readdir() what w wh wha what BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 1 (). 3 9 0 0 0 0 1 +allow a allow a al all allo BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 1 no 0 9 0 0 0 0 1 +single mount single s si sin sing BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 1 ., 2 8 0 0 0 0 1 +aforementioned invariant, aforementioned a af afo afor BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 1 ,, 2 10 0 0 0 0 1 +and not and a an and and BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 1 . 1 5 0 0 0 0 1 +5.8.2.24. Attribute 5.8.2.24. 5 5. 5.8 5.8. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 6 ....: 5 10 0 0 0 0 1 +If this if I If If If BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 6 , 1 10 0 0 0 0 1 +than name_max, than t th tha than BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 6 , 1 9 0 0 0 0 1 +truncated. truncated. truncated. t tr tru trun BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 6 . 1 1 0 0 0 0 1 +5.8.2.25. Attribute 5.8.2.25. 5 5. 5.8 5.8. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 7 ....: 5 10 0 0 0 0 1 +Number of number N Nu Num Numb BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 8 . 1 10 0 0 0 0 1 +5.8.2.26. Attribute 5.8.2.26. 5 5. 5.8 5.8. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 8 ....: 5 10 0 0 0 0 1 +The string the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 8 . 1 10 0 0 0 0 1 +5.8.2.27. Attribute 5.8.2.27. 5 5. 5.8 5.8. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 9 ....: 5 10 0 0 0 0 1 +The string the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 9 . 1 10 0 0 0 0 1 +5.8.2.28. Attribute 5.8.2.28. 5 5. 5.8 5.8. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 9 ....: 5 10 0 0 0 0 1 +The value the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 10 no 0 9 0 0 0 0 1 +space beyond space s sp spa spac BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 10 no 0 9 0 0 0 0 1 +file or file f fi fil file BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 10 . 1 10 0 0 0 0 1 +understood that understood u un und unde BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 10 no 0 9 0 0 0 0 1 +files or files f fi fil file BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 10 . 1 3 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 2 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 11 , 1 10 0 0 0 0 0 +[Page 116] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 2 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 2 0 no 0 4 0 0 0 0 1 +5.8.2.29. Attribute 5.8.2.29. 5 5. 5.8 5.8. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 0 ....: 5 10 0 0 0 0 1 +The value the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 0 no 0 9 0 0 0 0 1 +space that space s sp spa spac BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 0 no 0 10 0 0 0 0 1 +may reasonably may m ma may may BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 1 0 0 2 0 . 1 9 0 0 0 0 1 +consumed by consumed c co con cons BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 0 no 0 10 0 0 0 0 1 +a rule a a a a a BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 1 0 0 0 0 0 2 0 . 1 6 0 0 0 0 1 +5.8.2.30. Attribute 5.8.2.30. 5 5. 5.8 5.8. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 2 ....: 5 10 0 0 0 0 1 +The value the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 2 no 0 10 0 0 0 0 1 +this file this t th thi this BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 2 no 0 10 0 0 0 0 1 +or directories, or o or or or BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 2 ,"" 3 9 0 0 0 0 1 +criterion that criterion c cr cri crit BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 2 no 0 10 0 0 0 0 1 +will reduce will w wi wil will BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 2 2 "" 2 10 0 0 0 0 1 +in the in i in in in BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 2 2 . 1 1 0 0 0 0 1 +Note that note N No Not Note BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 4 no 0 9 0 0 0 0 1 +files or files f fi fil file BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 4 , 1 9 0 0 0 0 1 +e.g., "all e.g., e e. e.g e.g. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 4 ..,""," 7 9 0 0 0 0 1 +owner", etc. owner", o ow own owne BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 4 ",. 3 9 0 0 0 0 1 +when providing when w wh whe when BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 4 , 1 10 0 0 0 0 1 +so in so s so so so BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 2 4 . 1 9 0 0 0 0 1 +or may or o or or or BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 4 "". 3 7 0 0 0 0 1 +5.8.2.31. Attribute 5.8.2.31. 5 5. 5.8 5.8. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 7 ....: 5 10 0 0 0 0 1 +Raw device raw R Ra Raw Raw BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 7 . 1 9 0 0 0 0 1 +number is number n nu num numb BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 7 .' 2 9 0 0 0 0 1 +attribute is attribute a at att attr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 7 , 1 10 0 0 0 0 1 +considered useful. considered c co con cons BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 7 . 1 2 0 0 0 0 1 +5.8.2.32. Attribute 5.8.2.32. 5 5. 5.8 5.8. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 9 ....: 5 10 0 0 0 0 1 +Disk space disk D Di Dis Disk BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 9 no 0 8 0 0 0 0 1 +containing this containing c co con cont BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 9 --. 3 10 0 0 0 0 1 +5.8.2.33. Attribute 5.8.2.33. 5 5. 5.8 5.8. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 10 ....: 5 10 0 0 0 0 1 +Free disk free F Fr Fre Free BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 2 10 -- 2 10 0 0 0 0 1 +this should this t th thi this BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 10 . 1 6 0 0 0 0 1 +5.8.2.34. Attribute 5.8.2.34. 5 5. 5.8 5.8. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 10 ....: 5 10 0 0 0 0 1 +Total disk total T To Tot Tota BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 11 . 1 10 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 2 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 11 , 1 10 0 0 0 0 0 +[Page 117] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 2 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 2 0 no 0 4 0 0 0 0 1 +5.8.2.35. Attribute 5.8.2.35. 5 5. 5.8 5.8. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 0 ....: 5 10 0 0 0 0 1 +Number of number N Nu Num Numb BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 0 . 1 10 0 0 0 0 1 +5.8.2.36. Attribute 5.8.2.36. 5 5. 5.8 5.8. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 1 ....: 5 10 0 0 0 0 1 +This attribute this T Th Thi This BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 1 "" 2 10 0 0 0 0 1 +to the to t to to to BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 1 . 1 5 0 0 0 0 1 +5.8.2.37. Attribute 5.8.2.37. 5 5. 5.8 5.8. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 2 ....: 5 10 0 0 0 0 1 +The time_access the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 2 no 0 9 0 0 0 0 1 +object by object o ob obj obje BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 2 . 1 10 0 0 0 0 1 +an "access" an a an an an BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 2 2 ""'/ 4 10 0 0 0 0 1 +server's file server's s se ser serv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 2 '., 3 9 0 0 0 0 1 +Portable Operating portable P Po Por Port BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 2 (), 3 9 0 0 0 0 1 +would be would w wo wou woul BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 2 no 0 10 0 0 0 0 1 +of the of o of of of BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 2 [],[], 6 9 0 0 0 0 1 +[15]. Of [15]. [ [1 [15 [15] BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 2 []., 4 10 0 0 0 0 1 +is another is i is is is BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 2 . 1 7 0 0 0 0 1 +Whenever the whenever W Wh Whe When BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 5 , 1 9 0 0 0 0 1 +server should server s se ser serv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 5 no 0 10 0 0 0 0 1 +storage. However, storage. s st sto stor BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 5 .,, 3 9 0 0 0 0 1 +and most and a an and and BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 5 no 0 10 0 0 0 0 1 +object's content object's o ob obj obje BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 5 ', 2 9 0 0 0 0 1 +updates and updates u up upd upda BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 5 . 1 8 0 0 0 0 1 +acceptable to acceptable a ac acc acce BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 5 no 0 10 0 0 0 0 1 +time_access updates. time_access t ti tim time BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 5 . 1 3 0 0 0 0 1 +5.8.2.38. Attribute 5.8.2.38. 5 5. 5.8 5.8. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 8 ....: 5 10 0 0 0 0 1 +Sets the sets S Se Set Sets BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 9 .. 2 10 0 0 0 0 1 +5.8.2.39. Attribute 5.8.2.39. 5 5. 5.8 5.8. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 9 ....: 5 10 0 0 0 0 1 +The time the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 9 . 1 10 0 0 0 0 1 +5.8.2.40. Attribute 5.8.2.40. 5 5. 5.8 5.8. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 10 ....: 5 10 0 0 0 0 1 +The time the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 10 . 1 10 0 0 0 0 1 +relation to relation r re rel rela BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 10 """ 3 9 0 0 0 0 1 +time". time". time". t ti tim time BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 10 ". 2 1 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 2 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 11 , 1 10 0 0 0 0 0 +[Page 118] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 2 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 2 0 no 0 4 0 0 0 0 1 +5.8.2.41. Attribute 5.8.2.41. 5 5. 5.8 5.8. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 0 ....: 5 10 0 0 0 0 1 +Smallest useful smallest S Sm Sma Smal BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 0 . 1 10 0 0 0 0 1 +5.8.2.42. Attribute 5.8.2.42. 5 5. 5.8 5.8. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 0 ....: 5 10 0 0 0 0 1 +The time the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 0 . 1 10 0 0 0 0 1 +5.8.2.43. Attribute 5.8.2.43. 5 5. 5.8 5.8. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 1 ....: 5 10 0 0 0 0 1 +The time the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 1 . 1 10 0 0 0 0 1 +5.8.2.44. Attribute 5.8.2.44. 5 5. 5.8 5.8. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 1 ....: 5 10 0 0 0 0 1 +Sets the sets S Se Set Sets BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 2 .. 2 10 0 0 0 0 1 +5.9. Interpreting 5.9. 5 5. 5.9 5.9. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 2 .. 2 10 0 0 0 0 1 +The RECOMMENDED the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 2 """"( 5 9 0 0 0 0 1 +and groups and a an and and BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 2 "") 3 9 0 0 0 0 1 +UTF-8 string. utf-8 U UT UTF UTF- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 2 -. 2 9 0 0 0 0 1 +underlying implementation underlying u un und unde BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 2 , 1 9 0 0 0 0 1 +UTF-8 string utf-8 U UT UTF UTF- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 2 -..[] 5 9 0 0 0 0 1 +provides additional provides p pr pro prov BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 2 . 1 9 0 0 0 0 1 +server will server s se ser serv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 2 no 0 8 0 0 0 0 1 +owner_group that owner_group o ow own owne BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 2 no 0 10 0 0 0 0 1 +user. Therefore, user. u us use user BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 2 ., 2 9 0 0 0 0 1 +transferred between transferred t tr tra tran BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 2 , 1 9 0 0 0 0 1 +is translated is i is is is BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 2 "". 3 9 0 0 0 0 1 +allow for allow a al all allo BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 2 no 0 8 0 0 0 0 1 +representation the representation r re rep repr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 2 no 0 9 0 0 0 0 1 +be interpreted be b be be be BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 2 . 1 3 0 0 0 0 1 +Similarly, security similarly, S Si Sim Simi BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 7 , 1 9 0 0 0 0 1 +by different by b by by by BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 7 . 1 9 0 0 0 0 1 +representations into representations r re rep repr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 7 , 1 9 0 0 0 0 1 +storage, to storage, s st sto stor BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 7 , 1 9 0 0 0 0 1 +to these to t to to to BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 7 . 1 9 0 0 0 0 1 +translated to translated t tr tra tran BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 7 , 1 10 0 0 0 0 1 +created by created c cr cre crea BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 7 ,,, 3 9 0 0 0 0 1 +users associated users u us use user BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 7 . 1 10 0 0 0 0 1 +The translation the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 9 no 0 9 0 0 0 0 1 +specified as specified s sp spe spec BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 9 . 1 9 0 0 0 0 1 +be employed. be b be be be BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 9 ., 2 10 0 0 0 0 1 +that maps that t th tha that BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 9 . 1 10 0 0 0 0 1 +service may service s se ser serv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 9 . 1 10 0 0 0 0 1 +provide a provide p pr pro prov BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 9 , 1 8 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 2 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 11 , 1 10 0 0 0 0 0 +[Page 119] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 2 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 2 0 no 0 4 0 0 0 0 1 +translation (which translation t tr tra tran BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 0 ( 1 10 0 0 0 0 1 +strings) by strings) s st str stri BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 0 ) 1 10 0 0 0 0 1 +storage without storage s st sto stor BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 0 no 0 9 0 0 0 0 1 +method by method m me met meth BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 0 no 0 9 0 0 0 0 1 +translation is translation t tr tra tran BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 0 no 0 10 0 0 0 0 1 +those cases those t th tho thos BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 0 . 1 7 0 0 0 0 1 +Servers that servers S Se Ser Serv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 2 1 no 0 9 0 0 0 0 1 +owner and owner o ow own owne BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 1 no 0 8 0 0 0 0 1 +(NFS4ERR_BADOWNER) when (nfs4err_badowner) ( (N (NF (NFS BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 1 () 2 8 0 0 0 0 1 +translation, as translation, t tr tra tran BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 1 ,, 2 9 0 0 0 0 1 +owner_group, or owner_group, o ow own owne BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 1 ,. 2 9 0 0 0 0 1 +or owner_group or o or or or BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 1 ( 1 9 0 0 0 0 1 +owner and owner o ow own owne BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 1 ), 2 9 0 0 0 0 1 +same string same s sa sam same BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 1 . 1 9 0 0 0 0 1 +changes (including changes c ch cha chan BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 2 1 ( 1 9 0 0 0 0 1 +local representation) local l lo loc loca BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 1 )-( 3 9 0 0 0 0 1 +that contain that t th tha that BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 1 ). 2 9 0 0 0 0 1 +Servers should servers S Se Ser Serv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 2 1 no 0 10 0 0 0 0 1 +these attributes these t th the thes BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 1 no 0 9 0 0 0 0 1 +ownership has ownership o ow own owne BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 1 . 1 3 0 0 0 0 1 +The "dns_domain" the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 5 "" 2 9 0 0 0 0 1 +domain name, domain d do dom doma BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 5 ,,.. 4 10 0 0 0 0 1 +valid a valid v va val vali BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 5 . 1 9 0 0 0 0 1 +other domains other o ot oth othe BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 5 . 1 8 0 0 0 0 1 +service is service s se ser serv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 5 no 0 9 0 0 0 0 1 +multiple domains, multiple m mu mul mult BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 5 ,, 2 8 0 0 0 0 1 +constraints. constraints. constraints. c co con cons BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 5 . 1 1 0 0 0 0 1 +In the in I In In In BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 2 7 no 0 10 0 0 0 0 1 +server, the server, s se ser serv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 7 ,"". 4 9 0 0 0 0 1 +Therefore, the therefore, T Th The Ther BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 7 , 1 8 0 0 0 0 1 +attribute signifies attribute a at att attr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 7 no 0 9 0 0 0 0 1 +and that and a an and and BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 7 no 0 10 0 0 0 0 1 +a basis a a a a a BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 1 0 0 0 0 0 2 7 . 1 9 0 0 0 0 1 +the attribute the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 7 ,. 2 10 0 0 0 0 1 +the case the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 7 , 1 9 0 0 0 0 1 +display of display d di dis disp BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 7 . 1 3 0 0 0 0 1 +To provide to T To To To BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 9 , 1 9 0 0 0 0 1 +identified users identified i id ide iden BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 9 - 1 9 0 0 0 0 1 +group identifiers, group g gr gro grou BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 9 , 1 9 0 0 0 0 1 +numeric values numeric n nu num nume BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 9 no 0 8 0 0 0 0 1 +interpretation by interpretation i in int inte BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 9 no 0 9 0 0 0 0 1 +support. The support. s su sup supp BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 9 . 1 9 0 0 0 0 1 +representing the representing r re rep repr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 9 no 0 10 0 0 0 0 1 +gid having gid g gi gid gid BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 9 . 1 8 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 2 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 11 , 1 10 0 0 0 0 0 +[Page 120] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 2 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 2 0 no 0 4 0 0 0 0 1 +obligated to obligated o ob obl obli BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 0 , 1 10 0 0 0 0 1 +instead. To instead. i in ins inst BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 0 . 1 9 0 0 0 0 1 +group translation, group g gr gro grou BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 0 , 1 9 0 0 0 0 1 +groups in groups g gr gro grou BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 0 , 1 9 0 0 0 0 1 +error when error e er err erro BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 0 no 0 8 0 0 0 0 1 +designated in designated d de des desi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 0 ., 2 8 0 0 0 0 1 +appropriate name@domain appropriate a ap app appr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 0 no 0 8 0 0 0 0 1 +compatibility. compatibility. compatibility. c co com comp BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 0 . 1 2 0 0 0 0 1 +The owner the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 2 "", 3 10 0 0 0 0 1 +which will which w wh whi whic BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 2 no 0 9 0 0 0 0 1 +that cannot that t th tha that BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 2 . 1 9 0 0 0 0 1 +Users and users U Us Use User BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 2 ."" 3 9 0 0 0 0 1 +designate a designate d de des desi BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 2 . 1 7 0 0 0 0 1 +5.10. Character 5.10. 5 5. 5.1 5.10 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 4 .. 2 10 0 0 0 0 1 +With respect with W Wi Wit With BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 4 , 1 9 0 0 0 0 1 +each UCS-4 each e ea eac each BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 4 -(-) 4 10 0 0 0 0 1 +Appendix B.2 appendix A Ap App Appe BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 4 .[]. 4 9 0 0 0 0 1 +internationalization issues, internationalization i in int inte BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 4 ,. 2 6 0 0 0 0 1 +5.11. Directory 5.11. 5 5. 5.1 5.11 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 6 .. 2 10 0 0 0 0 1 +As described as A As As As BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 6 ., 2 10 0 0 0 0 1 +for notifications for f fo for for BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 6 , 1 10 0 0 0 0 1 +ignore what ignore i ig ign igno BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 6 . 1 9 0 0 0 0 1 +what notification what w wh wha what BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 6 no 0 9 0 0 0 0 1 +operation for operation o op ope oper BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 6 no 0 8 0 0 0 0 1 +attributes. When attributes. a at att attr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 6 . 1 9 0 0 0 0 1 +and asks and a an and and BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 6 , 1 9 0 0 0 0 1 +notification delays notification n no not noti BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 6 - 1 9 0 0 0 0 1 +provided attributes. provided p pr pro prov BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 6 . 1 3 0 0 0 0 1 +5.11.1. Attribute 5.11.1. 5 5. 5.1 5.11 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 9 ...: 4 10 0 0 0 0 1 +The dir_notif_delay the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 9 no 0 10 0 0 0 0 1 +server will server s se ser serv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 9 no 0 9 0 0 0 0 1 +directory's attributes. directory's d di dir dire BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 9 '. 2 3 0 0 0 0 1 +5.11.2. Attribute 5.11.2. 5 5. 5.1 5.11 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 10 ...: 4 10 0 0 0 0 1 +The dirent_notif_delay the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 10 no 0 10 0 0 0 0 1 +server will server s se ser serv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 10 no 0 9 0 0 0 0 1 +object that object o ob obj obje BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 10 . 1 6 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 2 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 11 , 1 10 0 0 0 0 0 +[Page 121] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 2 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 2 0 no 0 4 0 0 0 0 1 +5.12. pNFS 5.12. 5 5. 5.1 5.12 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 0 .. 2 10 0 0 0 0 1 +5.12.1. Attribute 5.12.1. 5 5. 5.1 5.12 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 0 ...: 4 10 0 0 0 0 1 +The fs_layout_type the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 0 (..) 4 9 0 0 0 0 1 +system and system s sy sys syst BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 0 no 0 9 0 0 0 0 1 +system. When system. s sy sys syst BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 0 ., 2 9 0 0 0 0 1 +obtain the obtain o ob obt obta BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 0 no 0 10 0 0 0 0 1 +new file new n ne new new BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 0 . 1 9 0 0 0 0 1 +if the if i if if if BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 0 ' 1 10 0 0 0 0 1 +supported layout supported s su sup supp BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 0 . 1 3 0 0 0 0 1 +5.12.2. Attribute 5.12.2. 5 5. 5.1 5.12 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 3 ...: 4 10 0 0 0 0 1 +When a when W Wh Whe When BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 3 , 1 8 0 0 0 0 1 +layout_alignment attribute layout_alignment l la lay layo BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 3 / 1 10 0 0 0 0 1 +to files to t to to to BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 3 ., 2 10 0 0 0 0 1 +READ and read R RE REA READ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 1 1 0 0 0 0 0 2 3 no 0 9 0 0 0 0 1 +the layout_alignment the t th the the BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 3 . 1 4 0 0 0 0 1 +5.12.3. Attribute 5.12.3. 5 5. 5.1 5.12 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 4 ...: 4 10 0 0 0 0 1 +When a when W Wh Whe When BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 5 , 1 8 0 0 0 0 1 +layout_blksize attribute layout_blksize l la lay layo BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 5 / 1 9 0 0 0 0 1 +to files to t to to to BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 5 ., 2 10 0 0 0 0 1 +READ operations read R RE REA READ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 1 1 0 0 0 0 0 2 5 no 0 9 0 0 0 0 1 +layout_blksize, and layout_blksize, l la lay layo BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 5 , 1 9 0 0 0 0 1 +that is that t th tha that BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 5 . 1 6 0 0 0 0 1 +5.12.4. Attribute 5.12.4. 5 5. 5.1 5.12 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 7 ...: 4 10 0 0 0 0 1 +The layout_hint the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 7 (..) 4 9 0 0 0 0 1 +created files created c cr cre crea BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 7 ' 1 9 0 0 0 0 1 +file's layout. file's f fi fil file BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 7 '., 3 9 0 0 0 0 1 +the initial the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 7 . 1 9 0 0 0 0 1 +server may server s se ser serv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 7 . 1 8 0 0 0 0 1 +attribute is attribute a at att attr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 7 . 1 10 0 0 0 0 1 +For example, for F Fo For For BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 7 ,, 2 10 0 0 0 0 1 +used to used u us use used BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 7 . 1 7 0 0 0 0 1 +implementation determines implementation i im imp impl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 7 no 0 9 0 0 0 0 1 +used. used. used. u us use used BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 7 . 1 0 0 0 0 0 1 +5.12.5. Attribute 5.12.5. 5 5. 5.1 5.12 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 10 ...: 4 10 0 0 0 0 1 +This attribute this T Th Thi This BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 10 (). 3 9 0 0 0 0 1 +value returned value v va val valu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 10 . 1 10 0 0 0 0 1 +client will client c cl cli clie BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 10 no 0 9 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 2 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 11 , 1 10 0 0 0 0 0 +[Page 122] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 2 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 2 0 no 0 4 0 0 0 0 1 +needed in needed n ne nee need BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 0 /,, 3 10 0 0 0 0 1 +information for information i in inf info BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 0 . 1 6 0 0 0 0 1 +5.12.6. Attribute 5.12.6. 5 5. 5.1 5.12 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 0 ...: 4 10 0 0 0 0 1 +This attribute this T Th Thi This BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 1 - 1 9 0 0 0 0 1 +client when client c cl cli clie BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 1 no 0 10 0 0 0 0 1 +the metadata the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 1 . 1 9 0 0 0 0 1 +described are described d de des desc BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 1 /. 2 9 0 0 0 0 1 +file's size file's f fi fil file BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 1 ', 2 9 0 0 0 0 1 +SHOULD be should S SH SHO SHOU BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 2 1 ./ 2 9 0 0 0 0 1 +length that length l le len leng BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 1 /,/ 3 9 0 0 0 0 1 +to the to t to to to BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 1 . 1 9 0 0 0 0 1 +for read for f fo for for BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 1 . 1 2 0 0 0 0 1 +The server the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 3 . 1 10 0 0 0 0 1 +file size file f fi fil file BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 3 /, 2 9 0 0 0 0 1 +exceed both exceed e ex exc exce BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 3 no 0 10 0 0 0 0 1 +the data the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 3 ., 2 8 0 0 0 0 1 +thresholds is thresholds t th thr thre BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 3 ,/ 2 10 0 0 0 0 1 +metadata server. metadata m me met meta BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 3 . 1 2 0 0 0 0 1 +For each for F Fo For For BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 5 , 1 10 0 0 0 0 1 +should be should s sh sho shou BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 5 , 1 9 0 0 0 0 1 +indicates that indicates i in ind indi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 5 no 0 9 0 0 0 0 1 +server. server. server. s se ser serv BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 5 . 1 1 0 0 0 0 1 +The attribute the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 6 -. 2 10 0 0 0 0 1 +filehandle refers filehandle f fi fil file BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 6 -, 2 9 0 0 0 0 1 +server should server s se ser serv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 6 no 0 9 0 0 0 0 1 +filehandle's file filehandle's f fi fil file BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 6 '. 2 9 0 0 0 0 1 +queried as queried q qu que quer BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 6 . 1 8 0 0 0 0 1 +changes, the changes, c ch cha chan BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 6 , 1 10 0 0 0 0 1 +constant for constant c co con cons BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 6 ;, 2 8 0 0 0 0 1 +periodically refreshed. periodically p pe per peri BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 6 . 1 3 0 0 0 0 1 +5.13. Retention 5.13. 5 5. 5.1 5.13 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 9 .. 2 10 0 0 0 0 1 +Retention is retention R Re Ret Rete BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 9 no 0 9 0 0 0 0 1 +immutable, undeletable, immutable, i im imm immu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 9 ,, 2 9 0 0 0 0 1 +duration of duration d du dur dura BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 9 ."", 4 10 0 0 0 0 1 +moved out moved m mo mov move BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 9 no 0 9 0 0 0 0 1 +reached. reached. reached. r re rea reac BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 9 . 1 1 0 0 0 0 1 +When retention when W Wh Whe When BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 10 , 1 10 0 0 0 0 1 +file, and file, f fi fil file BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 10 ,. 2 9 0 0 0 0 1 +other property other o ot oth othe BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 10 ,, 2 9 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 2 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 11 , 1 10 0 0 0 0 0 +[Page 123] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 2 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 2 0 no 0 4 0 0 0 0 1 +RECOMMENDED, and recommended, R RE REC RECO BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 2 0 ,, 2 10 0 0 0 0 1 +section. section. section. s se sec sect BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 0 . 1 1 0 0 0 0 1 +Servers MAY servers S Se Ser Serv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 2 0 . 1 10 0 0 0 0 1 +The five the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 1 . 1 10 0 0 0 0 1 +5.13.1. Attribute 5.13.1. 5 5. 5.1 5.13 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 1 ...: 4 10 0 0 0 0 1 +If retention if I If If If BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 1 ,' 2 9 0 0 0 0 1 +value represents value v va val valu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 1 . 1 10 0 0 0 0 1 +attribute's value attribute's a at att attr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 1 ' 1 9 0 0 0 0 1 +MUST NOT must M MU MUS MUST BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 2 1 (.). 4 9 0 0 0 0 1 +value of value v va val valu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 1 : 1 5 0 0 0 0 1 +const RET4_DURATION_INFINITE const c co con cons BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 3 no 0 10 0 0 0 0 1 += 0xffffffffffffffff; = = = = = BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 3 ; 1 7 0 0 0 0 1 +struct retention_get4 struct s st str stru BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 3 no 0 8 0 0 0 0 1 +uint64_t uint64_t uint64_t u ui uin uint BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 3 no 0 3 0 0 0 0 1 +rg_duration; rg_duration; rg_duration; r rg rg_ rg_d BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 3 ; 1 4 0 0 0 0 1 +nfstime4 nfstime4 nfstime4 n nf nfs nfst BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 3 no 0 3 0 0 0 0 1 +rg_begin_time<1>; rg_begin_time<1>; rg_begin_time<1>; r rg rg_ rg_b BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 3 ; 1 6 0 0 0 0 1 +}; }; }; } }; }; }; BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 2 3 ; 1 1 0 0 0 0 1 +The field the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 4 no 0 10 0 0 0 0 1 +the file the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 4 . 1 9 0 0 0 0 1 +rg_begin_time is rg_begin_time r rg rg_ rg_b BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 4 . 1 9 0 0 0 0 1 +array is array a ar arr arra BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 4 , 1 8 0 0 0 0 1 +established, and established, e es est esta BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 4 ,. 2 9 0 0 0 0 1 +to RET4_DURATION_INFINITE, to t to to to BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 4 ,,, 3 10 0 0 0 0 1 +be retained be b be be be BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 4 . 1 5 0 0 0 0 1 +If (as if I If If If BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 6 (), 3 10 0 0 0 0 1 +zero length, zero z ze zer zero BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 6 ,,(). 5 9 0 0 0 0 1 +5.13.2. Attribute 5.13.2. 5 5. 5.1 5.13 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 7 ...: 4 10 0 0 0 0 1 +This attribute this T Th Thi This BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 8 no 0 10 0 0 0 0 1 +enable retention enable e en ena enab BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 8 . 1 9 0 0 0 0 1 +only modifiable only o on onl only BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 8 no 0 10 0 0 0 0 1 +by the by b by by by BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 8 (.). 4 9 0 0 0 0 1 +to retention_get. to t to to to BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 8 .: 2 8 0 0 0 0 1 +struct retention_set4 struct s st str stru BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 9 no 0 10 0 0 0 0 1 +bool bool bool b bo boo bool BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 9 no 0 2 0 0 0 0 1 +rs_enable; rs_enable; rs_enable; r rs rs_ rs_e BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 9 ; 1 4 0 0 0 0 1 +uint64_t uint64_t uint64_t u ui uin uint BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 9 no 0 3 0 0 0 0 1 +rs_duration<1>; rs_duration<1>; rs_duration<1>; r rs rs_ rs_d BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 9 ; 1 6 0 0 0 0 1 +}; }; }; } }; }; }; BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 2 9 ; 1 1 0 0 0 0 1 +If the if I If If If BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 10 , 1 9 0 0 0 0 1 +on the on o on on on BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 10 no 0 10 0 0 0 0 1 +server's current server's s se ser serv BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 10 '. 2 9 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 2 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 11 , 1 10 0 0 0 0 0 +[Page 124] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 2 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 2 0 no 0 4 0 0 0 0 1 +also be also a al als also BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 0 . 1 9 0 0 0 0 1 +duration is duration d du dur dura BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 0 , 1 10 0 0 0 0 1 +if set if i if if if BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 0 ,. 2 10 0 0 0 0 1 +If retention if I If If If BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 0 , 1 9 0 0 0 0 1 +SETATTR or setattr S SE SET SETA BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 2 0 ,. 2 10 0 0 0 0 1 +The server the T Th The The BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 0 no 0 9 0 0 0 0 1 +retention on retention r re ret rete BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 0 . 1 9 0 0 0 0 1 +The enabling the T Th The The BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 0 - 1 9 0 0 0 0 1 +based retention based b ba bas base BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 0 . 1 9 0 0 0 0 1 +The following the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 3 no 0 10 0 0 0 0 1 +attributes. attributes. attributes. a at att attr BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 3 . 1 1 0 0 0 0 1 +o As o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 2 3 , 1 10 0 0 0 0 1 +decrease the decrease d de dec decr BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 3 . 1 3 0 0 0 0 1 +o The o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 2 4 , 1 10 0 0 0 0 1 +if retention if i if if if BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 4 ., 2 9 0 0 0 0 1 +actual duration actual a ac act actu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 4 ( 1 10 0 0 0 0 1 +attributes; see attributes; a at att attr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 4 ;....) 6 9 0 0 0 0 1 +counting down counting c co cou coun BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 4 (), 3 9 0 0 0 0 1 +was set was w wa was was BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 4 ., 2 9 0 0 0 0 1 +for the for f fo for for BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 4 no 0 10 0 0 0 0 1 +retention enabled. retention r re ret rete BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 4 . 1 2 0 0 0 0 1 +o While o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 2 6 , 1 10 0 0 0 0 1 +decrease the decrease d de dec decr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 6 ' 1 9 0 0 0 0 1 +NFS4ERR_INVAL. NFS4ERR_INVAL. nfs4err_inval. N NF NFS NFS4 BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 6 . 1 2 0 0 0 0 1 +o If o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 2 7 no 0 8 0 0 0 0 1 +retentevt_set does retentevt_set r re ret rete BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 7 , 1 10 0 0 0 0 1 +attempt MUST attempt a at att atte BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 7 . 1 5 0 0 0 0 1 +5.13.3. Attribute 5.13.3. 5 5. 5.1 5.13 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 8 ...: 4 10 0 0 0 0 1 +Gets the gets G Ge Get Gets BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 8 -,,- 4 10 0 0 0 0 1 +based retention based b ba bas base BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 8 . 1 9 0 0 0 0 1 +like retention_get, like l li lik like BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 8 ,-. 3 10 0 0 0 0 1 +that triggers that t th tha that BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 8 -. 2 9 0 0 0 0 1 +specification. specification. specification. s sp spe spec BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 8 . 1 2 0 0 0 0 1 +5.13.4. Attribute 5.13.4. 5 5. 5.1 5.13 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 9 ...: 4 10 0 0 0 0 1 +Sets the sets S Se Set Sets BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 10 -, 2 9 0 0 0 0 1 +event-based retention event-based e ev eve even BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 10 -. 2 9 0 0 0 0 1 +to retentevt_get to t to to to BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 10 ,- 2 10 0 0 0 0 1 +retention. When retention. r re ret rete BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 10 .-, 3 9 0 0 0 0 1 +retained even retained r re ret reta BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 10 --, 3 9 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 2 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 11 , 1 10 0 0 0 0 0 +[Page 125] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 2 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 2 0 no 0 4 0 0 0 0 1 +duration of duration d du dur dura BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 0 --., 4 9 0 0 0 0 1 +when non-event-based when w wh whe when BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 0 --, 3 8 0 0 0 0 1 +retained even retained r re ret reta BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 0 -, 2 10 0 0 0 0 1 +of event-based of o of of of BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 0 -. 2 9 0 0 0 0 1 +the enabling the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 0 -- 2 9 0 0 0 0 1 +retention on retention r re ret rete BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 0 . 1 9 0 0 0 0 1 +The enabling the T Th The The BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 0 - 1 9 0 0 0 0 1 +of non-event-based of o of of of BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 0 -- 2 8 0 0 0 0 1 +retention_hold attribute. retention_hold r re ret rete BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 0 . 1 3 0 0 0 0 1 +5.13.5. Attribute 5.13.5. 5 5. 5.1 5.13 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 3 ...: 4 10 0 0 0 0 1 +Gets or gets G Ge Get Gets BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 3 , 1 10 0 0 0 0 1 +position. position. position. p po pos posi BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 3 . 1 1 0 0 0 0 1 +This attribute this T Th Thi This BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 4 , 1 9 0 0 0 0 1 +bit on bit b bi bit bit BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 4 ., 2 9 0 0 0 0 1 +MUST NOT must M MU MUS MUST BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 2 4 ,,, 3 9 0 0 0 0 1 +enabled event enabled e en ena enab BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 4 --. 3 9 0 0 0 0 1 +server MAY server s se ser serv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 4 no 0 10 0 0 0 0 1 +of the of o of of of BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 4 . 1 9 0 0 0 0 1 +administration retention administration a ad adm admi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 2 4 no 0 9 0 0 0 0 1 +event-based or event-based e ev eve even BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 4 ---. 4 6 0 0 0 0 1 +If the if I If If If BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 6 no 0 10 0 0 0 0 1 +ACE4_WRITE_RETENTION_HOLD permissions, ace4_write_retention_hold A AC ACE ACE4 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 6 , 1 9 0 0 0 0 1 +NFS4ERR_ACCESS. NFS4ERR_ACCESS. nfs4err_access. N NF NFS NFS4 BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 6 . 1 2 0 0 0 0 1 +6. Access 6. 6 6. 6. 6. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 7 . 1 10 0 0 0 0 1 +Access Control access A Ac Acc Acce BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 7 ()- 3 9 0 0 0 0 1 +grained access grained g gr gra grai BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 7 ."","", 7 9 0 0 0 0 1 +"sacl", "aclsupport", "sacl", " "s "sa "sac BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 7 "","","","" 11 10 0 0 0 0 1 +and their and a an and and BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 7 . 1 9 0 0 0 0 1 +file system file f fi fil file BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 7 . 1 2 0 0 0 0 1 +6.1. Goals 6.1. 6 6. 6.1 6.1. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 9 .. 2 10 0 0 0 0 1 +ACLs and acls A AC ACL ACLs BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 2 9 - 1 10 0 0 0 0 1 +permissions. This permissions. p pe per perm BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 9 . 1 9 0 0 0 0 1 +meet the meet m me mee meet BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 9 : 1 3 0 0 0 0 1 +o If o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 2 10 , 1 9 0 0 0 0 1 +reasonable semantics reasonable r re rea reas BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 10 no 0 10 0 0 0 0 1 +mode attribute. mode m mo mod mode BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 10 . 1 2 0 0 0 0 1 +o If o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 2 10 , 1 10 0 0 0 0 1 +semantics to semantics s se sem sema BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 10 . 1 9 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 2 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 11 , 1 10 0 0 0 0 0 +[Page 126] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 2 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 2 0 no 0 4 0 0 0 0 1 +o On o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 2 0 , 1 10 0 0 0 0 1 +never been never n ne nev neve BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 0 ,, 2 9 0 0 0 0 1 +behavior should behavior b be beh beha BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 0 -. 2 7 0 0 0 0 1 +o On o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 2 1 , 1 10 0 0 0 0 1 +have been have h ha hav have BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 1 , 1 9 0 0 0 0 1 +inheritance: inheritance: inheritance: i in inh inhe BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 1 : 1 1 0 0 0 0 1 +* Setting * * * * * BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 2 * 1 10 0 0 0 0 1 +traditional UNIX-like traditional t tr tra trad BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 2 -,, 3 9 0 0 0 0 1 +on owner, on o on on on BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 2 ,,. 3 5 0 0 0 0 1 +* Setting * * * * * BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 2 * 1 9 0 0 0 0 1 +security. For security. s se sec secu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 2 ., 2 10 0 0 0 0 1 +to ensure to t to to to BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 2 no 0 6 0 0 0 0 1 +OPEN4_SHARE_ACCESS_READ or open4_share_access_read O OP OPE OPEN BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 2 no 0 9 0 0 0 0 1 +principal fail, principal p pr pri prin BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 2 , 1 8 0 0 0 0 1 +inherited ACL. inherited i in inh inhe BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 2 . 1 2 0 0 0 0 1 +o NFSv4.1 o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 2 4 . 1 10 0 0 0 0 1 +ACL attributes, acl A AC ACL ACL BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 2 4 , 1 8 0 0 0 0 1 +existing implementations. existing e ex exi exis BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 4 ., 2 8 0 0 0 0 1 +clarifications based clarifications c cl cla clar BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 4 no 0 9 0 0 0 0 1 +around them. around a ar aro arou BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 4 . 1 1 0 0 0 0 1 +o On o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 2 5 no 0 9 0 0 0 0 1 +attributes, the attributes, a at att attr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 5 , 1 9 0 0 0 0 1 +other. The other. o ot oth othe BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 5 .( 2 10 0 0 0 0 1 +three high-order three t th thr thre BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 5 -..) 4 8 0 0 0 0 1 +determined entirely determined d de det dete BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 5 , 1 9 0 0 0 0 1 +mode is mode m mo mod mode BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 5 no 0 9 0 0 0 0 1 +high-order bits. high-order h hi hig high BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 5 -.... 5 8 0 0 0 0 1 +o When o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 2 7 , 1 10 0 0 0 0 1 +need to need n ne nee need BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 7 . 1 9 0 0 0 0 1 +In such in I In In In BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 2 7 , 1 8 0 0 0 0 1 +information as information i in inf info BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 7 . 1 8 0 0 0 0 1 +inheritance, AUDIT inheritance, i in inh inhe BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 7 ,, 2 9 0 0 0 0 1 +denied that denied d de den deni BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 7 . 1 6 0 0 0 0 1 +6.2. File 6.2. 6 6. 6.2 6.2. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 9 .. 2 10 0 0 0 0 1 +6.2.1. Attribute 6.2.1. 6 6. 6.2 6.2. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 9 ...: 4 10 0 0 0 0 1 +The NFSv4.1 the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 10 . 1 10 0 0 0 0 1 +(ACEs) that (aces) ( (A (AC (ACE BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 10 (). 3 9 0 0 0 0 1 +client can client c cl cli clie BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 10 , 1 9 0 0 0 0 1 +for using for f fo for for BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 10 . 1 9 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 2 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 11 , 1 10 0 0 0 0 0 +[Page 127] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 2 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 2 0 no 0 4 0 0 0 0 1 +OPEN or open O OP OPE OPEN BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 2 0 no 0 10 0 0 0 0 1 +reading data reading r re rea read BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 0 . 1 4 0 0 0 0 1 +The NFS the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 0 : 1 10 0 0 0 0 1 +typedef uint32_t typedef t ty typ type BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 1 no 0 10 0 0 0 0 1 +acetype4; acetype4; acetype4; a ac ace acet BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 1 ; 1 5 0 0 0 0 1 +typedef uint32_t typedef t ty typ type BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 1 ; 1 10 0 0 0 0 1 +typedef uint32_t typedef t ty typ type BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 1 no 0 10 0 0 0 0 1 +acemask4; acemask4; acemask4; a ac ace acem BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 1 ; 1 5 0 0 0 0 1 +struct nfsace4 struct s st str stru BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 1 no 0 10 0 0 0 0 1 +acetype4 acetype4 acetype4 a ac ace acet BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 1 no 0 5 0 0 0 0 1 +type; type; type; t ty typ type BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 1 ; 1 3 0 0 0 0 1 +aceflag4 aceflag4 aceflag4 a ac ace acef BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 1 no 0 5 0 0 0 0 1 +flag; flag; flag; f fl fla flag BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 1 ; 1 3 0 0 0 0 1 +acemask4 acemask4 acemask4 a ac ace acem BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 1 no 0 5 0 0 0 0 1 +access_mask; access_mask; access_mask; a ac acc acce BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 1 ; 1 7 0 0 0 0 1 +utf8str_mixed utf8str_mixed utf8str_mixed u ut utf utf8 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 1 no 0 8 0 0 0 0 1 +who; who; who; w wh who who; BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 1 ; 1 2 0 0 0 0 1 +}; }; }; } }; }; }; BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 2 1 ; 1 1 0 0 0 0 1 +To determine to T To To To BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 1 , 1 10 0 0 0 0 1 +entry in entry e en ent entr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 1 ."" 3 8 0 0 0 0 1 +requester are requester r re req requ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 1 . 1 9 0 0 0 0 1 +bits of bits b bi bit bits BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 1 '.( 3 9 0 0 0 0 1 +below) has below) b be bel belo BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 1 ), 2 9 0 0 0 0 1 +considered in considered c co con cons BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 1 . 1 9 0 0 0 0 1 +is encountered is i is is is BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 1 ' 1 9 0 0 0 0 1 +in common in i in in in BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 2 1 "",. 4 9 0 0 0 0 1 +When the when W Wh Whe When BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 1 ,' 2 10 0 0 0 0 1 +mask that mask m ma mas mask BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 1 ,. 2 8 0 0 0 0 1 +Unlike the unlike U Un Unl Unli BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 5 , 1 10 0 0 0 0 1 +not affect not n no not not BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 5 ', 2 9 0 0 0 0 1 +events as events e ev eve even BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 2 5 '., 3 9 0 0 0 0 1 +and ALARM and a an and and BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 5 no 0 9 0 0 0 0 1 +ACEs. ACEs. aces. A AC ACE ACEs BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 5 . 1 0 0 0 0 0 1 +The NFSv4.1 the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 7 .. 2 9 0 0 0 0 1 +provide access-control provide p pr pro prov BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 7 -- 2 9 0 0 0 0 1 +mode attribute, mode m mo mod mode BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 7 ,. 2 9 0 0 0 0 1 +that users that t th tha that BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 7 , 1 10 0 0 0 0 1 +server may server s se ser serv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 7 no 0 9 0 0 0 0 1 +model and model m mo mod mode BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 7 .. 2 9 0 0 0 0 1 +they actually they t th the they BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 7 no 0 10 0 0 0 0 1 +that was that t th tha that BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 7 . 1 9 0 0 0 0 1 +that falls that t th tha that BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 7 . 1 9 0 0 0 0 1 +However, such however, H Ho How Howe BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 7 , 1 9 0 0 0 0 1 +client-side knowledge client-side c cl cli clie BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 7 -', 3 9 0 0 0 0 1 +purpose of purpose p pu pur purp BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 7 ., 2 9 0 0 0 0 1 +should accept should s sh sho shou BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 7 . 1 9 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 2 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 11 , 1 10 0 0 0 0 0 +[Page 128] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 2 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 2 0 no 0 4 0 0 0 0 1 +To help to T To To To BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 0 ,, 2 10 0 0 0 0 1 +case of case c ca cas case BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 2 0 , 1 9 0 0 0 0 1 +ALLOWED or allowed A AL ALL ALLO BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 2 0 .,- 3 9 0 0 0 0 1 +style server style s st sty styl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 0 no 0 8 0 0 0 0 1 +permissions even permissions p pe per perm BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 0 no 0 9 0 0 0 0 1 +permissions. (An permissions. p pe per perm BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 0 .( 2 9 0 0 0 0 1 +attributes should attributes a at att attr BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 0 .) 2 5 0 0 0 0 1 +The situation the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 3 no 0 9 0 0 0 0 1 +multiple modules multiple m mu mul mult BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 3 ., 2 10 0 0 0 0 1 +NFSv4.1 access nfsv4.1 N NF NFS NFSv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 3 .,, 3 9 0 0 0 0 1 +enforcement for enforcement e en enf enfo BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 3 , 1 9 0 0 0 0 1 +enforcement for enforcement e en enf enfo BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 3 ( 1 9 0 0 0 0 1 +Message Block). message M Me Mes Mess BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 3 ). 2 9 0 0 0 0 1 +even if even e ev eve even BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 3 . 1 7 0 0 0 0 1 +The guiding the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 7 no 0 10 0 0 0 0 1 +must not must m mu mus must BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 7 no 0 9 0 0 0 0 1 +restrictive than restrictive r re res rest BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 7 . 1 4 0 0 0 0 1 +6.2.1.1. ACE 6.2.1.1. 6 6. 6.2 6.2. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 8 .... 4 10 0 0 0 0 1 +The constants the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 8 (): 3 10 0 0 0 0 1 +const ACE4_ACCESS_ALLOWED_ACE_TYPE const c co con cons BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 9 no 0 10 0 0 0 0 1 += 0x00000000; = = = = = BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 9 ; 1 4 0 0 0 0 1 +const ACE4_ACCESS_DENIED_ACE_TYPE const c co con cons BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 9 no 0 9 0 0 0 0 1 += 0x00000001; = = = = = BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 9 ; 1 4 0 0 0 0 1 +const ACE4_SYSTEM_AUDIT_ACE_TYPE const c co con cons BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 9 no 0 9 0 0 0 0 1 += 0x00000002; = = = = = BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 9 ; 1 4 0 0 0 0 1 +const ACE4_SYSTEM_ALARM_ACE_TYPE const c co con cons BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 9 no 0 9 0 0 0 0 1 += 0x00000003; = = = = = BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 9 ; 1 4 0 0 0 0 1 +Only the only O On Onl Only BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 9 , 1 9 0 0 0 0 1 +and only and a an and and BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 9 . 1 10 0 0 0 0 1 +All four all A Al All All BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 9 . 1 6 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 2 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 11 , 1 10 0 0 0 0 0 +[Page 129] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 2 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 2 0 no 0 4 0 0 0 0 1 ++------------------------------+--------------+---------------------+ +------------------------------+--------------+---------------------+ +------------------------------+--------------+---------------------+ + +- +-- +--- BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 2 0 ----------------------------------------------------------------- 65 10 0 0 0 0 1 +| Value | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 1 0 0 0 0 1 +| Abbreviation | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 4 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 0 0 0 0 0 1 ++------------------------------+--------------+---------------------+ +------------------------------+--------------+---------------------+ +------------------------------+--------------+---------------------+ + +- +-- +--- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 2 0 ----------------------------------------------------------------- 65 10 0 0 0 0 1 +| ACE4_ACCESS_ALLOWED_ACE_TYPE | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 5 0 0 0 0 1 +| Explicitly | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 2 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 0 0 0 0 0 1 +| the | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 3 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 0 0 0 0 0 1 +| in | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 3 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 0 0 0 0 0 1 +| file | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 . 1 3 0 0 0 0 1 +| ACE4_ACCESS_DENIED_ACE_TYPE | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 5 0 0 0 0 1 +| Explicitly | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 2 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 0 0 0 0 0 1 +| the | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 3 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 0 0 0 0 0 1 +| in | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 3 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 0 0 0 0 0 1 +| file | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 . 1 3 0 0 0 0 1 +| ACE4_SYSTEM_AUDIT_ACE_TYPE | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 4 0 0 0 0 1 +| AUDIT | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 1 0 0 0 0 1 +| Log | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 (- 2 2 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 0 0 0 0 0 1 +| dependent | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 ) 1 3 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 0 0 0 0 0 1 +| access | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 3 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 0 0 0 0 0 1 +| file | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 2 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 0 0 0 0 0 1 +| that | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 2 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 0 0 0 0 0 1 +| the | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 3 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 0 0 0 0 0 1 +| specified | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 2 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 0 0 0 0 0 1 +| acemask4. | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 . 1 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 0 0 0 0 0 1 +| ACE4_SYSTEM_ALARM_ACE_TYPE | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 4 0 0 0 0 1 +| ALARM | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 1 0 0 0 0 1 +| Generate | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 2 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 0 0 0 0 0 1 +| (in | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 (- 2 2 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 0 0 0 0 0 1 +| dependent | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 ) 1 3 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 0 0 0 0 0 1 +| any | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 3 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 0 0 0 0 0 1 +| is | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 2 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 0 0 0 0 0 1 +| or | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 2 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 0 0 0 0 0 1 +| the | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 3 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 0 0 0 0 0 1 +| specified | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 2 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 0 0 0 0 0 1 +| acemask4. | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 . 1 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 0 0 0 0 0 1 ++------------------------------+--------------+---------------------+ +------------------------------+--------------+---------------------+ +------------------------------+--------------+---------------------+ + +- +-- +--- BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 2 0 ----------------------------------------------------------------- 65 10 0 0 0 0 1 +The "Abbreviation" the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 8 "" 2 10 0 0 0 0 1 +throughout the throughout t th thr thro BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 8 . 1 5 0 0 0 0 1 +6.2.1.2. Attribute 6.2.1.2. 6 6. 6.2 6.2. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 9 ....: 5 10 0 0 0 0 1 +A server a A A A A BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 1 0 0 0 0 0 2 9 . 1 10 0 0 0 0 1 +indicates which indicates i in ind indi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 9 . 1 10 0 0 0 0 1 +The bitmask the T Th The The BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 9 no 0 10 0 0 0 0 1 +the aclsupport the t th the the BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 9 : 1 5 0 0 0 0 1 +const ACL4_SUPPORT_ALLOW_ACL const c co con cons BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 10 no 0 10 0 0 0 0 1 += 0x00000001; = = = = = BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 10 ; 1 4 0 0 0 0 1 +const ACL4_SUPPORT_DENY_ACL const c co con cons BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 10 no 0 9 0 0 0 0 1 += 0x00000002; = = = = = BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 10 ; 1 4 0 0 0 0 1 +const ACL4_SUPPORT_AUDIT_ACL const c co con cons BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 10 no 0 10 0 0 0 0 1 += 0x00000004; = = = = = BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 10 ; 1 4 0 0 0 0 1 +const ACL4_SUPPORT_ALARM_ACL const c co con cons BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 10 no 0 10 0 0 0 0 1 += 0x00000008; = = = = = BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 10 ; 1 4 0 0 0 0 1 +Servers that servers S Se Ser Serv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 2 11 no 0 10 0 0 0 0 1 +both ALLOW both b bo bot both BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 11 . 1 4 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 2 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 11 , 1 10 0 0 0 0 0 +[Page 130] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 2 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 2 0 no 0 4 0 0 0 0 1 +Clients should clients C Cl Cli Clie BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 0 no 0 9 0 0 0 0 1 +support for support s su sup supp BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 2 0 . 1 9 0 0 0 0 1 +an ACE an a an an an BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 2 0 , 1 8 0 0 0 0 1 +NFS4ERR_ATTRNOTSUPP. If nfs4err_attrnotsupp. N NF NFS NFS4 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 0 . 1 10 0 0 0 0 1 +that it that t th tha that BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 0 , 1 9 0 0 0 0 1 +request with request r re req requ BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 0 . 1 5 0 0 0 0 1 +Support for support S Su Sup Supp BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 2 2 ( 1 8 0 0 0 0 1 +RECOMMENDED). However, recommended). R RE REC RECO BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 2 2 )., 3 9 0 0 0 0 1 +attributes (dacl attributes a at att attr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 2 () 2 10 0 0 0 0 1 +access all access a ac acc acce BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 2 ., 2 9 0 0 0 0 1 +such a such s su suc such BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 2 , 1 9 0 0 0 0 1 +dacl attribute, dacl d da dac dacl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 2 ,, 2 9 0 0 0 0 1 +support the support s su sup supp BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 2 2 . 1 4 0 0 0 0 1 +6.2.1.3. ACE 6.2.1.3. 6 6. 6.2 6.2. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 5 .... 4 10 0 0 0 0 1 +The bitmask the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 5 : 1 10 0 0 0 0 1 +const ACE4_READ_DATA const c co con cons BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 6 no 0 4 0 0 0 0 1 += 0x00000001; = = = = = BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 6 ; 1 3 0 0 0 0 1 +const ACE4_LIST_DIRECTORY const c co con cons BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 6 no 0 5 0 0 0 0 1 += 0x00000001; = = = = = BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 6 ; 1 3 0 0 0 0 1 +const ACE4_WRITE_DATA const c co con cons BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 6 no 0 4 0 0 0 0 1 += 0x00000002; = = = = = BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 6 ; 1 3 0 0 0 0 1 +const ACE4_ADD_FILE const c co con cons BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 6 no 0 4 0 0 0 0 1 += 0x00000002; = = = = = BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 6 ; 1 3 0 0 0 0 1 +const ACE4_APPEND_DATA const c co con cons BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 6 no 0 5 0 0 0 0 1 += 0x00000004; = = = = = BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 6 ; 1 3 0 0 0 0 1 +const ACE4_ADD_SUBDIRECTORY const c co con cons BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 6 no 0 6 0 0 0 0 1 += 0x00000004; = = = = = BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 6 ; 1 3 0 0 0 0 1 +const ACE4_READ_NAMED_ATTRS const c co con cons BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 6 no 0 6 0 0 0 0 1 += 0x00000008; = = = = = BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 6 ; 1 3 0 0 0 0 1 +const ACE4_WRITE_NAMED_ATTRS const c co con cons BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 6 no 0 6 0 0 0 0 1 += 0x00000010; = = = = = BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 6 ; 1 3 0 0 0 0 1 +const ACE4_EXECUTE const c co con cons BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 6 no 0 4 0 0 0 0 1 += 0x00000020; = = = = = BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 6 ; 1 3 0 0 0 0 1 +const ACE4_DELETE_CHILD const c co con cons BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 6 no 0 5 0 0 0 0 1 += 0x00000040; = = = = = BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 6 ; 1 3 0 0 0 0 1 +const ACE4_READ_ATTRIBUTES const c co con cons BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 6 no 0 5 0 0 0 0 1 += 0x00000080; = = = = = BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 6 ; 1 3 0 0 0 0 1 +const ACE4_WRITE_ATTRIBUTES const c co con cons BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 6 no 0 6 0 0 0 0 1 += 0x00000100; = = = = = BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 6 ; 1 3 0 0 0 0 1 +const ACE4_WRITE_RETENTION const c co con cons BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 6 no 0 5 0 0 0 0 1 += 0x00000200; = = = = = BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 6 ; 1 3 0 0 0 0 1 +const ACE4_WRITE_RETENTION_HOLD const c co con cons BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 6 ; 1 10 0 0 0 0 1 +const ACE4_DELETE const c co con cons BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 8 no 0 7 0 0 0 0 1 += 0x00010000; = = = = = BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 8 ; 1 6 0 0 0 0 1 +const ACE4_READ_ACL const c co con cons BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 8 no 0 8 0 0 0 0 1 += 0x00020000; = = = = = BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 8 ; 1 6 0 0 0 0 1 +const ACE4_WRITE_ACL const c co con cons BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 8 no 0 9 0 0 0 0 1 += 0x00040000; = = = = = BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 8 ; 1 6 0 0 0 0 1 +const ACE4_WRITE_OWNER const c co con cons BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 8 no 0 10 0 0 0 0 1 += 0x00080000; = = = = = BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 8 ; 1 6 0 0 0 0 1 +const ACE4_SYNCHRONIZE const c co con cons BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 8 no 0 10 0 0 0 0 1 += 0x00100000; = = = = = BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 8 ; 1 6 0 0 0 0 1 +Note that note N No Not Note BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 9 ,, 2 8 0 0 0 0 1 +ACE4_READ_DATA and ace4_read_data A AC ACE ACE4 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 9 . 1 8 0 0 0 0 1 +ACE4_LIST_DIRECTORY, ACE4_ADD_FILE, ace4_list_directory, A AC ACE ACE4 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 9 ,, 2 9 0 0 0 0 1 +intended to intended i in int inte BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 9 ,, 2 9 0 0 0 0 1 +ACE4_WRITE_DATA, and ace4_write_data, A AC ACE ACE4 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 9 , 1 10 0 0 0 0 1 +non-directory objects. non-directory n no non non- BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 9 -. 2 3 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 2 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 11 , 1 10 0 0 0 0 0 +[Page 131] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 2 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 2 0 no 0 4 0 0 0 0 1 +6.2.1.3.1. Discussion 6.2.1.3.1. 6 6. 6.2 6.2. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 0 ..... 5 10 0 0 0 0 1 +ACE4_READ_DATA ACE4_READ_DATA ace4_read_data A AC ACE ACE4 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 1 no 0 10 0 0 0 0 1 +Operation(s) affected: operation(s) O Op Ope Oper BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 2 2 (): 3 10 0 0 0 0 1 +READ READ read R RE REA READ BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 1 1 0 0 0 0 0 2 2 no 0 10 0 0 0 0 1 +OPEN OPEN open O OP OPE OPEN BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 2 2 no 0 10 0 0 0 0 1 +Discussion: Discussion: discussion: D Di Dis Disc BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 2 : 1 10 0 0 0 0 1 +Permission to permission P Pe Per Perm BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 3 . 1 10 0 0 0 0 1 +Servers SHOULD servers S Se Ser Serv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 2 3 no 0 10 0 0 0 0 1 +file when file f fi fil file BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 3 . 1 9 0 0 0 0 1 +ACE4_LIST_DIRECTORY ACE4_LIST_DIRECTORY ace4_list_directory A AC ACE ACE4 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 5 no 0 10 0 0 0 0 1 +Operation(s) affected: operation(s) O Op Ope Oper BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 2 6 (): 3 10 0 0 0 0 1 +READDIR READDIR readdir R RE REA READ BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 2 6 no 0 10 0 0 0 0 1 +Discussion: Discussion: discussion: D Di Dis Disc BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 6 : 1 10 0 0 0 0 1 +Permission to permission P Pe Per Perm BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 6 . 1 10 0 0 0 0 1 +ACE4_WRITE_DATA ACE4_WRITE_DATA ace4_write_data A AC ACE ACE4 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 7 no 0 10 0 0 0 0 1 +Operation(s) affected: operation(s) O Op Ope Oper BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 2 7 (): 3 10 0 0 0 0 1 +WRITE WRITE write W WR WRI WRIT BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 2 8 no 0 10 0 0 0 0 1 +OPEN OPEN open O OP OPE OPEN BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 2 8 no 0 10 0 0 0 0 1 +SETATTR of setattr S SE SET SETA BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 2 8 no 0 10 0 0 0 0 1 +Discussion: Discussion: discussion: D Di Dis Disc BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 9 : 1 10 0 0 0 0 1 +Permission to permission P Pe Per Perm BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 9 '. 2 10 0 0 0 0 1 +ACE4_ADD_FILE ACE4_ADD_FILE ace4_add_file A AC ACE ACE4 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 9 no 0 10 0 0 0 0 1 +Operation(s) affected: operation(s) O Op Ope Oper BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 2 10 (): 3 10 0 0 0 0 1 +CREATE CREATE create C CR CRE CREA BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 2 10 no 0 10 0 0 0 0 1 +LINK LINK link L LI LIN LINK BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 1 1 0 0 0 0 0 2 10 no 0 10 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 2 10 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 10 , 1 10 0 0 0 0 0 +[Page 132] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 10 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 2 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 2 0 no 0 4 0 0 0 0 1 +OPEN OPEN open O OP OPE OPEN BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 2 0 no 0 10 0 0 0 0 1 +RENAME RENAME rename R RE REN RENA BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 2 0 no 0 10 0 0 0 0 1 +Discussion: Discussion: discussion: D Di Dis Disc BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 0 : 1 10 0 0 0 0 1 +Permission to permission P Pe Per Perm BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 0 . 1 9 0 0 0 0 1 +operation is operation o op ope oper BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 0 ,, 2 9 0 0 0 0 1 +NF4CHR, NF4SOCK, nf4chr, N NF NF4 NF4C BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 0 ,,.( 4 10 0 0 0 0 1 +is covered is i is is is BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 0 .) 2 9 0 0 0 0 1 +used to used u us use used BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 0 . 1 9 0 0 0 0 1 +affected. affected. affected. a af aff affe BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 0 . 1 1 0 0 0 0 1 +ACE4_APPEND_DATA ACE4_APPEND_DATA ace4_append_data A AC ACE ACE4 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 4 no 0 10 0 0 0 0 1 +Operation(s) affected: operation(s) O Op Ope Oper BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 2 4 (): 3 10 0 0 0 0 1 +WRITE WRITE write W WR WRI WRIT BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 2 4 no 0 10 0 0 0 0 1 +OPEN OPEN open O OP OPE OPEN BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 2 4 no 0 10 0 0 0 0 1 +SETATTR of setattr S SE SET SETA BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 2 4 no 0 10 0 0 0 0 1 +Discussion: Discussion: discussion: D Di Dis Disc BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 5 : 1 10 0 0 0 0 1 +The ability the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 5 ',. 3 10 0 0 0 0 1 +This allows this T Th Thi This BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 5 -, 2 9 0 0 0 0 1 +ACE4_APPEND_DATA and ace4_append_data A AC ACE ACE4 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 5 no 0 9 0 0 0 0 1 +or group. or o or or or BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 5 . 1 10 0 0 0 0 1 +and a and a an and and BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 5 , 1 9 0 0 0 0 1 +server SHOULD server s se ser serv BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 5 . 1 5 0 0 0 0 1 +ACE4_ADD_SUBDIRECTORY ACE4_ADD_SUBDIRECTORY ace4_add_subdirectory A AC ACE ACE4 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 8 no 0 10 0 0 0 0 1 +Operation(s) affected: operation(s) O Op Ope Oper BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 2 9 (): 3 10 0 0 0 0 1 +CREATE CREATE create C CR CRE CREA BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 2 9 no 0 10 0 0 0 0 1 +RENAME RENAME rename R RE REN RENA BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 2 9 no 0 10 0 0 0 0 1 +Discussion: Discussion: discussion: D Di Dis Disc BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 9 : 1 10 0 0 0 0 1 +Permission to permission P Pe Per Perm BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 9 . 1 10 0 0 0 0 1 +operation is operation o op ope oper BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 9 . 1 9 0 0 0 0 1 +operation is operation o op ope oper BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 9 . 1 4 0 0 0 0 1 +ACE4_READ_NAMED_ATTRS ACE4_READ_NAMED_ATTRS ace4_read_named_attrs A AC ACE ACE4 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 11 no 0 10 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 2 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 11 , 1 10 0 0 0 0 0 +[Page 133] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 2 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 2 0 no 0 4 0 0 0 0 1 +Operation(s) affected: operation(s) O Op Ope Oper BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 2 0 (): 3 10 0 0 0 0 1 +OPENATTR OPENATTR openattr O OP OPE OPEN BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 2 0 no 0 10 0 0 0 0 1 +Discussion: Discussion: discussion: D Di Dis Disc BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 1 : 1 10 0 0 0 0 1 +Permission to permission P Pe Per Perm BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 1 no 0 10 0 0 0 0 1 +the named the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 1 . 1 9 0 0 0 0 1 +not used not n no not not BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 1 . 1 9 0 0 0 0 1 +1) createdir 1) 1 1) 1) 1) BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 1 ), 2 9 0 0 0 0 1 +exists, or exists, e ex exi exis BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 1 ,). 3 5 0 0 0 0 1 +ACE4_WRITE_NAMED_ATTRS ACE4_WRITE_NAMED_ATTRS ace4_write_named_attrs A AC ACE ACE4 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 4 no 0 10 0 0 0 0 1 +Operation(s) affected: operation(s) O Op Ope Oper BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 2 4 (): 3 10 0 0 0 0 1 +OPENATTR OPENATTR openattr O OP OPE OPEN BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 2 4 no 0 10 0 0 0 0 1 +Discussion: Discussion: discussion: D Di Dis Disc BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 5 : 1 10 0 0 0 0 1 +Permission to permission P Pe Per Perm BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 5 no 0 10 0 0 0 0 1 +a named a a a a a BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 1 0 0 0 0 0 2 5 . 1 9 0 0 0 0 1 +used to used u us use used BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 5 . 1 8 0 0 0 0 1 +createdir is createdir c cr cre crea BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 5 . 1 9 0 0 0 0 1 +ability to ability a ab abi abil BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 5 no 0 9 0 0 0 0 1 +exists depends exists e ex exi exis BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 5 ;, 2 9 0 0 0 0 1 +also need also a al als also BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 5 no 0 9 0 0 0 0 1 +create a create c cr cre crea BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 5 . 1 5 0 0 0 0 1 +ACE4_EXECUTE ACE4_EXECUTE ace4_execute A AC ACE ACE4 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 10 no 0 10 0 0 0 0 1 +Operation(s) affected: operation(s) O Op Ope Oper BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 2 10 (): 3 10 0 0 0 0 1 +READ READ read R RE REA READ BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 1 1 0 0 0 0 0 2 10 no 0 10 0 0 0 0 1 +OPEN OPEN open O OP OPE OPEN BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 2 10 no 0 10 0 0 0 0 1 +REMOVE REMOVE remove R RE REM REMO BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 2 10 no 0 10 0 0 0 0 1 +RENAME RENAME rename R RE REN RENA BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 2 10 no 0 10 0 0 0 0 1 +LINK LINK link L LI LIN LINK BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 1 1 0 0 0 0 0 2 10 no 0 10 0 0 0 0 1 +CREATE CREATE create C CR CRE CREA BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 2 11 no 0 10 0 0 0 0 1 +Discussion: Discussion: discussion: D Di Dis Disc BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 11 : 1 10 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 2 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 11 , 1 10 0 0 0 0 0 +[Page 134] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 2 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 2 0 no 0 4 0 0 0 0 1 +Permission to permission P Pe Per Perm BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 0 . 1 10 0 0 0 0 1 +Servers SHOULD servers S Se Ser Serv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 2 0 no 0 10 0 0 0 0 1 +file when file f fi fil file BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 0 . 1 9 0 0 0 0 1 +This is this T Th Thi This BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 0 no 0 9 0 0 0 0 1 +reading the reading r re rea read BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 0 . 1 9 0 0 0 0 1 +and ACE4_READ_DATA and a an and and BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 0 no 0 9 0 0 0 0 1 +READ operation, read R RE REA READ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 1 1 0 0 0 0 0 2 0 , 1 9 0 0 0 0 1 +independently in independently i in ind inde BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 0 , 1 9 0 0 0 0 1 +replying to replying r re rep repl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 0 ., 2 9 0 0 0 0 1 +NOT silently not N NO NOT NOT BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 2 0 , 1 10 0 0 0 0 1 +as that as a as as as BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 0 no 0 9 0 0 0 0 1 +enforce the enforce e en enf enfo BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 0 . 1 9 0 0 0 0 1 +As an as A As As As BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 7 ,: 2 10 0 0 0 0 1 +nfsuser:ACE4_EXECUTE:ALLOW nfsuser:ACE4_EXECUTE:ALLOW nfsuser:ace4_execute:allow n nf nfs nfsu BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 8 :: 2 10 0 0 0 0 1 +A subsequent a A A A A BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 1 0 0 0 0 0 2 8 : 1 10 0 0 0 0 1 +nfsuser:ACE4_EXECUTE:ALLOW nfsuser:ACE4_EXECUTE:ALLOW nfsuser:ace4_execute:allow n nf nfs nfsu BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 8 :: 2 10 0 0 0 0 1 +Rather than: rather R Ra Rat Rath BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 9 : 1 10 0 0 0 0 1 +nfsuser:ACE4_EXECUTE/ACE4_READ_DATA:ALLOW nfsuser:ACE4_EXECUTE/ACE4_READ_DATA:ALLOW nfsuser:ace4_execute/ace4_read_data:allow n nf nfs nfsu BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 9 :/: 3 10 0 0 0 0 1 +ACE4_EXECUTE ACE4_EXECUTE ace4_execute A AC ACE ACE4 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 9 no 0 10 0 0 0 0 1 +Operation(s) affected: operation(s) O Op Ope Oper BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 2 9 (): 3 10 0 0 0 0 1 +LOOKUP LOOKUP lookup L LO LOO LOOK BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 2 10 no 0 10 0 0 0 0 1 +Discussion: Discussion: discussion: D Di Dis Disc BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 10 : 1 10 0 0 0 0 1 +Permission to permission P Pe Per Perm BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 10 /. 2 10 0 0 0 0 1 +ACE4_DELETE_CHILD ACE4_DELETE_CHILD ace4_delete_child A AC ACE ACE4 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 10 no 0 10 0 0 0 0 1 +Operation(s) affected: operation(s) O Op Ope Oper BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 2 10 (): 3 10 0 0 0 0 1 +REMOVE REMOVE remove R RE REM REMO BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 2 11 no 0 10 0 0 0 0 1 +RENAME RENAME rename R RE REN RENA BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 2 11 no 0 10 0 0 0 0 1 +Discussion: Discussion: discussion: D Di Dis Disc BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 11 : 1 10 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 2 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 11 , 1 10 0 0 0 0 0 +[Page 135] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 2 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 2 0 no 0 4 0 0 0 0 1 +Permission to permission P Pe Per Perm BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 0 . 1 10 0 0 0 0 1 +See Section see S Se See See BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 2 0 .... 4 9 0 0 0 0 1 +ACE4_DELETE_CHILD interact. ace4_delete_child A AC ACE ACE4 BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 0 . 1 4 0 0 0 0 1 +ACE4_READ_ATTRIBUTES ACE4_READ_ATTRIBUTES ace4_read_attributes A AC ACE ACE4 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 1 no 0 10 0 0 0 0 1 +Operation(s) affected: operation(s) O Op Ope Oper BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 2 2 (): 3 10 0 0 0 0 1 +GETATTR of getattr G GE GET GETA BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 2 2 no 0 10 0 0 0 0 1 +VERIFY VERIFY verify V VE VER VERI BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 2 2 no 0 10 0 0 0 0 1 +NVERIFY NVERIFY nverify N NV NVE NVER BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 2 2 no 0 10 0 0 0 0 1 +READDIR READDIR readdir R RE REA READ BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 2 2 no 0 10 0 0 0 0 1 +Discussion: Discussion: discussion: D Di Dis Disc BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 3 : 1 10 0 0 0 0 1 +The ability the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 3 (-). 4 10 0 0 0 0 1 +a UNIX a a a a a BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 1 0 0 0 0 0 2 3 ,- 2 10 0 0 0 0 1 +level attributes. level l le lev leve BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 3 . 1 9 0 0 0 0 1 +that the that t th tha that BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 3 "-". 4 9 0 0 0 0 1 +operation requests operation o op ope oper BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 3 , 1 9 0 0 0 0 1 +the READDIR the t th the the BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 3 . 1 3 0 0 0 0 1 +ACE4_WRITE_ATTRIBUTES ACE4_WRITE_ATTRIBUTES ace4_write_attributes A AC ACE ACE4 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 6 no 0 10 0 0 0 0 1 +Operation(s) affected: operation(s) O Op Ope Oper BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 2 6 (): 3 10 0 0 0 0 1 +SETATTR of setattr S SE SET SETA BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 2 6 ,, 2 10 0 0 0 0 1 +time_create, time_modify_set, time_create, t ti tim time BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 7 ,,,, 4 10 0 0 0 0 1 +Discussion: Discussion: discussion: D Di Dis Disc BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 7 : 1 10 0 0 0 0 1 +Permission to permission P Pe Per Perm BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 7 no 0 8 0 0 0 0 1 +directory to directory d di dir dire BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 7 . 1 9 0 0 0 0 1 +mimetype, hidden, mimetype, m mi mim mime BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 7 ,,. 3 8 0 0 0 0 1 +ACE4_WRITE_DATA or ace4_write_data A AC ACE ACE4 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 7 no 0 10 0 0 0 0 1 +the times the t th the the BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 7 . 1 9 0 0 0 0 1 +ACE4_WRITE_RETENTION ACE4_WRITE_RETENTION ace4_write_retention A AC ACE ACE4 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 10 no 0 10 0 0 0 0 1 +Operation(s) affected: operation(s) O Op Ope Oper BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 2 10 (): 3 10 0 0 0 0 1 +SETATTR of setattr S SE SET SETA BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 2 10 ,. 2 10 0 0 0 0 1 +Discussion: Discussion: discussion: D Di Dis Disc BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 11 : 1 10 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 2 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 11 , 1 10 0 0 0 0 0 +[Page 136] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 2 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 2 0 no 0 4 0 0 0 0 1 +Permission to permission P Pe Per Perm BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 0 -- 2 10 0 0 0 0 1 +retention. Also retention. r re ret rete BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 0 .-- 3 9 0 0 0 0 1 +retention. A retention. r re ret rete BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 0 . 1 7 0 0 0 0 1 +ACE4_WRITE_ATTRIBUTES allows ace4_write_attributes A AC ACE ACE4 BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 0 . 1 7 0 0 0 0 1 +ACE4_WRITE_RETENTION_HOLD ACE4_WRITE_RETENTION_HOLD ace4_write_retention_hold A AC ACE ACE4 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 3 no 0 10 0 0 0 0 1 +Operation(s) affected: operation(s) O Op Ope Oper BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 2 3 (): 3 10 0 0 0 0 1 +SETATTR of setattr S SE SET SETA BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 2 3 . 1 10 0 0 0 0 1 +Discussion: Discussion: discussion: D Di Dis Disc BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 4 : 1 10 0 0 0 0 1 +Permission to permission P Pe Per Perm BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 4 . 1 10 0 0 0 0 1 +server MAY server s se ser serv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 4 no 0 6 0 0 0 0 1 +ACE_WRITE_RETENTION_HOLD. ACE_WRITE_RETENTION_HOLD. ace_write_retention_hold. A AC ACE ACE_ BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 2 4 . 1 4 0 0 0 0 1 +ACE4_DELETE ACE4_DELETE ace4_delete A AC ACE ACE4 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 5 no 0 10 0 0 0 0 1 +Operation(s) affected: operation(s) O Op Ope Oper BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 2 5 (): 3 10 0 0 0 0 1 +REMOVE REMOVE remove R RE REM REMO BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 2 6 no 0 10 0 0 0 0 1 +Discussion: Discussion: discussion: D Di Dis Disc BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 6 : 1 10 0 0 0 0 1 +Permission to permission P Pe Per Perm BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 6 . 1 9 0 0 0 0 1 +Section 6.2.1.3.2 section S Se Sec Sect BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 6 .... 4 10 0 0 0 0 1 +ACE4_DELETE_CHILD interact. ace4_delete_child A AC ACE ACE4 BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 6 . 1 5 0 0 0 0 1 +ACE4_READ_ACL ACE4_READ_ACL ace4_read_acl A AC ACE ACE4 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 8 no 0 10 0 0 0 0 1 +Operation(s) affected: operation(s) O Op Ope Oper BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 2 8 (): 3 10 0 0 0 0 1 +GETATTR of getattr G GE GET GETA BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 2 8 ,, 2 10 0 0 0 0 1 +NVERIFY NVERIFY nverify N NV NVE NVER BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 2 9 no 0 10 0 0 0 0 1 +VERIFY VERIFY verify V VE VER VERI BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 2 9 no 0 10 0 0 0 0 1 +Discussion: Discussion: discussion: D Di Dis Disc BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 9 : 1 10 0 0 0 0 1 +Permission to permission P Pe Per Perm BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 9 . 1 10 0 0 0 0 1 +ACE4_WRITE_ACL ACE4_WRITE_ACL ace4_write_acl A AC ACE ACE4 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 10 no 0 10 0 0 0 0 1 +Operation(s) affected: operation(s) O Op Ope Oper BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 2 10 (): 3 10 0 0 0 0 1 +SETATTR of setattr S SE SET SETA BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 2 10 no 0 10 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 2 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 11 , 1 10 0 0 0 0 0 +[Page 137] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 2 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 2 0 no 0 4 0 0 0 0 1 +Discussion: Discussion: discussion: D Di Dis Disc BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 0 : 1 10 0 0 0 0 1 +Permission to permission P Pe Per Perm BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 0 . 1 10 0 0 0 0 1 +ACE4_WRITE_OWNER ACE4_WRITE_OWNER ace4_write_owner A AC ACE ACE4 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 0 no 0 10 0 0 0 0 1 +Operation(s) affected: operation(s) O Op Ope Oper BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 2 1 (): 3 10 0 0 0 0 1 +SETATTR of setattr S SE SET SETA BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 2 1 no 0 10 0 0 0 0 1 +Discussion: Discussion: discussion: D Di Dis Disc BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 1 : 1 10 0 0 0 0 1 +Permission to permission P Pe Per Perm BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 1 . 1 10 0 0 0 0 1 +UNIX systems, unix U UN UNI UNIX BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 1 0 0 0 0 0 0 2 1 ,() 3 9 0 0 0 0 1 +chgrp(). chgrp(). chgrp(). c ch chg chgr BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 1 (). 3 1 0 0 0 0 1 +ACE4_SYNCHRONIZE ACE4_SYNCHRONIZE ace4_synchronize A AC ACE ACE4 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 2 no 0 10 0 0 0 0 1 +Operation(s) affected: operation(s) O Op Ope Oper BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 2 2 (): 3 10 0 0 0 0 1 +NONE NONE none N NO NON NONE BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 2 2 no 0 10 0 0 0 0 1 +Discussion: Discussion: discussion: D Di Dis Disc BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 2 : 1 10 0 0 0 0 1 +Permission to permission P Pe Per Perm BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 3 no 0 8 0 0 0 0 1 +primitive for primitive p pr pri prim BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 3 . 1 9 0 0 0 0 1 +not enforced not n no not not BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 3 . 1 10 0 0 0 0 1 +the client. the t th the the BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 3 . 1 1 0 0 0 0 1 +Typically, the typically, T Ty Typ Typi BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 4 , 1 10 0 0 0 0 1 +on local on o on on on BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 4 ,.., 4 9 0 0 0 0 1 +NFSv4.1. The nfsv4.1. N NF NFS NFSv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 4 .. 2 9 0 0 0 0 1 +some operating some s so som some BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 4 ,, 2 8 0 0 0 0 1 +ACE4_SYNCHRONIZE. ACE4_SYNCHRONIZE. ace4_synchronize. A AC ACE ACE4 BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 4 . 1 2 0 0 0 0 1 +For example, for F Fo For For BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 6 , 1 7 0 0 0 0 1 +ACE4_SYNCHRONIZE set ace4_synchronize A AC ACE ACE4 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 6 . 1 9 0 0 0 0 1 +server, and server, s se ser serv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 6 ,. 2 10 0 0 0 0 1 +to a to t to to to BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 6 , 1 9 0 0 0 0 1 +was set was w wa was was BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 6 , 1 9 0 0 0 0 1 +the second the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 6 . 1 9 0 0 0 0 1 +set unless set s se set set BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 6 . 1 8 0 0 0 0 1 +ACE4_SYNCHRONIZE bit. ace4_synchronize A AC ACE ACE4 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 6 . 1 8 0 0 0 0 1 +permission set permission p pe per perm BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 6 . 1 9 0 0 0 0 1 +retrieve the retrieve r re ret retr BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 6 . 1 5 0 0 0 0 1 +Server implementations server S Se Ser Serv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 2 10 no 0 10 0 0 0 0 1 +that is that t th tha that BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 10 .,- 3 9 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 2 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 11 , 1 10 0 0 0 0 0 +[Page 138] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 2 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 2 0 no 0 4 0 0 0 0 1 +systems might systems s sy sys syst BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 2 0 ( 1 10 0 0 0 0 1 +to a to t to to to BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 0 )( 2 9 0 0 0 0 1 +contents); both contents); c co con cont BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 0 );"" 4 9 0 0 0 0 1 +[17]. When [17]. [ [1 [17 [17] BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 0 []., 4 9 0 0 0 0 1 +show both show s sh sho show BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 0 no 0 9 0 0 0 0 1 +write permission write w wr wri writ BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 0 . 1 4 0 0 0 0 1 +If a if I If If If BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 2 no 0 9 0 0 0 0 1 +implement, it implement, i im imp impl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 2 ,, 2 9 0 0 0 0 1 +except in except e ex exc exce BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 2 . 1 9 0 0 0 0 1 +example, suppose example, e ex exa exam BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 2 , 1 9 0 0 0 0 1 +appending new appending a ap app appe BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 2 ,. 2 9 0 0 0 0 1 +client submits client c cl cli clie BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 2 no 0 8 0 0 0 0 1 +ACE4_WRITE_DATA is ace4_write_data A AC ACE ACE4 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 2 (), 3 10 0 0 0 0 1 +off ACE4_APPEND_DATA off o of off off BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 2 . 1 9 0 0 0 0 1 +6.2.1.3.2. ACE4_DELETE 6.2.1.3.2. 6 6. 6.2 6.2. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 4 ...... 6 10 0 0 0 0 1 +Two access two T Tw Two Two BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 4 : 1 9 0 0 0 0 1 +ACE4_DELETE on ace4_delete A AC ACE ACE4 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 4 ("") 4 10 0 0 0 0 1 +on the on o on on on BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 4 (""). 5 6 0 0 0 0 1 +Many systems many M Ma Man Many BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 2 5 ""() 4 9 0 0 0 0 1 +to allow to t to to to BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 5 no 0 9 0 0 0 0 1 +parent; on parent; p pa par pare BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 5 ; 1 10 0 0 0 0 1 +target is target t ta tar targ BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 5 . 1 2 0 0 0 0 1 +Servers SHOULD servers S Se Ser Serv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 2 7 no 0 10 0 0 0 0 1 +target, or target, t ta tar targ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 7 ,.( 3 9 0 0 0 0 1 +this is this t th thi this BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 7 no 0 9 0 0 0 0 1 +these permissions.) these t th the thes BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 7 .) 2 2 0 0 0 0 1 +If the if I If If If BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 8 no 0 10 0 0 0 0 1 +the above, the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 8 ,, 2 9 0 0 0 0 1 +server SHOULD server s se ser serv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 8 no 0 9 0 0 0 0 1 +permitted. In permitted. p pe per perm BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 8 ., 2 10 0 0 0 0 1 +require the require r re req requ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 8 , 1 9 0 0 0 0 1 +require the require r re req requ BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 8 . 1 5 0 0 0 0 1 +This allows this T Th Thi This BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 10 - 1 9 0 0 0 0 1 +like semantics, like l li lik like BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 10 ,. 2 10 0 0 0 0 1 +6.2.1.4. ACE 6.2.1.4. 6 6. 6.2 6.2. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 11 .... 4 10 0 0 0 0 1 +The bitmask the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 11 : 1 10 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 2 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 11 , 1 10 0 0 0 0 0 +[Page 139] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 2 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 2 0 no 0 4 0 0 0 0 1 +const ACE4_FILE_INHERIT_ACE const c co con cons BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 0 no 0 7 0 0 0 0 1 += 0x00000001; = = = = = BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 ; 1 3 0 0 0 0 1 +const ACE4_DIRECTORY_INHERIT_ACE const c co con cons BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 0 no 0 8 0 0 0 0 1 += 0x00000002; = = = = = BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 ; 1 3 0 0 0 0 1 +const ACE4_NO_PROPAGATE_INHERIT_ACE const c co con cons BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 0 no 0 9 0 0 0 0 1 += 0x00000004; = = = = = BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 ; 1 3 0 0 0 0 1 +const ACE4_INHERIT_ONLY_ACE const c co con cons BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 0 no 0 7 0 0 0 0 1 += 0x00000008; = = = = = BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 ; 1 3 0 0 0 0 1 +const ACE4_SUCCESSFUL_ACCESS_ACE_FLAG const c co con cons BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 0 no 0 10 0 0 0 0 1 += 0x00000010; = = = = = BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 ; 1 3 0 0 0 0 1 +const ACE4_FAILED_ACCESS_ACE_FLAG const c co con cons BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 0 no 0 8 0 0 0 0 1 += 0x00000020; = = = = = BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 ; 1 3 0 0 0 0 1 +const ACE4_IDENTIFIER_GROUP const c co con cons BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 0 no 0 7 0 0 0 0 1 += 0x00000040; = = = = = BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 ; 1 3 0 0 0 0 1 +const ACE4_INHERITED_ACE const c co con cons BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 0 no 0 6 0 0 0 0 1 += 0x00000080; = = = = = BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 ; 1 3 0 0 0 0 1 +A server a A A A A BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 1 0 0 0 0 0 2 1 . 1 10 0 0 0 0 1 +flags that flags f fl fla flag BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 1 ,,, 3 10 0 0 0 0 1 +the implementation the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 1 - 1 10 0 0 0 0 1 +flags and flags f fl fla flag BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 1 -. 2 6 0 0 0 0 1 +For example, for F Fo For For BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 3 , 1 7 0 0 0 0 1 +ACE4_FILE_INHERIT_ACE set ace4_file_inherit_ace A AC ACE ACE4 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 3 . 1 10 0 0 0 0 1 +server does server s se ser serv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 3 , 1 9 0 0 0 0 1 +should reject should s sh sho shou BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 3 . 1 9 0 0 0 0 1 +supports a supports s su sup supp BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 3 "" 2 9 0 0 0 0 1 +directories, the directories, d di dir dire BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 3 ,(.., 5 9 0 0 0 0 1 +client to client c cl cli clie BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 3 ). 2 9 0 0 0 0 1 +server may server s se ser serv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 3 no 0 8 0 0 0 0 1 +ACE4_DIRECTORY_INHERIT_ACE flag. ace4_directory_inherit_ace A AC ACE ACE4 BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 3 . 1 4 0 0 0 0 1 +6.2.1.4.1. Discussion 6.2.1.4.1. 6 6. 6.2 6.2. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 6 ..... 5 10 0 0 0 0 1 +ACE4_FILE_INHERIT_ACE ACE4_FILE_INHERIT_ACE ace4_file_inherit_ace A AC ACE ACE4 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 6 no 0 3 0 0 0 0 1 +Any non-directory any A An Any Any BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 6 -- 2 10 0 0 0 0 1 +inherited. inherited. inherited. i in inh inhe BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 6 . 1 1 0 0 0 0 1 +ACE4_DIRECTORY_INHERIT_ACE ACE4_DIRECTORY_INHERIT_ACE ace4_directory_inherit_ace A AC ACE ACE4 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 6 no 0 4 0 0 0 0 1 +Can be can C Ca Can Can BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 6 no 0 10 0 0 0 0 1 +added to added a ad add adde BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 6 . 1 5 0 0 0 0 1 +If this if I If If If BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 6 no 0 9 0 0 0 0 1 +non-directory file non-directory n no non non- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 6 -, 2 9 0 0 0 0 1 +the ACL the t th the the BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 6 . 1 6 0 0 0 0 1 +ACE4_NO_PROPAGATE_INHERIT_ACE ACE4_NO_PROPAGATE_INHERIT_ACE ace4_no_propagate_inherit_ace A AC ACE ACE4 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 8 no 0 4 0 0 0 0 1 +Can be can C Ca Can Can BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 8 . 1 10 0 0 0 0 1 +inheritance of inheritance i in inh inhe BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 8 no 0 9 0 0 0 0 1 +directories. directories. directories. d di dir dire BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 8 . 1 2 0 0 0 0 1 +ACE4_INHERIT_ONLY_ACE ACE4_INHERIT_ONLY_ACE ace4_inherit_only_ace A AC ACE ACE4 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 9 no 0 3 0 0 0 0 1 +Can be can C Ca Can Can BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 9 ; 1 10 0 0 0 0 1 +ALLOW and allow A AL ALL ALLO BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 2 9 no 0 10 0 0 0 0 1 +directory, and directory, d di dir dire BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 9 , 1 9 0 0 0 0 1 +trigger log trigger t tr tri trig BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 9 . 1 10 0 0 0 0 1 +are applied are a ar are are BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 9 () 2 9 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 2 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 11 , 1 10 0 0 0 0 0 +[Page 140] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 2 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 2 0 no 0 4 0 0 0 0 1 +directories as directories d di dir dire BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 0 no 0 10 0 0 0 0 1 +ACE4_DIRECTORY_INHERIT_ACE flags. ace4_directory_inherit_ace A AC ACE ACE4 BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 0 . 1 5 0 0 0 0 1 +If this if I If If If BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 0 , 1 7 0 0 0 0 1 +ACE4_DIRECTORY_INHERIT_ACE nor ace4_directory_inherit_ace A AC ACE ACE4 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 0 , 1 9 0 0 0 0 1 +then an then t th the then BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 0 no 0 10 0 0 0 0 1 +with NFS4ERR_ATTRNOTSUPP. with w wi wit with BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 0 . 1 3 0 0 0 0 1 +ACE4_SUCCESSFUL_ACCESS_ACE_FLAG ACE4_SUCCESSFUL_ACCESS_ACE_FLAG ace4_successful_access_ace_flag A AC ACE ACE4 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 1 no 0 10 0 0 0 0 1 +ACE4_FAILED_ACCESS_ACE_FLAG ACE4_FAILED_ACCESS_ACE_FLAG ace4_failed_access_ace_flag A AC ACE ACE4 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 1 no 0 4 0 0 0 0 1 +The ACE4_SUCCESSFUL_ACCESS_ACE_FLAG the T Th The The BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 1 () 2 7 0 0 0 0 1 +ACE4_FAILED_ACCESS_ACE_FLAG (FAILED) ace4_failed_access_ace_flag A AC ACE ACE4 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 1 () 2 9 0 0 0 0 1 +ACE4_SYSTEM_AUDIT_ACE_TYPE (AUDIT) ace4_system_audit_ace_type A AC ACE ACE4 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 1 () 2 9 0 0 0 0 1 +(ALARM) ACE (alarm) ( (A (AL (ALA BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 2 1 ().', 5 9 0 0 0 0 1 +the server the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 1 no 0 9 0 0 0 0 1 +principal attempting principal p pr pri prin BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 1 ,, 2 10 0 0 0 0 1 +presence, if presence, p pr pre pres BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 1 ,, 2 9 0 0 0 0 1 +the AUDIT the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 1 . 1 8 0 0 0 0 1 +processing, it processing, p pr pro proc BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 1 ,. 2 9 0 0 0 0 1 +If the if I If If If BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 1 , 1 9 0 0 0 0 1 +matching AUDIT matching m ma mat matc BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 1 , 1 9 0 0 0 0 1 +event occurs. event e ev eve even BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 1 ., 2 9 0 0 0 0 1 +set for set s se set set BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 1 , 1 9 0 0 0 0 1 +AUDIT or audit A AU AUD AUDI BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 2 1 . 1 9 0 0 0 0 1 +FAILED can failed F FA FAI FAIL BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 2 1 ,, 2 9 0 0 0 0 1 +is not is i is is is BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 1 . 1 2 0 0 0 0 1 +The previously the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 6 no 0 10 0 0 0 0 1 +even when even e ev eve even BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 6 . 1 9 0 0 0 0 1 +ALARM, we alarm, A AL ALA ALAR BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 2 6 ,"" 3 9 0 0 0 0 1 +fails to fails f fa fai fail BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 6 . 1 8 0 0 0 0 1 +ACE4_IDENTIFIER_GROUP ACE4_IDENTIFIER_GROUP ace4_identifier_group A AC ACE ACE4 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 8 no 0 3 0 0 0 0 1 +Indicates that indicates I In Ind Indi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 8 "" 2 10 0 0 0 0 1 +or a or o or or or BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 8 . 1 10 0 0 0 0 1 +MUST ignore must M MU MUS MUST BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 2 8 no 0 9 0 0 0 0 1 +value equal value v va val valu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 8 no 0 8 0 0 0 0 1 +Section 6.2.1.5. section S Se Sec Sect BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 8 .... 4 2 0 0 0 0 1 +ACE4_INHERITED_ACE ACE4_INHERITED_ACE ace4_inherited_ace A AC ACE ACE4 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 9 no 0 2 0 0 0 0 1 +Indicates that indicates I In Ind Indi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 9 . 1 9 0 0 0 0 1 +server that server s se ser serv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 9 no 0 10 0 0 0 0 1 +any ACEs any a an any any BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 9 no 0 9 0 0 0 0 1 +object. Client object. o ob obj obje BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 9 . 1 9 0 0 0 0 1 +inheritance. Clients inheritance. i in inh inhe BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 9 . 1 9 0 0 0 0 1 +attribute; it attribute; a at att attr BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 9 ;. 2 9 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 2 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 11 , 1 10 0 0 0 0 0 +[Page 141] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 2 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 2 0 no 0 4 0 0 0 0 1 +6.2.1.5. ACE 6.2.1.5. 6 6. 6.2 6.2. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 0 .... 4 10 0 0 0 0 1 +The "who" the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 0 "" 2 9 0 0 0 0 1 +principal or principal p pr pri prin BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 0 . 1 9 0 0 0 0 1 +user or user u us use user BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 2 0 , 1 10 0 0 0 0 1 +which. which. which. w wh whi whic BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 0 . 1 1 0 0 0 0 1 +There are there T Th The Ther BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 1 no 0 9 0 0 0 0 1 +universally, rather universally, u un uni univ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 1 ,. 2 9 0 0 0 0 1 +Some of some S So Som Some BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 1 no 0 9 0 0 0 0 1 +accesses the accesses a ac acc acce BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 1 , 1 9 0 0 0 0 1 +the file. the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 1 . 1 9 0 0 0 0 1 +permitted over permitted p pe per perm BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 1 , 1 10 0 0 0 0 1 +understands the understands u un und unde BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 1 . 1 4 0 0 0 0 1 ++---------------+---------------------------------------------------+ +---------------+---------------------------------------------------+ +---------------+---------------------------------------------------+ + +- +-- +--- BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 2 3 ------------------------------------------------------------------ 66 10 0 0 0 0 1 +| Who | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 3 no 0 0 0 0 0 0 1 +| Description | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 3 no 0 2 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 3 no 0 0 0 0 0 0 1 ++---------------+---------------------------------------------------+ +---------------+---------------------------------------------------+ +---------------+---------------------------------------------------+ + +- +-- +--- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 2 3 ------------------------------------------------------------------ 66 10 0 0 0 0 1 +| OWNER | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 3 no 0 1 0 0 0 0 1 +| The | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 3 . 1 3 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 3 no 0 0 0 0 0 0 1 +| GROUP | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 3 no 0 1 0 0 0 0 1 +| The | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 3 . 1 5 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 3 no 0 0 0 0 0 0 1 +| EVERYONE | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 3 no 0 1 0 0 0 0 1 +| The | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 3 ,. 2 7 0 0 0 0 1 +| INTERACTIVE | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 3 no 0 2 0 0 0 0 1 +| Accessed | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 3 . 1 5 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 3 no 0 0 0 0 0 0 1 +| NETWORK | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 3 no 0 1 0 0 0 0 1 +| Accessed | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 3 . 1 4 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 3 no 0 0 0 0 0 0 1 +| DIALUP | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 3 no 0 1 0 0 0 0 1 +| Accessed | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 3 . 1 6 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 3 no 0 0 0 0 0 0 1 +| BATCH | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 3 no 0 1 0 0 0 0 1 +| Accessed | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 3 . 1 4 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 3 no 0 0 0 0 0 0 1 +| ANONYMOUS | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 3 no 0 1 0 0 0 0 1 +| Accessed | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 3 . 1 5 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 3 no 0 0 0 0 0 0 1 +| AUTHENTICATED | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 3 (). 3 9 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 3 no 0 0 0 0 0 0 1 +| SERVICE | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 3 no 0 1 0 0 0 0 1 +| Access | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 3 . 1 4 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 3 no 0 0 0 0 0 0 1 ++---------------+---------------------------------------------------+ +---------------+---------------------------------------------------+ +---------------+---------------------------------------------------+ + +- +-- +--- BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 2 3 ------------------------------------------------------------------ 66 10 0 0 0 0 1 +Table 4 table T Ta Tab Tabl BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 8 no 0 10 0 0 0 0 1 +To avoid to T To To To BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 8 , 1 10 0 0 0 0 1 +appended "@" appended a ap app appe BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 8 """"( 5 9 0 0 0 0 1 +name after name n na nam name BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 8 ""),,. 6 6 0 0 0 0 1 +The ACE4_IDENTIFIER_GROUP the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 9 no 0 10 0 0 0 0 1 +special identifiers. special s sp spe spec BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 9 . 1 8 0 0 0 0 1 +identifiers, the identifiers, i id ide iden BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 9 ,. 2 9 0 0 0 0 1 +6.2.1.5.1. Discussion 6.2.1.5.1. 6 6. 6.2 6.2. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 10 ..... 5 10 0 0 0 0 1 +It is it I It It It BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 10 "" 2 10 0 0 0 0 1 +UNIX "other" unix U UN UNI UNIX BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 1 0 0 0 0 0 0 2 10 "".,,"" 7 10 0 0 0 0 1 +does not does d do doe does BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 10 ."" 3 10 0 0 0 0 1 +means literally means m me mea mean BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 2 10 ,. 2 9 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 2 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 11 , 1 10 0 0 0 0 0 +[Page 142] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 2 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 2 0 no 0 4 0 0 0 0 1 +6.2.2. Attribute 6.2.2. 6 6. 6.2 6.2. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 0 ...: 4 10 0 0 0 0 1 +The dacl the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 0 , 1 10 0 0 0 0 1 +ALLOW and allow A AL ALL ALLO BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 2 0 . 1 8 0 0 0 0 1 +inheritance (see inheritance i in inh inhe BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 0 (...). 6 5 0 0 0 0 1 +6.2.3. Attribute 6.2.3. 6 6. 6.2 6.2. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 1 ...: 4 10 0 0 0 0 1 +The sacl the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 1 , 1 10 0 0 0 0 1 +AUDIT and audit A AU AUD AUDI BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 2 1 . 1 8 0 0 0 0 1 +inheritance (see inheritance i in inh inhe BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 1 (...). 6 5 0 0 0 0 1 +6.2.4. Attribute 6.2.4. 6 6. 6.2 6.2. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 2 ...: 4 10 0 0 0 0 1 +The NFSv4.1 the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 2 .. 2 10 0 0 0 0 1 +following bits following f fo fol foll BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 2 : 1 4 0 0 0 0 1 +const MODE4_SUID const c co con cons BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 3 ;/**/ 5 9 0 0 0 0 1 +const MODE4_SGID const c co con cons BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 3 ;/**/ 5 10 0 0 0 0 1 +const MODE4_SVTX const c co con cons BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 3 ;/**/ 5 9 0 0 0 0 1 +const MODE4_RUSR const c co con cons BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 3 ;/*:*/ 6 9 0 0 0 0 1 +const MODE4_WUSR const c co con cons BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 3 ;/*:*/ 6 9 0 0 0 0 1 +const MODE4_XUSR const c co con cons BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 3 ;/*:*/ 6 10 0 0 0 0 1 +const MODE4_RGRP const c co con cons BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 3 ;/*:*/ 6 9 0 0 0 0 1 +const MODE4_WGRP const c co con cons BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 3 ;/*:*/ 6 9 0 0 0 0 1 +const MODE4_XGRP const c co con cons BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 3 ;/*:*/ 6 10 0 0 0 0 1 +const MODE4_ROTH const c co con cons BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 3 ;/*:*/ 6 9 0 0 0 0 1 +const MODE4_WOTH const c co con cons BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 3 ;/*:*/ 6 9 0 0 0 0 1 +const MODE4_XOTH const c co con cons BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 3 ;/*:*/ 6 10 0 0 0 0 1 +Bits MODE4_RUSR, bits B Bi Bit Bits BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 7 ,, 2 9 0 0 0 0 1 +identified in identified i id ide iden BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 7 .,, 3 9 0 0 0 0 1 +MODE4_XGRP apply mode4_xgrp M MO MOD MODE BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 7 no 0 8 0 0 0 0 1 +attribute but attribute a at att attr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 7 . 1 9 0 0 0 0 1 +MODE4_ROTH, MODE4_WOTH, mode4_roth, M MO MOD MODE BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 7 ,, 2 9 0 0 0 0 1 +does not does d do doe does BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 7 no 0 10 0 0 0 0 1 +matching that matching m ma mat matc BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 7 . 1 6 0 0 0 0 1 +Bits within bits B Bi Bit Bits BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 9 no 0 10 0 0 0 0 1 +by this by b by by by BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 9 . 1 9 0 0 0 0 1 +defined above defined d de def defi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 9 , 1 10 0 0 0 0 1 +NFS4ERR_INVAL if nfs4err_inval N NF NFS NFS4 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 9 no 0 9 0 0 0 0 1 +SETATTR, CREATE, setattr, S SE SET SETA BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 2 9 ,,,,. 5 7 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 2 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 11 , 1 10 0 0 0 0 0 +[Page 143] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 2 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 2 0 no 0 4 0 0 0 0 1 +6.2.5. Attribute 6.2.5. 6 6. 6.2 6.2. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 0 ...: 4 10 0 0 0 0 1 +The mode_set_masked the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 0 - 1 10 0 0 0 0 1 +individual bits individual i in ind indi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 0 , 1 9 0 0 0 0 1 +changing others. changing c ch cha chan BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 0 .,,, 4 9 0 0 0 0 1 +MODE4_SGID, and mode4_sgid, M MO MOD MODE BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 0 , 1 9 0 0 0 0 1 +any of any a an any any BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 0 -. 2 8 0 0 0 0 1 +In such in I In In In BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 2 2 -, 2 10 0 0 0 0 1 +then neither then t th the then BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 2 no 0 10 0 0 0 0 1 +modified as modified m mo mod modi BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 2 ... 3 5 0 0 0 0 1 +The mode_set_masked the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 3 , 1 10 0 0 0 0 1 +of a of o of of of BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 3 . 1 9 0 0 0 0 1 +current mode current c cu cur curr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 3 . 1 9 0 0 0 0 1 +the mask the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 3 ()'. 4 9 0 0 0 0 1 +other bits other o ot oth othe BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 3 . 1 9 0 0 0 0 1 +correspond to correspond c co cor corr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 3 , 1 10 0 0 0 0 1 +undefined bits undefined u un und unde BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 3 no 0 8 0 0 0 0 1 +NFS4ERR_INVAL as nfs4err_inval N NF NFS NFS4 BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 3 . 1 4 0 0 0 0 1 +The mode_set_masked the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 6 . 1 10 0 0 0 0 1 +If it if I If If If BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 6 , 1 10 0 0 0 0 1 +NFS4ERR_INVAL. NFS4ERR_INVAL. nfs4err_inval. N NF NFS NFS4 BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 6 . 1 2 0 0 0 0 1 +Bits not bits B Bi Bit Bits BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 6 no 0 9 0 0 0 0 1 +either word either e ei eit eith BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 6 . 1 10 0 0 0 0 1 +NFS4ERR_INVAL if nfs4err_inval N NF NFS NFS4 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 6 . 1 9 0 0 0 0 1 +mode and mode m mo mod mode BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 6 no 0 9 0 0 0 0 1 +SETATTR, the setattr, S SE SET SETA BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 2 6 ,. 2 7 0 0 0 0 1 +6.3. Common 6.3. 6 6. 6.3 6.3. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 8 .. 2 10 0 0 0 0 1 +The requirements the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 8 no 0 10 0 0 0 0 1 +sections, especially sections, s se sec sect BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 8 ,.. 3 5 0 0 0 0 1 +6.3.1. Interpreting 6.3.1. 6 6. 6.3 6.3. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 9 ... 3 10 0 0 0 0 1 +6.3.1.1. Server 6.3.1.1. 6 6. 6.3 6.3. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 9 .... 4 10 0 0 0 0 1 +The server the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 9 .. 2 10 0 0 0 0 1 +whether an whether w wh whe whet BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 9 ., 2 9 0 0 0 0 1 +not be not n no not not BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 9 .: 2 7 0 0 0 0 1 +o In o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 2 10 -, 2 10 0 0 0 0 1 +deny write deny d de den deny BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 2 10 '. 2 8 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 2 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 11 , 1 10 0 0 0 0 0 +[Page 144] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 2 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 2 0 no 0 4 0 0 0 0 1 +o Server o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 10 0 0 0 0 1 +permissions to permissions p pe per perm BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 0 no 0 9 0 0 0 0 1 +no valid no n no no no BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 0 . 1 5 0 0 0 0 1 +o All o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 2 1 no 0 10 0 0 0 0 1 +file when file f fi fil file BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 1 (.., 4 9 0 0 0 0 1 +denies the denies d de den deni BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 1 no 0 9 0 0 0 0 1 +ACE4_EXECUTE, the ace4_execute, A AC ACE ACE4 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 1 , 1 9 0 0 0 0 1 +the file). the t th the the BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 1 ). 2 1 0 0 0 0 1 +o Many o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 2 2 - 1 10 0 0 0 0 1 +of the of o of of of BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 2 no 0 9 0 0 0 0 1 +the ACL. the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 2 .,, 3 8 0 0 0 0 1 +continued access continued c co con cont BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 2 no 0 8 0 0 0 0 1 +changed. changed. changed. c ch cha chan BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 2 . 1 1 0 0 0 0 1 +o Many o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 2 4 "" 2 10 0 0 0 0 1 +beyond an beyond b be bey beyo BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 4 . 1 9 0 0 0 0 1 +write data write w wr wri writ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 4 no 0 9 0 0 0 0 1 +ACL. ACL. acl. A AC ACL ACL. BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 2 4 . 1 0 0 0 0 0 1 +o A o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 2 5 no 0 10 0 0 0 0 1 +ACLs (see acls A AC ACL ACLs BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 2 5 (.). 4 3 0 0 0 0 1 +6.3.1.2. Client 6.3.1.2. 6 6. 6.3 6.3. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 5 .... 4 10 0 0 0 0 1 +Clients SHOULD clients C Cl Cli Clie BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 5 no 0 8 0 0 0 0 1 +interpretation of interpretation i in int inte BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 5 , 1 8 0 0 0 0 1 +operations to operations o op ope oper BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 2 5 . 1 10 0 0 0 0 1 +results of results r re res resu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 2 5 no 0 9 0 0 0 0 1 +be granted be b be be be BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 5 . 1 7 0 0 0 0 1 +Clients must clients C Cl Cli Clie BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 7 ' 1 9 0 0 0 0 1 +define a define d de def defi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 7 . 1 10 0 0 0 0 1 +In general, in I In In In BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 2 7 ,, 2 10 0 0 0 0 1 +do its do d do do do BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 7 . 1 9 0 0 0 0 1 +do this, do d do do do BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 7 , 1 10 0 0 0 0 1 +to servicing to t to to to BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 7 no 0 9 0 0 0 0 1 +determine whether determine d de det dete BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 7 no 0 9 0 0 0 0 1 +access requested. access a ac acc acce BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 7 . 1 10 0 0 0 0 1 +that the that t th tha that BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 7 ',.... 6 7 0 0 0 0 1 +6.3.2. Computing 6.3.2. 6 6. 6.3 6.3. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 10 ... 3 10 0 0 0 0 1 +The following the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 10 *,*, 4 10 0 0 0 0 1 +and MODE4_X* and a an and and BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 10 *,. 3 8 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 2 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 11 , 1 10 0 0 0 0 0 +[Page 145] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 2 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 2 0 no 0 4 0 0 0 0 1 +First, for first, F Fi Fir Firs BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 0 ,,, 3 9 0 0 0 0 1 +EVERYONE@, evaluate everyone@, E EV EVE EVER BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 2 0 ,, 2 10 0 0 0 0 1 +ACEs for aces A AC ACE ACEs BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 0 no 0 9 0 0 0 0 1 +consideration. The consideration. c co con cons BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 0 . 1 9 0 0 0 0 1 +mask showing mask m ma mas mask BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 0 . 1 9 0 0 0 0 1 +Then translate then T Th The Then BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 1 ,, 2 10 0 0 0 0 1 +into mode into i in int into BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 1 ,,,,, 5 9 0 0 0 0 1 +follows: follows: follows: f fo fol foll BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 1 : 1 1 0 0 0 0 1 +1. Set 1. 1 1. 1. 1. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 2 .(,,) 5 10 0 0 0 0 1 +only if only o on onl only BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 2 . 1 8 0 0 0 0 1 +2. Set 2. 2 2. 2. 2. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 3 .(,,) 5 10 0 0 0 0 1 +only if only o on onl only BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 3 no 0 9 0 0 0 0 1 +corresponding mask. corresponding c co cor corr BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 3 . 1 2 0 0 0 0 1 +3. Set 3. 3 3. 3. 3. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 4 .(,,), 6 10 0 0 0 0 1 +and only and a an and and BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 4 . 1 8 0 0 0 0 1 +6.3.2.1. Discussion 6.3.2.1. 6 6. 6.3 6.3. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 4 .... 4 10 0 0 0 0 1 +Some server some S So Som Some BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 5 no 0 10 0 0 0 0 1 +and groups and a an and and BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 5 (,, 3 8 0 0 0 0 1 +MODE4_XGRP). MODE4_XGRP). mode4_xgrp). M MO MOD MODE BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 5 ). 2 1 0 0 0 0 1 +Implementations are implementations I Im Imp Impl BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 5 , 1 10 0 0 0 0 1 +found to found f fo fou foun BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 5 ' 1 10 0 0 0 0 1 +denied access denied d de den deni BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 5 .( 2 9 0 0 0 0 1 +DENY ACEs deny D DE DEN DENY BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 1 1 0 0 0 0 0 2 5 , 1 10 0 0 0 0 1 +to be to t to to to BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 5 .) 2 3 0 0 0 0 1 +The same the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 7 no 0 10 0 0 0 0 1 +setting the setting s se set sett BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 7 no 0 9 0 0 0 0 1 +owner, group, owner, o ow own owne BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 7 ,,; 3 8 0 0 0 0 1 +requirements that requirements r re req requ BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 7 . 1 3 0 0 0 0 1 +6.4. Requirements 6.4. 6 6. 6.4 6.4. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 8 .. 2 10 0 0 0 0 1 +The server the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 8 no 0 8 0 0 0 0 1 +synchronize the synchronize s sy syn sync BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 8 *,*,* 5 10 0 0 0 0 1 +ACEs that aces A AC ACE ACEs BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 8 "","", 6 9 0 0 0 0 1 +"EVERYONE@". This "everyone@". " "E "EV "EVE BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 2 8 ""., 4 10 0 0 0 0 1 +access permissions access a ac acc acce BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 8 , 1 9 0 0 0 0 1 +owner_group, and owner_group, o ow own owne BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 8 ,. 2 7 0 0 0 0 1 +In this in I In In In BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 2 10 ,... 4 10 0 0 0 0 1 +requirements refer requirements r re req requ BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 10 . 1 9 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 2 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 11 , 1 10 0 0 0 0 0 +[Page 146] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 2 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 2 0 no 0 4 0 0 0 0 1 +behaviors specified behaviors b be beh beha BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 0 ""., 4 9 0 0 0 0 1 +invalidating existing invalidating i in inv inva BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 0 no 0 10 0 0 0 0 1 +to the to t to to to BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 0 (.), 4 9 0 0 0 0 1 +actual permissions actual a ac act actu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 0 ,,. 3 6 0 0 0 0 1 +6.4.1. Setting 6.4.1. 6 6. 6.4 6.4. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 1 .../ 4 10 0 0 0 0 1 +In the in I In In In BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 2 1 , 1 9 0 0 0 0 1 +addition to addition a ad add addi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 1 , 1 10 0 0 0 0 1 +the acl the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 1 . 1 9 0 0 0 0 1 +error to error e er err erro BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 1 . 1 6 0 0 0 0 1 +6.4.1.1. Setting 6.4.1.1. 6 6. 6.4 6.4. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 3 .... 4 10 0 0 0 0 1 +When any when W Wh Whe When BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 3 -, 2 9 0 0 0 0 1 +either because either e ei eit eith BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 3 no 0 8 0 0 0 0 1 +mode_set_masked attribute mode_set_masked m mo mod mode BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 3 no 0 9 0 0 0 0 1 +bits from bits b bi bit bits BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 3 -, 2 9 0 0 0 0 1 +explicitly set, explicitly e ex exp expl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 3 , 1 9 0 0 0 0 1 +accordance with accordance a ac acc acco BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 3 . 1 9 0 0 0 0 1 +even if even e ev eve even BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 3 - 1 10 0 0 0 0 1 +set as set s se set set BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 3 . 1 2 0 0 0 0 1 +Note that note N No Not Note BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 6 ( 1 10 0 0 0 0 1 +attribute) are attribute) a at att attr BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 6 ). 2 8 0 0 0 0 1 +In cases in I In In In BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 2 6 , 1 10 0 0 0 0 1 +and dacl and a an and and BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 6 no 0 9 0 0 0 0 1 +the method the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 6 ..-(*, 6 10 0 0 0 0 1 +MODE4_W*, MODE4_X*) mode4_w*, M MO MOD MODE BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 6 *,*) 4 8 0 0 0 0 1 +attribute change. attribute a at att attr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 6 . 1 9 0 0 0 0 1 +that: that: that: t th tha that BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 6 : 1 0 0 0 0 0 1 +1. If 1. 1 1. 1. 1. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 8 ., 2 10 0 0 0 0 1 +other than other o ot oth othe BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 8 no 0 8 0 0 0 0 1 +ACE4_READ_DATA. ACE4_READ_DATA. ace4_read_data. A AC ACE ACE4 BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 8 . 1 2 0 0 0 0 1 +2. If 2. 2 2. 2. 2. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 9 ., 2 10 0 0 0 0 1 +other than other o ot oth othe BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 9 no 0 8 0 0 0 0 1 +ACE4_WRITE_DATA or ace4_write_data A AC ACE ACE4 BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 9 . 1 5 0 0 0 0 1 +3. If 3. 3 3. 3. 3. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 10 ., 2 10 0 0 0 0 1 +other than other o ot oth othe BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 10 no 0 8 0 0 0 0 1 +ACE4_EXECUTE. ACE4_EXECUTE. ace4_execute. A AC ACE ACE4 BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 10 . 1 2 0 0 0 0 1 +Access mask access A Ac Acc Acce BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 11 , 1 10 0 0 0 0 1 +ACEs, MAY aces, A AC ACE ACEs BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 11 ,. 2 4 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 2 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 11 , 1 10 0 0 0 0 0 +[Page 147] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 2 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 2 0 no 0 4 0 0 0 0 1 +Note that note N No Not Note BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 0 no 0 10 0 0 0 0 1 +the permissions the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 0 , 1 10 0 0 0 0 1 +ALARM. As alarm. A AL ALA ALAR BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 2 0 ., 2 9 0 0 0 0 1 +modifying the modifying m mo mod modi BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 0 . 1 4 0 0 0 0 1 +Also note also A Al Als Also BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 1 no 0 9 0 0 0 0 1 +dacl, in dacl, d da dac dacl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 1 ,. 2 9 0 0 0 0 1 +This is this T Th Thi This BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 1 , 1 9 0 0 0 0 1 +much of much m mu muc much BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 1 . 1 10 0 0 0 0 1 +Discarding the discarding D Di Dis Disc BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 1 no 0 10 0 0 0 0 1 +with a with w wi wit with BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 1 (..). 5 8 0 0 0 0 1 +6.4.1.2. Setting 6.4.1.2. 6 6. 6.4 6.4. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 3 .... 4 10 0 0 0 0 1 +When setting when W Wh Whe When BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 3 no 0 8 0 0 0 0 1 +mode_set_masked attributes, mode_set_masked m mo mod mode BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 3 , 1 10 0 0 0 0 1 +be derived be b be be be BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 3 ., 2 9 0 0 0 0 1 +set as set s se set set BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 3 .- 2 8 0 0 0 0 1 +(MODE4_R*, MODE4_W*, (mode4_r*, ( (M (MO (MOD BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 3 (*,*,*) 7 10 0 0 0 0 1 +of the of o of of of BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 3 ...- 4 9 0 0 0 0 1 +mode (MODE4_SUID, mode m mo mod mode BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 3 (,,). 5 9 0 0 0 0 1 +6.4.1.3. Setting 6.4.1.3. 6 6. 6.4 6.4. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 5 .... 4 10 0 0 0 0 1 +When setting when W Wh Whe When BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 6 ( 1 10 0 0 0 0 1 +or the or o or or or BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 6 ) 1 9 0 0 0 0 1 +the same the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 6 ,: 2 9 0 0 0 0 1 +mode (or mode m mo mod mode BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 6 (),.- 5 9 0 0 0 0 1 +set as set s se set set BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 6 ,, 2 9 0 0 0 0 1 +changing the changing c ch cha chan BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 6 ,.... 5 9 0 0 0 0 1 +6.4.2. Retrieving 6.4.2. 6 6. 6.4 6.4. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 7 .../ 4 10 0 0 0 0 1 +This section this T Th Thi This BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 8 no 0 10 0 0 0 0 1 +ACL attributes. acl A AC ACL ACL BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 2 8 . 1 2 0 0 0 0 1 +Some server some S So Som Some BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 8 " 1 9 0 0 0 0 1 +ACLs", meaning acls", A AC ACL ACLs BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 2 8 ", 2 10 0 0 0 0 1 +to the to t to to to BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 8 no 0 9 0 0 0 0 1 +object. If object. o ob obj obje BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 8 ., 2 9 0 0 0 0 1 +server SHOULD server s se ser serv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 8 ; 1 9 0 0 0 0 1 +that is that t th tha that BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 8 ,- 2 10 0 0 0 0 1 +bits of bits b bi bit bits BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 8 (*,*,*) 7 8 0 0 0 0 1 +described in described d de des desc BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 8 ... 3 4 0 0 0 0 1 +For other for F Fo For For BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 10 , 1 10 0 0 0 0 1 +for every for f fo for for BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 10 .- 2 9 0 0 0 0 1 +order bits order o or ord orde BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 10 (,, 3 8 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 2 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 11 , 1 10 0 0 0 0 0 +[Page 148] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 2 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 2 0 no 0 4 0 0 0 0 1 +MODE4_SVTX). The mode4_svtx). M MO MOD MODE BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 0 ). 2 9 0 0 0 0 1 +requested, and requested, r re req requ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 0 ,-(*, 5 9 0 0 0 0 1 +MODE4_W*, MODE4_X*) mode4_w*, M MO MOD MODE BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 0 *,*) 4 10 0 0 0 0 1 +Section 6.3.2 section S Se Sec Sect BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 0 ... 3 5 0 0 0 0 1 +6.4.3. Creating 6.4.3. 6 6. 6.4 6.4. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 1 ... 3 10 0 0 0 0 1 +If a if I If If If BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 1 , 1 8 0 0 0 0 1 +attributes on attributes a at att attr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 1 no 0 8 0 0 0 0 1 +attribute for attribute a at att attr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 1 . 1 9 0 0 0 0 1 +the inherited the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 1 . 1 10 0 0 0 0 1 +ACEs to aces A AC ACE ACEs BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 1 no 0 9 0 0 0 0 1 +directory's ACL directory's d di dir dire BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 1 ' 1 10 0 0 0 0 1 +section. section. section. s se sec sect BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 1 . 1 1 0 0 0 0 1 +Implementors should implementors I Im Imp Impl BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 2 3 no 0 10 0 0 0 0 1 +must be must m mu mus must BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 3 no 0 9 0 0 0 0 1 +attributes. attributes. attributes. a at att attr BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 3 . 1 1 0 0 0 0 1 +1. If 1. 1 1. 1. 1. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 4 .: 2 10 0 0 0 0 1 +In this in I In In In BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 2 4 ,, 2 10 0 0 0 0 1 +applied to applied a ap app appl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 4 ..., 4 9 0 0 0 0 1 +thereby modifying thereby t th the ther BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 4 . 1 4 0 0 0 0 1 +2. If 2. 2 2. 2. 2. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 5 .: 2 10 0 0 0 0 1 +In this in I In In In BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 2 6 ,, 2 10 0 0 0 0 1 +defined in defined d de def defi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 6 , 1 10 0 0 0 0 1 +and the and a an and and BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 6 .... 4 7 0 0 0 0 1 +3. If 3. 3 3. 3. 3. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 7 .: 2 10 0 0 0 0 1 +In this in I In In In BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 2 7 ,, 2 10 0 0 0 0 1 +attributes will attributes a at att attr BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 7 .... 4 9 0 0 0 0 1 +4. If 4. 4 4. 4. 4. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 8 .: 2 10 0 0 0 0 1 +In the in I In In In BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 2 8 no 0 9 0 0 0 0 1 +attributes at attributes a at att attr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 8 ,.., 4 9 0 0 0 0 1 +OPEN4_CREATE and open4_create O OP OPE OPEN BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 8 , 1 9 0 0 0 0 1 +NOT take not N NO NOT NOT BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 2 8 ( 1 9 0 0 0 0 1 +createmode4, since createmode4, c cr cre crea BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 8 ,)., 4 9 0 0 0 0 1 +the server the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 8 no 0 10 0 0 0 0 1 +created object. created c cr cre crea BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 8 . 1 9 0 0 0 0 1 +set the set s se set set BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 8 , 1 10 0 0 0 0 1 +the server the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 8 , 1 9 0 0 0 0 1 +what permissions what w wh wha what BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 8 ., 2 9 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 2 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 11 , 1 10 0 0 0 0 0 +[Page 149] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 2 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 2 0 no 0 4 0 0 0 0 1 +empty ACL empty e em emp empt BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 0 , 1 10 0 0 0 0 1 +owner's SETATTR owner's o ow own owne BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 0 ' 1 9 0 0 0 0 1 +denied. denied. denied. d de den deni BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 0 . 1 1 0 0 0 0 1 +In other in I In In In BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 2 1 ,, 2 8 0 0 0 0 1 +modifications to modifications m mo mod modi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 1 ., 2 9 0 0 0 0 1 +supported, MUST supported, s su sup supp BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 1 ,.., 4 8 0 0 0 0 1 +MODE4_SUID, MODE4_SGID, mode4_suid, M MO MOD MODE BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 1 ,,. 3 8 0 0 0 0 1 +inheritable ACEs inheritable i in inh inhe BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 1 , 1 9 0 0 0 0 1 +creating acl, creating c cr cre crea BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 1 ,, 2 8 0 0 0 0 1 +defined. If defined. d de def defi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 1 ., 2 10 0 0 0 0 1 +the ACL4_DEFAULTED the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 1 no 0 9 0 0 0 0 1 +attributes. attributes. attributes. a at att attr BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 1 . 1 1 0 0 0 0 1 +6.4.3.1. The 6.4.3.1. 6 6. 6.4 6.4. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 3 .... 4 10 0 0 0 0 1 +If the if I If If If BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 4 , 1 10 0 0 0 0 1 +SHOULD NOT should S SH SHO SHOU BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 2 4 no 0 9 0 0 0 0 1 +ACE4_FILE_INHERIT_FLAG is ace4_file_inherit_flag A AC ACE ACE4 BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 4 . 1 4 0 0 0 0 1 +If the if I If If If BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 5 , 1 10 0 0 0 0 1 +inherit all inherit i in inh inhe BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 5 ,, 2 9 0 0 0 0 1 +those that those t th tho thos BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 5 no 0 6 0 0 0 0 1 +ACE4_DIRECTORY_INHERIT_ACE flag ace4_directory_inherit_ace A AC ACE ACE4 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 5 . 1 9 0 0 0 0 1 +ACE4_FILE_INHERIT_ACE set ace4_file_inherit_ace A AC ACE ACE4 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 5 , 1 9 0 0 0 0 1 +the inherited the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 5 no 0 9 0 0 0 0 1 +ACE4_INHERIT_ONLY_ACE flag ace4_inherit_only_ace A AC ACE ACE4 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 5 no 0 9 0 0 0 0 1 +affected by affected a af aff affe BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 5 -. 2 6 0 0 0 0 1 +When a when W Wh Whe When BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 7 , 1 9 0 0 0 0 1 +ACE that ace A AC ACE ACE BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 1 1 0 0 0 0 0 2 7 (, 2 9 0 0 0 0 1 +neither ACE4_INHERIT_ONLY_ACE neither n ne nei neit BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 7 ), 2 10 0 0 0 0 1 +into two into i in int into BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 7 , 1 8 0 0 0 0 1 +ACE4_INHERIT_ONLY_ACE set. ace4_inherit_only_ace A AC ACE ACE4 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 7 .(, 3 9 0 0 0 0 1 +both of both b bo bot both BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 7 .) 2 10 0 0 0 0 1 +This makes this T Th Thi This BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 7 no 0 9 0 0 0 0 1 +directory without directory d di dir dire BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 7 no 0 9 0 0 0 0 1 +new directory's new n ne new new BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 7 '. 2 3 0 0 0 0 1 +6.4.3.2. Automatic 6.4.3.2. 6 6. 6.4 6.4. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 10 .... 4 10 0 0 0 0 1 +The acl the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 10 , 1 9 0 0 0 0 1 +(Section 6.2.3) (section ( (S (Se (Sec BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 10 (..)(..) 8 10 0 0 0 0 1 +additional flag additional a ad add addi BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 10 . 1 3 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 2 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 11 , 1 10 0 0 0 0 0 +[Page 150] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 2 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 2 0 no 0 4 0 0 0 0 1 +struct nfsacl41 struct s st str stru BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 0 no 0 10 0 0 0 0 1 +aclflag4 aclflag4 aclflag4 a ac acl aclf BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 0 no 0 5 0 0 0 0 1 +na41_flag; na41_flag; na41_flag; n na na4 na41 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 0 ; 1 6 0 0 0 0 1 +nfsace4 nfsace4 nfsace4 n nf nfs nfsa BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 0 no 0 4 0 0 0 0 1 +na41_aces<>; na41_aces<>; na41_aces<>; n na na4 na41 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 0 ; 1 7 0 0 0 0 1 +}; }; }; } }; }; }; BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 2 0 ; 1 1 0 0 0 0 1 +The flag the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 0 ; 1 10 0 0 0 0 1 +are defined: are a ar are are BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 0 : 1 1 0 0 0 0 1 +const ACL4_AUTO_INHERIT const c co con cons BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 1 no 0 10 0 0 0 0 1 += 0x00000001; = = = = = BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 1 ; 1 5 0 0 0 0 1 +const ACL4_PROTECTED const c co con cons BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 1 no 0 8 0 0 0 0 1 += 0x00000002; = = = = = BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 1 ; 1 5 0 0 0 0 1 +const ACL4_DEFAULTED const c co con cons BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 1 no 0 8 0 0 0 0 1 += 0x00000004; = = = = = BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 1 ; 1 5 0 0 0 0 1 +and all and a an and and BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 1 . 1 10 0 0 0 0 1 +be set be b be be be BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 1 ( 1 9 0 0 0 0 1 +cleared in cleared c cl cle clea BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 1 ). 2 3 0 0 0 0 1 +Together these together T To Tog Toge BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 2 no 0 10 0 0 0 0 1 +inheritance, which inheritance, i in inh inhe BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 2 ,. 2 8 0 0 0 0 1 +Inheritable ACEs inheritable I In Inh Inhe BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 2 3 no 0 10 0 0 0 0 1 +time that time t ti tim time BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 3 ; 1 9 0 0 0 0 1 +inheritable ACEs inheritable i in inh inhe BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 3 no 0 10 0 0 0 0 1 +descendants. descendants. descendants. d de des desc BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 3 . 1 1 0 0 0 0 1 +However, the however, H Ho How Howe BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 4 , 1 10 0 0 0 0 1 +a client a a a a a BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 1 0 0 0 0 0 2 4 no 0 9 0 0 0 0 1 +entire directory entire e en ent enti BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 4 . 1 4 0 0 0 0 1 +A server a A A A A BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 1 0 0 0 0 0 2 5 no 0 9 0 0 0 0 1 +time in time t ti tim time BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 5 , 1 10 0 0 0 0 1 +any inherited any a an any any BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 5 . 1 8 0 0 0 0 1 +A client a A A A A BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 1 0 0 0 0 0 2 6 no 0 10 0 0 0 0 1 +to inheritable to t to to to BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 6 no 0 9 0 0 0 0 1 +directory's descendants directory's d di dir dire BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 6 ' 1 9 0 0 0 0 1 +any ACEs any a an any any BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 6 no 0 9 0 0 0 0 1 +new inheritable new n ne new new BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 6 (). 3 9 0 0 0 0 1 +uses the uses u us use uses BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 6 no 0 9 0 0 0 0 1 +which ACEs which w wh whi whic BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 6 .( 2 8 0 0 0 0 1 +inheritable ACEs inheritable i in inh inhe BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 6 no 0 9 0 0 0 0 1 +those will those t th tho thos BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 6 no 0 9 0 0 0 0 1 +inheritable ACEs inheritable i in inh inhe BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 6 .) 2 6 0 0 0 0 1 +The reach the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 10 :, 2 9 0 0 0 0 1 +automatic inheritance automatic a au aut auto BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 10 no 0 10 0 0 0 0 1 +has the has h ha has has BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 10 ;, 2 9 0 0 0 0 1 +inheritance stops inheritance i in inh inhe BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 10 no 0 9 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 2 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 11 , 1 10 0 0 0 0 0 +[Page 151] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 2 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 2 0 no 0 4 0 0 0 0 1 +set, preventing set, s se set set, BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 0 ,( 2 10 0 0 0 0 1 +on a on o on on on BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 0 )'. 3 9 0 0 0 0 1 +This propagation this T Th Thi This BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 0 no 0 10 0 0 0 0 1 +attributes; thus, attributes; a at att attr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 0 ;, 2 9 0 0 0 0 1 +be independently be b be be be BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 0 , 1 9 0 0 0 0 1 +one type one o on one one BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 0 no 0 9 0 0 0 0 1 +of the of o of of of BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 0 . 1 4 0 0 0 0 1 +New objects new N Ne New New BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 2 no 0 9 0 0 0 0 1 +the ACL4_PROTECTED the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 2 no 0 10 0 0 0 0 1 +the same the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 2 ,, 2 9 0 0 0 0 1 +parent object. parent p pa par pare BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 2 2 . 1 2 0 0 0 0 1 +Both the both B Bo Bot Both BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 3 , 1 10 0 0 0 0 1 +support one support s su sup supp BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 2 3 . 1 6 0 0 0 0 1 +A server a A A A A BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 1 0 0 0 0 0 2 3 no 0 10 0 0 0 0 1 +the new the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 3 no 0 9 0 0 0 0 1 +all three all a al all all BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 3 ., 2 9 0 0 0 0 1 +reported in reported r re rep repo BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 3 no 0 8 0 0 0 0 1 +reported in reported r re rep repo BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 3 , 1 8 0 0 0 0 1 +ACE4_INHERITED_ACE flag ace4_inherited_ace A AC ACE ACE4 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 3 . 1 9 0 0 0 0 1 +And of and A An And And BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 3 no 0 9 0 0 0 0 1 +determine the determine d de det dete BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 3 . 1 7 0 0 0 0 1 +When a when W Wh Whe When BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 6 , 1 9 0 0 0 0 1 +SHOULD set should S SH SHO SHOU BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 2 6 no 0 10 0 0 0 0 1 +dacl. By dacl. d da dac dacl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 6 ., 2 9 0 0 0 0 1 +attributes, the attributes, a at att attr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 6 , 1 10 0 0 0 0 1 +inheritance, and inheritance, i in inh inhe BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 6 , 1 9 0 0 0 0 1 +automatic inheritance automatic a au aut auto BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 6 . 1 5 0 0 0 0 1 +When a when W Wh Whe When BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 7 ,, 2 10 0 0 0 0 1 +again, it again, a ag aga agai BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 7 , 1 9 0 0 0 0 1 +unchanged, in unchanged, u un unc unch BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 7 ,,. 3 9 0 0 0 0 1 +application is application a ap app appl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 7 , 1 10 0 0 0 0 1 +flag. This flag. f fl fla flag BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 7 ., 2 9 0 0 0 0 1 +this rule this t th thi this BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 7 no 0 10 0 0 0 0 1 +automatic inheritance. automatic a au aut auto BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 7 . 1 3 0 0 0 0 1 +If a if I If If If BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 9 , 1 9 0 0 0 0 1 +in such in i in in in BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 2 9 , 1 10 0 0 0 0 1 +order, at order, o or ord orde BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 9 ,., 3 9 0 0 0 0 1 +set the set s se set set BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 9 '. 2 6 0 0 0 0 1 +Finally, in finally, F Fi Fin Fina BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 11 , 1 9 0 0 0 0 1 +directory does directory d di dir dire BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 11 , 1 10 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 2 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 11 , 1 10 0 0 0 0 0 +[Page 152] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 2 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 2 0 no 0 4 0 0 0 0 1 +and there and a an and and BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 0 ', 2 9 0 0 0 0 1 +then the then t th the then BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 0 '- 2 10 0 0 0 0 1 +dependent. In dependent. d de dep depe BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 0 ., 2 9 0 0 0 0 1 +flag on flag f fl fla flag BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 0 . 1 8 0 0 0 0 1 +performing automatic performing p pe per perf BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 0 no 0 9 0 0 0 0 1 +sign that sign s si sig sign BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 0 no 0 9 0 0 0 0 1 +using the using u us usi usin BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 0 . 1 5 0 0 0 0 1 +7. Single-Server 7. 7 7. 7. 7. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 2 .- 2 10 0 0 0 0 1 +This section this T Th Thi This BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 2 -.- 3 9 0 0 0 0 1 +server namespaces server s se ser serv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 2 , 1 10 0 0 0 0 1 +be used be b be be be BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 2 -(.., 5 9 0 0 0 0 1 +site-wide or site-wide s si sit site BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 2 --), 4 9 0 0 0 0 1 +described in described d de des desc BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 2 . 1 3 0 0 0 0 1 +7.1. Server 7.1. 7 7. 7.1 7.1. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 4 .. 2 10 0 0 0 0 1 +On a on O On On On BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 4 , 1 10 0 0 0 0 1 +pathnames under pathnames p pa pat path BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 4 "/"., 5 9 0 0 0 0 1 +namespace constitutes namespace n na nam name BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 4 no 0 9 0 0 0 0 1 +letters. NFS letters. l le let lett BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 4 .' 2 9 0 0 0 0 1 +file system file f fi fil file BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 4 ., 2 10 0 0 0 0 1 +of the of o of of of BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 4 "". 3 9 0 0 0 0 1 +previous versions previous p pr pre prev BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 4 , 1 9 0 0 0 0 1 +export is export e ex exp expo BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 4 ; 1 9 0 0 0 0 1 +string that string s st str stri BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 4 no 0 9 0 0 0 0 1 +server returned server s se ser serv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 4 . 1 9 0 0 0 0 1 +protocol also protocol p pr pro prot BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 4 no 0 9 0 0 0 0 1 +server's exports. server's s se ser serv BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 4 '. 2 2 0 0 0 0 1 +7.2. Browsing 7.2. 7 7. 7.2 7.2. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 7 .. 2 10 0 0 0 0 1 +The NFSv4.1 the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 7 . 1 10 0 0 0 0 1 +to obtain to t to to to BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 7 , 1 9 0 0 0 0 1 +series of series s se ser seri BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 7 ,. 2 10 0 0 0 0 1 +common user common c co com comm BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 7 ( 1 10 0 0 0 0 1 +a file a a a a a BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 1 0 0 0 0 0 2 7 "") 3 10 0 0 0 0 1 +through a through t th thr thro BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 7 . 1 9 0 0 0 0 1 +export to export e ex exp expo BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 7 -, 2 9 0 0 0 0 1 +operations. operations. operations. o op ope oper BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 7 . 1 1 0 0 0 0 1 +This style this T Th Thi This BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 10 . 1 9 0 0 0 0 1 +In NFSv3, in I In In In BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 3 10 , 1 10 0 0 0 0 1 +single server single s si sin sing BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 10 ., 2 9 0 0 0 0 1 +not change. not n no not not BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 10 . 1 9 0 0 0 0 1 +span exports. span s sp spa span BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 10 . 1 2 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 3 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 11 , 1 10 0 0 0 0 0 +[Page 153] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 3 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 3 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 3 0 no 0 4 0 0 0 0 1 +In the in I In In In BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 3 0 , 1 9 0 0 0 0 1 +snapshot of snapshot s sn sna snap BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 0 ' 1 10 0 0 0 0 1 +MOUNT protocol. mount M MO MOU MOUN BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 1 1 0 0 0 0 0 3 0 .', 3 9 0 0 0 0 1 +can create can c ca can can BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 0 '. 2 9 0 0 0 0 1 +parts of parts p pa par part BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 0 no 0 10 0 0 0 0 1 +in with in i in in in BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 3 0 . 1 10 0 0 0 0 1 +"pseudo file "pseudo " "p "ps "pse BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 0 ""(.) 5 10 0 0 0 0 1 +from one from f fr fro from BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 0 . 1 9 0 0 0 0 1 +representation of representation r re rep repr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 0 ':. 3 10 0 0 0 0 1 +If the if I If If If BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 0 , 1 9 0 0 0 0 1 +unaware of unaware u un una unaw BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 0 . 1 2 0 0 0 0 1 +7.3. Server 7.3. 7 7. 7.3 7.3. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 3 4 .. 2 10 0 0 0 0 1 +NFSv4.1 servers nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 3 4 . 1 10 0 0 0 0 1 +the exports the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 4 no 0 9 0 0 0 0 1 +namespace for namespace n na nam name BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 4 .. 2 10 0 0 0 0 1 +operations to operations o op ope oper BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 3 4 . 1 8 0 0 0 0 1 +Where there where W Wh Whe Wher BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 5 no 0 8 0 0 0 0 1 +exported, clients exported, e ex exp expo BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 5 , 1 9 0 0 0 0 1 +reach actual reach r re rea reac BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 5 . 1 9 0 0 0 0 1 +to provide to t to to to BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 5 no 0 9 0 0 0 0 1 +namespace via namespace n na nam name BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 5 "" 2 10 0 0 0 0 1 +directories only. directories d di dir dire BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 5 . 1 9 0 0 0 0 1 +like a like l li lik like BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 5 ,-. 3 5 0 0 0 0 1 +Based on based B Ba Bas Base BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 7 ', 2 10 0 0 0 0 1 +that multiple that t th tha that BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 7 ., 2 8 0 0 0 0 1 +/a /a /a / /a /a /a BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 8 / 1 1 0 0 0 0 1 +pseudo file pseudo p ps pse pseu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 8 no 0 10 0 0 0 0 1 +/a/b /a/b /a/b / /a /a/ /a/b BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 8 // 2 2 0 0 0 0 1 +real file real r re rea real BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 8 no 0 8 0 0 0 0 1 +/a/b/c /a/b/c /a/b/c / /a /a/ /a/b BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 8 /// 3 3 0 0 0 0 1 +pseudo file pseudo p ps pse pseu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 8 no 0 10 0 0 0 0 1 +/a/b/c/d /a/b/c/d /a/b/c/d / /a /a/ /a/b BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 8 //// 4 4 0 0 0 0 1 +real file real r re rea real BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 8 no 0 8 0 0 0 0 1 +Each of each E Ea Eac Each BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 9 no 0 9 0 0 0 0 1 +therefore MUST therefore t th the ther BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 9 , 1 10 0 0 0 0 1 +server. server. server. s se ser serv BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 9 . 1 1 0 0 0 0 1 +7.4. Multiple 7.4. 7 7. 7.4 7.4. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 3 9 .. 2 10 0 0 0 0 1 +Certain operating certain C Ce Cer Cert BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 10 no 0 9 0 0 0 0 1 +"multiple roots". "multiple " "m "mu "mul BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 10 ""., 4 9 0 0 0 0 1 +commonly represented commonly c co com comm BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 10 . 1 9 0 0 0 0 1 +these platforms these t th the thes BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 10 no 0 9 0 0 0 0 1 +names so names n na nam name BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 10 no 0 10 0 0 0 0 1 +in the in i in in in BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 3 10 . 1 2 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 3 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 11 , 1 10 0 0 0 0 0 +[Page 154] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 3 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 3 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 3 0 no 0 4 0 0 0 0 1 +7.5. Filehandle 7.5. 7 7. 7.5 7.5. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 3 0 .. 2 10 0 0 0 0 1 +The nature the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 0 ' 1 10 0 0 0 0 1 +representation of representation r re rep repr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 0 (). 3 8 0 0 0 0 1 +Therefore, the therefore, T Th The Ther BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 0 , 1 8 0 0 0 0 1 +dynamically when dynamically d dy dyn dyna BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 0 . 1 9 0 0 0 0 1 +that the that t th tha that BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 0 - 1 9 0 0 0 0 1 +which persistent which w wh whi whic BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 0 . 1 9 0 0 0 0 1 +preferable that preferable p pr pre pref BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 0 no 0 9 0 0 0 0 1 +pseudo file pseudo p ps pse pseu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 0 , 1 9 0 0 0 0 1 +system filehandles system s sy sys syst BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 0 . 1 9 0 0 0 0 1 +the associated the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 0 "" 2 9 0 0 0 0 1 +question. If question. q qu que ques BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 0 ., 2 9 0 0 0 0 1 +prepared to prepared p pr pre prep BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 0 (.., 4 10 0 0 0 0 1 +operations) when operations) o op ope oper BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 0 ). 2 8 0 0 0 0 1 +Because it because B Be Bec Beca BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 5 no 0 9 0 0 0 0 1 +systems using systems s sy sys syst BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 3 5 , 1 10 0 0 0 0 1 +them, rather them, t th the them BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 5 ,. 2 10 0 0 0 0 1 +7.6. Exported 7.6. 7 7. 7.6 7.6. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 3 6 .. 2 10 0 0 0 0 1 +If the if I If If If BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 6 ', 2 10 0 0 0 0 1 +a pseudo a a a a a BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 1 0 0 0 0 0 3 6 .. 2 8 0 0 0 0 1 +Assume the assume A As Ass Assu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 6 : 1 6 0 0 0 0 1 +/ / / / / / / BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 3 7 / 1 1 0 0 0 0 1 +fs1 (exported) fs1 f fs fs1 fs1 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 3 7 () 2 7 0 0 0 0 1 +/a /a /a / /a /a /a BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 7 / 1 1 0 0 0 0 1 +fs2 (not fs2 f fs fs2 fs2 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 3 7 () 2 10 0 0 0 0 1 +/a/b /a/b /a/b / /a /a/ /a/b BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 7 // 2 2 0 0 0 0 1 +fs3 (exported) fs3 f fs fs3 fs3 BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 3 7 () 2 7 0 0 0 0 1 +Because fs2 because B Be Bec Beca BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 7 , 1 9 0 0 0 0 1 +LOOKUPs. The lookups. L LO LOO LOOK BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 3 7 .. 2 10 0 0 0 0 1 +7.7. Mount 7.7. 7 7. 7.7 7.7. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 3 8 .. 2 10 0 0 0 0 1 +The server the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 8 no 0 10 0 0 0 0 1 +that one that t th tha that BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 8 '' 2 9 0 0 0 0 1 +mounted upon mounted m mo mou moun BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 8 .: 2 7 0 0 0 0 1 +/a/b /a/b /a/b / /a /a/ /a/b BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 9 // 2 3 0 0 0 0 1 +(file system (file ( (f (fi (fil BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 9 () 2 10 0 0 0 0 1 +/a/b/c/d /a/b/c/d /a/b/c/d / /a /a/ /a/b BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 9 //// 4 5 0 0 0 0 1 +(file system (file ( (f (fi (fil BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 9 () 2 10 0 0 0 0 1 +The pseudo the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 10 no 0 10 0 0 0 0 1 +like: like: like: l li lik like BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 10 : 1 0 0 0 0 0 1 +/ / / / / / / BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 3 10 / 1 0 0 0 0 0 1 +(place holder/not (place ( (p (pl (pla BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 10 (/) 3 10 0 0 0 0 1 +/a/b /a/b /a/b / /a /a/ /a/b BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 10 // 2 1 0 0 0 0 1 +(file system (file ( (f (fi (fil BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 10 () 2 5 0 0 0 0 1 +/a/b/c/d /a/b/c/d /a/b/c/d / /a /a/ /a/b BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 10 //// 4 3 0 0 0 0 1 +(file system (file ( (f (fi (fil BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 10 () 2 5 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 3 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 11 , 1 10 0 0 0 0 0 +[Page 155] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 3 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 3 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 3 0 no 0 4 0 0 0 0 1 +It is it I It It It BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 0 ' 1 9 0 0 0 0 1 +that is that t th tha that BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 0 . 1 9 0 0 0 0 1 +for the for f fo for for BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 0 ////,' 6 10 0 0 0 0 1 +root of root r ro roo root BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 3 0 ////. 5 9 0 0 0 0 1 +protocol, the protocol, p pr pro prot BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 0 , 1 9 0 0 0 0 1 +/a/b/c/d within /a/b/c/d / /a /a/ /a/b BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 0 //////. 7 5 0 0 0 0 1 +The NFS the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 2 no 0 10 0 0 0 0 1 +point by point p po poi poin BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 2 "". 3 8 0 0 0 0 1 +7.8. Security 7.8. 7 7. 7.8 7.8. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 3 3 .. 2 10 0 0 0 0 1 +Because NFSv4 because B Be Bec Beca BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 3 no 0 9 0 0 0 0 1 +mechanisms used, mechanisms m me mec mech BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 3 ,, 2 9 0 0 0 0 1 +and SECINFO_NONAME, and a an and and BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 3 , 1 10 0 0 0 0 1 +the namespace the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 3 . 1 10 0 0 0 0 1 +Instead, it instead, I In Ins Inst BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 3 , 1 8 0 0 0 0 1 +NFS4ERR_WRONGSEC if nfs4err_wrongsec N NF NFS NFS4 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 3 3 no 0 8 0 0 0 0 1 +inappropriate security inappropriate i in ina inap BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 3 . 1 4 0 0 0 0 1 +If security if I If If If BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 5 no 0 10 0 0 0 0 1 +a particular a a a a a BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 1 0 0 0 0 0 3 5 ,, 2 9 0 0 0 0 1 +the server the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 5 no 0 9 0 0 0 0 1 +server's namespace server's s se ser serv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 5 ''. 3 9 0 0 0 0 1 +example: example: example: e ex exa exam BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 5 : 1 1 0 0 0 0 1 +/ / / / / / / BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 3 6 / 1 0 0 0 0 0 1 +(place holder/not (place ( (p (pl (pla BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 6 (/) 3 10 0 0 0 0 1 +/a/b /a/b /a/b / /a /a/ /a/b BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 6 // 2 1 0 0 0 0 1 +(file system (file ( (f (fi (fil BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 6 () 2 5 0 0 0 0 1 +/a/b/MySecretProject /a/b/MySecretProject /a/b/mysecretproject / /a /a/ /a/b BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 6 /// 3 7 0 0 0 0 1 +(file system (file ( (f (fi (fil BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 6 () 2 5 0 0 0 0 1 +The /a/b/MySecretProject the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 7 /// 3 9 0 0 0 0 1 +shared resource. shared s sh sha shar BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 7 ./// 4 7 0 0 0 0 1 +MySecretProject is mysecretproject M My MyS MySe BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 3 7 no 0 10 0 0 0 0 1 +knowledge of knowledge k kn kno know BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 7 ., 2 9 0 0 0 0 1 +server should server s se ser serv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 7 //. 3 9 0 0 0 0 1 +for knowledge for f fo for for BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 7 no 0 9 0 0 0 0 1 +desirable. desirable. desirable. d de des desi BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 7 . 1 1 0 0 0 0 1 +For the for F Fo For For BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 9 , 1 10 0 0 0 0 1 +the server's the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 9 ', 2 10 0 0 0 0 1 +the higher-level the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 9 - 1 10 0 0 0 0 1 +flavor. Therefore, flavor. f fl fla flav BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 9 ., 2 10 0 0 0 0 1 +hiding the hiding h hi hid hidi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 9 () 2 10 0 0 0 0 1 +multiple disjoint multiple m mu mul mult BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 9 . 1 6 0 0 0 0 1 +In other in I In In In BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 3 11 , 1 10 0 0 0 0 1 +particular object particular p pa par part BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 11 ' 1 10 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 3 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 11 , 1 10 0 0 0 0 0 +[Page 156] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 3 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 3 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 3 0 no 0 4 0 0 0 0 1 +all security all a al all all BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 0 . 1 9 0 0 0 0 1 +convenient practice, convenient c co con conv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 0 , 1 9 0 0 0 0 1 +otherwise, is otherwise, o ot oth othe BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 0 , 1 10 0 0 0 0 1 +all of all a al all all BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 0 . 1 5 0 0 0 0 1 +Where there where W Wh Whe Wher BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 1 , 1 9 0 0 0 0 1 +clients should clients c cl cli clie BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 1 no 0 10 0 0 0 0 1 +file system file f fi fil file BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 1 ---. 4 8 0 0 0 0 1 +8. State 8. 8 8. 8. 8. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 3 2 . 1 10 0 0 0 0 1 +Integrating locking integrating I In Int Inte BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 2 no 0 10 0 0 0 0 1 +stateful. With stateful. s st sta stat BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 2 ., 2 9 0 0 0 0 1 +file and file f fi fil file BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 2 ,, 2 9 0 0 0 0 1 +mandatory byte-range mandatory m ma man mand BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 2 -, 2 10 0 0 0 0 1 +dependent on dependent d de dep depe BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 2 no 0 8 0 0 0 0 1 +combination of combination c co com comb BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 2 ()[]. 5 8 0 0 0 0 1 +features include features f fe fea feat BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 2 , 1 9 0 0 0 0 1 +measure of measure m me mea meas BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 2 -, 2 10 0 0 0 0 1 +not readily not n no not not BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 2 . 1 9 0 0 0 0 1 +components to components c co com comp BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 2 : 1 6 0 0 0 0 1 +o clear o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 3 5 no 0 10 0 0 0 0 1 +o ability o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 3 5 no 0 10 0 0 0 0 1 +and server and a an and and BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 5 no 0 1 0 0 0 0 1 +o simple o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 3 6 no 0 10 0 0 0 0 1 +In this in I In In In BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 3 6 ,. 2 9 0 0 0 0 1 +requests changes requests r re req requ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 3 6 no 0 9 0 0 0 0 1 +made. Non-client-initiated made. m ma mad made BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 6 .--. 4 9 0 0 0 0 1 +The client the T Th The The BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 6 no 0 9 0 0 0 0 1 +adjust its adjust a ad adj adju BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 6 '. 2 10 0 0 0 0 1 +Individual pieces individual I In Ind Indi BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 8 no 0 10 0 0 0 0 1 +client at client c cl cli clie BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 8 -. 2 9 0 0 0 0 1 +stateids may stateids s st sta stat BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 8 ,- 2 10 0 0 0 0 1 +locks held locks l lo loc lock BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 8 , 1 9 0 0 0 0 1 +privileges to privileges p pr pri priv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 8 no 0 9 0 0 0 0 1 +location. location. location. l lo loc loca BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 8 . 1 1 0 0 0 0 1 +In all in I In In In BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 3 10 , 1 10 0 0 0 0 1 +that represents that t th tha that BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 10 no 0 9 0 0 0 0 1 +stateid used stateid s st sta stat BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 10 . 1 9 0 0 0 0 1 +details of details d de det deta BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 10 no 0 9 0 0 0 0 1 +always starts always a al alw alwa BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 10 . 1 4 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 3 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 11 , 1 10 0 0 0 0 0 +[Page 157] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 3 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 3 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 3 0 no 0 4 0 0 0 0 1 +8.1. Client 8.1. 8 8. 8.1 8.1. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 3 0 .. 2 10 0 0 0 0 1 +A client a A A A A BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 1 0 0 0 0 0 3 0 (.) 3 10 0 0 0 0 1 +more sessionids more m mo mor more BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 0 (.) 3 9 0 0 0 0 1 +to open, to t to to to BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 0 ,-,, 4 9 0 0 0 0 1 +object. Each object. o ob obj obje BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 0 ., 2 9 0 0 0 0 1 +thus serves thus t th thu thus BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 0 .. 2 8 0 0 0 0 1 +For some for F Fo For For BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 2 , 1 9 0 0 0 0 1 +some number some s so som some BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 2 "", 3 9 0 0 0 0 1 +normally correspond normally n no nor norm BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 2 . 1 9 0 0 0 0 1 +types of types t ty typ type BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 2 -,, 3 10 0 0 0 0 1 +such intermediate such s su suc such BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 2 ,- 2 9 0 0 0 0 1 +objects are objects o ob obj obje BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 2 no 0 9 0 0 0 0 1 +and a and a an and and BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 2 . 1 3 0 0 0 0 1 +8.2. Stateid 8.2. 8 8. 8.2 8.2. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 3 3 .. 2 10 0 0 0 0 1 +When the when W Wh Whe When BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 4 (,- 3 9 0 0 0 0 1 +range locks, range r ra ran rang BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 4 ,,), 4 9 0 0 0 0 1 +stateid that stateid s st sta stat BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 4 () 2 9 0 0 0 0 1 +same file, same s sa sam same BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 4 ,, 2 8 0 0 0 0 1 +characteristics. Thus, characteristics. c ch cha char BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 4 .,- 3 9 0 0 0 0 1 +owners each owners o ow own owne BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 4 ., 2 9 0 0 0 0 1 +byte-range locks byte-range b by byt byte BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 4 -- 2 10 0 0 0 0 1 +identifying stateid. identifying i id ide iden BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 4 . 1 9 0 0 0 0 1 +stateids by stateids s st sta stat BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 4 . 1 9 0 0 0 0 1 +shorthand reference shorthand s sh sho shor BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 4 ,, 2 9 0 0 0 0 1 +the server the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 4 -- 2 9 0 0 0 0 1 +(in the (in ( (i (in (in BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 4 (-/-) 5 9 0 0 0 0 1 +filehandle. When filehandle. f fi fil file BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 4 ., 2 9 0 0 0 0 1 +the one the t th the the BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 4 . 1 5 0 0 0 0 1 +All stateids all A Al All All BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 8 no 0 10 0 0 0 0 1 +common lease common c co com comm BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 8 no 0 9 0 0 0 0 1 +objects they objects o ob obj obje BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 8 . 1 8 0 0 0 0 1 +Section 8.3 section S Se Sec Sect BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 8 .. 2 6 0 0 0 0 1 +The server the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 9 . 1 10 0 0 0 0 1 +A stateid a A A A A BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 1 0 0 0 0 0 3 9 no 0 10 0 0 0 0 1 +entirely different entirely e en ent enti BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 9 . 1 10 0 0 0 0 1 +is always is i is is is BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 9 no 0 10 0 0 0 0 1 +the current the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 9 . 1 10 0 0 0 0 1 +the given the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 9 , 1 10 0 0 0 0 1 +one session one o on one one BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 9 . 1 9 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 3 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 11 , 1 10 0 0 0 0 0 +[Page 158] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 3 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 3 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 3 0 no 0 4 0 0 0 0 1 +8.2.1. Stateid 8.2.1. 8 8. 8.2 8.2. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 3 0 ... 3 10 0 0 0 0 1 +With the with W Wi Wit With BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 0 (..), 5 9 0 0 0 0 1 +stateid represents stateid s st sta stat BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 0 no 0 10 0 0 0 0 1 +by the by b by by by BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 0 .., 3 9 0 0 0 0 1 +speak of speak s sp spe spea BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 0 , 1 10 0 0 0 0 1 +client restart, client c cl cli clie BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 0 ,, 2 9 0 0 0 0 1 +voided. voided. voided. v vo voi void BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 0 . 1 1 0 0 0 0 1 +o Stateids o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 3 2 . 1 10 0 0 0 0 1 +Each stateid each E Ea Eac Each BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 2 no 0 9 0 0 0 0 1 +client ID/open-owner/filehandle client c cl cli clie BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 2 /-/. 4 9 0 0 0 0 1 +to change to t to to to BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 2 (') 3 10 0 0 0 0 1 +response to response r re res resp BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 2 no 0 8 0 0 0 0 1 +operations. operations. operations. o op ope oper BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 2 . 1 1 0 0 0 0 1 +o Stateids o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 3 4 -. 2 10 0 0 0 0 1 +All locks all A Al All All BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 4 no 0 9 0 0 0 0 1 +gotten under gotten g go got gott BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 4 no 0 10 0 0 0 0 1 +with a with w wi wit with BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 4 no 0 10 0 0 0 0 1 +LOCK and lock L LO LOC LOCK BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 1 1 0 0 0 0 0 3 4 . 1 8 0 0 0 0 1 +o Stateids o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 3 6 , 1 9 0 0 0 0 1 +guarantees by guarantees g gu gua guar BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 6 no 0 10 0 0 0 0 1 +reference or reference r re ref refe BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 6 , 1 9 0 0 0 0 1 +returned. In returned. r re ret retu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 6 .., 3 9 0 0 0 0 1 +regular and regular r re reg regu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 6 -. 2 4 0 0 0 0 1 +A stateid a A A A A BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 1 0 0 0 0 0 3 7 no 0 10 0 0 0 0 1 +particular filehandle. particular p pa par part BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 7 . 1 3 0 0 0 0 1 +o Stateids o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 3 8 , 1 10 0 0 0 0 1 +guarantees by guarantees g gu gua guar BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 8 no 0 9 0 0 0 0 1 +modify the modify m mo mod modi BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 8 ,. 2 8 0 0 0 0 1 +A stateid a A A A A BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 1 0 0 0 0 0 3 9 no 0 10 0 0 0 0 1 +particular directory particular p pa par part BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 9 . 1 5 0 0 0 0 1 +o Stateids o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 3 9 , 1 10 0 0 0 0 1 +the server the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 9 no 0 9 0 0 0 0 1 +an alternate an a an an an BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 3 9 . 1 8 0 0 0 0 1 +access is access a ac acc acce BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 9 - 1 8 0 0 0 0 1 +proceed until proceed p pr pro proc BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 9 - 1 8 0 0 0 0 1 +returned. returned. returned. r re ret retu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 9 . 1 1 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 3 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 11 , 1 10 0 0 0 0 0 +[Page 159] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 3 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 3 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 3 0 no 0 4 0 0 0 0 1 +A stateid a A A A A BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 1 0 0 0 0 0 3 0 no 0 9 0 0 0 0 1 +client for client c cl cli clie BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 0 . 1 9 0 0 0 0 1 +seqid is seqid s se seq seqi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 0 -, 2 10 0 0 0 0 1 +via layout via v vi via via BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 0 no 0 9 0 0 0 0 1 +LAYOUTRETURN. LAYOUTRETURN. layoutreturn. L LA LAY LAYO BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 3 0 . 1 2 0 0 0 0 1 +8.2.2. Stateid 8.2.2. 8 8. 8.2 8.2. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 3 1 ... 3 10 0 0 0 0 1 +Stateids are stateids S St Sta Stat BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 3 1 ,-"" 4 8 0 0 0 0 1 +identifying the identifying i id ide iden BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 1 -"" 3 9 0 0 0 0 1 +value. Except value. v va val valu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 1 .(..), 6 9 0 0 0 0 1 +particular value particular p pa par part BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 1 "" 2 9 0 0 0 0 1 +same type same s sa sam same BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 1 (,-,,, 6 9 0 0 0 0 1 +layouts), for layouts), l la lay layo BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 1 ),, 3 9 0 0 0 0 1 +ownership characteristics. ownership o ow own owne BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 1 . 1 9 0 0 0 0 1 +of such of o of of of BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 1 , 1 9 0 0 0 0 1 +such a such s su suc such BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 1 , 1 10 0 0 0 0 1 +the set, the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 1 ,-, 3 9 0 0 0 0 1 +downgrade in downgrade d do dow down BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 1 . 1 6 0 0 0 0 1 +When such when W Wh Whe When BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 4 , 1 9 0 0 0 0 1 +stateid with stateid s st sta stat BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 4 . 1 9 0 0 0 0 1 +modify the modify m mo mod modi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 4 , 1 9 0 0 0 0 1 +"seqid" field "seqid" " "s "se "seq BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 4 "" 2 9 0 0 0 0 1 +state-owner/file/type combination state-owner/file/type s st sta stat BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 4 -// 3 10 0 0 0 0 1 +of locks of o of of of BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 4 ., 2 9 0 0 0 0 1 +stateid with stateid s st sta stat BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 4 "" 2 9 0 0 0 0 1 +state-owner/file/type combination, state-owner/file/type s st sta stat BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 4 -//,"". 7 10 0 0 0 0 1 +This pattern this T Th Thi This BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 4 no 0 8 0 0 0 0 1 +NFS4_UINT32_MAX, and nfs4_uint32_max, N NF NFS NFS4 BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 3 4 ,(). 4 8 0 0 0 0 1 +The purpose the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 7 no 0 9 0 0 0 0 1 +to communicate to t to to to BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 7 no 0 9 0 0 0 0 1 +modified locking modified m mo mod modi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 7 no 0 10 0 0 0 0 1 +and to and a an and and BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 7 no 0 9 0 0 0 0 1 +conditional on conditional c co con cond BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 7 no 0 10 0 0 0 0 1 +in question in i in in in BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 3 7 . 1 3 0 0 0 0 1 +Except for except E Ex Exc Exce BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 8 (..), 5 9 0 0 0 0 1 +stateid to stateid s st sta stat BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 8 , 1 9 0 0 0 0 1 +sent. It sent. s se sen sent BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 8 . 1 9 0 0 0 0 1 +wishes the wishes w wi wis wish BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 8 --'"" 5 9 0 0 0 0 1 +be used. be b be be be BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 8 . 1 9 0 0 0 0 1 +sent with sent s se sen sent BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 8 .- 2 9 0 0 0 0 1 +value, in value, v va val valu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 8 , 1 9 0 0 0 0 1 +one. In one. o on one one. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 8 ., 2 7 0 0 0 0 1 +NFS4ERR_OLD_STATEID if nfs4err_old_stateid N NF NFS NFS4 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 3 8 no 0 10 0 0 0 0 1 +and NFS4ERR_BAD_STATEID and a an and and BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 8 no 0 10 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 3 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 11 , 1 10 0 0 0 0 0 +[Page 160] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 3 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 3 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 3 0 no 0 4 0 0 0 0 1 +value. This value. v va val valu BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 0 . 1 9 0 0 0 0 1 +with a with w wi wit with BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 0 . 1 8 0 0 0 0 1 +parallel for parallel p pa par para BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 0 , 1 9 0 0 0 0 1 +knowing that knowing k kn kno know BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 0 , 1 9 0 0 0 0 1 +the lock the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 0 ., 2 10 0 0 0 0 1 +upgrade would upgrade u up upg upgr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 0 no 0 8 0 0 0 0 1 +indication that indication i in ind indi BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 0 . 1 5 0 0 0 0 1 +When a when W Wh Whe When BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 2 no 0 9 0 0 0 0 1 +callback operation, callback c ca cal call BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 2 , 1 10 0 0 0 0 1 +and returning and a an and and BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 2 . 1 9 0 0 0 0 1 +in a in i in in in BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 3 2 -- 2 9 0 0 0 0 1 +verify it. verify v ve ver veri BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 2 ., 2 9 0 0 0 0 1 +sent by sent s se sen sent BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 2 no 0 10 0 0 0 0 1 +be zero be b be be be BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 2 . 1 8 0 0 0 0 1 +In making in I In In In BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 3 4 , 1 8 0 0 0 0 1 +determining the determining d de det dete BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 4 no 0 9 0 0 0 0 1 +whether the whether w wh whe whet BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 4 , 1 10 0 0 0 0 1 +the seqid the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 4 no 0 9 0 0 0 0 1 +to be to t to to to BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 4 ., 2 9 0 0 0 0 1 +the total the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 4 no 0 10 0 0 0 0 1 +client is client c cl cli clie BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 4 . 1 9 0 0 0 0 1 +total slot total t to tot tota BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 4 no 0 8 0 0 0 0 1 +NFS4_UINT32_MAX minus nfs4_uint32_max N NF NFS NFS4 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 3 4 , 1 9 0 0 0 0 1 +treated as treated t tr tre trea BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 4 , 1 8 0 0 0 0 1 +numerically greater. numerically n nu num nume BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 4 . 1 3 0 0 0 0 1 +8.2.3. Special 8.2.3. 8 8. 8.2 8.2. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 3 7 ... 3 10 0 0 0 0 1 +Stateid values stateid S St Sta Stat BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 3 7 "" 2 9 0 0 0 0 1 +are reserved. are a ar are are BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 7 . 1 8 0 0 0 0 1 +special meanings special s sp spe spec BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 7 . 1 9 0 0 0 0 1 +depends on depends d de dep depe BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 7 "" 2 10 0 0 0 0 1 +specific value specific s sp spe spec BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 7 "". 3 5 0 0 0 0 1 +The following the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 9 """" 4 10 0 0 0 0 1 +NFSv4.1: NFSv4.1: nfsv4.1: N NF NFS NFSv BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 3 9 .: 2 1 0 0 0 0 1 +o When o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 3 9 """", 5 10 0 0 0 0 1 +a special a a a a a BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 1 0 0 0 0 0 3 9 ,,, 3 9 0 0 0 0 1 +SETATTR requests setattr S SE SET SETA BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 3 9 no 0 8 0 0 0 0 1 +associated with associated a as ass asso BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 9 . 1 9 0 0 0 0 1 +used and used u us use used BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 9 , 1 9 0 0 0 0 1 +then access then t th the then BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 9 . 1 9 0 0 0 0 1 +be used be b be be be BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 9 (.). 4 7 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 3 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 11 , 1 10 0 0 0 0 0 +[Page 161] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 3 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 3 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 3 0 no 0 4 0 0 0 0 1 +o When o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 3 0 """", 5 9 0 0 0 0 1 +special READ special s sp spe spec BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 0 . 1 10 0 0 0 0 1 +SETATTR, it setattr, S SE SET SETA BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 3 0 ,. 2 9 0 0 0 0 1 +READ, the read, R RE REA READ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 3 0 ,, 2 10 0 0 0 0 1 +be denied be b be be be BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 0 . 1 9 0 0 0 0 1 +operations to operations o op ope oper BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 3 0 . 1 4 0 0 0 0 1 +o When o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 3 1 """", 5 10 0 0 0 0 1 +the current the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 1 , 1 9 0 0 0 0 1 +returned by returned r re ret retu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 1 . 1 9 0 0 0 0 1 +OPEN, the open, O OP OPE OPEN BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 3 1 , 1 8 0 0 0 0 1 +delegation is delegation d de del dele BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 1 . 1 9 0 0 0 0 1 +of the of o of of of BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 1 "", 3 9 0 0 0 0 1 +when the when w wh whe when BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 1 no 0 8 0 0 0 0 1 +OPEN_DOWNGRADE. If open_downgrade. O OP OPE OPEN BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 3 1 . 1 10 0 0 0 0 1 +returned a returned r re ret retu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 1 , 1 8 0 0 0 0 1 +NFS4ERR_BAD_STATEID. As nfs4err_bad_stateid. N NF NFS NFS4 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 3 1 ., 2 9 0 0 0 0 1 +a current a a a a a BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 1 0 0 0 0 0 3 1 no 0 9 0 0 0 0 1 +operation's arguments operation's o op ope oper BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 1 '"""" 5 9 0 0 0 0 1 +one, then one, o on one one, BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 1 ,. 2 9 0 0 0 0 1 +o When o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 3 5 """", 5 10 0 0 0 0 1 +represents a represents r re rep repr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 5 . 1 9 0 0 0 0 1 +this stateid this t th thi this BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 5 , 1 8 0 0 0 0 1 +NFS4ERR_BAD_STATEID. NFS4ERR_BAD_STATEID. nfs4err_bad_stateid. N NF NFS NFS4 BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 3 5 . 1 3 0 0 0 0 1 +If a if I If If If BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 6 no 0 9 0 0 0 0 1 +"other" field "other" " "o "ot "oth BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 6 "", 3 10 0 0 0 0 1 +MUST return must M MU MUS MUST BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 3 6 . 1 6 0 0 0 0 1 +Special stateids, special S Sp Spe Spec BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 7 ,, 2 9 0 0 0 0 1 +individual client individual i in ind indi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 7 no 0 10 0 0 0 0 1 +client IDs client c cl cli clie BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 7 . 1 8 0 0 0 0 1 +designating the designating d de des desi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 7 , 1 8 0 0 0 0 1 +substituted for substituted s su sub subs BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 7 no 0 10 0 0 0 0 1 +client ID client c cl cli clie BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 7 ,, 2 9 0 0 0 0 1 +filehandle does filehandle f fi fil file BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 7 , 1 10 0 0 0 0 1 +the operation the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 7 no 0 8 0 0 0 0 1 +NFS4ERR_BAD_STATEID. NFS4ERR_BAD_STATEID. nfs4err_bad_stateid. N NF NFS NFS4 BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 3 7 . 1 3 0 0 0 0 1 +8.2.4. Stateid 8.2.4. 8 8. 8.2 8.2. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 3 9 ... 3 10 0 0 0 0 1 +Stateids must stateids S St Sta Stat BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 3 9 no 0 10 0 0 0 0 1 +restart or restart r re res rest BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 9 no 0 10 0 0 0 0 1 +the stateid the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 9 . 1 9 0 0 0 0 1 +If the if I If If If BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 9 , 1 10 0 0 0 0 1 +valid, the valid, v va val vali BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 9 , 1 10 0 0 0 0 1 +until the until u un unt unti BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 9 . 1 10 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 3 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 11 , 1 10 0 0 0 0 0 +[Page 162] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 3 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 3 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 3 0 no 0 4 0 0 0 0 1 +with byte-range with w wi wit with BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 0 -. 2 9 0 0 0 0 1 +LOCKU frees locku L LO LOC LOCK BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 3 0 , 1 10 0 0 0 0 1 +they are they t th the they BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 0 , 1 8 0 0 0 0 1 +stateids via stateids s st sta stat BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 0 . 1 5 0 0 0 0 1 +It should it I It It It BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 1 ' 1 9 0 0 0 0 1 +locks become locks l lo loc lock BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 1 ,. 2 10 0 0 0 0 1 +These include these T Th The Thes BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 1 no 0 8 0 0 0 0 1 +revocation within revocation r re rev revo BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 1 . 1 9 0 0 0 0 1 +these situations, these t th the thes BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 1 , 1 10 0 0 0 0 1 +to determine to t to to to BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 1 . 1 8 0 0 0 0 1 +An "other" an A An An An BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 3 3 ""(.., 6 9 0 0 0 0 1 +different filehandle, different d di dif diff BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 3 ,,) 3 9 0 0 0 0 1 +a single a a a a a BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 1 0 0 0 0 0 3 3 ."" 3 9 0 0 0 0 1 +same purpose same s sa sam same BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 3 , 1 10 0 0 0 0 1 +it does it i it it it BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 3 ,"". 4 10 0 0 0 0 1 +One mechanism one O On One One BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 5 no 0 9 0 0 0 0 1 +server recognize server s se ser serv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 5 -- 2 10 0 0 0 0 1 +to divide to t to to to BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 5 "". 3 8 0 0 0 0 1 +o an o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 3 6 -. 2 10 0 0 0 0 1 +o a o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 3 7 no 0 10 0 0 0 0 1 +table entry table t ta tab tabl BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 7 . 1 5 0 0 0 0 1 +And then and A An And And BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 7 , 1 10 0 0 0 0 1 +o the o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 3 7 . 1 10 0 0 0 0 1 +o the o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 3 8 () 2 10 0 0 0 0 1 +sharing this sharing s sh sha shar BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 8 . 1 3 0 0 0 0 1 +o the o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 3 8 . 1 10 0 0 0 0 1 +o an o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 3 9 (,-, 4 10 0 0 0 0 1 +delegation, directory delegation, d de del dele BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 9 ,,). 4 6 0 0 0 0 1 +o the o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 3 9 "" 2 10 0 0 0 0 1 +"other" value. "other" " "o "ot "oth BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 9 "". 3 2 0 0 0 0 1 +o an o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 3 10 no 0 10 0 0 0 0 1 +this stateid, this t th thi this BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 10 ,, 2 9 0 0 0 0 1 +if so, if i if if if BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 10 ,. 2 3 0 0 0 0 1 +With this with W Wi Wit With BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 11 , 1 10 0 0 0 0 1 +appropriate error appropriate a ap app appr BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 11 .- 2 9 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 3 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 11 , 1 10 0 0 0 0 0 +[Page 163] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 3 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 3 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 3 0 no 0 4 0 0 0 0 1 +stateids are stateids s st sta stat BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 0 .(.. 4 10 0 0 0 0 1 +of special of o of of of BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 0 .) 2 3 0 0 0 0 1 +Note that note N No Not Note BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 0 , 1 10 0 0 0 0 1 +as derived as a as as as BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 0 . 1 9 0 0 0 0 1 +Note, however, note, N No Not Note BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 0 ,, 2 8 0 0 0 0 1 +stateids associated stateids s st sta stat BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 0 no 0 9 0 0 0 0 1 +being analyzed being b be bei bein BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 0 . 1 4 0 0 0 0 1 +If server if I If If If BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 2 no 0 10 0 0 0 0 1 +ID that id I ID ID ID BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 1 0 0 0 0 0 0 3 2 , 1 10 0 0 0 0 1 +that takes that t th tha that BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 2 . 1 8 0 0 0 0 1 +If there if I If If If BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 3 no 0 9 0 0 0 0 1 +session and session s se ses sess BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 3 , 1 9 0 0 0 0 1 +question will, question q qu que ques BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 3 ,,, 3 10 0 0 0 0 1 +not satisfied not n no not not BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 3 no 0 9 0 0 0 0 1 +NFS4ERR_DEADSESSION, and nfs4err_deadsession, N NF NFS NFS4 BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 3 3 ,. 2 9 0 0 0 0 1 +When a when W Wh Whe When BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 5 "" 2 9 0 0 0 0 1 +all ones, all a al all all BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 5 ,"""" 5 10 0 0 0 0 1 +combination for combination c co com comb BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 5 no 0 9 0 0 0 0 1 +as follows: as a as as as BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 5 : 1 1 0 0 0 0 1 +o If o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 3 6 """" 4 10 0 0 0 0 1 +combination associated combination c co com comb BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 6 , 1 9 0 0 0 0 1 +NFS4ERR_BAD_STATEID is nfs4err_bad_stateid N NF NFS NFS4 BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 3 6 . 1 5 0 0 0 0 1 +o If o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 3 7 no 0 10 0 0 0 0 1 +there is there t th the ther BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 7 , 1 8 0 0 0 0 1 +substituted for substituted s su sub subs BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 7 no 0 9 0 0 0 0 1 +non-special stateids non-special n no non non- BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 7 -. 2 5 0 0 0 0 1 +o If o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 3 8 no 0 10 0 0 0 0 1 +the context the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 8 (..,- 5 8 0 0 0 0 1 +stateid is stateid s st sta stat BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 8 no 0 8 0 0 0 0 1 +operation), the operation), o op ope oper BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 8 ),. 3 8 0 0 0 0 1 +o Otherwise, o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 3 9 , 1 10 0 0 0 0 1 +accepted as accepted a ac acc acce BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 9 . 1 3 0 0 0 0 1 +When a when W Wh Whe When BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 10 ,"" 3 9 0 0 0 0 1 +zeros nor zeros z ze zer zero BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 10 , 1 10 0 0 0 0 1 +an incoming an a an an an BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 3 10 ,, 2 9 0 0 0 0 1 +assuming that assuming a as ass assu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 10 "" 2 9 0 0 0 0 1 +and an and a an and and BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 10 . 1 3 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 3 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 11 , 1 10 0 0 0 0 0 +[Page 164] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 3 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 3 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 3 0 no 0 4 0 0 0 0 1 +o If o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 3 0 no 0 10 0 0 0 0 1 +table, return table, t ta tab tabl BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 0 ,. 2 5 0 0 0 0 1 +o If o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 3 0 no 0 10 0 0 0 0 1 +specified in specified s sp spe spec BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 0 ,. 2 9 0 0 0 0 1 +o If o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 3 1 , 1 10 0 0 0 0 1 +return NFS4ERR_BAD_STATEID. return r re ret retu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 1 . 1 4 0 0 0 0 1 +o If o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 3 1 no 0 10 0 0 0 0 1 +associated with associated a as ass asso BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 1 ,. 2 9 0 0 0 0 1 +o If o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 3 2 , 1 8 0 0 0 0 1 +NFS4ERR_EXPIRED, NFS4ERR_ADMIN_REVOKED, nfs4err_expired, N NF NFS NFS4 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 3 2 ,,, 3 10 0 0 0 0 1 +as appropriate. as a as as as BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 2 . 1 2 0 0 0 0 1 +o If o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 3 3 no 0 9 0 0 0 0 1 +stateid appears, stateid s st sta stat BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 3 ,. 2 9 0 0 0 0 1 +may be may m ma may may BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 1 0 0 3 3 , 1 9 0 0 0 0 1 +operation, but operation, o op ope oper BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 3 ,,, 3 9 0 0 0 0 1 +example, when example, e ex exa exam BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 3 ,'- 3 10 0 0 0 0 1 +passed to passed p pa pas pass BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 3 -, 2 9 0 0 0 0 1 +stateid that stateid s st sta stat BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 3 no 0 9 0 0 0 0 1 +OPEN_DOWNGRADE. In open_downgrade. O OP OPE OPEN BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 3 3 ., 2 8 0 0 0 0 1 +NFS4ERR_BAD_STATEID. NFS4ERR_BAD_STATEID. nfs4err_bad_stateid. N NF NFS NFS4 BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 3 3 . 1 3 0 0 0 0 1 +o If o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 3 6 "" 2 9 0 0 0 0 1 +current sequence current c cu cur curr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 6 "", 3 10 0 0 0 0 1 +return NFS4ERR_BAD_STATEID. return r re ret retu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 6 . 1 4 0 0 0 0 1 +o If o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 3 6 "" 2 10 0 0 0 0 1 +sequence value sequence s se seq sequ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 6 "", 3 9 0 0 0 0 1 +NFS4ERR_OLD_STATEID. NFS4ERR_OLD_STATEID. nfs4err_old_stateid. N NF NFS NFS4 BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 3 6 . 1 3 0 0 0 0 1 +o Otherwise, o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 3 7 , 1 10 0 0 0 0 1 +any additional any a an any any BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 7 no 0 8 0 0 0 0 1 +information associated information i in inf info BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 7 , 1 9 0 0 0 0 1 +as the as a as as as BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 7 ,..,-- 6 9 0 0 0 0 1 +information, as information, i in inf info BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 7 ,,.., 5 9 0 0 0 0 1 +open modes open o op ope open BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 7 -. 2 4 0 0 0 0 1 +8.2.5. Stateid 8.2.5. 8 8. 8.2 8.2. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 3 9 .../ 4 10 0 0 0 0 1 +Clients performing clients C Cl Cli Clie BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 10 / 1 9 0 0 0 0 1 +stateid based stateid s st sta stat BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 10 () 2 10 0 0 0 0 1 +the client the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 10 -/ 2 9 0 0 0 0 1 +requests. SETATTR requests. r re req requ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 10 . 1 9 0 0 0 0 1 +like I/O like l li lik like BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 10 /. 2 5 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 3 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 11 , 1 10 0 0 0 0 0 +[Page 165] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 3 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 3 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 3 0 no 0 4 0 0 0 0 1 +The following the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 0 ,, 2 9 0 0 0 0 1 +the selection the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 0 ., 2 9 0 0 0 0 1 +the client the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 0 no 0 10 0 0 0 0 1 +notification by notification n no not noti BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 0 . 1 9 0 0 0 0 1 +that the that t th tha that BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 0 / 1 9 0 0 0 0 1 +servers when servers s se ser serv BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 0 (..). 5 9 0 0 0 0 1 +o If o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 3 2 , 1 10 0 0 0 0 1 +delegation stateid delegation d de del dele BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 2 . 1 5 0 0 0 0 1 +o Otherwise, o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 3 2 ,-(.., 6 10 0 0 0 0 1 +process) sending process) p pr pro proc BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 2 )/- 3 9 0 0 0 0 1 +associated open associated a as ass asso BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 2 ,- 2 9 0 0 0 0 1 +lock-owner and lock-owner l lo loc lock BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 2 -. 2 6 0 0 0 0 1 +o If o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 3 3 -, 2 10 0 0 0 0 1 +the open the t th the the BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 3 . 1 6 0 0 0 0 1 +o Finally, o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 3 4 ,, 2 10 0 0 0 0 1 +be used. be b be be be BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 4 . 1 1 0 0 0 0 1 +Ignoring these ignoring I Ig Ign Igno BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 5 no 0 9 0 0 0 0 1 +does not does d do doe does BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 5 . 1 10 0 0 0 0 1 +For example, for F Fo For For BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 5 ,-, 3 9 0 0 0 0 1 +stateid does stateid s st sta stat BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 5 -,, 3 10 0 0 0 0 1 +a request a a a a a BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 1 0 0 0 0 0 3 5 . 1 5 0 0 0 0 1 +The server the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 6 no 0 10 0 0 0 0 1 +should use should s sh sho shou BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 6 / 1 9 0 0 0 0 1 +requests. In requests. r re req requ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 6 ., 2 9 0 0 0 0 1 +file, it file, f fi fil file BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 6 ,, 2 9 0 0 0 0 1 +if it if i if if if BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 6 . 1 5 0 0 0 0 1 +8.2.6. Stateid 8.2.6. 8 8. 8.2 8.2. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 3 7 ... 3 10 0 0 0 0 1 +Because each because B Be Bec Beca BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 8 no 0 9 0 0 0 0 1 +the clientid the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 8 , 1 9 0 0 0 0 1 +stateid for stateid s st sta stat BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 8 no 0 9 0 0 0 0 1 +cause a cause c ca cau caus BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 8 no 0 10 0 0 0 0 1 +the scope the t th the the BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 8 . 1 4 0 0 0 0 1 +In the in I In In In BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 3 9 ,. 2 9 0 0 0 0 1 +other than other o ot oth othe BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 9 , 1 10 0 0 0 0 1 +special stateid special s sp spe spec BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 9 , 1 8 0 0 0 0 1 +question, a question, q qu que ques BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 9 ,. 2 9 0 0 0 0 1 +stateid and stateid s st sta stat BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 9 no 0 9 0 0 0 0 1 +whether a whether w wh whe whet BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 9 , 1 9 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 3 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 11 , 1 10 0 0 0 0 0 +[Page 166] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 3 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 3 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 3 0 no 0 4 0 0 0 0 1 +delegation even delegation d de del dele BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 0 , 1 10 0 0 0 0 1 +valid delegation valid v va val vali BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 0 . 1 5 0 0 0 0 1 +8.3. Lease 8.3. 8 8. 8.3 8.3. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 3 0 .. 2 10 0 0 0 0 1 +Each client/server each E Ea Eac Each BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 0 /,, 3 10 0 0 0 0 1 +lease. The lease. l le lea leas BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 0 . 1 9 0 0 0 0 1 +to the to t to to to BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 0 ,-,, 4 9 0 0 0 0 1 +that the that t th tha that BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 0 '. 2 9 0 0 0 0 1 +allows the allows a al all allo BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 0 - 1 9 0 0 0 0 1 +held by held h he hel held BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 3 0 , 1 9 0 0 0 0 1 +the relevant the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 0 . 1 9 0 0 0 0 1 +obtain conflicting obtain o ob obt obta BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 0 no 0 9 0 0 0 0 1 +inactive or inactive i in ina inac BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 0 . 1 9 0 0 0 0 1 +consistency and consistency c co con cons BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 0 no 0 8 0 0 0 0 1 +interval has interval i in int inte BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 0 . 1 3 0 0 0 0 1 +Since each since S Si Sin Sinc BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 4 ( 1 9 0 0 0 0 1 +by the by b by by by BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 4 '), 3 9 0 0 0 0 1 +indication that indication i in ind indi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 4 . 1 9 0 0 0 0 1 +is sent is i is is is BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 4 , 1 9 0 0 0 0 1 +operation (or operation o op ope oper BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 4 ( 1 10 0 0 0 0 1 +reply cache) reply r re rep repl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 4 ) 1 9 0 0 0 0 1 +implicitly renewed, implicitly i im imp impl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 4 ,( 2 9 0 0 0 0 1 +lease_time attribute). lease_time l le lea leas BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 4 ). 2 3 0 0 0 0 1 +If the if I If If If BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 6 ' 1 10 0 0 0 0 1 +SEQUENCE operation, sequence S SE SEQ SEQU BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 3 6 ,. 2 9 0 0 0 0 1 +client ID's client c cl cli clie BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 6 ' 1 9 0 0 0 0 1 +operation, the operation, o op ope oper BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 6 ,; 2 9 0 0 0 0 1 +any state any a an any any BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 6 ' 1 9 0 0 0 0 1 +the lease the t th the the BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 6 . 1 4 0 0 0 0 1 +Absent other absent A Ab Abs Abse BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 8 , 1 8 0 0 0 0 1 +consisting of consisting c co con cons BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 8 . 1 9 0 0 0 0 1 +should also should s sh sho shou BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 8 - 1 10 0 0 0 0 1 +steps to steps s st ste step BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 8 no 0 10 0 0 0 0 1 +in good in i in in in BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 3 8 .: 2 3 0 0 0 0 1 +o When o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 3 9 , 1 10 0 0 0 0 1 +multiple requests multiple m mu mul mult BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 9 , 1 9 0 0 0 0 1 +that renewal that t th tha that BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 9 , 1 9 0 0 0 0 1 +used for used u us use used BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 9 . 1 5 0 0 0 0 1 +o Transport o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 3 10 no 0 9 0 0 0 0 1 +approach or approach a ap app appr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 10 . 1 9 0 0 0 0 1 +particularly likely particularly p pa par part BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 10 no 0 9 0 0 0 0 1 +restart; see restart; r re res rest BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 10 ;.... 5 10 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 3 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 11 , 1 10 0 0 0 0 0 +[Page 167] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 3 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 3 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 3 0 no 0 4 0 0 0 0 1 +careful, transport careful, c ca car care BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 0 , 1 9 0 0 0 0 1 +failing to failing f fa fai fail BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 0 . 1 9 0 0 0 0 1 +The scenario the T Th The The BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 0 no 0 8 0 0 0 0 1 +exponential backoff, exponential e ex exp expo BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 0 , 1 9 0 0 0 0 1 +exceeds both exceeds e ex exc exce BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 0 . 1 9 0 0 0 0 1 +network partition network n ne net netw BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 3 0 '' 2 9 0 0 0 0 1 +interval to interval i in int inte BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 0 ,, 2 10 0 0 0 0 1 +transport-level retransmission transport-level t tr tra tran BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 0 - 1 8 0 0 0 0 1 +restarted and restarted r re res rest BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 0 . 1 5 0 0 0 0 1 +The client the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 2 no 0 10 0 0 0 0 1 +errors or errors e er err erro BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 2 ,- 2 8 0 0 0 0 1 +retransmission intervals retransmission r re ret retr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 2 , 1 9 0 0 0 0 1 +operation is operation o op ope oper BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 2 . 1 9 0 0 0 0 1 +client can client c cl cli clie BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 2 no 0 10 0 0 0 0 1 +session, and session, s se ses sess BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 2 ,., 3 10 0 0 0 0 1 +attempt to attempt a at att atte BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 2 no 0 10 0 0 0 0 1 +(e.g., exponential (e.g., ( (e (e. (e.g BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 2 (.., 4 9 0 0 0 0 1 +packets), the packets), p pa pac pack BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 2 ), 2 8 0 0 0 0 1 +establishment attempt establishment e es est esta BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 2 , 1 9 0 0 0 0 1 +reconnect. reconnect. reconnect. r re rec reco BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 2 . 1 1 0 0 0 0 1 +If the if I If If If BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 5 , 1 9 0 0 0 0 1 +the server the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 5 no 0 9 0 0 0 0 1 +operations in operations o op ope oper BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 3 5 '. 2 9 0 0 0 0 1 +Once the once O On Onc Once BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 5 , 1 9 0 0 0 0 1 +has been has h ha has has BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 5 , 1 10 0 0 0 0 1 +the sum the t th the the BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 5 . 1 9 0 0 0 0 1 +A client a A A A A BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 1 0 0 0 0 0 3 7 ' 1 9 0 0 0 0 1 +interval (lease_time) interval i in int inte BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 7 ()- 3 8 0 0 0 0 1 +operation was operation o op ope oper BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 7 ' 1 10 0 0 0 0 1 +no active no n no no no BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 7 . 1 7 0 0 0 0 1 +Because the because B Be Bec Beca BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 8 no 0 9 0 0 0 0 1 +lease, and lease, l le lea leas BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 8 , 1 9 0 0 0 0 1 +period, it period, p pe per peri BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 8 , 1 9 0 0 0 0 1 +the client the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 8 no 0 10 0 0 0 0 1 +informed of. informed i in inf info BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 8 . 1 8 0 0 0 0 1 +(sr_status_flags) returned (sr_status_flags) ( (s (sr (sr_ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 8 () 2 9 0 0 0 0 1 +action (see action a ac act acti BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 8 (..). 5 6 0 0 0 0 1 +o The o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 3 10 no 0 7 0 0 0 0 1 +SEQ4_STATUS_CB_PATH_DOWN_SESSION indicate seq4_status_cb_path_down_session S SE SEQ SEQ4 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 3 10 no 0 10 0 0 0 0 1 +backchannel that backchannel b ba bac back BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 10 no 0 10 0 0 0 0 1 +receive callback receive r re rec rece BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 10 . 1 4 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 3 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 11 , 1 10 0 0 0 0 0 +[Page 168] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 3 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 3 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 3 0 no 0 4 0 0 0 0 1 +o The o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 3 0 no 0 8 0 0 0 0 1 +SEQ4_STATUS_CB_GSS_CONTEXTS_EXPIRED indicate seq4_status_cb_gss_contexts_expired S SE SEQ SEQ4 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 3 0 no 0 9 0 0 0 0 1 +contexts or contexts c co con cont BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 0 no 0 10 0 0 0 0 1 +might have might m mi mig migh BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 0 no 0 9 0 0 0 0 1 +sent. sent. sent. s se sen sent BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 0 . 1 0 0 0 0 0 1 +o The o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 3 1 , 1 8 0 0 0 0 1 +SEQ4_STATUS_EXPIRED_SOME_STATE_REVOKED, SEQ4_STATUS_EXPIRED_SOME_STATE_REVOKED, seq4_status_expired_some_state_revoked, S SE SEQ SEQ4 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 3 1 , 1 6 0 0 0 0 1 +SEQ4_STATUS_ADMIN_STATE_REVOKED, and seq4_status_admin_state_revoked, S SE SEQ SEQ4 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 3 1 , 1 5 0 0 0 0 1 +SEQ4_STATUS_RECALLABLE_STATE_REVOKED notify seq4_status_recallable_state_revoked S SE SEQ SEQ4 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 3 1 no 0 9 0 0 0 0 1 +revocation events. revocation r re rev revo BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 1 ., 2 10 0 0 0 0 1 +TEST_STATEID to test_stateid T TE TES TEST BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 3 1 no 0 9 0 0 0 0 1 +FREE_STATEID to free_stateid F FR FRE FREE BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 3 1 . 1 8 0 0 0 0 1 +o The o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 3 3 no 0 8 0 0 0 0 1 +responsibility for responsibility r re res resp BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 3 no 0 10 0 0 0 0 1 +more new more m mo mor more BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 3 . 1 2 0 0 0 0 1 +o The o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 3 3 no 0 10 0 0 0 0 1 +due to due d du due due BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 3 . 1 9 0 0 0 0 1 +o The o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 3 4 no 0 9 0 0 0 0 1 +server has server s se ser serv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 4 no 0 10 0 0 0 0 1 +(e.g., it (e.g., ( (e (e. (e.g BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 4 (.., 4 8 0 0 0 0 1 +backchannel). backchannel). backchannel). b ba bac back BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 4 ). 2 2 0 0 0 0 1 +8.4. Crash 8.4. 8 8. 8.4 8.4. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 3 5 .. 2 10 0 0 0 0 1 +A critical a A A A A BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 1 0 0 0 0 0 3 5 no 0 10 0 0 0 0 1 +the server the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 5 ., 2 9 0 0 0 0 1 +required that required r re req requ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 5 no 0 9 0 0 0 0 1 +restarts. All restarts. r re res rest BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 5 . 1 9 0 0 0 0 1 +within the within w wi wit with BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 5 no 0 9 0 0 0 0 1 +successfully recovered successfully s su suc succ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 5 no 0 9 0 0 0 0 1 +operations. Any operations. o op ope oper BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 5 . 1 9 0 0 0 0 1 +determine that determine d de det dete BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 5 no 0 9 0 0 0 0 1 +sure that sure s su sur sure BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 5 . 1 9 0 0 0 0 1 +This will this T Th Thi This BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 5 : 1 4 0 0 0 0 1 +o The o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 3 9 no 0 10 0 0 0 0 1 +a now a a a a a BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 1 0 0 0 0 0 3 9 ., 2 9 0 0 0 0 1 +either an either e ei eit eith BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 9 , 1 9 0 0 0 0 1 +attempt to attempt a at att atte BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 9 no 0 9 0 0 0 0 1 +result in result r re res resu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 9 . 1 6 0 0 0 0 1 +o Subsequent o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 3 11 no 0 10 0 0 0 0 1 +inappropriate (NFS4ERR_GRACE). inappropriate i in ina inap BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 11 (). 3 4 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 3 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 11 , 1 10 0 0 0 0 0 +[Page 169] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 3 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 3 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 3 0 no 0 4 0 0 0 0 1 +8.4.1. Client 8.4.1. 8 8. 8.4 8.4. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 3 0 ... 3 10 0 0 0 0 1 +In the in I In In In BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 3 0 ,' 2 10 0 0 0 0 1 +locks when locks l lo loc lock BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 0 . 1 9 0 0 0 0 1 +another client another a an ano anot BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 0 . 1 9 0 0 0 0 1 +discussed in discussed d di dis disc BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 0 .,- 3 8 0 0 0 0 1 +establishes its establishes e es est esta BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 0 , 1 8 0 0 0 0 1 +conflicting locks conflicting c co con conf BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 0 . 1 5 0 0 0 0 1 +To minimize to T To To To BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 2 , 1 9 0 0 0 0 1 +with an with w wi wit with BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 2 -. 2 9 0 0 0 0 1 +verifier is verifier v ve ver veri BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 2 no 0 10 0 0 0 0 1 +call made call c ca cal call BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 3 2 . 1 9 0 0 0 0 1 +of the of o of of of BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 2 . 1 9 0 0 0 0 1 +the client the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 2 no 0 9 0 0 0 0 1 +ID (see id I ID ID ID BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 1 0 0 0 0 0 0 3 2 (..). 5 9 0 0 0 0 1 +locks, including locks, l lo loc lock BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 2 ,,-,, 5 9 0 0 0 0 1 +obtained by obtained o ob obt obta BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 2 , 1 9 0 0 0 0 1 +client ID. client c cl cli clie BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 2 . 1 1 0 0 0 0 1 +Since the since S Si Sin Sinc BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 4 no 0 8 0 0 0 0 1 +initialization, the initialization, i in ini init BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 4 , 1 10 0 0 0 0 1 +associated with associated a as ass asso BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 4 no 0 9 0 0 0 0 1 +match. This match. m ma mat matc BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 4 .' 2 9 0 0 0 0 1 +loss (upon loss l lo los loss BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 4 (). 3 9 0 0 0 0 1 +result, the result, r re res resu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 4 , 1 8 0 0 0 0 1 +associated with associated a as ass asso BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 4 no 0 9 0 0 0 0 1 +verifier. At verifier. v ve ver veri BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 4 .,, 3 9 0 0 0 0 1 +waiting while waiting w wa wai wait BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 4 ,. 2 9 0 0 0 0 1 +addition, all addition, a ad add addi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 4 , 1 9 0 0 0 0 1 +freed, as freed, f fr fre free BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 4 ,-. 3 6 0 0 0 0 1 +Note that note N No Not Note BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 8 no 0 10 0 0 0 0 1 +the verifier the t th the the BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 8 . 1 5 0 0 0 0 1 +8.4.2. Server 8.4.2. 8 8. 8.4 8.4. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 3 8 ... 3 10 0 0 0 0 1 +If the if I If If If BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 8 (), 3 10 0 0 0 0 1 +it must it i it it it BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 8 - 1 10 0 0 0 0 1 +lost locking lost l lo los lost BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 8 .- 2 9 0 0 0 0 1 +locking state locking l lo loc lock BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 8 no 0 9 0 0 0 0 1 +the server the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 8 . 1 8 0 0 0 0 1 +Likewise, if likewise, L Li Lik Like BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 8 ,- 2 9 0 0 0 0 1 +established their established e es est esta BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 8 no 0 9 0 0 0 0 1 +state might state s st sta stat BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 8 . 1 9 0 0 0 0 1 +example, if example, e ex exa exam BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 8 ,, 2 9 0 0 0 0 1 +disallow READ disallow d di dis disa BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 8 . 1 7 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 3 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 11 , 1 10 0 0 0 0 0 +[Page 170] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 3 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 3 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 3 0 no 0 4 0 0 0 0 1 +A client a A A A A BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 1 0 0 0 0 0 3 0 no 0 10 0 0 0 0 1 +several methods. several s se sev seve BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 0 . 1 2 0 0 0 0 1 +1. When 1. 1 1. 1. 1. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 3 0 .() 3 9 0 0 0 0 1 +NFS4ERR_BADSESSION, this nfs4err_badsession, N NF NFS NFS4 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 3 0 , 1 9 0 0 0 0 1 +destroyed but destroyed d de des dest BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 0 . 1 9 0 0 0 0 1 +CREATE_SESSION request create_session C CR CRE CREA BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 3 0 - 1 9 0 0 0 0 1 +session. If session. s se ses sess BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 0 ., 2 9 0 0 0 0 1 +the client the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 0 (.) 3 10 0 0 0 0 1 +re-establish its re-establish r re re- re-e BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 0 -, 2 9 0 0 0 0 1 +CREATE_SESSION operation create_session C CR CRE CREA BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 3 0 (...). 6 8 0 0 0 0 1 +2. When 2. 2 2. 2. 2. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 3 2 .() 3 10 0 0 0 0 1 +session returns session s se ses sess BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 2 , 1 8 0 0 0 0 1 +session is session s se ses sess BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 2 ,.., 4 9 0 0 0 0 1 +reply cache, reply r re rep repl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 2 ,. 2 8 0 0 0 0 1 +determined to determined d de det dete BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 2 no 0 8 0 0 0 0 1 +performed, the performed, p pe per perf BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 2 , 1 9 0 0 0 0 1 +client ID client c cl cli clie BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 2 -. 2 9 0 0 0 0 1 +with NFS4ERR_STALE_CLIENTID, with w wi wit with BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 2 , 1 8 0 0 0 0 1 +client ID client c cl cli clie BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 2 (.)- 4 9 0 0 0 0 1 +the CREATE_SESSION, the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 2 ,, 2 7 0 0 0 0 1 +(Section 8.4.2.1). (section ( (S (Se (Sec BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 2 (...). 6 2 0 0 0 0 1 +3. When 3. 3 3. 3. 3. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 3 5 .,( 3 10 0 0 0 0 1 +example, CREATE_SESSION, example, e ex exa exam BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 5 ,,), 4 7 0 0 0 0 1 +NFS4ERR_STALE_CLIENTID, the nfs4err_stale_clientid, N NF NFS NFS4 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 3 5 , 1 9 0 0 0 0 1 +(Section 8.1) (section ( (S (Se (Sec BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 5 (.)-(...). 10 9 0 0 0 0 1 +8.4.2.1. State 8.4.2.1. 8 8. 8.4 8.4. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 3 6 .... 4 10 0 0 0 0 1 +When state when W Wh Whe When BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 6 no 0 10 0 0 0 0 1 +of a of o of of of BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 6 , 1 9 0 0 0 0 1 +state to state s st sta stat BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 6 -., 3 10 0 0 0 0 1 +types of types t ty typ type BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 6 (), 3 9 0 0 0 0 1 +function is function f fu fun func BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 6 - 1 10 0 0 0 0 1 +first obtained first f fi fir firs BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 6 ., 2 9 0 0 0 0 1 +are variants are a ar are are BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 6 no 0 9 0 0 0 0 1 +type and type t ty typ type BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 6 "-", 4 10 0 0 0 0 1 +of re-establishing of o of of of BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 6 -"". 4 9 0 0 0 0 1 +Because each because B Be Bec Beca BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 9 no 0 9 0 0 0 0 1 +locks that locks l lo loc lock BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 9 no 0 10 0 0 0 0 1 +be granted be b be be be BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 9 ,"" 3 9 0 0 0 0 1 +reclaim process. reclaim r re rec recl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 9 ., 2 9 0 0 0 0 1 +and sessions and a an and and BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 9 , 1 9 0 0 0 0 1 +to special to t to to to BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 9 .- 2 9 0 0 0 0 1 +allowed, unless allowed, a al all allo BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 9 ,( 2 9 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 3 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 11 , 1 10 0 0 0 0 0 +[Page 171] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 3 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 3 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 3 0 no 0 4 0 0 0 0 1 +persistently maintained persistently p pe per pers BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 0 ) 1 9 0 0 0 0 1 +such lock such s su suc such BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 0 . 1 10 0 0 0 0 1 +request is request r re req requ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 0 (..,- 5 9 0 0 0 0 1 +request) during request) r re req requ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 0 ) 1 9 0 0 0 0 1 +made, the made, m ma mad made BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 0 ,. 2 7 0 0 0 0 1 +Once a once O On Onc Once BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 1 , 1 9 0 0 0 0 1 +will use will w wi wil will BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 3 1 -(.., 5 9 0 0 0 0 1 +reclaim set reclaim r re rec recl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 1 no 0 8 0 0 0 0 1 +CLAIM_PREVIOUS; see claim_previous; C CL CLA CLAI BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 3 1 ;.)-. 5 10 0 0 0 0 1 +Once this once O On Onc Once BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 1 ,, 2 9 0 0 0 0 1 +the client the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 1 ,.., 4 10 0 0 0 0 1 +the rca_one_fs the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 1 , 1 8 0 0 0 0 1 +reclaimed all reclaimed r re rec recl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 1 . 1 9 0 0 0 0 1 +client sends client c cl cli clie BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 1 ,- 2 9 0 0 0 0 1 +reclaim locking reclaim r re rec recl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 1 , 1 9 0 0 0 0 1 +status result status s st sta stat BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 1 no 0 9 0 0 0 0 1 +handling is handling h ha han hand BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 1 ... 3 8 0 0 0 0 1 +analogous handling analogous a an ana anal BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 1 no 0 9 0 0 0 0 1 +transitioning from transitioning t tr tra tran BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 1 . 1 5 0 0 0 0 1 +During the during D Du Dur Duri BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 5 , 1 9 0 0 0 0 1 +operations and operations o op ope oper BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 3 5 -(.., 5 10 0 0 0 0 1 +OPEN operations) open O OP OPE OPEN BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 3 5 ), 2 9 0 0 0 0 1 +guarantee that guarantee g gu gua guar BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 5 ,. 2 9 0 0 0 0 1 +The grace the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 6 no 0 8 0 0 0 0 1 +possibly have possibly p po pos poss BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 6 no 0 8 0 0 0 0 1 +operation, indicating operation, o op ope oper BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 6 , 1 9 0 0 0 0 1 +they held they t th the they BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 6 . 1 9 0 0 0 0 1 +has done has h ha has has BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 6 no 0 8 0 0 0 0 1 +NFS4ERR_GRACE when nfs4err_grace N NF NFS NFS4 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 3 6 . 1 9 0 0 0 0 1 +server to server s se ser serv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 6 no 0 9 0 0 0 0 1 +done a done d do don done BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 6 , 1 10 0 0 0 0 1 +list clients list l li lis list BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 6 . 1 9 0 0 0 0 1 +the grace the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 6 no 0 7 0 0 0 0 1 +RECLAIM_COMPLETE. The reclaim_complete. R RE REC RECL BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 3 6 . 1 9 0 0 0 0 1 +before a before b be bef befo BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 6 no 0 9 0 0 0 0 1 +opportunity to opportunity o op opp oppo BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 6 , 1 9 0 0 0 0 1 +sending requests sending s se sen send BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 6 no 0 9 0 0 0 0 1 +the lease the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 6 . 1 9 0 0 0 0 1 +(or they (or ( (o (or (or BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 6 (), 3 9 0 0 0 0 1 +is possible is i is is is BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 6 no 0 9 0 0 0 0 1 +out that out o ou out out BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 6 . 1 6 0 0 0 0 1 +Some additional some S So Som Some BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 11 no 0 9 0 0 0 0 1 +client ID client c cl cli clie BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 11 no 0 10 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 3 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 11 , 1 10 0 0 0 0 0 +[Page 172] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 3 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 3 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 3 0 no 0 4 0 0 0 0 1 +lease time. lease l le lea leas BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 0 .- 2 10 0 0 0 0 1 +grace periods grace g gr gra grac BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 3 0 ... 3 6 0 0 0 0 1 +If the if I If If If BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 0 - 1 9 0 0 0 0 1 +request will request r re req requ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 0 , 1 10 0 0 0 0 1 +the NFS4ERR_GRACE the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 0 no 0 9 0 0 0 0 1 +grace period, grace g gr gra grac BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 3 0 , 1 9 0 0 0 0 1 +clients attempting clients c cl cli clie BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 0 - 1 9 0 0 0 0 1 +global RECLAIM_COMPLETE. global g gl glo glob BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 0 . 1 9 0 0 0 0 1 +and WRITE and a an and and BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 0 , 1 9 0 0 0 0 1 +to guarantee to t to to to BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 0 no 0 8 0 0 0 0 1 +potential reclaim potential p po pot pote BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 0 . 1 9 0 0 0 0 1 +If the if I If If If BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 0 , 1 9 0 0 0 0 1 +error must error e er err erro BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 0 . 1 5 0 0 0 0 1 +For a for F Fo For For BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 3 , 1 9 0 0 0 0 1 +period, the period, p pe per peri BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 3 ,- 2 9 0 0 0 0 1 +locking requests locking l lo loc lock BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 3 no 0 9 0 0 0 0 1 +NFS4ERR_GRACE error. nfs4err_grace N NF NFS NFS4 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 3 3 ., 2 9 0 0 0 0 1 +granted locks granted g gr gra gran BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 3 ., 2 9 0 0 0 0 1 +could determine could c co cou coul BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 3 , 1 10 0 0 0 0 1 +processed. processed. processed. p pr pro proc BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 3 . 1 1 0 0 0 0 1 +For example, for F Fo For For BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 5 , 1 9 0 0 0 0 1 +information on information i in inf info BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 5 ,- 2 9 0 0 0 0 1 +range locks, range r ra ran rang BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 5 ,, 2 9 0 0 0 0 1 +requests could requests r re req requ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 3 5 . 1 9 0 0 0 0 1 +that no that t th tha that BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 5 , 1 9 0 0 0 0 1 +specify deny specify s sp spe spec BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 5 .,, 3 9 0 0 0 0 1 +known that known k kn kno know BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 5 -, 2 9 0 0 0 0 1 +information stored information i in inf info BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 5 no 0 9 0 0 0 0 1 +does not does d do doe does BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 5 , 1 9 0 0 0 0 1 +processed during processed p pr pro proc BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 5 . 1 9 0 0 0 0 1 +it is it i it it it BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 5 -, 2 9 0 0 0 0 1 +the server the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 5 no 0 10 0 0 0 0 1 +is known is i is is is BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 5 ., 2 9 0 0 0 0 1 +WRITE operations write W WR WRI WRIT BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 3 5 - 1 9 0 0 0 0 1 +operations may operations o op ope oper BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 3 5 no 0 9 0 0 0 0 1 +of the of o of of of BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 5 no 0 9 0 0 0 0 1 +granted can granted g gr gra gran BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 5 /. 2 4 0 0 0 0 1 +To reiterate, to T To To To BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 10 ,-/ 3 9 0 0 0 0 1 +requests to requests r re req requ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 3 10 , 1 9 0 0 0 0 1 +that no that t th tha that BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 10 no 0 10 0 0 0 0 1 +subsequently reclaimed subsequently s su sub subs BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 10 / 1 8 0 0 0 0 1 +processed during processed p pr pro proc BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 10 . 1 5 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 3 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 11 , 1 10 0 0 0 0 0 +[Page 173] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 3 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 3 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 3 0 no 0 4 0 0 0 0 1 +Clients should clients C Cl Cli Clie BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 0 no 0 10 0 0 0 0 1 +non-reclaim lock non-reclaim n no non non- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 0 -/., 4 9 0 0 0 0 1 +employ a employ e em emp empl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 0 .( 2 9 0 0 0 0 1 +several seconds) several s se sev seve BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 0 ) 1 10 0 0 0 0 1 +the server. the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 0 . 1 9 0 0 0 0 1 +[50]. The [50]. [ [5 [50 [50] BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 3 0 []./ 4 9 0 0 0 0 1 +and non-reclaim and a an and and BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 0 - 1 9 0 0 0 0 1 +those that those t th tho thos BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 0 . 1 3 0 0 0 0 1 +A reclaim-type a A A A A BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 1 0 0 0 0 0 3 2 -' 2 10 0 0 0 0 1 +only succeed only o on onl only BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 2 no 0 10 0 0 0 0 1 +I/O request i/o I I/ I/O I/O BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 3 2 /. 2 6 0 0 0 0 1 +A server a A A A A BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 1 0 0 0 0 0 3 3 ,, 2 9 0 0 0 0 1 +period. Therefore, period. p pe per peri BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 3 .,, 3 8 0 0 0 0 1 +established, refetch established, e es est esta BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 3 , 1 10 0 0 0 0 1 +for lease for f fo for for BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 3 . 1 8 0 0 0 0 1 +However, the however, H Ho How Howe BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 3 ,,, 3 9 0 0 0 0 1 +period at period p pe per peri BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 3 no 0 9 0 0 0 0 1 +instantiation. This instantiation. i in ins inst BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 3 . 1 9 0 0 0 0 1 +previous server previous p pr pre prev BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 3 -. 2 8 0 0 0 0 1 +The possibility the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 5 ,, 2 9 0 0 0 0 1 +the client the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 5 no 0 10 0 0 0 0 1 +on which on o on on on BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 5 , 1 9 0 0 0 0 1 +eir_server_scope and eir_server_scope e ei eir eir_ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 5 . 1 9 0 0 0 0 1 +and when and a an and and BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 5 no 0 9 0 0 0 0 1 +obtained on obtained o ob obt obta BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 5 . 1 9 0 0 0 0 1 +to resolve to t to to to BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 5 : 1 5 0 0 0 0 1 +o If o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 3 7 , 1 10 0 0 0 0 1 +reclaim locks. reclaim r re rec recl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 7 .,. 3 9 0 0 0 0 1 +Any attempt any A An Any Any BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 7 -- 2 9 0 0 0 0 1 +problematic since problematic p pr pro prob BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 7 no 0 8 0 0 0 0 1 +filehandles will filehandles f fi fil file BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 7 , 1 8 0 0 0 0 1 +recognized, they recognized, r re rec reco BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 7 ,. 2 9 0 0 0 0 1 +locks as locks l lo loc lock BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 7 . 1 8 0 0 0 0 1 +o If o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 3 9 , 1 9 0 0 0 0 1 +reclaim locks, reclaim r re rec recl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 9 ,. 2 9 0 0 0 0 1 +In this in I In In In BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 3 9 , 1 9 0 0 0 0 1 +return NFS4ERR_NO_GRACE return r re ret retu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 9 no 0 10 0 0 0 0 1 +lock reclaim lock l lo loc lock BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 3 9 , 1 8 0 0 0 0 1 +conditions. conditions. conditions. c co con cond BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 9 . 1 1 0 0 0 0 1 +The eir_server_owner the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 10 . 1 9 0 0 0 0 1 +Its function its I It Its Its BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 10 ( 1 10 0 0 0 0 1 +Section 2.10.5) section S Se Sec Sect BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 10 ..). 4 7 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 3 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 11 , 1 10 0 0 0 0 0 +[Page 174] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 3 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 3 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 3 0 no 0 4 0 0 0 0 1 +8.4.2.1.1. Security 8.4.2.1.1. 8 8. 8.4 8.4. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 3 0 ..... 5 10 0 0 0 0 1 +During the during D Du Dur Duri BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 0 , 1 9 0 0 0 0 1 +or asserts or o or or or BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 0 . 1 9 0 0 0 0 1 +maintained a maintained m ma mai main BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 0 , 1 9 0 0 0 0 1 +server has server s se ser serv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 0 .(, 3 9 0 0 0 0 1 +server maintained server s se ser serv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 0 , 1 9 0 0 0 0 1 +the client the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 0 .) 2 9 0 0 0 0 1 +has to has h ha has has BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 0 , 1 9 0 0 0 0 1 +any negative any a an any any BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 0 . 1 9 0 0 0 0 1 +server when server s se ser serv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 0 no 0 10 0 0 0 0 1 +reclaim if reclaim r re rec recl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 0 - 1 9 0 0 0 0 1 +during steady during d du dur duri BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 0 . 1 9 0 0 0 0 1 +For example, for F Fo For For BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 0 , 1 9 0 0 0 0 1 +NFS4ERR_ACCESS if nfs4err_access N NF NFS NFS4 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 3 0 no 0 9 0 0 0 0 1 +access to access a ac acc acce BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 0 no 0 8 0 0 0 0 1 +(Section 6.2.2) (section ( (S (Se (Sec BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 0 (..). 5 4 0 0 0 0 1 +Nonetheless, it nonetheless, N No Non None BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 4 , 1 9 0 0 0 0 1 +maliciously could, maliciously m ma mal mali BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 4 ,, 2 9 0 0 0 0 1 +reclaiming access reclaiming r re rec recl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 4 ., 2 9 0 0 0 0 1 +OPEN reclaim open O OP OPE OPEN BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 3 4 no 0 9 0 0 0 0 1 +from reclaiming from f fr fro from BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 4 . 1 9 0 0 0 0 1 +The attacker the T Th The The BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 4 no 0 9 0 0 0 0 1 +state prior state s st sta stat BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 4 , 1 8 0 0 0 0 1 +permissions. Given permissions. p pe per perm BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 4 ., 2 9 0 0 0 0 1 +period does period p pe per peri BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 4 no 0 9 0 0 0 0 1 +service, and service, s se ser serv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 4 ,, 2 9 0 0 0 0 1 +grace or grace g gr gra grac BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 3 4 ,: 2 10 0 0 0 0 1 +authentication and authentication a au aut auth BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 4 no 0 9 0 0 0 0 1 +the owner the t th the the BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 4 . 1 4 0 0 0 0 1 +Note that note N No Not Note BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 7 no 0 9 0 0 0 0 1 +EXCHGID4_FLAG_BIND_PRINC_STATEID (Section exchgid4_flag_bind_princ_stateid E EX EXC EXCH BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 3 7 (.), 4 10 0 0 0 0 1 +the server the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 7 no 0 9 0 0 0 0 1 +principal that principal p pr pri prin BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 7 . 1 9 0 0 0 0 1 +server does server s se ser serv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 7 , 1 9 0 0 0 0 1 +reclaim state reclaim r re rec recl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 7 no 0 9 0 0 0 0 1 +was originally was w wa was was BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 7 . 1 7 0 0 0 0 1 +8.4.3. Network 8.4.3. 8 8. 8.4 8.4. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 3 9 ... 3 10 0 0 0 0 1 +If the if I If If If BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 9 no 0 9 0 0 0 0 1 +period provided period p pe per peri BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 9 , 1 9 0 0 0 0 1 +lease renewal lease l le lea leas BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 9 ., 2 9 0 0 0 0 1 +all locks all a al all all BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 9 no 0 9 0 0 0 0 1 +remain for remain r re rem rema BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 9 , 1 10 0 0 0 0 1 +request for request r re req requ BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 9 , 1 9 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 3 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 11 , 1 10 0 0 0 0 0 +[Page 175] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 3 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 3 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 3 0 no 0 4 0 0 0 0 1 +expired lease expired e ex exp expi BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 0 no 0 9 0 0 0 0 1 +granted but granted g gr gra gran BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 0 no 0 10 0 0 0 0 1 +with such with w wi wit with BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 0 . 1 4 0 0 0 0 1 +If the if I If If If BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 0 no 0 10 0 0 0 0 1 +conflict, it conflict, c co con conf BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 0 ,' 2 9 0 0 0 0 1 +a conflict a a a a a BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 1 0 0 0 0 0 3 0 no 0 9 0 0 0 0 1 +to allow to t to to to BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 0 .- 2 9 0 0 0 0 1 +approach, it approach, a ap app appr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 0 ,, 2 9 0 0 0 0 1 +even if even e ev eve even BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 0 . 1 7 0 0 0 0 1 +When the when W Wh Whe When BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 2 ', 2 9 0 0 0 0 1 +immediately upon immediately i im imm imme BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 2 no 0 10 0 0 0 0 1 +to obtain to t to to to BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 2 , 1 9 0 0 0 0 1 +lock state lock l lo loc lock BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 3 2 . 1 4 0 0 0 0 1 +The server the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 3 no 0 9 0 0 0 0 1 +client ID. client c cl cli clie BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 3 ., 2 9 0 0 0 0 1 +server, it server, s se ser serv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 3 ,. 2 10 0 0 0 0 1 +to create to t to to to BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 3 ,. 2 9 0 0 0 0 1 +Upon creating upon U Up Upo Upon BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 3 , 1 9 0 0 0 0 1 +attempt to attempt a at att atte BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 3 ., 2 9 0 0 0 0 1 +client to client c cl cli clie BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 3 , 1 9 0 0 0 0 1 +recovery grace recovery r re rec reco BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 3 . 1 3 0 0 0 0 1 +Another possibility another A An Ano Anot BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 6 no 0 9 0 0 0 0 1 +client ID client c cl cli clie BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 6 no 0 9 0 0 0 0 1 +or stale. or o or or or BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 6 . 1 9 0 0 0 0 1 +partition, the partition, p pa par part BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 6 , 1 8 0 0 0 0 1 +indicate a indicate i in ind indi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 6 ;.., 4 7 0 0 0 0 1 +SEQ4_STATUS_EXPIRED_ALL_STATE_REVOKED will seq4_status_expired_all_state_revoked S SE SEQ SEQ4 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 3 6 . 1 10 0 0 0 0 1 +In addition, in I In In In BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 3 6 ,/ 2 9 0 0 0 0 1 +stateids will stateids s st sta stat BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 6 no 0 7 0 0 0 0 1 +NFS4ERR_EXPIRED. Once nfs4err_expired. N NF NFS NFS4 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 3 6 . 1 9 0 0 0 0 1 +state, it state, s st sta stat BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 6 , 1 8 0 0 0 0 1 +invalidated locks. invalidated i in inv inva BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 6 . 1 8 0 0 0 0 1 +invalidated stateids, invalidated i in inv inva BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 6 , 1 9 0 0 0 0 1 +new verifier new n ne new new BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 6 no 0 9 0 0 0 0 1 +the invalidated the t th the the BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 6 . 1 3 0 0 0 0 1 +When the when W Wh Whe When BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 9 - 1 9 0 0 0 0 1 +locks when locks l lo loc lock BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 9 ', 2 9 0 0 0 0 1 +will normally will w wi wil will BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 3 9 . 1 9 0 0 0 0 1 +client can client c cl cli clie BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 9 no 0 10 0 0 0 0 1 +heals, the heals, h he hea heal BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 9 , 1 9 0 0 0 0 1 +partial loss partial p pa par part BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 9 no 0 4 0 0 0 0 1 +(SEQ4_STATUS_EXPIRED_SOME_STATE_REVOKED). In (seq4_status_expired_some_state_revoked). ( (S (SE (SEQ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 3 9 ().,, 5 9 0 0 0 0 1 +including I/O including i in inc incl BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 9 /, 2 9 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 3 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 11 , 1 10 0 0 0 0 0 +[Page 176] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 3 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 3 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 3 0 no 0 4 0 0 0 0 1 +will fail will w wi wil will BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 3 0 . 1 10 0 0 0 0 1 +the client the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 0 , 1 9 0 0 0 0 1 +TEST_STATEID operation test_stateid T TE TES TEST BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 3 0 no 0 9 0 0 0 0 1 +locks have locks l lo loc lock BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 0 no 0 10 0 0 0 0 1 +held the held h he hel held BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 3 0 . 1 8 0 0 0 0 1 +invalidated locking invalidated i in inv inva BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 0 no 0 9 0 0 0 0 1 +associated locks associated a as ass asso BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 0 no 0 9 0 0 0 0 1 +invalidated stateids. invalidated i in inv inva BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 0 . 1 3 0 0 0 0 1 +When a when W Wh Whe When BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 3 , 1 10 0 0 0 0 1 +edge conditions edge e ed edg edge BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 3 3 no 0 9 0 0 0 0 1 +avoid silent avoid a av avo avoi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 3 . 1 9 0 0 0 0 1 +these edge these t th the thes BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 3 ,. 2 8 0 0 0 0 1 +The first the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 4 no 0 10 0 0 0 0 1 +the following: the t th the the BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 4 : 1 2 0 0 0 0 1 +1. Client 1. 1 1. 1. 1. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 3 5 .. 2 10 0 0 0 0 1 +2. Client 2. 2 2. 2. 2. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 3 5 ., 2 10 0 0 0 0 1 +that client that t th tha that BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 5 . 1 6 0 0 0 0 1 +3. Client 3. 3 3. 3. 3. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 3 6 .',. 4 10 0 0 0 0 1 +4. Client 4. 4 4. 4. 4. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 3 6 . 1 10 0 0 0 0 1 +client A. client c cl cli clie BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 6 . 1 1 0 0 0 0 1 +5. Client 5. 5 5. 5. 5. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 3 7 .. 2 10 0 0 0 0 1 +6. Server 6. 6 6. 6. 6. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 3 7 .. 2 10 0 0 0 0 1 +7. Network 7. 7 7. 7. 7. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 3 7 .. 2 10 0 0 0 0 1 +8. Client 8. 8 8. 8. 8. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 3 8 . 1 10 0 0 0 0 1 +server restart. server s se ser serv BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 8 . 1 2 0 0 0 0 1 +9. Client 9. 9 9. 9. 9. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 3 8 .'. 3 10 0 0 0 0 1 +Thus, at thus, T Th Thu Thus BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 9 ,, 2 10 0 0 0 0 1 +A's lock a's A A' A's A's BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 3 9 '. 2 9 0 0 0 0 1 +protecting, client protecting, p pr pro prot BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 9 ,. 2 8 0 0 0 0 1 +The second the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 10 no 0 10 0 0 0 0 1 +following: following: following: f fo fol foll BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 10 : 1 1 0 0 0 0 1 +1. 1. 1. 1 1. 1. 1. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 3 11 . 1 0 0 0 0 0 1 +Client A client C Cl Cli Clie BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 11 . 1 10 0 0 0 0 1 +2. 2. 2. 2 2. 2. 2. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 3 11 . 1 1 0 0 0 0 1 +Server restarts. server S Se Ser Serv BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 3 11 . 1 10 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 3 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 11 , 1 10 0 0 0 0 0 +[Page 177] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 3 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 3 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 3 0 no 0 4 0 0 0 0 1 +3. 3. 3. 3 3. 3. 3. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 3 0 . 1 0 0 0 0 0 1 +Client A client C Cl Cli Clie BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 0 , 1 9 0 0 0 0 1 +that client that t th tha that BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 0 no 0 10 0 0 0 0 1 +grace period. grace g gr gra grac BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 3 0 . 1 2 0 0 0 0 1 +4. 4. 4. 4 4. 4. 4. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 3 1 . 1 0 0 0 0 0 1 +Server's reclaim server's S Se Ser Serv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 3 1 '. 2 10 0 0 0 0 1 +locks or locks l lo loc lock BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 1 . 1 9 0 0 0 0 1 +5. 5. 5. 5 5. 5. 5. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 3 1 . 1 0 0 0 0 0 1 +Client B client C Cl Cli Clie BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 1 no 0 10 0 0 0 0 1 +of client of o of of of BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 1 . 1 5 0 0 0 0 1 +6. 6. 6. 6 6. 6. 6. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 3 2 . 1 1 0 0 0 0 1 +Client B client C Cl Cli Clie BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 2 . 1 10 0 0 0 0 1 +7. 7. 7. 7 7. 7. 7. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 3 2 . 1 0 0 0 0 0 1 +Server restarts server S Se Ser Serv BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 3 2 . 1 10 0 0 0 0 1 +8. 8. 8. 8 8. 8. 8. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 3 3 . 1 0 0 0 0 0 1 +Network partition network N Ne Net Netw BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 3 3 . 1 10 0 0 0 0 1 +9. 9. 9. 9 9. 9. 9. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 3 3 . 1 0 0 0 0 0 1 +Client A client C Cl Cli Clie BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 3 no 0 10 0 0 0 0 1 +server restart. server s se ser serv BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 3 . 1 2 0 0 0 0 1 +10. Client 10. 1 10 10. 10. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 3 3 .'. 3 10 0 0 0 0 1 +As with as A As As As BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 4 , 1 9 0 0 0 0 1 +the second the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 4 no 0 10 0 0 0 0 1 +A's lock a's A A' A's A's BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 3 4 '. 2 2 0 0 0 0 1 +Solving the solving S So Sol Solv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 5 no 0 10 0 0 0 0 1 +server always server s se ser serv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 5 no 0 9 0 0 0 0 1 +occurs, and occurs, o oc occ occu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 5 ,, 2 9 0 0 0 0 1 +or that or o or or or BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 5 . 1 9 0 0 0 0 1 +amount of amount a am amo amou BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 5 no 0 9 0 0 0 0 1 +inverse proportion inverse i in inv inve BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 5 no 0 9 0 0 0 0 1 +edge conditions edge e ed edg edge BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 3 5 . 1 9 0 0 0 0 1 +edge conditions edge e ed edg edge BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 3 5 no 0 9 0 0 0 0 1 +acquired, removing acquired, a ac acq acqu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 5 , 1 9 0 0 0 0 1 +lock is lock l lo loc lock BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 3 5 ., 2 9 0 0 0 0 1 +harshest a harshest h ha har hars BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 5 , 1 9 0 0 0 0 1 +reclaims, requires reclaims, r re rec recl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 5 , 1 9 0 0 0 0 1 +minimal information. minimal m mi min mini BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 5 .,, 3 9 0 0 0 0 1 +each client, each e ea eac each BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 5 ,: 2 8 0 0 0 0 1 +o the o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 3 9 no 0 10 0 0 0 0 1 +EXCHANGE_ID operation. exchange_id E EX EXC EXCH BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 3 9 . 1 3 0 0 0 0 1 +o a o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 3 10 ' 1 10 0 0 0 0 1 +was administrative was w wa was was BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 10 (.) 3 8 0 0 0 0 1 +byte-range lock, byte-range b by byt byte BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 10 -,, 3 9 0 0 0 0 1 +been no been b be bee been BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 10 ,,. 3 8 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 3 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 11 , 1 10 0 0 0 0 0 +[Page 178] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 3 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 3 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 3 0 no 0 4 0 0 0 0 1 +o a o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 3 0 no 0 10 0 0 0 0 1 +believes to believes b be bel beli BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 0 no 0 9 0 0 0 0 1 +was terminated, was w wa was was BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 0 ,' 2 9 0 0 0 0 1 +suspect. The suspect. s su sus susp BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 0 . 1 9 0 0 0 0 1 +storage where storage s st sto stor BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 0 no 0 9 0 0 0 0 1 +(global or (global ( (g (gl (glo BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 0 (- 2 9 0 0 0 0 1 +lock request) lock l lo loc lock BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 3 0 )(..,) 6 9 0 0 0 0 1 +to any to t to to to BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 0 . 1 2 0 0 0 0 1 +Assuming the assuming A As Ass Assu BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 2 ,, 2 9 0 0 0 0 1 +after the after a af aft afte BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 2 ,' 2 9 0 0 0 0 1 +means that means m me mea mean BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 3 2 - 1 9 0 0 0 0 1 +range lock, range r ra ran rang BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 2 ,,., 4 10 0 0 0 0 1 +reject a reject r re rej reje BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 2 . 1 9 0 0 0 0 1 +For the for F Fo For For BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 4 , 1 10 0 0 0 0 1 +time, the time, t ti tim time BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 4 , 1 9 0 0 0 0 1 +at the at a at at at BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 4 no 0 9 0 0 0 0 1 +must reject must m mu mus must BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 4 . 1 9 0 0 0 0 1 +When either when W Wh Whe When BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 5 ,' 2 9 0 0 0 0 1 +locks will locks l lo loc lock BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 5 . 1 8 0 0 0 0 1 +received, or received, r re rec rece BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 5 ,, 2 10 0 0 0 0 1 +will send will w wi wil will BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 3 5 . 1 9 0 0 0 0 1 +received, the received, r re rec rece BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 5 , 1 9 0 0 0 0 1 +reclaimable locks reclaimable r re rec recl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 5 no 0 9 0 0 0 0 1 +reset, to reset, r re res rese BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 5 , 1 9 0 0 0 0 1 +causes lock causes c ca cau caus BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 5 . 1 7 0 0 0 0 1 +Regardless of regardless R Re Reg Rega BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 7 , 1 9 0 0 0 0 1 +MUST implement must M MU MUS MUST BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 3 7 ( 1 9 0 0 0 0 1 +reclaims of reclaims r re rec recl BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 7 ,-,): 5 10 0 0 0 0 1 +1. Reject 1. 1 1. 1. 1. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 3 8 .. 2 10 0 0 0 0 1 +unforgiving, but unforgiving, u un unf unfo BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 8 , 1 9 0 0 0 0 1 +state in state s st sta stat BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 8 . 1 3 0 0 0 0 1 +2. Record 2. 2 2. 2. 2. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 3 9 . 1 9 0 0 0 0 1 +edge conditions edge e ed edg edge BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 3 9 , 1 10 0 0 0 0 1 +in this in i in in in BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 3 9 ,. 2 9 0 0 0 0 1 +recognize an recognize r re rec reco BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 9 ,, 2 9 0 0 0 0 1 +sufficient knowledge, sufficient s su suf suff BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 9 ,. 2 9 0 0 0 0 1 +would return would w wo wou woul BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 9 . 1 9 0 0 0 0 1 +not known not n no not not BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 9 . 1 6 0 0 0 0 1 +In the in I In In In BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 3 11 ,, 2 9 0 0 0 0 1 +there is there t th the ther BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 11 no 0 10 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 3 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 11 , 1 10 0 0 0 0 0 +[Page 179] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 3 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 3 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 3 0 no 0 4 0 0 0 0 1 +stable storage, stable s st sta stab BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 0 ,/ 2 10 0 0 0 0 1 +affected, the affected, a af aff affe BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 0 ,. 2 8 0 0 0 0 1 +A mandate a A A A A BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 1 0 0 0 0 0 3 0 ' 1 10 0 0 0 0 1 +outside the outside o ou out outs BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 0 , 1 9 0 0 0 0 1 +such handling such s su suc such BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 0 ' 1 8 0 0 0 0 1 +environment. However, environment. e en env envi BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 0 .,. 3 9 0 0 0 0 1 +When the when W Wh Whe When BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 1 , 1 9 0 0 0 0 1 +change attribute change c ch cha chan BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 1 no 0 9 0 0 0 0 1 +reclaim state, reclaim r re rec recl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 1 ,- 2 10 0 0 0 0 1 +state via state s st sta stat BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 1 . 1 8 0 0 0 0 1 +provided that provided p pr pro prov BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 1 '. 2 10 0 0 0 0 1 +words, the words, w wo wor word BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 1 , 1 9 0 0 0 0 1 +the behavior. the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 1 . 1 9 0 0 0 0 1 +byte-range lock byte-range b by byt byte BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 1 -( 2 9 0 0 0 0 1 +delegated) have delegated) d de del dele BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 1 ),, 3 9 0 0 0 0 1 +User Interface user U Us Use User BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 3 1 ()-,.. 6 9 0 0 0 0 1 +discussion of discussion d di dis disc BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 1 no 0 10 0 0 0 0 1 +delegations on delegations d de del dele BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 1 . 1 4 0 0 0 0 1 +For further for F Fo For For BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 5 ,.. 3 10 0 0 0 0 1 +8.5. Server 8.5. 8 8. 8.5 8.5. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 3 5 .. 2 10 0 0 0 0 1 +At any at A At At At BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 5 ,, 2 9 0 0 0 0 1 +client must client c cl cli clie BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 5 . 1 10 0 0 0 0 1 +its locks its i it its its BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 5 , 1 8 0 0 0 0 1 +responsible for responsible r re res resp BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 5 no 0 9 0 0 0 0 1 +the server. the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 5 . 1 9 0 0 0 0 1 +must verify must m mu mus must BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 5 . 1 8 0 0 0 0 1 +The first the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 7 . 1 9 0 0 0 0 1 +that this that t th tha that BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 7 no 0 9 0 0 0 0 1 +locking state locking l lo loc lock BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 7 ., 2 9 0 0 0 0 1 +receive an receive r re rec rece BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 7 () 2 10 0 0 0 0 1 +client ID, client c cl cli clie BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 7 , 1 10 0 0 0 0 1 +the current the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 7 ), 2 9 0 0 0 0 1 +recovery as recovery r re rec reco BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 7 .... 4 6 0 0 0 0 1 +The second the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 9 no 0 9 0 0 0 0 1 +lease before lease l le lea leas BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 9 ,... 4 9 0 0 0 0 1 +is considered is i is is is BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 9 , 1 10 0 0 0 0 1 +recover. The recover. r re rec reco BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 9 . 1 9 0 0 0 0 1 +consequences of consequences c co con cons BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 9 , 1 9 0 0 0 0 1 +scope of scope s sc sco scop BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 9 . 1 9 0 0 0 0 1 +status information status s st sta stat BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 9 no 0 9 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 3 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 11 , 1 10 0 0 0 0 0 +[Page 180] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 3 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 3 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 3 0 no 0 4 0 0 0 0 1 +(field sr_status_flags, (field ( (f (fi (fie BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 0 (,..) 5 10 0 0 0 0 1 +locking state locking l lo loc lock BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 0 ,. 2 9 0 0 0 0 1 +The third the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 0 no 0 9 0 0 0 0 1 +revocation of revocation r re rev revo BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 0 , 1 9 0 0 0 0 1 +administrative intervention administrative a ad adm admi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 0 ( 1 8 0 0 0 0 1 +delegation or delegation d de del dele BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 0 ) 1 9 0 0 0 0 1 +having been having h ha hav havi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 0 ., 2 9 0 0 0 0 1 +are possible, are a ar are are BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 0 ,. 2 9 0 0 0 0 1 +When either when W Wh Whe When BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 0 , 1 9 0 0 0 0 1 +situation through situation s si sit situ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 0 . 1 9 0 0 0 0 1 +use of use u us use use BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 0 no 0 10 0 0 0 0 1 +will receive will w wi wil will BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 3 0 no 0 6 0 0 0 0 1 +NFS4ERR_DELEG_REVOKED, as nfs4err_deleg_revoked, N NF NFS NFS4 BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 3 0 ,. 2 5 0 0 0 0 1 +In all in I In In In BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 3 3 no 0 9 0 0 0 0 1 +revoked, which revoked, r re rev revo BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 3 , 1 9 0 0 0 0 1 +within the within w wi wit with BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 3 , 1 9 0 0 0 0 1 +locks have locks l lo loc lock BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 3 . 1 9 0 0 0 0 1 +the TEST_STATEID the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 3 . 1 9 0 0 0 0 1 +the set the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 3 , 1 10 0 0 0 0 1 +notified, and notified, n no not noti BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 3 , 1 8 0 0 0 0 1 +revocation acknowledged revocation r re rev revo BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 3 . 1 6 0 0 0 0 1 +8.6. Short 8.6. 8 8. 8.6 8.6. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 3 6 .. 2 10 0 0 0 0 1 +When determining when W Wh Whe When BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 6 , 1 9 0 0 0 0 1 +lease tradeoffs lease l le lea leas BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 6 . 1 8 0 0 0 0 1 +recovery at recovery r re rec reco BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 6 no 0 9 0 0 0 0 1 +(when there (when ( (w (wh (whe BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 6 ( 1 10 0 0 0 0 1 +renewal as renewal r re ren rene BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 6 ). 2 9 0 0 0 0 1 +gentler to gentler g ge gen gent BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 6 . 1 9 0 0 0 0 1 +The number the T Th The The BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 6 no 0 9 0 0 0 0 1 +proportion to proportion p pr pro prop BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 6 . 1 9 0 0 0 0 1 +include the include i in inc incl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 6 . 1 9 0 0 0 0 1 +After server after A Af Aft Afte BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 6 , 1 10 0 0 0 0 1 +clients do clients c cl cli clie BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 6 no 0 8 0 0 0 0 1 +RECLAIM_COMPLETE. In reclaim_complete. R RE REC RECL BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 3 6 ., 2 9 0 0 0 0 1 +for a for f fo for for BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 6 . 1 10 0 0 0 0 1 +A long a A A A A BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 1 0 0 0 0 0 3 10 no 0 9 0 0 0 0 1 +stable storage. stable s st sta stab BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 10 ., 2 10 0 0 0 0 1 +state from state s st sta stat BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 10 no 0 9 0 0 0 0 1 +clients. clients. clients. c cl cli clie BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 10 . 1 1 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 3 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 11 , 1 10 0 0 0 0 0 +[Page 181] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 3 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 3 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 3 0 no 0 4 0 0 0 0 1 +8.7. Clocks, 8.7. 8 8. 8.7 8.7. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 3 0 ..,, 4 10 0 0 0 0 1 +To avoid to T To To To BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 0 , 1 10 0 0 0 0 1 +the server the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 0 ., 2 9 0 0 0 0 1 +client and client c cl cli clie BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 0 no 0 9 0 0 0 0 1 +of the of o of of of BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 0 . 1 9 0 0 0 0 1 +the network, the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 0 ,, 2 9 0 0 0 0 1 +well as well w we wel well BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 0 no 0 9 0 0 0 0 1 +retransmitted. retransmitted. retransmitted. r re ret retr BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 0 . 1 2 0 0 0 0 1 +To take to T To To To BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 2 , 1 10 0 0 0 0 1 +from lease from f fr fro from BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 2 (..,- 5 8 0 0 0 0 1 +propagation delay propagation p pr pro prop BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 2 , 1 9 0 0 0 0 1 +lease is lease l le lea leas BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 2 )., 3 9 0 0 0 0 1 +it will it i it it it BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 2 no 0 9 0 0 0 0 1 +server. So server. s se ser serv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 2 . 1 9 0 0 0 0 1 +to the to t to to to BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 2 no 0 9 0 0 0 0 1 +expire. If expire. e ex exp expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 2 . 1 9 0 0 0 0 1 +(e.g., the (e.g., ( (e (e. (e.g BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 2 (..,), 6 9 0 0 0 0 1 +continuously subtract continuously c co con cont BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 2 no 0 9 0 0 0 0 1 +lease times. lease l le lea leas BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 2 . 1 1 0 0 0 0 1 +The server's the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 6 ' 1 9 0 0 0 0 1 +network distance network n ne net netw BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 3 6 ' 1 9 0 0 0 0 1 +resources. It resources. r re res reso BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 6 . 1 9 0 0 0 0 1 +account the account a ac acc acco BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 6 no 0 9 0 0 0 0 1 +factors for factors f fa fac fact BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 6 . 1 9 0 0 0 0 1 +for an for f fo for for BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 6 , 1 10 0 0 0 0 1 +server's administrator server's s se ser serv BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 6 '. 2 8 0 0 0 0 1 +8.8. Obsolete 8.8. 8 8. 8.8 8.8. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 3 8 ... 3 10 0 0 0 0 1 +There are there T Th The Ther BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 8 no 0 8 0 0 0 0 1 +operations that operations o op ope oper BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 3 8 .. 2 9 0 0 0 0 1 +another, these another, a an ano anot BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 8 , 1 10 0 0 0 0 1 +that provide that t th tha that BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 8 no 0 9 0 0 0 0 1 +feature of feature f fe fea feat BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 8 ,. 2 7 0 0 0 0 1 +The following the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 10 ... 3 10 0 0 0 0 1 +The server the T Th The The BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 10 no 0 10 0 0 0 0 1 +in an in i in in in BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 3 10 .. 2 3 0 0 0 0 1 +o SETCLIENTID o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 3 10 . 1 10 0 0 0 0 1 +o SETCLIENTID_CONFIRM o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 3 11 no 0 10 0 0 0 0 1 +means of means m me mea mean BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 3 11 . 1 3 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 3 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 11 , 1 10 0 0 0 0 0 +[Page 182] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 3 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 3 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 3 0 no 0 4 0 0 0 0 1 +o OPEN_CONFIRM o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 3 0 -- 2 10 0 0 0 0 1 +by the by b by by by BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 0 . 1 6 0 0 0 0 1 +o RELEASE_LOCKOWNER o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 3 0 - 1 10 0 0 0 0 1 +not have not n no not not BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 0 - 1 9 0 0 0 0 1 +server at server s se ser serv BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 0 . 1 2 0 0 0 0 1 +o RENEW o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 3 1 no 0 10 0 0 0 0 1 +renewal, making renewal, r re ren rene BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 1 ,. 2 7 0 0 0 0 1 +Also, there also, A Al Als Also BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 2 ,,, 3 10 0 0 0 0 1 +related to related r re rel rela BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 2 . 1 9 0 0 0 0 1 +used in used u us use used BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 2 no 0 9 0 0 0 0 1 +different fashion. different d di dif diff BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 2 . 1 2 0 0 0 0 1 +o Sequence o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 3 3 - 1 10 0 0 0 0 1 +to provide to t to to to BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 3 ,. 2 8 0 0 0 0 1 +o Client o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 3 4 no 0 10 0 0 0 0 1 +request. Client request. r re req requ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 4 . 1 10 0 0 0 0 1 +ID associated id I ID ID ID BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 1 0 0 0 0 0 0 3 4 , 1 9 0 0 0 0 1 +explicit client explicit e ex exp expl BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 4 . 1 4 0 0 0 0 1 +Such vestigial such S Su Suc Such BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 5 no 0 10 0 0 0 0 1 +NFSv4.1 and nfsv4.1 N NF NFS NFSv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 3 5 .. 2 9 0 0 0 0 1 +operations new operations o op ope oper BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 3 5 .( 2 8 0 0 0 0 1 +DESTROY_CLIENTID) are destroy_clientid) D DE DES DEST BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 3 5 ). 2 5 0 0 0 0 1 +9. File 9. 9 9. 9. 9. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 3 6 . 1 10 0 0 0 0 1 +To support to T To To To BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 6 , 1 9 0 0 0 0 1 +operations that operations o op ope oper BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 3 6 . 1 9 0 0 0 0 1 +share/unshare operation share/unshare s sh sha shar BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 6 / 1 10 0 0 0 0 1 +Win32 OpenFile win32 W Wi Win Win3 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 3 6 ., 2 9 0 0 0 0 1 +the previous the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 6 no 0 9 0 0 0 0 1 +created (LOOKUP, created c cr cre crea BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 6 (,,).. 6 9 0 0 0 0 1 +protocol defines protocol p pr pro prot BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 6 no 0 9 0 0 0 0 1 +looking up, looking l lo loo look BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 6 ,,. 3 8 0 0 0 0 1 +9.1. Opens 9.1. 9 9. 9.1 9.1. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 3 9 ..- 3 10 0 0 0 0 1 +It is it I It It It BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 9 - 1 9 0 0 0 0 1 +compared to compared c co com comp BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 9 . 1 9 0 0 0 0 1 +server restarts server s se ser serv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 9 . 1 8 0 0 0 0 1 +Therefore, it therefore, T Th The Ther BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 9 , 1 10 0 0 0 0 1 +lightweight mechanism lightweight l li lig ligh BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 9 . 1 9 0 0 0 0 1 +LOCK operation lock L LO LOC LOCK BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 1 1 0 0 0 0 0 3 9 no 0 9 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 3 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 11 , 1 10 0 0 0 0 0 +[Page 183] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 3 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 3 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 3 0 no 0 4 0 0 0 0 1 +establish a establish e es est esta BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 0 - 1 10 0 0 0 0 1 +lock. lock. lock. l lo loc lock BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 0 . 1 0 0 0 0 0 1 +9.1.1. State-Owner 9.1.1. 9 9. 9.1 9.1. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 3 0 ...- 4 10 0 0 0 0 1 +When opening when W Wh Whe When BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 0 -, 2 10 0 0 0 0 1 +specify an specify s sp spe spec BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 0 no 0 9 0 0 0 0 1 +lock. This lock. l lo loc lock BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 0 .-, 3 9 0 0 0 0 1 +in the in i in in in BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 3 0 ,- 2 9 0 0 0 0 1 +that, when that, t th tha that BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 0 ,, 2 10 0 0 0 0 1 +the owner the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 0 ., 2 9 0 0 0 0 1 +process ID, process p pr pro proc BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 0 ,. 2 5 0 0 0 0 1 +Owners of owners O Ow Own Owne BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 2 - 1 10 0 0 0 0 1 +and remain and a an and and BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 2 no 0 9 0 0 0 0 1 +designate owners designate d de des desi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 2 .- 2 9 0 0 0 0 1 +owners (represented owners o ow own owne BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 2 ()- 3 9 0 0 0 0 1 +(represented by (represented ( (r (re (rep BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 2 (). 3 5 0 0 0 0 1 +Each open each E Ea Eac Each BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 3 -- 2 9 0 0 0 0 1 +range lock range r ra ran rang BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 3 --, 3 9 0 0 0 0 1 +latter being latter l la lat latt BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 3 - 1 10 0 0 0 0 1 +the LOCK the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 3 ., 2 9 0 0 0 0 1 +hand, are hand, h ha han hand BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 3 , 1 9 0 0 0 0 1 +with the with w wi wit with BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 3 (). 3 8 0 0 0 0 1 +9.1.2. Use 9.1.2. 9 9. 9.1 9.1. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 3 5 ... 3 10 0 0 0 0 1 +All READ, all A Al All All BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 5 ,,. 3 9 0 0 0 0 1 +purposes of purposes p pu pur purp BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 5 , 1 9 0 0 0 0 1 +attribute of attribute a at att attr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 5 no 0 9 0 0 0 0 1 +between the between b be bet betw BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 5 (..,- 5 9 0 0 0 0 1 +added to added a ad add adde BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 5 ), 2 10 0 0 0 0 1 +explicitly mentioned explicitly e ex exp expl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 5 . 1 9 0 0 0 0 1 +operations must operations o op ope oper BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 3 5 ,- 2 9 0 0 0 0 1 +locks, or locks, l lo loc lock BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 5 ,, 2 9 0 0 0 0 1 +anonymous access anonymous a an ano anon BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 5 . 1 6 0 0 0 0 1 +If the if I If If If BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 8 - 1 9 0 0 0 0 1 +in which in i in in in BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 3 8 - 1 10 0 0 0 0 1 +the server the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 8 (), 3 9 0 0 0 0 1 +(previously returned (previously ( (p (pr (pre BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 8 () 2 9 0 0 0 0 1 +locks, including locks, l lo loc lock BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 8 ,-, 3 9 0 0 0 0 1 +held by held h he hel held BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 3 8 -., 3 9 0 0 0 0 1 +either a either e ei eit eith BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 8 -, 2 9 0 0 0 0 1 +for anonymous for f fo for for BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 8 ("""") 6 9 0 0 0 0 1 +used. (See used. u us use used BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 8 .(..'' 6 9 0 0 0 0 1 +general.) Regardless general.) g ge gen gene BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 8 .) 2 9 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 3 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 11 , 1 10 0 0 0 0 0 +[Page 184] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 3 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 3 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 3 0 no 0 4 0 0 0 0 1 +stateid returned stateid s st sta stat BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 0 , 1 9 0 0 0 0 1 +share reservation share s sh sha shar BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 0 -, 2 10 0 0 0 0 1 +server MUST server s se ser serv BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 0 . 1 8 0 0 0 0 1 +Share reservations share S Sh Sha Shar BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 1 no 0 9 0 0 0 0 1 +nature are nature n na nat natu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 1 no 0 9 0 0 0 0 1 +operations, that operations, o op ope oper BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 1 , 1 9 0 0 0 0 1 +with error with w wi wit with BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 1 .- 2 9 0 0 0 0 1 +the server the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 1 , 1 8 0 0 0 0 1 +mandatory or mandatory m ma man mand BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 1 no 0 10 0 0 0 0 1 +basis of basis b ba bas basi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 1 (,- 3 9 0 0 0 0 1 +servers support servers s se ser serv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 1 "" 2 9 0 0 0 0 1 +that if that t th tha that BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 1 ,-/ 3 9 0 0 0 0 1 +possible). When possible). p po pos poss BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 1 ).-, 4 9 0 0 0 0 1 +granting of granting g gr gra gran BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 1 no 0 9 0 0 0 0 1 +WRITEs. Mandatory writes. W WR WRI WRIT BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 1 .-,,/ 5 9 0 0 0 0 1 +operations. When operations. o op ope oper BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 1 ., 2 8 0 0 0 0 1 +NFS4ERR_LOCKED. When nfs4err_locked. N NF NFS NFS4 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 3 1 . 1 9 0 0 0 0 1 +which it which w wh whi whic BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 1 , 1 9 0 0 0 0 1 +send a send s se sen send BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 1 - 1 10 0 0 0 0 1 +byte-range the byte-range b by byt byte BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 1 -/, 3 9 0 0 0 0 1 +locktype field locktype l lo loc lock BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 1 '(..,* 6 9 0 0 0 0 1 +a READ a a a a a BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 1 0 0 0 0 0 3 1 ,*). 4 7 0 0 0 0 1 +Note that note N No Not Note BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 6 - 1 9 0 0 0 0 1 +locking, the locking, l lo loc lock BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 6 , 1 9 0 0 0 0 1 +subtle. In subtle. s su sub subt BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 6 .,- 3 9 0 0 0 0 1 +the same the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 6 . 1 9 0 0 0 0 1 +the mandatory the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 6 , 1 10 0 0 0 0 1 +see if see s se see see BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 3 6 -() 3 8 0 0 0 0 1 +exclusive (WRITE_LT) exclusive e ex exc excl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 6 ()-- 4 9 0 0 0 0 1 +READ from read R RE REA READ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 1 1 0 0 0 0 0 3 6 ., 2 9 0 0 0 0 1 +checks if checks c ch che chec BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 6 ( 1 8 0 0 0 0 1 +attempting to attempting a at att atte BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 6 - 1 9 0 0 0 0 1 +owner, and owner, o ow own owne BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 6 ,, 2 9 0 0 0 0 1 +operation is operation o op ope oper BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 6 ),, 3 8 0 0 0 0 1 +NFS4ERR_LOCKED. NFS4ERR_LOCKED. nfs4err_locked. N NF NFS NFS4 BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 3 6 . 1 2 0 0 0 0 1 +For Windows for F Fo For For BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 9 ,-, 3 10 0 0 0 0 1 +the server the t th the the BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 9 -/. 3 9 0 0 0 0 1 +Thus, the thus, T Th Thu Thus BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 10 , 1 9 0 0 0 0 1 +advisory and advisory a ad adv advi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 10 -.' 3 9 0 0 0 0 1 +processing of processing p pr pro proc BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 10 no 0 10 0 0 0 0 1 +distinction. distinction. distinction. d di dis dist BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 10 . 1 2 0 0 0 0 1 +Every stateid every E Ev Eve Ever BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 11 ,,, 3 10 0 0 0 0 1 +the exception the t th the the BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 11 , 1 9 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 3 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 11 , 1 10 0 0 0 0 0 +[Page 185] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 3 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 3 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 3 0 no 0 4 0 0 0 0 1 +the file the t th the the BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 0 (..,,, 6 10 0 0 0 0 1 +OPEN4_SHARE_ACCESS_BOTH). OPEN4_SHARE_ACCESS_BOTH). open4_share_access_both). O OP OPE OPEN BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 3 0 ). 2 3 0 0 0 0 1 +o For o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 3 0 , 1 10 0 0 0 0 1 +the original the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 0 no 0 9 0 0 0 0 1 +and as and a an and and BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 0 no 0 9 0 0 0 0 1 +same open-owner/file same s sa sam same BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 0 -/. 3 4 0 0 0 0 1 +o For o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 3 1 -, 2 10 0 0 0 0 1 +appropriate mode appropriate a ap app appr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 1 no 0 9 0 0 0 0 1 +associated with associated a as ass asso BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 1 . 1 9 0 0 0 0 1 +o For o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 3 2 , 1 10 0 0 0 0 1 +delegation. delegation. delegation. d de del dele BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 2 . 1 1 0 0 0 0 1 +When a when W Wh Whe When BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 2 ,,() 4 9 0 0 0 0 1 +operation is operation o op ope oper BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 2 , 1 10 0 0 0 0 1 +access mode access a ac acc acce BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 2 no 0 9 0 0 0 0 1 +stateid with stateid s st sta stat BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 2 . 1 7 0 0 0 0 1 +In the in I In In In BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 3 4 -(.., 5 9 0 0 0 0 1 +set size), set s se set set BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 4 ), 2 10 0 0 0 0 1 +and MUST and a an and and BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 4 . 1 9 0 0 0 0 1 +case of case c ca cas case BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 3 4 , 1 9 0 0 0 0 1 +access mode, access a ac acc acce BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 4 , 1 8 0 0 0 0 1 +OPEN4_SHARE_ACCESS_WRITE, to open4_share_access_write, O OP OPE OPEN BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 3 4 , 1 8 0 0 0 0 1 +implementation may implementation i im imp impl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 4 (.., 4 9 0 0 0 0 1 +constraints). However, constraints). c co con cons BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 4 )., 3 8 0 0 0 0 1 +circumstances, the circumstances, c ci cir circ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 4 , 1 9 0 0 0 0 1 +with the with w wi wit with BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 4 (.., 4 9 0 0 0 0 1 +OPEN4_SHARE_DENY_BOTH). Note open4_share_deny_both). O OP OPE OPEN BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 3 4 ). 2 9 0 0 0 0 1 +access mode access a ac acc acce BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 4 no 0 9 0 0 0 0 1 +share reservations share s sh sha shar BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 4 no 0 7 0 0 0 0 1 +OPEN4_SHARE_ACCESS_READ guarantees open4_share_access_read O OP OPE OPEN BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 3 4 no 0 8 0 0 0 0 1 +reservation can reservation r re res rese BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 4 . 1 3 0 0 0 0 1 +The READ the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 8 ("""" 5 10 0 0 0 0 1 +to one) to t to to to BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 8 ). 2 9 0 0 0 0 1 +allow READ allow a al all allo BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 8 , 1 9 0 0 0 0 1 +this special this t th thi this BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 8 ., 2 9 0 0 0 0 1 +special stateid special s sp spe spec BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 8 no 0 10 0 0 0 0 1 +exactly the exactly e ex exa exac BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 8 no 0 9 0 0 0 0 1 +used. used. used. u us use used BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 8 . 1 0 0 0 0 0 1 +A lock a A A A A BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 1 0 0 0 0 0 3 10 no 0 9 0 0 0 0 1 +of the of o of of of BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 10 no 0 10 0 0 0 0 1 +to be to t to to to BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 10 . 1 9 0 0 0 0 1 +can occur can c ca can can BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 10 : 1 2 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 3 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 11 , 1 10 0 0 0 0 0 +[Page 186] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 3 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 3 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 3 0 no 0 4 0 0 0 0 1 +o A o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 3 0 -- 2 9 0 0 0 0 1 +conflicts with conflicts c co con conf BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 0 -. 2 9 0 0 0 0 1 +the purposes the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 0 , 1 9 0 0 0 0 1 +lock is lock l lo loc lock BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 3 0 , 1 9 0 0 0 0 1 +exclusive lock exclusive e ex exc excl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 0 no 0 10 0 0 0 0 1 +is being is i is is is BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 0 . 1 2 0 0 0 0 1 +o A o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 3 1 / 1 10 0 0 0 0 1 +writing and writing w wr wri writ BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 1 . 1 9 0 0 0 0 1 +o A o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 3 2 no 0 9 0 0 0 0 1 +prevent the prevent p pr pre prev BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 2 /,.., 5 10 0 0 0 0 1 +OPEN_DELEGATE_WRITE delegation open_delegate_write O OP OPE OPEN BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 3 2 no 0 9 0 0 0 0 1 +OPEN_DELEGATE_READ delegation. open_delegate_read O OP OPE OPEN BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 3 2 . 1 4 0 0 0 0 1 +When a when W Wh Whe When BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 3 , 1 10 0 0 0 0 1 +sent conveys sent s se sen sent BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 3 , 1 9 0 0 0 0 1 +avoid the avoid a av avo avoi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 3 . 1 8 0 0 0 0 1 +delegation stateid, delegation d de del dele BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 3 ,, 2 9 0 0 0 0 1 +or a or o or or or BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 3 - 1 9 0 0 0 0 1 +is used, is i is is is BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 3 ,,, 3 9 0 0 0 0 1 +conflict with conflict c co con conf BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 3 no 0 9 0 0 0 0 1 +delegation. Even delegation. d de del dele BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 3 . 1 9 0 0 0 0 1 +from the from f fr fro from BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 3 () 2 9 0 0 0 0 1 +have a have h ha hav have BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 3 ,, 2 9 0 0 0 0 1 +a special a a a a a BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 1 0 0 0 0 0 3 3 . 1 9 0 0 0 0 1 +9.2. Lock 9.2. 9 9. 9.2 9.2. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 3 6 .. 2 10 0 0 0 0 1 +The protocol the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 6 -- 2 10 0 0 0 0 1 +and then and a an and and BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 6 ,,- 3 9 0 0 0 0 1 +initial lock, initial i in ini init BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 6 ,----- 6 9 0 0 0 0 1 +either with either e ei eit eith BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 6 no 0 9 0 0 0 0 1 +locks for locks l lo loc lock BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 6 -. 2 9 0 0 0 0 1 +uncommon type uncommon u un unc unco BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 6 ., 2 8 0 0 0 0 1 +systems may systems s sy sys syst BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 3 6 -. 2 9 0 0 0 0 1 +event that event e ev eve even BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 6 - 1 10 0 0 0 0 1 +range of range r ra ran rang BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 6 -, 2 9 0 0 0 0 1 +allowed to allowed a al all allo BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 6 no 0 9 0 0 0 0 1 +does not does d do doe does BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 6 -., 3 9 0 0 0 0 1 +should be should s sh sho shou BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 6 ,, 2 10 0 0 0 0 1 +the error the t th the the BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 6 . 1 5 0 0 0 0 1 +The client the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 10 no 0 10 0 0 0 0 1 +ranges that ranges r ra ran rang BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 10 no 0 9 0 0 0 0 1 +server may server s se ser serv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 10 - 1 9 0 0 0 0 1 +recovery of recovery r re rec reco BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 10 -. 2 9 0 0 0 0 1 +As discussed as A As As As BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 10 .., 3 8 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 3 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 11 , 1 10 0 0 0 0 0 +[Page 187] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 3 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 3 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 3 0 no 0 4 0 0 0 0 1 +optimizations during optimizations o op opt opti BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 0 no 0 10 0 0 0 0 1 +client's behavior client's c cl cli clie BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 0 '' 2 10 0 0 0 0 1 +locking behavior locking l lo loc lock BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 0 . 1 6 0 0 0 0 1 +9.3. Upgrading 9.3. 9 9. 9.3 9.3. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 3 1 .. 2 10 0 0 0 0 1 +If a if I If If If BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 1 -, 2 9 0 0 0 0 1 +atomic downgrade atomic a at ato atom BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 1 no 0 8 0 0 0 0 1 +operation, by operation, o op ope oper BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 1 ,. 2 9 0 0 0 0 1 +atomic downgrade, atomic a at ato atom BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 1 ,., 3 9 0 0 0 0 1 +NFS4ERR_LOCK_NOTSUPP. The nfs4err_lock_notsupp. N NF NFS NFS4 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 3 1 . 1 10 0 0 0 0 1 +error and, error e er err erro BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 1 ,, 2 9 0 0 0 0 1 +application. application. application. a ap app appl BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 1 . 1 1 0 0 0 0 1 +If a if I If If If BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 3 -, 2 9 0 0 0 0 1 +atomic upgrade atomic a at ato atom BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 3 no 0 10 0 0 0 0 1 +by setting by b by by by BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 3 . 1 10 0 0 0 0 1 +support atomic support s su sup supp BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 3 3 ,. 2 9 0 0 0 0 1 +upgrade can upgrade u up upg upgr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 3 , 1 9 0 0 0 0 1 +will succeed. will w wi wil will BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 3 3 ., 2 7 0 0 0 0 1 +NFS4ERR_DENIED or nfs4err_denied N NF NFS NFS4 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 3 3 . 1 9 0 0 0 0 1 +returned if returned r re ret retu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 3 no 0 9 0 0 0 0 1 +WRITEW_LT and writew_lt W WR WRI WRIT BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 3 3 . 1 9 0 0 0 0 1 +be prepared be b be be be BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 3 ,, 2 9 0 0 0 0 1 +error to error e er err erro BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 3 . 1 5 0 0 0 0 1 +9.4. Stateid 9.4. 9 9. 9.4 9.4. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 3 6 ..- 3 10 0 0 0 0 1 +When a when W Wh Whe When BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 6 , 1 10 0 0 0 0 1 +the same the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 6 ""',"" 6 10 0 0 0 0 1 +that is that t th tha that BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 6 (') 3 9 0 0 0 0 1 +the occurrence the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 6 . 1 9 0 0 0 0 1 +increment the increment i in inc incr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 6 "" 2 10 0 0 0 0 1 +to the to t to to to BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 6 no 0 9 0 0 0 0 1 +locks covered locks l lo loc lock BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 6 . 1 9 0 0 0 0 1 +change from change c ch cha chan BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 6 no 0 9 0 0 0 0 1 +locked for locked l lo loc lock BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 6 . 1 9 0 0 0 0 1 +When there when W Wh Whe When BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 9 ,,, 3 10 0 0 0 0 1 +locked for locked l lo loc lock BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 9 , 1 9 0 0 0 0 1 +increment the increment i in inc incr BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 9 "". 3 4 0 0 0 0 1 +9.5. Issues 9.5. 9 9. 9.5 9.5. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 3 10 ..- 3 10 0 0 0 0 1 +When the when W Wh Whe When BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 10 -, 2 9 0 0 0 0 1 +have multiple have h ha hav have BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 10 , 1 9 0 0 0 0 1 +different open-owner. different d di dif diff BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 10 -., 3 9 0 0 0 0 1 +LOCKU requests locku L LO LOC LOCK BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 3 10 - 1 10 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 3 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 11 , 1 10 0 0 0 0 0 +[Page 188] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 3 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 3 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 3 0 no 0 4 0 0 0 0 1 +stateids, and stateids, s st sta stat BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 0 , 1 10 0 0 0 0 1 +stateids, each stateids, s st sta stat BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 0 ,- 2 9 0 0 0 0 1 +held by held h he hel held BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 3 0 - 1 9 0 0 0 0 1 +open-owner. open-owner. open-owner. o op ope open BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 0 -. 2 1 0 0 0 0 1 +In such in I In In In BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 3 1 ,(.., 5 9 0 0 0 0 1 +it is it i it it it BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 1 ,,- 3 9 0 0 0 0 1 +owner holding owner o ow own owne BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 1 ) 1 10 0 0 0 0 1 +done for done d do don done BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 1 -, 2 9 0 0 0 0 1 +through which through t th thr thro BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 1 . 1 5 0 0 0 0 1 +When a when W Wh Whe When BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 2 -,- 3 9 0 0 0 0 1 +to which to t to to to BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 2 -- 2 9 0 0 0 0 1 +owner associated owner o ow own owne BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 2 no 0 10 0 0 0 0 1 +byte was byte b by byt byte BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 2 .- 2 9 0 0 0 0 1 +with locks with w wi wit with BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 2 , 1 9 0 0 0 0 1 +the "seqid" the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 2 "", 3 9 0 0 0 0 1 +locking, in locking, l lo loc lock BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 2 ,-. 3 9 0 0 0 0 1 +change to change c ch cha chan BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 2 no 0 10 0 0 0 0 1 +for the for f fo for for BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 2 -,..,- 6 9 0 0 0 0 1 +owner, the owner, o ow own owne BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 2 ,"". 4 9 0 0 0 0 1 +9.6. Blocking 9.6. 9 9. 9.6 9.6. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 3 5 .. 2 10 0 0 0 0 1 +Some clients some S So Som Some BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 5 .. 2 9 0 0 0 0 1 +provides a provides p pr pro prov BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 5 no 0 9 0 0 0 0 1 +available, this available, a av ava avai BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 5 , 1 9 0 0 0 0 1 +its presence. its i it its its BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 5 . 1 9 0 0 0 0 1 +the lock. the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 5 .., 3 9 0 0 0 0 1 +READW_LT and readw_lt R RE REA READ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 3 5 , 1 9 0 0 0 0 1 +client is client c cl cli clie BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 5 ., 2 9 0 0 0 0 1 +the server the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 5 . 1 10 0 0 0 0 1 +When the when W Wh Whe When BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 5 , 1 9 0 0 0 0 1 +period of period p pe per peri BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 5 no 0 9 0 0 0 0 1 +re-request the re-request r re re- re-r BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 5 -., 3 8 0 0 0 0 1 +waiting client waiting w wa wai wait BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 5 . 1 9 0 0 0 0 1 +poll at poll p po pol poll BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 5 no 0 9 0 0 0 0 1 +the lock the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 5 . 1 9 0 0 0 0 1 +a list a a a a a BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 1 0 0 0 0 0 3 5 no 0 9 0 0 0 0 1 +and not and a an and and BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 5 . 1 9 0 0 0 0 1 +recovery, storing recovery, r re rec reco BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 5 , 1 9 0 0 0 0 1 +to guarantee to t to to to BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 5 . 1 7 0 0 0 0 1 +Servers may servers S Se Ser Serv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 3 10 no 0 10 0 0 0 0 1 +the request the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 10 no 0 9 0 0 0 0 1 +released, allowing released, r re rel rele BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 10 ,., 3 9 0 0 0 0 1 +avoid the avoid a av avo avoi BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 10 . 1 9 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 3 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 11 , 1 10 0 0 0 0 0 +[Page 189] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 3 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 3 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 3 0 no 0 4 0 0 0 0 1 +The server the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 0 no 0 10 0 0 0 0 1 +client retransmits client c cl cli clie BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 0 . 1 4 0 0 0 0 1 +If a if I If If If BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 0 ,, 2 9 0 0 0 0 1 +later receives later l la lat late BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 0 , 1 10 0 0 0 0 1 +denied, then denied, d de den deni BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 0 , 1 9 0 0 0 0 1 +pending blocking pending p pe pen pend BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 0 . 1 8 0 0 0 0 1 +request to request r re req requ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 0 no 0 9 0 0 0 0 1 +intend to intend i in int inte BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 0 , 1 8 0 0 0 0 1 +requesting the requesting r re req requ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 0 . 1 8 0 0 0 0 1 +server, to server, s se ser serv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 0 , 1 9 0 0 0 0 1 +before granting before b be bef befo BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 0 ., 2 9 0 0 0 0 1 +required to required r re req requ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 0 , 1 9 0 0 0 0 1 +them doing them t th the them BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 0 ., 2 9 0 0 0 0 1 +that this that t th tha that BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 0 . 1 7 0 0 0 0 1 +When a when W Wh Whe When BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 5 ,, 2 9 0 0 0 0 1 +that CB_NOTIFY_LOCK that t th tha that BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 5 no 0 9 0 0 0 0 1 +file, the file, f fi fil file BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 5 ,,, 3 9 0 0 0 0 1 +hint, cannot hint, h hi hin hint BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 5 ,. 2 9 0 0 0 0 1 +may reasonably may m ma may may BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 1 0 0 3 5 no 0 10 0 0 0 0 1 +lock, since lock, l lo loc lock BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 5 , 1 9 0 0 0 0 1 +eliminated given eliminated e el eli elim BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 5 ,. 2 10 0 0 0 0 1 +it receives it i it it it BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 5 , 1 9 0 0 0 0 1 +lock, but lock, l lo loc lock BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 5 , 1 9 0 0 0 0 1 +that the that t th tha that BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 5 no 0 9 0 0 0 0 1 +particular client. particular p pa par part BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 5 . 1 2 0 0 0 0 1 +9.7. Share 9.7. 9 9. 9.7 9.7. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 3 8 .. 2 10 0 0 0 0 1 +A share a A A A A BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 1 0 0 0 0 0 3 8 . 1 9 0 0 0 0 1 +is a is i is is is BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 8 -. 2 9 0 0 0 0 1 +When a when W Wh Whe When BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 8 , 1 9 0 0 0 0 1 +specifying the specifying s sp spe spec BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 8 (,,) 4 10 0 0 0 0 1 +type of type t ty typ type BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 8 (, 2 7 0 0 0 0 1 +OPEN4_SHARE_DENY_READ, OPEN4_SHARE_DENY_WRITE, open4_share_deny_read, O OP OPE OPEN BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 3 8 ,, 2 7 0 0 0 0 1 +OPEN4_SHARE_DENY_BOTH). If open4_share_deny_both). O OP OPE OPEN BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 3 8 )., 3 9 0 0 0 0 1 +application's open application's a ap app appl BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 8 '. 2 4 0 0 0 0 1 +Pseudo-code definition pseudo-code P Ps Pse Pseu BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 11 -: 2 10 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 3 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 11 , 1 10 0 0 0 0 0 +[Page 190] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 3 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 3 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 3 0 no 0 4 0 0 0 0 1 +if (request.access if i if if if BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 0 (.) 3 6 0 0 0 0 1 +return (NFS4ERR_INVAL) return r re ret retu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 0 () 2 5 0 0 0 0 1 +} else } } } } } BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 3 0 no 0 2 0 0 0 0 1 +if ((request.access if i if if if BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 0 ((..)) 6 10 0 0 0 0 1 +(request.deny & (request.deny ( (r (re (req BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 0 (..)) 5 8 0 0 0 0 1 +return (NFS4ERR_SHARE_DENIED) return r re ret retu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 0 () 2 6 0 0 0 0 1 +} } } } } } } BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 3 0 no 0 0 0 0 0 0 1 +return (NFS4ERR_OK); return r re ret retu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 0 (); 3 4 0 0 0 0 1 +When doing when W Wh Whe When BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 1 , 1 9 0 0 0 0 1 +file_state used file_state f fi fil file BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 1 no 0 9 0 0 0 0 1 +current opens, current c cu cur curr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 1 ,- 2 10 0 0 0 0 1 +request. request. request. r re req requ BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 1 . 1 1 0 0 0 0 1 +The constants the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 2 no 0 10 0 0 0 0 1 +access and access a ac acc acce BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 2 : 1 5 0 0 0 0 1 +const OPEN4_SHARE_ACCESS_READ const c co con cons BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 3 no 0 6 0 0 0 0 1 += 0x00000001; = = = = = BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 3 3 ; 1 3 0 0 0 0 1 +const OPEN4_SHARE_ACCESS_WRITE const c co con cons BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 3 ; 1 10 0 0 0 0 1 +const OPEN4_SHARE_ACCESS_BOTH const c co con cons BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 3 no 0 6 0 0 0 0 1 += 0x00000003; = = = = = BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 3 3 ; 1 3 0 0 0 0 1 +const OPEN4_SHARE_DENY_NONE const c co con cons BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 4 no 0 9 0 0 0 0 1 += 0x00000000; = = = = = BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 3 4 ; 1 4 0 0 0 0 1 +const OPEN4_SHARE_DENY_READ const c co con cons BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 4 no 0 9 0 0 0 0 1 += 0x00000001; = = = = = BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 3 4 ; 1 4 0 0 0 0 1 +const OPEN4_SHARE_DENY_WRITE const c co con cons BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 4 no 0 10 0 0 0 0 1 += 0x00000002; = = = = = BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 3 4 ; 1 4 0 0 0 0 1 +const OPEN4_SHARE_DENY_BOTH const c co con cons BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 4 no 0 9 0 0 0 0 1 += 0x00000003; = = = = = BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 3 4 ; 1 4 0 0 0 0 1 +9.8. OPEN/CLOSE 9.8. 9 9. 9.8 9.8. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 3 4 ../ 3 10 0 0 0 0 1 +To provide to T To To To BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 5 , 1 9 0 0 0 0 1 +operation to operation o op ope oper BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 5 no 0 9 0 0 0 0 1 +access and access a ac acc acce BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 5 ,,. 3 9 0 0 0 0 1 +to use to t to to to BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 5 , 1 10 0 0 0 0 1 +still obtain still s st sti stil BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 5 no 0 9 0 0 0 0 1 +operation so operation o op ope oper BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 5 . 1 10 0 0 0 0 1 +that do that t th tha that BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 5 no 0 10 0 0 0 0 1 +for opening for f fo for for BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 5 no 0 7 0 0 0 0 1 +OPEN4_SHARE_DENY_NONE. OPEN4_SHARE_DENY_NONE. open4_share_deny_none. O OP OPE OPEN BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 3 5 . 1 3 0 0 0 0 1 +The OPEN the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 8 no 0 9 0 0 0 0 1 +operation for operation o op ope oper BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 8 no 0 10 0 0 0 0 1 +protocol. This protocol. p pr pro prot BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 8 .. 2 9 0 0 0 0 1 +The CLOSE the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 9 - 1 9 0 0 0 0 1 +owner on owner o ow own owne BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 9 .-, 3 9 0 0 0 0 1 +release all release r re rel rele BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 9 . 1 9 0 0 0 0 1 +free all free f fr fre free BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 3 9 , 1 10 0 0 0 0 1 +the CLOSE the t th the the BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 9 -. 2 9 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 3 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 11 , 1 10 0 0 0 0 0 +[Page 191] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 3 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 3 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 3 0 no 0 4 0 0 0 0 1 +MUST return must M MU MUS MUST BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 3 0 ,, 2 10 0 0 0 0 1 +after the after a af aft afte BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 0 . 1 2 0 0 0 0 1 +The LOOKUP the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 0 no 0 9 0 0 0 0 1 +any lock any a an any any BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 0 ., 2 9 0 0 0 0 1 +will assume will w wi wil will BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 3 0 ., 2 9 0 0 0 0 1 +one client one o on one one BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 0 no 0 9 0 0 0 0 1 +client accesses client c cl cli clie BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 0 , 1 9 0 0 0 0 1 +the second the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 0 no 0 9 0 0 0 0 1 +bypass stateid. bypass b by byp bypa BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 0 . 1 9 0 0 0 0 1 +because it because b be bec beca BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 0 no 0 10 0 0 0 0 1 +anonymous stateid anonymous a an ano anon BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 0 . 1 6 0 0 0 0 1 +9.9. Open 9.9. 9 9. 9.9 9.9. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 3 2 .. 2 10 0 0 0 0 1 +When an when W Wh Whe When BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 2 - 1 10 0 0 0 0 1 +is being is i is is is BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 2 , 1 10 0 0 0 0 1 +open file open o op ope open BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 2 no 0 9 0 0 0 0 1 +deny bits deny d de den deny BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 3 2 no 0 10 0 0 0 0 1 +OPEN. The open. O OP OPE OPEN BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 3 2 ., 2 9 0 0 0 0 1 +protocol is protocol p pr pro prot BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 2 , 1 9 0 0 0 0 1 +deny bits deny d de den deny BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 3 2 . 1 8 0 0 0 0 1 +represented by represented r re rep repr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 2 "" 2 9 0 0 0 0 1 +the original the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 2 ,"" 3 9 0 0 0 0 1 +the occurrence the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 2 . 1 9 0 0 0 0 1 +which the which w wh whi whic BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 2 ""(.., 6 9 0 0 0 0 1 +OPEN is open O OP OPE OPEN BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 3 2 no 0 9 0 0 0 0 1 +OPEN4_SHARE_ACCESS_BOTH). Only open4_share_access_both). O OP OPE OPEN BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 3 2 ). 2 9 0 0 0 0 1 +the effects the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 2 . 1 9 0 0 0 0 1 +by the by b by by by BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 2 no 0 9 0 0 0 0 1 +"other" field "other" " "o "ot "oth BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 2 "", 3 10 0 0 0 0 1 +far as far f fa far far BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 2 . 1 9 0 0 0 0 1 +the client, the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 2 ,, 2 10 0 0 0 0 1 +in fact in i in in in BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 3 2 . 1 9 0 0 0 0 1 +the OPENed the t th the the BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 2 . 1 8 0 0 0 0 1 +When the when W Wh Whe When BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 8 no 0 10 0 0 0 0 1 +to the to t to to to BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 8 no 0 9 0 0 0 0 1 +different OPENs different d di dif diff BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 8 ,"" 3 9 0 0 0 0 1 +together the together t to tog toge BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 8 . 1 9 0 0 0 0 1 +Instead, the instead, I In Ins Inst BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 8 , 1 9 0 0 0 0 1 +stateids and stateids s st sta stat BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 8 . 1 8 0 0 0 0 1 +When multiple when W Wh Whe When BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 10 no 0 9 0 0 0 0 1 +file object file f fi fil file BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 10 ,( 2 10 0 0 0 0 1 +client) may client) c cl cli clie BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 10 ) 1 9 0 0 0 0 1 +open file open o op ope open BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 10 . 1 9 0 0 0 0 1 +deny bits deny d de den deny BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 3 10 (.., 4 9 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 3 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 11 , 1 10 0 0 0 0 0 +[Page 192] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 3 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 3 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 3 0 no 0 4 0 0 0 0 1 +subset) than subset) s su sub subs BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 0 ). 2 9 0 0 0 0 1 +make the make m ma mak make BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 0 no 0 10 0 0 0 0 1 +server so server s se ser serv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 0 no 0 9 0 0 0 0 1 +handled properly. handled h ha han hand BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 0 ."" 3 10 0 0 0 0 1 +that passed that t th tha that BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 0 ."" 3 10 0 0 0 0 1 +MUST be must M MU MUS MUST BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 3 0 , 1 9 0 0 0 0 1 +to the to t to to to BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 0 . 1 6 0 0 0 0 1 +9.10. Parallel 9.10. 9 9. 9.1 9.10 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 3 2 .. 2 10 0 0 0 0 1 +Unlike the unlike U Un Unl Unli BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 2 ., 2 9 0 0 0 0 1 +open-owner are open-owner o op ope open BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 2 -- 2 9 0 0 0 0 1 +seqid, multiple seqid, s se seq seqi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 2 ,- 2 8 0 0 0 0 1 +parallel. When parallel. p pa par para BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 2 ., 2 9 0 0 0 0 1 +which, because which, w wh whi whic BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 2 ,, 2 9 0 0 0 0 1 +may turn may m ma may may BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 1 0 0 3 2 , 1 10 0 0 0 0 1 +an upgrade an a an an an BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 3 2 , 1 9 0 0 0 0 1 +once the once o on onc once BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 2 . 1 4 0 0 0 0 1 +In this in I In In In BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 3 5 , 1 10 0 0 0 0 1 +were performed were w we wer were BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 5 . 1 9 0 0 0 0 1 +Stateids that stateids S St Sta Stat BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 3 5 "" 2 9 0 0 0 0 1 +recognized as recognized r re rec reco BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 5 , 1 9 0 0 0 0 1 +operations determinable operations o op ope oper BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 3 5 "", 3 10 0 0 0 0 1 +possible wraparound possible p po pos poss BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 5 -. 2 5 0 0 0 0 1 +When the when W Wh Whe When BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 6 no 0 9 0 0 0 0 1 +for the for f fo for for BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 6 -, 2 9 0 0 0 0 1 +upgrade may upgrade u up upg upgr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 6 no 0 9 0 0 0 0 1 +could happen. could c co cou coul BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 6 ., 2 7 0 0 0 0 1 +OPEN_DOWNGRADEs should open_downgrades O OP OPE OPEN BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 3 6 - 1 10 0 0 0 0 1 +stateid, to stateid, s st sta stat BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 6 , 1 9 0 0 0 0 1 +with an with w wi wit with BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 6 . 1 6 0 0 0 0 1 +9.11. Reclaim 9.11. 9 9. 9.1 9.11 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 3 9 ..- 3 10 0 0 0 0 1 +Special forms special S Sp Spe Spec BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 9 no 0 10 0 0 0 0 1 +necessary to necessary n ne nec nece BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 9 -- 2 9 0 0 0 0 1 +failure. failure. failure. f fa fai fail BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 9 . 1 1 0 0 0 0 1 +o To o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 3 10 , 1 10 0 0 0 0 1 +CLAIM_PREVIOUS. Because claim_previous. C CL CLA CLAI BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 3 10 .,, 3 9 0 0 0 0 1 +will have will w wi wil will BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 3 10 no 0 9 0 0 0 0 1 +target file, target t ta tar targ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 10 , 1 9 0 0 0 0 1 +be the be b be be be BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 10 ,, 2 9 0 0 0 0 1 +specified. specified. specified. s sp spe spec BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 10 . 1 1 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 3 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 11 , 1 10 0 0 0 0 0 +[Page 193] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 3 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 3 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 3 0 no 0 4 0 0 0 0 1 +o To o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 3 0 -, 2 10 0 0 0 0 1 +parameter set parameter p pa par para BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 0 . 1 4 0 0 0 0 1 +Reclaims of reclaims R Re Rec Recl BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 0 no 0 10 0 0 0 0 1 +Section 10.2.1. section S Se Sec Sect BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 0 ... 3 2 0 0 0 0 1 +10. Client-Side 10. 1 10 10. 10. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 3 1 .- 2 10 0 0 0 0 1 +Client-side caching client-side C Cl Cli Clie BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 1 -,, 3 10 0 0 0 0 1 +essential to essential e es ess esse BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 1 . 1 9 0 0 0 0 1 +Providing distributed providing P Pr Pro Prov BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 1 , 1 9 0 0 0 0 1 +previous versions previous p pr pre prev BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 1 . 1 8 0 0 0 0 1 +Instead, several instead, I In Ins Inst BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 1 , 1 9 0 0 0 0 1 +to reduce to t to to to BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 1 . 1 9 0 0 0 0 1 +These techniques these T Th The Thes BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 1 no 0 9 0 0 0 0 1 +specifications, and specifications, s sp spe spec BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 1 , 1 9 0 0 0 0 1 +client behavior. client c cl cli clie BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 1 . 1 2 0 0 0 0 1 +The NFSv4.1 the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 4 . 1 10 0 0 0 0 1 +been used been b be bee been BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 4 .. 2 9 0 0 0 0 1 +not provide not n no not not BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 4 ., 2 9 0 0 0 0 1 +limited set limited l li lim limi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 4 no 0 8 0 0 0 0 1 +reservations to reservations r re res rese BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 4 - 1 10 0 0 0 0 1 +side caching. side s si sid side BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 4 . 1 2 0 0 0 0 1 +In addition, in I In In In BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 3 5 ,., 3 10 0 0 0 0 1 +which allows which w wh whi whic BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 5 no 0 9 0 0 0 0 1 +locally by locally l lo loc loca BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 5 . 1 10 0 0 0 0 1 +common cases common c co com comm BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 5 - 1 9 0 0 0 0 1 +only. only. only. o on onl only BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 5 . 1 0 0 0 0 0 1 +10.1. Performance 10.1. 1 10 10. 10.1 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 3 7 ..- 3 10 0 0 0 0 1 +Caching techniques caching C Ca Cac Cach BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 3 7 no 0 10 0 0 0 0 1 +been successful been b be bee been BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 7 ., 2 9 0 0 0 0 1 +scalability challenges scalability s sc sca scal BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 7 no 0 9 0 0 0 0 1 +very large very v ve ver very BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 7 . 1 8 0 0 0 0 1 +clients are clients c cl cli clie BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 7 , 1 9 0 0 0 0 1 +the latency the t th the the BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 7 . 1 6 0 0 0 0 1 +The previous the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 9 no 0 9 0 0 0 0 1 +cache validation cache c ca cac cach BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 9 . 1 9 0 0 0 0 1 +behavior can behavior b be beh beha BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 9 . 1 9 0 0 0 0 1 +one in one o on one one BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 9 ., 2 10 0 0 0 0 1 +sharing is sharing s sh sha shar BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 9 . 1 3 0 0 0 0 1 +In this in I In In In BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 3 10 , 1 10 0 0 0 0 1 +conflicts exist conflicts c co con conf BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 10 . 1 9 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 3 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 11 , 1 10 0 0 0 0 0 +[Page 194] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 3 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 3 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 3 0 no 0 4 0 0 0 0 1 +performance is performance p pe per perf BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 0 no 0 10 0 0 0 0 1 +so without so s so so so BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 3 0 . 1 9 0 0 0 0 1 +conflicting operations conflicting c co con conf BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 0 . 1 8 0 0 0 0 1 +A similar a A A A A BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 1 0 0 0 0 0 3 1 -. 2 9 0 0 0 0 1 +Sending LOCK sending S Se Sen Send BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 1 no 0 9 0 0 0 0 1 +operations necessary operations o op ope oper BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 3 1 no 0 10 0 0 0 0 1 +semantics (see semantics s se sem sema BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 1 (..). 5 9 0 0 0 0 1 +locking is locking l lo loc lock BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 1 , 1 10 0 0 0 0 1 +large penalty large l la lar larg BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 3 1 . 1 9 0 0 0 0 1 +byte-range locking byte-range b by byt byte BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 1 -. 2 5 0 0 0 0 1 +The NFSv4.1 the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 3 . 1 10 0 0 0 0 1 +the following the t th the the BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 3 : 1 4 0 0 0 0 1 +o Compatibility o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 3 3 . 1 10 0 0 0 0 1 +o Providing o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 3 4 no 0 10 0 0 0 0 1 +NFS protocol nfs N NF NFS NFS BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 3 4 . 1 9 0 0 0 0 1 +o Requirements o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 3 4 no 0 10 0 0 0 0 1 +portion of portion p po por port BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 4 no 0 9 0 0 0 0 1 +requirements can requirements r re req requ BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 4 . 1 3 0 0 0 0 1 +The appropriate the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 5 no 0 10 0 0 0 0 1 +sections in sections s se sec sect BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 5 ( 1 9 0 0 0 0 1 +Section 10.4). section S Se Sec Sect BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 5 .). 3 2 0 0 0 0 1 +10.2. Delegation 10.2. 1 10 10. 10.2 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 3 6 .. 2 10 0 0 0 0 1 +Recallable delegation recallable R Re Rec Reca BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 3 6 no 0 9 0 0 0 0 1 +client improves client c cl cli clie BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 6 no 0 9 0 0 0 0 1 +server in server s se ser serv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 6 -. 2 10 0 0 0 0 1 +"callback" RPC "callback" " "c "ca "cal BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 6 "", 3 9 0 0 0 0 1 +responsibilities when responsibilities r re res resp BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 6 no 0 9 0 0 0 0 1 +delegated file. delegated d de del dele BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 6 . 1 2 0 0 0 0 1 +A delegation a A A A A BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 1 0 0 0 0 0 3 8 , 1 10 0 0 0 0 1 +object of object o ob obj obje BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 8 . 1 9 0 0 0 0 1 +different types different d di dif diff BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 8 , 1 9 0 0 0 0 1 +be used be b be be be BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 8 no 0 9 0 0 0 0 1 +depend on depend d de dep depe BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 8 . 1 8 0 0 0 0 1 +associated with associated a as ass asso BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 8 no 0 10 0 0 0 0 1 +stateid for stateid s st sta stat BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 8 no 0 9 0 0 0 0 1 +used on used u us use used BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 8 -. 2 8 0 0 0 0 1 +delegation is delegation d de del dele BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 8 no 0 9 0 0 0 0 1 +process or process p pr pro proc BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 8 . 1 5 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 3 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 11 , 1 10 0 0 0 0 0 +[Page 195] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 3 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 3 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 3 0 no 0 4 0 0 0 0 1 +The backchannel the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 0 no 0 7 0 0 0 0 1 +BIND_CONN_TO_SESSION, and bind_conn_to_session, B BI BIN BIND BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 3 0 ,. 2 9 0 0 0 0 1 +Because the because B Be Bec Beca BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 0 ,, 2 9 0 0 0 0 1 +protocol operation protocol p pr pro prot BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 0 . 1 9 0 0 0 0 1 +backchannel functionality backchannel b ba bac back BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 0 no 0 9 0 0 0 0 1 +single operation, single s si sin sing BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 0 ,, 2 10 0 0 0 0 1 +the backchannel. the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 0 . 1 9 0 0 0 0 1 +it has it i it it it BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 0 . 1 9 0 0 0 0 1 +of a of o of of of BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 0 no 0 10 0 0 0 0 1 +access, clients access, a ac acc acce BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 0 , 1 10 0 0 0 0 1 +they MUST they t th the they BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 0 ,, 2 8 0 0 0 0 1 +GET_DIR_DELEGATIONs to get_dir_delegations G GE GET GET_ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 3 0 no 0 9 0 0 0 0 1 +granted. granted. granted. g gr gra gran BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 0 . 1 1 0 0 0 0 1 +Unlike locks, unlike U Un Unl Unli BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 3 , 1 9 0 0 0 0 1 +will cause will w wi wil will BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 3 3 . 1 10 0 0 0 0 1 +individual operations, individual i in ind indi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 3 ,,, 3 9 0 0 0 0 1 +such operations such s su suc such BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 3 . 1 9 0 0 0 0 1 +should be should s sh sho shou BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 3 ,. 2 3 0 0 0 0 1 +o The o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 3 5 no 0 10 0 0 0 0 1 +desirable and desirable d de des desi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 5 no 0 9 0 0 0 0 1 +being done. being b be bei bein BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 5 . 1 1 0 0 0 0 1 +o Operations o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 3 6 .,,, 4 10 0 0 0 0 1 +access by access a ac acc acce BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 6 ,, 2 9 0 0 0 0 1 +in delegation in i in in in BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 3 6 no 0 8 0 0 0 0 1 +system data. system s sy sys syst BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 6 . 1 9 0 0 0 0 1 +the guarantees the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 6 ., 2 9 0 0 0 0 1 +the delegation the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 6 no 0 8 0 0 0 0 1 +revoked before revoked r re rev revo BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 6 . 1 7 0 0 0 0 1 +o The o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 3 8 no 0 9 0 0 0 0 1 +delegation recall delegation d de del dele BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 8 . 1 9 0 0 0 0 1 +specific implementation specific s sp spe spec BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 8 , 1 9 0 0 0 0 1 +delegation recall delegation d de del dele BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 8 , 1 9 0 0 0 0 1 +specifically listed specifically s sp spe spec BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 8 ., 2 9 0 0 0 0 1 +is critical is i is is is BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 8 no 0 10 0 0 0 0 1 +are being are a ar are are BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 8 . 1 3 0 0 0 0 1 +Despite those despite D De Des Desp BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 10 , 1 10 0 0 0 0 1 +operations describe operations o op ope oper BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 3 10 no 0 10 0 0 0 0 1 +required under required r re req requ BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 10 : 1 6 0 0 0 0 1 +o For o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 3 11 ,... 4 10 0 0 0 0 1 +o For o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 3 11 ,... 4 10 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 3 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 11 , 1 10 0 0 0 0 0 +[Page 196] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 3 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 3 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 3 0 no 0 4 0 0 0 0 1 +o For o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 3 0 ,... 4 10 0 0 0 0 1 +o For o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 3 0 ,... 4 10 0 0 0 0 1 +o For o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 3 0 ,... 4 10 0 0 0 0 1 +o For o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 3 1 ,... 4 10 0 0 0 0 1 +o For o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 3 1 ,... 4 10 0 0 0 0 1 +On recall, on O On On On BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 1 , 1 10 0 0 0 0 1 +state (such state s st sta stat BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 1 () 2 8 0 0 0 0 1 +delegation. The delegation. d de del dele BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 1 . 1 9 0 0 0 0 1 +recall is recall r re rec reca BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 1 . 1 9 0 0 0 0 1 +client returns client c cl cli clie BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 1 no 0 9 0 0 0 0 1 +delegation to delegation d de del dele BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 1 no 0 9 0 0 0 0 1 +the timeout. the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 1 ., 2 10 0 0 0 0 1 +to conflicting to t to to to BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 1 . 1 9 0 0 0 0 1 +Following the following F Fo Fol Foll BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 1 , 1 8 0 0 0 0 1 +information necessary information i in inf info BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 1 '. 2 9 0 0 0 0 1 +At the at A At At At BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 5 , 1 9 0 0 0 0 1 +substantial state substantial s su sub subs BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 5 ., 2 10 0 0 0 0 1 +the server the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 5 no 0 9 0 0 0 0 1 +returned since returned r re ret retu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 5 . 1 9 0 0 0 0 1 +server is server s se ser serv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 5 no 0 9 0 0 0 0 1 +state to state s st sta stat BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 5 , 1 10 0 0 0 0 1 +the usual the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 5 ., 2 9 0 0 0 0 1 +recall completion recall r re rec reca BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 5 . 1 6 0 0 0 0 1 +An example an A An An An BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 3 7 no 0 10 0 0 0 0 1 +file is file f fi fil file BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 7 (.). 4 9 0 0 0 0 1 +not know not n no not not BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 7 . 1 8 0 0 0 0 1 +knowledge, the knowledge, k kn kno know BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 7 , 1 9 0 0 0 0 1 +deny states deny d de den deny BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 3 7 no 0 8 0 0 0 0 1 +delegation for delegation d de del dele BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 7 . 1 6 0 0 0 0 1 +A client a A A A A BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 1 0 0 0 0 0 3 9 no 0 9 0 0 0 0 1 +respond to respond r re res resp BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 9 ., 2 9 0 0 0 0 1 +the delegation, the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 9 , 1 10 0 0 0 0 1 +still on still s st sti stil BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 9 . 1 3 0 0 0 0 1 +10.2.1. Delegation 10.2.1. 1 10 10. 10.2 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 3 10 ... 3 10 0 0 0 0 1 +There are there T Th The Ther BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 11 no 0 10 0 0 0 0 1 +with: with: with: w wi wit with BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 11 : 1 0 0 0 0 0 1 +o client o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 3 11 no 0 10 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 3 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 11 , 1 10 0 0 0 0 0 +[Page 197] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 3 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 3 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 3 0 no 0 4 0 0 0 0 1 +o server o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 3 0 no 0 10 0 0 0 0 1 +o network o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 3 0 (-) 3 10 0 0 0 0 1 +In the in I In In In BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 3 0 , 1 10 0 0 0 0 1 +result in result r re res resu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 0 -. 2 9 0 0 0 0 1 +Delegations, however, delegations, D De Del Dele BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 0 ,,. 3 8 0 0 0 0 1 +There will there T Th The Ther BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 1 - 1 9 0 0 0 0 1 +established after established e es est esta BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 1 . 1 9 0 0 0 0 1 +client may client c cl cli clie BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 1 no 0 10 0 0 0 0 1 +with the with w wi wit with BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 1 .- 2 9 0 0 0 0 1 +establish the establish e es est esta BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 1 . 1 7 0 0 0 0 1 +To allow to T To To To BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 2 , 1 9 0 0 0 0 1 +period for period p pe per peri BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 2 no 0 9 0 0 0 0 1 +period. This period. p pe per peri BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 2 . 1 9 0 0 0 0 1 +with these with w wi wit with BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 2 . 1 9 0 0 0 0 1 +process may process p pr pro proc BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 2 no 0 9 0 0 0 0 1 +state to state s st sta stat BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 2 , 1 9 0 0 0 0 1 +occur because occur o oc occ occu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 2 . 1 9 0 0 0 0 1 +would increase would w wo wou woul BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 2 no 0 9 0 0 0 0 1 +storage so storage s st sto stor BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 2 . 1 8 0 0 0 0 1 +delegations, such delegations, d de del dele BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 2 , 1 9 0 0 0 0 1 +type of type t ty typ type BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 2 (. 2 10 0 0 0 0 1 +and 18.16 and a an and and BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 2 ., 2 9 0 0 0 0 1 +respectively). respectively). respectively). r re res resp BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 2 ). 2 2 0 0 0 0 1 +A server a A A A A BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 1 0 0 0 0 0 3 6 no 0 8 0 0 0 0 1 +CLAIM_DELEG_PREV_FH, and claim_deleg_prev_fh, C CL CLA CLAI BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 3 6 ,, 2 10 0 0 0 0 1 +upon a upon u up upo upon BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 6 no 0 8 0 0 0 0 1 +EXCHANGE_ID. Instead, exchange_id. E EX EXC EXCH BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 3 6 .,, 3 10 0 0 0 0 1 +than that than t th tha than BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 6 , 1 9 0 0 0 0 1 +client's delegations client's c cl cli clie BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 6 ' 1 8 0 0 0 0 1 +CLAIM_DELEGATE_PREV and/or claim_delegate_prev C CL CLA CLAI BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 3 6 /. 2 10 0 0 0 0 1 +that supports that t th tha that BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 6 / 1 9 0 0 0 0 1 +support the support s su sup supp BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 3 6 . 1 5 0 0 0 0 1 +When the when W Wh Whe When BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 8 ,( 2 9 0 0 0 0 1 +operation with operation o op ope oper BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 8 )- 2 9 0 0 0 0 1 +locks and locks l lo loc lock BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 8 ., 2 9 0 0 0 0 1 +difference. In difference. d di dif diff BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 8 ., 2 8 0 0 0 0 1 +delegation should delegation d de del dele BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 8 , 1 9 0 0 0 0 1 +(e.g., OPEN) (e.g., ( (e (e. (e.g BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 8 (..,)., 7 9 0 0 0 0 1 +server grants server s se ser serv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 8 no 0 10 0 0 0 0 1 +that the that t th tha that BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 8 no 0 9 0 0 0 0 1 +recalled by recalled r re rec reca BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 8 ., 2 9 0 0 0 0 1 +write all write w wr wri writ BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 8 no 0 8 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 3 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 11 , 1 10 0 0 0 0 0 +[Page 198] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 3 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 3 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 3 0 no 0 4 0 0 0 0 1 +delegation. This delegation. d de del dele BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 0 . 1 10 0 0 0 0 1 +three principles three t th thr thre BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 0 .: 2 6 0 0 0 0 1 +o Upon o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 3 0 , 1 10 0 0 0 0 1 +earlier server earlier e ea ear earl BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 0 . 1 8 0 0 0 0 1 +o The o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 3 1 no 0 9 0 0 0 0 1 +delegations are delegations d de del dele BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 1 ,, 2 10 0 0 0 0 1 +to be to t to to to BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 1 . 1 2 0 0 0 0 1 +o The o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 3 1 no 0 10 0 0 0 0 1 +has proven has h ha has has BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 1 . 1 5 0 0 0 0 1 +When a when W Wh Whe When BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 2 no 0 8 0 0 0 0 1 +associated open, associated a as ass asso BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 2 , 1 10 0 0 0 0 1 +WANT_DELEGATION operation. want_delegation W WA WAN WANT BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 3 2 ., 2 9 0 0 0 0 1 +to support to t to to to BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 2 , 1 9 0 0 0 0 1 +OPEN together open O OP OPE OPEN BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 3 2 no 0 8 0 0 0 0 1 +CLAIM_PREVIOUS. The claim_previous. C CL CLA CLAI BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 3 2 . 1 9 0 0 0 0 1 +re-establish the re-establish r re re- re-e BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 2 -, 2 10 0 0 0 0 1 +an associated an a an an an BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 3 2 . 1 2 0 0 0 0 1 +When a when W Wh Whe When BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 4 no 0 8 0 0 0 0 1 +delegation, state delegation, d de del dele BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 4 , 1 10 0 0 0 0 1 +OPEN operations open O OP OPE OPEN BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 3 4 . 1 9 0 0 0 0 1 +establish opens establish e es est esta BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 4 , 1 9 0 0 0 0 1 +MUST allow must M MU MUS MUST BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 3 4 . 1 7 0 0 0 0 1 +When a when W Wh Whe When BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 6 , 1 9 0 0 0 0 1 +by the by b by by by BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 6 . 1 10 0 0 0 0 1 +to the to t to to to BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 6 ., 2 9 0 0 0 0 1 +however, the however, h ho how howe BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 6 , 1 9 0 0 0 0 1 +requests are requests r re req requ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 3 6 ., 2 9 0 0 0 0 1 +request from request r re req requ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 6 . 1 10 0 0 0 0 1 +A loss a A A A A BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 1 0 0 0 0 0 3 6 (.., 4 9 0 0 0 0 1 +change) will change) c ch cha chan BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 6 ). 2 9 0 0 0 0 1 +revocation of revocation r re rev revo BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 6 . 1 6 0 0 0 0 1 +A client a A A A A BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 1 0 0 0 0 0 3 8 no 0 9 0 0 0 0 1 +uses a uses u us use uses BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 8 no 0 9 0 0 0 0 1 +errors NFS4ERR_EXPIRED, errors e er err erro BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 8 ,, 2 7 0 0 0 0 1 +NFS4ERR_DELEG_REVOKED. It nfs4err_deleg_revoked. N NF NFS NFS4 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 3 8 . 1 8 0 0 0 0 1 +revocation after revocation r re rev revo BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 8 no 0 9 0 0 0 0 1 +delegation and delegation d de del dele BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 8 . 1 9 0 0 0 0 1 +revoked OPEN_DELEGATE_WRITE revoked r re rev revo BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 8 , 1 10 0 0 0 0 1 +may have may m ma may may BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 1 0 0 3 8 no 0 9 0 0 0 0 1 +separately by separately s se sep sepa BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 8 ... 3 9 0 0 0 0 1 +such issues. such s su suc such BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 8 ., 2 8 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 3 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 11 , 1 10 0 0 0 0 0 +[Page 199] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 3 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 3 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 3 0 no 0 4 0 0 0 0 1 +information about information i in inf info BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 0 no 0 9 0 0 0 0 1 +server to server s se ser serv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 0 (..). 5 9 0 0 0 0 1 +done to done d do don done BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 0 no 0 10 0 0 0 0 1 +a delegation a a a a a BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 1 0 0 0 0 0 3 0 no 0 10 0 0 0 0 1 +notified about notified n no not noti BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 0 . 1 4 0 0 0 0 1 +10.3. Data 10.3. 1 10 10. 10.3 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 3 1 .. 2 10 0 0 0 0 1 +When applications when W Wh Whe When BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 1 , 1 9 0 0 0 0 1 +implemented so implemented i im imp impl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 1 no 0 9 0 0 0 0 1 +access by access a ac acc acce BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 1 . 1 10 0 0 0 0 1 +in question in i in in in BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 3 1 no 0 9 0 0 0 0 1 +client. client. client. c cl cli clie BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 1 . 1 1 0 0 0 0 1 +Share reservations share S Sh Sha Shar BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 3 - 1 9 0 0 0 0 1 +NFSv4.1 protocol nfsv4.1 N NF NFS NFSv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 3 3 . 1 10 0 0 0 0 1 +by using by b by by by BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 3 ..' 3 9 0 0 0 0 1 +caching must caching c ca cac cach BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 3 no 0 9 0 0 0 0 1 +assumptions on assumptions a as ass assu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 3 . 1 8 0 0 0 0 1 +10.3.1. Data 10.3.1. 1 10 10. 10.3 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 3 4 ... 3 10 0 0 0 0 1 +In order in I In In In BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 3 4 no 0 9 0 0 0 0 1 +applications rely, applications a ap app appl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 3 4 ,. 2 10 0 0 0 0 1 +applications or applications a ap app appl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 3 4 no 0 9 0 0 0 0 1 +not be not n no not not BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 4 no 0 9 0 0 0 0 1 +operation. operation. operation. o op ope oper BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 4 . 1 1 0 0 0 0 1 +Furthermore, in furthermore, F Fu Fur Furt BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 6 ,(.), 5 10 0 0 0 0 1 +two additional two t tw two two BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 6 . 1 9 0 0 0 0 1 +practice by practice p pr pra prac BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 6 . 1 4 0 0 0 0 1 +o First, o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 3 7 , 1 10 0 0 0 0 1 +doing an doing d do doi doin BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 7 . 1 9 0 0 0 0 1 +change attribute change c ch cha chan BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 7 , 1 9 0 0 0 0 1 +change attribute, change c ch cha chan BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 7 ,,( 3 9 0 0 0 0 1 +well as well w we wel well BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 7 ). 2 9 0 0 0 0 1 +the data the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 7 no 0 9 0 0 0 0 1 +client's cache. client's c cl cli clie BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 7 '. 2 9 0 0 0 0 1 +client's OPEN client's c cl cli clie BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 7 ' 1 9 0 0 0 0 1 +or OPEN4_SHARE_DENY_BOTH, or o or or or BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 7 , 1 10 0 0 0 0 1 +clients may clients c cl cli clie BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 7 no 0 8 0 0 0 0 1 +OPEN4_SHARE_ACCESS_WRITE/OPEN4_SHARE_ACCESS_BOTH access. open4_share_access_write/open4_share_access_both O OP OPE OPEN BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 3 7 /. 2 9 0 0 0 0 1 +may choose may m ma may may BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 1 0 0 3 7 (.., 4 9 0 0 0 0 1 +specifying a specifying s sp spe spec BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 7 ) 1 9 0 0 0 0 1 +NFSv3 protocol's nfsv3 N NF NFS NFSv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 3 7 ' 1 9 0 0 0 0 1 +degree of degree d de deg degr BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 7 . 1 4 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 3 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 11 , 1 10 0 0 0 0 0 +[Page 200] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 3 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 3 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 3 0 no 0 4 0 0 0 0 1 +Since the since S Si Sin Sinc BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 0 no 0 8 0 0 0 0 1 +modifications, some modifications, m mo mod modi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 0 , 1 9 0 0 0 0 1 +time_modify attribute time_modify t ti tim time BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 0 no 0 9 0 0 0 0 1 +cached data, cached c ca cac cach BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 0 , 1 10 0 0 0 0 1 +clean data. clean c cl cle clea BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 0 .. 2 9 0 0 0 0 1 +change attribute change c ch cha chan BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 0 no 0 9 0 0 0 0 1 +file, whereas file, f fi fil file BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 0 , 1 9 0 0 0 0 1 +granularity of granularity g gr gra gran BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 0 .' 2 9 0 0 0 0 1 +cache validation cache c ca cac cach BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 0 no 0 10 0 0 0 0 1 +of the of o of of of BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 0 ., 2 9 0 0 0 0 1 +cache validation cache c ca cac cach BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 0 no 0 9 0 0 0 0 1 +the change the t th the the BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 0 . 1 3 0 0 0 0 1 +o Second, o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 3 3 , 1 10 0 0 0 0 1 +a file a a a a a BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 1 0 0 0 0 0 3 3 . 1 9 0 0 0 0 1 +to the to t to to to BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 3 ., 2 8 0 0 0 0 1 +revalidation done revalidation r re rev reva BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 3 no 0 8 0 0 0 0 1 +achieve its achieve a ac ach achi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 3 . 1 9 0 0 0 0 1 +close is close c cl clo clos BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 3 3 , 1 9 0 0 0 0 1 +server, before server, s se ser serv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 3 ,. 2 9 0 0 0 0 1 +the case the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 3 , 1 8 0 0 0 0 1 +possible to possible p po pos poss BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 3 ,, 2 9 0 0 0 0 1 +this requirement. this t th thi this BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 3 . 1 2 0 0 0 0 1 +10.3.2. Data 10.3.2. 1 10 10. 10.3 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 3 5 ... 3 10 0 0 0 0 1 +For those for F Fo For For BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 6 - 1 9 0 0 0 0 1 +of share of o of of of BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 6 , 1 9 0 0 0 0 1 +an analogous an a an an an BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 3 6 - 1 9 0 0 0 0 1 +caching. These caching. c ca cac cach BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 6 .- 2 9 0 0 0 0 1 +used in used u us use used BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 6 no 0 9 0 0 0 0 1 +WRITE operations write W WR WRI WRIT BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 3 6 .- 2 9 0 0 0 0 1 +that is that t th tha that BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 6 ., 2 9 0 0 0 0 1 +manipulate a manipulate m ma man mani BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 6 -- 2 9 0 0 0 0 1 +megabyte ranges megabyte m me meg mega BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 6 -- 2 9 0 0 0 0 1 +range locks range r ra ran rang BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 6 . 1 9 0 0 0 0 1 +the file the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 6 no 0 8 0 0 0 0 1 +operations on operations o op ope oper BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 3 6 -. 2 9 0 0 0 0 1 +the file the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 6 no 0 8 0 0 0 0 1 +operations on operations o op ope oper BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 3 6 -. 2 9 0 0 0 0 1 +manipulating the manipulating m ma man mani BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 6 , 1 10 0 0 0 0 1 +file system. file f fi fil file BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 6 .,. 3 9 0 0 0 0 1 +unless clients unless u un unl unle BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 6 . 1 6 0 0 0 0 1 +The rules the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 10 -: 2 10 0 0 0 0 1 +o First, o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 3 11 ,- 2 10 0 0 0 0 1 +byte-range, the byte-range, b by byt byte BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 11 -,-( 4 9 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 3 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 11 , 1 10 0 0 0 0 0 +[Page 201] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 3 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 3 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 3 0 no 0 4 0 0 0 0 1 +any cache any a an any any BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 0 ). 2 8 0 0 0 0 1 +attribute indicates attribute a at att attr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 0 no 0 10 0 0 0 0 1 +cached data cached c ca cac cach BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 0 , 1 10 0 0 0 0 1 +cached data cached c ca cac cach BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 0 -. 2 9 0 0 0 0 1 +choose to choose c ch cho choo BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 0 - 1 9 0 0 0 0 1 +has for has h ha has has BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 0 , 1 9 0 0 0 0 1 +is to is i is is is BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 0 -. 2 9 0 0 0 0 1 +o Second, o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 3 2 ,-, 3 10 0 0 0 0 1 +modified data modified m mo mod modi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 2 -. 2 10 0 0 0 0 1 +The modified the T Th The The BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 2 . 1 8 0 0 0 0 1 +Note that note N No Not Note BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 2 no 0 9 0 0 0 0 1 +data must data d da dat data BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 2 -. 2 8 0 0 0 0 1 +Rounding these rounding R Ro Rou Roun BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 2 no 0 9 0 0 0 0 1 +will cause will w wi wil will BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 3 2 ., 2 9 0 0 0 0 1 +modified block modified m mo mod modi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 2 no 0 9 0 0 0 0 1 +unlocked may unlocked u un unl unlo BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 2 - 1 10 0 0 0 0 1 +unlocked area. unlocked u un unl unlo BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 2 .,,- 4 9 0 0 0 0 1 +another client. another a an ano anot BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 2 . 1 9 0 0 0 0 1 +performing portions performing p pe per perf BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 2 no 0 9 0 0 0 0 1 +(initial or (initial ( (i (in (ini BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 2 ()., 4 9 0 0 0 0 1 +a locked a a a a a BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 1 0 0 0 0 0 3 2 no 0 9 0 0 0 0 1 +would require would w wo wou woul BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 2 no 0 9 0 0 0 0 1 +server if server s se ser serv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 2 no 0 9 0 0 0 0 1 +client possesses client c cl cli clie BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 2 . 1 5 0 0 0 0 1 +The data the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 6 no 0 9 0 0 0 0 1 +unlocking of unlocking u un unl unlo BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 6 -,, 3 9 0 0 0 0 1 +storage. The storage. s st sto stor BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 6 . 1 9 0 0 0 0 1 +writes or writes w wr wri writ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 6 . 1 9 0 0 0 0 1 +This is this T Th Thi This BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 6 no 0 10 0 0 0 0 1 +server restart server s se ser serv BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 6 . 1 9 0 0 0 0 1 +A client a A A A A BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 1 0 0 0 0 0 4 7 no 0 9 0 0 0 0 1 +use byte-range use u us use use BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 7 --(..,- 7 10 0 0 0 0 1 +lock as lock l lo loc lock BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 4 7 ) 1 9 0 0 0 0 1 +a LOCKU a a a a a BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 1 0 0 0 0 0 4 7 . 1 8 0 0 0 0 1 +modified data modified m mo mod modi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 7 no 0 9 0 0 0 0 1 +are being are a ar are are BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 7 ., 2 9 0 0 0 0 1 +applications whose applications a ap app appl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 4 7 no 0 9 0 0 0 0 1 +bounds of bounds b bo bou boun BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 4 7 -., 3 9 0 0 0 0 1 +an application an a an an an BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 4 7 no 0 9 0 0 0 0 1 +that single that t th tha that BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 7 . 1 9 0 0 0 0 1 +all modified all a al all all BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 7 no 0 9 0 0 0 0 1 +in response in i in in in BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 4 7 ., 2 9 0 0 0 0 1 +be valid be b be be be BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 7 no 0 9 0 0 0 0 1 +was located was w wa was was BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 7 no 0 10 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 4 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 11 , 1 10 0 0 0 0 0 +[Page 202] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 4 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 4 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 4 0 no 0 4 0 0 0 0 1 +locked by locked l lo loc lock BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 0 . 1 9 0 0 0 0 1 +problem by problem p pr pro prob BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 0 no 0 10 0 0 0 0 1 +modifications are modifications m mo mod modi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 0 - 1 9 0 0 0 0 1 +lock and lock l lo loc lock BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 4 0 no 0 9 0 0 0 0 1 +byte-range lock. byte-range b by byt byte BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 0 -. 2 9 0 0 0 0 1 +not include not n no not not BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 0 . 1 9 0 0 0 0 1 +10.3.3. Data 10.3.3. 1 10 10. 10.3 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 4 1 ... 3 10 0 0 0 0 1 +Client-side data client-side C Cl Cli Clie BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 2 -- 2 9 0 0 0 0 1 +locking when locking l lo loc lock BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 2 .- 2 9 0 0 0 0 1 +locking for locking l lo loc lock BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 2 no 0 9 0 0 0 0 1 +NFS4ERR_LOCKED from nfs4err_locked N NF NFS NFS4 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 4 2 no 0 9 0 0 0 0 1 +has an has h ha has has BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 2 . 1 9 0 0 0 0 1 +effect for effect e ef eff effe BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 2 ,- 2 9 0 0 0 0 1 +range lock range r ra ran rang BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 2 .- 2 9 0 0 0 0 1 +exists for exists e ex exi exis BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 2 , 1 9 0 0 0 0 1 +the request the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 2 '. 2 9 0 0 0 0 1 +byte-range lock byte-range b by byt byte BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 2 -, 2 9 0 0 0 0 1 +read or read r re rea read BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 4 2 ' 1 10 0 0 0 0 1 +the request the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 2 . 1 9 0 0 0 0 1 +or write or o or or or BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 2 -, 2 9 0 0 0 0 1 +should be should s sh sho shou BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 2 - 1 9 0 0 0 0 1 +(locked or (locked ( (l (lo (loc BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 2 (). 3 5 0 0 0 0 1 +10.3.4. Data 10.3.4. 1 10 10. 10.3 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 4 6 ... 3 10 0 0 0 0 1 +When clients when W Wh Whe When BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 6 , 1 8 0 0 0 0 1 +according to according a ac acc acco BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 6 . 1 9 0 0 0 0 1 +NFSv3 clients, nfsv3 N NF NFS NFSv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 4 6 , 1 9 0 0 0 0 1 +purpose of purpose p pu pur purp BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 6 no 0 10 0 0 0 0 1 +system objects. system s sy sys syst BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 6 . 1 9 0 0 0 0 1 +maintain the maintain m ma mai main BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 6 . 1 5 0 0 0 0 1 +In the in I In In In BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 4 8 ., 2 8 0 0 0 0 1 +significant deviations significant s si sig sign BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 8 "" 2 9 0 0 0 0 1 +because a because b be bec beca BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 8 ' 1 10 0 0 0 0 1 +pathname. Therefore, pathname. p pa pat path BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 8 ., 2 9 0 0 0 0 1 +two filehandles two t tw two two BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 8 . 1 9 0 0 0 0 1 +were simply were w we wer were BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 8 no 0 9 0 0 0 0 1 +objects and objects o ob obj obje BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 8 , 1 8 0 0 0 0 1 +inconsistencies would inconsistencies i in inc inco BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 8 - 1 10 0 0 0 0 1 +that mapped that t th tha that BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 8 -. 2 6 0 0 0 0 1 +By providing by B By By By BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 10 ,. 2 9 0 0 0 0 1 +protocol alleviates protocol p pr pro prot BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 10 no 0 9 0 0 0 0 1 +with the with w wi wit with BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 10 ., 2 7 0 0 0 0 1 +inconsistencies within inconsistencies i in inc inco BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 10 , 1 10 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 4 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 11 , 1 10 0 0 0 0 0 +[Page 203] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 4 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 4 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 4 0 no 0 4 0 0 0 0 1 +been present been b be bee been BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 0 . 1 9 0 0 0 0 1 +is possible is i is is is BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 0 no 0 10 0 0 0 0 1 +on multiple on o on on on BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 0 ,. 2 10 0 0 0 0 1 +For the for F Fo For For BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 1 , 1 9 0 0 0 0 1 +NFSv4.1 client nfsv4.1 N NF NFS NFSv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 4 1 . 1 10 0 0 0 0 1 +the same the t th the the BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 1 -: 2 4 0 0 0 0 1 +o If o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 4 2 no 0 10 0 0 0 0 1 +the fsid the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 2 , 1 8 0 0 0 0 1 +objects. objects. objects. o ob obj obje BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 2 . 1 1 0 0 0 0 1 +o If o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 4 2 no 0 10 0 0 0 0 1 +two filehandles two t tw two two BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 2 no 0 9 0 0 0 0 1 +with a with w wi wit with BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 2 ,. 2 8 0 0 0 0 1 +o If o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 4 3 no 0 10 0 0 0 0 1 +fileid attribute fileid f fi fil file BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 3 , 1 9 0 0 0 0 1 +determined whether determined d de det dete BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 3 ., 2 9 0 0 0 0 1 +operations that operations o op ope oper BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 4 3 (..,- 5 10 0 0 0 0 1 +caching) cannot caching) c ca cac cach BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 3 ). 2 9 0 0 0 0 1 +return the return r re ret retu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 3 , 1 10 0 0 0 0 1 +it for it i it it it BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 3 , 1 9 0 0 0 0 1 +filehandles is filehandles f fi fil file BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 3 . 1 3 0 0 0 0 1 +o If o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 4 6 no 0 9 0 0 0 0 1 +values for values v va val valu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 6 ,. 2 10 0 0 0 0 1 +o Otherwise, o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 4 6 ,. 2 10 0 0 0 0 1 +10.4. Open 10.4. 1 10 10. 10.4 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 4 6 .. 2 10 0 0 0 0 1 +When a when W Wh Whe When BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 7 , 1 10 0 0 0 0 1 +of opens of o of of of BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 7 . 1 9 0 0 0 0 1 +delegation is delegation d de del dele BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 7 no 0 10 0 0 0 0 1 +delegation are delegation d de del dele BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 7 ., 2 9 0 0 0 0 1 +receives a receives r re rec rece BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 7 , 1 9 0 0 0 0 1 +recall the recall r re rec reca BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 7 no 0 10 0 0 0 0 1 +client may client c cl cli clie BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 7 ., 2 9 0 0 0 0 1 +clients should clients c cl cli clie BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 7 no 0 9 0 0 0 0 1 +will not will w wi wil will BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 4 7 . 1 9 0 0 0 0 1 +set of set s se set set BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 7 no 0 9 0 0 0 0 1 +should be should s sh sho shou BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 7 : 1 3 0 0 0 0 1 +o The o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 4 10 ' 1 9 0 0 0 0 1 +requests. If requests. r re req requ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 10 ., 2 10 0 0 0 0 1 +send a send s se sen send BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 10 ,, 2 9 0 0 0 0 1 +CB_SEQUENCE, for cb_sequence, C CB CB_ CB_S BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 4 10 ,. 2 8 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 4 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 11 , 1 10 0 0 0 0 0 +[Page 204] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 4 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 4 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 4 0 no 0 4 0 0 0 0 1 +o The o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 4 0 . 1 10 0 0 0 0 1 +o There o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 4 0 no 0 10 0 0 0 0 1 +delegation. delegation. delegation. d de del dele BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 0 . 1 1 0 0 0 0 1 +o There o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 4 1 no 0 10 0 0 0 0 1 +delegation being delegation d de del dele BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 1 . 1 4 0 0 0 0 1 +o The o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 4 1 no 0 10 0 0 0 0 1 +based on based b ba bas base BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 1 . 1 6 0 0 0 0 1 +o The o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 4 2 -/ 2 10 0 0 0 0 1 +would make would w wo wou woul BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 2 no 0 9 0 0 0 0 1 +handling that handling h ha han hand BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 2 (). 3 8 0 0 0 0 1 +There are there T Th The Ther BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 3 : 1 9 0 0 0 0 1 +OPEN_DELEGATE_WRITE. An open_delegate_write. O OP OPE OPEN BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 4 3 . 1 9 0 0 0 0 1 +client to client c cl cli clie BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 3 ,, 2 9 0 0 0 0 1 +that do that t th tha that BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 3 . 1 9 0 0 0 0 1 +OPEN_DELEGATE_READ delegations open_delegate_read O OP OPE OPEN BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 4 3 no 0 10 0 0 0 0 1 +do not do d do do do BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 3 . 1 10 0 0 0 0 1 +to handle, to t to to to BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 3 ,,. 3 8 0 0 0 0 1 +delegation may delegation d de del dele BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 3 , 1 9 0 0 0 0 1 +inconsistent with inconsistent i in inc inco BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 3 . 1 7 0 0 0 0 1 +When a when W Wh Whe When BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 5 , 1 9 0 0 0 0 1 +that neither that t th tha that BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 5 ,( 2 9 0 0 0 0 1 +time_access), nor time_access), t ti tim time BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 5 ), 2 9 0 0 0 0 1 +without its without w wi wit with BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 5 ,. 2 9 0 0 0 0 1 +client has client c cl cli clie BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 5 , 1 9 0 0 0 0 1 +data locally data d da dat data BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 5 '. 2 10 0 0 0 0 1 +The client the T Th The The BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 5 no 0 10 0 0 0 0 1 +affect file affect a af aff affe BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 5 no 0 9 0 0 0 0 1 +data: size, data: d da dat data BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 5 :,,,,. 6 9 0 0 0 0 1 +other attributes other o ot oth othe BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 5 . 1 7 0 0 0 0 1 +When a when W Wh Whe When BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 8 , 1 10 0 0 0 0 1 +or CLOSEs or o or or or BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 8 ., 2 8 0 0 0 0 1 +appropriate status appropriate a ap app appr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 8 ., 2 10 0 0 0 0 1 +opens that opens o op ope open BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 8 ( 1 8 0 0 0 0 1 +OPEN4_SHARE_ACCESS_WRITE/OPEN4_SHARE_ACCESS_BOTH or open4_share_access_write/open4_share_access_both O OP OPE OPEN BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 4 8 / 1 8 0 0 0 0 1 +OPEN4_SHARE_ACCESS_READ access) open4_share_access_read O OP OPE OPEN BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 4 8 ). 2 8 0 0 0 0 1 +When an when W Wh Whe When BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 10 , 1 10 0 0 0 0 1 +OPEN delegation open O OP OPE OPEN BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 4 10 : 1 8 0 0 0 0 1 +o the o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 4 11 ( 1 10 0 0 0 0 1 +OPEN_DELEGATE_WRITE). OPEN_DELEGATE_WRITE). open_delegate_write). O OP OPE OPEN BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 4 11 ). 2 4 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 4 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 11 , 1 10 0 0 0 0 0 +[Page 205] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 4 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 4 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 4 0 no 0 4 0 0 0 0 1 +o space o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 4 0 no 0 10 0 0 0 0 1 +(OPEN_DELEGATE_WRITE delegation (open_delegate_write ( (O (OP (OPE BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 4 0 (;..) 5 8 0 0 0 0 1 +o an o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 4 0 no 0 10 0 0 0 0 1 +o a o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 4 1 no 0 10 0 0 0 0 1 +The delegation the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 1 no 0 9 0 0 0 0 1 +the OPEN the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 1 ., 2 8 0 0 0 0 1 +stateid, is stateid, s st sta stat BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 1 ,- 2 10 0 0 0 0 1 +to be to t to to to BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 1 no 0 9 0 0 0 0 1 +open. open. open. o op ope open BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 1 . 1 0 0 0 0 0 1 +When a when W Wh Whe When BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 2 no 0 9 0 0 0 0 1 +OPEN delegation open O OP OPE OPEN BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 4 2 , 1 10 0 0 0 0 1 +on the on o on on on BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 2 . 1 9 0 0 0 0 1 +checks to checks c ch che chec BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 2 no 0 8 0 0 0 0 1 +delegation being delegation d de del dele BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 2 no 0 10 0 0 0 0 1 +itself. itself. itself. i it its itse BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 2 . 1 1 0 0 0 0 1 +o The o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 4 4 no 0 10 0 0 0 0 1 +in Section in i in in in BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 4 4 .. 2 2 0 0 0 0 1 +o The o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 4 5 . 1 10 0 0 0 0 1 +The nfsace4 the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 5 no 0 10 0 0 0 0 1 +ACCESS calls. access A AC ACC ACCE BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 4 5 .: 2 8 0 0 0 0 1 +o If o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 4 6 , 1 10 0 0 0 0 1 +be granted be b be be be BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 6 . 1 6 0 0 0 0 1 +o If o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 4 6 , 1 9 0 0 0 0 1 +ACCESS request access A AC ACC ACCE BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 4 6 no 0 10 0 0 0 0 1 +answer. answer. answer. a an ans answ BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 6 . 1 1 0 0 0 0 1 +The server the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 7 no 0 10 0 0 0 0 1 +actual ACL actual a ac act actu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 7 . 1 9 0 0 0 0 1 +denial of denial d de den deni BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 7 . 1 9 0 0 0 0 1 +mapping the mapping m ma map mapp BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 7 """"( 5 9 0 0 0 0 1 +Section 5.9) section S Se Sec Sect BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 7 .) 2 10 0 0 0 0 1 +file in file f fi fil file BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 7 . 1 4 0 0 0 0 1 +The use the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 9 no 0 10 0 0 0 0 1 +creates the creates c cr cre crea BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 9 no 0 8 0 0 0 0 1 +authorization will authorization a au aut auth BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 9 no 0 9 0 0 0 0 1 +the user's the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 9 '. 2 9 0 0 0 0 1 +depending on depending d de dep depe BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 9 , 1 9 0 0 0 0 1 +client should client c cl cli clie BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 9 no 0 9 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 4 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 11 , 1 10 0 0 0 0 0 +[Page 206] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 4 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 4 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 4 0 no 0 4 0 0 0 0 1 +each user each e ea eac each BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 0 . 1 9 0 0 0 0 1 +even if even e ev eve even BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 0 . 1 9 0 0 0 0 1 +mentioned before, mentioned m me men ment BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 0 , 1 10 0 0 0 0 1 +returning an returning r re ret retu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 0 . 1 10 0 0 0 0 1 +10.4.1. Open 10.4.1. 1 10 10. 10.4 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 4 1 ... 3 10 0 0 0 0 1 +An OPEN an A An An An BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 4 1 no 0 9 0 0 0 0 1 +with the with w wi wit with BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 1 . 1 9 0 0 0 0 1 +OPEN delegation open O OP OPE OPEN BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 4 1 no 0 9 0 0 0 0 1 +message be message m me mes mess BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 1 . 1 8 0 0 0 0 1 +"OPEN_DELEGATE_READ delegation" "open_delegate_read " "O "OP "OPE BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 4 1 "" 2 10 0 0 0 0 1 +OPEN4_SHARE_ACCESS_WRITE/OPEN4_SHARE_ACCESS_BOTH, and open4_share_access_write/open4_share_access_both, O OP OPE OPEN BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 4 1 /,, 3 9 0 0 0 0 1 +has occurred. has h ha has has BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 1 ., 2 8 0 0 0 0 1 +OPEN4_SHARE_ACCESS_WRITE/OPEN4_SHARE_ACCESS_BOTH and open4_share_access_write/open4_share_access_both O OP OPE OPEN BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 4 1 / 1 8 0 0 0 0 1 +OPEN_DELEGATE_WRITE delegation open_delegate_write O OP OPE OPEN BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 4 1 , 1 9 0 0 0 0 1 +not have not n no not not BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 1 no 0 9 0 0 0 0 1 +recalled. The recalled. r re rec reca BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 1 . 1 9 0 0 0 0 1 +guarantee that guarantee g gu gua guar BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 1 ,, 2 9 0 0 0 0 1 +another client. another a an ano anot BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 1 . 1 2 0 0 0 0 1 +For the for F Fo For For BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 4 , 1 10 0 0 0 0 1 +OPEN are open O OP OPE OPEN BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 4 4 no 0 9 0 0 0 0 1 +type of type t ty typ type BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 4 . 1 9 0 0 0 0 1 +an open an a an an an BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 4 4 , 1 9 0 0 0 0 1 +ID associated id I ID ID ID BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 1 0 0 0 0 0 0 4 4 no 0 9 0 0 0 0 1 +has been has h ha has has BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 4 (, 2 9 0 0 0 0 1 +recall is recall r re rec reca BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 4 )(, 3 8 0 0 0 0 1 +delegation must delegation d de del dele BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 4 / 1 9 0 0 0 0 1 +is recalled is i is is is BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 4 ). 2 3 0 0 0 0 1 +With delegations, with W Wi Wit With BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 7 , 1 9 0 0 0 0 1 +server when server s se ser serv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 7 . 1 9 0 0 0 0 1 +call is call c ca cal call BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 4 7 no 0 9 0 0 0 0 1 +stable storage stable s st sta stab BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 7 no 0 8 0 0 0 0 1 +application. At application. a ap app appl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 7 .,, 3 9 0 0 0 0 1 +through normal through t th thr thro BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 7 , 1 9 0 0 0 0 1 +available file available a av ava avai BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 7 (.., 4 10 0 0 0 0 1 +server returns server s se ser serv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 7 ). 2 9 0 0 0 0 1 +includes quotas. includes i in inc incl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 7 . 1 9 0 0 0 0 1 +alternative method alternative a al alt alte BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 7 no 0 9 0 0 0 0 1 +occur between occur o oc occ occu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 7 . 1 4 0 0 0 0 1 +In the in I In In In BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 4 10 , 1 9 0 0 0 0 1 +the size the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 10 no 0 9 0 0 0 0 1 +block size. block b bl blo bloc BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 4 10 . 1 9 0 0 0 0 1 +write modified write w wr wri writ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 10 no 0 10 0 0 0 0 1 +the original the t th the the BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 10 . 1 9 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 4 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 11 , 1 10 0 0 0 0 0 +[Page 207] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 4 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 4 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 4 0 no 0 4 0 0 0 0 1 +outstanding delegations. outstanding o ou out outs BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 0 ., 2 9 0 0 0 0 1 +its management its i it its its BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 0 , 1 9 0 0 0 0 1 +into account into i in int into BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 0 . 1 9 0 0 0 0 1 +The server the T Th The The BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 0 no 0 8 0 0 0 0 1 +available file available a av ava avai BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 0 .' 2 10 0 0 0 0 1 +state space state s st sta stat BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 0 . 1 10 0 0 0 0 1 +limits for limits l li lim limi BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 0 ,'. 3 9 0 0 0 0 1 +Based on based B Ba Bas Base BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 2 ,,, 3 9 0 0 0 0 1 +the server the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 2 no 0 9 0 0 0 0 1 +restrictive space restrictive r re res rest BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 2 . 1 9 0 0 0 0 1 +way that way w wa way way BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 4 2 no 0 10 0 0 0 0 1 +on close. on o on on on BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 2 . 1 1 0 0 0 0 1 +With respect with W Wi Wit With BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 3 , 1 9 0 0 0 0 1 +after a after a af aft afte BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 3 ., 2 9 0 0 0 0 1 +of the of o of of of BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 3 , 1 9 0 0 0 0 1 +authentication credentials authentication a au aut auth BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 3 ., 2 9 0 0 0 0 1 +client may client c cl cli clie BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 3 no 0 9 0 0 0 0 1 +credentials will credentials c cr cre cred BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 3 . 1 9 0 0 0 0 1 +tracking the tracking t tr tra trac BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 3 no 0 10 0 0 0 0 1 +advance of advance a ad adv adva BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 3 no 0 8 0 0 0 0 1 +credentials to credentials c cr cre cred BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 3 . 1 7 0 0 0 0 1 +10.4.2. Open 10.4.2. 1 10 10. 10.4 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 4 6 ... 3 10 0 0 0 0 1 +When a when W Wh Whe When BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 6 , 1 8 0 0 0 0 1 +operations are operations o op ope oper BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 4 6 . 1 9 0 0 0 0 1 +mandatory byte-range mandatory m ma man mand BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 6 -. 2 9 0 0 0 0 1 +implies that implies i im imp impl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 6 ., 2 9 0 0 0 0 1 +the revalidations the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 6 no 0 9 0 0 0 0 1 +locks and locks l lo loc lock BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 6 no 0 10 0 0 0 0 1 +need not need n ne nee need BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 6 . 1 2 0 0 0 0 1 +When a when W Wh Whe When BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 8 , 1 10 0 0 0 0 1 +are not are a ar are are BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 8 ., 2 9 0 0 0 0 1 +requesting non-exclusive requesting r re req requ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 8 -, 2 8 0 0 0 0 1 +resolution. resolution. resolution. r re res reso BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 8 . 1 1 0 0 0 0 1 +10.4.3. Handling 10.4.3. 1 10 10. 10.4 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 4 9 ... 3 10 0 0 0 0 1 +The server the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 9 no 0 10 0 0 0 0 1 +target is target t ta tar targ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 9 no 0 9 0 0 0 0 1 +effect. The effect. e ef eff effe BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 9 . 1 8 0 0 0 0 1 +OPEN_DELEGATE_WRITE delegation open_delegate_write O OP OPE OPEN BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 4 9 , 1 9 0 0 0 0 1 +server needs server s se ser serv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 9 no 0 9 0 0 0 0 1 +submitted the submitted s su sub subm BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 9 ., 2 8 0 0 0 0 1 +OPEN_DELEGATE_WRITE delegation open_delegate_write O OP OPE OPEN BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 4 9 . 1 10 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 4 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 11 , 1 10 0 0 0 0 0 +[Page 208] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 4 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 4 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 4 0 no 0 4 0 0 0 0 1 +will use will w wi wil will BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 4 0 . 1 10 0 0 0 0 1 +server can server s se ser serv BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 0 . 1 9 0 0 0 0 1 +Since CB_GETATTR since S Si Sin Sinc BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 0 ' 1 9 0 0 0 0 1 +request, the request, r re req requ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 0 , 1 9 0 0 0 0 1 +delegation has delegation d de del dele BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 0 .' 2 9 0 0 0 0 1 +of the of o of of of BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 0 (), 3 10 0 0 0 0 1 +satisfy the satisfy s sa sat sati BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 0 ' 1 9 0 0 0 0 1 +stored locally stored s st sto stor BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 0 ., 2 9 0 0 0 0 1 +only needs only o on onl only BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 0 . 1 8 0 0 0 0 1 +determines that determines d de det dete BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 0 , 1 9 0 0 0 0 1 +the second the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 0 ' 1 10 0 0 0 0 1 +at the at a at at at BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 0 . 1 2 0 0 0 0 1 +Since the since S Si Sin Sinc BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 3 no 0 9 0 0 0 0 1 +and is and a an and and BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 3 , 1 10 0 0 0 0 1 +method of method m me met meth BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 3 . 1 9 0 0 0 0 1 +attribute, the attribute, a at att attr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 3 ,. 2 9 0 0 0 0 1 +For the for F Fo For For BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 3 ,. 2 8 0 0 0 0 1 +For the for F Fo For For BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 5 , 1 10 0 0 0 0 1 +OPEN_DELEGATE_WRITE delegation: open_delegate_write O OP OPE OPEN BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 4 5 : 1 4 0 0 0 0 1 +o The o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 4 5 no 0 10 0 0 0 0 1 +and cached. and a an and and BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 5 .. 2 6 0 0 0 0 1 +o The o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 4 6 no 0 10 0 0 0 0 1 +for communicating for f fo for for BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 6 . 1 9 0 0 0 0 1 +this value this t th thi this BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 6 . 1 4 0 0 0 0 1 +o When o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 4 6 no 0 8 0 0 0 0 1 +attribute, it attribute, a at att attr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 6 ,. 2 9 0 0 0 0 1 +file is file f fi fil file BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 6 , 1 10 0 0 0 0 1 +value. If value. v va val valu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 6 ., 2 9 0 0 0 0 1 +the value the t th the the BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 6 . 1 5 0 0 0 0 1 +For simplicity for F Fo For For BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 8 , 1 10 0 0 0 0 1 +return the return r re ret retu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 8 ., 2 9 0 0 0 0 1 +CB_GETATTR operations, cb_getattr C CB CB_ CB_G BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 4 8 ,' 2 9 0 0 0 0 1 +metadata in metadata m me met meta BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 8 . 1 9 0 0 0 0 1 +the only the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 8 no 0 9 0 0 0 0 1 +server that server s se ser serv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 8 ., 2 9 0 0 0 0 1 +d may d d d d d BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 4 8 . 1 3 0 0 0 0 1 +While the while W Wh Whi Whil BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 10 no 0 9 0 0 0 0 1 +it has it i it it it BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 10 ,, 2 9 0 0 0 0 1 +change with, change c ch cha chan BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 10 , 1 9 0 0 0 0 1 +an unsigned an a an an an BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 4 10 , 1 10 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 4 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 11 , 1 10 0 0 0 0 0 +[Page 209] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 4 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 4 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 4 0 no 0 4 0 0 0 0 1 +of the of o of of of BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 0 '., 3 9 0 0 0 0 1 +encode the encode e en enc enco BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 0 no 0 9 0 0 0 0 1 +client. The client. c cl cli clie BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 0 . 1 9 0 0 0 0 1 +order when order o or ord orde BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 0 , 1 9 0 0 0 0 1 +order when order o or ord orde BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 0 ., 2 9 0 0 0 0 1 +defined as defined d de def defi BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 0 . 1 10 0 0 0 0 1 +For the for F Fo For For BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 2 , 1 10 0 0 0 0 1 +OPEN_DELEGATE_WRITE delegation: open_delegate_write O OP OPE OPEN BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 4 2 : 1 4 0 0 0 0 1 +o Upon o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 4 2 , 1 10 0 0 0 0 1 +cache a cache c ca cac cach BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 2 no 0 9 0 0 0 0 1 +to record to t to to to BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 2 .. 2 9 0 0 0 0 1 +o When o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 4 3 no 0 10 0 0 0 0 1 +the server, the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 3 , 1 9 0 0 0 0 1 +client. Let client. c cl cli clie BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 3 .. 2 4 0 0 0 0 1 +o If o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 4 4 , 1 10 0 0 0 0 1 +server returns server s se ser serv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 4 ,, 2 9 0 0 0 0 1 +time_modify (for time_modify t ti tim time BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 4 (). 3 7 0 0 0 0 1 +o If o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 4 4 , 1 10 0 0 0 0 1 +at the at a at at at BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 4 no 0 9 0 0 0 0 1 +at a at a at at at BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 4 . 1 8 0 0 0 0 1 +construct attribute construct c co con cons BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 4 . 1 9 0 0 0 0 1 +new value new n ne new new BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 4 ,, 2 8 0 0 0 0 1 +server, such server, s se ser serv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 4 ,. 2 8 0 0 0 0 1 +constructed time_metadata, constructed c co con cons BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 4 ,, 2 8 0 0 0 0 1 +requester. The requester. r re req requ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 4 . 1 9 0 0 0 0 1 +nsc. To nsc. n ns nsc nsc. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 4 .,, 3 9 0 0 0 0 1 +and change and a an and and BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 4 ( 1 9 0 0 0 0 1 +the client the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 4 no 0 9 0 0 0 0 1 +to the to t to to to BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 4 ), 2 9 0 0 0 0 1 +server SHOULD server s se ser serv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 4 ' 1 8 0 0 0 0 1 +constructed attribute constructed c co con cons BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 4 . 1 8 0 0 0 0 1 +performance, committing performance, p pe per perf BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 4 , 1 9 0 0 0 0 1 +storage is storage s st sto stor BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 4 . 1 3 0 0 0 0 1 +As discussed as A As As As BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 9 , 1 9 0 0 0 0 1 +cc value cc c cc cc cc BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 9 , 1 8 0 0 0 0 1 +modified in modified m mo mod modi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 9 ' 1 8 0 0 0 0 1 +CB_GETATTR calls. cb_getattr C CB CB_ CB_G BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 4 9 ., 2 9 0 0 0 0 1 +has been has h ha has has BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 9 , 1 9 0 0 0 0 1 +new nsc new n ne new new BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 9 no 0 10 0 0 0 0 1 +returned. An returned. r re ret retu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 9 .' 2 8 0 0 0 0 1 +satisfy this satisfy s sa sat sati BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 9 ( 1 9 0 0 0 0 1 +"modified") that "modified") " "m "mo "mod BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 9 ""), 4 9 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 4 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 11 , 1 10 0 0 0 0 0 +[Page 210] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 4 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 4 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 4 0 no 0 4 0 0 0 0 1 +an sc an a an an an BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 4 0 . 1 9 0 0 0 0 1 +The modified the T Th The The BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 0 !, 2 9 0 0 0 0 1 +would stay would w wo wou woul BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 0 . 1 9 0 0 0 0 1 +processing for processing p pr pro proc BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 0 ,, 2 10 0 0 0 0 1 +use this use u us use use BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 0 : 1 3 0 0 0 0 1 +if (!modified) if i if if if BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 2 (!) 3 4 0 0 0 0 1 +do CB_GETATTR do d do do do BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 2 ; 1 10 0 0 0 0 1 +if (cc if i if if if BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 2 (!) 3 5 0 0 0 0 1 +modified = modified m mo mod modi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 2 ; 1 7 0 0 0 0 1 +} else } } } } } BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 2 no 0 3 0 0 0 0 1 +do CB_GETATTR do d do do do BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 2 ; 1 10 0 0 0 0 1 +} } } } } } } BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 2 no 0 0 0 0 0 0 1 +if (modified) if i if if if BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 3 () 2 2 0 0 0 0 1 +sc = sc s sc sc sc BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 3 ; 1 2 0 0 0 0 1 +time_modify = time_modify t ti tim time BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 3 ; 1 7 0 0 0 0 1 +update sc, update u up upd upda BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 3 ,,'; 4 10 0 0 0 0 1 +} } } } } } } BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 3 no 0 0 0 0 0 0 1 +This would this T Th Thi This BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 4 () 2 10 0 0 0 0 1 +requested, but requested, r re req requ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 4 ,. 2 9 0 0 0 0 1 +The server the T Th The The BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 4 '' 2 9 0 0 0 0 1 +modified size. modified m mo mod modi BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 4 . 1 2 0 0 0 0 1 +In the in I In In In BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 4 6 no 0 9 0 0 0 0 1 +server's current server's s se ser serv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 6 ', 2 9 0 0 0 0 1 +regardless of regardless r re reg rega BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 6 no 0 9 0 0 0 0 1 +CB_GETATTR and cb_getattr C CB CB_ CB_G BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 4 6 . 1 10 0 0 0 0 1 +This methodology this T Th Thi This BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 8 no 0 10 0 0 0 0 1 +and server and a an and and BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 8 no 0 9 0 0 0 0 1 +down. down. down. d do dow down BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 8 . 1 0 0 0 0 0 1 +It should it I It It It BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 8 no 0 9 0 0 0 0 1 +CB_GETATTR, and cb_getattr, C CB CB_ CB_G BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 4 8 , 1 10 0 0 0 0 1 +to avoid to t to to to BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 8 . 1 2 0 0 0 0 1 +10.4.4. Recall 10.4.4. 1 10 10. 10.4 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 4 9 ... 3 10 0 0 0 0 1 +The following the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 10 : 1 10 0 0 0 0 1 +o potentially o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 4 10 ( 1 10 0 0 0 0 1 +done with done d do don done BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 10 ) 1 4 0 0 0 0 1 +o SETATTR o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 4 11 no 0 10 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 4 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 11 , 1 10 0 0 0 0 0 +[Page 211] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 4 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 4 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 4 0 no 0 4 0 0 0 0 1 +o REMOVE o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 4 0 no 0 10 0 0 0 0 1 +o RENAME o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 4 0 no 0 10 0 0 0 0 1 +RENAME RENAME rename R RE REN RENA BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 4 0 no 0 1 0 0 0 0 1 +Whether a whether W Wh Whe Whet BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 1 no 0 9 0 0 0 0 1 +results in results r re res resu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 4 1 no 0 10 0 0 0 0 1 +the server's the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 1 '. 2 9 0 0 0 0 1 +when a when w wh whe when BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 1 , 1 9 0 0 0 0 1 +whether the whether w wh whe whet BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 1 ,,. 3 7 0 0 0 0 1 +In addition in I In In In BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 4 2 , 1 10 0 0 0 0 1 +OPEN delegations open O OP OPE OPEN BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 4 2 no 0 8 0 0 0 0 1 +advisable to advisable a ad adv advi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 2 . 1 8 0 0 0 0 1 +possibility of possibility p po pos poss BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 2 . 1 3 0 0 0 0 1 +When a when W Wh Whe When BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 3 , 1 10 0 0 0 0 1 +update state update u up upd upda BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 3 . 1 9 0 0 0 0 1 +same updates same s sa sam same BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 3 no 0 9 0 0 0 0 1 +delegation voluntarily. delegation d de del dele BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 3 . 1 9 0 0 0 0 1 +dealt with: dealt d de dea deal BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 3 : 1 1 0 0 0 0 1 +o If o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 4 5 no 0 10 0 0 0 0 1 +no previous no n no no no BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 5 , 1 9 0 0 0 0 1 +operation must operation o op ope oper BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 5 . 1 5 0 0 0 0 1 +o If o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 4 6 , 1 9 0 0 0 0 1 +operations must operations o op ope oper BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 4 6 . 1 9 0 0 0 0 1 +will be will w wi wil will BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 4 6 no 0 9 0 0 0 0 1 +since the since s si sin sinc BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 6 . 1 9 0 0 0 0 1 +requests are requests r re req requ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 4 6 . 1 10 0 0 0 0 1 +will allow will w wi wil will BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 4 6 no 0 10 0 0 0 0 1 +client can client c cl cli clie BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 6 . 1 9 0 0 0 0 1 +(see Section (see ( (s (se (see BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 6 (.,, 4 9 0 0 0 0 1 +details.) details.) details.) d de det deta BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 6 .) 2 1 0 0 0 0 1 +o If o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 4 9 -, 2 10 0 0 0 0 1 +operations need operations o op ope oper BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 4 9 . 1 8 0 0 0 0 1 +OPEN_DELEGATE_WRITE delegation open_delegate_write O OP OPE OPEN BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 4 9 . 1 6 0 0 0 0 1 +o For o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 4 10 , 1 9 0 0 0 0 1 +the file the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 10 / 1 7 0 0 0 0 1 +OPEN4_SHARE_ACCESS_BOTH, all open4_share_access_both, O OP OPE OPEN BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 4 10 , 1 9 0 0 0 0 1 +flushed to flushed f fl flu flus BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 10 ., 2 9 0 0 0 0 1 +client would client c cl cli clie BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 10 . 1 10 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 4 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 11 , 1 10 0 0 0 0 0 +[Page 212] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 4 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 4 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 4 0 no 0 4 0 0 0 0 1 +o For o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 4 0 no 0 10 0 0 0 0 1 +the time the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 0 , 1 9 0 0 0 0 1 +flushed to flushed f fl flu flus BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 0 . 1 3 0 0 0 0 1 +o With o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 4 1 , 1 10 0 0 0 0 1 +that the that t th tha that BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 1 . 1 10 0 0 0 0 1 +For example, for F Fo For For BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 1 , 1 9 0 0 0 0 1 +OPEN UNCHECKED open O OP OPE OPEN BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 4 1 ., 2 9 0 0 0 0 1 +a truncation a a a a a BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 1 0 0 0 0 0 4 1 no 0 9 0 0 0 0 1 +been propagated been b be bee been BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 1 , 1 9 0 0 0 0 1 +any modified any a an any any BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 1 . 1 6 0 0 0 0 1 +In the in I In In In BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 4 2 ,- 2 9 0 0 0 0 1 +imposes some imposes i im imp impo BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 2 . 1 9 0 0 0 0 1 +associated invariant, associated a as ass asso BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 2 , 1 9 0 0 0 0 1 +any byte-range any a an any any BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 2 - 1 9 0 0 0 0 1 +OPEN_DELEGATE_WRITE delegation open_delegate_write O OP OPE OPEN BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 4 2 ., 2 9 0 0 0 0 1 +OPEN_DELEGATE_WRITE delegation open_delegate_write O OP OPE OPEN BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 4 2 no 0 9 0 0 0 0 1 +clients, a clients, c cl cli clie BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 2 , 1 10 0 0 0 0 1 +the file the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 2 () 2 9 0 0 0 0 1 +released while released r re rel rele BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 2 . 1 9 0 0 0 0 1 +An implementation an A An An An BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 4 5 ( 1 9 0 0 0 0 1 +decision to decision d de dec deci BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 5 ) 1 9 0 0 0 0 1 +above actions, above a ab abo abov BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 5 ,(.., 5 9 0 0 0 0 1 +availability constraints) availability a av ava avai BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 5 ).,, 4 9 0 0 0 0 1 +the fact the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 5 no 0 9 0 0 0 0 1 +change makes change c ch cha chan BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 5 no 0 9 0 0 0 0 1 +closes to closes c cl clo clos BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 5 ,. 2 8 0 0 0 0 1 +exception is exception e ex exc exce BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 5 . 1 9 0 0 0 0 1 +In this in I In In In BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 4 5 , 1 9 0 0 0 0 1 +utilization on utilization u ut uti util BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 5 .' 2 9 0 0 0 0 1 +choices on choices c ch cho choi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 5 , 1 10 0 0 0 0 1 +delegation is delegation d de del dele BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 5 ,() 3 9 0 0 0 0 1 +corresponds to corresponds c co cor corr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 5 . 1 9 0 0 0 0 1 +actions can actions a ac act acti BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 5 no 0 9 0 0 0 0 1 +operations in operations o op ope oper BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 4 5 . 1 5 0 0 0 0 1 +10.4.5. Clients 10.4.5. 1 10 10. 10.4 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 4 9 ... 3 10 0 0 0 0 1 +A client a A A A A BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 1 0 0 0 0 0 4 9 , 1 10 0 0 0 0 1 +a failure a a a a a BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 1 0 0 0 0 0 4 9 . 1 9 0 0 0 0 1 +may be may m ma may may BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 1 0 0 4 9 . 1 8 0 0 0 0 1 +awareness could awareness a aw awa awar BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 9 no 0 9 0 0 0 0 1 +failure that failure f fa fai fail BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 9 , 1 9 0 0 0 0 1 +modified the modified m mo mod modi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 9 . 1 9 0 0 0 0 1 +especially a especially e es esp espe BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 9 no 0 9 0 0 0 0 1 +delegation. delegation. delegation. d de del dele BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 9 . 1 1 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 4 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 11 , 1 10 0 0 0 0 0 +[Page 213] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 4 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 4 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 4 0 no 0 4 0 0 0 0 1 +Status bits status S St Sta Stat BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 0 no 0 9 0 0 0 0 1 +alternate way alternate a al alt alte BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 0 no 0 10 0 0 0 0 1 +of the of o of of of BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 0 . 1 10 0 0 0 0 1 +is not is i is is is BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 0 , 1 7 0 0 0 0 1 +SEQ4_STATUS_CB_PATH_DOWN on seq4_status_cb_path_down S SE SEQ SEQ4 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 4 0 . 1 9 0 0 0 0 1 +react by react r re rea reac BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 0 - 1 10 0 0 0 0 1 +recallable objects recallable r re rec reca BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 0 - 1 8 0 0 0 0 1 +established. established. established. e es est esta BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 0 . 1 1 0 0 0 0 1 +Whether the whether W Wh Whe Whet BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 2 , 1 9 0 0 0 0 1 +recalled delegation recalled r re rec reca BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 2 .' 2 9 0 0 0 0 1 +might still might m mi mig migh BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 2 , 1 9 0 0 0 0 1 +returned. In returned. r re ret retu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 2 ., 2 9 0 0 0 0 1 +are not are a ar are are BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 2 . 1 10 0 0 0 0 1 +period of period p pe per peri BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 2 - 1 9 0 0 0 0 1 +down status down d do dow down BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 2 -. 2 6 0 0 0 0 1 +When delegations when W Wh Whe When BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 4 , 1 9 0 0 0 0 1 +SEQ4_STATUS_RECALLABLE_STATE_REVOKED status seq4_status_recallable_state_revoked S SE SEQ SEQ4 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 4 4 no 0 10 0 0 0 0 1 +SEQUENCE operations. sequence S SE SEQ SEQU BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 4 4 . 1 9 0 0 0 0 1 +TEST_STATEID to test_stateid T TE TES TEST BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 4 4 . 1 8 0 0 0 0 1 +10.4.6. Delegation 10.4.6. 1 10 10. 10.4 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 4 5 ... 3 10 0 0 0 0 1 +At the at A At At At BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 5 , 1 9 0 0 0 0 1 +on the on o on on on BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 5 ,.- 3 9 0 0 0 0 1 +range lock range r ra ran rang BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 5 no 0 10 0 0 0 0 1 +open, the open, o op ope open BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 5 , 1 9 0 0 0 0 1 +from the from f fr fro from BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 5 , 1 8 0 0 0 0 1 +delegation were delegation d de del dele BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 5 . 1 3 0 0 0 0 1 +For example, for F Fo For For BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 7 , 1 9 0 0 0 0 1 +OPEN4_SHARE_DENY_NONE is open4_share_deny_none O OP OPE OPEN BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 4 7 , 1 9 0 0 0 0 1 +another such another a an ano anot BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 7 no 0 9 0 0 0 0 1 +but need but b bu but but BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 7 , 1 10 0 0 0 0 1 +each other. each e ea eac each BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 7 ., 2 9 0 0 0 0 1 +granted, then granted, g gr gra gran BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 7 ,. 2 7 0 0 0 0 1 +When opens when W Wh Whe When BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 9 /, 2 9 0 0 0 0 1 +opens or opens o op ope open BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 9 . 1 10 0 0 0 0 1 +by returning by b by by by BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 9 / 1 9 0 0 0 0 1 +attempted for attempted a at att atte BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 9 . 1 4 0 0 0 0 1 +If no if I If If If BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 10 no 0 8 0 0 0 0 1 +revoked, then revoked, r re rev revo BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 10 ,. 2 8 0 0 0 0 1 +However, if however, H Ho How Howe BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 10 , 1 9 0 0 0 0 1 +file, the file, f fi fil file BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 10 ,., 3 10 0 0 0 0 1 +it may it i it it it BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 10 no 0 9 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 4 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 11 , 1 10 0 0 0 0 0 +[Page 214] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 4 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 4 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 4 0 no 0 4 0 0 0 0 1 +may not may m ma may may BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 1 0 0 4 0 ... 3 10 0 0 0 0 1 +details. details. details. d de det deta BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 0 . 1 1 0 0 0 0 1 +10.4.7. Delegations 10.4.7. 1 10 10. 10.4 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 4 0 ... 3 10 0 0 0 0 1 +In addition in I In In In BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 4 0 no 0 9 0 0 0 0 1 +operations, servers operations, o op ope oper BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 0 ,, 2 9 0 0 0 0 1 +the OPTIONAL the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 0 . 1 9 0 0 0 0 1 +be obtained be b be be be BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 0 , 1 9 0 0 0 0 1 +objects that objects o ob obj obje BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 0 , 1 10 0 0 0 0 1 +which a which w wh whi whic BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 0 no 0 9 0 0 0 0 1 +attempt to attempt a at att atte BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 0 - 1 9 0 0 0 0 1 +allows that. allows a al all allo BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 0 . 1 1 0 0 0 0 1 +The WANT_DELEGATION the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 3 no 0 10 0 0 0 0 1 +object other object o ob obj obje BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 3 . 1 4 0 0 0 0 1 +When a when W Wh Whe When BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 3 , 1 9 0 0 0 0 1 +for the for f fo for for BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 3 no 0 9 0 0 0 0 1 +subordinate to subordinate s su sub subo BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 3 , 1 10 0 0 0 0 1 +an OPEN an a an an an BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 4 3 . 1 9 0 0 0 0 1 +to seqid, to t to to to BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 3 ,,- 3 10 0 0 0 0 1 +locks. Similarly, locks. l lo loc lock BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 3 .,- 3 9 0 0 0 0 1 +to an to t to to to BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 3 ,- 2 10 0 0 0 0 1 +to that to t to to to BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 3 . 1 3 0 0 0 0 1 +The WANT_DELEGATION the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 5 no 0 9 0 0 0 0 1 +via callbacks, via v vi via via BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 5 ,. 2 9 0 0 0 0 1 +When a when W Wh Whe When BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 5 , 1 9 0 0 0 0 1 +client via client c cl cli clie BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 5 ., 2 10 0 0 0 0 1 +for the for f fo for for BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 5 no 0 10 0 0 0 0 1 +the point the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 5 , 1 10 0 0 0 0 1 +been created been b be bee been BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 5 ., 2 9 0 0 0 0 1 +this occurs this t th thi this BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 5 -. 2 9 0 0 0 0 1 +10.5. Data 10.5. 1 10 10. 10.5 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 4 8 .. 2 10 0 0 0 0 1 +When locks when W Wh Whe When BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 8 , 1 9 0 0 0 0 1 +successful caching successful s su suc succ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 8 . 1 9 0 0 0 0 1 +or share or o or or or BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 8 , 1 9 0 0 0 0 1 +state-owner needs state-owner s st sta stat BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 8 -. 2 8 0 0 0 0 1 +applications with applications a ap app appl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 4 8 no 0 9 0 0 0 0 1 +that has that t th tha that BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 8 . 1 9 0 0 0 0 1 +must be must m mu mus must BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 8 . 1 8 0 0 0 0 1 +existing in existing e ex exi exis BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 8 ', 2 9 0 0 0 0 1 +client without client c cl cli clie BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 8 ., 2 8 0 0 0 0 1 +assumptions made assumptions a as ass assu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 8 no 0 10 0 0 0 0 1 +a lock a a a a a BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 1 0 0 0 0 0 4 8 ., 2 9 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 4 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 11 , 1 10 0 0 0 0 0 +[Page 215] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 4 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 4 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 4 0 no 0 4 0 0 0 0 1 +may have may m ma may may BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 1 0 0 4 0 - 1 8 0 0 0 0 1 +revocation of revocation r re rev revo BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 0 -., 3 9 0 0 0 0 1 +the data the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 0 no 0 9 0 0 0 0 1 +client. Obviously, client. c cl cli clie BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 0 ., 2 9 0 0 0 0 1 +application what application a ap app appl BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 0 . 1 10 0 0 0 0 1 +Notification to notification N No Not Noti BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 1 - 1 9 0 0 0 0 1 +returning an returning r re ret retu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 1 / 1 10 0 0 0 0 1 +open file open o op ope open BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 1 . 1 9 0 0 0 0 1 +make such make m ma mak make BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 1 no 0 8 0 0 0 0 1 +operations may operations o op ope oper BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 4 1 , 1 9 0 0 0 0 1 +or process or o or or or BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 1 . 1 9 0 0 0 0 1 +that an that t th tha that BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 1 . 1 9 0 0 0 0 1 +Depending on depending D De Dep Depe BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 1 - 1 8 0 0 0 0 1 +operating environment, operating o op ope oper BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 1 , 1 9 0 0 0 0 1 +logging, console logging, l lo log logg BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 1 ,,-. 4 9 0 0 0 0 1 +10.5.1. Revocation 10.5.1. 1 10 10. 10.5 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 4 4 ... 3 10 0 0 0 0 1 +Revocation recovery revocation R Re Rev Revo BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 4 no 0 9 0 0 0 0 1 +special issue special s sp spe spec BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 4 no 0 10 0 0 0 0 1 +not open. not n no not not BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 4 ., 2 10 0 0 0 0 1 +data to data d da dat data BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 4 no 0 9 0 0 0 0 1 +appropriate notification appropriate a ap app appr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 4 no 0 8 0 0 0 0 1 +revocation. Since revocation. r re rev revo BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 4 . 1 8 0 0 0 0 1 +correct problems, correct c co cor corr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 4 , 1 10 0 0 0 0 1 +or administrator or o or or or BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 4 . 1 9 0 0 0 0 1 +messages are messages m me mes mess BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 4 . 1 4 0 0 0 0 1 +If there if I If If If BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 6 , 1 9 0 0 0 0 1 +normally to normally n no nor norm BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 6 . 1 9 0 0 0 0 1 +the file the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 6 no 0 9 0 0 0 0 1 +name in name n na nam name BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 6 . 1 9 0 0 0 0 1 +the client the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 6 no 0 9 0 0 0 0 1 +other client, other o ot oth othe BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 6 , 1 9 0 0 0 0 1 +file in file f fi fil file BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 6 ,' 2 10 0 0 0 0 1 +may be may m ma may may BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 1 0 0 4 6 ., 2 9 0 0 0 0 1 +using a using u us usi usin BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 6 ' 1 10 0 0 0 0 1 +and partially and a an and and BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 6 ' 1 10 0 0 0 0 1 +be anything be b be be be BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 6 , 1 9 0 0 0 0 1 +contents in contents c co con cont BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 6 no 0 9 0 0 0 0 1 +users of users u us use user BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 6 . 1 4 0 0 0 0 1 +Saving of saving S Sa Sav Savi BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 10 no 0 10 0 0 0 0 1 +be limited be b be be be BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 10 no 0 9 0 0 0 0 1 +sufficient disk sufficient s su suf suff BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 10 . 1 9 0 0 0 0 1 +Such saving such S Su Suc Such BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 10 no 0 10 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 4 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 11 , 1 10 0 0 0 0 0 +[Page 216] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 4 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 4 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 4 0 no 0 4 0 0 0 0 1 +sufficient buffering sufficient s su suf suff BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 0 no 0 10 0 0 0 0 1 +until it until u un unt unti BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 0 . 1 8 0 0 0 0 1 +10.6. Attribute 10.6. 1 10 10. 10.6 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 4 0 .. 2 10 0 0 0 0 1 +This section this T Th Thi This BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 0 ' 1 10 0 0 0 0 1 +client when client c cl cli clie BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 0 . 1 9 0 0 0 0 1 +The attributes the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 1 no 0 9 0 0 0 0 1 +attributes. Individual attributes. a at att attr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 1 ., 2 10 0 0 0 0 1 +caching of caching c ca cac cach BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 1 no 0 9 0 0 0 0 1 +caching is caching c ca cac cach BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 1 ., 2 9 0 0 0 0 1 +OPENATTR directory openattr O OP OPE OPEN BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 4 1 (') 3 9 0 0 0 0 1 +cached on cached c ca cac cach BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 1 . 1 7 0 0 0 0 1 +Clients may clients C Cl Cli Clie BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 3 no 0 9 0 0 0 0 1 +them to them t th the them BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 3 . 1 9 0 0 0 0 1 +through in through t th thr thro BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 3 no 0 9 0 0 0 0 1 +means of means m me mea mean BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 4 3 no 0 9 0 0 0 0 1 +should not should s sh sho shou BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 3 . 1 9 0 0 0 0 1 +attributes that attributes a at att attr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 3 . 1 8 0 0 0 0 1 +Therefore, extending therefore, T Th The Ther BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 3 , 1 9 0 0 0 0 1 +is reflected is i is is is BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 3 no 0 9 0 0 0 0 1 +this change this t th thi this BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 3 ., 2 9 0 0 0 0 1 +such changes such s su suc such BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 3 , 1 10 0 0 0 0 1 +modified data modified m mo mod modi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 3 , 1 9 0 0 0 0 1 +are made are a ar are are BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 3 ., 2 9 0 0 0 0 1 +modified attributes modified m mo mod modi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 3 no 0 9 0 0 0 0 1 +CB_RECALL call. cb_recall C CB CB_ CB_R BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 4 3 . 1 2 0 0 0 0 1 +The result the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 7 no 0 9 0 0 0 0 1 +caches maintained caches c ca cac cach BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 7 . 1 9 0 0 0 0 1 +Changes made changes C Ch Cha Chan BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 4 7 no 0 10 0 0 0 0 1 +order on order o or ord orde BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 7 . 1 8 0 0 0 0 1 +The typical the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 8 no 0 9 0 0 0 0 1 +provide means provide p pr pro prov BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 8 no 0 9 0 0 0 0 1 +multiple files multiple m mu mul mult BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 8 . 1 9 0 0 0 0 1 +environment where environment e en env envi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 4 8 no 0 10 0 0 0 0 1 +reasonably managed. reasonably r re rea reas BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 8 . 1 9 0 0 0 0 1 +previous NFS previous p pr pre prev BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 8 . 1 3 0 0 0 0 1 +o All o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 4 10 (-) 3 10 0 0 0 0 1 +cached as cached c ca cac cach BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 10 - 1 9 0 0 0 0 1 +arise within arise a ar ari aris BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 10 . 1 6 0 0 0 0 1 +o An o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 4 11 no 0 10 0 0 0 0 1 +entry can entry e en ent entr BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 11 . 1 8 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 4 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 11 , 1 10 0 0 0 0 0 +[Page 217] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 4 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 4 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 4 0 no 0 4 0 0 0 0 1 +o When o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 4 0 no 0 9 0 0 0 0 1 +server, the server, s se ser serv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 0 , 1 9 0 0 0 0 1 +containing RPC. containing c co con cont BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 0 . 1 9 0 0 0 0 1 +attributes indirectly. attributes a at att attr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 0 . 1 9 0 0 0 0 1 +modifying operation modifying m mo mod modi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 0 no 0 9 0 0 0 0 1 +results of results r re res resu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 4 0 '. 2 10 0 0 0 0 1 +Note that note N No Not Note BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 1 no 0 9 0 0 0 0 1 +READDIR, the readdir, R RE REA READ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 4 1 , 1 10 0 0 0 0 1 +attributes obtained attributes a at att attr BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 1 . 1 4 0 0 0 0 1 +A client a A A A A BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 1 0 0 0 0 0 4 2 no 0 9 0 0 0 0 1 +fetching both fetching f fe fet fetc BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 2 no 0 10 0 0 0 0 1 +if the if i if if if BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 2 no 0 8 0 0 0 0 1 +attributes were attributes a at att attr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 2 , 1 9 0 0 0 0 1 +have changed. have h ha hav have BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 2 . 1 9 0 0 0 0 1 +many servers many m ma man many BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 4 2 no 0 10 0 0 0 0 1 +change does change c ch cha chan BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 2 ., 2 8 0 0 0 0 1 +semantics do semantics s se sem sema BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 2 no 0 9 0 0 0 0 1 +write system write w wr wri writ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 2 []., 4 9 0 0 0 0 1 +time_access value time_access t ti tim time BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 2 no 0 9 0 0 0 0 1 +cache validation cache c ca cac cach BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 2 . 1 9 0 0 0 0 1 +The client the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 5 no 0 9 0 0 0 0 1 +attributes intimately attributes a at att attr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 5 no 0 10 0 0 0 0 1 +(size, time_modify, (size, ( (s (si (siz BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 5 (,,)., 6 10 0 0 0 0 1 +the client the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 5 . 1 8 0 0 0 0 1 +Instead, attribute instead, I In Ins Inst BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 5 ,. 2 9 0 0 0 0 1 +In some in I In In In BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 4 6 , 1 9 0 0 0 0 1 +expected to expected e ex exp expe BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 6 no 0 9 0 0 0 0 1 +file object. file f fi fil file BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 6 . 1 9 0 0 0 0 1 +object, whether object, o ob obj obje BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 6 ,,,, 4 9 0 0 0 0 1 +the client the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 6 ( 1 9 0 0 0 0 1 +or a or o or or or BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 6 ) 1 10 0 0 0 0 1 +is satisfied is i is is is BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 6 . 1 9 0 0 0 0 1 +performance benefits performance p pe per perf BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 6 , 1 10 0 0 0 0 1 +SETATTR of setattr S SE SET SETA BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 4 6 . 1 9 0 0 0 0 1 +If the if I If If If BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 6 , 1 10 0 0 0 0 1 +will think will w wi wil will BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 4 6 ,- 2 9 0 0 0 0 1 +from the from f fr fro from BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 6 . 1 9 0 0 0 0 1 +version of version v ve ver vers BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 6 , 1 9 0 0 0 0 1 +eventually have eventually e ev eve even BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 6 no 0 9 0 0 0 0 1 +performance effects performance p pe per perf BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 6 ', 2 10 0 0 0 0 1 +resulting in resulting r re res resu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 6 no 0 10 0 0 0 0 1 +between a between b be bet betw BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 6 no 0 9 0 0 0 0 1 +oscillating between oscillating o os osc osci BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 6 . 1 9 0 0 0 0 1 +always means always a al alw alwa BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 6 no 0 9 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 4 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 11 , 1 10 0 0 0 0 0 +[Page 218] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 4 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 4 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 4 0 no 0 4 0 0 0 0 1 +satisfied by satisfied s sa sat sati BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 0 . 1 10 0 0 0 0 1 +time_access changes time_access t ti tim time BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 0 . 1 7 0 0 0 0 1 +10.7. Data 10.7. 1 10 10. 10.7 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 4 0 .. 2 10 0 0 0 0 1 +Some operating some S So Som Some BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 1 no 0 10 0 0 0 0 1 +to map to t to to to BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 1 ''. 3 9 0 0 0 0 1 +time the time t ti tim time BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 1 no 0 10 0 0 0 0 1 +block that block b bl blo bloc BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 4 1 , 1 9 0 0 0 0 1 +occurs and occurs o oc occ occu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 1 ( 1 9 0 0 0 0 1 +file, the file, f fi fil file BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 1 , 1 8 0 0 0 0 1 +application's address application's a ap app appl BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 1 '). 3 4 0 0 0 0 1 +As long as A As As As BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 2 - 1 9 0 0 0 0 1 +fault, the fault, f fa fau faul BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 2 , 1 9 0 0 0 0 1 +access and access a ac acc acce BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 2 (,,, 4 10 0 0 0 0 1 +change) will change) c ch cha chan BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 2 ).,, 4 9 0 0 0 0 1 +when page when w wh whe when BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 2 , 1 9 0 0 0 0 1 +updated on updated u up upd upda BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 2 ( 1 10 0 0 0 0 1 +of whether of o of of of BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 2 ). 2 9 0 0 0 0 1 +server MAY server s se ser serv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 2 no 0 10 0 0 0 0 1 +via memory-mapped via v vi via via BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 2 -/.: 4 7 0 0 0 0 1 +o If o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 4 5 no 0 10 0 0 0 0 1 +file that file f fi fil file BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 5 , 1 9 0 0 0 0 1 +to get to t to to to BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 5 no 0 9 0 0 0 0 1 +whether or whether w wh whe whet BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 5 . 1 9 0 0 0 0 1 +file is file f fi fil file BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 5 - 1 9 0 0 0 0 1 +values for values v va val valu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 5 no 0 9 0 0 0 0 1 +most up-to-date most m mo mos most BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 5 --., 4 9 0 0 0 0 1 +the negative the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 5 , 1 9 0 0 0 0 1 +OPTIONAL. OPTIONAL. optional. O OP OPT OPTI BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 4 5 . 1 1 0 0 0 0 1 +o If o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 4 7 -, 2 10 0 0 0 0 1 +instead is instead i in ins inst BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 7 - 1 9 0 0 0 0 1 +interface, the interface, i in int inte BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 7 , 1 8 0 0 0 0 1 +attribute. However, attribute. a at att attr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 7 .,, 3 9 0 0 0 0 1 +any process any a an any any BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 7 ., 2 9 0 0 0 0 1 +disadvantage with disadvantage d di dis disa BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 7 . 1 6 0 0 0 0 1 +o If o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 4 9 , 1 10 0 0 0 0 1 +that client that t th tha that BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 9 , 1 9 0 0 0 0 1 +set of set s se set set BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 9 no 0 8 0 0 0 0 1 +apply. So, apply. a ap app appl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 9 ., 2 8 0 0 0 0 1 +client has client c cl cli clie BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 9 , 1 9 0 0 0 0 1 +not necessarily not n no not not BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 9 .,' 3 9 0 0 0 0 1 +obligation is obligation o ob obl obli BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 9 no 0 9 0 0 0 0 1 +delegation was delegation d de del dele BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 9 , 1 9 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 4 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 11 , 1 10 0 0 0 0 0 +[Page 219] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 4 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 4 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 4 0 no 0 4 0 0 0 0 1 +between successive between b be bet betw BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 0 , 1 9 0 0 0 0 1 +that any that t th tha that BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 0 no 0 10 0 0 0 0 1 +again between again a ag aga agai BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 0 . 1 9 0 0 0 0 1 +nature of nature n na nat natu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 0 ', 2 9 0 0 0 0 1 +obligation may obligation o ob obl obli BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 0 . 1 8 0 0 0 0 1 +information in information i in inf info BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 0 -. 2 9 0 0 0 0 1 +o The o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 4 2 - 1 10 0 0 0 0 1 +file is file f fi fil file BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 2 ., 2 9 0 0 0 0 1 +page size page p pa pag page BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 4 2 . 1 5 0 0 0 0 1 +* Client * * * * * BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 2 *(). 4 10 0 0 0 0 1 +* Client * * * * * BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 3 *(). 4 10 0 0 0 0 1 +* Client * * * * * BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 3 *. 2 10 0 0 0 0 1 +* Client * * * * * BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 4 *. 2 10 0 0 0 0 1 +* Client * * * * * BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 4 *,, 3 10 0 0 0 0 1 +byte-range. byte-range. byte-range. b by byt byte BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 4 -. 2 1 0 0 0 0 1 +* Simultaneous * * * * * BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 4 *, 2 10 0 0 0 0 1 +its locked its i it its its BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 4 -. 2 3 0 0 0 0 1 +Here the here H He Her Here BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 5 no 0 9 0 0 0 0 1 +correct view correct c co cor corr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 5 ., 2 9 0 0 0 0 1 +virtual memory virtual v vi vir virt BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 5 no 0 9 0 0 0 0 1 +modified, not modified, m mo mod modi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 5 , 1 8 0 0 0 0 1 +respective lock respective r re res resp BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 5 -. 2 9 0 0 0 0 1 +for each for f fo for for BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 5 , 1 9 0 0 0 0 1 +server only server s se ser serv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 5 ., 2 9 0 0 0 0 1 +client A client c cl cli clie BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 5 , 1 10 0 0 0 0 1 +page, client page, p pa pag page BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 5 ,'. 3 4 0 0 0 0 1 +Moreover, if moreover, M Mo Mor More BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 8 ,, 2 10 0 0 0 0 1 +different problem. different d di dif diff BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 8 . 1 8 0 0 0 0 1 +instructions, the instructions, i in ins inst BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 8 ,- 2 9 0 0 0 0 1 +the entire the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 8 . 1 9 0 0 0 0 1 +to the to t to to to BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 8 ,. 2 9 0 0 0 0 1 +NFS4ERR_DEADLOCK error nfs4err_deadlock N NF NFS NFS4 BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 4 8 . 1 9 0 0 0 0 1 +If a if I If If If BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 10 -, 2 9 0 0 0 0 1 +problem with problem p pr pro prob BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 10 -, 2 10 0 0 0 0 1 +the client the t th the the BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 10 -. 2 8 0 0 0 0 1 +Given the given G Gi Giv Give BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 11 ,: 2 10 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 4 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 11 , 1 10 0 0 0 0 0 +[Page 220] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 4 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 4 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 4 0 no 0 4 0 0 0 0 1 +o Clients o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 4 0 no 0 10 0 0 0 0 1 +know there know k kn kno know BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 0 -. 2 4 0 0 0 0 1 +o Clients o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 4 0 - 1 10 0 0 0 0 1 +is memory-mapped. is i is is is BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 0 -. 2 2 0 0 0 0 1 +o A o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 4 1 no 0 9 0 0 0 0 1 +mandatory locking mandatory m ma man mand BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 1 /. 2 9 0 0 0 0 1 +the file the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 1 , 1 10 0 0 0 0 1 +further access further f fu fur furt BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 1 . 1 5 0 0 0 0 1 +10.8. Name 10.8. 1 10 10. 10.8 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 4 2 .. 2 10 0 0 0 0 1 +The NFSv4.1 the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 2 .(. 3 10 0 0 0 0 1 +below) is below) b be bel belo BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 2 ). 2 8 0 0 0 0 1 +implemented, it implemented, i im imp impl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 2 , 1 9 0 0 0 0 1 +availability issues availability a av ava avai BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 2 ., 2 9 0 0 0 0 1 +understand how understand u un und unde BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 2 no 0 10 0 0 0 0 1 +directory delegations. directory d di dir dire BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 2 . 1 9 0 0 0 0 1 +subsections. subsections. subsections. s su sub subs BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 2 . 1 1 0 0 0 0 1 +10.8.1. Name 10.8.1. 1 10 10. 10.8 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 4 4 ... 3 10 0 0 0 0 1 +The results the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 4 no 0 9 0 0 0 0 1 +the cost the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 4 . 1 9 0 0 0 0 1 +attribute caching, attribute a at att attr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 4 , 1 10 0 0 0 0 1 +caches. To caches. c ca cac cach BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 4 . 1 9 0 0 0 0 1 +the context the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 4 , 1 9 0 0 0 0 1 +maintained for maintained m ma mai main BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 4 no 0 10 0 0 0 0 1 +verifying that verifying v ve ver veri BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 4 no 0 9 0 0 0 0 1 +change operation change c ch cha chan BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 4 . 1 6 0 0 0 0 1 +When a when W Wh Whe When BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 7 no 0 9 0 0 0 0 1 +exist name exist e ex exi exis BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 7 , 1 9 0 0 0 0 1 +attributes for attributes a at att attr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 7 no 0 8 0 0 0 0 1 +modified. After modified. m mo mod modi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 7 ., 2 9 0 0 0 0 1 +expiration time expiration e ex exp expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 7 no 0 10 0 0 0 0 1 +to be to t to to to BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 7 . 1 8 0 0 0 0 1 +When a when W Wh Whe When BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 9 , 1 9 0 0 0 0 1 +determine whether determine d de det dete BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 9 no 0 9 0 0 0 0 1 +other clients. other o ot oth othe BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 9 . 1 8 0 0 0 0 1 +reported before reported r re rep repo BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 9 no 0 9 0 0 0 0 1 +change_info4 value change_info4 c ch cha chan BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 4 9 . 1 10 0 0 0 0 1 +communicate to communicate c co com comm BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 9 no 0 9 0 0 0 0 1 +atomically with atomically a at ato atom BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 9 . 1 9 0 0 0 0 1 +values are values v va val valu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 9 , 1 8 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 4 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 11 , 1 10 0 0 0 0 0 +[Page 221] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 4 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 4 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 4 0 no 0 4 0 0 0 0 1 +determining, given determining, d de det dete BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 0 ,, 2 10 0 0 0 0 1 +the directory the t th the the BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 0 . 1 3 0 0 0 0 1 +The simplest the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 0 no 0 9 0 0 0 0 1 +for the for f fo for for BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 0 . 1 10 0 0 0 0 1 +When this when W Wh Whe When BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 0 , 1 10 0 0 0 0 1 +the change the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 0 , 1 9 0 0 0 0 1 +after value after a af aft afte BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 0 no 0 10 0 0 0 0 1 +with the with w wi wit with BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 0 no 0 9 0 0 0 0 1 +directory. When directory. d di dir dire BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 0 ., 2 9 0 0 0 0 1 +client is client c cl cli clie BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 0 . 1 6 0 0 0 0 1 +When such when W Wh Whe When BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 2 , 1 9 0 0 0 0 1 +simultaneous outstanding simultaneous s si sim simu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 2 no 0 10 0 0 0 0 1 +from a from f fr fro from BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 2 , 1 9 0 0 0 0 1 +complicated. If complicated. c co com comp BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 2 . 1 9 0 0 0 0 1 +than they than t th tha than BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 2 , 1 9 0 0 0 0 1 +consistent with consistent c co con cons BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 2 . 1 9 0 0 0 0 1 +this appears this t th thi this BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 2 , 1 9 0 0 0 0 1 +all such all a al all all BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 2 , 1 9 0 0 0 0 1 +outstanding before outstanding o ou out outs BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 2 no 0 9 0 0 0 0 1 +chain such chain c ch cha chai BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 2 no 0 9 0 0 0 0 1 +after value after a af aft afte BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 2 , 1 10 0 0 0 0 1 +being the being b be bei bein BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 2 . 1 6 0 0 0 0 1 +In either in I In In In BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 4 6 , 1 10 0 0 0 0 1 +directory is directory d di dir dire BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 6 . 1 9 0 0 0 0 1 +indicates that indicates i in ind indi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 6 , 1 9 0 0 0 0 1 +cache associated cache c ca cac cach BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 6 no 0 9 0 0 0 0 1 +client. If client. c cl cli clie BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 6 ., 2 9 0 0 0 0 1 +can be can c ca can can BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 6 no 0 9 0 0 0 0 1 +the associated the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 6 .- 2 9 0 0 0 0 1 +value needs value v va val valu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 6 no 0 8 0 0 0 0 1 +comparisons. comparisons. comparisons. c co com comp BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 6 . 1 1 0 0 0 0 1 +As demonstrated as A As As As BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 8 , 1 10 0 0 0 0 1 +client revalidate client c cl cli clie BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 8 no 0 9 0 0 0 0 1 +of a of o of of of BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 8 . 1 9 0 0 0 0 1 +This requires this T Th Thi This BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 8 no 0 8 0 0 0 0 1 +directories when directories d di dir dire BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 8 no 0 9 0 0 0 0 1 +modified. For modified. m mo mod modi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 8 . 1 8 0 0 0 0 1 +appropriately and appropriately a ap app appr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 8 ,- 2 9 0 0 0 0 1 +post-operation change post-operation p po pos post BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 8 -. 2 9 0 0 0 0 1 +is unable is i is is is BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 8 no 0 9 0 0 0 0 1 +respect to respect r re res resp BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 8 , 1 9 0 0 0 0 1 +fact in fact f fa fac fact BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 8 . 1 9 0 0 0 0 1 +atomically reported, atomically a at ato atom BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 8 , 1 9 0 0 0 0 1 +have not have h ha hav have BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 8 . 1 4 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 4 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 11 , 1 10 0 0 0 0 0 +[Page 222] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 4 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 4 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 4 0 no 0 4 0 0 0 0 1 +10.8.2. Directory 10.8.2. 1 10 10. 10.8 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 4 0 ... 3 10 0 0 0 0 1 +The results the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 0 no 0 9 0 0 0 0 1 +READDIR operations. readdir R RE REA READ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 4 0 . 1 9 0 0 0 0 1 +caching, inconsistencies caching, c ca cac cach BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 0 ,. 2 10 0 0 0 0 1 +To mitigate to T To To To BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 0 , 1 9 0 0 0 0 1 +context of context c co con cont BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 0 , 1 9 0 0 0 0 1 +followed: followed: followed: f fo fol foll BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 0 : 1 1 0 0 0 0 1 +o Cached o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 4 2 no 0 10 0 0 0 0 1 +a single a a a a a BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 1 0 0 0 0 0 4 2 no 0 9 0 0 0 0 1 +directory contents. directory d di dir dire BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 2 . 1 9 0 0 0 0 1 +the first the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 2 no 0 9 0 0 0 0 1 +the cache. the t th the the BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 2 . 1 1 0 0 0 0 1 +o An o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 4 3 no 0 9 0 0 0 0 1 +time a time t ti tim time BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 3 no 0 10 0 0 0 0 1 +must revalidate must m mu mus must BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 3 . 1 5 0 0 0 0 1 +The revalidation the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 4 no 0 9 0 0 0 0 1 +name caching. name n na nam name BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 4 . 1 9 0 0 0 0 1 +question, checking question, q qu que ques BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 4 , 1 10 0 0 0 0 1 +is adequate. is i is is is BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 4 . 1 9 0 0 0 0 1 +these checkpoints. these t th the thes BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 4 ., 2 9 0 0 0 0 1 +client needs client c cl cli clie BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 4 no 0 9 0 0 0 0 1 +are other are a ar are are BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 4 . 1 9 0 0 0 0 1 +no other no n no no no BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 4 , 1 9 0 0 0 0 1 +its directory its i it its its BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 4 . 1 6 0 0 0 0 1 +As demonstrated as A As As As BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 7 , 1 9 0 0 0 0 1 +client revalidate client c cl cli clie BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 7 no 0 9 0 0 0 0 1 +attribute of attribute a at att attr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 7 . 1 10 0 0 0 0 1 +This requires this T Th Thi This BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 7 no 0 8 0 0 0 0 1 +directories when directories d di dir dire BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 7 no 0 9 0 0 0 0 1 +modified. For modified. m mo mod modi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 7 . 1 8 0 0 0 0 1 +appropriately and appropriately a ap app appr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 7 ,- 2 9 0 0 0 0 1 +post-operation change post-operation p po pos post BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 7 -. 2 9 0 0 0 0 1 +is unable is i is is is BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 7 no 0 9 0 0 0 0 1 +respect to respect r re res resp BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 7 , 1 9 0 0 0 0 1 +fact in fact f fa fac fact BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 7 . 1 9 0 0 0 0 1 +atomically reported, atomically a at ato atom BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 7 , 1 10 0 0 0 0 1 +have not have h ha hav have BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 7 . 1 4 0 0 0 0 1 +10.9. Directory 10.9. 1 10 10. 10.9 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 4 11 .. 2 10 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 4 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 11 , 1 10 0 0 0 0 0 +[Page 223] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 4 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 4 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 4 0 no 0 4 0 0 0 0 1 +10.9.1. Introduction 10.9.1. 1 10 10. 10.9 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 4 0 ... 3 10 0 0 0 0 1 +Directory caching directory D Di Dir Dire BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 0 .,, 3 10 0 0 0 0 1 +is similar is i is is is BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 0 . 1 9 0 0 0 0 1 +cache directory cache c ca cac cach BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 0 . 1 10 0 0 0 0 1 +At the at A At At At BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 0 , 1 10 0 0 0 0 1 +to see to t to to to BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 0 ., 2 9 0 0 0 0 1 +clients reduce clients c cl cli clie BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 0 no 0 9 0 0 0 0 1 +validate attributes. validate v va val vali BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 0 ., 2 9 0 0 0 0 1 +directories, such directories, d di dir dire BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 0 ,, 2 9 0 0 0 0 1 +attributes cached attributes a at att attr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 0 no 0 9 0 0 0 0 1 +performed without performed p pe per perf BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 0 . 1 9 0 0 0 0 1 +inode information inode i in ino inod BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 0 no 0 8 0 0 0 0 1 +Directory Name directory D Di Dir Dire BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 0 (), 3 9 0 0 0 0 1 +LOOKUP calls lookup L LO LOO LOOK BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 4 0 . 1 9 0 0 0 0 1 +This caching this T Th Thi This BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 4 no 0 9 0 0 0 0 1 +traffic in traffic t tr tra traf BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 4 ., 2 8 0 0 0 0 1 +environments where environments e en env envi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 4 no 0 10 0 0 0 0 1 +exist. In exist. e ex exi exis BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 4 ."", 4 10 0 0 0 0 1 +server in server s se ser serv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 4 no 0 9 0 0 0 0 1 +promptly detect promptly p pr pro prom BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 4 . 1 9 0 0 0 0 1 +high miss high h hi hig high BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 4 4 no 0 8 0 0 0 0 1 +environments. The environments. e en env envi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 4 . 1 9 0 0 0 0 1 +scalability and scalability s sc sca scal BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 4 - 1 9 0 0 0 0 1 +environments. Other environments. e en env envi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 4 . 1 9 0 0 0 0 1 +such as such s su suc such BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 4 no 0 9 0 0 0 0 1 +contents can contents c co con cont BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 4 - 1 8 0 0 0 0 1 +environments. environments. environments. e en env envi BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 4 . 1 2 0 0 0 0 1 +Delegation of delegation D De Del Dele BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 7 .. 2 9 0 0 0 0 1 +Directory delegations directory D Di Dir Dire BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 7 no 0 9 0 0 0 0 1 +with file with w wi wit with BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 7 . 1 8 0 0 0 0 1 +contents (in contents c co con cont BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 7 (-), 4 9 0 0 0 0 1 +the client the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 7 no 0 9 0 0 0 0 1 +contents of contents c co con cont BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 7 -, 2 10 0 0 0 0 1 +improving client improving i im imp impr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 7 . 1 9 0 0 0 0 1 +determining whether determining d de det dete BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 7 no 0 10 0 0 0 0 1 +when the when w wh whe when BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 7 no 0 9 0 0 0 0 1 +changes are changes c ch cha chan BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 4 7 . 1 4 0 0 0 0 1 +Directory delegations directory D Di Dir Dire BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 10 no 0 10 0 0 0 0 1 +be achieved be b be be be BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 10 , 1 9 0 0 0 0 1 +absence of absence a ab abs abse BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 10 .,- 3 10 0 0 0 0 1 +sufficient, asynchronous sufficient, s su suf suff BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 10 , 1 9 0 0 0 0 1 +benefits for benefits b be ben bene BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 4 10 ,, 2 10 0 0 0 0 1 +operating conditions operating o op ope oper BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 10 -/ 2 9 0 0 0 0 1 +directories. directories. directories. d di dir dire BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 10 . 1 1 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 4 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 11 , 1 10 0 0 0 0 0 +[Page 224] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 4 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 4 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 4 0 no 0 4 0 0 0 0 1 +10.9.2. Directory 10.9.2. 1 10 10. 10.9 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 4 0 ... 3 10 0 0 0 0 1 +NFSv4.1 introduces nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 4 0 .(.) 4 10 0 0 0 0 1 +to allow to t to to to BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 0 . 1 8 0 0 0 0 1 +delegation covers delegation d de del dele BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 0 no 0 9 0 0 0 0 1 +directory. If directory. d di dir dire BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 0 ., 2 8 0 0 0 0 1 +recalled synchronously. recalled r re rec reca BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 0 . 1 9 0 0 0 0 1 +to wait to t to to to BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 0 . 1 9 0 0 0 0 1 +entry attributes entry e en ent entr BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 0 . 1 9 0 0 0 0 1 +In addition in I In In In BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 4 2 , 1 9 0 0 0 0 1 +notifications for notifications n no not noti BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 2 . 1 9 0 0 0 0 1 +the directory's the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 2 '/. 3 9 0 0 0 0 1 +notification for notification n no not noti BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 2 , 1 9 0 0 0 0 1 +when that when w wh whe when BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 2 . 1 9 0 0 0 0 1 +recalled for recalled r re rec reca BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 2 . 1 9 0 0 0 0 1 +provide a provide p pr pro prov BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 2 no 0 9 0 0 0 0 1 +changing enough changing c ch cha chan BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 2 no 0 10 0 0 0 0 1 +trying to trying t tr try tryi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 2 . 1 8 0 0 0 0 1 +absence of absence a ab abs abse BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 2 , 1 9 0 0 0 0 1 +has to has h ha has has BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 2 ; 1 9 0 0 0 0 1 +for very for f fo for for BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 2 . 1 4 0 0 0 0 1 +The delegation the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 5 - 1 9 0 0 0 0 1 +the directory the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 5 . 1 10 0 0 0 0 1 +the directory the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 5 no 0 9 0 0 0 0 1 +has knowledge has h ha has has BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 5 .' 2 8 0 0 0 0 1 +namespace synchronized namespace n na nam name BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 5 , 1 9 0 0 0 0 1 +delegation-holding client delegation-holding d de del dele BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 5 -() 3 9 0 0 0 0 1 +of the of o of of of BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 5 '- 2 9 0 0 0 0 1 +operations. This operations. o op ope oper BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 5 . 1 8 0 0 0 0 1 +subsequent GETATTR subsequent s su sub subs BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 5 . 1 9 0 0 0 0 1 +client is client c cl cli clie BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 5 no 0 10 0 0 0 0 1 +the directory the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 5 (.., 4 9 0 0 0 0 1 +session associated session s se ses sess BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 5 ), 2 9 0 0 0 0 1 +delegation will delegation d de del dele BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 5 . 1 8 0 0 0 0 1 +delegation on delegation d de del dele BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 5 , 1 10 0 0 0 0 1 +directory, the directory, d di dir dire BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 5 , 1 9 0 0 0 0 1 +clients, unless clients, c cl cli clie BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 5 , 1 9 0 0 0 0 1 +that sort that t th tha that BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 5 . 1 3 0 0 0 0 1 +Delegations can delegations D De Del Dele BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 10 ., 2 9 0 0 0 0 1 +server will server s se ser serv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 10 no 0 10 0 0 0 0 1 +that is that t th tha that BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 10 , 1 9 0 0 0 0 1 +changes and changes c ch cha chan BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 4 10 . 1 9 0 0 0 0 1 +removes the removes r re rem remo BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 10 , 1 9 0 0 0 0 1 +server will server s se ser serv BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 10 . 1 5 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 4 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 11 , 1 10 0 0 0 0 0 +[Page 225] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 4 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 4 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 4 0 no 0 4 0 0 0 0 1 +10.9.3. Attributes 10.9.3. 1 10 10. 10.9 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 4 0 ... 3 10 0 0 0 0 1 +See Section see S Se See See BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 4 0 . 1 10 0 0 0 0 1 +directory notifications. directory d di dir dire BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 0 . 1 3 0 0 0 0 1 +10.9.4. Directory 10.9.4. 1 10 10. 10.9 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 4 1 ... 3 10 0 0 0 0 1 +The server the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 1 no 0 10 0 0 0 0 1 +to the to t to to to BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 1 . 1 9 0 0 0 0 1 +recalling file recalling r re rec reca BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 1 . 1 9 0 0 0 0 1 +when the when w wh whe when BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 1 no 0 9 0 0 0 0 1 +notification. However, notification. n no not noti BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 1 ., 2 9 0 0 0 0 1 +attributes of attributes a at att attr BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 1 . 1 7 0 0 0 0 1 +If the if I If If If BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 3 no 0 9 0 0 0 0 1 +is causing is i is is is BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 3 , 1 9 0 0 0 0 1 +not hand not n no not not BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 3 / 1 9 0 0 0 0 1 +already granted. already a al alr alre BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 3 . 1 10 0 0 0 0 1 +a delegation a a a a a BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 1 0 0 0 0 0 4 3 , 1 10 0 0 0 0 1 +delegations. delegations. delegations. d de del dele BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 3 . 1 1 0 0 0 0 1 +The implementation the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 5 no 0 9 0 0 0 0 1 +situations in situations s si sit situ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 5 no 0 9 0 0 0 0 1 +required under required r re req requ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 5 ., 2 10 0 0 0 0 1 +set of set s se set set BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 5 .. 2 7 0 0 0 0 1 +o For o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 4 6 ,... 4 10 0 0 0 0 1 +o For o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 4 7 ,... 4 10 0 0 0 0 1 +o For o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 4 7 ,... 4 10 0 0 0 0 1 +o For o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 4 7 ,... 4 10 0 0 0 0 1 +o For o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 4 8 ,... 4 10 0 0 0 0 1 +o For o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 4 8 ,... 4 10 0 0 0 0 1 +10.9.5. Directory 10.9.5. 1 10 10. 10.9 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 4 8 ... 3 10 0 0 0 0 1 +Recovery from recovery R Re Rec Reco BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 8 no 0 10 0 0 0 0 1 +two main two t tw two two BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 8 : 1 9 0 0 0 0 1 +guarantees with guarantees g gu gua guar BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 8 no 0 9 0 0 0 0 1 +cached at cached c ca cac cach BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 8 . 1 9 0 0 0 0 1 +protected by protected p pr pro prot BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 8 ., 2 9 0 0 0 0 1 +no provision no n no no no BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 8 no 0 9 0 0 0 0 1 +event of event e ev eve even BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 8 . 1 9 0 0 0 0 1 +directory delegation directory d di dir dire BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 8 . 1 9 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 4 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 11 , 1 10 0 0 0 0 0 +[Page 226] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 4 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 4 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 4 0 no 0 4 0 0 0 0 1 +11. Multi-Server 11. 1 11 11. 11. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 4 0 .- 2 10 0 0 0 0 1 +NFSv4.1 supports nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 4 0 . 1 9 0 0 0 0 1 +the boundaries the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 0 . 1 9 0 0 0 0 1 +servers support servers s se ser serv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 0 -. 2 9 0 0 0 0 1 +such multi-server such s su suc such BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 0 -, 2 9 0 0 0 0 1 +purposes, single-server purposes, p pu pur purp BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 0 ,-. 3 9 0 0 0 0 1 +multi-server namespaces multi-server m mu mul mult BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 0 -, 2 9 0 0 0 0 1 +file system's file f fi fil file BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 0 '( 2 9 0 0 0 0 1 +changing) logistical changing) c ch cha chan BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 0 ) 1 10 0 0 0 0 1 +particular file particular p pa par part BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 0 no 0 9 0 0 0 0 1 +single network single s si sin sing BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 0 . 1 10 0 0 0 0 1 +11.1. Terminology 11.1. 1 11 11. 11.1 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 4 3 .. 2 10 0 0 0 0 1 +In this in I In In In BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 4 3 (.), 4 9 0 0 0 0 1 +"client ID" "client " "c "cl "cli BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 3 ""- 3 10 0 0 0 0 1 +by the by b by by by BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 3 () 2 9 0 0 0 0 1 +client uses client c cl cli clie BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 3 ( 1 8 0 0 0 0 1 +nfs_client_id4 or nfs_client_id4 n nf nfs nfs_ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 4 3 ..). 4 9 0 0 0 0 1 +The opaque the T Th The The BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 3 no 0 9 0 0 0 0 1 +"client id "client " "c "cl "cli BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 3 "". 3 2 0 0 0 0 1 +11.1.1. Terminology 11.1.1. 1 11 11. 11.1 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 4 5 ... 3 10 0 0 0 0 1 +It is it I It It It BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 6 no 0 9 0 0 0 0 1 +trunking detection trunking t tr tru trun BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 6 . 1 9 0 0 0 0 1 +present are present p pr pre pres BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 6 , 1 10 0 0 0 0 1 +focus on focus f fo foc focu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 6 .. 2 7 0 0 0 0 1 +o Trunking o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 4 7 no 0 10 0 0 0 0 1 +network addresses network n ne net netw BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 4 7 . 1 8 0 0 0 0 1 +means available means m me mea mean BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 4 7 no 0 9 0 0 0 0 1 +version, and, version, v ve ver vers BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 7 ,,,. 4 8 0 0 0 0 1 +In the in I In In In BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 4 8 ., 2 10 0 0 0 0 1 +of trunking of o of of of BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 8 no 0 9 0 0 0 0 1 +available to available a av ava avai BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 8 . 1 9 0 0 0 0 1 +same server same s sa sam same BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 8 - 1 9 0 0 0 0 1 +used together used u us use used BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 8 . 1 6 0 0 0 0 1 +o Trunking o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 4 9 no 0 9 0 0 0 0 1 +network address network n ne net netw BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 4 9 no 0 10 0 0 0 0 1 +the same the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 9 ., 2 9 0 0 0 0 1 +facility by facility f fa fac faci BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 9 no 0 9 0 0 0 0 1 +addresses are addresses a ad add addr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 9 no 0 9 0 0 0 0 1 +trunking detection trunking t tr tru trun BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 9 . 1 7 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 4 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 11 , 1 10 0 0 0 0 0 +[Page 227] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 4 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 4 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 4 0 no 0 4 0 0 0 0 1 +Despite the despite D De Des Desp BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 0 no 0 8 0 0 0 0 1 +description of description d de des desc BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 0 [], 3 10 0 0 0 0 1 +it necessary it i it it it BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 0 . 1 8 0 0 0 0 1 +The combination the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 1 no 0 8 0 0 0 0 1 +connection type connection c co con conn BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 1 no 0 9 0 0 0 0 1 +"server endpoint". "server " "s "se "ser BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 1 "". 3 9 0 0 0 0 1 +result in result r re res resu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 1 , 1 10 0 0 0 0 1 +multiple connections multiple m mu mul mult BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 1 no 0 10 0 0 0 0 1 +of the of o of of of BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 1 . 1 7 0 0 0 0 1 +Two network two T Tw Two Two BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 2 no 0 9 0 0 0 0 1 +server-trunkable. Two server-trunkable. s se ser serv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 2 -. 2 10 0 0 0 0 1 +trunking, as trunking, t tr tru trun BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 2 ,... 4 6 0 0 0 0 1 +Two network two T Tw Two Two BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 3 no 0 9 0 0 0 0 1 +addresses can addresses a ad add addr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 3 no 0 10 0 0 0 0 1 +to as to t to to to BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 3 -.- 3 9 0 0 0 0 1 +trunkable without trunkable t tr tru trun BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 3 - 1 8 0 0 0 0 1 +connections of connections c co con conn BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 3 no 0 9 0 0 0 0 1 +network address network n ne net netw BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 4 3 no 0 9 0 0 0 0 1 +they are they t th the they BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 3 -, 2 9 0 0 0 0 1 +type, as type, t ty typ type BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 3 ,.., 4 10 0 0 0 0 1 +same file same s sa sam same BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 3 no 0 9 0 0 0 0 1 +network addresses network n ne net netw BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 4 3 no 0 9 0 0 0 0 1 +server and server s se ser serv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 3 - 1 9 0 0 0 0 1 +trunking to trunking t tr tru trun BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 3 . 1 3 0 0 0 0 1 +11.1.2. Terminology 11.1.2. 1 11 11. 11.1 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 4 7 ... 3 10 0 0 0 0 1 +Regarding terminology regarding R Re Reg Rega BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 7 - 1 10 0 0 0 0 1 +namespaces out namespaces n na nam name BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 7 -: 2 8 0 0 0 0 1 +o Each o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 4 7 no 0 9 0 0 0 0 1 +accessed by accessed a ac acc acce BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 7 ., 2 9 0 0 0 0 1 +each file each e ea eac each BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 7 - 1 9 0 0 0 0 1 +server, although server, s se ser serv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 7 ,- 2 9 0 0 0 0 1 +only a only o on onl only BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 7 . 1 10 0 0 0 0 1 +of the of o of of of BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 7 ', 2 9 0 0 0 0 1 +system instance system s sy sys syst BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 7 -. 2 8 0 0 0 0 1 +o The o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 4 10 no 0 10 0 0 0 0 1 +constitutes that constitutes c co con cons BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 10 '. 2 7 0 0 0 0 1 +o In o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 4 10 , 1 10 0 0 0 0 1 +its local its i it its its BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 10 no 0 9 0 0 0 0 1 +that provide that t th tha that BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 10 ., 2 9 0 0 0 0 1 +which allow which w wh whi whic BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 10 - 1 8 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 4 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 11 , 1 10 0 0 0 0 0 +[Page 228] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 4 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 4 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 4 0 no 0 4 0 0 0 0 1 +described in described d de des desc BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 0 no 0 9 0 0 0 0 1 +(described in (described ( (d (de (des BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 0 (..),( 6 8 0 0 0 0 1 +Section 11.5.5), section S Se Sec Sect BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 0 ..),(..). 9 10 0 0 0 0 1 +o A o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 4 1 '- 2 10 0 0 0 0 1 +file system file f fi fil file BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 1 . 1 9 0 0 0 0 1 +All such all A Al All All BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 1 . 1 8 0 0 0 0 1 +o When o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 4 2 '-, 3 10 0 0 0 0 1 +is no is i is is is BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 2 ,"". 4 9 0 0 0 0 1 +In such in I In In In BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 4 2 , 1 9 0 0 0 0 1 +servers. servers. servers. s se ser serv BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 2 . 1 1 0 0 0 0 1 +Regarding terminology regarding R Re Reg Rega BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 3 no 0 10 0 0 0 0 1 +discovery and discovery d di dis disc BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 3 -: 2 8 0 0 0 0 1 +o File o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 4 3 no 0 10 0 0 0 0 1 +fs_locations_info attributes. fs_locations_info f fs fs_ fs_l BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 3 . 1 4 0 0 0 0 1 +o File o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 4 3 no 0 9 0 0 0 0 1 +locations within locations l lo loc loca BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 3 . 1 9 0 0 0 0 1 +entry specifies entry e en ent entr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 3 , 1 9 0 0 0 0 1 +address, and address, a ad add addr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 3 ,, 2 10 0 0 0 0 1 +system within system s sy sys syst BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 3 '. 2 8 0 0 0 0 1 +location entry location l lo loc loca BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 3 no 0 9 0 0 0 0 1 +client may client c cl cli clie BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 3 . 1 9 0 0 0 0 1 +because a because b be bec beca BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 3 no 0 9 0 0 0 0 1 +because multiple because b be bec beca BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 3 no 0 9 0 0 0 0 1 +a single a a a a a BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 1 0 0 0 0 0 4 3 ., 2 8 0 0 0 0 1 +provide a provide p pr pro prov BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 3 . 1 9 0 0 0 0 1 +the location the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 3 no 0 10 0 0 0 0 1 +attribute used, attribute a at att attr BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 3 ,.. 3 6 0 0 0 0 1 +o File o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 4 7 no 0 9 0 0 0 0 1 +and each and a an and and BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 7 , 1 10 0 0 0 0 1 +a network a a a a a BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 1 0 0 0 0 0 4 7 ' 1 8 0 0 0 0 1 +namespace. Such namespace. n na nam name BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 7 . 1 9 0 0 0 0 1 +system location system s sy sys syst BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 7 , 1 9 0 0 0 0 1 +element derives element e el ele elem BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 7 . 1 8 0 0 0 0 1 +location entry location l lo loc loca BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 7 no 0 9 0 0 0 0 1 +corresponding location corresponding c co cor corr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 7 . 1 9 0 0 0 0 1 +contain a contain c co con cont BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 7 , 1 9 0 0 0 0 1 +or more or o or or or BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 7 . 1 9 0 0 0 0 1 +location address location l lo loc loca BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 7 no 0 9 0 0 0 0 1 +server and server s se ser serv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 7 no 0 9 0 0 0 0 1 +within the within w wi wit with BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 7 '. 2 9 0 0 0 0 1 +the server the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 7 - 1 10 0 0 0 0 1 +at the at a at at at BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 7 . 1 3 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 4 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 11 , 1 10 0 0 0 0 0 +[Page 229] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 4 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 4 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 4 0 no 0 4 0 0 0 0 1 +o Two o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 4 0 - 1 10 0 0 0 0 1 +if they if i if if if BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 0 no 0 9 0 0 0 0 1 +such that such s su suc such BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 0 -. 2 9 0 0 0 0 1 +corresponding network corresponding c co cor corr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 0 , 1 9 0 0 0 0 1 +able to able a ab abl able BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 0 , 1 8 0 0 0 0 1 +session trunking session s se ses sess BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 0 -. 2 8 0 0 0 0 1 +o Two o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 4 1 - 1 10 0 0 0 0 1 +if they if i if if if BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 1 no 0 9 0 0 0 0 1 +such that such s su suc such BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 1 -. 2 9 0 0 0 0 1 +corresponding network corresponding c co cor corr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 1 , 1 9 0 0 0 0 1 +able to able a ab abl able BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 1 . 1 8 0 0 0 0 1 +Discussion of discussion D Di Dis Disc BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 3 "" 2 9 0 0 0 0 1 +term was term t te ter term BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 3 [], 3 9 0 0 0 0 1 +this document. this t th thi this BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 3 .,[] 4 9 0 0 0 0 1 +single network single s si sin sing BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 3 , 1 9 0 0 0 0 1 +network access network n ne net netw BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 4 3 - 1 9 0 0 0 0 1 +and the and a an and and BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 3 - 1 10 0 0 0 0 1 +single replica single s si sin sing BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 3 . 1 7 0 0 0 0 1 +Each set each E Ea Eac Each BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 5 - 1 9 0 0 0 0 1 +available network available a av ava avai BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 5 . 1 9 0 0 0 0 1 +there are there t th the ther BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 5 , 1 10 0 0 0 0 1 +data, these data, d da dat data BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 5 ,. 2 9 0 0 0 0 1 +Logically, such logically, L Lo Log Logi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 5 ,, 2 9 0 0 0 0 1 +use and use u us use use BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 5 ., 2 9 0 0 0 0 1 +documents, the documents, d do doc docu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 5 ,"" 3 9 0 0 0 0 1 +use, despite use, u us use use, BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 5 , 1 9 0 0 0 0 1 +symmetric. symmetric. symmetric. s sy sym symm BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 5 . 1 1 0 0 0 0 1 +11.2. File 11.2. 1 11 11. 11.2 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 4 7 .. 2 10 0 0 0 0 1 +NFSv4.1 contains nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 4 8 .(.., 5 10 0 0 0 0 1 +at what at a at at at BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 8 ) 1 9 0 0 0 0 1 +may be may m ma may may BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 1 0 0 4 8 ., 2 9 0 0 0 0 1 +server can server s se ser serv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 8 no 0 9 0 0 0 0 1 +system on system s sy sys syst BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 8 . 1 8 0 0 0 0 1 +location entries location l lo loc loca BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 8 ( 1 9 0 0 0 0 1 +name representing name n na nam name BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 8 no 0 9 0 0 0 0 1 +address) together address) a ad add addr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 8 ) 1 9 0 0 0 0 1 +associated single-server associated a as ass asso BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 8 -. 2 5 0 0 0 0 1 +The fs_locations_info the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 10 no 0 10 0 0 0 0 1 +one or one o on one one BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 10 no 0 8 0 0 0 0 1 +corresponding to corresponding c co cor corr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 10 . 1 9 0 0 0 0 1 +provides to provides p pr pro prov BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 10 , 1 10 0 0 0 0 1 +instance locations, instance i in ins inst BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 10 ,: 2 8 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 4 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 11 , 1 10 0 0 0 0 0 +[Page 230] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 4 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 4 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 4 0 no 0 4 0 0 0 0 1 +o Information o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 4 0 no 0 8 0 0 0 0 1 +instances provided instances i in ins inst BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 0 (..,,,, 7 10 0 0 0 0 1 +etc.). etc.). etc.). e et etc etc. BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 0 .). 3 1 0 0 0 0 1 +o Information o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 4 1 no 0 10 0 0 0 0 1 +transition as transition t tr tra tran BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 1 , 1 10 0 0 0 0 1 +and if and a an and and BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 1 . 1 5 0 0 0 0 1 +o Information o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 4 1 no 0 10 0 0 0 0 1 +connection type connection c co con conn BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 1 . 1 9 0 0 0 0 1 +Within the within W Wi Wit With BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 2 , 1 9 0 0 0 0 1 +entry corresponds entry e en ent entr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 2 no 0 10 0 0 0 0 1 +field designating field f fi fie fiel BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 4 2 , 1 9 0 0 0 0 1 +server's pseudo-fs server's s se ser serv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 2 '- 2 10 0 0 0 0 1 +fs_locations_item4. fs_locations_item4. fs_locations_item4. f fs fs_ fs_l BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 4 2 . 1 2 0 0 0 0 1 +The fs_locations the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 3 . 1 9 0 0 0 0 1 +NFSv4.1. This nfsv4.1. N NF NFS NFSv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 4 3 .. 2 10 0 0 0 0 1 +locations where locations l lo loc loca BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 3 no 0 10 0 0 0 0 1 +found. Servers found. f fo fou foun BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 3 . 1 8 0 0 0 0 1 +fs_locations_info is fs_locations_info f fs fs_ fs_l BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 3 , 1 9 0 0 0 0 1 +is preferable, is i is is is BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 3 ,. 2 6 0 0 0 0 1 +Within the within W Wi Wit With BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 5 , 1 10 0 0 0 0 1 +system location system s sy sys syst BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 5 no 0 9 0 0 0 0 1 +and the and a an and and BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 5 no 0 9 0 0 0 0 1 +server's pseudo-fs. server's s se ser serv BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 5 '-. 3 2 0 0 0 0 1 +11.3. File 11.3. 1 11 11. 11.3 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 4 6 .. 2 10 0 0 0 0 1 +A given a A A A A BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 1 0 0 0 0 0 4 6 .( 2 8 0 0 0 0 1 +necessarily a necessarily n ne nec nece BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 6 -) 2 9 0 0 0 0 1 +system instance system s sy sys syst BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 6 ( 1 10 0 0 0 0 1 +fs_locations_info attribute). fs_locations_info f fs fs_ fs_l BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 6 ). 2 9 0 0 0 0 1 +file system file f fi fil file BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 6 , 1 8 0 0 0 0 1 +operations (e.g., operations o op ope oper BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 4 6 (..,)., 7 9 0 0 0 0 1 +be "present" be b be be be BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 6 "", 3 9 0 0 0 0 1 +typically use typically t ty typ typi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 6 , 1 10 0 0 0 0 1 +the location-related the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 6 - 1 9 0 0 0 0 1 +location is location l lo loc loca BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 6 . 1 4 0 0 0 0 1 +When there when W Wh Whe When BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 9 no 0 9 0 0 0 0 1 +question, the question, q qu que ques BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 9 ,"". 4 9 0 0 0 0 1 +system contains system s sy sys syst BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 9 . 1 9 0 0 0 0 1 +reference to reference r re ref refe BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 9 , 1 10 0 0 0 0 1 +determining alternate determining d de det dete BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 9 ,, 2 8 0 0 0 0 1 +NFS4ERR_MOVED. Note nfs4err_moved. N NF NFS NFS4 BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 4 9 . 1 8 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 4 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 11 , 1 10 0 0 0 0 0 +[Page 231] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 4 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 4 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 4 0 no 0 4 0 0 0 0 1 +NFS4ERR_MOVED, it nfs4err_moved, N NF NFS NFS4 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 4 0 , 1 10 0 0 0 0 1 +support the support s su sup supp BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 4 0 . 1 8 0 0 0 0 1 +While the while W Wh Whi Whil BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 0 no 0 9 0 0 0 0 1 +that once that t th tha that BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 0 ,, 2 10 0 0 0 0 1 +one possibility. one o on one one BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 0 . 1 9 0 0 0 0 1 +absent with absent a ab abs abse BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 0 () 2 9 0 0 0 0 1 +attributes being attributes a at att attr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 0 . 1 8 0 0 0 0 1 +reflects an reflects r re ref refl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 0 ,, 2 9 0 0 0 0 1 +this error this t th thi this BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 0 no 0 9 0 0 0 0 1 +absent, whether absent, a ab abs abse BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 0 ,. 2 5 0 0 0 0 1 +Except in except E Ex Exc Exce BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 3 -( 2 9 0 0 0 0 1 +later), when later), l la lat late BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 3 ), 2 9 0 0 0 0 1 +within an within w wi wit with BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 3 , 1 10 0 0 0 0 1 +error NFS4ERR_MOVED error e er err erro BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 3 , 1 9 0 0 0 0 1 +absent on absent a ab abs abse BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 3 . 1 4 0 0 0 0 1 +Because a because B Be Bec Beca BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 5 no 0 10 0 0 0 0 1 +absent file absent a ab abs abse BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 5 , 1 9 0 0 0 0 1 +be transferred be b be be be BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 5 . 1 9 0 0 0 0 1 +within an within w wi wit with BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 5 , 1 10 0 0 0 0 1 +the file the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 5 , 1 10 0 0 0 0 1 +subsequently. subsequently. subsequently. s su sub subs BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 5 . 1 2 0 0 0 0 1 +It should it I It It It BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 7 no 0 10 0 0 0 0 1 +being within being b be bei bein BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 7 no 0 9 0 0 0 0 1 +operation, operations operation, o op ope oper BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 7 , 1 9 0 0 0 0 1 +is within is i is is is BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 7 . 1 9 0 0 0 0 1 +allows such allows a al all allo BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 7 -- 2 9 0 0 0 0 1 +used to used u us use used BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 7 , 1 9 0 0 0 0 1 +information, as information, i in inf info BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 7 ,. 2 4 0 0 0 0 1 +The RECOMMENDED the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 9 no 0 10 0 0 0 0 1 +interrogate the interrogate i in int inte BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 9 /. 2 9 0 0 0 0 1 +11.4. Getting 11.4. 1 11 11. 11.4 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 4 9 .. 2 10 0 0 0 0 1 +When a when W Wh Whe When BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 10 ,, 2 9 0 0 0 0 1 +it is it i it it it BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 10 no 0 9 0 0 0 0 1 +attributes that attributes a at att attr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 10 , 1 9 0 0 0 0 1 +information about information i in inf info BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 10 : 1 10 0 0 0 0 1 +fs_locations and fs_locations f fs fs_ fs_l BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 10 . 1 5 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 4 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 11 , 1 10 0 0 0 0 0 +[Page 232] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 4 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 4 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 4 0 no 0 4 0 0 0 0 1 +11.4.1. GETATTR 11.4.1. 1 11 11. 11.4 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 4 0 ... 3 10 0 0 0 0 1 +As mentioned as A As As As BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 0 , 1 8 0 0 0 0 1 +attributes may attributes a at att attr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 0 no 0 9 0 0 0 0 1 +system. This system. s sy sys syst BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 0 . 1 9 0 0 0 0 1 +at least at a at at at BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 0 no 0 10 0 0 0 0 1 +a result a a a a a BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 1 0 0 0 0 0 4 0 :, 2 8 0 0 0 0 1 +fs_locations_info, or fs_locations_info, f fs fs_ fs_l BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 0 ,. 2 9 0 0 0 0 1 +requested, GETATTR requested, r re req requ BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 0 ,. 2 8 0 0 0 0 1 +When a when W Wh Whe When BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 2 , 1 10 0 0 0 0 1 +attributes is attributes a at att attr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 2 ., 2 9 0 0 0 0 1 +are normally are a ar are are BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 2 , 1 9 0 0 0 0 1 +system. In system. s sy sys syst BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 2 .(, 3 9 0 0 0 0 1 +fs_locations_info, fs_status), fs_locations_info, f fs fs_ fs_l BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 2 ,), 3 9 0 0 0 0 1 +available on available a av ava avai BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 2 . 1 8 0 0 0 0 1 +attributes, they attributes, a at att attr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 2 , 1 10 0 0 0 0 1 +they are they t th the they BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 2 . 1 6 0 0 0 0 1 +change_policy: This change_policy: c ch cha chan BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 4 : 1 10 0 0 0 0 1 +can be can c ca can can BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 4 no 0 8 0 0 0 0 1 +location-related attributes location-related l lo loc loca BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 4 -. 2 5 0 0 0 0 1 +fsid: This fsid: f fs fsi fsid BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 5 : 1 9 0 0 0 0 1 +determine file determine d de det dete BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 5 ,,, 3 9 0 0 0 0 1 +boundary between boundary b bo bou boun BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 5 . 1 10 0 0 0 0 1 +be different be b be be be BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 5 no 0 9 0 0 0 0 1 +have no have h ha hav have BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 5 no 0 8 0 0 0 0 1 +destination to destination d de des dest BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 5 . 1 7 0 0 0 0 1 +mounted_on_fileid: For mounted_on_fileid: m mo mou moun BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 7 :, 2 10 0 0 0 0 1 +this attribute this t th thi this BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 7 . 1 9 0 0 0 0 1 +the present the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 7 , 1 8 0 0 0 0 1 +reference the reference r re ref refe BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 7 . 1 9 0 0 0 0 1 +Other attributes other O Ot Oth Othe BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 8 no 0 8 0 0 0 0 1 +systems, even systems, s sy sys syst BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 8 ,. 2 10 0 0 0 0 1 +not assume not n no not not BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 8 no 0 9 0 0 0 0 1 +gratuitously providing gratuitously g gr gra grat BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 8 . 1 6 0 0 0 0 1 +When a when W Wh Whe When BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 9 no 0 8 0 0 0 0 1 +attributes fs_locations, attributes a at att attr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 9 ,,, 3 9 0 0 0 0 1 +the bit the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 9 , 1 10 0 0 0 0 1 +not return not n no not not BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 9 , 1 8 0 0 0 0 1 +attributes supported attributes a at att attr BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 9 . 1 5 0 0 0 0 1 +Handling of handling H Ha Han Hand BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 11 / 1 9 0 0 0 0 1 +attribute mask attribute a at att attr BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 11 ,, 2 10 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 4 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 11 , 1 10 0 0 0 0 0 +[Page 233] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 4 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 4 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 4 0 no 0 4 0 0 0 0 1 +fs_status, the fs_status, f fs fs_ fs_s BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 0 ,. 2 10 0 0 0 0 1 +any appearance any a an any any BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 0 no 0 10 0 0 0 0 1 +for an for f fo for for BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 0 ( 1 9 0 0 0 0 1 +normally REQUIRED normally n no nor norm BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 0 ) 1 9 0 0 0 0 1 +result. result. result. r re res resu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 0 . 1 1 0 0 0 0 1 +11.4.2. READDIR 11.4.2. 1 11 11. 11.4 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 4 1 ... 3 10 0 0 0 0 1 +A READDIR a A A A A BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 1 0 0 0 0 0 4 1 no 0 9 0 0 0 0 1 +file system file f fi fil file BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 1 ,, 2 10 0 0 0 0 1 +case of case c ca cas case BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 4 1 ,. 2 8 0 0 0 0 1 +Attributes for attributes A At Att Attr BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 3 no 0 10 0 0 0 0 1 +a directory a a a a a BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 1 0 0 0 0 0 4 3 , 1 9 0 0 0 0 1 +the root the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 3 . 1 9 0 0 0 0 1 +case, the case, c ca cas case BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 3 ,: 2 4 0 0 0 0 1 +o If o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 4 4 no 0 10 0 0 0 0 1 +fs_locations, fs_locations_info, fs_locations, f fs fs_ fs_l BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 4 ,,, 3 10 0 0 0 0 1 +attributes proceeds attributes a at att attr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 4 no 0 10 0 0 0 0 1 +returned, even returned, r re ret retu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 4 ,. 2 9 0 0 0 0 1 +o If o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 4 5 no 0 9 0 0 0 0 1 +attributes fs_locations, attributes a at att attr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 5 ,,, 3 9 0 0 0 0 1 +the rdattr_error the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 5 , 1 9 0 0 0 0 1 +the root the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 5 no 0 10 0 0 0 0 1 +value of value v va val valu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 5 . 1 5 0 0 0 0 1 +o If o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 4 6 no 0 9 0 0 0 0 1 +attributes fs_locations, attributes a at att attr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 6 ,,, 3 9 0 0 0 0 1 +rdattr_error, then rdattr_error, r rd rda rdat BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 6 , 1 10 0 0 0 0 1 +system within system s sy sys syst BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 6 no 0 9 0 0 0 0 1 +with an with w wi wit with BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 6 . 1 4 0 0 0 0 1 +o The o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 4 8 ' 1 9 0 0 0 0 1 +absence, even absence, a ab abs abse BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 8 ,, 2 10 0 0 0 0 1 +any error any a an any any BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 8 . 1 10 0 0 0 0 1 +directory of directory d di dir dire BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 8 no 0 8 0 0 0 0 1 +restricted to restricted r re res rest BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 8 . 1 6 0 0 0 0 1 +11.5. Uses 11.5. 1 11 11. 11.5 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 4 9 .. 2 10 0 0 0 0 1 +The file the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 10 (.. 3 9 0 0 0 0 1 +fs_locations_info), together fs_locations_info), f fs fs_ fs_l BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 10 ), 2 10 0 0 0 0 1 +systems, provide systems, s sy sys syst BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 10 , 1 9 0 0 0 0 1 +reliable, manageable, reliable, r re rel reli BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 10 ,,. 3 7 0 0 0 0 1 +When a when W Wh Whe When BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 11 , 1 10 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 4 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 11 , 1 10 0 0 0 0 0 +[Page 234] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 4 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 4 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 4 0 no 0 4 0 0 0 0 1 +o The o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 4 0 , 1 9 0 0 0 0 1 +same data same s sa sam same BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 0 , 1 8 0 0 0 0 1 +problems, or problems, p pr pro prob BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 0 , 1 9 0 0 0 0 1 +current replica current c cu cur curr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 0 . 1 9 0 0 0 0 1 +and use and a an and and BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 0 "" 2 10 0 0 0 0 1 +and is and a an and and BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 0 ... 3 6 0 0 0 0 1 +o The o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 4 1 () 2 9 0 0 0 0 1 +system instance system s sy sys syst BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 1 . 1 10 0 0 0 0 1 +is discussed is i is is is BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 1 ... 3 5 0 0 0 0 1 +Under some under U Un Und Unde BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 2 , 1 8 0 0 0 0 1 +simultaneously to simultaneously s si sim simu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 2 - 1 10 0 0 0 0 1 +system in system s sy sys syst BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 2 , 1 9 0 0 0 0 1 +servers may servers s se ser serv BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 2 . 1 6 0 0 0 0 1 +When a when W Wh Whe When BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 3 , 1 9 0 0 0 0 1 +given the given g gi giv give BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 3 , 1 10 0 0 0 0 1 +different replica. different d di dif diff BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 3 ., 2 9 0 0 0 0 1 +in the in i in in in BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 4 3 - 1 9 0 0 0 0 1 +and, at and, a an and and, BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 3 ,, 2 9 0 0 0 0 1 +choices can choices c ch cho choi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 3 . 1 9 0 0 0 0 1 +access to access a ac acc acce BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 3 "", 3 10 0 0 0 0 1 +is discussed is i is is is BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 3 ... 3 5 0 0 0 0 1 +Where a where W Wh Whe Wher BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 6 , 1 9 0 0 0 0 1 +location provides location l lo loc loca BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 6 no 0 10 0 0 0 0 1 +can be can c ca can can BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 6 , 1 9 0 0 0 0 1 +allowing a allowing a al all allo BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 6 -. 2 9 0 0 0 0 1 +such a such s su suc such BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 6 , 1 9 0 0 0 0 1 +present, is present, p pr pre pres BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 6 ,"" 3 8 0 0 0 0 1 +Section 11.5.6 section S Se Sec Sect BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 6 ... 3 3 0 0 0 0 1 +Because client because B Be Bec Beca BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 8 no 0 10 0 0 0 0 1 +is OPTIONAL, is i is is is BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 8 , 1 10 0 0 0 0 1 +referral events referral r re ref refe BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 8 ,,. 3 10 0 0 0 0 1 +The server the T Th The The BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 8 no 0 9 0 0 0 0 1 +arguments of arguments a ar arg argu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 8 (..). 5 8 0 0 0 0 1 +11.5.1. Combining 11.5.1. 1 11 11. 11.5 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 4 10 ... 3 10 0 0 0 0 1 +A file a A A A A BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 1 0 0 0 0 0 4 10 no 0 10 0 0 0 0 1 +relating to relating r re rel rela BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 10 no 0 9 0 0 0 0 1 +different ways. different d di dif diff BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 10 . 1 2 0 0 0 0 1 +o File o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 4 11 no 0 9 0 0 0 0 1 +instance currently instance i in ins inst BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 11 , 1 10 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 4 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 11 , 1 10 0 0 0 0 0 +[Page 235] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 4 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 4 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 4 0 no 0 4 0 0 0 0 1 +the client the t th the the BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 0 no 0 10 0 0 0 0 1 +instance may instance i in ins inst BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 0 . 1 4 0 0 0 0 1 +o File o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 4 0 no 0 10 0 0 0 0 1 +replicas to replicas r re rep repl BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 0 . 1 7 0 0 0 0 1 +o Other o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 4 1 no 0 10 0 0 0 0 1 +are available are a ar are are BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 1 no 0 9 0 0 0 0 1 +replica becomes replica r re rep repl BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 1 . 1 4 0 0 0 0 1 +In order in I In In In BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 4 2 no 0 10 0 0 0 0 1 +replicas to replicas r re rep repl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 2 , 1 9 0 0 0 0 1 +guidelines. guidelines. guidelines. g gu gui guid BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 2 . 1 1 0 0 0 0 1 +o All o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 4 3 no 0 10 0 0 0 0 1 +system instance system s sy sys syst BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 3 . 1 5 0 0 0 0 1 +o File o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 4 3 no 0 10 0 0 0 0 1 +in use in i in in in BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 4 3 . 1 4 0 0 0 0 1 +o File o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 4 4 () 2 10 0 0 0 0 1 +migration is migration m mi mig migr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 4 no 0 9 0 0 0 0 1 +available for available a av ava avai BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 4 no 0 9 0 0 0 0 1 +inaccessible. inaccessible. inaccessible. i in ina inac BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 4 . 1 2 0 0 0 0 1 +11.5.2. File 11.5.2. 1 11 11. 11.5 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 4 5 ... 3 10 0 0 0 0 1 +Trunking is trunking T Tr Tru Trun BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 4 5 no 0 9 0 0 0 0 1 +server in server s se ser serv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 5 . 1 10 0 0 0 0 1 +determine the determine d de det dete BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 5 no 0 10 0 0 0 0 1 +system in system s sy sys syst BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 5 : 1 4 0 0 0 0 1 +o When o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 4 6 , 1 10 0 0 0 0 1 +to obtain to t to to to BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 6 no 0 8 0 0 0 0 1 +server. server. server. s se ser serv BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 6 . 1 1 0 0 0 0 1 +o The o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 4 7 no 0 10 0 0 0 0 1 +file system. file f fi fil file BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 7 . 1 9 0 0 0 0 1 +(which can (which ( (w (wh (whi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 7 (), 3 9 0 0 0 0 1 +or a or o or or or BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 7 -. 2 9 0 0 0 0 1 +alternative, the alternative, a al alt alte BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 7 , 1 9 0 0 0 0 1 +desirable to desirable d de des desi BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 7 . 1 8 0 0 0 0 1 +It should it I It It It BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 10 , 1 9 0 0 0 0 1 +attribute for attribute a at att attr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 10 , 1 9 0 0 0 0 1 +number of number n nu num numb BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 10 ,,, 3 10 0 0 0 0 1 +may have may m ma may may BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 1 0 0 4 10 . 1 9 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 4 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 11 , 1 10 0 0 0 0 0 +[Page 236] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 4 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 4 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 4 0 no 0 4 0 0 0 0 1 +The server the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 0 no 0 10 0 0 0 0 1 +network addresses. network n ne net netw BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 4 0 .- 2 9 0 0 0 0 1 +related security related r re rel rela BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 0 no 0 10 0 0 0 0 1 +might require might m mi mig migh BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 0 . 1 6 0 0 0 0 1 +Locations entries locations L Lo Loc Loca BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 1 no 0 9 0 0 0 0 1 +trunking are trunking t tr tru trun BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 1 ,... 4 10 0 0 0 0 1 +The client the T Th The The BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 1 no 0 9 0 0 0 0 1 +once they once o on onc once BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 1 . 1 9 0 0 0 0 1 +server can server s se ser serv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 1 no 0 9 0 0 0 0 1 +NFS4ERR_MOVED when nfs4err_moved N NF NFS NFS4 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 4 1 . 1 9 0 0 0 0 1 +This allows this T Th Thi This BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 1 no 0 8 0 0 0 0 1 +migration, although migration, m mi mig migr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 1 , 1 8 0 0 0 0 1 +throughout. throughout. throughout. t th thr thro BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 1 . 1 1 0 0 0 0 1 +11.5.3. File 11.5.3. 1 11 11. 11.5 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 4 3 ... 3 10 0 0 0 0 1 +Because of because B Be Bec Beca BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 4 , 1 10 0 0 0 0 1 +face the face f fa fac face BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 4 no 0 9 0 0 0 0 1 +establishing a establishing e es est esta BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 4 . 1 9 0 0 0 0 1 +cases, this cases, c ca cas case BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 4 , 1 9 0 0 0 0 1 +"step-up" facility "step-up" " "s "st "ste BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 4 "-".., 6 9 0 0 0 0 1 +there are there t th the ther BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 4 , 1 9 0 0 0 0 1 +may have may m ma may may BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 1 0 0 4 4 no 0 9 0 0 0 0 1 +it within it i it it it BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 4 . 1 6 0 0 0 0 1 +The two the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 6 no 0 10 0 0 0 0 1 +made available made m ma mad made BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 6 . 1 9 0 0 0 0 1 +to support to t to to to BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 6 ., 2 8 0 0 0 0 1 +supporting multiple supporting s su sup supp BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 6 no 0 8 0 0 0 0 1 +establish connections establish e es est esta BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 6 no 0 9 0 0 0 0 1 +preferred by preferred p pr pre pref BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 6 . 1 7 0 0 0 0 1 +Fs_locations_info includes fs_locations_info F Fs Fs_ Fs_l BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 4 8 ,,, 3 9 0 0 0 0 1 +indicates that indicates i in ind indi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 8 -- 2 10 0 0 0 0 1 +location entry, location l lo loc loca BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 8 ,"" 3 9 0 0 0 0 1 +include support include i in inc incl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 8 . 1 9 0 0 0 0 1 +for a for f fo for for BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 8 ., 2 9 0 0 0 0 1 +establish a establish e es est esta BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 8 no 0 9 0 0 0 0 1 +RDMA by rdma R RD RDM RDMA BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 4 8 -. 2 5 0 0 0 0 1 +Irrespective of irrespective I Ir Irr Irre BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 10 , 1 9 0 0 0 0 1 +indication that indication i in ind indi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 10 -, 2 9 0 0 0 0 1 +supporting RDMA supporting s su sup supp BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 10 no 0 9 0 0 0 0 1 +can be can c ca can can BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 10 no 0 8 0 0 0 0 1 +connection, allowing connection, c co con conn BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 10 , 1 10 0 0 0 0 1 +converted to converted c co con conv BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 10 . 1 5 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 4 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 11 , 1 10 0 0 0 0 0 +[Page 237] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 4 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 4 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 4 0 no 0 4 0 0 0 0 1 +11.5.4. File 11.5.4. 1 11 11. 11.5 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 4 0 ... 3 10 0 0 0 0 1 +The fs_locations the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 0 no 0 10 0 0 0 0 1 +file system file f fi fil file BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 0 , 1 9 0 0 0 0 1 +addition to addition a ad add addi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 0 . 1 9 0 0 0 0 1 +file system, file f fi fil file BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 0 , 1 9 0 0 0 0 1 +by interrogating by b by by by BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 0 , 1 9 0 0 0 0 1 +with the with w wi wit with BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 0 . 1 4 0 0 0 0 1 +In the in I In In In BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 4 2 , 1 9 0 0 0 0 1 +problems, or problems, p pr pro prob BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 2 , 1 9 0 0 0 0 1 +file system file f fi fil file BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 2 , 1 9 0 0 0 0 1 +the alternate the t th the the BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 2 . 1 10 0 0 0 0 1 +The alternate the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 3 ( 1 9 0 0 0 0 1 +read-only) file read-only) r re rea read BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 3 -), 3 9 0 0 0 0 1 +various forms various v va var vari BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 3 no 0 10 0 0 0 0 1 +alternate ways alternate a al alt alte BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 3 . 1 10 0 0 0 0 1 +different modes different d di dif diff BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 3 no 0 10 0 0 0 0 1 +fs_locations and fs_locations f fs fs_ fs_l BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 3 no 0 9 0 0 0 0 1 +deals with deals d de dea deal BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 3 no 0 10 0 0 0 0 1 +below. below. below. b be bel belo BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 3 . 1 1 0 0 0 0 1 +11.5.5. File 11.5.5. 1 11 11. 11.5 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 4 5 ... 3 10 0 0 0 0 1 +When a when W Wh Whe When BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 5 ,. 2 8 0 0 0 0 1 +protocol provides protocol p pr pro prot BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 5 no 0 8 0 0 0 0 1 +opportunity to opportunity o op opp oppo BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 5 , 1 10 0 0 0 0 1 +replica. The replica. r re rep repl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 5 . 1 9 0 0 0 0 1 +location attribute. location l lo loc loca BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 5 . 1 9 0 0 0 0 1 +replica includes replica r re rep repl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 5 , 1 9 0 0 0 0 1 +either by either e ei eit eith BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 5 no 0 9 0 0 0 0 1 +State Migration. state S St Sta Stat BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 5 . 1 2 0 0 0 0 1 +Typically, a typically, T Ty Typ Typi BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 8 ,, 2 9 0 0 0 0 1 +get an get g ge get get BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 8 , 1 9 0 0 0 0 1 +attribute to attribute a at att attr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 8 . 1 8 0 0 0 0 1 +fs_locations_info is fs_locations_info f fs fs_ fs_l BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 8 , 1 10 0 0 0 0 1 +that will that t th tha that BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 8 ' 1 8 0 0 0 0 1 +transition to transition t tr tra tran BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 8 . 1 4 0 0 0 0 1 +Such migration such S Su Suc Such BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 9 no 0 9 0 0 0 0 1 +resource reallocation. resource r re res reso BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 9 . 1 9 0 0 0 0 1 +system will system s sy sys syst BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 9 . 1 9 0 0 0 0 1 +number of number n nu num numb BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 9 -- 2 9 0 0 0 0 1 +used with used u us use used BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 9 .. 2 9 0 0 0 0 1 +protocol specifies protocol p pr pro prot BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 9 no 0 10 0 0 0 0 1 +between client between b be bet betw BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 9 . 1 3 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 4 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 11 , 1 10 0 0 0 0 0 +[Page 238] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 4 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 4 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 4 0 no 0 4 0 0 0 0 1 +The new the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 0 , 1 9 0 0 0 0 1 +clustering, another clustering, c cl clu clus BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 0 , 1 10 0 0 0 0 1 +system. The system. s sy sys syst BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 0 .' 2 8 0 0 0 0 1 +transition will transition t tr tra tran BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 0 no 0 9 0 0 0 0 1 +means the means m me mea mean BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 4 0 . 1 9 0 0 0 0 1 +These issues these T Th The Thes BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 0 . 1 6 0 0 0 0 1 +Although a although A Al Alt Alth BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 1 , 1 9 0 0 0 0 1 +may be may m ma may may BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 1 0 0 4 1 ., 2 9 0 0 0 0 1 +will typically will w wi wil will BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 4 1 . 1 9 0 0 0 0 1 +for some for f fo for for BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 1 ,. 2 9 0 0 0 0 1 +might consider might m mi mig migh BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 1 no 0 9 0 0 0 0 1 +event, even event, e ev eve even BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 1 , 1 10 0 0 0 0 1 +the use the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 1 ., 2 9 0 0 0 0 1 +client might client c cl cli clie BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 1 no 0 9 0 0 0 0 1 +transfer. transfer. transfer. t tr tra tran BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 1 . 1 1 0 0 0 0 1 +When an when W Wh Whe When BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 4 , 1 10 0 0 0 0 1 +it must it i it it it BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 4 ( 1 9 0 0 0 0 1 +degree indicated degree d de deg degr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 4 ). 2 9 0 0 0 0 1 +systems are systems s sy sys syst BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 4 4 , 1 9 0 0 0 0 1 +be visible be b be be be BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 4 . 1 9 0 0 0 0 1 +writable but writable w wr wri writ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 4 -( 2 9 0 0 0 0 1 +updated) of updated) u up upd upda BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 4 ), 2 10 0 0 0 0 1 +propagation of propagation p pr pro prop BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 4 . 1 9 0 0 0 0 1 +system must system s sy sys syst BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 4 , 1 9 0 0 0 0 1 +any possibility any a an any any BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 4 , 1 9 0 0 0 0 1 +migration target, migration m mi mig migr BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 4 ,. 2 9 0 0 0 0 1 +11.5.6. Referrals 11.5.6. 1 11 11. 11.5 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 4 7 ... 3 10 0 0 0 0 1 +Referrals allow referrals R Re Ref Refe BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 4 7 no 0 10 0 0 0 0 1 +located on located l lo loc loca BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 7 . 1 9 0 0 0 0 1 +When this when W Wh Whe When BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 7 , 1 9 0 0 0 0 1 +way of way w wa way way BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 4 7 no 0 9 0 0 0 0 1 +essentially without essentially e es ess esse BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 7 no 0 9 0 0 0 0 1 +server. This server. s se ser serv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 7 . 1 9 0 0 0 0 1 +multi-server namespace multi-server m mu mul mult BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 7 - 1 9 0 0 0 0 1 +wider range wider w wi wid wide BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 7 . 1 9 0 0 0 0 1 +establishment of establishment e es est esta BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 7 --, 3 9 0 0 0 0 1 +eventual possibility eventual e ev eve even BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 7 no 0 9 0 0 0 0 1 +namespace, such namespace, n na nam name BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 7 ,() 3 9 0 0 0 0 1 +[TBD: appropriate [tbd: [ [T [TB [TBD BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 4 7 [:] 3 5 0 0 0 0 1 +Referrals occur referrals R Re Ref Refe BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 4 10 , 1 9 0 0 0 0 1 +position in position p po pos posi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 10 , 1 9 0 0 0 0 1 +system and system s sy sys syst BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 10 ., 2 8 0 0 0 0 1 +typically upon typically t ty typ typi BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 10 , 1 10 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 4 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 11 , 1 10 0 0 0 0 0 +[Page 239] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 4 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 4 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 4 0 no 0 4 0 0 0 0 1 +or locations or o or or or BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 0 no 0 10 0 0 0 0 1 +locations attribute. locations l lo loc loca BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 0 . 1 3 0 0 0 0 1 +The file the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 0 no 0 10 0 0 0 0 1 +location or location l lo loc loca BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 0 , 1 9 0 0 0 0 1 +the needs the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 0 ., 2 8 0 0 0 0 1 +attribute, may attribute, a at att attr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 0 , 1 9 0 0 0 0 1 +system location system s sy sys syst BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 0 . 1 9 0 0 0 0 1 +to different to t to to to BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 0 , 1 10 0 0 0 0 1 +adapt to adapt a ad ada adap BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 0 . 1 9 0 0 0 0 1 +both read-only both b bo bot both BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 0 --, 3 9 0 0 0 0 1 +read-only locations read-only r re rea read BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 0 ---( 4 10 0 0 0 0 1 +have to have h ha hav have BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 0 ). 2 9 0 0 0 0 1 +also specify also a al als also BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 0 - 1 9 0 0 0 0 1 +variables so variables v va var vari BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 0 no 0 9 0 0 0 0 1 +systems (with systems s sy sys syst BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 4 0 () 2 9 0 0 0 0 1 +such as such s su suc such BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 0 . 1 3 0 0 0 0 1 +When the when W Wh Whe When BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 4 no 0 9 0 0 0 0 1 +multiple possible multiple m mu mul mult BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 4 , 1 10 0 0 0 0 1 +important to important i im imp impo BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 4 . 1 9 0 0 0 0 1 +rules specified rules r ru rul rule BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 4 .. 2 9 0 0 0 0 1 +targets apply targets t ta tar targ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 4 ., 2 9 0 0 0 0 1 +client might client c cl cli clie BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 4 no 0 10 0 0 0 0 1 +writable replicas writable w wr wri writ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 4 ., 2 9 0 0 0 0 1 +as distinguished as a as as as BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 4 , 1 9 0 0 0 0 1 +deal with deal d de dea deal BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 4 4 no 0 9 0 0 0 0 1 +client, since client, c cl cli clie BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 4 , 1 9 0 0 0 0 1 +question. question. question. q qu que ques BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 4 . 1 1 0 0 0 0 1 +Use of use U Us Use Use BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 7 -. 2 9 0 0 0 0 1 +required. The required. r re req requ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 7 .- 2 10 0 0 0 0 1 +depend on depend d de dep depe BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 7 no 0 8 0 0 0 0 1 +preferences. preferences. preferences. p pr pre pref BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 7 . 1 1 0 0 0 0 1 +Multi-server namespaces multi-server M Mu Mul Mult BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 4 8 - 1 8 0 0 0 0 1 +providing a providing p pr pro prov BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 8 no 0 9 0 0 0 0 1 +systems. Alternatively, systems. s sy sys syst BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 8 .,- 3 9 0 0 0 0 1 +administratively segmented administratively a ad adm admi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 8 ( 1 9 0 0 0 0 1 +separate servers) separate s se sep sepa BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 8 ) 1 9 0 0 0 0 1 +namespace. The namespace. n na nam name BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 8 .- 2 10 0 0 0 0 1 +replicated referral replicated r re rep repl BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 8 . 1 8 0 0 0 0 1 +Generally, multi-server generally, G Ge Gen Gene BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 10 ,-, 3 10 0 0 0 0 1 +that the that t th tha that BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 10 no 0 9 0 0 0 0 1 +in the in i in in in BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 4 10 no 0 9 0 0 0 0 1 +location. However, location. l lo loc loca BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 10 ., 2 8 0 0 0 0 1 +different clients different d di dif diff BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 10 , 1 9 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 4 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 11 , 1 10 0 0 0 0 0 +[Page 240] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 4 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 4 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 4 0 no 0 4 0 0 0 0 1 +reasons such reasons r re rea reas BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 0 no 0 10 0 0 0 0 1 +CPU architecture. cpu C CP CPU CPU BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 4 0 .... 4 9 0 0 0 0 1 +Note that note N No Not Note BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 0 ,, 2 9 0 0 0 0 1 +provide diffeent provide p pr pro prov BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 0 , 1 9 0 0 0 0 1 +provide each provide p pr pro prov BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 0 , 1 10 0 0 0 0 1 +or otherwise or o or or or BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 0 (..). 5 8 0 0 0 0 1 +11.5.7. Changes 11.5.7. 1 11 11. 11.5 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 4 2 ... 3 10 0 0 0 0 1 +Although clients although A Al Alt Alth BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 2 no 0 8 0 0 0 0 1 +attribute when attribute a at att attr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 2 no 0 9 0 0 0 0 1 +is returned, is i is is is BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 2 ,, 2 10 0 0 0 0 1 +in which in i in in in BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 4 2 . 1 7 0 0 0 0 1 +For clients for F Fo For For BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 3 no 0 9 0 0 0 0 1 +(see Section (see ( (s (se (see BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 3 (..), 5 10 0 0 0 0 1 +change are change c ch cha chan BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 3 : 1 3 0 0 0 0 1 +o Changes o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 4 4 no 0 9 0 0 0 0 1 +associated with associated a as ass asso BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 4 . 1 9 0 0 0 0 1 +client will client c cl cli clie BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 4 no 0 10 0 0 0 0 1 +new information. new n ne new new BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 4 . 1 2 0 0 0 0 1 +o Additions o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 4 5 no 0 10 0 0 0 0 1 +system instance system s sy sys syst BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 5 ., 2 8 0 0 0 0 1 +prepare for prepare p pr pre prep BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 5 no 0 8 0 0 0 0 1 +subsequently, the subsequently, s su sub subs BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 5 , 1 9 0 0 0 0 1 +address and address a ad add addr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 5 no 0 9 0 0 0 0 1 +new replica. new n ne new new BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 5 . 1 1 0 0 0 0 1 +o Deletions o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 4 7 no 0 10 0 0 0 0 1 +system instance system s sy sys syst BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 7 , 1 9 0 0 0 0 1 +client might client c cl cli clie BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 7 no 0 9 0 0 0 0 1 +the server the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 7 no 0 9 0 0 0 0 1 +access the access a ac acc acce BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 7 ,. 2 8 0 0 0 0 1 +For clients for F Fo For For BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 8 no 0 8 0 0 0 0 1 +simultaneously, the simultaneously, s si sim simu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 8 ,. 2 10 0 0 0 0 1 +As in as A As As As BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 8 , 1 10 0 0 0 0 1 +not be not n no not not BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 8 , 1 9 0 0 0 0 1 +adjusting its adjusting a ad adj adju BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 8 no 0 9 0 0 0 0 1 +lead to lead l le lea lead BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 8 . 1 5 0 0 0 0 1 +o When o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 4 10 no 0 10 0 0 0 0 1 +with one with w wi wit with BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 10 , 1 9 0 0 0 0 1 +replica immediately. replica r re rep repl BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 10 . 1 3 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 4 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 11 , 1 10 0 0 0 0 0 +[Page 241] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 4 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 4 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 4 0 no 0 4 0 0 0 0 1 +o When o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 4 0 , 1 9 0 0 0 0 1 +client need client c cl cli clie BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 0 ., 2 9 0 0 0 0 1 +server may server s se ser serv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 0 ( 1 9 0 0 0 0 1 +NFS4ERR_MOVED), clients nfs4err_moved), N NF NFS NFS4 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 4 0 ), 2 10 0 0 0 0 1 +state transfer. state s st sta stat BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 0 ., 2 9 0 0 0 0 1 +replicas, rather replicas, r re rep repl BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 0 ,. 2 8 0 0 0 0 1 +11.6. Users 11.6. 1 11 11. 11.6 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 4 2 ..- 3 10 0 0 0 0 1 +As in as A As As As BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 2 -(., 4 9 0 0 0 0 1 +an owner an a an an an BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 4 2 "", 3 10 0 0 0 0 1 +there is there t th the ther BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 2 no 0 9 0 0 0 0 1 +corresponding attribute corresponding c co cor corr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 2 . 1 9 0 0 0 0 1 +a multi-server a a a a a BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 1 0 0 0 0 0 4 2 -, 2 9 0 0 0 0 1 +boundaries have boundaries b bo bou boun BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 2 ., 2 9 0 0 0 0 1 +a file a a a a a BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 1 0 0 0 0 0 4 2 , 1 9 0 0 0 0 1 +that attribute that t th tha that BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 2 no 0 9 0 0 0 0 1 +occurs on occurs o oc occ occu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 2 . 1 7 0 0 0 0 1 +Similarly, the similarly, S Si Sim Simi BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 5 , 1 9 0 0 0 0 1 +participating servers participating p pa par part BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 5 , 1 10 0 0 0 0 1 +having the having h ha hav havi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 5 , 1 9 0 0 0 0 1 +being accessed. being b be bei bein BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 5 . 1 2 0 0 0 0 1 +In order in I In In In BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 4 6 ,- 2 10 0 0 0 0 1 +namespaces will namespaces n na nam name BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 6 : 1 8 0 0 0 0 1 +o In o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 4 6 , 1 10 0 0 0 0 1 +requirements stated requirements r re req requ BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 6 []. 3 8 0 0 0 0 1 +o All o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 4 7 no 0 10 0 0 0 0 1 +the domains the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 7 no 0 9 0 0 0 0 1 +portion of portion p po por port BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 7 "". 3 9 0 0 0 0 1 +although this although a al alt alth BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 7 , 1 9 0 0 0 0 1 +possible for possible p po pos poss BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 7 . 1 6 0 0 0 0 1 +o All o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 4 8 ,, 2 10 0 0 0 0 1 +set of set s se set set BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 8 . 1 5 0 0 0 0 1 +o All o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 4 9 , 1 9 0 0 0 0 1 +each principal, each e ea eac each BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 9 ,, 2 9 0 0 0 0 1 +the server the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 9 ., 2 9 0 0 0 0 1 +each such each e ea eac each BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 9 , 1 10 0 0 0 0 1 +accessed. accessed. accessed. a ac acc acce BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 9 . 1 1 0 0 0 0 1 +Note that note N No Not Note BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 10 no 0 9 0 0 0 0 1 +particular security particular p pa par part BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 10 no 0 10 0 0 0 0 1 +each server, each e ea eac each BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 10 ,. 2 9 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 4 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 11 , 1 10 0 0 0 0 0 +[Page 242] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 4 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 4 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 4 0 no 0 4 0 0 0 0 1 +When AUTH_SYS when W Wh Whe When BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 0 , 1 10 0 0 0 0 1 +and groups, and a an and and BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 0 ,: 2 9 0 0 0 0 1 +o Only o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 4 0 . 1 10 0 0 0 0 1 +o The o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 4 1 "" 2 10 0 0 0 0 1 +same on same s sa sam same BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 1 ."" 3 9 0 0 0 0 1 +the way the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 1 no 0 8 0 0 0 0 1 +Section 5.9. section S Se Sec Sect BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 1 .., 3 9 0 0 0 0 1 +group are group g gr gro grou BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 1 ,, 2 10 0 0 0 0 1 +are known are a ar are are BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 1 . 1 7 0 0 0 0 1 +11.7. Additional 11.7. 1 11 11. 11.7 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 4 2 ..- 3 10 0 0 0 0 1 +When clients when W Wh Whe When BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 3 , 1 8 0 0 0 0 1 +replication, and replication, r re rep repl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 3 ,, 2 9 0 0 0 0 1 +mounts a mounts m mo mou moun BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 3 no 0 9 0 0 0 0 1 +file system file f fi fil file BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 3 - 1 9 0 0 0 0 1 +file system file f fi fil file BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 3 - 1 10 0 0 0 0 1 +file systems file f fi fil file BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 3 . 1 6 0 0 0 0 1 +One important one O On One One BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 4 - 1 9 0 0 0 0 1 +side file side s si sid side BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 4 (".."), 7 9 0 0 0 0 1 +case in case c ca cas case BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 4 4 no 0 9 0 0 0 0 1 +referral, migration, referral, r re ref refe BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 4 ,,. 3 9 0 0 0 0 1 +When the when W Wh Whe When BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 4 , 1 9 0 0 0 0 1 +parent, it parent, p pa par pare BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 4 ,- 2 10 0 0 0 0 1 +namespace rather namespace n na nam name BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 4 , 1 9 0 0 0 0 1 +which would which w wh whi whic BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 4 '- 2 9 0 0 0 0 1 +namespace. In namespace. n na nam name BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 4 ., 2 9 0 0 0 0 1 +filehandles that filehandles f fi fil file BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 4 no 0 9 0 0 0 0 1 +instead of instead i in ins inst BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 4 . 1 9 0 0 0 0 1 +will allow will w wi wil will BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 4 4 no 0 8 0 0 0 0 1 +namespace, where namespace, n na nam name BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 4 , 1 9 0 0 0 0 1 +consistent. consistent. consistent. c co con cons BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 4 . 1 1 0 0 0 0 1 +Another issue another A An Ano Anot BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 8 . 1 10 0 0 0 0 1 +are used are a ar are are BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 8 , 1 9 0 0 0 0 1 +change. It change. c ch cha chan BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 8 . 1 9 0 0 0 0 1 +to traversing to t to to to BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 8 - 1 9 0 0 0 0 1 +resolved locally resolved r re res reso BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 8 . 1 9 0 0 0 0 1 +rooted in rooted r ro roo root BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 8 -. 2 8 0 0 0 0 1 +periodically purge periodically p pe per peri BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 8 no 0 9 0 0 0 0 1 +changes in changes c ch cha chan BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 4 8 . 1 9 0 0 0 0 1 +changes for changes c ch cha chan BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 4 8 no 0 8 0 0 0 0 1 +referral entries referral r re ref refe BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 8 , 1 9 0 0 0 0 1 +cached referral cached c ca cac cach BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 8 . 1 6 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 4 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 11 , 1 10 0 0 0 0 0 +[Page 243] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 4 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 4 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 4 0 no 0 4 0 0 0 0 1 +11.8. Overview 11.8. 1 11 11. 11.8 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 4 0 .. 2 10 0 0 0 0 1 +File access file F Fi Fil File BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 0 : 1 10 0 0 0 0 1 +o Those o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 4 0 no 0 10 0 0 0 0 1 +to another to t to to to BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 0 . 1 9 0 0 0 0 1 +How these how H Ho How How BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 0 .. 2 8 0 0 0 0 1 +o Those o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 4 1 no 0 9 0 0 0 0 1 +retained, while retained, r re ret reta BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 1 , 1 10 0 0 0 0 1 +changed. This changed. c ch cha chan BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 1 ... 3 7 0 0 0 0 1 +11.9. Effecting 11.9. 1 11 11. 11.9 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 4 2 .. 2 10 0 0 0 0 1 +The endpoints the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 2 no 0 9 0 0 0 0 1 +change in change c ch cha chan BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 2 ,., 3 10 0 0 0 0 1 +the same the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 2 ,,, 3 9 0 0 0 0 1 +used to used u us use used BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 2 ,. 2 8 0 0 0 0 1 +o When o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 4 4 no 0 10 0 0 0 0 1 +currently in currently c cu cur curr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 4 -, 2 9 0 0 0 0 1 +would have would w wo wou woul BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 4 no 0 8 0 0 0 0 1 +discontinued can discontinued d di dis disc BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 4 (). 3 9 0 0 0 0 1 +address is address a ad add addr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 4 -, 2 9 0 0 0 0 1 +be modified be b be be be BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 4 no 0 9 0 0 0 0 1 +used. used. used. u us use used BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 4 . 1 0 0 0 0 0 1 +o When o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 4 6 , 1 10 0 0 0 0 1 +receiving NFS4ERR_MOVED receiving r re rec rece BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 4 6 no 0 8 0 0 0 0 1 +address is address a ad add addr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 6 no 0 8 0 0 0 0 1 +appropriate file appropriate a ap app appr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 6 , 1 8 0 0 0 0 1 +requests can requests r re req requ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 4 6 no 0 8 0 0 0 0 1 +connection type, connection c co con conn BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 6 ,. 2 9 0 0 0 0 1 +two server two t tw two two BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 6 no 0 9 0 0 0 0 1 +session-trunkable, the session-trunkable, s se ses sess BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 6 -, 2 9 0 0 0 0 1 +access the access a ac acc acce BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 6 no 0 9 0 0 0 0 1 +to access to t to to to BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 6 . 1 7 0 0 0 0 1 +o When o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 4 8 no 0 10 0 0 0 0 1 +are valid are a ar are are BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 8 - 1 9 0 0 0 0 1 +be discontinued, be b be be be BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 8 , 1 9 0 0 0 0 1 +the existing the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 8 . 1 9 0 0 0 0 1 +session will session s se ses sess BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 8 , 1 9 0 0 0 0 1 +that session that t th tha that BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 8 ., 2 9 0 0 0 0 1 +can create can c ca can can BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 8 no 0 8 0 0 0 0 1 +existing instance existing e ex exi exis BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 8 , 1 9 0 0 0 0 1 +stateids, and stateids, s st sta stat BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 8 , 1 9 0 0 0 0 1 +state. state. state. s st sta stat BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 8 . 1 1 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 4 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 11 , 1 10 0 0 0 0 0 +[Page 244] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 4 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 4 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 4 0 no 0 4 0 0 0 0 1 +o When o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 4 0 no 0 9 0 0 0 0 1 +are no are a ar are are BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 0 - 1 10 0 0 0 0 1 +to be to t to to to BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 0 ,- 2 9 0 0 0 0 1 +to provide to t to to to BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 0 . 1 9 0 0 0 0 1 +available to available a av ava avai BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 0 , 1 9 0 0 0 0 1 +servers have servers s se ser serv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 0 no 0 9 0 0 0 0 1 +existing session existing e ex exi exis BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 0 no 0 9 0 0 0 0 1 +similar to similar s si sim simi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 0 (.). 4 10 0 0 0 0 1 +To take to T To To To BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 0 , 1 9 0 0 0 0 1 +initial BIND_CONN_TO_SESSION, initial i in ini init BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 0 ,, 2 9 0 0 0 0 1 +CREATE_SESSION only create_session C CR CRE CREA BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 4 0 . 1 5 0 0 0 0 1 +11.10. Effecting 11.10. 1 11 11. 11.1 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 4 3 .. 2 10 0 0 0 0 1 +There are there T Th The Ther BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 3 no 0 9 0 0 0 0 1 +effected in effected e ef eff effe BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 3 no 0 9 0 0 0 0 1 +system. Some system. s sy sys syst BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 3 . 1 10 0 0 0 0 1 +set of set s se set set BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 3 ... 3 8 0 0 0 0 1 +For reasons for F Fo For For BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 5 , 1 9 0 0 0 0 1 +a transition a a a a a BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 1 0 0 0 0 0 4 5 no 0 9 0 0 0 0 1 +replica. When replica. r re rep repl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 5 ., 2 9 0 0 0 0 1 +between the between b be bet betw BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 5 no 0 8 0 0 0 0 1 +described in described d de des desc BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 5 ..... 5 9 0 0 0 0 1 +fs_locations_info provides fs_locations_info f fs fs_ fs_l BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 5 no 0 10 0 0 0 0 1 +determine the determine d de det dete BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 5 -. 2 6 0 0 0 0 1 +With regard with W Wi Wit With BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 7 , 1 9 0 0 0 0 1 +the transition the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 7 , 1 10 0 0 0 0 1 +transitions initiated transitions t tr tra tran BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 7 (..) 4 9 0 0 0 0 1 +more scope more m mo mor more BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 7 - 1 9 0 0 0 0 1 +client on client c cl cli clie BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 7 (.. 3 8 0 0 0 0 1 +replication). This replication). r re rep repl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 7 ). 2 9 0 0 0 0 1 +session state, session s se ses sess BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 7 ,: 2 7 0 0 0 0 1 +o An o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 4 9 no 0 10 0 0 0 0 1 +these areas these t th the thes BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 9 ... 3 6 0 0 0 0 1 +o Transparent o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 4 10 .. 2 10 0 0 0 0 1 +possible transfer possible p po pos poss BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 10 . 1 9 0 0 0 0 1 +o The o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 4 10 , 1 10 0 0 0 0 1 +deal with deal d de dea deal BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 4 10 no 0 9 0 0 0 0 1 +effective continuity effective e ef eff effe BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 10 no 0 8 0 0 0 0 1 +Section 11.12. section S Se Sec Sect BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 10 .. 2 2 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 4 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 11 , 1 10 0 0 0 0 0 +[Page 245] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 4 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 4 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 4 0 no 0 4 0 0 0 0 1 +o The o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 4 0 '() 3 9 0 0 0 0 1 +effecting Transparent effecting e ef eff effe BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 0 no 0 10 0 0 0 0 1 +discussed in discussed d di dis disc BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 0 .. 2 4 0 0 0 0 1 +11.10.1. File 11.10.1. 1 11 11. 11.1 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 4 0 ... 3 10 0 0 0 0 1 +The fs_locations_info the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 1 (.) 3 9 0 0 0 0 1 +indicate that indicate i in ind indi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 1 ,( 2 8 0 0 0 0 1 +Section 11.7.2.1 section S Se Sec Sect BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 1 ...[]). 7 10 0 0 0 0 1 +in which in i in in in BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 4 1 no 0 9 0 0 0 0 1 +somewhat similar somewhat s so som some BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 1 no 0 10 0 0 0 0 1 +multiple network multiple m mu mul mult BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 1 ,, 2 10 0 0 0 0 1 +locking state locking l lo loc lock BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 1 . 1 7 0 0 0 0 1 +Because of because B Be Bec Beca BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 3 , 1 9 0 0 0 0 1 +have the have h ha hav have BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 3 no 0 9 0 0 0 0 1 +represent the represent r re rep repr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 3 . 1 9 0 0 0 0 1 +multiple replicas multiple m mu mul mult BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 3 no 0 9 0 0 0 0 1 +using only using u us usi usin BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 3 , 1 10 0 0 0 0 1 +multiple server-trunkable multiple m mu mul mult BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 3 -. 2 6 0 0 0 0 1 +Clients who clients C Cl Cli Clie BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 5 no 0 10 0 0 0 0 1 +divide opens divide d di div divi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 5 . 1 9 0 0 0 0 1 +made, any made, m ma mad made BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 5 , 1 9 0 0 0 0 1 +associated with associated a as ass asso BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 5 . 1 7 0 0 0 0 1 +For example, for F Fo For For BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 6 ,, 2 10 0 0 0 0 1 +be transferred be b be be be BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 6 , 1 10 0 0 0 0 1 +access with access a ac acc acce BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 6 . 1 5 0 0 0 0 1 +When there when W Wh Whe When BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 7 , 1 9 0 0 0 0 1 +already in already a al alr alre BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 7 ., 2 9 0 0 0 0 1 +merging the merging m me mer merg BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 7 no 0 10 0 0 0 0 1 +sole replica sole s so sol sole BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 7 , 1 9 0 0 0 0 1 +replica capable replica r re rep repl BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 7 . 1 8 0 0 0 0 1 +11.10.2. Filehandles 11.10.2. 1 11 11. 11.1 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 4 8 ... 3 10 0 0 0 0 1 +There are there T Th The Ther BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 8 no 0 10 0 0 0 0 1 +a file a a a a a BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 1 0 0 0 0 0 4 8 . 1 8 0 0 0 0 1 +classes depending classes c cl cla clas BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 8 no 0 9 0 0 0 0 1 +transition happens transition t tr tra tran BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 8 no 0 9 0 0 0 0 1 +continuity of continuity c co con cont BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 8 . 1 5 0 0 0 0 1 +When there when W Wh Whe When BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 10 , 1 9 0 0 0 0 1 +file systems file f fi fil file BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 10 . 1 9 0 0 0 0 1 +this case, this t th thi this BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 10 , 1 10 0 0 0 0 1 +system transition. system s sy sys syst BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 10 . 1 9 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 4 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 11 , 1 10 0 0 0 0 0 +[Page 246] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 4 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 4 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 4 0 no 0 4 0 0 0 0 1 +fh_expire_type attribute fh_expire_type f fh fh_ fh_e BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 0 no 0 10 0 0 0 0 1 +FH4_VOL_MIGRATION bit, fh4_vol_migration F FH FH4 FH4_ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 4 0 , 1 8 0 0 0 0 1 +fs_locations_info is fs_locations_info f fs fs_ fs_l BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 0 . 1 5 0 0 0 0 1 +When there when W Wh Whe When BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 0 , 1 9 0 0 0 0 1 +systems are systems s sy sys syst BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 4 0 . 1 9 0 0 0 0 1 +case, persistent case, c ca cas case BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 0 , 1 9 0 0 0 0 1 +transition, while transition, t tr tra tran BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 0 ,( 2 10 0 0 0 0 1 +volatile due volatile v vo vol vola BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 0 ) 1 9 0 0 0 0 1 +on the on o on on on BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 0 . 1 3 0 0 0 0 1 +11.10.3. Fileids 11.10.3. 1 11 11. 11.1 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 4 2 ... 3 10 0 0 0 0 1 +In NFSv4.0, in I In In In BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 4 2 ., 2 10 0 0 0 0 1 +system transition system s sy sys syst BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 2 . 1 9 0 0 0 0 1 +been that been b be bee been BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 2 no 0 9 0 0 0 0 1 +created by created c cr cre crea BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 2 , 1 10 0 0 0 0 1 +fileids would fileids f fi fil file BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 2 , 1 9 0 0 0 0 1 +analogous multi-vendor analogous a an ana anal BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 2 -. 2 8 0 0 0 0 1 +difficulties, especially difficulties, d di dif diff BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 2 , 1 9 0 0 0 0 1 +the transition the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 2 . 1 9 0 0 0 0 1 +fileid is fileid f fi fil file BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 2 , 1 9 0 0 0 0 1 +many clients many m ma man many BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 4 2 . 1 7 0 0 0 0 1 +It is it I It It It BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 5 no 0 9 0 0 0 0 1 +trouble with trouble t tr tro trou BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 5 no 0 8 0 0 0 0 1 +transition event, transition t tr tra tran BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 5 , 1 10 0 0 0 0 1 +(e.g., via (e.g., ( (e (e. (e.g BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 5 (..,). 6 8 0 0 0 0 1 +perfectly well perfectly p pe per perf BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 5 no 0 9 0 0 0 0 1 +any such any a an any any BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 5 , 1 9 0 0 0 0 1 +yet be yet y ye yet yet BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 5 - 1 9 0 0 0 0 1 +transition occurs transition t tr tra tran BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 5 . 1 5 0 0 0 0 1 +Providing the providing P Pr Pro Prov BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 7 -( 2 8 0 0 0 0 1 +vendors) environment vendors) v ve ven vend BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 7 ). 2 9 0 0 0 0 1 +While there while W Wh Whi Whil BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 7 , 1 9 0 0 0 0 1 +difficulty is difficulty d di dif diff BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 7 -. 2 9 0 0 0 0 1 +fileid with fileid f fi fil file BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 7 ,.. 3 9 0 0 0 0 1 +in question. in i in in in BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 4 7 . 1 9 0 0 0 0 1 +migration of migration m mi mig migr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 7 no 0 9 0 0 0 0 1 +index to index i in ind inde BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 7 . 1 9 0 0 0 0 1 +is not is i is is is BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 7 , 1 9 0 0 0 0 1 +it is it i it it it BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 7 . 1 9 0 0 0 0 1 +accept a accept a ac acc acce BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 7 no 0 10 0 0 0 0 1 +the value the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 7 no 0 9 0 0 0 0 1 +maintain a maintain m ma mai main BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 7 , 1 9 0 0 0 0 1 +transparent migration transparent t tr tra tran BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 7 . 1 4 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 4 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 11 , 1 10 0 0 0 0 0 +[Page 247] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 4 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 4 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 4 0 no 0 4 0 0 0 0 1 +In any in I In In In BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 4 0 ,, 2 10 0 0 0 0 1 +should, and should, s sh sho shou BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 0 , 1 8 0 0 0 0 1 +continuity is continuity c co con cont BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 0 . 1 9 0 0 0 0 1 +about the about a ab abo abou BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 0 () 2 9 0 0 0 0 1 +system transition system s sy sys syst BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 0 no 0 9 0 0 0 0 1 +systems in systems s sy sys syst BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 4 0 . 1 7 0 0 0 0 1 +Note that note N No Not Note BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 2 no 0 9 0 0 0 0 1 +(either because (either ( (e (ei (eit BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 2 ( 1 9 0 0 0 0 1 +is not is i is is is BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 2 ), 2 10 0 0 0 0 1 +are no are a ar are are BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 2 ( 1 10 0 0 0 0 1 +there is there t th the ther BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 2 no 0 9 0 0 0 0 1 +volatile), the volatile), v vo vol vola BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 2 ), 2 9 0 0 0 0 1 +files it files f fi fil file BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 2 . 1 9 0 0 0 0 1 +It is it I It It It BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 2 ,, 2 9 0 0 0 0 1 +there are there t th the ther BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 2 (.., 4 9 0 0 0 0 1 +read-only), problems read-only), r re rea read BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 2 -),., 5 9 0 0 0 0 1 +such configurations such s su suc such BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 2 no 0 8 0 0 0 0 1 +problems that problems p pr pro prob BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 4 2 . 1 6 0 0 0 0 1 +11.10.4. Fsids 11.10.4. 1 11 11. 11.1 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 4 5 ... 3 10 0 0 0 0 1 +Since fsids since S Si Sin Sinc BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 6 -, 2 9 0 0 0 0 1 +likely that likely l li lik like BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 6 . 1 8 0 0 0 0 1 +Clients should clients C Cl Cli Clie BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 6 no 0 10 0 0 0 0 1 +applications since applications a ap app appl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 4 6 , 1 9 0 0 0 0 1 +may change may m ma may may BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 1 0 0 4 6 . 1 9 0 0 0 0 1 +best served best b be bes best BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 6 no 0 9 0 0 0 0 1 +possible. possible. possible. p po pos poss BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 6 . 1 1 0 0 0 0 1 +Although normally although A Al Alt Alth BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 7 no 0 10 0 0 0 0 1 +single target single s si sin sing BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 7 , 1 9 0 0 0 0 1 +single source single s si sin sing BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 7 , 1 9 0 0 0 0 1 +specifying the specifying s sp spe spec BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 7 . 1 5 0 0 0 0 1 +11.10.4.1. File 11.10.4.1. 1 11 11. 11.1 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 4 8 .... 4 10 0 0 0 0 1 +When a when W Wh Whe When BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 9 no 0 9 0 0 0 0 1 +indicates that indicates i in ind indi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 9 no 0 9 0 0 0 0 1 +multiple file multiple m mu mul mult BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 9 (), 3 9 0 0 0 0 1 +SHOULD do should S SH SHO SHOU BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 4 9 no 0 9 0 0 0 0 1 +objects within objects o ob obj obje BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 9 no 0 10 0 0 0 0 1 +new file new n ne new new BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 9 . 1 4 0 0 0 0 1 +Clients might clients C Cl Cli Clie BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 10 no 0 9 0 0 0 0 1 +applications by applications a ap app appl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 4 10 no 0 10 0 0 0 0 1 +systems to systems s sy sys syst BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 4 10 . 1 9 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 4 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 11 , 1 10 0 0 0 0 0 +[Page 248] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 4 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 4 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 4 0 no 0 4 0 0 0 0 1 +Splitting a splitting S Sp Spl Spli BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 0 no 0 9 0 0 0 0 1 +systems of systems s sy sys syst BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 4 0 , 1 9 0 0 0 0 1 +unique within unique u un uni uniq BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 0 no 0 10 0 0 0 0 1 +each of each e ea eac each BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 0 . 1 4 0 0 0 0 1 +11.10.5. The 11.10.5. 1 11 11. 11.1 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 4 1 ... 3 10 0 0 0 0 1 +Since the since S Si Sin Sinc BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 1 -, 2 9 0 0 0 0 1 +change attributes change c ch cha chan BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 1 no 0 10 0 0 0 0 1 +invalid on invalid i in inv inva BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 1 . 1 9 0 0 0 0 1 +it would it i it it it BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 1 , 1 8 0 0 0 0 1 +refetching. Even refetching. r re ref refe BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 1 ., 2 8 0 0 0 0 1 +continuity for continuity c co con cont BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 1 no 0 10 0 0 0 0 1 +is retrieved is i is is is BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 1 , 1 9 0 0 0 0 1 +the object the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 1 . 1 9 0 0 0 0 1 +could be could c co cou coul BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 1 no 0 9 0 0 0 0 1 +change attribute change c ch cha chan BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 1 , 1 10 0 0 0 0 1 +happening to happening h ha hap happ BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 1 . 1 7 0 0 0 0 1 +When the when W Wh Whe When BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 4 , 1 9 0 0 0 0 1 +and this and a an and and BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 4 no 0 10 0 0 0 0 1 +change class, change c ch cha chan BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 4 , 1 10 0 0 0 0 1 +construction and construction c co con cons BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 4 no 0 9 0 0 0 0 1 +without any without w wi wit with BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 4 . 1 5 0 0 0 0 1 +11.10.6. Write 11.10.6. 1 11 11. 11.1 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 4 6 ... 3 10 0 0 0 0 1 +In a in I In In In BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 4 6 , 1 10 0 0 0 0 1 +in the in i in in in BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 4 6 ., 2 10 0 0 0 0 1 +the two the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 6 -, 2 9 0 0 0 0 1 +verifiers returned verifiers v ve ver veri BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 6 no 0 10 0 0 0 0 1 +by the by b by by by BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 6 . 1 6 0 0 0 0 1 +When two when W Wh Whe When BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 7 -, 2 10 0 0 0 0 1 +verifier generated verifier v ve ver veri BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 7 no 0 10 0 0 0 0 1 +other. Instead, other. o ot oth othe BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 7 ., 2 9 0 0 0 0 1 +even when even e ev eve even BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 7 . 1 5 0 0 0 0 1 +11.10.7. Readdir 11.10.7. 1 11 11. 11.1 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 4 9 ... 3 10 0 0 0 0 1 +In a in I In In In BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 4 9 , 1 10 0 0 0 0 1 +in their in i in in in BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 4 9 . 1 9 0 0 0 0 1 +case, and case, c ca cas case BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 9 ,, 2 9 0 0 0 0 1 +READDIR cookies readdir R RE REA READ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 4 9 no 0 9 0 0 0 0 1 +the other the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 9 no 0 10 0 0 0 0 1 +continued on continued c co con cont BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 9 , 1 9 0 0 0 0 1 +returned by returned r re ret retu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 9 no 0 9 0 0 0 0 1 +second. second. second. s se sec seco BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 9 . 1 1 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 4 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 11 , 1 10 0 0 0 0 0 +[Page 249] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 4 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 4 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 4 0 no 0 4 0 0 0 0 1 +When two when W Wh Whe When BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 0 , 1 9 0 0 0 0 1 +READDIR cookie readdir R RE REA READ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 4 0 no 0 9 0 0 0 0 1 +second, and second, s se sec seco BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 0 ,. 2 10 0 0 0 0 1 +client should client c cl cli clie BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 0 . 1 7 0 0 0 0 1 +11.10.8. File 11.10.8. 1 11 11. 11.1 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 4 1 ... 3 10 0 0 0 0 1 +When multiple when W Wh Whe When BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 1 no 0 9 0 0 0 0 1 +succession by succession s su suc succ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 1 , 1 9 0 0 0 0 1 +that they that t th tha that BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 1 no 0 9 0 0 0 0 1 +with the with w wi wit with BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 1 no 0 9 0 0 0 0 1 +updating the updating u up upd upda BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 1 ( 1 10 0 0 0 0 1 +the degree the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 1 )., 3 9 0 0 0 0 1 +when multiple when w wh whe when BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 1 , 1 9 0 0 0 0 1 +the precise the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 1 no 0 9 0 0 0 0 1 +another is another a an ano anot BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 1 ,,. 3 8 0 0 0 0 1 +protocol. It protocol. p pr pro prot BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 1 . 1 9 0 0 0 0 1 +where the where w wh whe wher BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 1 no 0 9 0 0 0 0 1 +some applications some s so som some BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 1 no 0 9 0 0 0 0 1 +replicas. The replicas. r re rep repl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 1 . 1 8 0 0 0 0 1 +applications can applications a ap app appl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 4 1 , 1 9 0 0 0 0 1 +one position one o on one one BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 1 no 0 9 0 0 0 0 1 +listed, while listed, l li lis list BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 1 ,-- 3 9 0 0 0 0 1 +considered replicas. considered c co con cons BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 1 . 1 9 0 0 0 0 1 +the relationship the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 1 no 0 9 0 0 0 0 1 +relied upon relied r re rel reli BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 1 : 1 3 0 0 0 0 1 +o When o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 4 6 no 0 9 0 0 0 0 1 +client (see client c cl cli clie BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 6 ( 1 7 0 0 0 0 1 +fs_locations_info), they fs_locations_info), f fs fs_ fs_l BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 6 ),. 3 9 0 0 0 0 1 +systems are systems s sy sys syst BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 4 6 , 1 8 0 0 0 0 1 +visible on visible v vi vis visi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 6 , 1 9 0 0 0 0 1 +return of return r re ret retu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 6 no 0 10 0 0 0 0 1 +on any on o on on on BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 6 . 1 9 0 0 0 0 1 +these replicas these t th the thes BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 6 no 0 9 0 0 0 0 1 +the fact the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 6 , 1 9 0 0 0 0 1 +fact that fact f fa fac fact BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 6 no 0 9 0 0 0 0 1 +(i.e. under (i.e. ( (i (i. (i.e BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 6 (..).,( 7 9 0 0 0 0 1 +share reservations share s sh sha shar BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 6 -) 2 9 0 0 0 0 1 +on one on o on on on BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 6 , 1 9 0 0 0 0 1 +sense that sense s se sen sens BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 6 no 0 9 0 0 0 0 1 +of the of o of of of BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 6 ., 2 8 0 0 0 0 1 +required to required r re req requ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 6 no 0 9 0 0 0 0 1 +same client, same s sa sam same BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 6 , 1 9 0 0 0 0 1 +client ID. client c cl cli clie BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 6 . 1 1 0 0 0 0 1 +o When o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 5 11 no 0 9 0 0 0 0 1 +another existing another a an ano anot BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 11 (.., 4 10 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 5 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 11 , 1 10 0 0 0 0 0 +[Page 250] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 5 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 5 0 no 0 4 0 0 0 0 1 +case of case c ca cas case BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 5 0 ), 2 9 0 0 0 0 1 +changes written changes c ch cha chan BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 5 0 no 0 9 0 0 0 0 1 +written to written w wr wri writ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 0 ( 1 10 0 0 0 0 1 +dealt with dealt d de dea deal BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 0 ..). 4 5 0 0 0 0 1 +o Where o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 5 1 - 1 9 0 0 0 0 1 +copy (possibly copy c co cop copy BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 1 (), 3 9 0 0 0 0 1 +clients have clients c cl cli clie BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 1 no 0 9 0 0 0 0 1 +of updates. of o of of of BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 1 . 1 9 0 0 0 0 1 +the original the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 1 no 0 9 0 0 0 0 1 +any replica any a an any any BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 1 , 1 9 0 0 0 0 1 +in order in i in in in BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 5 1 , 1 9 0 0 0 0 1 +transition to transition t tr tra tran BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 1 , 1 9 0 0 0 0 1 +state. The state. s st sta stat BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 1 . 1 9 0 0 0 0 1 +value of value v va val valu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 1 no 0 8 0 0 0 0 1 +fs_status attribute fs_status f fs fs_ fs_s BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 1 (.). 4 9 0 0 0 0 1 +are presumed are a ar are are BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 1 , 1 9 0 0 0 0 1 +specification of specification s sp spe spec BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 1 ;, 2 8 0 0 0 0 1 +obtained on obtained o ob obt obta BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 1 . 1 10 0 0 0 0 1 +Since these since S Si Sin Sinc BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 1 -, 2 10 0 0 0 0 1 +likely to likely l li lik like BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 1 . 1 7 0 0 0 0 1 +11.10.9. Lock 11.10.9. 1 11 11. 11.1 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 6 ... 3 10 0 0 0 0 1 +While accessing while W Wh Whi Whil BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 6 , 1 10 0 0 0 0 1 +server which server s se ser serv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 6 no 0 8 0 0 0 0 1 +inconsistent with inconsistent i in inc inco BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 6 . 1 4 0 0 0 0 1 +When access when W Wh Whe When BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 7 , 1 9 0 0 0 0 1 +assured that assured a as ass assu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 7 no 0 9 0 0 0 0 1 +have occurred have h ha hav have BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 7 . 1 9 0 0 0 0 1 +methods below. methods m me met meth BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 7 ., 2 10 0 0 0 0 1 +will not will w wi wil will BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 5 7 no 0 9 0 0 0 0 1 +migration event. migration m mi mig migr BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 7 . 1 2 0 0 0 0 1 +o Providing o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 5 8 - 1 10 0 0 0 0 1 +per-fs grace per-fs p pe per per- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 8 -. 2 9 0 0 0 0 1 +reclaim mechanism reclaim r re rec recl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 8 , 1 10 0 0 0 0 1 +it implicitly it i it it it BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 8 no 0 9 0 0 0 0 1 +the same the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 8 ., 2 8 0 0 0 0 1 +requires that requires r re req requ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 8 no 0 8 0 0 0 0 1 +filehandles, as filehandles, f fi fil file BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 8 ,( 2 9 0 0 0 0 1 +Section 2.10.4) section S Se Sec Sect BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 8 ..) 3 7 0 0 0 0 1 +fs_locations_info (see fs_locations_info f fs fs_ fs_l BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 8 (..). 5 7 0 0 0 0 1 +o Locking o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 5 11 no 0 10 0 0 0 0 1 +providing Transparent providing p pr pro prov BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 11 no 0 8 0 0 0 0 1 +Section 11.11. section S Se Sec Sect BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 11 .. 2 2 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 5 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 11 , 1 10 0 0 0 0 0 +[Page 251] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 5 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 5 0 no 0 4 0 0 0 0 1 +Of these, of O Of Of Of BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 0 , 1 8 0 0 0 0 1 +experience for experience e ex exp expe BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 0 -- 2 9 0 0 0 0 1 +before new before b be bef befo BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 0 ., 2 9 0 0 0 0 1 +degree of degree d de deg degr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 0 --., 4 10 0 0 0 0 1 +part in part p pa par part BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 0 ., 2 10 0 0 0 0 1 +the filehandles the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 0 , 1 9 0 0 0 0 1 +State Migration state S St Sta Stat BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 0 no 0 9 0 0 0 0 1 +functionality. functionality. functionality. f fu fun func BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 0 . 1 2 0 0 0 0 1 +It should it I It It It BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 2 no 0 10 0 0 0 0 1 +and that and a an and and BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 2 ., 2 9 0 0 0 0 1 +is some is i is is is BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 2 no 0 8 0 0 0 0 1 +transferred transparently, transferred t tr tra tran BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 2 , 1 10 0 0 0 0 1 +reclaimed, by reclaimed, r re rec recl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 2 ,- 2 9 0 0 0 0 1 +file system. file f fi fil file BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 2 . 1 1 0 0 0 0 1 +11.10.9.1. Leases 11.10.9.1. 1 11 11. 11.1 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 3 .... 4 10 0 0 0 0 1 +In the in I In In In BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 5 4 , 1 9 0 0 0 0 1 +requests for requests r re req requ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 5 4 no 0 9 0 0 0 0 1 +server. This server. s se ser serv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 4 .. 2 10 0 0 0 0 1 +client renews client c cl cli clie BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 4 no 0 9 0 0 0 0 1 +submitting a submitting s su sub subm BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 4 , 1 9 0 0 0 0 1 +specific file specific s sp spe spec BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 4 . 1 5 0 0 0 0 1 +In order in I In In In BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 5 5 no 0 9 0 0 0 0 1 +is locking is i is is is BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 5 , 1 9 0 0 0 0 1 +client must client c cl cli clie BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 5 . 1 10 0 0 0 0 1 +To accomplish to T To To To BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 5 , 1 10 0 0 0 0 1 +SEQ4_STATUS_LEASE_MOVED if seq4_status_lease_moved S SE SEQ SEQ4 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 5 no 0 9 0 0 0 0 1 +locking state locking l lo loc lock BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 5 . 1 8 0 0 0 0 1 +continue until continue c co con cont BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 5 no 0 10 0 0 0 0 1 +the file the t th the the BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 5 . 1 9 0 0 0 0 1 +When a when W Wh Whe When BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 8 no 0 9 0 0 0 0 1 +server, for server, s se ser serv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 8 , 1 9 0 0 0 0 1 +locking state, locking l lo loc lock BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 8 ,. 2 8 0 0 0 0 1 +simplicity, the simplicity, s si sim simp BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 8 ,, 2 9 0 0 0 0 1 +what is what w wh wha what BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 8 no 0 9 0 0 0 0 1 +which there which w wh whi whic BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 8 . 1 9 0 0 0 0 1 +client receives client c cl cli clie BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 8 , 1 10 0 0 0 0 1 +server will server s se ser serv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 8 . 1 9 0 0 0 0 1 +can terminate can c ca can can BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 8 no 0 8 0 0 0 0 1 +indication is indication i in ind indi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 8 ( 1 9 0 0 0 0 1 +for all for f fo for for BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 8 no 0 10 0 0 0 0 1 +server), since server), s se ser serv BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 8 ),. 3 10 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 5 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 11 , 1 10 0 0 0 0 0 +[Page 252] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 5 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 5 0 no 0 4 0 0 0 0 1 +A client a A A A A BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 1 0 0 0 0 0 5 0 () 2 9 0 0 0 0 1 +attribute on attribute a at att attr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 0 no 0 10 0 0 0 0 1 +single (or single s si sin sing BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 0 ()(), 5 9 0 0 0 0 1 +cause an cause c ca cau caus BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 0 ., 2 8 0 0 0 0 1 +operation that operation o op ope oper BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 0 , 1 9 0 0 0 0 1 +to clear to t to to to BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 0 . 1 7 0 0 0 0 1 +Once the once O On Onc Once BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 2 no 0 9 0 0 0 0 1 +determined, the determined, d de det dete BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 2 , 1 9 0 0 0 0 1 +new server new n ne new new BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 2 ( 1 7 0 0 0 0 1 +fs_locations_info attributes) fs_locations_info f fs fs_ fs_l BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 2 ) 1 9 0 0 0 0 1 +the new the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 2 , 1 10 0 0 0 0 1 +shows that shows s sh sho show BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 2 . 1 9 0 0 0 0 1 +not had not n no not not BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 2 , 1 9 0 0 0 0 1 +receive NFS4ERR_STALE_CLIENTID receive r re rec rece BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 2 , 1 9 0 0 0 0 1 +above, and above, a ab abo abov BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 2 , 1 9 0 0 0 0 1 +of server of o of of of BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 2 . 1 2 0 0 0 0 1 +11.10.9.2. Transitions 11.10.9.2. 1 11 11. 11.1 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 4 .... 4 10 0 0 0 0 1 +In order in I In In In BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 5 4 no 0 10 0 0 0 0 1 +case of case c ca cas case BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 5 4 , 1 9 0 0 0 0 1 +establish proper establish e es est esta BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 4 . 1 8 0 0 0 0 1 +When state when W Wh Whe When BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 5 , 1 9 0 0 0 0 1 +the correct the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 5 . 1 9 0 0 0 0 1 +attribute on attribute a at att attr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 5 no 0 10 0 0 0 0 1 +the source, the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 5 , 1 9 0 0 0 0 1 +lease granted lease l le lea leas BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 5 . 1 10 0 0 0 0 1 +is transferred is i is is is BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 5 , 1 9 0 0 0 0 1 +refetch the refetch r re ref refe BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 5 no 0 9 0 0 0 0 1 +previously fetched previously p pr pre prev BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 5 (). 3 6 0 0 0 0 1 +If state if I If If If BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 8 , 1 10 0 0 0 0 1 +associated servers associated a as ass asso BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 8 no 0 9 0 0 0 0 1 +strings or strings s st str stri BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 8 no 0 9 0 0 0 0 1 +new server, new n ne new new BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 8 , 1 9 0 0 0 0 1 +new (i.e., new n ne new new BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 8 (..,), 6 9 0 0 0 0 1 +requests. However, requests. r re req requ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 8 ., 2 9 0 0 0 0 1 +least as least l le lea leas BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 8 , 1 9 0 0 0 0 1 +ensure that ensure e en ens ensu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 8 no 0 9 0 0 0 0 1 +potentially conflicting potentially p po pot pote BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 8 -. 2 8 0 0 0 0 1 +11.11. Transferring 11.11. 1 11 11. 11.1 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 10 .. 2 10 0 0 0 0 1 +When the when W Wh Whe When BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 10 - 1 10 0 0 0 0 1 +transition access transition t tr tra tran BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 10 no 0 9 0 0 0 0 1 +implemented appropriate implemented i im imp impl BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 10 -,: 3 8 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 5 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 11 , 1 10 0 0 0 0 0 +[Page 253] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 5 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 5 0 no 0 4 0 0 0 0 1 +o Transfer o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 5 0 , 1 10 0 0 0 0 1 +in a in i in in in BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 5 0 no 0 8 0 0 0 0 1 +Migration in migration M Mi Mig Migr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 0 .,[]. 5 7 0 0 0 0 1 +responsibilities are responsibilities r re res resp BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 0 ... 3 7 0 0 0 0 1 +o Transfer o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 5 1 . 1 10 0 0 0 0 1 +Server responsibilities server S Se Ser Serv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 5 1 no 0 9 0 0 0 0 1 +in Section in i in in in BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 5 1 ... 3 2 0 0 0 0 1 +The means the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 2 no 0 10 0 0 0 0 1 +events has events e ev eve even BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 5 2 .. 2 8 0 0 0 0 1 +11.11.1. Transparent 11.11.1. 1 11 11. 11.1 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 3 ... 3 10 0 0 0 0 1 +When pNFS when W Wh Whe When BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 3 ,: 2 10 0 0 0 0 1 +o Migration o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 5 3 (), 3 10 0 0 0 0 1 +(DS's) in (ds's) ( (D (DS (DS' BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 3 ('). 4 2 0 0 0 0 1 +o Migration o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 5 4 , 1 10 0 0 0 0 1 +associated DS's. associated a as ass asso BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 4 '. 2 2 0 0 0 0 1 +o Replacement o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 5 4 . 1 10 0 0 0 0 1 +o Migration o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 5 4 . 1 10 0 0 0 0 1 +o Migration o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 5 5 no 0 10 0 0 0 0 1 +are available. are a ar are are BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 5 . 1 2 0 0 0 0 1 +Note that note N No Not Note BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 5 no 0 9 0 0 0 0 1 +MDS function. mds M MD MDS MDS BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 5 5 . 1 9 0 0 0 0 1 +from one from f fr fro from BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 5 , 1 10 0 0 0 0 1 +location attributes. location l lo loc loca BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 5 ./ 2 10 0 0 0 0 1 +revoking existing revoking r re rev revo BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 5 no 0 9 0 0 0 0 1 +server. server. server. s se ser serv BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 5 . 1 1 0 0 0 0 1 +Migration of migration M Mi Mig Migr BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 7 no 0 9 0 0 0 0 1 +State Migration. state S St Sta Stat BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 7 . 1 8 0 0 0 0 1 +transferred, just transferred, t tr tra tran BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 7 ,., 3 9 0 0 0 0 1 +Migration provides migration M Mi Mig Migr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 7 ,- 2 10 0 0 0 0 1 +data transfer, data d da dat data BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 7 ,. 2 7 0 0 0 0 1 +Migration of migration M Mi Mig Migr BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 9 no 0 9 0 0 0 0 1 +by recalling by b by by by BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 9 no 0 8 0 0 0 0 1 +migration process. migration m mi mig migr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 9 ., 2 9 0 0 0 0 1 +during the during d du dur duri BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 9 , 1 10 0 0 0 0 1 +client is client c cl cli clie BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 9 . 1 9 0 0 0 0 1 +sort of sort s so sor sort BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 9 no 0 9 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 5 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 11 , 1 10 0 0 0 0 0 +[Page 254] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 5 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 5 0 no 0 4 0 0 0 0 1 +State Migration, state S St Sta Stat BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 0 , 1 10 0 0 0 0 1 +locking state. locking l lo loc lock BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 0 . 1 2 0 0 0 0 1 +In order in I In In In BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 5 0 no 0 9 0 0 0 0 1 +supported, clients supported, s su sup supp BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 0 , 1 9 0 0 0 0 1 +layouts are layouts l la lay layo BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 0 no 0 10 0 0 0 0 1 +and so and a an and and BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 0 , 1 9 0 0 0 0 1 +depending on depending d de dep depe BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 0 . 1 5 0 0 0 0 1 +Replacement of replacement R Re Rep Repl BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 2 no 0 9 0 0 0 0 1 +such but such s su suc such BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 2 no 0 10 0 0 0 0 1 +replaced and replaced r re rep repl BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 2 . 1 9 0 0 0 0 1 +Migration may migration M Mi Mig Migr BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 3 no 0 9 0 0 0 0 1 +support pNFS support s su sup supp BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 5 3 . 1 9 0 0 0 0 1 +situation, clients situation, s si sit situ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 3 ,, 2 10 0 0 0 0 1 +absence should absence a ab abs abse BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 3 no 0 9 0 0 0 0 1 +and be and a an and and BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 3 no 0 8 0 0 0 0 1 +destination. destination. destination. d de des dest BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 3 . 1 1 0 0 0 0 1 +11.12. Client 11.12. 1 11 11. 11.1 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 4 .. 2 10 0 0 0 0 1 +For a for F Fo For For BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 5 , 1 10 0 0 0 0 1 +of it. of o of of of BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 5 . 1 8 0 0 0 0 1 +Section 11.12.1 section S Se Sec Sect BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 5 .. 2 9 0 0 0 0 1 +system access system s sy sys syst BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 5 no 0 9 0 0 0 0 1 +additional activity additional a ad add addi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 5 no 0 10 0 0 0 0 1 +that have that t th tha that BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 5 ... 3 9 0 0 0 0 1 +discussion of discussion d di dis disc BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 5 no 0 8 0 0 0 0 1 +determined. Sections determined. d de det dete BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 5 ..... 5 9 0 0 0 0 1 +should deal should s sh sho shou BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 5 , 1 10 0 0 0 0 1 +or as or o or or or BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 5 . 1 5 0 0 0 0 1 +The following the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 8 : 1 10 0 0 0 0 1 +o "Transition o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 5 8 "" 2 10 0 0 0 0 1 +a file a a a a a BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 1 0 0 0 0 0 5 8 . 1 7 0 0 0 0 1 +o "Migration o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 5 9 "" 2 10 0 0 0 0 1 +applies when applies a ap app appl BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 9 . 1 9 0 0 0 0 1 +o "Migration o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 5 9 "" 2 10 0 0 0 0 1 +file system(s) file f fi fil file BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 9 (). 3 9 0 0 0 0 1 +situation in situation s si sit situ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 9 no 0 9 0 0 0 0 1 +accessed for accessed a ac acc acce BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 9 , 1 9 0 0 0 0 1 +migration might migration m mi mig migr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 9 no 0 9 0 0 0 0 1 +renewing the renewing r re ren rene BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 9 . 1 9 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 5 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 11 , 1 10 0 0 0 0 0 +[Page 255] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 5 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 5 0 no 0 4 0 0 0 0 1 +11.12.1. Client 11.12.1. 1 11 11. 11.1 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 0 ... 3 10 0 0 0 0 1 +When there when W Wh Whe When BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 0 no 0 9 0 0 0 0 1 +to use to t to to to BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 0 , 1 10 0 0 0 0 1 +indications with indications i in ind indi BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 0 : 1 6 0 0 0 0 1 +o If o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 5 1 no 0 10 0 0 0 0 1 +system that system s sy sys syst BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 1 no 0 9 0 0 0 0 1 +to access to t to to to BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 1 ,. 2 7 0 0 0 0 1 +Exceptions are exceptions E Ex Exc Exce BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 2 no 0 10 0 0 0 0 1 +interrogating a interrogating i in int inte BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 2 . 1 10 0 0 0 0 1 +client to client c cl cli clie BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 2 ' 1 9 0 0 0 0 1 +access path. access a ac acc acce BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 2 . 1 2 0 0 0 0 1 +This condition this T Th Thi This BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 3 no 0 10 0 0 0 0 1 +system in system s sy sys syst BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 3 . 1 9 0 0 0 0 1 +is to is i is is is BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 3 no 0 9 0 0 0 0 1 +server location server s se ser serv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 3 no 0 10 0 0 0 0 1 +which it which w wh whi whic BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 3 . 1 4 0 0 0 0 1 +o Whenever o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 5 4 no 0 9 0 0 0 0 1 +which generated which w wh whi whic BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 4 no 0 10 0 0 0 0 1 +a file a a a a a BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 1 0 0 0 0 0 5 4 no 0 9 0 0 0 0 1 +it was it i it it it BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 4 ,- 2 9 0 0 0 0 1 +migrated indication, migrated m mi mig migr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 4 , 1 9 0 0 0 0 1 +being set. being b be bei bein BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 4 . 1 1 0 0 0 0 1 +This condition this T Th Thi This BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 6 no 0 8 0 0 0 0 1 +notification by notification n no not noti BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 6 no 0 9 0 0 0 0 1 +file system file f fi fil file BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 6 . 1 9 0 0 0 0 1 +there are there t th the ther BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 6 , 1 9 0 0 0 0 1 +each such each e ea eac each BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 6 . 1 9 0 0 0 0 1 +for all for f fo for for BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 6 no 0 10 0 0 0 0 1 +the condition. the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 6 ., 2 9 0 0 0 0 1 +needs to needs n ne nee need BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 6 no 0 9 0 0 0 0 1 +file system file f fi fil file BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 6 no 0 9 0 0 0 0 1 +needlessly expired. needlessly n ne nee need BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 6 . 1 2 0 0 0 0 1 +Unlike the unlike U Un Unl Unli BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 8 ., 2 10 0 0 0 0 1 +both errors both b bo bot both BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 8 ,., 3 9 0 0 0 0 1 +and often and a an and and BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 8 ,. 2 9 0 0 0 0 1 +result, implementations result, r re res resu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 8 ,- 2 9 0 0 0 0 1 +ordinate the ordinate o or ord ordi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 8 no 0 9 0 0 0 0 1 +in the in i in in in BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 5 8 . 1 9 0 0 0 0 1 +processing an processing p pr pro proc BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 8 , 1 10 0 0 0 0 1 +SEQ4_STATUS_LEASE_MOVED is seq4_status_lease_moved S SE SEQ SEQ4 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 8 no 0 9 0 0 0 0 1 +system will system s sy sys syst BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 8 . 1 10 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 5 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 11 , 1 10 0 0 0 0 0 +[Page 256] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 5 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 5 0 no 0 4 0 0 0 0 1 +Since these since S Si Sin Sinc BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 0 ., 2 10 0 0 0 0 1 +following combinations following f fo fol foll BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 0 no 0 9 0 0 0 0 1 +issued: issued: issued: i is iss issu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 0 : 1 1 0 0 0 0 1 +o The o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 5 1 no 0 10 0 0 0 0 1 +is asserted. is i is is is BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 1 . 1 1 0 0 0 0 1 +In this in I In In In BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 5 1 ,. 2 8 0 0 0 0 1 +possible that possible p po pos poss BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 1 , 1 9 0 0 0 0 1 +likely that likely l li lik like BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 1 . 1 9 0 0 0 0 1 +any case, any a an any any BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 1 , 1 9 0 0 0 0 1 +the rejected the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 1 , 1 10 0 0 0 0 1 +it will it i it it it BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 1 . 1 8 0 0 0 0 1 +o The o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 5 3 no 0 10 0 0 0 0 1 +is clear. is i is is is BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 3 . 1 1 0 0 0 0 1 +In this in I In In In BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 5 3 ,. 2 9 0 0 0 0 1 +that migration that t th tha that BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 3 no 0 9 0 0 0 0 1 +have been have h ha hav have BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 3 . 1 9 0 0 0 0 1 +Cases in cases C Ca Cas Case BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 3 no 0 9 0 0 0 0 1 +migration for migration m mi mig migr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 3 . 1 9 0 0 0 0 1 +can also can c ca can can BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 3 no 0 9 0 0 0 0 1 +than migration than t th tha than BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 3 ., 2 9 0 0 0 0 1 +there is there t th the ther BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 3 , 1 9 0 0 0 0 1 +remains associated remains r re rem rema BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 3 no 0 10 0 0 0 0 1 +path has path p pa pat path BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 3 . 1 2 0 0 0 0 1 +o The o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 5 7 no 0 10 0 0 0 0 1 +SEQ4_STATUS_LEASE_MOVED is seq4_status_lease_moved S SE SEQ SEQ4 BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 7 . 1 7 0 0 0 0 1 +In this in I In In In BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 5 7 , 1 10 0 0 0 0 1 +file system(s) file f fi fil file BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 7 ()., 4 9 0 0 0 0 1 +avoidable lease avoidable a av avo avoi BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 7 , 1 10 0 0 0 0 1 +o The o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 5 8 no 0 10 0 0 0 0 1 +SEQ4_STATUS_LEASE_MOVED is seq4_status_lease_moved S SE SEQ SEQ4 BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 8 . 1 7 0 0 0 0 1 +In this in I In In In BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 5 8 ,- 2 10 0 0 0 0 1 +discovery is discovery d di dis disc BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 8 . 1 3 0 0 0 0 1 +Note that note N No Not Note BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 9 no 0 10 0 0 0 0 1 +already going already a al alr alre BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 9 ., 2 9 0 0 0 0 1 +accessing a accessing a ac acc acce BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 9 no 0 9 0 0 0 0 1 +on, the on, o on on, on, BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 9 , 1 9 0 0 0 0 1 +the receipt the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 9 no 0 9 0 0 0 0 1 +initiate migration initiate i in ini init BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 9 no 0 9 0 0 0 0 1 +already underway already a al alr alre BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 9 . 1 4 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 5 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 11 , 1 10 0 0 0 0 0 +[Page 257] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 5 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 5 0 no 0 4 0 0 0 0 1 +The fact the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 0 - 1 10 0 0 0 0 1 +in NFSv4.1 in i in in in BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 5 0 .. 2 9 0 0 0 0 1 +the fact, the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 0 ,, 2 10 0 0 0 0 1 +exclusive, there exclusive, e ex exc excl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 0 , 1 8 0 0 0 0 1 +considering implementation considering c co con cons BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 0 , 1 9 0 0 0 0 1 +Section 11.12.2. section S Se Sec Sect BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 0 ... 3 2 0 0 0 0 1 +Because of because B Be Bec Beca BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 2 , 1 9 0 0 0 0 1 +file systems file f fi fil file BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 2 no 0 9 0 0 0 0 1 +accessed on accessed a ac acc acce BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 2 no 0 9 0 0 0 0 1 +other file other o ot oth othe BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 2 ., 2 10 0 0 0 0 1 +while, while, while, w wh whi whil BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 2 , 1 1 0 0 0 0 1 +o The o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 5 3 . 1 10 0 0 0 0 1 +o The o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 5 4 no 0 10 0 0 0 0 1 +systems connected systems s sy sys syst BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 5 4 . 1 5 0 0 0 0 1 +11.12.2. Performing 11.12.2. 1 11 11. 11.1 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 4 ... 3 10 0 0 0 0 1 +Migration discovery migration M Mi Mig Migr BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 4 no 0 8 0 0 0 0 1 +transition recovery, transition t tr tra tran BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 4 , 1 10 0 0 0 0 1 +to be to t to to to BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 4 ., 2 9 0 0 0 0 1 +a separate a a a a a BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 1 0 0 0 0 0 5 4 , 1 9 0 0 0 0 1 +to be to t to to to BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 4 no 0 9 0 0 0 0 1 +recovery. recovery. recovery. r re rec reco BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 4 . 1 1 0 0 0 0 1 +In either in I In In In BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 5 6 ,- 2 10 0 0 0 0 1 +in an in i in in in BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 5 6 . 1 9 0 0 0 0 1 +normally, with normally, n no nor norm BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 6 , 1 9 0 0 0 0 1 +received, raising received, r re rec rece BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 6 , 1 9 0 0 0 0 1 +with. In with. w wi wit with BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 6 ., 2 2 0 0 0 0 1 +o No o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 5 8 no 0 10 0 0 0 0 1 +those performing those t th tho thos BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 8 , 1 9 0 0 0 0 1 +work will work w wo wor work BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 8 . 1 4 0 0 0 0 1 +o In o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 5 9 no 0 9 0 0 0 0 1 +performed, nothing performed, p pe per perf BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 9 , 1 9 0 0 0 0 1 +lease migration lease l le lea leas BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 9 , 1 9 0 0 0 0 1 +the migration the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 9 . 1 10 0 0 0 0 1 +See below see S Se See See BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 5 9 . 1 3 0 0 0 0 1 +o For o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 5 10 , 1 8 0 0 0 0 1 +appropriate response appropriate a ap app appr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 10 no 0 9 0 0 0 0 1 +execution of execution e ex exe exec BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 10 no 0 10 0 0 0 0 1 +the server the t th the the BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 10 . 1 7 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 5 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 11 , 1 10 0 0 0 0 0 +[Page 258] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 5 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 5 0 no 0 4 0 0 0 0 1 +This leaves this T Th Thi This BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 0 no 0 8 0 0 0 0 1 +migration discovery migration m mi mig migr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 0 no 0 9 0 0 0 0 1 +operating. One operating. o op ope oper BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 0 . 1 9 0 0 0 0 1 +migration discovery migration m mi mig migr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 0 no 0 9 0 0 0 0 1 +of additional of o of of of BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 0 . 1 9 0 0 0 0 1 +further complexity further f fu fur furt BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 0 no 0 9 0 0 0 0 1 +lease-migrated indication lease-migrated l le lea leas BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 0 -' 2 10 0 0 0 0 1 +the SEQUENCE the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 0 , 1 9 0 0 0 0 1 +that in that t th tha that BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 0 . 1 9 0 0 0 0 1 +migration events migration m mi mig migr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 0 , 1 9 0 0 0 0 1 +indication may indication i in ind indi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 0 no 0 9 0 0 0 0 1 +before the before b be bef befo BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 0 , 1 10 0 0 0 0 1 +ensure that ensure e en ens ensu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 0 . 1 10 0 0 0 0 1 +A useful a A A A A BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 1 0 0 0 0 0 5 4 no 0 8 0 0 0 0 1 +externally-visible migration externally-visible e ex ext exte BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 4 -. 2 9 0 0 0 0 1 +Separate values separate S Se Sep Sepa BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 4 no 0 10 0 0 0 0 1 +migration discovery migration m mi mig migr BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 4 : 1 6 0 0 0 0 1 +o non-operation, o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 5 5 -, 2 10 0 0 0 0 1 +o normal o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 5 6 , 1 10 0 0 0 0 1 +file systems. file f fi fil file BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 6 . 1 2 0 0 0 0 1 +o completion/verification o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 5 6 /, 2 10 0 0 0 0 1 +which the which w wh whi whic BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 6 no 0 10 0 0 0 0 1 +needs to needs n ne nee need BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 6 . 1 3 0 0 0 0 1 +Given that given G Gi Giv Give BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 7 , 1 10 0 0 0 0 1 +follows. follows. follows. f fo fol foll BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 7 . 1 1 0 0 0 0 1 +o While o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 5 7 -, 2 9 0 0 0 0 1 +discovery would discovery d di dis disc BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 7 , 1 10 0 0 0 0 1 +client on client c cl cli clie BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 7 , 1 9 0 0 0 0 1 +attribute plus attribute a at att attr BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 7 . 1 6 0 0 0 0 1 +o If o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 5 8 no 0 9 0 0 0 0 1 +migrated one migrated m mi mig migr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 8 (..! 4 8 0 0 0 0 1 +STATUS4_REFERRAL) and status4_referral) S ST STA STAT BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 8 ) 1 10 0 0 0 0 1 +file system file f fi fil file BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 8 no 0 9 0 0 0 0 1 +contributing to contributing c co con cont BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 8 -. 2 7 0 0 0 0 1 +o In o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 5 10 , 1 9 0 0 0 0 1 +the lease-migrated the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 10 - 1 9 0 0 0 0 1 +the completion/verification the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 10 / 1 10 0 0 0 0 1 +to see to t to to to BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 10 . 1 8 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 5 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 11 , 1 10 0 0 0 0 0 +[Page 259] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 5 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 5 0 no 0 4 0 0 0 0 1 +o When o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 5 0 / 1 9 0 0 0 0 1 +state, if state, s st sta stat BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 0 ,- 2 10 0 0 0 0 1 +that it that t th tha that BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 0 ., 2 9 0 0 0 0 1 +is used is i is is is BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 0 ,. 2 8 0 0 0 0 1 +When the when W Wh Whe When BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 1 /: 2 10 0 0 0 0 1 +o If o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 5 2 -, 2 8 0 0 0 0 1 +continues normally. continues c co con cont BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 2 . 1 9 0 0 0 0 1 +have traversed, have h ha hav have BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 2 , 1 10 0 0 0 0 1 +process was process p pr pro proc BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 2 . 1 3 0 0 0 0 1 +o Otherwise, o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 5 3 ,- 2 10 0 0 0 0 1 +migrated indication migrated m mi mig migr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 3 , 1 9 0 0 0 0 1 +cleared and cleared c cl cle clea BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 3 . 1 8 0 0 0 0 1 +process remains process p pr pro proc BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 3 /. 2 7 0 0 0 0 1 +o If o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 5 4 -, 2 9 0 0 0 0 1 +migration discovery migration m mi mig migr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 4 - 1 10 0 0 0 0 1 +operating state. operating o op ope oper BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 4 .,- 3 9 0 0 0 0 1 +migrated indication migrated m mi mig migr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 4 no 0 8 0 0 0 0 1 +process. process. process. p pr pro proc BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 4 . 1 1 0 0 0 0 1 +It should it I It It It BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 5 no 0 10 0 0 0 0 1 +to terminate, to t to to to BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 5 , 1 8 0 0 0 0 1 +continually delay continually c co con cont BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 5 . 1 9 0 0 0 0 1 +prevent unnecessary prevent p pr pre prev BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 5 , 1 9 0 0 0 0 1 +to use to t to to to BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 5 no 0 8 0 0 0 0 1 +immediately, rather immediately, i im imm imme BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 5 , 1 9 0 0 0 0 1 +indication when indication i in ind indi BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 5 . 1 8 0 0 0 0 1 +11.12.3. Overview 11.12.3. 1 11 11. 11.1 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 8 ... 3 10 0 0 0 0 1 +This section this T Th Thi This BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 8 no 0 8 0 0 0 0 1 +NFS4ERR_MOVED can nfs4err_moved N NF NFS NFS4 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 8 no 0 10 0 0 0 0 1 +server endpoint server s se ser serv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 8 ., 2 9 0 0 0 0 1 +will determine: will w wi wil will BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 5 8 : 1 2 0 0 0 0 1 +o Whether o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 5 9 , 1 9 0 0 0 0 1 +whether it whether w wh whe whet BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 9 no 0 10 0 0 0 0 1 +as discussed as a as as as BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 9 .. 2 5 0 0 0 0 1 +o In o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 5 10 , 1 10 0 0 0 0 1 +occurred. occurred. occurred. o oc occ occu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 10 . 1 1 0 0 0 0 1 +o Whether o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 5 11 no 0 10 0 0 0 0 1 +State Migration. state S St Sta Stat BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 11 . 1 2 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 5 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 11 , 1 10 0 0 0 0 0 +[Page 260] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 5 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 5 0 no 0 4 0 0 0 0 1 +o Whether o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 5 0 no 0 10 0 0 0 0 1 +State Migration. state S St Sta Stat BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 0 . 1 2 0 0 0 0 1 +During the during D Du Dur Duri BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 0 , 1 9 0 0 0 0 1 +examine file examine e ex exa exam BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 0 no 0 9 0 0 0 0 1 +address it address a ad add addr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 0 no 0 9 0 0 0 0 1 +replacement. For replacement. r re rep repl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 0 ., 2 10 0 0 0 0 1 +process consists process p pr pro proc BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 0 : 1 4 0 0 0 0 1 +1. Performing 1. 1 1. 1. 1. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 1 .. 2 10 0 0 0 0 1 +operation is operation o op ope oper BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 1 ( 1 9 0 0 0 0 1 +client_owner4) with client_owner4) c cl cli clie BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 1 ), 2 9 0 0 0 0 1 +subsequently to subsequently s su sub subs BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 1 ,' 2 9 0 0 0 0 1 +confirmation status, confirmation c co con conf BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 1 , 1 9 0 0 0 0 1 +the purpose the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 1 no 0 9 0 0 0 0 1 +previously being previously p pr pre prev BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 1 (.. 3 9 0 0 0 0 1 +represents another represents r re rep repr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 1 no 0 9 0 0 0 0 1 +and can and a an and and BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 1 ). 2 5 0 0 0 0 1 +2. Making 2. 2 2. 2. 2. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 4 . 1 9 0 0 0 0 1 +occurred. The occurred. o oc occ occu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 4 . 1 9 0 0 0 0 1 +EXCHANGE_ID results exchange_id E EX EXC EXCH BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 5 4 no 0 10 0 0 0 0 1 +server-trunkable with server-trunkable s se ser serv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 4 - 1 9 0 0 0 0 1 +access was access a ac acc acce BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 4 ., 2 9 0 0 0 0 1 +migration has migration m mi mig migr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 4 ., 2 9 0 0 0 0 1 +dealt with, dealt d de dea deal BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 4 ,, 2 10 0 0 0 0 1 +to the to t to to to BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 4 no 0 9 0 0 0 0 1 +address. address. address. a ad add addr BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 4 . 1 1 0 0 0 0 1 +3. Obtaining 3. 3 3. 3. 3. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 6 . 1 9 0 0 0 0 1 +sessions. How sessions. s se ses sess BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 6 . 1 9 0 0 0 0 1 +of whether of o of of of BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 6 no 0 10 0 0 0 0 1 +Section 11.12.4 section S Se Sec Sect BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 6 .. 2 10 0 0 0 0 1 +Section 11.12.5 section S Se Sec Sect BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 6 .. 2 9 0 0 0 0 1 +without migration. without w wi wit with BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 6 . 1 2 0 0 0 0 1 +4. Verification 4. 4 4. 4. 4. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 8 . 1 10 0 0 0 0 1 +discussed in discussed d di dis disc BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 8 .... 4 9 0 0 0 0 1 +confirm the confirm c co con conf BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 8 , 1 8 0 0 0 0 1 +verification to verification v ve ver veri BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 5 8 no 0 8 0 0 0 0 1 +determination that determination d de det dete BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 8 () 2 9 0 0 0 0 1 +has occurred has h ha has has BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 8 no 0 9 0 0 0 0 1 +occurred. There occurred. o oc occ occu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 8 ., 2 9 0 0 0 0 1 +be possible be b be be be BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 8 . 1 9 0 0 0 0 1 +5. Obtaining 5. 5 5. 5. 5. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 10 ./. 3 10 0 0 0 0 1 +How this how H Ho How How BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 10 no 0 9 0 0 0 0 1 +migration has migration m mi mig migr BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 10 no 0 8 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 5 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 11 , 1 10 0 0 0 0 0 +[Page 261] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 5 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 5 0 no 0 4 0 0 0 0 1 +Section 11.12.4 section S Se Sec Sect BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 0 .. 2 9 0 0 0 0 1 +Section 11.12.5 section S Se Sec Sect BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 0 .. 2 10 0 0 0 0 1 +migration. migration. migration. m mi mig migr BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 0 . 1 1 0 0 0 0 1 +Once the once O On Onc Once BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 1 , 1 9 0 0 0 0 1 +apply an apply a ap app appl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 1 no 0 9 0 0 0 0 1 +with it with w wi wit with BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 1 (-- 3 9 0 0 0 0 1 +addresses depending addresses a ad add addr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 1 ). 2 9 0 0 0 0 1 +During this during D Du Dur Duri BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 1 , 1 10 0 0 0 0 1 +examined using examined e ex exa exam BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 1 : 1 8 0 0 0 0 1 +A: Before a: A A: A: A: BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 5 2 :, 2 9 0 0 0 0 1 +examined and examined e ex exa exam BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 2 , 1 10 0 0 0 0 1 +entry is entry e en ent entr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 2 ., 2 10 0 0 0 0 1 +above. above. above. a ab abo abov BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 2 . 1 1 0 0 0 0 1 +B: In b: B B: B: B: BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 5 3 :- 2 10 0 0 0 0 1 +one used one o on one one BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 3 no 0 10 0 0 0 0 1 +session using session s se ses sess BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 3 ., 2 9 0 0 0 0 1 +operation fails, operation o op ope oper BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 3 ,. 2 6 0 0 0 0 1 +C: The c: C C: C: C: BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 5 5 :. 2 10 0 0 0 0 1 +However, if however, H Ho How Howe BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 5 ,, 2 9 0 0 0 0 1 +entry is entry e en ent entr BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 5 . 1 2 0 0 0 0 1 +11.12.4. Obtaining 11.12.4. 1 11 11. 11.1 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 5 ... 3 10 0 0 0 0 1 +In the in I In In In BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 5 6 , 1 9 0 0 0 0 1 +involve determining involve i in inv invo BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 6 . 1 10 0 0 0 0 1 +This decision this T Th Thi This BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 6 no 0 8 0 0 0 0 1 +EXCHANGE_ID and exchange_id E EX EXC EXCH BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 5 6 . 1 7 0 0 0 0 1 +o If o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 5 7 no 0 10 0 0 0 0 1 +to the to t to to to BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 7 ,. 2 9 0 0 0 0 1 +o If o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 5 8 no 0 10 0 0 0 0 1 +client, then client, c cl cli clie BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 8 , 1 9 0 0 0 0 1 +existing client existing e ex exi exis BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 8 no 0 9 0 0 0 0 1 +server. In server. s se ser serv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 8 ., 2 9 0 0 0 0 1 +might or might m mi mig migh BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 8 no 0 9 0 0 0 0 1 +it has it i it it it BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 8 no 0 9 0 0 0 0 1 +client is client c cl cli clie BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 8 . 1 6 0 0 0 0 1 +o If o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 5 10 no 0 10 0 0 0 0 1 +the client, the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 10 , 1 9 0 0 0 0 1 +transferred as transferred t tr tra tran BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 10 . 1 8 0 0 0 0 1 +transferred client transferred t tr tra tran BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 10 , 1 8 0 0 0 0 1 +occurred although occurred o oc occ occu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 10 . 1 7 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 5 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 11 , 1 10 0 0 0 0 0 +[Page 262] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 5 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 5 0 no 0 4 0 0 0 0 1 +Once the once O On Onc Once BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 0 , 1 9 0 0 0 0 1 +access to access a ac acc acce BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 0 . 1 10 0 0 0 0 1 +any of any a an any any BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 0 , 1 9 0 0 0 0 1 +it is it i it it it BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 0 . 1 9 0 0 0 0 1 +that possibility, that t th tha that BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 0 ,,, 3 9 0 0 0 0 1 +BIND_CONN_TO_SESSION to bind_conn_to_session B BI BIN BIND BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 5 0 no 0 8 0 0 0 0 1 +connection to connection c co con conn BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 0 ., 2 9 0 0 0 0 1 +that the that t th tha that BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 0 no 0 10 0 0 0 0 1 +be created be b be be be BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 0 . 1 4 0 0 0 0 1 +In some in I In In In BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 5 2 , 1 9 0 0 0 0 1 +succeed without succeed s su suc succ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 2 . 1 9 0 0 0 0 1 +has taken has h ha has has BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 2 no 0 10 0 0 0 0 1 +set of set s se set set BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 2 , 1 9 0 0 0 0 1 +of a of o of of of BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 2 . 1 10 0 0 0 0 1 +In that in I In In In BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 5 2 ,, 2 9 0 0 0 0 1 +there could there t th the ther BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 2 no 0 8 0 0 0 0 1 +sessionid. In sessionid. s se ses sess BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 2 ., 2 9 0 0 0 0 1 +when the when w wh whe when BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 2 no 0 9 0 0 0 0 1 +session. When session. s se ses sess BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 2 ., 2 10 0 0 0 0 1 +cease using cease c ce cea ceas BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 2 . 1 4 0 0 0 0 1 +Once the once O On Onc Once BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 5 , 1 9 0 0 0 0 1 +determined that determined d de det dete BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 5 ,- 2 9 0 0 0 0 1 +establish its establish e es est esta BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 5 ,. 2 10 0 0 0 0 1 +without loss without w wi wit with BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 5 , 1 9 0 0 0 0 1 +destination server destination d de des dest BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 5 - 1 10 0 0 0 0 1 +cases in cases c ca cas case BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 5 , 1 9 0 0 0 0 1 +Transparent State transparent T Tr Tra Tran BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 5 . 1 7 0 0 0 0 1 +Clients need clients C Cl Cli Clie BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 7 : 1 10 0 0 0 0 1 +o In o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 5 8 , 1 10 0 0 0 0 1 +attempted Transparent attempted a at att atte BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 8 , 1 9 0 0 0 0 1 +have been have h ha hav have BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 8 . 1 10 0 0 0 0 1 +To determine to T To To To BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 8 , 1 8 0 0 0 0 1 +TEST_STATEID to test_stateid T TE TES TEST BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 5 8 no 0 9 0 0 0 0 1 +server are server s se ser serv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 8 . 1 9 0 0 0 0 1 +single stateid single s si sin sing BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 8 , 1 10 0 0 0 0 1 +client can client c cl cli clie BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 8 no 0 10 0 0 0 0 1 +any failure any a an any any BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 8 no 0 9 0 0 0 0 1 +the SEQ4_STATUS the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 8 ., 2 9 0 0 0 0 1 +not occurred. not n no not not BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 8 . 1 2 0 0 0 0 1 +o In o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 5 10 , 1 10 0 0 0 0 1 +the client the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 10 - 1 8 0 0 0 0 1 +destination server destination d de des dest BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 10 no 0 9 0 0 0 0 1 +server. server. server. s se ser serv BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 10 . 1 1 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 5 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 11 , 1 10 0 0 0 0 0 +[Page 263] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 5 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 5 0 no 0 4 0 0 0 0 1 +o In o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 5 0 , 1 10 0 0 0 0 1 +no lock no n no no no BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 0 (), 3 9 0 0 0 0 1 +reclaim is reclaim r re rec recl BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 0 . 1 3 0 0 0 0 1 +o In o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 5 1 , 1 10 0 0 0 0 1 +some lock some s so som some BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 1 (), 3 10 0 0 0 0 1 +stateids need stateids s st sta stat BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 1 , 1 9 0 0 0 0 1 +reclaim used reclaim r re rec recl BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 1 -. 2 8 0 0 0 0 1 +For all for F Fo For For BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 2 , 1 10 0 0 0 0 1 +of TRUE of o of of of BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 2 no 0 8 0 0 0 0 1 +including obtaining including i in inc incl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 2 . 1 9 0 0 0 0 1 +if no if i if if if BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 2 . 1 9 0 0 0 0 1 +11.12.5. Obtaining 11.12.5. 1 11 11. 11.1 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 3 ... 3 10 0 0 0 0 1 +Transfer Transfer transfer T Tr Tra Tran BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 3 no 0 1 0 0 0 0 1 +The case the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 4 no 0 9 0 0 0 0 1 +without migration without w wi wit with BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 4 .. 2 9 0 0 0 0 1 +above in above a ab abo abov BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 4 no 0 10 0 0 0 0 1 +locking state. locking l lo loc lock BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 4 ., 2 8 0 0 0 0 1 +depending on depending d de dep depe BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 4 no 0 9 0 0 0 0 1 +NFS4ERR_MOVED and nfs4err_moved N NF NFS NFS4 BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 4 no 0 8 0 0 0 0 1 +To make to T To To To BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 5 , 1 10 0 0 0 0 1 +used to used u us use used BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 5 . 1 9 0 0 0 0 1 +fails, should fails, f fa fai fail BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 5 ,. 2 9 0 0 0 0 1 +that in that t th tha that BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 5 .., 3 9 0 0 0 0 1 +that preservation that t th tha that BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 5 no 0 9 0 0 0 0 1 +on the on o on on on BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 5 . 1 3 0 0 0 0 1 +Access to access A Ac Acc Acce BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 7 no 0 9 0 0 0 0 1 +beyond access beyond b be bey beyo BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 7 ., 2 10 0 0 0 0 1 +be checked be b be be be BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 7 , 1 9 0 0 0 0 1 +locks after locks l lo loc lock BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 7 , 1 10 0 0 0 0 1 +locking state locking l lo loc lock BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 7 . 1 3 0 0 0 0 1 +11.13. Server 11.13. 1 11 11. 11.1 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 8 .. 2 10 0 0 0 0 1 +In the in I In In In BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 5 9 , 1 9 0 0 0 0 1 +the destination the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 9 , 1 10 0 0 0 0 1 +client continued client c cl cli clie BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 9 no 0 9 0 0 0 0 1 +server. There server. s se ser serv BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 9 .: 2 6 0 0 0 0 1 +o By o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 5 10 -, 2 10 0 0 0 0 1 +the ability the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 10 , 1 9 0 0 0 0 1 +would have would w wo wou woul BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 10 no 0 8 0 0 0 0 1 +restart. See restart. r re res rest BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 10 .... 4 9 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 5 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 11 , 1 10 0 0 0 0 0 +[Page 264] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 5 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 5 0 no 0 4 0 0 0 0 1 +o By o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 5 0 no 0 10 0 0 0 0 1 +with session with w wi wit with BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 0 , 1 8 0 0 0 0 1 +immediate access immediate i im imm imme BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 0 , 1 9 0 0 0 0 1 +the destination. the t th the the BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 0 . 1 2 0 0 0 0 1 +These features these T Th The Thes BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 1 .. 2 10 0 0 0 0 1 +11.13.3, which 11.13.3, 1 11 11. 11.1 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 1 .., 3 9 0 0 0 0 1 +migration respectively. migration m mi mig migr BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 1 . 1 3 0 0 0 0 1 +All the all A Al All All BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 2 - 1 10 0 0 0 0 1 +information between information i in inf info BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 2 ., 2 9 0 0 0 0 1 +this transfer this t th thi this BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 2 no 0 9 0 0 0 0 1 +other cases other o ot oth othe BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 2 no 0 10 0 0 0 0 1 +might not might m mi mig migh BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 2 .- 2 9 0 0 0 0 1 +would be would w wo wou woul BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 2 no 0 9 0 0 0 0 1 +protocol. This protocol. p pr pro prot BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 2 . 1 8 0 0 0 0 1 +standards in standards s st sta stan BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 5 2 . 1 8 0 0 0 0 1 +11.13.1. Server 11.13.1. 1 11 11. 11.1 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 4 ... 3 10 0 0 0 0 1 +Migration Migration migration M Mi Mig Migr BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 4 no 0 1 0 0 0 0 1 +In this in I In In In BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 5 4 , 1 10 0 0 0 0 1 +held on held h he hel held BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 5 4 , 1 9 0 0 0 0 1 +report (via report r re rep repo BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 4 (), 3 9 0 0 0 0 1 +allowing new allowing a al all allo BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 4 no 0 9 0 0 0 0 1 +grace period grace g gr gra grac BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 5 4 . 1 3 0 0 0 0 1 +During this during D Du Dur Duri BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 6 no 0 10 0 0 0 0 1 +operations to operations o op ope oper BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 5 6 no 0 8 0 0 0 0 1 +migrated file migrated m mi mig migr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 6 , 1 9 0 0 0 0 1 +from server from f fr fro from BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 6 , 1 9 0 0 0 0 1 +accurately report accurately a ac acc accu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 6 , 1 9 0 0 0 0 1 +subjecting these subjecting s su sub subj BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 6 . 1 9 0 0 0 0 1 +reclaim locks reclaim r re rec recl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 6 ,. 2 10 0 0 0 0 1 +the client the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 6 , 1 9 0 0 0 0 1 +lock reclamation lock l lo loc lock BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 5 6 no 0 8 0 0 0 0 1 +rca_one_fs as rca_one_fs r rc rca rca_ BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 6 . 1 2 0 0 0 0 1 +While it while W Wh Whi Whil BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 9 - 1 10 0 0 0 0 1 +operate to operate o op ope oper BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 9 , 1 9 0 0 0 0 1 +well-advised to well-advised w we wel well BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 9 - 1 8 0 0 0 0 1 +information: information: information: i in inf info BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 9 : 1 1 0 0 0 0 1 +o If o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 5 10 no 0 9 0 0 0 0 1 +for the for f fo for for BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 10 , 1 10 0 0 0 0 1 +server will server s se ser serv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 10 no 0 9 0 0 0 0 1 +clients have clients c cl cli clie BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 10 , 1 8 0 0 0 0 1 +activity to activity a ac act acti BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 10 . 1 8 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 5 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 11 , 1 10 0 0 0 0 0 +[Page 265] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 5 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 5 0 no 0 4 0 0 0 0 1 +o Locking o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 5 0 ( 1 10 0 0 0 0 1 +possible levels possible p po pos poss BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 0 ) 1 9 0 0 0 0 1 +clients do clients c cl cli clie BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 0 no 0 10 0 0 0 0 1 +server. server. server. s se ser serv BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 0 . 1 1 0 0 0 0 1 +11.13.2. Server 11.13.2. 1 11 11. 11.1 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 1 ... 3 10 0 0 0 0 1 +Migration Migration migration M Mi Mig Migr BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 1 no 0 1 0 0 0 0 1 +The basic the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 1 no 0 8 0 0 0 0 1 +Transparent State transparent T Tr Tra Tran BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 1 no 0 10 0 0 0 0 1 +server a server s se ser serv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 1 no 0 10 0 0 0 0 1 +the file the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 1 . 1 10 0 0 0 0 1 +verifier, the verifier, v ve ver veri BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 1 ,,: 3 9 0 0 0 0 1 +o The o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 5 3 . 1 10 0 0 0 0 1 +o The o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 5 3 . 1 10 0 0 0 0 1 +o The o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 5 4 . 1 10 0 0 0 0 1 +o The o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 5 4 ,,-,, 5 10 0 0 0 0 1 +or layout. or o or or or BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 4 . 1 1 0 0 0 0 1 +o For o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 5 4 -, 2 10 0 0 0 0 1 +information about information i in inf info BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 4 (). 3 7 0 0 0 0 1 +o For o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 5 5 /, 2 10 0 0 0 0 1 +needs to needs n ne nee need BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 5 . 1 3 0 0 0 0 1 +o For o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 5 6 ,-, 3 10 0 0 0 0 1 +as share as a as as as BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 6 no 0 9 0 0 0 0 1 +byte-range locks byte-range b by byt byte BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 6 -. 2 4 0 0 0 0 1 +Such information such S Su Suc Such BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 7 no 0 10 0 0 0 0 1 +on the on o on on on BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 7 no 0 8 0 0 0 0 1 +appropriate context appropriate a ap app appr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 7 no 0 10 0 0 0 0 1 +client. Issues client. c cl cli clie BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 7 . 1 9 0 0 0 0 1 +presenting another presenting p pr pre pres BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 7 '. 2 9 0 0 0 0 1 +A further a A A A A BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 1 0 0 0 0 0 5 9 no 0 9 0 0 0 0 1 +otherwise lost otherwise o ot oth othe BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 9 . 1 9 0 0 0 0 1 +locks that locks l lo loc lock BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 9 no 0 10 0 0 0 0 1 +reclaimed by reclaimed r re rec recl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 9 , 1 9 0 0 0 0 1 +that locks that t th tha that BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 9 no 0 9 0 0 0 0 1 +inadvertently allowed inadvertently i in ina inad BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 9 no 0 9 0 0 0 0 1 +continuity of continuity c co con cont BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 9 . 1 7 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 5 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 11 , 1 10 0 0 0 0 0 +[Page 266] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 5 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 5 0 no 0 4 0 0 0 0 1 +o For o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 5 0 no 0 10 0 0 0 0 1 +acknowledged by acknowledged a ac ack ackn BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 0 (), 3 8 0 0 0 0 1 +destination must destination d de des dest BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 0 no 0 9 0 0 0 0 1 +request to request r re req requ BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 0 . 1 3 0 0 0 0 1 +o For o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 5 1 no 0 10 0 0 0 0 1 +before the before b be bef befo BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 1 ', 2 9 0 0 0 0 1 +server should server s se ser serv BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 1 . 1 9 0 0 0 0 1 +An additional an A An An An BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 5 2 no 0 9 0 0 0 0 1 +situations in situations s si sit situ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 2 no 0 9 0 0 0 0 1 +because it because b be bec beca BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 2 no 0 10 0 0 0 0 1 +associated with associated a as ass asso BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 2 . 1 9 0 0 0 0 1 +valid choices: valid v va val vali BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 2 : 1 2 0 0 0 0 1 +o Treat o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 5 4 ,., 3 9 0 0 0 0 1 +State Migration. state S St Sta Stat BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 4 ., 2 8 0 0 0 0 1 +granted until granted g gr gra gran BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 4 , 1 10 0 0 0 0 1 +the locks the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 4 , 1 9 0 0 0 0 1 +they were they t th the they BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 4 . 1 8 0 0 0 0 1 +o Implement o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 5 5 , 1 10 0 0 0 0 1 +the conflicting the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 5 ., 2 9 0 0 0 0 1 +of a of o of of of BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 5 () 2 9 0 0 0 0 1 +reclaim it. reclaim r re rec recl BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 5 . 1 1 0 0 0 0 1 +When transferring when W Wh Whe When BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 7 , 1 9 0 0 0 0 1 +issues discussed issues i is iss issu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 7 .[]. 4 10 0 0 0 0 1 +In this in I In In In BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 5 7 , 1 9 0 0 0 0 1 +NFSv4.1, as nfsv4.1, N NF NFS NFSv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 7 .,., 4 9 0 0 0 0 1 +while it while w wh whi whil BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 7 . 1 4 0 0 0 0 1 +There are there T Th The Ther BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 8 .: 2 10 0 0 0 0 1 +o The o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 5 9 no 0 10 0 0 0 0 1 +an operation an a an an an BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 5 9 no 0 9 0 0 0 0 1 +longer exists. longer l lo lon long BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 9 . 1 2 0 0 0 0 1 +o Sequencing o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 5 10 - 1 10 0 0 0 0 1 +operation sequences operation o op ope oper BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 10 .,- 3 9 0 0 0 0 1 +based based based b ba bas base BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 10 no 0 0 0 0 0 0 1 +As a as A As As As BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 10 ,, 2 9 0 0 0 0 1 +discussed in discussed d di dis disc BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 10 .[] 3 10 0 0 0 0 1 +discussed. discussed. discussed. d di dis disc BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 10 . 1 1 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 5 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 11 , 1 10 0 0 0 0 0 +[Page 267] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 5 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 5 0 no 0 4 0 0 0 0 1 +11.13.3. Server 11.13.3. 1 11 11. 11.1 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 0 ... 3 10 0 0 0 0 1 +The basic the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 0 no 0 9 0 0 0 0 1 +transfer is transfer t tr tra tran BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 0 no 0 10 0 0 0 0 1 +of the of o of of of BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 0 ,: 2 9 0 0 0 0 1 +o The o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 5 1 . 1 10 0 0 0 0 1 +o Whether o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 5 2 no 0 10 0 0 0 0 1 +and, if and, a an and and, BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 2 ,,. 3 4 0 0 0 0 1 +When sessions when W Wh Whe When BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 2 , 1 10 0 0 0 0 1 +challenges in challenges c ch cha chal BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 2 no 0 9 0 0 0 0 1 +during the during d du dur duri BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 2 no 0 8 0 0 0 0 1 +destination server. destination d de des dest BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 2 . 1 2 0 0 0 0 1 +o A o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 5 3 , 1 10 0 0 0 0 1 +all of all a al all all BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 3 . 1 5 0 0 0 0 1 +o Requests o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 5 4 ,, 2 10 0 0 0 0 1 +of the of o of of of BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 4 no 0 9 0 0 0 0 1 +the slot the t th the the BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 4 . 1 2 0 0 0 0 1 +As a as A As As As BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 5 , 1 10 0 0 0 0 1 +unmodifiable, the unmodifiable, u un unm unmo BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 5 ,-, 3 10 0 0 0 0 1 +each of each e ea eac each BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 5 , 1 10 0 0 0 0 1 +number of number n nu num numb BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 5 : 1 2 0 0 0 0 1 +1. Those 1. 1 1. 1. 1. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 6 ., 2 10 0 0 0 0 1 +before migration before b be bef befo BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 6 . 1 3 0 0 0 0 1 +2. Those 2. 2 2. 2. 2. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 7 . 1 10 0 0 0 0 1 +system being system s sy sys syst BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 7 . 1 8 0 0 0 0 1 +3. Those 3. 3 3. 3. 3. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 8 . 1 10 0 0 0 0 1 +system being system s sy sys syst BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 8 . 1 5 0 0 0 0 1 +4. Those 4. 4 4. 4. 4. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 8 ., 2 10 0 0 0 0 1 +to obtain to t to to to BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 8 . 1 6 0 0 0 0 1 +5. Those 5. 5 5. 5. 5. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 9 .. 2 10 0 0 0 0 1 +It should it I It It It BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 9 no 0 10 0 0 0 0 1 +to include to t to to to BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 9 . 1 10 0 0 0 0 1 +session which session s se ses sess BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 9 no 0 10 0 0 0 0 1 +migrated, requests migrated, m mi mig migr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 9 , 1 9 0 0 0 0 1 +processed, for processed, p pr pro proc BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 9 ,. 2 3 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 5 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 11 , 1 10 0 0 0 0 0 +[Page 268] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 5 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 5 0 no 0 4 0 0 0 0 1 +Since session since S Si Sin Sinc BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 0 no 0 9 0 0 0 0 1 +fixed as fixed f fi fix fixe BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 0 , 1 9 0 0 0 0 1 +the client the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 0 , 1 9 0 0 0 0 1 +which necessarily which w wh whi whic BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 0 , 1 10 0 0 0 0 1 +an earlier an a an an an BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 5 0 ., 2 9 0 0 0 0 1 +helpful to helpful h he hel help BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 0 no 0 9 0 0 0 0 1 +of the of o of of of BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 0 . 1 6 0 0 0 0 1 +o The o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 5 2 no 0 10 0 0 0 0 1 +in a in i in in in BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 5 2 no 0 9 0 0 0 0 1 +slot nor slot s sl slo slot BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 2 . 1 4 0 0 0 0 1 +In view in I In In In BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 5 3 no 0 9 0 0 0 0 1 +value for value v va val valu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 3 no 0 8 0 0 0 0 1 +migration, it migration, m mi mig migr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 3 , 1 10 0 0 0 0 1 +of forbearance, of o of of of BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 3 , 1 8 0 0 0 0 1 +considered unacceptable considered c co con cons BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 3 . 1 9 0 0 0 0 1 +o Returning o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 5 4 no 0 10 0 0 0 0 1 +the sequence the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 4 no 0 9 0 0 0 0 1 +the slot. the t th the the BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 4 . 1 1 0 0 0 0 1 +In the in I In In In BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 5 5 no 0 8 0 0 0 0 1 +possibility of possibility p po pos poss BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 5 -, 2 9 0 0 0 0 1 +it may it i it it it BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 5 no 0 9 0 0 0 0 1 +proper if proper p pr pro prop BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 5 ., 2 9 0 0 0 0 1 +fact that fact f fa fac fact BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 5 no 0 9 0 0 0 0 1 +client in client c cl cli clie BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 5 , 1 9 0 0 0 0 1 +returned by returned r re ret retu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 5 no 0 10 0 0 0 0 1 +was reissued, was w wa was was BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 5 ,. 2 7 0 0 0 0 1 +An important an A An An An BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 5 8 no 0 9 0 0 0 0 1 +all potential all a al all all BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 8 ,. 2 10 0 0 0 0 1 +For example, for F Fo For For BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 8 , 1 9 0 0 0 0 1 +and might and a an and and BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 8 - 1 9 0 0 0 0 1 +accessing a accessing a ac acc acce BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 8 ., 2 9 0 0 0 0 1 +considerable data considerable c co con cons BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 8 , 1 8 0 0 0 0 1 +NFS4ERR_DELAY or nfs4err_delay N NF NFS NFS4 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 8 , 1 9 0 0 0 0 1 +sa_cachethis. sa_cachethis. sa_cachethis. s sa sa_ sa_c BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 8 . 1 2 0 0 0 0 1 +To address to T To To To BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 10 , 1 10 0 0 0 0 1 +following when following f fo fol foll BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 10 . 1 7 0 0 0 0 1 +o Avoid o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 5 10 no 0 10 0 0 0 0 1 +until the until u un unt unti BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 10 no 0 9 0 0 0 0 1 +slot on slot s sl slo slot BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 10 . 1 4 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 5 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 11 , 1 10 0 0 0 0 0 +[Page 269] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 5 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 5 0 no 0 4 0 0 0 0 1 +o For o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 5 0 , 1 9 0 0 0 0 1 +NFS4ERR_DELAY or nfs4err_delay N NF NFS NFS4 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 0 no 0 10 0 0 0 0 1 +the starting the t th the the BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 0 . 1 9 0 0 0 0 1 +o Until o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 5 1 no 0 9 0 0 0 0 1 +particular slot particular p pa par part BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 1 , 1 8 0 0 0 0 1 +NFS4ERR_SEQ_MISORDERED or nfs4err_seq_misordered N NF NFS NFS4 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 1 no 0 8 0 0 0 0 1 +NFS4ERR_DELAY or nfs4err_delay N NF NFS NFS4 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 1 , 1 10 0 0 0 0 1 +a series a a a a a BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 1 0 0 0 0 0 5 1 no 0 9 0 0 0 0 1 +final error. final f fi fin fina BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 1 . 1 1 0 0 0 0 1 +Because of because B Be Bec Beca BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 2 , 1 10 0 0 0 0 1 +can respond can c ca can can BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 2 no 0 9 0 0 0 0 1 +client by client c cl cli clie BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 2 : 1 7 0 0 0 0 1 +o Not o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 5 3 no 0 10 0 0 0 0 1 +on a on o on on on BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 3 , 1 8 0 0 0 0 1 +server cannot server s se ser serv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 3 no 0 9 0 0 0 0 1 +server handoff server s se ser serv BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 3 . 1 9 0 0 0 0 1 +o Replying o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 5 4 no 0 9 0 0 0 0 1 +that transferred that t th tha that BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 4 , 1 10 0 0 0 0 1 +provide retry provide p pr pro prov BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 4 no 0 9 0 0 0 0 1 +handoff, under handoff, h ha han hand BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 4 , 1 9 0 0 0 0 1 +they will they t th the they BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 4 -, 2 9 0 0 0 0 1 +making retry making m ma mak maki BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 4 . 1 6 0 0 0 0 1 +o Once o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 5 6 -, 2 10 0 0 0 0 1 +as the as a as as as BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 6 , 1 8 0 0 0 0 1 +reference to reference r re ref refe BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 6 . 1 9 0 0 0 0 1 +11.14. Effecting 11.14. 1 11 11. 11.1 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 7 .. 2 10 0 0 0 0 1 +Referrals are referrals R Re Ref Refe BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 5 7 no 0 10 0 0 0 0 1 +one or one o on one one BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 7 no 0 8 0 0 0 0 1 +fs_locations or fs_locations f fs fs_ fs_l BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 7 . 1 8 0 0 0 0 1 +typically get typically t ty typ typi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 7 , 1 10 0 0 0 0 1 +information, and information, i in inf info BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 7 , 1 9 0 0 0 0 1 +server, even server, s se ser serv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 7 , 1 9 0 0 0 0 1 +original namespace. original o or ori orig BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 7 . 1 9 0 0 0 0 1 +they happen they t th the they BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 7 no 0 9 0 0 0 0 1 +file system file f fi fil file BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 7 (). 3 8 0 0 0 0 1 +Referrals can referrals R Re Ref Refe BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 5 7 no 0 9 0 0 0 0 1 +encountered at encountered e en enc enco BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 7 . 1 3 0 0 0 0 1 +The examples the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 10 no 0 10 0 0 0 0 1 +that an that t th tha that BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 10 - 1 9 0 0 0 0 1 +up, but up, u up up, up, BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 10 , 1 9 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 5 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 11 , 1 10 0 0 0 0 0 +[Page 270] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 5 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 5 0 no 0 4 0 0 0 0 1 +the name the t th the the BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 0 ., 2 9 0 0 0 0 1 +required behavior required r re req requ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 0 no 0 10 0 0 0 0 1 +number of number n nu num numb BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 0 , 1 9 0 0 0 0 1 +how specific how h ho how how BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 0 . 1 7 0 0 0 0 1 +11.14.1. Referral 11.14.1. 1 11 11. 11.1 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 2 ...() 5 10 0 0 0 0 1 +Let us let L Le Let Let BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 2 no 0 9 0 0 0 0 1 +in which in i in in in BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 5 2 ////. 5 9 0 0 0 0 1 +may be may m ma may may BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 1 0 0 5 2 . 1 9 0 0 0 0 1 +moved, or moved, m mo mov move BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 2 ,, 2 9 0 0 0 0 1 +solely, to solely, s so sol sole BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 2 , 1 10 0 0 0 0 1 +are located. are a ar are are BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 2 . 1 1 0 0 0 0 1 +o PUTROOTFH o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 5 5 no 0 10 0 0 0 0 1 +o LOOKUP o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 5 5 "" 2 10 0 0 0 0 1 +o LOOKUP o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 5 5 "" 2 10 0 0 0 0 1 +o LOOKUP o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 5 5 "" 2 10 0 0 0 0 1 +o LOOKUP o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 5 5 "" 2 10 0 0 0 0 1 +o GETFH o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 5 5 no 0 10 0 0 0 0 1 +o GETATTR o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 5 6 (,,,) 5 10 0 0 0 0 1 +Under the under U Un Und Unde BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 6 ,. 2 10 0 0 0 0 1 +o PUTROOTFH o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 5 6 --. 3 10 0 0 0 0 1 +pseudo-fs. pseudo-fs. pseudo-fs. p ps pse pseu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 6 -. 2 1 0 0 0 0 1 +o LOOKUP o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 5 7 ""--./ 6 10 0 0 0 0 1 +within the within w wi wit with BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 7 -. 2 3 0 0 0 0 1 +o LOOKUP o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 5 8 ""--.// 7 10 0 0 0 0 1 +within the within w wi wit with BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 8 -. 2 3 0 0 0 0 1 +o LOOKUP o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 5 9 ""--./// 8 10 0 0 0 0 1 +is within is i is is is BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 9 -. 2 3 0 0 0 0 1 +o LOOKUP o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 5 10 ""--.//// 9 10 0 0 0 0 1 +and is and a an and and BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 10 ,,... 5 9 0 0 0 0 1 +never see never n ne nev neve BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 10 . 1 4 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 5 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 11 , 1 10 0 0 0 0 0 +[Page 271] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 5 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 5 0 no 0 4 0 0 0 0 1 +o GETFH o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 5 0 --. 3 10 0 0 0 0 1 +file system file f fi fil file BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 0 , 1 9 0 0 0 0 1 +makes no makes m ma mak make BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 0 . 1 4 0 0 0 0 1 +o GETATTR o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 5 1 (,,,). 6 10 0 0 0 0 1 +the failure the t th the the BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 1 . 1 8 0 0 0 0 1 +Given the given G Gi Giv Give BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 1 , 1 10 0 0 0 0 1 +the root the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 1 no 0 9 0 0 0 0 1 +system, i.e., system, s sy sys syst BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 1 ,..,'. 6 9 0 0 0 0 1 +Note that note N No Not Note BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 1 , 1 9 0 0 0 0 1 +attribute information attribute a at att attr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 1 (..,), 6 9 0 0 0 0 1 +so that so s so so so BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 5 1 . 1 9 0 0 0 0 1 +could be could c co cou coul BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 1 ,,/// 5 9 0 0 0 0 1 +moved file moved m mo mov move BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 1 "" 2 9 0 0 0 0 1 +succeeded is succeeded s su suc succ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 1 no 0 9 0 0 0 0 1 +but was but b bu but but BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 1 ( 1 9 0 0 0 0 1 +is not is i is is is BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 1 ). 2 9 0 0 0 0 1 +directories, we directories, d di dir dire BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 1 ,//// 5 9 0 0 0 0 1 +was the was w wa was was BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 1 ,'. 3 9 0 0 0 0 1 +In order in I In In In BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 5 6 ,- 2 9 0 0 0 0 1 +of LOOKUPs of o of of of BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 6 no 0 9 0 0 0 0 1 +can be can c ca can can BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 6 . 1 9 0 0 0 0 1 +client could client c cl cli clie BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 6 no 0 10 0 0 0 0 1 +most cases most m mo mos most BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 6 no 0 10 0 0 0 0 1 +boundaries are boundaries b bo bou boun BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 6 (,, 3 9 0 0 0 0 1 +received) making received) r re rec rece BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 6 ). 2 8 0 0 0 0 1 +OP01: PUTROOTFH op01: O OP OP0 OP01 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 9 :-- 3 10 0 0 0 0 1 +-Current fh -current - -C -Cu -Cur BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 9 --. 3 10 0 0 0 0 1 +OP02: GETATTR(fsid) op02: O OP OP0 OP02 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 9 :()-- 5 10 0 0 0 0 1 +-Just for -just - -J -Ju -Jus BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 9 -., 3 10 0 0 0 0 1 +the pseudo-fs the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 9 - 1 9 0 0 0 0 1 +server. server. server. s se ser serv BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 9 . 1 1 0 0 0 0 1 +OP03: LOOKUP op03: O OP OP0 OP03 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 10 :""-- 5 10 0 0 0 0 1 +OP04: GETATTR(fsid) op04: O OP OP0 OP04 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 10 :()-- 5 10 0 0 0 0 1 +-Get current -get - -G -Ge -Get BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 10 -. 2 10 0 0 0 0 1 +fsid will fsid f fs fsi fsid BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 10 -, 2 9 0 0 0 0 1 +boundary. boundary. boundary. b bo bou boun BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 10 . 1 1 0 0 0 0 1 +OP05: GETFH op05: O OP OP0 OP05 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 11 :-- 3 10 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 5 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 11 , 1 10 0 0 0 0 0 +[Page 272] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 5 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 5 0 no 0 4 0 0 0 0 1 +-Current fh -current - -C -Cu -Cur BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 0 -/-. 4 10 0 0 0 0 1 +OP06: LOOKUP op06: O OP OP0 OP06 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 0 :""-- 5 10 0 0 0 0 1 +-Current fh -current - -C -Cu -Cur BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 1 -//-. 5 10 0 0 0 0 1 +OP07: GETATTR(fsid) op07: O OP OP0 OP07 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 1 :()-- 5 10 0 0 0 0 1 +-Get current -get - -G -Ge -Get BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 1 -. 2 10 0 0 0 0 1 +fsid will fsid f fs fsi fsid BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 1 -, 2 9 0 0 0 0 1 +boundary. boundary. boundary. b bo bou boun BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 1 . 1 1 0 0 0 0 1 +OP08: GETFH op08: O OP OP0 OP08 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 2 :-- 3 10 0 0 0 0 1 +-Current fh -current - -C -Cu -Cur BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 3 -//-. 5 10 0 0 0 0 1 +OP09: LOOKUP op09: O OP OP0 OP09 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 3 :""-- 5 10 0 0 0 0 1 +-Current fh -current - -C -Cu -Cur BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 3 -///-. 6 10 0 0 0 0 1 +OP10: GETATTR(fsid) op10: O OP OP1 OP10 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 4 :()-- 5 10 0 0 0 0 1 +-Get current -get - -G -Ge -Get BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 4 -. 2 10 0 0 0 0 1 +fsid will fsid f fs fsi fsid BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 4 -, 2 9 0 0 0 0 1 +boundary. boundary. boundary. b bo bou boun BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 4 . 1 1 0 0 0 0 1 +OP11: GETFH op11: O OP OP1 OP11 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 5 :-- 3 10 0 0 0 0 1 +-Current fh -current - -C -Cu -Cur BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 6 -///-. 6 10 0 0 0 0 1 +OP12: LOOKUP op12: O OP OP1 OP12 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 6 :""-- 5 10 0 0 0 0 1 +-Current fh -current - -C -Cu -Cur BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 6 -////, 6 10 0 0 0 0 1 +file system, file f fi fil file BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 6 ,... 4 3 0 0 0 0 1 +-The client -the - -T -Th -The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 7 -. 2 10 0 0 0 0 1 +OP13: GETATTR(fsid, op13: O OP OP1 OP13 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 8 :(,)-- 6 10 0 0 0 0 1 +-We are -we - -W -We -We BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 8 - 1 10 0 0 0 0 1 +are. In are. a ar are are. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 8 ., 2 9 0 0 0 0 1 +the parent the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 8 (). 3 9 0 0 0 0 1 +that the that t th tha that BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 8 no 0 9 0 0 0 0 1 +the new the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 8 ., 2 9 0 0 0 0 1 +fsid we fsid f fs fsi fsid BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 8 no 0 9 0 0 0 0 1 +different file different d di dif diff BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 8 . 1 6 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 5 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 11 , 1 10 0 0 0 0 0 +[Page 273] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 5 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 5 0 no 0 4 0 0 0 0 1 +-In this -in - -I -In -In BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 0 -, 2 9 0 0 0 0 1 +moved is moved m mo mov move BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 0 /////// 7 9 0 0 0 0 1 +the fsid the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 0 -, 2 9 0 0 0 0 1 +presumably cannot presumably p pr pre pres BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 0 .,, 3 9 0 0 0 0 1 +have this have h ha hav have BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 0 (..,/// 7 10 0 0 0 0 1 +be a be b be be be BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 0 -////), 7 9 0 0 0 0 1 +we need we w we we we BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 0 no 0 9 0 0 0 0 1 +of the of o of of of BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 0 .,, 3 8 0 0 0 0 1 +system /this/is system s sy sys syst BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 0 //, 3 9 0 0 0 0 1 +rather than rather r ra rat rath BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 0 , 1 10 0 0 0 0 1 +system was system s sy sys syst BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 0 . 1 7 0 0 0 0 1 +-We are -we - -W -We -We BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 3 - 1 10 0 0 0 0 1 +NFS4ERR_MOVED at nfs4err_moved N NF NFS NFS4 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 3 no 0 10 0 0 0 0 1 +is a is i is is is BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 3 . 1 9 0 0 0 0 1 +that /this/is/the that t th tha that BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 3 ///, 4 9 0 0 0 0 1 +still need still s st sti stil BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 3 . 1 8 0 0 0 0 1 +OP14: GETFH op14: O OP OP1 OP14 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 5 :-- 3 10 0 0 0 0 1 +-Fails because -fails - -F -Fa -Fai BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 5 - 1 10 0 0 0 0 1 +of the of o of of of BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 5 , 1 9 0 0 0 0 1 +GETFH. Note getfh. G GE GET GETF BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 5 5 . 1 9 0 0 0 0 1 +a filehandle a a a a a BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 1 0 0 0 0 0 5 5 . 1 7 0 0 0 0 1 +Given the given G Gi Giv Give BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 6 , 1 9 0 0 0 0 1 +system is system s sy sys syst BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 6 (////) 6 9 0 0 0 0 1 +occurred (between occurred o oc occ occu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 6 (""""). 7 10 0 0 0 0 1 +also gives also a al als also BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 6 , 1 10 0 0 0 0 1 +so that so s so so so BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 5 6 . 1 9 0 0 0 0 1 +bare minimum bare b ba bar bare BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 6 no 0 9 0 0 0 0 1 +there will there t th the ther BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 6 no 0 9 0 0 0 0 1 +information sent information i in inf info BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 6 no 0 10 0 0 0 0 1 +system's home. system's s sy sys syst BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 6 '. 2 10 0 0 0 0 1 +the referring the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 6 , 1 9 0 0 0 0 1 +transient information transient t tr tra tran BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 6 . 1 9 0 0 0 0 1 +11.14.2. Referral 11.14.2. 1 11 11. 11.1 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 10 ...() 5 10 0 0 0 0 1 +Another context another A An Ano Anot BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 10 no 0 10 0 0 0 0 1 +does a does d do doe does BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 10 - 1 9 0 0 0 0 1 +are the are a ar are are BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 10 . 1 5 0 0 0 0 1 +Suppose such suppose S Su Sup Supp BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 11 : 1 10 0 0 0 0 1 +o PUTROOTFH o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 5 11 no 0 10 0 0 0 0 1 +o LOOKUP o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 5 11 "" 2 10 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 5 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 11 , 1 10 0 0 0 0 0 +[Page 274] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 5 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 5 0 no 0 4 0 0 0 0 1 +o LOOKUP o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 5 0 "" 2 10 0 0 0 0 1 +o LOOKUP o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 5 0 "" 2 10 0 0 0 0 1 +o READDIR o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 5 0 (,,,) 5 10 0 0 0 0 1 +In this in I In In In BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 5 1 ,, 2 7 0 0 0 0 1 +fs_locations_info is fs_locations_info f fs fs_ fs_l BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 1 , 1 10 0 0 0 0 1 +be provided, be b be be be BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 1 , 1 8 0 0 0 0 1 +READDIR, with readdir, R RE REA READ BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 5 1 ,: 2 6 0 0 0 0 1 +o PUTROOTFH o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 5 2 --. 3 10 0 0 0 0 1 +pseudo-fs. pseudo-fs. pseudo-fs. p ps pse pseu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 2 -. 2 1 0 0 0 0 1 +o LOOKUP o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 5 3 ""--./ 6 10 0 0 0 0 1 +within the within w wi wit with BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 3 -. 2 3 0 0 0 0 1 +o LOOKUP o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 5 4 ""--.// 7 10 0 0 0 0 1 +within the within w wi wit with BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 4 -. 2 3 0 0 0 0 1 +o LOOKUP o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 5 5 ""--./// 8 10 0 0 0 0 1 +is within is i is is is BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 5 -. 2 3 0 0 0 0 1 +o READDIR o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 5 6 (,,,)-- 7 9 0 0 0 0 1 +NFS4ERR_MOVED. Note nfs4err_moved. N NF NFS NFS4 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 6 . 1 10 0 0 0 0 1 +if /this/is/the if i if if if BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 6 ///, 4 9 0 0 0 0 1 +directory contains directory d di dir dire BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 6 . 1 8 0 0 0 0 1 +So now so S So So So BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 5 8 -: 2 10 0 0 0 0 1 +o PUTROOTFH o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 5 8 no 0 10 0 0 0 0 1 +o LOOKUP o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 5 8 "" 2 10 0 0 0 0 1 +o LOOKUP o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 5 8 "" 2 10 0 0 0 0 1 +o LOOKUP o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 5 9 "" 2 10 0 0 0 0 1 +o READDIR o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 5 9 (,,,,) 6 10 0 0 0 0 1 +The results the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 9 : 1 10 0 0 0 0 1 +o PUTROOTFH o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 5 9 --. 3 10 0 0 0 0 1 +pseudo-fs. pseudo-fs. pseudo-fs. p ps pse pseu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 9 -. 2 1 0 0 0 0 1 +o LOOKUP o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 5 10 ""--./ 6 10 0 0 0 0 1 +within the within w wi wit with BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 10 -. 2 3 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 5 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 11 , 1 10 0 0 0 0 0 +[Page 275] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 5 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 5 0 no 0 4 0 0 0 0 1 +o LOOKUP o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 5 0 ""--.// 7 10 0 0 0 0 1 +within the within w wi wit with BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 0 -. 2 3 0 0 0 0 1 +o LOOKUP o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 5 1 ""--./// 8 10 0 0 0 0 1 +is within is i is is is BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 1 -. 2 3 0 0 0 0 1 +o READDIR o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 5 2 (,,,,) 6 10 0 0 0 0 1 +--> NFS_OK. --> - -- --> --> BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 5 2 --. 3 9 0 0 0 0 1 +named "path" named n na nam name BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 2 "" 2 8 0 0 0 0 1 +NFS4ERR_MOVED, together nfs4err_moved, N NF NFS NFS4 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 2 , 1 8 0 0 0 0 1 +mounted_on_fileid. mounted_on_fileid. mounted_on_fileid. m mo mou moun BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 2 . 1 2 0 0 0 0 1 +Suppose we suppose S Su Sup Supp BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 4 ( 1 10 0 0 0 0 1 +could have could c co cou coul BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 4 ,..). 5 8 0 0 0 0 1 +o PUTROOTFH o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 5 4 no 0 10 0 0 0 0 1 +o LOOKUP o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 5 5 "" 2 10 0 0 0 0 1 +o LOOKUP o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 5 5 "" 2 10 0 0 0 0 1 +o LOOKUP o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 5 5 "" 2 10 0 0 0 0 1 +o READDIR o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 5 5 (,,,, 5 10 0 0 0 0 1 +size, time_modify) size, s si siz size BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 5 ,) 2 2 0 0 0 0 1 +The results the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 6 : 1 10 0 0 0 0 1 +o PUTROOTFH o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 5 6 --. 3 10 0 0 0 0 1 +pseudo-fs. pseudo-fs. pseudo-fs. p ps pse pseu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 6 -. 2 1 0 0 0 0 1 +o LOOKUP o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 5 7 ""--./ 6 10 0 0 0 0 1 +within the within w wi wit with BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 7 -. 2 3 0 0 0 0 1 +o LOOKUP o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 5 7 ""--.// 7 10 0 0 0 0 1 +within the within w wi wit with BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 7 -. 2 3 0 0 0 0 1 +o LOOKUP o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 5 8 ""--./// 8 10 0 0 0 0 1 +is within is i is is is BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 8 -. 2 3 0 0 0 0 1 +o READDIR o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 5 9 (,,,, 5 10 0 0 0 0 1 +size, time_modify) size, s si siz size BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 9 ,)--. 5 9 0 0 0 0 1 +below. below. below. b be bel belo BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 9 . 1 1 0 0 0 0 1 +The attributes the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 10 no 0 10 0 0 0 0 1 +"path" will "path" " "p "pa "pat BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 10 "": 3 4 0 0 0 0 1 +o rdattr_error o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 5 11 (:) 3 10 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 5 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 11 , 1 10 0 0 0 0 0 +[Page 276] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 5 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 5 0 no 0 4 0 0 0 0 1 +o fs_locations_info o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 5 0 no 0 10 0 0 0 0 1 +o mounted_on_fileid o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 5 0 (: 2 10 0 0 0 0 1 +system) system) system) s sy sys syst BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 0 ) 1 1 0 0 0 0 1 +o fsid o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 5 0 (:) 3 10 0 0 0 0 1 +The attributes the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 1 "" 2 10 0 0 0 0 1 +because these because b be bec beca BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 1 no 0 9 0 0 0 0 1 +system. system. system. s sy sys syst BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 1 . 1 1 0 0 0 0 1 +11.15. The 11.15. 1 11 11. 11.1 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 1 .. 2 10 0 0 0 0 1 +The fs_locations the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 2 : 1 10 0 0 0 0 1 +struct fs_location4 struct s st str stru BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 2 no 0 10 0 0 0 0 1 +utf8str_cis utf8str_cis utf8str_cis u ut utf utf8 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 2 no 0 5 0 0 0 0 1 +server<>; server<>; server<>; s se ser serv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 2 ; 1 4 0 0 0 0 1 +pathname4 pathname4 pathname4 p pa pat path BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 2 no 0 4 0 0 0 0 1 +rootpath; rootpath; rootpath; r ro roo root BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 2 ; 1 4 0 0 0 0 1 +}; }; }; } }; }; }; BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 5 2 ; 1 1 0 0 0 0 1 +struct fs_locations4 struct s st str stru BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 2 no 0 10 0 0 0 0 1 +pathname4 pathname4 pathname4 p pa pat path BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 2 no 0 4 0 0 0 0 1 +fs_root; fs_root; fs_root; f fs fs_ fs_r BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 2 ; 1 3 0 0 0 0 1 +fs_location4 fs_location4 fs_location4 f fs fs_ fs_l BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 2 no 0 5 0 0 0 0 1 +locations<>; locations<>; locations<>; l lo loc loca BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 2 ; 1 5 0 0 0 0 1 +}; }; }; } }; }; }; BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 5 2 ; 1 1 0 0 0 0 1 +The fs_location4 the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 3 no 0 9 0 0 0 0 1 +file system file f fi fil file BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 3 no 0 9 0 0 0 0 1 +the file the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 3 '. 2 8 0 0 0 0 1 +servers have servers s se ser serv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 3 no 0 10 0 0 0 0 1 +namespaces, an namespaces, n na nam name BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 3 ,. 2 9 0 0 0 0 1 +the server the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 3 - 1 8 0 0 0 0 1 +traditional DNS traditional t tr tra trad BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 3 ,,,- 4 9 0 0 0 0 1 +length string. length l le len leng BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 3 . 1 9 0 0 0 0 1 +address (see address a ad add addr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 3 (..[]),, 8 9 0 0 0 0 1 +with or with w wi wit with BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 3 ".." 4 10 0 0 0 0 1 +number. If number. n nu num numb BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 3 .,,, 4 9 0 0 0 0 1 +SHOULD be should S SH SHO SHOU BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 5 3 .- 2 9 0 0 0 0 1 +the current the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 3 . 1 8 0 0 0 0 1 +requirement that requirement r re req requ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 3 no 0 9 0 0 0 0 1 +in one in i in in in BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 5 3 . 1 9 0 0 0 0 1 +for convenience. for f fo for for BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 3 . 1 9 0 0 0 0 1 +listed in listed l li lis list BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 3 no 0 8 0 0 0 0 1 +attribute. attribute. attribute. a at att attr BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 3 . 1 1 0 0 0 0 1 +The fs_locations4 the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 10 no 0 9 0 0 0 0 1 +contain an contain c co con cont BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 10 . 1 9 0 0 0 0 1 +server may server s se ser serv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 10 ,"" 3 8 0 0 0 0 1 +provided. The provided. p pr pro prov BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 10 . 1 10 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 5 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 11 , 1 10 0 0 0 0 0 +[Page 277] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 5 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 5 0 no 0 4 0 0 0 0 1 +the file the t th the the BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 0 ',.., 5 9 0 0 0 0 1 +server from server s se ser serv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 0 . 1 9 0 0 0 0 1 +fs_root path fs_root f fs fs_ fs_r BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 0 no 0 9 0 0 0 0 1 +root of root r ro roo root BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 5 0 , 1 10 0 0 0 0 1 +what object what w wh wha what BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 0 no 0 9 0 0 0 0 1 +designates. The designates. d de des desi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 0 . 1 9 0 0 0 0 1 +reach the reach r re rea reac BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 0 (.., 4 10 0 0 0 0 1 +fs_locations attribute fs_locations f fs fs_ fs_l BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 0 ). 2 4 0 0 0 0 1 +When the when W Wh Whe When BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 2 no 0 10 0 0 0 0 1 +alternate file alternate a al alt alte BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 2 ,- 2 10 0 0 0 0 1 +length array length l le len leng BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 2 , 1 9 0 0 0 0 1 +fs_root. fs_root. fs_root. f fs fs_ fs_r BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 2 . 1 1 0 0 0 0 1 +As an as A As As As BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 2 , 1 9 0 0 0 0 1 +two servers two t tw two two BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 2 ()., 4 9 0 0 0 0 1 +at path at a at at at BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 2 ///.,///. 9 9 0 0 0 0 1 +If the if I If If If BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 2 no 0 10 0 0 0 0 1 +at /a/b/c/d, at a at at at BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 2 ////,' 6 9 0 0 0 0 1 +root is root r ro roo root BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 5 2 '///. 5 9 0 0 0 0 1 +switches to switches s sw swi swit BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 2 , 1 9 0 0 0 0 1 +first referenced first f fi fir firs BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 2 //// 4 9 0 0 0 0 1 +servB. To servb. s se ser serv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 2 ., 2 9 0 0 0 0 1 +servA would serva s se ser serv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 2 /// 3 9 0 0 0 0 1 +fs_locations. One fs_locations. f fs fs_ fs_l BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 2 .() 3 9 0 0 0 0 1 +and the and a an and and BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 2 ///. 4 9 0 0 0 0 1 +information, the information, i in inf info BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 2 ,////// 7 9 0 0 0 0 1 +at the at a at at at BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 2 //// 4 10 0 0 0 0 1 +the new the t th the the BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 2 . 1 2 0 0 0 0 1 +Note that note N No Not Note BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 7 no 0 9 0 0 0 0 1 +each rootpath each e ea eac each BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 7 ; 1 10 0 0 0 0 1 +components in components c co com comp BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 7 , 1 9 0 0 0 0 1 +rootpath and rootpath r ro roo root BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 7 ., 2 9 0 0 0 0 1 +could have could c co cou coul BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 7 , 1 9 0 0 0 0 1 +equal to equal e eq equ equa BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 7 """//", 7 9 0 0 0 0 1 +in locations in i in in in BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 5 7 "" 2 9 0 0 0 0 1 +"/aleph/beth/gimel/daleth/he". "/aleph/beth/gimel/daleth/he". "/aleph/beth/gimel/daleth/he". " "/ "/a "/al BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 7 "/////". 8 4 0 0 0 0 1 +The relationship the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 9 no 0 9 0 0 0 0 1 +replaces the replaces r re rep repl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 9 no 0 10 0 0 0 0 1 +the substitute the t th the the BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 9 . 1 8 0 0 0 0 1 +For an for F Fo For For BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 10 , 1 10 0 0 0 0 1 +is a is i is is is BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 10 ., 2 9 0 0 0 0 1 +located at located l lo loc loca BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 10 ////. 5 9 0 0 0 0 1 +glagoli has glagoli g gl gla glag BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 10 (). 3 8 0 0 0 0 1 +fs_locations attribute, fs_locations f fs fs_ fs_l BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 10 ,//// 5 10 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 5 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 11 , 1 10 0 0 0 0 0 +[Page 278] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 5 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 5 0 no 0 4 0 0 0 0 1 +glagoli, and glagoli, g gl gla glag BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 0 ,, 2 10 0 0 0 0 1 +serv2, and serv2, s se ser serv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 0 ,//. 4 9 0 0 0 0 1 +/az/buky/vedi/glagoli with /az/buky/vedi/glagoli / /a /az /az/ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 0 //////, 7 8 0 0 0 0 1 +pathname on pathname p pa pat path BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 0 . 1 2 0 0 0 0 1 +Thus, the thus, T Th Thu Thus BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 1 , 1 10 0 0 0 0 1 +client used client c cl cli clie BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 1 no 0 9 0 0 0 0 1 +applies. Otherwise, applies. a ap app appl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 1 ., 2 9 0 0 0 0 1 +on the on o on on on BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 1 . 1 2 0 0 0 0 1 +Since the since S Si Sin Sinc BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 2 no 0 9 0 0 0 0 1 +attributes of attributes a at att attr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 2 , 1 9 0 0 0 0 1 +only be only o on onl only BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 2 no 0 8 0 0 0 0 1 +available. When available. a av ava avai BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 2 ., 2 10 0 0 0 0 1 +locations should locations l lo loc loca BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 2 . 1 8 0 0 0 0 1 +The following the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 4 no 0 10 0 0 0 0 1 +context. context. context. c co con cont BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 4 . 1 1 0 0 0 0 1 +o All o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 5 4 no 0 10 0 0 0 0 1 +same handle same s sa sam same BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 4 ,, 2 9 0 0 0 0 1 +attribute does attribute a at att attr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 4 . 1 9 0 0 0 0 1 +in the in i in in in BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 5 4 , 1 9 0 0 0 0 1 +there can there t th the ther BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 4 , 1 10 0 0 0 0 1 +nor is nor n no nor nor BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 4 no 0 9 0 0 0 0 1 +referring (absent) referring r re ref refe BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 4 (). 3 4 0 0 0 0 1 +o All o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 5 6 no 0 9 0 0 0 0 1 +same fileid same s sa sam same BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 6 no 0 9 0 0 0 0 1 +indicates persistent indicates i in ind indi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 6 no 0 8 0 0 0 0 1 +FH4_VOL_MIGRATION bit. fh4_vol_migration F FH FH4 FH4_ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 6 ., 2 9 0 0 0 0 1 +issues do issues i is iss issu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 6 no 0 10 0 0 0 0 1 +referring (absent) referring r re ref refe BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 6 (), 3 9 0 0 0 0 1 +fh_expire_type attribute. fh_expire_type f fh fh_ fh_e BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 6 . 1 3 0 0 0 0 1 +o All o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 5 8 no 0 10 0 0 0 0 1 +different change different d di dif diff BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 8 . 1 4 0 0 0 0 1 +For other for F Fo For For BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 9 , 1 10 0 0 0 0 1 +depends on depends d de dep depe BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 9 : 1 6 0 0 0 0 1 +o When o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 5 9 ,, 2 10 0 0 0 0 1 +directed to directed d di dir dire BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 9 no 0 9 0 0 0 0 1 +error, the error, e er err erro BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 9 ,- 2 9 0 0 0 0 1 +verifier class verifier v ve ver veri BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 9 . 1 4 0 0 0 0 1 +o When o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 5 10 , 1 10 0 0 0 0 1 +is, the is, i is is, is, BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 10 , 1 9 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 5 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 11 , 1 10 0 0 0 0 0 +[Page 279] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 5 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 5 0 no 0 4 0 0 0 0 1 +NFS4ERR_MOVED error, nfs4err_moved N NF NFS NFS4 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 0 , 1 10 0 0 0 0 1 +different write-verifier different d di dif diff BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 0 -. 2 7 0 0 0 0 1 +The specific the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 0 no 0 9 0 0 0 0 1 +failover and failover f fa fai fail BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 0 ,. 2 9 0 0 0 0 1 +are possible are a ar are are BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 0 , 1 10 0 0 0 0 1 +fs_locations_info. When fs_locations_info. f fs fs_ fs_l BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 0 . 1 9 0 0 0 0 1 +other choices, other o ot oth othe BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 0 ,. 2 9 0 0 0 0 1 +See Section see S Se See See BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 5 2 no 0 9 0 0 0 0 1 +security flavor security s se sec secu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 5 2 no 0 10 0 0 0 0 1 +"fs_locations" attribute. "fs_locations" " "f "fs "fs_ BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 2 "". 3 3 0 0 0 0 1 +11.16. The 11.16. 1 11 11. 11.1 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 3 .. 2 10 0 0 0 0 1 +The fs_locations_info the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 3 no 0 9 0 0 0 0 1 +replacement for replacement r re rep repl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 3 no 0 9 0 0 0 0 1 +exist and exist e ex exi exis BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 3 . 1 9 0 0 0 0 1 +set of set s se set set BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 3 , 1 9 0 0 0 0 1 +additional network additional a ad add addi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 3 no 0 9 0 0 0 0 1 +replicas. When replicas. r re rep repl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 3 ., 2 9 0 0 0 0 1 +fs_locations can fs_locations f fs fs_ fs_l BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 3 . 1 10 0 0 0 0 1 +supports fs_locations_info supports s su sup supp BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 3 . 1 9 0 0 0 0 1 +There is there T Th The Ther BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 5 , 1 10 0 0 0 0 1 +available in available a av ava avai BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 5 : 1 4 0 0 0 0 1 +o Attribute o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 5 6 . 1 10 0 0 0 0 1 +client to client c cl cli clie BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 6 no 0 8 0 0 0 0 1 +requirements of requirements r re req requ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 6 no 0 8 0 0 0 0 1 +leverage optimizations leverage l le lev leve BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 6 no 0 9 0 0 0 0 1 +continuity (e.g., continuity c co con cont BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 6 (.., 4 9 0 0 0 0 1 +system is system s sy sys syst BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 6 , 1 9 0 0 0 0 1 +not have not n no not not BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 6 ' 1 9 0 0 0 0 1 +different replica). different d di dif diff BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 6 ). 2 3 0 0 0 0 1 +o File o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 5 8 no 0 9 0 0 0 0 1 +replicas, from replicas, r re rep repl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 8 ,', 3 10 0 0 0 0 1 +target file target t ta tar targ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 8 ,, 2 9 0 0 0 0 1 +without disruption, without w wi wit with BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 8 , 1 10 0 0 0 0 1 +file data. file f fi fil file BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 8 . 1 1 0 0 0 0 1 +Note that note N No Not Note BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 9 no 0 9 0 0 0 0 1 +distinct from distinct d di dis dist BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 9 (). 3 10 0 0 0 0 1 +o Information o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 5 10 , 1 10 0 0 0 0 1 +depending on depending d de dep depe BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 10 ., 2 9 0 0 0 0 1 +applications need applications a ap app appl BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 5 10 --(.., 6 9 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 5 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 11 , 1 10 0 0 0 0 0 +[Page 280] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 5 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 5 0 no 0 4 0 0 0 0 1 +write), while write), w wr wri writ BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 0 ),-- 4 10 0 0 0 0 1 +copy reasonably copy c co cop copy BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 0 . 1 4 0 0 0 0 1 +o Server-derived o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 5 0 -, 2 10 0 0 0 0 1 +used to used u us use used BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 0 - 1 9 0 0 0 0 1 +entire file entire e en ent enti BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 0 . 1 9 0 0 0 0 1 +The fs_locations_info the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 1 no 0 9 0 0 0 0 1 +fs_locations attribute. fs_locations f fs fs_ fs_l BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 1 .-() 4 9 0 0 0 0 1 +contains the contains c co con cont BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 1 no 0 10 0 0 0 0 1 +system and system s sy sys syst BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 1 - 1 9 0 0 0 0 1 +that share that t th tha that BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 1 .- 2 9 0 0 0 0 1 +level structure level l le lev leve BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 1 () 2 9 0 0 0 0 1 +pathname and pathname p pa pat path BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 1 no 0 9 0 0 0 0 1 +paths. For paths. p pa pat path BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 1 ., 2 8 0 0 0 0 1 +fs_locations_server4 structure fs_locations_server4 f fs fs_ fs_l BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 1 -- 2 9 0 0 0 0 1 +information in information i in inf info BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 1 .- 2 9 0 0 0 0 1 +server-replica information server-replica s se ser serv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 1 -, 2 8 0 0 0 0 1 +fls_info, within fls_info, f fl fls fls_ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 1 , 1 9 0 0 0 0 1 +the specific the t th the the BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 1 . 1 5 0 0 0 0 1 +Two fs_location_server4 two T Tw Two Two BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 5 no 0 8 0 0 0 0 1 +fs_location_item4 structures fs_location_item4 f fs fs_ fs_l BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 5 , 1 9 0 0 0 0 1 +within in within w wi wit with BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 5 no 0 10 0 0 0 0 1 +trunkable. Two trunkable. t tr tru trun BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 5 . 1 8 0 0 0 0 1 +identity information, identity i id ide iden BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 5 ,,, 3 9 0 0 0 0 1 +the case. the t th the the BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 5 . 1 1 0 0 0 0 1 +The attribute the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 6 no 0 7 0 0 0 0 1 +fs_locations_server entry. fs_locations_server f fs fs_ fs_l BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 6 ., 2 10 0 0 0 0 1 +the FS4LIGF_CUR_REQ the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 6 , 1 9 0 0 0 0 1 +there will there t th the ther BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 6 . 1 6 0 0 0 0 1 +It should it I It It It BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 7 no 0 9 0 0 0 0 1 +servers for servers s se ser serv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 7 . 1 9 0 0 0 0 1 +server may server s se ser serv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 7 no 0 9 0 0 0 0 1 +servers. Further, servers. s se ser serv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 7 .,. 3 9 0 0 0 0 1 +might be might m mi mig migh BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 7 no 0 9 0 0 0 0 1 +going in going g go goi goin BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 7 . 1 8 0 0 0 0 1 +filehandles are filehandles f fi fil file BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 7 ,' 2 10 0 0 0 0 1 +not have not n no not not BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 7 . 1 8 0 0 0 0 1 +The fs_locations_info the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 10 no 0 8 0 0 0 0 1 +(fli_fs_root, just (fli_fs_root, ( (f (fl (fli BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 10 (,), 4 9 0 0 0 0 1 +together with together t to tog toge BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 10 . 1 8 0 0 0 0 1 +fs_location_item4 structures fs_location_item4 f fs fs_ fs_l BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 10 no 0 9 0 0 0 0 1 +(fli_rootpath) together (fli_rootpath) ( (f (fl (fli BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 10 ()() 4 10 0 0 0 0 1 +data type data d da dat data BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 10 ,. 2 8 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 5 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 11 , 1 10 0 0 0 0 0 +[Page 281] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 5 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 5 0 no 0 4 0 0 0 0 1 +/* /* /* / /* /* /* BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 5 0 /* 2 0 0 0 0 0 1 +* Defines * * * * * BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 0 * 1 10 0 0 0 0 1 +*/ */ */ * */ */ */ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 5 0 */ 2 0 0 0 0 0 1 +struct fs_locations_server4 struct s st str stru BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 0 no 0 6 0 0 0 0 1 +int32_t int32_t int32_t i in int int3 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 0 no 0 1 0 0 0 0 1 +fls_currency; fls_currency; fls_currency; f fl fls fls_ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 0 ; 1 3 0 0 0 0 1 +opaque opaque opaque o op opa opaq BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 0 no 0 1 0 0 0 0 1 +fls_info<>; fls_info<>; fls_info<>; f fl fls fls_ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 0 ; 1 2 0 0 0 0 1 +utf8str_cis utf8str_cis utf8str_cis u ut utf utf8 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 0 no 0 2 0 0 0 0 1 +fls_server; fls_server; fls_server; f fl fls fls_ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 0 ; 1 2 0 0 0 0 1 +}; }; }; } }; }; }; BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 5 0 ; 1 0 0 0 0 0 1 +/* /* /* / /* /* /* BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 5 2 /* 2 0 0 0 0 0 1 +* Byte * * * * * BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 2 * 1 7 0 0 0 0 1 +* fls_info: * * * * * BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 2 *:,, 4 10 0 0 0 0 1 +* bytes * * * * * BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 2 *. 2 9 0 0 0 0 1 +*/ */ */ * */ */ */ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 5 2 */ 2 0 0 0 0 0 1 +const FSLI4BX_GFLAGS const c co con cons BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 2 no 0 5 0 0 0 0 1 += 0; = = = = = BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 2 ; 1 1 0 0 0 0 1 +const FSLI4BX_TFLAGS const c co con cons BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 2 no 0 5 0 0 0 0 1 += 1; = = = = = BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 2 ; 1 1 0 0 0 0 1 +const FSLI4BX_CLSIMUL const c co con cons BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 3 no 0 8 0 0 0 0 1 += 2; = = = = = BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 3 ; 1 2 0 0 0 0 1 +const FSLI4BX_CLHANDLE const c co con cons BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 3 no 0 9 0 0 0 0 1 += 3; = = = = = BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 3 ; 1 2 0 0 0 0 1 +const FSLI4BX_CLFILEID const c co con cons BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 3 no 0 9 0 0 0 0 1 += 4; = = = = = BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 3 ; 1 2 0 0 0 0 1 +const FSLI4BX_CLWRITEVER const c co con cons BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 3 no 0 10 0 0 0 0 1 += 5; = = = = = BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 3 ; 1 2 0 0 0 0 1 +const FSLI4BX_CLCHANGE const c co con cons BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 3 no 0 9 0 0 0 0 1 += 6; = = = = = BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 3 ; 1 2 0 0 0 0 1 +const FSLI4BX_CLREADDIR const c co con cons BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 3 no 0 9 0 0 0 0 1 += 7; = = = = = BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 3 ; 1 2 0 0 0 0 1 +const FSLI4BX_READRANK const c co con cons BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 5 no 0 9 0 0 0 0 1 += 8; = = = = = BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 5 ; 1 2 0 0 0 0 1 +const FSLI4BX_WRITERANK const c co con cons BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 5 no 0 9 0 0 0 0 1 += 9; = = = = = BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 5 ; 1 2 0 0 0 0 1 +const FSLI4BX_READORDER const c co con cons BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 5 no 0 9 0 0 0 0 1 += 10; = = = = = BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 5 ; 1 2 0 0 0 0 1 +const FSLI4BX_WRITEORDER const c co con cons BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 5 no 0 10 0 0 0 0 1 += 11; = = = = = BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 5 ; 1 2 0 0 0 0 1 +/* /* /* / /* /* /* BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 5 6 /* 2 0 0 0 0 0 1 +* Bits * * * * * BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 6 *. 2 10 0 0 0 0 1 +*/ */ */ * */ */ */ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 5 6 */ 2 0 0 0 0 0 1 +const FSLI4GF_WRITABLE const c co con cons BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 6 no 0 5 0 0 0 0 1 += 0x01; = = = = = BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 6 ; 1 1 0 0 0 0 1 +const FSLI4GF_CUR_REQ const c co con cons BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 6 no 0 4 0 0 0 0 1 += 0x02; = = = = = BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 6 ; 1 1 0 0 0 0 1 +const FSLI4GF_ABSENT const c co con cons BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 6 no 0 4 0 0 0 0 1 += 0x04; = = = = = BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 6 ; 1 1 0 0 0 0 1 +const FSLI4GF_GOING const c co con cons BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 6 no 0 4 0 0 0 0 1 += 0x08; = = = = = BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 6 ; 1 1 0 0 0 0 1 +const FSLI4GF_SPLIT const c co con cons BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 6 no 0 4 0 0 0 0 1 += 0x10; = = = = = BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 6 ; 1 1 0 0 0 0 1 +/* /* /* / /* /* /* BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 5 8 /* 2 0 0 0 0 0 1 +* Bits * * * * * BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 8 *. 2 10 0 0 0 0 1 +*/ */ */ * */ */ */ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 5 8 */ 2 0 0 0 0 0 1 +const FSLI4TF_RDMA const c co con cons BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 8 no 0 4 0 0 0 0 1 += 0x01; = = = = = BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 8 ; 1 1 0 0 0 0 1 +/* /* /* / /* /* /* BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 5 9 /* 2 0 0 0 0 0 1 +* Defines * * * * * BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 9 * 1 10 0 0 0 0 1 +* a * * * * * BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 9 * 1 9 0 0 0 0 1 +* within * * * * * BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 9 * 1 7 0 0 0 0 1 +* single-server * * * * * BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 9 *-. 3 7 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 5 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 11 , 1 10 0 0 0 0 0 +[Page 282] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 5 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 5 0 no 0 4 0 0 0 0 1 +*/ */ */ * */ */ */ BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 5 0 */ 2 1 0 0 0 0 1 +struct fs_locations_item4 struct s st str stru BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 0 no 0 10 0 0 0 0 1 +fs_locations_server4 fs_locations_server4 fs_locations_server4 f fs fs_ fs_l BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 0 no 0 7 0 0 0 0 1 +fli_entries<>; fli_entries<>; fli_entries<>; f fl fli fli_ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 0 ; 1 5 0 0 0 0 1 +pathname4 pathname4 pathname4 p pa pat path BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 0 no 0 3 0 0 0 0 1 +fli_rootpath; fli_rootpath; fli_rootpath; f fl fli fli_ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 0 ; 1 5 0 0 0 0 1 +}; }; }; } }; }; }; BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 5 0 ; 1 1 0 0 0 0 1 +/* /* /* / /* /* /* BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 5 1 /* 2 0 0 0 0 0 1 +* Defines * * * * * BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 1 * 1 10 0 0 0 0 1 +* the * * * * * BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 1 *. 2 10 0 0 0 0 1 +*/ */ */ * */ */ */ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 5 1 */ 2 0 0 0 0 0 1 +struct fs_locations_info4 struct s st str stru BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 1 no 0 8 0 0 0 0 1 +uint32_t uint32_t uint32_t u ui uin uint BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 1 no 0 2 0 0 0 0 1 +fli_flags; fli_flags; fli_flags; f fl fli fli_ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 1 ; 1 3 0 0 0 0 1 +int32_t int32_t int32_t i in int int3 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 1 no 0 2 0 0 0 0 1 +fli_valid_for; fli_valid_for; fli_valid_for; f fl fli fli_ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 1 ; 1 4 0 0 0 0 1 +pathname4 pathname4 pathname4 p pa pat path BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 1 no 0 2 0 0 0 0 1 +fli_fs_root; fli_fs_root; fli_fs_root; f fl fli fli_ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 1 ; 1 3 0 0 0 0 1 +fs_locations_item4 fs_locations_item4 fs_locations_item4 f fs fs_ fs_l BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 1 no 0 5 0 0 0 0 1 +fli_items<>; fli_items<>; fli_items<>; f fl fli fli_ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 1 ; 1 3 0 0 0 0 1 +}; }; }; } }; }; }; BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 5 1 ; 1 0 0 0 0 0 1 +/* /* /* / /* /* /* BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 5 2 /* 2 1 0 0 0 0 1 +* Flag * * * * * BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 2 *. 2 10 0 0 0 0 1 +*/ */ */ * */ */ */ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 5 2 */ 2 1 0 0 0 0 1 +const FSLI4IF_VAR_SUB const c co con cons BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 2 no 0 8 0 0 0 0 1 += 0x00000001; = = = = = BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 2 ; 1 5 0 0 0 0 1 +typedef fs_locations_info4 typedef t ty typ type BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 3 ; 1 10 0 0 0 0 1 +As noted as A As As As BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 3 ,,, 3 10 0 0 0 0 1 +be requested be b be be be BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 3 no 0 10 0 0 0 0 1 +be returned. be b be be be BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 3 . 1 9 0 0 0 0 1 +both present both b bo bot both BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 3 no 0 8 0 0 0 0 1 +fs_locations_server4 entry fs_locations_server4 f fs fs_ fs_l BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 3 , 1 9 0 0 0 0 1 +(present) file (present) ( (p (pr (pre BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 3 (), 3 8 0 0 0 0 1 +designating the designating d de des desi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 3 ( 1 9 0 0 0 0 1 +just referenced) just j ju jus just BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 3 ). 2 9 0 0 0 0 1 +urged to urged u ur urg urge BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 3 no 0 9 0 0 0 0 1 +it on it i it it it BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 3 . 1 3 0 0 0 0 1 +The data the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 7 no 0 10 0 0 0 0 1 +by the by b by by by BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 7 , 1 9 0 0 0 0 1 +administrator or administrator a ad adm admi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 5 7 no 0 9 0 0 0 0 1 +replicas and replicas r re rep repl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 7 .. 2 9 0 0 0 0 1 +this information this t th thi this BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 7 . 1 8 0 0 0 0 1 +11.16.1. The 11.16.1. 1 11 11. 11.1 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 9 ... 3 10 0 0 0 0 1 +The fs_locations_server4 the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 9 no 0 10 0 0 0 0 1 +addition to addition a ad add addi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 9 no 0 10 0 0 0 0 1 +set of set s se set set BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 9 . 1 9 0 0 0 0 1 +Note that note N No Not Note BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 9 (..,) 5 10 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 5 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 11 , 1 10 0 0 0 0 0 +[Page 283] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 5 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 5 0 no 0 4 0 0 0 0 1 +attributes of attributes a at att attr BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 0 no 0 9 0 0 0 0 1 +when there when w wh whe when BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 0 no 0 10 0 0 0 0 1 +replica, each replica, r re rep repl BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 0 ,. 2 9 0 0 0 0 1 +When these when W Wh Whe When BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 1 no 0 8 0 0 0 0 1 +structures, a structures, s st str stru BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 1 , 1 10 0 0 0 0 1 +is best is i is is is BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 1 , 1 10 0 0 0 0 1 +to migration to t to to to BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 1 . 1 9 0 0 0 0 1 +such entries, such s su suc such BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 1 , 1 8 0 0 0 0 1 +erroneous entry erroneous e er err erro BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 1 . 1 9 0 0 0 0 1 +information is information i in inf info BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 1 , 1 9 0 0 0 0 1 +additional trunked additional a ad add addi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 1 no 0 10 0 0 0 0 1 +the address the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 1 , 1 9 0 0 0 0 1 +that path that t th tha that BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 1 . 1 5 0 0 0 0 1 +o An o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 5 3 --() 4 10 0 0 0 0 1 +in seconds. in i in in in BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 5 3 .. 2 8 0 0 0 0 1 +negative value negative n ne neg nega BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 3 no 0 9 0 0 0 0 1 +reasonably useful reasonably r re rea reas BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 3 . 1 9 0 0 0 0 1 +file system file f fi fil file BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 3 no 0 9 0 0 0 0 1 +fully up-to-date fully f fu ful full BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 3 --.-- 5 9 0 0 0 0 1 +this copy this t th thi this BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 3 . 1 9 0 0 0 0 1 +Such a such S Su Suc Such BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 3 no 0 9 0 0 0 0 1 +performed on performed p pe per perf BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 3 no 0 9 0 0 0 0 1 +about how about a ab abo abou BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 3 no 0 9 0 0 0 0 1 +the most the t th the the BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 3 --. 3 3 0 0 0 0 1 +o A o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 5 6 -() 3 8 0 0 0 0 1 +information about information i in inf info BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 6 . 1 9 0 0 0 0 1 +includes general includes i in inc incl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 6 ,, 2 9 0 0 0 0 1 +equivalence class equivalence e eq equ equi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 6 ,. 2 10 0 0 0 0 1 +The encoding the T Th The The BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 6 . 1 5 0 0 0 0 1 +o The o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 5 7 (). 3 9 0 0 0 0 1 +currently being currently c cu cur curr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 7 (),- 4 9 0 0 0 0 1 +be used be b be be be BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 7 no 0 9 0 0 0 0 1 +call. The call. c ca cal call BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 7 ., 2 9 0 0 0 0 1 +formatted the formatted f fo for form BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 7 "" 2 10 0 0 0 0 1 +field of field f fi fie fiel BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 5 7 (.). 4 8 0 0 0 0 1 +With the with W Wi Wit With BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 9 -( 2 8 0 0 0 0 1 +FSLI4BX_TFLAGS with fsli4bx_tflags F FS FSL FSLI BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 9 ), 2 10 0 0 0 0 1 +the replica the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 9 , 1 10 0 0 0 0 1 +path used path p pa pat path BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 9 . 1 3 0 0 0 0 1 +Data within data D Da Dat Data BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 10 - 1 9 0 0 0 0 1 +with constants with w wi wit with BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 10 no 0 10 0 0 0 0 1 +describing this describing d de des desc BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 10 . 1 9 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 5 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 11 , 1 10 0 0 0 0 0 +[Page 284] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 5 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 5 0 no 0 4 0 0 0 0 1 +definition was definition d de def defi BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 0 , 1 10 0 0 0 0 1 +definitions for definitions d de def defi BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 0 ,. 2 8 0 0 0 0 1 +o The o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 5 0 ,, 2 10 0 0 0 0 1 +system classes, system s sy sys syst BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 0 , 1 8 0 0 0 0 1 +representing the representing r re rep repr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 0 , 1 9 0 0 0 0 1 +acceptable range acceptable a ac acc acce BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 0 . 1 9 0 0 0 0 1 +256 such 256 2 25 256 256 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 0 0 0 0 0 0 0 0 5 0 , 1 9 0 0 0 0 1 +classes or classes c cl cla clas BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 0 . 1 5 0 0 0 0 1 +o Explicit o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 5 2 no 0 10 0 0 0 0 1 +would limit would w wo wou woul BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 2 no 0 8 0 0 0 0 1 +require yet require r re req requ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 2 , 1 8 0 0 0 0 1 +implementation clumsiness. implementation i im imp impl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 2 . 1 9 0 0 0 0 1 +model in model m mo mod mode BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 2 (.. 3 9 0 0 0 0 1 +that described that t th tha that BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 2 []), 4 9 0 0 0 0 1 +minor version minor m mi min mino BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 5 2 no 0 9 0 0 0 0 1 +in in in i in in in BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 5 2 . 1 2 0 0 0 0 1 +The set the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 4 no 0 9 0 0 0 0 1 +version, or version, v ve ver vers BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 4 ,, 2 10 0 0 0 0 1 +minor version. minor m mi min mino BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 5 4 . 1 9 0 0 0 0 1 +use indices use u us use use BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 4 no 0 9 0 0 0 0 1 +defined in defined d de def defi BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 4 . 1 4 0 0 0 0 1 +In light in I In In In BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 5 6 [] 2 10 0 0 0 0 1 +fact that fact f fa fac fact BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 6 no 0 9 0 0 0 0 1 +referenced in referenced r re ref refe BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 6 , 1 9 0 0 0 0 1 +when extending when w wh whe when BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 6 no 0 9 0 0 0 0 1 +returned in returned r re ret retu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 6 . 1 9 0 0 0 0 1 +o All o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 5 7 . 1 10 0 0 0 0 1 +There is there T Th The Ther BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 7 no 0 8 0 0 0 0 1 +RFC5661 [60] rfc5661 R RF RFC RFC5 BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 7 []. 3 4 0 0 0 0 1 +o It o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 5 8 no 0 9 0 0 0 0 1 +data items data d da dat data BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 8 no 0 10 0 0 0 0 1 +specific network specific s sp spe spec BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 8 . 1 7 0 0 0 0 1 +o There o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 5 9 no 0 10 0 0 0 0 1 +server is server s se ser serv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 9 . 1 9 0 0 0 0 1 +field of field f fi fie fiel BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 5 9 , 1 9 0 0 0 0 1 +fs-scope or fs-scope f fs fs- fs-s BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 9 -- 2 9 0 0 0 0 1 +are provided. are a ar are are BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 9 . 1 2 0 0 0 0 1 +This encoding this T Th Thi This BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 10 - 1 9 0 0 0 0 1 +byte numeric byte b by byt byte BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 10 ,. 2 9 0 0 0 0 1 +extensions are extensions e ex ext exte BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 10 ,- 2 10 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 5 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 11 , 1 10 0 0 0 0 0 +[Page 285] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 5 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 5 0 no 0 4 0 0 0 0 1 +will be will w wi wil will BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 5 0 , 1 10 0 0 0 0 1 +byte interpreted byte b by byt byte BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 0 -., 3 9 0 0 0 0 1 +assignments will assignments a as ass assi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 0 no 0 8 0 0 0 0 1 +quantities not quantities q qu qua quan BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 0 . 1 6 0 0 0 0 1 +The fls_info the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 1 : 1 10 0 0 0 0 1 +o Two o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 5 1 -,- 3 10 0 0 0 0 1 +characteristics and characteristics c ch cha char BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 1 - 1 10 0 0 0 0 1 +capabilities. capabilities. capabilities. c ca cap capa BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 1 . 1 2 0 0 0 0 1 +o Six o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 5 2 - 1 10 0 0 0 0 1 +classes as classes c cl cla clas BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 2 . 1 4 0 0 0 0 1 +o Four o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 5 2 - 1 10 0 0 0 0 1 +explained below. explained e ex exp expl BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 2 . 1 2 0 0 0 0 1 +The general the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 3 ( 1 10 0 0 0 0 1 +FSLI4BX_GFLAGS) has fsli4bx_gflags) F FS FSL FSLI BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 3 ): 2 9 0 0 0 0 1 +o FSLI4GF_WRITABLE o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 5 3 no 0 9 0 0 0 0 1 +writable, allowing writable, w wr wri writ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 3 , 1 9 0 0 0 0 1 +write on write w wr wri writ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 3 . 1 9 0 0 0 0 1 +is writable is i is is is BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 3 no 0 9 0 0 0 0 1 +(as specified (as ( (a (as (as BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 3 () 2 9 0 0 0 0 1 +client was client c cl cli clie BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 3 , 1 10 0 0 0 0 1 +data any data d da dat data BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 3 . 1 9 0 0 0 0 1 +See Section see S Se See See BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 5 3 ..,-. 5 9 0 0 0 0 1 +While there while W Wh Whi Whil BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 3 no 0 9 0 0 0 0 1 +that turns that t th tha that BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 3 ,- 2 10 0 0 0 0 1 +file system file f fi fil file BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 3 no 0 10 0 0 0 0 1 +or replication or o or or or BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 3 no 0 9 0 0 0 0 1 +unable to unable u un una unab BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 3 . 1 2 0 0 0 0 1 +o FSLI4GF_CUR_REQ o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 5 7 no 0 10 0 0 0 0 1 +the request the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 7 . 1 9 0 0 0 0 1 +this flag this t th thi this BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 7 ,, 2 9 0 0 0 0 1 +it set. it i it it it BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 7 . 1 9 0 0 0 0 1 +made on made m ma mad made BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 7 no 0 8 0 0 0 0 1 +specified in specified s sp spe spec BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 7 . 1 4 0 0 0 0 1 +o FSLI4GF_ABSENT o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 5 9 no 0 10 0 0 0 0 1 +file system file f fi fil file BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 9 . 1 9 0 0 0 0 1 +set. When set. s se set set. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 9 ., 2 9 0 0 0 0 1 +instance is instance i in ins inst BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 9 no 0 9 0 0 0 0 1 +be used be b be be be BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 9 no 0 8 0 0 0 0 1 +switching from switching s sw swi swit BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 5 9 . 1 9 0 0 0 0 1 +this bit this t th thi this BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 9 , 1 9 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 5 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 11 , 1 10 0 0 0 0 0 +[Page 286] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 5 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 5 0 no 0 4 0 0 0 0 1 +could be could c co cou coul BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 0 , 1 8 0 0 0 0 1 +information is information i in inf info BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 0 no 0 10 0 0 0 0 1 +client. An client. c cl cli clie BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 0 ., 2 9 0 0 0 0 1 +system (albeit system s sy sys syst BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 0 (), 3 8 0 0 0 0 1 +referral, but referral, r re ref refe BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 0 , 1 9 0 0 0 0 1 +location and location l lo loc loca BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 0 . 1 6 0 0 0 0 1 +o FSLI4GF_GOING o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 5 1 ,, 2 9 0 0 0 0 1 +should not should s sh sho shou BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 1 .,, 3 9 0 0 0 0 1 +an orderly an a an an an BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 5 1 no 0 8 0 0 0 0 1 +expeditiously as expeditiously e ex exp expe BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 1 . 1 9 0 0 0 0 1 +out of out o ou out out BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 1 no 0 10 0 0 0 0 1 +the actual the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 1 . 1 8 0 0 0 0 1 +fli_valid_for value fli_valid_for f fl fli fli_ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 1 no 0 10 0 0 0 0 1 +detect and detect d de det dete BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 1 , 1 9 0 0 0 0 1 +cost of cost c co cos cost BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 1 no 0 9 0 0 0 0 1 +not be not n no not not BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 1 . 1 8 0 0 0 0 1 +reasonable. reasonable. reasonable. r re rea reas BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 1 . 1 1 0 0 0 0 1 +When this when W Wh Whe When BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 4 no 0 9 0 0 0 0 1 +system, a system, s sy sys syst BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 4 , 1 10 0 0 0 0 1 +replica, or replica, r re rep repl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 4 , 1 9 0 0 0 0 1 +transition when transition t tr tra tran BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 4 ., 2 9 0 0 0 0 1 +flag appears flag f fl fla flag BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 4 , 1 9 0 0 0 0 1 +avoid being avoid a av avo avoi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 4 no 0 9 0 0 0 0 1 +choice. choice. choice. c ch cho choi BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 4 . 1 1 0 0 0 0 1 +This flag, this T Th Thi This BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 6 , 1 9 0 0 0 0 1 +replica, rather replica, r re rep repl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 6 ,. 2 10 0 0 0 0 1 +it appears, it i it it it BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 6 , 1 9 0 0 0 0 1 +different path different d di dif diff BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 6 ,. 2 7 0 0 0 0 1 +o FSLI4GF_SPLIT o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 5 7 no 0 9 0 0 0 0 1 +current file current c cu cur curr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 7 , 1 9 0 0 0 0 1 +consist of consist c co con cons BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 7 ., 2 9 0 0 0 0 1 +be prepared be b be be be BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 7 no 0 9 0 0 0 0 1 +system before system s sy sys syst BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 7 . 1 9 0 0 0 0 1 +that FSLI4GF_SPLIT that t th tha that BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 7 no 0 9 0 0 0 0 1 +belonging to belonging b be bel belo BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 7 , 1 9 0 0 0 0 1 +fileids that fileids f fi fil file BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 7 , 1 10 0 0 0 0 1 +to a to t to to to BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 7 no 0 8 0 0 0 0 1 +conflicts internal conflicts c co con conf BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 7 . 1 5 0 0 0 0 1 +A client, a A A A A BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 1 0 0 0 0 0 5 10 ,, 2 9 0 0 0 0 1 +existing files existing e ex exi exis BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 10 ( 1 10 0 0 0 0 1 +to simply to t to to to BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 10 ). 2 9 0 0 0 0 1 +directory filehandle directory d di dir dire BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 10 , 1 8 0 0 0 0 1 +proceed upward proceed p pr pro proc BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 10 no 0 8 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 5 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 11 , 1 10 0 0 0 0 0 +[Page 287] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 5 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 5 0 no 0 4 0 0 0 0 1 +boundaries. Note boundaries. b bo bou boun BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 0 ., 2 9 0 0 0 0 1 +be any be b be be be BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 0 . 1 9 0 0 0 0 1 +Instead, a instead, I In Ins Inst BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 0 , 1 10 0 0 0 0 1 +split off split s sp spl spli BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 0 no 0 9 0 0 0 0 1 +and possibly and a an and and BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 0 . 1 5 0 0 0 0 1 +Once the once O On Onc Once BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 1 no 0 9 0 0 0 0 1 +into two, into i in int into BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 1 , 1 10 0 0 0 0 1 +presenting the presenting p pr pre pres BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 1 no 0 10 0 0 0 0 1 +point to point p po poi poin BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 1 ,. 2 9 0 0 0 0 1 +require a require r re req requ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 1 ' 1 9 0 0 0 0 1 +client, but client, c cl cli clie BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 1 ,. 2 9 0 0 0 0 1 +above, existing above, a ab abo abov BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 1 , 1 9 0 0 0 0 1 +will not will w wi wil will BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 5 1 .- 2 9 0 0 0 0 1 +created files created c cr cre crea BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 1 no 0 9 0 0 0 0 1 +the server the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 1 (). 3 9 0 0 0 0 1 +filehandles such filehandles f fi fil file BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 1 no 0 10 0 0 0 0 1 +can be can c ca can can BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 1 , 1 9 0 0 0 0 1 +the server the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 1 no 0 9 0 0 0 0 1 +systems as systems s sy sys syst BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 5 1 . 1 3 0 0 0 0 1 +Although it although A Al Alt Alth BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 5 no 0 10 0 0 0 0 1 +of referral, of o of of of BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 5 , 1 9 0 0 0 0 1 +client, since client, c cl cli clie BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 5 , 1 9 0 0 0 0 1 +regarding the regarding r re reg rega BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 5 . 1 8 0 0 0 0 1 +The transport-flag the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 6 -() 3 10 0 0 0 0 1 +following bits following f fo fol foll BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 6 no 0 10 0 0 0 0 1 +network path(s) network n ne net netw BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 5 6 (). 3 5 0 0 0 0 1 +o FSLI4TF_RDMA o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 5 7 no 0 10 0 0 0 0 1 +NFSv4.1 clients nfsv4.1 N NF NFS NFSv BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 7 .-. 3 8 0 0 0 0 1 +Attribute continuity attribute A At Att Attr BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 7 no 0 9 0 0 0 0 1 +expressed by expressed e ex exp expr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 7 no 0 9 0 0 0 0 1 +systems presented systems s sy sys syst BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 5 7 . 1 10 0 0 0 0 1 +a set a a a a a BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 1 0 0 0 0 0 5 7 ., 2 10 0 0 0 0 1 +system has system s sy sys syst BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 7 -. 2 9 0 0 0 0 1 +same class same s sa sam same BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 7 -. 2 9 0 0 0 0 1 +treated as treated t tr tre trea BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 7 -., 3 9 0 0 0 0 1 +client will client c cl cli clie BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 7 / 1 10 0 0 0 0 1 +with the with w wi wit with BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 7 , 1 10 0 0 0 0 1 +be available be b be be be BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 7 no 0 9 0 0 0 0 1 +respect as respect r re res resp BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 7 . 1 2 0 0 0 0 1 +The following the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 10 ' 1 10 0 0 0 0 1 +equivalence relations equivalence e eq equ equi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 10 no 0 9 0 0 0 0 1 +transitions. See transitions. t tr tra tran BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 10 ... 3 9 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 5 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 11 , 1 10 0 0 0 0 0 +[Page 288] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 5 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 5 0 no 0 4 0 0 0 0 1 +subsections for subsections s su sub subs BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 0 . 1 9 0 0 0 0 1 +Servers may servers S Se Ser Serv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 5 0 , 1 10 0 0 0 0 1 +instances that instances i in ins inst BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 0 no 0 9 0 0 0 0 1 +to one to t to to to BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 0 ;, 2 9 0 0 0 0 1 +relationship to relationship r re rel rela BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 0 . 1 9 0 0 0 0 1 +instance entry instance i in ins inst BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 0 , 1 9 0 0 0 0 1 +previously entered previously p pr pre prev BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 0 , 1 9 0 0 0 0 1 +that bears that t th tha that BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 0 ,' 2 9 0 0 0 0 1 +be copied be b be be be BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 0 ., 2 9 0 0 0 0 1 +new value new n ne new new BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 0 (), 3 10 0 0 0 0 1 +most likely most m mo mos most BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 0 no 0 8 0 0 0 0 1 +assigned for assigned a as ass assi BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 0 . 1 3 0 0 0 0 1 +o The o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 5 4 no 0 10 0 0 0 0 1 +simultaneous-use class simultaneous-use s si sim simu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 4 -. 2 7 0 0 0 0 1 +o The o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 5 4 no 0 10 0 0 0 0 1 +class for class c cl cla clas BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 4 . 1 4 0 0 0 0 1 +o The o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 5 5 no 0 10 0 0 0 0 1 +class for class c cl cla clas BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 5 . 1 4 0 0 0 0 1 +o The o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 5 5 - 1 10 0 0 0 0 1 +verifier class verifier v ve ver veri BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 5 . 1 5 0 0 0 0 1 +o The o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 5 6 no 0 10 0 0 0 0 1 +class for class c cl cla clas BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 6 . 1 4 0 0 0 0 1 +o The o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 5 6 no 0 10 0 0 0 0 1 +class for class c cl cla clas BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 6 . 1 4 0 0 0 0 1 +Server-specified preference server-specified S Se Ser Serv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 5 6 -- 2 9 0 0 0 0 1 +values within values v va val valu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 6 . 1 9 0 0 0 0 1 +order (see order o or ord orde BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 6 () 2 10 0 0 0 0 1 +cases of cases c ca cas case BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 6 -. 2 9 0 0 0 0 1 +compared for compared c co com comp BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 6 - 1 10 0 0 0 0 1 +preference, with preference, p pr pre pref BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 6 ,"". 4 8 0 0 0 0 1 +Rank is rank R Ra Ran Rank BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 8 -, 2 10 0 0 0 0 1 +with lower with w wi wit with BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 8 "". 3 8 0 0 0 0 1 +attempt to attempt a at att atte BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 8 no 0 9 0 0 0 0 1 +with a with w wi wit with BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 8 . 1 8 0 0 0 0 1 +unavailable should unavailable u un una unav BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 8 . 1 9 0 0 0 0 1 +Because specifying because B Be Bec Beca BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 8 , 1 9 0 0 0 0 1 +should be should s sh sho shou BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 8 , 1 10 0 0 0 0 1 +the environment the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 8 no 0 10 0 0 0 0 1 +are neither are a ar are are BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 8 . 1 8 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 5 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 11 , 1 10 0 0 0 0 0 +[Page 289] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 5 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 5 0 no 0 4 0 0 0 0 1 +Within a within W Wi Wit With BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 0 ,' 2 9 0 0 0 0 1 +preference to preference p pr pre pref BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 0 '' 2 9 0 0 0 0 1 +preferences are preferences p pr pre pref BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 0 , 1 8 0 0 0 0 1 +indicating "more indicating i in ind indi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 0 "". 3 10 0 0 0 0 1 +all respects, all a al all all BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 0 , 1 9 0 0 0 0 1 +server. When server. s se ser serv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 0 . 1 8 0 0 0 0 1 +selection, they selection, s se sel sele BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 0 ,, 2 10 0 0 0 0 1 +that when that t th tha that BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 0 ,- 2 9 0 0 0 0 1 +specified order specified s sp spe spec BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 0 . 1 5 0 0 0 0 1 +o The o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 5 3 no 0 10 0 0 0 0 1 +be used be b be be be BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 3 -. 2 4 0 0 0 0 1 +o The o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 5 3 no 0 10 0 0 0 0 1 +be used be b be be be BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 3 -. 2 4 0 0 0 0 1 +o The o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 5 4 no 0 10 0 0 0 0 1 +be used be b be be be BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 4 . 1 4 0 0 0 0 1 +o The o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 5 4 no 0 10 0 0 0 0 1 +to be to t to to to BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 4 . 1 4 0 0 0 0 1 +Depending on depending D De Dep Depe BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 5 , 1 9 0 0 0 0 1 +one of one o on one one BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 5 . 1 9 0 0 0 0 1 +order should order o or ord orde BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 5 no 0 9 0 0 0 0 1 +ever be ever e ev eve ever BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 5 no 0 10 0 0 0 0 1 +the event the t th the the BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 5 . 1 10 0 0 0 0 1 +11.16.2. The 11.16.2. 1 11 11. 11.1 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 7 ... 3 10 0 0 0 0 1 +The fs_locations_info4 the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 7 , 1 10 0 0 0 0 1 +attribute, contains attribute, a at att attr BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 7 ,: 2 5 0 0 0 0 1 +o The o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 5 7 , 1 10 0 0 0 0 1 +interpretation of interpretation i in int inte BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 7 no 0 8 0 0 0 0 1 +fs_locations_item4 structures fs_locations_item4 f fs fs_ fs_l BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 7 . 1 9 0 0 0 0 1 +defined is defined d de def defi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 7 . 1 9 0 0 0 0 1 +are not are a ar are are BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 7 . 1 7 0 0 0 0 1 +o The o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 5 9 , 1 10 0 0 0 0 1 +the current the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 9 , 1 9 0 0 0 0 1 +the fs_locations4 the t th the the BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 9 . 1 4 0 0 0 0 1 +o An o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 5 10 , 1 10 0 0 0 0 1 +contain information contain c co con cont BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 10 . 1 9 0 0 0 0 1 +Where the where W Wh Whe Wher BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 10 , 1 9 0 0 0 0 1 +present, i.e., present, p pr pre pres BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 10 ,..,, 5 8 0 0 0 0 1 +fs_locations_item4 structures fs_locations_item4 f fs fs_ fs_l BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 10 no 0 9 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 5 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 11 , 1 10 0 0 0 0 0 +[Page 290] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 5 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 5 0 no 0 4 0 0 0 0 1 +for the for f fo for for BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 0 . 1 9 0 0 0 0 1 +set if set s se set set BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 0 ,.., 4 10 0 0 0 0 1 +it will it i it it it BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 0 . 1 4 0 0 0 0 1 +o The o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 5 1 no 0 10 0 0 0 0 1 +is reasonable is i is is is BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 1 no 0 9 0 0 0 0 1 +without refetch. without w wi wit with BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 1 . 1 8 0 0 0 0 1 +guarantee of guarantee g gu gua guar BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 1 no 0 9 0 0 0 0 1 +service or service s se ser serv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 1 . 1 9 0 0 0 0 1 +are well-advised are a ar are are BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 1 - 1 9 0 0 0 0 1 +accessed file accessed a ac acc acce BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 1 . 1 9 0 0 0 0 1 +particularly important particularly p pa par part BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 1 no 0 9 0 0 0 0 1 +service in service s se ser serv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 1 no 0 8 0 0 0 0 1 +communicate an communicate c co com comm BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 1 . 1 7 0 0 0 0 1 +fli_valid_for to fli_valid_for f fl fli fli_ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 1 - 1 9 0 0 0 0 1 +notice the notice n no not noti BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 1 no 0 9 0 0 0 0 1 +the loss the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 1 ., 2 9 0 0 0 0 1 +then no then t th the then BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 1 no 0 9 0 0 0 0 1 +refetch this refetch r re ref refe BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 1 . 1 9 0 0 0 0 1 +transition to transition t tr tra tran BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 1 , 1 9 0 0 0 0 1 +fs_locations_info attribute fs_locations_info f fs fs_ fs_l BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 1 . 1 9 0 0 0 0 1 +It is it I It It It BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 1 no 0 9 0 0 0 0 1 +value, which value, v va val valu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 1 , 1 10 0 0 0 0 1 +previous value. previous p pr pre prev BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 1 . 1 8 0 0 0 0 1 +information from information i in inf info BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 1 , 1 10 0 0 0 0 1 +will typically will w wi wil will BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 5 1 no 0 9 0 0 0 0 1 +replicas are replicas r re rep repl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 1 . 1 9 0 0 0 0 1 +Note that, note N No Not Note BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 1 , 1 8 0 0 0 0 1 +NFS4ERR_MOVED to nfs4err_moved N NF NFS NFS4 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 1 , 1 8 0 0 0 0 1 +alternate trunked alternate a al alt alte BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 1 , 1 9 0 0 0 0 1 +to use to t to to to BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 1 no 0 8 0 0 0 0 1 +management of management m ma man mana BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 5 1 . 1 7 0 0 0 0 1 +The FSLI4IF_VAR_SUB the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 9 no 0 10 0 0 0 0 1 +substitution is substitution s su sub subs BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 9 ... 3 8 0 0 0 0 1 +explanation of explanation e ex exp expl BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 9 . 1 5 0 0 0 0 1 +11.16.3. The 11.16.3. 1 11 11. 11.1 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 9 ... 3 10 0 0 0 0 1 +The fs_locations_item4 the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 10 ( 1 10 0 0 0 0 1 +fli_rootpath) that fli_rootpath) f fl fli fli_ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 10 ) 1 9 0 0 0 0 1 +replicas on replicas r re rep repl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 10 no 0 8 0 0 0 0 1 +fs_locations_server4 entries. fs_locations_server4 f fs fs_ fs_l BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 10 . 1 9 0 0 0 0 1 +target location target t ta tar targ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 10 no 0 8 0 0 0 0 1 +FSLI4IF_VAR_SUB flag fsli4if_var_sub F FS FSL FSLI BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 10 no 0 9 0 0 0 0 1 +structure. structure. structure. s st str stru BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 10 . 1 1 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 5 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 11 , 1 10 0 0 0 0 0 +[Page 291] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 5 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 5 0 no 0 4 0 0 0 0 1 +If this if I If If If BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 0 , 1 9 0 0 0 0 1 +location of location l lo loc loca BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 0 '- 2 10 0 0 0 0 1 +namespace just namespace n na nam name BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 0 no 0 9 0 0 0 0 1 +structure. When structure. s st str stru BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 0 .,, 3 9 0 0 0 0 1 +certain form certain c ce cer cert BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 0 - 1 9 0 0 0 0 1 +as to as a as as as BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 0 - 1 8 0 0 0 0 1 +accommodate the accommodate a ac acc acco BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 0 - 1 9 0 0 0 0 1 +adapt to adapt a ad ada adap BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 0 . 1 9 0 0 0 0 1 +When such when W Wh Whe When BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 2 , 1 9 0 0 0 0 1 +string "${" string s st str stri BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 2 "$""" 5 10 0 0 0 0 1 +to be to t to to to BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 2 - 1 9 0 0 0 0 1 +variable. The variable. v va var vari BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 2 ."" 3 9 0 0 0 0 1 +has no has h ha has has BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 2 . 1 9 0 0 0 0 1 +substitutions is substitutions s su sub subs BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 2 , 1 9 0 0 0 0 1 +different clients different d di dif diff BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 2 , 1 9 0 0 0 0 1 +that location that t th tha that BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 2 -. 2 6 0 0 0 0 1 +As mentioned as A As As As BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 4 , 1 9 0 0 0 0 1 +colon. The colon. c co col colo BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 4 ., 2 10 0 0 0 0 1 +part after part p pa par part BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 4 -. 2 8 0 0 0 0 1 +Where the where W Wh Whe Wher BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 5 ".", 4 9 0 0 0 0 1 +document or document d do doc docu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 5 no 0 9 0 0 0 0 1 +substitution. Organizations substitution. s su sub subs BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 5 . 1 9 0 0 0 0 1 +create their create c cr cre crea BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 5 -, 2 10 0 0 0 0 1 +such substitution. such s su suc such BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 5 . 1 9 0 0 0 0 1 +used more used u us use used BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 5 , 1 9 0 0 0 0 1 +Informational RFC informational I In Inf Info BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 5 5 . 1 8 0 0 0 0 1 +The variable the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 7 $.: 3 9 0 0 0 0 1 +architecture object architecture a ar arc arch BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 7 . 1 10 0 0 0 0 1 +limit the limit l li lim limi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 7 (- 2 9 0 0 0 0 1 +strings), but strings), s st str stri BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 7 ),"","","" 10 9 0 0 0 0 1 +expected to expected e ex exp expe BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 7 . 1 7 0 0 0 0 1 +The variable the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 8 $.: 3 9 0 0 0 0 1 +system, and system, s sy sys syst BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 8 ,, 2 10 0 0 0 0 1 +compiled. This compiled. c co com comp BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 8 . 1 9 0 0 0 0 1 +(except that (except ( (e (ex (exc BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 8 (-), 4 9 0 0 0 0 1 +"linux" and "linux" " "l "li "lin BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 8 """" 4 9 0 0 0 0 1 +industry practice. industry i in ind indu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 8 . 1 2 0 0 0 0 1 +The variable the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 10 $.: 3 9 0 0 0 0 1 +system version, system s sy sys syst BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 10 , 1 8 0 0 0 0 1 +interfaces, for interfaces, i in int inte BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 10 ,. 2 9 0 0 0 0 1 +does not does d do doe does BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 10 ( 1 10 0 0 0 0 1 +UTF-8 strings). utf-8 U UT UTF UTF- BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 10 -)., 4 9 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 5 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 11 , 1 10 0 0 0 0 0 +[Page 292] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 5 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 5 0 no 0 4 0 0 0 0 1 +interspersed dots interspersed i in int inte BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 0 no 0 10 0 0 0 0 1 +practice, with practice, p pr pra prac BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 0 , 1 9 0 0 0 0 1 +specific value specific s sp spe spec BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 0 $.: 3 9 0 0 0 0 1 +used. used. used. u us use used BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 0 . 1 0 0 0 0 0 1 +Use of use U Us Use Use BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 1 no 0 9 0 0 0 0 1 +clients to clients c cl cli clie BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 1 , 1 10 0 0 0 0 1 +to particular to t to to to BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 1 . 1 10 0 0 0 0 1 +located on located l lo loc loca BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 1 , 1 9 0 0 0 0 1 +referral point referral r re ref refe BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 1 no 0 9 0 0 0 0 1 +would designate would w wo wou woul BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 1 , 1 9 0 0 0 0 1 +targets of targets t ta tar targ BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 1 . 1 8 0 0 0 0 1 +Because namespace because B Be Bec Beca BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 4 no 0 9 0 0 0 0 1 +to substitute to t to to to BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 4 , 1 8 0 0 0 0 1 +convenient means convenient c co con conv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 4 no 0 10 0 0 0 0 1 +will implement, will w wi wil will BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 5 4 ,,, 3 9 0 0 0 0 1 +control the control c co con cont BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 4 . 1 9 0 0 0 0 1 +will be will w wi wil will BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 5 4 . 1 8 0 0 0 0 1 +Although variable although A Al Alt Alth BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 6 no 0 9 0 0 0 0 1 +context of context c co con cont BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 6 , 1 9 0 0 0 0 1 +and migration. and a an and and BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 6 ., 2 9 0 0 0 0 1 +ensure that ensure e en ens ensu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 6 no 0 8 0 0 0 0 1 +substituted variables, substituted s su sub subs BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 6 , 1 9 0 0 0 0 1 +system instance system s sy sys syst BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 6 ,.., 4 9 0 0 0 0 1 +that the that t th tha that BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 6 no 0 10 0 0 0 0 1 +file system. file f fi fil file BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 6 . 1 1 0 0 0 0 1 +Note that note N No Not Note BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 8 (, 2 9 0 0 0 0 1 +zero components), zero z ze zer zero BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 8 ), 2 9 0 0 0 0 1 +specified server, specified s sp spe spec BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 8 , 1 10 0 0 0 0 1 +associated fs_locations_info4 associated a as ass asso BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 8 . 1 6 0 0 0 0 1 +11.17. The 11.17. 1 11 11. 11.1 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 10 .. 2 10 0 0 0 0 1 +In an in I In In In BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 5 10 no 0 10 0 0 0 0 1 +data are data d da dat data BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 10 , 1 9 0 0 0 0 1 +such data such s su suc such BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 10 no 0 9 0 0 0 0 1 +helpful in helpful h he hel help BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 10 . 1 7 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 5 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 11 , 1 10 0 0 0 0 0 +[Page 293] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 5 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 5 0 no 0 4 0 0 0 0 1 +enum fs4_status_type enum e en enu enum BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 0 no 0 10 0 0 0 0 1 +STATUS4_FIXED = status4_fixed S ST STA STAT BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 0 , 1 8 0 0 0 0 1 +STATUS4_UPDATED = status4_updated S ST STA STAT BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 0 , 1 9 0 0 0 0 1 +STATUS4_VERSIONED = status4_versioned S ST STA STAT BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 0 , 1 10 0 0 0 0 1 +STATUS4_WRITABLE = status4_writable S ST STA STAT BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 0 , 1 9 0 0 0 0 1 +STATUS4_REFERRAL = status4_referral S ST STA STAT BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 0 no 0 9 0 0 0 0 1 +}; }; }; } }; }; }; BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 5 0 ; 1 1 0 0 0 0 1 +struct fs4_status struct s st str stru BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 1 no 0 7 0 0 0 0 1 +bool bool bool b bo boo bool BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 1 no 0 1 0 0 0 0 1 +fss_absent; fss_absent; fss_absent; f fs fss fss_ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 1 ; 1 4 0 0 0 0 1 +fs4_status_type fss_type; fs4_status_type f fs fs4 fs4_ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 1 ; 1 10 0 0 0 0 1 +utf8str_cs utf8str_cs utf8str_cs u ut utf utf8 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 1 no 0 4 0 0 0 0 1 +fss_source; fss_source; fss_source; f fs fss fss_ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 1 ; 1 4 0 0 0 0 1 +utf8str_cs utf8str_cs utf8str_cs u ut utf utf8 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 1 no 0 4 0 0 0 0 1 +fss_current; fss_current; fss_current; f fs fss fss_ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 1 ; 1 5 0 0 0 0 1 +int32_t int32_t int32_t i in int int3 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 1 no 0 3 0 0 0 0 1 +fss_age; fss_age; fss_age; f fs fss fss_ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 1 ; 1 3 0 0 0 0 1 +nfstime4 nfstime4 nfstime4 n nf nfs nfst BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 1 no 0 3 0 0 0 0 1 +fss_version; fss_version; fss_version; f fs fss fss_ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 1 ; 1 5 0 0 0 0 1 +}; }; }; } }; }; }; BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 5 1 ; 1 1 0 0 0 0 1 +The boolean the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 2 no 0 10 0 0 0 0 1 +absent. This absent. a ab abs abse BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 2 . 1 9 0 0 0 0 1 +present and present p pr pre pres BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 2 , 1 9 0 0 0 0 1 +present and present p pr pre pres BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 2 . 1 9 0 0 0 0 1 +and the and a an and and BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 2 , 1 9 0 0 0 0 1 +the fs4_status the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 2 no 0 9 0 0 0 0 1 +present. present. present. p pr pre pres BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 2 . 1 1 0 0 0 0 1 +The fss_type the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 4 no 0 8 0 0 0 0 1 +represented. This represented. r re rep repr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 4 . 1 10 0 0 0 0 1 +values to values v va val valu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 4 . 1 9 0 0 0 0 1 +When fss_absent when W Wh Whe When BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 4 ,, 2 9 0 0 0 0 1 +the value the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 4 no 0 9 0 0 0 0 1 +present. Five present. p pr pre pres BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 4 .: 2 5 0 0 0 0 1 +o STATUS4_FIXED, o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 5 6 ,- 2 10 0 0 0 0 1 +it will it i it it it BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 6 ., 2 8 0 0 0 0 1 +result of result r re res resu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 6 , 1 9 0 0 0 0 1 +can be can c ca can can BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 6 ,, 2 8 0 0 0 0 1 +change is change c ch cha chan BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 6 . 1 8 0 0 0 0 1 +aggressively. aggressively. aggressively. a ag agg aggr BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 6 . 1 2 0 0 0 0 1 +o STATUS4_VERSIONED, o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 5 8 ,, 2 9 0 0 0 0 1 +STATUS4_UPDATED case, status4_updated S ST STA STAT BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 8 ,, 2 9 0 0 0 0 1 +guarantee that guarantee g gu gua guar BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 8 no 0 9 0 0 0 0 1 +version value version v ve ver vers BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 8 no 0 9 0 0 0 0 1 +situation in situation s si sit situ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 8 no 0 9 0 0 0 0 1 +system and system s sy sys syst BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 8 no 0 10 0 0 0 0 1 +same file same s sa sam same BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 8 . 1 10 0 0 0 0 1 +done. done. done. d do don done BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 8 . 1 0 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 5 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 11 , 1 10 0 0 0 0 0 +[Page 294] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 5 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 5 0 no 0 4 0 0 0 0 1 +o STATUS4_UPDATED, o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 5 0 , 1 10 0 0 0 0 1 +by the by b by by by BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 0 , 1 9 0 0 0 0 1 +typically because typically t ty typ typi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 0 no 0 9 0 0 0 0 1 +writable file writable w wr wri writ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 0 ., 2 8 0 0 0 0 1 +information is information i in inf info BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 0 , 1 9 0 0 0 0 1 +responsibility of responsibility r re res resp BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 0 no 0 10 0 0 0 0 1 +a file a a a a a BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 1 0 0 0 0 0 5 0 ., 2 8 0 0 0 0 1 +responsibility of responsibility r re res resp BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 0 no 0 9 0 0 0 0 1 +after a after a af aft afte BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 0 no 0 9 0 0 0 0 1 +image and image i im ima imag BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 0 no 0 9 0 0 0 0 1 +made before made m ma mad made BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 0 . 1 4 0 0 0 0 1 +o STATUS4_WRITABLE, o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 5 3 , 1 9 0 0 0 0 1 +actual writable actual a ac act actu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 3 .,, 3 9 0 0 0 0 1 +write to write w wr wri writ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 3 ,, 2 10 0 0 0 0 1 +transition to transition t tr tra tran BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 3 no 0 10 0 0 0 0 1 +file system. file f fi fil file BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 3 . 1 1 0 0 0 0 1 +o STATUS4_REFERRAL, o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 5 4 , 1 10 0 0 0 0 1 +is absent is i is is is BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 4 . 1 7 0 0 0 0 1 +Note that note N No Not Note BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 4 , 1 9 0 0 0 0 1 +server is server s se ser serv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 4 no 0 10 0 0 0 0 1 +inconsistent with inconsistent i in inc inco BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 4 . 1 10 0 0 0 0 1 +out delegations, out o ou out out BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 4 , 1 9 0 0 0 0 1 +change is change c ch cha chan BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 4 , 1 9 0 0 0 0 1 +possible. Similarly, possible. p po pos poss BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 4 ., 2 9 0 0 0 0 1 +changed (the changed c ch cha chan BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 4 (/ 2 9 0 0 0 0 1 +and the and a an and and BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 4 ), 2 8 0 0 0 0 1 +administratively revoked. administratively a ad adm admi BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 4 . 1 3 0 0 0 0 1 +The opaque the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 7 no 0 9 0 0 0 0 1 +presenting information presenting p pr pre pres BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 7 no 0 9 0 0 0 0 1 +being present. being b be bei bein BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 7 . 1 9 0 0 0 0 1 +this information this t th thi this BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 7 no 0 9 0 0 0 0 1 +tools. It tools. t to too tool BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 7 . 1 8 0 0 0 0 1 +researching possible researching r re res rese BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 7 no 0 9 0 0 0 0 1 +arise when arise a ar ari aris BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 7 , 1 10 0 0 0 0 1 +if not, if i if if if BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 7 ,. 2 9 0 0 0 0 1 +information will information i in inf info BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 7 ,,, 3 9 0 0 0 0 1 +systems are systems s sy sys syst BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 5 7 (..,- 5 9 0 0 0 0 1 +copies, file-system-level copies, c co cop copi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 7 ,----, 6 8 0 0 0 0 1 +underlying storage), underlying u un und unde BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 7 ),. 3 10 0 0 0 0 1 +In such in I In In In BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 5 7 , 1 8 0 0 0 0 1 +constructed can constructed c co con cons BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 7 . 1 7 0 0 0 0 1 +The opaque the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 11 no 0 9 0 0 0 0 1 +given file given g gi giv give BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 11 no 0 10 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 5 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 11 , 1 10 0 0 0 0 0 +[Page 295] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 5 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 5 0 no 0 4 0 0 0 0 1 +a file a a a a a BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 1 0 0 0 0 0 5 0 ,. 2 10 0 0 0 0 1 +understood that understood u un und unde BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 0 - 1 9 0 0 0 0 1 +copy may copy c co cop copy BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 0 no 0 10 0 0 0 0 1 +may have may m ma may may BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 1 0 0 5 0 . 1 9 0 0 0 0 1 +initially created, initially i in ini init BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 0 , 1 8 0 0 0 0 1 +regarding how regarding r re reg rega BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 0 ,, 2 10 0 0 0 0 1 +created it, created c cr cre crea BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 0 ,. 2 10 0 0 0 0 1 +in a in i in in in BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 5 0 - 1 9 0 0 0 0 1 +system administrators system s sy sys syst BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 0 no 0 9 0 0 0 0 1 +the original the t th the the BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 0 . 1 8 0 0 0 0 1 +The opaque the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 2 no 0 10 0 0 0 0 1 +available about available a av ava avai BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 2 . 1 9 0 0 0 0 1 +includes the includes i in inc incl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 2 ,, 2 10 0 0 0 0 1 +the time the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 2 ,, 2 10 0 0 0 0 1 +server on server s se ser serv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 2 ,. 2 9 0 0 0 0 1 +in a in i in in in BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 5 2 -. 2 4 0 0 0 0 1 +The field the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 4 -- 2 9 0 0 0 0 1 +system currently system s sy sys syst BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 4 ( 1 10 0 0 0 0 1 +of cascading of o of of of BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 4 ). 2 9 0 0 0 0 1 +of fs_locations_server4 of o of of of BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 4 (.): 4 10 0 0 0 0 1 +information in information i in inf info BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 4 no 0 9 0 0 0 0 1 +data in data d da dat data BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 4 , 1 10 0 0 0 0 1 +gives a gives g gi giv give BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 4 --. 3 9 0 0 0 0 1 +values imply values v va val valu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 4 . 1 9 0 0 0 0 1 +this data this t th thi this BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 4 . 1 9 0 0 0 0 1 +data is data d da dat data BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 4 no 0 10 0 0 0 0 1 +to the to t to to to BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 4 ., 2 9 0 0 0 0 1 +able to able a ab abl able BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 4 , 1 10 0 0 0 0 1 +a newer a a a a a BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 1 0 0 0 0 0 5 4 . 1 3 0 0 0 0 1 +The fss_version the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 8 , 1 9 0 0 0 0 1 +of a of o of of of BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 8 , 1 10 0 0 0 0 1 +values. When values. v va val valu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 8 ., 2 9 0 0 0 0 1 +the server the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 8 , 1 9 0 0 0 0 1 +its validity its i it its its BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 8 no 0 10 0 0 0 0 1 +information to information i in inf info BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 8 . 1 7 0 0 0 0 1 +When fss_type when W Wh Whe When BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 9 , 1 10 0 0 0 0 1 +fss_version that fss_version f fs fss fss_ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 9 no 0 10 0 0 0 0 1 +the data the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 9 ., 2 9 0 0 0 0 1 +progression is progression p pr pro prog BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 9 , 1 9 0 0 0 0 1 +each COMPOUND each e ea eac each BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 9 . 1 9 0 0 0 0 1 +When it when W Wh Whe When BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 10 no 0 9 0 0 0 0 1 +successor images successor s su suc succ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 10 , 1 9 0 0 0 0 1 +read data read r re rea read BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 5 10 no 0 10 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 5 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 11 , 1 10 0 0 0 0 0 +[Page 296] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 5 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 5 0 no 0 4 0 0 0 0 1 +of the of o of of of BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 0 . 1 10 0 0 0 0 1 +that the that t th tha that BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 0 no 0 10 0 0 0 0 1 +image, which image, i im ima imag BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 0 , 1 9 0 0 0 0 1 +instance that instance i in ins inst BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 0 no 0 10 0 0 0 0 1 +data read data d da dat data BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 0 . 1 3 0 0 0 0 1 +In order in I In In In BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 5 1 , 1 9 0 0 0 0 1 +GETATTR of getattr G GE GET GETA BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 5 1 no 0 10 0 0 0 0 1 +data or data d da dat data BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 1 . 1 9 0 0 0 0 1 +most conveniently most m mo mos most BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 1 no 0 9 0 0 0 0 1 +operations that operations o op ope oper BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 5 1 . 1 9 0 0 0 0 1 +between reading between b be bet betw BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 1 , 1 10 0 0 0 0 1 +must be must m mu mus must BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 1 no 0 10 0 0 0 0 1 +before obtaining before b be bef befo BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 1 ., 2 9 0 0 0 0 1 +when an when w wh whe when BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 1 no 0 9 0 0 0 0 1 +associated GETATTR associated a as ass asso BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 1 , 1 9 0 0 0 0 1 +open file open o op ope open BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 1 no 0 9 0 0 0 0 1 +fetched. fetched. fetched. f fe fet fetc BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 1 . 1 1 0 0 0 0 1 +The procedure the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 5 no 0 9 0 0 0 0 1 +file system file f fi fil file BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 5 - 1 10 0 0 0 0 1 +the file the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 5 . 1 9 0 0 0 0 1 +flight can flight f fl fli flig BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 5 no 0 9 0 0 0 0 1 +order (and order o or ord orde BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 5 ( 1 9 0 0 0 0 1 +order) and order) o or ord orde BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 5 )., 3 9 0 0 0 0 1 +file system file f fi fil file BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 5 , 1 9 0 0 0 0 1 +an fss_type an a an an an BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 5 5 no 0 9 0 0 0 0 1 +earlier than earlier e ea ear earl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 5 no 0 9 0 0 0 0 1 +instance. instance. instance. i in ins inst BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 5 . 1 1 0 0 0 0 1 +12. Parallel 12. 1 12 12. 12. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 8 .() 3 10 0 0 0 0 1 +12.1. Introduction 12.1. 1 12 12. 12.1 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 8 .. 2 10 0 0 0 0 1 +pNFS is pnfs p pN pNF pNFS BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 9 .; 2 9 0 0 0 0 1 +allows direct allows a al all allo BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 9 no 0 9 0 0 0 0 1 +data. When data. d da dat data BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 9 . 1 10 0 0 0 0 1 +and/or higher-throughput and/or a an and and/ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 9 /-( 3 9 0 0 0 0 1 +server's throughput server's s se ser serv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 9 '), 3 9 0 0 0 0 1 +better file better b be bet bett BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 9 . 1 9 0 0 0 0 1 +clients, a clients, c cl cli clie BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 9 ,, 2 9 0 0 0 0 1 +(server and (server ( (s (se (ser BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 9 () 2 9 0 0 0 0 1 +Figure 1. figure F Fi Fig Figu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 9 . 1 1 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 5 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 11 , 1 10 0 0 0 0 0 +[Page 297] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 5 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 5 0 no 0 4 0 0 0 0 1 ++-----------+ +-----------+ +-----------+ + +- +-- +--- BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 5 0 ----------- 11 2 0 0 0 0 1 +|+-----------+ |+-----------+ |+-----------+ | |+ |+- |+-- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 5 0 ----------- 11 3 0 0 0 0 1 ++-----------+ +-----------+ +-----------+ + +- +-- +--- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 5 0 ----------- 11 2 0 0 0 0 1 +||+-----------+ ||+-----------+ ||+-----------+ | || ||+ ||+- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 5 0 ----------- 11 3 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 0 no 0 0 0 0 0 0 1 +||| ||| ||| | || ||| ||| BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 5 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 0 no 0 0 0 0 0 0 1 +NFSv4.1 + nfsv4.1 N NF NFS NFSv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 0 . 1 3 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 0 no 0 0 0 0 0 0 1 ++|| Clients +|| + +| +|| +|| BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 5 0 ------------------------------ 30 10 0 0 0 0 1 +Server | server S Se Ser Serv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 5 0 no 0 1 0 0 0 0 1 ++| +| +| + +| +| +| BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 5 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 0 no 0 0 0 0 0 0 1 ++-----------+ +-----------+ +-----------+ + +- +-- +--- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 5 0 ----------- 11 2 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 0 no 0 0 0 0 0 0 1 +||| ||| ||| | || ||| ||| BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 5 0 no 0 0 0 0 0 0 1 ++-----------+ +-----------+ +-----------+ + +- +-- +--- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 5 0 ----------- 11 2 0 0 0 0 1 +||| ||| ||| | || ||| ||| BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 5 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 0 no 0 0 0 0 0 0 1 +||| ||| ||| | || ||| ||| BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 5 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 0 no 0 0 0 0 0 0 1 +||| Storage ||| | || ||| ||| BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 5 0 no 0 2 0 0 0 0 1 ++-----------+ +-----------+ +-----------+ + +- +-- +--- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 5 0 ----------- 11 2 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 0 no 0 0 0 0 0 0 1 +||| Protocol ||| | || ||| ||| BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 5 0 no 0 2 0 0 0 0 1 +|+-----------+ |+-----------+ |+-----------+ | |+ |+- |+-- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 5 0 ----------- 11 3 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 0 no 0 0 0 0 0 0 1 +||+----------------||+-----------+ Control ||+----------------||+-----------+ | || ||+ ||+- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 5 0 --------------------------- 27 9 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 0 no 0 0 0 0 0 0 1 +|+-----------------||| |+-----------------||| |+-----------------||| | |+ |+- |+-- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 5 0 ----------------- 17 4 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 0 no 0 0 0 0 0 0 1 +Protocol| Protocol| protocol| P Pr Pro Prot BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 5 0 no 0 2 0 0 0 0 1 ++------------------+|| Storage +------------------+|| + +- +-- +--- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 5 0 ------------------------------ 30 9 0 0 0 0 1 ++| Devices +| + +| +| +| BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 5 0 no 0 2 0 0 0 0 1 ++-----------+ +-----------+ +-----------+ + +- +-- +--- BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 5 0 ----------- 11 2 0 0 0 0 1 +Figure 1 figure F Fi Fig Figu BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 4 no 0 10 0 0 0 0 1 +In this in I In In In BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 5 4 ,,, 3 8 0 0 0 0 1 +responsible for responsible r re res resp BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 4 . 1 9 0 0 0 0 1 +without pNFS, without w wi wit with BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 4 ,'; 3 10 0 0 0 0 1 +of this of o of of of BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 4 no 0 9 0 0 0 0 1 +specified conditions. specified s sp spe spec BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 4 ... 3 9 0 0 0 0 1 +Storage Protocol. storage S St Sto Stor BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 4 ... 3 9 0 0 0 0 1 +Protocol. Protocol. protocol. P Pr Pro Prot BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 4 . 1 1 0 0 0 0 1 +pNFS takes pnfs p pN pNF pNFS BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 6 no 0 9 0 0 0 0 1 +objects called objects o ob obj obje BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 6 ''(..)- 7 9 0 0 0 0 1 +and storage and a an and and BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 6 . 1 10 0 0 0 0 1 +fashion as fashion f fa fas fash BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 6 .., 3 9 0 0 0 0 1 +leased, recallable, leased, l le lea leas BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 6 ,,., 4 9 0 0 0 0 1 +abstractions and abstractions a ab abs abst BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 6 . 1 9 0 0 0 0 1 +holds a holds h ho hol hold BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 6 , 1 9 0 0 0 0 1 +byte-range at byte-range b by byt byte BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 6 -. 2 8 0 0 0 0 1 +There are there T Th The Ther BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 9 . 1 10 0 0 0 0 1 +such as such s su suc such BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 9 -. 2 9 0 0 0 0 1 +are discussed are a ar are are BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 9 ...- 4 9 0 0 0 0 1 +discussed in discussed d di dis disc BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 9 ..... 5 5 0 0 0 0 1 +12.2. pNFS 12.2. 1 12 12. 12.2 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 10 .. 2 10 0 0 0 0 1 +NFSv4.1's pNFS nfsv4.1's N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 10 .' 2 10 0 0 0 0 1 +that stripes that t th tha that BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 10 . 1 9 0 0 0 0 1 +instantiation of instantiation i in ins inst BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 10 ,., 3 9 0 0 0 0 1 +protocol processing protocol p pr pro prot BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 10 : 1 9 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 5 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 11 , 1 10 0 0 0 0 0 +[Page 298] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 5 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 5 0 no 0 4 0 0 0 0 1 +processing. Data processing. p pr pro proc BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 0 . 1 9 0 0 0 0 1 +striped across striped s st str stri BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 0 . 1 9 0 0 0 0 1 +ways: on ways: w wa way ways BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 0 :--,, 5 9 0 0 0 0 1 +on a on o on on on BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 0 --., 4 9 0 0 0 0 1 +by pNFS by b by by by BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 0 ., 2 9 0 0 0 0 1 +system back system s sy sys syst BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 0 . 1 9 0 0 0 0 1 +consist of consist c co con cons BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 0 ,- 2 9 0 0 0 0 1 +files (e.g., files f fi fil file BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 0 (..,);... 9 8 0 0 0 0 1 +functionality is functionality f fu fun func BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 0 . 1 9 0 0 0 0 1 +and the and a an and and BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 0 ; 1 10 0 0 0 0 1 +metadata server metadata m me met meta BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 0 (..). 5 4 0 0 0 0 1 +The data the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 3 , 1 10 0 0 0 0 1 +each of each e ea eac each BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 3 . 1 9 0 0 0 0 1 +subset (defined subset s su sub subs BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 3 (.). 4 9 0 0 0 0 1 +protocol. New protocol. p pr pro prot BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 3 .. 2 9 0 0 0 0 1 +existing terms existing e ex exi exis BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 3 no 0 10 0 0 0 0 1 +feature. feature. feature. f fe fea feat BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 3 . 1 1 0 0 0 0 1 +12.2.1. Metadata 12.2.1. 1 12 12. 12.2 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 5 ... 3 10 0 0 0 0 1 +Information about information I In Inf Info BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 5 ,, 2 9 0 0 0 0 1 +within the within w wi wit with BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 5 ,,,. 4 10 0 0 0 0 1 +also include also a al als also BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 5 , 1 9 0 0 0 0 1 +on the on o on on on BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 5 . 1 7 0 0 0 0 1 +12.2.2. Metadata 12.2.2. 1 12 12. 12.2 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 6 ... 3 10 0 0 0 0 1 +An NFSv4.1 an A An An An BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 5 7 .. 2 9 0 0 0 0 1 +architectural choices architectural a ar arc arch BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 7 no 0 9 0 0 0 0 1 +file system file f fi fil file BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 7 . 1 9 0 0 0 0 1 +metadata only metadata m me met meta BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 7 , 1 10 0 0 0 0 1 +the file the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 7 . 1 9 0 0 0 0 1 +servers may servers s se ser serv BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 7 . 1 9 0 0 0 0 1 +12.2.3. pNFS 12.2.3. 1 12 12. 12.2 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 9 ... 3 10 0 0 0 0 1 +An NFSv4.1 an A An An An BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 5 9 . 1 10 0 0 0 0 1 +one storage one o on one one BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 9 /. 2 8 0 0 0 0 1 +12.2.4. Storage 12.2.4. 1 12 12. 12.2 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 9 ... 3 10 0 0 0 0 1 +A storage a A A A A BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 1 0 0 0 0 0 5 10 ', 2 9 0 0 0 0 1 +management to management m ma man mana BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 5 10 . 1 10 0 0 0 0 1 +NFSv4.1 server, nfsv4.1 N NF NFS NFSv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 10 .,-(), 6 10 0 0 0 0 1 +accessed over accessed a ac acc acce BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 10 (,.., 5 9 0 0 0 0 1 +or iSCSI or o or or or BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 10 ),. 3 5 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 5 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 11 , 1 10 0 0 0 0 0 +[Page 299] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 5 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 5 0 no 0 4 0 0 0 0 1 +12.2.5. Storage 12.2.5. 1 12 12. 12.2 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 0 ... 3 10 0 0 0 0 1 +As noted as A As As As BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 0 , 1 10 0 0 0 0 1 +client to client c cl cli clie BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 0 . 1 10 0 0 0 0 1 +The NFSv4.1 the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 1 . 1 9 0 0 0 0 1 +of storage of o of of of BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 1 . 1 9 0 0 0 0 1 +protocol is protocol p pr pro prot BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 1 .(). 4 9 0 0 0 0 1 +options for options o op opt opti BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 1 : 1 10 0 0 0 0 1 +o Block/volume o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 5 2 /()[] 5 10 0 0 0 0 1 +[52]. The [52]. [ [5 [52 [52] BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 2 []./ 4 9 0 0 0 0 1 +addressing structure addressing a ad add addr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 2 /, 2 9 0 0 0 0 1 +more than more m mo mor more BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 2 no 0 9 0 0 0 0 1 +extensibility to extensibility e ex ext exte BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 2 /.[] 4 9 0 0 0 0 1 +layout specification layout l la lay layo BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 2 / 1 9 0 0 0 0 1 +protocols. protocols. protocols. p pr pro prot BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 2 . 1 1 0 0 0 0 1 +o Object o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 5 4 []. 3 9 0 0 0 0 1 +See [43] see S Se See See BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 5 4 [] 2 10 0 0 0 0 1 +storage protocols. storage s st sto stor BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 4 . 1 2 0 0 0 0 1 +It is it I It It It BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 5 no 0 9 0 0 0 0 1 +client and client c cl cli clie BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 5 no 0 10 0 0 0 0 1 +not have not n no not not BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 5 . 1 9 0 0 0 0 1 +this, the this, t th thi this BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 5 ,. 2 10 0 0 0 0 1 +accessible by accessible a ac acc acce BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 5 ; 1 8 0 0 0 0 1 +interoperability between interoperability i in int inte BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 5 .. 2 7 0 0 0 0 1 +12.2.6. Control 12.2.6. 1 12 12. 12.2 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 7 ... 3 10 0 0 0 0 1 +As noted as A As As As BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 7 , 1 9 0 0 0 0 1 +file system file f fi fil file BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 7 . 1 8 0 0 0 0 1 +Specification of specification S Sp Spe Spec BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 7 . 1 9 0 0 0 0 1 +protocol. Such protocol. p pr pro prot BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 7 . 1 9 0 0 0 0 1 +such as such s su suc such BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 7 , 1 10 0 0 0 0 1 +state required state s st sta stat BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 7 no 0 9 0 0 0 0 1 +control, and, control, c co con cont BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 7 ,,, 3 9 0 0 0 0 1 +authentication and authentication a au aut auth BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 7 no 0 9 0 0 0 0 1 +enforced by enforced e en enf enfo BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 7 no 0 9 0 0 0 0 1 +device. device. device. d de dev devi BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 7 . 1 1 0 0 0 0 1 +A particular a A A A A BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 1 0 0 0 0 0 5 10 . 1 8 0 0 0 0 1 +requirements are requirements r re req requ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 10 no 0 9 0 0 0 0 1 +attributes like attributes a at att attr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 10 ,,-- 4 9 0 0 0 0 1 +file (EOF) file f fi fil file BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 10 ()., 4 10 0 0 0 0 1 +parallel file parallel p pa par para BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 10 (..,[]), 8 9 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 5 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 11 , 1 10 0 0 0 0 0 +[Page 300] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 5 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 5 0 no 0 4 0 0 0 0 1 +clustering and clustering c cl clu clus BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 0 no 0 10 0 0 0 0 1 +control protocol. control c co con cont BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 0 . 1 2 0 0 0 0 1 +12.2.7. Layout 12.2.7. 1 12 12. 12.2 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 0 ... 3 10 0 0 0 0 1 +A layout a A A A A BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 1 0 0 0 0 0 5 0 ' 1 9 0 0 0 0 1 +devices that devices d de dev devi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 0 . 1 10 0 0 0 0 1 +layout type layout l la lay layo BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 0 (,..). 6 9 0 0 0 0 1 +type allows type t ty typ type BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 0 , 1 10 0 0 0 0 1 +as those as a as as as BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 0 /[],[], 7 9 0 0 0 0 1 +(Section 13) (section ( (S (Se (Sec BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 0 ()., 4 10 0 0 0 0 1 +protocol, MUST protocol, p pr pro prot BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 0 ,.- 3 10 0 0 0 0 1 +of the of o of of of BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 0 . 1 8 0 0 0 0 1 +private layout private p pr pri priv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 0 no 0 8 0 0 0 0 1 +experimentation (see experimentation e ex exp expe BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 0 (..). 5 5 0 0 0 0 1 +As an as A As As As BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 3 , 1 9 0 0 0 0 1 +array of array a ar arr arra BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 3 (..,,), 7 8 0 0 0 0 1 +definition of definition d de def defi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 3 (.., 4 9 0 0 0 0 1 +striping). A striping). s st str stri BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 3 )./ 3 9 0 0 0 0 1 +store <device store s st sto stor BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 3 ,, 2 9 0 0 0 0 1 +about block about a ab abo abou BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 3 . 1 9 0 0 0 0 1 +An object an A An An An BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 5 3 , 1 9 0 0 0 0 1 +and an and a an and and BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 3 (..,) 5 9 0 0 0 0 1 +how the how h ho how how BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 3 no 0 10 0 0 0 0 1 +different objects. different d di dif diff BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 3 . 1 9 0 0 0 0 1 +complex than complex c co com comp BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 3 . 1 6 0 0 0 0 1 +Requests for requests R Re Req Requ BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 5 7 - 1 9 0 0 0 0 1 +type. Examples type. t ty typ type BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 7 .. 2 9 0 0 0 0 1 +The response the T Th The The BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 7 no 0 9 0 0 0 0 1 +device_addr4 or device_addr4 d de dev devi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 7 , 1 9 0 0 0 0 1 +within it. within w wi wit with BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 7 . 1 9 0 0 0 0 1 +same one same s sa sam same BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 7 . 1 9 0 0 0 0 1 +that includes that t th tha that BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 7 , 1 9 0 0 0 0 1 +response and response r re res resp BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 7 . 1 10 0 0 0 0 1 +12.2.8. Layout 12.2.8. 1 12 12. 12.2 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 9 ... 3 10 0 0 0 0 1 +A layout a A A A A BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 1 0 0 0 0 0 5 9 ' 1 9 0 0 0 0 1 +storage devices. storage s st sto stor BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 9 .; 2 9 0 0 0 0 1 +layout types layout l la lay layo BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 9 no 0 9 0 0 0 0 1 +access data access a ac acc acce BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 9 no 0 10 0 0 0 0 1 +on the on o on on on BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 9 . 1 9 0 0 0 0 1 +by the by b by by by BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 9 ,,,,, 5 9 0 0 0 0 1 +where filehandle where w wh whe wher BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 9 no 0 10 0 0 0 0 1 +server. server. server. s se ser serv BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 9 . 1 1 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 5 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 11 , 1 10 0 0 0 0 0 +[Page 301] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 5 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 5 0 no 0 4 0 0 0 0 1 +It is it I It It It BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 0 / 1 9 0 0 0 0 1 +each other. each e ea eac each BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 0 .- 2 10 0 0 0 0 1 +overlap each overlap o ov ove over BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 0 ,, 2 9 0 0 0 0 1 +correspond to correspond c co cor corr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 0 ,. 2 10 0 0 0 0 1 +conflict when conflict c co con conf BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 0 no 0 9 0 0 0 0 1 +(i.e., the (i.e., ( (i (i. (i.e BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 0 (..,/). 7 10 0 0 0 0 1 +differing iomodes differing d di dif diff BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 0 . 1 8 0 0 0 0 1 +permissible for permissible p pe per perm BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 0 , 1 9 0 0 0 0 1 +same byte-range, same s sa sam same BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 0 -,. 3 9 0 0 0 0 1 +would be would w wo wou woul BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 0 --/. 4 10 0 0 0 0 1 +12.2.9. Layout 12.2.9. 1 12 12. 12.2 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 3 ... 3 10 0 0 0 0 1 +The layout the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 3 (,..) 5 9 0 0 0 0 1 +indicates to indicates i in ind indi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 3 ' 1 9 0 0 0 0 1 +either just either e ei eit eith BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 3 no 0 9 0 0 0 0 1 +operations. For operations. o op ope oper BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 3 ., 2 9 0 0 0 0 1 +specify this specify s sp spe spec BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 3 (.). 4 9 0 0 0 0 1 +For example, for F Fo For For BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 3 ,/-, 4 10 0 0 0 0 1 +occur when occur o oc occ occu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 3 . 1 8 0 0 0 0 1 +LAYOUTIOMODE4_ANY iomode layoutiomode4_any L LA LAY LAYO BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 3 no 0 8 0 0 0 0 1 +LAYOUTRETURN and layoutreturn L LA LAY LAYO BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 5 3 ,. 2 9 0 0 0 0 1 +that layouts that t th tha that BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 3 no 0 7 0 0 0 0 1 +LAYOUTIOMODE4_RW iomodes layoutiomode4_rw L LA LAY LAYO BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 3 , 1 8 0 0 0 0 1 +respectively. respectively. respectively. r re res resp BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 3 . 1 2 0 0 0 0 1 +A storage a A A A A BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 1 0 0 0 0 0 5 6 /; 2 9 0 0 0 0 1 +dependent upon dependent d de dep depe BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 6 ., 2 9 0 0 0 0 1 +if the if i if if if BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 6 '/ 2 9 0 0 0 0 1 +performed, the performed, p pe per perf BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 6 ,'/ 3 9 0 0 0 0 1 +error indicating error e er err erro BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 6 no 0 9 0 0 0 0 1 +obtained via obtained o ob obt obta BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 6 ., 2 9 0 0 0 0 1 +a LAYOUTIOMODE4_READ a a a a a BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 1 0 0 0 0 0 5 6 , 1 10 0 0 0 0 1 +the storage the t th the the BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 6 . 1 7 0 0 0 0 1 +The use the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 8 no 0 9 0 0 0 0 1 +or byte-range or o or or or BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 8 -;- 3 9 0 0 0 0 1 +conflicts are conflicts c co con conf BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 8 no 0 9 0 0 0 0 1 +logically separate logically l lo log logi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 8 . 1 9 0 0 0 0 1 +byte-range locks byte-range b by byt byte BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 8 - 1 10 0 0 0 0 1 +to data to t to to to BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 8 ., 2 9 0 0 0 0 1 +not conflict not n no not not BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 8 no 0 7 0 0 0 0 1 +LAYOUTIOMODE4_RW performed layoutiomode4_rw L LA LAY LAYO BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 8 . 1 9 0 0 0 0 1 +depend on depend d de dep depe BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 8 - 1 9 0 0 0 0 1 +locking to locking l lo loc lock BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 8 . 1 5 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 6 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 11 , 1 10 0 0 0 0 0 +[Page 302] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 6 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 6 0 no 0 4 0 0 0 0 1 +12.2.10. Device 12.2.10. 1 12 12. 12.2 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 0 ... 3 10 0 0 0 0 1 +The device the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 0 (,..) 5 9 0 0 0 0 1 +group of group g gr gro grou BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 0 . 1 9 0 0 0 0 1 +<client ID, <client < <c <cl <cli BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 0 ,., 3 9 0 0 0 0 1 +information may information i in inf info BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 0 . 1 9 0 0 0 0 1 +Rather than rather R Ra Rat Rath BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 0 , 1 10 0 0 0 0 1 +device IDs. device d de dev devi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 0 ..(.) 5 9 0 0 0 0 1 +used to used u us use used BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 0 ( 1 9 0 0 0 0 1 +device addresses device d de dev devi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 0 ) 1 9 0 0 0 0 1 +according to according a ac acc acco BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 0 ., 2 9 0 0 0 0 1 +of an of o of of of BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 0 .- 2 9 0 0 0 0 1 +be an be b be be be BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 0 . 1 9 0 0 0 0 1 +could be could c co cou coul BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 0 . 1 3 0 0 0 0 1 +Clients cannot clients C Cl Cli Clie BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 3 no 0 10 0 0 0 0 1 +device address(es) device d de dev devi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 3 (). 3 9 0 0 0 0 1 +Section 12.7.4 section S Se Sec Sect BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 3 .. 2 9 0 0 0 0 1 +situation. situation. situation. s si sit situ BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 3 . 1 1 0 0 0 0 1 +A device a A A A A BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 1 0 0 0 0 0 6 4 no 0 9 0 0 0 0 1 +device ID. device d de dev devi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 4 ., 2 9 0 0 0 0 1 +server is server s se ser serv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 4 . 1 10 0 0 0 0 1 +deleted by deleted d de del dele BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 4 , 1 9 0 0 0 0 1 +the same the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 4 . 1 8 0 0 0 0 1 +feasible because feasible f fe fea feas BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 4 , 1 9 0 0 0 0 1 +room to room r ro roo room BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 4 ' 1 9 0 0 0 0 1 +requires most requires r re req requ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 4 '. 2 9 0 0 0 0 1 +This requirement this T Th Thi This BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 4 no 0 9 0 0 0 0 1 +between asynchronous between b be bet betw BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 4 no 0 10 0 0 0 0 1 +would be would w wo wou woul BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 4 . 1 5 0 0 0 0 1 +Device ID device D De Dev Devi BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 7 , 1 9 0 0 0 0 1 +changed at changed c ch cha chan BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 7 .( 2 9 0 0 0 0 1 +mappings are mappings m ma map mapp BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 7 , 1 10 0 0 0 0 1 +server is server s se ser serv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 7 .) 2 9 0 0 0 0 1 +choices for choices c ch cho choi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 7 . 1 9 0 0 0 0 1 +to the to t to to to BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 7 . 1 8 0 0 0 0 1 +The NFSv4.1 the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 9 . 1 9 0 0 0 0 1 +referred to referred r re ref refe BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 9 ( 1 9 0 0 0 0 1 +single device single s si sin sing BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 9 ; 1 10 0 0 0 0 1 +case, CB_LAYOUTRECALL case, c ca cas case BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 9 , 1 8 0 0 0 0 1 +associated with associated a as ass asso BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 9 ,,). 4 9 0 0 0 0 1 +Via a via V Vi Via Via BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 10 (.), 4 10 0 0 0 0 1 +address mappings address a ad add addr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 10 no 0 9 0 0 0 0 1 +without recalling without w wi wit with BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 10 . 1 9 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 6 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 11 , 1 10 0 0 0 0 0 +[Page 303] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 6 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 6 0 no 0 4 0 0 0 0 1 +The notification the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 0 , 1 9 0 0 0 0 1 +the client the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 0 . 1 9 0 0 0 0 1 +of a of o of of of BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 0 no 0 10 0 0 0 0 1 +or eventually or o or or or BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 0 '. 2 9 0 0 0 0 1 +The server the T Th The The BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 0 no 0 9 0 0 0 0 1 +them before them t th the them BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 0 . 1 9 0 0 0 0 1 +notification types notification n no not noti BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 0 .. 2 4 0 0 0 0 1 +12.3. pNFS 12.3. 1 12 12. 12.3 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 2 .. 2 10 0 0 0 0 1 +NFSv4.1 has nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 3 ., 2 9 0 0 0 0 1 +regardless of regardless r re reg rega BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 3 . 1 10 0 0 0 0 1 +all sent all a al all all BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 3 . 1 10 0 0 0 0 1 +OPTIONAL feature, optional O OP OPT OPTI BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 6 3 ,, 2 9 0 0 0 0 1 +REQUIRED in required R RE REQ REQU BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 6 3 .. 2 8 0 0 0 0 1 +These are these T Th The Thes BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 5 : 1 10 0 0 0 0 1 +GETDEVICEINFO (Section getdeviceinfo G GE GET GETD BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 6 5 (.), 4 8 0 0 0 0 1 +(Section 12.2.10), (section ( (S (Se (Sec BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 5 (..), 5 10 0 0 0 0 1 +device address. device d de dev devi BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 5 . 1 2 0 0 0 0 1 +GETDEVICELIST (Section getdevicelist G GE GET GETD BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 6 6 (.) 3 10 0 0 0 0 1 +for a for f fo for for BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 6 . 1 4 0 0 0 0 1 +LAYOUTGET (Section layoutget L LA LAY LAYO BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 6 6 (.) 3 10 0 0 0 0 1 +file. file. file. f fi fil file BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 6 . 1 0 0 0 0 0 1 +LAYOUTCOMMIT (Section layoutcommit L LA LAY LAYO BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 6 7 (.) 3 10 0 0 0 0 1 +of the of o of of of BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 7 ' 1 10 0 0 0 0 1 +storage device storage s st sto stor BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 7 ( 1 9 0 0 0 0 1 +return value return r re ret retu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 7 ). 2 4 0 0 0 0 1 +LAYOUTRETURN (Section layoutreturn L LA LAY LAYO BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 6 8 (.), 4 10 0 0 0 0 1 +file system file f fi fil file BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 8 (),. 4 5 0 0 0 0 1 +These are these T Th The Thes BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 9 : 1 10 0 0 0 0 1 +CB_LAYOUTRECALL (Section cb_layoutrecall C CB CB_ CB_L BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 6 9 (.), 4 9 0 0 0 0 1 +belonging to belonging b be bel belo BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 9 , 1 10 0 0 0 0 1 +ID. ID. id. I ID ID. ID. BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 6 9 . 1 0 0 0 0 0 1 +CB_RECALL_ANY (Section cb_recall_any C CB CB_ CB_R BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 6 10 (.) 3 10 0 0 0 0 1 +some number some s so som some BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 10 ,, 2 8 0 0 0 0 1 +metadata server. metadata m me met meta BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 10 . 1 2 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 6 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 11 , 1 10 0 0 0 0 0 +[Page 304] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 6 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 6 0 no 0 4 0 0 0 0 1 +CB_RECALLABLE_OBJ_AVAIL (Section cb_recallable_obj_avail C CB CB_ CB_R BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 6 0 (.) 3 9 0 0 0 0 1 +recallable object recallable r re rec reca BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 0 (, 2 9 0 0 0 0 1 +denied by denied d de den deni BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 0 ). 2 10 0 0 0 0 1 +CB_NOTIFY_DEVICEID (Section cb_notify_deviceid C CB CB_ CB_N BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 6 1 (.) 3 10 0 0 0 0 1 +device IDs. device d de dev devi BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 1 . 1 1 0 0 0 0 1 +12.4. pNFS 12.4. 1 12 12. 12.4 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 1 .. 2 10 0 0 0 0 1 +A number a A A A A BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 1 0 0 0 0 0 6 1 no 0 10 0 0 0 0 1 +Section 5.12. section S Se Sec Sect BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 1 .. 2 2 0 0 0 0 1 +12.5. Layout 12.5. 1 12 12. 12.5 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 2 .. 2 10 0 0 0 0 1 +12.5.1. Guarantees 12.5.1. 1 12 12. 12.5 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 2 ... 3 10 0 0 0 0 1 +Layouts grant layouts L La Lay Layo BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 2 no 0 9 0 0 0 0 1 +storage device storage s st sto stor BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 2 . 1 9 0 0 0 0 1 +guaranteed the guaranteed g gu gua guar BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 2 : 1 9 0 0 0 0 1 +either a either e ei eit eith BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 2 no 0 10 0 0 0 0 1 +the layout the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 2 ( 1 10 0 0 0 0 1 +indirectly modifies indirectly i in ind indi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 2 ). 2 9 0 0 0 0 1 +returned by returned r re ret retu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 2 , 1 9 0 0 0 0 1 +access file access a ac acc acce BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 2 . 1 9 0 0 0 0 1 +server. Only server. s se ser serv BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 2 .. 2 9 0 0 0 0 1 +The requirement the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 5 . 1 9 0 0 0 0 1 +obtained through obtained o ob obt obta BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 5 ,, 2 10 0 0 0 0 1 +not modified not n no not not BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 5 . 1 9 0 0 0 0 1 +NFSv4.1 clients, nfsv4.1 N NF NFS NFSv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 5 ., 2 9 0 0 0 0 1 +protocol as protocol p pr pro prot BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 5 . 1 9 0 0 0 0 1 +client to client c cl cli clie BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 5 , 1 9 0 0 0 0 1 +client. If client. c cl cli clie BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 5 ./- 3 9 0 0 0 0 1 +for which for f fo for for BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 5 , 1 9 0 0 0 0 1 +SHOULD reject should S SH SHO SHOU BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 6 5 /. 2 9 0 0 0 0 1 +file for file f fi fil file BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 5 no 0 9 0 0 0 0 1 +the holding the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 5 . 1 9 0 0 0 0 1 +Therefore, it therefore, T Th The Ther BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 5 , 1 9 0 0 0 0 1 +type that type t ty typ type BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 5 .,/ 3 9 0 0 0 0 1 +volume layout volume v vo vol volu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 5 ' 1 9 0 0 0 0 1 +type of type t ty typ type BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 5 /. 2 4 0 0 0 0 1 +Depending upon depending D De Dep Depe BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 9 , 1 9 0 0 0 0 1 +device access device d de dev devi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 9 no 0 9 0 0 0 0 1 +encoded within encoded e en enc enco BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 9 -. 2 9 0 0 0 0 1 +device access device d de dev devi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 9 ,-[]. 5 10 0 0 0 0 1 +If access if I If If If BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 9 , 1 9 0 0 0 0 1 +server SHOULD server s se ser serv BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 9 no 0 10 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 6 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 11 , 1 10 0 0 0 0 0 +[Page 305] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 6 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 6 0 no 0 4 0 0 0 0 1 +for any for f fo for for BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 0 --, 3 9 0 0 0 0 1 +inaccessible to inaccessible i in ina inac BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 0 ., 2 8 0 0 0 0 1 +perform the perform p pe per perf BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 0 ,, 2 8 0 0 0 0 1 +described above. described d de des desc BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 0 . 1 9 0 0 0 0 1 +to circumvent to t to to to BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 0 no 0 10 0 0 0 0 1 +be clearly be b be be be BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 0 . 1 9 0 0 0 0 1 +In addition, in I In In In BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 6 0 , 1 8 0 0 0 0 1 +requirements and requirements r re req requ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 0 - 1 9 0 0 0 0 1 +server. server. server. s se ser serv BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 0 . 1 1 0 0 0 0 1 +In the in I In In In BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 6 2 ,- 2 9 0 0 0 0 1 +MUST behave must M MU MUS MUST BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 6 2 ., 2 9 0 0 0 0 1 +locks and locks l lo loc lock BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 2 , 1 9 0 0 0 0 1 +MUST be must M MU MUS MUST BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 6 2 -., 3 9 0 0 0 0 1 +if one if i if if if BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 2 - 1 10 0 0 0 0 1 +accesses the accesses a ac acc acce BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 2 , 1 9 0 0 0 0 1 +restrict I/O restrict r re res rest BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 2 /-. 3 9 0 0 0 0 1 +storage device storage s st sto stor BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 2 no 0 9 0 0 0 0 1 +of mandatory of o of of of BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 2 -, 2 9 0 0 0 0 1 +grant layouts grant g gr gra gran BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 6 2 -. 2 8 0 0 0 0 1 +12.5.2. Getting 12.5.2. 1 12 12. 12.5 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 5 ... 3 10 0 0 0 0 1 +A client a A A A A BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 1 0 0 0 0 0 6 5 . 1 10 0 0 0 0 1 +server will server s se ser serv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 5 (..,/, 6 9 0 0 0 0 1 +object, or object, o ob obj obje BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 5 ,). 3 10 0 0 0 0 1 +the server the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 5 . 1 9 0 0 0 0 1 +returned to returned r re ret retu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 5 - 1 9 0 0 0 0 1 +range as range r ra ran rang BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 5 ... 3 9 0 0 0 0 1 +multiple LAYOUTGET multiple m mu mul mult BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 5 ; 1 8 0 0 0 0 1 +overlapping, non-conflicting overlapping, o ov ove over BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 5 ,-(..). 7 8 0 0 0 0 1 +In order in I In In In BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 6 7 , 1 9 0 0 0 0 1 +via the via v vi via via BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 7 ., 2 9 0 0 0 0 1 +MUST present must M MU MUS MUST BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 6 7 ,,- 3 9 0 0 0 0 1 +lock stateid lock l lo loc lock BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 6 7 . 1 9 0 0 0 0 1 +result includes result r re res resu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 7 . 1 9 0 0 0 0 1 +processed by processed p pr pro proc BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 7 - 1 9 0 0 0 0 1 +MUST have must M MU MUS MUST BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 6 7 "" 2 10 0 0 0 0 1 +to one. to t to to to BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 7 .,( 3 8 0 0 0 0 1 +Section 12.5.3) section S Se Sec Sect BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 7 ..), 4 9 0 0 0 0 1 +the "seqid" the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 7 "". 3 8 0 0 0 0 1 +retrieved, it retrieved, r re ret retr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 7 ,. 2 9 0 0 0 0 1 +Therefore, a therefore, T Th The Ther BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 7 , 1 8 0 0 0 0 1 +currently open currently c cu cur curr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 7 . 1 8 0 0 0 0 1 +caching of caching c ca cac cach BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 7 . 1 4 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 6 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 11 , 1 10 0 0 0 0 0 +[Page 306] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 6 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 6 0 no 0 4 0 0 0 0 1 +The storage the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 0 no 0 9 0 0 0 0 1 +storage device storage s st sto stor BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 0 '. 2 9 0 0 0 0 1 +responsible for responsible r re res resp BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 0 no 0 10 0 0 0 0 1 +interpret and interpret i in int inte BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 0 . 1 8 0 0 0 0 1 +selection is selection s se sel sele BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 0 . 1 8 0 0 0 0 1 +Although the although A Al Alt Alth BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 1 , 1 9 0 0 0 0 1 +the pNFS the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 1 no 0 10 0 0 0 0 1 +or created or o or or or BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 1 . 1 9 0 0 0 0 1 +pNFS introduces pnfs p pN pNF pNFS BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 1 (..) 4 9 0 0 0 0 1 +client can client c cl cli clie BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 1 no 0 9 0 0 0 0 1 +for new for f fo for for BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 1 ., 2 9 0 0 0 0 1 +been created been b be bee been BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 1 ,, 2 9 0 0 0 0 1 +implementation to implementation i im imp impl BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 1 . 1 3 0 0 0 0 1 +Because the because B Be Bec Beca BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 4 no 0 9 0 0 0 0 1 +attributes at attributes a at att attr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 4 ,. 2 10 0 0 0 0 1 +createmode4, which createmode4, c cr cre crea BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 4 , 1 9 0 0 0 0 1 +time. In time. t ti tim time BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 4 ., 2 9 0 0 0 0 1 +caches, EXCLUSIVE4_1 caches, c ca cac cach BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 4 ,., 3 9 0 0 0 0 1 +GUARDED4 both guarded4 G GU GUA GUAR BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 4 . 1 8 0 0 0 0 1 +Section 18.16.3 section S Se Sec Sect BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 4 .. 2 8 0 0 0 0 1 +exclusive create. exclusive e ex exc excl BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 4 . 1 2 0 0 0 0 1 +12.5.3. Layout 12.5.3. 1 12 12. 12.5 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 6 ... 3 10 0 0 0 0 1 +As with as A As As As BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 6 ,"" 3 9 0 0 0 0 1 +and "other" and a an and and BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 6 "".,"" 6 9 0 0 0 0 1 +field will field f fi fie fiel BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 6 6 no 0 9 0 0 0 0 1 +returns all returns r re ret retu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 6 no 0 9 0 0 0 0 1 +stateid. The stateid. s st sta stat BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 6 ."", 4 9 0 0 0 0 1 +zero on zero z ze zer zero BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 6 ., 2 9 0 0 0 0 1 +is a is i is is is BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 6 . 1 9 0 0 0 0 1 +is established, is i is is is BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 6 ,"" 3 10 0 0 0 0 1 +in each in i in in in BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 6 6 , 1 9 0 0 0 0 1 +CB_LAYOUTRECALL request. cb_layoutrecall C CB CB_ CB_L BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 6 6 . 1 3 0 0 0 0 1 +Given the given G Gi Giv Give BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 9 , 1 9 0 0 0 0 1 +stateid differs stateid s st sta stat BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 9 no 0 9 0 0 0 0 1 +expected to expected e ex exp expe BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 9 . 1 9 0 0 0 0 1 +The "seqid" the T Th The The BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 9 "" 2 10 0 0 0 0 1 +LAYOUTGET and layoutget L LA LAY LAYO BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 6 9 ."" 3 9 0 0 0 0 1 +conditions between conditions c co con cond BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 9 . 1 9 0 0 0 0 1 +processing rules processing p pr pro proc BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 9 , 1 10 0 0 0 0 1 +only the only o on onl only BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 9 no 0 9 0 0 0 0 1 +determine proper determine d de det dete BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 9 . 1 6 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 6 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 11 , 1 10 0 0 0 0 0 +[Page 307] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 6 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 6 0 no 0 4 0 0 0 0 1 +Once the once O On Onc Once BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 0 , 1 9 0 0 0 0 1 +"seqid" for "seqid" " "s "se "seq BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 0 "". 3 9 0 0 0 0 1 +correct "seqid" correct c co cor corr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 0 """" 4 8 0 0 0 0 1 +responses of responses r re res resp BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 0 no 0 10 0 0 0 0 1 +arguments of arguments a ar arg argu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 0 . 1 9 0 0 0 0 1 +server is server s se ser serv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 0 "", 3 9 0 0 0 0 1 +the client the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 0 no 0 8 0 0 0 0 1 +inspecting the inspecting i in ins insp BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 0 "". 3 9 0 0 0 0 1 +ranges, the ranges, r ra ran rang BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 0 , 1 8 0 0 0 0 1 +knowledge of knowledge k kn kno know BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 0 . 1 9 0 0 0 0 1 +layout ranges layout l la lay layo BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 0 ' 1 10 0 0 0 0 1 +because the because b be bec beca BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 0 no 0 9 0 0 0 0 1 +layout and layout l la lay layo BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 0 . 1 10 0 0 0 0 1 +layout stateid layout l la lay layo BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 0 no 0 7 0 0 0 0 1 +Section 12.5.5.2. section S Se Sec Sect BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 0 .... 4 2 0 0 0 0 1 +The client's the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 3 '"" 3 9 0 0 0 0 1 +use. The use. u us use use. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 3 ."" 3 10 0 0 0 0 1 +can be can c ca can can BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 3 ., 2 9 0 0 0 0 1 +forgetful model forgetful f fo for forg BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 3 (...), 6 9 0 0 0 0 1 +of what of o of of of BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 3 '. 2 9 0 0 0 0 1 +For LAYOUTRETURN for F Fo For For BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 3 , 1 9 0 0 0 0 1 +record of record r re rec reco BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 3 ' 1 9 0 0 0 0 1 +seqid. For seqid. s se seq seqi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 3 ., 2 8 0 0 0 0 1 +response to response r re res resp BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 3 . 1 9 0 0 0 0 1 +requirement in requirement r re req requ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 3 "" 2 9 0 0 0 0 1 +provide the provide p pr pro prov BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 3 . 1 9 0 0 0 0 1 +in parallel. in i in in in BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 6 3 .. 2 9 0 0 0 0 1 +LAYOUTGET and layoutget L LA LAY LAYO BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 6 3 no 0 10 0 0 0 0 1 +long as long l lo lon long BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 6 3 . 1 8 0 0 0 0 1 +processing MUST processing p pr pro proc BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 3 "". 3 8 0 0 0 0 1 +Once a once O On Onc Once BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 8 , 1 10 0 0 0 0 1 +longer valid longer l lo lon long BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 8 . 1 9 0 0 0 0 1 +stateid will stateid s st sta stat BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 8 . 1 6 0 0 0 0 1 +12.5.4. Committing 12.5.4. 1 12 12. 12.5 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 8 ... 3 10 0 0 0 0 1 +Allowing for allowing A Al All Allo BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 9 , 1 10 0 0 0 0 1 +does not does d do doe does BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 9 no 0 9 0 0 0 0 1 +consistent view consistent c co con cons BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 9 . 1 9 0 0 0 0 1 +location mapping location l lo loc loca BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 9 no 0 9 0 0 0 0 1 +as opposed as a as as as BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 9 (..). 5 9 0 0 0 0 1 +Related issues related R Re Rel Rela BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 9 no 0 9 0 0 0 0 1 +provisionally allocated provisionally p pr pro prov BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 9 no 0 9 0 0 0 0 1 +does not does d do doe does BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 9 . 1 9 0 0 0 0 1 +Because of because B Be Bec Beca BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 9 , 1 9 0 0 0 0 1 +client with client c cl cli clie BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 9 no 0 9 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 6 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 11 , 1 10 0 0 0 0 0 +[Page 308] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 6 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 6 0 no 0 4 0 0 0 0 1 +potential changes potential p po pot pote BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 0 . 1 10 0 0 0 0 1 +by use by b by by by BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 0 . 1 5 0 0 0 0 1 +The LAYOUTCOMMIT the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 0 no 0 9 0 0 0 0 1 +layout to layout l la lay layo BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 0 . 1 8 0 0 0 0 1 +committed to committed c co com comm BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 0 no 0 9 0 0 0 0 1 +occurs. The occurs. o oc occ occu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 0 . 1 9 0 0 0 0 1 +storage protocol storage s st sto stor BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 0 . 1 9 0 0 0 0 1 +synchronization is synchronization s sy syn sync BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 0 no 0 10 0 0 0 0 1 +LAYOUTCOMMIT. The layoutcommit. L LA LAY LAYO BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 6 0 . 1 9 0 0 0 0 1 +reflect the reflect r re ref refl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 0 ' 1 9 0 0 0 0 1 +LAYOUTCOMMIT. The layoutcommit. L LA LAY LAYO BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 6 0 . 1 9 0 0 0 0 1 +global view global g gl glo glob BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 0 '/ 2 9 0 0 0 0 1 +occurred within occurred o oc occ occu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 0 . 1 5 0 0 0 0 1 +For block/volume-based for F Fo For For BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 3 /-, 3 10 0 0 0 0 1 +block list block b bl blo bloc BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 6 3 no 0 9 0 0 0 0 1 +stable storage. stable s st sta stab BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 3 .-, 3 8 0 0 0 0 1 +attributes between attributes a at att attr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 3 , 1 9 0 0 0 0 1 +size attribute, size s si siz size BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 3 ,. 2 4 0 0 0 0 1 +The control the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 5 no 0 9 0 0 0 0 1 +receives a receives r re rec rece BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 5 ;, 2 9 0 0 0 0 1 +LAYOUTCOMMIT, state layoutcommit, L LA LAY LAYO BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 6 5 , 1 10 0 0 0 0 1 +the file the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 5 no 0 9 0 0 0 0 1 +storage devices storage s st sto stor BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 5 ' 1 9 0 0 0 0 1 +operation. Thus, operation. o op ope oper BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 5 ., 2 9 0 0 0 0 1 +WRITE to write W WR WRI WRIT BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 6 5 no 0 9 0 0 0 0 1 +that does that t th tha that BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 5 . 1 6 0 0 0 0 1 +The client the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 7 no 0 10 0 0 0 0 1 +operation. operation. operation. o op ope oper BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 7 . 1 1 0 0 0 0 1 +12.5.4.1. LAYOUTCOMMIT 12.5.4.1. 1 12 12. 12.5 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 7 ..../ 5 10 0 0 0 0 1 +The change the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 8 no 0 9 0 0 0 0 1 +when the when w wh whe when BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 8 . 1 10 0 0 0 0 1 +that some that t th tha that BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 8 no 0 10 0 0 0 0 1 +when the when w wh whe when BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 8 /. 2 9 0 0 0 0 1 +layout with layout l la lay layo BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 8 , 1 9 0 0 0 0 1 +provide a provide p pr pro prov BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 8 no 0 9 0 0 0 0 1 +arguments to arguments a ar arg argu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 8 ., 2 9 0 0 0 0 1 +value may value v va val valu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 8 .- 2 9 0 0 0 0 1 +client-provided values client-provided c cl cli clie BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 8 -., 3 10 0 0 0 0 1 +should ensure should s sh sho shou BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 8 . 1 9 0 0 0 0 1 +has the has h ha has has BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 8 no 0 8 0 0 0 0 1 +operation. operation. operation. o op ope oper BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 8 . 1 1 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 6 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 11 , 1 10 0 0 0 0 0 +[Page 309] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 6 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 6 0 no 0 4 0 0 0 0 1 +For some for F Fo For For BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 0 , 1 9 0 0 0 0 1 +metadata server metadata m me met meta BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 0 /;, 3 9 0 0 0 0 1 +and time_modify and a an and and BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 0 . 1 9 0 0 0 0 1 +For a for F Fo For For BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 0 no 0 9 0 0 0 0 1 +change and change c ch cha chan BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 0 , 1 9 0 0 0 0 1 +required to required r re req requ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 0 ., 2 9 0 0 0 0 1 +server must server s se ser serv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 0 no 0 9 0 0 0 0 1 +since the since s si sin sinc BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 0 ;- 2 9 0 0 0 0 1 +have enough have h ha hav have BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 0 no 0 9 0 0 0 0 1 +change attribute change c ch cha chan BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 0 . 1 9 0 0 0 0 1 +the time_modify the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 0 . 1 9 0 0 0 0 1 +determine that determine d de det dete BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 0 no 0 8 0 0 0 0 1 +time_modify update, time_modify t ti tim time BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 0 , 1 8 0 0 0 0 1 +LAYOUTCOMMIT. At layoutcommit. L LA LAY LAYO BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 6 0 ., 2 9 0 0 0 0 1 +should be should s sh sho shou BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 0 no 0 10 0 0 0 0 1 +LAYOUTCOMMIT or layoutcommit L LA LAY LAYO BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 6 0 . 1 3 0 0 0 0 1 +12.5.4.2. LAYOUTCOMMIT 12.5.4.2. 1 12 12. 12.5 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 4 .... 4 10 0 0 0 0 1 +The size the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 4 no 0 9 0 0 0 0 1 +used by used u us use used BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 4 . 1 8 0 0 0 0 1 +LAYOUTCOMMIT is layoutcommit L LA LAY LAYO BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 6 4 ; 1 9 0 0 0 0 1 +highest byte highest h hi hig high BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 4 no 0 8 0 0 0 0 1 +LAYOUTCOMMIT operation. layoutcommit L LA LAY LAYO BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 6 4 . 1 9 0 0 0 0 1 +newoffset4 and newoffset4 n ne new newo BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 4 ,, 2 9 0 0 0 0 1 +indicates if indicates i in ind indi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 4 . 1 9 0 0 0 0 1 +FALSE, an false, F FA FAL FALS BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 6 4 ,. 2 9 0 0 0 0 1 +LAYOUTIOMODE4_RW iomode layoutiomode4_rw L LA LAY LAYO BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 4 ,-( 3 9 0 0 0 0 1 +the values the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 4 ) 1 7 0 0 0 0 1 +loca_last_write_offset, then loca_last_write_offset, l lo loc loca BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 4 , 1 9 0 0 0 0 1 +and provide and a an and and BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 4 . 1 9 0 0 0 0 1 +that offset that t th tha that BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 4 ,. 2 9 0 0 0 0 1 +example, a example, e ex exa exam BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 4 , 1 9 0 0 0 0 1 +was written was w wa was was BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 4 , 1 10 0 0 0 0 1 +one byte. one o on one one BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 4 . 1 1 0 0 0 0 1 +The metadata the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 9 : 1 10 0 0 0 0 1 +1. Update 1. 1 1. 1. 1. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 9 .' 2 10 0 0 0 0 1 +the client the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 9 no 0 9 0 0 0 0 1 +size. If size. s si siz size BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 9 ., 2 9 0 0 0 0 1 +value for value v va val valu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 9 -., 3 9 0 0 0 0 1 +file must file f fi fil file BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 9 no 0 9 0 0 0 0 1 +offset less offset o of off offs BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 9 '. 2 6 0 0 0 0 1 +2. Ignore 2. 2 2. 2. 2. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 11 .-; 3 10 0 0 0 0 1 +must have must m mu mus must BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 11 no 0 9 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 6 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 11 , 1 10 0 0 0 0 0 +[Page 310] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 6 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 6 0 no 0 4 0 0 0 0 1 +the file's the t th the the BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 0 '., 3 10 0 0 0 0 1 +storage devices storage s st sto stor BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 0 . 1 6 0 0 0 0 1 +The method the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 0 ' 1 9 0 0 0 0 1 +storage device's storage s st sto stor BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 0 '/'. 4 9 0 0 0 0 1 +example, if example, e ex exa exam BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 0 , 1 9 0 0 0 0 1 +of file of o of of of BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 0 , 1 10 0 0 0 0 1 +last write last l la las last BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 0 . 1 4 0 0 0 0 1 +The results the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 2 no 0 10 0 0 0 0 1 +newsize4 union newsize4 n ne new news BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 2 .' 2 9 0 0 0 0 1 +LAYOUTCOMMIT, the layoutcommit, L LA LAY LAYO BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 6 2 ,; 2 9 0 0 0 0 1 +otherwise, the otherwise, o ot oth othe BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 2 ,. 2 8 0 0 0 0 1 +updated, the updated, u up upd upda BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 2 , 1 9 0 0 0 0 1 +that the that t th tha that BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 2 no 0 9 0 0 0 0 1 +complete. For complete. c co com comp BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 2 ., 2 9 0 0 0 0 1 +new file new n ne new new BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 2 . 1 2 0 0 0 0 1 +The client the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 4 no 0 9 0 0 0 0 1 +sending a sending s se sen send BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 4 no 0 9 0 0 0 0 1 +attribute specified. attribute a at att attr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 4 . 1 8 0 0 0 0 1 +current size current c cu cur curr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 4 ,"",.., 7 9 0 0 0 0 1 +are implicitly are a ar are are BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 4 '. 2 10 0 0 0 0 1 +(In many (in ( (I (In (In BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 4 (,-- 4 9 0 0 0 0 1 +consists of consists c co con cons BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 4 .) 2 9 0 0 0 0 1 +past EOF past p pa pas past BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 4 ,. 2 9 0 0 0 0 1 +12.5.4.3. LAYOUTCOMMIT 12.5.4.3. 1 12 12. 12.5 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 6 .... 4 10 0 0 0 0 1 +The LAYOUTCOMMIT the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 7 no 0 8 0 0 0 0 1 +(Section 18.42.1) (section ( (S (Se (Sec BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 7 (..)(..). 9 9 0 0 0 0 1 +argument is argument a ar arg argu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 7 --. 3 9 0 0 0 0 1 +used to used u us use used BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 7 -- 2 9 0 0 0 0 1 +client to client c cl cli clie BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 7 ., 2 9 0 0 0 0 1 +using a using u us usi usin BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 7 /, 2 10 0 0 0 0 1 +server which server s se ser serv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 7 no 0 10 0 0 0 0 1 +use. The use. u us use use. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 7 .() 3 9 0 0 0 0 1 +the same the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 7 -- 2 8 0 0 0 0 1 +(Section 18.43.2) (section ( (S (Se (Sec BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 7 (..) 4 9 0 0 0 0 1 +the logr_layout the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 7 . 1 9 0 0 0 0 1 +by the by b by by by BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 7 . 1 9 0 0 0 0 1 +12.5.5. Recalling 12.5.5. 1 12 12. 12.5 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 10 ... 3 10 0 0 0 0 1 +Since a since S Si Sin Sinc BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 10 ' 1 9 0 0 0 0 1 +client-storage-device path, client-storage-device c cl cli clie BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 10 --, 3 10 0 0 0 0 1 +semantically unable semantically s se sem sema BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 10 ., 2 9 0 0 0 0 1 +when the when w wh whe when BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 10 no 0 9 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 6 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 11 , 1 10 0 0 0 0 0 +[Page 311] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 6 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 6 0 no 0 4 0 0 0 0 1 +over the over o ov ove over BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 0 -., 3 9 0 0 0 0 1 +server-driven restriping server-driven s se ser serv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 0 -, 2 9 0 0 0 0 1 +will result will w wi wil will BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 6 0 . 1 9 0 0 0 0 1 +CB_LAYOUTRECALL callback cb_layoutrecall C CB CB_ CB_L BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 6 0 (.) 3 9 0 0 0 0 1 +with LAYOUTRETURN with w wi wit with BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 0 (.). 4 10 0 0 0 0 1 +may recall may m ma may may BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 1 0 0 6 0 -, 2 8 0 0 0 0 1 +associated with associated a as ass asso BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 0 (), 3 9 0 0 0 0 1 +with a with w wi wit with BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 0 .... 4 9 0 0 0 0 1 +surrounding the surrounding s su sur surr BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 0 ,,. 3 8 0 0 0 0 1 +An iomode an A An An An BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 6 2 ., 2 9 0 0 0 0 1 +iomode in iomode i io iom iomo BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 2 ; 1 9 0 0 0 0 1 +for example, for f fo for for BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 2 , 1 10 0 0 0 0 1 +the client the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 2 no 0 8 0 0 0 0 1 +LAYOUTIOMODE4_READ layouts. layoutiomode4_read L LA LAY LAYO BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 2 ., 2 9 0 0 0 0 1 +enumeration is enumeration e en enu enum BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 2 ; 1 10 0 0 0 0 1 +other words, other o ot oth othe BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 2 , 1 9 0 0 0 0 1 +LAYOUTIOMODE4_RW layouts. layoutiomode4_rw L LA LAY LAYO BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 2 . 1 3 0 0 0 0 1 +A REMOVE a A A A A BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 1 0 0 0 0 0 6 4 no 0 9 0 0 0 0 1 +layout to layout l la lay layo BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 4 - 1 9 0 0 0 0 1 +to reclaim to t to to to BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 4 . 1 9 0 0 0 0 1 +until the until u un unt unti BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 4 , 1 10 0 0 0 0 1 +delayed until delayed d de del dela BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 4 . 1 9 0 0 0 0 1 +been released been b be bee been BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 4 , 1 9 0 0 0 0 1 +longer be longer l lo lon long BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 4 /. 2 9 0 0 0 0 1 +file-based layout, file-based f fi fil file BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 4 -, 2 9 0 0 0 0 1 +response to response r re res resp BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 4 . 1 6 0 0 0 0 1 +Once a once O On Onc Once BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 6 ,/ 2 10 0 0 0 0 1 +storage devices storage s st sto stor BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 6 ,-, 3 9 0 0 0 0 1 +the returned the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 6 ./ 2 9 0 0 0 0 1 +device for device d de dev devi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 6 , 1 10 0 0 0 0 1 +reject the reject r re rej reje BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 6 /. 2 2 0 0 0 0 1 +Although pNFS although A Al Alt Alth BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 8 no 0 9 0 0 0 0 1 +clients, or clients, c cl cli clie BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 8 ,, 2 9 0 0 0 0 1 +perform more perform p pe per perf BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 8 - 1 10 0 0 0 0 1 +provided by provided p pr pro prov BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 8 .,- 3 9 0 0 0 0 1 +affect the affect a af aff affe BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 8 no 0 8 0 0 0 0 1 +CB_LAYOUTRECALL; this cb_layoutrecall; C CB CB_ CB_L BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 6 8 ; 1 9 0 0 0 0 1 +that file that t th tha that BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 8 . 1 9 0 0 0 0 1 +SHOULD limit should S SH SHO SHOU BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 6 8 no 0 9 0 0 0 0 1 +any one any a an any any BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 8 no 0 9 0 0 0 0 1 +CB_LAYOUTRECALL. Once cb_layoutrecall. C CB CB_ CB_L BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 6 8 ., 2 9 0 0 0 0 1 +lease period lease l le lea leas BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 8 . 1 9 0 0 0 0 1 +has passed, has h ha has has BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 8 ,' 2 10 0 0 0 0 1 +storage devices storage s st sto stor BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 8 no 0 10 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 6 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 11 , 1 10 0 0 0 0 0 +[Page 312] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 6 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 6 0 no 0 4 0 0 0 0 1 +to return to t to to to BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 0 ., 2 9 0 0 0 0 1 +and DELEGRETURN, and a an and and BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 0 ,, 2 10 0 0 0 0 1 +is showing is i is is is BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 0 . 1 9 0 0 0 0 1 +forward progress forward f fo for forw BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 0 no 0 10 0 0 0 0 1 +storage devices storage s st sto stor BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 0 - 1 9 0 0 0 0 1 +the client. the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 0 . 1 9 0 0 0 0 1 +limiting the limiting l li lim limi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 0 - 1 9 0 0 0 0 1 +the amount the t th the the BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 0 . 1 5 0 0 0 0 1 +12.5.5.1. Layout 12.5.5.1. 1 12 12. 12.5 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 2 .... 4 10 0 0 0 0 1 +It has it I It It It BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 2 ( 1 9 0 0 0 0 1 +and iomode) and a an and and BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 2 ) 1 9 0 0 0 0 1 +that file. that t th tha that BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 2 . 1 8 0 0 0 0 1 +callback results callback c ca cal call BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 2 no 0 9 0 0 0 0 1 +exactly match exactly e ex exa exac BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 2 , 1 10 0 0 0 0 1 +agree about agree a ag agr agre BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 2 ., 2 9 0 0 0 0 1 +this assumption this t th thi this BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 2 .: 2 7 0 0 0 0 1 +o If o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 6 4 , 1 10 0 0 0 0 1 +can use can c ca can can BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 4 -- 2 9 0 0 0 0 1 +(e.g., via (e.g., ( (e (e. (e.g BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 4 (..,- 5 9 0 0 0 0 1 +CB_COMPOUND), the cb_compound), C CB CB_ CB_C BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 6 4 ),- 3 9 0 0 0 0 1 +pNFS traffic. pnfs p pN pNF pNFS BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 4 . 1 2 0 0 0 0 1 +o It o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 6 5 no 0 9 0 0 0 0 1 +ranges are ranges r ra ran rang BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 5 -, 2 9 0 0 0 0 1 +the server's the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 5 ' 1 10 0 0 0 0 1 +client. In client. c cl cli clie BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 5 .,- 3 9 0 0 0 0 1 +file basis, file f fi fil file BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 5 ,- 2 9 0 0 0 0 1 +may request may m ma may may BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 1 0 0 6 5 -. 2 6 0 0 0 0 1 +o It o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 6 7 "" 2 9 0 0 0 0 1 +layouts and layouts l la lay layo BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 7 , 1 8 0 0 0 0 1 +server's layout server's s se ser serv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 7 '"" 3 10 0 0 0 0 1 +it has. it i it it it BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 7 . 1 9 0 0 0 0 1 +are beyond are a ar are are BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 7 ,. 2 9 0 0 0 0 1 +When a when W Wh Whe When BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 7 , 1 9 0 0 0 0 1 +receives a receives r re rec rece BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 7 , 1 9 0 0 0 0 1 +with a with w wi wit with BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 7 , 1 10 0 0 0 0 1 +return the return r re ret retu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 7 no 0 9 0 0 0 0 1 +return in return r re ret retu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 7 . 1 4 0 0 0 0 1 +o In o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 6 10 , 1 9 0 0 0 0 1 +itself layout itself i it its itse BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 10 , 1 10 0 0 0 0 1 +that the that t th tha that BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 10 no 0 9 0 0 0 0 1 +granted. On granted. g gr gra gran BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 10 ., 2 9 0 0 0 0 1 +holds a holds h ho hol hold BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 10 , 1 9 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 6 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 11 , 1 10 0 0 0 0 0 +[Page 313] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 6 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 6 0 no 0 4 0 0 0 0 1 +for the for f fo for for BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 0 no 0 9 0 0 0 0 1 +recall either recall r re rec reca BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 0 no 0 9 0 0 0 0 1 +requested range requested r re req requ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 0 no 0 10 0 0 0 0 1 +to the to t to to to BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 0 . 1 3 0 0 0 0 1 +Thus, in thus, T Th Thu Thus BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 1 ,, 2 9 0 0 0 0 1 +send callbacks send s se sen send BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 1 , 1 9 0 0 0 0 1 +for a for f fo for for BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 1 . 1 9 0 0 0 0 1 +always return always a al alw alwa BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 1 no 0 9 0 0 0 0 1 +recall. Note, recall. r re rec reca BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 1 ., 2 9 0 0 0 0 1 +part of part p pa par part BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 1 ,. 2 9 0 0 0 0 1 +allows the allows a al all allo BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 1 no 0 10 0 0 0 0 1 +returns of returns r re ret retu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 1 ., 2 9 0 0 0 0 1 +the client the t th the the BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 1 . 1 4 0 0 0 0 1 +When a when W Wh Whe When BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 3 , 1 10 0 0 0 0 1 +I/O requests i/o I I/ I/O I/O BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 6 3 /. 2 8 0 0 0 0 1 +Rephrasing, the rephrasing, R Re Rep Reph BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 6 3 , 1 9 0 0 0 0 1 +outstanding I/O outstanding o ou out outs BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 3 /. 2 7 0 0 0 0 1 +Even with even E Ev Eve Even BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 5 ,/ 2 9 0 0 0 0 1 +requests may requests r re req requ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 6 5 no 0 9 0 0 0 0 1 +perform them. perform p pe per perf BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 5 . 1 9 0 0 0 0 1 +client will client c cl cli clie BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 5 , 1 8 0 0 0 0 1 +unilaterally revoke unilaterally u un uni unil BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 5 ' 1 9 0 0 0 0 1 +provided by provided p pr pro prov BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 5 ., 2 9 0 0 0 0 1 +must deal must m mu mus must BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 5 /,..,/ 6 9 0 0 0 0 1 +requests that requests r re req requ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 6 5 no 0 9 0 0 0 0 1 +the revoked the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 5 . 1 9 0 0 0 0 1 +whether unilateral whether w wh whe whet BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 5 no 0 9 0 0 0 0 1 +supported; if supported; s su sup supp BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 5 ;, 2 8 0 0 0 0 1 +lingering writes lingering l li lin ling BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 5 ., 2 8 0 0 0 0 1 +identified by identified i id ide iden BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 5 no 0 10 0 0 0 0 1 +that held that t th tha that BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 5 . 1 3 0 0 0 0 1 +In order in I In In In BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 6 9 / 1 9 0 0 0 0 1 +state, the state, s st sta stat BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 9 , 1 10 0 0 0 0 1 +operations for operations o op ope oper BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 6 9 no 0 9 0 0 0 0 1 +being recalled, being b be bei bein BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 9 ,,,/ 4 9 0 0 0 0 1 +return type return r re ret retu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 9 (,,),-, 7 9 0 0 0 0 1 +pertaining to pertaining p pe per pert BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 9 ., 2 9 0 0 0 0 1 +if the if i if if if BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 9 , 1 10 0 0 0 0 1 +the client the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 9 no 0 9 0 0 0 0 1 +CB_LAYOUTRECALL. This cb_layoutrecall. C CB CB_ CB_L BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 6 9 . 1 9 0 0 0 0 1 +client's layout client's c cl cli clie BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 9 '. 2 3 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 6 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 11 , 1 10 0 0 0 0 0 +[Page 314] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 6 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 6 0 no 0 4 0 0 0 0 1 +12.5.5.2. Sequencing 12.5.5.2. 1 12 12. 12.5 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 0 .... 4 10 0 0 0 0 1 +As with as A As As As BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 0 , 1 8 0 0 0 0 1 +sequencing of sequencing s se seq sequ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 0 ."" 3 10 0 0 0 0 1 +stateid to stateid s st sta stat BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 0 no 0 10 0 0 0 0 1 +and callbacks. and a an and and BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 0 .' 2 8 0 0 0 0 1 +inconsistencies regarding inconsistencies i in inc inco BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 0 ' 1 9 0 0 0 0 1 +responsibility to responsibility r re res resp BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 0 no 0 9 0 0 0 0 1 +returns. returns. returns. r re ret retu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 0 . 1 1 0 0 0 0 1 +12.5.5.2.1. Layout 12.5.5.2.1. 1 12 12. 12.5 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 2 ..... 5 10 0 0 0 0 1 +One critical one O On One One BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 2 no 0 9 0 0 0 0 1 +concerns callbacks. concerns c co con conc BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 2 . 1 9 0 0 0 0 1 +the reply the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 2 no 0 9 0 0 0 0 1 +CB_LAYOUTRECALL. A cb_layoutrecall. C CB CB_ CB_L BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 6 2 . 1 9 0 0 0 0 1 +implies one implies i im imp impl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 2 no 0 9 0 0 0 0 1 +to which to t to to to BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 2 . 1 9 0 0 0 0 1 +such a such s su suc such BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 2 ""' 3 10 0 0 0 0 1 +layout stateid. layout l la lay layo BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 2 ."" 3 9 0 0 0 0 1 +the client the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 2 , 1 9 0 0 0 0 1 +LAYOUTGET and/or layoutget L LA LAY LAYO BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 6 2 /, 2 10 0 0 0 0 1 +the server the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 2 no 0 9 0 0 0 0 1 +outstanding LAYOUTGET outstanding o ou out outs BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 2 . 1 9 0 0 0 0 1 +processing such processing p pr pro proc BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 2 no 0 9 0 0 0 0 1 +outstanding LAYOUTGET outstanding o ou out outs BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 2 no 0 8 0 0 0 0 1 +corresponding file corresponding c co cor corr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 2 no 0 8 0 0 0 0 1 +CB_LAYOUTRECALL (lor_stateid; cb_layoutrecall C CB CB_ CB_L BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 6 2 (;..) 5 7 0 0 0 0 1 +In addition in I In In In BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 6 6 -,... 5 9 0 0 0 0 1 +the sessions the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 6 no 0 9 0 0 0 0 1 +race conditions race r ra rac race BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 6 6 . 1 9 0 0 0 0 1 +server MAY server s se ser serv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 6 no 0 9 0 0 0 0 1 +precedes the precedes p pr pre prec BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 6 . 1 9 0 0 0 0 1 +replies for replies r re rep repl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 6 , 1 10 0 0 0 0 1 +may race may m ma may may BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 1 0 0 6 6 . 1 9 0 0 0 0 1 +referenced calls referenced r re ref refe BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 6 no 0 9 0 0 0 0 1 +before processing before b be bef befo BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 6 . 1 5 0 0 0 0 1 +12.5.5.2.1.1. Get/Return 12.5.5.2.1.1. 1 12 12. 12.5 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 9 ....../ 7 10 0 0 0 0 1 +The protocol the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 9 no 0 9 0 0 0 0 1 +LAYOUTRETURN operations layoutreturn L LA LAY LAYO BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 6 9 . 1 9 0 0 0 0 1 +any means any a an any any BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 9 no 0 10 0 0 0 0 1 +which they which w wh whi whic BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 9 .,"" 4 9 0 0 0 0 1 +field in field f fi fie fiel BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 6 9 , 1 9 0 0 0 0 1 +which parallel which w wh whi whic BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 9 . 1 9 0 0 0 0 1 +Thus, when thus, T Th Thu Thus BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 9 , 1 9 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 6 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 11 , 1 10 0 0 0 0 0 +[Page 315] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 6 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 6 0 no 0 4 0 0 0 0 1 +intersects with intersects i in int inte BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 0 no 0 9 0 0 0 0 1 +the same the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 0 , 1 10 0 0 0 0 1 +processed determines processed p pr pro proc BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 0 . 1 9 0 0 0 0 1 +order is order o or ord orde BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 0 "": 3 9 0 0 0 0 1 +operation with operation o op ope oper BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 0 . 1 7 0 0 0 0 1 +It is it I It It It BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 1 no 0 10 0 0 0 0 1 +operations for operations o op ope oper BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 6 1 no 0 9 0 0 0 0 1 +operations for operations o op ope oper BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 6 1 . 1 6 0 0 0 0 1 +It is it I It It It BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 2 ( 1 10 0 0 0 0 1 +Section 16.2.3.1.2) section S Se Sec Sect BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 2 ....),, 7 9 0 0 0 0 1 +compounding LAYOUTGETs compounding c co com comp BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 2 . 1 10 0 0 0 0 1 +also permissible also a al als also BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 2 no 0 9 0 0 0 0 1 +LAYOUTRETURNs. LAYOUTRETURNs. layoutreturns. L LA LAY LAYO BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 6 2 . 1 2 0 0 0 0 1 +It is it I It It It BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 3 no 0 9 0 0 0 0 1 +combining LAYOUTRETURN combining c co com comb BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 3 no 0 9 0 0 0 0 1 +the same the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 3 no 0 9 0 0 0 0 1 +order. However, order. o or ord orde BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 3 .,, 3 9 0 0 0 0 1 +MUST NOT must M MU MUS MUST BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 6 3 no 0 10 0 0 0 0 1 +time, and time, t ti tim time BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 3 , 1 10 0 0 0 0 1 +outstanding at outstanding o ou out outs BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 3 . 1 7 0 0 0 0 1 +12.5.5.2.1.2. Client 12.5.5.2.1.2. 1 12 12. 12.5 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 6 ...... 6 10 0 0 0 0 1 +Consider a consider C Co Con Cons BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 6 , 1 9 0 0 0 0 1 +receives the receives r re rec rece BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 6 , 1 10 0 0 0 0 1 +the same the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 6 . 1 8 0 0 0 0 1 +possibilities, which possibilities, p po pos poss BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 6 , 1 9 0 0 0 0 1 +stateid in stateid s st sta stat BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 6 . 1 3 0 0 0 0 1 +1. The 1. 1 1. 1. 1. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 7 ., 2 10 0 0 0 0 1 +the LAYOUTGET the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 7 no 0 8 0 0 0 0 1 +layout information layout l la lay layo BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 7 no 0 9 0 0 0 0 1 +CB_LAYOUTRECALL. CB_LAYOUTRECALL. cb_layoutrecall. C CB CB_ CB_L BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 6 7 . 1 2 0 0 0 0 1 +2. The 2. 2 2. 2. 2. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 8 .. 2 10 0 0 0 0 1 +server will server s se ser serv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 8 no 0 7 0 0 0 0 1 +CB_LAYOUTRECALL is cb_layoutrecall C CB CB_ CB_L BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 6 8 . 1 4 0 0 0 0 1 +If these if I If If If BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 9 , 1 9 0 0 0 0 1 +result, as result, r re res resu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 9 , 1 9 0 0 0 0 1 +processing the processing p pr pro proc BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 9 , 1 10 0 0 0 0 1 +arrive until arrive a ar arr arri BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 9 . 1 10 0 0 0 0 1 +that in that t th tha that BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 9 ,"" 3 9 0 0 0 0 1 +recall is recall r re rec reca BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 9 ; 1 9 0 0 0 0 1 +second case, second s se sec seco BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 9 ,"" 3 9 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 6 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 11 , 1 10 0 0 0 0 0 +[Page 316] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 6 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 6 0 no 0 4 0 0 0 0 1 +recorded. This recorded. r re rec reco BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 0 . 1 9 0 0 0 0 1 +cases. The cases. c ca cas case BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 0 .. 2 10 0 0 0 0 1 +In case in I In In In BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 6 0 , 1 9 0 0 0 0 1 +response before response r re res resp BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 0 ( 1 10 0 0 0 0 1 +NFS4ERR_DELAY). NFS4ERR_DELAY). nfs4err_delay). N NF NFS NFS4 BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 0 ). 2 2 0 0 0 0 1 +In case in I In In In BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 6 1 , 1 10 0 0 0 0 1 +processing the processing p pr pro proc BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 1 . 1 8 0 0 0 0 1 +Therefore, the therefore, T Th The Ther BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 1 , 1 9 0 0 0 0 1 +case that case c ca cas case BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 6 1 ' 1 9 0 0 0 0 1 +to the to t to to to BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 1 (). 3 4 0 0 0 0 1 +The recall the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 3 no 0 9 0 0 0 0 1 +LAYOUTRETURN operation layoutreturn L LA LAY LAYO BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 6 3 . 1 9 0 0 0 0 1 +LAYOUTRETURN uses layoutreturn L LA LAY LAYO BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 6 3 () 2 9 0 0 0 0 1 +CB_LAYOUTRECALL. If cb_layoutrecall. C CB CB_ CB_L BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 6 3 . 1 9 0 0 0 0 1 +processing the processing p pr pro proc BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 3 , 1 10 0 0 0 0 1 +stateid as stateid s st sta stat BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 3 . 1 10 0 0 0 0 1 +will use will w wi wil will BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 6 3 . 1 7 0 0 0 0 1 +12.5.5.2.1.3. Server 12.5.5.2.1.3. 1 12 12. 12.5 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 5 ...... 6 10 0 0 0 0 1 +Consider a consider C Co Con Cons BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 5 '. 2 9 0 0 0 0 1 +metadata server metadata m me met meta BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 5 no 0 8 0 0 0 0 1 +overlapping LAYOUTGET overlapping o ov ove over BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 5 () 2 10 0 0 0 0 1 +that respond that t th tha that BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 5 .: 2 8 0 0 0 0 1 +1. The 1. 1 1. 1. 1. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 6 . 1 8 0 0 0 0 1 +CB_LAYOUTRECALL. The cb_layoutrecall. C CB CB_ CB_L BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 6 6 ."" 3 8 0 0 0 0 1 +arguments of arguments a ar arg argu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 6 "" 2 8 0 0 0 0 1 +CB_LAYOUTRECALL. The cb_layoutrecall. C CB CB_ CB_L BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 6 6 . 1 9 0 0 0 0 1 +the client, the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 6 , 1 10 0 0 0 0 1 +recall. recall. recall. r re rec reca BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 6 . 1 1 0 0 0 0 1 +2. The 2. 2 2. 2. 2. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 8 . 1 8 0 0 0 0 1 +CB_LAYOUTRECALL, but cb_layoutrecall, C CB CB_ CB_L BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 6 8 , 1 8 0 0 0 0 1 +LAYOUTRETURN and layoutreturn L LA LAY LAYO BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 6 8 no 0 10 0 0 0 0 1 +that processing. that t th tha that BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 8 ."" 3 10 0 0 0 0 1 +is equal is i is is is BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 8 "" 2 7 0 0 0 0 1 +CB_LAYOUTRECALL. The cb_layoutrecall. C CB CB_ CB_L BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 6 8 . 1 9 0 0 0 0 1 +CB_LAYOUTRECALL, so cb_layoutrecall, C CB CB_ CB_L BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 6 8 ,. 2 8 0 0 0 0 1 +3. The 3. 3 3. 3. 3. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 10 . 1 8 0 0 0 0 1 +CB_LAYOUTRECALL; the cb_layoutrecall; C CB CB_ CB_L BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 6 10 ; 1 8 0 0 0 0 1 +response, but response, r re res resp BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 10 , 1 10 0 0 0 0 1 +completed that completed c co com comp BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 10 ."" 3 9 0 0 0 0 1 +LAYOUTGET is layoutget L LA LAY LAYO BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 6 10 "". 3 9 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 6 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 11 , 1 10 0 0 0 0 0 +[Page 317] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 6 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 6 0 no 0 4 0 0 0 0 1 +The server the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 0 , 1 10 0 0 0 0 1 +returns NFS4ERR_RETURNCONFLICT. returns r re ret retu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 0 . 1 4 0 0 0 0 1 +12.5.5.2.1.4. Wraparound 12.5.5.2.1.4. 1 12 12. 12.5 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 0 ...... 6 10 0 0 0 0 1 +The rules the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 0 no 0 10 0 0 0 0 1 +the protocol the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 0 "" 2 8 0 0 0 0 1 +stateid's "seqid" stateid's s st sta stat BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 0 '"". 4 9 0 0 0 0 1 +non-zero requirement non-zero n no non non- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 0 - 1 10 0 0 0 0 1 +operations means operations o op ope oper BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 6 0 no 0 9 0 0 0 0 1 +may contain may m ma may may BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 1 0 0 6 0 "". 3 9 0 0 0 0 1 +modified version modified m mo mod modi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 0 no 0 8 0 0 0 0 1 +Section 2.10.6.1 section S Se Sec Sect BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 0 ...'"". 7 9 0 0 0 0 1 +difference is difference d di dif diff BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 0 ""; 3 9 0 0 0 0 1 +value of value v va val valu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 0 "", 3 9 0 0 0 0 1 +0x00000001. The 0x00000001. 0 0x 0x0 0x00 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 0 . 1 9 0 0 0 0 1 +of "seqid" of o of of of BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 0 "" 2 9 0 0 0 0 1 +described above described d de des desc BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 0 ...... 6 5 0 0 0 0 1 +Just as just J Ju Jus Just BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 4 "" 2 8 0 0 0 0 1 +CB_LAYOUTRECALL usage, cb_layoutrecall C CB CB_ CB_L BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 6 4 ,....., 7 9 0 0 0 0 1 +server also server s se ser serv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 4 "" 2 9 0 0 0 0 1 +an appropriate an a an an an BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 6 4 . 1 8 0 0 0 0 1 +parallelism the parallelism p pa par para BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 4 . 1 9 0 0 0 0 1 +is sending is i is is is BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 4 , 1 9 0 0 0 0 1 +definition, the definition, d de def defi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 4 ,"" 3 10 0 0 0 0 1 +current "seqid" current c cu cur curr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 4 "". 3 9 0 0 0 0 1 +spans from spans s sp spa span BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 4 """" 4 9 0 0 0 0 1 +past. To past. p pa pas past BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 4 .,'"" 5 9 0 0 0 0 1 +value for value v va val valu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 4 . 1 9 0 0 0 0 1 +lowest "seqid" lowest l lo low lowe BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 4 "" 2 9 0 0 0 0 1 +by PAST_SEQID. by b by by by BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 4 ."" 3 9 0 0 0 0 1 +range of range r ra ran rang BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 4 ., 2 9 0 0 0 0 1 +holds: VALID_SEQID_RANGE holds: h ho hol hold BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 4 :-. 3 9 0 0 0 0 1 +following, all following, f fo fol foll BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 4 , 1 9 0 0 0 0 1 +above. above. above. a ab abo abov BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 4 . 1 1 0 0 0 0 1 +The server the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 9 . 1 9 0 0 0 0 1 +defined as: defined d de def defi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 9 :.. 3 7 0 0 0 0 1 +(ca_maxoperations(i) -1), (ca_maxoperations(i) ( (c (ca (ca_ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 9 (()-), 6 9 0 0 0 0 1 +channels and channels c ch cha chan BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 9 () 2 10 0 0 0 0 1 +returned from returned r re ret retu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 9 '."- 4 9 0 0 0 0 1 +1" is 1" 1 1" 1" 1" BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 9 ". 2 9 0 0 0 0 1 +support a support s su sup supp BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 6 9 . 1 9 0 0 0 0 1 +maximum VALID_SEQID_RANGE maximum m ma max maxi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 9 (-)( 4 9 0 0 0 0 1 +being a being b be bei bein BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 9 ""). 4 4 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 6 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 11 , 1 10 0 0 0 0 0 +[Page 318] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 6 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 6 0 no 0 4 0 0 0 0 1 +If the if I If If If BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 0 "", 3 9 0 0 0 0 1 +error is error e er err erro BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 0 . 1 9 0 0 0 0 1 +"seqid" to "seqid" " "s "se "seq BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 0 "", 3 8 0 0 0 0 1 +VALID_SEQID_RANGE. If valid_seqid_range. V VA VAL VALI BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 6 0 ."", 4 9 0 0 0 0 1 +the error the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 0 . 1 8 0 0 0 0 1 +receipt of receipt r re rec rece BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 0 , 1 10 0 0 0 0 1 +layout request layout l la lay layo BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 0 - 1 9 0 0 0 0 1 +sends the sends s se sen send BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 0 . 1 5 0 0 0 0 1 +12.5.5.2.1.5. Bulk 12.5.5.2.1.5. 1 12 12. 12.5 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 2 ...... 6 10 0 0 0 0 1 +pNFS supports pnfs p pN pNF pNFS BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 2 no 0 9 0 0 0 0 1 +belonging to belonging b be bel belo BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 2 (, 2 7 0 0 0 0 1 +LAYOUTRETURN4_FSID) or layoutreturn4_fsid) L LA LAY LAYO BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 2 )(, 3 7 0 0 0 0 1 +LAYOUTRETURN4_ALL). There layoutreturn4_all). L LA LAY LAYO BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 2 )."", 5 9 0 0 0 0 1 +races via races r ra rac race BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 2 . 1 9 0 0 0 0 1 +bulk recall bulk b bu bul bulk BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 2 , 1 10 0 0 0 0 1 +LAYOUTRETURN is layoutreturn L LA LAY LAYO BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 6 2 . 1 9 0 0 0 0 1 +sends a sends s se sen send BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 2 - 1 9 0 0 0 0 1 +LAYOUTRETURN, CB_LAYOUTRECALL, layoutreturn, L LA LAY LAYO BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 6 2 ,,, 3 9 0 0 0 0 1 +NFS4ERR_DELAY. In nfs4err_delay. N NF NFS NFS4 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 2 . 1 8 0 0 0 0 1 +LAYOUTRETURN while layoutreturn L LA LAY LAYO BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 6 2 , 1 9 0 0 0 0 1 +NFS4ERR_RECALLCONFLICT. If nfs4err_recallconflict. N NF NFS NFS4 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 2 . 1 8 0 0 0 0 1 +LAYOUTRETURN after layoutreturn L LA LAY LAYO BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 6 2 no 0 9 0 0 0 0 1 +recall, then recall, r re rec reca BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 2 ,, 2 9 0 0 0 0 1 +NFS4ERR_RECALLCONFLICT. NFS4ERR_RECALLCONFLICT. nfs4err_recallconflict. N NF NFS NFS4 BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 2 . 1 3 0 0 0 0 1 +Once a once O On Onc Once BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 6 , 1 10 0 0 0 0 1 +NOT allow not N NO NOT NOT BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 6 6 no 0 8 0 0 0 0 1 +LAYOUTCOMMIT operations. layoutcommit L LA LAY LAYO BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 6 6 . 1 9 0 0 0 0 1 +of LAYOUTRECALL4_ALL, of o of of of BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 6 , 1 9 0 0 0 0 1 +LAYOUTCOMMIT operations. layoutcommit L LA LAY LAYO BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 6 6 . 1 10 0 0 0 0 1 +sent, all sent, s se sen sent BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 6 ,. 2 9 0 0 0 0 1 +client MUST client c cl cli clie BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 6 . 1 10 0 0 0 0 1 +to obtain to t to to to BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 6 . 1 4 0 0 0 0 1 +Once a once O On Onc Once BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 8 , 1 10 0 0 0 0 1 +NOT allow not N NO NOT NOT BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 6 8 no 0 9 0 0 0 0 1 +with the with w wi wit with BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 8 . 1 9 0 0 0 0 1 +client receives client c cl cli clie BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 8 , 1 9 0 0 0 0 1 +use any use u us use use BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 8 no 0 9 0 0 0 0 1 +except for except e ex exc exce BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 8 . 1 8 0 0 0 0 1 +LAYOUTRETURN4_FSID is layoutreturn4_fsid L LA LAY LAYO BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 8 , 1 9 0 0 0 0 1 +referenced fsid referenced r re ref refe BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 8 . 1 9 0 0 0 0 1 +layout stateids layout l la lay layo BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 8 . 1 8 0 0 0 0 1 +Subsequently, for subsequently, S Su Sub Subs BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 8 ,,, 3 10 0 0 0 0 1 +the client the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 8 no 0 10 0 0 0 0 1 +new layout new n ne new new BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 8 . 1 4 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 6 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 11 , 1 10 0 0 0 0 0 +[Page 319] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 6 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 6 0 no 0 4 0 0 0 0 1 +If the if I If If If BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 0 no 0 8 0 0 0 0 1 +LAYOUTGET, or layoutget, L LA LAY LAYO BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 6 0 ,, 2 10 0 0 0 0 1 +NFS4ERR_RECALLCONFLICT. If nfs4err_recallconflict. N NF NFS NFS4 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 0 . 1 7 0 0 0 0 1 +CB_LAYOUTRECALL and cb_layoutrecall C CB CB_ CB_L BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 6 0 no 0 9 0 0 0 0 1 +that is that t th tha that BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 0 , 1 10 0 0 0 0 1 +server MUST server s se ser serv BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 0 . 1 6 0 0 0 0 1 +12.5.6. Revoking 12.5.6. 1 12 12. 12.5 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 1 ... 3 10 0 0 0 0 1 +Parallel NFS parallel P Pa Par Para BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 1 no 0 10 0 0 0 0 1 +to respond to t to to to BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 1 /. 2 9 0 0 0 0 1 +Depending on depending D De Dep Depe BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 1 , 1 9 0 0 0 0 1 +might take might m mi mig migh BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 1 '/ 2 9 0 0 0 0 1 +servers. servers. servers. s se ser serv BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 1 . 1 1 0 0 0 0 1 +12.5.7. Metadata 12.5.7. 1 12 12. 12.5 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 3 ... 3 10 0 0 0 0 1 +Asynchronous writes asynchronous A As Asy Asyn BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 6 3 no 0 9 0 0 0 0 1 +propagated lazily propagated p pr pro prop BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 3 . 1 8 0 0 0 0 1 +asynchronously through asynchronously a as asy asyn BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 3 , 1 9 0 0 0 0 1 +read at read r re rea read BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 6 3 no 0 9 0 0 0 0 1 +newly written newly n ne new newl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 3 . 1 9 0 0 0 0 1 +While the while W Wh Whi Whil BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 3 , 1 10 0 0 0 0 1 +either the either e ei eit eith BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 3 ,,. 3 10 0 0 0 0 1 +completion of completion c co com comp BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 3 ( 1 9 0 0 0 0 1 +written data), written w wr wri writ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 3 ), 2 9 0 0 0 0 1 +give out give g gi giv give BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 3 no 0 9 0 0 0 0 1 +storage. If storage. s st sto stor BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 3 . 1 9 0 0 0 0 1 +it cannot it i it it it BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 3 , 1 10 0 0 0 0 1 +prevent reads prevent p pr pre prev BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 3 . 1 10 0 0 0 0 1 +the layouts the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 3 no 0 9 0 0 0 0 1 +associated WRITE associated a as ass asso BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 3 . 1 4 0 0 0 0 1 +12.6. pNFS 12.6. 1 12 12. 12.6 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 7 .. 2 10 0 0 0 0 1 +This section this T Th Thi This BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 8 no 0 10 0 0 0 0 1 +a metadata a a a a a BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 1 0 0 0 0 0 6 8 . 1 5 0 0 0 0 1 +When a when W Wh Whe When BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 8 , 1 9 0 0 0 0 1 +NFSv4.1 server nfsv4.1 N NF NFS NFSv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 8 .(..). 6 9 0 0 0 0 1 +the attribute the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 8 , 1 9 0 0 0 0 1 +returned are returned r re ret retu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 8 , 1 9 0 0 0 0 1 +that pNFS that t th tha that BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 8 ., 2 9 0 0 0 0 1 +that returned that t th tha that BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 8 , 1 10 0 0 0 0 1 +came from came c ca cam came BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 8 no 0 6 0 0 0 0 1 +EXCHGID4_FLAG_USE_PNFS_MDS, it exchgid4_flag_use_pnfs_mds, E EX EXC EXCH BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 8 , 1 10 0 0 0 0 1 +with the with w wi wit with BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 8 .' 2 8 0 0 0 0 1 +response does response r re res resp BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 8 , 1 9 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 6 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 11 , 1 10 0 0 0 0 0 +[Page 320] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 6 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 6 0 no 0 4 0 0 0 0 1 +what the what w wh wha what BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 0 , 1 9 0 0 0 0 1 +pNFS, and pnfs, p pN pNF pNFS BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 0 ,; 2 9 0 0 0 0 1 +this case, this t th thi this BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 0 , 1 10 0 0 0 0 1 +pNFS operation. pnfs p pN pNF pNFS BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 0 . 1 2 0 0 0 0 1 +The client the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 1 ,, 2 9 0 0 0 0 1 +so that so s so so so BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 6 1 no 0 10 0 0 0 0 1 +createmode4 of createmode4 c cr cre crea BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 1 . 1 8 0 0 0 0 1 +persistent, the persistent, p pe per pers BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 1 ,. 2 9 0 0 0 0 1 +If a if I If If If BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 2 -, 2 9 0 0 0 0 1 +uses the uses u us use uses BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 2 . 1 9 0 0 0 0 1 +be provided be b be be be BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 2 , 1 8 0 0 0 0 1 +layout_hint attribute. layout_hint l la lay layo BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 2 .' 2 9 0 0 0 0 1 +client to client c cl cli clie BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 2 no 0 10 0 0 0 0 1 +layout details. layout l la lay layo BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 2 .,, 3 9 0 0 0 0 1 +EXCLUSIVE4_1 will exclusive4_1 E EX EXC EXCL BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 2 no 0 8 0 0 0 0 1 +attribute at attribute a at att attr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 2 .( 2 9 0 0 0 0 1 +Table 10). table T Ta Tab Tabl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 2 ). 2 9 0 0 0 0 1 +after the after a af aft afte BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 2 . 1 8 0 0 0 0 1 +retrieve the retrieve r re ret retr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 2 . 1 9 0 0 0 0 1 +client will client c cl cli clie BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 2 no 0 9 0 0 0 0 1 +file and file f fi fil file BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 2 . 1 8 0 0 0 0 1 +If the if I If If If BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 5 , 1 10 0 0 0 0 1 +GETATTR to getattr G GE GET GETA BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 6 5 . 1 8 0 0 0 0 1 +The GETATTR the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 6 no 0 9 0 0 0 0 1 +also include also a al als also BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 6 no 0 9 0 0 0 0 1 +that the that t th tha that BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 6 / 1 10 0 0 0 0 1 +the file. the t th the the BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 6 . 1 1 0 0 0 0 1 +Assuming the assuming A As Ass Assu BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 7 no 0 9 0 0 0 0 1 +it chooses it i it it it BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 7 , 1 10 0 0 0 0 1 +the filehandle the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 7 , 1 9 0 0 0 0 1 +wants to wants w wa wan want BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 7 /., 3 9 0 0 0 0 1 +of the of o of of of BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 7 . 1 9 0 0 0 0 1 +and a and a an and and BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 7 ( 1 8 0 0 0 0 1 +writing, how writing, w wr wri writ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 7 ,). 3 9 0 0 0 0 1 +IDs and ids I ID IDs IDs BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 6 7 no 0 9 0 0 0 0 1 +the layout the t th the the BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 7 ,. 2 8 0 0 0 0 1 +When the when W Wh Whe When BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 10 /, 2 9 0 0 0 0 1 +ID it id I ID ID ID BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 1 0 0 0 0 0 0 6 10 / 1 10 0 0 0 0 1 +in the in i in in in BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 6 10 . 1 9 0 0 0 0 1 +address(es) of address(es) a ad add addr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 10 ()./ 4 9 0 0 0 0 1 +to one to t to to to BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 10 ', 2 9 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 6 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 11 , 1 10 0 0 0 0 0 +[Page 321] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 6 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 6 0 no 0 4 0 0 0 0 1 +defined for defined d de def defi BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 0 ./ 2 10 0 0 0 0 1 +to send, to t to to to BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 0 ,/. 3 7 0 0 0 0 1 +If the if I If If If BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 1 /, 2 10 0 0 0 0 1 +LAYOUTCOMMIT to layoutcommit L LA LAY LAYO BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 6 1 no 0 9 0 0 0 0 1 +file (if file f fi fil file BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 1 () 2 9 0 0 0 0 1 +server and server s se ser serv BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 1 . 1 7 0 0 0 0 1 +12.7. Recovery 12.7. 1 12 12. 12.7 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 2 .. 2 10 0 0 0 0 1 +Recovery is recovery R Re Rec Reco BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 2 no 0 8 0 0 0 0 1 +protocol. In protocol. p pr pro prot BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 2 ., 2 10 0 0 0 0 1 +recovery for recovery r re rec reco BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 2 .., 3 9 0 0 0 0 1 +client's ability client's c cl cli clie BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 2 '/ 2 9 0 0 0 0 1 +server introduces server s se ser serv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 2 no 0 9 0 0 0 0 1 +possibility of possibility p po pos poss BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 2 . 1 8 0 0 0 0 1 +12.7.1. Recovery 12.7.1. 1 12 12. 12.7 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 4 ... 3 10 0 0 0 0 1 +Client recovery client C Cl Cli Clie BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 4 no 0 9 0 0 0 0 1 +lock and lock l lo loc lock BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 6 4 ., 2 10 0 0 0 0 1 +all information all a al all all BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 4 . 1 9 0 0 0 0 1 +are two are a ar are are BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 4 no 0 9 0 0 0 0 1 +allow otherwise allow a al all allo BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 4 . 1 10 0 0 0 0 1 +The first the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 6 '. 2 9 0 0 0 0 1 +recovery time recovery r re rec reco BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 6 ,' 2 9 0 0 0 0 1 +will expire will w wi wil will BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 6 6 . 1 9 0 0 0 0 1 +layouts, the layouts, l la lay layo BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 6 , 1 9 0 0 0 0 1 +expiry or expiry e ex exp expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 6 , 1 10 0 0 0 0 1 +revival, as revival, r re rev revi BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 6 ,. 2 6 0 0 0 0 1 +The second the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 8 no 0 9 0 0 0 0 1 +takes for takes t ta tak take BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 8 ., 2 9 0 0 0 0 1 +will contact will w wi wil will BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 6 8 . 1 9 0 0 0 0 1 +The server the T Th The The BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 8 ' 1 8 0 0 0 0 1 +co_ownerid of co_ownerid c co co_ co_o BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 8 , 1 9 0 0 0 0 1 +is different. is i is is is BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 8 . 1 10 0 0 0 0 1 +state associated state s st sta stat BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 8 '. 2 9 0 0 0 0 1 +scenario, the scenario, s sc sce scen BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 8 , 1 8 0 0 0 0 1 +successful LAYOUTCOMMIT successful s su suc succ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 8 ; 1 9 0 0 0 0 1 +written or written w wr wri writ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 8 . 1 10 0 0 0 0 1 +the client's the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 8 ' 1 9 0 0 0 0 1 +desired level desired d de des desi BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 8 . 1 4 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 6 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 11 , 1 10 0 0 0 0 0 +[Page 322] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 6 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 6 0 no 0 4 0 0 0 0 1 +12.7.2. Dealing 12.7.2. 1 12 12. 12.7 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 0 ... 3 10 0 0 0 0 1 +If a if I If If If BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 0 ,/ 2 9 0 0 0 0 1 +the storage the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 0 . 1 9 0 0 0 0 1 +send a send s se sen send BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 0 . 1 9 0 0 0 0 1 +operation is operation o op ope oper BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 0 , 1 6 0 0 0 0 1 +SEQ4_STATUS_EXPIRED_ALL_STATE_REVOKED, SEQ4_STATUS_EXPIRED_ALL_STATE_REVOKED, seq4_status_expired_all_state_revoked, S SE SEQ SEQ4 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 0 , 1 5 0 0 0 0 1 +SEQ4_STATUS_EXPIRED_SOME_STATE_REVOKED, or seq4_status_expired_some_state_revoked, S SE SEQ SEQ4 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 0 , 1 6 0 0 0 0 1 +SEQ4_STATUS_ADMIN_STATE_REVOKED set, seq4_status_admin_state_revoked S SE SEQ SEQ4 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 0 , 1 8 0 0 0 0 1 +currently held currently c cu cur curr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 0 . 1 9 0 0 0 0 1 +the lease the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 0 .,, 3 9 0 0 0 0 1 +the client the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 0 no 0 10 0 0 0 0 1 +for the for f fo for for BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 0 ,.,- 4 8 0 0 0 0 1 +establishes a establishes e es est esta BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 0 no 0 9 0 0 0 0 1 +layouts and layouts l la lay layo BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 0 ---- 4 9 0 0 0 0 1 +data ranges data d da dat data BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 0 no 0 9 0 0 0 0 1 +newly obtained newly n ne new newl BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 0 . 1 3 0 0 0 0 1 +If sr_status_flags if I If If If BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 4 no 0 6 0 0 0 0 1 +SEQ4_STATUS_RESTART_RECLAIM_NEEDED set seq4_status_restart_reclaim_needed S SE SEQ SEQ4 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 4 ( 1 8 0 0 0 0 1 +NFS4ERR_BAD_SESSION and nfs4err_bad_session N NF NFS NFS4 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 4 no 0 6 0 0 0 0 1 +NFS4ERR_STALE_CLIENTID), then nfs4err_stale_clientid), N NF NFS NFS4 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 4 ),, 3 10 0 0 0 0 1 +the client the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 4 no 0 8 0 0 0 0 1 +Section 12.7.4. section S Se Sec Sect BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 4 ... 3 2 0 0 0 0 1 +If sr_status_flags if I If If If BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 6 no 0 6 0 0 0 0 1 +SEQ4_STATUS_LEASE_MOVED set, seq4_status_lease_moved S SE SEQ SEQ4 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 6 , 1 9 0 0 0 0 1 +the procedure the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 6 ...., 5 10 0 0 0 0 1 +may get may m ma may may BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 1 0 0 6 6 no 0 9 0 0 0 0 1 +file system. file f fi fil file BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 6 . 1 8 0 0 0 0 1 +situations discussed situations s si sit situ BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 6 . 1 9 0 0 0 0 1 +If sr_status_flags if I If If If BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 7 , 1 9 0 0 0 0 1 +layouts that layouts l la lay layo BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 7 , 1 10 0 0 0 0 1 +once again once o on onc once BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 7 /. 2 7 0 0 0 0 1 +While clients while W Wh Whi Whil BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 8 / 1 10 0 0 0 0 1 +past the past p pa pas past BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 8 ,, 2 9 0 0 0 0 1 +for example, for f fo for for BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 8 ,/ 2 9 0 0 0 0 1 +is sent is i is is is BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 8 / 1 9 0 0 0 0 1 +storage device. storage s st sto stor BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 8 .,/ 3 9 0 0 0 0 1 +responsible for responsible r re res resp BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 8 / 1 9 0 0 0 0 1 +before the before b be bef befo BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 8 . 1 9 0 0 0 0 1 +Section 12.7.3. section S Se Sec Sect BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 8 ... 3 2 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 6 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 11 , 1 10 0 0 0 0 0 +[Page 323] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 6 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 6 0 no 0 4 0 0 0 0 1 +12.7.3. Dealing 12.7.3. 1 12 12. 12.7 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 0 ... 3 10 0 0 0 0 1 +This is this T Th Thi This BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 0 no 0 10 0 0 0 0 1 +true: true: true: t tr tru true BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 0 : 1 0 0 0 0 0 1 +o the o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 6 1 no 0 10 0 0 0 0 1 +o a o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 6 1 '( 2 10 0 0 0 0 1 +client's lease client's c cl cli clie BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 1 ') 2 5 0 0 0 0 1 +o an o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 6 1 / 1 10 0 0 0 0 1 +The metadata the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 2 no 0 9 0 0 0 0 1 +fencing the fencing f fe fen fenc BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 2 ., 2 8 0 0 0 0 1 +preventing the preventing p pr pre prev BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 2 / 1 9 0 0 0 0 1 +storage devices storage s st sto stor BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 2 . 1 9 0 0 0 0 1 +is done is i is is is BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 2 .. 2 9 0 0 0 0 1 +file-based layouts file-based f fi fil file BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 2 -(.), 5 10 0 0 0 0 1 +other layout other o ot oth othe BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 2 no 0 9 0 0 0 0 1 +documents. documents. documents. d do doc docu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 2 . 1 1 0 0 0 0 1 +12.7.4. Recovery 12.7.4. 1 12 12. 12.7 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 4 ... 3 10 0 0 0 0 1 +The pNFS the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 5 no 0 10 0 0 0 0 1 +via the via v vi via via BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 5 ..- 3 9 0 0 0 0 1 +specific context specific s sp spe spec BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 5 ..,. 4 9 0 0 0 0 1 +stop using stop s st sto stop BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 5 no 0 8 0 0 0 0 1 +mappings it mappings m ma map mapp BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 5 . 1 9 0 0 0 0 1 +done that, done d do don done BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 5 , 1 9 0 0 0 0 1 +committing the committing c co com comm BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 5 , 1 8 0 0 0 0 1 +additional work additional a ad add addi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 5 ,, 2 9 0 0 0 0 1 +and storage and a an and and BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 5 (). 3 9 0 0 0 0 1 +o If o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 6 8 no 0 10 0 0 0 0 1 +client's memory, client's c cl cli clie BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 8 ',. 3 8 0 0 0 0 1 +1. The 1. 1 1. 1. 1. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 8 . 1 10 0 0 0 0 1 +server's grace server's s se ser serv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 8 ' 1 9 0 0 0 0 1 +devices. devices. devices. d de dev devi BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 8 . 1 1 0 0 0 0 1 +2. The 2. 2 2. 2. 2. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 9 . 1 10 0 0 0 0 1 +using the using u us usi usin BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 9 (.), 4 9 0 0 0 0 1 +layouts as layouts l la lay layo BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 9 . 1 3 0 0 0 0 1 +o If o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 6 10 , 1 10 0 0 0 0 1 +still has still s st sti stil BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 10 , 1 9 0 0 0 0 1 +to it to t to to to BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 10 no 0 9 0 0 0 0 1 +point. If point. p po poi poin BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 10 ., 2 9 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 6 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 11 , 1 10 0 0 0 0 0 +[Page 324] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 6 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 6 0 no 0 4 0 0 0 0 1 +client has client c cl cli clie BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 0 no 0 10 0 0 0 0 1 +point. point. point. p po poi poin BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 0 . 1 1 0 0 0 0 1 +o The o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 6 0 no 0 10 0 0 0 0 1 +metadata server metadata m me met meta BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 0 . 1 9 0 0 0 0 1 +use LAYOUTGET use u us use use BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 0 () 2 9 0 0 0 0 1 +layout because layout l la lay layo BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 0 no 0 9 0 0 0 0 1 +match what match m ma mat matc BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 0 . 1 9 0 0 0 0 1 +client might client c cl cli clie BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 0 no 0 9 0 0 0 0 1 +might be might m mi mig migh BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 0 . 1 9 0 0 0 0 1 +be the be b be be be BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 0 ,, 2 9 0 0 0 0 1 +and even and a an and and BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 0 , 1 8 0 0 0 0 1 +addresses could addresses a ad add addr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 0 . 1 9 0 0 0 0 1 +The option the T Th The The BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 0 no 0 9 0 0 0 0 1 +writing it writing w wr wri writ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 0 no 0 8 0 0 0 0 1 +described above described d de des desc BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 0 ,, 2 9 0 0 0 0 1 +range to range r ra ran rang BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 0 ,, 2 8 0 0 0 0 1 +address to address a ad add addr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 0 , 1 9 0 0 0 0 1 +LAYOUTGET do layoutget L LA LAY LAYO BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 6 0 . 1 5 0 0 0 0 1 +The only the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 5 no 0 8 0 0 0 0 1 +LAYOUTCOMMIT in layoutcommit L LA LAY LAYO BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 6 5 , 1 9 0 0 0 0 1 +accept as accept a ac acc acce BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 5 . 1 8 0 0 0 0 1 +LAYOUTCOMMIT in layoutcommit L LA LAY LAYO BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 6 5 no 0 10 0 0 0 0 1 +layout has layout l la lay layo BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 5 . 1 9 0 0 0 0 1 +receive this receive r re rec rece BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 5 , 1 9 0 0 0 0 1 +before it before b be bef befo BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 5 . 1 8 0 0 0 0 1 +To send to T To To To BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 7 , 1 8 0 0 0 0 1 +loca_reclaim field loca_reclaim l lo loc loca BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 7 '(..) 5 10 0 0 0 0 1 +to TRUE. to t to to to BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 7 .'( 3 9 0 0 0 0 1 +only during only o on onl only BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 7 ) 1 9 0 0 0 0 1 +prepared to prepared p pr pre prep BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 7 no 0 9 0 0 0 0 1 +field set field f fi fie fiel BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 6 7 . 1 2 0 0 0 0 1 +When loca_reclaim when W Wh Whe When BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 8 , 1 9 0 0 0 0 1 +changes to changes c ch cha chan BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 6 8 no 0 9 0 0 0 0 1 +metadata server. metadata m me met meta BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 8 . 1 9 0 0 0 0 1 +checks on checks c ch che chec BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 8 no 0 8 0 0 0 0 1 +determine whether determine d de det dete BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 8 no 0 9 0 0 0 0 1 +storage device storage s st sto stor BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 8 . 1 9 0 0 0 0 1 +of data of o of of of BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 8 -- 2 9 0 0 0 0 1 +content (in content c co con cont BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 8 ().- 4 9 0 0 0 0 1 +type-specific information type-specific t ty typ type BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 8 - 1 9 0 0 0 0 1 +discussed in discussed d di dis disc BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 8 ....' 5 8 0 0 0 0 1 +consistency checks consistency c co con cons BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 8 , 1 10 0 0 0 0 1 +server MUST server s se ser serv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 8 (, 2 9 0 0 0 0 1 +loca_length, and loca_length, l lo loc loca BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 8 ,) 2 9 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 6 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 11 , 1 10 0 0 0 0 0 +[Page 325] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 6 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 6 0 no 0 4 0 0 0 0 1 +was written was w wa was was BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 0 .' 2 9 0 0 0 0 1 +consistency checks consistency c co con cons BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 0 , 1 10 0 0 0 0 1 +rejects the rejects r re rej reje BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 0 no 0 9 0 0 0 0 1 +file system. file f fi fil file BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 0 ., 2 9 0 0 0 0 1 +TRUE fails, true T TR TRU TRUE BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 1 1 0 0 0 0 0 6 0 , 1 9 0 0 0 0 1 +defined by defined d de def defi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 0 ,. 2 8 0 0 0 0 1 +against this against a ag aga agai BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 0 , 1 8 0 0 0 0 1 +synchronously or synchronously s sy syn sync BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 0 , 1 8 0 0 0 0 1 +releasing the releasing r re rel rele BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 0 . 1 9 0 0 0 0 1 +condition does condition c co con cond BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 0 ;, 2 9 0 0 0 0 1 +file-based storage file-based f fi fil file BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 0 -. 2 9 0 0 0 0 1 +o The o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 6 3 no 0 10 0 0 0 0 1 +metadata server metadata m me met meta BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 3 ;.., 4 8 0 0 0 0 1 +metadata server metadata m me met meta BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 3 . 1 9 0 0 0 0 1 +the above the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 3 , 1 9 0 0 0 0 1 +in the in i in in in BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 6 3 ,. 2 9 0 0 0 0 1 +the risk the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 3 -- 2 9 0 0 0 0 1 +a successful a a a a a BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 1 0 0 0 0 0 6 3 . 1 3 0 0 0 0 1 +12.7.5. Operations 12.7.5. 1 12 12. 12.7 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 5 ... 3 10 0 0 0 0 1 +Some of some S So Som Some BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 5 no 0 9 0 0 0 0 1 +(namely, WRITE (namely, ( (n (na (nam BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 5 (,) 3 9 0 0 0 0 1 +server's grace server's s se ser serv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 5 '. 2 8 0 0 0 0 1 +operations during operations o op ope oper BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 6 5 ., 2 9 0 0 0 0 1 +server must server s se ser serv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 5 no 0 10 0 0 0 0 1 +conflict with conflict c co con conf BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 5 ., 2 9 0 0 0 0 1 +the metadata the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 5 no 0 9 0 0 0 0 1 +request will request r re req requ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 5 no 0 10 0 0 0 0 1 +the file the t th the the BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 5 -. 2 7 0 0 0 0 1 +As mentioned as A As As As BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 7 ,, 2 9 0 0 0 0 1 +reject some reject r re rej reje BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 7 (,) 3 10 0 0 0 0 1 +period, because period, p pe per peri BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 7 ,- 2 9 0 0 0 0 1 +reclaim pNFS reclaim r re rec recl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 7 no 0 8 0 0 0 0 1 +NFS4ERR_GRACE error. nfs4err_grace N NF NFS NFS4 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 7 ., 2 9 0 0 0 0 1 +(which is (which ( (w (wh (whi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 7 () 2 8 0 0 0 0 1 +implementation, the implementation, i im imp impl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 7 , 1 9 0 0 0 0 1 +particular request particular p pa par part BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 7 ., 2 9 0 0 0 0 1 +provisional allocation provisional p pr pro prov BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 7 , 1 9 0 0 0 0 1 +well as well w we wel well BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 7 no 0 9 0 0 0 0 1 +and mandatory and a an and and BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 7 - 1 9 0 0 0 0 1 +time of time t ti tim time BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 7 , 1 9 0 0 0 0 1 +during the during d du dur duri BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 7 no 0 10 0 0 0 0 1 +safe. safe. safe. s sa saf safe BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 7 . 1 0 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 6 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 11 , 1 10 0 0 0 0 0 +[Page 326] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 6 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 6 0 no 0 4 0 0 0 0 1 +12.7.6. Storage 12.7.6. 1 12 12. 12.7 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 0 ... 3 10 0 0 0 0 1 +Recovery from recovery R Re Rec Reco BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 0 no 0 9 0 0 0 0 1 +layout type layout l la lay layo BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 0 ., 2 9 0 0 0 0 1 +client can client c cl cli clie BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 0 no 0 9 0 0 0 0 1 +holding modified, holding h ho hol hold BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 0 ,. 2 9 0 0 0 0 1 +First and first F Fi Fir Firs BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 0 , 1 10 0 0 0 0 1 +only one only o on onl only BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 0 - 1 9 0 0 0 0 1 +data since data d da dat data BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 0 . 1 10 0 0 0 0 1 +Second, the second, S Se Sec Seco BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 0 , 1 9 0 0 0 0 1 +caution and caution c ca cau caut BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 0 no 0 9 0 0 0 0 1 +path. path. path. p pa pat path BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 0 . 1 0 0 0 0 0 1 +The client the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 3 , 1 10 0 0 0 0 1 +with the with w wi wit with BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 3 . 1 9 0 0 0 0 1 +does this, does d do doe does BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 3 ,. 2 10 0 0 0 0 1 +12.8. Metadata 12.8. 1 12 12. 12.8 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 4 .. 2 10 0 0 0 0 1 +If the if I If If If BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 4 no 0 9 0 0 0 0 1 +server and server s se ser serv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 4 , 1 9 0 0 0 0 1 +understood to understood u un und unde BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 4 no 0 9 0 0 0 0 1 +that it that t th tha that BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 4 no 0 10 0 0 0 0 1 +executing at executing e ex exe exec BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 4 . 1 4 0 0 0 0 1 +Two sub-cases two T Tw Two Two BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 6 -. 2 10 0 0 0 0 1 +1. The 1. 1 1. 1. 1. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 6 ..,.., 6 10 0 0 0 0 1 +the same the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 6 no 0 9 0 0 0 0 1 +and data and a an and and BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 6 .. 2 8 0 0 0 0 1 +multiple roles multiple m mu mul mult BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 6 . 1 4 0 0 0 0 1 +2. The 2. 2 2. 2. 2. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 7 .., 3 10 0 0 0 0 1 +and the and a an and and BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 7 no 0 8 0 0 0 0 1 +metadata and metadata m me met meta BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 7 . 1 9 0 0 0 0 1 +are used are a ar are are BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 7 no 0 8 0 0 0 0 1 +immaterial. This immaterial. i im imm imma BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 7 . 1 8 0 0 0 0 1 +client and client c cl cli clie BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 7 ,- 2 8 0 0 0 0 1 +(NFSv4.1 or (nfsv4.1 ( (N (NF (NFS BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 7 (.-.), 6 9 0 0 0 0 1 +server network server s se ser serv BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 7 . 1 5 0 0 0 0 1 +12.9. Security 12.9. 1 12 12. 12.9 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 9 .. 2 10 0 0 0 0 1 +pNFS separates pnfs p pN pNF pNFS BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 10 no 0 10 0 0 0 0 1 +both. There both. b bo bot both BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 10 .-(.) 5 9 0 0 0 0 1 +that provide that t th tha that BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 10 ;. 2 8 0 0 0 0 1 +conventional (non-pNFS) conventional c co con conv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 10 (-) 3 9 0 0 0 0 1 +accessing the accessing a ac acc acce BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 10 . 1 9 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 6 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 11 , 1 10 0 0 0 0 0 +[Page 327] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 6 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 6 0 no 0 4 0 0 0 0 1 +system (see system s sy sys syst BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 0 () 2 10 0 0 0 0 1 +of NFSv4.1 of o of of of BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 0 . 1 9 0 0 0 0 1 +device from device d de dev devi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 0 , 1 9 0 0 0 0 1 +against threats against a ag aga agai BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 0 . 1 9 0 0 0 0 1 +where these where w wh whe wher BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 0 . 1 6 0 0 0 0 1 +In some in I In In In BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 6 1 , 1 9 0 0 0 0 1 +storage devices storage s st sto stor BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 1 no 0 8 0 0 0 0 1 +recommendation to recommendation r re rec reco BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 1 . 1 9 0 0 0 0 1 +example, it example, e ex exa exam BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 1 , 1 10 0 0 0 0 1 +for some for f fo for for BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 1 . 1 9 0 0 0 0 1 +environments where environments e en env envi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 1 no 0 9 0 0 0 0 1 +concern to concern c co con conc BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 1 , 1 8 0 0 0 0 1 +communication channel communication c co com comm BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 6 1 (..,() 6 10 0 0 0 0 1 +storage device(s)) storage s st sto stor BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 1 ())/(.., 8 10 0 0 0 0 1 +fall back fall f fa fal fall BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 1 .) 2 9 0 0 0 0 1 +action. action. action. a ac act acti BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 1 . 1 1 0 0 0 0 1 +Where communication where W Wh Whe Wher BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 4 no 0 9 0 0 0 0 1 +threats as threats t th thr thre BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 4 --, 3 9 0 0 0 0 1 +used for used u us use used BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 4 no 0 10 0 0 0 0 1 +strong as strong s st str stro BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 6 4 no 0 9 0 0 0 0 1 +NFSv4.1. Except nfsv4.1. N NF NFS NFSv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 4 .. 2 8 0 0 0 0 1 +LAYOUT4_NFSV4_1_FILES layout layout4_nfsv4_1_files L LA LAY LAYO BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 4 (),.., 6 9 0 0 0 0 1 +NFSv4.1, it nfsv4.1, N NF NFS NFSv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 4 ., 2 9 0 0 0 0 1 +security mechanisms security s se sec secu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 6 4 . 1 7 0 0 0 0 1 +pNFS implementations pnfs p pN pNF pNFS BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 6 .'. 3 9 0 0 0 0 1 +combination of combination c co com comb BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 6 ,, 2 9 0 0 0 0 1 +responsible for responsible r re res resp BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 6 --- 3 9 0 0 0 0 1 +access respects access a ac acc acce BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 6 .'. 3 9 0 0 0 0 1 +performing both performing p pe per perf BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 6 , 1 9 0 0 0 0 1 +storage device, storage s st sto stor BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 6 ,(; 3 10 0 0 0 0 1 +NFSv4.1 server, nfsv4.1 N NF NFS NFSv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 6 ., 2 9 0 0 0 0 1 +controlling access controlling c co con cont BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 6 ..). 4 8 0 0 0 0 1 +configuration performs configuration c co con conf BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 6 , 1 10 0 0 0 0 1 +misbehaving client misbehaving m mi mis misb BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 6 no 0 9 0 0 0 0 1 +consideration in consideration c co con cons BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 6 no 0 9 0 0 0 0 1 +pNFS configuration. pnfs p pN pNF pNFS BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 6 . 1 8 0 0 0 0 1 +client-only access client-only c cl cli clie BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 6 - 1 9 0 0 0 0 1 +NFSv4.1 access nfsv4.1 N NF NFS NFSv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 6 ..( 3 9 0 0 0 0 1 +problem for problem p pr pro prob BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 6 no 0 9 0 0 0 0 1 +storage access storage s st sto stor BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 6 ., 2 9 0 0 0 0 1 +thus the thus t th thu thus BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 6 no 0 7 0 0 0 0 1 +LAYOUT4_NFSv4_1_FILES is layout4_nfsv4_1_files L LA LAY LAYO BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 6 .) 2 9 0 0 0 0 1 +For handling for F Fo For For BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 6 , 1 9 0 0 0 0 1 +should examine should s sh sho shou BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 6 ,./- 4 9 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 6 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 11 , 1 10 0 0 0 0 0 +[Page 328] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 6 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 6 0 no 0 4 0 0 0 0 1 +based layout based b ba bas base BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 0 (),[], 6 10 0 0 0 0 1 +and objects and a an and and BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 0 []. 3 3 0 0 0 0 1 +13. NFSv4.1 13. 1 13 13. 13. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 0 ..: 3 10 0 0 0 0 1 +This section this T Th Thi This BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 1 .- 2 10 0 0 0 0 1 +layouts for layouts l la lay layo BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 1 ..- 3 7 0 0 0 0 1 +LAYOUT4_NFSV4_1_FILES layout layout4_nfsv4_1_files L LA LAY LAYO BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 1 . 1 9 0 0 0 0 1 +defines striping defines d de def defi BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 1 .. 2 8 0 0 0 0 1 +13.1. Client 13.1. 1 13 13. 13.1 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 2 .. 2 10 0 0 0 0 1 +Sessions are sessions S Se Ses Sess BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 6 2 ., 2 10 0 0 0 0 1 +the metadata the t th the the BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 2 -(.-). 6 9 0 0 0 0 1 +The role the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 3 no 0 10 0 0 0 0 1 +returns from returns r re ret retu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 3 .: 2 6 0 0 0 0 1 +o Metadata o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 6 3 ( 1 10 0 0 0 0 1 +eir_flags). eir_flags). eir_flags). e ei eir eir_ BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 3 ). 2 1 0 0 0 0 1 +o Data o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 6 4 (). 3 10 0 0 0 0 1 +o Non-metadata o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 6 4 -(). 4 9 0 0 0 0 1 +NFSv4.1 server nfsv4.1 N NF NFS NFSv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 4 .(..,) 6 10 0 0 0 0 1 +or attributes or o or or or BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 4 . 1 5 0 0 0 0 1 +The client the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 5 , 1 9 0 0 0 0 1 +EXCHGID4_FLAG_USE_PNFS_DS, or exchgid4_flag_use_pnfs_ds, E EX EXC EXCH BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 5 ,, 2 10 0 0 0 0 1 +some combinations some s so som some BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 5 (.., 4 7 0 0 0 0 1 +EXCHGID4_FLAG_USE_PNFS_MDS) are exchgid4_flag_use_pnfs_mds) E EX EXC EXCH BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 5 )., 3 9 0 0 0 0 1 +MUST only must M MU MUS MUST BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 6 5 : 1 8 0 0 0 0 1 ++---------------------------------------------------------+ +---------------------------------------------------------+ +---------------------------------------------------------+ + +- +-- +--- BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 6 6 --------------------------------------------------------- 57 10 0 0 0 0 1 +| Acceptable | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 6 no 0 6 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 6 no 0 0 0 0 0 0 1 ++---------------------------------------------------------+ +---------------------------------------------------------+ +---------------------------------------------------------+ + +- +-- +--- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 6 6 --------------------------------------------------------- 57 10 0 0 0 0 1 +| EXCHGID4_FLAG_USE_PNFS_MDS | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 6 no 0 4 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 6 no 0 0 0 0 0 0 1 +| EXCHGID4_FLAG_USE_PNFS_MDS | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 6 no 0 9 0 0 0 0 1 +| EXCHGID4_FLAG_USE_PNFS_DS | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 6 no 0 4 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 6 no 0 0 0 0 0 0 1 +| EXCHGID4_FLAG_USE_NON_PNFS | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 6 no 0 4 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 6 no 0 0 0 0 0 0 1 +| EXCHGID4_FLAG_USE_PNFS_DS | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 6 no 0 9 0 0 0 0 1 ++---------------------------------------------------------+ +---------------------------------------------------------+ +---------------------------------------------------------+ + +- +-- +--- BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 6 6 --------------------------------------------------------- 57 10 0 0 0 0 1 +As the as A As As As BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 9 ,. 2 9 0 0 0 0 1 +server can server s se ser serv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 9 , 1 10 0 0 0 0 1 +both a both b bo bot both BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 9 -. 2 10 0 0 0 0 1 +two roles two t tw two two BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 9 ', 2 9 0 0 0 0 1 +via a via v vi via via BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 9 , 1 9 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 6 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 11 , 1 10 0 0 0 0 0 +[Page 329] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 6 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 6 0 no 0 4 0 0 0 0 1 +unique client unique u un uni uniq BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 0 no 0 10 0 0 0 0 1 +EXCHANGE_ID results, exchange_id E EX EXC EXCH BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 6 0 ,. 2 9 0 0 0 0 1 +In the in I In In In BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 6 0 no 0 10 0 0 0 0 1 +a common a a a a a BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 1 0 0 0 0 0 6 0 , 1 9 0 0 0 0 1 +zero or zero z ze zer zero BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 0 , 1 10 0 0 0 0 1 +should set should s sh sho shou BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 0 no 0 8 0 0 0 0 1 +combination of combination c co com comb BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 0 , 1 10 0 0 0 0 1 +requested by requested r re req requ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 0 ., 2 7 0 0 0 0 1 +(EXCHGID4_FLAG_USE_NON_PNFS | (exchgid4_flag_use_non_pnfs ( (E (EX (EXC BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 0 ( 1 8 0 0 0 0 1 +EXCHGID4_FLAG_USE_PNFS_DS) flags exchgid4_flag_use_pnfs_ds) E EX EXC EXCH BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 0 ), 2 9 0 0 0 0 1 +metadata server metadata m me met meta BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 0 , 1 10 0 0 0 0 1 +client ID, client c cl cli clie BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 0 , 1 5 0 0 0 0 1 +(EXCHGID4_FLAG_USE_PNFS_MDS | (exchgid4_flag_use_pnfs_mds ( (E (EX (EXC BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 0 (). 3 8 0 0 0 0 1 +In the in I In In In BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 6 3 , 1 10 0 0 0 0 1 +role served role r ro rol role BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 3 , 1 9 0 0 0 0 1 +combination of combination c co com comb BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 3 , 1 10 0 0 0 0 1 +only one only o on onl only BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 3 no 0 9 0 0 0 0 1 +request. If request. r re req requ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 3 . 1 9 0 0 0 0 1 +the intended the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 3 , 1 8 0 0 0 0 1 +EXCHANGE_ID specifying exchange_id E EX EXC EXCH BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 6 3 . 1 7 0 0 0 0 1 +If a if I If If If BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 5 . 1 9 0 0 0 0 1 +data server, data d da dat data BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 5 ,. 2 9 0 0 0 0 1 +not yet not n no not not BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 5 no 0 7 0 0 0 0 1 +EXCHGID4_FLAG_USE_PNFS_DS flag exchgid4_flag_use_pnfs_ds E EX EXC EXCH BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 5 , 1 9 0 0 0 0 1 +the client the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 5 , 1 10 0 0 0 0 1 +same co_ownerid same s sa sam same BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 5 , 1 8 0 0 0 0 1 +EXCHGID4_FLAG_USE_PNFS_DS flag exchgid4_flag_use_pnfs_ds E EX EXC EXCH BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 5 .' 2 9 0 0 0 0 1 +EXCHANGE_ID results exchange_id E EX EXC EXCH BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 6 5 , 1 9 0 0 0 0 1 +client may client c cl cli clie BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 5 no 0 9 0 0 0 0 1 +pNFS data pnfs p pN pNF pNFS BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 5 . 1 9 0 0 0 0 1 +no relationship no n no no no BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 5 no 0 9 0 0 0 0 1 +unless the unless u un unl unle BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 5 , 1 9 0 0 0 0 1 +scopes of scopes s sc sco scop BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 5 . 1 8 0 0 0 0 1 +In NFSv4.1, in I In In In BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 6 8 ., 2 9 0 0 0 0 1 +client ID, client c cl cli clie BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 8 , 1 9 0 0 0 0 1 +stateid to stateid s st sta stat BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 8 /., 3 9 0 0 0 0 1 +is presented is i is is is BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 8 , 1 9 0 0 0 0 1 +the stateid the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 8 , 1 9 0 0 0 0 1 +because the because b be bec beca BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 8 no 0 10 0 0 0 0 1 +the client the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 8 , 1 9 0 0 0 0 1 +to determine to t to to to BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 8 , 1 9 0 0 0 0 1 +thus has thus t th thu thus BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 8 . 1 9 0 0 0 0 1 +for pNFS for f fo for for BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 8 / 1 9 0 0 0 0 1 +information in information i in inf info BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 8 . 1 10 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 6 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 11 , 1 10 0 0 0 0 0 +[Page 330] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 6 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 6 0 no 0 4 0 0 0 0 1 +If metadata if I If If If BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 0 / 1 9 0 0 0 0 1 +data server data d da dat data BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 0 , 1 8 0 0 0 0 1 +location changes, location l lo loc loca BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 0 , 1 10 0 0 0 0 1 +invalid (stale), invalid i in inv inva BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 0 (), 3 9 0 0 0 0 1 +layouts. Invalidating layouts. l la lay layo BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 0 . 1 9 0 0 0 0 1 +NFS client's nfs N NF NFS NFS BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 6 0 '.' 3 9 0 0 0 0 1 +data server data d da dat data BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 0 , 1 8 0 0 0 0 1 +metadata server metadata m me met meta BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 0 . 1 6 0 0 0 0 1 +If a if I If If If BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 2 , 1 9 0 0 0 0 1 +might need might m mi mig migh BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 2 no 0 9 0 0 0 0 1 +the metadata the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 2 . 1 10 0 0 0 0 1 +It is it I It It It BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 2 no 0 10 0 0 0 0 1 +LAYOUTGET operation layoutget L LA LAY LAYO BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 6 2 no 0 9 0 0 0 0 1 +returned by returned r re ret retu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 2 . 1 5 0 0 0 0 1 +Another scenario another A An Ano Anot BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 3 no 0 10 0 0 0 0 1 +be distinct be b be be be BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 3 ', 2 9 0 0 0 0 1 +from another from f fr fro from BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 3 '., 3 9 0 0 0 0 1 +file system file f fi fil file BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 3 , 1 9 0 0 0 0 1 +server to server s se ser serv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 3 .. 2 9 0 0 0 0 1 +protocol, then protocol, p pr pro prot BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 3 , 1 9 0 0 0 0 1 +according to according a ac acc acco BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 3 . 1 5 0 0 0 0 1 +13.1.1. Sessions 13.1.1. 1 13 13. 13.1 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 5 ... 3 10 0 0 0 0 1 +Section 2.10.11.2 section S Se Sec Sect BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 6 ... 3 9 0 0 0 0 1 +in order in i in in in BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 6 6 . 1 9 0 0 0 0 1 +the reply the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 6 no 0 9 0 0 0 0 1 +set, then set, s se set set, BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 6 ,(.) 4 9 0 0 0 0 1 +determine the determine d de det dete BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 6 ' 1 10 0 0 0 0 1 +not be not n no not not BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 6 ., 2 8 0 0 0 0 1 +receives a receives r re rec rece BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 6 no 0 10 0 0 0 0 1 +EXCHGID4_FLAG_USE_PNFS_DS role, exchgid4_flag_use_pnfs_ds E EX EXC EXCH BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 6 , 1 9 0 0 0 0 1 +lease_time attribute lease_time l le lea leas BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 6 no 0 9 0 0 0 0 1 +layout applies layout l la lay layo BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 6 ., 2 9 0 0 0 0 1 +aware of aware a aw awa awar BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 6 no 0 9 0 0 0 0 1 +servers for servers s se ser serv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 6 /, 2 10 0 0 0 0 1 +all such all a al all all BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 6 no 0 9 0 0 0 0 1 +and sessions and a an and and BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 6 . 1 4 0 0 0 0 1 +For example, for F Fo For For BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 10 , 1 10 0 0 0 0 1 +seconds, and seconds, s se sec seco BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 10 , 1 9 0 0 0 0 1 +10 seconds, 10 1 10 10 10 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 0 0 0 0 0 0 0 0 6 10 , 1 9 0 0 0 0 1 +EXCHGID4_FLAG_USE_PNFS_DS-only data exchgid4_flag_use_pnfs_ds-only E EX EXC EXCH BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 10 -, 2 9 0 0 0 0 1 +renew a renew r re ren rene BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 10 ' 1 8 0 0 0 0 1 +operations on operations o op ope oper BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 6 10 . 1 9 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 6 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 11 , 1 10 0 0 0 0 0 +[Page 331] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 6 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 6 0 no 0 4 0 0 0 0 1 +13.2. File 13.2. 1 13 13. 13.2 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 0 .. 2 10 0 0 0 0 1 +The following the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 0 no 0 10 0 0 0 0 1 +type and type t ty typ type BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 0 . 1 7 0 0 0 0 1 +Unit. A unit. U Un Uni Unit BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 1 .- 2 10 0 0 0 0 1 +server. server. server. s se ser serv BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 1 . 1 1 0 0 0 0 1 +Pattern. A pattern. P Pa Pat Patt BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 1 . 1 10 0 0 0 0 1 +sized units sized s si siz size BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 1 . 1 9 0 0 0 0 1 +one or one o on one one BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 1 . 1 2 0 0 0 0 1 +Stripe. A stripe. S St Str Stri BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 2 . 1 10 0 0 0 0 1 +servers in servers s se ser serv BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 2 . 1 7 0 0 0 0 1 +Stripe Count. stripe S St Str Stri BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 3 .. 2 10 0 0 0 0 1 +Stripe Width. stripe S St Str Stri BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 4 .. 2 10 0 0 0 0 1 +stripe width stripe s st str stri BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 4 *. 2 9 0 0 0 0 1 +Hereafter, this hereafter, H He Her Here BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 5 , 1 10 0 0 0 0 1 +pattern as pattern p pa pat patt BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 5 "". 3 4 0 0 0 0 1 +A pattern a A A A A BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 1 0 0 0 0 0 6 6 ., 2 9 0 0 0 0 1 +data servers data d da dat data BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 6 . 1 9 0 0 0 0 1 +server that server s se ser serv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 6 no 0 10 0 0 0 0 1 +in a in i in in in BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 6 6 (, 2 9 0 0 0 0 1 +possibly assign possibly p po pos poss BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 6 ). 2 8 0 0 0 0 1 +13.3. File 13.3. 1 13 13. 13.3 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 8 .. 2 10 0 0 0 0 1 +The high the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 8 ., 2 10 0 0 0 0 1 +nfsv4_1_file_layout_ds_addr4, and nfsv4_1_file_layout_ds_addr4, n nf nfs nfsv BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 8 ,. 2 8 0 0 0 0 1 +The SETATTR the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 9 no 0 8 0 0 0 0 1 +(Section 5.12.4). (section ( (S (Se (Sec BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 9 (..).( 6 9 0 0 0 0 1 +layouthint4) with layouthint4) l la lay layo BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 9 )( 2 9 0 0 0 0 1 +loh_type field), loh_type l lo loh loh_ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 9 ), 2 10 0 0 0 0 1 +nfsv4_1_file_layouthint4. nfsv4_1_file_layouthint4. nfsv4_1_file_layouthint4. n nf nfs nfsv BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 9 . 1 3 0 0 0 0 1 +const NFL4_UFLG_MASK const c co con cons BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 10 no 0 4 0 0 0 0 1 += 0x0000003F; = = = = = BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 10 ; 1 3 0 0 0 0 1 +const NFL4_UFLG_DENSE const c co con cons BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 10 no 0 4 0 0 0 0 1 += 0x00000001; = = = = = BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 10 ; 1 3 0 0 0 0 1 +const NFL4_UFLG_COMMIT_THRU_MDS const c co con cons BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 10 ; 1 10 0 0 0 0 1 +const NFL4_UFLG_STRIPE_UNIT_SIZE_MASK const c co con cons BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 10 no 0 8 0 0 0 0 1 += 0xFFFFFFC0; = = = = = BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 10 ; 1 3 0 0 0 0 1 +typedef uint32_t typedef t ty typ type BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 11 ; 1 10 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 6 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 11 , 1 10 0 0 0 0 0 +[Page 332] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 6 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 6 0 no 0 4 0 0 0 0 1 +enum filelayout_hint_care4 enum e en enu enum BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 0 no 0 10 0 0 0 0 1 +NFLH4_CARE_DENSE NFLH4_CARE_DENSE nflh4_care_dense N NF NFL NFLH BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 0 no 0 5 0 0 0 0 1 += NFL4_UFLG_DENSE, = = = = = BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 0 , 1 6 0 0 0 0 1 +NFLH4_CARE_COMMIT_THRU_MDS NFLH4_CARE_COMMIT_THRU_MDS nflh4_care_commit_thru_mds N NF NFL NFLH BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 0 no 0 9 0 0 0 0 1 += NFL4_UFLG_COMMIT_THRU_MDS, = = = = = BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 0 , 1 10 0 0 0 0 1 +NFLH4_CARE_STRIPE_UNIT_SIZE NFLH4_CARE_STRIPE_UNIT_SIZE nflh4_care_stripe_unit_size N NF NFL NFLH BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 0 no 0 10 0 0 0 0 1 += 0x00000040, = = = = = BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 0 , 1 5 0 0 0 0 1 +NFLH4_CARE_STRIPE_COUNT = nflh4_care_stripe_count N NF NFL NFLH BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 0 no 0 10 0 0 0 0 1 +}; }; }; } }; }; }; BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 6 0 ; 1 0 0 0 0 0 1 +/* Encoded /* / /* /* /* BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 6 1 /*:*/ 5 10 0 0 0 0 1 +struct nfsv4_1_file_layouthint4 struct s st str stru BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 1 no 0 10 0 0 0 0 1 +uint32_t uint32_t uint32_t u ui uin uint BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 1 no 0 2 0 0 0 0 1 +nflh_care; nflh_care; nflh_care; n nf nfl nflh BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 1 ; 1 3 0 0 0 0 1 +nfl_util4 nfl_util4 nfl_util4 n nf nfl nfl_ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 1 no 0 2 0 0 0 0 1 +nflh_util; nflh_util; nflh_util; n nf nfl nflh BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 1 ; 1 3 0 0 0 0 1 +count4 count4 count4 c co cou coun BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 1 no 0 2 0 0 0 0 1 +nflh_stripe_count; nflh_stripe_count; nflh_stripe_count; n nf nfl nflh BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 1 ; 1 5 0 0 0 0 1 +}; }; }; } }; }; }; BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 6 1 ; 1 0 0 0 0 0 1 +The generic the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 2 ... 3 9 0 0 0 0 1 +The client the T Th The The BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 2 (..) 4 9 0 0 0 0 1 +attribute to attribute a at att attr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 2 no 0 9 0 0 0 0 1 +newly created newly n ne new newl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 2 .-- 3 9 0 0 0 0 1 +content for content c co con cont BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 2 . 1 9 0 0 0 0 1 +field, nflh_care, field, f fi fie fiel BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 2 ,, 2 9 0 0 0 0 1 +hint the hint h hi hin hint BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 2 ., 2 9 0 0 0 0 1 +then the then t th the then BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 2 ,, 2 8 0 0 0 0 1 +preference for preference p pr pre pref BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 2 (..), 5 10 0 0 0 0 1 +controlled by controlled c co con cont BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 2 no 0 10 0 0 0 0 1 +("&" represents ("&" ( (" ("& ("&" BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 6 2 (""). 5 7 0 0 0 0 1 +NFLH4_CARE_COMMIT_THRU_MDS flag nflh4_care_commit_thru_mds N NF NFL NFLH BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 2 , 1 9 0 0 0 0 1 +preference for preference p pr pre pref BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 2 no 0 9 0 0 0 0 1 +the metadata the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 2 (.), 4 8 0 0 0 0 1 +controlled by controlled c co con cont BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 2 . 1 9 0 0 0 0 1 +the NFLH4_CARE_STRIPE_UNIT_SIZE the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 2 , 1 10 0 0 0 0 1 +preferred stripe preferred p pr pre pref BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 2 , 1 8 0 0 0 0 1 +NFL4_UFLG_STRIPE_UNIT_SIZE_MASK (thus, nfl4_uflg_stripe_unit_size_mask N NF NFL NFL4 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 2 (, 2 10 0 0 0 0 1 +multiple of multiple m mu mul mult BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 2 ).. 3 9 0 0 0 0 1 +the NFLH4_CARE_STRIPE_COUNT the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 2 , 1 9 0 0 0 0 1 +third field, third t th thi thir BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 2 ,,. 3 9 0 0 0 0 1 +multiplied by multiplied m mu mul mult BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 2 . 1 8 0 0 0 0 1 +When LAYOUTGET when W Wh Whe When BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 10 ( 1 9 0 0 0 0 1 +the loc_type the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 10 ), 2 9 0 0 0 0 1 +the lo_content the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 10 no 0 7 0 0 0 0 1 +nfsv4_1_file_layout4. Among nfsv4_1_file_layout4. n nf nfs nfsv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 10 ., 2 9 0 0 0 0 1 +a storage a a a a a BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 1 0 0 0 0 0 6 10 (). 3 10 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 6 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 11 , 1 10 0 0 0 0 0 +[Page 333] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 6 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 6 0 no 0 4 0 0 0 0 1 +GETDEVICEINFO operation getdeviceinfo G GE GET GETD BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 6 0 no 0 10 0 0 0 0 1 +(type device_addr4). (type ( (t (ty (typ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 0 (). 3 9 0 0 0 0 1 +with a with w wi wit with BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 0 ( 1 9 0 0 0 0 1 +field), the field), f fi fie fiel BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 0 ), 2 8 0 0 0 0 1 +nfsv4_1_file_layout_ds_addr4. nfsv4_1_file_layout_ds_addr4. nfsv4_1_file_layout_ds_addr4. n nf nfs nfsv BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 0 . 1 4 0 0 0 0 1 +typedef netaddr4 typedef t ty typ type BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 2 ; 1 10 0 0 0 0 1 +/* /* /* / /* /* /* BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 6 2 /* 2 0 0 0 0 0 1 +* Encoded * * * * * BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 2 * 1 9 0 0 0 0 1 +* data * * * * * BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 2 *: 2 6 0 0 0 0 1 +*/ */ */ * */ */ */ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 6 2 */ 2 0 0 0 0 0 1 +struct nfsv4_1_file_layout_ds_addr4 struct s st str stru BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 2 no 0 8 0 0 0 0 1 +uint32_t uint32_t uint32_t u ui uin uint BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 2 no 0 2 0 0 0 0 1 +nflda_stripe_indices<>; nflda_stripe_indices<>; nflda_stripe_indices<>; n nf nfl nfld BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 2 ; 1 5 0 0 0 0 1 +multipath_list4 nflda_multipath_ds_list<>; multipath_list4 m mu mul mult BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 2 ; 1 10 0 0 0 0 1 +}; }; }; } }; }; }; BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 6 2 ; 1 0 0 0 0 0 1 +The nfsv4_1_file_layout_ds_addr4 the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 3 no 0 10 0 0 0 0 1 +address. It address. a ad add addr BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 3 .: 2 6 0 0 0 0 1 +1. nflda_multipath_ds_list: 1. 1 1. 1. 1. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 4 .:, 3 10 0 0 0 0 1 +each list each e ea eac each BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 4 , 1 8 0 0 0 0 1 +represents a represents r re rep repr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 4 no 0 9 0 0 0 0 1 +target of target t ta tar targ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 4 /(.). 5 9 0 0 0 0 1 +array might array a ar arr arra BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 4 . 1 6 0 0 0 0 1 +2. nflda_stripe_indices: 2. 2 2. 2. 2. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 7 .: 2 9 0 0 0 0 1 +nflda_multipath_ds_list. The nflda_multipath_ds_list. n nf nfl nfld BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 7 . 1 8 0 0 0 0 1 +nflda_stripe_indices MUST nflda_stripe_indices n nf nfl nfld BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 7 no 0 10 0 0 0 0 1 +nflda_multipath_ds_list. Each nflda_multipath_ds_list. n nf nfl nfld BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 7 . 1 10 0 0 0 0 1 +SHOULD be should S SH SHO SHOU BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 6 7 no 0 7 0 0 0 0 1 +nflda_stripe_indices. The nflda_stripe_indices. n nf nfl nfld BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 7 . 1 7 0 0 0 0 1 +nflda_stripe_indices is nflda_stripe_indices n nf nfl nfld BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 7 . 1 8 0 0 0 0 1 +/* /* /* / /* /* /* BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 6 9 /* 2 0 0 0 0 0 1 +* Encoded * * * * * BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 9 * 1 10 0 0 0 0 1 +* data * * * * * BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 9 *: 2 8 0 0 0 0 1 +*/ */ */ * */ */ */ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 6 9 */ 2 0 0 0 0 0 1 +struct nfsv4_1_file_layout4 struct s st str stru BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 9 no 0 8 0 0 0 0 1 +deviceid4 deviceid4 deviceid4 d de dev devi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 9 no 0 2 0 0 0 0 1 +nfl_deviceid; nfl_deviceid; nfl_deviceid; n nf nfl nfl_ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 9 ; 1 4 0 0 0 0 1 +nfl_util4 nfl_util4 nfl_util4 n nf nfl nfl_ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 9 no 0 2 0 0 0 0 1 +nfl_util; nfl_util; nfl_util; n nf nfl nfl_ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 9 ; 1 2 0 0 0 0 1 +uint32_t uint32_t uint32_t u ui uin uint BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 9 no 0 2 0 0 0 0 1 +nfl_first_stripe_index; nfl_first_stripe_index; nfl_first_stripe_index; n nf nfl nfl_ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 9 ; 1 6 0 0 0 0 1 +offset4 offset4 offset4 o of off offs BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 9 no 0 2 0 0 0 0 1 +nfl_pattern_offset; nfl_pattern_offset; nfl_pattern_offset; n nf nfl nfl_ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 9 ; 1 5 0 0 0 0 1 +nfs_fh4 nfs_fh4 nfs_fh4 n nf nfs nfs_ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 9 no 0 2 0 0 0 0 1 +nfl_fh_list<>; nfl_fh_list<>; nfl_fh_list<>; n nf nfl nfl_ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 9 ; 1 4 0 0 0 0 1 +}; }; }; } }; }; }; BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 6 9 ; 1 0 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 6 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 11 , 1 10 0 0 0 0 0 +[Page 334] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 6 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 6 0 no 0 4 0 0 0 0 1 +The nfsv4_1_file_layout4 the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 0 . 1 10 0 0 0 0 1 +composed of composed c co com comp BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 0 : 1 5 0 0 0 0 1 +1. nfl_deviceid: 1. 1 1. 1. 1. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 0 .: 2 10 0 0 0 0 1 +nfsv4_1_file_layout_ds_addr4. nfsv4_1_file_layout_ds_addr4. nfsv4_1_file_layout_ds_addr4. n nf nfs nfsv BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 0 . 1 5 0 0 0 0 1 +2. nfl_util: 2. 2 2. 2. 2. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 1 .: 2 7 0 0 0 0 1 +nfsv4_1_file_layouthint4, a nfsv4_1_file_layouthint4, n nf nfs nfsv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 1 , 1 9 0 0 0 0 1 +data on data d da dat data BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 1 , 1 10 0 0 0 0 1 +should send should s sh sho shou BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 1 no 0 9 0 0 0 0 1 +server, and server, s se ser serv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 1 ,. 2 9 0 0 0 0 1 +more overlapping more m mo mor more BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 1 , 1 8 0 0 0 0 1 +overlapping layout overlapping o ov ove over BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 1 . 1 5 0 0 0 0 1 +3. nfl_first_stripe_index: 3. 3 3. 3. 3. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 3 .: 2 10 0 0 0 0 1 +nflda_stripe_indices array nflda_stripe_indices n nf nfl nfld BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 3 . 1 5 0 0 0 0 1 +4. nfl_pattern_offset: 4. 4 4. 4. 4. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 4 .: 2 10 0 0 0 0 1 +file where file f fi fil file BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 4 . 1 9 0 0 0 0 1 +converting the converting c co con conv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 4 '/(.., 6 9 0 0 0 0 1 +offset in offset o of off offs BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 4 ()() 4 9 0 0 0 0 1 +system call system s sy sys syst BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 4 )( 2 8 0 0 0 0 1 +Section 13.4.1). section S Se Sec Sect BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 4 ..). 4 2 0 0 0 0 1 +If dense if I If If If BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 6 , 1 10 0 0 0 0 1 +to convert to t to to to BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 6 '/ 2 9 0 0 0 0 1 +file on file f fi fil file BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 6 no 0 9 0 0 0 0 1 +(see Section (see ( (s (se (see BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 6 (..). 5 3 0 0 0 0 1 +Note that note N No Not Note BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 7 . 1 10 0 0 0 0 1 +For example, for F Fo For For BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 7 ,, 2 9 0 0 0 0 1 +a layout a a a a a BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 1 0 0 0 0 0 6 7 no 0 9 0 0 0 0 1 +pattern start pattern p pa pat patt BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 7 . 1 4 0 0 0 0 1 +5. nfl_fh_list: 5. 5 5. 5. 5. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 8 .: 2 10 0 0 0 0 1 +data servers data d da dat data BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 8 no 0 8 0 0 0 0 1 +array. The array. a ar arr arra BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 8 . 1 9 0 0 0 0 1 +sparse or sparse s sp spa spar BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 8 . 1 5 0 0 0 0 1 +* If * * * * * BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 10 *, 2 10 0 0 0 0 1 +nfl_fh_list MUST nfl_fh_list n nf nfl nfl_ BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 10 : 1 6 0 0 0 0 1 ++ Zero. + + + + + BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 10 . 1 9 0 0 0 0 1 +server are server s se ser serv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 10 no 0 10 0 0 0 0 1 +operation from operation o op ope oper BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 10 . 1 6 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 6 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 11 , 1 10 0 0 0 0 0 +[Page 335] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 6 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 6 0 no 0 4 0 0 0 0 1 ++ One. + + + + + BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 0 . 1 10 0 0 0 0 1 +filehandle: what filehandle: f fi fil file BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 0 :[]. 4 8 0 0 0 0 1 ++ The + + + + + BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 1 . 1 10 0 0 0 0 1 +Thus, in thus, T Th Thu Thus BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 1 ,,/ 3 9 0 0 0 0 1 +data server data d da dat data BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 1 [], 3 10 0 0 0 0 1 +in nfl_fh_list[X] in i in in in BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 6 1 []. 3 5 0 0 0 0 1 +See the see S Se See See BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 6 2 ... 3 10 0 0 0 0 1 +* If * * * * * BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 2 *, 2 9 0 0 0 0 1 +nfl_fh_list MUST nfl_fh_list n nf nfl nfl_ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 2 no 0 9 0 0 0 0 1 +nflda_stripe_indices. Thus, nflda_stripe_indices. n nf nfl nfld BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 2 .,/ 3 9 0 0 0 0 1 +any data any a an any any BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 2 no 0 3 0 0 0 0 1 +nflda_multipath_ds_list[nflda_stripe_indices[Y]], the nflda_multipath_ds_list[nflda_stripe_indices[y]], n nf nfl nfld BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 2 [[]], 5 8 0 0 0 0 1 +filehandle in filehandle f fi fil file BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 2 []., 4 9 0 0 0 0 1 +time there time t ti tim time BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 2 ,(!), 5 8 0 0 0 0 1 +intersection of intersection i in int inte BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 2 no 0 2 0 0 0 0 1 +nflda_multipath_ds_list[nflda_stripe_indices[i]] and nflda_multipath_ds_list[nflda_stripe_indices[i]] n nf nfl nfld BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 2 [[]] 4 8 0 0 0 0 1 +nflda_multipath_ds_list[nflda_stripe_indices[j]] is nflda_multipath_ds_list[nflda_stripe_indices[j]] n nf nfl nfld BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 2 [[]], 5 10 0 0 0 0 1 +then nfl_fh_list[i] then t th the then BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 2 [][]. 5 9 0 0 0 0 1 +words, when words, w wo wor word BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 2 ,, 2 9 0 0 0 0 1 +appears in appears a ap app appe BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 2 , 1 9 0 0 0 0 1 +reference to reference r re ref refe BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 2 . 1 9 0 0 0 0 1 +Indeed, if indeed, I In Ind Inde BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 6 ,, 2 9 0 0 0 0 1 +by the by b by by by BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 6 no 0 9 0 0 0 0 1 +(either returned (either ( (e (ei (eit BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 6 (), 3 10 0 0 0 0 1 +a data a a a a a BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 1 0 0 0 0 0 6 6 no 0 9 0 0 0 0 1 +another unit another a an ano anot BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 6 , 1 9 0 0 0 0 1 +data server data d da dat data BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 6 . 1 7 0 0 0 0 1 +See the see S Se See See BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 6 8 ... 3 10 0 0 0 0 1 +The details the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 9 .. 2 10 0 0 0 0 1 +13.4. Interpreting 13.4. 1 13 13. 13.4 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 9 .. 2 10 0 0 0 0 1 +13.4.1. Determining 13.4.1. 1 13 13. 13.4 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 9 ... 3 10 0 0 0 0 1 +To find to T To To To BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 10 ' 1 9 0 0 0 0 1 +logical file logical l lo log logi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 10 ,.' 3 10 0 0 0 0 1 +stripe unit stripe s st str stri BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 10 (): 3 3 0 0 0 0 1 +relative_offset = relative_offset r re rel rela BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 11 -; 2 10 0 0 0 0 1 +SUi = sui S SU SUi SUi BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 6 11 (/); 4 9 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 6 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 11 , 1 10 0 0 0 0 0 +[Page 336] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 6 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 6 0 no 0 4 0 0 0 0 1 +13.4.2. Interpreting 13.4.2. 1 13 13. 13.4 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 0 ... 3 10 0 0 0 0 1 +When sparse when W Wh Whe When BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 1 , 1 9 0 0 0 0 1 +filehandle and filehandle f fi fil file BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 1 - 1 10 0 0 0 0 1 +unit i unit u un uni unit BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 1 (): 3 2 0 0 0 0 1 +stripe_count = stripe_count s st str stri BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 2 ; 1 10 0 0 0 0 1 +j = j j j j j BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 6 3 (); 3 10 0 0 0 0 1 +idx = idx i id idx idx BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 3 []; 3 10 0 0 0 0 1 +fh_count = fh_count f fh fh_ fh_c BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 3 ; 1 7 0 0 0 0 1 +ds_count = ds_count d ds ds_ ds_c BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 3 ; 1 10 0 0 0 0 1 +switch (fh_count) switch s sw swi swit BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 4 () 2 8 0 0 0 0 1 +case ds_count: case c ca cas case BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 6 4 : 1 6 0 0 0 0 1 +fh = fh f fh fh fh BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 4 []; 3 10 0 0 0 0 1 +break; break; break; b br bre brea BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 4 ; 1 3 0 0 0 0 1 +case 1: case c ca cas case BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 6 5 : 1 3 0 0 0 0 1 +fh = fh f fh fh fh BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 5 []; 3 10 0 0 0 0 1 +break; break; break; b br bre brea BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 5 ; 1 3 0 0 0 0 1 +case 0: case c ca cas case BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 6 5 : 1 2 0 0 0 0 1 +fh = fh f fh fh fh BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 5 ; 1 10 0 0 0 0 1 +break; break; break; b br bre brea BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 5 ; 1 2 0 0 0 0 1 +default: default: default: d de def defa BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 6 : 1 3 0 0 0 0 1 +throw a throw t th thr thro BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 6 ; 1 10 0 0 0 0 1 +break; break; break; b br bre brea BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 6 ; 1 2 0 0 0 0 1 +} } } } } } } BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 6 no 0 0 0 0 0 0 1 +address_list = address_list a ad add addr BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 7 []; 3 10 0 0 0 0 1 +The client the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 7 , 1 9 0 0 0 0 1 +send a send s se sen send BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 7 . 1 10 0 0 0 0 1 +Consider the consider C Co Con Cons BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 8 : 1 10 0 0 0 0 1 +Suppose we suppose S Su Sup Supp BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 8 , 1 10 0 0 0 0 1 +arranged in arranged a ar arr arra BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 8 (.): 4 8 0 0 0 0 1 +{ A, { { { { { BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 10 ,,,,,, 6 10 0 0 0 0 1 +where A where w wh whe wher BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 10 . 1 10 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 6 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 11 , 1 10 0 0 0 0 0 +[Page 337] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 6 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 6 0 no 0 4 0 0 0 0 1 +Then Then then T Th The Then BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 0 no 0 10 0 0 0 0 1 +nflda_multipath_ds_list<> = nflda_multipath_ds_list<> n nf nfl nfld BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 0 ,,,,,, 6 10 0 0 0 0 1 +i.e., i.e., i.e., i i. i.e i.e. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 1 .., 3 10 0 0 0 0 1 +nflda_multipath_ds_list[0] = nflda_multipath_ds_list[0] n nf nfl nfld BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 1 [],,, 5 10 0 0 0 0 1 +nflda_multipath_ds_list[1] = nflda_multipath_ds_list[1] n nf nfl nfld BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 2 [] 2 10 0 0 0 0 1 +nflda_multipath_ds_list[2] = nflda_multipath_ds_list[2] n nf nfl nfld BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 3 [], 3 10 0 0 0 0 1 +Suppose the suppose S Su Sup Supp BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 3 : 1 10 0 0 0 0 1 +nflda_stripe_indices<> = nflda_stripe_indices<> n nf nfl nfld BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 3 ,,, 3 10 0 0 0 0 1 +Now suppose now N No Now Now BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 4 no 0 10 0 0 0 0 1 +to the to t to to to BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 4 . 1 8 0 0 0 0 1 +nfl_first_stripe_index = nfl_first_stripe_index n nf nfl nfl_ BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 5 , 1 10 0 0 0 0 1 +and the and a an and and BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 6 no 0 10 0 0 0 0 1 +nfl_fh_list = nfl_fh_list n nf nfl nfl_ BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 6 ,,. 3 10 0 0 0 0 1 +If the if I If If If BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 6 , 1 10 0 0 0 0 1 +address, filehandle address, a ad add addr BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 6 ,: 2 9 0 0 0 0 1 +nfl_first_stripe_index = nfl_first_stripe_index n nf nfl nfl_ BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 8 no 0 10 0 0 0 0 1 +So So so S So So So BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 6 8 no 0 10 0 0 0 0 1 +idx = idx i id idx idx BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 8 [()] 4 10 0 0 0 0 1 += nflda_stripe_indices[2] = = = = = BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 9 [] 2 10 0 0 0 0 1 += 1 = = = = = BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 9 no 0 10 0 0 0 0 1 +So So so S So So So BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 6 9 no 0 10 0 0 0 0 1 +nflda_multipath_ds_list[1] = nflda_multipath_ds_list[1] n nf nfl nfld BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 9 [] 2 10 0 0 0 0 1 +and and and a an and and BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 10 no 0 10 0 0 0 0 1 +nfl_fh_list[1] = nfl_fh_list[1] n nf nfl nfl_ BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 10 [] 2 10 0 0 0 0 1 +The client the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 10 ,. 2 10 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 6 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 11 , 1 10 0 0 0 0 0 +[Page 338] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 6 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 6 0 no 0 4 0 0 0 0 1 +The destinations the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 0 : 1 10 0 0 0 0 1 ++-----+------------+--------------+ +-----+------------+--------------+ +-----+------------+--------------+ + +- +-- +--- BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 6 0 ------------------------------- 31 10 0 0 0 0 1 +| SUi | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 0 no 0 10 0 0 0 0 1 ++-----+------------+--------------+ +-----+------------+--------------+ +-----+------------+--------------+ + +- +-- +--- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 6 0 ------------------------------- 31 10 0 0 0 0 1 +| 0 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 0 no 0 1 0 0 0 0 1 +| 87 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 0 no 0 1 0 0 0 0 1 +| E | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 0 no 0 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 0 no 0 0 0 0 0 0 1 +| 1 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 0 no 0 1 0 0 0 0 1 +| 36 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 0 no 0 1 0 0 0 0 1 +| A,B,C,D | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 0 ,,, 3 2 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 0 no 0 0 0 0 0 0 1 +| 2 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 0 no 0 1 0 0 0 0 1 +| 67 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 0 no 0 1 0 0 0 0 1 +| F,G | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 0 , 1 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 0 no 0 0 0 0 0 0 1 +| 3 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 0 no 0 1 0 0 0 0 1 +| 36 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 0 no 0 1 0 0 0 0 1 +| A,B,C,D | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 0 ,,, 3 2 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 0 no 0 0 0 0 0 0 1 +| 4 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 0 no 0 1 0 0 0 0 1 +| 87 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 0 no 0 1 0 0 0 0 1 +| E | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 0 no 0 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 0 no 0 0 0 0 0 0 1 +| 5 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 0 no 0 1 0 0 0 0 1 +| 36 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 0 no 0 1 0 0 0 0 1 +| A,B,C,D | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 0 ,,, 3 2 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 0 no 0 0 0 0 0 0 1 +| 6 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 0 no 0 1 0 0 0 0 1 +| 67 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 0 no 0 1 0 0 0 0 1 +| F,G | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 0 , 1 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 0 no 0 0 0 0 0 0 1 +| 7 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 0 no 0 1 0 0 0 0 1 +| 36 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 0 no 0 1 0 0 0 0 1 +| A,B,C,D | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 0 ,,, 3 2 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 0 no 0 0 0 0 0 0 1 +| 8 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 0 no 0 1 0 0 0 0 1 +| 87 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 0 no 0 1 0 0 0 0 1 +| E | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 0 no 0 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 0 no 0 0 0 0 0 0 1 +| 9 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 0 no 0 1 0 0 0 0 1 +| 36 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 0 no 0 1 0 0 0 0 1 +| A,B,C,D | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 0 ,,, 3 2 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 0 no 0 0 0 0 0 0 1 +| 10 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 0 no 0 2 0 0 0 0 1 +| F,G | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 0 , 1 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 0 no 0 0 0 0 0 0 1 +| 11 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 0 no 0 2 0 0 0 0 1 +| A,B,C,D | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 0 ,,, 3 2 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 0 no 0 0 0 0 0 0 1 +| 12 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 0 no 0 2 0 0 0 0 1 +| E | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 0 no 0 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 0 no 0 0 0 0 0 0 1 ++-----+------------+--------------+ +-----+------------+--------------+ +-----+------------+--------------+ + +- +-- +--- BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 6 0 ------------------------------- 31 10 0 0 0 0 1 +13.4.3. Interpreting 13.4.3. 1 13 13. 13.4 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 9 ... 3 10 0 0 0 0 1 +When dense when W Wh Whe When BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 10 , 1 9 0 0 0 0 1 +filehandle and filehandle f fi fil file BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 10 no 0 10 0 0 0 0 1 +unit i unit u un uni unit BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 10 (): 3 2 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 6 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 11 , 1 10 0 0 0 0 0 +[Page 339] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 6 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 6 0 no 0 4 0 0 0 0 1 +stripe_count = stripe_count s st str stri BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 0 ; 1 10 0 0 0 0 1 +j = j j j j j BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 6 0 (); 3 10 0 0 0 0 1 +idx = idx i id idx idx BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 1 []; 3 10 0 0 0 0 1 +fh_count = fh_count f fh fh_ fh_c BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 1 ; 1 7 0 0 0 0 1 +ds_count = ds_count d ds ds_ ds_c BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 1 ; 1 10 0 0 0 0 1 +switch (fh_count) switch s sw swi swit BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 2 () 2 9 0 0 0 0 1 +case stripe_count: case c ca cas case BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 6 2 : 1 9 0 0 0 0 1 +fh = fh f fh fh fh BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 2 []; 3 10 0 0 0 0 1 +break; break; break; b br bre brea BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 2 ; 1 3 0 0 0 0 1 +default: default: default: d de def defa BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 3 : 1 3 0 0 0 0 1 +throw a throw t th thr thro BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 3 ; 1 10 0 0 0 0 1 +break; break; break; b br bre brea BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 3 ; 1 2 0 0 0 0 1 +} } } } } } } BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 3 no 0 0 0 0 0 0 1 +address_list = address_list a ad add addr BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 3 []; 3 10 0 0 0 0 1 +The client the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 3 , 1 9 0 0 0 0 1 +send a send s se sen send BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 3 . 1 10 0 0 0 0 1 +Consider the consider C Co Con Cons BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 5 ( 1 10 0 0 0 0 1 +packing example, packing p pa pac pack BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 5 ,): 3 7 0 0 0 0 1 +Suppose we suppose S Su Sup Supp BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 6 , 1 10 0 0 0 0 1 +arranged in arranged a ar arr arra BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 6 (.): 4 8 0 0 0 0 1 +{ A, { { { { { BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 7 ,,,,,, 6 10 0 0 0 0 1 +where A where w wh whe wher BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 8 . 1 10 0 0 0 0 1 +Then Then then T Th The Then BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 8 no 0 10 0 0 0 0 1 +nflda_multipath_ds_list<> = nflda_multipath_ds_list<> n nf nfl nfld BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 8 ,,,,,, 6 10 0 0 0 0 1 +i.e., i.e., i.e., i i. i.e i.e. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 9 .., 3 10 0 0 0 0 1 +nflda_multipath_ds_list[0] = nflda_multipath_ds_list[0] n nf nfl nfld BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 9 [],,, 5 10 0 0 0 0 1 +nflda_multipath_ds_list[1] = nflda_multipath_ds_list[1] n nf nfl nfld BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 10 [] 2 10 0 0 0 0 1 +nflda_multipath_ds_list[2] = nflda_multipath_ds_list[2] n nf nfl nfld BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 10 [], 3 10 0 0 0 0 1 +Suppose the suppose S Su Sup Supp BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 11 : 1 10 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 6 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 11 , 1 10 0 0 0 0 0 +[Page 340] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 6 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 6 0 no 0 4 0 0 0 0 1 +nflda_stripe_indices<> = nflda_stripe_indices<> n nf nfl nfld BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 0 ,,, 3 10 0 0 0 0 1 +Now suppose now N No Now Now BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 0 no 0 10 0 0 0 0 1 +to the to t to to to BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 0 . 1 8 0 0 0 0 1 +nfl_first_stripe_index = nfl_first_stripe_index n nf nfl nfl_ BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 2 , 1 10 0 0 0 0 1 +and and and a an and and BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 2 no 0 10 0 0 0 0 1 +nfl_fh_list = nfl_fh_list n nf nfl nfl_ BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 2 ,,,. 4 10 0 0 0 0 1 +The interesting the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 2 no 0 9 0 0 0 0 1 +each stripe each e ea eac each BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 2 , 1 10 0 0 0 0 1 +unit MUST unit u un uni unit BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 2 . 1 9 0 0 0 0 1 +to SU1, to t to to to BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 2 ,, 2 10 0 0 0 0 1 +for SUi for f fo for for BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 2 : 1 3 0 0 0 0 1 +nfl_first_stripe_index = nfl_first_stripe_index n nf nfl nfl_ BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 5 no 0 10 0 0 0 0 1 +So So so S So So So BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 6 5 no 0 10 0 0 0 0 1 +j = j j j j j BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 6 5 () 2 10 0 0 0 0 1 +idx = idx i id idx idx BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 6 [] 2 10 0 0 0 0 1 += nflda_stripe_indices[3] = = = = = BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 6 [] 2 10 0 0 0 0 1 += 0 = = = = = BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 6 no 0 10 0 0 0 0 1 +So So so S So So So BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 6 6 no 0 10 0 0 0 0 1 +nflda_multipath_ds_list[0] = nflda_multipath_ds_list[0] n nf nfl nfld BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 6 [],,, 5 10 0 0 0 0 1 +and and and a an and and BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 7 no 0 10 0 0 0 0 1 +nfl_fh_list[3] = nfl_fh_list[3] n nf nfl nfl_ BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 7 [] 2 10 0 0 0 0 1 +The client the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 7 ,,,,. 5 10 0 0 0 0 1 +For SU3, for F Fo For For BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 8 ,(),[]. 7 10 0 0 0 0 1 +nflda_multipath_ds_list[0] = nflda_multipath_ds_list[0] n nf nfl nfld BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 8 [],,,,[] 8 9 0 0 0 0 1 +0x37. The 0x37. 0 0x 0x3 0x37 BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 8 .,,,,. 6 9 0 0 0 0 1 +The destinations the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 11 : 1 10 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 6 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 11 , 1 10 0 0 0 0 0 +[Page 341] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 6 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 6 0 no 0 4 0 0 0 0 1 ++-----+------------+--------------+ +-----+------------+--------------+ +-----+------------+--------------+ + +- +-- +--- BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 6 0 ------------------------------- 31 10 0 0 0 0 1 +| SUi | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 0 no 0 10 0 0 0 0 1 ++-----+------------+--------------+ +-----+------------+--------------+ +-----+------------+--------------+ + +- +-- +--- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 6 0 ------------------------------- 31 10 0 0 0 0 1 +| 0 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 0 no 0 1 0 0 0 0 1 +| 87 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 0 no 0 1 0 0 0 0 1 +| E | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 0 no 0 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 0 no 0 0 0 0 0 0 1 +| 1 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 0 no 0 1 0 0 0 0 1 +| 36 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 0 no 0 1 0 0 0 0 1 +| A,B,C,D | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 0 ,,, 3 2 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 0 no 0 0 0 0 0 0 1 +| 2 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 0 no 0 1 0 0 0 0 1 +| 67 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 0 no 0 1 0 0 0 0 1 +| F,G | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 0 , 1 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 0 no 0 0 0 0 0 0 1 +| 3 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 0 no 0 1 0 0 0 0 1 +| 37 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 0 no 0 1 0 0 0 0 1 +| A,B,C,D | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 0 ,,, 3 2 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 0 no 0 0 0 0 0 0 1 +| 4 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 0 no 0 1 0 0 0 0 1 +| 87 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 0 no 0 1 0 0 0 0 1 +| E | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 0 no 0 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 0 no 0 0 0 0 0 0 1 +| 5 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 0 no 0 1 0 0 0 0 1 +| 36 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 0 no 0 1 0 0 0 0 1 +| A,B,C,D | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 0 ,,, 3 2 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 0 no 0 0 0 0 0 0 1 +| 6 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 0 no 0 1 0 0 0 0 1 +| 67 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 0 no 0 1 0 0 0 0 1 +| F,G | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 0 , 1 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 0 no 0 0 0 0 0 0 1 +| 7 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 0 no 0 1 0 0 0 0 1 +| 37 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 0 no 0 1 0 0 0 0 1 +| A,B,C,D | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 0 ,,, 3 2 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 0 no 0 0 0 0 0 0 1 +| 8 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 0 no 0 1 0 0 0 0 1 +| 87 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 0 no 0 1 0 0 0 0 1 +| E | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 0 no 0 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 0 no 0 0 0 0 0 0 1 +| 9 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 0 no 0 1 0 0 0 0 1 +| 36 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 0 no 0 1 0 0 0 0 1 +| A,B,C,D | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 0 ,,, 3 2 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 0 no 0 0 0 0 0 0 1 +| 10 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 0 no 0 2 0 0 0 0 1 +| F,G | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 0 , 1 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 0 no 0 0 0 0 0 0 1 +| 11 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 0 no 0 2 0 0 0 0 1 +| A,B,C,D | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 0 ,,, 3 2 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 0 no 0 0 0 0 0 0 1 +| 12 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 0 no 0 2 0 0 0 0 1 +| E | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 0 no 0 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 0 no 0 0 0 0 0 0 1 ++-----+------------+--------------+ +-----+------------+--------------+ +-----+------------+--------------+ + +- +-- +--- BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 6 0 ------------------------------- 31 10 0 0 0 0 1 +13.4.4. Sparse 13.4.4. 1 13 13. 13.4 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 4 ... 3 10 0 0 0 0 1 +The flag the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 5 ( 1 10 0 0 0 0 1 +of the of o of of of BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 5 no 0 10 0 0 0 0 1 +type nfsv4_1_file_layout_ds_addr4) type t ty typ type BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 5 ) 1 9 0 0 0 0 1 +within the within w wi wit with BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 5 . 1 9 0 0 0 0 1 +data packings: data d da dat data BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 5 :. 2 9 0 0 0 0 1 +calculation that calculation c ca cal calc BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 5 - 1 9 0 0 0 0 1 +to the to t to to to BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 5 . 1 9 0 0 0 0 1 +If nfl_util if I If If If BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 6 , 1 10 0 0 0 0 1 +is being is i is is is BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 6 ., 2 9 0 0 0 0 1 +client sending client c cl cli clie BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 6 no 0 9 0 0 0 0 1 +the same the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 6 . 1 9 0 0 0 0 1 +The effect the T Th The The BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 6 , 1 9 0 0 0 0 1 +stripe units, stripe s st str stri BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 6 ,"". 4 9 0 0 0 0 1 +So for so S So So So BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 6 6 ,, 2 9 0 0 0 0 1 +the stripe the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 6 , 1 9 0 0 0 0 1 +in the in i in in in BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 6 6 ., 2 9 0 0 0 0 1 +units 0, units u un uni unit BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 6 ,,,,...;' 9 9 0 0 0 0 1 +units 1, units u un uni unit BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 6 ,,,,...;' 9 9 0 0 0 0 1 +stripe units stripe s st str stri BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 6 ,,,,.... 8 9 0 0 0 0 1 +each file each e ea eac each BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 6 ;, 2 9 0 0 0 0 1 +sparse. sparse. sparse. s sp spa spar BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 6 . 1 1 0 0 0 0 1 +If sparse if I If If If BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 11 / 1 10 0 0 0 0 1 +the holes, the t th the the BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 11 ,. 2 10 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 6 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 11 , 1 10 0 0 0 0 0 +[Page 342] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 6 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 6 0 no 0 4 0 0 0 0 1 +the above the t th the the BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 0 , 1 9 0 0 0 0 1 +operation for operation o op ope oper BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 0 , 1 8 0 0 0 0 1 +NFS4ERR_PNFS_IO_HOLE. Thus, nfs4err_pnfs_io_hole. N NF NFS NFS4 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 0 ., 2 10 0 0 0 0 1 +striping pattern striping s st str stri BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 0 . 1 8 0 0 0 0 1 +If nfl_util if I If If If BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 1 , 1 9 0 0 0 0 1 +is being is i is is is BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 1 ,. 2 8 0 0 0 0 1 +packing might packing p pa pac pack BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 1 no 0 8 0 0 0 0 1 +(efficiently) support (efficiently) ( (e (ef (eff BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 1 () 2 9 0 0 0 0 1 +recognize read-ahead recognize r re rec reco BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 1 -. 2 9 0 0 0 0 1 +indicated in indicated i in ind indi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 1 ,. 2 9 0 0 0 0 1 +same striping same s sa sam same BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 1 no 0 9 0 0 0 0 1 +sparse packing sparse s sp spa spar BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 1 , 1 10 0 0 0 0 1 +have all have h ha hav have BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 1 : 1 8 0 0 0 0 1 +o Logical o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 6 4 ,,,... 6 10 0 0 0 0 1 +units 0, units u un uni unit BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 4 ,,,.... 7 7 0 0 0 0 1 +o Logical o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 6 4 ,,,... 6 10 0 0 0 0 1 +units 0, units u un uni unit BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 4 ,,,.... 7 7 0 0 0 0 1 +o Logical o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 6 5 ,,,... 6 10 0 0 0 0 1 +units 0, units u un uni unit BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 5 ,,,.... 7 7 0 0 0 0 1 +Because dense because B Be Bec Beca BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 6 , 1 9 0 0 0 0 1 +pNFS client pnfs p pN pNF pNFS BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 6 no 0 10 0 0 0 0 1 +data server data d da dat data BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 6 ., 2 9 0 0 0 0 1 +file's striping file's f fi fil file BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 6 '. 2 3 0 0 0 0 1 +The calculation the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 7 no 0 10 0 0 0 0 1 +dense data dense d de den dens BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 7 : 1 4 0 0 0 0 1 +stripe_width = stripe_width s st str stri BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 8 *; 2 6 0 0 0 0 1 +where N where w wh whe wher BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 8 . 1 10 0 0 0 0 1 +relative_offset = relative_offset r re rel rela BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 8 -; 2 10 0 0 0 0 1 +data_file_offset = data_file_offset d da dat data BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 8 (/) 3 10 0 0 0 0 1 +* stripe_unit_size * * * * * BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 8 * 1 3 0 0 0 0 1 ++ relative_offset + + + + + BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 8 no 0 6 0 0 0 0 1 +If dense if I If If If BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 9 , 1 9 0 0 0 0 1 +once in once o on onc once BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 9 , 1 10 0 0 0 0 1 +another, the another, a an ano anot BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 9 ,.' 3 9 0 0 0 0 1 +suppose there suppose s su sup supp BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 9 .,, 3 10 0 0 0 0 1 +served by served s se ser serv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 9 ;,, 3 9 0 0 0 0 1 +data server data d da dat data BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 9 ;,, 3 9 0 0 0 0 1 +data server data d da dat data BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 9 .( 2 8 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 6 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 11 , 1 10 0 0 0 0 0 +[Page 343] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 6 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 6 0 no 0 4 0 0 0 0 1 +referring to referring r re ref refe BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 0 ),,, 4 9 0 0 0 0 1 +logical stripe logical l lo log logi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 0 no 0 9 0 0 0 0 1 +because both because b be bec beca BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 0 no 0 10 0 0 0 0 1 +(0) of (0) ( (0 (0) (0) BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 0 (). 3 3 0 0 0 0 1 +13.5. Data 13.5. 1 13 13. 13.5 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 1 .. 2 10 0 0 0 0 1 +The NFSv4.1 the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 1 . 1 10 0 0 0 0 1 +addresses. Data-server-level addresses. a ad add addr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 1 .-- 3 9 0 0 0 0 1 +scaling via scaling s sc sca scal BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 1 (..) 4 9 0 0 0 0 1 +use in use u us use use BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 1 -. 2 9 0 0 0 0 1 +client to client c cl cli clie BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 1 no 0 9 0 0 0 0 1 +another data another a an ano anot BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 1 , 1 9 0 0 0 0 1 +without having without w wi wit with BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 1 . 1 9 0 0 0 0 1 +To support to T To To To BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 3 , 1 8 0 0 0 0 1 +nflda_multipath_ds_list contains nflda_multipath_ds_list n nf nfl nfld BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 3 no 0 9 0 0 0 0 1 +network addresses. network n ne net netw BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 6 3 .() 3 10 0 0 0 0 1 +a list a a a a a BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 1 0 0 0 0 0 6 3 (), 3 9 0 0 0 0 1 +the possibility the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 3 no 0 9 0 0 0 0 1 +multiple times. multiple m mu mul mult BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 3 . 1 2 0 0 0 0 1 +The client the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 4 no 0 8 0 0 0 0 1 +destination to destination d de des dest BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 4 . 1 9 0 0 0 0 1 +are less are a ar are are BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 4 , 1 9 0 0 0 0 1 +NOT include not N NO NOT NOT BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 6 4 no 0 7 0 0 0 0 1 +nflda_multipath_ds_list. If nflda_multipath_ds_list. n nf nfl nfld BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 4 . 1 9 0 0 0 0 1 +provide failover, provide p pr pro prov BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 4 , 1 10 0 0 0 0 1 +provide them provide p pr pro prov BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 4 ----, 5 10 0 0 0 0 1 +a replacement a a a a a BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 1 0 0 0 0 0 6 4 . 1 9 0 0 0 0 1 +an element an a an an an BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 6 4 , 1 9 0 0 0 0 1 +GETDEVICEINFO to getdeviceinfo G GE GET GETD BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 6 4 ---- 4 9 0 0 0 0 1 +address mappings. address a ad add addr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 4 . 1 8 0 0 0 0 1 +represented by represented r re rep repr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 4 , 1 10 0 0 0 0 1 +the MDS the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 4 ( 1 10 0 0 0 0 1 +it wants it i it it it BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 4 ) 1 9 0 0 0 0 1 +the device-ID-to-device-address the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 4 ---- 4 9 0 0 0 0 1 +servers. If servers. s se ser serv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 4 ., 2 9 0 0 0 0 1 +recall all recall r re rec reca BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 4 , 1 9 0 0 0 0 1 +get new get g ge get get BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 4 no 0 8 0 0 0 0 1 +GETDEVICEINFO. GETDEVICEINFO. getdeviceinfo. G GE GET GETD BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 6 4 . 1 2 0 0 0 0 1 +Generally, if generally, G Ge Gen Gene BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 9 , 1 8 0 0 0 0 1 +nflda_multipath_ds_list, they nflda_multipath_ds_list, n nf nfl nfld BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 9 ,, 2 9 0 0 0 0 1 +and the and a an and and BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 9 no 0 10 0 0 0 0 1 +client ID client c cl cli clie BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 9 () 2 10 0 0 0 0 1 +in Section in i in in in BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 6 9 ... 3 10 0 0 0 0 1 +server owner server s se ser serv BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 9 . 1 9 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 6 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 11 , 1 10 0 0 0 0 0 +[Page 344] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 6 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 6 0 no 0 4 0 0 0 0 1 +necessary for necessary n ne nec nece BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 0 no 0 10 0 0 0 0 1 +server with server s se ser serv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 0 ., 2 9 0 0 0 0 1 +read-only, and read-only, r re rea read BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 0 -,. 3 7 0 0 0 0 1 +13.6. Operations 13.6. 1 13 13. 13.6 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 1 ... 3 10 0 0 0 0 1 +Clients accessing clients C Cl Cli Clie BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 1 . 1 9 0 0 0 0 1 +NULL procedure null N NU NUL NULL BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 1 1 0 0 0 0 0 6 1 no 0 9 0 0 0 0 1 +only from only o on onl only BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 1 no 0 9 0 0 0 0 1 +NFSv4.1 operations. nfsv4.1 N NF NFS NFSv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 1 .. 2 10 0 0 0 0 1 +layout when layout l la lay layo BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 1 .. 2 7 0 0 0 0 1 +The first the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 2 no 0 8 0 0 0 0 1 +operations. This operations. o op ope oper BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 2 ., 2 8 0 0 0 0 1 +BIND_CONN_TO_SESSION, CREATE_SESSION, bind_conn_to_session, B BI BIN BIND BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 6 2 ,,, 3 8 0 0 0 0 1 +DESTROY_SESSION, EXCHANGE_ID, destroy_session, D DE DES DEST BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 6 2 ,,,, 4 10 0 0 0 0 1 +operations. The operations. o op ope oper BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 2 . 1 9 0 0 0 0 1 +and maintain and a an and and BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 2 ,, 2 9 0 0 0 0 1 +contexts involved contexts c co con cont BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 2 ., 2 10 0 0 0 0 1 +these will these t th the thes BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 2 -. 2 9 0 0 0 0 1 +The second the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 4 ,,,. 4 9 0 0 0 0 1 +operations MUST operations o op ope oper BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 6 4 no 0 9 0 0 0 0 1 +layout. In layout. l la lay layo BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 4 ., 2 10 0 0 0 0 1 +taken from taken t ta tak take BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 4 ., 2 9 0 0 0 0 1 +data-server I/O data-server d da dat data BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 4 -/..., 6 10 0 0 0 0 1 +MUST NOT must M MU MUS MUST BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 6 4 / 1 9 0 0 0 0 1 +valid layout; valid v va val vali BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 4 ;/. 3 7 0 0 0 0 1 +Unless the unless U Un Unl Unle BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 7 ---- 4 9 0 0 0 0 1 +i.e., EXCHANGE_ID i.e., i i. i.e i.e. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 7 ..,( 4 9 0 0 0 0 1 +EXCHGID4_FLAG_USE_PNFS_MDS) or exchgid4_flag_use_pnfs_mds) E EX EXC EXCH BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 7 )( 2 8 0 0 0 0 1 +EXCHGID4_FLAG_USE_NON_PNFS) see exchgid4_flag_use_non_pnfs) E EX EXC EXCH BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 7 ).-- 4 10 0 0 0 0 1 +operations against operations o op ope oper BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 6 7 no 0 9 0 0 0 0 1 +two subsets two t tw two two BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 7 . 1 8 0 0 0 0 1 +When the when W Wh Whe When BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 8 --- 3 9 0 0 0 0 1 +personalities, each personalities, p pe per pers BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 8 , 1 9 0 0 0 0 1 +so that so s so so so BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 6 8 , 1 9 0 0 0 0 1 +MUST NOT must M MU MUS MUST BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 6 8 . 1 10 0 0 0 0 1 +The server the T Th The The BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 8 ., 2 8 0 0 0 0 1 +operations within operations o op ope oper BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 6 8 no 0 9 0 0 0 0 1 +classes: classes: classes: c cl cla clas BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 8 : 1 1 0 0 0 0 1 +1. An 1. 1 1. 1. 1. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 10 . 1 9 0 0 0 0 1 +assignment. This assignment. a as ass assi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 10 .- 2 9 0 0 0 0 1 +operations. Additionally, operations. o op ope oper BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 10 ., 2 9 0 0 0 0 1 +so that so s so so so BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 6 10 no 0 10 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 6 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 11 , 1 10 0 0 0 0 0 +[Page 345] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 6 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 6 0 no 0 4 0 0 0 0 1 +by the by b by by by BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 0 , 1 10 0 0 0 0 1 +within this within w wi wit with BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 0 ,. 2 9 0 0 0 0 1 +is that is i is is is BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 0 no 0 10 0 0 0 0 1 +a data-server a a a a a BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 1 0 0 0 0 0 6 0 -(.., 5 10 0 0 0 0 1 +has a has h ha has has BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 0 -"",..), 8 9 0 0 0 0 1 +is in is i is is is BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 0 ,. 2 8 0 0 0 0 1 +multiple class multiple m mu mul mult BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 0 () 2 9 0 0 0 0 1 +MAY be may M MA MAY MAY BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 1 1 0 0 1 0 0 6 0 no 0 9 0 0 0 0 1 +non-data-server personalities. non-data-server n no non non- BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 0 --. 3 4 0 0 0 0 1 +2. An 2. 2 2. 2. 2. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 2 .- 2 10 0 0 0 0 1 +personality. This personality. p pe per pers BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 2 .-/ 3 9 0 0 0 0 1 +filehandle is filehandle f fi fil file BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 2 - 1 9 0 0 0 0 1 +server personality. server s se ser serv BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 2 . 1 2 0 0 0 0 1 +3. An 3. 3 3. 3. 3. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 3 .-- 3 9 0 0 0 0 1 +server personality. server s se ser serv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 3 . 1 9 0 0 0 0 1 +are neither are a ar are are BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 3 --/ 3 8 0 0 0 0 1 +operations, plus operations, o op ope oper BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 3 ,-/ 3 9 0 0 0 0 1 +(or the (or ( (o (or (or BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 3 () 2 9 0 0 0 0 1 +only valid only o on onl only BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 3 no 0 10 0 0 0 0 1 +is incompatible is i is is is BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 3 ,.., 4 9 0 0 0 0 1 +or has or o or or or BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 3 -. 2 4 0 0 0 0 1 +When a when W Wh Whe When BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 5 , 1 9 0 0 0 0 1 +acts as acts a ac act acts BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 5 ,- 2 9 0 0 0 0 1 +personality ceases personality p pe per pers BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 5 . 1 10 0 0 0 0 1 +on the on o on on on BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 5 no 0 9 0 0 0 0 1 +server. When server. s se ser serv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 5 ., 2 9 0 0 0 0 1 +are not are a ar are are BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 5 ., 2 9 0 0 0 0 1 +NFS4ERR_BADHANDLE MUST nfs4err_badhandle N NF NFS NFS4 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 5 ., 2 9 0 0 0 0 1 +other operations other o ot oth othe BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 5 no 0 9 0 0 0 0 1 +are not are a ar are are BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 5 . 1 9 0 0 0 0 1 +result in result r re res resu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 5 . 1 3 0 0 0 0 1 +When a when W Wh Whe When BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 8 , 1 10 0 0 0 0 1 +be PUTFH be b be be be BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 8 , 1 9 0 0 0 0 1 +henceforth is henceforth h he hen henc BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 8 - 1 8 0 0 0 0 1 +personality. Operations personality. p pe per pers BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 8 . 1 9 0 0 0 0 1 +result in result r re res resu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 8 . 1 9 0 0 0 0 1 +of the of o of of of BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 8 ,/ 2 8 0 0 0 0 1 +NFS4ERR_STALE even nfs4err_stale N NF NFS NFS4 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 8 no 0 9 0 0 0 0 1 +to the to t to to to BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 8 --. 3 9 0 0 0 0 1 +the data the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 8 no 0 9 0 0 0 0 1 +non-zero seqid non-zero n no non non- BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 8 -. 2 8 0 0 0 0 1 +Until the until U Un Unt Unti BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 11 , 1 10 0 0 0 0 1 +the client the t th the the BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 11 no 0 9 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 6 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 11 , 1 10 0 0 0 0 0 +[Page 346] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 6 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 6 0 no 0 4 0 0 0 0 1 +the data-server the t th the the BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 0 ---. 4 9 0 0 0 0 1 +pick one pick p pi pic pick BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 0 , 1 10 0 0 0 0 1 +possible transition possible p po pos poss BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 0 no 0 9 0 0 0 0 1 +class 2 class c cl cla clas BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 0 . 1 4 0 0 0 0 1 +Because of because B Be Bec Beca BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 1 no 0 9 0 0 0 0 1 +can be can c ca can can BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 1 , 1 9 0 0 0 0 1 +RECOMMENDED that recommended R RE REC RECO BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 6 1 , 1 9 0 0 0 0 1 +the server the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 1 . 1 10 0 0 0 0 1 +This makes this T Th Thi This BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 1 no 0 8 0 0 0 0 1 +intended. intended. intended. i in int inte BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 1 . 1 1 0 0 0 0 1 +GETATTR and getattr G GE GET GETA BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 6 2 . 1 9 0 0 0 0 1 +case of case c ca cas case BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 6 2 , 1 9 0 0 0 0 1 +responsible for responsible r re res resp BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 2 / 1 9 0 0 0 0 1 +servers. In servers. s se ser serv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 2 ., 2 9 0 0 0 0 1 +new size new n ne new new BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 2 no 0 9 0 0 0 0 1 +has completed has h ha has has BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 2 (...).. 7 9 0 0 0 0 1 +mechanism by mechanism m me mec mech BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 2 - 1 10 0 0 0 0 1 +not reflect not n no not not BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 2 '. 2 5 0 0 0 0 1 +13.7. COMMIT 13.7. 1 13 13. 13.7 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 5 .. 2 10 0 0 0 0 1 +The file the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 5 no 0 9 0 0 0 0 1 +commit of commit c co com comm BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 5 . 1 7 0 0 0 0 1 +NFL4_UFLG_COMMIT_THRU_MDS in nfl4_uflg_commit_thru_mds N NF NFL NFL4 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 5 no 0 9 0 0 0 0 1 +(data type (data ( (d (da (dat BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 5 () 2 9 0 0 0 0 1 +server to server s se ser serv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 5 , 1 10 0 0 0 0 1 +by sending by b by by by BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 5 . 1 9 0 0 0 0 1 +These two these T Th The Thes BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 5 no 0 9 0 0 0 0 1 +styles of styles s st sty styl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 6 5 no 0 10 0 0 0 0 1 +type. type. type. t ty typ type BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 5 . 1 0 0 0 0 0 1 +o When o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 6 7 , 1 10 0 0 0 0 1 +data server data d da dat data BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 7 . 1 10 0 0 0 0 1 +This approach this T Th Thi This BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 7 no 0 8 0 0 0 0 1 +implemented within implemented i im imp impl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 7 (), 3 9 0 0 0 0 1 +with the with w wi wit with BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 7 no 0 9 0 0 0 0 1 +systems. systems. systems. s sy sys syst BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 7 . 1 1 0 0 0 0 1 +o When o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 6 9 , 1 9 0 0 0 0 1 +metadata server, metadata m me met meta BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 9 ,. 2 10 0 0 0 0 1 +approach is approach a ap app appr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 9 no 0 9 0 0 0 0 1 +within the within w wi wit with BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 9 no 0 9 0 0 0 0 1 +server. In server. s se ser serv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 9 ., 2 9 0 0 0 0 1 +server might server s se ser serv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 9 no 0 9 0 0 0 0 1 +detriment of detriment d de det detr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 9 . 1 9 0 0 0 0 1 +metadata server metadata m me met meta BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 9 no 0 8 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 6 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 11 , 1 10 0 0 0 0 0 +[Page 347] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 6 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 6 0 no 0 4 0 0 0 0 1 +clustered file clustered c cl clu clus BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 0 no 0 10 0 0 0 0 1 +COMMIT. COMMIT. commit. C CO COM COMM BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 6 0 . 1 1 0 0 0 0 1 +If nfl_util if I If If If BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 0 , 1 9 0 0 0 0 1 +maintain the maintain m ma mai main BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 0 ., 2 9 0 0 0 0 1 +servers MUST servers s se ser serv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 0 no 0 9 0 0 0 0 1 +responses for responses r re res resp BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 0 ,' 2 9 0 0 0 0 1 +COMMIT implementation commit C CO COM COMM BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 6 0 . 1 9 0 0 0 0 1 +of the of o of of of BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 0 no 0 9 0 0 0 0 1 +or any or o or or or BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 0 , 1 9 0 0 0 0 1 +there is there t th the ther BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 0 no 0 8 0 0 0 0 1 +uncommitted data. uncommitted u un unc unco BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 0 . 1 9 0 0 0 0 1 +for the for f fo for for BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 0 . 1 9 0 0 0 0 1 +server to server s se ser serv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 0 , 1 10 0 0 0 0 1 +is that is i is is is BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 0 no 0 10 0 0 0 0 1 +action. action. action. a ac act acti BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 0 . 1 1 0 0 0 0 1 +Note that note N No Not Note BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 3 , 1 10 0 0 0 0 1 +to a to t to to to BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 3 no 0 9 0 0 0 0 1 +COMMIT to commit C CO COM COMM BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 6 3 . 1 3 0 0 0 0 1 +The single the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 4 , 1 9 0 0 0 0 1 +the client the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 4 no 0 10 0 0 0 0 1 +fail the fail f fa fai fail BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 4 . 1 9 0 0 0 0 1 +the metadata the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 4 ,- 2 9 0 0 0 0 1 +the modified the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 4 . 1 9 0 0 0 0 1 +with a with w wi wit with BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 4 no 0 9 0 0 0 0 1 +resending the resending r re res rese BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 4 no 0 9 0 0 0 0 1 +path to path p pa pat path BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 4 . 1 7 0 0 0 0 1 +Alternatively, the alternatively, A Al Alt Alte BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 4 , 1 10 0 0 0 0 1 +the data the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 4 . 1 8 0 0 0 0 1 +NFL4_UFLG_COMMIT_THRU_MDS is nfl4_uflg_commit_thru_mds N NF NFL NFL4 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 4 , 1 9 0 0 0 0 1 +server might server s se ser serv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 4 . 1 9 0 0 0 0 1 +is FALSE, is i is is is BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 4 , 1 10 0 0 0 0 1 +commit data commit c co com comm BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 4 . 1 8 0 0 0 0 1 +Section 12.7.6 section S Se Sec Sect BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 4 ... 3 5 0 0 0 0 1 +13.8. The 13.8. 1 13 13. 13.8 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 8 .. 2 10 0 0 0 0 1 +The layout the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 9 no 0 9 0 0 0 0 1 +servicing NFSv4.1 servicing s se ser serv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 9 .-, 3 9 0 0 0 0 1 +it may it i it it it BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 9 ., 2 9 0 0 0 0 1 +reading from reading r re rea read BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 9 -, 2 9 0 0 0 0 1 +the server the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 9 ., 2 9 0 0 0 0 1 +the client the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 9 no 0 10 0 0 0 0 1 +the data. the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 9 .. 2 9 0 0 0 0 1 +The iomode the T Th The The BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 9 no 0 9 0 0 0 0 1 +perform I/O. perform p pe per perf BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 9 /., 3 9 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 6 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 11 , 1 10 0 0 0 0 0 +[Page 348] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 6 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 6 0 no 0 4 0 0 0 0 1 +the client the t th the the BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 0 no 0 10 0 0 0 0 1 +does not. does d do doe does BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 0 . 1 1 0 0 0 0 1 +13.9. Metadata 13.9. 1 13 13. 13.9 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 0 .. 2 10 0 0 0 0 1 +13.9.1. Global 13.9.1. 1 13 13. 13.9 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 0 ... 3 10 0 0 0 0 1 +When the when W Wh Whe When BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 1 /, 2 10 0 0 0 0 1 +be a be b be be be BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 1 no 0 8 0 0 0 0 1 +CB_LAYOUTRECALL. Permitted cb_layoutrecall. C CB CB_ CB_L BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 6 1 . 1 8 0 0 0 0 1 +following: an following: f fo fol foll BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 1 :( 2 10 0 0 0 0 1 +as returned as a as as as BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 1 ),( 3 10 0 0 0 0 1 +types open_read_delegation4 types t ty typ type BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 1 no 0 10 0 0 0 0 1 +OPEN or open O OP OPE OPEN BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 6 1 ,), 3 9 0 0 0 0 1 +returned by returned r re ret retu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 1 . 1 9 0 0 0 0 1 +data server data d da dat data BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 1 , 1 9 0 0 0 0 1 +most current most m mo mos most BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 1 , 1 9 0 0 0 0 1 +specific non-zero specific s sp spe spec BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 1 -. 2 9 0 0 0 0 1 +stateid values stateid s st sta stat BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 1 . 1 3 0 0 0 0 1 +The stateid the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 4 / 1 9 0 0 0 0 1 +the same the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 4 / 1 10 0 0 0 0 1 +performed on performed p pe per perf BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 4 . 1 9 0 0 0 0 1 +has the has h ha has has BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 4 no 0 9 0 0 0 0 1 +metadata and metadata m me met meta BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 4 . 1 9 0 0 0 0 1 +propagate changes propagate p pr pro prop BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 4 , 1 10 0 0 0 0 1 +the data the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 4 /. 2 8 0 0 0 0 1 +further in further f fu fur furt BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 4 ... 3 8 0 0 0 0 1 +propagated, the propagated, p pr pro prop BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 4 , 1 9 0 0 0 0 1 +act as act a ac act act BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 4 . 1 4 0 0 0 0 1 +Clients performing clients C Cl Cli Clie BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 8 / 1 9 0 0 0 0 1 +stateid based stateid s st sta stat BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 8 () 2 9 0 0 0 0 1 +the client the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 8 -/ 2 9 0 0 0 0 1 +requests. The requests. r re req requ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 8 . 1 9 0 0 0 0 1 +somewhat different somewhat s so som some BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 8 .., 3 10 0 0 0 0 1 +when accessing when w wh whe when BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 8 . 1 4 0 0 0 0 1 +The following the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 9 ,, 2 10 0 0 0 0 1 +the selection the t th the the BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 9 : 1 6 0 0 0 0 1 +o If o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 6 10 , 1 10 0 0 0 0 1 +delegation stateid delegation d de del dele BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 10 . 1 5 0 0 0 0 1 +o Otherwise, o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 6 10 ,- 2 10 0 0 0 0 1 +owner, and owner, o ow own owne BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 10 , 1 9 0 0 0 0 1 +used, unless used, u us use used BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 10 ,.. 3 8 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 6 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 11 , 1 10 0 0 0 0 0 +[Page 349] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 6 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 6 0 no 0 4 0 0 0 0 1 +o If o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 6 0 no 0 10 0 0 0 0 1 +use of use u us use use BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 0 ,- 2 9 0 0 0 0 1 +lock stateid lock l lo loc lock BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 6 0 no 0 8 0 0 0 0 1 +current lock-owner. current c cu cur curr BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 0 -. 2 2 0 0 0 0 1 +o Special o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 6 1 ., 2 10 0 0 0 0 1 +server MUST server s se ser serv BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 1 /. 2 9 0 0 0 0 1 +13.9.2. Data 13.9.2. 1 13 13. 13.9 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 1 ... 3 10 0 0 0 0 1 +Since the since S Si Sin Sinc BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 2 ,-- 3 9 0 0 0 0 1 +mode state mode m mo mod mode BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 2 ,- 2 9 0 0 0 0 1 +data servers data d da dat data BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 2 /, 2 8 0 0 0 0 1 +implementation MUST implementation i im imp impl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 2 no 0 10 0 0 0 0 1 +the data the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 2 . 1 8 0 0 0 0 1 +complete, the complete, c co com comp BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 2 , 1 9 0 0 0 0 1 +data servers. data d da dat data BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 2 ., 2 9 0 0 0 0 1 +immediately, although immediately, i im imm imme BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 2 ,. 2 9 0 0 0 0 1 +These state these T Th The Thes BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 2 no 0 9 0 0 0 0 1 +protocol, even protocol, p pr pro prot BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 2 , 1 10 0 0 0 0 1 +this specification. this t th thi this BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 2 . 1 9 0 0 0 0 1 +propagation of propagation p pr pro prop BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 2 (); 3 9 0 0 0 0 1 +the propagation the t th the the BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 2 . 1 9 0 0 0 0 1 +13.9.2.1. Lock 13.9.2.1. 1 13 13. 13.9 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 6 .... 4 10 0 0 0 0 1 +If the if I If If If BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 6 -, 2 8 0 0 0 0 1 +mandatory byte-range mandatory m ma man mand BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 6 - 1 9 0 0 0 0 1 +data servers data d da dat data BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 6 no 0 10 0 0 0 0 1 +caller. The caller. c ca cal call BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 6 .- 2 9 0 0 0 0 1 +lock state lock l lo loc lock BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 6 6 , 1 9 0 0 0 0 1 +though the though t th tho thou BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 6 no 0 10 0 0 0 0 1 +of the of o of of of BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 6 . 1 6 0 0 0 0 1 +On the on O On On On BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 8 ,- 2 9 0 0 0 0 1 +for checking for f fo for for BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 8 /, 2 9 0 0 0 0 1 +reason for reason r re rea reas BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 8 - 1 9 0 0 0 0 1 +servers. Since servers. s se ser serv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 8 . 1 9 0 0 0 0 1 +privileges, these privileges, p pr pri priv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 8 ,, 2 10 0 0 0 0 1 +not need not n no not not BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 8 . 1 9 0 0 0 0 1 +need only need n ne nee need BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 8 no 0 9 0 0 0 0 1 +question about question q qu que ques BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 8 .,- 3 9 0 0 0 0 1 +mandatory (i.e., mandatory m ma man mand BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 8 (..,) 5 9 0 0 0 0 1 +the byte-range the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 8 --/. 4 9 0 0 0 0 1 +OPEN are open O OP OPE OPEN BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 6 8 no 0 9 0 0 0 0 1 +propagation. propagation. propagation. p pr pro prop BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 8 . 1 1 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 6 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 11 , 1 10 0 0 0 0 0 +[Page 350] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 6 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 6 0 no 0 4 0 0 0 0 1 +If a if I If If If BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 0 , 1 9 0 0 0 0 1 +this is this t th thi this BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 0 -. 2 10 0 0 0 0 1 +The client the T Th The The BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 0 - 1 9 0 0 0 0 1 +covers the covers c co cov cove BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 0 -/ 2 9 0 0 0 0 1 +the byte-range the t th the the BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 0 -. 2 3 0 0 0 0 1 +13.9.2.2. Open 13.9.2.2. 1 13 13. 13.9 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 1 .... 4 10 0 0 0 0 1 +Open and open O Op Ope Open BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 1 no 0 9 0 0 0 0 1 +deny mode(s) deny d de den deny BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 6 1 (). 3 9 0 0 0 0 1 +deny mode deny d de den deny BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 6 1 (), 3 10 0 0 0 0 1 +the data the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 1 / 1 8 0 0 0 0 1 +performed on performed p pe per perf BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 1 ., 2 9 0 0 0 0 1 +server MUST server s se ser serv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 1 no 0 9 0 0 0 0 1 +because of because b be bec beca BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 1 , 1 9 0 0 0 0 1 +previous relaxation. previous p pr pre prev BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 1 . 1 3 0 0 0 0 1 +13.9.2.3. File 13.9.2.3. 1 13 13. 13.9 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 4 .... 4 10 0 0 0 0 1 +Since the since S Si Sin Sinc BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 4 no 0 9 0 0 0 0 1 +visible on visible v vi vis visi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 4 (..,), 6 9 0 0 0 0 1 +must be must m mu mus must BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 4 no 0 9 0 0 0 0 1 +data servers data d da dat data BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 4 , 1 10 0 0 0 0 1 +file. file. file. f fi fil file BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 4 . 1 0 0 0 0 0 1 +As described as A As As As BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 5 , 1 9 0 0 0 0 1 +that the that t th tha that BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 5 no 0 9 0 0 0 0 1 +servers. For servers. s se ser serv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 5 ..-, 4 8 0 0 0 0 1 +necessary to necessary n ne nec nece BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 5 -, 2 10 0 0 0 0 1 +setting of setting s se set sett BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 5 //... 5 8 0 0 0 0 1 +description of description d de des desc BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 5 no 0 9 0 0 0 0 1 +synchronization. It synchronization. s sy syn sync BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 5 ..- 3 9 0 0 0 0 1 +layout type, layout l la lay layo BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 5 , 1 8 0 0 0 0 1 +LAYOUTCOMMIT occurs. layoutcommit L LA LAY LAYO BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 6 5 ., 2 9 0 0 0 0 1 +to query to t to to to BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 5 . 1 7 0 0 0 0 1 +Any changes any A An Any Any BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 8 no 0 9 0 0 0 0 1 +as reflected as a as as as BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 8 no 0 9 0 0 0 0 1 +server, MUST server, s se ser serv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 8 , 1 9 0 0 0 0 1 +READ and read R RE REA READ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 1 1 0 0 0 0 0 6 8 /. 2 10 0 0 0 0 1 +result in result r re res resu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 8 , 1 9 0 0 0 0 1 +changes MUST changes c ch cha chan BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 6 8 . 1 8 0 0 0 0 1 +The OPEN the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 10 (..) 4 10 0 0 0 0 1 +that I/O that t th tha that BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 10 / 1 10 0 0 0 0 1 +OPEN itself open O OP OPE OPEN BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 6 10 ( 1 9 0 0 0 0 1 +EXCHANGE_ID creates exchange_id E EX EXC EXCH BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 6 10 ),' 3 9 0 0 0 0 1 +READ and read R RE REA READ BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 1 1 0 0 0 0 0 6 10 . 1 9 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 6 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 11 , 1 10 0 0 0 0 0 +[Page 351] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 6 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 6 0 no 0 4 0 0 0 0 1 +Changes to changes C Ch Cha Chan BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 6 0 no 0 10 0 0 0 0 1 +the server. the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 0 .- 2 9 0 0 0 0 1 +in ACLs in i in in in BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 6 0 no 0 10 0 0 0 0 1 +to determine to t to to to BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 0 no 0 9 0 0 0 0 1 +user specified user u us use user BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 6 0 . 1 9 0 0 0 0 1 +ACL updates, acl A AC ACL ACL BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 6 0 , 1 8 0 0 0 0 1 +synchronously. synchronously. synchronously. s sy syn sync BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 0 . 1 2 0 0 0 0 1 +13.10. Data 13.10. 1 13 13. 13.1 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 1 .. 2 10 0 0 0 0 1 +A potential a A A A A BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 1 0 0 0 0 0 6 2 no 0 10 0 0 0 0 1 +data server data d da dat data BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 2 ; 1 10 0 0 0 0 1 +sparse layouts. sparse s sp spa spar BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 2 .: 2 9 0 0 0 0 1 +new file new n ne new new BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 2 (); 3 10 0 0 0 0 1 +to the to t to to to BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 2 . 1 9 0 0 0 0 1 +receive zeroes receive r re rec rece BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 2 ., 2 8 0 0 0 0 1 +striping pattern striping s st str stri BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 2 no 0 10 0 0 0 0 1 +other than other o ot oth othe BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 2 ', 2 9 0 0 0 0 1 +data server data d da dat data BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 2 ' 1 9 0 0 0 0 1 +still 0 still s st sti stil BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 2 .,' 3 9 0 0 0 0 1 +contain zero contain c co con cont BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 2 . 1 9 0 0 0 0 1 +only return only o on onl only BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 2 ' 1 8 0 0 0 0 1 +extended. This extended. e ex ext exte BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 2 .' 2 9 0 0 0 0 1 +size to size s si siz size BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 2 ,. 2 8 0 0 0 0 1 +Therefore, the therefore, T Th The Ther BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 2 ,' 2 9 0 0 0 0 1 +size MUST size s si siz size BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 2 . 1 9 0 0 0 0 1 +offset in offset o of off offs BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 2 ' 1 10 0 0 0 0 1 +file size, file f fi fil file BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 2 ,/ 2 9 0 0 0 0 1 +bytes than bytes b by byt byte BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 2 , 1 9 0 0 0 0 1 +hole in hole h ho hol hole BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 2 , 1 9 0 0 0 0 1 +data. data. data. d da dat data BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 2 . 1 0 0 0 0 0 1 +The NFSv4.1 the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 8 .-- 3 9 0 0 0 0 1 +semantics; meaning semantics; s se sem sema BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 8 ;, 2 10 0 0 0 0 1 +written to written w wr wri writ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 8 ., 2 9 0 0 0 0 1 +the change the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 8 no 0 9 0 0 0 0 1 +value for value v va val valu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 8 ., 2 9 0 0 0 0 1 +a LAYOUTCOMMIT a a a a a BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 1 0 0 0 0 0 7 8 () 2 10 0 0 0 0 1 +will update will w wi wil will BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 7 8 '. 2 8 0 0 0 0 1 +another client another a an ano anot BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 8 no 0 9 0 0 0 0 1 +being returned. being b be bei bein BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 8 . 1 2 0 0 0 0 1 +13.11. Layout 13.11. 1 13 13. 13.1 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 10 .. 2 10 0 0 0 0 1 +As described as A As As As BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 10 .,-- 4 9 0 0 0 0 1 +protocol is protocol p pr pro prot BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 10 / 1 10 0 0 0 0 1 +before lease before b be bef befo BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 10 . 1 9 0 0 0 0 1 +LAYOUT4_NFSV4_1_FILES layout layout4_nfsv4_1_files L LA LAY LAYO BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 10 / 1 9 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 7 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 11 , 1 10 0 0 0 0 0 +[Page 352] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 7 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 7 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 7 0 no 0 4 0 0 0 0 1 +servers from servers s se ser serv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 7 0 ( 1 9 0 0 0 0 1 +is called is i is is is BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 0 ""), 4 10 0 0 0 0 1 +and without and a an and and BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 0 . 1 9 0 0 0 0 1 +LAYOUT4_NFSV4_1_FILES pNFS layout4_nfsv4_1_files L LA LAY LAYO BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 0 no 0 9 0 0 0 0 1 +individual layouts, individual i in ind indi BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 0 ,/-. 4 8 0 0 0 0 1 +In addition in I In In In BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 7 1 , 1 9 0 0 0 0 1 +include: client include: i in inc incl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 1 :, 2 9 0 0 0 0 1 +server restarts, server s se ser serv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 7 1 ,. 2 9 0 0 0 0 1 +reason, once reason, r re rea reas BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 1 ,', 3 10 0 0 0 0 1 +prevent the prevent p pr pre prev BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 1 / 1 10 0 0 0 0 1 +all data all a al all all BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 1 ;, 2 9 0 0 0 0 1 +affected file affected a af aff affe BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 1 . 1 5 0 0 0 0 1 +Fencing works fencing F Fe Fen Fenc BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 3 .., 3 9 0 0 0 0 1 +procedure requests procedure p pr pro proc BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 3 , 1 9 0 0 0 0 1 +by the by b by by by BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 3 no 0 10 0 0 0 0 1 +are used are a ar are are BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 3 / 1 9 0 0 0 0 1 +being performed; being b be bei bein BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 3 ;,/ 3 8 0 0 0 0 1 +NFS4ERR_PNFS_NO_LAYOUT. The nfs4err_pnfs_no_layout. N NF NFS NFS4 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 3 ., 2 9 0 0 0 0 1 +additionally, make additionally, a ad add addi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 3 , 1 9 0 0 0 0 1 +a data a a a a a BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 1 0 0 0 0 0 7 3 ' 1 9 0 0 0 0 1 +filehandle for filehandle f fi fil file BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 7 3 ( 1 8 0 0 0 0 1 +Section 13.3). section S Se Sec Sect BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 3 .). 3 2 0 0 0 0 1 +Before the before B Be Bef Befo BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 6 no 0 9 0 0 0 0 1 +given out given g gi giv give BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 6 , 1 10 0 0 0 0 1 +state from state s st sta stat BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 6 no 0 9 0 0 0 0 1 +servers. This servers. s se ser serv BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 7 6 .. 2 6 0 0 0 0 1 +o The o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 7 7 no 0 9 0 0 0 0 1 +contacted all contacted c co con cont BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 7 no 0 10 0 0 0 0 1 +the previous the t th the the BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 7 . 1 3 0 0 0 0 1 +o The o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 7 8 no 0 9 0 0 0 0 1 +conflict with conflict c co con conf BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 8 no 0 10 0 0 0 0 1 +doing a doing d do doi doin BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 8 ( 1 9 0 0 0 0 1 +anyway) or anyway) a an any anyw BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 7 8 ). 2 8 0 0 0 0 1 +13.12. Security 13.12. 1 13 13. 13.1 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 9 .. 2 10 0 0 0 0 1 +The NFSv4.1 the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 9 . 1 8 0 0 0 0 1 +considerations outlined considerations c co con cons BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 9 ... 3 9 0 0 0 0 1 +make all make m ma mak make BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 9 / 1 10 0 0 0 0 1 +determined by determined d de det dete BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 9 .. 2 9 0 0 0 0 1 +deny a deny d de den deny BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 7 9 , 1 9 0 0 0 0 1 +attribute, open attribute, a at att attr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 9 ,,,- 4 9 0 0 0 0 1 +lock state, lock l lo loc lock BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 7 9 ,, 2 10 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 7 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 11 , 1 10 0 0 0 0 0 +[Page 353] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 7 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 7 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 7 0 no 0 4 0 0 0 0 1 +also deny also a al als also BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 0 . 1 9 0 0 0 0 1 +protocol and protocol p pr pro prot BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 0 no 0 10 0 0 0 0 1 +data servers; data d da dat data BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 0 ;... 4 7 0 0 0 0 1 +The methods the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 1 ,, 2 9 0 0 0 0 1 +servers based servers s se ser serv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 7 1 no 0 9 0 0 0 0 1 +as those as a as as as BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 1 . 1 9 0 0 0 0 1 +RPC security rpc R RP RPC RPC BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 7 1 , 1 10 0 0 0 0 1 +to negotiate to t to to to BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 1 ., 2 9 0 0 0 0 1 +when using when w wh whe when BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 1 , 1 9 0 0 0 0 1 +RPC-based security rpc-based R RP RPC RPC- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 7 1 -(.. 4 10 0 0 0 0 1 +and 1.8.2.2) and a an and and BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 1 ...). 5 3 0 0 0 0 1 +For a for F Fo For For BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 3 , 1 9 0 0 0 0 1 +security parameters security s se sec secu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 7 3 (). 3 9 0 0 0 0 1 +given file given g gi giv give BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 3 , 1 9 0 0 0 0 1 +SHOULD be should S SH SHO SHOU BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 7 3 . 1 9 0 0 0 0 1 +across a across a ac acr acro BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 3 no 0 10 0 0 0 0 1 +file, the file, f fi fil file BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 3 ,' 2 9 0 0 0 0 1 +identifier MUST identifier i id ide iden BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 7 3 - 1 9 0 0 0 0 1 +based on based b ba bas base BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 3 ,,, 3 10 0 0 0 0 1 +consistent across consistent c co con cons BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 3 . 1 5 0 0 0 0 1 +If an if I If If If BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 6 .. 2 10 0 0 0 0 1 +layouts, then layouts, l la lay layo BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 6 , 1 9 0 0 0 0 1 +operation on operation o op ope oper BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 6 . 1 7 0 0 0 0 1 +14. Internationalization 14. 1 14 14. 14. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 6 . 1 10 0 0 0 0 1 +The primary the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 6 . 1 7 0 0 0 0 1 +internationalization, or internationalization, i in int inte BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 7 6 ,, 2 9 0 0 0 0 1 +other strings other o ot oth othe BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 6 . 1 9 0 0 0 0 1 +representation must representation r re rep repr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 6 / 1 9 0 0 0 0 1 +that use that t th tha that BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 6 .-( 3 10 0 0 0 0 1 +Multiple-Octet Coded multiple-octet M Mu Mul Mult BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 7 6 -)[] 4 9 0 0 0 0 1 +allows for allows a al all allo BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 6 no 0 9 0 0 0 0 1 +"IETF Policy "ietf " "I "IE "IET BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 7 6 "",[]. 6 8 0 0 0 0 1 +RFC 3454 rfc R RF RFC RFC BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 7 9 [],"", 6 10 0 0 0 0 1 +for using for f fo for for BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 9 /-" 3 9 0 0 0 0 1 +the likelihood the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 9 no 0 9 0 0 0 0 1 +that make that t th tha that BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 9 ". 2 9 0 0 0 0 1 +must define must m mu mus must BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 9 " 1 9 0 0 0 0 1 +processing options". processing p pr pro proc BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 9 ". 2 9 0 0 0 0 1 +NFSv4.1 stringprep nfsv4.1 N NF NFS NFSv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 9 .. 2 9 0 0 0 0 1 +remainder of remainder r re rem rema BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 9 . 1 7 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 7 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 11 , 1 10 0 0 0 0 0 +[Page 354] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 7 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 7 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 7 0 no 0 4 0 0 0 0 1 +There are there T Th The Ther BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 0 -.:, 4 9 0 0 0 0 1 +utf8str_cis, and utf8str_cis, u ut utf utf8 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 0 ,. 2 9 0 0 0 0 1 +each. Each each. e ea eac each BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 0 .,: 3 10 0 0 0 0 1 +o The o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 7 1 . 1 10 0 0 0 0 1 +o The o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 7 1 no 0 9 0 0 0 0 1 +stringprep (which stringprep s st str stri BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 7 1 (. 2 9 0 0 0 0 1 +stringprep). However, stringprep). s st str stri BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 7 1 ).,. 4 10 0 0 0 0 1 +3.2. 3.2. 3.2. 3 3. 3.2 3.2. BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 1 .. 2 0 0 0 0 0 1 +o The o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 7 2 ( 1 10 0 0 0 0 1 +of stringprep). of o of of of BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 2 ). 2 2 0 0 0 0 1 +o Any o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 7 3 . 1 10 0 0 0 0 1 +o The o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 7 3 ,( 2 10 0 0 0 0 1 +of stringprep). of o of of of BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 3 ). 2 2 0 0 0 0 1 +o The o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 7 4 no 0 10 0 0 0 0 1 +prohibited as prohibited p pr pro proh BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 4 (). 3 10 0 0 0 0 1 +o The o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 7 5 ,( 2 10 0 0 0 0 1 +Section 6 section S Se Sec Sect BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 5 ). 2 4 0 0 0 0 1 +o Any o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 7 5 no 0 10 0 0 0 0 1 +to the to t to to to BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 5 . 1 2 0 0 0 0 1 +Stringprep discusses stringprep S St Str Stri BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 7 6 ,. 2 9 0 0 0 0 1 +UTF-8 characters. utf-8 U UT UTF UTF- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 6 -.--- 5 10 0 0 0 0 1 +Unicode, when unicode, U Un Uni Unic BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 7 6 ,, 2 10 0 0 0 0 1 +reader should reader r re rea read BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 6 -. 2 4 0 0 0 0 1 +Much of much M Mu Muc Much BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 7 []. 3 10 0 0 0 0 1 +14.1. Stringprep 14.1. 1 14 14. 14.1 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 8 .. 2 10 0 0 0 0 1 +Every use every E Ev Eve Ever BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 8 no 0 10 0 0 0 0 1 +specification follows specification s sp spe spec BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 8 . 1 8 0 0 0 0 1 +14.1.1. Intended 14.1.1. 1 14 14. 14.1 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 8 ... 3 10 0 0 0 0 1 +The utf8str_cs the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 9 --. 3 9 0 0 0 0 1 +Its primary its I It Its Its BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 9 .. 2 9 0 0 0 0 1 +Components and components C Co Com Comp BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 9 '. 2 10 0 0 0 0 1 +valid distinct valid v va val vali BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 9 - 1 9 0 0 0 0 1 +the utf8str_cs the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 9 . 1 8 0 0 0 0 1 +directory, the directory, d di dir dire BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 9 ,.: 3 7 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 7 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 11 , 1 10 0 0 0 0 0 +[Page 355] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 7 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 7 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 7 0 no 0 4 0 0 0 0 1 +o disallow o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 7 0 - 1 10 0 0 0 0 1 +collides with collides c co col coll BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 0 , 1 6 0 0 0 0 1 +o allow o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 7 1 , 1 10 0 0 0 0 1 +post-processing, the post-processing, p po pos post BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 1 -,- 3 8 0 0 0 0 1 +processed form processed p pr pro proc BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 1 . 1 5 0 0 0 0 1 +14.1.2. Character 14.1.2. 1 14 14. 14.1 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 2 ... 3 10 0 0 0 0 1 +The nfs4_cs_prep the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 2 .,' 3 10 0 0 0 0 1 +Appendix A.1. appendix A Ap App Appe BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 2 ..,. 4 9 0 0 0 0 1 +3.2. 3.2. 3.2. 3 3. 3.2 3.2. BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 2 .. 2 0 0 0 0 0 1 +14.1.3. Mapping 14.1.3. 1 14 14. 14.1 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 3 ... 3 10 0 0 0 0 1 +The nfs4_cs_prep the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 3 no 0 10 0 0 0 0 1 +from stringprep: from f fr fro from BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 3 : 1 2 0 0 0 0 1 +Table B.1 table T Ta Tab Tabl BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 4 . 1 10 0 0 0 0 1 +Table B.2 table T Ta Tab Tabl BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 4 . 1 9 0 0 0 0 1 +primarily for primarily p pr pri prim BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 4 -., 3 9 0 0 0 0 1 +the NFSv4.1 the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 4 . 1 9 0 0 0 0 1 +attribute, and attribute, a at att attr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 4 ,,. 3 9 0 0 0 0 1 +use Table use u us use use BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 4 .() 3 9 0 0 0 0 1 +strings, and strings, s st str stri BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 4 ,..( 4 10 0 0 0 0 1 +Table B.1) table T Ta Tab Tabl BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 4 .). 3 3 0 0 0 0 1 +If the if I If If If BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 7 , 1 9 0 0 0 0 1 +the NFSv4.1 the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 7 .. 2 9 0 0 0 0 1 +utf8str_cs strings. utf8str_cs u ut utf utf8 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 7 . 1 10 0 0 0 0 1 +or from or o or or or BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 7 . 1 8 0 0 0 0 1 +14.1.4. Normalization 14.1.4. 1 14 14. 14.1 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 8 ... 3 10 0 0 0 0 1 +The nfs4_cs_prep the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 8 . 1 9 0 0 0 0 1 +later revision later l la lat late BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 8 no 0 8 0 0 0 0 1 +normalization form. normalization n no nor norm BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 7 8 ., 2 9 0 0 0 0 1 +they may they t th the they BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 8 no 0 10 0 0 0 0 1 +responses. If responses. r re res resp BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 8 ., 2 9 0 0 0 0 1 +the implementation the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 8 no 0 9 0 0 0 0 1 +protocol before protocol p pr pro prot BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 8 ( 1 9 0 0 0 0 1 +client) or client) c cl cli clie BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 7 8 )(). 4 6 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 7 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 11 , 1 10 0 0 0 0 0 +[Page 356] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 7 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 7 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 7 0 no 0 4 0 0 0 0 1 +14.1.5. Prohibited 14.1.5. 1 14 14. 14.1 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 0 ... 3 10 0 0 0 0 1 +The nfs4_cs_prep the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 1 no 0 10 0 0 0 0 1 +following tables following f fo fol foll BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 1 : 1 5 0 0 0 0 1 +Table C.5 table T Ta Tab Tabl BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 1 . 1 10 0 0 0 0 1 +Table C.6 table T Ta Tab Tabl BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 2 . 1 10 0 0 0 0 1 +14.1.6. Bidirectional 14.1.6. 1 14 14. 14.1 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 2 ... 3 10 0 0 0 0 1 +The nfs4_cs_prep the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 2 no 0 10 0 0 0 0 1 +bidirectional strings. bidirectional b bi bid bidi BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 7 2 . 1 3 0 0 0 0 1 +14.2. Stringprep 14.2. 1 14 14. 14.2 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 3 .. 2 10 0 0 0 0 1 +Every use every E Ev Eve Ever BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 3 . 1 10 0 0 0 0 1 +specification follows specification s sp spe spec BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 3 . 1 7 0 0 0 0 1 +14.2.1. Intended 14.2.1. 1 14 14. 14.2 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 4 ... 3 10 0 0 0 0 1 +The utf8str_cis the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 5 -- 2 8 0 0 0 0 1 +characters. Its characters. c ch cha char BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 5 ... 3 10 0 0 0 0 1 +14.2.2. Character 14.2.2. 1 14 14. 14.2 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 6 ... 3 10 0 0 0 0 1 +The nfs4_cis_prep the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 7 ., 2 8 0 0 0 0 1 +stringprep's Appendix stringprep's s st str stri BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 7 7 '..,. 5 10 0 0 0 0 1 +limited to limited l li lim limi BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 7 .. 2 2 0 0 0 0 1 +14.2.3. Mapping 14.2.3. 1 14 14. 14.2 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 8 ... 3 10 0 0 0 0 1 +The nfs4_cis_prep the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 9 no 0 10 0 0 0 0 1 +tables from tables t ta tab tabl BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 7 9 : 1 3 0 0 0 0 1 +Table B.1 table T Ta Tab Tabl BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 9 . 1 10 0 0 0 0 1 +Table B.2 table T Ta Tab Tabl BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 9 . 1 10 0 0 0 0 1 +14.2.4. Normalization 14.2.4. 1 14 14. 14.2 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 10 ... 3 10 0 0 0 0 1 +The nfs4_cis_prep the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 10 no 0 10 0 0 0 0 1 +KC, as kc, K KC KC, KC, BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 7 10 ,. 2 4 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 7 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 11 , 1 10 0 0 0 0 0 +[Page 357] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 7 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 7 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 7 0 no 0 4 0 0 0 0 1 +14.2.5. Prohibited 14.2.5. 1 14 14. 14.2 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 0 ... 3 10 0 0 0 0 1 +The nfs4_cis_prep the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 1 no 0 10 0 0 0 0 1 +tables from tables t ta tab tabl BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 7 1 : 1 3 0 0 0 0 1 +Table C.1.2 table T Ta Tab Tabl BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 1 .. 2 10 0 0 0 0 1 +Table C.2.2 table T Ta Tab Tabl BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 1 .. 2 10 0 0 0 0 1 +Table C.3 table T Ta Tab Tabl BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 2 . 1 10 0 0 0 0 1 +Table C.4 table T Ta Tab Tabl BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 2 . 1 10 0 0 0 0 1 +Table C.5 table T Ta Tab Tabl BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 2 . 1 10 0 0 0 0 1 +Table C.6 table T Ta Tab Tabl BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 2 . 1 10 0 0 0 0 1 +Table C.7 table T Ta Tab Tabl BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 2 . 1 10 0 0 0 0 1 +Table C.8 table T Ta Tab Tabl BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 3 . 1 10 0 0 0 0 1 +Table C.9 table T Ta Tab Tabl BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 3 . 1 10 0 0 0 0 1 +14.2.6. Bidirectional 14.2.6. 1 14 14. 14.2 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 3 ... 3 10 0 0 0 0 1 +The nfs4_cis_prep the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 3 no 0 10 0 0 0 0 1 +described in described d de des desc BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 3 '. 2 5 0 0 0 0 1 +14.3. Stringprep 14.3. 1 14 14. 14.3 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 4 .. 2 10 0 0 0 0 1 +Every use every E Ev Eve Ever BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 5 . 1 9 0 0 0 0 1 +protocol specification protocol p pr pro prot BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 5 . 1 10 0 0 0 0 1 +14.3.1. Intended 14.3.1. 1 14 14. 14.3 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 6 ... 3 10 0 0 0 0 1 +The utf8str_mixed the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 6 -, 2 10 0 0 0 0 1 +that is that t th tha that BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 6 ,'', 4 9 0 0 0 0 1 +is a is i is is is BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 6 .. 2 9 0 0 0 0 1 +naming principals naming n na nam nami BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 6 . 1 8 0 0 0 0 1 +14.3.2. Character 14.3.2. 1 14 14. 14.3 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 9 ... 3 10 0 0 0 0 1 +The nfs4_mixed_prep the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 9 ., 2 8 0 0 0 0 1 +stringprep's Appendix stringprep's s st str stri BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 7 9 '..,. 5 10 0 0 0 0 1 +limited to limited l li lim limi BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 9 .. 2 2 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 7 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 11 , 1 10 0 0 0 0 0 +[Page 358] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 7 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 7 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 7 0 no 0 4 0 0 0 0 1 +14.3.3. Mapping 14.3.3. 1 14 14. 14.3 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 0 ... 3 10 0 0 0 0 1 +For the for F Fo For For BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 1 , 1 9 0 0 0 0 1 +nfs4_mixed_prep profile nfs4_mixed_prep n nf nfs nfs4 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 1 no 0 10 0 0 0 0 1 +from stringprep: from f fr fro from BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 1 : 1 2 0 0 0 0 1 +Table B.1 table T Ta Tab Tabl BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 2 . 1 10 0 0 0 0 1 +For the for F Fo For For BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 2 , 1 10 0 0 0 0 1 +specifies mapping specifies s sp spe spec BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 2 : 1 8 0 0 0 0 1 +Table B.1 table T Ta Tab Tabl BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 4 . 1 10 0 0 0 0 1 +Table B.2 table T Ta Tab Tabl BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 4 . 1 10 0 0 0 0 1 +14.3.4. Normalization 14.3.4. 1 14 14. 14.3 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 4 ... 3 10 0 0 0 0 1 +The nfs4_mixed_prep the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 5 no 0 10 0 0 0 0 1 +form KC, form f fo for form BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 5 ,. 2 5 0 0 0 0 1 +14.3.5. Prohibited 14.3.5. 1 14 14. 14.3 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 6 ... 3 10 0 0 0 0 1 +The nfs4_mixed_prep the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 6 no 0 10 0 0 0 0 1 +tables from tables t ta tab tabl BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 7 6 : 1 3 0 0 0 0 1 +Table C.1.2 table T Ta Tab Tabl BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 7 .. 2 10 0 0 0 0 1 +Table C.2.2 table T Ta Tab Tabl BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 7 .. 2 10 0 0 0 0 1 +Table C.3 table T Ta Tab Tabl BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 8 . 1 10 0 0 0 0 1 +Table C.4 table T Ta Tab Tabl BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 8 . 1 10 0 0 0 0 1 +Table C.5 table T Ta Tab Tabl BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 8 . 1 10 0 0 0 0 1 +Table C.6 table T Ta Tab Tabl BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 8 . 1 10 0 0 0 0 1 +Table C.7 table T Ta Tab Tabl BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 9 . 1 10 0 0 0 0 1 +Table C.8 table T Ta Tab Tabl BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 9 . 1 10 0 0 0 0 1 +Table C.9 table T Ta Tab Tabl BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 9 . 1 10 0 0 0 0 1 +14.3.6. Bidirectional 14.3.6. 1 14 14. 14.3 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 9 ... 3 10 0 0 0 0 1 +The nfs4_mixed_prep the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 10 no 0 10 0 0 0 0 1 +as described as a as as as BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 10 '. 2 5 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 7 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 11 , 1 10 0 0 0 0 0 +[Page 359] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 7 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 7 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 7 0 no 0 4 0 0 0 0 1 +14.4. UTF-8 14.4. 1 14 14. 14.4 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 0 ..- 3 10 0 0 0 0 1 +const FSCHARSET_CAP4_CONTAINS_NON_UTF8 const c co con cons BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 7 0 ; 1 10 0 0 0 0 1 +const FSCHARSET_CAP4_ALLOWS_ONLY_UTF8 const c co con cons BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 7 0 no 0 8 0 0 0 0 1 += 0x2; = = = = = BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ; 1 1 0 0 0 0 1 +typedef uint32_t typedef t ty typ type BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 7 0 no 0 10 0 0 0 0 1 +fs_charset_cap4; fs_charset_cap4; fs_charset_cap4; f fs fs_ fs_c BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 0 ; 1 10 0 0 0 0 1 +Because some because B Be Bec Beca BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 0 no 0 9 0 0 0 0 1 +character set character c ch cha char BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 0 ,. 2 8 0 0 0 0 1 +attribute (Section attribute a at att attr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 0 (...) 5 9 0 0 0 0 1 +system's UTF-8 system's s sy sys syst BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 7 0 '-. 3 9 0 0 0 0 1 +a pair a a a a a BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 1 0 0 0 0 0 7 0 ., 2 9 0 0 0 0 1 +which, if which, w wh whi whic BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 0 ,, 2 9 0 0 0 0 1 +non-UTF-8 characters, non-utf-8 n no non non- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 0 --,- 4 8 0 0 0 0 1 +characters to characters c ch cha char BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 0 -, 2 9 0 0 0 0 1 +neither will neither n ne nei neit BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 0 no 0 9 0 0 0 0 1 +arguments convert arguments a ar arg argu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 0 -. 2 8 0 0 0 0 1 +FSCHARSET_CAP4_ALLOWS_ONLY_UTF8, which, fscharset_cap4_allows_only_utf8, F FS FSC FSCH BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 0 ,,, 3 10 0 0 0 0 1 +the server the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 0 ()- 3 9 0 0 0 0 1 +file system. file f fi fil file BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 0 ., 2 9 0 0 0 0 1 +FSCHARSET_CAP4_CONTAINS_NON_UTF8 MUST fscharset_cap4_contains_non_utf8 F FS FSC FSCH BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 0 . 1 7 0 0 0 0 1 +FSCHARSET_CAP4_ALLOWS_ONLY_UTF8 SHOULD fscharset_cap4_allows_only_utf8 F FS FSC FSCH BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 0 . 1 8 0 0 0 0 1 +14.5. UTF-8 14.5. 1 14 14. 14.5 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 5 ..- 3 10 0 0 0 0 1 +Where the where W Wh Whe Wher BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 5 -, 2 10 0 0 0 0 1 +return NFS4ERR_INVAL return r re ret retu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 5 (). 3 9 0 0 0 0 1 +inappropriate prefixes inappropriate i in ina inap BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 5 no 0 9 0 0 0 0 1 +trailing bytes trailing t tr tra trai BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 5 . 1 9 0 0 0 0 1 +Where the where W Wh Whe Wher BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 7 -- 2 8 0 0 0 0 1 +characters that characters c ch cha char BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 7 no 0 9 0 0 0 0 1 +string (e.g., string s st str stri BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 7 (.., 4 10 0 0 0 0 1 +on file on o on on on BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 7 no 0 9 0 0 0 0 1 +presence in presence p pr pre pres BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 7 ), 2 8 0 0 0 0 1 +NFS4ERR_BADCHAR. NFS4ERR_BADCHAR. nfs4err_badchar. N NF NFS NFS4 BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 7 . 1 2 0 0 0 0 1 +Where a where W Wh Whe Wher BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 8 -, 2 9 0 0 0 0 1 +(while supporting (while ( (w (wh (whi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 7 8 () 2 9 0 0 0 0 1 +allow that allow a al all allo BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 8 , 1 10 0 0 0 0 1 +error NFS4ERR_BADNAME error e er err erro BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 8 (). 3 9 0 0 0 0 1 +the server the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 8 no 0 9 0 0 0 0 1 +strings, but strings, s st str stri BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 8 , 1 9 0 0 0 0 1 +prohibitions of prohibitions p pr pro proh BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 8 ".""..", 8 9 0 0 0 0 1 +and other and a an and and BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 8 . 1 4 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 7 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 11 , 1 10 0 0 0 0 0 +[Page 360] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 7 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 7 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 7 0 no 0 4 0 0 0 0 1 +15. Error 15. 1 15 15. 15. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 0 . 1 10 0 0 0 0 1 +NFS error nfs N NF NFS NFS BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 7 0 no 0 10 0 0 0 0 1 +(COMPOUND or (compound ( (C (CO (COM BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 7 0 (). 3 9 0 0 0 0 1 +number of number n nu num numb BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 0 no 0 9 0 0 0 0 1 +in a in i in in in BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 7 0 . 1 9 0 0 0 0 1 +consist of consist c co con cons BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 0 no 0 9 0 0 0 0 1 +operation. If operation. o op ope oper BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 0 ., 2 8 0 0 0 0 1 +entered in entered e en ent ente BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 0 . 1 9 0 0 0 0 1 +15.1. Error 15.1. 1 15 15. 15.1 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 2 .. 2 10 0 0 0 0 1 +Protocol Error protocol P Pr Pro Prot BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 2 no 0 10 0 0 0 0 1 ++-----------------------------------+--------+-------------------+ +-----------------------------------+--------+-------------------+ +-----------------------------------+--------+-------------------+ + +- +-- +--- BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 7 2 -------------------------------------------------------------- 62 10 0 0 0 0 1 +| Error | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 2 no 0 1 0 0 0 0 1 +| Number | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 2 no 0 3 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 2 no 0 0 0 0 0 0 1 ++-----------------------------------+--------+-------------------+ +-----------------------------------+--------+-------------------+ +-----------------------------------+--------+-------------------+ + +- +-- +--- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 7 2 -------------------------------------------------------------- 62 10 0 0 0 0 1 +| NFS4_OK | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 2 no 0 1 0 0 0 0 1 +| 0 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 2 no 0 0 0 0 0 0 1 +| Section | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 2 ... 3 3 0 0 0 0 1 +| NFS4ERR_ACCESS | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 2 no 0 2 0 0 0 0 1 +| 13 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 2 no 0 0 0 0 0 0 1 +| Section | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 2 ... 3 3 0 0 0 0 1 +| NFS4ERR_ATTRNOTSUPP | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 2 no 0 3 0 0 0 0 1 +| 10032 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 2 ... 3 4 0 0 0 0 1 +| NFS4ERR_ADMIN_REVOKED | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 2 no 0 3 0 0 0 0 1 +| 10047 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 2 ... 3 4 0 0 0 0 1 +| NFS4ERR_BACK_CHAN_BUSY | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 2 no 0 3 0 0 0 0 1 +| 10057 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 2 ... 3 4 0 0 0 0 1 +| NFS4ERR_BADCHAR | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 2 no 0 2 0 0 0 0 1 +| 10040 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 2 ... 3 4 0 0 0 0 1 +| NFS4ERR_BADHANDLE | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 2 no 0 2 0 0 0 0 1 +| 10001 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 2 ... 3 4 0 0 0 0 1 +| NFS4ERR_BADIOMODE | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 2 no 0 2 0 0 0 0 1 +| 10049 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 2 ... 3 4 0 0 0 0 1 +| NFS4ERR_BADLAYOUT | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 2 no 0 2 0 0 0 0 1 +| 10050 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 2 ... 3 4 0 0 0 0 1 +| NFS4ERR_BADNAME | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 2 no 0 2 0 0 0 0 1 +| 10041 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 2 ... 3 4 0 0 0 0 1 +| NFS4ERR_BADOWNER | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 2 no 0 2 0 0 0 0 1 +| 10039 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 2 ... 3 4 0 0 0 0 1 +| NFS4ERR_BADSESSION | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 2 no 0 3 0 0 0 0 1 +| 10052 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 2 ... 3 4 0 0 0 0 1 +| NFS4ERR_BADSLOT | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 2 no 0 2 0 0 0 0 1 +| 10053 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 2 ... 3 4 0 0 0 0 1 +| NFS4ERR_BADTYPE | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 2 no 0 2 0 0 0 0 1 +| 10007 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 2 ... 3 4 0 0 0 0 1 +| NFS4ERR_BADXDR | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 2 no 0 2 0 0 0 0 1 +| 10036 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 2 ... 3 4 0 0 0 0 1 +| NFS4ERR_BAD_COOKIE | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 2 no 0 3 0 0 0 0 1 +| 10003 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 2 ... 3 4 0 0 0 0 1 +| NFS4ERR_BAD_HIGH_SLOT | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 2 no 0 3 0 0 0 0 1 +| 10077 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 2 ... 3 4 0 0 0 0 1 +| NFS4ERR_BAD_RANGE | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 2 no 0 2 0 0 0 0 1 +| 10042 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 2 ... 3 4 0 0 0 0 1 +| NFS4ERR_BAD_SEQID | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 2 no 0 2 0 0 0 0 1 +| 10026 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 2 ... 3 4 0 0 0 0 1 +| NFS4ERR_BAD_SESSION_DIGEST | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 2 no 0 4 0 0 0 0 1 +| 10051 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 2 ... 3 4 0 0 0 0 1 +| NFS4ERR_BAD_STATEID | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 2 no 0 3 0 0 0 0 1 +| 10025 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 2 ... 3 4 0 0 0 0 1 +| NFS4ERR_CB_PATH_DOWN | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 2 no 0 3 0 0 0 0 1 +| 10048 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 2 ... 3 4 0 0 0 0 1 +| NFS4ERR_CLID_INUSE | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 2 no 0 3 0 0 0 0 1 +| 10017 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 2 ... 3 4 0 0 0 0 1 +| NFS4ERR_CLIENTID_BUSY | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 2 no 0 3 0 0 0 0 1 +| 10074 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 2 ... 3 4 0 0 0 0 1 +| NFS4ERR_COMPLETE_ALREADY | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 2 no 0 4 0 0 0 0 1 +| 10054 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 2 ... 3 4 0 0 0 0 1 +| NFS4ERR_CONN_NOT_BOUND_TO_SESSION | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 2 ... 3 9 0 0 0 0 1 +| NFS4ERR_DEADLOCK | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 2 no 0 2 0 0 0 0 1 +| 10045 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 2 ... 3 4 0 0 0 0 1 +| NFS4ERR_DEADSESSION | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 2 no 0 3 0 0 0 0 1 +| 10078 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 2 ... 3 4 0 0 0 0 1 +| NFS4ERR_DELAY | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 2 no 0 2 0 0 0 0 1 +| 10008 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 2 ... 3 4 0 0 0 0 1 +| NFS4ERR_DELEG_ALREADY_WANTED | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 2 no 0 4 0 0 0 0 1 +| 10056 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 2 ... 3 4 0 0 0 0 1 +| NFS4ERR_DELEG_REVOKED | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 2 no 0 3 0 0 0 0 1 +| 10087 | | | | | BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 2 ... 3 4 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 7 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 11 , 1 10 0 0 0 0 0 +[Page 361] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 7 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 7 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 7 0 no 0 4 0 0 0 0 1 +| NFS4ERR_DENIED | | | | | BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 5 0 0 0 0 1 +| 10010 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ... 3 9 0 0 0 0 1 +| NFS4ERR_DIRDELEG_UNAVAIL | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 9 0 0 0 0 1 +| 10084 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ... 3 10 0 0 0 0 1 +| NFS4ERR_DQUOT | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 5 0 0 0 0 1 +| 69 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 1 0 0 0 0 1 +| Section | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ... 3 7 0 0 0 0 1 +| NFS4ERR_ENCR_ALG_UNSUPP | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 8 0 0 0 0 1 +| 10079 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ... 3 10 0 0 0 0 1 +| NFS4ERR_EXIST | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 5 0 0 0 0 1 +| 17 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 1 0 0 0 0 1 +| Section | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ... 3 7 0 0 0 0 1 +| NFS4ERR_EXPIRED | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 6 0 0 0 0 1 +| 10011 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ... 3 9 0 0 0 0 1 +| NFS4ERR_FBIG | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 5 0 0 0 0 1 +| 27 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 1 0 0 0 0 1 +| Section | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ... 3 7 0 0 0 0 1 +| NFS4ERR_FHEXPIRED | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 6 0 0 0 0 1 +| 10014 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ... 3 9 0 0 0 0 1 +| NFS4ERR_FILE_OPEN | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 6 0 0 0 0 1 +| 10046 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ... 3 9 0 0 0 0 1 +| NFS4ERR_GRACE | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 5 0 0 0 0 1 +| 10013 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ... 3 9 0 0 0 0 1 +| NFS4ERR_HASH_ALG_UNSUPP | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 8 0 0 0 0 1 +| 10072 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ... 3 10 0 0 0 0 1 +| NFS4ERR_INVAL | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 5 0 0 0 0 1 +| 22 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 1 0 0 0 0 1 +| Section | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ... 3 7 0 0 0 0 1 +| NFS4ERR_IO | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 4 0 0 0 0 1 +| 5 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 1 0 0 0 0 1 +| Section | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ... 3 7 0 0 0 0 1 +| NFS4ERR_ISDIR | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 5 0 0 0 0 1 +| 21 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 1 0 0 0 0 1 +| Section | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ... 3 7 0 0 0 0 1 +| NFS4ERR_LAYOUTTRYLATER | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 8 0 0 0 0 1 +| 10058 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ... 3 10 0 0 0 0 1 +| NFS4ERR_LAYOUTUNAVAILABLE | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 9 0 0 0 0 1 +| 10059 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ... 3 10 0 0 0 0 1 +| NFS4ERR_LEASE_MOVED | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 7 0 0 0 0 1 +| 10031 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ... 3 10 0 0 0 0 1 +| NFS4ERR_LOCKED | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 5 0 0 0 0 1 +| 10012 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ... 3 9 0 0 0 0 1 +| NFS4ERR_LOCKS_HELD | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 7 0 0 0 0 1 +| 10037 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ... 3 9 0 0 0 0 1 +| NFS4ERR_LOCK_NOTSUPP | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 7 0 0 0 0 1 +| 10043 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ... 3 9 0 0 0 0 1 +| NFS4ERR_LOCK_RANGE | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 7 0 0 0 0 1 +| 10028 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ... 3 9 0 0 0 0 1 +| NFS4ERR_MINOR_VERS_MISMATCH | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 10 0 0 0 0 1 +| 10021 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ... 3 9 0 0 0 0 1 +| NFS4ERR_MLINK | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 5 0 0 0 0 1 +| 31 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 1 0 0 0 0 1 +| Section | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ... 3 7 0 0 0 0 1 +| NFS4ERR_MOVED | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 5 0 0 0 0 1 +| 10019 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ... 3 9 0 0 0 0 1 +| NFS4ERR_NAMETOOLONG | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 7 0 0 0 0 1 +| 63 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 1 0 0 0 0 1 +| Section | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ... 3 7 0 0 0 0 1 +| NFS4ERR_NOENT | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 5 0 0 0 0 1 +| 2 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 1 0 0 0 0 1 +| Section | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ... 3 7 0 0 0 0 1 +| NFS4ERR_NOFILEHANDLE | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 7 0 0 0 0 1 +| 10020 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ... 3 9 0 0 0 0 1 +| NFS4ERR_NOMATCHING_LAYOUT | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 9 0 0 0 0 1 +| 10060 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ... 3 10 0 0 0 0 1 +| NFS4ERR_NOSPC | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 5 0 0 0 0 1 +| 28 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 1 0 0 0 0 1 +| Section | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ... 3 7 0 0 0 0 1 +| NFS4ERR_NOTDIR | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 5 0 0 0 0 1 +| 20 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 1 0 0 0 0 1 +| Section | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ... 3 7 0 0 0 0 1 +| NFS4ERR_NOTEMPTY | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 6 0 0 0 0 1 +| 66 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 1 0 0 0 0 1 +| Section | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ... 3 7 0 0 0 0 1 +| NFS4ERR_NOTSUPP | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 6 0 0 0 0 1 +| 10004 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ... 3 9 0 0 0 0 1 +| NFS4ERR_NOT_ONLY_OP | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 7 0 0 0 0 1 +| 10081 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ... 3 9 0 0 0 0 1 +| NFS4ERR_NOT_SAME | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 6 0 0 0 0 1 +| 10027 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ... 3 10 0 0 0 0 1 +| NFS4ERR_NO_GRACE | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 6 0 0 0 0 1 +| 10033 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ... 3 9 0 0 0 0 1 +| NFS4ERR_NXIO | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 5 0 0 0 0 1 +| 6 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 1 0 0 0 0 1 +| Section | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ... 3 7 0 0 0 0 1 +| NFS4ERR_OLD_STATEID | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 7 0 0 0 0 1 +| 10024 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ... 3 9 0 0 0 0 1 +| NFS4ERR_OPENMODE | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 6 0 0 0 0 1 +| 10038 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ... 3 9 0 0 0 0 1 +| NFS4ERR_OP_ILLEGAL | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 7 0 0 0 0 1 +| 10044 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ... 3 9 0 0 0 0 1 +| NFS4ERR_OP_NOT_IN_SESSION | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 9 0 0 0 0 1 +| 10071 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ... 3 9 0 0 0 0 1 +| NFS4ERR_PERM | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 5 0 0 0 0 1 +| 1 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 1 0 0 0 0 1 +| Section | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ... 3 7 0 0 0 0 1 +| NFS4ERR_PNFS_IO_HOLE | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 7 0 0 0 0 1 +| 10075 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ... 3 10 0 0 0 0 1 +| NFS4ERR_PNFS_NO_LAYOUT | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 8 0 0 0 0 1 +| 10080 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ... 3 10 0 0 0 0 1 +| NFS4ERR_RECALLCONFLICT | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 8 0 0 0 0 1 +| 10061 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ... 3 10 0 0 0 0 1 +| NFS4ERR_RECLAIM_BAD | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 7 0 0 0 0 1 +| 10034 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ... 3 9 0 0 0 0 1 +| NFS4ERR_RECLAIM_CONFLICT | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 9 0 0 0 0 1 +| 10035 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ... 3 9 0 0 0 0 1 +| NFS4ERR_REJECT_DELEG | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 7 0 0 0 0 1 +| 10085 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ... 3 10 0 0 0 0 1 +| NFS4ERR_REP_TOO_BIG | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 7 0 0 0 0 1 +| 10066 | | | | | BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ... 3 9 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 7 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 11 , 1 10 0 0 0 0 0 +[Page 362] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 7 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 7 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 7 0 no 0 4 0 0 0 0 1 +| NFS4ERR_REP_TOO_BIG_TO_CACHE | | | | | BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 4 0 0 0 0 1 +| 10067 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ... 3 4 0 0 0 0 1 +| NFS4ERR_REQ_TOO_BIG | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 3 0 0 0 0 1 +| 10065 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ... 3 4 0 0 0 0 1 +| NFS4ERR_RESTOREFH | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 2 0 0 0 0 1 +| 10030 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ... 3 4 0 0 0 0 1 +| NFS4ERR_RETRY_UNCACHED_REP | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 4 0 0 0 0 1 +| 10068 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ... 3 4 0 0 0 0 1 +| NFS4ERR_RETURNCONFLICT | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 3 0 0 0 0 1 +| 10086 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ... 3 4 0 0 0 0 1 +| NFS4ERR_ROFS | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 2 0 0 0 0 1 +| 30 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| Section | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ... 3 3 0 0 0 0 1 +| NFS4ERR_SAME | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 2 0 0 0 0 1 +| 10009 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ... 3 4 0 0 0 0 1 +| NFS4ERR_SHARE_DENIED | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 3 0 0 0 0 1 +| 10015 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ... 3 4 0 0 0 0 1 +| NFS4ERR_SEQUENCE_POS | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 3 0 0 0 0 1 +| 10064 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ... 3 4 0 0 0 0 1 +| NFS4ERR_SEQ_FALSE_RETRY | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 3 0 0 0 0 1 +| 10076 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ... 3 4 0 0 0 0 1 +| NFS4ERR_SEQ_MISORDERED | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 3 0 0 0 0 1 +| 10063 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ... 3 4 0 0 0 0 1 +| NFS4ERR_SERVERFAULT | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 3 0 0 0 0 1 +| 10006 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ... 3 4 0 0 0 0 1 +| NFS4ERR_STALE | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 2 0 0 0 0 1 +| 70 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| Section | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ... 3 3 0 0 0 0 1 +| NFS4ERR_STALE_CLIENTID | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 3 0 0 0 0 1 +| 10022 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ... 3 4 0 0 0 0 1 +| NFS4ERR_STALE_STATEID | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 3 0 0 0 0 1 +| 10023 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ... 3 4 0 0 0 0 1 +| NFS4ERR_SYMLINK | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 2 0 0 0 0 1 +| 10029 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ... 3 4 0 0 0 0 1 +| NFS4ERR_TOOSMALL | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 2 0 0 0 0 1 +| 10005 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ... 3 4 0 0 0 0 1 +| NFS4ERR_TOO_MANY_OPS | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 3 0 0 0 0 1 +| 10070 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ... 3 4 0 0 0 0 1 +| NFS4ERR_UNKNOWN_LAYOUTTYPE | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 4 0 0 0 0 1 +| 10062 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ... 3 4 0 0 0 0 1 +| NFS4ERR_UNSAFE_COMPOUND | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 3 0 0 0 0 1 +| 10069 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ... 3 4 0 0 0 0 1 +| NFS4ERR_WRONGSEC | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 2 0 0 0 0 1 +| 10016 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ... 3 4 0 0 0 0 1 +| NFS4ERR_WRONG_CRED | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 3 0 0 0 0 1 +| 10082 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ... 3 4 0 0 0 0 1 +| NFS4ERR_WRONG_TYPE | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 3 0 0 0 0 1 +| 10083 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ... 3 4 0 0 0 0 1 +| NFS4ERR_XDEV | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 2 0 0 0 0 1 +| 18 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| Section | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ... 3 3 0 0 0 0 1 ++-----------------------------------+--------+-------------------+ +-----------------------------------+--------+-------------------+ +-----------------------------------+--------+-------------------+ + +- +-- +--- BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 7 0 -------------------------------------------------------------- 62 10 0 0 0 0 1 +Table 5 table T Ta Tab Tabl BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 7 no 0 10 0 0 0 0 1 +15.1.1. General 15.1.1. 1 15 15. 15.1 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 7 ... 3 10 0 0 0 0 1 +This section this T Th Thi This BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 8 no 0 10 0 0 0 0 1 +different purposes. different d di dif diff BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 8 . 1 2 0 0 0 0 1 +15.1.1.1. NFS4ERR_BADXDR 15.1.1.1. 1 15 15. 15.1 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 8 ....() 6 10 0 0 0 0 1 +The arguments the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 8 no 0 9 0 0 0 0 1 +XDR definition. xdr X XD XDR XDR BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 7 8 . 1 9 0 0 0 0 1 +before all before b be bef befo BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 8 . 1 8 0 0 0 0 1 +applies when applies a ap app appl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 8 () 2 10 0 0 0 0 1 +within the within w wi wit with BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 8 . 1 9 0 0 0 0 1 +may pre-parse may m ma may may BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 1 0 0 7 8 - 1 9 0 0 0 0 1 +any operation any a an any any BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 8 -. 2 10 0 0 0 0 1 +15.1.1.2. NFS4ERR_BAD_COOKIE 15.1.1.2. 1 15 15. 15.1 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 10 ....() 6 10 0 0 0 0 1 +Used for used U Us Use Used BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 11 no 0 10 0 0 0 0 1 +quantity provided quantity q qu qua quan BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 11 no 0 9 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 7 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 11 , 1 10 0 0 0 0 0 +[Page 363] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 7 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 7 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 7 0 no 0 4 0 0 0 0 1 +earlier invocation. earlier e ea ear earl BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 0 . 1 10 0 0 0 0 1 +purpose, this purpose, p pu pur purp BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 0 ,. 2 4 0 0 0 0 1 +15.1.1.3. NFS4ERR_DELAY 15.1.1.3. 1 15 15. 15.1 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 0 ....() 6 10 0 0 0 0 1 +For any for F Fo For For BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 1 , 1 10 0 0 0 0 1 +operation in operation o op ope oper BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 1 . 1 9 0 0 0 0 1 +wait and wait w wa wai wait BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 7 1 . 1 9 0 0 0 0 1 +Some examples some S So Som Some BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 2 : 1 10 0 0 0 0 1 +o A o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 7 2 no 0 10 0 0 0 0 1 +process a process p pr pro proc BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 2 . 1 5 0 0 0 0 1 +o An o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 7 3 , 1 10 0 0 0 0 1 +for this for f fo for for BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 3 no 0 9 0 0 0 0 1 +timely fashion timely t ti tim time BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 3 . 1 3 0 0 0 0 1 +In such in I In In In BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 7 4 , 1 9 0 0 0 0 1 +operations to operations o op ope oper BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 7 4 no 0 9 0 0 0 0 1 +session slot. session s se ses sess BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 4 ., 2 10 0 0 0 0 1 +re-send the re-send r re re- re-s BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 4 -( 2 10 0 0 0 0 1 +sequence ID; sequence s se seq sequ BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 4 ;-). 4 8 0 0 0 0 1 +Note that note N No Not Note BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 6 no 0 8 0 0 0 0 1 +client's willingness client's c cl cli clie BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 7 6 '-, 3 9 0 0 0 0 1 +result. For result. r re res resu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 6 .,, 3 9 0 0 0 0 1 +return or return r re ret retu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 6 no 0 10 0 0 0 0 1 +other operations other o ot oth othe BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 6 , 1 9 0 0 0 0 1 +slots might slots s sl slo slot BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 6 .. 2 8 0 0 0 0 1 +15.1.1.4. NFS4ERR_INVAL 15.1.1.4. 1 15 15. 15.1 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 8 ....() 6 10 0 0 0 0 1 +The arguments the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 8 , 1 10 0 0 0 0 1 +though they though t th tho thou BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 8 no 0 9 0 0 0 0 1 +request. request. request. r re req requ BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 8 . 1 1 0 0 0 0 1 +15.1.1.5. NFS4ERR_NOTSUPP 15.1.1.5. 1 15 15. 15.1 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 9 ....() 6 10 0 0 0 0 1 +Operation not operation O Op Ope Oper BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 9 , 1 9 0 0 0 0 1 +one and one o on one one BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 9 no 0 10 0 0 0 0 1 +NOT be not N NO NOT NOT BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 7 9 . 1 7 0 0 0 0 1 +15.1.1.6. NFS4ERR_SERVERFAULT 15.1.1.6. 1 15 15. 15.1 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 10 ....() 6 10 0 0 0 0 1 +An error an A An An An BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 7 10 no 0 10 0 0 0 0 1 +specific legal specific s sp spe spec BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 10 .. 2 10 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 7 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 11 , 1 10 0 0 0 0 0 +[Page 364] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 7 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 7 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 7 0 no 0 4 0 0 0 0 1 +translate this translate t tr tra tran BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 0 . 1 10 0 0 0 0 1 +translate this translate t tr tra tran BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 0 . 1 3 0 0 0 0 1 +15.1.1.7. NFS4ERR_TOOSMALL 15.1.1.7. 1 15 15. 15.1 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 0 ....() 6 10 0 0 0 0 1 +Used where used U Us Use Used BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 1 , 1 9 0 0 0 0 1 +limit specified limit l li lim limi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 1 . 1 10 0 0 0 0 1 +within the within w wi wit with BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 1 ,. 2 8 0 0 0 0 1 +15.1.2. Filehandle 15.1.2. 1 15 15. 15.1 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 2 ... 3 10 0 0 0 0 1 +These errors these T Th The Thes BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 2 no 0 9 0 0 0 0 1 +filehandle, or filehandle, f fi fil file BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 7 2 , 1 10 0 0 0 0 1 +current filehandle, current c cu cur curr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 2 ,. 2 10 0 0 0 0 1 +in which in i in in in BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 7 2 no 0 9 0 0 0 0 1 +of the of o of of of BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 2 . 1 8 0 0 0 0 1 +Where the where W Wh Whe Wher BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 4 no 0 10 0 0 0 0 1 +saved filehandle, saved s sa sav save BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 4 , 1 9 0 0 0 0 1 +checked for checked c ch che chec BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 4 no 0 9 0 0 0 0 1 +operation in operation o op ope oper BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 4 . 1 3 0 0 0 0 1 +15.1.2.1. NFS4ERR_BADHANDLE 15.1.2.1. 1 15 15. 15.1 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 5 ....() 6 10 0 0 0 0 1 +Illegal NFS illegal I Il Ill Ille BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 5 . 1 9 0 0 0 0 1 +handle failed handle h ha han hand BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 5 . 1 9 0 0 0 0 1 +(by PUTFH), (by ( (b (by (by BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 7 5 (), 3 10 0 0 0 0 1 +generate this generate g ge gen gene BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 5 . 1 3 0 0 0 0 1 +15.1.2.2. NFS4ERR_FHEXPIRED 15.1.2.2. 1 15 15. 15.1 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 7 ....() 6 10 0 0 0 0 1 +A current a A A A A BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 1 0 0 0 0 0 7 7 no 0 10 0 0 0 0 1 +operation is operation o op ope oper BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 7 . 1 8 0 0 0 0 1 +15.1.2.3. NFS4ERR_ISDIR 15.1.2.3. 1 15 15. 15.1 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 8 ....() 6 10 0 0 0 0 1 +The current the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 8 no 0 9 0 0 0 0 1 +current operation current c cu cur curr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 8 no 0 10 0 0 0 0 1 +target of target t ta tar targ BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 8 . 1 3 0 0 0 0 1 +15.1.2.4. NFS4ERR_MOVED 15.1.2.4. 1 15 15. 15.1 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 9 ....() 6 10 0 0 0 0 1 +The file the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 9 no 0 9 0 0 0 0 1 +present at present p pr pre pres BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 9 . 1 9 0 0 0 0 1 +another server, another a an ano anot BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 9 ,. 2 9 0 0 0 0 1 +obtain the obtain o ob obt obta BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 9 "" 2 10 0 0 0 0 1 +or "fs_locations_info" or o or or or BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 9 "". 3 9 0 0 0 0 1 +further discussion, further f fu fur furt BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 9 ,.. 3 6 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 7 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 11 , 1 10 0 0 0 0 0 +[Page 365] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 7 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 7 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 7 0 no 0 4 0 0 0 0 1 +15.1.2.5. NFS4ERR_NOFILEHANDLE 15.1.2.5. 1 15 15. 15.1 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 0 ....() 6 10 0 0 0 0 1 +The logical the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 0 no 0 9 0 0 0 0 1 +current operation current c cu cur curr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 0 . 1 8 0 0 0 0 1 +malformed COMPOUND malformed m ma mal malf BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 7 0 (.., 4 10 0 0 0 0 1 +operation that operation o op ope oper BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 0 ). 2 8 0 0 0 0 1 +15.1.2.6. NFS4ERR_NOTDIR 15.1.2.6. 1 15 15. 15.1 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 2 ....() 6 10 0 0 0 0 1 +The current the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 2 () 2 10 0 0 0 0 1 +directory for directory d di dir dire BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 2 . 1 8 0 0 0 0 1 +15.1.2.7. NFS4ERR_STALE 15.1.2.7. 1 15 15. 15.1 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 3 ....() 6 10 0 0 0 0 1 +The current the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 3 no 0 10 0 0 0 0 1 +current operation current c cu cur curr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 3 . 1 8 0 0 0 0 1 +filehandle no filehandle f fi fil file BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 7 3 . 1 8 0 0 0 0 1 +15.1.2.8. NFS4ERR_SYMLINK 15.1.2.8. 1 15 15. 15.1 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 4 ....() 6 10 0 0 0 0 1 +The current the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 5 no 0 10 0 0 0 0 1 +operation does operation o op ope oper BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 5 . 1 8 0 0 0 0 1 +15.1.2.9. NFS4ERR_WRONG_TYPE 15.1.2.9. 1 15 15. 15.1 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 5 ....() 6 10 0 0 0 0 1 +The current the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 6 () 2 9 0 0 0 0 1 +invalid type invalid i in inv inva BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 6 , 1 10 0 0 0 0 1 +error (such error e er err erro BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 6 (). 3 9 0 0 0 0 1 +that in that t th tha that BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 6 .,- 3 9 0 0 0 0 1 +specific error specific s sp spe spec BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 6 . 1 4 0 0 0 0 1 +15.1.3. Compound 15.1.3. 1 15 15. 15.1 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 7 ... 3 10 0 0 0 0 1 +This section this T Th Thi This BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 8 no 0 9 0 0 0 0 1 +of a of o of of of BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 8 ( 1 10 0 0 0 0 1 +CB_COMPOUND), rather cb_compound), C CB CB_ CB_C BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 7 8 ),. 3 7 0 0 0 0 1 +There are there T Th The Ther BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 9 no 0 10 0 0 0 0 1 +appear in appear a ap app appe BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 9 . 1 8 0 0 0 0 1 +constraints by constraints c co con cons BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 9 ( 1 9 0 0 0 0 1 +CB_SEQUENCE) at cb_sequence) C CB CB_ CB_S BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 7 9 ). 2 6 0 0 0 0 1 +15.1.3.1. NFS_OK 15.1.3.1. 1 15 15. 15.1 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 10 ....() 6 10 0 0 0 0 1 +Indicates the indicates I In Ind Indi BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 11 , 1 10 0 0 0 0 1 +constituent operations constituent c co con cons BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 11 . 1 7 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 7 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 11 , 1 10 0 0 0 0 0 +[Page 366] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 7 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 7 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 7 0 no 0 4 0 0 0 0 1 +15.1.3.2. NFS4ERR_MINOR_VERS_MISMATCH 15.1.3.2. 1 15 15. 15.1 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 0 ....() 6 10 0 0 0 0 1 +The minor the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 0 no 0 9 0 0 0 0 1 +supports. This supports. s su sup supp BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 0 . 1 9 0 0 0 0 1 +Compound but compound C Co Com Comp BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 0 no 0 10 0 0 0 0 1 +results will results r re res resu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 7 0 . 1 6 0 0 0 0 1 +15.1.3.3. NFS4ERR_NOT_ONLY_OP 15.1.3.3. 1 15 15. 15.1 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 2 ....() 6 10 0 0 0 0 1 +Certain operations, certain C Ce Cer Cert BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 2 , 1 9 0 0 0 0 1 +session, MUST session, s se ses sess BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 2 , 1 10 0 0 0 0 1 +Compound does compound C Co Com Comp BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 2 . 1 9 0 0 0 0 1 +results when results r re res resu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 7 2 . 1 6 0 0 0 0 1 +15.1.3.4. NFS4ERR_OP_ILLEGAL 15.1.3.4. 1 15 15. 15.1 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 3 ....() 6 10 0 0 0 0 1 +The operation the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 4 no 0 9 0 0 0 0 1 +procedure. The procedure. p pr pro proc BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 4 . 1 9 0 0 0 0 1 +is the is i is is is BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 4 , 1 10 0 0 0 0 1 +stream may stream s st str stre BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 4 . 1 9 0 0 0 0 1 +replier pre-parses replier r re rep repl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 7 4 - 1 9 0 0 0 0 1 +doing any doing d do doi doin BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 4 ,- 2 8 0 0 0 0 1 +returned. returned. returned. r re ret retu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 4 . 1 1 0 0 0 0 1 +15.1.3.5. NFS4ERR_OP_NOT_IN_SESSION 15.1.3.5. 1 15 15. 15.1 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 6 ....() 6 10 0 0 0 0 1 +Most forward most M Mo Mos Most BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 6 no 0 9 0 0 0 0 1 +within the within w wi wit with BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 6 , 1 9 0 0 0 0 1 +question MUST question q qu que ques BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 6 . 1 10 0 0 0 0 1 +to execute to t to to to BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 6 , 1 9 0 0 0 0 1 +error results. error e er err erro BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 6 . 1 2 0 0 0 0 1 +15.1.3.6. NFS4ERR_REP_TOO_BIG 15.1.3.6. 1 15 15. 15.1 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 8 ....() 6 10 0 0 0 0 1 +The reply the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 8 ' 1 10 0 0 0 0 1 +response size. response r re res resp BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 8 . 1 2 0 0 0 0 1 +15.1.3.7. NFS4ERR_REP_TOO_BIG_TO_CACHE 15.1.3.7. 1 15 15. 15.1 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 9 ....() 6 10 0 0 0 0 1 +The reply the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 9 ' 1 10 0 0 0 0 1 +size for size s si siz size BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 9 no 0 9 0 0 0 0 1 +current request current c cu cur curr BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 9 . 1 8 0 0 0 0 1 +15.1.3.8. NFS4ERR_REQ_TOO_BIG 15.1.3.8. 1 15 15. 15.1 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 10 ....() 6 10 0 0 0 0 1 +The Compound the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 11 ' 1 10 0 0 0 0 1 +for requests. for f fo for for BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 11 . 1 2 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 7 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 11 , 1 10 0 0 0 0 0 +[Page 367] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 7 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 7 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 7 0 no 0 4 0 0 0 0 1 +15.1.3.9. NFS4ERR_RETRY_UNCACHED_REP 15.1.3.9. 1 15 15. 15.1 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 0 ....() 6 10 0 0 0 0 1 +The requester the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 0 no 0 10 0 0 0 0 1 +requested not requested r re req requ BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 0 . 1 6 0 0 0 0 1 +15.1.3.10. NFS4ERR_SEQUENCE_POS 15.1.3.10. 1 15 15. 15.1 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 1 ....() 6 10 0 0 0 0 1 +A Sequence a A A A A BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 1 0 0 0 0 0 7 1 no 0 10 0 0 0 0 1 +operation of operation o op ope oper BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 1 . 1 5 0 0 0 0 1 +15.1.3.11. NFS4ERR_TOO_MANY_OPS 15.1.3.11. 1 15 15. 15.1 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 2 ....() 6 10 0 0 0 0 1 +The Compound the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 3 , 1 10 0 0 0 0 1 +negotiated when negotiated n ne neg nego BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 3 . 1 6 0 0 0 0 1 +15.1.3.12. NFS4ERR_UNSAFE_COMPOUND 15.1.3.12. 1 15 15. 15.1 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 3 ....() 6 10 0 0 0 0 1 +The client the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 4 no 0 8 0 0 0 0 1 +operations --specifically, operations o op ope oper BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 7 4 --,- 4 9 0 0 0 0 1 +changes the changes c ch cha chan BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 7 4 . 1 10 0 0 0 0 1 +15.1.4. File 15.1.4. 1 15 15. 15.1 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 5 ... 3 10 0 0 0 0 1 +These errors these T Th The Thes BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 5 no 0 10 0 0 0 0 1 +system implementation system s sy sys syst BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 5 . 1 9 0 0 0 0 1 +feature. feature. feature. f fe fea feat BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 5 . 1 1 0 0 0 0 1 +15.1.4.1. NFS4ERR_BADTYPE 15.1.4.1. 1 15 15. 15.1 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 6 ....() 6 10 0 0 0 0 1 +An attempt an A An An An BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 7 6 no 0 9 0 0 0 0 1 +specified to specified s sp spe spec BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 6 ., 2 9 0 0 0 0 1 +because the because b be bec beca BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 6 , 1 10 0 0 0 0 1 +is not is i is is is BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 6 ( 1 9 0 0 0 0 1 +named attribute, named n na nam name BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 6 ,). 3 9 0 0 0 0 1 +15.1.4.2. NFS4ERR_DQUOT 15.1.4.2. 1 15 15. 15.1 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 9 ....() 6 10 0 0 0 0 1 +Resource (quota) resource R Re Res Reso BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 9 ().' 4 10 0 0 0 0 1 +the server the t th the the BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 9 . 1 4 0 0 0 0 1 +15.1.4.3. NFS4ERR_EXIST 15.1.4.3. 1 15 15. 15.1 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 10 ....() 6 10 0 0 0 0 1 +A file a A A A A BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 1 0 0 0 0 0 7 10 (,, 3 10 0 0 0 0 1 +linking) already linking) l li lin link BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 7 10 ). 2 3 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 7 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 11 , 1 10 0 0 0 0 0 +[Page 368] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 7 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 7 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 7 0 no 0 4 0 0 0 0 1 +15.1.4.4. NFS4ERR_FBIG 15.1.4.4. 1 15 15. 15.1 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 0 ....() 6 10 0 0 0 0 1 +The file the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 0 . 1 10 0 0 0 0 1 +grow beyond grow g gr gro grow BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 0 '. 2 4 0 0 0 0 1 +15.1.4.5. NFS4ERR_FILE_OPEN 15.1.4.5. 1 15 15. 15.1 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 1 ....() 6 10 0 0 0 0 1 +The operation the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 1 no 0 10 0 0 0 0 1 +is currently is i is is is BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 1 .,, 3 9 0 0 0 0 1 +linking-to, removing, linking-to, l li lin link BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 1 -,,. 4 6 0 0 0 0 1 +15.1.4.6. NFS4ERR_IO 15.1.4.6. 1 15 15. 15.1 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 3 ....() 6 10 0 0 0 0 1 +Indicates that indicates I In Ind Indi BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 3 / 1 10 0 0 0 0 1 +unable to unable u un una unab BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 3 . 1 4 0 0 0 0 1 +15.1.4.7. NFS4ERR_MLINK 15.1.4.7. 1 15 15. 15.1 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 4 ....() 6 10 0 0 0 0 1 +The request the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 4 ' 1 10 0 0 0 0 1 +hard links hard h ha har hard BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 4 . 1 6 0 0 0 0 1 +15.1.4.8. NFS4ERR_NOENT 15.1.4.8. 1 15 15. 15.1 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 5 ....() 6 10 0 0 0 0 1 +Indicates no indicates I In Ind Indi BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 5 . 1 10 0 0 0 0 1 +specified does specified s sp spe spec BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 5 . 1 4 0 0 0 0 1 +15.1.4.9. NFS4ERR_NOSPC 15.1.4.9. 1 15 15. 15.1 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 6 ....() 6 10 0 0 0 0 1 +Indicates there indicates I In Ind Indi BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 6 . 1 10 0 0 0 0 1 +have caused have h ha hav have BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 6 '. 2 8 0 0 0 0 1 +15.1.4.10. NFS4ERR_NOTEMPTY 15.1.4.10. 1 15 15. 15.1 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 7 ....() 6 10 0 0 0 0 1 +An attempt an A An An An BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 7 8 . 1 10 0 0 0 0 1 +15.1.4.11. NFS4ERR_ROFS 15.1.4.11. 1 15 15. 15.1 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 8 ....() 6 10 0 0 0 0 1 +Indicates a indicates I In Ind Indi BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 9 -. 2 10 0 0 0 0 1 +attempted on attempted a at att atte BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 9 -. 2 6 0 0 0 0 1 +15.1.4.12. NFS4ERR_XDEV 15.1.4.12. 1 15 15. 15.1 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 9 ....() 6 10 0 0 0 0 1 +Indicates an indicates I In Ind Indi BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 10 ,, 2 10 0 0 0 0 1 +inappropriately crosses inappropriately i in ina inap BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 10 . 1 9 0 0 0 0 1 +boundaries as: boundaries b bo bou boun BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 10 : 1 2 0 0 0 0 1 +o that o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 7 11 (). 3 10 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 7 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 11 , 1 10 0 0 0 0 0 +[Page 369] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 7 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 7 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 7 0 no 0 4 0 0 0 0 1 +o that o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 10 0 0 0 0 1 +named attribute named n na nam name BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 0 . 1 8 0 0 0 0 1 +o that o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 7 1 - 1 9 0 0 0 0 1 +implementation treats implementation i im imp impl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 1 (, 2 8 0 0 0 0 1 +accounting purposes), accounting a ac acc acco BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 1 ),-- 4 10 0 0 0 0 1 +ranges are ranges r ra ran rang BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 1 . 1 3 0 0 0 0 1 +15.1.5. State 15.1.5. 1 15 15. 15.1 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 2 ... 3 10 0 0 0 0 1 +These errors these T Th The Thes BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 2 ( 1 9 0 0 0 0 1 +stateids) passed stateids) s st sta stat BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 7 2 ). 2 9 0 0 0 0 1 +which the which w wh whi whic BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 2 no 0 9 0 0 0 0 1 +stateid is stateid s st sta stat BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 7 2 . 1 10 0 0 0 0 1 +Depending on depending D De Dep Depe BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 2 , 1 9 0 0 0 0 1 +opens, byte-range opens, o op ope open BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 2 ,-,,, 5 9 0 0 0 0 1 +device maps. device d de dev devi BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 2 . 1 1 0 0 0 0 1 +15.1.5.1. NFS4ERR_ADMIN_REVOKED 15.1.5.1. 1 15 15. 15.1 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 5 ....() 6 10 0 0 0 0 1 +A stateid a A A A A BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 1 0 0 0 0 0 7 5 no 0 9 0 0 0 0 1 +due to due d du due due BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 5 ,. 2 10 0 0 0 0 1 +15.1.5.2. NFS4ERR_BAD_STATEID 15.1.5.2. 1 15 15. 15.1 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 6 ....() 6 10 0 0 0 0 1 +A stateid a A A A A BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 1 0 0 0 0 0 7 6 . 1 10 0 0 0 0 1 +8.2.4 and 8.2.4 8 8. 8.2 8.2. BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 6 ..... 5 9 0 0 0 0 1 +15.1.5.3. NFS4ERR_DELEG_REVOKED 15.1.5.3. 1 15 15. 15.1 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 7 ....() 6 10 0 0 0 0 1 +A stateid a A A A A BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 1 0 0 0 0 0 7 7 ( 1 10 0 0 0 0 1 +or layout) or o or or or BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 7 ) 1 9 0 0 0 0 1 +return the return r re ret retu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 7 . 1 5 0 0 0 0 1 +15.1.5.4. NFS4ERR_EXPIRED 15.1.5.4. 1 15 15. 15.1 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 8 ....() 6 10 0 0 0 0 1 +A stateid a A A A A BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 1 0 0 0 0 0 7 9 no 0 10 0 0 0 0 1 +due to due d du due due BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 9 ', 2 9 0 0 0 0 1 +lease expiration, lease l le lea leas BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 9 , 1 9 0 0 0 0 1 +lock. lock. lock. l lo loc lock BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 9 . 1 0 0 0 0 0 1 +15.1.5.5. NFS4ERR_OLD_STATEID 15.1.5.5. 1 15 15. 15.1 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 10 ....() 6 10 0 0 0 0 1 +A stateid a A A A A BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 1 0 0 0 0 0 7 10 - 1 10 0 0 0 0 1 +for the for f fo for for BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 10 . 1 5 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 7 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 11 , 1 10 0 0 0 0 0 +[Page 370] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 7 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 7 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 7 0 no 0 4 0 0 0 0 1 +15.1.6. Security 15.1.6. 1 15 15. 15.1 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 0 ... 3 10 0 0 0 0 1 +These are these T Th The Thes BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 0 -.. 3 10 0 0 0 0 1 +15.1.6.1. NFS4ERR_ACCESS 15.1.6.1. 1 15 15. 15.1 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 0 ....() 6 10 0 0 0 0 1 +Indicates permission indicates I In Ind Indi BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 1 . 1 9 0 0 0 0 1 +permission to permission p pe per perm BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 1 . 1 9 0 0 0 0 1 +NFS4ERR_PERM (Section nfs4err_perm N NF NFS NFS4 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 1 (...), 6 9 0 0 0 0 1 +privileged-user permission privileged-user p pr pri priv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 1 -, 2 8 0 0 0 0 1 +(Section 15.1.6.4), (section ( (S (Se (Sec BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 7 1 (...), 6 10 0 0 0 0 1 +or modify or o or or or BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 1 no 0 10 0 0 0 0 1 +created them. created c cr cre crea BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 1 . 1 2 0 0 0 0 1 +15.1.6.2. NFS4ERR_PERM 15.1.6.2. 1 15 15. 15.1 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 3 ....() 6 10 0 0 0 0 1 +Indicates requester indicates I In Ind Indi BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 3 . 1 9 0 0 0 0 1 +because the because b be bec beca BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 3 () 2 10 0 0 0 0 1 +of the of o of of of BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 3 . 1 4 0 0 0 0 1 +15.1.6.3. NFS4ERR_WRONGSEC 15.1.6.3. 1 15 15. 15.1 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 5 ....() 6 10 0 0 0 0 1 +Indicates that indicates I In Ind Indi BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 5 no 0 9 0 0 0 0 1 +the operation the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 5 '. 2 9 0 0 0 0 1 +client should client c cl cli clie BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 5 - 1 9 0 0 0 0 1 +the operation the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 5 (; 2 10 0 0 0 0 1 +both MUST both b bo bot both BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 5 -). 3 9 0 0 0 0 1 +can be can c ca can can BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 5 . 1 7 0 0 0 0 1 +15.1.6.4. NFS4ERR_WRONG_CRED 15.1.6.4. 1 15 15. 15.1 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 7 ....() 6 10 0 0 0 0 1 +An operation an A An An An BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 7 8 no 0 10 0 0 0 0 1 +was not was w wa was was BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 8 . 1 6 0 0 0 0 1 +15.1.7. Name 15.1.7. 1 15 15. 15.1 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 8 ... 3 10 0 0 0 0 1 +Names in names N Na Nam Name BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 9 -. 2 9 0 0 0 0 1 +UTF-8 or utf-8 U UT UTF UTF- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 9 -,. 3 8 0 0 0 0 1 +Besides this, besides B Be Bes Besi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 9 , 1 10 0 0 0 0 1 +problems with problems p pr pro prob BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 7 9 . 1 3 0 0 0 0 1 +15.1.7.1. NFS4ERR_BADCHAR 15.1.7.1. 1 15 15. 15.1 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 10 ....() 6 10 0 0 0 0 1 +A UTF-8 a A A A A BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 1 0 0 0 0 0 7 10 - 1 10 0 0 0 0 1 +server in server s se ser serv BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 7 10 . 1 7 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 7 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 11 , 1 10 0 0 0 0 0 +[Page 371] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 7 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 7 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 7 0 no 0 4 0 0 0 0 1 +15.1.7.2. NFS4ERR_BADNAME 15.1.7.2. 1 15 15. 15.1 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 0 ....() 6 10 0 0 0 0 1 +A name a A A A A BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 1 0 0 0 0 0 7 0 - 1 9 0 0 0 0 1 +supported by supported s su sup supp BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 0 , 1 9 0 0 0 0 1 +as a as a as as as BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 0 . 1 9 0 0 0 0 1 +creating a creating c cr cre crea BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 0 ".." 4 10 0 0 0 0 1 +uses that uses u us use uses BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 0 . 1 6 0 0 0 0 1 +15.1.7.3. NFS4ERR_NAMETOOLONG 15.1.7.3. 1 15 15. 15.1 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 2 ....() 6 10 0 0 0 0 1 +Returned when returned R Re Ret Retu BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 2 ' 1 10 0 0 0 0 1 +implementation limit. implementation i im imp impl BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 2 . 1 3 0 0 0 0 1 +15.1.8. Locking 15.1.8. 1 15 15. 15.1 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 3 ... 3 10 0 0 0 0 1 +This section this T Th Thi This BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 3 , 1 9 0 0 0 0 1 +reservations and reservations r re res rese BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 3 -. 2 9 0 0 0 0 1 +specific to specific s sp spe spec BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 3 . 1 10 0 0 0 0 1 +Section 15.1.9. section S Se Sec Sect BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 3 ... 3 2 0 0 0 0 1 +15.1.8.1. NFS4ERR_BAD_RANGE 15.1.8.1. 1 15 15. 15.1 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 4 ....() 6 10 0 0 0 0 1 +The byte-range the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 5 -,, 3 10 0 0 0 0 1 +the server. the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 5 ., 2 9 0 0 0 0 1 +supports 32-bit supports s su sup supp BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 5 - 1 9 0 0 0 0 1 +that server. that t th tha that BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 5 .(...) 6 5 0 0 0 0 1 +15.1.8.2. NFS4ERR_DEADLOCK 15.1.8.2. 1 15 15. 15.1 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 6 ....() 6 10 0 0 0 0 1 +The server the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 7 - 1 10 0 0 0 0 1 +condition for condition c co con cond BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 7 . 1 7 0 0 0 0 1 +15.1.8.3. NFS4ERR_DENIED 15.1.8.3. 1 15 15. 15.1 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 7 ....() 6 10 0 0 0 0 1 +An attempt an A An An An BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 7 8 . 1 9 0 0 0 0 1 +condition, the condition, c co con cond BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 8 ,-( 3 10 0 0 0 0 1 +not with not n no not not BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 8 ; 1 9 0 0 0 0 1 +different on different d di dif diff BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 8 -). 3 8 0 0 0 0 1 +Section 9.6 section S Se Sec Sect BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 8 .-. 3 6 0 0 0 0 1 +15.1.8.4. NFS4ERR_LOCKED 15.1.8.4. 1 15 15. 15.1 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 10 ....() 6 10 0 0 0 0 1 +A READ a A A A A BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 1 0 0 0 0 0 7 10 no 0 10 0 0 0 0 1 +conflict between conflict c co con conf BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 10 /: 2 6 0 0 0 0 1 +o There o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 7 11 /. 2 10 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 7 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 11 , 1 10 0 0 0 0 0 +[Page 372] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 7 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 7 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 7 0 no 0 4 0 0 0 0 1 +o The o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 10 0 0 0 0 1 +byte-range lock. byte-range b by byt byte BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 0 -. 2 2 0 0 0 0 1 +15.1.8.5. NFS4ERR_LOCKS_HELD 15.1.8.5. 1 15 15. 15.1 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 1 ....() 6 10 0 0 0 0 1 +An operation an A An An An BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 7 1 . 1 10 0 0 0 0 1 +15.1.8.6. NFS4ERR_LOCK_NOTSUPP 15.1.8.6. 1 15 15. 15.1 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 1 ....() 6 10 0 0 0 0 1 +A LOCK a A A A A BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 1 0 0 0 0 0 7 2 no 0 9 0 0 0 0 1 +downgrade of downgrade d do dow down BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 7 2 -, 2 10 0 0 0 0 1 +the server the t th the the BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 2 . 1 9 0 0 0 0 1 +15.1.8.7. NFS4ERR_LOCK_RANGE 15.1.8.7. 1 15 15. 15.1 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 3 ....() 6 10 0 0 0 0 1 +A LOCK a A A A A BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 1 0 0 0 0 0 7 3 no 0 9 0 0 0 0 1 +currently held currently c cu cur curr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 3 -- 2 10 0 0 0 0 1 +not precisely not n no not not BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 3 - 1 10 0 0 0 0 1 +does not does d do doe does BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 3 , 1 10 0 0 0 0 1 +POSIX locking posix P PO POS POSI BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 7 3 []...,.., 9 9 0 0 0 0 1 +18.12.4 for 18.12.4 1 18 18. 18.1 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 3 ..,, 4 9 0 0 0 0 1 +LOCKU respectively. locku L LO LOC LOCK BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 7 3 . 1 2 0 0 0 0 1 +15.1.8.8. NFS4ERR_OPENMODE 15.1.8.8. 1 15 15. 15.1 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 6 ....() 6 10 0 0 0 0 1 +The client the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 7 ,,, 3 9 0 0 0 0 1 +sanctioned by sanctioned s sa san sanc BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 7 (.., 4 10 0 0 0 0 1 +read-only access). read-only r re rea read BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 7 -). 3 2 0 0 0 0 1 +15.1.8.9. NFS4ERR_SHARE_DENIED 15.1.8.9. 1 15 15. 15.1 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 8 ....() 6 10 0 0 0 0 1 +An attempt an A An An An BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 7 8 no 0 10 0 0 0 0 1 +of a of o of of of BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 8 . 1 3 0 0 0 0 1 +15.1.9. Reclaim 15.1.9. 1 15 15. 15.1 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 9 ... 3 10 0 0 0 0 1 +These errors these T Th The Thes BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 9 no 0 10 0 0 0 0 1 +restart. restart. restart. r re res rest BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 9 . 1 1 0 0 0 0 1 +15.1.9.1. NFS4ERR_COMPLETE_ALREADY 15.1.9.1. 1 15 15. 15.1 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 10 ....() 6 10 0 0 0 0 1 +The client the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 10 . 1 9 0 0 0 0 1 +An additional an A An An An BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 7 10 no 0 10 0 0 0 0 1 +in this in i in in in BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 7 10 . 1 2 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 7 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 11 , 1 10 0 0 0 0 0 +[Page 373] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 7 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 7 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 7 0 no 0 4 0 0 0 0 1 +15.1.9.2. NFS4ERR_GRACE 15.1.9.2. 1 15 15. 15.1 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 0 ....() 6 10 0 0 0 0 1 +The server the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 0 . 1 10 0 0 0 0 1 +was not was w wa was was BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 0 no 0 9 0 0 0 0 1 +period. period. period. p pe per peri BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 0 . 1 1 0 0 0 0 1 +15.1.9.3. NFS4ERR_NO_GRACE 15.1.9.3. 1 15 15. 15.1 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 1 ....() 6 10 0 0 0 0 1 +A reclaim a A A A A BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 1 0 0 0 0 0 7 1 no 0 10 0 0 0 0 1 +server cannot server s se ser serv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 7 1 no 0 9 0 0 0 0 1 +to another to t to to to BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 1 . 1 9 0 0 0 0 1 +outside of outside o ou out outs BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 1 , 1 9 0 0 0 0 1 +a RECLAIM_COMPLETE a a a a a BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 1 0 0 0 0 0 7 1 , 1 9 0 0 0 0 1 +created a created c cr cre crea BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 1 no 0 10 0 0 0 0 1 +a reclaim-interfering a a a a a BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 1 0 0 0 0 0 7 1 -. 2 7 0 0 0 0 1 +15.1.9.4. NFS4ERR_RECLAIM_BAD 15.1.9.4. 1 15 15. 15.1 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 4 ....() 6 10 0 0 0 0 1 +The server the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 4 no 0 9 0 0 0 0 1 +not valid, not n no not not BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 4 ,.. 3 9 0 0 0 0 1 +possibly have possibly p po pos poss BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 4 . 1 9 0 0 0 0 1 +obliged to obliged o ob obl obli BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 4 no 0 9 0 0 0 0 1 +client to client c cl cli clie BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 4 no 0 9 0 0 0 0 1 +restart. However, restart. r re res rest BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 4 ., 2 9 0 0 0 0 1 +enable it enable e en ena enab BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 4 , 1 9 0 0 0 0 1 +reclaim has reclaim r re rec recl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 4 . 1 9 0 0 0 0 1 +error NFS4ERR_RECLAIM_CONFLICT error e er err erro BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 4 (...) 5 9 0 0 0 0 1 +server can server s se ser serv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 7 4 , 1 10 0 0 0 0 1 +cannot determine cannot c ca can cann BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 4 . 1 6 0 0 0 0 1 +15.1.9.5. NFS4ERR_RECLAIM_CONFLICT 15.1.9.5. 1 15 15. 15.1 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 8 ....() 6 10 0 0 0 0 1 +The reclaim the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 8 no 0 9 0 0 0 0 1 +cannot be cannot c ca can cann BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 8 ., 2 9 0 0 0 0 1 +although not although a al alt alth BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 8 . 1 8 0 0 0 0 1 +misbehavior might misbehavior m mi mis misb BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 7 8 no 0 10 0 0 0 0 1 +lock with lock l lo loc lock BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 7 8 .... 4 9 0 0 0 0 1 +for the for f fo for for BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 8 ,. 2 6 0 0 0 0 1 +15.1.10. pNFS 15.1.10. 1 15 15. 15.1 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 10 ... 3 10 0 0 0 0 1 +This section this T Th Thi This BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 10 - 1 10 0 0 0 0 1 +associated with associated a as ass asso BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 10 .. 2 9 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 7 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 11 , 1 10 0 0 0 0 0 +[Page 374] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 7 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 7 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 7 0 no 0 4 0 0 0 0 1 +15.1.10.1. NFS4ERR_BADIOMODE 15.1.10.1. 1 15 15. 15.1 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 0 ....() 6 10 0 0 0 0 1 +An invalid an A An An An BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 7 0 . 1 10 0 0 0 0 1 +an inappropriate an a an an an BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 7 0 ,' 2 8 0 0 0 0 1 +operation specified operation o op ope oper BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 0 , 1 10 0 0 0 0 1 +neither able neither n ne nei neit BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 0 no 0 9 0 0 0 0 1 +data servers; data d da dat data BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 0 ;. 2 9 0 0 0 0 1 +client would client c cl cli clie BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 0 no 0 8 0 0 0 0 1 +LAYOUTIOMODE4_READ. LAYOUTIOMODE4_READ. layoutiomode4_read. L LA LAY LAYO BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 0 . 1 2 0 0 0 0 1 +15.1.10.2. NFS4ERR_BADLAYOUT 15.1.10.2. 1 15 15. 15.1 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 2 ....() 6 10 0 0 0 0 1 +The layout the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 3 ., 2 10 0 0 0 0 1 +indicates that indicates i in ind indi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 3 no 0 10 0 0 0 0 1 +not of not n no not not BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 3 ., 2 9 0 0 0 0 1 +layout matching layout l la lay layo BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 3 ' 1 9 0 0 0 0 1 +cannot be cannot c ca can cann BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 3 . 1 2 0 0 0 0 1 +15.1.10.3. NFS4ERR_LAYOUTTRYLATER 15.1.10.3. 1 15 15. 15.1 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 4 ....() 6 10 0 0 0 0 1 +Layouts are layouts L La Lay Layo BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 5 . 1 9 0 0 0 0 1 +re-send later re-send r re re- re-s BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 5 -(; 3 10 0 0 0 0 1 +both MUST both b bo bot both BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 5 -). 3 5 0 0 0 0 1 +15.1.10.4. NFS4ERR_LAYOUTUNAVAILABLE 15.1.10.4. 1 15 15. 15.1 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 6 ....() 6 10 0 0 0 0 1 +Returned when returned R Re Ret Retu BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 6 no 0 10 0 0 0 0 1 +or the or o or or or BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 6 . 1 5 0 0 0 0 1 +15.1.10.5. NFS4ERR_NOMATCHING_LAYOUT 15.1.10.5. 1 15 15. 15.1 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 7 ....() 6 10 0 0 0 0 1 +Returned when returned R Re Ret Retu BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 7 no 0 10 0 0 0 0 1 +matching the matching m ma mat matc BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 7 . 1 8 0 0 0 0 1 +15.1.10.6. NFS4ERR_PNFS_IO_HOLE 15.1.10.6. 1 15 15. 15.1 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 8 ....() 6 10 0 0 0 0 1 +The pNFS the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 8 no 0 10 0 0 0 0 1 +hole of hole h ho hol hole BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 8 . 1 10 0 0 0 0 1 +Section 13.4.4. section S Se Sec Sect BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 8 ... 3 2 0 0 0 0 1 +15.1.10.7. NFS4ERR_PNFS_NO_LAYOUT 15.1.10.7. 1 15 15. 15.1 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 9 ....() 6 10 0 0 0 0 1 +The pNFS the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 10 ( 1 10 0 0 0 0 1 +a request a a a a a BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 1 0 0 0 0 0 7 10 ). 2 9 0 0 0 0 1 +includes the includes i in inc incl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 10 , 1 10 0 0 0 0 1 +not allow not n no not not BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 10 . 1 2 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 7 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 11 , 1 10 0 0 0 0 0 +[Page 375] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 7 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 7 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 7 0 no 0 4 0 0 0 0 1 +15.1.10.8. NFS4ERR_RETURNCONFLICT 15.1.10.8. 1 15 15. 15.1 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 0 ....() 6 10 0 0 0 0 1 +A layout a A A A A BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 1 0 0 0 0 0 7 0 no 0 10 0 0 0 0 1 +before a before b be bef befo BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 0 . 1 9 0 0 0 0 1 +Section 12.5.5.2.1.3. section S Se Sec Sect BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 0 ...... 6 3 0 0 0 0 1 +15.1.10.9. NFS4ERR_UNKNOWN_LAYOUTTYPE 15.1.10.9. 1 15 15. 15.1 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 1 ....() 6 10 0 0 0 0 1 +The client the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 2 no 0 10 0 0 0 0 1 +server. server. server. s se ser serv BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 7 2 . 1 1 0 0 0 0 1 +15.1.11. Session 15.1.11. 1 15 15. 15.1 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 2 ... 3 10 0 0 0 0 1 +This section this T Th Thi This BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 3 , 1 10 0 0 0 0 1 +is, errors is, i is is, is, BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 3 ,(.., 5 9 0 0 0 0 1 +SEQUENCE or sequence S SE SEQ SEQU BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 7 3 ). 2 5 0 0 0 0 1 +15.1.11.1. NFS4ERR_BADSESSION 15.1.11.1. 1 15 15. 15.1 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 4 ....() 6 10 0 0 0 0 1 +The specified the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 4 no 0 10 0 0 0 0 1 +operation is operation o op ope oper BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 4 . 1 3 0 0 0 0 1 +15.1.11.2. NFS4ERR_BADSLOT 15.1.11.2. 1 15 15. 15.1 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 5 ....() 6 10 0 0 0 0 1 +The requester the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 5 no 0 10 0 0 0 0 1 +the replier the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 5 . 1 10 0 0 0 0 1 +may have may m ma may may BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 1 0 0 7 5 . 1 3 0 0 0 0 1 +15.1.11.3. NFS4ERR_BAD_HIGH_SLOT 15.1.11.3. 1 15 15. 15.1 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 6 ....() 6 10 0 0 0 0 1 +The highest_slot the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 7 no 0 10 0 0 0 0 1 +replier's enforced replier's r re rep repl BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 7 7 '. 2 5 0 0 0 0 1 +15.1.11.4. NFS4ERR_CB_PATH_DOWN 15.1.11.4. 1 15 15. 15.1 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 7 ....() 6 10 0 0 0 0 1 +There is there T Th The Ther BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 8 . 1 10 0 0 0 0 1 +function of function f fu fun func BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 8 no 0 9 0 0 0 0 1 +status flags status s st sta stat BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 8 ( 1 8 0 0 0 0 1 +Section 18.46). section S Se Sec Sect BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 8 .). 3 2 0 0 0 0 1 +15.1.11.5. NFS4ERR_DEADSESSION 15.1.11.5. 1 15 15. 15.1 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 9 ....() 6 10 0 0 0 0 1 +The specified the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 10 no 0 10 0 0 0 0 1 +not accept not n no not not BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 10 no 0 9 0 0 0 0 1 +requests (in requests r re req requ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 7 10 ( 1 9 0 0 0 0 1 +before server before b be bef befo BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 10 ). 2 3 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 7 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 11 , 1 10 0 0 0 0 0 +[Page 376] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 7 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 7 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 7 0 no 0 4 0 0 0 0 1 +15.1.11.6. NFS4ERR_CONN_NOT_BOUND_TO_SESSION 15.1.11.6. 1 15 15. 15.1 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 0 ....() 6 10 0 0 0 0 1 +A Sequence a A A A A BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 1 0 0 0 0 0 7 0 no 0 9 0 0 0 0 1 +associated with associated a as ass asso BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 0 , 1 9 0 0 0 0 1 +that connection that t th tha that BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 0 no 0 10 0 0 0 0 1 +SP4_SSV state sp4_ssv S SP SP4 SP4_ BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 0 . 1 3 0 0 0 0 1 +15.1.11.7. NFS4ERR_SEQ_FALSE_RETRY 15.1.11.7. 1 15 15. 15.1 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 2 ....() 6 10 0 0 0 0 1 +The requester the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 2 no 0 9 0 0 0 0 1 +ID that id I ID ID ID BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 1 0 0 0 0 0 0 7 2 , 1 10 0 0 0 0 1 +retried request retried r re ret retr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 7 2 . 1 8 0 0 0 0 1 +Section 2.10.6.1.3.1. section S Se Sec Sect BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 2 ...... 6 3 0 0 0 0 1 +15.1.11.8. NFS4ERR_SEQ_MISORDERED 15.1.11.8. 1 15 15. 15.1 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 4 ....() 6 10 0 0 0 0 1 +The requester the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 4 . 1 10 0 0 0 0 1 +15.1.12. Session 15.1.12. 1 15 15. 15.1 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 4 ... 3 10 0 0 0 0 1 +This section this T Th Thi This BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 5 no 0 10 0 0 0 0 1 +session management. session s se ses sess BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 5 . 1 3 0 0 0 0 1 +15.1.12.1. NFS4ERR_BACK_CHAN_BUSY 15.1.12.1. 1 15 15. 15.1 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 5 ....() 6 10 0 0 0 0 1 +An attempt an A An An An BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 7 6 no 0 10 0 0 0 0 1 +destroyed because destroyed d de des dest BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 6 . 1 9 0 0 0 0 1 +15.1.12.2. NFS4ERR_BAD_SESSION_DIGEST 15.1.12.2. 1 15 15. 15.1 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 6 ....() 6 10 0 0 0 0 1 +The digest the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 7 . 1 10 0 0 0 0 1 +15.1.13. Client 15.1.13. 1 15 15. 15.1 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 7 ... 3 10 0 0 0 0 1 +This section this T Th Thi This BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 7 no 0 10 0 0 0 0 1 +create and create c cr cre crea BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 7 . 1 4 0 0 0 0 1 +15.1.13.1. NFS4ERR_CLIENTID_BUSY 15.1.13.1. 1 15 15. 15.1 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 8 ....() 6 10 0 0 0 0 1 +The DESTROY_CLIENTID the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 8 / 1 10 0 0 0 0 1 +unexpired state unexpired u un une unex BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 7 8 . 1 9 0 0 0 0 1 +15.1.13.2. NFS4ERR_CLID_INUSE 15.1.13.2. 1 15 15. 15.1 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 9 ....() 6 10 0 0 0 0 1 +While processing while W Wh Whi Whil BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 10 , 1 10 0 0 0 0 1 +with a with w wi wit with BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 10 no 0 9 0 0 0 0 1 +leased state, leased l le lea leas BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 10 , 1 9 0 0 0 0 1 +differs from differs d di dif diff BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 10 . 1 9 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 7 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 11 , 1 10 0 0 0 0 0 +[Page 377] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 7 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 7 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 7 0 no 0 4 0 0 0 0 1 +This indicates this T Th Thi This BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 0 () 2 9 0 0 0 0 1 +clients. The clients. c cl cli clie BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 0 . 1 9 0 0 0 0 1 +re-sending EXCHANGE_ID re-sending r re re- re-s BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 0 -( 2 10 0 0 0 0 1 +ID; one id; I ID ID; ID; BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 7 0 ;-). 4 7 0 0 0 0 1 +15.1.13.3. NFS4ERR_ENCR_ALG_UNSUPP 15.1.13.3. 1 15 15. 15.1 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 1 ....() 6 10 0 0 0 0 1 +An EXCHANGE_ID an A An An An BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 7 2 , 1 10 0 0 0 0 1 +where the where w wh whe wher BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 2 no 0 9 0 0 0 0 1 +not include not n no not not BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 2 . 1 5 0 0 0 0 1 +15.1.13.4. NFS4ERR_HASH_ALG_UNSUPP 15.1.13.4. 1 15 15. 15.1 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 3 ....() 6 10 0 0 0 0 1 +An EXCHANGE_ID an A An An An BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 7 3 , 1 10 0 0 0 0 1 +where the where w wh whe wher BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 3 no 0 9 0 0 0 0 1 +include any include i in inc incl BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 3 . 1 5 0 0 0 0 1 +15.1.13.5. NFS4ERR_STALE_CLIENTID 15.1.13.5. 1 15 15. 15.1 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 4 ....() 6 10 0 0 0 0 1 +A client a A A A A BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 1 0 0 0 0 0 7 5 . 1 10 0 0 0 0 1 +Note that note N No Not Note BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 5 ., 2 9 0 0 0 0 1 +explicitly to explicitly e ex exp expl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 5 no 0 9 0 0 0 0 1 +result in result r re res resu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 5 .,, 3 10 0 0 0 0 1 +first manifested first f fi fir firs BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 5 , 1 10 0 0 0 0 1 +staleness of staleness s st sta stal BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 7 5 no 0 9 0 0 0 0 1 +client ID client c cl cli clie BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 5 . 1 4 0 0 0 0 1 +15.1.14. Delegation 15.1.14. 1 15 15. 15.1 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 7 ... 3 10 0 0 0 0 1 +This section this T Th Thi This BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 7 no 0 10 0 0 0 0 1 +returning delegations. returning r re ret retu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 7 . 1 3 0 0 0 0 1 +15.1.14.1. NFS4ERR_DELEG_ALREADY_WANTED 15.1.14.1. 1 15 15. 15.1 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 8 ....() 6 10 0 0 0 0 1 +The client the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 8 no 0 10 0 0 0 0 1 +that it that t th tha that BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 8 . 1 5 0 0 0 0 1 +15.1.14.2. NFS4ERR_DIRDELEG_UNAVAIL 15.1.14.2. 1 15 15. 15.1 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 9 ....() 6 10 0 0 0 0 1 +This error this T Th Thi This BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 9 no 0 10 0 0 0 0 1 +provide a provide p pr pro prov BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 9 . 1 6 0 0 0 0 1 +15.1.14.3. NFS4ERR_RECALLCONFLICT 15.1.14.3. 1 15 15. 15.1 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 10 ....() 6 10 0 0 0 0 1 +A recallable a A A A A BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 1 0 0 0 0 0 7 10 (..,) 5 10 0 0 0 0 1 +to a to t to to to BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 10 no 0 9 0 0 0 0 1 +that object. that t th tha that BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 10 . 1 1 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 7 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 11 , 1 10 0 0 0 0 0 +[Page 378] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 7 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 7 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 7 0 no 0 4 0 0 0 0 1 +15.1.14.4. NFS4ERR_REJECT_DELEG 15.1.14.4. 1 15 15. 15.1 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 0 ....() 6 10 0 0 0 0 1 +The callback the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 0 no 0 10 0 0 0 0 1 +rejected it. rejected r re rej reje BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 0 . 1 2 0 0 0 0 1 +15.1.15. Attribute 15.1.15. 1 15 15. 15.1 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 1 ... 3 10 0 0 0 0 1 +This section this T Th Thi This BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 1 no 0 10 0 0 0 0 1 +NFSv4. NFSv4. nfsv4. N NF NFS NFSv BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 1 . 1 1 0 0 0 0 1 +15.1.15.1. NFS4ERR_ATTRNOTSUPP 15.1.15.1. 1 15 15. 15.1 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 2 ....() 6 10 0 0 0 0 1 +An attribute an A An An An BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 7 2 . 1 10 0 0 0 0 1 +MUST NOT must M MU MUS MUST BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 7 2 . 1 7 0 0 0 0 1 +15.1.15.2. NFS4ERR_BADOWNER 15.1.15.2. 1 15 15. 15.1 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 3 ....() 6 10 0 0 0 0 1 +This error this T Th Thi This BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 3 no 0 10 0 0 0 0 1 +or the or o or or or BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 3 no 0 9 0 0 0 0 1 +translated to translated t tr tra tran BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 3 . 1 5 0 0 0 0 1 +15.1.15.3. NFS4ERR_NOT_SAME 15.1.15.3. 1 15 15. 15.1 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 5 ....() 6 10 0 0 0 0 1 +This error this T Th Thi This BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 5 no 0 10 0 0 0 0 1 +attributes compared attributes a at att attr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 5 no 0 9 0 0 0 0 1 +client's request. client's c cl cli clie BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 7 5 '. 2 2 0 0 0 0 1 +15.1.15.4. NFS4ERR_SAME 15.1.15.4. 1 15 15. 15.1 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 6 ....() 6 10 0 0 0 0 1 +This error this T Th Thi This BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 7 no 0 10 0 0 0 0 1 +attributes compared attributes a at att attr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 7 ' 1 10 0 0 0 0 1 +request. request. request. r re req requ BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 7 . 1 1 0 0 0 0 1 +15.1.16. Obsoleted 15.1.16. 1 15 15. 15.1 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 8 ... 3 10 0 0 0 0 1 +These errors these T Th The Thes BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 8 .. 2 10 0 0 0 0 1 +can be can c ca can can BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 8 . 1 4 0 0 0 0 1 +o The o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 7 9 no 0 10 0 0 0 0 1 +the status the t th the the BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 9 . 1 7 0 0 0 0 1 +o The o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 7 10 no 0 10 0 0 0 0 1 +made the made m ma mad made BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 10 . 1 4 0 0 0 0 1 +o There o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 7 10 . 1 10 0 0 0 0 1 +resulted in resulted r re res resu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 10 . 1 7 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 7 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 11 , 1 10 0 0 0 0 0 +[Page 379] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 7 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 7 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 7 0 no 0 4 0 0 0 0 1 +15.1.16.1. NFS4ERR_BAD_SEQID 15.1.16.1. 1 15 15. 15.1 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 0 ....() 6 10 0 0 0 0 1 +The sequence the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 0 () 2 10 0 0 0 0 1 +expected number expected e ex exp expe BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 0 . 1 9 0 0 0 0 1 +ignored in ignored i ig ign igno BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 0 .. 2 2 0 0 0 0 1 +15.1.16.2. NFS4ERR_LEASE_MOVED 15.1.16.2. 1 15 15. 15.1 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 1 ....() 6 10 0 0 0 0 1 +A lease a A A A A BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 1 0 0 0 0 0 7 1 no 0 10 0 0 0 0 1 +migrated to migrated m mi mig migr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 1 . 1 9 0 0 0 0 1 +SEQ4_STATUS_LEASE_MOVED status seq4_status_lease_moved S SE SEQ SEQ4 BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 1 (.). 4 8 0 0 0 0 1 +15.1.16.3. NFS4ERR_NXIO 15.1.16.3. 1 15 15. 15.1 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 3 ....() 6 10 0 0 0 0 1 +I/O error. i/o I I/ I/O I/O BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 7 3 /.. 3 9 0 0 0 0 1 +involving block involving i in inv invo BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 3 ,. 2 10 0 0 0 0 1 +not a not n no not not BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 3 -,. 3 8 0 0 0 0 1 +15.1.16.4. NFS4ERR_RESTOREFH 15.1.16.4. 1 15 15. 15.1 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 4 ....() 6 10 0 0 0 0 1 +The RESTOREFH the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 4 ( 1 10 0 0 0 0 1 +by SAVEFH) by b by by by BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 4 ).., 4 8 0 0 0 0 1 +superseded by superseded s su sup supe BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 4 . 1 5 0 0 0 0 1 +15.1.16.5. NFS4ERR_STALE_STATEID 15.1.16.5. 1 15 15. 15.1 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 5 ....() 6 10 0 0 0 0 1 +A stateid a A A A A BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 1 0 0 0 0 0 7 6 . 1 9 0 0 0 0 1 +error is error e er err erro BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 6 . 1 10 0 0 0 0 1 +MUST be must M MU MUS MUST BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 7 6 , 1 9 0 0 0 0 1 +instance is instance i in ins inst BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 6 no 0 9 0 0 0 0 1 +SEQUENCE. SEQUENCE. sequence. S SE SEQ SEQU BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 7 6 . 1 1 0 0 0 0 1 +15.2. Operations 15.2. 1 15 15. 15.2 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 7 .. 2 10 0 0 0 0 1 +This section this T Th Thi This BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 7 no 0 9 0 0 0 0 1 +each protocol each e ea eac each BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 7 .( 2 9 0 0 0 0 1 +error) is error) e er err erro BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 7 7 ) 1 10 0 0 0 0 1 +operations with operations o op ope oper BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 7 7 : 1 6 0 0 0 0 1 +o The o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 7 9 :, 2 9 0 0 0 0 1 +RELEASE_LOCKOWNER, RENEW, release_lockowner, R RE REL RELE BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 7 9 ,,,. 4 10 0 0 0 0 1 +o The o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 7 9 :. 2 10 0 0 0 0 1 +Valid Error valid V Va Val Vali BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 10 no 0 10 0 0 0 0 1 ++----------------------+--------------------------------------------+ +----------------------+--------------------------------------------+ +----------------------+--------------------------------------------+ + +- +-- +--- BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 7 10 ------------------------------------------------------------------ 66 10 0 0 0 0 1 +| Operation | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 10 no 0 1 0 0 0 0 1 +| Errors | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 10 no 0 1 0 0 0 0 1 +| | | | | | | BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 10 no 0 0 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 7 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 11 , 1 10 0 0 0 0 0 +[Page 380] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 7 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 7 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 7 0 no 0 4 0 0 0 0 1 ++----------------------+--------------------------------------------+ +----------------------+--------------------------------------------+ +----------------------+--------------------------------------------+ + +- +-- +--- BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 7 0 ------------------------------------------------------------------ 66 10 0 0 0 0 1 +| ACCESS | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 1 0 0 0 0 1 +| NFS4ERR_ACCESS, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 4 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_DEADSESSION, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 5 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_FHEXPIRED, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 5 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_IO, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 4 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_NOFILEHANDLE, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 3 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_OP_NOT_IN_SESSION, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 4 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_REP_TOO_BIG, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 3 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_REP_TOO_BIG_TO_CACHE, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 4 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_REQ_TOO_BIG, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 3 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_RETRY_UNCACHED_REP, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 4 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_SERVERFAULT, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 5 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_TOO_MANY_OPS | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 3 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| BACKCHANNEL_CTL | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 2 0 0 0 0 1 +| NFS4ERR_BADXDR, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 5 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_DELAY, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 4 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_NOENT, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 6 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_REP_TOO_BIG, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 3 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_REP_TOO_BIG_TO_CACHE, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 4 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_REQ_TOO_BIG, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 3 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_RETRY_UNCACHED_REP, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 4 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_TOO_MANY_OPS | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 3 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| BIND_CONN_TO_SESSION | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 8 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_BAD_SESSION_DIGEST, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 4 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_DEADSESSION, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 5 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_INVAL, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 5 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_REP_TOO_BIG, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 3 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_REP_TOO_BIG_TO_CACHE, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 4 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_REQ_TOO_BIG, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 3 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_RETRY_UNCACHED_REP, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 4 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_SERVERFAULT, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 6 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| CLOSE | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 1 0 0 0 0 1 +| NFS4ERR_ADMIN_REVOKED, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 5 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_BAD_STATEID, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 6 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_DELAY, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 4 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_FHEXPIRED, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 5 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_MOVED, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 5 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_OLD_STATEID, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 3 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_OP_NOT_IN_SESSION, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 4 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_REP_TOO_BIG, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 3 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_REP_TOO_BIG_TO_CACHE, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 4 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_REQ_TOO_BIG, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 3 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_RETRY_UNCACHED_REP, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 4 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_SERVERFAULT, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 5 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_TOO_MANY_OPS, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 6 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| COMMIT | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 1 0 0 0 0 1 +| NFS4ERR_ACCESS, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 4 0 0 0 0 1 +| | | | | | | BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 7 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 11 , 1 10 0 0 0 0 0 +[Page 381] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 7 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 7 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 7 0 no 0 4 0 0 0 0 1 +| | | | | | | BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_DEADSESSION, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 8 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_FHEXPIRED, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 7 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_ISDIR, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 6 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_NOFILEHANDLE, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 5 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_OP_NOT_IN_SESSION, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 6 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_REP_TOO_BIG, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 4 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_REP_TOO_BIG_TO_CACHE, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 6 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_REQ_TOO_BIG, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 4 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_RETRY_UNCACHED_REP, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 6 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_SERVERFAULT, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 8 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_SYMLINK, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 8 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_WRONG_TYPE | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 4 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| CREATE | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 1 0 0 0 0 1 +| NFS4ERR_ACCESS, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 8 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_BADCHAR, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 7 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_BADOWNER, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 7 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_BADXDR, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 8 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_DELAY, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 6 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_EXIST, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 7 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_INVAL, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,,, 3 9 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_MOVED, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 8 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_NOFILEHANDLE, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 8 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_NOTDIR, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 10 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_PERM, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 7 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_REP_TOO_BIG_TO_CACHE, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 6 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_REQ_TOO_BIG, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 4 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_RETRY_UNCACHED_REP, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 9 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_SERVERFAULT, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 8 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_TOO_MANY_OPS, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 5 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_UNSAFE_COMPOUND | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 5 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| CREATE_SESSION | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 3 0 0 0 0 1 +| NFS4ERR_BADXDR, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 8 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_DEADSESSION, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 8 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_INVAL, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 6 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_NOT_ONLY_OP, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 8 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_REP_TOO_BIG, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 4 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_REP_TOO_BIG_TO_CACHE, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 6 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_REQ_TOO_BIG, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 4 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_RETRY_UNCACHED_REP, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 6 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_SEQ_MISORDERED, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 5 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_SERVERFAULT, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 4 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_STALE_CLIENTID, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 9 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_TOO_MANY_OPS, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 9 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| DELEGPURGE | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 2 0 0 0 0 1 +| NFS4ERR_BADXDR, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 8 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_DELAY, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 7 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_OP_NOT_IN_SESSION, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 6 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_REP_TOO_BIG, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 4 0 0 0 0 1 +| | | | | | | BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 7 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 11 , 1 10 0 0 0 0 0 +[Page 382] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 7 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 7 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 7 0 no 0 4 0 0 0 0 1 +| | | | | | | BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_REP_TOO_BIG_TO_CACHE, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 6 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_REQ_TOO_BIG, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 4 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_RETRY_UNCACHED_REP, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 6 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_SERVERFAULT, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 10 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_WRONG_CRED | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 4 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| DELEGRETURN | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 2 0 0 0 0 1 +| NFS4ERR_ADMIN_REVOKED, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 8 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_BAD_STATEID, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 9 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_DELAY, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 8 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_EXPIRED, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 8 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_INVAL, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 6 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_NOFILEHANDLE, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 8 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_OLD_STATEID, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 4 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_OP_NOT_IN_SESSION, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 6 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_REP_TOO_BIG, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 4 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_REP_TOO_BIG_TO_CACHE, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 6 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_REQ_TOO_BIG, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 4 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_RETRY_UNCACHED_REP, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 6 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_SERVERFAULT, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 8 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_TOO_MANY_OPS, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 9 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| DESTROY_CLIENTID | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 4 0 0 0 0 1 +| NFS4ERR_BADXDR, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 8 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_DEADSESSION, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 8 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_NOT_ONLY_OP, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 9 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_REP_TOO_BIG_TO_CACHE, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 6 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_REQ_TOO_BIG, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 4 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_RETRY_UNCACHED_REP, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 6 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_SERVERFAULT, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 4 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_STALE_CLIENTID, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 5 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_TOO_MANY_OPS, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 9 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| DESTROY_SESSION | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 3 0 0 0 0 1 +| NFS4ERR_BACK_CHAN_BUSY, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 5 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_BADSESSION, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 8 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_CB_PATH_DOWN, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 5 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_CONN_NOT_BOUND_TO_SESSION, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 7 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_DEADSESSION, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 8 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_NOT_ONLY_OP, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 9 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_REP_TOO_BIG_TO_CACHE, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 6 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_REQ_TOO_BIG, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 4 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_RETRY_UNCACHED_REP, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 6 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_SERVERFAULT, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 4 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_STALE_CLIENTID, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 5 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_TOO_MANY_OPS, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 9 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| EXCHANGE_ID | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 2 0 0 0 0 1 +| NFS4ERR_BADCHAR, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 7 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_CLID_INUSE, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 9 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_DELAY, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 8 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_HASH_ALG_UNSUPP, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 8 0 0 0 0 1 +| | | | | | | BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 7 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 11 , 1 10 0 0 0 0 0 +[Page 383] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 7 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 7 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 7 0 no 0 4 0 0 0 0 1 +| | | | | | | BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_NOENT, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 8 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_NOT_SAME, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 8 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_REP_TOO_BIG_TO_CACHE, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 6 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_REQ_TOO_BIG, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 4 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_RETRY_UNCACHED_REP, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 6 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_SERVERFAULT, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 9 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| FREE_STATEID | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 3 0 0 0 0 1 +| NFS4ERR_BADXDR, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 8 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_DEADSESSION, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 8 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_LOCKS_HELD, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 9 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_OP_NOT_IN_SESSION, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 6 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_REP_TOO_BIG, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 4 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_REP_TOO_BIG_TO_CACHE, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 6 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_REQ_TOO_BIG, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 4 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_RETRY_UNCACHED_REP, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 6 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_SERVERFAULT, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 10 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_WRONG_CRED | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 4 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| GET_DIR_DELEGATION | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 4 0 0 0 0 1 +| NFS4ERR_ACCESS, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 7 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_DEADSESSION, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 8 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_DIRDELEG_UNAVAIL, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 5 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_FHEXPIRED, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 7 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_INVAL, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,,, 3 9 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_NOFILEHANDLE, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 8 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_NOTSUPP, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 4 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_OP_NOT_IN_SESSION, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 6 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_REP_TOO_BIG, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 4 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_REP_TOO_BIG_TO_CACHE, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 6 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_REQ_TOO_BIG, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 4 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_RETRY_UNCACHED_REP, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 6 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_SERVERFAULT, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 8 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_TOO_MANY_OPS | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 4 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| GETATTR | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 2 0 0 0 0 1 +| NFS4ERR_ACCESS, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 7 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_DEADSESSION, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 8 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_FHEXPIRED, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 7 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_INVAL, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,,, 3 9 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_NOFILEHANDLE, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 5 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_OP_NOT_IN_SESSION, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 6 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_REP_TOO_BIG, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 4 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_REP_TOO_BIG_TO_CACHE, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 6 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_REQ_TOO_BIG, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 4 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_RETRY_UNCACHED_REP, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 6 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_SERVERFAULT, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 8 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_TOO_MANY_OPS, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 9 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| GETDEVICEINFO | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 3 0 0 0 0 1 +| NFS4ERR_BADXDR, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 8 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_DELAY, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 6 0 0 0 0 1 +| | | | | | | BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 7 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 11 , 1 10 0 0 0 0 0 +[Page 384] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 7 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 7 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 7 0 no 0 4 0 0 0 0 1 +| | | | | | | BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_NOENT, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 7 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_OP_NOT_IN_SESSION, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 6 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_REP_TOO_BIG, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 4 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_REP_TOO_BIG_TO_CACHE, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 6 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_REQ_TOO_BIG, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 4 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_RETRY_UNCACHED_REP, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 6 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_SERVERFAULT, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 8 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_TOO_MANY_OPS, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 5 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_UNKNOWN_LAYOUTTYPE | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 6 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| GETDEVICELIST | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 3 0 0 0 0 1 +| NFS4ERR_BADXDR, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 8 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_DEADSESSION, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 8 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_FHEXPIRED, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 7 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_IO, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 7 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_NOTSUPP, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 7 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_OP_NOT_IN_SESSION, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 6 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_REP_TOO_BIG, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 4 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_REP_TOO_BIG_TO_CACHE, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 6 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_REQ_TOO_BIG, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 4 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_RETRY_UNCACHED_REP, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 6 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_SERVERFAULT, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 10 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_UNKNOWN_LAYOUTTYPE | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 6 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| GETFH | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 1 0 0 0 0 1 +| NFS4ERR_FHEXPIRED, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 7 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_NOFILEHANDLE, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 5 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_OP_NOT_IN_SESSION, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 9 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| ILLEGAL | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 2 0 0 0 0 1 +| NFS4ERR_BADXDR, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 7 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| LAYOUTCOMMIT | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 3 0 0 0 0 1 +| NFS4ERR_ACCESS, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 8 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_ATTRNOTSUPP, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 8 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_BADLAYOUT, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 7 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_DEADSESSION, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 8 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_DELEG_REVOKED, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 8 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_FBIG, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 7 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_GRACE, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,,, 3 9 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_ISDIR | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 6 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_NOFILEHANDLE, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 8 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_NO_GRACE, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 4 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_OP_NOT_IN_SESSION, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 6 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_RECLAIM_BAD, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 4 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_RECLAIM_CONFLICT, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 5 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_REP_TOO_BIG, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 4 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_REP_TOO_BIG_TO_CACHE, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 6 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_REQ_TOO_BIG, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 4 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_RETRY_UNCACHED_REP, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 6 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_SERVERFAULT, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 8 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_SYMLINK, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 8 0 0 0 0 1 +| | | | | | | BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 7 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 11 , 1 10 0 0 0 0 0 +[Page 385] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 7 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 7 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 7 0 no 0 4 0 0 0 0 1 +| | | | | | | BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_UNKNOWN_LAYOUTTYPE, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 6 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_WRONG_CRED | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 4 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| LAYOUTGET | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 2 0 0 0 0 1 +| NFS4ERR_ACCESS, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 8 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_BADIOMODE, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 8 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_BADXDR, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 8 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_DEADSESSION, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 8 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_DELEG_REVOKED, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 8 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_FHEXPIRED, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 7 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_INVAL, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 6 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_LAYOUTTRYLATER, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 5 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_LAYOUTUNAVAILABLE, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 10 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_MOVED, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 8 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_NOSPC, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 7 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_OLD_STATEID, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 8 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_OP_NOT_IN_SESSION, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 6 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_RECALLCONFLICT, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 5 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_REP_TOO_BIG, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 4 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_REP_TOO_BIG_TO_CACHE, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 6 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_REQ_TOO_BIG, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 4 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_RETRY_UNCACHED_REP, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 6 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_SERVERFAULT, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 8 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_TOOSMALL, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 8 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_UNKNOWN_LAYOUTTYPE, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 6 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_WRONG_TYPE | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 4 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| LAYOUTRETURN | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 3 0 0 0 0 1 +| NFS4ERR_ADMIN_REVOKED, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 8 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_BAD_STATEID, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 9 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_DELAY, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 8 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_EXPIRED, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 8 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_GRACE, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 6 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_ISDIR, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 6 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_NOFILEHANDLE, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 8 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_NO_GRACE, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 8 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_OP_NOT_IN_SESSION, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 6 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_REP_TOO_BIG, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 4 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_REP_TOO_BIG_TO_CACHE, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 6 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_REQ_TOO_BIG, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 4 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_RETRY_UNCACHED_REP, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 6 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_SERVERFAULT, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 8 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_TOO_MANY_OPS, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 5 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_UNKNOWN_LAYOUTTYPE, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 6 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_WRONG_CRED, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 8 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| LINK | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 1 0 0 0 0 1 +| NFS4ERR_ACCESS, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 7 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_BADNAME, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 7 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_DEADSESSION, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 8 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_DQUOT, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 6 0 0 0 0 1 +| | | | | | | BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 7 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 11 , 1 10 0 0 0 0 0 +[Page 386] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 7 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 7 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 7 0 no 0 4 0 0 0 0 1 +| | | | | | | BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_FHEXPIRED, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 8 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_GRACE, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 6 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_ISDIR, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,,, 3 10 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_MOVED, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 8 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_NOFILEHANDLE, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 8 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_NOTDIR, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 7 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_OP_NOT_IN_SESSION, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 6 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_REP_TOO_BIG, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 5 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_REP_TOO_BIG_TO_CACHE, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 6 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_REQ_TOO_BIG, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 5 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_RETRY_UNCACHED_REP, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 10 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_SERVERFAULT, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 8 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_SYMLINK, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 8 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_WRONGSEC, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 8 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_XDEV | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 3 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| LOCK | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 1 0 0 0 0 1 +| NFS4ERR_ACCESS, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 8 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_BADXDR, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 8 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_BAD_STATEID, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 8 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_DEADSESSION, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 8 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_DENIED, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 7 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_FHEXPIRED, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 7 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_INVAL, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 6 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_LOCK_NOTSUPP, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 10 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_MOVED, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 8 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_NO_GRACE, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 8 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_OPENMODE, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 4 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_OP_NOT_IN_SESSION, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 6 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_RECLAIM_BAD, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 5 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_RECLAIM_CONFLICT, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 6 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_REP_TOO_BIG, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 5 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_REP_TOO_BIG_TO_CACHE, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 6 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_REQ_TOO_BIG, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 5 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_RETRY_UNCACHED_REP, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 10 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_SERVERFAULT, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 8 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_SYMLINK, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 8 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_WRONG_CRED, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 8 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| LOCKT | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 1 0 0 0 0 1 +| NFS4ERR_ACCESS, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 7 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_BAD_RANGE, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 9 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_DELAY, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 7 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_FHEXPIRED, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 7 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_INVAL, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 6 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_LOCK_RANGE, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 8 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_NOFILEHANDLE, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 5 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_OP_NOT_IN_SESSION, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 6 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_REP_TOO_BIG, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 5 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_REP_TOO_BIG_TO_CACHE, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 6 0 0 0 0 1 +| | | | | | | BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 7 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 11 , 1 10 0 0 0 0 0 +[Page 387] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 7 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 7 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 7 0 no 0 4 0 0 0 0 1 +| | | | | | | BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_REQ_TOO_BIG, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 4 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_RETRY_UNCACHED_REP, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 9 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_STALE, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 7 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_TOO_MANY_OPS, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 9 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_WRONG_TYPE | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 4 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| LOCKU | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 1 0 0 0 0 1 +| NFS4ERR_ACCESS, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 8 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_BADXDR, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 7 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_BAD_STATEID, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 9 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_DELAY, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 7 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_FHEXPIRED, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 7 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_LOCK_RANGE, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 7 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_NOFILEHANDLE, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 10 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_OP_NOT_IN_SESSION, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 6 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_REP_TOO_BIG, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 4 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_REP_TOO_BIG_TO_CACHE, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 6 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_REQ_TOO_BIG, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 4 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_RETRY_UNCACHED_REP, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 6 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_SERVERFAULT, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 8 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_TOO_MANY_OPS, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 9 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| LOOKUP | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 1 0 0 0 0 1 +| NFS4ERR_ACCESS, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 7 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_BADNAME, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 7 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_DEADSESSION, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 8 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_FHEXPIRED, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 7 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_IO, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 6 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_NAMETOOLONG, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 8 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_NOFILEHANDLE, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 8 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_OP_NOT_IN_SESSION, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 6 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_REP_TOO_BIG, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 4 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_REP_TOO_BIG_TO_CACHE, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 6 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_REQ_TOO_BIG, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 4 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_RETRY_UNCACHED_REP, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 6 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_SERVERFAULT, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 8 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_SYMLINK, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 8 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_WRONGSEC | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 4 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| LOOKUPP | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 2 0 0 0 0 1 +| NFS4ERR_ACCESS, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 8 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_DELAY, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 7 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_IO, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,,, 3 9 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_NOFILEHANDLE, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 8 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_OP_NOT_IN_SESSION, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 6 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_REP_TOO_BIG, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 4 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_REP_TOO_BIG_TO_CACHE, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 6 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_REQ_TOO_BIG, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 4 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_RETRY_UNCACHED_REP, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 6 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_SERVERFAULT, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 8 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_SYMLINK, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 8 0 0 0 0 1 +| | | | | | | BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 7 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 11 , 1 10 0 0 0 0 0 +[Page 388] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 7 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 7 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 7 0 no 0 4 0 0 0 0 1 +| | | | | | | BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_WRONGSEC | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 4 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NVERIFY | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 2 0 0 0 0 1 +| NFS4ERR_ACCESS, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 8 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_BADCHAR, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 7 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_DEADSESSION, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 8 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_FHEXPIRED, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 7 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_INVAL, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,,, 3 9 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_NOFILEHANDLE, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 5 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_OP_NOT_IN_SESSION, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 6 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_REP_TOO_BIG, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 4 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_REP_TOO_BIG_TO_CACHE, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 6 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_REQ_TOO_BIG, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 4 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_RETRY_UNCACHED_REP, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 9 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_SERVERFAULT, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 8 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_TOO_MANY_OPS, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 5 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_UNKNOWN_LAYOUTTYPE, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 6 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_WRONG_TYPE | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 4 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| OPEN | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 1 0 0 0 0 1 +| NFS4ERR_ACCESS, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 8 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_ATTRNOTSUPP, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 8 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_BADNAME, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 7 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_BADXDR, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 8 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_DEADSESSION, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 8 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_DELEG_ALREADY_WANTED, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 6 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_DELEG_REVOKED, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 8 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_EXIST, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 7 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_FBIG, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 7 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_GRACE, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 6 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_ISDIR, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,,, 3 9 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_NAMETOOLONG, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 8 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_NOFILEHANDLE, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 8 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_NOTDIR, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 7 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_OLD_STATEID, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 4 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_OP_NOT_IN_SESSION, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 9 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_RECLAIM_BAD, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 4 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_RECLAIM_CONFLICT, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 5 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_REP_TOO_BIG, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 4 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_REP_TOO_BIG_TO_CACHE, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 6 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_REQ_TOO_BIG, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 4 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_RETRY_UNCACHED_REP, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 9 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_SERVERFAULT, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 10 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_STALE, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 7 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_TOO_MANY_OPS, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 5 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_UNSAFE_COMPOUND, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 10 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_WRONG_TYPE | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 4 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| OPEN_CONFIRM | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 3 0 0 0 0 1 +| NFS4ERR_NOTSUPP | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 3 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 7 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 11 , 1 10 0 0 0 0 0 +[Page 389] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 7 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 7 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 7 0 no 0 4 0 0 0 0 1 +| OPEN_DOWNGRADE | | | | | BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 3 0 0 0 0 1 +| NFS4ERR_ADMIN_REVOKED, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 8 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_BAD_STATEID, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 9 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_DELAY, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 7 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_FHEXPIRED, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 7 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_MOVED, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 8 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_OLD_STATEID, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 4 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_OP_NOT_IN_SESSION, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 6 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_REP_TOO_BIG, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 4 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_REP_TOO_BIG_TO_CACHE, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 6 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_REQ_TOO_BIG, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 4 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_RETRY_UNCACHED_REP, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 9 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_SERVERFAULT, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 8 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_TOO_MANY_OPS, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 9 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| OPENATTR | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 2 0 0 0 0 1 +| NFS4ERR_ACCESS, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 7 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_DEADSESSION, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 8 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_DQUOT, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 7 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_IO, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,,, 3 9 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_NOFILEHANDLE, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 8 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_NOTSUPP, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 4 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_OP_NOT_IN_SESSION, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 6 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_REP_TOO_BIG, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 4 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_REP_TOO_BIG_TO_CACHE, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 6 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_REQ_TOO_BIG, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 4 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_RETRY_UNCACHED_REP, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 9 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_SERVERFAULT, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 8 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_TOO_MANY_OPS, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 5 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_UNSAFE_COMPOUND, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 5 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_WRONG_TYPE | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 4 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| PUTFH | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 1 0 0 0 0 1 +| NFS4ERR_BADHANDLE, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 7 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_DEADSESSION, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 8 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_MOVED, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 9 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_REP_TOO_BIG, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 4 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_REP_TOO_BIG_TO_CACHE, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 6 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_REQ_TOO_BIG, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 4 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_RETRY_UNCACHED_REP, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 6 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_SERVERFAULT, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 8 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_TOO_MANY_OPS, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 8 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| PUTPUBFH | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 2 0 0 0 0 1 +| NFS4ERR_DEADSESSION, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 8 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_OP_NOT_IN_SESSION, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 6 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_REP_TOO_BIG, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 4 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_REP_TOO_BIG_TO_CACHE, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 6 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_REQ_TOO_BIG, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 4 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_RETRY_UNCACHED_REP, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 6 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_SERVERFAULT, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 10 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_WRONGSEC | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 4 0 0 0 0 1 +| | | | | | | BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 7 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 11 , 1 10 0 0 0 0 0 +[Page 390] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 7 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 7 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 7 0 no 0 4 0 0 0 0 1 +| | | | | | | BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| PUTROOTFH | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 2 0 0 0 0 1 +| NFS4ERR_DEADSESSION, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 8 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_OP_NOT_IN_SESSION, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 6 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_REP_TOO_BIG, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 4 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_REP_TOO_BIG_TO_CACHE, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 6 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_REQ_TOO_BIG, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 4 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_RETRY_UNCACHED_REP, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 6 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_SERVERFAULT, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 10 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_WRONGSEC | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 4 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| READ | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 1 0 0 0 0 1 +| NFS4ERR_ACCESS, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 8 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_BADXDR, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 8 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_DEADSESSION, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 8 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_DELEG_REVOKED, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 8 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_FHEXPIRED, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 7 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_INVAL, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,,, 3 9 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_LOCKED, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 7 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_NOFILEHANDLE, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 10 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_OPENMODE, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 4 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_OP_NOT_IN_SESSION, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 6 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_PNFS_IO_HOLE, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 5 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_PNFS_NO_LAYOUT, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 5 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_REP_TOO_BIG, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 4 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_REP_TOO_BIG_TO_CACHE, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 6 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_REQ_TOO_BIG, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 4 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_RETRY_UNCACHED_REP, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 6 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_SERVERFAULT, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 8 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_SYMLINK, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 8 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_WRONG_TYPE | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 4 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| READDIR | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 2 0 0 0 0 1 +| NFS4ERR_ACCESS, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 7 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_BAD_COOKIE, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 9 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_DELAY, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 7 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_INVAL, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,,, 3 9 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_NOFILEHANDLE, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 8 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_NOT_SAME, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 4 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_OP_NOT_IN_SESSION, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 6 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_REP_TOO_BIG, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 4 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_REP_TOO_BIG_TO_CACHE, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 6 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_REQ_TOO_BIG, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 4 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_RETRY_UNCACHED_REP, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 6 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_SERVERFAULT, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 8 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_TOOSMALL, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 8 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| READLINK | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 2 0 0 0 0 1 +| NFS4ERR_ACCESS, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 8 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_DELAY, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 7 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_INVAL, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,,, 3 9 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_NOFILEHANDLE, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 5 0 0 0 0 1 +| | | | | | | BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 7 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 11 , 1 10 0 0 0 0 0 +[Page 391] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 7 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 7 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 7 0 no 0 4 0 0 0 0 1 +| | | | | | | BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_OP_NOT_IN_SESSION, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 6 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_REP_TOO_BIG, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 5 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_REP_TOO_BIG_TO_CACHE, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 6 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_REQ_TOO_BIG, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 5 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_RETRY_UNCACHED_REP, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 6 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_SERVERFAULT, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 8 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_TOO_MANY_OPS, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 9 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| RECLAIM_COMPLETE | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 4 0 0 0 0 1 +| NFS4ERR_BADXDR, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 10 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_DEADSESSION, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 8 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_FHEXPIRED, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 7 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_MOVED, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 8 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_OP_NOT_IN_SESSION, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 6 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_REP_TOO_BIG, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 5 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_REP_TOO_BIG_TO_CACHE, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 6 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_REQ_TOO_BIG, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 5 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_RETRY_UNCACHED_REP, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 6 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_SERVERFAULT, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 8 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_TOO_MANY_OPS, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 10 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_WRONG_TYPE | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 4 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| RELEASE_LOCKOWNER | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 4 0 0 0 0 1 +| NFS4ERR_NOTSUPP | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 3 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| REMOVE | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 1 0 0 0 0 1 +| NFS4ERR_ACCESS, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 7 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_BADNAME, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 7 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_DEADSESSION, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 8 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_FHEXPIRED, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 8 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_GRACE, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,,, 3 10 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_MOVED, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 8 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_NOENT, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 8 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_NOTDIR, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 7 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_OP_NOT_IN_SESSION, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 6 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_REP_TOO_BIG, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 5 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_REP_TOO_BIG_TO_CACHE, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 6 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_REQ_TOO_BIG, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 5 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_RETRY_UNCACHED_REP, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 10 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_SERVERFAULT, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 8 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_TOO_MANY_OPS | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 5 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| RENAME | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 1 0 0 0 0 1 +| NFS4ERR_ACCESS, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 7 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_BADNAME, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 7 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_DEADSESSION, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 8 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_DQUOT, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 6 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_FHEXPIRED, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 8 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_GRACE, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,,, 3 10 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_MLINK, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 6 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_NAMETOOLONG, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 8 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_NOFILEHANDLE, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 8 0 0 0 0 1 +| | | | | | | BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 7 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 11 , 1 10 0 0 0 0 0 +[Page 392] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 7 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 7 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 7 0 no 0 4 0 0 0 0 1 +| | | | | | | BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_NOTDIR, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 7 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_OP_NOT_IN_SESSION, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 6 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_REP_TOO_BIG, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 4 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_REP_TOO_BIG_TO_CACHE, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 6 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_REQ_TOO_BIG, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 4 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_RETRY_UNCACHED_REP, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 9 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_SERVERFAULT, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 8 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_TOO_MANY_OPS, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 8 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_XDEV | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 3 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| RENEW | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 1 0 0 0 0 1 +| NFS4ERR_NOTSUPP | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 3 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| RESTOREFH | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 2 0 0 0 0 1 +| NFS4ERR_DEADSESSION, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 8 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_MOVED, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 8 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_OP_NOT_IN_SESSION, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 6 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_REP_TOO_BIG, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 4 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_REP_TOO_BIG_TO_CACHE, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 6 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_REQ_TOO_BIG, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 4 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_RETRY_UNCACHED_REP, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 6 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_SERVERFAULT, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 8 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_TOO_MANY_OPS, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 8 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| SAVEFH | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 1 0 0 0 0 1 +| NFS4ERR_DEADSESSION, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 8 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_MOVED, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 8 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_OP_NOT_IN_SESSION, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 6 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_REP_TOO_BIG, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 4 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_REP_TOO_BIG_TO_CACHE, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 6 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_REQ_TOO_BIG, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 4 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_RETRY_UNCACHED_REP, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 6 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_SERVERFAULT, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 8 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_TOO_MANY_OPS | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 4 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| SECINFO | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 2 0 0 0 0 1 +| NFS4ERR_ACCESS, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 7 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_BADNAME, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 7 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_DEADSESSION, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 8 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_FHEXPIRED, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 7 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_MOVED, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 8 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_NOENT, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 8 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_NOTDIR, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 10 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_REP_TOO_BIG, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 4 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_REP_TOO_BIG_TO_CACHE, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 6 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_REQ_TOO_BIG, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 4 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_RETRY_UNCACHED_REP, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 6 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_SERVERFAULT, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 8 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_TOO_MANY_OPS | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 4 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| SECINFO_NO_NAME | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 3 0 0 0 0 1 +| NFS4ERR_ACCESS, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 7 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_DEADSESSION, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 8 0 0 0 0 1 +| | | | | | | BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 7 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 11 , 1 10 0 0 0 0 0 +[Page 393] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 7 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 7 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 7 0 no 0 4 0 0 0 0 1 +| | | | | | | BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_FHEXPIRED, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 7 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_MOVED, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 6 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_NOFILEHANDLE, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 8 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_NOTSUPP, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 4 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_OP_NOT_IN_SESSION, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 6 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_REP_TOO_BIG, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 5 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_REP_TOO_BIG_TO_CACHE, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 6 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_REQ_TOO_BIG, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 5 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_RETRY_UNCACHED_REP, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 6 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_SERVERFAULT, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 8 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_TOO_MANY_OPS | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 5 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| SEQUENCE | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 2 0 0 0 0 1 +| NFS4ERR_BADSESSION, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 8 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_BADXDR, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 8 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_CONN_NOT_BOUND_TO_SESSION, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 8 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_DEADSESSION, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 8 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_REP_TOO_BIG, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 5 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_REP_TOO_BIG_TO_CACHE, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 6 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_REQ_TOO_BIG, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 5 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_RETRY_UNCACHED_REP, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 6 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_SEQUENCE_POS, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 5 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_SEQ_FALSE_RETRY, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 5 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_SEQ_MISORDERED, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 5 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_TOO_MANY_OPS | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 5 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| SET_SSV | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 2 0 0 0 0 1 +| NFS4ERR_BADXDR, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 3 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_BAD_SESSION_DIGEST, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 6 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_DEADSESSION, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 8 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_INVAL, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 10 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_REP_TOO_BIG, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 5 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_REP_TOO_BIG_TO_CACHE, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 6 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_REQ_TOO_BIG, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 5 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_RETRY_UNCACHED_REP, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 6 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_TOO_MANY_OPS | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 5 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| SETATTR | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 2 0 0 0 0 1 +| NFS4ERR_ACCESS, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 8 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_ATTRNOTSUPP, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 8 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_BADOWNER, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 7 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_BAD_STATEID, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 10 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_DELAY, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 8 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_DQUOT, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 7 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_FBIG, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 7 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_GRACE, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,,, 3 10 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_LOCKED, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 7 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_NOFILEHANDLE, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 8 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_OLD_STATEID, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 8 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_OP_NOT_IN_SESSION, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 9 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_REP_TOO_BIG, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 5 0 0 0 0 1 +| | | | | | | BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 7 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 11 , 1 10 0 0 0 0 0 +[Page 394] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 7 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 7 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 7 0 no 0 4 0 0 0 0 1 +| | | | | | | BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_REP_TOO_BIG_TO_CACHE, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 6 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_REQ_TOO_BIG, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 5 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_RETRY_UNCACHED_REP, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 10 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_SERVERFAULT, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 8 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_TOO_MANY_OPS, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 5 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_UNKNOWN_LAYOUTTYPE, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 6 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_WRONG_TYPE | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 4 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| SETCLIENTID | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 3 0 0 0 0 1 +| NFS4ERR_NOTSUPP | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 3 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| SETCLIENTID_CONFIRM | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 8 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| TEST_STATEID | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 3 0 0 0 0 1 +| NFS4ERR_BADXDR, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 8 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_DELAY, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 10 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_REP_TOO_BIG, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 5 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_REP_TOO_BIG_TO_CACHE, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 6 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_REQ_TOO_BIG, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 5 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_RETRY_UNCACHED_REP, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 6 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_SERVERFAULT, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 10 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| VERIFY | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 1 0 0 0 0 1 +| NFS4ERR_ACCESS, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 8 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_BADCHAR, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 7 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_DEADSESSION, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 8 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_FHEXPIRED, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 7 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_INVAL, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,,, 3 10 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_NOFILEHANDLE, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 9 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_OP_NOT_IN_SESSION, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 6 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_REP_TOO_BIG, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 5 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_REP_TOO_BIG_TO_CACHE, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 6 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_REQ_TOO_BIG, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 5 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_RETRY_UNCACHED_REP, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 6 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_SERVERFAULT, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 8 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_TOO_MANY_OPS, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 5 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_UNKNOWN_LAYOUTTYPE, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 6 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_WRONG_TYPE | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 4 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| WANT_DELEGATION | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 3 0 0 0 0 1 +| NFS4ERR_BADXDR, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 8 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_DELAY, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 3 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_DELEG_ALREADY_WANTED, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 6 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_FHEXPIRED, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 7 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_INVAL, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,,, 3 10 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_NOFILEHANDLE, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 8 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_NO_GRACE, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 4 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_OP_NOT_IN_SESSION, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 6 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_RECALLCONFLICT, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 5 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_RECLAIM_BAD, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 5 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_RECLAIM_CONFLICT, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 6 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_REP_TOO_BIG, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 5 0 0 0 0 1 +| | | | | | | BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 7 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 11 , 1 10 0 0 0 0 0 +[Page 395] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 7 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 7 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 7 0 no 0 4 0 0 0 0 1 +| | | | | | | BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_REP_TOO_BIG_TO_CACHE, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 4 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_REQ_TOO_BIG, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 3 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_RETRY_UNCACHED_REP, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 4 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_SERVERFAULT, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 5 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_TOO_MANY_OPS, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 6 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| WRITE | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 1 0 0 0 0 1 +| NFS4ERR_ACCESS, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 5 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_BADXDR, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 5 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_DEADSESSION, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 5 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_DELEG_REVOKED, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 5 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_EXPIRED, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 4 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_FHEXPIRED, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 5 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_INVAL, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,,, 3 6 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_LOCKED, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 4 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_NOFILEHANDLE, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 5 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_OLD_STATEID, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 5 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_OP_NOT_IN_SESSION, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 4 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_PNFS_IO_HOLE, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 3 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_PNFS_NO_LAYOUT, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 3 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_REP_TOO_BIG, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 3 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_REP_TOO_BIG_TO_CACHE, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 4 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_REQ_TOO_BIG, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 3 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_RETRY_UNCACHED_REP, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 6 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_SERVERFAULT, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 5 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_SYMLINK, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 5 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_WRONG_TYPE | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 3 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 ++----------------------+--------------------------------------------+ +----------------------+--------------------------------------------+ +----------------------+--------------------------------------------+ + +- +-- +--- BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 7 0 ------------------------------------------------------------------ 66 10 0 0 0 0 1 +Table 6 table T Ta Tab Tabl BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 6 no 0 10 0 0 0 0 1 +15.3. Callback 15.3. 1 15 15. 15.3 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 6 .. 2 10 0 0 0 0 1 +This section this T Th Thi This BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 6 no 0 9 0 0 0 0 1 +each callback each e ea eac each BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 6 .( 2 9 0 0 0 0 1 +error) is error) e er err erro BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 7 6 ) 1 10 0 0 0 0 1 +callback operations callback c ca cal call BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 7 6 . 1 7 0 0 0 0 1 +Valid Error valid V Va Val Vali BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 8 no 0 10 0 0 0 0 1 ++-------------------------+-----------------------------------------+ +-------------------------+-----------------------------------------+ +-------------------------+-----------------------------------------+ + +- +-- +--- BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 7 8 ------------------------------------------------------------------ 66 10 0 0 0 0 1 +| Callback | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 8 no 0 3 0 0 0 0 1 +| Errors | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 8 no 0 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 8 no 0 0 0 0 0 0 1 ++-------------------------+-----------------------------------------+ +-------------------------+-----------------------------------------+ +-------------------------+-----------------------------------------+ + +- +-- +--- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 7 8 ------------------------------------------------------------------ 66 10 0 0 0 0 1 +| CB_GETATTR | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 8 no 0 1 0 0 0 0 1 +| NFS4ERR_BADHANDLE, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 8 ,, 2 5 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 8 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 8 no 0 0 0 0 0 0 1 +| NFS4ERR_DELAY, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 8 ,, 2 4 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 8 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 8 no 0 0 0 0 0 0 1 +| NFS4ERR_OP_NOT_IN_SESSION, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 8 , 1 4 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 8 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 8 no 0 0 0 0 0 0 1 +| NFS4ERR_REP_TOO_BIG, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 8 , 1 3 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 8 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 8 no 0 0 0 0 0 0 1 +| NFS4ERR_REP_TOO_BIG_TO_CACHE, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 8 , 1 4 0 0 0 0 1 +| | | | | | | BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 8 no 0 0 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 7 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 11 , 1 10 0 0 0 0 0 +[Page 396] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 7 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 7 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 7 0 no 0 4 0 0 0 0 1 +| | | | | | | BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_REQ_TOO_BIG, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 5 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_RETRY_UNCACHED_REP, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 7 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_SERVERFAULT, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 5 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_TOO_MANY_OPS, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 6 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| CB_ILLEGAL | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 3 0 0 0 0 1 +| NFS4ERR_BADXDR, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 9 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| CB_LAYOUTRECALL | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 4 0 0 0 0 1 +| NFS4ERR_BADHANDLE, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 10 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_BADXDR, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 9 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_DELAY, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 8 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_NOMATCHING_LAYOUT, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 7 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_NOTSUPP, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 4 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_OP_NOT_IN_SESSION, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 7 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_REP_TOO_BIG, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 5 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_REP_TOO_BIG_TO_CACHE, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 8 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_REQ_TOO_BIG, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 5 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_RETRY_UNCACHED_REP, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 7 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_TOO_MANY_OPS, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 6 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_UNKNOWN_LAYOUTTYPE, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 7 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_WRONG_TYPE | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 5 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| CB_NOTIFY | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 3 0 0 0 0 1 +| NFS4ERR_BADHANDLE, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 9 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_BAD_STATEID, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 9 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_INVAL, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 8 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_OP_NOT_IN_SESSION, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 7 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_REP_TOO_BIG, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 5 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_REP_TOO_BIG_TO_CACHE, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 8 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_REQ_TOO_BIG, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 5 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_RETRY_UNCACHED_REP, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 7 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_SERVERFAULT, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 5 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_TOO_MANY_OPS | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 5 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| CB_NOTIFY_DEVICEID | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 5 0 0 0 0 1 +| NFS4ERR_BADXDR, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 8 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_INVAL, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 8 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_OP_NOT_IN_SESSION, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 7 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_REP_TOO_BIG, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 5 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_REP_TOO_BIG_TO_CACHE, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 8 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_REQ_TOO_BIG, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 5 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_RETRY_UNCACHED_REP, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 7 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_SERVERFAULT, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 5 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_TOO_MANY_OPS | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 5 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| CB_NOTIFY_LOCK | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 4 0 0 0 0 1 +| NFS4ERR_BADHANDLE, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 9 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_BAD_STATEID, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 9 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_NOTSUPP, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 4 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_OP_NOT_IN_SESSION, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 7 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_REP_TOO_BIG, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 5 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_REP_TOO_BIG_TO_CACHE, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 8 0 0 0 0 1 +| | | | | | | BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 7 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 11 , 1 10 0 0 0 0 0 +[Page 397] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 7 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 7 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 7 0 no 0 4 0 0 0 0 1 +| | | | | | | BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_REQ_TOO_BIG, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 3 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_RETRY_UNCACHED_REP, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 5 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_SERVERFAULT, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 3 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_TOO_MANY_OPS | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 3 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| CB_PUSH_DELEG | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 2 0 0 0 0 1 +| NFS4ERR_BADHANDLE, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 6 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_DELAY, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 5 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_NOTSUPP, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 3 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_OP_NOT_IN_SESSION, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 4 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_REJECT_DELEG, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 4 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_REP_TOO_BIG, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 3 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_REP_TOO_BIG_TO_CACHE, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 5 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_REQ_TOO_BIG, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 3 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_RETRY_UNCACHED_REP, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 5 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_SERVERFAULT, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 3 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_TOO_MANY_OPS, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 4 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_WRONG_TYPE | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 3 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| CB_RECALL | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 2 0 0 0 0 1 +| NFS4ERR_BADHANDLE, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 6 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_BAD_STATEID, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 6 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_OP_NOT_IN_SESSION, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 4 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_REP_TOO_BIG, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 3 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_REP_TOO_BIG_TO_CACHE, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 5 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_REQ_TOO_BIG, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 3 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_RETRY_UNCACHED_REP, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 5 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_SERVERFAULT, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 3 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_TOO_MANY_OPS | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 3 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| CB_RECALL_ANY | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 2 0 0 0 0 1 +| NFS4ERR_BADXDR, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 5 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_INVAL, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 2 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_OP_NOT_IN_SESSION, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 4 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_REP_TOO_BIG, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 3 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_REP_TOO_BIG_TO_CACHE, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 5 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_REQ_TOO_BIG, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 3 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_RETRY_UNCACHED_REP, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 5 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_TOO_MANY_OPS | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 3 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| CB_RECALLABLE_OBJ_AVAIL | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 10 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_INVAL, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 5 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_OP_NOT_IN_SESSION, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 4 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_REP_TOO_BIG, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 3 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_REP_TOO_BIG_TO_CACHE, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 5 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_REQ_TOO_BIG, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 3 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_RETRY_UNCACHED_REP, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 5 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_SERVERFAULT, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 3 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_TOO_MANY_OPS | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 3 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| CB_RECALL_SLOT | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 2 0 0 0 0 1 +| NFS4ERR_BADXDR, | | | | | BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 7 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 7 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 11 , 1 10 0 0 0 0 0 +[Page 398] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 7 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 7 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 7 0 no 0 4 0 0 0 0 1 +| | | | | | | BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_DELAY, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 2 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_OP_NOT_IN_SESSION, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 4 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_REP_TOO_BIG, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 3 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_REP_TOO_BIG_TO_CACHE, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 4 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_REQ_TOO_BIG, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 3 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_RETRY_UNCACHED_REP, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 4 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_TOO_MANY_OPS | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 3 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| CB_SEQUENCE | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 2 0 0 0 0 1 +| NFS4ERR_BADSESSION, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 5 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_BADXDR, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 6 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_CONN_NOT_BOUND_TO_SESSION, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 5 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_DELAY, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 5 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_REP_TOO_BIG_TO_CACHE, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 4 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_REQ_TOO_BIG, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 3 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_RETRY_UNCACHED_REP, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 4 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_SEQUENCE_POS, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 3 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_SEQ_FALSE_RETRY, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 3 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_SEQ_MISORDERED, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 3 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_TOO_MANY_OPS | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 3 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| CB_WANTS_CANCELLED | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 3 0 0 0 0 1 +| NFS4ERR_BADXDR, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 4 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_NOTSUPP, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 2 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_OP_NOT_IN_SESSION, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 4 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_REP_TOO_BIG, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 3 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_REP_TOO_BIG_TO_CACHE, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 4 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_REQ_TOO_BIG, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 3 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_RETRY_UNCACHED_REP, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 4 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_SERVERFAULT, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 3 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_TOO_MANY_OPS | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 3 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 ++-------------------------+-----------------------------------------+ +-------------------------+-----------------------------------------+ +-------------------------+-----------------------------------------+ + +- +-- +--- BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 7 0 ------------------------------------------------------------------ 66 10 0 0 0 0 1 +Table 7 table T Ta Tab Tabl BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 6 no 0 10 0 0 0 0 1 +15.4. Errors 15.4. 1 15 15. 15.4 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 6 .. 2 10 0 0 0 0 1 ++-----------------------------------+-------------------------------+ +-----------------------------------+-------------------------------+ +-----------------------------------+-------------------------------+ + +- +-- +--- BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 7 7 ------------------------------------------------------------------ 66 10 0 0 0 0 1 +| Error | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 7 no 0 1 0 0 0 0 1 +| Operations | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 7 no 0 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 7 no 0 0 0 0 0 0 1 ++-----------------------------------+-------------------------------+ +-----------------------------------+-------------------------------+ +-----------------------------------+-------------------------------+ + +- +-- +--- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 7 7 ------------------------------------------------------------------ 66 10 0 0 0 0 1 +| NFS4ERR_ACCESS | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 7 no 0 2 0 0 0 0 1 +| ACCESS, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 7 ,,, 3 3 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 7 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 7 no 0 0 0 0 0 0 1 +| GETATTR, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 7 ,, 2 4 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 7 no 0 0 0 0 0 0 1 +| LAYOUTCOMMIT, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 7 ,, 2 3 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 7 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 7 no 0 0 0 0 0 0 1 +| LINK, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 7 ,,,, 4 4 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 7 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 7 no 0 0 0 0 0 0 1 +| LOOKUP, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 7 ,,, 3 4 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 7 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 7 no 0 0 0 0 0 0 1 +| OPEN, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 7 ,,, 3 3 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 7 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 7 no 0 0 0 0 0 0 1 +| READDIR, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 7 ,,, 3 4 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 7 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 7 no 0 0 0 0 0 0 1 +| RENAME, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 7 ,, 2 2 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 7 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 7 no 0 0 0 0 0 0 1 +| SECINFO_NO_NAME, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 7 ,, 2 4 0 0 0 0 1 +| | | | | | | BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 7 no 0 0 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 7 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 11 , 1 10 0 0 0 0 0 +[Page 399] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 7 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 7 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 7 0 no 0 4 0 0 0 0 1 +| | | | | | | BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| VERIFY, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 4 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_ADMIN_REVOKED | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 7 0 0 0 0 1 +| CLOSE, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 6 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| LAYOUTCOMMIT, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 7 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| LAYOUTRETURN, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,,, 3 8 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| OPEN, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,,, 3 8 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| SETATTR, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 5 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_ATTRNOTSUPP | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 6 0 0 0 0 1 +| CREATE, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 7 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NVERIFY, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,,, 3 7 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| VERIFY | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 2 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_BACK_CHAN_BUSY | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 7 0 0 0 0 1 +| DESTROY_SESSION | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 5 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_BADCHAR | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 5 0 0 0 0 1 +| CREATE, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,,, 3 8 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| LOOKUP, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,,, 3 7 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| REMOVE, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,,, 3 7 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| SETATTR, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 5 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_BADHANDLE | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 5 0 0 0 0 1 +| CB_GETATTR, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 9 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| CB_NOTIFY, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 8 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| CB_PUSH_DELEG, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 8 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| PUTFH | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 2 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_BADIOMODE | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 5 0 0 0 0 1 +| CB_LAYOUTRECALL, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 5 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| LAYOUTCOMMIT, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 7 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_BADLAYOUT | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 5 0 0 0 0 1 +| LAYOUTCOMMIT, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 7 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_BADNAME | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 5 0 0 0 0 1 +| CREATE, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,,,, 4 8 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| REMOVE, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 7 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_BADOWNER | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 5 0 0 0 0 1 +| CREATE, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 7 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_BADSESSION | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 6 0 0 0 0 1 +| BIND_CONN_TO_SESSION, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 7 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| CB_SEQUENCE, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 10 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| SEQUENCE | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 3 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_BADSLOT | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 5 0 0 0 0 1 +| CB_SEQUENCE, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 7 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_BADTYPE | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 5 0 0 0 0 1 +| CREATE | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 2 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_BADXDR | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 5 0 0 0 0 1 +| ACCESS, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 7 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| BIND_CONN_TO_SESSION, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 7 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| CB_GETATTR, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 7 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| CB_LAYOUTRECALL, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 8 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| CB_NOTIFY_DEVICEID, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 6 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| CB_NOTIFY_LOCK, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 5 0 0 0 0 1 +| | | | | | | BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 7 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 11 , 1 10 0 0 0 0 0 +[Page 400] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 7 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 7 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 7 0 no 0 4 0 0 0 0 1 +| | | | | | | BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| CB_PUSH_DELEG, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 8 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| CB_RECALLABLE_OBJ_AVAIL, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 7 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| CB_RECALL_ANY, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 5 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| CB_RECALL_SLOT, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 9 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| CB_WANTS_CANCELLED, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 8 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| COMMIT, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 5 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| CREATE_SESSION, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 8 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| DELEGRETURN, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 4 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| DESTROY_CLIENTID, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 5 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| DESTROY_SESSION, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 10 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| FREE_STATEID, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 7 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| GETDEVICEINFO, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 10 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| GET_DIR_DELEGATION, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 9 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| LAYOUTCOMMIT, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 7 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| LAYOUTRETURN, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,,, 3 8 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| LOCKT, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,,, 3 7 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NVERIFY, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,,, 3 7 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| OPEN_DOWNGRADE, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,,, 3 9 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| READDIR, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 8 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| REMOVE, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,,, 3 7 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| SECINFO_NO_NAME, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 8 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| SETATTR, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 5 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| TEST_STATEID, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 7 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| WANT_DELEGATION, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 7 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_BAD_COOKIE | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 6 0 0 0 0 1 +| GETDEVICELIST, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 7 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_BAD_HIGH_SLOT | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 7 0 0 0 0 1 +| CB_RECALL_SLOT, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 9 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| SEQUENCE | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 3 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_BAD_RANGE | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 5 0 0 0 0 1 +| LOCK, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 6 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_BAD_SESSION_DIGEST | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 8 0 0 0 0 1 +| BIND_CONN_TO_SESSION, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 10 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_BAD_STATEID | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 6 0 0 0 0 1 +| CB_LAYOUTRECALL, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 8 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| CB_NOTIFY_LOCK, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 8 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| CLOSE, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 6 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| FREE_STATEID, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 7 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| LAYOUTRETURN, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,,, 3 8 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| OPEN, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,,, 3 8 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| SETATTR, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 5 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_CB_PATH_DOWN | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 6 0 0 0 0 1 +| DESTROY_SESSION | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 5 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_CLID_INUSE | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 6 0 0 0 0 1 +| CREATE_SESSION, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 8 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_CLIENTID_BUSY | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 7 0 0 0 0 1 +| DESTROY_CLIENTID | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 5 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 7 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 11 , 1 10 0 0 0 0 0 +[Page 401] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 7 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 7 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 7 0 no 0 4 0 0 0 0 1 +| NFS4ERR_COMPLETE_ALREADY | | | | | BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 3 0 0 0 0 1 +| RECLAIM_COMPLETE | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 2 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_CONN_NOT_BOUND_TO_SESSION | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 10 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| SEQUENCE | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_DEADLOCK | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 2 0 0 0 0 1 +| LOCK | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_DEADSESSION | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 3 0 0 0 0 1 +| ACCESS, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 3 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| BIND_CONN_TO_SESSION, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 4 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| COMMIT, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 2 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| CREATE_SESSION, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 4 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| DELEGRETURN, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 2 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| DESTROY_CLIENTID, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 2 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| DESTROY_SESSION, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 4 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| FREE_STATEID, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 3 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| GETDEVICEINFO, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 4 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| GET_DIR_DELEGATION, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 3 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| LAYOUTCOMMIT, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 3 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| LAYOUTRETURN, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,,, 3 4 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| LOCKT, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,,, 3 3 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| LOOKUPP, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,,, 3 3 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| OPENATTR, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 4 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| PUTFH, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,,, 3 4 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| READ, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,,, 3 3 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| RECLAIM_COMPLETE, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 4 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| RENAME, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,,, 3 4 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| SECINFO, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 4 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| SEQUENCE, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,,, 3 4 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| TEST_STATEID, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 3 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| WANT_DELEGATION, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 3 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_DELAY | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 2 0 0 0 0 1 +| ACCESS, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 3 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| BIND_CONN_TO_SESSION, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 3 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| CB_GETATTR, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 4 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| CB_NOTIFY, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| CB_NOTIFY_DEVICEID, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 3 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| CB_NOTIFY_LOCK, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 2 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| CB_PUSH_DELEG, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 4 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| CB_RECALLABLE_OBJ_AVAIL, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 3 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| CB_RECALL_ANY, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 2 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| CB_RECALL_SLOT, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 4 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| CB_WANTS_CANCELLED, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 4 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| COMMIT, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 2 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| CREATE_SESSION, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 4 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| DELEGRETURN, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 2 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| DESTROY_CLIENTID, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 2 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| DESTROY_SESSION, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 4 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| FREE_STATEID, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 3 0 0 0 0 1 +| | | | | | | BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 7 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 11 , 1 10 0 0 0 0 0 +[Page 402] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 7 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 7 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 7 0 no 0 4 0 0 0 0 1 +| | | | | | | BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| GETDEVICEINFO, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 10 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| GET_DIR_DELEGATION, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 6 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| LAYOUTCOMMIT, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 7 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| LAYOUTRETURN, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,,, 3 8 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| LOCKT, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,,, 3 7 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| LOOKUPP, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,,, 3 7 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| OPENATTR, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 8 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| PUTFH, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,,, 3 8 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| READ, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,,, 3 7 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| RECLAIM_COMPLETE, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 8 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| RENAME, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 5 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| SECINFO_NO_NAME, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 8 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| SETATTR, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 5 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| TEST_STATEID, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 7 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| WANT_DELEGATION, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 7 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_DELEG_ALREADY_WANTED | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 9 0 0 0 0 1 +| OPEN, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 7 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_DELEG_REVOKED | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 7 0 0 0 0 1 +| DELEGRETURN, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 8 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| LAYOUTGET, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 7 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| OPEN, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,,, 3 8 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_DENIED | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 5 0 0 0 0 1 +| LOCK, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 4 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_DIRDELEG_UNAVAIL | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 7 0 0 0 0 1 +| GET_DIR_DELEGATION | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 6 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_DQUOT | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 4 0 0 0 0 1 +| CREATE, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,,, 3 7 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| OPEN, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,,, 3 7 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| SETATTR, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 5 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_ENCR_ALG_UNSUPP | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 7 0 0 0 0 1 +| EXCHANGE_ID | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 4 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_EXIST | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 4 0 0 0 0 1 +| CREATE, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,,, 3 8 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_EXPIRED | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 5 0 0 0 0 1 +| CLOSE, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 6 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| LAYOUTCOMMIT, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 8 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| LOCK, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,,, 3 6 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| OPEN_DOWNGRADE, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 7 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| SETATTR, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 5 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_FBIG | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 4 0 0 0 0 1 +| LAYOUTCOMMIT, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,,, 3 9 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| WRITE | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 2 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_FHEXPIRED | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 5 0 0 0 0 1 +| ACCESS, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,,, 3 7 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| CREATE, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,,, 3 10 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| GETDEVICELIST, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 7 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| GET_DIR_DELEGATION, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 6 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| LAYOUTCOMMIT, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 7 0 0 0 0 1 +| | | | | | | BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 7 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 11 , 1 10 0 0 0 0 0 +[Page 403] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 7 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 7 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 7 0 no 0 4 0 0 0 0 1 +| | | | | | | BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| LAYOUTRETURN, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,,, 3 8 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| LOCKT, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,,, 3 7 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| LOOKUPP, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,,, 3 7 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| OPENATTR, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 8 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| READ, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,,, 3 7 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| RECLAIM_COMPLETE, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 8 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| RENAME, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,,, 3 8 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| SECINFO, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 8 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| SETATTR, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 5 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| WANT_DELEGATION, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 7 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_FILE_OPEN | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 5 0 0 0 0 1 +| LINK, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 6 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_GRACE | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 4 0 0 0 0 1 +| GETATTR, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 9 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| LAYOUTCOMMIT, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 7 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| LAYOUTRETURN, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,,, 3 8 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| LOCKT, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,,,, 4 8 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| REMOVE, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,,, 3 7 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| VERIFY, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 7 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| WRITE | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 2 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_HASH_ALG_UNSUPP | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 7 0 0 0 0 1 +| EXCHANGE_ID | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 4 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_INVAL | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 4 0 0 0 0 1 +| ACCESS, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 7 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| BIND_CONN_TO_SESSION, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 7 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| CB_GETATTR, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 9 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| CB_NOTIFY, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 3 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| CB_NOTIFY_DEVICEID, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 6 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| CB_PUSH_DELEG, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 5 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| CB_RECALLABLE_OBJ_AVAIL, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 7 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| CB_RECALL_ANY, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 7 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| CREATE_SESSION, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 9 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| EXCHANGE_ID, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 7 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| GETDEVICEINFO, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 10 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| GET_DIR_DELEGATION, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 6 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| LAYOUTCOMMIT, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 7 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| LAYOUTRETURN, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,,, 3 8 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| LOCKT, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,,, 3 7 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NVERIFY, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 5 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| OPEN_DOWNGRADE, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 7 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| READDIR, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 6 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| RECLAIM_COMPLETE, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 8 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| RENAME, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 5 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| SECINFO_NO_NAME, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 8 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| SET_SSV, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 5 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| WANT_DELEGATION, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 7 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_IO | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 3 0 0 0 0 1 +| ACCESS, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,,, 3 7 0 0 0 0 1 +| | | | | | | BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 7 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 11 , 1 10 0 0 0 0 0 +[Page 404] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 7 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 7 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 7 0 no 0 4 0 0 0 0 1 +| | | | | | | BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| GETATTR, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 7 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| GET_DIR_DELEGATION, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 6 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| LAYOUTCOMMIT, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 7 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| LINK, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,,, 3 7 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NVERIFY, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,,, 3 7 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| READ, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,,, 3 7 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| REMOVE, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,,, 3 7 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| VERIFY, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 7 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| WRITE | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 2 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_ISDIR | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 4 0 0 0 0 1 +| COMMIT, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 7 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| LAYOUTRETURN, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,,, 3 8 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| LOCKT, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,,, 3 7 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_LAYOUTTRYLATER | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 7 0 0 0 0 1 +| LAYOUTGET | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 3 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_LAYOUTUNAVAILABLE | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 8 0 0 0 0 1 +| LAYOUTGET | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 3 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_LOCKED | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 5 0 0 0 0 1 +| LAYOUTGET, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,,, 3 8 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| WRITE | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 2 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_LOCKS_HELD | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 6 0 0 0 0 1 +| CLOSE, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 6 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_LOCK_NOTSUPP | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 6 0 0 0 0 1 +| LOCK | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 2 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_LOCK_RANGE | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 6 0 0 0 0 1 +| LOCK, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 6 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_MLINK | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 4 0 0 0 0 1 +| CREATE, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 6 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_MOVED | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 4 0 0 0 0 1 +| ACCESS, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,,, 3 7 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| CREATE, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,,, 3 10 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| GETFH, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 8 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| LAYOUTCOMMIT, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 7 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| LAYOUTRETURN, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,,, 3 8 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| LOCKT, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,,, 3 7 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| LOOKUPP, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,,, 3 7 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| OPENATTR, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 8 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| PUTFH, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,,, 3 7 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| READLINK, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 8 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| REMOVE, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,,, 3 8 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| SAVEFH, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 5 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| SECINFO_NO_NAME, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 8 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| VERIFY, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 7 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| WRITE | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 2 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_NAMETOOLONG | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 6 0 0 0 0 1 +| CREATE, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,,,, 4 8 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| REMOVE, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 7 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 7 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 11 , 1 10 0 0 0 0 0 +[Page 405] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 7 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 7 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 7 0 no 0 4 0 0 0 0 1 +| NFS4ERR_NOENT | | | | | BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 4 0 0 0 0 1 +| BACKCHANNEL_CTL, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 5 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| CREATE_SESSION, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 9 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| GETDEVICEINFO, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 7 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| LOOKUPP, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,,, 3 7 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| REMOVE, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,,, 3 7 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| SECINFO_NO_NAME | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 5 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_NOFILEHANDLE | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 6 0 0 0 0 1 +| ACCESS, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,,, 3 7 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| CREATE, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,,, 3 10 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| GETDEVICELIST, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 7 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| GET_DIR_DELEGATION, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 6 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| LAYOUTCOMMIT, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 7 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| LAYOUTRETURN, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,,, 3 8 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| LOCKT, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,,, 3 7 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| LOOKUPP, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,,, 3 7 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| OPENATTR, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 8 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| READ, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,,, 3 7 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| RECLAIM_COMPLETE, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 8 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| RENAME, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,,, 3 8 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| SECINFO, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 8 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| SETATTR, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 5 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| WANT_DELEGATION, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 7 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_NOMATCHING_LAYOUT | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 8 0 0 0 0 1 +| CB_LAYOUTRECALL | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 5 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_NOSPC | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 4 0 0 0 0 1 +| CREATE, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 7 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| LAYOUTGET, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,,, 3 7 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| OPENATTR, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,,, 3 8 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| WRITE | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 2 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_NOTDIR | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 5 0 0 0 0 1 +| CREATE, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 8 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| LINK, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,,,, 4 9 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| READDIR, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,,, 3 7 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| SECINFO, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 7 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_NOTEMPTY | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 5 0 0 0 0 1 +| REMOVE, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 5 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_NOTSUPP | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 5 0 0 0 0 1 +| CB_LAYOUTRECALL, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 8 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| CB_NOTIFY_DEVICEID, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 6 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| CB_NOTIFY_LOCK, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 5 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| CB_PUSH_DELEG, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 5 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| CB_RECALLABLE_OBJ_AVAIL, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 7 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| CB_WANTS_CANCELLED, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 6 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| DELEGPURGE, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 7 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| GETDEVICEINFO, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 10 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| GET_DIR_DELEGATION, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 6 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| LAYOUTCOMMIT, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 7 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| LAYOUTRETURN, | | | | | BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,,, 3 10 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 7 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 11 , 1 10 0 0 0 0 0 +[Page 406] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 7 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 7 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 7 0 no 0 4 0 0 0 0 1 +| | | | | | | BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| OPEN_CONFIRM, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 4 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| RELEASE_LOCKOWNER, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 8 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| SECINFO_NO_NAME, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 10 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| SETCLIENTID_CONFIRM, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 6 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| WANT_DELEGATION | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 5 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_NOT_ONLY_OP | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 6 0 0 0 0 1 +| BIND_CONN_TO_SESSION, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 7 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| CREATE_SESSION, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 5 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| DESTROY_CLIENTID, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 5 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| DESTROY_SESSION, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 9 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_NOT_SAME | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 5 0 0 0 0 1 +| EXCHANGE_ID, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 8 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| READDIR, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 5 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_NO_GRACE | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 5 0 0 0 0 1 +| LAYOUTCOMMIT, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 8 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| LOCK, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 8 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_OLD_STATEID | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 6 0 0 0 0 1 +| CLOSE, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 6 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| FREE_STATEID, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 7 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| LAYOUTRETURN, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,,, 3 8 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| OPEN, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,,, 3 8 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| SETATTR, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 5 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_OPENMODE | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 5 0 0 0 0 1 +| LAYOUTGET, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,,, 3 7 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| SETATTR, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 5 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_OP_ILLEGAL | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 6 0 0 0 0 1 +| CB_ILLEGAL, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 6 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_OP_NOT_IN_SESSION | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 8 0 0 0 0 1 +| ACCESS, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 7 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| CB_GETATTR, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 9 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| CB_NOTIFY, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 3 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| CB_NOTIFY_DEVICEID, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 6 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| CB_NOTIFY_LOCK, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 5 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| CB_PUSH_DELEG, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 8 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| CB_RECALLABLE_OBJ_AVAIL, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 7 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| CB_RECALL_ANY, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 5 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| CB_RECALL_SLOT, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 5 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| CB_WANTS_CANCELLED, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 8 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| COMMIT, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,,, 3 8 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| DELEGRETURN, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 8 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| GETATTR, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 7 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| GETDEVICELIST, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 7 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| GET_DIR_DELEGATION, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 6 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| LAYOUTCOMMIT, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 7 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| LAYOUTRETURN, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,,, 3 8 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| LOCKT, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,,, 3 7 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| LOOKUPP, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,,, 3 7 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| OPENATTR, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 8 0 0 0 0 1 +| | | | | | | BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 7 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 11 , 1 10 0 0 0 0 0 +[Page 407] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 7 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 7 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 7 0 no 0 4 0 0 0 0 1 +| | | | | | | BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| PUTFH, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,,, 3 8 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| READ, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,,, 3 7 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| RECLAIM_COMPLETE, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 8 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| RENAME, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,,, 3 8 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| SECINFO, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 8 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| SETATTR, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 5 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| TEST_STATEID, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 7 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| WANT_DELEGATION, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 7 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_PERM | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 4 0 0 0 0 1 +| CREATE, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 7 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_PNFS_IO_HOLE | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 6 0 0 0 0 1 +| READ, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 4 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_PNFS_NO_LAYOUT | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 7 0 0 0 0 1 +| READ, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 4 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_RECALLCONFLICT | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 7 0 0 0 0 1 +| LAYOUTGET, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 8 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_RECLAIM_BAD | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 6 0 0 0 0 1 +| LAYOUTCOMMIT, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,,, 3 8 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| WANT_DELEGATION | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 5 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_RECLAIM_CONFLICT | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 7 0 0 0 0 1 +| LAYOUTCOMMIT, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,,, 3 8 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| WANT_DELEGATION | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 5 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_REJECT_DELEG | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 6 0 0 0 0 1 +| CB_PUSH_DELEG | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 4 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_REP_TOO_BIG | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 6 0 0 0 0 1 +| ACCESS, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 7 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| BIND_CONN_TO_SESSION, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 7 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| CB_GETATTR, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 9 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| CB_NOTIFY, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 3 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| CB_NOTIFY_DEVICEID, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 6 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| CB_NOTIFY_LOCK, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 5 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| CB_PUSH_DELEG, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 8 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| CB_RECALLABLE_OBJ_AVAIL, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 7 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| CB_RECALL_ANY, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 5 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| CB_RECALL_SLOT, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 9 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| CB_WANTS_CANCELLED, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 8 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| COMMIT, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 5 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| CREATE_SESSION, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 8 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| DELEGRETURN, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 4 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| DESTROY_CLIENTID, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 5 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| DESTROY_SESSION, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 10 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| FREE_STATEID, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 7 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| GETDEVICEINFO, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 10 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| GET_DIR_DELEGATION, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 6 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| LAYOUTCOMMIT, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 7 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| LAYOUTRETURN, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,,, 3 8 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| LOCKT, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,,, 3 7 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| LOOKUPP, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,,, 3 7 0 0 0 0 1 +| | | | | | | BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 7 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 11 , 1 10 0 0 0 0 0 +[Page 408] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 7 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 7 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 7 0 no 0 4 0 0 0 0 1 +| | | | | | | BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| OPENATTR, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 8 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| PUTFH, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,,, 3 8 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| READ, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,,, 3 7 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| RECLAIM_COMPLETE, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 8 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| RENAME, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,,, 3 8 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| SECINFO, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 8 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| SEQUENCE, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,,, 3 8 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| TEST_STATEID, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 7 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| WANT_DELEGATION, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 7 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_REP_TOO_BIG_TO_CACHE | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 9 0 0 0 0 1 +| ACCESS, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 7 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| BIND_CONN_TO_SESSION, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 7 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| CB_GETATTR, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 9 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| CB_NOTIFY, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 3 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| CB_NOTIFY_DEVICEID, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 6 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| CB_NOTIFY_LOCK, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 5 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| CB_PUSH_DELEG, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 8 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| CB_RECALLABLE_OBJ_AVAIL, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 7 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| CB_RECALL_ANY, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 5 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| CB_RECALL_SLOT, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 9 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| CB_WANTS_CANCELLED, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 8 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| COMMIT, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 5 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| CREATE_SESSION, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 8 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| DELEGRETURN, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 4 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| DESTROY_CLIENTID, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 5 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| DESTROY_SESSION, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 10 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| FREE_STATEID, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 7 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| GETDEVICEINFO, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 10 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| GET_DIR_DELEGATION, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 6 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| LAYOUTCOMMIT, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 7 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| LAYOUTRETURN, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,,, 3 8 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| LOCKT, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,,, 3 7 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| LOOKUPP, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,,, 3 7 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| OPENATTR, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 8 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| PUTFH, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,,, 3 8 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| READ, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,,, 3 7 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| RECLAIM_COMPLETE, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 8 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| RENAME, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,,, 3 8 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| SECINFO, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 8 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| SEQUENCE, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,,, 3 8 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| TEST_STATEID, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 7 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| WANT_DELEGATION, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 7 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_REQ_TOO_BIG | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 6 0 0 0 0 1 +| ACCESS, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 7 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| BIND_CONN_TO_SESSION, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 7 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| CB_GETATTR, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 9 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| CB_NOTIFY, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 3 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| CB_NOTIFY_DEVICEID, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 6 0 0 0 0 1 +| | | | | | | BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 7 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 11 , 1 10 0 0 0 0 0 +[Page 409] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 7 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 7 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 7 0 no 0 4 0 0 0 0 1 +| | | | | | | BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| CB_NOTIFY_LOCK, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 5 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| CB_PUSH_DELEG, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 8 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| CB_RECALLABLE_OBJ_AVAIL, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 7 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| CB_RECALL_ANY, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 5 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| CB_RECALL_SLOT, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 9 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| CB_WANTS_CANCELLED, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 8 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| COMMIT, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 5 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| CREATE_SESSION, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 8 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| DELEGRETURN, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 4 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| DESTROY_CLIENTID, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 5 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| DESTROY_SESSION, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 10 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| FREE_STATEID, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 7 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| GETDEVICEINFO, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 10 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| GET_DIR_DELEGATION, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 6 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| LAYOUTCOMMIT, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 7 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| LAYOUTRETURN, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,,, 3 8 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| LOCKT, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,,, 3 7 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| LOOKUPP, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,,, 3 7 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| OPENATTR, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 8 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| PUTFH, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,,, 3 8 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| READ, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,,, 3 7 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| RECLAIM_COMPLETE, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 8 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| RENAME, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,,, 3 8 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| SECINFO, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 8 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| SEQUENCE, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,,, 3 8 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| TEST_STATEID, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 7 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| WANT_DELEGATION, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 7 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_RETRY_UNCACHED_REP | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 8 0 0 0 0 1 +| ACCESS, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 7 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| BIND_CONN_TO_SESSION, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 7 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| CB_GETATTR, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 9 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| CB_NOTIFY, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 3 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| CB_NOTIFY_DEVICEID, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 6 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| CB_NOTIFY_LOCK, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 5 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| CB_PUSH_DELEG, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 8 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| CB_RECALLABLE_OBJ_AVAIL, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 7 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| CB_RECALL_ANY, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 5 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| CB_RECALL_SLOT, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 9 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| CB_WANTS_CANCELLED, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 8 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| COMMIT, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 5 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| CREATE_SESSION, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 8 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| DELEGRETURN, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 4 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| DESTROY_CLIENTID, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 5 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| DESTROY_SESSION, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 10 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| FREE_STATEID, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 7 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| GETDEVICEINFO, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 10 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| GET_DIR_DELEGATION, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 6 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| LAYOUTCOMMIT, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 7 0 0 0 0 1 +| | | | | | | BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 7 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 11 , 1 10 0 0 0 0 0 +[Page 410] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 7 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 7 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 7 0 no 0 4 0 0 0 0 1 +| | | | | | | BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| LAYOUTRETURN, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,,, 3 8 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| LOCKT, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,,, 3 7 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| LOOKUPP, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,,, 3 7 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| OPENATTR, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 8 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| PUTFH, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,,, 3 8 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| READ, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,,, 3 7 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| RECLAIM_COMPLETE, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 8 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| RENAME, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,,, 3 8 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| SECINFO, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 8 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| SEQUENCE, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,,, 3 8 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| TEST_STATEID, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 7 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| WANT_DELEGATION, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 7 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_ROFS | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 4 0 0 0 0 1 +| CREATE, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,,,, 4 8 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| OPEN, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 5 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| OPEN_DOWNGRADE, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 7 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| RENAME, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 7 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_SAME | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 4 0 0 0 0 1 +| NVERIFY | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 2 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_SEQUENCE_POS | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 6 0 0 0 0 1 +| CB_SEQUENCE, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 7 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_SEQ_FALSE_RETRY | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 7 0 0 0 0 1 +| CB_SEQUENCE, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 7 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_SEQ_MISORDERED | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 7 0 0 0 0 1 +| CB_SEQUENCE, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 9 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| SEQUENCE | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 3 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_SERVERFAULT | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 6 0 0 0 0 1 +| ACCESS, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 10 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| CB_GETATTR, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 7 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| CB_NOTIFY_DEVICEID, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 6 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| CB_NOTIFY_LOCK, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 5 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| CB_PUSH_DELEG, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 8 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| CB_RECALLABLE_OBJ_AVAIL, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 7 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| CB_WANTS_CANCELLED, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 8 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| COMMIT, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 5 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| CREATE_SESSION, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 8 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| DELEGRETURN, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 4 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| DESTROY_CLIENTID, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 5 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| DESTROY_SESSION, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 10 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| FREE_STATEID, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 7 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| GETDEVICEINFO, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 10 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| GET_DIR_DELEGATION, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 6 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| LAYOUTCOMMIT, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 7 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| LAYOUTRETURN, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,,, 3 8 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| LOCKU, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,,, 3 7 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NVERIFY, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,,, 3 7 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| OPEN_DOWNGRADE, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 7 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| PUTPUBFH, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,,, 3 8 0 0 0 0 1 +| | | | | | | BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 7 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 11 , 1 10 0 0 0 0 0 +[Page 411] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 7 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 7 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 7 0 no 0 4 0 0 0 0 1 +| | | | | | | BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| READDIR, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 6 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| RECLAIM_COMPLETE, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 8 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| RENAME, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,,, 3 8 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| SECINFO, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 8 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| SETATTR, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 7 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| VERIFY, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 7 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| WRITE | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 2 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_SHARE_DENIED | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 6 0 0 0 0 1 +| OPEN | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 2 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_STALE | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 4 0 0 0 0 1 +| ACCESS, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,,, 3 7 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| CREATE, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,,, 3 10 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| GETFH, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 8 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| LAYOUTCOMMIT, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 7 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| LAYOUTRETURN, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,,, 3 8 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| LOCKT, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,,, 3 7 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| LOOKUPP, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,,, 3 7 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| OPENATTR, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 8 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| PUTFH, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,,, 3 7 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| READLINK, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 8 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| REMOVE, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,,, 3 8 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| SAVEFH, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 5 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| SECINFO_NO_NAME, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 8 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| VERIFY, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 7 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| WRITE | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 2 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_STALE_CLIENTID | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 7 0 0 0 0 1 +| CREATE_SESSION, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 5 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| DESTROY_CLIENTID, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 5 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| DESTROY_SESSION | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 5 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_SYMLINK | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 5 0 0 0 0 1 +| COMMIT, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,,, 3 8 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| LOCK, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,,,, 4 10 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| OPEN, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 5 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_TOOSMALL | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 5 0 0 0 0 1 +| CREATE_SESSION, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 5 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| GETDEVICEINFO, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 8 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| READDIR | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 2 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_TOO_MANY_OPS | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 6 0 0 0 0 1 +| ACCESS, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 7 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| BIND_CONN_TO_SESSION, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 7 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| CB_GETATTR, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 9 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| CB_NOTIFY, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 3 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| CB_NOTIFY_DEVICEID, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 6 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| CB_NOTIFY_LOCK, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 5 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| CB_PUSH_DELEG, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 8 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| CB_RECALLABLE_OBJ_AVAIL, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 7 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| CB_RECALL_ANY, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 5 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| CB_RECALL_SLOT, | | | | | BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 9 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 7 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 11 , 1 10 0 0 0 0 0 +[Page 412] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 7 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 7 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 7 0 no 0 4 0 0 0 0 1 +| | | | | | | BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| CB_WANTS_CANCELLED, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 8 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| COMMIT, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 5 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| CREATE_SESSION, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 8 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| DELEGRETURN, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 4 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| DESTROY_CLIENTID, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 5 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| DESTROY_SESSION, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 10 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| FREE_STATEID, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 7 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| GETDEVICEINFO, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 10 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| GET_DIR_DELEGATION, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 6 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| LAYOUTCOMMIT, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 7 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| LAYOUTRETURN, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,,, 3 8 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| LOCKT, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,,, 3 7 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| LOOKUPP, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,,, 3 7 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| OPENATTR, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 8 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| PUTFH, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,,, 3 8 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| READ, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,,, 3 7 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| RECLAIM_COMPLETE, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 8 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| RENAME, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,,, 3 8 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| SECINFO, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 8 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| SEQUENCE, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,,, 3 8 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| TEST_STATEID, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 7 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| WANT_DELEGATION, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 7 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_UNKNOWN_LAYOUTTYPE | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 8 0 0 0 0 1 +| CB_LAYOUTRECALL, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 5 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| GETDEVICEINFO, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 10 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| LAYOUTCOMMIT, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 7 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| LAYOUTRETURN, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 7 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| SETATTR, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 5 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_UNSAFE_COMPOUND | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 7 0 0 0 0 1 +| CREATE, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 7 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_WRONGSEC | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 5 0 0 0 0 1 +| LINK, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,,,, 4 9 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| PUTFH, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,,, 3 8 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| RENAME, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 5 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_WRONG_CRED | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 6 0 0 0 0 1 +| CLOSE, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 7 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| DELEGPURGE, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 7 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| DESTROY_CLIENTID, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 5 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| DESTROY_SESSION, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 5 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| FREE_STATEID, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 8 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| LAYOUTRETURN, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,,, 3 8 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| LOCKU, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 7 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| RECLAIM_COMPLETE | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 5 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| NFS4ERR_WRONG_TYPE | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 6 0 0 0 0 1 +| CB_LAYOUTRECALL, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 , 1 5 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| CB_PUSH_DELEG, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 7 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| GETATTR, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,, 2 6 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| LAYOUTRETURN, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 ,,, 3 8 0 0 0 0 1 +| | | | | | | BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 8 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 11 , 1 10 0 0 0 0 0 +[Page 413] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 8 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 8 0 no 0 4 0 0 0 0 1 +| | | | | | | BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 0 0 0 0 0 1 +| LOCKT, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 ,,, 3 3 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 0 0 0 0 0 1 +| OPENATTR, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 ,,, 3 4 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 0 0 0 0 0 1 +| RECLAIM_COMPLETE, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 ,, 2 4 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 0 0 0 0 0 1 +| VERIFY, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 ,, 2 3 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 0 0 0 0 0 1 +| WRITE | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 0 0 0 0 0 1 +| NFS4ERR_XDEV | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 2 0 0 0 0 1 +| LINK, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 , 1 2 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 0 0 0 0 0 1 ++-----------------------------------+-------------------------------+ +-----------------------------------+-------------------------------+ +-----------------------------------+-------------------------------+ + +- +-- +--- BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 0 ------------------------------------------------------------------ 66 10 0 0 0 0 1 +Table 8 table T Ta Tab Tabl BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 4 no 0 10 0 0 0 0 1 +16. NFSv4.1 16. 1 16 16. 16. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 4 .. 2 10 0 0 0 0 1 +Both procedures, both B Bo Bot Both BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 4 ,,. 3 10 0 0 0 0 1 +16.1. Procedure 16.1. 1 16 16. 16.1 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 5 ..:- 4 10 0 0 0 0 1 +16.1.1. ARGUMENTS 16.1.1. 1 16 16. 16.1 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 5 ... 3 10 0 0 0 0 1 +void; void; void; v vo voi void BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 6 ; 1 10 0 0 0 0 1 +16.1.2. RESULTS 16.1.2. 1 16 16. 16.1 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 6 ... 3 10 0 0 0 0 1 +void; void; void; v vo voi void BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 6 ; 1 10 0 0 0 0 1 +16.1.3. DESCRIPTION 16.1.3. 1 16 16. 16.1 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 6 ... 3 10 0 0 0 0 1 +This is this T Th Thi This BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 6 no 0 10 0 0 0 0 1 +and void and a an and and BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 6 . 1 9 0 0 0 0 1 +with it. with w wi wit with BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 6 ., 2 9 0 0 0 0 1 +overhead of overhead o ov ove over BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 6 ., 2 9 0 0 0 0 1 +SHOULD ensure should S SH SHO SHOU BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 8 6 no 0 9 0 0 0 0 1 +procedure. procedure. procedure. p pr pro proc BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 6 . 1 1 0 0 0 0 1 +16.1.4. ERRORS 16.1.4. 1 16 16. 16.1 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 9 ... 3 10 0 0 0 0 1 +None. None. none. N No Non None BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 9 . 1 10 0 0 0 0 1 +16.2. Procedure 16.2. 1 16 16. 16.2 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 9 ..:- 4 10 0 0 0 0 1 +16.2.1. ARGUMENTS 16.2.1. 1 16 16. 16.2 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 10 ... 3 10 0 0 0 0 1 +enum nfs_opnum4 enum e en enu enum BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 10 no 0 10 0 0 0 0 1 +OP_ACCESS OP_ACCESS op_access O OP OP_ OP_A BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 10 no 0 5 0 0 0 0 1 += 3, = = = = = BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 10 , 1 2 0 0 0 0 1 +OP_CLOSE OP_CLOSE op_close O OP OP_ OP_C BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 10 no 0 5 0 0 0 0 1 += 4, = = = = = BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 10 , 1 2 0 0 0 0 1 +OP_COMMIT OP_COMMIT op_commit O OP OP_ OP_C BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 10 no 0 5 0 0 0 0 1 += 5, = = = = = BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 10 , 1 2 0 0 0 0 1 +OP_CREATE OP_CREATE op_create O OP OP_ OP_C BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 10 no 0 5 0 0 0 0 1 += 6, = = = = = BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 10 , 1 2 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 8 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 11 , 1 10 0 0 0 0 0 +[Page 414] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 8 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 8 0 no 0 4 0 0 0 0 1 +OP_DELEGPURGE OP_DELEGPURGE op_delegpurge O OP OP_ OP_D BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 0 no 0 2 0 0 0 0 1 += 7, = = = = = BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 , 1 0 0 0 0 0 1 +OP_DELEGRETURN OP_DELEGRETURN op_delegreturn O OP OP_ OP_D BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 0 no 0 2 0 0 0 0 1 += 8, = = = = = BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 , 1 0 0 0 0 0 1 +OP_GETATTR OP_GETATTR op_getattr O OP OP_ OP_G BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 0 no 0 1 0 0 0 0 1 += 9, = = = = = BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 , 1 0 0 0 0 0 1 +OP_GETFH OP_GETFH op_getfh O OP OP_ OP_G BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 0 no 0 1 0 0 0 0 1 += 10, = = = = = BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 , 1 0 0 0 0 0 1 +OP_LINK OP_LINK op_link O OP OP_ OP_L BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 0 no 0 1 0 0 0 0 1 += 11, = = = = = BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 , 1 0 0 0 0 0 1 +OP_LOCK OP_LOCK op_lock O OP OP_ OP_L BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 0 no 0 1 0 0 0 0 1 += 12, = = = = = BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 , 1 0 0 0 0 0 1 +OP_LOCKT OP_LOCKT op_lockt O OP OP_ OP_L BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 0 no 0 1 0 0 0 0 1 += 13, = = = = = BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 , 1 0 0 0 0 0 1 +OP_LOCKU OP_LOCKU op_locku O OP OP_ OP_L BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 0 no 0 1 0 0 0 0 1 += 14, = = = = = BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 , 1 0 0 0 0 0 1 +OP_LOOKUP OP_LOOKUP op_lookup O OP OP_ OP_L BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 0 no 0 1 0 0 0 0 1 += 15, = = = = = BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 , 1 0 0 0 0 0 1 +OP_LOOKUPP OP_LOOKUPP op_lookupp O OP OP_ OP_L BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 0 no 0 1 0 0 0 0 1 += 16, = = = = = BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 , 1 0 0 0 0 0 1 +OP_NVERIFY OP_NVERIFY op_nverify O OP OP_ OP_N BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 0 no 0 1 0 0 0 0 1 += 17, = = = = = BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 , 1 0 0 0 0 0 1 +OP_OPEN OP_OPEN op_open O OP OP_ OP_O BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 0 no 0 1 0 0 0 0 1 += 18, = = = = = BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 , 1 0 0 0 0 0 1 +OP_OPENATTR OP_OPENATTR op_openattr O OP OP_ OP_O BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 0 no 0 1 0 0 0 0 1 += 19, = = = = = BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 , 1 0 0 0 0 0 1 +OP_OPEN_CONFIRM OP_OPEN_CONFIRM op_open_confirm O OP OP_ OP_O BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 0 no 0 2 0 0 0 0 1 += 20, = = = = = BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 ,/*--*/ 7 6 0 0 0 0 1 +OP_OPEN_DOWNGRADE OP_OPEN_DOWNGRADE op_open_downgrade O OP OP_ OP_O BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 0 no 0 2 0 0 0 0 1 += 21, = = = = = BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 , 1 0 0 0 0 0 1 +OP_PUTFH OP_PUTFH op_putfh O OP OP_ OP_P BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 0 no 0 1 0 0 0 0 1 += 22, = = = = = BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 , 1 0 0 0 0 0 1 +OP_PUTPUBFH OP_PUTPUBFH op_putpubfh O OP OP_ OP_P BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 0 no 0 1 0 0 0 0 1 += 23, = = = = = BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 , 1 0 0 0 0 0 1 +OP_PUTROOTFH OP_PUTROOTFH op_putrootfh O OP OP_ OP_P BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 0 no 0 2 0 0 0 0 1 += 24, = = = = = BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 , 1 0 0 0 0 0 1 +OP_READ OP_READ op_read O OP OP_ OP_R BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 0 no 0 1 0 0 0 0 1 += 25, = = = = = BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 , 1 0 0 0 0 0 1 +OP_READDIR OP_READDIR op_readdir O OP OP_ OP_R BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 0 no 0 1 0 0 0 0 1 += 26, = = = = = BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 , 1 0 0 0 0 0 1 +OP_READLINK OP_READLINK op_readlink O OP OP_ OP_R BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 0 no 0 1 0 0 0 0 1 += 27, = = = = = BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 , 1 0 0 0 0 0 1 +OP_REMOVE OP_REMOVE op_remove O OP OP_ OP_R BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 0 no 0 1 0 0 0 0 1 += 28, = = = = = BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 , 1 0 0 0 0 0 1 +OP_RENAME OP_RENAME op_rename O OP OP_ OP_R BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 0 no 0 1 0 0 0 0 1 += 29, = = = = = BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 , 1 0 0 0 0 0 1 +OP_RENEW OP_RENEW op_renew O OP OP_ OP_R BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 0 no 0 1 0 0 0 0 1 += 30, = = = = = BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 ,/*--*/ 7 6 0 0 0 0 1 +OP_RESTOREFH OP_RESTOREFH op_restorefh O OP OP_ OP_R BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 0 no 0 2 0 0 0 0 1 += 31, = = = = = BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 , 1 0 0 0 0 0 1 +OP_SAVEFH OP_SAVEFH op_savefh O OP OP_ OP_S BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 0 no 0 1 0 0 0 0 1 += 32, = = = = = BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 , 1 0 0 0 0 0 1 +OP_SECINFO OP_SECINFO op_secinfo O OP OP_ OP_S BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 0 no 0 1 0 0 0 0 1 += 33, = = = = = BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 , 1 0 0 0 0 0 1 +OP_SETATTR OP_SETATTR op_setattr O OP OP_ OP_S BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 0 no 0 1 0 0 0 0 1 += 34, = = = = = BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 , 1 0 0 0 0 0 1 +OP_SETCLIENTID OP_SETCLIENTID op_setclientid O OP OP_ OP_S BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 0 no 0 2 0 0 0 0 1 += 35, = = = = = BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 ,/*--*/ 7 6 0 0 0 0 1 +OP_SETCLIENTID_CONFIRM = op_setclientid_confirm O OP OP_ OP_S BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 0 ,/*--*/ 7 10 0 0 0 0 1 +OP_VERIFY OP_VERIFY op_verify O OP OP_ OP_V BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 0 no 0 1 0 0 0 0 1 += 37, = = = = = BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 , 1 0 0 0 0 0 1 +OP_WRITE OP_WRITE op_write O OP OP_ OP_W BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 0 no 0 1 0 0 0 0 1 += 38, = = = = = BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 , 1 0 0 0 0 0 1 +OP_RELEASE_LOCKOWNER OP_RELEASE_LOCKOWNER op_release_lockowner O OP OP_ OP_R BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 0 no 0 3 0 0 0 0 1 += 39, = = = = = BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 ,/*--*/ 7 6 0 0 0 0 1 +/* new /* / /* /* /* BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 8 /*.*/ 5 10 0 0 0 0 1 +OP_BACKCHANNEL_CTL OP_BACKCHANNEL_CTL op_backchannel_ctl O OP OP_ OP_B BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 9 no 0 6 0 0 0 0 1 += 40, = = = = = BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 9 , 1 2 0 0 0 0 1 +OP_BIND_CONN_TO_SESSION = op_bind_conn_to_session O OP OP_ OP_B BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 9 , 1 10 0 0 0 0 1 +OP_EXCHANGE_ID OP_EXCHANGE_ID op_exchange_id O OP OP_ OP_E BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 9 no 0 5 0 0 0 0 1 += 42, = = = = = BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 9 , 1 2 0 0 0 0 1 +OP_CREATE_SESSION OP_CREATE_SESSION op_create_session O OP OP_ OP_C BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 9 no 0 6 0 0 0 0 1 += 43, = = = = = BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 9 , 1 2 0 0 0 0 1 +OP_DESTROY_SESSION OP_DESTROY_SESSION op_destroy_session O OP OP_ OP_D BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 9 no 0 6 0 0 0 0 1 += 44, = = = = = BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 9 , 1 2 0 0 0 0 1 +OP_FREE_STATEID OP_FREE_STATEID op_free_stateid O OP OP_ OP_F BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 9 no 0 5 0 0 0 0 1 += 45, = = = = = BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 9 , 1 2 0 0 0 0 1 +OP_GET_DIR_DELEGATION = op_get_dir_delegation O OP OP_ OP_G BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 9 , 1 9 0 0 0 0 1 +OP_GETDEVICEINFO OP_GETDEVICEINFO op_getdeviceinfo O OP OP_ OP_G BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 9 no 0 5 0 0 0 0 1 += 47, = = = = = BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 9 , 1 2 0 0 0 0 1 +OP_GETDEVICELIST OP_GETDEVICELIST op_getdevicelist O OP OP_ OP_G BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 9 no 0 5 0 0 0 0 1 += 48, = = = = = BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 9 , 1 2 0 0 0 0 1 +OP_LAYOUTCOMMIT OP_LAYOUTCOMMIT op_layoutcommit O OP OP_ OP_L BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 9 no 0 5 0 0 0 0 1 += 49, = = = = = BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 9 , 1 2 0 0 0 0 1 +OP_LAYOUTGET OP_LAYOUTGET op_layoutget O OP OP_ OP_L BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 9 no 0 4 0 0 0 0 1 += 50, = = = = = BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 9 , 1 2 0 0 0 0 1 +OP_LAYOUTRETURN OP_LAYOUTRETURN op_layoutreturn O OP OP_ OP_L BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 9 no 0 5 0 0 0 0 1 += 51, = = = = = BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 9 , 1 2 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 8 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 11 , 1 10 0 0 0 0 0 +[Page 415] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 8 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 8 0 no 0 4 0 0 0 0 1 +OP_SECINFO_NO_NAME OP_SECINFO_NO_NAME op_secinfo_no_name O OP OP_ OP_S BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 0 no 0 9 0 0 0 0 1 += 52, = = = = = BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 , 1 3 0 0 0 0 1 +OP_SEQUENCE OP_SEQUENCE op_sequence O OP OP_ OP_S BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 0 no 0 6 0 0 0 0 1 += 53, = = = = = BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 , 1 3 0 0 0 0 1 +OP_SET_SSV OP_SET_SSV op_set_ssv O OP OP_ OP_S BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 0 no 0 5 0 0 0 0 1 += 54, = = = = = BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 , 1 3 0 0 0 0 1 +OP_TEST_STATEID OP_TEST_STATEID op_test_stateid O OP OP_ OP_T BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 0 no 0 8 0 0 0 0 1 += 55, = = = = = BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 , 1 3 0 0 0 0 1 +OP_WANT_DELEGATION OP_WANT_DELEGATION op_want_delegation O OP OP_ OP_W BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 0 no 0 9 0 0 0 0 1 += 56, = = = = = BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 , 1 3 0 0 0 0 1 +OP_DESTROY_CLIENTID OP_DESTROY_CLIENTID op_destroy_clientid O OP OP_ OP_D BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 0 no 0 10 0 0 0 0 1 += 57, = = = = = BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 , 1 3 0 0 0 0 1 +OP_RECLAIM_COMPLETE OP_RECLAIM_COMPLETE op_reclaim_complete O OP OP_ OP_R BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 0 no 0 10 0 0 0 0 1 += 58, = = = = = BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 , 1 3 0 0 0 0 1 +OP_ILLEGAL OP_ILLEGAL op_illegal O OP OP_ OP_I BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 0 no 0 5 0 0 0 0 1 += 10044 = = = = = BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 4 0 0 0 0 1 +}; }; }; } }; }; }; BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 0 ; 1 1 0 0 0 0 1 +union nfs_argop4 union u un uni unio BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 2 () 2 10 0 0 0 0 1 +case OP_ACCESS: case c ca cas case BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 8 2 : 1 3 0 0 0 0 1 +ACCESS4args opaccess; access4args A AC ACC ACCE BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 2 ; 1 4 0 0 0 0 1 +case OP_CLOSE: case c ca cas case BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 8 2 : 1 3 0 0 0 0 1 +CLOSE4args opclose; close4args C CL CLO CLOS BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 2 ; 1 4 0 0 0 0 1 +case OP_COMMIT: case c ca cas case BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 8 2 : 1 3 0 0 0 0 1 +COMMIT4args opcommit; commit4args C CO COM COMM BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 2 ; 1 4 0 0 0 0 1 +case OP_CREATE: case c ca cas case BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 8 2 : 1 3 0 0 0 0 1 +CREATE4args opcreate; create4args C CR CRE CREA BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 2 ; 1 4 0 0 0 0 1 +case OP_DELEGPURGE: case c ca cas case BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 8 2 : 1 4 0 0 0 0 1 +DELEGPURGE4args opdelegpurge; delegpurge4args D DE DEL DELE BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 2 ; 1 6 0 0 0 0 1 +case OP_DELEGRETURN: case c ca cas case BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 8 2 : 1 4 0 0 0 0 1 +DELEGRETURN4args opdelegreturn; delegreturn4args D DE DEL DELE BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 2 ; 1 7 0 0 0 0 1 +case OP_GETATTR: case c ca cas case BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 8 2 : 1 3 0 0 0 0 1 +GETATTR4args opgetattr; getattr4args G GE GET GETA BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 2 ; 1 5 0 0 0 0 1 +case OP_GETFH: case c ca cas case BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 8 2 : 1 3 0 0 0 0 1 +void; void; void; v vo voi void BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 2 ; 1 1 0 0 0 0 1 +case OP_LINK: case c ca cas case BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 8 2 : 1 3 0 0 0 0 1 +LINK4args oplink; link4args L LI LIN LINK BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 2 ; 1 4 0 0 0 0 1 +case OP_LOCK: case c ca cas case BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 8 2 : 1 3 0 0 0 0 1 +LOCK4args oplock; lock4args L LO LOC LOCK BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 2 ; 1 4 0 0 0 0 1 +case OP_LOCKT: case c ca cas case BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 8 2 : 1 3 0 0 0 0 1 +LOCKT4args oplockt; lockt4args L LO LOC LOCK BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 2 ; 1 4 0 0 0 0 1 +case OP_LOCKU: case c ca cas case BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 8 2 : 1 3 0 0 0 0 1 +LOCKU4args oplocku; locku4args L LO LOC LOCK BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 2 ; 1 4 0 0 0 0 1 +case OP_LOOKUP: case c ca cas case BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 8 2 : 1 3 0 0 0 0 1 +LOOKUP4args oplookup; lookup4args L LO LOO LOOK BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 2 ; 1 4 0 0 0 0 1 +case OP_LOOKUPP: case c ca cas case BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 8 2 : 1 3 0 0 0 0 1 +void; void; void; v vo voi void BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 2 ; 1 1 0 0 0 0 1 +case OP_NVERIFY: case c ca cas case BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 8 2 : 1 3 0 0 0 0 1 +NVERIFY4args opnverify; nverify4args N NV NVE NVER BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 2 ; 1 5 0 0 0 0 1 +case OP_OPEN: case c ca cas case BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 8 2 : 1 3 0 0 0 0 1 +OPEN4args opopen; open4args O OP OPE OPEN BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 2 ; 1 4 0 0 0 0 1 +case OP_OPENATTR: case c ca cas case BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 8 2 : 1 4 0 0 0 0 1 +OPENATTR4args opopenattr; openattr4args O OP OPE OPEN BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 2 ; 1 5 0 0 0 0 1 +/* Not /* / /* /* /* BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 7 /*.*/ 5 3 0 0 0 0 1 +case OP_OPEN_CONFIRM: case c ca cas case BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 8 7 :; 2 10 0 0 0 0 1 +case OP_OPEN_DOWNGRADE: case c ca cas case BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 8 8 : 1 6 0 0 0 0 1 +OPEN_DOWNGRADE4args opopen_downgrade; open_downgrade4args O OP OPE OPEN BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 8 ; 1 10 0 0 0 0 1 +case OP_PUTFH: case c ca cas case BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 8 8 : 1 6 0 0 0 0 1 +PUTFH4args opputfh; putfh4args P PU PUT PUTF BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 8 ; 1 8 0 0 0 0 1 +case OP_PUTPUBFH: case c ca cas case BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 8 8 : 1 7 0 0 0 0 1 +void; void; void; v vo voi void BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 8 ; 1 2 0 0 0 0 1 +case OP_PUTROOTFH: case c ca cas case BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 8 8 : 1 7 0 0 0 0 1 +void; void; void; v vo voi void BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 8 ; 1 2 0 0 0 0 1 +case OP_READ: case c ca cas case BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 8 8 : 1 5 0 0 0 0 1 +READ4args opread; read4args R RE REA READ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 8 ; 1 7 0 0 0 0 1 +case OP_READDIR: case c ca cas case BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 8 8 : 1 7 0 0 0 0 1 +READDIR4args opreaddir; readdir4args R RE REA READ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 8 ; 1 10 0 0 0 0 1 +case OP_READLINK: case c ca cas case BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 8 8 : 1 7 0 0 0 0 1 +void; void; void; v vo voi void BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 8 ; 1 2 0 0 0 0 1 +case OP_REMOVE: case c ca cas case BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 8 8 : 1 6 0 0 0 0 1 +REMOVE4args opremove; remove4args R RE REM REMO BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 8 ; 1 9 0 0 0 0 1 +case OP_RENAME: case c ca cas case BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 8 8 : 1 6 0 0 0 0 1 +RENAME4args oprename; rename4args R RE REN RENA BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 8 ; 1 9 0 0 0 0 1 +/* Not /* / /* /* /* BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 10 /*.*/ 5 10 0 0 0 0 1 +case OP_RENEW: case c ca cas case BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 8 10 : 1 6 0 0 0 0 1 +RENEW4args oprenew; renew4args R RE REN RENE BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 10 ; 1 9 0 0 0 0 1 +case OP_RESTOREFH: case c ca cas case BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 8 11 : 1 10 0 0 0 0 1 +void; void; void; v vo voi void BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 11 ; 1 3 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 8 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 11 , 1 10 0 0 0 0 0 +[Page 416] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 8 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 8 0 no 0 4 0 0 0 0 1 +case OP_SAVEFH: case c ca cas case BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 8 0 : 1 6 0 0 0 0 1 +void; void; void; v vo voi void BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 0 ; 1 2 0 0 0 0 1 +case OP_SECINFO: case c ca cas case BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 8 0 : 1 7 0 0 0 0 1 +SECINFO4args opsecinfo; secinfo4args S SE SEC SECI BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 0 ; 1 10 0 0 0 0 1 +case OP_SETATTR: case c ca cas case BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 8 0 : 1 7 0 0 0 0 1 +SETATTR4args opsetattr; setattr4args S SE SET SETA BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 0 ; 1 10 0 0 0 0 1 +/* Not /* / /* /* /* BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 1 /*.*/ 5 4 0 0 0 0 1 +case OP_SETCLIENTID: case c ca cas case BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 8 1 :; 2 10 0 0 0 0 1 +/* Not /* / /* /* /* BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 2 /*.*/ 5 4 0 0 0 0 1 +case OP_SETCLIENTID_CONFIRM: case c ca cas case BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 8 2 : 1 10 0 0 0 0 1 +opsetclientid_confirm; opsetclientid_confirm; opsetclientid_confirm; o op ops opse BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 2 ; 1 4 0 0 0 0 1 +case OP_VERIFY: case c ca cas case BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 8 2 : 1 2 0 0 0 0 1 +VERIFY4args opverify; verify4args V VE VER VERI BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 2 ; 1 4 0 0 0 0 1 +case OP_WRITE: case c ca cas case BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 8 2 : 1 2 0 0 0 0 1 +WRITE4args opwrite; write4args W WR WRI WRIT BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 2 ; 1 3 0 0 0 0 1 +/* Not /* / /* /* /* BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 4 /*.*/ 5 8 0 0 0 0 1 +case OP_RELEASE_LOCKOWNER: case c ca cas case BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 8 4 : 1 10 0 0 0 0 1 +RELEASE_LOCKOWNER4args RELEASE_LOCKOWNER4args release_lockowner4args R RE REL RELE BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 4 no 0 8 0 0 0 0 1 +oprelease_lockowner; oprelease_lockowner; oprelease_lockowner; o op opr opre BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 4 ; 1 7 0 0 0 0 1 +/* Operations /* / /* /* /* BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 5 /*.*/ 5 8 0 0 0 0 1 +case OP_BACKCHANNEL_CTL: case c ca cas case BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 8 5 : 1 6 0 0 0 0 1 +BACKCHANNEL_CTL4args opbackchannel_ctl; backchannel_ctl4args B BA BAC BACK BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 5 ; 1 10 0 0 0 0 1 +case OP_BIND_CONN_TO_SESSION: case c ca cas case BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 8 6 : 1 10 0 0 0 0 1 +BIND_CONN_TO_SESSION4args BIND_CONN_TO_SESSION4args bind_conn_to_session4args B BI BIN BIND BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 6 no 0 8 0 0 0 0 1 +opbind_conn_to_session; opbind_conn_to_session; opbind_conn_to_session; o op opb opbi BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 6 ; 1 8 0 0 0 0 1 +case OP_EXCHANGE_ID: case c ca cas case BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 8 6 : 1 6 0 0 0 0 1 +EXCHANGE_ID4args opexchange_id; exchange_id4args E EX EXC EXCH BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 6 ; 1 10 0 0 0 0 1 +case OP_CREATE_SESSION: case c ca cas case BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 8 7 : 1 6 0 0 0 0 1 +CREATE_SESSION4args opcreate_session; create_session4args C CR CRE CREA BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 7 ; 1 10 0 0 0 0 1 +case OP_DESTROY_SESSION: case c ca cas case BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 8 7 : 1 6 0 0 0 0 1 +DESTROY_SESSION4args opdestroy_session; destroy_session4args D DE DES DEST BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 7 ; 1 10 0 0 0 0 1 +case OP_FREE_STATEID: case c ca cas case BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 8 8 :; 2 10 0 0 0 0 1 +case OP_GET_DIR_DELEGATION: case c ca cas case BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 8 8 : 1 10 0 0 0 0 1 +GET_DIR_DELEGATION4args GET_DIR_DELEGATION4args get_dir_delegation4args G GE GET GET_ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 8 no 0 8 0 0 0 0 1 +opget_dir_delegation; opget_dir_delegation; opget_dir_delegation; o op opg opge BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 8 ; 1 7 0 0 0 0 1 +case OP_GETDEVICEINFO: case c ca cas case BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 8 8 :; 2 10 0 0 0 0 1 +case OP_GETDEVICELIST: case c ca cas case BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 8 8 :; 2 10 0 0 0 0 1 +case OP_LAYOUTCOMMIT: case c ca cas case BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 8 8 :; 2 9 0 0 0 0 1 +case OP_LAYOUTGET: case c ca cas case BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 8 8 : 1 3 0 0 0 0 1 +LAYOUTGET4args oplayoutget; layoutget4args L LA LAY LAYO BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 8 ; 1 4 0 0 0 0 1 +case OP_LAYOUTRETURN: case c ca cas case BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 8 8 :; 2 9 0 0 0 0 1 +case OP_SECINFO_NO_NAME: case c ca cas case BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 8 10 : 1 6 0 0 0 0 1 +SECINFO_NO_NAME4args opsecinfo_no_name; secinfo_no_name4args S SE SEC SECI BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 10 ; 1 10 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 8 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 11 , 1 10 0 0 0 0 0 +[Page 417] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 8 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 8 0 no 0 4 0 0 0 0 1 +case OP_SEQUENCE: case c ca cas case BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 8 0 : 1 3 0 0 0 0 1 +SEQUENCE4args opsequence; sequence4args S SE SEQ SEQU BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 0 ; 1 4 0 0 0 0 1 +case OP_SET_SSV: case c ca cas case BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 8 0 : 1 3 0 0 0 0 1 +SET_SSV4args opset_ssv; set_ssv4args S SE SET SET_ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 0 ; 1 4 0 0 0 0 1 +case OP_TEST_STATEID: case c ca cas case BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 8 0 :; 2 10 0 0 0 0 1 +case OP_WANT_DELEGATION: case c ca cas case BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 8 1 : 1 6 0 0 0 0 1 +WANT_DELEGATION4args opwant_delegation; want_delegation4args W WA WAN WANT BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 1 ; 1 10 0 0 0 0 1 +case OP_DESTROY_CLIENTID: case c ca cas case BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 8 1 : 1 10 0 0 0 0 1 +DESTROY_CLIENTID4args DESTROY_CLIENTID4args destroy_clientid4args D DE DES DEST BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 1 no 0 8 0 0 0 0 1 +opdestroy_clientid; opdestroy_clientid; opdestroy_clientid; o op opd opde BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 1 ; 1 7 0 0 0 0 1 +case OP_RECLAIM_COMPLETE: case c ca cas case BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 8 2 : 1 10 0 0 0 0 1 +RECLAIM_COMPLETE4args RECLAIM_COMPLETE4args reclaim_complete4args R RE REC RECL BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 2 no 0 8 0 0 0 0 1 +opreclaim_complete; opreclaim_complete; opreclaim_complete; o op opr opre BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 2 ; 1 7 0 0 0 0 1 +/* Operations /* / /* /* /* BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 2 /*.*/ 5 10 0 0 0 0 1 +case OP_ILLEGAL: case c ca cas case BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 8 2 : 1 4 0 0 0 0 1 +void; void; void; v vo voi void BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 2 ; 1 1 0 0 0 0 1 +}; }; }; } }; }; }; BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 2 ; 1 0 0 0 0 0 1 +struct COMPOUND4args struct s st str stru BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 3 no 0 10 0 0 0 0 1 +utf8str_cs utf8str_cs utf8str_cs u ut utf utf8 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 3 no 0 4 0 0 0 0 1 +tag; tag; tag; t ta tag tag; BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 3 ; 1 2 0 0 0 0 1 +uint32_t uint32_t uint32_t u ui uin uint BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 3 no 0 3 0 0 0 0 1 +minorversion; minorversion; minorversion; m mi min mino BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 3 ; 1 6 0 0 0 0 1 +nfs_argop4 nfs_argop4 nfs_argop4 n nf nfs nfs_ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 3 no 0 4 0 0 0 0 1 +argarray<>; argarray<>; argarray<>; a ar arg arga BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 3 ; 1 5 0 0 0 0 1 +}; }; }; } }; }; }; BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 3 ; 1 1 0 0 0 0 1 +16.2.2. RESULTS 16.2.2. 1 16 16. 16.2 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 4 ... 3 10 0 0 0 0 1 +union nfs_resop4 union u un uni unio BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 4 () 2 8 0 0 0 0 1 +case OP_ACCESS: case c ca cas case BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 8 4 : 1 2 0 0 0 0 1 +ACCESS4res opaccess; access4res A AC ACC ACCE BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 4 ; 1 3 0 0 0 0 1 +case OP_CLOSE: case c ca cas case BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 8 4 : 1 2 0 0 0 0 1 +CLOSE4res opclose; close4res C CL CLO CLOS BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 4 ; 1 3 0 0 0 0 1 +case OP_COMMIT: case c ca cas case BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 8 4 : 1 2 0 0 0 0 1 +COMMIT4res opcommit; commit4res C CO COM COMM BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 4 ; 1 3 0 0 0 0 1 +case OP_CREATE: case c ca cas case BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 8 4 : 1 2 0 0 0 0 1 +CREATE4res opcreate; create4res C CR CRE CREA BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 4 ; 1 3 0 0 0 0 1 +case OP_DELEGPURGE: case c ca cas case BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 8 4 : 1 3 0 0 0 0 1 +DELEGPURGE4res opdelegpurge; delegpurge4res D DE DEL DELE BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 4 ; 1 5 0 0 0 0 1 +case OP_DELEGRETURN: case c ca cas case BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 8 4 : 1 3 0 0 0 0 1 +DELEGRETURN4res opdelegreturn; delegreturn4res D DE DEL DELE BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 4 ; 1 5 0 0 0 0 1 +case OP_GETATTR: case c ca cas case BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 8 4 : 1 3 0 0 0 0 1 +GETATTR4res opgetattr; getattr4res G GE GET GETA BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 4 ; 1 4 0 0 0 0 1 +case OP_GETFH: case c ca cas case BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 8 4 : 1 2 0 0 0 0 1 +GETFH4res opgetfh; getfh4res G GE GET GETF BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 4 ; 1 3 0 0 0 0 1 +case OP_LINK: case c ca cas case BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 8 4 : 1 2 0 0 0 0 1 +LINK4res oplink; link4res L LI LIN LINK BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 4 ; 1 3 0 0 0 0 1 +case OP_LOCK: case c ca cas case BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 8 4 : 1 2 0 0 0 0 1 +LOCK4res oplock; lock4res L LO LOC LOCK BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 4 ; 1 3 0 0 0 0 1 +case OP_LOCKT: case c ca cas case BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 8 4 : 1 2 0 0 0 0 1 +LOCKT4res oplockt; lockt4res L LO LOC LOCK BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 4 ; 1 3 0 0 0 0 1 +case OP_LOCKU: case c ca cas case BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 8 4 : 1 2 0 0 0 0 1 +LOCKU4res oplocku; locku4res L LO LOC LOCK BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 4 ; 1 3 0 0 0 0 1 +case OP_LOOKUP: case c ca cas case BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 8 4 : 1 2 0 0 0 0 1 +LOOKUP4res oplookup; lookup4res L LO LOO LOOK BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 4 ; 1 3 0 0 0 0 1 +case OP_LOOKUPP: case c ca cas case BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 8 4 : 1 3 0 0 0 0 1 +LOOKUPP4res oplookupp; lookupp4res L LO LOO LOOK BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 4 ; 1 4 0 0 0 0 1 +case OP_NVERIFY: case c ca cas case BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 8 4 : 1 3 0 0 0 0 1 +NVERIFY4res opnverify; nverify4res N NV NVE NVER BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 4 ; 1 4 0 0 0 0 1 +case OP_OPEN: case c ca cas case BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 8 4 : 1 2 0 0 0 0 1 +OPEN4res opopen; open4res O OP OPE OPEN BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 4 ; 1 3 0 0 0 0 1 +case OP_OPENATTR: case c ca cas case BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 8 4 : 1 3 0 0 0 0 1 +OPENATTR4res opopenattr; openattr4res O OP OPE OPEN BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 4 ; 1 4 0 0 0 0 1 +/* Not /* / /* /* /* BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 4 /*.*/ 5 4 0 0 0 0 1 +case OP_OPEN_CONFIRM: case c ca cas case BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 8 4 :; 2 10 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 8 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 11 , 1 10 0 0 0 0 0 +[Page 418] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 8 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 8 0 no 0 4 0 0 0 0 1 +case OP_OPEN_DOWNGRADE: case c ca cas case BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 8 0 : 1 10 0 0 0 0 1 +OPEN_DOWNGRADE4res OPEN_DOWNGRADE4res open_downgrade4res O OP OPE OPEN BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 0 no 0 7 0 0 0 0 1 +opopen_downgrade; opopen_downgrade; opopen_downgrade; o op opo opop BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 0 ; 1 7 0 0 0 0 1 +case OP_PUTFH: case c ca cas case BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 8 1 : 1 2 0 0 0 0 1 +PUTFH4res opputfh; putfh4res P PU PUT PUTF BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 1 ; 1 3 0 0 0 0 1 +case OP_PUTPUBFH: case c ca cas case BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 8 1 : 1 3 0 0 0 0 1 +PUTPUBFH4res opputpubfh; putpubfh4res P PU PUT PUTP BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 1 ; 1 4 0 0 0 0 1 +case OP_PUTROOTFH: case c ca cas case BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 8 1 : 1 3 0 0 0 0 1 +PUTROOTFH4res opputrootfh; putrootfh4res P PU PUT PUTR BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 1 ; 1 5 0 0 0 0 1 +case OP_READ: case c ca cas case BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 8 1 : 1 2 0 0 0 0 1 +READ4res opread; read4res R RE REA READ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 1 ; 1 3 0 0 0 0 1 +case OP_READDIR: case c ca cas case BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 8 1 : 1 3 0 0 0 0 1 +READDIR4res opreaddir; readdir4res R RE REA READ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 1 ; 1 4 0 0 0 0 1 +case OP_READLINK: case c ca cas case BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 8 1 : 1 3 0 0 0 0 1 +READLINK4res opreadlink; readlink4res R RE REA READ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 1 ; 1 4 0 0 0 0 1 +case OP_REMOVE: case c ca cas case BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 8 1 : 1 3 0 0 0 0 1 +REMOVE4res opremove; remove4res R RE REM REMO BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 1 ; 1 4 0 0 0 0 1 +case OP_RENAME: case c ca cas case BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 8 1 : 1 3 0 0 0 0 1 +RENAME4res oprename; rename4res R RE REN RENA BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 1 ; 1 4 0 0 0 0 1 +/* Not /* / /* /* /* BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 1 /*.*/ 5 4 0 0 0 0 1 +case OP_RENEW: case c ca cas case BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 8 1 : 1 2 0 0 0 0 1 +RENEW4res oprenew; renew4res R RE REN RENE BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 1 ; 1 3 0 0 0 0 1 +case OP_RESTOREFH: case c ca cas case BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 8 1 : 1 3 0 0 0 0 1 +RESTOREFH4res oprestorefh; restorefh4res R RE RES REST BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 1 ; 1 5 0 0 0 0 1 +case OP_SAVEFH: case c ca cas case BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 8 1 : 1 3 0 0 0 0 1 +SAVEFH4res opsavefh; savefh4res S SA SAV SAVE BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 1 ; 1 4 0 0 0 0 1 +case OP_SECINFO: case c ca cas case BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 8 1 : 1 3 0 0 0 0 1 +SECINFO4res opsecinfo; secinfo4res S SE SEC SECI BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 1 ; 1 4 0 0 0 0 1 +case OP_SETATTR: case c ca cas case BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 8 1 : 1 3 0 0 0 0 1 +SETATTR4res opsetattr; setattr4res S SE SET SETA BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 1 ; 1 4 0 0 0 0 1 +/* Not /* / /* /* /* BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 1 /*.*/ 5 4 0 0 0 0 1 +case OP_SETCLIENTID: case c ca cas case BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 8 1 :; 2 10 0 0 0 0 1 +/* Not /* / /* /* /* BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 6 /*.*/ 5 7 0 0 0 0 1 +case OP_SETCLIENTID_CONFIRM: case c ca cas case BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 8 6 : 1 10 0 0 0 0 1 +SETCLIENTID_CONFIRM4res SETCLIENTID_CONFIRM4res setclientid_confirm4res S SE SET SETC BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 6 no 0 8 0 0 0 0 1 +opsetclientid_confirm; opsetclientid_confirm; opsetclientid_confirm; o op ops opse BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 6 ; 1 7 0 0 0 0 1 +case OP_VERIFY: case c ca cas case BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 8 6 : 1 5 0 0 0 0 1 +VERIFY4res opverify; verify4res V VE VER VERI BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 6 ; 1 7 0 0 0 0 1 +case OP_WRITE: case c ca cas case BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 8 6 : 1 5 0 0 0 0 1 +WRITE4res opwrite; write4res W WR WRI WRIT BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 6 ; 1 6 0 0 0 0 1 +/* Not /* / /* /* /* BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 8 /*.*/ 5 8 0 0 0 0 1 +case OP_RELEASE_LOCKOWNER: case c ca cas case BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 8 8 : 1 10 0 0 0 0 1 +RELEASE_LOCKOWNER4res RELEASE_LOCKOWNER4res release_lockowner4res R RE REL RELE BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 8 no 0 8 0 0 0 0 1 +oprelease_lockowner; oprelease_lockowner; oprelease_lockowner; o op opr opre BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 8 ; 1 7 0 0 0 0 1 +/* Operations /* / /* /* /* BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 9 /*.*/ 5 10 0 0 0 0 1 +case OP_BACKCHANNEL_CTL: case c ca cas case BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 8 9 : 1 7 0 0 0 0 1 +BACKCHANNEL_CTL4res BACKCHANNEL_CTL4res backchannel_ctl4res B BA BAC BACK BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 9 no 0 6 0 0 0 0 1 +opbackchannel_ctl; opbackchannel_ctl; opbackchannel_ctl; o op opb opba BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 9 ; 1 5 0 0 0 0 1 +case OP_BIND_CONN_TO_SESSION: case c ca cas case BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 8 10 : 1 10 0 0 0 0 1 +BIND_CONN_TO_SESSION4res BIND_CONN_TO_SESSION4res bind_conn_to_session4res B BI BIN BIND BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 10 no 0 8 0 0 0 0 1 +opbind_conn_to_session; opbind_conn_to_session; opbind_conn_to_session; o op opb opbi BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 10 ; 1 8 0 0 0 0 1 +case OP_EXCHANGE_ID: case c ca cas case BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 8 10 : 1 6 0 0 0 0 1 +EXCHANGE_ID4res opexchange_id; exchange_id4res E EX EXC EXCH BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 10 ; 1 10 0 0 0 0 1 +case OP_CREATE_SESSION: case c ca cas case BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 8 10 : 1 10 0 0 0 0 1 +CREATE_SESSION4res CREATE_SESSION4res create_session4res C CR CRE CREA BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 10 no 0 7 0 0 0 0 1 +opcreate_session; opcreate_session; opcreate_session; o op opc opcr BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 10 ; 1 7 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 8 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 11 , 1 10 0 0 0 0 0 +[Page 419] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 8 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 8 0 no 0 4 0 0 0 0 1 +case OP_DESTROY_SESSION: case c ca cas case BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 8 0 : 1 10 0 0 0 0 1 +DESTROY_SESSION4res DESTROY_SESSION4res destroy_session4res D DE DES DEST BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 0 no 0 8 0 0 0 0 1 +opdestroy_session; opdestroy_session; opdestroy_session; o op opd opde BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 0 ; 1 7 0 0 0 0 1 +case OP_FREE_STATEID: case c ca cas case BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 8 1 : 1 10 0 0 0 0 1 +opfree_stateid; opfree_stateid; opfree_stateid; o op opf opfr BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 1 ; 1 4 0 0 0 0 1 +case OP_GET_DIR_DELEGATION: case c ca cas case BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 8 2 : 1 10 0 0 0 0 1 +GET_DIR_DELEGATION4res GET_DIR_DELEGATION4res get_dir_delegation4res G GE GET GET_ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 2 no 0 8 0 0 0 0 1 +opget_dir_delegation; opget_dir_delegation; opget_dir_delegation; o op opg opge BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 2 ; 1 7 0 0 0 0 1 +case OP_GETDEVICEINFO: case c ca cas case BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 8 2 : 1 10 0 0 0 0 1 +opgetdeviceinfo; opgetdeviceinfo; opgetdeviceinfo; o op opg opge BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 2 ; 1 4 0 0 0 0 1 +case OP_GETDEVICELIST: case c ca cas case BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 8 3 : 1 10 0 0 0 0 1 +opgetdevicelist; opgetdevicelist; opgetdevicelist; o op opg opge BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 3 ; 1 4 0 0 0 0 1 +case OP_LAYOUTCOMMIT: case c ca cas case BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 8 3 :; 2 10 0 0 0 0 1 +case OP_LAYOUTGET: case c ca cas case BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 8 3 : 1 3 0 0 0 0 1 +LAYOUTGET4res oplayoutget; layoutget4res L LA LAY LAYO BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 3 ; 1 4 0 0 0 0 1 +case OP_LAYOUTRETURN: case c ca cas case BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 8 3 :; 2 10 0 0 0 0 1 +case OP_SECINFO_NO_NAME: case c ca cas case BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 8 5 : 1 10 0 0 0 0 1 +SECINFO_NO_NAME4res SECINFO_NO_NAME4res secinfo_no_name4res S SE SEC SECI BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 5 no 0 8 0 0 0 0 1 +opsecinfo_no_name; opsecinfo_no_name; opsecinfo_no_name; o op ops opse BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 5 ; 1 7 0 0 0 0 1 +case OP_SEQUENCE: case c ca cas case BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 8 6 : 1 3 0 0 0 0 1 +SEQUENCE4res opsequence; sequence4res S SE SEQ SEQU BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 6 ; 1 4 0 0 0 0 1 +case OP_SET_SSV: case c ca cas case BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 8 6 : 1 3 0 0 0 0 1 +SET_SSV4res opset_ssv; set_ssv4res S SE SET SET_ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 6 ; 1 4 0 0 0 0 1 +case OP_TEST_STATEID: case c ca cas case BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 8 6 :; 2 10 0 0 0 0 1 +case OP_WANT_DELEGATION: case c ca cas case BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 8 7 : 1 10 0 0 0 0 1 +WANT_DELEGATION4res WANT_DELEGATION4res want_delegation4res W WA WAN WANT BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 7 no 0 8 0 0 0 0 1 +opwant_delegation; opwant_delegation; opwant_delegation; o op opw opwa BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 7 ; 1 7 0 0 0 0 1 +case OP_DESTROY_CLIENTID: case c ca cas case BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 8 8 : 1 10 0 0 0 0 1 +DESTROY_CLIENTID4res DESTROY_CLIENTID4res destroy_clientid4res D DE DES DEST BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 8 no 0 8 0 0 0 0 1 +opdestroy_clientid; opdestroy_clientid; opdestroy_clientid; o op opd opde BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 8 ; 1 7 0 0 0 0 1 +case OP_RECLAIM_COMPLETE: case c ca cas case BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 8 8 : 1 10 0 0 0 0 1 +RECLAIM_COMPLETE4res RECLAIM_COMPLETE4res reclaim_complete4res R RE REC RECL BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 8 no 0 8 0 0 0 0 1 +opreclaim_complete; opreclaim_complete; opreclaim_complete; o op opr opre BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 8 ; 1 7 0 0 0 0 1 +/* Operations /* / /* /* /* BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 9 /*.*/ 5 10 0 0 0 0 1 +case OP_ILLEGAL: case c ca cas case BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 8 9 : 1 4 0 0 0 0 1 +ILLEGAL4res opillegal; illegal4res I IL ILL ILLE BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 9 ; 1 6 0 0 0 0 1 +}; }; }; } }; }; }; BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 9 ; 1 0 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 8 10 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 10 , 1 10 0 0 0 0 0 +[Page 420] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 10 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 8 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 8 0 no 0 4 0 0 0 0 1 +struct COMPOUND4res struct s st str stru BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 0 no 0 10 0 0 0 0 1 +nfsstat4 nfsstat4 nfsstat4 n nf nfs nfss BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 0 no 0 4 0 0 0 0 1 +status; status; status; s st sta stat BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 0 ; 1 3 0 0 0 0 1 +utf8str_cs utf8str_cs utf8str_cs u ut utf utf8 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 0 no 0 5 0 0 0 0 1 +tag; tag; tag; t ta tag tag; BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 0 ; 1 2 0 0 0 0 1 +nfs_resop4 nfs_resop4 nfs_resop4 n nf nfs nfs_ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 0 no 0 5 0 0 0 0 1 +resarray<>; resarray<>; resarray<>; r re res resa BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 0 ; 1 5 0 0 0 0 1 +}; }; }; } }; }; }; BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 0 ; 1 1 0 0 0 0 1 +16.2.3. DESCRIPTION 16.2.3. 1 16 16. 16.2 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 0 ... 3 10 0 0 0 0 1 +The COMPOUND the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 0 no 0 8 0 0 0 0 1 +operations into operations o op ope oper BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 8 0 . 1 9 0 0 0 0 1 +the operations the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 0 . 1 9 0 0 0 0 1 +and the and a an and and BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 0 , 1 10 0 0 0 0 1 +in the in i in in in BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 8 0 . 1 9 0 0 0 0 1 +process until process p pr pro proc BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 0 no 0 9 0 0 0 0 1 +one of one o on one one BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 0 . 1 8 0 0 0 0 1 +In the in I In In In BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 8 3 , 1 10 0 0 0 0 1 +it does it i it it it BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 3 no 0 10 0 0 0 0 1 +operations within operations o op ope oper BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 8 3 .... 4 9 0 0 0 0 1 +more detailed more m mo mor more BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 3 . 1 3 0 0 0 0 1 +The server the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 4 no 0 10 0 0 0 0 1 +client's request. client's c cl cli clie BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 4 '.- 3 9 0 0 0 0 1 +decode. If decode. d de dec deco BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 4 ., 2 9 0 0 0 0 1 +decode error decode d de dec deco BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 4 . 1 9 0 0 0 0 1 +an initial an a an an an BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 8 4 no 0 10 0 0 0 0 1 +decode the decode d de dec deco BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 4 ; 1 10 0 0 0 0 1 +of attributes. of o of of of BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 4 ., 2 9 0 0 0 0 1 +error during error e er err erro BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 4 ., 2 9 0 0 0 0 1 +the error the t th the the BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 4 . 1 7 0 0 0 0 1 +The COMPOUND the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 7 "".., 5 9 0 0 0 0 1 +the value the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 7 . 1 9 0 0 0 0 1 +procedure with procedure p pr pro proc BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 7 , 1 9 0 0 0 0 1 +the server the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 7 no 0 10 0 0 0 0 1 +zero-length resultdata zero-length z ze zer zero BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 7 -. 2 4 0 0 0 0 1 +Contained within contained C Co Con Cont BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 8 "". 3 9 0 0 0 0 1 +results array results r re res resu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 8 8 -, 2 10 0 0 0 0 1 +the status the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 8 no 0 9 0 0 0 0 1 +COMPOUND procedure. compound C CO COM COMP BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 8 8 ., 2 9 0 0 0 0 1 +then the then t th the then BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 8 "" 2 9 0 0 0 0 1 +returned for returned r re ret retu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 8 . 1 5 0 0 0 0 1 +Note that note N No Not Note BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 10 no 0 9 0 0 0 0 1 +procedure. Operation procedure. p pr pro proc BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 10 . 1 9 0 0 0 0 1 +definition and definition d de def defi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 10 . 1 9 0 0 0 0 1 +operation array operation o op ope oper BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 10 no 0 10 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 8 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 11 , 1 10 0 0 0 0 0 +[Page 421] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 8 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 8 0 no 0 4 0 0 0 0 1 +has a has h ha has has BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 0 ,, 2 10 0 0 0 0 1 +the next the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 0 ,. 2 10 0 0 0 0 1 +contains an contains c co con cont BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 0 - 1 9 0 0 0 0 1 +the server the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 0 , 1 10 0 0 0 0 1 +error of error e er err erro BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 0 ., 2 7 0 0 0 0 1 +NFS4ERR_MINOR_VERS_MISMATCH error nfs4err_minor_vers_mismatch N NF NFS NFS4 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 0 no 0 9 0 0 0 0 1 +errors. errors. errors. e er err erro BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 0 . 1 1 0 0 0 0 1 +It is it I It It It BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 2 no 0 9 0 0 0 0 1 +operation that operation o op ope oper BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 2 () 2 10 0 0 0 0 1 +greater than greater g gr gre grea BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 2 (). 3 9 0 0 0 0 1 +this case, this t th thi this BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 2 ,' 2 9 0 0 0 0 1 +rather than rather r ra rat rath BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 2 . 1 9 0 0 0 0 1 +the ILLEGAL the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 2 . 1 9 0 0 0 0 1 +COMPOUND procedure's compound C CO COM COMP BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 8 2 '. 2 10 0 0 0 0 1 +The definition the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 5 "" 2 8 0 0 0 0 1 +implementor. It implementor. i im imp impl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 5 . 1 10 0 0 0 0 1 +request for request r re req requ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 5 - 1 9 0 0 0 0 1 +implementations. However, implementations. i im imp impl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 5 .,"" 4 9 0 0 0 0 1 +be the be b be be be BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 5 . 1 9 0 0 0 0 1 +tag field tag t ta tag tag BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 5 . 1 6 0 0 0 0 1 +16.2.3.1. Current 16.2.3.1. 1 16 16. 16.2 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 7 .... 4 10 0 0 0 0 1 +The COMPOUND the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 7 no 0 10 0 0 0 0 1 +of the of o of of of BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 7 . 1 9 0 0 0 0 1 +the filehandle the t th the the BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 7 . 1 9 0 0 0 0 1 +16.2.3.1.1. Current 16.2.3.1.1. 1 16 16. 16.2 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 8 ..... 5 10 0 0 0 0 1 +The current the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 9 . 1 9 0 0 0 0 1 +Most operations most M Mo Mos Most BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 9 , 1 10 0 0 0 0 1 +and many and a an and and BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 9 . 1 9 0 0 0 0 1 +combination of combination c co com comb BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 9 - 1 9 0 0 0 0 1 +and saved and a an and and BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 9 no 0 8 0 0 0 0 1 +protocol flexibility. protocol p pr pro prot BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 9 . 1 8 0 0 0 0 1 +filehandle usage filehandle f fi fil file BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 9 : 1 7 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 8 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 11 , 1 10 0 0 0 0 0 +[Page 422] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 8 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 8 0 no 0 4 0 0 0 0 1 +PUTFH fh1 putfh P PU PUT PUTF BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 0 no 0 6 0 0 0 0 1 +{fh1} {fh1} {fh1} { {f {fh {fh1 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 0 no 0 4 0 0 0 0 1 +LOOKUP "compA" lookup L LO LOO LOOK BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 0 "" 2 10 0 0 0 0 1 +{fh2} {fh2} {fh2} { {f {fh {fh2 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 0 no 0 4 0 0 0 0 1 +GETATTR GETATTR getattr G GE GET GETA BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 0 no 0 5 0 0 0 0 1 +{fh2} {fh2} {fh2} { {f {fh {fh2 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 0 no 0 4 0 0 0 0 1 +LOOKUP "compB" lookup L LO LOO LOOK BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 0 "" 2 10 0 0 0 0 1 +{fh3} {fh3} {fh3} { {f {fh {fh3 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 0 no 0 4 0 0 0 0 1 +GETATTR GETATTR getattr G GE GET GETA BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 0 no 0 5 0 0 0 0 1 +{fh3} {fh3} {fh3} { {f {fh {fh3 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 0 no 0 4 0 0 0 0 1 +LOOKUP "compC" lookup L LO LOO LOOK BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 0 "" 2 10 0 0 0 0 1 +{fh4} {fh4} {fh4} { {f {fh {fh4 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 0 no 0 4 0 0 0 0 1 +GETATTR GETATTR getattr G GE GET GETA BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 0 no 0 5 0 0 0 0 1 +{fh4} {fh4} {fh4} { {f {fh {fh4 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 0 no 0 4 0 0 0 0 1 +GETFH GETFH getfh G GE GET GETF BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 0 no 0 4 0 0 0 0 1 +Figure 2 figure F Fi Fig Figu BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 1 no 0 10 0 0 0 0 1 +In this in I In In In BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 8 1 ,(.) 4 10 0 0 0 0 1 +the current the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 1 no 0 8 0 0 0 0 1 +operation sets operation o op ope oper BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 1 no 0 9 0 0 0 0 1 +system object. system s sy sys syst BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 1 ., 2 10 0 0 0 0 1 +using the using u us usi usin BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 1 . 1 6 0 0 0 0 1 +The PUTROOTFH the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 2 (.)(.) 6 10 0 0 0 0 1 +also set also a al als also BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 2 . 1 9 0 0 0 0 1 +"PUTFH fh1" "putfh " "P "PU "PUT BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 2 "" 2 10 0 0 0 0 1 +order to order o or ord orde BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 2 ("" 3 9 0 0 0 0 1 +directly below directly d di dir dire BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 2 ). 2 6 0 0 0 0 1 +Along with along A Al Alo Alon BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 4 ,. 2 9 0 0 0 0 1 +While the while W Wh Whi Whil BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 4 no 0 9 0 0 0 0 1 +LOOKUP, the lookup, L LO LOO LOOK BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 4 , 1 10 0 0 0 0 1 +SAVEFH operation. savefh S SA SAV SAVE BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 4 . 1 9 0 0 0 0 1 +value to value v va val valu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 4 . 1 9 0 0 0 0 1 +combination with combination c co com comb BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 4 no 0 10 0 0 0 0 1 +operations. The operations. o op ope oper BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 4 . 1 9 0 0 0 0 1 +value to value v va val valu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 4 ;, 2 8 0 0 0 0 1 +filehandle value filehandle f fi fil file BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 4 "" 2 8 0 0 0 0 1 +client's series client's c cl cli clie BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 4 '. 2 4 0 0 0 0 1 +16.2.3.1.2. Current 16.2.3.1.2. 1 16 16. 16.2 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 7 ..... 5 10 0 0 0 0 1 +With NFSv4.1, with W Wi Wit With BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 7 ., 2 10 0 0 0 0 1 +been made been b be bee been BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 7 ; 1 10 0 0 0 0 1 +passing of passing p pa pas pass BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 7 . 1 9 0 0 0 0 1 +syntax of syntax s sy syn synt BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 7 , 1 9 0 0 0 0 1 +operations. operations. operations. o op ope oper BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 7 . 1 1 0 0 0 0 1 +A "current a A A A A BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 1 0 0 0 0 0 8 9 "" 2 9 0 0 0 0 1 +current filehandle. current c cu cur curr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 9 . 1 9 0 0 0 0 1 +operation that operation o op ope oper BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 9 . 1 9 0 0 0 0 1 +If an if I If If If BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 9 , 1 10 0 0 0 0 1 +the returned the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 9 . 1 9 0 0 0 0 1 +does not does d do doe does BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 9 , 1 9 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 8 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 11 , 1 10 0 0 0 0 0 +[Page 423] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 8 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 8 0 no 0 4 0 0 0 0 1 +all-zeros special all-zeros a al all all- BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 0 -,..,(,)(,). 12 9 0 0 0 0 1 +operation uses operation o op ope oper BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 0 no 0 8 0 0 0 0 1 +stateid, the stateid, s st sta stat BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 0 ,., 3 9 0 0 0 0 1 +PUTFH, PUTROOTFH, putfh, P PU PUT PUTF BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 0 ,, 2 9 0 0 0 0 1 +from {ocfh, from f fr fro from BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 0 ,(),(,), 8 9 0 0 0 0 1 +current state current c cu cur curr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 0 ,(,(). 6 9 0 0 0 0 1 +LOOKUP that lookup L LO LOO LOOK BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 0 no 0 10 0 0 0 0 1 +new current new n ne new new BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 0 ,. 2 10 0 0 0 0 1 +The SAVEFH the T Th The The BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 0 no 0 9 0 0 0 0 1 +current filehandle current c cu cur curr BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 0 . 1 7 0 0 0 0 1 +The following the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 3 no 0 9 0 0 0 0 1 +with a with w wi wit with BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 3 no 0 10 0 0 0 0 1 +stateid to stateid s st sta stat BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 3 (,).() 6 9 0 0 0 0 1 +the current the t th the the BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 3 . 1 4 0 0 0 0 1 +PUTFH fh1 putfh P PU PUT PUTF BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 4 no 0 3 0 0 0 0 1 +--> {fh1, --> - -- --> --> BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 4 --,(,) 6 5 0 0 0 0 1 +READ (sid1), read R RE REA READ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 1 1 0 0 0 0 0 8 4 (),, 4 6 0 0 0 0 1 +{fh1, (0, {fh1, { {f {fh {fh1 BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 4 ,(,)-,(,) 9 10 0 0 0 0 1 +Figure 3 figure F Fi Fig Figu BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 5 no 0 10 0 0 0 0 1 +This next this T Th Thi This BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 5 , 1 10 0 0 0 0 1 +result, generates result, r re res resu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 5 ,(). 4 9 0 0 0 0 1 +READ with read R RE REA READ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 1 1 0 0 0 0 0 8 5 (,) 3 10 0 0 0 0 1 +to (1, to t to to to BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 5 (,), 4 9 0 0 0 0 1 +actually used actually a ac act actu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 5 . 1 9 0 0 0 0 1 +interaction with interaction i in int inte BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 8 5 ,,. 3 9 0 0 0 0 1 +PUTROOTFH PUTROOTFH putrootfh P PU PUT PUTR BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 7 no 0 3 0 0 0 0 1 +--> {fh1, --> - -- --> --> BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 7 --,(,) 6 5 0 0 0 0 1 +OPEN "compA" open O OP OPE OPEN BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 8 7 "" 2 4 0 0 0 0 1 +{fh1, (0, {fh1, { {f {fh {fh1 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 7 ,(,)-,() 8 10 0 0 0 0 1 +READ (1, read R RE REA READ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 1 1 0 0 0 0 0 8 7 (,),, 5 6 0 0 0 0 1 +{fh2, (sid1)} {fh2, { {f {fh {fh2 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 7 ,()-,() 7 10 0 0 0 0 1 +CLOSE (1, close C CL CLO CLOS BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 1 1 0 0 0 0 0 8 7 (,) 3 4 0 0 0 0 1 +{fh2, (sid1)} {fh2, { {f {fh {fh2 BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 7 ,()-,() 7 10 0 0 0 0 1 +Figure 4 figure F Fi Fig Figu BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 9 no 0 10 0 0 0 0 1 +This next this T Th Thi This BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 9 no 0 9 0 0 0 0 1 +stateid sid2 stateid s st sta stat BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 9 no 0 8 0 0 0 0 1 +operation. This operation. o op ope oper BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 9 ./ 2 9 0 0 0 0 1 +O operation o O O O O BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 9 no 0 9 0 0 0 0 1 +correctness with correctness c co cor corr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 9 . 1 9 0 0 0 0 1 +SAVEFH and savefh S SA SAV SAVE BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 9 no 0 9 0 0 0 0 1 +stateid, passing stateid, s st sta stat BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 9 , 1 10 0 0 0 0 1 +operation. operation. operation. o op ope oper BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 9 . 1 1 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 8 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 11 , 1 10 0 0 0 0 0 +[Page 424] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 8 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 8 0 no 0 4 0 0 0 0 1 +PUTFH fh1 putfh P PU PUT PUTF BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 0 no 0 3 0 0 0 0 1 +--> {fh1, --> - -- --> --> BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 0 --,(,) 6 5 0 0 0 0 1 +LOCK 0, lock L LO LOC LOCK BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 1 1 0 0 0 0 0 8 0 ,,() 4 6 0 0 0 0 1 +{fh1, (sid1)} {fh1, { {f {fh {fh1 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 0 ,()-,() 7 10 0 0 0 0 1 +READ (1, read R RE REA READ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 1 1 0 0 0 0 0 8 0 (,),, 5 6 0 0 0 0 1 +{fh1, (sid2)} {fh1, { {f {fh {fh1 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 0 ,()-,() 7 10 0 0 0 0 1 +LOCKU 0, locku L LO LOC LOCK BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 0 ,,(,) 5 7 0 0 0 0 1 +{fh1, (sid2)} {fh1, { {f {fh {fh1 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 0 ,()-,() 7 10 0 0 0 0 1 +SAVEFH SAVEFH savefh S SA SAV SAVE BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 0 no 0 2 0 0 0 0 1 +{fh1, (sid3)} {fh1, { {f {fh {fh1 BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 0 ,()-,() 7 10 0 0 0 0 1 +PUTFH fh2 putfh P PU PUT PUTF BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 3 no 0 3 0 0 0 0 1 +{fh1, (sid3)} {fh1, { {f {fh {fh1 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 3 ,()-,(,) 8 10 0 0 0 0 1 +WRITE (1, write W WR WRI WRIT BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 8 3 (,),, 5 7 0 0 0 0 1 +{fh2, (0, {fh2, { {f {fh {fh2 BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 3 ,(,)-,(,) 9 10 0 0 0 0 1 +RESTOREFH RESTOREFH restorefh R RE RES REST BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 4 no 0 3 0 0 0 0 1 +{fh2, (0, {fh2, { {f {fh {fh2 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 4 ,(,)-,() 8 10 0 0 0 0 1 +READ (1, read R RE REA READ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 1 1 0 0 0 0 0 8 4 (,),, 5 7 0 0 0 0 1 +{fh1, (sid3)} {fh1, { {f {fh {fh1 BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 4 ,()-,() 7 10 0 0 0 0 1 +Figure 5 figure F Fi Fig Figu BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 5 no 0 10 0 0 0 0 1 +The final the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 6 . 1 9 0 0 0 0 1 +client is client c cl cli clie BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 6 , 1 10 0 0 0 0 1 +(0,0), to (0,0), ( (0 (0, (0,0 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 6 (,),. 5 7 0 0 0 0 1 +NFS4ERR_BAD_STATEID in nfs4err_bad_stateid N NF NFS NFS4 BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 6 . 1 8 0 0 0 0 1 +PUTFH fh1 putfh P PU PUT PUTF BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 7 no 0 2 0 0 0 0 1 +--> {fh1, --> - -- --> --> BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 7 --,(,) 6 4 0 0 0 0 1 +READ (1, read R RE REA READ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 1 1 0 0 0 0 0 8 7 (,),, 5 5 0 0 0 0 1 +{fh1, (0, {fh1, { {f {fh {fh1 BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 7 ,(,)- 5 10 0 0 0 0 1 +Figure 6 figure F Fi Fig Figu BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 8 no 0 10 0 0 0 0 1 +16.2.4. ERRORS 16.2.4. 1 16 16. 16.2 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 8 ... 3 10 0 0 0 0 1 +COMPOUND will compound C CO COM COMP BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 8 9 no 0 10 0 0 0 0 1 +fore channel fore f fo for fore BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 9 ()., 4 9 0 0 0 0 1 +zero operations, zero z ze zer zero BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 9 , 1 10 0 0 0 0 1 +to do to t to to to BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 9 . 1 9 0 0 0 0 1 +COMPOUND will compound C CO COM COMP BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 8 9 : 1 8 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 8 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 11 , 1 10 0 0 0 0 0 +[Page 425] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 8 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 8 0 no 0 4 0 0 0 0 1 +COMPOUND Error compound C CO COM COMP BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 8 0 no 0 10 0 0 0 0 1 ++------------------------------+------------------------------------+ +------------------------------+------------------------------------+ +------------------------------+------------------------------------+ + +- +-- +--- BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 0 ------------------------------------------------------------------ 66 10 0 0 0 0 1 +| Error | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 1 0 0 0 0 1 +| Notes | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 0 0 0 0 0 1 ++------------------------------+------------------------------------+ +------------------------------+------------------------------------+ +------------------------------+------------------------------------+ + +- +-- +--- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 0 ------------------------------------------------------------------ 66 10 0 0 0 0 1 +| NFS4ERR_BADCHAR | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 2 0 0 0 0 1 +| The | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 5 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 0 0 0 0 0 1 +| the | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 . 1 4 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 0 0 0 0 0 1 +| NFS4ERR_BADXDR | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 2 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 0 0 0 0 0 1 +| NFS4ERR_DELAY | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 2 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 0 0 0 0 0 1 +| NFS4ERR_INVAL | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 2 0 0 0 0 1 +| The | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 - 1 5 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 0 0 0 0 0 1 +| encoding. | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 . 1 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 0 0 0 0 0 1 +| NFS4ERR_MINOR_VERS_MISMATCH | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 4 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 0 0 0 0 0 1 +| NFS4ERR_SERVERFAULT | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 3 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 0 0 0 0 0 1 +| NFS4ERR_TOO_MANY_OPS | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 3 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 0 0 0 0 0 1 +| NFS4ERR_REP_TOO_BIG | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 3 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 0 0 0 0 0 1 +| NFS4ERR_REP_TOO_BIG_TO_CACHE | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 4 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 0 0 0 0 0 1 +| NFS4ERR_REQ_TOO_BIG | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 3 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 0 0 0 0 0 1 ++------------------------------+------------------------------------+ +------------------------------+------------------------------------+ +------------------------------+------------------------------------+ + +- +-- +--- BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 0 ------------------------------------------------------------------ 66 10 0 0 0 0 1 +Table 9 table T Ta Tab Tabl BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 5 no 0 10 0 0 0 0 1 +17. Operations: 17. 1 17 17. 17. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 5 .:,, 4 10 0 0 0 0 1 +The following the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 5 . 1 10 0 0 0 0 1 +and the and a an and and BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 5 ,, 2 9 0 0 0 0 1 +OPTIONAL to optional O OP OPT OPTI BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 8 5 . 1 9 0 0 0 0 1 +NOT implement not N NO NOT NOT BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 8 5 no 0 9 0 0 0 0 1 +NFSv4.0 and nfsv4.0 N NF NFS NFSv BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 5 ... 3 6 0 0 0 0 1 +For the for F Fo For For BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 7 ,,, 3 10 0 0 0 0 1 +for operations for f fo for for BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 7 . 1 9 0 0 0 0 1 +The client the T Th The The BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 7 no 0 9 0 0 0 0 1 +for the for f fo for for BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 7 ., 2 9 0 0 0 0 1 +read-only NFSv4.1 read-only r re rea read BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 7 -. 2 9 0 0 0 0 1 +operation and operation o op ope oper BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 7 . 1 5 0 0 0 0 1 +The REQUIRED the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 8 no 0 9 0 0 0 0 1 +the server the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 8 ., 2 9 0 0 0 0 1 +has the has h ha has has BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 8 no 0 10 0 0 0 0 1 +on the on o on on on BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 8 no 0 9 0 0 0 0 1 +callback operations. callback c ca cal call BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 8 .; 2 9 0 0 0 0 1 +way the way w wa way way BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 8 8 no 0 10 0 0 0 0 1 +a backchannel. a a a a a BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 1 0 0 0 0 0 8 8 . 1 2 0 0 0 0 1 +Since this since S Si Sin Sinc BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 10 , 1 10 0 0 0 0 1 +there are there t th the ther BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 10 ., 2 9 0 0 0 0 1 +there is there t th the ther BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 10 , 1 9 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 8 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 11 , 1 10 0 0 0 0 0 +[Page 426] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 8 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 8 0 no 0 4 0 0 0 0 1 +operation descriptions operation o op ope oper BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 0 no 0 10 0 0 0 0 1 +relevant explanatory relevant r re rel rele BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 0 . 1 7 0 0 0 0 1 +The abbreviations the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 0 no 0 10 0 0 0 0 1 +are defined are a ar are are BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 0 . 1 3 0 0 0 0 1 +REQ REQUIRED req R RE REQ REQ BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 1 no 0 10 0 0 0 0 1 +REC RECOMMEND rec R RE REC REC BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 1 no 0 10 0 0 0 0 1 +OPT OPTIONAL opt O OP OPT OPT BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 8 1 no 0 10 0 0 0 0 1 +MNI MUST mni M MN MNI MNI BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 1 no 0 10 0 0 0 0 1 +For the for F Fo For For BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 1 ., 2 9 0 0 0 0 1 +support those support s su sup supp BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 8 1 , 1 9 0 0 0 0 1 +NFS4ERR_NOTSUPP in nfs4err_notsupp N NF NFS NFS4 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 1 '. 2 10 0 0 0 0 1 +If an if I If If If BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 1 , 1 9 0 0 0 0 1 +operations related operations o op ope oper BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 8 1 . 1 9 0 0 0 0 1 +third column third t th thi thir BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 1 () 2 9 0 0 0 0 1 +operation is operation o op ope oper BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 1 no 0 10 0 0 0 0 1 +feature. feature. feature. f fe fea feat BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 1 . 1 1 0 0 0 0 1 +The OPTIONAL the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 4 no 0 10 0 0 0 0 1 +follows: follows: follows: f fo fol foll BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 4 : 1 1 0 0 0 0 1 +pNFS Parallel pnfs p pN pNF pNFS BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 4 no 0 10 0 0 0 0 1 +FDELG File fdelg F FD FDE FDEL BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 4 no 0 10 0 0 0 0 1 +DDELG Directory ddelg D DD DDE DDEL BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 5 no 0 10 0 0 0 0 1 +Operations Operations operations O Op Ope Oper BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 8 5 no 0 10 0 0 0 0 1 ++----------------------+------------+--------------+----------------+ +----------------------+------------+--------------+----------------+ +----------------------+------------+--------------+----------------+ + +- +-- +--- BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 5 ---------------------------------------------------------------- 64 10 0 0 0 0 1 +| Operation | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 5 no 0 1 0 0 0 0 1 +| REQ, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 5 ,, 2 3 0 0 0 0 1 +| Definition | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 5 no 0 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 5 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 5 no 0 0 0 0 0 0 1 +| OPT, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 5 , 1 1 0 0 0 0 1 +| (REQ, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 5 (,, 3 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 5 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 5 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 5 no 0 0 0 0 0 0 1 +| MNI | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 5 no 0 0 0 0 0 0 1 +| or | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 5 ) 1 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 5 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 5 no 0 0 0 0 0 0 1 ++----------------------+------------+--------------+----------------+ +----------------------+------------+--------------+----------------+ +----------------------+------------+--------------+----------------+ + +- +-- +--- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 5 ---------------------------------------------------------------- 64 10 0 0 0 0 1 +| ACCESS | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 5 no 0 1 0 0 0 0 1 +| REQ | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 5 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 5 no 0 0 0 0 0 0 1 +| Section | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 5 . 1 2 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 5 no 0 0 0 0 0 0 1 +| BACKCHANNEL_CTL | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 5 no 0 2 0 0 0 0 1 +| REQ | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 5 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 5 no 0 0 0 0 0 0 1 +| Section | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 5 . 1 2 0 0 0 0 1 +| BIND_CONN_TO_SESSION | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 5 no 0 4 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 5 no 0 0 0 0 0 0 1 +| Section | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 5 . 1 2 0 0 0 0 1 +| CLOSE | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 5 no 0 1 0 0 0 0 1 +| REQ | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 5 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 5 no 0 0 0 0 0 0 1 +| Section | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 5 . 1 2 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 5 no 0 0 0 0 0 0 1 +| COMMIT | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 5 no 0 1 0 0 0 0 1 +| REQ | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 5 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 5 no 0 0 0 0 0 0 1 +| Section | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 5 . 1 2 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 5 no 0 0 0 0 0 0 1 +| CREATE | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 5 no 0 1 0 0 0 0 1 +| REQ | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 5 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 5 no 0 0 0 0 0 0 1 +| Section | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 5 . 1 2 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 5 no 0 0 0 0 0 0 1 +| CREATE_SESSION | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 5 no 0 2 0 0 0 0 1 +| REQ | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 5 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 5 no 0 0 0 0 0 0 1 +| Section | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 5 . 1 2 0 0 0 0 1 +| DELEGPURGE | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 5 no 0 1 0 0 0 0 1 +| OPT | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 5 no 0 0 0 0 0 0 1 +| FDELG | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 5 (). 3 4 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 5 no 0 0 0 0 0 0 1 +| DELEGRETURN | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 5 no 0 2 0 0 0 0 1 +| OPT | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 5 no 0 0 0 0 0 0 1 +| FDELG, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 5 , 1 1 0 0 0 0 1 +| Section | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 5 . 1 2 0 0 0 0 1 +| | | | | | | BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 5 no 0 0 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 8 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 11 , 1 10 0 0 0 0 0 +[Page 427] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 8 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 8 0 no 0 4 0 0 0 0 1 +| | | | | | | BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 0 0 0 0 0 1 +| DDELG, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 , 1 4 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 0 0 0 0 0 1 +| (REQ) | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 () 2 2 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 0 0 0 0 0 1 +| DESTROY_CLIENTID | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 5 0 0 0 0 1 +| REQ | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 0 0 0 0 0 1 +| Section | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 . 1 5 0 0 0 0 1 +| DESTROY_SESSION | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 5 0 0 0 0 1 +| REQ | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 0 0 0 0 0 1 +| Section | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 . 1 5 0 0 0 0 1 +| EXCHANGE_ID | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 4 0 0 0 0 1 +| REQ | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 0 0 0 0 0 1 +| Section | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 . 1 5 0 0 0 0 1 +| FREE_STATEID | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 4 0 0 0 0 1 +| REQ | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 0 0 0 0 0 1 +| Section | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 . 1 5 0 0 0 0 1 +| GETATTR | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 3 0 0 0 0 1 +| REQ | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 0 0 0 0 0 1 +| Section | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 . 1 4 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 0 0 0 0 0 1 +| GETDEVICEINFO | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 4 0 0 0 0 1 +| OPT | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 1 0 0 0 0 1 +| pNFS | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 () 2 3 0 0 0 0 1 +| Section | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 . 1 5 0 0 0 0 1 +| GETDEVICELIST | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 4 0 0 0 0 1 +| OPT | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 1 0 0 0 0 1 +| pNFS | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 () 2 3 0 0 0 0 1 +| Section | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 . 1 5 0 0 0 0 1 +| GETFH | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 2 0 0 0 0 1 +| REQ | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 0 0 0 0 0 1 +| Section | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 . 1 4 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 0 0 0 0 0 1 +| GET_DIR_DELEGATION | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 6 0 0 0 0 1 +| OPT | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 1 0 0 0 0 1 +| DDELG | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 (). 3 9 0 0 0 0 1 +| LAYOUTCOMMIT | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 4 0 0 0 0 1 +| OPT | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 1 0 0 0 0 1 +| pNFS | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 () 2 3 0 0 0 0 1 +| Section | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 . 1 5 0 0 0 0 1 +| LAYOUTGET | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 3 0 0 0 0 1 +| OPT | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 1 0 0 0 0 1 +| pNFS | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 () 2 3 0 0 0 0 1 +| Section | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 . 1 5 0 0 0 0 1 +| LAYOUTRETURN | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 4 0 0 0 0 1 +| OPT | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 1 0 0 0 0 1 +| pNFS | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 () 2 3 0 0 0 0 1 +| Section | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 . 1 5 0 0 0 0 1 +| LINK | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 2 0 0 0 0 1 +| OPT | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 0 0 0 0 0 1 +| Section | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 . 1 4 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 0 0 0 0 0 1 +| LOCK | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 2 0 0 0 0 1 +| REQ | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 0 0 0 0 0 1 +| Section | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 . 1 5 0 0 0 0 1 +| LOCKT | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 2 0 0 0 0 1 +| REQ | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 0 0 0 0 0 1 +| Section | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 . 1 5 0 0 0 0 1 +| LOCKU | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 2 0 0 0 0 1 +| REQ | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 0 0 0 0 0 1 +| Section | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 . 1 5 0 0 0 0 1 +| LOOKUP | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 2 0 0 0 0 1 +| REQ | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 0 0 0 0 0 1 +| Section | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 . 1 5 0 0 0 0 1 +| LOOKUPP | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 3 0 0 0 0 1 +| REQ | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 0 0 0 0 0 1 +| Section | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 . 1 5 0 0 0 0 1 +| NVERIFY | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 3 0 0 0 0 1 +| REQ | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 0 0 0 0 0 1 +| Section | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 . 1 5 0 0 0 0 1 +| OPEN | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 2 0 0 0 0 1 +| REQ | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 0 0 0 0 0 1 +| Section | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 . 1 5 0 0 0 0 1 +| OPENATTR | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 3 0 0 0 0 1 +| OPT | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 0 0 0 0 0 1 +| Section | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 . 1 5 0 0 0 0 1 +| OPEN_CONFIRM | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 4 0 0 0 0 1 +| MNI | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 0 0 0 0 0 1 +| N/A | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 / 1 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 0 0 0 0 0 1 +| OPEN_DOWNGRADE | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 5 0 0 0 0 1 +| REQ | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 0 0 0 0 0 1 +| Section | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 . 1 5 0 0 0 0 1 +| PUTFH | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 2 0 0 0 0 1 +| REQ | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 0 0 0 0 0 1 +| Section | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 . 1 5 0 0 0 0 1 +| PUTPUBFH | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 3 0 0 0 0 1 +| REQ | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 0 0 0 0 0 1 +| Section | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 . 1 5 0 0 0 0 1 +| PUTROOTFH | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 3 0 0 0 0 1 +| REQ | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 0 0 0 0 0 1 +| Section | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 . 1 5 0 0 0 0 1 +| READ | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 2 0 0 0 0 1 +| REQ | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 0 0 0 0 0 1 +| Section | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 . 1 5 0 0 0 0 1 +| READDIR | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 3 0 0 0 0 1 +| REQ | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 0 0 0 0 0 1 +| Section | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 . 1 5 0 0 0 0 1 +| READLINK | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 3 0 0 0 0 1 +| OPT | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 0 0 0 0 0 1 +| Section | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 . 1 5 0 0 0 0 1 +| RECLAIM_COMPLETE | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 5 0 0 0 0 1 +| REQ | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 0 0 0 0 0 1 +| Section | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 . 1 5 0 0 0 0 1 +| RELEASE_LOCKOWNER | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 6 0 0 0 0 1 +| MNI | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 0 0 0 0 0 1 +| N/A | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 / 1 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 0 0 0 0 0 1 +| REMOVE | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 2 0 0 0 0 1 +| REQ | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 0 0 0 0 0 1 +| Section | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 . 1 5 0 0 0 0 1 +| RENAME | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 2 0 0 0 0 1 +| REQ | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 0 0 0 0 0 1 +| Section | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 . 1 5 0 0 0 0 1 +| RENEW | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 2 0 0 0 0 1 +| MNI | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 0 0 0 0 0 1 +| N/A | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 / 1 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 0 0 0 0 0 1 +| RESTOREFH | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 3 0 0 0 0 1 +| REQ | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 0 0 0 0 0 1 +| Section | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 . 1 5 0 0 0 0 1 +| SAVEFH | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 2 0 0 0 0 1 +| REQ | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 0 0 0 0 0 1 +| Section | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 . 1 5 0 0 0 0 1 +| SECINFO | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 3 0 0 0 0 1 +| REQ | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 0 0 0 0 0 1 +| Section | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 . 1 5 0 0 0 0 1 +| SECINFO_NO_NAME | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 5 0 0 0 0 1 +| REC | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 1 0 0 0 0 1 +| pNFS | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 3 0 0 0 0 1 +| Section | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 ., 2 5 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 0 0 0 0 0 1 +| layout | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 (). 3 10 0 0 0 0 1 +| SEQUENCE | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 3 0 0 0 0 1 +| REQ | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 0 0 0 0 0 1 +| Section | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 . 1 5 0 0 0 0 1 +| SETATTR | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 3 0 0 0 0 1 +| REQ | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 0 0 0 0 0 1 +| Section | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 . 1 5 0 0 0 0 1 +| SETCLIENTID | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 4 0 0 0 0 1 +| MNI | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 0 0 0 0 0 1 +| N/A | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 / 1 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 0 0 0 0 0 1 +| SETCLIENTID_CONFIRM | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 8 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 0 0 0 0 0 1 +| N/A | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 / 1 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 0 0 0 0 0 1 +| SET_SSV | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 3 0 0 0 0 1 +| REQ | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 0 0 0 0 0 1 +| Section | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 . 1 5 0 0 0 0 1 +| TEST_STATEID | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 4 0 0 0 0 1 +| REQ | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 0 0 0 0 0 1 +| Section | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 . 1 5 0 0 0 0 1 +| VERIFY | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 2 0 0 0 0 1 +| REQ | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 0 0 0 0 0 1 +| Section | | | | | BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 . 1 5 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 8 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 11 , 1 10 0 0 0 0 0 +[Page 428] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 8 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 8 0 no 0 4 0 0 0 0 1 +| WANT_DELEGATION | | | | | BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 2 0 0 0 0 1 +| OPT | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 0 0 0 0 0 1 +| FDELG | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 (). 3 4 0 0 0 0 1 +| WRITE | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 1 0 0 0 0 1 +| REQ | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 0 0 0 0 0 1 +| Section | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 . 1 2 0 0 0 0 1 ++----------------------+------------+--------------+----------------+ +----------------------+------------+--------------+----------------+ +----------------------+------------+--------------+----------------+ + +- +-- +--- BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 0 ---------------------------------------------------------------- 64 10 0 0 0 0 1 +Callback Operations callback C Ca Cal Call BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 8 1 no 0 10 0 0 0 0 1 ++-------------------------+------------+---------------+------------+ +-------------------------+------------+---------------+------------+ +-------------------------+------------+---------------+------------+ + +- +-- +--- BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 1 ---------------------------------------------------------------- 64 10 0 0 0 0 1 +| Operation | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 1 no 0 1 0 0 0 0 1 +| REQ, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 1 ,,(, 4 6 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 1 no 0 0 0 0 0 0 1 +| OPT, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 1 , 1 1 0 0 0 0 1 +| REC, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 1 ,) 2 2 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 1 no 0 0 0 0 0 0 1 +| MNI | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 1 no 0 0 0 0 0 0 1 ++-------------------------+------------+---------------+------------+ +-------------------------+------------+---------------+------------+ +-------------------------+------------+---------------+------------+ + +- +-- +--- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 1 ---------------------------------------------------------------- 64 10 0 0 0 0 1 +| CB_GETATTR | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 1 no 0 1 0 0 0 0 1 +| OPT | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 1 no 0 0 0 0 0 0 1 +| FDELG | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 1 () 2 2 0 0 0 0 1 +| Section | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 1 no 0 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 1 no 0 0 0 0 0 0 1 +| 20.1 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 1 . 1 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 1 no 0 0 0 0 0 0 1 +| CB_LAYOUTRECALL | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 1 no 0 2 0 0 0 0 1 +| OPT | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 1 no 0 0 0 0 0 0 1 +| pNFS | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 1 () 2 1 0 0 0 0 1 +| Section | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 1 no 0 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 1 no 0 0 0 0 0 0 1 +| 20.3 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 1 . 1 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 1 no 0 0 0 0 0 0 1 +| CB_NOTIFY | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 1 no 0 1 0 0 0 0 1 +| OPT | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 1 no 0 0 0 0 0 0 1 +| DDELG | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 1 () 2 2 0 0 0 0 1 +| Section | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 1 no 0 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 1 no 0 0 0 0 0 0 1 +| 20.4 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 1 . 1 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 1 no 0 0 0 0 0 0 1 +| CB_NOTIFY_DEVICEID | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 1 no 0 3 0 0 0 0 1 +| OPT | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 1 no 0 0 0 0 0 0 1 +| pNFS | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 1 () 2 1 0 0 0 0 1 +| Section | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 1 no 0 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 1 no 0 0 0 0 0 0 1 +| 20.12 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 1 . 1 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 1 no 0 0 0 0 0 0 1 +| CB_NOTIFY_LOCK | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 1 no 0 2 0 0 0 0 1 +| OPT | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 1 no 0 0 0 0 0 0 1 +| Section | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 1 no 0 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 1 no 0 0 0 0 0 0 1 +| 20.11 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 1 . 1 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 1 no 0 0 0 0 0 0 1 +| CB_PUSH_DELEG | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 1 no 0 2 0 0 0 0 1 +| OPT | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 1 no 0 0 0 0 0 0 1 +| FDELG | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 1 () 2 2 0 0 0 0 1 +| Section | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 1 no 0 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 1 no 0 0 0 0 0 0 1 +| 20.5 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 1 . 1 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 1 no 0 0 0 0 0 0 1 +| CB_RECALL | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 1 no 0 1 0 0 0 0 1 +| OPT | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 1 no 0 0 0 0 0 0 1 +| FDELG, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 1 ,, 2 3 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 1 no 0 0 0 0 0 0 1 +| pNFS | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 1 () 2 1 0 0 0 0 1 +| 20.2 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 1 . 1 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 1 no 0 0 0 0 0 0 1 +| CB_RECALL_ANY | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 1 no 0 2 0 0 0 0 1 +| OPT | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 1 no 0 0 0 0 0 0 1 +| FDELG, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 1 ,, 2 3 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 1 no 0 0 0 0 0 0 1 +| pNFS | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 1 () 2 1 0 0 0 0 1 +| 20.6 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 1 . 1 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 1 no 0 0 0 0 0 0 1 +| CB_RECALL_SLOT | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 1 no 0 2 0 0 0 0 1 +| REQ | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 1 no 0 0 0 0 0 0 1 +| Section | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 1 no 0 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 1 no 0 0 0 0 0 0 1 +| 20.8 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 1 . 1 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 1 no 0 0 0 0 0 0 1 +| CB_RECALLABLE_OBJ_AVAIL | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 1 no 0 4 0 0 0 0 1 +| DDELG, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 1 , 1 2 0 0 0 0 1 +| Section | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 1 no 0 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 1 no 0 0 0 0 0 0 1 +| (REQ) | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 1 () 2 1 0 0 0 0 1 +| 20.7 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 1 . 1 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 1 no 0 0 0 0 0 0 1 +| CB_SEQUENCE | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 1 no 0 2 0 0 0 0 1 +| OPT | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 1 no 0 0 0 0 0 0 1 +| FDELG, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 1 ,, 2 3 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 1 no 0 0 0 0 0 0 1 +| pNFS | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 1 () 2 1 0 0 0 0 1 +| 20.9 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 1 . 1 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 1 no 0 0 0 0 0 0 1 +| CB_WANTS_CANCELLED | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 1 no 0 3 0 0 0 0 1 +| OPT | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 1 no 0 0 0 0 0 0 1 +| FDELG, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 1 ,, 2 3 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 1 no 0 0 0 0 0 0 1 +| pNFS | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 1 () 2 1 0 0 0 0 1 +| 20.10 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 1 . 1 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 1 no 0 0 0 0 0 0 1 ++-------------------------+------------+---------------+------------+ +-------------------------+------------+---------------+------------+ +-------------------------+------------+---------------+------------+ + +- +-- +--- BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 1 ---------------------------------------------------------------- 64 10 0 0 0 0 1 +18. NFSv4.1 18. 1 18 18. 18. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 11 .. 2 10 0 0 0 0 1 +18.1. Operation 18.1. 1 18 18. 18.1 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 11 ..:- 4 10 0 0 0 0 1 +18.1.1. ARGUMENTS 18.1.1. 1 18 18. 18.1 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 11 ... 3 10 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 8 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 11 , 1 10 0 0 0 0 0 +[Page 429] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 8 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 8 0 no 0 4 0 0 0 0 1 +const ACCESS4_READ const c co con cons BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 0 no 0 8 0 0 0 0 1 += 0x00000001; = = = = = BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 ; 1 6 0 0 0 0 1 +const ACCESS4_LOOKUP const c co con cons BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 0 no 0 9 0 0 0 0 1 += 0x00000002; = = = = = BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 ; 1 6 0 0 0 0 1 +const ACCESS4_MODIFY const c co con cons BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 0 no 0 9 0 0 0 0 1 += 0x00000004; = = = = = BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 ; 1 6 0 0 0 0 1 +const ACCESS4_EXTEND const c co con cons BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 0 no 0 9 0 0 0 0 1 += 0x00000008; = = = = = BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 ; 1 6 0 0 0 0 1 +const ACCESS4_DELETE const c co con cons BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 0 no 0 9 0 0 0 0 1 += 0x00000010; = = = = = BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 ; 1 6 0 0 0 0 1 +const ACCESS4_EXECUTE const c co con cons BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 0 no 0 10 0 0 0 0 1 += 0x00000020; = = = = = BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 ; 1 6 0 0 0 0 1 +struct ACCESS4args struct s st str stru BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 1 no 0 8 0 0 0 0 1 +/* CURRENT_FH: /* / /* /* /* BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 1 /*:*/ 5 10 0 0 0 0 1 +uint32_t uint32_t uint32_t u ui uin uint BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 1 no 0 3 0 0 0 0 1 +access; access; access; a ac acc acce BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 1 ; 1 3 0 0 0 0 1 +}; }; }; } }; }; }; BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 1 ; 1 1 0 0 0 0 1 +18.1.2. RESULTS 18.1.2. 1 18 18. 18.1 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 2 ... 3 10 0 0 0 0 1 +struct ACCESS4resok struct s st str stru BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 2 no 0 10 0 0 0 0 1 +uint32_t uint32_t uint32_t u ui uin uint BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 2 no 0 4 0 0 0 0 1 +supported; supported; supported; s su sup supp BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 2 ; 1 5 0 0 0 0 1 +uint32_t uint32_t uint32_t u ui uin uint BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 2 no 0 4 0 0 0 0 1 +access; access; access; a ac acc acce BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 2 ; 1 3 0 0 0 0 1 +}; }; }; } }; }; }; BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 2 ; 1 1 0 0 0 0 1 +union ACCESS4res union u un uni unio BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 3 () 2 10 0 0 0 0 1 +case NFS4_OK: case c ca cas case BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 8 3 : 1 3 0 0 0 0 1 +ACCESS4resok ACCESS4resok access4resok A AC ACC ACCE BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 3 no 0 2 0 0 0 0 1 +resok4; resok4; resok4; r re res reso BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 3 ; 1 1 0 0 0 0 1 +default: default: default: d de def defa BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 3 : 1 2 0 0 0 0 1 +void; void; void; v vo voi void BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 3 ; 1 1 0 0 0 0 1 +}; }; }; } }; }; }; BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 3 ; 1 0 0 0 0 0 1 +18.1.3. DESCRIPTION 18.1.3. 1 18 18. 18.1 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 3 ... 3 10 0 0 0 0 1 +ACCESS determines access A AC ACC ACCE BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 8 4 , 1 10 0 0 0 0 1 +credentials in credentials c cr cre cred BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 4 , 1 9 0 0 0 0 1 +object specified object o ob obj obje BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 4 . 1 9 0 0 0 0 1 +set of set s se set set BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 4 "". 3 10 0 0 0 0 1 +The server the T Th The The BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 4 . 1 9 0 0 0 0 1 +status of status s st sta stat BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 4 , 1 9 0 0 0 0 1 +response. The response. r re res resp BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 4 .,"", 5 9 0 0 0 0 1 +which the which w wh whi whic BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 4 .,"", 5 8 0 0 0 0 1 +represents the represents r re rep repr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 4 no 0 10 0 0 0 0 1 +provided. On provided. p pr pro prov BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 4 .,. 3 9 0 0 0 0 1 +Note that note N No Not Note BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 8 ' 1 9 0 0 0 0 1 +more values more m mo mor more BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 8 '. 2 9 0 0 0 0 1 +example, if example, e ex exa exam BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 8 , 1 9 0 0 0 0 1 +ACCESS4_READ value access4_read A AC ACC ACCE BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 8 , 1 10 0 0 0 0 1 +MUST NOT must M MU MUS MUST BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 8 8 no 0 10 0 0 0 0 1 +could have could c co cou coul BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 8 . 1 6 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 8 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 11 , 1 10 0 0 0 0 0 +[Page 430] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 8 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 8 0 no 0 4 0 0 0 0 1 +The reply's the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 0 ' 1 10 0 0 0 0 1 +supported field. supported s su sup supp BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 0 . 1 2 0 0 0 0 1 +The results the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 0 . 1 9 0 0 0 0 1 +return status return r re ret retu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 0 no 0 10 0 0 0 0 1 +do not do d do do do BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 0 no 0 9 0 0 0 0 1 +object in object o ob obj obje BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 0 . 1 9 0 0 0 0 1 +by the by b by by by BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 0 . 1 3 0 0 0 0 1 +The following the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 2 : 1 10 0 0 0 0 1 +ACCESS4_READ Read access4_read A AC ACC ACCE BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 2 . 1 10 0 0 0 0 1 +ACCESS4_LOOKUP Look access4_lookup A AC ACC ACCE BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 3 (- 2 10 0 0 0 0 1 +directory objects). directory d di dir dire BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 3 ). 2 3 0 0 0 0 1 +ACCESS4_MODIFY Rewrite access4_modify A AC ACC ACCE BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 3 no 0 10 0 0 0 0 1 +directory entries. directory d di dir dire BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 3 . 1 3 0 0 0 0 1 +ACCESS4_EXTEND Write access4_extend A AC ACC ACCE BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 4 . 1 10 0 0 0 0 1 +ACCESS4_DELETE Delete access4_delete A AC ACC ACCE BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 4 . 1 10 0 0 0 0 1 +ACCESS4_EXECUTE Execute access4_execute A AC ACC ACCE BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 4 (). 3 10 0 0 0 0 1 +On success, on O On On On BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 5 ,. 2 10 0 0 0 0 1 +ACCESS4_EXECUTE is access4_execute A AC ACC ACCE BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 5 no 0 9 0 0 0 0 1 +provides remote provides p pr pro prov BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 5 ,. 2 10 0 0 0 0 1 +following: following: following: f fo fol foll BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 5 : 1 1 0 0 0 0 1 +o Whether o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 8 6 no 0 9 0 0 0 0 1 +responsibility of responsibility r re res resp BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 6 . 1 9 0 0 0 0 1 +ACCESS operation access A AC ACC ACCE BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 8 6 no 0 10 0 0 0 0 1 +that responsibility. that t th tha that BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 6 . 1 3 0 0 0 0 1 +o When o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 8 7 , 1 9 0 0 0 0 1 +from the from f fr fro from BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 7 ., 2 9 0 0 0 0 1 +the client the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 7 no 0 10 0 0 0 0 1 +permissions on permissions p pe per perm BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 7 . 1 9 0 0 0 0 1 +executable files executable e ex exe exec BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 7 no 0 10 0 0 0 0 1 +be acceptable be b be be be BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 7 . 1 8 0 0 0 0 1 +Historically, NFS historically, H Hi His Hist BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 7 , 1 9 0 0 0 0 1 +the user the t th the the BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 7 . 1 6 0 0 0 0 1 +As a as A As As As BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 10 ,[] 3 10 0 0 0 0 1 +implementation claiming implementation i im imp impl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 10 no 0 9 0 0 0 0 1 +access() programming access() a ac acc acce BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 10 ()' 3 10 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 8 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 11 , 1 10 0 0 0 0 0 +[Page 431] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 8 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 8 0 no 0 4 0 0 0 0 1 +execute rights, execute e ex exe exec BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 0 , 1 9 0 0 0 0 1 +regular file's regular r re reg regu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 0 '. 2 9 0 0 0 0 1 +the UNIX the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 0 no 0 9 0 0 0 0 1 +that situation, that t th tha that BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 0 ,. 2 9 0 0 0 0 1 +Suppose the suppose S Su Sup Supp BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 0 no 0 9 0 0 0 0 1 +implementing the implementing i im imp impl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 0 (), 3 10 0 0 0 0 1 +and the and a an and and BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 0 no 0 9 0 0 0 0 1 +follow their follow f fo fol foll BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 0 (). 3 9 0 0 0 0 1 +behavior: behavior: behavior: b be beh beha BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 0 : 1 1 0 0 0 0 1 +o Suppose o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 8 2 '() 3 10 0 0 0 0 1 +is privileged is i is is is BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 2 no 0 8 0 0 0 0 1 +regular file's regular r re reg regu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 2 ','() 5 10 0 0 0 0 1 +not return not n no not not BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 2 . 1 9 0 0 0 0 1 +to execute to t to to to BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 2 no 0 9 0 0 0 0 1 +if stored if i if if if BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 2 -. 2 5 0 0 0 0 1 +o Suppose o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 8 4 '() 3 10 0 0 0 0 1 +the user the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 4 , 1 10 0 0 0 0 1 +the regular the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 4 ','() 5 10 0 0 0 0 1 +does return does d do doe does BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 4 .: 2 6 0 0 0 0 1 +* The * * * * * BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 5 * 1 9 0 0 0 0 1 +server that server s se ser serv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 5 - 1 9 0 0 0 0 1 +system, unless system, s sy sys syst BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 5 ,' 2 10 0 0 0 0 1 +execute permission execute e ex exe exec BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 5 . 1 3 0 0 0 0 1 +* Even * * * * * BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 6 * 1 9 0 0 0 0 1 +permission bits, permission p pe per perm BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 6 ,., 3 9 0 0 0 0 1 +suppose the suppose s su sup supp BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 6 ()" 3 10 0 0 0 0 1 +table" of table" t ta tab tabl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 6 "'"", 5 9 0 0 0 0 1 +where the where w wh whe wher BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 6 no 0 8 0 0 0 0 1 +executable files. executable e ex exe exec BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 6 . 1 9 0 0 0 0 1 +directories of directories d di dir dire BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 6 , 1 9 0 0 0 0 1 +component name. component c co com comp BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 6 . 1 9 0 0 0 0 1 +permission bits permission p pe per perm BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 6 , 1 9 0 0 0 0 1 +execute bits execute e ex exe exec BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 6 . 1 9 0 0 0 0 1 +first directory first f fi fir firs BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 6 , 1 8 0 0 0 0 1 +subsystem will subsystem s su sub subs BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 6 . 1 9 0 0 0 0 1 +fail to fail f fa fai fail BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 6 . 1 9 0 0 0 0 1 +if it if i if if if BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 6 ,., 3 9 0 0 0 0 1 +desired outcome desired d de des desi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 6 no 0 9 0 0 0 0 1 +not contain not n no not not BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 6 . 1 4 0 0 0 0 1 +To deal to T To To To BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 10 ,", 3 10 0 0 0 0 1 +server" principle server" s se ser serv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 10 ". 2 9 0 0 0 0 1 +for determining for f fo for for BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 10 no 0 10 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 8 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 11 , 1 10 0 0 0 0 0 +[Page 432] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 8 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 8 0 no 0 4 0 0 0 0 1 +execution permissions execution e ex exe exec BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 0 ',, 3 10 0 0 0 0 1 +attributes. The attributes. a at att attr BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 0 .: 2 9 0 0 0 0 1 +o If o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 10 0 0 0 0 1 +can read can c ca can can BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 0 , 1 8 0 0 0 0 1 +request's access request's r re req requ BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 0 '. 2 3 0 0 0 0 1 +o If o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 8 1 ' 1 10 0 0 0 0 1 +user if user u us use user BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 8 1 no 0 8 0 0 0 0 1 +permissions in permissions p pe per perm BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 1 ,,, 3 9 0 0 0 0 1 +client wants client c cl cli clie BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 1 , 1 9 0 0 0 0 1 +an ACCESS an a an an an BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 8 1 ' 1 9 0 0 0 0 1 +access field. access a ac acc acce BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 1 . 1 2 0 0 0 0 1 +o If o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 8 3 ' 1 10 0 0 0 0 1 +even if even e ev eve even BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 3 no 0 9 0 0 0 0 1 +execute permissions execute e ex exe exec BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 3 ,,, 3 9 0 0 0 0 1 +the client the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 3 , 1 9 0 0 0 0 1 +ACCESS request access A AC ACC ACCE BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 8 3 no 0 9 0 0 0 0 1 +set in set s se set set BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 3 '., 3 8 0 0 0 0 1 +execute permission execute e ex exe exec BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 3 ( 1 9 0 0 0 0 1 +the server the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 3 ), 2 9 0 0 0 0 1 +presence of presence p pr pre pres BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 3 /' 2 9 0 0 0 0 1 +access field, access a ac acc acce BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 3 , 1 9 0 0 0 0 1 +access to access a ac acc acce BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 3 . 1 2 0 0 0 0 1 +o If o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 8 5 , 1 9 0 0 0 0 1 +method for method m me met meth BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 5 (.., 4 10 0 0 0 0 1 +the file the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 5 ), 2 9 0 0 0 0 1 +permissions, not permissions, p pe per perm BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 5 ,, 2 10 0 0 0 0 1 +the reply the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 5 . 1 9 0 0 0 0 1 +server MUST server s se ser serv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 5 no 0 10 0 0 0 0 1 +whether or whether w wh whe whet BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 5 no 0 9 0 0 0 0 1 +access field. access a ac acc acce BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 5 .' 2 9 0 0 0 0 1 +grant execute grant g gr gra gran BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 8 5 (..,), 6 9 0 0 0 0 1 +the server the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 5 ' 1 9 0 0 0 0 1 +access field access a ac acc acce BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 5 no 0 9 0 0 0 0 1 +set in set s se set set BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 5 ,,. 3 9 0 0 0 0 1 +dacl, the dacl, d da dac dacl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 5 ,"" 3 10 0 0 0 0 1 +set in set s se set set BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 5 . 1 3 0 0 0 0 1 +o If o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 8 9 no 0 10 0 0 0 0 1 +other method other o ot oth othe BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 9 , 1 8 0 0 0 0 1 +ACCESS4_EXECUTE in access4_execute A AC ACC ACCE BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 9 '. 2 9 0 0 0 0 1 +the client the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 9 ' 1 9 0 0 0 0 1 +field, and field, f fi fie fiel BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 9 ,' 2 9 0 0 0 0 1 +field, then field, f fi fie fiel BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 9 , 1 9 0 0 0 0 1 +the ACCESS4_READ the t th the the BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 9 '. 2 8 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 8 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 11 , 1 10 0 0 0 0 0 +[Page 433] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 8 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 8 0 no 0 4 0 0 0 0 1 +o If o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 8 0 , 1 9 0 0 0 0 1 +for read for f fo for for BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 0 ,, 2 10 0 0 0 0 1 +receives an receives r re rec rece BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 0 no 0 9 0 0 0 0 1 +field. The field. f fi fie fiel BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 0 . 1 9 0 0 0 0 1 +when determining when w wh whe when BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 0 no 0 9 0 0 0 0 1 +the access the t th the the BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 0 . 1 3 0 0 0 0 1 +Note that note N No Not Note BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 1 , 1 10 0 0 0 0 1 +then the then t th the then BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 1 (.) 3 9 0 0 0 0 1 +(Section 18.22) (section ( (S (Se (Sec BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 1 (.)., 5 9 0 0 0 0 1 +ACCESS request access A AC ACC ACCE BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 8 1 no 0 9 0 0 0 0 1 +access field access a ac acc acce BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 1 (, 2 10 0 0 0 0 1 +the other the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 1 ), 2 8 0 0 0 0 1 +ACCESS4_EXECUTE set access4_execute A AC ACC ACCE BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 1 ( 1 9 0 0 0 0 1 +ACCESS4_EXECUTE set), access4_execute A AC ACC ACCE BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 1 ), 2 10 0 0 0 0 1 +the file. the t th the the BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 1 . 1 1 0 0 0 0 1 +18.1.4. IMPLEMENTATION 18.1.4. 1 18 18. 18.1 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 4 ... 3 10 0 0 0 0 1 +In general, in I In In In BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 8 4 , 1 9 0 0 0 0 1 +access permissions access a ac acc acce BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 4 ,, 2 10 0 0 0 0 1 +file attributes file f fi fil file BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 4 no 0 10 0 0 0 0 1 +attribute. This attribute. a at att attr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 4 . 1 9 0 0 0 0 1 +or enforce or o or or or BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 4 -. 2 8 0 0 0 0 1 +possible that possible p po pos poss BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 4 no 0 9 0 0 0 0 1 +client. In client. c cl cli clie BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 4 .(), 4 9 0 0 0 0 1 +reliably perform reliably r re rel reli BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 4 . 1 9 0 0 0 0 1 +In the in I In In In BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 8 6 , 1 10 0 0 0 0 1 +operation was operation o op ope oper BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 6 no 0 9 0 0 0 0 1 +failed. Using failed. f fa fai fail BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 6 .., 3 9 0 0 0 0 1 +client can client c cl cli clie BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 6 no 0 9 0 0 0 0 1 +classes of classes c cl cla clas BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 6 . 1 8 0 0 0 0 1 +provided to provided p pr pro prov BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 6 no 0 8 0 0 0 0 1 +operations that operations o op ope oper BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 8 6 . 1 10 0 0 0 0 1 +provides a provides p pr pro prov BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 6 no 0 9 0 0 0 0 1 +object and object o ob obj obje BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 6 . 1 9 0 0 0 0 1 +ACCESS operation access A AC ACC ACCE BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 8 6 no 0 10 0 0 0 0 1 +in the in i in in in BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 8 6 (). 3 9 0 0 0 0 1 +The information the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 10 no 0 10 0 0 0 0 1 +is not is i is is is BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 10 . 1 9 0 0 0 0 1 +performed the performed p pe per perf BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 10 ,. 2 10 0 0 0 0 1 +revoke access revoke r re rev revo BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 10 . 1 5 0 0 0 0 1 +The client the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 11 no 0 10 0 0 0 0 1 +the authentication the t th the the BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 11 no 0 8 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 8 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 11 , 1 10 0 0 0 0 0 +[Page 434] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 8 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 8 0 no 0 4 0 0 0 0 1 +determine access determine d de det dete BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 0 . 1 8 0 0 0 0 1 +credentials that credentials c cr cre cred BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 0 . 1 10 0 0 0 0 1 +Many implementations many M Ma Man Many BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 8 1 no 0 9 0 0 0 0 1 +permission. Operating permission. p pe per perm BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 1 . 1 8 0 0 0 0 1 +ACCESS4_DELETE bit access4_delete A AC ACC ACCE BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 1 - 1 9 0 0 0 0 1 +object. In object. o ob obj obje BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 1 ., 2 9 0 0 0 0 1 +by the by b by by by BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 1 , 1 10 0 0 0 0 1 +instead of instead i in ins inst BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 1 . 1 9 0 0 0 0 1 +Therefore, the therefore, T Th The Ther BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 1 , 1 9 0 0 0 0 1 +determined will determined d de det dete BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 1 . 1 8 0 0 0 0 1 +indicates to indicates i in ind indi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 1 no 0 9 0 0 0 0 1 +particular access particular p pa par part BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 1 . 1 9 0 0 0 0 1 +returned will returned r re ret retu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 1 . 1 6 0 0 0 0 1 +18.2. Operation 18.2. 1 18 18. 18.2 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 5 ..:- 4 10 0 0 0 0 1 +18.2.1. ARGUMENTS 18.2.1. 1 18 18. 18.2 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 6 ... 3 10 0 0 0 0 1 +struct CLOSE4args struct s st str stru BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 6 no 0 8 0 0 0 0 1 +/* CURRENT_FH: /* / /* /* /* BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 6 /*:*/ 5 10 0 0 0 0 1 +seqid4 seqid4 seqid4 s se seq seqi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 6 no 0 2 0 0 0 0 1 +seqid; seqid; seqid; s se seq seqi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 6 ; 1 2 0 0 0 0 1 +stateid4 stateid4 stateid4 s st sta stat BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 6 no 0 3 0 0 0 0 1 +open_stateid; open_stateid; open_stateid; o op ope open BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 6 ; 1 5 0 0 0 0 1 +}; }; }; } }; }; }; BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 6 ; 1 1 0 0 0 0 1 +18.2.2. RESULTS 18.2.2. 1 18 18. 18.2 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 6 ... 3 10 0 0 0 0 1 +union CLOSE4res union u un uni unio BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 7 () 2 10 0 0 0 0 1 +case NFS4_OK: case c ca cas case BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 8 7 : 1 3 0 0 0 0 1 +stateid4 stateid4 stateid4 s st sta stat BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 7 no 0 2 0 0 0 0 1 +open_stateid; open_stateid; open_stateid; o op ope open BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 7 ; 1 3 0 0 0 0 1 +default: default: default: d de def defa BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 7 : 1 2 0 0 0 0 1 +void; void; void; v vo voi void BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 7 ; 1 1 0 0 0 0 1 +}; }; }; } }; }; }; BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 7 ; 1 0 0 0 0 0 1 +18.2.3. DESCRIPTION 18.2.3. 1 18 18. 18.2 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 7 ... 3 10 0 0 0 0 1 +The CLOSE the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 8 no 0 9 0 0 0 0 1 +named attribute named n na nam name BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 8 . 1 9 0 0 0 0 1 +share reservations share s sh sha shar BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 8 no 0 10 0 0 0 0 1 +as a as a as as as BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 8 no 0 10 0 0 0 0 1 +stateid. State stateid. s st sta stat BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 8 .. 2 8 0 0 0 0 1 +If byte-range if I If If If BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 10 -, 2 9 0 0 0 0 1 +before sending before b be bef befo BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 10 . 1 10 0 0 0 0 1 +CLOSE, but close, C CL CLO CLOS BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 8 10 , 1 9 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 8 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 11 , 1 10 0 0 0 0 0 +[Page 435] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 8 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 8 0 no 0 4 0 0 0 0 1 +still has still s st sti stil BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 0 -. 2 10 0 0 0 0 1 +any locks any a an any any BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 0 . 1 5 0 0 0 0 1 +The argument the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 1 , 1 10 0 0 0 0 1 +seqid. seqid. seqid. s se seq seqi BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 1 . 1 1 0 0 0 0 1 +On success, on O On On On BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 1 ,. 2 10 0 0 0 0 1 +The server the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 2 , 1 9 0 0 0 0 1 +flavor, and, flavor, f fl fla flav BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 2 ,,, 3 10 0 0 0 0 1 +also be also a al als also BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 2 . 1 9 0 0 0 0 1 +credentials for credentials c cr cre cred BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 2 . 1 9 0 0 0 0 1 +MAY allow may M MA MAY MAY BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 1 1 0 0 1 0 0 8 2 ( 1 8 0 0 0 0 1 +Section 18.35) section S Se Sec Sect BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 2 .). 3 4 0 0 0 0 1 +18.2.4. IMPLEMENTATION 18.2.4. 1 18 18. 18.2 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 4 ... 3 10 0 0 0 0 1 +Even though even E Ev Eve Even BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 4 , 1 9 0 0 0 0 1 +the client the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 4 ."" 3 9 0 0 0 0 1 +the state the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 4 - 1 9 0 0 0 0 1 +owner. As owner. o ow own owne BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 4 .,- 3 9 0 0 0 0 1 +state or state s st sta stat BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 4 ., 2 9 0 0 0 0 1 +is not is i is is is BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 4 . 1 9 0 0 0 0 1 +this stateid this t th thi this BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 4 , 1 10 0 0 0 0 1 +stateid (the stateid s st sta stat BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 4 ("""" 5 8 0 0 0 0 1 +NFS4_UINT32_MAX, see nfs4_uint32_max, N NF NFS NFS4 BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 4 ,..). 5 5 0 0 0 0 1 +A CLOSE a A A A A BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 1 0 0 0 0 0 8 8 no 0 9 0 0 0 0 1 +previously. Servers previously. p pr pre prev BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 8 . 1 9 0 0 0 0 1 +pending delegation pending p pe pen pend BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 8 no 0 10 0 0 0 0 1 +later time. later l la lat late BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 8 . 1 1 0 0 0 0 1 +18.3. Operation 18.3. 1 18 18. 18.3 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 10 ..:- 4 10 0 0 0 0 1 +18.3.1. ARGUMENTS 18.3.1. 1 18 18. 18.3 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 10 ... 3 10 0 0 0 0 1 +struct COMMIT4args struct s st str stru BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 10 no 0 9 0 0 0 0 1 +/* CURRENT_FH: /* / /* /* /* BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 10 /*:*/ 5 10 0 0 0 0 1 +offset4 offset4 offset4 o of off offs BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 10 no 0 3 0 0 0 0 1 +offset; offset; offset; o of off offs BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 10 ; 1 3 0 0 0 0 1 +count4 count4 count4 c co cou coun BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 10 no 0 3 0 0 0 0 1 +count; count; count; c co cou coun BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 10 ; 1 3 0 0 0 0 1 +}; }; }; } }; }; }; BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 10 ; 1 1 0 0 0 0 1 +18.3.2. RESULTS 18.3.2. 1 18 18. 18.3 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 11 ... 3 10 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 8 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 11 , 1 10 0 0 0 0 0 +[Page 436] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 8 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 8 0 no 0 4 0 0 0 0 1 +struct COMMIT4resok struct s st str stru BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 0 no 0 10 0 0 0 0 1 +verifier4 verifier4 verifier4 v ve ver veri BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 0 no 0 4 0 0 0 0 1 +writeverf; writeverf; writeverf; w wr wri writ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 0 ; 1 5 0 0 0 0 1 +}; }; }; } }; }; }; BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 0 ; 1 1 0 0 0 0 1 +union COMMIT4res union u un uni unio BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 0 () 2 10 0 0 0 0 1 +case NFS4_OK: case c ca cas case BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 8 0 : 1 3 0 0 0 0 1 +COMMIT4resok COMMIT4resok commit4resok C CO COM COMM BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 0 no 0 2 0 0 0 0 1 +resok4; resok4; resok4; r re res reso BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 0 ; 1 1 0 0 0 0 1 +default: default: default: d de def defa BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 0 : 1 2 0 0 0 0 1 +void; void; void; v vo voi void BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 0 ; 1 1 0 0 0 0 1 +}; }; }; } }; }; }; BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 0 ; 1 0 0 0 0 0 1 +18.3.3. DESCRIPTION 18.3.3. 1 18 18. 18.3 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 1 ... 3 10 0 0 0 0 1 +The COMMIT the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 1 , 1 10 0 0 0 0 1 +stable storage stable s st sta stab BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 1 . 1 10 0 0 0 0 1 +flushed data flushed f fl flu flus BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 1 no 0 9 0 0 0 0 1 +WRITE operations write W WR WRI WRIT BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 8 1 "" 2 9 0 0 0 0 1 +field set field f fi fie fiel BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 8 1 . 1 3 0 0 0 0 1 +The offset the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 3 no 0 10 0 0 0 0 1 +to begin. to t to to to BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 3 . 1 9 0 0 0 0 1 +the beginning the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 3 . 1 9 0 0 0 0 1 +of data of o of of of BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 3 ., 2 9 0 0 0 0 1 +the end the t th the the BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 3 . 1 4 0 0 0 0 1 +The server the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 4 no 0 10 0 0 0 0 1 +COMMIT. The commit. C CO COM COMM BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 8 4 . 1 9 0 0 0 0 1 +server has server s se ser serv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 4 no 0 9 0 0 0 0 1 +COMMIT. The commit. C CO COM COMM BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 8 4 . 1 8 0 0 0 0 1 +returned from returned r re ret retu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 4 no 0 9 0 0 0 0 1 +by the by b by by by BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 4 . 1 9 0 0 0 0 1 +verifier at verifier v ve ver veri BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 4 no 0 9 0 0 0 0 1 +loss of loss l lo los loss BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 4 . 1 9 0 0 0 0 1 +is restarted; is i is is is BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 4 ;, 2 9 0 0 0 0 1 +uncommitted data uncommitted u un unc unco BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 4 . 1 4 0 0 0 0 1 +On success, on O On On On BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 8 ,. 2 10 0 0 0 0 1 +18.3.4. IMPLEMENTATION 18.3.4. 1 18 18. 18.3 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 8 ... 3 10 0 0 0 0 1 +The COMMIT the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 8 no 0 9 0 0 0 0 1 +POSIX fsync() posix P PO POS POSI BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 8 ()[]' 5 10 0 0 0 0 1 +with the with w wi wit with BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 8 ( 1 9 0 0 0 0 1 +storage). COMMIT storage). s st sto stor BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 8 )., 3 9 0 0 0 0 1 +any unsynchronized any a an any any BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 8 ' 1 9 0 0 0 0 1 +disk or disk d di dis disk BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 8 .(), 4 9 0 0 0 0 1 +be that be b be be be BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 8 no 0 8 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 8 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 11 , 1 10 0 0 0 0 0 +[Page 437] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 8 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 8 0 no 0 4 0 0 0 0 1 +synchronize. The synchronize. s sy syn sync BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 0 .' 2 10 0 0 0 0 1 +normal periodic normal n no nor norm BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 0 . 1 9 0 0 0 0 1 +return NFS4_OK, return r re ret retu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 0 ,. 2 9 0 0 0 0 1 +COMMIT differs commit C CO COM COMM BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 8 0 () 2 10 0 0 0 0 1 +flush a flush f fl flu flus BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 0 (- 2 8 0 0 0 0 1 +reclamation scheme reclamation r re rec recl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 0 no 0 10 0 0 0 0 1 +written). written). written). w wr wri writ BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 0 ). 2 1 0 0 0 0 1 +The server the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 1 . 1 9 0 0 0 0 1 +server receives server s se ser serv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 1 ,, 2 9 0 0 0 0 1 +offset zero offset o of off offs BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 1 , 1 9 0 0 0 0 1 +fsync() to fsync() f fs fsy fsyn BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 1 ()., 4 10 0 0 0 0 1 +modified data modified m mo mod modi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 1 no 0 9 0 0 0 0 1 +flushed to flushed f fl flu flus BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 1 ., 2 9 0 0 0 0 1 +with the with w wi wit with BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 1 . 1 10 0 0 0 0 1 +is not is i is is is BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 1 . 1 10 0 0 0 0 1 +means that means m me mea mean BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 8 1 no 0 9 0 0 0 0 1 +already been already a al alr alre BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 1 . 1 8 0 0 0 0 1 +The client the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 4 . 1 9 0 0 0 0 1 +are two are a ar are are BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 4 no 0 9 0 0 0 0 1 +storage. The storage. s st sto stor BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 4 .. 2 9 0 0 0 0 1 +this case, this t th thi this BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 4 , 1 9 0 0 0 0 1 +in the in i in in in BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 8 4 . 1 9 0 0 0 0 1 +based on based b ba bas base BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 4 , 1 9 0 0 0 0 1 +associated with associated a as ass asso BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 4 . 1 9 0 0 0 0 1 +and the and a an and and BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 4 . 1 9 0 0 0 0 1 +a COMMIT a a a a a BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 1 0 0 0 0 0 8 4 ,. 2 9 0 0 0 0 1 +this case, this t th thi this BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 4 , 1 9 0 0 0 0 1 +that contain that t th tha that BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 4 , 1 10 0 0 0 0 1 +of zero of o of of of BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 4 ,. 2 9 0 0 0 0 1 +other dirty other o ot oth othe BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 4 no 0 8 0 0 0 0 1 +fashion. fashion. fashion. f fa fas fash BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 4 . 1 1 0 0 0 0 1 +After a after A Af Aft Afte BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 8 () 2 9 0 0 0 0 1 +with the with w wi wit with BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 8 "", 3 9 0 0 0 0 1 +the buffer the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 8 no 0 9 0 0 0 0 1 +buffer has buffer b bu buf buff BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 8 no 0 10 0 0 0 0 1 +a WRITE a a a a a BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 1 0 0 0 0 0 8 8 "" 2 9 0 0 0 0 1 +FILE_SYNC4 or file_sync4 F FI FIL FILE BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 8 . 1 9 0 0 0 0 1 +being freed being b be bei bein BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 8 no 0 9 0 0 0 0 1 +storage on storage s st sto stor BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 8 . 1 3 0 0 0 0 1 +When a when W Wh Whe When BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 10 no 0 10 0 0 0 0 1 +and it and a an and and BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 10 no 0 9 0 0 0 0 1 +returned by returned r re ret retu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 10 , 1 10 0 0 0 0 1 +buffers containing buffers b bu buf buff BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 10 . 1 9 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 8 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 11 , 1 10 0 0 0 0 0 +[Page 438] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 8 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 8 0 no 0 4 0 0 0 0 1 +done is done d do don done BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 0 . 1 8 0 0 0 0 1 +interest, then interest, i in int inte BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 0 , 1 8 0 0 0 0 1 +FILE_SYNC4 stable file_sync4 F FI FIL FILE BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 0 ., 2 9 0 0 0 0 1 +might be might m mi mig migh BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 0 no 0 9 0 0 0 0 1 +operations with operations o op ope oper BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 8 0 no 0 9 0 0 0 0 1 +retransmitting the retransmitting r re ret retr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 0 no 0 9 0 0 0 0 1 +server to server s se ser serv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 0 ., 2 9 0 0 0 0 1 +from COMMIT from f fr fro from BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 0 , 1 10 0 0 0 0 1 +only way only o on onl only BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 0 no 0 10 0 0 0 0 1 +WRITE requests write W WR WRI WRIT BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 8 0 . 1 7 0 0 0 0 1 +The above the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 5 -- 2 10 0 0 0 0 1 +buffer-cache-based systems. buffer-cache-based b bu buf buff BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 5 --., 4 9 0 0 0 0 1 +memory system memory m me mem memo BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 5 . 1 9 0 0 0 0 1 +18.4. Operation 18.4. 1 18 18. 18.4 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 7 ..:-- 5 10 0 0 0 0 1 +18.4.1. ARGUMENTS 18.4.1. 1 18 18. 18.4 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 7 ... 3 10 0 0 0 0 1 +union createtype4 union u un uni unio BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 8 () 2 9 0 0 0 0 1 +case NF4LNK: case c ca cas case BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 8 8 : 1 2 0 0 0 0 1 +linktext4 linkdata; linktext4 l li lin link BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 8 ; 1 4 0 0 0 0 1 +case NF4BLK: case c ca cas case BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 8 8 : 1 2 0 0 0 0 1 +case NF4CHR: case c ca cas case BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 8 8 : 1 2 0 0 0 0 1 +specdata4 devdata; specdata4 s sp spe spec BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 8 ; 1 3 0 0 0 0 1 +case NF4SOCK: case c ca cas case BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 8 8 : 1 2 0 0 0 0 1 +case NF4FIFO: case c ca cas case BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 8 8 : 1 2 0 0 0 0 1 +case NF4DIR: case c ca cas case BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 8 8 : 1 2 0 0 0 0 1 +void; void; void; v vo voi void BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 8 ; 1 1 0 0 0 0 1 +default: default: default: d de def defa BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 8 : 1 1 0 0 0 0 1 +void; /* void; v vo voi void BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 8 ;/**/ 5 10 0 0 0 0 1 +}; }; }; } }; }; }; BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 8 ; 1 0 0 0 0 0 1 +struct CREATE4args struct s st str stru BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 10 no 0 5 0 0 0 0 1 +/* CURRENT_FH: /* / /* /* /* BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 10 /*:*/ 5 10 0 0 0 0 1 +createtype4 createtype4 createtype4 c cr cre crea BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 10 no 0 2 0 0 0 0 1 +objtype; objtype; objtype; o ob obj objt BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 10 ; 1 2 0 0 0 0 1 +component4 component4 component4 c co com comp BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 10 no 0 2 0 0 0 0 1 +objname; objname; objname; o ob obj objn BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 10 ; 1 2 0 0 0 0 1 +fattr4 fattr4 fattr4 f fa fat fatt BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 10 no 0 1 0 0 0 0 1 +createattrs; createattrs; createattrs; c cr cre crea BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 10 ; 1 3 0 0 0 0 1 +}; }; }; } }; }; }; BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 10 ; 1 0 0 0 0 0 1 +18.4.2. RESULTS 18.4.2. 1 18 18. 18.4 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 11 ... 3 10 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 8 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 11 , 1 10 0 0 0 0 0 +[Page 439] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 8 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 8 0 no 0 4 0 0 0 0 1 +struct CREATE4resok struct s st str stru BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 0 no 0 10 0 0 0 0 1 +change_info4 change_info4 change_info4 c ch cha chan BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 0 no 0 5 0 0 0 0 1 +cinfo; cinfo; cinfo; c ci cin cinf BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 0 ; 1 3 0 0 0 0 1 +bitmap4 bitmap4 bitmap4 b bi bit bitm BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 0 no 0 3 0 0 0 0 1 +attrset; attrset; attrset; a at att attr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 0 ; 1 4 0 0 0 0 1 +/* attributes /* / /* /* /* BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 0 /**/ 4 9 0 0 0 0 1 +}; }; }; } }; }; }; BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 0 ; 1 1 0 0 0 0 1 +union CREATE4res union u un uni unio BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 1 () 2 10 0 0 0 0 1 +case NFS4_OK: case c ca cas case BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 8 1 : 1 3 0 0 0 0 1 +/* new /* / /* /* /* BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 1 /*:*/ 5 8 0 0 0 0 1 +CREATE4resok resok4; create4resok C CR CRE CREA BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 1 ; 1 4 0 0 0 0 1 +default: default: default: d de def defa BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 1 : 1 2 0 0 0 0 1 +void; void; void; v vo voi void BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 1 ; 1 1 0 0 0 0 1 +}; }; }; } }; }; }; BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 1 ; 1 0 0 0 0 0 1 +18.4.3. DESCRIPTION 18.4.3. 1 18 18. 18.4 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 1 ... 3 10 0 0 0 0 1 +The CREATE the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 2 no 0 10 0 0 0 0 1 +file in file f fi fil file BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 2 . 1 10 0 0 0 0 1 +used to used u us use used BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 2 . 1 7 0 0 0 0 1 +The current the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 3 :. 2 10 0 0 0 0 1 +If the if I If If If BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 3 ( 1 8 0 0 0 0 1 +NF4ATTRDIR), the nf4attrdir), N NF NF4 NF4A BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 3 ),. 3 8 0 0 0 0 1 +current file current c cu cur curr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 3 , 1 9 0 0 0 0 1 +NFS4ERR_NOTDIR results. nfs4err_notdir N NF NFS NFS4 BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 3 . 1 3 0 0 0 0 1 +The objname the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 5 . 1 9 0 0 0 0 1 +determines the determines d de det dete BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 5 :,,. 4 10 0 0 0 0 1 +If the if I If If If BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 5 , 1 9 0 0 0 0 1 +attribute, or attribute, a at att attr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 5 ,, 2 9 0 0 0 0 1 +results. results. results. r re res resu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 5 . 1 1 0 0 0 0 1 +If an if I If If If BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 6 , 1 10 0 0 0 0 1 +server will server s se ser serv BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 6 . 1 6 0 0 0 0 1 +For the for F Fo For For BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 7 , 1 9 0 0 0 0 1 +returns change_info4 returns r re ret retu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 7 . 1 9 0 0 0 0 1 +the change_info4 the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 7 , 1 9 0 0 0 0 1 +and after and a an and and BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 7 no 0 10 0 0 0 0 1 +the file the t th the the BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 7 . 1 3 0 0 0 0 1 +If the if I If If If BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 9 , 1 10 0 0 0 0 1 +UTF-8 definition, utf-8 U UT UTF UTF- BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 9 -,. 3 8 0 0 0 0 1 +The current the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 10 . 1 10 0 0 0 0 1 +The createattrs the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 10 no 0 9 0 0 0 0 1 +object. The object. o ob obj obje BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 10 . 1 10 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 8 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 11 , 1 10 0 0 0 0 0 +[Page 440] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 8 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 8 0 no 0 4 0 0 0 0 1 +valid for valid v va val vali BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 0 ., 2 9 0 0 0 0 1 +server will server s se ser serv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 0 no 0 10 0 0 0 0 1 +attributes were attributes a at att attr BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 0 . 1 7 0 0 0 0 1 +If createattrs if I If If If BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 1 no 0 9 0 0 0 0 1 +an ACE an a an an an BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 8 1 ,' 2 9 0 0 0 0 1 +and requires and a an and and BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 1 (), 3 9 0 0 0 0 1 +MUST derive must M MU MUS MUST BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 8 1 (). 3 9 0 0 0 0 1 +from the from f fr fro from BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 1 , 1 9 0 0 0 0 1 +the server's the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 1 ' 1 9 0 0 0 0 1 +dictate other dictate d di dic dict BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 1 ., 2 9 0 0 0 0 1 +includes neither includes i in inc incl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 1 , 1 9 0 0 0 0 1 +server's file server's s se ser serv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 1 ' 1 10 0 0 0 0 1 +attribute (or attribute a at att attr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 1 (), 3 9 0 0 0 0 1 +(or the (or ( (o (or (or BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 1 (). 3 9 0 0 0 0 1 +the RPC the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 1 ', 2 9 0 0 0 0 1 +credentials include credentials c cr cre cred BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 1 (), 3 9 0 0 0 0 1 +identifier associated identifier i id ide iden BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 1 (.., 4 9 0 0 0 0 1 +POSIX systems posix P PO POS POSI BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 1 [] 2 9 0 0 0 0 1 +for every for f fo for for BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 1 ), 2 10 0 0 0 0 1 +object is object o ob obj obje BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 1 ,' 2 8 0 0 0 0 1 +environment or environment e en env envi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 8 1 . 1 9 0 0 0 0 1 +OPEN operation open O OP OPE OPEN BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 8 1 . 1 2 0 0 0 0 1 +Conversely, it conversely, C Co Con Conv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 6 , 1 8 0 0 0 0 1 +createattrs an createattrs c cr cre crea BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 6 ,, 2 9 0 0 0 0 1 +principal indicated principal p pr pri prin BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 6 ' 1 9 0 0 0 0 1 +permissions to permissions p pe per perm BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 6 . 1 10 0 0 0 0 1 +instance is instance i in ins inst BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 6 .. 2 10 0 0 0 0 1 +If the if I If If If BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 8 no 0 9 0 0 0 0 1 +client holds client c cl cli clie BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 8 ,, 2 10 0 0 0 0 1 +such that such s su suc such BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 8 , 1 9 0 0 0 0 1 +the delegation the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 8 , 1 9 0 0 0 0 1 +proceed until proceed p pr pro proc BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 8 . 1 9 0 0 0 0 1 +this happens this t th thi this BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 8 , 1 10 0 0 0 0 1 +returned to returned r re ret retu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 8 . 1 9 0 0 0 0 1 +When the when W Wh Whe When BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 9 no 0 9 0 0 0 0 1 +more directory more m mo mor more BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 9 ,, 2 9 0 0 0 0 1 +request such request r re req requ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 9 , 1 10 0 0 0 0 1 +result of result r re res resu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 9 . 1 3 0 0 0 0 1 +If the if I If If If BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 10 no 0 9 0 0 0 0 1 +(Section 14.4), (section ( (S (Se (Sec BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 10 (.),, 5 10 0 0 0 0 1 +content of content c co con cont BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 10 -. 2 8 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 8 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 11 , 1 10 0 0 0 0 0 +[Page 441] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 8 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 8 0 no 0 4 0 0 0 0 1 +18.4.4. IMPLEMENTATION 18.4.4. 1 18 18. 18.4 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 0 ... 3 10 0 0 0 0 1 +If the if I If If If BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 0 , 1 9 0 0 0 0 1 +SETATTR operation setattr S SE SET SETA BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 0 no 0 10 0 0 0 0 1 +appropriate attributes appropriate a ap app appr BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 0 . 1 5 0 0 0 0 1 +18.5. Operation 18.5. 1 18 18. 18.5 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 1 ..:- 4 10 0 0 0 0 1 +18.5.1. ARGUMENTS 18.5.1. 1 18 18. 18.5 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 2 ... 3 10 0 0 0 0 1 +struct DELEGPURGE4args struct s st str stru BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 2 no 0 10 0 0 0 0 1 +clientid4 clientid4 clientid4 c cl cli clie BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 2 no 0 4 0 0 0 0 1 +clientid; clientid; clientid; c cl cli clie BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 2 ; 1 4 0 0 0 0 1 +}; }; }; } }; }; }; BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 2 ; 1 1 0 0 0 0 1 +18.5.2. RESULTS 18.5.2. 1 18 18. 18.5 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 2 ... 3 10 0 0 0 0 1 +struct DELEGPURGE4res struct s st str stru BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 2 no 0 10 0 0 0 0 1 +nfsstat4 nfsstat4 nfsstat4 n nf nfs nfss BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 2 no 0 3 0 0 0 0 1 +status; status; status; s st sta stat BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 2 ; 1 3 0 0 0 0 1 +}; }; }; } }; }; }; BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 2 ; 1 1 0 0 0 0 1 +18.5.3. DESCRIPTION 18.5.3. 1 18 18. 18.5 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 3 ... 3 10 0 0 0 0 1 +This operation this T Th Thi This BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 3 no 0 9 0 0 0 0 1 +given client. given g gi giv give BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 3 . 1 8 0 0 0 0 1 +delegation information delegation d de del dele BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 3 no 0 10 0 0 0 0 1 +requests need requests r re req requ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 8 3 no 0 9 0 0 0 0 1 +delegation information. delegation d de del dele BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 3 . 1 3 0 0 0 0 1 +The client the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 4 . 1 9 0 0 0 0 1 +The client the T Th The The BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 4 , 1 9 0 0 0 0 1 +ignore the ignore i ig ign igno BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 4 ., 2 9 0 0 0 0 1 +client ID client c cl cli clie BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 4 no 0 9 0 0 0 0 1 +SEQUENCE operation sequence S SE SEQ SEQU BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 8 4 . 1 10 0 0 0 0 1 +The DELEGPURGE the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 7 no 0 9 0 0 0 0 1 +delegation information delegation d de del dele BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 7 . 1 9 0 0 0 0 1 +case, after case, c ca cas case BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 7 ,, 2 9 0 0 0 0 1 +should immediately should s sh sho shou BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 7 . 1 10 0 0 0 0 1 +the server the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 7 no 0 9 0 0 0 0 1 +recovered allowing recovered r re rec reco BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 7 , 1 9 0 0 0 0 1 +clients which clients c cl cli clie BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 7 no 0 9 0 0 0 0 1 +delegations. The delegations. d de del dele BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 7 . 1 9 0 0 0 0 1 +client might client c cl cli clie BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 7 . 1 10 0 0 0 0 1 +a request a a a a a BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 1 0 0 0 0 0 8 7 , 1 10 0 0 0 0 1 +a failure a a a a a BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 1 0 0 0 0 0 8 7 no 0 9 0 0 0 0 1 +delegation to delegation d de del dele BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 7 '. 2 6 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 8 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 11 , 1 10 0 0 0 0 0 +[Page 442] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 8 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 8 0 no 0 4 0 0 0 0 1 +The server the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 0 ,, 2 9 0 0 0 0 1 +support CLAIM_DELEGATE_PREV support s su sup supp BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 8 0 . 1 10 0 0 0 0 1 +18.6. Operation 18.6. 1 18 18. 18.6 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 1 ..:- 4 10 0 0 0 0 1 +18.6.1. ARGUMENTS 18.6.1. 1 18 18. 18.6 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 2 ... 3 10 0 0 0 0 1 +struct DELEGRETURN4args struct s st str stru BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 2 no 0 7 0 0 0 0 1 +/* CURRENT_FH: /* / /* /* /* BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 2 /*:*/ 5 10 0 0 0 0 1 +stateid4 stateid4 stateid4 s st sta stat BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 2 no 0 2 0 0 0 0 1 +deleg_stateid; deleg_stateid; deleg_stateid; d de del dele BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 2 ; 1 4 0 0 0 0 1 +}; }; }; } }; }; }; BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 2 ; 1 0 0 0 0 0 1 +18.6.2. RESULTS 18.6.2. 1 18 18. 18.6 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 3 ... 3 10 0 0 0 0 1 +struct DELEGRETURN4res struct s st str stru BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 3 no 0 10 0 0 0 0 1 +nfsstat4 nfsstat4 nfsstat4 n nf nfs nfss BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 3 no 0 3 0 0 0 0 1 +status; status; status; s st sta stat BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 3 ; 1 3 0 0 0 0 1 +}; }; }; } }; }; }; BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 3 ; 1 1 0 0 0 0 1 +18.6.3. DESCRIPTION 18.6.3. 1 18 18. 18.6 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 3 ... 3 10 0 0 0 0 1 +The DELEGRETURN the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 4 no 0 10 0 0 0 0 1 +current filehandle current c cu cur curr BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 4 . 1 4 0 0 0 0 1 +Delegations may delegations D De Del Dele BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 4 (.., 4 10 0 0 0 0 1 +recalled them) recalled r re rec reca BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 4 )., 3 9 0 0 0 0 1 +properly propagate properly p pr pro prop BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 4 no 0 10 0 0 0 0 1 +to the to t to to to BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 4 . 1 6 0 0 0 0 1 +The server the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 6 ,, 2 9 0 0 0 0 1 +applicable, the applicable, a ap app appl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 6 ,, 2 8 0 0 0 0 1 +delegation also delegation d de del dele BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 6 . 1 9 0 0 0 0 1 +might not might m mi mig migh BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 6 no 0 10 0 0 0 0 1 +available. The available. a av ava avai BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 6 . 1 8 0 0 0 0 1 +credential (see credential c cr cre cred BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 6 (.). 4 7 0 0 0 0 1 +18.7. Operation 18.7. 1 18 18. 18.7 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 10 ..:- 4 10 0 0 0 0 1 +18.7.1. ARGUMENTS 18.7.1. 1 18 18. 18.7 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 10 ... 3 10 0 0 0 0 1 +struct GETATTR4args struct s st str stru BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 10 no 0 8 0 0 0 0 1 +/* CURRENT_FH: /* / /* /* /* BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 10 /*:*/ 5 10 0 0 0 0 1 +bitmap4 bitmap4 bitmap4 b bi bit bitm BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 10 no 0 3 0 0 0 0 1 +attr_request; attr_request; attr_request; a at att attr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 10 ; 1 5 0 0 0 0 1 +}; }; }; } }; }; }; BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 10 ; 1 1 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 8 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 11 , 1 10 0 0 0 0 0 +[Page 443] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 8 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 8 0 no 0 4 0 0 0 0 1 +18.7.2. RESULTS 18.7.2. 1 18 18. 18.7 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 0 ... 3 10 0 0 0 0 1 +struct GETATTR4resok struct s st str stru BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 0 no 0 10 0 0 0 0 1 +fattr4 fattr4 fattr4 f fa fat fatt BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 0 no 0 3 0 0 0 0 1 +obj_attributes; obj_attributes; obj_attributes; o ob obj obj_ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 0 ; 1 6 0 0 0 0 1 +}; }; }; } }; }; }; BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 0 ; 1 1 0 0 0 0 1 +union GETATTR4res union u un uni unio BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 0 () 2 10 0 0 0 0 1 +case NFS4_OK: case c ca cas case BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 8 0 : 1 3 0 0 0 0 1 +GETATTR4resok resok4; getattr4resok G GE GET GETA BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 0 ; 1 4 0 0 0 0 1 +default: default: default: d de def defa BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 0 : 1 2 0 0 0 0 1 +void; void; void; v vo voi void BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 0 ; 1 1 0 0 0 0 1 +}; }; }; } }; }; }; BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 0 ; 1 0 0 0 0 0 1 +18.7.3. DESCRIPTION 18.7.3. 1 18 18. 18.7 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 1 ... 3 10 0 0 0 0 1 +The GETATTR the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 1 no 0 9 0 0 0 0 1 +object specified object o ob obj obje BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 1 . 1 9 0 0 0 0 1 +the bitmap the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 1 no 0 9 0 0 0 0 1 +server to server s se ser serv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 1 . 1 8 0 0 0 0 1 +indicates the indicates i in ind indi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 1 , 1 10 0 0 0 0 1 +include all include i in inc incl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 1 no 0 9 0 0 0 0 1 +supported by supported s su sup supp BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 1 . 1 9 0 0 0 0 1 +followed by followed f fo fol foll BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 1 no 0 9 0 0 0 0 1 +first. first. first. f fi fir firs BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 1 . 1 1 0 0 0 0 1 +The server the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 5 no 0 9 0 0 0 0 1 +requests if requests r re req requ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 8 5 no 0 9 0 0 0 0 1 +file system. file f fi fil file BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 5 . 1 9 0 0 0 0 1 +on the on o on on on BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 5 , 1 9 0 0 0 0 1 +value and value v va val valu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 5 . 1 9 0 0 0 0 1 +server MUST server s se ser serv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 5 no 0 10 0 0 0 0 1 +but cannot but b bu but but BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 5 ., 2 9 0 0 0 0 1 +be returned. be b be be be BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 5 . 1 1 0 0 0 0 1 +File systems file F Fi Fil File BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 8 no 0 9 0 0 0 0 1 +a very a a a a a BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 1 0 0 0 0 0 8 8 .., 3 9 0 0 0 0 1 +if previously, if i if if if BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 8 ,, 2 10 0 0 0 0 1 +supported. supported. supported. s su sup supp BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 8 . 1 1 0 0 0 0 1 +All servers all A Al All All BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 10 no 0 9 0 0 0 0 1 +Section 5.6, section S Se Sec Sect BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 10 .,, 3 10 0 0 0 0 1 +systems. systems. systems. s sy sys syst BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 10 . 1 1 0 0 0 0 1 +On success, on O On On On BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 11 ,. 2 10 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 8 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 11 , 1 10 0 0 0 0 0 +[Page 444] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 8 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 8 0 no 0 4 0 0 0 0 1 +18.7.4. IMPLEMENTATION 18.7.4. 1 18 18. 18.7 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 0 ... 3 10 0 0 0 0 1 +Suppose there suppose S Su Sup Supp BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 0 no 0 9 0 0 0 0 1 +client for client c cl cli clie BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 0 / 1 10 0 0 0 0 1 +set of set s se set set BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 0 .. 2 9 0 0 0 0 1 +First, the first, F Fi Fir Firs BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 0 , 1 9 0 0 0 0 1 +attributes from attributes a at att attr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 0 no 0 9 0 0 0 0 1 +CB_GETATTR callback. cb_getattr C CB CB_ CB_G BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 0 .,, 3 9 0 0 0 0 1 +delegated client delegated d de del dele BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 0 , 1 9 0 0 0 0 1 +question. The question. q qu que ques BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 0 . 1 9 0 0 0 0 1 +occurs: occurs: occurs: o oc occ occu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 0 : 1 1 0 0 0 0 1 +o The o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 8 5 no 0 10 0 0 0 0 1 +CB_GETATTR. CB_GETATTR. cb_getattr. C CB CB_ CB_G BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 5 . 1 1 0 0 0 0 1 +o The o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 8 6 . 1 10 0 0 0 0 1 +o The o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 8 6 . 1 10 0 0 0 0 1 +Unless one unless U Un Unl Unle BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 7 , 1 9 0 0 0 0 1 +NFS4ERR_DELAY errors nfs4err_delay N NF NFS NFS4 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 7 no 0 10 0 0 0 0 1 +outstanding. outstanding. outstanding. o ou out outs BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 7 . 1 2 0 0 0 0 1 +18.8. Operation 18.8. 1 18 18. 18.8 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 8 ..:- 4 10 0 0 0 0 1 +18.8.1. ARGUMENTS 18.8.1. 1 18 18. 18.8 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 8 ... 3 10 0 0 0 0 1 +/* CURRENT_FH: /* / /* /* /* BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 9 /*:*/ 5 10 0 0 0 0 1 +void; void; void; v vo voi void BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 9 ; 1 3 0 0 0 0 1 +18.8.2. RESULTS 18.8.2. 1 18 18. 18.8 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 9 ... 3 10 0 0 0 0 1 +struct GETFH4resok struct s st str stru BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 9 no 0 10 0 0 0 0 1 +nfs_fh4 nfs_fh4 nfs_fh4 n nf nfs nfs_ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 9 no 0 3 0 0 0 0 1 +object; object; object; o ob obj obje BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 9 ; 1 3 0 0 0 0 1 +}; }; }; } }; }; }; BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 9 ; 1 1 0 0 0 0 1 +union GETFH4res union u un uni unio BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 10 () 2 10 0 0 0 0 1 +case NFS4_OK: case c ca cas case BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 8 10 : 1 3 0 0 0 0 1 +GETFH4resok GETFH4resok getfh4resok G GE GET GETF BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 10 no 0 2 0 0 0 0 1 +resok4; resok4; resok4; r re res reso BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 10 ; 1 1 0 0 0 0 1 +default: default: default: d de def defa BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 10 : 1 2 0 0 0 0 1 +void; void; void; v vo voi void BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 10 ; 1 1 0 0 0 0 1 +}; }; }; } }; }; }; BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 10 ; 1 0 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 8 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 11 , 1 10 0 0 0 0 0 +[Page 445] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 8 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 8 0 no 0 4 0 0 0 0 1 +18.8.3. DESCRIPTION 18.8.3. 1 18 18. 18.8 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 0 ... 3 10 0 0 0 0 1 +This operation this T Th Thi This BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 0 . 1 10 0 0 0 0 1 +On success, on O On On On BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 1 ,. 2 10 0 0 0 0 1 +As described as A As As As BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 1 ..., 4 10 0 0 0 0 1 +immediately follow immediately i im imm imme BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 1 , 1 10 0 0 0 0 1 +such operations such s su suc such BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 1 no 0 10 0 0 0 0 1 +REQUIRED or required R RE REQ REQU BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 8 1 .... 4 9 0 0 0 0 1 +justification for justification j ju jus just BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 1 . 1 6 0 0 0 0 1 +18.8.4. IMPLEMENTATION 18.8.4. 1 18 18. 18.8 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 5 ... 3 10 0 0 0 0 1 +Operations that operations O Op Ope Oper BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 8 5 no 0 10 0 0 0 0 1 +do not do d do do do BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 5 . 1 9 0 0 0 0 1 +instance, if instance, i in ins inst BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 5 , 1 10 0 0 0 0 1 +its filehandle, its i it its its BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 5 ,. 2 7 0 0 0 0 1 +PUTFH (directory putfh P PU PUT PUTF BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 8 () 2 10 0 0 0 0 1 +LOOKUP (entry lookup L LO LOO LOOK BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 8 () 2 10 0 0 0 0 1 +GETFH GETFH getfh G GE GET GETF BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 8 no 0 10 0 0 0 0 1 +18.9. Operation 18.9. 1 18 18. 18.9 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 8 ..:- 4 10 0 0 0 0 1 +18.9.1. ARGUMENTS 18.9.1. 1 18 18. 18.9 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 9 ... 3 10 0 0 0 0 1 +struct LINK4args struct s st str stru BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 9 no 0 5 0 0 0 0 1 +/* SAVED_FH: /* / /* /* /* BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 9 /*:*/ 5 8 0 0 0 0 1 +/* CURRENT_FH: /* / /* /* /* BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 9 /*:*/ 5 10 0 0 0 0 1 +component4 component4 component4 c co com comp BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 9 no 0 3 0 0 0 0 1 +newname; newname; newname; n ne new newn BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 9 ; 1 2 0 0 0 0 1 +}; }; }; } }; }; }; BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 9 ; 1 0 0 0 0 0 1 +18.9.2. RESULTS 18.9.2. 1 18 18. 18.9 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 11 ... 3 10 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 8 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 11 , 1 10 0 0 0 0 0 +[Page 446] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 8 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 8 0 no 0 4 0 0 0 0 1 +struct LINK4resok struct s st str stru BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 0 no 0 10 0 0 0 0 1 +change_info4 change_info4 change_info4 c ch cha chan BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 0 no 0 6 0 0 0 0 1 +cinfo; cinfo; cinfo; c ci cin cinf BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 0 ; 1 3 0 0 0 0 1 +}; }; }; } }; }; }; BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 0 ; 1 1 0 0 0 0 1 +union LINK4res union u un uni unio BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 0 () 2 10 0 0 0 0 1 +case NFS4_OK: case c ca cas case BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 8 0 : 1 3 0 0 0 0 1 +LINK4resok resok4; link4resok L LI LIN LINK BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 0 ; 1 4 0 0 0 0 1 +default: default: default: d de def defa BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 0 : 1 2 0 0 0 0 1 +void; void; void; v vo voi void BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 0 ; 1 1 0 0 0 0 1 +}; }; }; } }; }; }; BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 0 ; 1 0 0 0 0 0 1 +18.9.3. DESCRIPTION 18.9.3. 1 18 18. 18.9 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 1 ... 3 10 0 0 0 0 1 +The LINK the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 1 no 0 8 0 0 0 0 1 +represented by represented r re rep repr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 1 ,, 2 9 0 0 0 0 1 +in the in i in in in BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 8 1 . 1 9 0 0 0 0 1 +file and file f fi fil file BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 1 no 0 10 0 0 0 0 1 +on the on o on on on BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 1 ., 2 9 0 0 0 0 1 +be the be b be be be BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 1 . 1 9 0 0 0 0 1 +with the with w wi wit with BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 1 ,. 2 9 0 0 0 0 1 +For the for F Fo For For BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 3 , 1 10 0 0 0 0 1 +in cinfo. in i in in in BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 8 3 ., 2 9 0 0 0 0 1 +server will server s se ser serv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 3 no 0 9 0 0 0 0 1 +obtained atomically obtained o ob obt obta BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 3 . 1 7 0 0 0 0 1 +If the if I If If If BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 5 , 1 10 0 0 0 0 1 +UTF-8 definition, utf-8 U UT UTF UTF- BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 5 -,. 3 8 0 0 0 0 1 +18.9.4. IMPLEMENTATION 18.9.4. 1 18 18. 18.9 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 6 ... 3 10 0 0 0 0 1 +The server the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 6 no 0 9 0 0 0 0 1 +LINK may link L LI LIN LINK BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 1 1 0 0 0 0 0 8 6 no 0 10 0 0 0 0 1 +by particular by b by by by BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 6 ,. 2 10 0 0 0 0 1 +When LINK when W Wh Whe When BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 6 , 1 8 0 0 0 0 1 +NFS4ERR_FILE_OPEN is nfs4err_file_open N NF NFS NFS4 BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 6 . 1 4 0 0 0 0 1 +If a if I If If If BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 7 no 0 9 0 0 0 0 1 +include cases include i in inc incl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 7 no 0 9 0 0 0 0 1 +link, the link, l li lin link BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 7 , 1 10 0 0 0 0 1 +existence of existence e ex exi exis BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 7 . 1 9 0 0 0 0 1 +when a when w wh whe when BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 7 , 1 9 0 0 0 0 1 +accurate account accurate a ac acc accu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 7 , 1 9 0 0 0 0 1 +execute OPENs execute e ex exe exec BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 7 . 1 10 0 0 0 0 1 +only until only o on onl only BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 7 ., 2 10 0 0 0 0 1 +there are there t th the ther BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 7 no 0 9 0 0 0 0 1 +whose presence whose w wh who whos BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 7 .', 3 10 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 8 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 11 , 1 10 0 0 0 0 0 +[Page 447] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 8 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 8 0 no 0 4 0 0 0 0 1 +NFS4ERR_FILE_OPEN may nfs4err_file_open N NF NFS NFS4 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 0 no 0 9 0 0 0 0 1 +delegation is delegation d de del dele BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 0 no 0 10 0 0 0 0 1 +returned. Similarly, returned. r re ret retu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 0 ., 2 8 0 0 0 0 1 +delegations, NFS4ERR_FILE_OPEN delegations, d de del dele BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 0 , 1 10 0 0 0 0 1 +delegation recall delegation d de del dele BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 0 . 1 4 0 0 0 0 1 +If the if I If If If BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 1 no 0 9 0 0 0 0 1 +client holds client c cl cli clie BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 1 ,, 2 10 0 0 0 0 1 +such that such s su suc such BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 1 , 1 9 0 0 0 0 1 +the delegation the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 1 , 1 8 0 0 0 0 1 +performed successfully performed p pe per perf BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 1 . 1 10 0 0 0 0 1 +Except where except E Ex Exc Exce BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 1 , 1 9 0 0 0 0 1 +errors will errors e er err erro BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 1 no 0 9 0 0 0 0 1 +outstanding. outstanding. outstanding. o ou out outs BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 1 . 1 1 0 0 0 0 1 +When the when W Wh Whe When BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 3 no 0 10 0 0 0 0 1 +more directory more m mo mor more BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 3 ,, 2 9 0 0 0 0 1 +request such request r re req requ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 3 ,, 2 9 0 0 0 0 1 +will be will w wi wil will BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 8 3 . 1 7 0 0 0 0 1 +If the if I If If If BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 4 , 1 10 0 0 0 0 1 +clients have clients c cl cli clie BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 4 , 1 8 0 0 0 0 1 +delegations MUST delegations d de del dele BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 4 no 0 9 0 0 0 0 1 +until all until u un unt unti BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 4 . 1 9 0 0 0 0 1 +happens very happens h ha hap happ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 4 , 1 9 0 0 0 0 1 +returned to returned r re ret retu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 4 . 1 9 0 0 0 0 1 +Changes to changes C Ch Cha Chan BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 8 6 "" 2 9 0 0 0 0 1 +all of all a al all all BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 6 ., 2 8 0 0 0 0 1 +attributes for attributes a at att attr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 6 no 0 10 0 0 0 0 1 +greater than greater g gr gre grea BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 6 . 1 7 0 0 0 0 1 +The statement the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 7 " 1 9 0 0 0 0 1 +same file same s sa sam same BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 7 " 1 9 0 0 0 0 1 +attributes for attributes a at att attr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 7 . 1 10 0 0 0 0 1 +file systems, file f fi fil file BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 7 ,. 2 9 0 0 0 0 1 +returned by returned r re ret retu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 7 no 0 10 0 0 0 0 1 +file system file f fi fil file BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 7 . 1 7 0 0 0 0 1 +On some on O On On On BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 9 ,"."".." 8 10 0 0 0 0 1 +error NFS4ERR_BADNAME error e er err erro BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 9 . 1 8 0 0 0 0 1 +When the when W Wh Whe When BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 10 no 0 9 0 0 0 0 1 +and the and a an and and BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 10 () 2 9 0 0 0 0 1 +attribute for attribute a at att attr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 10 , 1 8 0 0 0 0 1 +returned. When returned. r re ret retu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 10 . 1 10 0 0 0 0 1 +the current the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 10 no 0 8 0 0 0 0 1 +directory, the directory, d di dir dire BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 10 ,. 2 8 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 8 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 11 , 1 10 0 0 0 0 0 +[Page 448] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 8 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 8 0 no 0 4 0 0 0 0 1 +When the when W Wh Whe When BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 1 no 0 10 0 0 0 0 1 +and the and a an and and BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 1 () 2 9 0 0 0 0 1 +attribute within attribute a at att attr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 1 , 1 9 0 0 0 0 1 +NFS4ERR_NOTSUPP. NFS4ERR_NOTSUPP. nfs4err_notsupp. N NF NFS NFS4 BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 1 . 1 2 0 0 0 0 1 +In the in I In In In BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 8 5 no 0 10 0 0 0 0 1 +the saved the t th the the BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 5 ,. 2 8 0 0 0 0 1 +Note that note N No Not Note BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 7 . 1 10 0 0 0 0 1 +18.10. Operation 18.10. 1 18 18. 18.1 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 9 ..:- 4 10 0 0 0 0 1 +18.10.1. ARGUMENTS 18.10.1. 1 18 18. 18.1 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 10 ... 3 10 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 8 10 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 10 , 1 10 0 0 0 0 0 +[Page 449] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 10 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 8 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 8 0 no 0 4 0 0 0 0 1 +/* /* /* / /* /* /* BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 0 /* 2 0 0 0 0 0 1 +* For * * * * * BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 *, 2 10 0 0 0 0 1 +* to * * * * * BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 *. 2 3 0 0 0 0 1 +*/ */ */ * */ */ */ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 0 */ 2 0 0 0 0 0 1 +struct open_to_lock_owner4 struct s st str stru BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 0 no 0 5 0 0 0 0 1 +seqid4 seqid4 seqid4 s se seq seqi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 0 no 0 1 0 0 0 0 1 +open_seqid; open_seqid; open_seqid; o op ope open BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 0 ; 1 2 0 0 0 0 1 +stateid4 stateid4 stateid4 s st sta stat BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 0 no 0 1 0 0 0 0 1 +open_stateid; open_stateid; open_stateid; o op ope open BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 0 ; 1 2 0 0 0 0 1 +seqid4 seqid4 seqid4 s se seq seqi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 0 no 0 1 0 0 0 0 1 +lock_seqid; lock_seqid; lock_seqid; l lo loc lock BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 0 ; 1 2 0 0 0 0 1 +lock_owner4 lock_owner4 lock_owner4 l lo loc lock BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 0 no 0 2 0 0 0 0 1 +lock_owner; lock_owner; lock_owner; l lo loc lock BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 0 ; 1 2 0 0 0 0 1 +}; }; }; } }; }; }; BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 0 ; 1 0 0 0 0 0 1 +/* /* /* / /* /* /* BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 3 /* 2 0 0 0 0 0 1 +* For * * * * * BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 3 *, 2 10 0 0 0 0 1 +* file * * * * * BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 3 *. 2 9 0 0 0 0 1 +*/ */ */ * */ */ */ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 3 */ 2 0 0 0 0 0 1 +struct exist_lock_owner4 struct s st str stru BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 3 no 0 4 0 0 0 0 1 +stateid4 stateid4 stateid4 s st sta stat BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 3 no 0 1 0 0 0 0 1 +lock_stateid; lock_stateid; lock_stateid; l lo loc lock BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 3 ; 1 2 0 0 0 0 1 +seqid4 seqid4 seqid4 s se seq seqi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 3 no 0 1 0 0 0 0 1 +lock_seqid; lock_seqid; lock_seqid; l lo loc lock BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 3 ; 1 2 0 0 0 0 1 +}; }; }; } }; }; }; BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 3 ; 1 0 0 0 0 0 1 +union locker4 union u un uni unio BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 6 () 2 10 0 0 0 0 1 +case TRUE: case c ca cas case BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 8 6 : 1 2 0 0 0 0 1 +open_to_lock_owner4 open_to_lock_owner4 open_to_lock_owner4 o op ope open BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 6 no 0 4 0 0 0 0 1 +open_owner; open_owner; open_owner; o op ope open BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 6 ; 1 2 0 0 0 0 1 +case FALSE: case c ca cas case BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 8 6 : 1 2 0 0 0 0 1 +exist_lock_owner4 exist_lock_owner4 exist_lock_owner4 e ex exi exis BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 6 no 0 4 0 0 0 0 1 +lock_owner; lock_owner; lock_owner; l lo loc lock BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 6 ; 1 2 0 0 0 0 1 +}; }; }; } }; }; }; BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 6 ; 1 0 0 0 0 0 1 +/* /* /* / /* /* /* BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 7 /* 2 0 0 0 0 0 1 +* LOCK/LOCKT/LOCKU: * * * * * BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 7 *//: 4 10 0 0 0 0 1 +*/ */ */ * */ */ */ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 7 */ 2 0 0 0 0 0 1 +struct LOCK4args struct s st str stru BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 7 no 0 4 0 0 0 0 1 +/* CURRENT_FH: /* / /* /* /* BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 7 /*:*/ 5 5 0 0 0 0 1 +nfs_lock_type4 locktype; nfs_lock_type4 n nf nfs nfs_ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 7 ; 1 5 0 0 0 0 1 +bool bool bool b bo boo bool BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 7 no 0 1 0 0 0 0 1 +reclaim; reclaim; reclaim; r re rec recl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 7 ; 1 2 0 0 0 0 1 +offset4 offset4 offset4 o of off offs BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 7 no 0 1 0 0 0 0 1 +offset; offset; offset; o of off offs BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 7 ; 1 1 0 0 0 0 1 +length4 length4 length4 l le len leng BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 7 no 0 1 0 0 0 0 1 +length; length; length; l le len leng BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 7 ; 1 1 0 0 0 0 1 +locker4 locker4 locker4 l lo loc lock BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 7 no 0 1 0 0 0 0 1 +locker; locker; locker; l lo loc lock BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 7 ; 1 1 0 0 0 0 1 +}; }; }; } }; }; }; BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 7 ; 1 0 0 0 0 0 1 +18.10.2. RESULTS 18.10.2. 1 18 18. 18.1 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 10 ... 3 10 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 8 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 11 , 1 10 0 0 0 0 0 +[Page 450] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 8 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 8 0 no 0 4 0 0 0 0 1 +struct LOCK4denied struct s st str stru BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 0 no 0 8 0 0 0 0 1 +offset4 offset4 offset4 o of off offs BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 0 no 0 3 0 0 0 0 1 +offset; offset; offset; o of off offs BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 0 ; 1 3 0 0 0 0 1 +length4 length4 length4 l le len leng BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 0 no 0 3 0 0 0 0 1 +length; length; length; l le len leng BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 0 ; 1 3 0 0 0 0 1 +nfs_lock_type4 locktype; nfs_lock_type4 n nf nfs nfs_ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 0 ; 1 10 0 0 0 0 1 +lock_owner4 lock_owner4 lock_owner4 l lo loc lock BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 0 no 0 4 0 0 0 0 1 +owner; owner; owner; o ow own owne BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 0 ; 1 2 0 0 0 0 1 +}; }; }; } }; }; }; BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 0 ; 1 1 0 0 0 0 1 +struct LOCK4resok struct s st str stru BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 1 no 0 10 0 0 0 0 1 +stateid4 stateid4 stateid4 s st sta stat BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 1 no 0 4 0 0 0 0 1 +lock_stateid; lock_stateid; lock_stateid; l lo loc lock BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 1 ; 1 7 0 0 0 0 1 +}; }; }; } }; }; }; BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 1 ; 1 1 0 0 0 0 1 +union LOCK4res union u un uni unio BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 1 () 2 10 0 0 0 0 1 +case NFS4_OK: case c ca cas case BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 8 1 : 1 3 0 0 0 0 1 +LOCK4resok LOCK4resok lock4resok L LO LOC LOCK BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 1 no 0 2 0 0 0 0 1 +resok4; resok4; resok4; r re res reso BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 1 ; 1 1 0 0 0 0 1 +case NFS4ERR_DENIED: case c ca cas case BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 8 1 : 1 5 0 0 0 0 1 +LOCK4denied LOCK4denied lock4denied L LO LOC LOCK BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 1 no 0 2 0 0 0 0 1 +denied; denied; denied; d de den deni BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 1 ; 1 1 0 0 0 0 1 +default: default: default: d de def defa BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 1 : 1 2 0 0 0 0 1 +void; void; void; v vo voi void BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 1 ; 1 1 0 0 0 0 1 +}; }; }; } }; }; }; BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 1 ; 1 0 0 0 0 0 1 +18.10.3. DESCRIPTION 18.10.3. 1 18 18. 18.1 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 2 ... 3 10 0 0 0 0 1 +The LOCK the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 2 -- 2 9 0 0 0 0 1 +specified by specified s sp spe spec BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 2 , 1 9 0 0 0 0 1 +specified in specified s sp spe spec BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 2 ., 2 10 0 0 0 0 1 +the reclaim the t th the the BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 2 . 1 5 0 0 0 0 1 +Bytes in bytes B By Byt Byte BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 4 no 0 9 0 0 0 0 1 +allocated to allocated a al all allo BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 4 . 1 9 0 0 0 0 1 +through the through t th thr thro BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 4 --() 4 10 0 0 0 0 1 +a length a a a a a BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 1 0 0 0 0 0 8 4 . 1 9 0 0 0 0 1 +NFS4ERR_INVAL under nfs4err_inval N NF NFS NFS4 BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 4 : 1 9 0 0 0 0 1 +o Length o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 8 7 . 1 10 0 0 0 0 1 +o Length o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 8 7 , 1 10 0 0 0 0 1 +offset exceeds offset o of off offs BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 7 . 1 4 0 0 0 0 1 +32-bit servers 32-bit 3 32 32- 32-b BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 8 - 1 10 0 0 0 0 1 +fit within fit f fi fit fit BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 8 (..,). 6 9 0 0 0 0 1 +the client the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 8 no 0 9 0 0 0 0 1 +offset NFS4_UINT32_MAX offset o of off offs BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 8 , 1 9 0 0 0 0 1 +then such then t th the then BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 8 -. 2 9 0 0 0 0 1 +If the if I If If If BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 10 ,,, 3 10 0 0 0 0 1 +of a of o of of of BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 10 . 1 5 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 8 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 11 , 1 10 0 0 0 0 0 +[Page 451] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 8 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 8 0 no 0 4 0 0 0 0 1 +The locker the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 0 - 1 9 0 0 0 0 1 +the LOCK the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 0 . 1 9 0 0 0 0 1 +indicates whether indicates i in ind indi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 0 - 1 9 0 0 0 0 1 +state associated state s st sta stat BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 0 -. 2 9 0 0 0 0 1 +case in case c ca cas case BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 8 0 , 1 10 0 0 0 0 1 +set of set s se set set BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 0 -, 2 9 0 0 0 0 1 +with a with w wi wit with BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 0 no 0 9 0 0 0 0 1 +the server. the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 0 .- 2 9 0 0 0 0 1 +established, or established, e es est esta BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 0 ,, 2 9 0 0 0 0 1 +argument contains argument a ar arg argu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 0 no 0 9 0 0 0 0 1 +is to is i is is is BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 0 ,- 2 10 0 0 0 0 1 +is to is i is is is BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 0 . 1 9 0 0 0 0 1 +first lock first f fi fir firs BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 0 - 1 9 0 0 0 0 1 +method to method m me met meth BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 0 no 0 10 0 0 0 0 1 +to the to t to to to BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 0 . 1 4 0 0 0 0 1 +The following the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 5 no 0 10 0 0 0 0 1 +by the by b by by by BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 5 : 1 7 0 0 0 0 1 +o The o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 8 5 no 0 10 0 0 0 0 1 +(locker.open_owner.lock_owner.clientid). The (locker.open_owner.lock_owner.clientid). ( (l (lo (loc BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 5 (...). 6 9 0 0 0 0 1 +MUST ignore must M MU MUS MUST BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 8 5 no 0 9 0 0 0 0 1 +client ID client c cl cli clie BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 5 no 0 9 0 0 0 0 1 +COMPOUND request. compound C CO COM COMP BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 8 5 . 1 2 0 0 0 0 1 +o The o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 8 7 no 0 9 0 0 0 0 1 +(locker.open_owner.open_seqid and (locker.open_owner.open_seqid ( (l (lo (loc BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 7 (....). 7 10 0 0 0 0 1 +o The o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 8 7 no 0 10 0 0 0 0 1 +(locker.lock_owner.lock_seqid). (locker.lock_owner.lock_seqid). (locker.lock_owner.lock_seqid). ( (l (lo (loc BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 7 (..). 5 6 0 0 0 0 1 +Note that note N No Not Note BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 8 no 0 9 0 0 0 0 1 +actual client actual a ac act actu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 8 , 1 9 0 0 0 0 1 +the client the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 8 . 1 10 0 0 0 0 1 +Thus, if thus, T Th Thu Thus BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 8 ,, 2 9 0 0 0 0 1 +field of field f fi fie fiel BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 8 8 . 1 6 0 0 0 0 1 +If the if I If If If BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 9 , 1 9 0 0 0 0 1 +returned to returned r re ret retu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 9 . 1 9 0 0 0 0 1 +represents an represents r re rep repr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 9 ,. 2 9 0 0 0 0 1 +the current the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 9 , 1 10 0 0 0 0 1 +returned. In returned. r re ret retu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 9 .,. 3 8 0 0 0 0 1 +On success, on O On On On BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 11 ,. 2 10 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 8 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 11 , 1 10 0 0 0 0 0 +[Page 452] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 8 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 8 0 no 0 4 0 0 0 0 1 +18.10.4. IMPLEMENTATION 18.10.4. 1 18 18. 18.1 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 0 ... 3 10 0 0 0 0 1 +If the if I If If If BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 0 no 0 9 0 0 0 0 1 +the conflicting the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 0 -, 2 10 0 0 0 0 1 +provided in provided p pr pro prov BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 0 . 1 9 0 0 0 0 1 +LOCK operations lock L LO LOC LOCK BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 1 1 0 0 0 0 0 8 1 no 0 9 0 0 0 0 1 +against the against a ag aga agai BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 1 ., 2 8 0 0 0 0 1 +specific right specific s sp spe spec BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 1 no 0 10 0 0 0 0 1 +the semantics the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 1 -, 2 8 0 0 0 0 1 +specified by specified s sp spe spec BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 1 ., 2 9 0 0 0 0 1 +lock of lock l lo loc lock BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 8 1 ,- 2 9 0 0 0 0 1 +does not. does d do doe does BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 1 . 1 1 0 0 0 0 1 +When the when W Wh Whe When BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 3 no 0 9 0 0 0 0 1 +that the that t th tha that BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 3 -( 2 9 0 0 0 0 1 +lock type), lock l lo loc lock BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 8 3 ),-,- 5 9 0 0 0 0 1 +that includes that t th tha that BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 3 -, 2 9 0 0 0 0 1 +whole or whole w wh who whol BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 3 , 1 9 0 0 0 0 1 +operations (i.e., operations o op ope oper BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 8 3 (..,), 6 9 0 0 0 0 1 +server will server s se ser serv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 3 ., 2 9 0 0 0 0 1 +client may client c cl cli clie BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 3 , 1 8 0 0 0 0 1 +operations, using operations, o op ope oper BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 3 , 1 10 0 0 0 0 1 +already locked already a al alr alre BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 3 - 1 9 0 0 0 0 1 +lock-owner (specifying lock-owner l lo loc lock BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 3 -(). 4 8 0 0 0 0 1 +Similarly, when similarly, S Si Sim Simi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 3 , 1 9 0 0 0 0 1 +upgrading (changing upgrading u up upg upgr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 3 () 2 9 0 0 0 0 1 +downgrading (changing downgrading d do dow down BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 3 () 2 9 0 0 0 0 1 +existing byte-range existing e ex exi exis BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 3 -, 2 9 0 0 0 0 1 +lock, the lock, l lo loc lock BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 3 ,. 2 9 0 0 0 0 1 +may not may m ma may may BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 1 0 0 8 3 no 0 9 0 0 0 0 1 +conflicting LOCK conflicting c co con conf BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 3 . 1 6 0 0 0 0 1 +When a when W Wh Whe When BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 8 , 1 9 0 0 0 0 1 +holding that holding h ho hol hold BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 8 no 0 9 0 0 0 0 1 +clients. Thus, clients. c cl cli clie BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 8 ., 2 9 0 0 0 0 1 +clients. Therefore, clients. c cl cli clie BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 8 ., 2 9 0 0 0 0 1 +locally, without locally, l lo loc loca BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 8 ,. 2 9 0 0 0 0 1 +that, it that, t th tha that BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 8 ,, 2 10 0 0 0 0 1 +sending appropriate sending s se sen send BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 8 no 0 9 0 0 0 0 1 +delegation. delegation. delegation. d de del dele BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 8 . 1 1 0 0 0 0 1 +When one when W Wh Whe When BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 10 , 1 9 0 0 0 0 1 +LOCK operation lock L LO LOC LOCK BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 1 1 0 0 0 0 0 8 10 no 0 9 0 0 0 0 1 +semantics MUST semantics s se sem sema BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 10 . 1 9 0 0 0 0 1 +LOCK operation lock L LO LOC LOCK BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 1 1 0 0 0 0 0 8 10 no 0 9 0 0 0 0 1 +returned or returned r re ret retu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 10 ., 2 10 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 8 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 11 , 1 10 0 0 0 0 0 +[Page 453] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 8 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 8 0 no 0 4 0 0 0 0 1 +more NFS4ERR_DELAY more m mo mor more BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 0 no 0 10 0 0 0 0 1 +delegation remains delegation d de del dele BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 0 . 1 4 0 0 0 0 1 +18.11. Operation 18.11. 1 18 18. 18.1 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 1 ..:- 4 10 0 0 0 0 1 +18.11.1. ARGUMENTS 18.11.1. 1 18 18. 18.1 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 1 ... 3 10 0 0 0 0 1 +struct LOCKT4args struct s st str stru BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 1 no 0 8 0 0 0 0 1 +/* CURRENT_FH: /* / /* /* /* BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 1 /*:*/ 5 9 0 0 0 0 1 +nfs_lock_type4 locktype; nfs_lock_type4 n nf nfs nfs_ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 1 ; 1 10 0 0 0 0 1 +offset4 offset4 offset4 o of off offs BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 1 no 0 3 0 0 0 0 1 +offset; offset; offset; o of off offs BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 1 ; 1 3 0 0 0 0 1 +length4 length4 length4 l le len leng BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 1 no 0 3 0 0 0 0 1 +length; length; length; l le len leng BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 1 ; 1 3 0 0 0 0 1 +lock_owner4 lock_owner4 lock_owner4 l lo loc lock BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 1 no 0 4 0 0 0 0 1 +owner; owner; owner; o ow own owne BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 1 ; 1 2 0 0 0 0 1 +}; }; }; } }; }; }; BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 1 ; 1 1 0 0 0 0 1 +18.11.2. RESULTS 18.11.2. 1 18 18. 18.1 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 2 ... 3 10 0 0 0 0 1 +union LOCKT4res union u un uni unio BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 3 () 2 10 0 0 0 0 1 +case NFS4ERR_DENIED: case c ca cas case BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 8 3 : 1 4 0 0 0 0 1 +LOCK4denied LOCK4denied lock4denied L LO LOC LOCK BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 3 no 0 2 0 0 0 0 1 +denied; denied; denied; d de den deni BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 3 ; 1 1 0 0 0 0 1 +case NFS4_OK: case c ca cas case BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 8 3 : 1 3 0 0 0 0 1 +void; void; void; v vo voi void BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 3 ; 1 1 0 0 0 0 1 +default: default: default: d de def defa BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 3 : 1 2 0 0 0 0 1 +void; void; void; v vo voi void BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 3 ; 1 1 0 0 0 0 1 +}; }; }; } }; }; }; BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 3 ; 1 0 0 0 0 0 1 +18.11.3. DESCRIPTION 18.11.3. 1 18 18. 18.1 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 4 ... 3 10 0 0 0 0 1 +The LOCKT the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 4 . 1 9 0 0 0 0 1 +a conflicting a a a a a BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 1 0 0 0 0 0 8 4 ,,,, 4 10 0 0 0 0 1 +conflicting lock conflicting c co con conf BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 4 . 1 8 0 0 0 0 1 +includes the includes i in inc incl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 4 , 1 9 0 0 0 0 1 +this is this t th thi this BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 4 no 0 9 0 0 0 0 1 +different client different d di dif diff BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 4 ., 2 9 0 0 0 0 1 +is returned. is i is is is BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 4 . 1 9 0 0 0 0 1 +same way same s sa sam same BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 4 no 0 9 0 0 0 0 1 +blocking or blocking b bl blo bloc BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 4 -. 2 8 0 0 0 0 1 +WRITEW_LT. WRITEW_LT. writew_lt. W WR WRI WRIT BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 4 . 1 1 0 0 0 0 1 +The ranges the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 9 . 1 8 0 0 0 0 1 +NFS4ERR_BAD_RANGE errors nfs4err_bad_range N NF NFS NFS4 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 9 no 0 10 0 0 0 0 1 +for LOCK. for f fo for for BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 9 . 1 1 0 0 0 0 1 +The clientid the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 10 no 0 10 0 0 0 0 1 +and MUST and a an and and BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 10 . 1 9 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 8 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 11 , 1 10 0 0 0 0 0 +[Page 454] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 8 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 8 0 no 0 4 0 0 0 0 1 +the clientid the t th the the BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 0 no 0 10 0 0 0 0 1 +the session the t th the the BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 0 . 1 9 0 0 0 0 1 +If the if I If If If BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 1 , 1 9 0 0 0 0 1 +returned to returned r re ret retu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 1 . 1 9 0 0 0 0 1 +represents an represents r re rep repr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 1 ,. 2 9 0 0 0 0 1 +the current the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 1 , 1 10 0 0 0 0 1 +returned. In returned. r re ret retu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 1 .,. 3 8 0 0 0 0 1 +On success, on O On On On BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 3 ,. 2 10 0 0 0 0 1 +18.11.4. IMPLEMENTATION 18.11.4. 1 18 18. 18.1 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 3 ... 3 10 0 0 0 0 1 +If the if I If If If BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 3 no 0 10 0 0 0 0 1 +the conflicting the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 3 , 1 10 0 0 0 0 1 +in the in i in in in BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 8 3 . 1 8 0 0 0 0 1 +LOCKT uses lockt L LO LOC LOCK BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 5 , 1 9 0 0 0 0 1 +identify the identify i id ide iden BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 5 . 1 10 0 0 0 0 1 +the file the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 5 , 1 10 0 0 0 0 1 +be available. be b be be be BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 5 . 1 2 0 0 0 0 1 +As noted as A As As As BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 6 .., 3 7 0 0 0 0 1 +NFS4ERR_LOCK_RANGE to nfs4err_lock_range N NF NFS NFS4 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 6 (-) 3 9 0 0 0 0 1 +operations that operations o op ope oper BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 8 6 - 1 10 0 0 0 0 1 +owner. owner. owner. o ow own owne BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 6 . 1 1 0 0 0 0 1 +The LOCKT the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 7 ' 1 10 0 0 0 0 1 +for the for f fo for for BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 7 -, 2 9 0 0 0 0 1 +cases. Note cases. c ca cas case BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 7 . 1 9 0 0 0 0 1 +LOCKT request lockt L LO LOC LOCK BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 7 no 0 9 0 0 0 0 1 +lock-owner would lock-owner l lo loc lock BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 7 -. 2 6 0 0 0 0 1 +When a when W Wh Whe When BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 9 , 1 10 0 0 0 0 1 +(see Section (see ( (s (se (see BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 9 (..). 5 9 0 0 0 0 1 +case, LOCKT case, c ca cas case BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 9 ,. 2 8 0 0 0 0 1 +18.12. Operation 18.12. 1 18 18. 18.1 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 11 ..:- 4 10 0 0 0 0 1 +18.12.1. ARGUMENTS 18.12.1. 1 18 18. 18.1 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 11 ... 3 10 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 8 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 11 , 1 10 0 0 0 0 0 +[Page 455] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 8 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 8 0 no 0 4 0 0 0 0 1 +struct LOCKU4args struct s st str stru BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 0 no 0 8 0 0 0 0 1 +/* CURRENT_FH: /* / /* /* /* BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 0 /*:*/ 5 9 0 0 0 0 1 +nfs_lock_type4 locktype; nfs_lock_type4 n nf nfs nfs_ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 0 ; 1 10 0 0 0 0 1 +seqid4 seqid4 seqid4 s se seq seqi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 0 no 0 2 0 0 0 0 1 +seqid; seqid; seqid; s se seq seqi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 0 ; 1 2 0 0 0 0 1 +stateid4 stateid4 stateid4 s st sta stat BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 0 no 0 3 0 0 0 0 1 +lock_stateid; lock_stateid; lock_stateid; l lo loc lock BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 0 ; 1 5 0 0 0 0 1 +offset4 offset4 offset4 o of off offs BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 0 no 0 3 0 0 0 0 1 +offset; offset; offset; o of off offs BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 0 ; 1 3 0 0 0 0 1 +length4 length4 length4 l le len leng BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 0 no 0 3 0 0 0 0 1 +length; length; length; l le len leng BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 0 ; 1 3 0 0 0 0 1 +}; }; }; } }; }; }; BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 0 ; 1 1 0 0 0 0 1 +18.12.2. RESULTS 18.12.2. 1 18 18. 18.1 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 1 ... 3 10 0 0 0 0 1 +union LOCKU4res union u un uni unio BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 1 () 2 10 0 0 0 0 1 +case case case c ca cas case BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 8 1 no 0 1 0 0 0 0 1 +NFS4_OK: NFS4_OK: nfs4_ok: N NF NFS NFS4 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 1 : 1 2 0 0 0 0 1 +stateid4 stateid4 stateid4 s st sta stat BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 1 no 0 2 0 0 0 0 1 +lock_stateid; lock_stateid; lock_stateid; l lo loc lock BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 1 ; 1 3 0 0 0 0 1 +default: default: default: d de def defa BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 1 : 1 2 0 0 0 0 1 +void; void; void; v vo voi void BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 1 ; 1 1 0 0 0 0 1 +}; }; }; } }; }; }; BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 1 ; 1 0 0 0 0 0 1 +18.12.3. DESCRIPTION 18.12.3. 1 18 18. 18.1 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 2 ... 3 10 0 0 0 0 1 +The LOCKU the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 2 - 1 9 0 0 0 0 1 +parameters. The parameters. p pa par para BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 2 . 1 9 0 0 0 0 1 +is legal is i is is is BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 2 , 1 10 0 0 0 0 1 +accept any accept a ac acc acce BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 2 . 1 9 0 0 0 0 1 +has no has h ha has has BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 2 . 1 9 0 0 0 0 1 +The ranges the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 4 . 1 8 0 0 0 0 1 +NFS4ERR_BAD_RANGE errors nfs4err_bad_range N NF NFS NFS4 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 4 no 0 10 0 0 0 0 1 +for LOCK. for f fo for for BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 4 . 1 1 0 0 0 0 1 +The seqid the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 5 . 1 10 0 0 0 0 1 +If the if I If If If BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 6 , 1 9 0 0 0 0 1 +returned to returned r re ret retu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 6 . 1 9 0 0 0 0 1 +represents an represents r re rep repr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 6 ,. 2 9 0 0 0 0 1 +the current the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 6 , 1 10 0 0 0 0 1 +returned. In returned. r re ret retu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 6 .,. 3 8 0 0 0 0 1 +On success, on O On On On BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 8 ,. 2 10 0 0 0 0 1 +The server the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 8 ,, 2 9 0 0 0 0 1 +applicable, the applicable, a ap app appl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 8 ,, 2 10 0 0 0 0 1 +also be also a al als also BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 8 . 1 8 0 0 0 0 1 +possible if possible p po pos poss BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 8 . 1 9 0 0 0 0 1 +The server the T Th The The BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 8 ( 1 9 0 0 0 0 1 +Section 18.35) section S Se Sec Sect BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 8 .). 3 4 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 8 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 11 , 1 10 0 0 0 0 0 +[Page 456] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 8 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 8 0 no 0 4 0 0 0 0 1 +18.12.4. IMPLEMENTATION 18.12.4. 1 18 18. 18.1 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 0 ... 3 10 0 0 0 0 1 +If the if I If If If BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 0 no 0 9 0 0 0 0 1 +actually held actually a ac act actu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 0 -, 2 9 0 0 0 0 1 +NFS4ERR_LOCK_RANGE. This nfs4err_lock_range. N NF NFS NFS4 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 0 . 1 10 0 0 0 0 1 +locked, where locked, l lo loc lock BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 0 ,-, 3 9 0 0 0 0 1 +overlaps the overlaps o ov ove over BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 0 , 1 9 0 0 0 0 1 +specified includes specified s sp spe spec BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 0 -. 2 10 0 0 0 0 1 +these cases, these t th the thes BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 0 ,[], 4 9 0 0 0 0 1 +receiving this receiving r re rec rece BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 8 0 , 1 8 0 0 0 0 1 +operations, simulate operations, o op ope oper BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 0 , 1 8 0 0 0 0 1 +corresponding to corresponding c co cor corr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 0 , 1 10 0 0 0 0 1 +operations for operations o op ope oper BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 8 0 -. 2 7 0 0 0 0 1 +When a when W Wh Whe When BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 5 , 1 10 0 0 0 0 1 +(see Section (see ( (s (se (see BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 5 (..). 5 9 0 0 0 0 1 +case, LOCKU case, c ca cas case BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 5 ,. 2 8 0 0 0 0 1 +18.13. Operation 18.13. 1 18 18. 18.1 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 6 ..:- 4 10 0 0 0 0 1 +18.13.1. ARGUMENTS 18.13.1. 1 18 18. 18.1 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 6 ... 3 10 0 0 0 0 1 +struct LOOKUP4args struct s st str stru BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 7 no 0 7 0 0 0 0 1 +/* CURRENT_FH: /* / /* /* /* BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 7 /*:*/ 5 10 0 0 0 0 1 +component4 component4 component4 c co com comp BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 7 no 0 3 0 0 0 0 1 +objname; objname; objname; o ob obj objn BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 7 ; 1 3 0 0 0 0 1 +}; }; }; } }; }; }; BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 7 ; 1 1 0 0 0 0 1 +18.13.2. RESULTS 18.13.2. 1 18 18. 18.1 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 7 ... 3 10 0 0 0 0 1 +struct LOOKUP4res struct s st str stru BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 7 no 0 6 0 0 0 0 1 +/* New /* / /* /* /* BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 7 /*:*/ 5 10 0 0 0 0 1 +nfsstat4 nfsstat4 nfsstat4 n nf nfs nfss BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 7 no 0 3 0 0 0 0 1 +status; status; status; s st sta stat BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 7 ; 1 2 0 0 0 0 1 +}; }; }; } }; }; }; BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 7 ; 1 1 0 0 0 0 1 +18.13.3. DESCRIPTION 18.13.3. 1 18 18. 18.1 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 8 ... 3 10 0 0 0 0 1 +The LOOKUP the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 8 no 0 10 0 0 0 0 1 +directory specified directory d di dir dire BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 8 . 1 9 0 0 0 0 1 +component and component c co com comp BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 8 , 1 8 0 0 0 0 1 +replaced with replaced r re rep repl BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 8 '. 2 6 0 0 0 0 1 +If the if I If If If BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 10 no 0 10 0 0 0 0 1 +or because or o or or or BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 10 no 0 9 0 0 0 0 1 +component, then component, c co com comp BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 10 , 1 9 0 0 0 0 1 +will be will w wi wil will BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 8 10 . 1 2 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 8 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 11 , 1 10 0 0 0 0 0 +[Page 457] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 8 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 8 0 no 0 4 0 0 0 0 1 +If the if I If If If BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 0 - 1 10 0 0 0 0 1 +obey the obey o ob obe obey BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 0 -,. 3 9 0 0 0 0 1 +18.13.4. IMPLEMENTATION 18.13.4. 1 18 18. 18.1 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 1 ... 3 10 0 0 0 0 1 +If the if I If If If BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 1 - 1 10 0 0 0 0 1 +up, it up, u up up, up, BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 1 ,( 2 9 0 0 0 0 1 +filehandle): filehandle): filehandle): f fi fil file BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 1 ): 2 1 0 0 0 0 1 +PUTFH (directory putfh P PU PUT PUTF BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 2 () 2 10 0 0 0 0 1 +LOOKUP "pub" lookup L LO LOO LOOK BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 2 "" 2 4 0 0 0 0 1 +GETFH GETFH getfh G GE GET GETF BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 2 no 0 2 0 0 0 0 1 +LOOKUP "foo" lookup L LO LOO LOOK BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 2 "" 2 4 0 0 0 0 1 +GETFH GETFH getfh G GE GET GETF BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 2 no 0 2 0 0 0 0 1 +LOOKUP "bar" lookup L LO LOO LOOK BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 2 "" 2 4 0 0 0 0 1 +GETFH GETFH getfh G GE GET GETF BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 2 no 0 2 0 0 0 0 1 +Unlike NFSv3, unlike U Un Unl Unli BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 3 ,. 2 10 0 0 0 0 1 +the server. the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 3 . 1 10 0 0 0 0 1 +the fsid the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 3 no 0 9 0 0 0 0 1 +directory looked directory d di dir dire BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 3 ., 2 8 0 0 0 0 1 +directory is directory d di dir dire BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 3 . 1 8 0 0 0 0 1 +mountpoint crossing mountpoint m mo mou moun BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 3 '. 2 9 0 0 0 0 1 +This needs this T Th Thi This BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 3 no 0 9 0 0 0 0 1 +mechanisms common mechanisms m me mec mech BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 3 . 1 5 0 0 0 0 1 +Servers that servers S Se Ser Serv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 8 5 """" 4 10 0 0 0 0 1 +should provide should s sh sho shou BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 5 no 0 9 0 0 0 0 1 +systems can systems s sy sys syst BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 8 5 ,' 2 9 0 0 0 0 1 +namespace. The namespace. n na nam name BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 5 . 1 9 0 0 0 0 1 +to paths to t to to to BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 5 . 1 6 0 0 0 0 1 +Note: previous note: N No Not Note BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 7 : 1 10 0 0 0 0 1 +the names the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 7 ".""..".. 9 9 0 0 0 0 1 +these names. these t th the thes BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 7 . 1 9 0 0 0 0 1 +directory. directory. directory. d di dir dire BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 7 . 1 1 0 0 0 0 1 +Note that note N No Not Note BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 9 . 1 9 0 0 0 0 1 +is responsible is i is is is BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 9 no 0 10 0 0 0 0 1 +are modified are a ar are are BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 9 no 0 8 0 0 0 0 1 +process. process. process. p pr pro proc BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 9 . 1 1 0 0 0 0 1 +If the if I If If If BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 10 no 0 9 0 0 0 0 1 +link, the link, l li lin link BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 10 ,. 2 9 0 0 0 0 1 +other non-directory other o ot oth othe BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 10 -,. 3 10 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 8 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 11 , 1 10 0 0 0 0 0 +[Page 458] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 8 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 8 0 no 0 4 0 0 0 0 1 +18.14. Operation 18.14. 1 18 18. 18.1 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 0 ..:- 4 10 0 0 0 0 1 +18.14.1. ARGUMENTS 18.14.1. 1 18 18. 18.1 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 0 ... 3 10 0 0 0 0 1 +/* CURRENT_FH: /* / /* /* /* BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 0 /*:*/ 5 10 0 0 0 0 1 +void; void; void; v vo voi void BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 0 ; 1 2 0 0 0 0 1 +18.14.2. RESULTS 18.14.2. 1 18 18. 18.1 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 1 ... 3 10 0 0 0 0 1 +struct LOOKUPP4res struct s st str stru BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 1 no 0 5 0 0 0 0 1 +/* new /* / /* /* /* BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 1 /*:*/ 5 10 0 0 0 0 1 +nfsstat4 nfsstat4 nfsstat4 n nf nfs nfss BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 1 no 0 2 0 0 0 0 1 +status; status; status; s st sta stat BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 1 ; 1 2 0 0 0 0 1 +}; }; }; } }; }; }; BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 1 ; 1 0 0 0 0 0 1 +18.14.3. DESCRIPTION 18.14.3. 1 18 18. 18.1 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 1 ... 3 10 0 0 0 0 1 +The current the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 2 no 0 10 0 0 0 0 1 +a named a a a a a BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 1 0 0 0 0 0 8 2 . 1 9 0 0 0 0 1 +parent directory parent p pa par pare BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 8 2 . 1 10 0 0 0 0 1 +directory, an directory, d di dir dire BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 2 ,., 3 9 0 0 0 0 1 +NFS4ERR_NOENT will nfs4err_noent N NF NFS NFS4 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 2 no 0 8 0 0 0 0 1 +filehandle is filehandle f fi fil file BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 2 '. 2 8 0 0 0 0 1 +As is as A As As As BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 4 ,. 2 10 0 0 0 0 1 +If the if I If If If BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 5 no 0 10 0 0 0 0 1 +directory, the directory, d di dir dire BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 5 ,. 2 7 0 0 0 0 1 +If the if I If If If BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 5 ' 1 10 0 0 0 0 1 +the parent the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 5 , 1 9 0 0 0 0 1 +(a future (a ( (a (a (a BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 5 () 2 9 0 0 0 0 1 +LOOKUPP response. lookupp L LO LOO LOOK BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 5 .,, 3 9 0 0 0 0 1 +the SECINFO_NO_NAME the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 5 (.), 4 10 0 0 0 0 1 +gracefully determine gracefully g gr gra grac BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 5 . 1 7 0 0 0 0 1 +If the if I If If If BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 8 no 0 9 0 0 0 0 1 +associated with associated a as ass asso BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 8 (..,- 5 9 0 0 0 0 1 +directory of directory d di dir dire BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 8 ), 2 10 0 0 0 0 1 +filehandle of filehandle f fi fil file BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 8 . 1 7 0 0 0 0 1 +18.14.4. IMPLEMENTATION 18.14.4. 1 18 18. 18.1 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 9 ... 3 10 0 0 0 0 1 +An issue an A An An An BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 8 9 no 0 8 0 0 0 0 1 +directories. The directories. d di dir dire BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 9 . 1 8 0 0 0 0 1 +detached from detached d de det deta BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 9 , 1 9 0 0 0 0 1 +represented in represented r re rep repr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 9 . 1 9 0 0 0 0 1 +attribute directory attribute a at att attr BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 9 , 1 10 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 8 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 11 , 1 10 0 0 0 0 0 +[Page 459] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 8 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 8 0 no 0 4 0 0 0 0 1 +and conveying and a an and and BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 0 no 0 8 0 0 0 0 1 +applications expect applications a ap app appl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 8 0 . 1 10 0 0 0 0 1 +Therefore, the therefore, T Th The Ther BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 0 , 1 9 0 0 0 0 1 +directories (represented directories d di dir dire BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 0 ("..") 6 9 0 0 0 0 1 +attribute directory attribute a at att attr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 0 ( 1 9 0 0 0 0 1 +file system file f fi fil file BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 0 ). 2 5 0 0 0 0 1 +18.15. Operation 18.15. 1 18 18. 18.1 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 3 ..:- 4 10 0 0 0 0 1 +18.15.1. ARGUMENTS 18.15.1. 1 18 18. 18.1 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 3 ... 3 10 0 0 0 0 1 +struct NVERIFY4args struct s st str stru BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 4 no 0 8 0 0 0 0 1 +/* CURRENT_FH: /* / /* /* /* BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 4 /*:*/ 5 10 0 0 0 0 1 +fattr4 fattr4 fattr4 f fa fat fatt BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 4 no 0 2 0 0 0 0 1 +obj_attributes; obj_attributes; obj_attributes; o ob obj obj_ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 4 ; 1 6 0 0 0 0 1 +}; }; }; } }; }; }; BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 4 ; 1 1 0 0 0 0 1 +18.15.2. RESULTS 18.15.2. 1 18 18. 18.1 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 4 ... 3 10 0 0 0 0 1 +struct NVERIFY4res struct s st str stru BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 4 no 0 10 0 0 0 0 1 +nfsstat4 nfsstat4 nfsstat4 n nf nfs nfss BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 4 no 0 4 0 0 0 0 1 +status; status; status; s st sta stat BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 4 ; 1 3 0 0 0 0 1 +}; }; }; } }; }; }; BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 4 ; 1 1 0 0 0 0 1 +18.15.3. DESCRIPTION 18.15.3. 1 18 18. 18.1 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 5 ... 3 10 0 0 0 0 1 +This operation this T Th Thi This BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 5 no 0 9 0 0 0 0 1 +performed if performed p pe per perf BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 5 no 0 10 0 0 0 0 1 +object. If object. o ob obj obje BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 5 ., 2 9 0 0 0 0 1 +MUST be must M MU MUS MUST BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 8 5 . 1 2 0 0 0 0 1 +On success, on O On On On BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 7 ,. 2 10 0 0 0 0 1 +18.15.4. IMPLEMENTATION 18.15.4. 1 18 18. 18.1 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 7 ... 3 10 0 0 0 0 1 +This operation this T Th Thi This BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 7 . 1 9 0 0 0 0 1 +object to object o ob obj obje BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 7 , 1 10 0 0 0 0 1 +operations may operations o op ope oper BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 8 7 , 1 9 0 0 0 0 1 +instance, to instance, i in ins inst BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 7 , 1 9 0 0 0 0 1 +it has: it i it it it BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 7 : 1 1 0 0 0 0 1 +SEQUENCE SEQUENCE sequence S SE SEQ SEQU BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 8 9 no 0 3 0 0 0 0 1 +PUTFH fh putfh P PU PUT PUTF BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 9 no 0 3 0 0 0 0 1 +NVERIFY attrbits nverify N NV NVE NVER BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 9 no 0 10 0 0 0 0 1 +READ 0 read R RE REA READ BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 1 1 0 0 0 0 0 8 9 no 0 5 0 0 0 0 1 +Contrast this contrast C Co Con Cont BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 10 , 1 9 0 0 0 0 1 +request/reply round request/reply r re req requ BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 10 /, 2 10 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 8 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 11 , 1 10 0 0 0 0 0 +[Page 460] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 8 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 8 0 no 0 4 0 0 0 0 1 +client's cache client's c cl cli clie BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 0 ',/ 3 10 0 0 0 0 1 +round trip. round r ro rou roun BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 0 . 1 1 0 0 0 0 1 +In the in I In In In BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 8 1 no 0 9 0 0 0 0 1 +operation and operation o op ope oper BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 1 no 0 10 0 0 0 0 1 +system object, system s sy sys syst BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 1 , 1 9 0 0 0 0 1 +client. client. client. c cl cli clie BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 1 . 1 1 0 0 0 0 1 +When the when W Wh Whe When BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 3 -(.., 5 9 0 0 0 0 1 +time_modify_set) is time_modify_set) t ti tim time BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 3 ), 2 10 0 0 0 0 1 +the client. the t th the the BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 3 . 1 1 0 0 0 0 1 +18.16. Operation 18.16. 1 18 18. 18.1 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 4 ..:- 4 10 0 0 0 0 1 +18.16.1. ARGUMENTS 18.16.1. 1 18 18. 18.1 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 5 ... 3 10 0 0 0 0 1 +/* /* /* / /* /* /* BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 5 /* 2 0 0 0 0 0 1 +* Various * * * * * BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 5 * 1 7 0 0 0 0 1 +*/ */ */ * */ */ */ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 5 */ 2 0 0 0 0 0 1 +enum createmode4 enum e en enu enum BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 5 no 0 4 0 0 0 0 1 +UNCHECKED4 UNCHECKED4 unchecked4 U UN UNC UNCH BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 5 no 0 2 0 0 0 0 1 += 0, = = = = = BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 5 , 1 1 0 0 0 0 1 +GUARDED4 GUARDED4 guarded4 G GU GUA GUAR BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 5 no 0 2 0 0 0 0 1 += 1, = = = = = BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 5 , 1 1 0 0 0 0 1 +/* Deprecated /* / /* /* /* BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 5 /*..*/ 6 6 0 0 0 0 1 +EXCLUSIVE4 EXCLUSIVE4 exclusive4 E EX EXC EXCL BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 5 no 0 2 0 0 0 0 1 += 2, = = = = = BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 5 , 1 1 0 0 0 0 1 +/* /* /* / /* /* /* BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 5 /* 2 0 0 0 0 0 1 +* New * * * * * BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 5 *.., 4 10 0 0 0 0 1 +* GUARDED4 * * * * * BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 5 *., 3 9 0 0 0 0 1 +* EXCLUSIVE4_1 * * * * * BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 5 *. 2 8 0 0 0 0 1 +*/ */ */ * */ */ */ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 5 */ 2 0 0 0 0 0 1 +EXCLUSIVE4_1 EXCLUSIVE4_1 exclusive4_1 E EX EXC EXCL BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 5 no 0 2 0 0 0 0 1 += 3 = = = = = BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 5 no 0 0 0 0 0 0 1 +}; }; }; } }; }; }; BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 5 ; 1 0 0 0 0 0 1 +struct creatverfattr struct s st str stru BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 8 no 0 10 0 0 0 0 1 +verifier4 verifier4 verifier4 v ve ver veri BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 8 no 0 4 0 0 0 0 1 +cva_verf; cva_verf; cva_verf; c cv cva cva_ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 8 ; 1 4 0 0 0 0 1 +fattr4 fattr4 fattr4 f fa fat fatt BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 8 no 0 3 0 0 0 0 1 +cva_attrs; cva_attrs; cva_attrs; c cv cva cva_ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 8 ; 1 4 0 0 0 0 1 +}; }; }; } }; }; }; BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 8 ; 1 1 0 0 0 0 1 +union createhow4 union u un uni unio BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 9 () 2 10 0 0 0 0 1 +case UNCHECKED4: case c ca cas case BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 8 9 : 1 3 0 0 0 0 1 +case GUARDED4: case c ca cas case BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 8 9 : 1 3 0 0 0 0 1 +fattr4 fattr4 fattr4 f fa fat fatt BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 9 no 0 1 0 0 0 0 1 +createattrs; createattrs; createattrs; c cr cre crea BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 9 ; 1 2 0 0 0 0 1 +case EXCLUSIVE4: case c ca cas case BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 8 9 : 1 3 0 0 0 0 1 +verifier4 verifier4 verifier4 v ve ver veri BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 9 no 0 2 0 0 0 0 1 +createverf; createverf; createverf; c cr cre crea BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 9 ; 1 2 0 0 0 0 1 +case EXCLUSIVE4_1: case c ca cas case BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 8 9 : 1 4 0 0 0 0 1 +creatverfattr ch_createboth; creatverfattr c cr cre crea BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 9 ; 1 6 0 0 0 0 1 +}; }; }; } }; }; }; BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 9 ; 1 0 0 0 0 0 1 +enum opentype4 enum e en enu enum BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 11 no 0 10 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 8 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 11 , 1 10 0 0 0 0 0 +[Page 461] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 8 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 8 0 no 0 4 0 0 0 0 1 +OPEN4_NOCREATE = open4_nocreate O OP OPE OPEN BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 0 , 1 10 0 0 0 0 1 +OPEN4_CREATE OPEN4_CREATE open4_create O OP OPE OPEN BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 0 no 0 6 0 0 0 0 1 += 1 = = = = = BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 2 0 0 0 0 1 +}; }; }; } }; }; }; BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 0 ; 1 1 0 0 0 0 1 +union openflag4 union u un uni unio BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 1 () 2 10 0 0 0 0 1 +case OPEN4_CREATE: case c ca cas case BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 8 1 : 1 4 0 0 0 0 1 +createhow4 createhow4 createhow4 c cr cre crea BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 1 no 0 2 0 0 0 0 1 +how; how; how; h ho how how; BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 1 ; 1 1 0 0 0 0 1 +default: default: default: d de def defa BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 1 : 1 1 0 0 0 0 1 +void; void; void; v vo voi void BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 1 ; 1 1 0 0 0 0 1 +}; }; }; } }; }; }; BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 1 ; 1 0 0 0 0 0 1 +/* Next /* / /* /* /* BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 2 /**/ 4 10 0 0 0 0 1 +enum limit_by4 enum e en enu enum BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 2 no 0 3 0 0 0 0 1 +NFS_LIMIT_SIZE NFS_LIMIT_SIZE nfs_limit_size N NF NFS NFS_ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 2 no 0 3 0 0 0 0 1 += 1, = = = = = BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 2 , 1 1 0 0 0 0 1 +NFS_LIMIT_BLOCKS NFS_LIMIT_BLOCKS nfs_limit_blocks N NF NFS NFS_ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 2 no 0 3 0 0 0 0 1 += 2 = = = = = BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 2 no 0 0 0 0 0 0 1 +/* others /* / /* /* /* BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 2 /**/ 4 4 0 0 0 0 1 +}; }; }; } }; }; }; BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 2 ; 1 0 0 0 0 0 1 +struct nfs_modified_limit4 struct s st str stru BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 4 no 0 10 0 0 0 0 1 +uint32_t uint32_t uint32_t u ui uin uint BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 4 no 0 3 0 0 0 0 1 +num_blocks; num_blocks; num_blocks; n nu num num_ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 4 ; 1 4 0 0 0 0 1 +uint32_t uint32_t uint32_t u ui uin uint BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 4 no 0 3 0 0 0 0 1 +bytes_per_block; bytes_per_block; bytes_per_block; b by byt byte BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 4 ; 1 5 0 0 0 0 1 +}; }; }; } }; }; }; BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 4 ; 1 1 0 0 0 0 1 +union nfs_space_limit4 union u un uni unio BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 4 () 2 10 0 0 0 0 1 +/* limit /* / /* /* /* BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 4 /**/ 4 6 0 0 0 0 1 +case NFS_LIMIT_SIZE: case c ca cas case BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 8 4 : 1 4 0 0 0 0 1 +uint64_t uint64_t uint64_t u ui uin uint BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 4 no 0 1 0 0 0 0 1 +filesize; filesize; filesize; f fi fil file BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 4 ; 1 1 0 0 0 0 1 +/* limit /* / /* /* /* BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 4 /**/ 4 8 0 0 0 0 1 +case NFS_LIMIT_BLOCKS: case c ca cas case BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 8 4 : 1 4 0 0 0 0 1 +nfs_modified_limit4 nfs_modified_limit4 nfs_modified_limit4 n nf nfs nfs_ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 4 no 0 3 0 0 0 0 1 +mod_blocks; mod_blocks; mod_blocks; m mo mod mod_ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 4 ; 1 2 0 0 0 0 1 +} ; } } } } } BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 4 ; 1 0 0 0 0 0 1 +/* /* /* / /* /* /* BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 7 /* 2 0 0 0 0 0 1 +* Share * * * * * BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 7 * 1 10 0 0 0 0 1 +*/ */ */ * */ */ */ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 7 */ 2 0 0 0 0 0 1 +const OPEN4_SHARE_ACCESS_READ const c co con cons BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 7 no 0 5 0 0 0 0 1 += 0x00000001; = = = = = BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 7 ; 1 2 0 0 0 0 1 +const OPEN4_SHARE_ACCESS_WRITE const c co con cons BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 7 ; 1 8 0 0 0 0 1 +const OPEN4_SHARE_ACCESS_BOTH const c co con cons BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 7 no 0 5 0 0 0 0 1 += 0x00000003; = = = = = BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 7 ; 1 2 0 0 0 0 1 +const OPEN4_SHARE_DENY_NONE const c co con cons BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 8 no 0 9 0 0 0 0 1 += 0x00000000; = = = = = BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 8 ; 1 4 0 0 0 0 1 +const OPEN4_SHARE_DENY_READ const c co con cons BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 8 no 0 9 0 0 0 0 1 += 0x00000001; = = = = = BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 8 ; 1 4 0 0 0 0 1 +const OPEN4_SHARE_DENY_WRITE const c co con cons BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 8 no 0 10 0 0 0 0 1 += 0x00000002; = = = = = BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 8 ; 1 4 0 0 0 0 1 +const OPEN4_SHARE_DENY_BOTH const c co con cons BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 8 no 0 9 0 0 0 0 1 += 0x00000003; = = = = = BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 8 ; 1 4 0 0 0 0 1 +/* new /* / /* /* /* BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 10 /**/ 4 10 0 0 0 0 1 +const OPEN4_SHARE_ACCESS_WANT_DELEG_MASK const c co con cons BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 10 no 0 7 0 0 0 0 1 += 0xFF00; = = = = = BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 10 ; 1 1 0 0 0 0 1 +const OPEN4_SHARE_ACCESS_WANT_NO_PREFERENCE const c co con cons BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 10 no 0 8 0 0 0 0 1 += 0x0000; = = = = = BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 10 ; 1 1 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 8 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 11 , 1 10 0 0 0 0 0 +[Page 462] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 8 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 8 0 no 0 4 0 0 0 0 1 +const OPEN4_SHARE_ACCESS_WANT_READ_DELEG const c co con cons BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 0 no 0 9 0 0 0 0 1 += 0x0100; = = = = = BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 ; 1 2 0 0 0 0 1 +const OPEN4_SHARE_ACCESS_WANT_WRITE_DELEG const c co con cons BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 0 no 0 10 0 0 0 0 1 += 0x0200; = = = = = BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 ; 1 2 0 0 0 0 1 +const OPEN4_SHARE_ACCESS_WANT_ANY_DELEG const c co con cons BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 0 no 0 9 0 0 0 0 1 += 0x0300; = = = = = BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 ; 1 2 0 0 0 0 1 +const OPEN4_SHARE_ACCESS_WANT_NO_DELEG const c co con cons BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 0 no 0 9 0 0 0 0 1 += 0x0400; = = = = = BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 ; 1 2 0 0 0 0 1 +const OPEN4_SHARE_ACCESS_WANT_CANCEL const c co con cons BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 0 no 0 8 0 0 0 0 1 += 0x0500; = = = = = BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 ; 1 2 0 0 0 0 1 +const const const c co con cons BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 2 no 0 1 0 0 0 0 1 +OPEN4_SHARE_ACCESS_WANT_SIGNAL_DELEG_WHEN_RESRC_AVAIL OPEN4_SHARE_ACCESS_WANT_SIGNAL_DELEG_WHEN_RESRC_AVAIL open4_share_access_want_signal_deleg_when_resrc_avail O OP OPE OPEN BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 2 no 0 10 0 0 0 0 1 += 0x10000; = = = = = BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 2 ; 1 2 0 0 0 0 1 +const const const c co con cons BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 2 no 0 1 0 0 0 0 1 +OPEN4_SHARE_ACCESS_WANT_PUSH_DELEG_WHEN_UNCONTENDED OPEN4_SHARE_ACCESS_WANT_PUSH_DELEG_WHEN_UNCONTENDED open4_share_access_want_push_deleg_when_uncontended O OP OPE OPEN BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 2 no 0 10 0 0 0 0 1 += 0x20000; = = = = = BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 2 ; 1 2 0 0 0 0 1 +enum open_delegation_type4 enum e en enu enum BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 3 no 0 6 0 0 0 0 1 +OPEN_DELEGATE_NONE OPEN_DELEGATE_NONE open_delegate_none O OP OPE OPEN BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 3 no 0 4 0 0 0 0 1 += 0, = = = = = BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 3 , 1 1 0 0 0 0 1 +OPEN_DELEGATE_READ OPEN_DELEGATE_READ open_delegate_read O OP OPE OPEN BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 3 no 0 4 0 0 0 0 1 += 1, = = = = = BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 3 , 1 1 0 0 0 0 1 +OPEN_DELEGATE_WRITE OPEN_DELEGATE_WRITE open_delegate_write O OP OPE OPEN BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 3 no 0 4 0 0 0 0 1 += 2, = = = = = BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 3 , 1 1 0 0 0 0 1 +OPEN_DELEGATE_NONE_EXT = open_delegate_none_ext O OP OPE OPEN BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 3 /*.*/ 5 10 0 0 0 0 1 +}; }; }; } }; }; }; BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 3 ; 1 0 0 0 0 0 1 +enum open_claim_type4 enum e en enu enum BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 4 no 0 10 0 0 0 0 1 +/* /* /* / /* /* /* BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 4 /* 2 1 0 0 0 0 1 +* Not * * * * * BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 4 *. 2 7 0 0 0 0 1 +*/ */ */ * */ */ */ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 4 */ 2 1 0 0 0 0 1 +CLAIM_NULL CLAIM_NULL claim_null C CL CLA CLAI BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 4 no 0 4 0 0 0 0 1 += 0, = = = = = BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 4 , 1 2 0 0 0 0 1 +CLAIM_PREVIOUS CLAIM_PREVIOUS claim_previous C CL CLA CLAI BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 5 no 0 7 0 0 0 0 1 += 1, = = = = = BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 5 , 1 2 0 0 0 0 1 +CLAIM_DELEGATE_CUR CLAIM_DELEGATE_CUR claim_delegate_cur C CL CLA CLAI BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 5 no 0 9 0 0 0 0 1 += 2, = = = = = BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 5 , 1 2 0 0 0 0 1 +CLAIM_DELEGATE_PREV CLAIM_DELEGATE_PREV claim_delegate_prev C CL CLA CLAI BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 5 no 0 10 0 0 0 0 1 += 3, = = = = = BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 5 , 1 2 0 0 0 0 1 +/* /* /* / /* /* /* BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 6 /* 2 0 0 0 0 0 1 +* Not * * * * * BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 6 *. 2 4 0 0 0 0 1 +* * * * * * * BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 6 * 1 0 0 0 0 0 1 +* Like * * * * * BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 6 *, 2 10 0 0 0 0 1 +* by * * * * * BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 6 *. 2 7 0 0 0 0 1 +*/ */ */ * */ */ */ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 6 */ 2 0 0 0 0 0 1 +CLAIM_FH CLAIM_FH claim_fh C CL CLA CLAI BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 6 no 0 2 0 0 0 0 1 += 4, = = = = = BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 6 ,/*.*/ 6 5 0 0 0 0 1 +/* /* /* / /* /* /* BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 8 /* 2 0 0 0 0 0 1 +* Like * * * * * BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 8 *, 2 10 0 0 0 0 1 +* by * * * * * BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 8 *. 2 5 0 0 0 0 1 +*/ */ */ * */ */ */ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 8 */ 2 0 0 0 0 0 1 +CLAIM_DELEG_CUR_FH CLAIM_DELEG_CUR_FH claim_deleg_cur_fh C CL CLA CLAI BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 8 no 0 3 0 0 0 0 1 += 5, = = = = = BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 8 ,/*.*/ 6 4 0 0 0 0 1 +/* /* /* / /* /* /* BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 10 /* 2 0 0 0 0 0 1 +* Like * * * * * BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 10 *, 2 10 0 0 0 0 1 +* by * * * * * BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 10 *. 2 5 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 8 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 11 , 1 10 0 0 0 0 0 +[Page 463] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 8 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 8 0 no 0 4 0 0 0 0 1 +*/ */ */ * */ */ */ BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 0 */ 2 1 0 0 0 0 1 +CLAIM_DELEG_PREV_FH CLAIM_DELEG_PREV_FH claim_deleg_prev_fh C CL CLA CLAI BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 0 no 0 9 0 0 0 0 1 += 6 = = = = = BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 /*.*/ 5 10 0 0 0 0 1 +}; }; }; } }; }; }; BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 0 ; 1 1 0 0 0 0 1 +struct open_claim_delegate_cur4 struct s st str stru BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 1 no 0 10 0 0 0 0 1 +stateid4 stateid4 stateid4 s st sta stat BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 1 no 0 2 0 0 0 0 1 +delegate_stateid; delegate_stateid; delegate_stateid; d de del dele BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 1 ; 1 5 0 0 0 0 1 +component4 component4 component4 c co com comp BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 1 no 0 3 0 0 0 0 1 +file; file; file; f fi fil file BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 1 ; 1 1 0 0 0 0 1 +}; }; }; } }; }; }; BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 1 ; 1 0 0 0 0 0 1 +union open_claim4 union u un uni unio BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 1 () 2 10 0 0 0 0 1 +/* /* /* / /* /* /* BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 1 /* 2 0 0 0 0 0 1 +* No * * * * * BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 1 *. 2 5 0 0 0 0 1 +* Ordinary * * * * * BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 1 *. 2 7 0 0 0 0 1 +*/ */ */ * */ */ */ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 1 */ 2 0 0 0 0 0 1 +case CLAIM_NULL: case c ca cas case BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 8 1 : 1 3 0 0 0 0 1 +/* CURRENT_FH: /* / /* /* /* BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 1 /*:*/ 5 5 0 0 0 0 1 +component4 component4 component4 c co com comp BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 1 no 0 2 0 0 0 0 1 +file; file; file; f fi fil file BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 1 ; 1 1 0 0 0 0 1 +/* /* /* / /* /* /* BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 1 /* 2 0 0 0 0 0 1 +* Right * * * * * BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 1 * 1 7 0 0 0 0 1 +* open * * * * * BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 1 *. 2 7 0 0 0 0 1 +* identified * * * * * BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 1 * 1 7 0 0 0 0 1 +* that * * * * * BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 1 *. 2 6 0 0 0 0 1 +*/ */ */ * */ */ */ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 1 */ 2 0 0 0 0 0 1 +case CLAIM_PREVIOUS: case c ca cas case BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 8 1 : 1 4 0 0 0 0 1 +/* CURRENT_FH: /* / /* /* /* BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 1 /*:*/ 5 7 0 0 0 0 1 +open_delegation_type4 open_delegation_type4 open_delegation_type4 o op ope open BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 1 no 0 4 0 0 0 0 1 +delegate_type; delegate_type; delegate_type; d de del dele BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 1 ; 1 2 0 0 0 0 1 +/* /* /* / /* /* /* BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 6 /* 2 0 0 0 0 0 1 +* Right * * * * * BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 6 * 1 10 0 0 0 0 1 +* granted * * * * * BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 6 *. 2 8 0 0 0 0 1 +* specified * * * * * BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 6 *. 2 5 0 0 0 0 1 +*/ */ */ * */ */ */ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 6 */ 2 0 0 0 0 0 1 +case CLAIM_DELEGATE_CUR: case c ca cas case BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 8 6 : 1 6 0 0 0 0 1 +/* CURRENT_FH: /* / /* /* /* BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 6 /*:*/ 5 7 0 0 0 0 1 +open_claim_delegate_cur4 open_claim_delegate_cur4 open_claim_delegate_cur4 o op ope open BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 6 no 0 6 0 0 0 0 1 +delegate_cur_info; delegate_cur_info; delegate_cur_info; d de del dele BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 6 ; 1 5 0 0 0 0 1 +/* /* /* / /* /* /* BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 8 /* 2 0 0 0 0 0 1 +* Right * * * * * BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 8 * 1 8 0 0 0 0 1 +* granted * * * * * BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 8 * 1 8 0 0 0 0 1 +* of * * * * * BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 8 *.. 3 10 0 0 0 0 1 +*/ */ */ * */ */ */ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 8 */ 2 0 0 0 0 0 1 +case CLAIM_DELEGATE_PREV: case c ca cas case BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 8 8 : 1 5 0 0 0 0 1 +/* CURRENT_FH: /* / /* /* /* BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 8 /*:*/ 5 6 0 0 0 0 1 +component4 component4 component4 c co com comp BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 8 no 0 2 0 0 0 0 1 +file_delegate_prev; file_delegate_prev; file_delegate_prev; f fi fil file BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 8 ; 1 4 0 0 0 0 1 +/* /* /* / /* /* /* BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 10 /* 2 0 0 0 0 0 1 +* Like * * * * * BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 10 *. 2 10 0 0 0 0 1 +* to * * * * * BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 10 *. 2 8 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 8 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 11 , 1 10 0 0 0 0 0 +[Page 464] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 8 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 8 0 no 0 4 0 0 0 0 1 +* specified * * * * * BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 *. 2 10 0 0 0 0 1 +*/ */ */ * */ */ */ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 0 */ 2 0 0 0 0 0 1 +case CLAIM_FH: case c ca cas case BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 8 0 :/*.*/ 6 8 0 0 0 0 1 +/* CURRENT_FH: /* / /* /* /* BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 0 /*:*/ 5 9 0 0 0 0 1 +void; void; void; v vo voi void BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 0 ; 1 1 0 0 0 0 1 +/* /* /* / /* /* /* BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 2 /* 2 0 0 0 0 0 1 +* Like * * * * * BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 2 *. 2 10 0 0 0 0 1 +* delegation * * * * * BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 2 * 1 7 0 0 0 0 1 +* instance * * * * * BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 2 *. 2 9 0 0 0 0 1 +* by * * * * * BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 2 *. 2 3 0 0 0 0 1 +*/ */ */ * */ */ */ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 2 */ 2 0 0 0 0 0 1 +case CLAIM_DELEG_PREV_FH: case c ca cas case BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 8 2 :/*.*/ 6 8 0 0 0 0 1 +/* CURRENT_FH: /* / /* /* /* BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 2 /*:*/ 5 6 0 0 0 0 1 +void; void; void; v vo voi void BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 2 ; 1 1 0 0 0 0 1 +/* /* /* / /* /* /* BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 4 /* 2 0 0 0 0 0 1 +* Like * * * * * BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 4 *. 2 10 0 0 0 0 1 +* a * * * * * BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 4 *. 2 7 0 0 0 0 1 +* File * * * * * BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 4 *. 2 7 0 0 0 0 1 +*/ */ */ * */ */ */ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 4 */ 2 0 0 0 0 0 1 +case CLAIM_DELEG_CUR_FH: case c ca cas case BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 8 4 :/*.*/ 6 8 0 0 0 0 1 +/* CURRENT_FH: /* / /* /* /* BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 4 /*:*/ 5 7 0 0 0 0 1 +stateid4 stateid4 stateid4 s st sta stat BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 4 no 0 1 0 0 0 0 1 +oc_delegate_stateid; oc_delegate_stateid; oc_delegate_stateid; o oc oc_ oc_d BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 4 ; 1 4 0 0 0 0 1 +}; }; }; } }; }; }; BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 7 ; 1 10 0 0 0 0 1 +/* /* /* / /* /* /* BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 7 /* 2 0 0 0 0 0 1 +* OPEN: * * * * * BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 7 *:, 3 10 0 0 0 0 1 +*/ */ */ * */ */ */ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 7 */ 2 0 0 0 0 0 1 +struct OPEN4args struct s st str stru BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 7 no 0 3 0 0 0 0 1 +seqid4 seqid4 seqid4 s se seq seqi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 7 no 0 1 0 0 0 0 1 +seqid; seqid; seqid; s se seq seqi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 7 ; 1 1 0 0 0 0 1 +uint32_t uint32_t uint32_t u ui uin uint BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 7 no 0 1 0 0 0 0 1 +share_access; share_access; share_access; s sh sha shar BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 7 ; 1 2 0 0 0 0 1 +uint32_t uint32_t uint32_t u ui uin uint BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 7 no 0 1 0 0 0 0 1 +share_deny; share_deny; share_deny; s sh sha shar BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 7 ; 1 1 0 0 0 0 1 +open_owner4 open_owner4 open_owner4 o op ope open BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 7 no 0 1 0 0 0 0 1 +owner; owner; owner; o ow own owne BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 7 ; 1 1 0 0 0 0 1 +openflag4 openflag4 openflag4 o op ope open BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 7 no 0 1 0 0 0 0 1 +openhow; openhow; openhow; o op ope open BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 7 ; 1 1 0 0 0 0 1 +open_claim4 open_claim4 open_claim4 o op ope open BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 7 no 0 1 0 0 0 0 1 +claim; claim; claim; c cl cla clai BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 7 ; 1 1 0 0 0 0 1 +}; }; }; } }; }; }; BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 7 ; 1 0 0 0 0 0 1 +18.16.2. RESULTS 18.16.2. 1 18 18. 18.1 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 9 ... 3 10 0 0 0 0 1 +struct open_read_delegation4 struct s st str stru BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 9 no 0 10 0 0 0 0 1 +stateid4 stateid; stateid4 s st sta stat BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 9 ; 1 5 0 0 0 0 1 +/* Stateid /* / /* /* /* BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 9 /**/ 4 9 0 0 0 0 1 +bool bool bool b bo boo bool BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 9 no 0 1 0 0 0 0 1 +recall; recall; recall; r re rec reca BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 9 ; 1 2 0 0 0 0 1 +/* Pre-recalled /* / /* /* /* BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 9 /*- 3 8 0 0 0 0 1 +delegations obtained delegations d de del dele BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 9 no 0 6 0 0 0 0 1 +by reclaim by b by by by BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 9 ()*/ 4 10 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 8 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 11 , 1 10 0 0 0 0 0 +[Page 465] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 8 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 8 0 no 0 4 0 0 0 0 1 +nfsace4 permissions; nfsace4 n nf nfs nfsa BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 0 ;/*' 4 10 0 0 0 0 1 +need an need n ne nee need BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 0 no 0 4 0 0 0 0 1 +open for open o op ope open BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 0 */ 2 3 0 0 0 0 1 +}; }; }; } }; }; }; BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 0 ; 1 0 0 0 0 0 1 +struct open_write_delegation4 struct s st str stru BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 1 no 0 10 0 0 0 0 1 +stateid4 stateid; stateid4 s st sta stat BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 1 ; 1 5 0 0 0 0 1 +/* Stateid /* / /* /* /* BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 1 /**/ 4 9 0 0 0 0 1 +bool bool bool b bo boo bool BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 1 no 0 1 0 0 0 0 1 +recall; recall; recall; r re rec reca BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 1 ; 1 2 0 0 0 0 1 +/* Pre-recalled /* / /* /* /* BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 1 /*- 3 7 0 0 0 0 1 +delegations obtained delegations d de del dele BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 1 no 0 6 0 0 0 0 1 +by reclaim by b by by by BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 1 no 0 3 0 0 0 0 1 +(CLAIM_PREVIOUS) */ (claim_previous) ( (C (CL (CLA BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 1 ()*/ 4 6 0 0 0 0 1 +nfs_space_limit4 nfs_space_limit4 nfs_space_limit4 n nf nfs nfs_ BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 3 no 0 4 0 0 0 0 1 +space_limit; /* space_limit; s sp spa spac BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 3 ;/* 3 10 0 0 0 0 1 +the client the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 3 no 0 6 0 0 0 0 1 +determine whether determine d de det dete BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 3 no 0 5 0 0 0 0 1 +file needs file f fi fil file BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 3 no 0 6 0 0 0 0 1 +to the to t to to to BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 3 .*/ 3 6 0 0 0 0 1 +nfsace4 nfsace4 nfsace4 n nf nfs nfsa BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 5 no 0 2 0 0 0 0 1 +permissions; /* permissions; p pe per perm BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 5 ;/*' 4 10 0 0 0 0 1 +need an need n ne nee need BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 5 no 0 5 0 0 0 0 1 +part of part p pa par part BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 5 no 0 5 0 0 0 0 1 +open. */ open. o op ope open BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 5 .*/ 3 2 0 0 0 0 1 +}; }; }; } }; }; }; BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 5 ; 1 0 0 0 0 0 1 +enum why_no_delegation4 enum e en enu enum BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 6 /*.*/ 5 10 0 0 0 0 1 +WND4_NOT_WANTED WND4_NOT_WANTED wnd4_not_wanted W WN WND WND4 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 6 no 0 3 0 0 0 0 1 += 0, = = = = = BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 6 , 1 1 0 0 0 0 1 +WND4_CONTENTION WND4_CONTENTION wnd4_contention W WN WND WND4 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 6 no 0 3 0 0 0 0 1 += 1, = = = = = BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 6 , 1 1 0 0 0 0 1 +WND4_RESOURCE WND4_RESOURCE wnd4_resource W WN WND WND4 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 6 no 0 3 0 0 0 0 1 += 2, = = = = = BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 6 , 1 1 0 0 0 0 1 +WND4_NOT_SUPP_FTYPE WND4_NOT_SUPP_FTYPE wnd4_not_supp_ftype W WN WND WND4 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 6 no 0 4 0 0 0 0 1 += 3, = = = = = BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 6 , 1 1 0 0 0 0 1 +WND4_WRITE_DELEG_NOT_SUPP_FTYPE = wnd4_write_deleg_not_supp_ftype W WN WND WND4 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 6 , 1 8 0 0 0 0 1 +WND4_NOT_SUPP_UPGRADE WND4_NOT_SUPP_UPGRADE wnd4_not_supp_upgrade W WN WND WND4 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 6 no 0 5 0 0 0 0 1 += 5, = = = = = BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 6 , 1 1 0 0 0 0 1 +WND4_NOT_SUPP_DOWNGRADE = wnd4_not_supp_downgrade W WN WND WND4 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 6 , 1 6 0 0 0 0 1 +WND4_CANCELLED WND4_CANCELLED wnd4_cancelled W WN WND WND4 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 6 no 0 3 0 0 0 0 1 += 7, = = = = = BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 6 , 1 1 0 0 0 0 1 +WND4_IS_DIR WND4_IS_DIR wnd4_is_dir W WN WND WND4 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 6 no 0 2 0 0 0 0 1 += 8 = = = = = BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 6 no 0 0 0 0 0 0 1 +}; }; }; } }; }; }; BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 6 ; 1 0 0 0 0 0 1 +union open_none_delegation4 union u un uni unio BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 9 /*.*/ 5 10 0 0 0 0 1 +switch (why_no_delegation4 switch s sw swi swit BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 9 () 2 8 0 0 0 0 1 +case WND4_CONTENTION: case c ca cas case BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 8 9 : 1 4 0 0 0 0 1 +bool ond_server_will_push_deleg; bool b bo boo bool BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 9 ; 1 7 0 0 0 0 1 +case WND4_RESOURCE: case c ca cas case BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 8 9 : 1 4 0 0 0 0 1 +bool ond_server_will_signal_avail; bool b bo boo bool BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 9 ; 1 7 0 0 0 0 1 +default: default: default: d de def defa BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 9 : 1 1 0 0 0 0 1 +void; void; void; v vo voi void BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 9 ; 1 1 0 0 0 0 1 +}; }; }; } }; }; }; BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 9 ; 1 0 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 8 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 11 , 1 10 0 0 0 0 0 +[Page 466] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 8 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 8 0 no 0 4 0 0 0 0 1 +union open_delegation4 union u un uni unio BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 0 no 0 4 0 0 0 0 1 +switch (open_delegation_type4 switch s sw swi swit BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 0 () 2 10 0 0 0 0 1 +case OPEN_DELEGATE_NONE: case c ca cas case BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 8 0 : 1 5 0 0 0 0 1 +void; void; void; v vo voi void BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 0 ; 1 1 0 0 0 0 1 +case OPEN_DELEGATE_READ: case c ca cas case BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 8 0 : 1 5 0 0 0 0 1 +open_read_delegation4 read; open_read_delegation4 o op ope open BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 0 ; 1 5 0 0 0 0 1 +case OPEN_DELEGATE_WRITE: case c ca cas case BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 8 0 : 1 5 0 0 0 0 1 +open_write_delegation4 write; open_write_delegation4 o op ope open BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 0 ; 1 6 0 0 0 0 1 +case OPEN_DELEGATE_NONE_EXT: case c ca cas case BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 8 0 :/*.*/ 6 9 0 0 0 0 1 +open_none_delegation4 od_whynone; open_none_delegation4 o op ope open BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 0 ; 1 6 0 0 0 0 1 +}; }; }; } }; }; }; BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 0 ; 1 0 0 0 0 0 1 +/* /* /* / /* /* /* BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 2 /* 2 2 0 0 0 0 1 +* Result * * * * * BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 2 * 1 10 0 0 0 0 1 +*/ */ */ * */ */ */ BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 2 */ 2 2 0 0 0 0 1 +/* Client /* / /* /* /* BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 3 /**/ 4 5 0 0 0 0 1 +const OPEN4_RESULT_CONFIRM const c co con cons BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 3 no 0 5 0 0 0 0 1 += 0x00000002; = = = = = BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 3 ; 1 2 0 0 0 0 1 +/* Type /* / /* /* /* BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 3 /**/ 4 9 0 0 0 0 1 +const OPEN4_RESULT_LOCKTYPE_POSIX const c co con cons BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 3 ; 1 8 0 0 0 0 1 +/* Server /* / /* /* /* BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 3 /**/ 4 10 0 0 0 0 1 +const OPEN4_RESULT_PRESERVE_UNLINKED const c co con cons BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 3 ; 1 9 0 0 0 0 1 +/* /* /* / /* /* /* BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 5 /* 2 0 0 0 0 0 1 +* Server * * * * * BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 5 * 1 8 0 0 0 0 1 +* derived * * * * * BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 5 * 1 5 0 0 0 0 1 +*/ */ */ * */ */ */ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 5 */ 2 0 0 0 0 0 1 +const OPEN4_RESULT_MAY_NOTIFY_LOCK const c co con cons BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 5 ; 1 10 0 0 0 0 1 +struct OPEN4resok struct s st str stru BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 6 no 0 4 0 0 0 0 1 +stateid4 stateid4 stateid4 s st sta stat BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 6 no 0 1 0 0 0 0 1 +stateid; stateid; stateid; s st sta stat BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 6 ; 1 1 0 0 0 0 1 +/* Stateid /* / /* /* /* BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 6 /**/ 4 4 0 0 0 0 1 +change_info4 change_info4 change_info4 c ch cha chan BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 6 no 0 2 0 0 0 0 1 +cinfo; cinfo; cinfo; c ci cin cinf BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 6 ; 1 1 0 0 0 0 1 +/* Directory /* / /* /* /* BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 6 /**/ 4 5 0 0 0 0 1 +uint32_t uint32_t uint32_t u ui uin uint BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 6 no 0 1 0 0 0 0 1 +rflags; rflags; rflags; r rf rfl rfla BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 6 ; 1 1 0 0 0 0 1 +/* Result /* / /* /* /* BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 6 /**/ 4 3 0 0 0 0 1 +bitmap4 bitmap4 bitmap4 b bi bit bitm BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 6 no 0 1 0 0 0 0 1 +attrset; attrset; attrset; a at att attr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 6 ; 1 1 0 0 0 0 1 +/* attribute /* / /* /* /* BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 6 /**/ 4 6 0 0 0 0 1 +open_delegation4 delegation; open_delegation4 o op ope open BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 6 ;/* 3 10 0 0 0 0 1 +delegation */ delegation d de del dele BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 6 */ 2 2 0 0 0 0 1 +}; }; }; } }; }; }; BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 6 ; 1 0 0 0 0 0 1 +union OPEN4res union u un uni unio BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 9 () 2 10 0 0 0 0 1 +case NFS4_OK: case c ca cas case BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 8 9 : 1 3 0 0 0 0 1 +/* New /* / /* /* /* BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 9 /*:*/ 5 8 0 0 0 0 1 +OPEN4resok OPEN4resok open4resok O OP OPE OPEN BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 9 no 0 2 0 0 0 0 1 +resok4; resok4; resok4; r re res reso BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 9 ; 1 1 0 0 0 0 1 +default: default: default: d de def defa BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 9 : 1 2 0 0 0 0 1 +void; void; void; v vo voi void BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 9 ; 1 1 0 0 0 0 1 +}; }; }; } }; }; }; BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 9 ; 1 0 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 8 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 11 , 1 10 0 0 0 0 0 +[Page 467] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 8 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 8 0 no 0 4 0 0 0 0 1 +18.16.3. DESCRIPTION 18.16.3. 1 18 18. 18.1 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 0 ... 3 10 0 0 0 0 1 +The OPEN the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 0 no 0 9 0 0 0 0 1 +provided name provided p pr pro prov BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 0 . 1 9 0 0 0 0 1 +is provided, is i is is is BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 0 ,. 2 9 0 0 0 0 1 +Specification of specification S Sp Spe Spec BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 0 , 1 9 0 0 0 0 1 +method of method m me met meth BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 0 . 1 8 0 0 0 0 1 +parameter consists parameter p pa par para BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 0 (), 3 9 0 0 0 0 1 +switches on switches s sw swi swit BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 0 (). 3 9 0 0 0 0 1 +If OPEN4_CREATE if I If If If BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 0 , 1 9 0 0 0 0 1 +(data type (data ( (d (da (dat BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 0 (): 3 9 0 0 0 0 1 +UNCHECKED4, GUARDED4, unchecked4, U UN UNC UNCH BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 0 ,,,. 4 9 0 0 0 0 1 +OPEN4_CREATE, then open4_create, O OP OPE OPEN BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 0 , 1 9 0 0 0 0 1 +CLAIM_NULL, CLAIM_DELEGATE_CUR, claim_null, C CL CLA CLAI BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 0 ,,, 3 10 0 0 0 0 1 +claim methods claim c cl cla clai BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 0 . 1 7 0 0 0 0 1 +Upon success upon U Up Upo Upon BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 4 (), 3 10 0 0 0 0 1 +filehandle is filehandle f fi fil file BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 4 . 1 9 0 0 0 0 1 +If the if I If If If BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 4 , 1 10 0 0 0 0 1 +then create then t th the then BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 4 . 1 9 0 0 0 0 1 +create of create c cr cre crea BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 4 . 1 9 0 0 0 0 1 +EXCLUSIVE4 or exclusive4 E EX EXC EXCL BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 4 no 0 9 0 0 0 0 1 +attribute directory, attribute a at att attr BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 4 ,. 2 7 0 0 0 0 1 +UNCHECKED4 means unchecked4 U UN UNC UNCH BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 6 no 0 9 0 0 0 0 1 +name does name n na nam name BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 6 no 0 10 0 0 0 0 1 +name is name n na nam name BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 6 ., 2 9 0 0 0 0 1 +the initial the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 6 . 1 9 0 0 0 0 1 +may include may m ma may may BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 1 0 0 8 6 . 1 9 0 0 0 0 1 +UNCHECKED4 create unchecked4 U UN UNC UNCH BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 6 , 1 8 0 0 0 0 1 +specified by specified s sp spe spec BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 6 , 1 9 0 0 0 0 1 +specifies the specifies s sp spe spec BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 6 , 1 9 0 0 0 0 1 +is truncated. is i is is is BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 6 . 1 2 0 0 0 0 1 +If GUARDED4 if I If If If BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 8 , 1 9 0 0 0 0 1 +duplicate object duplicate d du dup dupl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 8 . 1 8 0 0 0 0 1 +duplicate exists, duplicate d du dup dupl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 8 ,. 2 10 0 0 0 0 1 +exist, the exist, e ex exi exis BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 8 ,. 2 8 0 0 0 0 1 +For the for F Fo For For BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 9 , 1 9 0 0 0 0 1 +successful, the successful, s su suc succ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 9 , 1 10 0 0 0 0 1 +signifying which signifying s si sig sign BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 9 . 1 9 0 0 0 0 1 +EXCLUSIVE4_1 and exclusive4_1 E EX EXC EXCL BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 10 no 0 9 0 0 0 0 1 +exclusive creation exclusive e ex exc excl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 10 , 1 10 0 0 0 0 1 +creation of creation c cr cre crea BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 10 . 1 9 0 0 0 0 1 +a duplicate a a a a a BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 1 0 0 0 0 0 8 10 ., 2 10 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 8 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 11 , 1 10 0 0 0 0 0 +[Page 468] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 8 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 8 0 no 0 4 0 0 0 0 1 +creates the creates c cr cre crea BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 0 . 1 9 0 0 0 0 1 +object does object o ob obj obje BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 0 no 0 10 0 0 0 0 1 +verifier, the verifier, v ve ver veri BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 0 , 1 9 0 0 0 0 1 +object. If object. o ob obj obje BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 0 ., 2 9 0 0 0 0 1 +NFS4ERR_EXIST is nfs4err_exist N NF NFS NFS4 BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 0 . 1 3 0 0 0 0 1 +If using if I If If If BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 2 , 1 9 0 0 0 0 1 +exclusive create exclusive e ex exc excl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 2 , 1 9 0 0 0 0 1 +it used it i it it it BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 2 no 0 10 0 0 0 0 1 +returned in returned r re ret retu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 2 .,, 3 8 0 0 0 0 1 +EXCLUSIVE4_1, EXCLUSIVE4 exclusive4_1, E EX EXC EXCL BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 2 , 1 9 0 0 0 0 1 +at file at a at at at BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 2 ,, 2 9 0 0 0 0 1 +client MUST client c cl cli clie BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 2 . 1 9 0 0 0 0 1 +In NFSv4.1, in I In In In BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 8 5 .,. 3 10 0 0 0 0 1 +Unlike EXCLUSIVE4, unlike U Un Unl Unli BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 5 , 1 9 0 0 0 0 1 +case, but case, c ca cas case BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 5 , 1 10 0 0 0 0 1 +to store to t to to to BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 5 , 1 9 0 0 0 0 1 +than the than t th tha than BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 5 . 1 9 0 0 0 0 1 +for EXCLUSIVE4_1 for f fo for for BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 5 no 0 8 0 0 0 0 1 +(Section 5.8.1.14) (section ( (S (Se (Sec BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 5 (...). 6 9 0 0 0 0 1 +cva_attrs an cva_attrs c cv cva cva_ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 5 , 1 10 0 0 0 0 1 +MUST return must M MU MUS MUST BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 8 5 .,, 3 9 0 0 0 0 1 +both which both b bo bot both BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 5 no 0 8 0 0 0 0 1 +attributes the attributes a at att attr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 5 . 1 9 0 0 0 0 1 +Section 18.16.4, section S Se Sec Sect BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 5 ..,. 4 9 0 0 0 0 1 +attrset to attrset a at att attr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 5 no 0 8 0 0 0 0 1 +verifier. verifier. verifier. v ve ver veri BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 5 . 1 1 0 0 0 0 1 +With the with W Wi Wit With BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 10 , 1 8 0 0 0 0 1 +conditions EXCLUSIVE4 conditions c co con cond BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 10 no 0 10 0 0 0 0 1 +the server. the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 10 . 1 9 0 0 0 0 1 +mandated exclusive mandated m ma man mand BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 10 .: 2 9 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 8 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 11 , 1 10 0 0 0 0 0 +[Page 469] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 8 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 8 0 no 0 4 0 0 0 0 1 +Required methods required R Re Req Requ BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 0 no 0 10 0 0 0 0 1 ++----------------+-----------+---------------+----------------------+ +----------------+-----------+---------------+----------------------+ +----------------+-----------+---------------+----------------------+ + +- +-- +--- BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 0 ---------------------------------------------------------------- 64 10 0 0 0 0 1 +| Persistent | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 1 0 0 0 0 1 +| Server | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 1 0 0 0 0 1 +| Server | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 1 0 0 0 0 1 +| Client | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 2 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 0 0 0 0 0 1 +| Reply | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 2 0 0 0 0 1 +| Supports | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 3 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 0 0 0 0 0 1 +| Enabled | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 1 0 0 0 0 1 +| pNFS | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 0 0 0 0 0 1 ++----------------+-----------+---------------+----------------------+ +----------------+-----------+---------------+----------------------+ +----------------+-----------+---------------+----------------------+ + +- +-- +--- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 0 ---------------------------------------------------------------- 64 10 0 0 0 0 1 +| no | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 0 0 0 0 0 1 +| no | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 0 0 0 0 0 1 +| EXCLUSIVE4_1 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 4 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 0 0 0 0 0 1 +| and | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 0 0 0 0 0 1 +| (SHOULD) | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 () 2 2 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 0 0 0 0 0 1 +| EXCLUSIVE4 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 1 0 0 0 0 1 +| EXCLUSIVE4 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 ( 1 3 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 0 0 0 0 0 1 +| NOT) | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 ) 1 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 0 0 0 0 0 1 +| no | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 0 0 0 0 0 1 +| yes | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 0 0 0 0 0 1 +| EXCLUSIVE4_1 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 4 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 0 0 0 0 0 1 +| yes | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 0 0 0 0 0 1 +| no | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 0 0 0 0 0 1 +| GUARDED4 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 1 0 0 0 0 1 +| GUARDED4 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 0 0 0 0 0 1 +| yes | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 0 0 0 0 0 1 +| yes | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 0 0 0 0 0 1 +| GUARDED4 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 1 0 0 0 0 1 +| GUARDED4 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 0 0 0 0 0 1 ++----------------+-----------+---------------+----------------------+ +----------------+-----------+---------------+----------------------+ +----------------+-----------+---------------+----------------------+ + +- +-- +--- BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 0 ---------------------------------------------------------------- 64 10 0 0 0 0 1 +Table 10 table T Ta Tab Tabl BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 5 no 0 10 0 0 0 0 1 +If CREATE_SESSION4_FLAG_PERSIST if I If If If BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 5 no 0 8 0 0 0 0 1 +CREATE_SESSION, the create_session, C CR CRE CREA BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 5 ,(.). 5 9 0 0 0 0 1 +If the if I If If If BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 5 no 0 9 0 0 0 0 1 +EXCHANGE_ID, the exchange_id, E EX EXC EXCH BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 5 ,(.). 5 10 0 0 0 0 1 +client attempts client c cl cli clie BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 5 , 1 9 0 0 0 0 1 +session derived session s se ses sess BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 5 , 1 9 0 0 0 0 1 +server MUST server s se ser serv BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 5 . 1 4 0 0 0 0 1 +With persistent with W Wi Wit With BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 7 , 1 9 0 0 0 0 1 +achievable via achievable a ac ach achi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 7 , 1 10 0 0 0 0 1 +be used. be b be be be BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 7 ., 2 9 0 0 0 0 1 +not be not n no not not BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 7 . 1 9 0 0 0 0 1 +and GUARDED and a an and and BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 7 no 0 9 0 0 0 0 1 +setting of setting s se set sett BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 7 . 1 3 0 0 0 0 1 +For the for F Fo For For BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 8 , 1 10 0 0 0 0 1 +in cinfo. in i in in in BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 8 8 ., 2 9 0 0 0 0 1 +server will server s se ser serv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 8 no 0 9 0 0 0 0 1 +obtained atomically obtained o ob obt obta BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 8 . 1 7 0 0 0 0 1 +The OPEN the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 9 no 0 10 0 0 0 0 1 +with the with w wi wit with BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 9 no 0 9 0 0 0 0 1 +arguments. The arguments. a ar arg argu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 9 . 1 9 0 0 0 0 1 +and share_deny and a an and and BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 9 . 1 9 0 0 0 0 1 +SHAREs (i.e., shares S SH SHA SHAR BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 9 (..,), 6 6 0 0 0 0 1 +OPEN4_SHARE_DENY_NONE. In open4_share_deny_none. O OP OPE OPEN BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 9 . 1 9 0 0 0 0 1 +reservation that reservation r re res rese BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 9 , 1 10 0 0 0 0 1 +the error the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 9 . 1 9 0 0 0 0 1 +semantics, see semantics, s se sem sema BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 9 ,.. 3 4 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 8 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 11 , 1 10 0 0 0 0 0 +[Page 470] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 8 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 8 0 no 0 4 0 0 0 0 1 +For each for F Fo For For BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 0 , 1 10 0 0 0 0 1 +OPEN argument. open O OP OPE OPEN BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 8 0 ., 2 9 0 0 0 0 1 +contains a contains c co con cont BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 0 . 1 9 0 0 0 0 1 +client can client c cl cli clie BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 0 no 0 9 0 0 0 0 1 +ignore it. ignore i ig ign igno BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 0 ., 2 9 0 0 0 0 1 +session ID session s se ses sess BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 0 . 1 8 0 0 0 0 1 +The "seqid" the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 5 ""., 4 10 0 0 0 0 1 +be any be b be be be BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 5 . 1 6 0 0 0 0 1 +In the in I In In In BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 8 6 no 0 8 0 0 0 0 1 +failure, the failure, f fa fai fail BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 6 , 1 10 0 0 0 0 1 +the request the t th the the BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 6 . 1 7 0 0 0 0 1 +The "claim" the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 9 "" 2 10 0 0 0 0 1 +be opened be b be be be BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 9 no 0 8 0 0 0 0 1 +possess. There possess. p po pos poss BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 9 .: 2 7 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 8 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 11 , 1 10 0 0 0 0 0 +[Page 471] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 8 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 8 0 no 0 4 0 0 0 0 1 ++----------------------+--------------------------------------------+ +----------------------+--------------------------------------------+ +----------------------+--------------------------------------------+ + +- +-- +--- BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 0 ------------------------------------------------------------------ 66 10 0 0 0 0 1 +| open | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 1 0 0 0 0 1 +| description | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 2 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 0 0 0 0 0 1 ++----------------------+--------------------------------------------+ +----------------------+--------------------------------------------+ +----------------------+--------------------------------------------+ + +- +-- +--- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 0 ------------------------------------------------------------------ 66 10 0 0 0 0 1 +| CLAIM_NULL, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 ,, 2 10 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 0 0 0 0 0 1 +| and | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 6 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 0 0 0 0 0 1 +| with | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 . 1 5 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 0 0 0 0 0 1 +| CLAIM_NULL, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 , 1 6 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 0 0 0 0 0 1 +| current | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 5 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 0 0 0 0 0 1 +| component | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 .( 2 5 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 0 0 0 0 0 1 +| NFSv4.1), | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 .), 3 6 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 0 0 0 0 0 1 +| the | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 . 1 3 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 0 0 0 0 0 1 +| CLAIM_PREVIOUS | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 2 0 0 0 0 1 +| The | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 6 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 0 0 0 0 0 1 +| for | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 5 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 0 0 0 0 0 1 +| server | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 . 1 5 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 0 0 0 0 0 1 +| server | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 4 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 0 0 0 0 0 1 +| filehandles; | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 ; 1 6 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 0 0 0 0 0 1 +| file | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 . 1 4 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 0 0 0 0 0 1 +| CLAIM_DELEGATE_CUR, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 , 1 9 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 0 0 0 0 0 1 +| CLAIM_DELEG_CUR_FH | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 3 0 0 0 0 1 +| OPEN | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 ., 2 6 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 0 0 0 0 0 1 +| this | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 5 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 0 0 0 0 0 1 +| delegation. | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 ., 2 6 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 0 0 0 0 0 1 +| file | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 5 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 0 0 0 0 0 1 +| filehandle | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 5 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 0 0 0 0 0 1 +| name. | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 .( 2 5 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 0 0 0 0 0 1 +| NFSv4.1), | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 .), 3 6 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 0 0 0 0 0 1 +| the | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 . 1 3 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 0 0 0 0 0 1 +| CLAIM_DELEGATE_PREV, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 , 1 8 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 0 0 0 0 0 1 +| CLAIM_DELEG_PREV_FH | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 ; 1 9 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 0 0 0 0 0 1 +| used | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 . 1 6 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 0 0 0 0 0 1 +| MAY | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 / 1 5 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 0 0 0 0 0 1 +| CLAIM_DELEG_PREV_FH | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 (.). 4 6 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 0 0 0 0 0 1 +| it | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 , 1 5 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 0 0 0 0 0 1 +| CREATE_SESSION | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 5 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 0 0 0 0 0 1 +| client's | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 ', 2 6 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 0 0 0 0 0 1 +| MUST | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 . 1 5 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 0 0 0 0 0 1 ++----------------------+--------------------------------------------+ +----------------------+--------------------------------------------+ +----------------------+--------------------------------------------+ + +- +-- +--- BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 0 ------------------------------------------------------------------ 66 10 0 0 0 0 1 +For OPEN for F Fo For For BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 9 , 1 10 0 0 0 0 1 +server returns server s se ser serv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 9 . 1 9 0 0 0 0 1 +are exceptions: are a ar are are BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 9 : 1 2 0 0 0 0 1 +o OPEN o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 8 10 no 0 10 0 0 0 0 1 +to reclaiming to t to to to BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 10 no 0 9 0 0 0 0 1 +valid during valid v va val vali BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 10 . 1 4 0 0 0 0 1 +o OPEN o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 8 11 no 0 10 0 0 0 0 1 +CLAIM_DELEG_CUR_FH are claim_deleg_cur_fh C CL CLA CLAI BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 11 no 0 9 0 0 0 0 1 +period. Since period. p pe per peri BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 11 . 1 8 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 8 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 11 , 1 10 0 0 0 0 0 +[Page 472] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 8 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 8 0 no 0 4 0 0 0 0 1 +subordinate to subordinate s su sub subo BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 0 no 0 10 0 0 0 0 1 +reclaimed by reclaimed r re rec recl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 0 , 1 8 0 0 0 0 1 +NFS4ERR_GRACE when nfs4err_grace N NF NFS NFS4 BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 0 . 1 9 0 0 0 0 1 +For any for F Fo For For BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 1 ,, 2 10 0 0 0 0 1 +allows further allows a al all allo BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 1 no 0 9 0 0 0 0 1 +as described as a as as as BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 1 .. 2 9 0 0 0 0 1 +server to server s se ser serv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 1 . 1 9 0 0 0 0 1 +will or will w wi wil will BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 8 1 . 1 9 0 0 0 0 1 +always be always a al alw alwa BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 1 . 1 9 0 0 0 0 1 +reclaim (CLAIM_PREVIOUS) reclaim r re rec recl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 1 (),. 4 10 0 0 0 0 1 +In this in I In In In BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 8 1 ,, 2 9 0 0 0 0 1 +may specify may m ma may may BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 1 0 0 8 1 . 1 8 0 0 0 0 1 +The rflags the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 3 no 0 10 0 0 0 0 1 +information governing information i in inf info BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 3 . 1 8 0 0 0 0 1 +o OPEN4_RESULT_CONFIRM o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 8 4 no 0 10 0 0 0 0 1 +NFSv4.1 server. nfsv4.1 N NF NFS NFSv BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 4 .. 2 2 0 0 0 0 1 +o OPEN4_RESULT_LOCKTYPE_POSIX o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 8 4 '- 2 10 0 0 0 0 1 +locking behavior locking l lo loc lock BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 4 no 0 8 0 0 0 0 1 +techniques [21]. techniques t te tec tech BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 4 [].,- 5 9 0 0 0 0 1 +range locking range r ra ran rang BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 4 - 1 9 0 0 0 0 1 +locking management. locking l lo loc lock BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 4 . 1 2 0 0 0 0 1 +o OPEN4_RESULT_PRESERVE_UNLINKED o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 8 6 no 0 9 0 0 0 0 1 +preserve the preserve p pr pre pres BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 6 () 2 10 0 0 0 0 1 +the file the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 6 ., 2 9 0 0 0 0 1 +to preserve to t to to to BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 6 no 0 8 0 0 0 0 1 +restart, thereby restart, r re res rest BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 6 , 1 9 0 0 0 0 1 +open. open. open. o op ope open BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 6 . 1 0 0 0 0 0 1 +o OPEN4_RESULT_MAY_NOTIFY_LOCK o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 8 7 no 0 10 0 0 0 0 1 +CB_NOTIFY_LOCK callbacks cb_notify_lock C CB CB_ CB_N BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 7 . 1 9 0 0 0 0 1 +hint only, hint h hi hin hint BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 7 ,. 2 7 0 0 0 0 1 +If the if I If If If BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 8 ,. 2 9 0 0 0 0 1 +The component the T Th The The BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 8 -,, 3 10 0 0 0 0 1 +and name and a an and and BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 8 ... 3 8 0 0 0 0 1 +When an when W Wh Whe When BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 9 - 1 9 0 0 0 0 1 +resulting filehandle resulting r re res resu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 9 ,"" 3 9 0 0 0 0 1 +share and share s sh sha shar BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 9 . 1 9 0 0 0 0 1 +case, only case, c ca cas case BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 9 ,, 2 9 0 0 0 0 1 +were completed. were w we wer were BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 9 ., 2 8 0 0 0 0 1 +reservations for reservations r re res rese BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 9 , 1 9 0 0 0 0 1 +for the for f fo for for BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 9 -., 3 10 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 8 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 11 , 1 10 0 0 0 0 0 +[Page 473] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 8 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 8 0 no 0 4 0 0 0 0 1 +stateid returned stateid s st sta stat BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 0 "" 2 9 0 0 0 0 1 +previous open previous p pr pre prev BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 0 "" 2 10 0 0 0 0 1 +change status change c ch cha chan BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 0 . 1 5 0 0 0 0 1 +If the if I If If If BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 1 no 0 10 0 0 0 0 1 +read-only mode read-only r re rea read BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 1 - 1 9 0 0 0 0 1 +ACCESS_BOTH, the access_both, A AC ACC ACCE BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 1 ,- 2 10 0 0 0 0 1 +only file only o on onl only BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 1 . 1 2 0 0 0 0 1 +As with as A As As As BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 3 ,, 2 10 0 0 0 0 1 +ACE, group, ace, A AC ACE ACE, BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 8 3 ,, 2 9 0 0 0 0 1 +and supported and a an and and BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 3 '. 2 9 0 0 0 0 1 +EXCLUSIVE4 createmode, exclusive4 E EX EXC EXCL BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 3 ,, 2 9 0 0 0 0 1 +calls do calls c ca cal call BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 3 ., 2 8 0 0 0 0 1 +createattrs (UNCHECKED4 createattrs c cr cre crea BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 3 ()() 4 9 0 0 0 0 1 +specified, and specified, s sp spe spec BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 3 ,,, 3 9 0 0 0 0 1 +principal in principal p pr pri prin BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 3 ' 1 9 0 0 0 0 1 +to create to t to to to BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 3 ,. 2 8 0 0 0 0 1 +In the in I In In In BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 8 7 (.., 4 8 0 0 0 0 1 +truncation) and truncation) t tr tru trun BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 7 ), 2 10 0 0 0 0 1 +are left are a ar are are BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 7 . 1 5 0 0 0 0 1 +NFSv4.1 gives nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 9 . 1 9 0 0 0 0 1 +delegations via delegations d de del dele BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 9 no 0 10 0 0 0 0 1 +OPEN4args: OPEN4args: open4args: O OP OPE OPEN BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 9 : 1 1 0 0 0 0 1 +OPEN4_SHARE_ACCESS_WANT_READ_DELEG OPEN4_SHARE_ACCESS_WANT_READ_DELEG open4_share_access_want_read_deleg O OP OPE OPEN BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 9 no 0 10 0 0 0 0 1 +OPEN4_SHARE_ACCESS_WANT_WRITE_DELEG OPEN4_SHARE_ACCESS_WANT_WRITE_DELEG open4_share_access_want_write_deleg O OP OPE OPEN BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 10 no 0 10 0 0 0 0 1 +OPEN4_SHARE_ACCESS_WANT_ANY_DELEG OPEN4_SHARE_ACCESS_WANT_ANY_DELEG open4_share_access_want_any_deleg O OP OPE OPEN BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 10 no 0 10 0 0 0 0 1 +OPEN4_SHARE_ACCESS_WANT_NO_DELEG OPEN4_SHARE_ACCESS_WANT_NO_DELEG open4_share_access_want_no_deleg O OP OPE OPEN BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 10 no 0 10 0 0 0 0 1 +OPEN4_SHARE_ACCESS_WANT_CANCEL OPEN4_SHARE_ACCESS_WANT_CANCEL open4_share_access_want_cancel O OP OPE OPEN BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 10 no 0 10 0 0 0 0 1 +OPEN4_SHARE_ACCESS_WANT_SIGNAL_DELEG_WHEN_RESRC_AVAIL OPEN4_SHARE_ACCESS_WANT_SIGNAL_DELEG_WHEN_RESRC_AVAIL open4_share_access_want_signal_deleg_when_resrc_avail O OP OPE OPEN BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 10 no 0 10 0 0 0 0 1 +OPEN4_SHARE_ACCESS_WANT_PUSH_DELEG_WHEN_UNCONTENDED OPEN4_SHARE_ACCESS_WANT_PUSH_DELEG_WHEN_UNCONTENDED open4_share_access_want_push_deleg_when_uncontended O OP OPE OPEN BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 10 no 0 10 0 0 0 0 1 +If (share_access if I If If If BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 10 (), 3 10 0 0 0 0 1 +then the then t th the then BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 10 : 1 8 0 0 0 0 1 +OPEN4_SHARE_ACCESS_WANT_READ_DELEG OPEN4_SHARE_ACCESS_WANT_READ_DELEG open4_share_access_want_read_deleg O OP OPE OPEN BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 11 no 0 10 0 0 0 0 1 +OPEN4_SHARE_ACCESS_WANT_WRITE_DELEG OPEN4_SHARE_ACCESS_WANT_WRITE_DELEG open4_share_access_want_write_deleg O OP OPE OPEN BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 11 no 0 10 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 8 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 11 , 1 10 0 0 0 0 0 +[Page 474] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 8 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 8 0 no 0 4 0 0 0 0 1 +OPEN4_SHARE_ACCESS_WANT_ANY_DELEG OPEN4_SHARE_ACCESS_WANT_ANY_DELEG open4_share_access_want_any_deleg O OP OPE OPEN BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 0 no 0 10 0 0 0 0 1 +OPEN4_SHARE_ACCESS_WANT_NO_DELEG OPEN4_SHARE_ACCESS_WANT_NO_DELEG open4_share_access_want_no_deleg O OP OPE OPEN BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 0 no 0 10 0 0 0 0 1 +OPEN4_SHARE_ACCESS_WANT_CANCEL OPEN4_SHARE_ACCESS_WANT_CANCEL open4_share_access_want_cancel O OP OPE OPEN BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 0 no 0 10 0 0 0 0 1 +Otherwise, the otherwise, O Ot Oth Othe BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 0 ,- 2 10 0 0 0 0 1 +for a for f fo for for BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 0 , 1 9 0 0 0 0 1 +in the in i in in in BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 8 0 . 1 3 0 0 0 0 1 +If the if I If If If BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 2 no 0 10 0 0 0 0 1 +or more or o or or or BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 2 , 1 9 0 0 0 0 1 +return a return r re ret retu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 2 , 1 8 0 0 0 0 1 +OPEN_DELEGATE_NONE_EXT. The open_delegate_none_ext. O OP OPE OPEN BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 2 . 1 10 0 0 0 0 1 +no delegation no n no no no BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 2 : 1 6 0 0 0 0 1 +WND4_NOT_WANTED The wnd4_not_wanted W WN WND WND4 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 4 no 0 10 0 0 0 0 1 +OPEN4_SHARE_ACCESS_WANT_NO_DELEG. OPEN4_SHARE_ACCESS_WANT_NO_DELEG. open4_share_access_want_no_deleg. O OP OPE OPEN BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 4 . 1 9 0 0 0 0 1 +WND4_CONTENTION There wnd4_contention W WN WND WND4 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 5 no 0 10 0 0 0 0 1 +file. file. file. f fi fil file BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 5 . 1 0 0 0 0 0 1 +WND4_RESOURCE Resource wnd4_resource W WN WND WND4 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 5 no 0 10 0 0 0 0 1 +a delegation. a a a a a BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 1 0 0 0 0 0 8 5 . 1 2 0 0 0 0 1 +WND4_NOT_SUPP_FTYPE The wnd4_not_supp_ftype W WN WND WND4 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 6 no 0 10 0 0 0 0 1 +file type. file f fi fil file BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 6 . 1 1 0 0 0 0 1 +WND4_WRITE_DELEG_NOT_SUPP_FTYPE The wnd4_write_deleg_not_supp_ftype W WN WND WND4 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 6 no 0 10 0 0 0 0 1 +OPEN_DELEGATE_WRITE delegations open_delegate_write O OP OPE OPEN BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 6 . 1 8 0 0 0 0 1 +WND4_NOT_SUPP_UPGRADE The wnd4_not_supp_upgrade W WN WND WND4 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 7 no 0 10 0 0 0 0 1 +an OPEN_DELEGATE_READ an a an an an BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 8 7 no 0 8 0 0 0 0 1 +delegation. delegation. delegation. d de del dele BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 7 . 1 1 0 0 0 0 1 +WND4_NOT_SUPP_DOWNGRADE The wnd4_not_supp_downgrade W WN WND WND4 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 8 no 0 10 0 0 0 0 1 +of an of o of of of BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 8 no 0 8 0 0 0 0 1 +delegation. delegation. delegation. d de del dele BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 8 . 1 1 0 0 0 0 1 +WND4_CANCELED The wnd4_canceled W WN WND WND4 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 9 no 0 10 0 0 0 0 1 +and now and a an and and BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 9 "". 3 8 0 0 0 0 1 +WND4_IS_DIR The wnd4_is_dir W WN WND WND4 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 10 , 1 10 0 0 0 0 1 +operation is operation o op ope oper BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 10 , 1 9 0 0 0 0 1 +delegations on delegations d de del dele BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 10 . 1 4 0 0 0 0 1 +OPEN4_SHARE_ACCESS_WANT_READ_DELEG, OPEN4_SHARE_ACCESS_WANT_READ_DELEG, open4_share_access_want_read_deleg, O OP OPE OPEN BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 11 , 1 9 0 0 0 0 1 +OPEN_SHARE_ACCESS_WANT_WRITE_DELEG, or open_share_access_want_write_deleg, O OP OPE OPEN BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 11 , 1 10 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 8 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 11 , 1 10 0 0 0 0 0 +[Page 475] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 8 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 8 0 no 0 4 0 0 0 0 1 +OPEN_SHARE_ACCESS_WANT_ANY_DELEG mean, open_share_access_want_any_deleg O OP OPE OPEN BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 0 ,, 2 10 0 0 0 0 1 +an OPEN_DELEGATE_READ, an a an an an BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 8 0 ,, 2 8 0 0 0 0 1 +regardless which regardless r re reg rega BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 0 , 1 6 0 0 0 0 1 +OPEN4_SHARE_ACCESS_WRITE, or open4_share_access_write, O OP OPE OPEN BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 0 ,. 2 9 0 0 0 0 1 +client has client c cl cli clie BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 0 no 0 10 0 0 0 0 1 +OPEN_DELEGATE_WRITE delegation, open_delegate_write O OP OPE OPEN BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 0 , 1 9 0 0 0 0 1 +upgrade of upgrade u up upg upgr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 0 no 0 7 0 0 0 0 1 +OPEN_DELEGATE_WRITE delegation. open_delegate_write O OP OPE OPEN BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 0 . 1 7 0 0 0 0 1 +OPEN_DELEGATE_WRITE delegation open_delegate_write O OP OPE OPEN BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 0 no 0 8 0 0 0 0 1 +OPEN_DELEGATE_READ delegation, open_delegate_read O OP OPE OPEN BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 0 , 1 9 0 0 0 0 1 +downgrade to downgrade d do dow down BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 0 . 1 9 0 0 0 0 1 +atomic upgrade atomic a at ato atom BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 0 ., 2 8 0 0 0 0 1 +delegation_type of delegation_type d de del dele BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 0 no 0 9 0 0 0 0 1 +different from different d di dif diff BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 0 , 1 8 0 0 0 0 1 +indicates successful indicates i in ind indi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 0 . 1 9 0 0 0 0 1 +support atomic support s su sup supp BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 8 0 , 1 9 0 0 0 0 1 +set to set s se set set BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 0 . 1 8 0 0 0 0 1 +OPEN4_SHARE_ACCESS_WANT_NO_DELEG means open4_share_access_want_no_deleg O OP OPE OPEN BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 5 no 0 10 0 0 0 0 1 +delegation. delegation. delegation. d de del dele BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 5 . 1 1 0 0 0 0 1 +OPEN4_SHARE_ACCESS_WANT_CANCEL means open4_share_access_want_cancel O OP OPE OPEN BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 6 no 0 8 0 0 0 0 1 +delegation and delegation d de del dele BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 6 "" 2 10 0 0 0 0 1 +delegation. delegation. delegation. d de del dele BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 6 . 1 1 0 0 0 0 1 +The client the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 6 no 0 5 0 0 0 0 1 +OPEN4_SHARE_ACCESS_WANT_SIGNAL_DELEG_WHEN_RESRC_AVAIL and open4_share_access_want_signal_deleg_when_resrc_avail O OP OPE OPEN BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 6 no 0 8 0 0 0 0 1 +OPEN4_SHARE_ACCESS_WANT_PUSH_DELEG_WHEN_UNCONTENDED. However, open4_share_access_want_push_deleg_when_uncontended. O OP OPE OPEN BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 6 ., 2 10 0 0 0 0 1 +will have will w wi wil will BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 8 6 : 1 7 0 0 0 0 1 +o OPEN4_SHARE_ACCESS_WANT_READ_DELEG o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 8 7 no 0 10 0 0 0 0 1 +o OPEN4_SHARE_ACCESS_WANT_WRITE_DELEG o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 8 7 no 0 10 0 0 0 0 1 +o OPEN4_SHARE_ACCESS_WANT_ANY_DELEG o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 8 7 no 0 10 0 0 0 0 1 +If the if I If If If BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 8 no 0 3 0 0 0 0 1 +OPEN4_SHARE_ACCESS_WANT_SIGNAL_DELEG_WHEN_RESRC_AVAIL, then open4_share_access_want_signal_deleg_when_resrc_avail, O OP OPE OPEN BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 8 , 1 10 0 0 0 0 1 +to register to t to to to BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 8 "", 3 9 0 0 0 0 1 +do not do d do do do BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 8 . 1 8 0 0 0 0 1 +delegation due delegation d de del dele BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 8 , 1 10 0 0 0 0 1 +the client, the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 8 ,, 2 9 0 0 0 0 1 +resource limitation resource r re res reso BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 8 . 1 9 0 0 0 0 1 +client that client c cl cli clie BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 8 no 0 9 0 0 0 0 1 +operation by operation o op ope oper BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 8 no 0 7 0 0 0 0 1 +OPEN_DELEGATE_NONE_EXT, ond_why open_delegate_none_ext, O OP OPE OPEN BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 8 ,, 2 7 0 0 0 0 1 +ond_server_will_signal_avail set ond_server_will_signal_avail o on ond ond_ BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 8 . 1 6 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 8 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 11 , 1 10 0 0 0 0 0 +[Page 476] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 8 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 8 0 no 0 4 0 0 0 0 1 +ond_server_will_signal_avail is ond_server_will_signal_avail o on ond ond_ BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 0 , 1 10 0 0 0 0 1 +send a send s se sen send BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 0 . 1 6 0 0 0 0 1 +If the if I If If If BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 0 no 0 3 0 0 0 0 1 +OPEN4_SHARE_ACCESS_WANT_SIGNAL_DELEG_WHEN_UNCONTENDED, then open4_share_access_want_signal_deleg_when_uncontended, O OP OPE OPEN BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 0 , 1 10 0 0 0 0 1 +to register to t to to to BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 0 "", 3 9 0 0 0 0 1 +do not do d do do do BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 0 . 1 8 0 0 0 0 1 +delegation due delegation d de del dele BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 0 ,, 2 10 0 0 0 0 1 +via the via v vi via via BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 0 , 1 9 0 0 0 0 1 +eased. The eased. e ea eas ease BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 0 . 1 9 0 0 0 0 1 +future CB_PUSH_DELEG future f fu fut futu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 0 no 0 9 0 0 0 0 1 +results to results r re res resu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 8 0 ,, 2 9 0 0 0 0 1 +ond_server_will_push_deleg to ond_server_will_push_deleg o on ond ond_ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 0 . 1 9 0 0 0 0 1 +TRUE, the true, T TR TRU TRUE BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 8 0 ,. 2 8 0 0 0 0 1 +If the if I If If If BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 3 no 0 9 0 0 0 0 1 +file, and file, f fi fil file BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 3 , 1 10 0 0 0 0 1 +the same the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 3 ,: 2 7 0 0 0 0 1 +NFS4ERR_DELEG_ALREADY_WANTED. If nfs4err_deleg_already_wanted. N NF NFS NFS4 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 3 . 1 9 0 0 0 0 1 +different type different d di dif diff BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 3 , 1 9 0 0 0 0 1 +the existing the t th the the BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 3 . 1 4 0 0 0 0 1 +18.16.4. IMPLEMENTATION 18.16.4. 1 18 18. 18.1 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 5 ... 3 10 0 0 0 0 1 +In absence in I In In In BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 8 5 , 1 9 0 0 0 0 1 +create by create c cr cre crea BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 5 . 1 9 0 0 0 0 1 +In these in I In In In BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 8 5 , 1 10 0 0 0 0 1 +expected to expected e ex exp expe BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 5 ., 2 9 0 0 0 0 1 +the client the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 5 , 1 9 0 0 0 0 1 +client, perhaps client, c cl cli clie BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 5 ,,. 3 9 0 0 0 0 1 +If the if I If If If BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 7 , 1 9 0 0 0 0 1 +stores the stores s st sto stor BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 7 . 1 9 0 0 0 0 1 +provide a provide p pr pro prov BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 7 , 1 10 0 0 0 0 1 +server may server s se ser serv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 7 ' 1 10 0 0 0 0 1 +the verifier. the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 7 . 1 9 0 0 0 0 1 +prevent erroneous prevent p pr pre prev BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 7 . 1 9 0 0 0 0 1 +assumed that assumed a as ass assu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 7 no 0 10 0 0 0 0 1 +semantics are semantics s se sem sema BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 7 . 1 9 0 0 0 0 1 +usage, exclusive usage, u us usa usag BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 7 ,' 2 9 0 0 0 0 1 +cache for cache c ca cac cach BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 7 . 1 9 0 0 0 0 1 +not survive not n no not not BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 7 no 0 9 0 0 0 0 1 +after a after a af aft afte BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 7 , 1 9 0 0 0 0 1 +failure windows. failure f fa fai fail BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 7 . 1 2 0 0 0 0 1 +An NFSv4.1 an A An An An BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 8 10 .' 2 10 0 0 0 0 1 +RECOMMENDED or recommended R RE REC RECO BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 8 10 ., 2 9 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 8 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 11 , 1 10 0 0 0 0 0 +[Page 477] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 8 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 8 0 no 0 4 0 0 0 0 1 +use time_modify_set use u us use use BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 0 . 1 10 0 0 0 0 1 +server SHOULD server s se ser serv BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 0 : 1 10 0 0 0 0 1 +acl (it acl a ac acl acl BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 1 ( 1 10 0 0 0 0 1 +creation), creation), creation), c cr cre crea BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 1 ), 2 1 0 0 0 0 1 +dacl (ditto), dacl d da dac dacl BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 2 (), 3 10 0 0 0 0 1 +mode (ditto), mode m mo mod mode BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 2 (), 3 10 0 0 0 0 1 +owner (ditto), owner o ow own owne BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 2 (), 3 10 0 0 0 0 1 +owner_group (ditto), owner_group o ow own owne BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 2 (), 3 10 0 0 0 0 1 +retentevt_set (it retentevt_set r re ret rete BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 3 ( 1 10 0 0 0 0 1 +creation) creation) creation) c cr cre crea BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 3 ) 1 1 0 0 0 0 1 +retention_hold (ditto), retention_hold r re ret rete BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 3 (), 3 10 0 0 0 0 1 +retention_set (ditto), retention_set r re ret rete BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 3 (), 3 10 0 0 0 0 1 +sacl (it sacl s sa sac sacl BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 3 ( 1 10 0 0 0 0 1 +creation), creation), creation), c cr cre crea BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 3 ), 2 1 0 0 0 0 1 +size (on size s si siz size BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 4 (,), 4 10 0 0 0 0 1 +mode_set_masked (as mode_set_masked m mo mod mode BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 5 (), 3 10 0 0 0 0 1 +and and and a an and and BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 5 no 0 10 0 0 0 0 1 +time_creation (a time_creation t ti tim time BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 5 ( 1 10 0 0 0 0 1 +file is file f fi fil file BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 5 ). 2 2 0 0 0 0 1 +Another alternative another A An Ano Anot BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 6 no 0 10 0 0 0 0 1 +store the store s st sto stor BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 6 . 1 3 0 0 0 0 1 +Because the because B Be Bec Beca BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 7 no 0 10 0 0 0 0 1 +attributes when attributes a at att attr BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 7 , 1 9 0 0 0 0 1 +o SHOULD o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 8 8 no 0 10 0 0 0 0 1 +credential of credential c cr cre cred BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 8 '. 2 5 0 0 0 0 1 +o SHOULD o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 8 9 ' 1 10 0 0 0 0 1 +of the of o of of of BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 9 . 1 1 0 0 0 0 1 +If the if I If If If BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 9 , 1 9 0 0 0 0 1 +because of because b be bec beca BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 9 , 1 10 0 0 0 0 1 +it should it i it it it BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 9 . 1 9 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 8 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 11 , 1 10 0 0 0 0 0 +[Page 478] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 8 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 8 0 no 0 4 0 0 0 0 1 +During an during D Du Dur Duri BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 0 ,, 2 10 0 0 0 0 1 +server reconstructs server s se ser serv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 0 ' 1 9 0 0 0 0 1 +verifier in verifier v ve ver veri BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 0 ., 2 8 0 0 0 0 1 +request as request r re req requ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 0 . 1 9 0 0 0 0 1 +an earlier, an a an an an BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 8 0 , 1 9 0 0 0 0 1 +the server the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 0 . 1 9 0 0 0 0 1 +verifiers do verifiers v ve ver veri BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 0 , 1 9 0 0 0 0 1 +NFS4ERR_EXIST. NFS4ERR_EXIST. nfs4err_exist. N NF NFS NFS4 BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 0 . 1 2 0 0 0 0 1 +After the after A Af Aft Afte BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 2 , 1 9 0 0 0 0 1 +attrset response attrset a at att attr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 2 no 0 9 0 0 0 0 1 +verifier. If verifier. v ve ver veri BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 2 ., 2 10 0 0 0 0 1 +used for used u us use used BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 2 ., 2 8 0 0 0 0 1 +determines the determines d de det dete BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 2 no 0 10 0 0 0 0 1 +with cva_attrs.attrmask; with w wi wit with BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 2 .; 2 9 0 0 0 0 1 +latter identify latter l la lat latt BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 2 . 1 9 0 0 0 0 1 +client MUST client c cl cli clie BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 2 no 0 9 0 0 0 0 1 +store the store s st sto stor BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 2 ., 2 9 0 0 0 0 1 +the verifier the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 2 . 1 9 0 0 0 0 1 +occur in occur o oc occ occu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 2 . 1 6 0 0 0 0 1 +Unless a unless U Un Unl Unle BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 5 , 1 9 0 0 0 0 1 +does not does d do doe does BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 5 ., 2 9 0 0 0 0 1 +is lost is i is is is BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 5 no 0 9 0 0 0 0 1 +request, the request, r re req requ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 5 ,, 2 9 0 0 0 0 1 +create was create c cr cre crea BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 5 . 1 8 0 0 0 0 1 +behavior in behavior b be beh beha BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 5 no 0 9 0 0 0 0 1 +exclusive create exclusive e ex exc excl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 5 no 0 9 0 0 0 0 1 +file is file f fi fil file BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 5 . 1 8 0 0 0 0 1 +retransmitting the retransmitting r re ret retr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 5 , 1 9 0 0 0 0 1 +prevent against prevent p pr pre prev BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 5 ,,() 4 10 0 0 0 0 1 +from occurring. from f fr fro from BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 5 . 1 2 0 0 0 0 1 +For SHARE for F Fo For For BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 8 ,( 2 9 0 0 0 0 1 +~OPEN4_SHARE_ACCESS_WANT_DELEG_MASK) MUST ~open4_share_access_want_deleg_mask) ~ ~O ~OP ~OPE BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 8 ) 1 7 0 0 0 0 1 +OPEN4_SHARE_ACCESS_READ, OPEN4_SHARE_ACCESS_WRITE, open4_share_access_read, O OP OPE OPEN BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 8 ,, 2 7 0 0 0 0 1 +OPEN4_SHARE_ACCESS_BOTH. If open4_share_access_both. O OP OPE OPEN BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 8 ., 2 8 0 0 0 0 1 +NFS4ERR_INVAL. The nfs4err_inval. N NF NFS NFS4 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 8 . 1 7 0 0 0 0 1 +OPEN4_SHARE_DENY_NONE, OPEN4_SHARE_DENY_READ, open4_share_deny_none, O OP OPE OPEN BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 8 ,,, 3 10 0 0 0 0 1 +or OPEN4_SHARE_DENY_BOTH. or o or or or BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 8 ., 2 8 0 0 0 0 1 +NFS4ERR_INVAL. NFS4ERR_INVAL. nfs4err_inval. N NF NFS NFS4 BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 8 . 1 2 0 0 0 0 1 +Based on based B Ba Bas Base BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 10 (, 2 8 0 0 0 0 1 +OPEN4_SHARE_ACCESS_WRITE, or open4_share_access_write, O OP OPE OPEN BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 10 ,), 3 9 0 0 0 0 1 +should check should s sh sho shou BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 10 no 0 9 0 0 0 0 1 +perform the perform p pe per perf BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 10 . 1 10 0 0 0 0 1 +of applying of o of of of BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 10 no 0 8 0 0 0 0 1 +requester. However, requester. r re req requ BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 10 .,, 3 9 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 9 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 11 , 1 10 0 0 0 0 0 +[Page 479] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 9 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 9 0 no 0 4 0 0 0 0 1 +should not should s sh sho shou BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 0 -', 3 10 0 0 0 0 1 +rights may rights r ri rig righ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 0 no 0 8 0 0 0 0 1 +controls outside controls c co con cont BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 0 .' 2 10 0 0 0 0 1 +operation is operation o op ope oper BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 0 (), 3 9 0 0 0 0 1 +the server the t th the the BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 0 . 1 5 0 0 0 0 1 +Note that note N No Not Note BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 1 no 0 7 0 0 0 0 1 +EXCHGID4_FLAG_BIND_PRINC_STATEID capability exchgid4_flag_bind_princ_stateid E EX EXC EXCH BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 1 no 0 9 0 0 0 0 1 +EXCHANGE_ID, then exchange_id, E EX EXC EXCH BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 1 , 1 9 0 0 0 0 1 +READs and reads R RE REA READ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 1 no 0 9 0 0 0 0 1 +the OPEN the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 1 , 1 8 0 0 0 0 1 +checking on checking c ch che chec BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 1 ., 2 10 0 0 0 0 1 +to EXCHANGE_ID to t to to to BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 1 , 1 9 0 0 0 0 1 +with one with w wi wit with BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 1 , 1 9 0 0 0 0 1 +match those match m ma mat matc BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 1 , 1 9 0 0 0 0 1 +READs and reads R RE REA READ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 1 , 1 10 0 0 0 0 1 +reply to reply r re rep repl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 1 . 1 9 0 0 0 0 1 +protection is protection p pr pro prot BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 1 , 1 9 0 0 0 0 1 +includes the includes i in inc incl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 1 /., 3 10 0 0 0 0 1 +or SSV or o or or or BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 1 /. 2 9 0 0 0 0 1 +Section 18.35. section S Se Sec Sect BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 1 .. 2 2 0 0 0 0 1 +If the if I If If If BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 5 , 1 9 0 0 0 0 1 +NFS4ERR_SYMLINK will nfs4err_symlink N NF NFS NFS4 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 5 , 1 9 0 0 0 0 1 +directory the directory d di dir dire BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 5 . 1 10 0 0 0 0 1 +is neither is i is is is BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 5 , 1 8 0 0 0 0 1 +NFS4ERR_WRONG_TYPE is nfs4err_wrong_type N NF NFS NFS4 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 5 . 1 9 0 0 0 0 1 +directory, the directory, d di dir dire BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 5 ,. 2 7 0 0 0 0 1 +The use the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 7 no 0 9 0 0 0 0 1 +client to client c cl cli clie BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 7 no 0 9 0 0 0 0 1 +open file open o op ope open BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 7 ".". 4 9 0 0 0 0 1 +the server the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 7 , 1 10 0 0 0 0 1 +a REMOVE a a a a a BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 1 0 0 0 0 0 9 7 ', 2 9 0 0 0 0 1 +the server the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 7 no 0 9 0 0 0 0 1 +on the on o on on on BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 7 . 1 1 0 0 0 0 1 +If another if I If If If BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 9 no 0 9 0 0 0 0 1 +conflicts with conflicts c co con conf BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 9 ( 1 8 0 0 0 0 1 +share_access or share_access s sh sha shar BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 9 ),() 4 9 0 0 0 0 1 +be recalled, be b be be be BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 9 , 1 8 0 0 0 0 1 +delegation is delegation d de del dele BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 9 . 1 9 0 0 0 0 1 +quickly, one quickly, q qu qui quic BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 9 , 1 8 0 0 0 0 1 +requests made requests r re req requ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 9 9 . 1 9 0 0 0 0 1 +an OPEN_DELEGATE_WRITE an a an an an BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 9 9 , 1 9 0 0 0 0 1 +will conflict, will w wi wil will BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 9 9 ,, 2 10 0 0 0 0 1 +with one with w wi wit with BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 9 no 0 8 0 0 0 0 1 +conflicting: conflicting: conflicting: c co con conf BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 9 : 1 1 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 9 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 11 , 1 10 0 0 0 0 0 +[Page 480] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 9 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 9 0 no 0 4 0 0 0 0 1 +o The o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 9 0 no 0 10 0 0 0 0 1 +OPEN4_SHARE_ACCESS_WRITE. OPEN4_SHARE_ACCESS_WRITE. open4_share_access_write. O OP OPE OPEN BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 0 . 1 5 0 0 0 0 1 +o The o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 9 0 no 0 10 0 0 0 0 1 +OPEN4_SHARE_DENY_BOTH. OPEN4_SHARE_DENY_BOTH. open4_share_deny_both. O OP OPE OPEN BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 0 . 1 3 0 0 0 0 1 +o OPEN4_CREATE o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 9 1 , 1 9 0 0 0 0 1 +attribute is attribute a at att attr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 1 (), 3 10 0 0 0 0 1 +file is file f fi fil file BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 1 . 1 2 0 0 0 0 1 +If OPEN4_CREATE if I If If If BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 1 no 0 9 0 0 0 0 1 +current filehandle current c cu cur curr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 1 no 0 9 0 0 0 0 1 +holds a holds h ho hol hold BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 1 ,, 2 9 0 0 0 0 1 +that the that t th tha that BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 1 , 1 9 0 0 0 0 1 +delegation MUST delegation d de del dele BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 1 , 1 10 0 0 0 0 1 +the delegation the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 1 . 1 9 0 0 0 0 1 +very quickly, very v ve ver very BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 1 , 1 9 0 0 0 0 1 +requests made requests r re req requ BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 9 1 . 1 7 0 0 0 0 1 +If OPEN4_CREATE if I If If If BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 4 no 0 9 0 0 0 0 1 +current filehandle current c cu cur curr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 4 no 0 9 0 0 0 0 1 +directory delegations directory d di dir dire BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 4 ,, 2 9 0 0 0 0 1 +such notifications, such s su suc such BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 4 , 1 10 0 0 0 0 1 +of this of o of of of BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 4 . 1 2 0 0 0 0 1 +18.16.4.1. Warning 18.16.4.1. 1 18 18. 18.1 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 6 .... 4 10 0 0 0 0 1 +OPEN resembles open O OP OPE OPEN BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 9 6 no 0 9 0 0 0 0 1 +client to client c cl cli clie BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 6 ., 2 9 0 0 0 0 1 +the filehandle. the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 6 ., 2 10 0 0 0 0 1 +this state this t th thi this BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 6 . 1 10 0 0 0 0 1 +to determine to t to to to BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 6 ., 2 9 0 0 0 0 1 +every OPEN every e ev eve ever BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 6 no 0 9 0 0 0 0 1 +procedure. This procedure. p pr pro proc BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 6 . 1 10 0 0 0 0 1 +CLOSE can close C CL CLO CLOS BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 1 1 0 0 0 0 0 9 6 . 1 4 0 0 0 0 1 +Simply waiting simply S Si Sim Simp BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 9 no 0 9 0 0 0 0 1 +because the because b be bec beca BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 9 no 0 9 0 0 0 0 1 +another client another a an ano anot BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 9 no 0 10 0 0 0 0 1 +same file. same s sa sam same BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 9 . 1 1 0 0 0 0 1 +See also see S Se See See BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 9 10 .... 4 10 0 0 0 0 1 +18.17. Operation 18.17. 1 18 18. 18.1 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 11 ..:- 4 10 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 9 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 11 , 1 10 0 0 0 0 0 +[Page 481] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 9 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 9 0 no 0 4 0 0 0 0 1 +18.17.1. ARGUMENTS 18.17.1. 1 18 18. 18.1 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 0 ... 3 10 0 0 0 0 1 +struct OPENATTR4args struct s st str stru BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 0 no 0 9 0 0 0 0 1 +/* CURRENT_FH: /* / /* /* /* BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 0 /*:*/ 5 10 0 0 0 0 1 +bool bool bool b bo boo bool BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 0 no 0 2 0 0 0 0 1 +createdir; createdir; createdir; c cr cre crea BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 0 ; 1 4 0 0 0 0 1 +}; }; }; } }; }; }; BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 0 ; 1 1 0 0 0 0 1 +18.17.2. RESULTS 18.17.2. 1 18 18. 18.1 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 1 ... 3 10 0 0 0 0 1 +struct OPENATTR4res struct s st str stru BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 1 no 0 6 0 0 0 0 1 +/* /* /* / /* /* /* BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 1 /* 2 0 0 0 0 0 1 +* If * * * * * BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 1 *, 2 7 0 0 0 0 1 +* * * * * * * BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 1 * 1 0 0 0 0 0 1 +new CURRENT_FH: new n ne new new BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 1 : 1 10 0 0 0 0 1 +* * * * * * * BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 1 * 1 0 0 0 0 0 1 +directory directory directory d di dir dire BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 1 no 0 3 0 0 0 0 1 +*/ */ */ * */ */ */ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 1 */ 2 0 0 0 0 0 1 +nfsstat4 nfsstat4 nfsstat4 n nf nfs nfss BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 1 no 0 2 0 0 0 0 1 +status; status; status; s st sta stat BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 1 ; 1 2 0 0 0 0 1 +}; }; }; } }; }; }; BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 1 ; 1 0 0 0 0 0 1 +18.17.3. DESCRIPTION 18.17.3. 1 18 18. 18.1 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 2 ... 3 10 0 0 0 0 1 +The OPENATTR the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 2 no 0 10 0 0 0 0 1 +attribute directory attribute a at att attr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 2 . 1 9 0 0 0 0 1 +result of result r re res resu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 2 no 0 9 0 0 0 0 1 +NF4ATTRDIR. From nf4attrdir. N NF NF4 NF4A BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 2 ., 2 9 0 0 0 0 1 +be used be b be be be BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 2 no 0 9 0 0 0 0 1 +associated with associated a as ass asso BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 2 . 1 8 0 0 0 0 1 +returned within returned r re ret retu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 2 no 0 10 0 0 0 0 1 +of type of o of of of BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 2 . 1 3 0 0 0 0 1 +The createdir the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 5 no 0 9 0 0 0 0 1 +attribute directory attribute a at att attr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 5 no 0 9 0 0 0 0 1 +operation. Some operation. o op ope oper BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 5 . 1 9 0 0 0 0 1 +of FALSE of o of of of BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 5 no 0 10 0 0 0 0 1 +the object. the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 5 .,. 3 9 0 0 0 0 1 +createdir has createdir c cr cre crea BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 5 no 0 9 0 0 0 0 1 +exists, one exists, e ex exi exis BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 5 , 1 8 0 0 0 0 1 +filehandle. On filehandle. f fi fil file BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 5 ., 2 9 0 0 0 0 1 +the named the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 5 , 1 9 0 0 0 0 1 +the filehandle the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 5 no 0 8 0 0 0 0 1 +filehandle. The filehandle. f fi fil file BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 5 . 1 9 0 0 0 0 1 +the server the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 5 no 0 9 0 0 0 0 1 +and is and a an and and BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 5 . 1 7 0 0 0 0 1 +If the if I If If If BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 10 no 0 10 0 0 0 0 1 +(a named (a ( (a (a (a BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 10 ()(), 5 9 0 0 0 0 1 +error of error e er err erro BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 10 . 1 8 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 9 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 11 , 1 10 0 0 0 0 0 +[Page 482] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 9 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 9 0 no 0 4 0 0 0 0 1 +attributes or attributes a at att attr BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 0 no 0 10 0 0 0 0 1 +named attributes. named n na nam name BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 0 . 1 2 0 0 0 0 1 +18.17.4. IMPLEMENTATION 18.17.4. 1 18 18. 18.1 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 1 ... 3 10 0 0 0 0 1 +If the if I If If If BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 1 no 0 10 0 0 0 0 1 +filehandle, an filehandle, f fi fil file BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 1 , 1 10 0 0 0 0 1 +client. client. client. c cl cli clie BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 1 . 1 1 0 0 0 0 1 +18.18. Operation 18.18. 1 18 18. 18.1 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 2 ..:- 4 10 0 0 0 0 1 +18.18.1. ARGUMENTS 18.18.1. 1 18 18. 18.1 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 3 ... 3 10 0 0 0 0 1 +struct OPEN_DOWNGRADE4args struct s st str stru BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 3 no 0 9 0 0 0 0 1 +/* CURRENT_FH: /* / /* /* /* BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 3 /*:*/ 5 10 0 0 0 0 1 +stateid4 stateid4 stateid4 s st sta stat BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 3 no 0 3 0 0 0 0 1 +open_stateid; open_stateid; open_stateid; o op ope open BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 3 ; 1 4 0 0 0 0 1 +seqid4 seqid4 seqid4 s se seq seqi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 3 no 0 2 0 0 0 0 1 +seqid; seqid; seqid; s se seq seqi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 3 ; 1 2 0 0 0 0 1 +uint32_t uint32_t uint32_t u ui uin uint BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 3 no 0 3 0 0 0 0 1 +share_access; share_access; share_access; s sh sha shar BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 3 ; 1 4 0 0 0 0 1 +uint32_t uint32_t uint32_t u ui uin uint BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 3 no 0 3 0 0 0 0 1 +share_deny; share_deny; share_deny; s sh sha shar BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 3 ; 1 4 0 0 0 0 1 +}; }; }; } }; }; }; BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 3 ; 1 1 0 0 0 0 1 +18.18.2. RESULTS 18.18.2. 1 18 18. 18.1 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 5 ... 3 10 0 0 0 0 1 +struct OPEN_DOWNGRADE4resok struct s st str stru BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 5 no 0 10 0 0 0 0 1 +stateid4 stateid4 stateid4 s st sta stat BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 5 no 0 3 0 0 0 0 1 +open_stateid; open_stateid; open_stateid; o op ope open BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 5 ; 1 4 0 0 0 0 1 +}; }; }; } }; }; }; BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 5 ; 1 1 0 0 0 0 1 +union OPEN_DOWNGRADE4res union u un uni unio BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 5 () 2 10 0 0 0 0 1 +case NFS4_OK: case c ca cas case BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 9 5 : 1 2 0 0 0 0 1 +OPEN_DOWNGRADE4resok OPEN_DOWNGRADE4resok open_downgrade4resok O OP OPE OPEN BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 5 no 0 4 0 0 0 0 1 +resok4; resok4; resok4; r re res reso BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 5 ; 1 1 0 0 0 0 1 +default: default: default: d de def defa BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 5 : 1 1 0 0 0 0 1 +void; void; void; v vo voi void BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 5 ; 1 1 0 0 0 0 1 +}; }; }; } }; }; }; BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 5 ; 1 0 0 0 0 0 1 +18.18.3. DESCRIPTION 18.18.3. 1 18 18. 18.1 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 6 ... 3 10 0 0 0 0 1 +This operation this T Th Thi This BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 7 no 0 9 0 0 0 0 1 +given open. given g gi giv give BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 7 .- 2 10 0 0 0 0 1 +file multiple file f fi fil file BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 7 . 1 9 0 0 0 0 1 +situation, a situation, s si sit situ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 7 , 1 9 0 0 0 0 1 +share_access and share_access s sh sha shar BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 7 no 0 9 0 0 0 0 1 +opens no opens o op ope open BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 7 . 1 3 0 0 0 0 1 +Valid values valid V Va Val Vali BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 10 ( 1 7 0 0 0 0 1 +~OPEN4_SHARE_ACCESS_WANT_DELEG_MASK) are ~open4_share_access_want_deleg_mask) ~ ~O ~OP ~OPE BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 10 ), 2 10 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 9 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 11 , 1 10 0 0 0 0 0 +[Page 483] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 9 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 9 0 no 0 4 0 0 0 0 1 +OPEN4_SHARE_ACCESS_WRITE, or open4_share_access_write, O OP OPE OPEN BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 0 ,. 2 10 0 0 0 0 1 +specifies other specifies s sp spe spec BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 0 ,. 2 9 0 0 0 0 1 +Valid values valid V Va Val Vali BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 1 , 1 10 0 0 0 0 1 +OPEN4_SHARE_DENY_READ, OPEN4_SHARE_DENY_WRITE, open4_share_deny_read, O OP OPE OPEN BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 1 ,, 2 7 0 0 0 0 1 +OPEN4_SHARE_DENY_BOTH. If open4_share_deny_both. O OP OPE OPEN BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 1 ., 2 10 0 0 0 0 1 +server MUST server s se ser serv BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 1 . 1 5 0 0 0 0 1 +After checking after A Af Aft Afte BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 2 , 1 10 0 0 0 0 1 +server replaces server s se ser serv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 2 no 0 9 0 0 0 0 1 +share_access and share_access s sh sha shar BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 2 : 1 9 0 0 0 0 1 +o The o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 9 3 no 0 8 0 0 0 0 1 +share_access bits share_access s sh sha shar BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 3 (*) 3 8 0 0 0 0 1 +specified for specified s sp spe spec BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 3 no 0 10 0 0 0 0 1 +open-owner on open-owner o op ope open BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 3 -. 2 4 0 0 0 0 1 +o The o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 9 4 no 0 10 0 0 0 0 1 +bits specified bits b bi bit bits BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 4 no 0 9 0 0 0 0 1 +current open-owner current c cu cur curr BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 4 -. 2 6 0 0 0 0 1 +If the if I If If If BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 5 , 1 10 0 0 0 0 1 +the error the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 5 . 1 9 0 0 0 0 1 +should be should s sh sho shou BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 5 , 1 10 0 0 0 0 1 +client or client c cl cli clie BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 5 , 1 8 0 0 0 0 1 +OPEN_DOWNGRADE request open_downgrade O OP OPE OPEN BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 5 no 0 9 0 0 0 0 1 +reservations. reservations. reservations. r re res rese BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 5 . 1 2 0 0 0 0 1 +The seqid the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 7 .,, 3 10 0 0 0 0 1 +be ignored be b be be be BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 7 . 1 3 0 0 0 0 1 +On success, on O On On On BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 8 ,. 2 10 0 0 0 0 1 +18.18.4. IMPLEMENTATION 18.18.4. 1 18 18. 18.1 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 9 ... 3 10 0 0 0 0 1 +An OPEN_DOWNGRADE an A An An An BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 9 9 no 0 9 0 0 0 0 1 +grantable where grantable g gr gra gran BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 9 . 1 9 0 0 0 0 1 +respond immediately respond r re res resp BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 9 no 0 10 0 0 0 0 1 +may respond may m ma may may BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 1 0 0 9 9 . 1 6 0 0 0 0 1 +18.19. Operation 18.19. 1 18 18. 18.1 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 10 ..:- 4 10 0 0 0 0 1 +18.19.1. ARGUMENTS 18.19.1. 1 18 18. 18.1 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 11 ... 3 10 0 0 0 0 1 +struct PUTFH4args struct s st str stru BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 11 no 0 10 0 0 0 0 1 +nfs_fh4 nfs_fh4 nfs_fh4 n nf nfs nfs_ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 11 no 0 4 0 0 0 0 1 +object; object; object; o ob obj obje BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 11 ; 1 4 0 0 0 0 1 +}; }; }; } }; }; }; BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 11 ; 1 1 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 9 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 11 , 1 10 0 0 0 0 0 +[Page 484] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 9 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 9 0 no 0 4 0 0 0 0 1 +18.19.2. RESULTS 18.19.2. 1 18 18. 18.1 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 0 ... 3 10 0 0 0 0 1 +struct PUTFH4res struct s st str stru BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 0 no 0 5 0 0 0 0 1 +/* /* /* / /* /* /* BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 0 /* 2 0 0 0 0 0 1 +* If * * * * * BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 0 *, 2 7 0 0 0 0 1 +* * * * * * * BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 0 * 1 0 0 0 0 0 1 +new CURRENT_FH: new n ne new new BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 0 : 1 10 0 0 0 0 1 +*/ */ */ * */ */ */ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 0 */ 2 0 0 0 0 0 1 +nfsstat4 nfsstat4 nfsstat4 n nf nfs nfss BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 0 no 0 2 0 0 0 0 1 +status; status; status; s st sta stat BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 0 ; 1 2 0 0 0 0 1 +}; }; }; } }; }; }; BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 0 ; 1 0 0 0 0 0 1 +18.19.3. DESCRIPTION 18.19.3. 1 18 18. 18.1 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 2 ... 3 10 0 0 0 0 1 +This operation this T Th Thi This BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 2 no 0 10 0 0 0 0 1 +provided as provided p pr pro prov BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 2 .. 2 8 0 0 0 0 1 +If the if I If If If BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 3 no 0 9 0 0 0 0 1 +requirements of requirements r re req requ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 3 , 1 10 0 0 0 0 1 +MUST return must M MU MUS MUST BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 9 3 . 1 4 0 0 0 0 1 +See Section see S Se See See BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 9 5 ..... 5 10 0 0 0 0 1 +See Section see S Se See See BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 9 6 ..... 5 10 0 0 0 0 1 +18.19.4. IMPLEMENTATION 18.19.4. 1 18 18. 18.1 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 6 ... 3 10 0 0 0 0 1 +This operation this T Th Thi This BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 7 no 0 10 0 0 0 0 1 +accessing operations accessing a ac acc acce BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 7 . 1 9 0 0 0 0 1 +18.20. Operation 18.20. 1 18 18. 18.2 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 8 ..:- 4 10 0 0 0 0 1 +18.20.1. ARGUMENT 18.20.1. 1 18 18. 18.2 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 9 ... 3 10 0 0 0 0 1 +void; void; void; v vo voi void BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 9 ; 1 10 0 0 0 0 1 +18.20.2. RESULT 18.20.2. 1 18 18. 18.2 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 9 ... 3 10 0 0 0 0 1 +struct PUTPUBFH4res struct s st str stru BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 9 no 0 8 0 0 0 0 1 +/* /* /* / /* /* /* BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 9 /* 2 1 0 0 0 0 1 +* If * * * * * BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 9 *, 2 9 0 0 0 0 1 +* * * * * * * BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 9 * 1 0 0 0 0 0 1 +new CURRENT_FH: new n ne new new BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 9 : 1 10 0 0 0 0 1 +*/ */ */ * */ */ */ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 9 */ 2 1 0 0 0 0 1 +nfsstat4 nfsstat4 nfsstat4 n nf nfs nfss BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 9 no 0 3 0 0 0 0 1 +status; status; status; s st sta stat BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 9 ; 1 3 0 0 0 0 1 +}; }; }; } }; }; }; BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 9 ; 1 1 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 9 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 11 , 1 10 0 0 0 0 0 +[Page 485] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 9 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 9 0 no 0 4 0 0 0 0 1 +18.20.3. DESCRIPTION 18.20.3. 1 18 18. 18.2 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 0 ... 3 10 0 0 0 0 1 +This operation this T Th Thi This BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 0 no 0 9 0 0 0 0 1 +that represents that t th tha that BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 0 '. 2 9 0 0 0 0 1 +This filehandle this T Th Thi This BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 0 "" 2 10 0 0 0 0 1 +be associated be b be be be BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 0 . 1 7 0 0 0 0 1 +PUTPUBFH also putpubfh P PU PUT PUTP BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 1 . 1 10 0 0 0 0 1 +The public the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 1 no 0 9 0 0 0 0 1 +[45], RFC [45], [ [4 [45 [45] BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 1 [],[],[].. 10 9 0 0 0 0 1 +that the that t th tha that BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 1 () 2 10 0 0 0 0 1 +used as used u us use used BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 1 . 1 10 0 0 0 0 1 +The public the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 3 ( 1 9 0 0 0 0 1 +PUTROOTFH operation) putrootfh P PU PUT PUTR BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 3 ). 2 9 0 0 0 0 1 +filehandles are filehandles f fi fil file BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 3 , 1 10 0 0 0 0 1 +the public the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 3 no 0 8 0 0 0 0 1 +corresponding to corresponding c co cor corr BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 3 . 1 5 0 0 0 0 1 +See Section see S Se See See BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 9 4 ..... 5 10 0 0 0 0 1 +See Section see S Se See See BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 9 4 ..... 5 10 0 0 0 0 1 +18.20.4. IMPLEMENTATION 18.20.4. 1 18 18. 18.2 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 5 ... 3 10 0 0 0 0 1 +This operation this T Th Thi This BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 5 no 0 10 0 0 0 0 1 +accessing operations accessing a ac acc acce BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 5 . 1 9 0 0 0 0 1 +With the with W Wi Wit With BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 6 , 1 9 0 0 0 0 1 +whether the whether w wh whe whet BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 6 no 0 9 0 0 0 0 1 +either an either e ei eit eith BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 6 ' 1 9 0 0 0 0 1 +the public the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 6 .[] 3 9 0 0 0 0 1 +the functionality. the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 6 .., 3 9 0 0 0 0 1 +directly available directly d di dir dire BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 6 . 1 9 0 0 0 0 1 +because the because b be bec beca BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 6 . 1 9 0 0 0 0 1 +relative are relative r re rel rela BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 6 ., 2 8 0 0 0 0 1 +responsible for responsible r re res resp BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 6 no 0 9 0 0 0 0 1 +PUTROOTFH or putrootfh P PU PUT PUTR BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 6 no 0 10 0 0 0 0 1 +NFS URL, nfs N NF NFS NFS BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 6 ,. 2 3 0 0 0 0 1 +Note that note N No Not Note BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 9 [] 2 9 0 0 0 0 1 +to the to t to to to BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 9 no 0 10 0 0 0 0 1 +place on place p pl pla plac BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 9 9 no 0 9 0 0 0 0 1 +has been has h ha has has BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 9 ... 3 9 0 0 0 0 1 +is likely, is i is is is BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 9 ,,, 3 9 0 0 0 0 1 +an NFSv3 an a an an an BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 9 9 no 0 9 0 0 0 0 1 +than an than t th tha than BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 9 .. 2 5 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 9 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 11 , 1 10 0 0 0 0 0 +[Page 486] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 9 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 9 0 no 0 4 0 0 0 0 1 +There is there T Th The Ther BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 0 [] 2 10 0 0 0 0 1 +that uses that t th tha that BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 0 . 1 9 0 0 0 0 1 +This method this T Th Thi This BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 0 . 1 9 0 0 0 0 1 +overloaded with overloaded o ov ove over BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 0 no 0 10 0 0 0 0 1 +framework as framework f fr fra fram BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 0 . 1 8 0 0 0 0 1 +negotiation mechanisms negotiation n ne neg nego BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 0 .. 2 7 0 0 0 0 1 +18.21. Operation 18.21. 1 18 18. 18.2 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 3 ..:- 4 10 0 0 0 0 1 +18.21.1. ARGUMENTS 18.21.1. 1 18 18. 18.2 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 3 ... 3 10 0 0 0 0 1 +void; void; void; v vo voi void BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 4 ; 1 10 0 0 0 0 1 +18.21.2. RESULTS 18.21.2. 1 18 18. 18.2 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 4 ... 3 10 0 0 0 0 1 +struct PUTROOTFH4res struct s st str stru BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 4 no 0 9 0 0 0 0 1 +/* /* /* / /* /* /* BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 4 /* 2 1 0 0 0 0 1 +* If * * * * * BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 4 *, 2 10 0 0 0 0 1 +* * * * * * * BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 4 * 1 0 0 0 0 0 1 +new CURRENT_FH: new n ne new new BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 4 : 1 10 0 0 0 0 1 +*/ */ */ * */ */ */ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 4 */ 2 1 0 0 0 0 1 +nfsstat4 nfsstat4 nfsstat4 n nf nfs nfss BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 4 no 0 3 0 0 0 0 1 +status; status; status; s st sta stat BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 4 ; 1 3 0 0 0 0 1 +}; }; }; } }; }; }; BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 4 ; 1 1 0 0 0 0 1 +18.21.3. DESCRIPTION 18.21.3. 1 18 18. 18.2 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 5 ... 3 10 0 0 0 0 1 +This operation this T Th Thi This BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 5 no 0 9 0 0 0 0 1 +that represents that t th tha that BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 5 '. 2 8 0 0 0 0 1 +filehandle, a filehandle, f fi fil file BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 5 , 1 10 0 0 0 0 1 +server. This server. s se ser serv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 5 ."" 3 8 0 0 0 0 1 +filehandle that filehandle f fi fil file BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 5 no 0 9 0 0 0 0 1 +server. server. server. s se ser serv BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 5 . 1 1 0 0 0 0 1 +PUTROOTFH also putrootfh P PU PUT PUTR BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 8 . 1 10 0 0 0 0 1 +See Section see S Se See See BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 9 8 ..... 5 10 0 0 0 0 1 +See Section see S Se See See BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 9 9 ..... 5 10 0 0 0 0 1 +18.21.4. IMPLEMENTATION 18.21.4. 1 18 18. 18.2 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 10 ... 3 10 0 0 0 0 1 +This operation this T Th Thi This BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 10 no 0 10 0 0 0 0 1 +accessing operations accessing a ac acc acce BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 10 . 1 9 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 9 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 11 , 1 10 0 0 0 0 0 +[Page 487] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 9 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 9 0 no 0 4 0 0 0 0 1 +18.22. Operation 18.22. 1 18 18. 18.2 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 0 ..:- 4 10 0 0 0 0 1 +18.22.1. ARGUMENTS 18.22.1. 1 18 18. 18.2 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 0 ... 3 10 0 0 0 0 1 +struct READ4args struct s st str stru BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 1 no 0 8 0 0 0 0 1 +/* CURRENT_FH: /* / /* /* /* BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 1 /*:*/ 5 10 0 0 0 0 1 +stateid4 stateid4 stateid4 s st sta stat BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 1 no 0 3 0 0 0 0 1 +stateid; stateid; stateid; s st sta stat BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 1 ; 1 3 0 0 0 0 1 +offset4 offset4 offset4 o of off offs BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 1 no 0 3 0 0 0 0 1 +offset; offset; offset; o of off offs BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 1 ; 1 3 0 0 0 0 1 +count4 count4 count4 c co cou coun BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 1 no 0 3 0 0 0 0 1 +count; count; count; c co cou coun BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 1 ; 1 3 0 0 0 0 1 +}; }; }; } }; }; }; BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 1 ; 1 1 0 0 0 0 1 +18.22.2. RESULTS 18.22.2. 1 18 18. 18.2 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 2 ... 3 10 0 0 0 0 1 +struct READ4resok struct s st str stru BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 2 no 0 10 0 0 0 0 1 +bool bool bool b bo boo bool BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 2 no 0 2 0 0 0 0 1 +eof; eof; eof; e eo eof eof; BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 2 ; 1 2 0 0 0 0 1 +opaque opaque opaque o op opa opaq BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 2 no 0 3 0 0 0 0 1 +data<>; data<>; data<>; d da dat data BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 2 ; 1 4 0 0 0 0 1 +}; }; }; } }; }; }; BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 2 ; 1 1 0 0 0 0 1 +union READ4res union u un uni unio BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 2 () 2 10 0 0 0 0 1 +case NFS4_OK: case c ca cas case BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 9 2 : 1 3 0 0 0 0 1 +READ4resok READ4resok read4resok R RE REA READ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 2 no 0 2 0 0 0 0 1 +resok4; resok4; resok4; r re res reso BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 2 ; 1 1 0 0 0 0 1 +default: default: default: d de def defa BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 2 : 1 2 0 0 0 0 1 +void; void; void; v vo voi void BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 2 ; 1 1 0 0 0 0 1 +}; }; }; } }; }; }; BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 2 ; 1 0 0 0 0 0 1 +18.22.3. DESCRIPTION 18.22.3. 1 18 18. 18.2 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 3 ... 3 10 0 0 0 0 1 +The READ the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 3 no 0 10 0 0 0 0 1 +current filehandle. current c cu cur curr BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 3 . 1 2 0 0 0 0 1 +The client the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 4 no 0 9 0 0 0 0 1 +count of count c co cou coun BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 4 . 1 9 0 0 0 0 1 +read data read r re rea read BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 9 4 . 1 8 0 0 0 0 1 +greater than greater g gr gre grea BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 4 , 1 10 0 0 0 0 1 +returned with returned r re ret retu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 4 . 1 9 0 0 0 0 1 +READ is read R RE REA READ BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 1 1 0 0 0 0 0 9 4 . 1 6 0 0 0 0 1 +If the if I If If If BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 7 , 1 10 0 0 0 0 1 +returns zero returns r re ret retu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 7 no 0 9 0 0 0 0 1 +checking. The checking. c ch che chec BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 7 . 1 10 0 0 0 0 1 +by the by b by by by BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 7 . 1 9 0 0 0 0 1 +handle the handle h ha han hand BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 7 . 1 5 0 0 0 0 1 +Except when except E Ex Exc Exce BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 10 , 1 10 0 0 0 0 1 +request represents request r re req requ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 10 - 1 10 0 0 0 0 1 +or share or o or or or BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 10 no 0 9 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 9 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 11 , 1 10 0 0 0 0 0 +[Page 488] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 9 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 9 0 no 0 4 0 0 0 0 1 +delegation. The delegation. d de del dele BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 0 . 1 10 0 0 0 0 1 +is used is i is is is BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 0 no 0 10 0 0 0 0 1 +valid (e.g., valid v va val vali BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 0 (..,). 6 5 0 0 0 0 1 +If the if I If If If BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 1 --(, 4 10 0 0 0 0 1 +READ operation, read R RE REA READ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 1 1 0 0 0 0 0 9 1 ,), 3 9 0 0 0 0 1 +or the or o or or or BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 1 ( 1 9 0 0 0 0 1 ++ count + + + + + BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 1 ), 2 9 0 0 0 0 1 +TRUE; otherwise, true; T TR TRU TRUE BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 9 1 ;,. 3 9 0 0 0 0 1 +will always will w wi wil will BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 9 1 . 1 4 0 0 0 0 1 +If the if I If If If BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 3 , 1 9 0 0 0 0 1 +returned to returned r re ret retu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 3 . 1 9 0 0 0 0 1 +represents an represents r re rep repr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 3 ,. 2 9 0 0 0 0 1 +the current the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 3 , 1 10 0 0 0 0 1 +returned. In returned. r re ret retu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 3 .,. 3 8 0 0 0 0 1 +For a for F Fo For For BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 4 , 1 10 0 0 0 0 1 +MAY allow may M MA MAY MAY BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 1 1 0 0 1 0 0 9 4 - 1 9 0 0 0 0 1 +locks or locks l lo loc lock BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 4 . 1 9 0 0 0 0 1 +a stateid a a a a a BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 1 0 0 0 0 0 9 4 , 1 9 0 0 0 0 1 +operations to operations o op ope oper BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 9 4 . 1 7 0 0 0 0 1 +On success, on O On On On BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 5 ,. 2 10 0 0 0 0 1 +18.22.4. IMPLEMENTATION 18.22.4. 1 18 18. 18.2 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 6 ... 3 10 0 0 0 0 1 +If the if I If If If BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 6 ""(.., 6 10 0 0 0 0 1 +and eof and a an and and BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 6 ), 2 9 0 0 0 0 1 +the remaining the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 6 . 1 9 0 0 0 0 1 +under several under u un und unde BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 6 . 1 9 0 0 0 0 1 +another client another a an ano anot BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 6 , 1 9 0 0 0 0 1 +size from size s si siz size BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 6 . 1 9 0 0 0 0 1 +would reduce would w wo wou woul BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 6 . 1 9 0 0 0 0 1 +is possible is i is is is BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 6 no 0 9 0 0 0 0 1 +short read short s sh sho shor BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 9 6 . 1 9 0 0 0 0 1 +short read. short s sh sho shor BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 9 6 . 1 1 0 0 0 0 1 +If mandatory if I If If If BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 9 -, 2 10 0 0 0 0 1 +byte-range corresponding byte-range b by byt byte BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 9 - 1 9 0 0 0 0 1 +WRITE_LT locked write_lt W WR WRI WRIT BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 9 , 1 9 0 0 0 0 1 +server will server s se ser serv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 9 . 1 9 0 0 0 0 1 +to get to t to to to BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 9 - 1 9 0 0 0 0 1 +attempting the attempting a at att atte BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 9 ., 2 9 0 0 0 0 1 +release the release r re rel rele BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 9 -. 2 5 0 0 0 0 1 +If another if I If If If BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 11 no 0 9 0 0 0 0 1 +being read, being b be bei bein BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 11 ,, 2 10 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 9 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 11 , 1 10 0 0 0 0 0 +[Page 489] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 9 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 9 0 no 0 4 0 0 0 0 1 +proceed until proceed p pr pro proc BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 0 . 1 9 0 0 0 0 1 +this happens this t th thi this BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 0 , 1 9 0 0 0 0 1 +returned to returned r re ret retu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 0 . 1 9 0 0 0 0 1 +Normally, delegations normally, N No Nor Norm BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 0 , 1 9 0 0 0 0 1 +operation since operation o op ope oper BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 0 . 1 10 0 0 0 0 1 +However, since however, H Ho How Howe BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 0 , 1 9 0 0 0 0 1 +stateid, the stateid, s st sta stat BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 0 , 1 9 0 0 0 0 1 +client should client c cl cli clie BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 0 . 1 6 0 0 0 0 1 +18.23. Operation 18.23. 1 18 18. 18.2 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 7 ..:- 4 10 0 0 0 0 1 +18.23.1. ARGUMENTS 18.23.1. 1 18 18. 18.2 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 8 ... 3 10 0 0 0 0 1 +struct READDIR4args struct s st str stru BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 8 no 0 7 0 0 0 0 1 +/* CURRENT_FH: /* / /* /* /* BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 8 /*:*/ 5 10 0 0 0 0 1 +nfs_cookie4 nfs_cookie4 nfs_cookie4 n nf nfs nfs_ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 8 no 0 4 0 0 0 0 1 +cookie; cookie; cookie; c co coo cook BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 8 ; 1 2 0 0 0 0 1 +verifier4 verifier4 verifier4 v ve ver veri BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 8 no 0 3 0 0 0 0 1 +cookieverf; cookieverf; cookieverf; c co coo cook BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 8 ; 1 4 0 0 0 0 1 +count4 count4 count4 c co cou coun BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 8 no 0 2 0 0 0 0 1 +dircount; dircount; dircount; d di dir dirc BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 8 ; 1 3 0 0 0 0 1 +count4 count4 count4 c co cou coun BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 8 no 0 2 0 0 0 0 1 +maxcount; maxcount; maxcount; m ma max maxc BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 8 ; 1 3 0 0 0 0 1 +bitmap4 bitmap4 bitmap4 b bi bit bitm BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 8 no 0 2 0 0 0 0 1 +attr_request; attr_request; attr_request; a at att attr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 8 ; 1 5 0 0 0 0 1 +}; }; }; } }; }; }; BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 8 ; 1 1 0 0 0 0 1 +18.23.2. RESULTS 18.23.2. 1 18 18. 18.2 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 10 ... 3 10 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 9 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 11 , 1 10 0 0 0 0 0 +[Page 490] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 9 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 9 0 no 0 4 0 0 0 0 1 +struct entry4 struct s st str stru BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 0 no 0 10 0 0 0 0 1 +nfs_cookie4 nfs_cookie4 nfs_cookie4 n nf nfs nfs_ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 0 no 0 7 0 0 0 0 1 +cookie; cookie; cookie; c co coo cook BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 0 ; 1 5 0 0 0 0 1 +component4 component4 component4 c co com comp BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 0 no 0 6 0 0 0 0 1 +name; name; name; n na nam name BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 0 ; 1 3 0 0 0 0 1 +fattr4 fattr4 fattr4 f fa fat fatt BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 0 no 0 4 0 0 0 0 1 +attrs; attrs; attrs; a at att attr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 0 ; 1 4 0 0 0 0 1 +entry4 entry4 entry4 e en ent entr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 0 no 0 4 0 0 0 0 1 +*nextentry; *nextentry; *nextentry; * *n *ne *nex BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 0 *; 2 7 0 0 0 0 1 +}; }; }; } }; }; }; BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 0 ; 1 1 0 0 0 0 1 +struct dirlist4 struct s st str stru BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 1 no 0 10 0 0 0 0 1 +entry4 entry4 entry4 e en ent entr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 1 no 0 3 0 0 0 0 1 +*entries; *entries; *entries; * *e *en *ent BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 1 *; 2 5 0 0 0 0 1 +bool bool bool b bo boo bool BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 1 no 0 2 0 0 0 0 1 +eof; eof; eof; e eo eof eof; BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 1 ; 1 2 0 0 0 0 1 +}; }; }; } }; }; }; BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 1 ; 1 1 0 0 0 0 1 +struct READDIR4resok struct s st str stru BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 2 no 0 10 0 0 0 0 1 +verifier4 verifier4 verifier4 v ve ver veri BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 2 no 0 4 0 0 0 0 1 +cookieverf; cookieverf; cookieverf; c co coo cook BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 2 ; 1 5 0 0 0 0 1 +dirlist4 dirlist4 dirlist4 d di dir dirl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 2 no 0 3 0 0 0 0 1 +reply; reply; reply; r re rep repl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 2 ; 1 3 0 0 0 0 1 +}; }; }; } }; }; }; BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 2 ; 1 1 0 0 0 0 1 +union READDIR4res union u un uni unio BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 2 () 2 10 0 0 0 0 1 +case NFS4_OK: case c ca cas case BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 9 2 : 1 3 0 0 0 0 1 +READDIR4resok resok4; readdir4resok R RE REA READ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 2 ; 1 4 0 0 0 0 1 +default: default: default: d de def defa BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 2 : 1 2 0 0 0 0 1 +void; void; void; v vo voi void BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 2 ; 1 1 0 0 0 0 1 +}; }; }; } }; }; }; BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 2 ; 1 0 0 0 0 0 1 +18.23.3. DESCRIPTION 18.23.3. 1 18 18. 18.2 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 3 ... 3 10 0 0 0 0 1 +The READDIR the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 3 no 0 10 0 0 0 0 1 +file system file f fi fil file BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 3 - 1 9 0 0 0 0 1 +each entry each e ea eac each BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 3 no 0 9 0 0 0 0 1 +additional directory additional a ad add addi BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 3 . 1 7 0 0 0 0 1 +The arguments the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 5 no 0 9 0 0 0 0 1 +READDIR should readdir R RE REA READ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 5 . 1 9 0 0 0 0 1 +cookie is cookie c co coo cook BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 9 5 . 1 9 0 0 0 0 1 +For subsequent for F Fo For For BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 5 , 1 10 0 0 0 0 1 +that is that t th tha that BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 5 . 1 8 0 0 0 0 1 +The request's the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 8 ') 2 9 0 0 0 0 1 +request's cookie request's r re req requ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 8 '(). 4 9 0 0 0 0 1 +subsequent requests, subsequent s su sub subs BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 8 , 1 10 0 0 0 0 1 +returned by returned r re ret retu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 8 . 1 9 0 0 0 0 1 +server determines server s se ser serv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 8 no 0 9 0 0 0 0 1 +directory, the directory, d di dir dire BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 8 ,. 2 8 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 9 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 11 , 1 10 0 0 0 0 0 +[Page 491] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 9 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 9 0 no 0 4 0 0 0 0 1 +The dircount the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 0 no 0 9 0 0 0 0 1 +bytes of bytes b by byt byte BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 0 . 1 9 0 0 0 0 1 +represents the represents r re rep repr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 0 no 0 10 0 0 0 0 1 +the cookie the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 0 . 1 9 0 0 0 0 1 +encoding of encoding e en enc enco BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 0 () 2 9 0 0 0 0 1 +native format native n na nat nati BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 0 . 1 4 0 0 0 0 1 +The maxcount the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 1 no 0 9 0 0 0 0 1 +of all of o of of of BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 1 no 0 10 0 0 0 0 1 +and includes and a an and and BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 1 .. 2 9 0 0 0 0 1 +the server the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 1 no 0 9 0 0 0 0 1 +maxcount limit, maxcount m ma max maxc BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 1 , 1 9 0 0 0 0 1 +client. client. client. c cl cli clie BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 1 . 1 1 0 0 0 0 1 +Finally, the finally, F Fi Fin Fina BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 3 ,' 2 9 0 0 0 0 1 +attributes to attributes a at att attr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 3 no 0 10 0 0 0 0 1 +server. server. server. s se ser serv BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 3 . 1 1 0 0 0 0 1 +A successful a A A A A BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 1 0 0 0 0 0 9 3 . 1 10 0 0 0 0 1 +these entries these t th the thes BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 3 , 1 9 0 0 0 0 1 +value for value v va val valu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 3 ,. 2 9 0 0 0 0 1 +The "eof" the T Th The The BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 3 "" 2 9 0 0 0 0 1 +the directory. the t th the the BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 3 . 1 2 0 0 0 0 1 +The cookie the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 5 no 0 9 0 0 0 0 1 +cursor for cursor c cu cur curs BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 5 ., 2 9 0 0 0 0 1 +the client the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 5 no 0 9 0 0 0 0 1 +reading a reading r re rea read BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 5 . 1 9 0 0 0 0 1 +offset but offset o of off offs BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 5 ., 2 9 0 0 0 0 1 +the cookie the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 5 no 0 10 0 0 0 0 1 +the client the t th the the BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 5 . 1 5 0 0 0 0 1 +In some in I In In In BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 9 7 , 1 9 0 0 0 0 1 +attributes for attributes a at att attr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 7 . 1 9 0 0 0 0 1 +the entire the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 7 , 1 9 0 0 0 0 1 +attribute rdattr_error attribute a at att attr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 7 (...)., 7 9 0 0 0 0 1 +able to able a ab abl able BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 7 no 0 10 0 0 0 0 1 +operation in operation o op ope oper BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 7 . 1 9 0 0 0 0 1 +Obviously, the obviously, O Ob Obv Obvi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 7 , 1 9 0 0 0 0 1 +for this for f fo for for BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 7 . 1 9 0 0 0 0 1 +attribute, the attribute, a at att attr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 7 , 1 9 0 0 0 0 1 +entire READDIR entire e en ent enti BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 7 . 1 3 0 0 0 0 1 +For some for F Fo For For BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 10 ,"."".." 8 10 0 0 0 0 1 +have special have h ha hav have BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 10 ,,. 3 9 0 0 0 0 1 +server supports server s se ser serv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 10 , 1 10 0 0 0 0 1 +NOT be not N NO NOT NOT BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 9 10 . 1 9 0 0 0 0 1 +enable some enable e en ena enab BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 10 ,,, 3 9 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 9 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 11 , 1 10 0 0 0 0 0 +[Page 492] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 9 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 9 0 no 0 4 0 0 0 0 1 +are to are a ar are are BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 0 . 1 9 0 0 0 0 1 +these values these t th the thes BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 0 ' 1 8 0 0 0 0 1 +representations to representations r re rep repr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 0 no 0 10 0 0 0 0 1 +to the to t to to to BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 0 . 1 2 0 0 0 0 1 +For READDIR for F Fo For For BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 1 , 1 9 0 0 0 0 1 +used, and used, u us use used BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 1 ,,,, 4 10 0 0 0 0 1 +SHOULD NOT should S SH SHO SHOU BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 9 1 . 1 3 0 0 0 0 1 +On success, on O On On On BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 2 ,. 2 10 0 0 0 0 1 +18.23.4. IMPLEMENTATION 18.23.4. 1 18 18. 18.2 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 2 ... 3 10 0 0 0 0 1 +The server's the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 2 ' 1 8 0 0 0 0 1 +greatly. A greatly. g gr gre grea BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 2 .' 2 9 0 0 0 0 1 +local operating local l lo loc loca BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 2 no 0 9 0 0 0 0 1 +into the into i in int into BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 2 ., 2 8 0 0 0 0 1 +maxcount fields maxcount m ma max maxc BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 2 no 0 10 0 0 0 0 1 +the server. the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 2 . 1 9 0 0 0 0 1 +during a during d du dur duri BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 2 , 1 9 0 0 0 0 1 +response. response. response. r re res resp BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 2 . 1 1 0 0 0 0 1 +If dircount if I If If If BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 5 ,' 2 10 0 0 0 0 1 +request's maxcount request's r re req requ BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 5 '. 2 3 0 0 0 0 1 +The cookieverf the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 5 no 0 10 0 0 0 0 1 +that may that t th tha that BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 5 . 1 9 0 0 0 0 1 +is unable is i is is is BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 5 no 0 9 0 0 0 0 1 +cookie/cookieverf pair. cookie/cookieverf c co coo cook BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 5 /. 2 9 0 0 0 0 1 +this condition this t th thi this BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 5 no 0 10 0 0 0 0 1 +properly handle properly p pr pro prop BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 5 . 1 5 0 0 0 0 1 +The use the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 7 no 0 9 0 0 0 0 1 +READDIR cookie readdir R RE REA READ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 7 ., 2 9 0 0 0 0 1 +system has system s sy sys syst BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 7 , 1 9 0 0 0 0 1 +use the use u us use use BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 7 no 0 10 0 0 0 0 1 +used. With used. u us use used BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 7 ., 2 9 0 0 0 0 1 +to provide to t to to to BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 7 . 1 10 0 0 0 0 1 +case where case c ca cas case BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 9 7 no 0 9 0 0 0 0 1 +directory has directory d di dir dire BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 7 ' 1 9 0 0 0 0 1 +context of context c co con cont BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 7 . 1 4 0 0 0 0 1 +Since some since S Si Sin Sinc BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 10 "."".." 7 9 0 0 0 0 1 +been done been b be bee been BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 10 , 1 10 0 0 0 0 1 +requires these requires r re req requ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 10 no 0 10 0 0 0 0 1 +them. them. them. t th the them BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 10 . 1 0 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 9 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 11 , 1 10 0 0 0 0 0 +[Page 493] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 9 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 9 0 no 0 4 0 0 0 0 1 +18.24. Operation 18.24. 1 18 18. 18.2 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 0 ..:- 4 10 0 0 0 0 1 +18.24.1. ARGUMENTS 18.24.1. 1 18 18. 18.2 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 0 ... 3 10 0 0 0 0 1 +/* CURRENT_FH: /* / /* /* /* BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 1 /*:*/ 5 10 0 0 0 0 1 +void; void; void; v vo voi void BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 1 ; 1 2 0 0 0 0 1 +18.24.2. RESULTS 18.24.2. 1 18 18. 18.2 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 1 ... 3 10 0 0 0 0 1 +struct READLINK4resok struct s st str stru BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 1 no 0 10 0 0 0 0 1 +linktext4 linktext4 linktext4 l li lin link BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 1 no 0 4 0 0 0 0 1 +link; link; link; l li lin link BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 1 ; 1 2 0 0 0 0 1 +}; }; }; } }; }; }; BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 1 ; 1 1 0 0 0 0 1 +union READLINK4res union u un uni unio BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 2 () 2 10 0 0 0 0 1 +case NFS4_OK: case c ca cas case BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 9 2 : 1 3 0 0 0 0 1 +READLINK4resok resok4; readlink4resok R RE REA READ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 2 ; 1 5 0 0 0 0 1 +default: default: default: d de def defa BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 2 : 1 1 0 0 0 0 1 +void; void; void; v vo voi void BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 2 ; 1 1 0 0 0 0 1 +}; }; }; } }; }; }; BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 2 ; 1 0 0 0 0 0 1 +18.24.3. DESCRIPTION 18.24.3. 1 18 18. 18.2 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 2 ... 3 10 0 0 0 0 1 +READLINK reads readlink R RE REA READ BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 3 . 1 9 0 0 0 0 1 +on the on o on on on BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 3 -(.), 5 9 0 0 0 0 1 +data is data d da dat data BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 3 -. 2 8 0 0 0 0 1 +created locally created c cr cre crea BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 3 , 1 9 0 0 0 0 1 +interpreted (except interpreted i in int inte BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 3 (-) 3 10 0 0 0 0 1 +created, but created, c cr cre crea BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 3 ,. 2 4 0 0 0 0 1 +On success, on O On On On BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 6 ,. 2 10 0 0 0 0 1 +18.24.4. IMPLEMENTATION 18.24.4. 1 18 18. 18.2 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 6 ... 3 10 0 0 0 0 1 +A symbolic a A A A A BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 1 0 0 0 0 0 9 6 . 1 9 0 0 0 0 1 +not necessarily not n no not not BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 6 ,. 2 9 0 0 0 0 1 +It is it I It It It BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 6 no 0 9 0 0 0 0 1 +is not is i is is is BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 6 . 1 10 0 0 0 0 1 +A READLINK a A A A A BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 1 0 0 0 0 0 9 6 no 0 8 0 0 0 0 1 +interpretation. If interpretation. i in int inte BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 6 . 1 10 0 0 0 0 1 +symbolic links, symbolic s sy sym symb BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 6 , 1 9 0 0 0 0 1 +data in data d da dat data BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 6 . 1 3 0 0 0 0 1 +The READLINK the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 10 . 1 9 0 0 0 0 1 +The server the T Th The The BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 10 no 0 10 0 0 0 0 1 +is not is i is is is BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 10 . 1 3 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 9 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 11 , 1 10 0 0 0 0 0 +[Page 494] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 9 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 9 0 no 0 4 0 0 0 0 1 +18.25. Operation 18.25. 1 18 18. 18.2 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 0 ..:- 4 10 0 0 0 0 1 +18.25.1. ARGUMENTS 18.25.1. 1 18 18. 18.2 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 1 ... 3 10 0 0 0 0 1 +struct REMOVE4args struct s st str stru BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 1 no 0 7 0 0 0 0 1 +/* CURRENT_FH: /* / /* /* /* BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 1 /*:*/ 5 10 0 0 0 0 1 +component4 component4 component4 c co com comp BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 1 no 0 3 0 0 0 0 1 +target; target; target; t ta tar targ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 1 ; 1 2 0 0 0 0 1 +}; }; }; } }; }; }; BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 1 ; 1 1 0 0 0 0 1 +18.25.2. RESULTS 18.25.2. 1 18 18. 18.2 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 2 ... 3 10 0 0 0 0 1 +struct REMOVE4resok struct s st str stru BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 2 no 0 10 0 0 0 0 1 +change_info4 change_info4 change_info4 c ch cha chan BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 2 no 0 5 0 0 0 0 1 +cinfo; cinfo; cinfo; c ci cin cinf BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 2 ; 1 3 0 0 0 0 1 +}; }; }; } }; }; }; BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 2 ; 1 1 0 0 0 0 1 +union REMOVE4res union u un uni unio BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 2 () 2 10 0 0 0 0 1 +case NFS4_OK: case c ca cas case BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 9 2 : 1 3 0 0 0 0 1 +REMOVE4resok REMOVE4resok remove4resok R RE REM REMO BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 2 no 0 2 0 0 0 0 1 +resok4; resok4; resok4; r re res reso BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 2 ; 1 1 0 0 0 0 1 +default: default: default: d de def defa BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 2 : 1 2 0 0 0 0 1 +void; void; void; v vo voi void BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 2 ; 1 1 0 0 0 0 1 +}; }; }; } }; }; }; BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 2 ; 1 0 0 0 0 0 1 +18.25.3. DESCRIPTION 18.25.3. 1 18 18. 18.2 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 3 ... 3 10 0 0 0 0 1 +The REMOVE the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 4 () 2 9 0 0 0 0 1 +filename from filename f fi fil file BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 4 . 1 10 0 0 0 0 1 +If the if I If If If BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 4 no 0 8 0 0 0 0 1 +corresponding file corresponding c co cor corr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 4 ,. 2 9 0 0 0 0 1 +directory may directory d di dir dire BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 4 . 1 7 0 0 0 0 1 +For the for F Fo For For BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 6 , 1 10 0 0 0 0 1 +change_info4 information change_info4 c ch cha chan BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 6 . 1 9 0 0 0 0 1 +change_info4 data change_info4 c ch cha chan BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 6 , 1 9 0 0 0 0 1 +after change after a af aft afte BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 6 no 0 10 0 0 0 0 1 +removal. removal. removal. r re rem remo BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 6 . 1 1 0 0 0 0 1 +If the if I If If If BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 8 , 1 9 0 0 0 0 1 +the UTF-8 the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 8 -(-; 4 10 0 0 0 0 1 +Section 14.4), section S Se Sec Sect BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 8 .),. 4 8 0 0 0 0 1 +On success, on O On On On BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 10 ,. 2 10 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 9 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 11 , 1 10 0 0 0 0 0 +[Page 495] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 9 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 9 0 no 0 4 0 0 0 0 1 +18.25.4. IMPLEMENTATION 18.25.4. 1 18 18. 18.2 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 0 ... 3 10 0 0 0 0 1 +NFSv3 required nfsv3 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 0 no 0 9 0 0 0 0 1 +REMOVE for remove R RE REM REMO BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 9 0 -. 2 9 0 0 0 0 1 +checking the checking c ch che chec BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 0 - 1 9 0 0 0 0 1 +system call system s sy sys syst BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 0 (..,()[]), 10 9 0 0 0 0 1 +well as well w we wel well BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 0 (..,()-) 8 9 0 0 0 0 1 +they knew they t th the they BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 0 .. 2 9 0 0 0 0 1 +be used be b be be be BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 0 . 1 9 0 0 0 0 1 +The implementor the T Th The The BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 0 .'() 4 10 0 0 0 0 1 +and rmdir() and a an and and BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 0 () 2 10 0 0 0 0 1 +types the types t ty typ type BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 0 no 0 9 0 0 0 0 1 +operation. Alternatively, operation. o op ope oper BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 0 ., 2 9 0 0 0 0 1 +call that call c ca cal call BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 9 0 / 1 9 0 0 0 0 1 +the file the t th the the BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 0 . 1 9 0 0 0 0 1 +The concept the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 4 ., 2 9 0 0 0 0 1 +numlinks field numlinks n nu num numl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 4 no 0 10 0 0 0 0 1 +1, the 1, 1 1, 1, 1, BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 4 , 1 9 0 0 0 0 1 +filehandle. Likewise, filehandle. f fi fil file BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 4 ., 2 9 0 0 0 0 1 +(disk space, (disk ( (d (di (dis BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 4 (,,) 4 10 0 0 0 0 1 +object becoming object o ob obj obje BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 4 ., 2 9 0 0 0 0 1 +able to able a ab abl able BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 4 , 1 9 0 0 0 0 1 +the client the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 4 no 0 10 0 0 0 0 1 +accessible. While accessible. a ac acc acce BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 4 . 1 9 0 0 0 0 1 +file from file f fi fil file BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 4 ,. 2 8 0 0 0 0 1 +operation MAY operation o op ope oper BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 4 ,, 2 9 0 0 0 0 1 +which indicates which w wh whi whic BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 4 no 0 9 0 0 0 0 1 +file has file f fi fil file BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 4 (.). 4 7 0 0 0 0 1 +If the if I If If If BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 8 no 0 10 0 0 0 0 1 +arrives: arrives: arrives: a ar arr arri BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 8 : 1 1 0 0 0 0 1 +o The o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 9 8 ' 1 10 0 0 0 0 1 +file was file f fi fil file BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 8 no 0 7 0 0 0 0 1 +OPEN4_SHARE_DENY_BOTH. OPEN4_SHARE_DENY_BOTH. open4_share_deny_both. O OP OPE OPEN BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 8 . 1 3 0 0 0 0 1 +o If o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 9 9 no 0 10 0 0 0 0 1 +OPEN4_SHARE_DENY_BOTH, the open4_share_deny_both, O OP OPE OPEN BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 9 ,' 2 9 0 0 0 0 1 +directory entry. directory d di dir dire BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 9 .,, 3 10 0 0 0 0 1 +server MAY server s se ser serv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 9 no 0 9 0 0 0 0 1 +filehandle. filehandle. filehandle. f fi fil file BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 9 . 1 2 0 0 0 0 1 +o The o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 9 10 no 0 10 0 0 0 0 1 +OPEN had open O OP OPE OPEN BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 9 10 . 1 8 0 0 0 0 1 +The server the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 11 no 0 10 0 0 0 0 1 +while it while w wh whi whil BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 11 .( 2 9 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 9 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 11 , 1 10 0 0 0 0 0 +[Page 496] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 9 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 9 0 no 0 4 0 0 0 0 1 +removal that removal r re rem remo BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 0 ). 2 9 0 0 0 0 1 +influence the influence i in inf infl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 0 no 0 10 0 0 0 0 1 +open include: open o op ope open BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 0 : 1 2 0 0 0 0 1 +o Whether o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 9 1 (..,) 5 10 0 0 0 0 1 +the file the t th the the BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 1 . 1 2 0 0 0 0 1 +o Whether o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 9 1 ,, 2 10 0 0 0 0 1 +server are server s se ser serv BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 1 . 1 3 0 0 0 0 1 +If a if I If If If BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 2 no 0 9 0 0 0 0 1 +the file's the t th the the BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 2 ',. 3 10 0 0 0 0 1 +Where the where W Wh Whe Wher BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 2 no 0 9 0 0 0 0 1 +delegations are delegations d de del dele BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 2 , 1 10 0 0 0 0 1 +of the of o of of of BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 2 ., 2 9 0 0 0 0 1 +no reliable no n no no no BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 2 , 1 9 0 0 0 0 1 +unless there unless u un unl unle BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 2 no 0 9 0 0 0 0 1 +clients without clients c cl cli clie BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 2 , 1 9 0 0 0 0 1 +delegations are delegations d de del dele BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 2 , 1 10 0 0 0 0 1 +sufficient delegation sufficient s su suf suff BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 2 no 0 9 0 0 0 0 1 +server to server s se ser serv BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 2 . 1 5 0 0 0 0 1 +In all in I In In In BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 9 5 , 1 10 0 0 0 0 1 +to return to t to to to BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 5 no 0 9 0 0 0 0 1 +outstanding. outstanding. outstanding. o ou out outs BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 5 . 1 1 0 0 0 0 1 +If the if I If If If BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 6 no 0 9 0 0 0 0 1 +client holds client c cl cli clie BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 6 ,, 2 9 0 0 0 0 1 +be resolved be b be be be BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 6 , 1 10 0 0 0 0 1 +be recalled, be b be be be BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 6 , 1 10 0 0 0 0 1 +is returned is i is is is BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 6 ., 2 9 0 0 0 0 1 +or more or o or or or BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 6 no 0 10 0 0 0 0 1 +delegation remains delegation d de del dele BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 6 . 1 4 0 0 0 0 1 +When the when W Wh Whe When BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 8 no 0 9 0 0 0 0 1 +more directory more m mo mor more BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 8 ,, 2 9 0 0 0 0 1 +request such request r re req requ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 8 , 1 10 0 0 0 0 1 +a result a a a a a BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 1 0 0 0 0 0 9 8 . 1 4 0 0 0 0 1 +Note that note N No Not Note BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 9 , 1 8 0 0 0 0 1 +NOTIFY4_REMOVE_ENTRY will notify4_remove_entry N NO NOT NOTI BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 9 no 0 10 0 0 0 0 1 +a separate a a a a a BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 1 0 0 0 0 0 9 9 . 1 9 0 0 0 0 1 +and atomic and a an and and BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 9 , 1 10 0 0 0 0 1 +with notification with w wi wit with BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 9 . 1 8 0 0 0 0 1 +NOTIFY4_RENAME_ENTRY notification notify4_rename_entry N NO NOT NOTI BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 9 .. 2 7 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 9 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 11 , 1 10 0 0 0 0 0 +[Page 497] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 9 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 9 0 no 0 4 0 0 0 0 1 +18.26. Operation 18.26. 1 18 18. 18.2 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 0 ..:- 4 10 0 0 0 0 1 +18.26.1. ARGUMENTS 18.26.1. 1 18 18. 18.2 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 0 ... 3 10 0 0 0 0 1 +struct RENAME4args struct s st str stru BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 1 no 0 6 0 0 0 0 1 +/* SAVED_FH: /* / /* /* /* BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 1 /*:*/ 5 9 0 0 0 0 1 +component4 component4 component4 c co com comp BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 1 no 0 3 0 0 0 0 1 +oldname; oldname; oldname; o ol old oldn BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 1 ; 1 2 0 0 0 0 1 +/* CURRENT_FH: /* / /* /* /* BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 1 /*:*/ 5 10 0 0 0 0 1 +component4 component4 component4 c co com comp BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 1 no 0 3 0 0 0 0 1 +newname; newname; newname; n ne new newn BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 1 ; 1 2 0 0 0 0 1 +}; }; }; } }; }; }; BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 1 ; 1 0 0 0 0 0 1 +18.26.2. RESULTS 18.26.2. 1 18 18. 18.2 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 2 ... 3 10 0 0 0 0 1 +struct RENAME4resok struct s st str stru BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 2 no 0 10 0 0 0 0 1 +change_info4 change_info4 change_info4 c ch cha chan BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 2 no 0 5 0 0 0 0 1 +source_cinfo; source_cinfo; source_cinfo; s so sou sour BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 2 ; 1 6 0 0 0 0 1 +change_info4 change_info4 change_info4 c ch cha chan BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 2 no 0 5 0 0 0 0 1 +target_cinfo; target_cinfo; target_cinfo; t ta tar targ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 2 ; 1 6 0 0 0 0 1 +}; }; }; } }; }; }; BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 2 ; 1 1 0 0 0 0 1 +union RENAME4res union u un uni unio BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 2 () 2 10 0 0 0 0 1 +case NFS4_OK: case c ca cas case BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 9 2 : 1 3 0 0 0 0 1 +RENAME4resok RENAME4resok rename4resok R RE REN RENA BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 2 no 0 2 0 0 0 0 1 +resok4; resok4; resok4; r re res reso BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 2 ; 1 1 0 0 0 0 1 +default: default: default: d de def defa BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 2 : 1 2 0 0 0 0 1 +void; void; void; v vo voi void BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 2 ; 1 1 0 0 0 0 1 +}; }; }; } }; }; }; BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 2 ; 1 0 0 0 0 0 1 +18.26.3. DESCRIPTION 18.26.3. 1 18 18. 18.2 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 3 ... 3 10 0 0 0 0 1 +The RENAME the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 3 no 0 9 0 0 0 0 1 +source directory source s so sou sour BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 3 , 1 10 0 0 0 0 1 +SAVEFH operation, savefh S SA SAV SAVE BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 3 , 1 10 0 0 0 0 1 +the current the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 3 . 1 9 0 0 0 0 1 +the client. the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 3 . 1 9 0 0 0 0 1 +file system file f fi fil file BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 3 ., 2 9 0 0 0 0 1 +continue to continue c co con cont BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 3 . 1 5 0 0 0 0 1 +If the if I If If If BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 6 no 0 9 0 0 0 0 1 +newname, the newname, n ne new newn BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 6 ,: 2 10 0 0 0 0 1 +both are both b bo bot both BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 6 - 1 9 0 0 0 0 1 +be empty. be b be be be BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 6 ., 2 9 0 0 0 0 1 +rename occurs rename r re ren rena BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 6 ,, 2 9 0 0 0 0 1 +part of part p pa par part BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 6 ... 3 8 0 0 0 0 1 +actions whenever actions a ac act acti BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 6 . 1 9 0 0 0 0 1 +removal is removal r re rem remo BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 6 , 1 10 0 0 0 0 1 +removal described removal r re rem remo BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 6 ., 2 9 0 0 0 0 1 +notification of notification n no not noti BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 6 no 0 9 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 9 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 11 , 1 10 0 0 0 0 0 +[Page 498] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 9 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 9 0 no 0 4 0 0 0 0 1 +but will but b bu but but BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 0 no 0 10 0 0 0 0 1 +NOTIFY4_RENAME_ENTRY generated notify4_rename_entry N NO NOT NOTI BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 0 . 1 7 0 0 0 0 1 +If the if I If If If BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 0 no 0 9 0 0 0 0 1 +target is target t ta tar targ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 0 , 1 10 0 0 0 0 1 +NFS4ERR_EXIST. NFS4ERR_EXIST. nfs4err_exist. N NF NFS NFS4 BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 0 . 1 2 0 0 0 0 1 +If oldname if I If If If BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 1 (.., 4 10 0 0 0 0 1 +be hard be b be be be BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 1 ),( 3 9 0 0 0 0 1 +Section 18.26.4), section S Se Sec Sect BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 1 ..),. 5 9 0 0 0 0 1 +For both for F Fo For For BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 2 , 1 9 0 0 0 0 1 +change_info4 information. change_info4 c ch cha chan BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 2 . 1 10 0 0 0 0 1 +data type, data d da dat data BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 2 , 1 9 0 0 0 0 1 +attributes were attributes a at att attr BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 2 . 1 9 0 0 0 0 1 +If oldname if I If If If BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 3 no 0 9 0 0 0 0 1 +filehandles refer filehandles f fi fil file BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 3 , 1 10 0 0 0 0 1 +return NFS4ERR_XDEV return r re ret retu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 3 no 0 9 0 0 0 0 1 +represented directories represented r re rep repr BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 3 . 1 7 0 0 0 0 1 +If oldname if I If If If BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 5 , 1 10 0 0 0 0 1 +does not does d do doe does BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 5 -, 2 9 0 0 0 0 1 +returned. returned. returned. r re ret retu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 5 . 1 1 0 0 0 0 1 +18.26.4. IMPLEMENTATION 18.26.4. 1 18 18. 18.2 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 5 ... 3 10 0 0 0 0 1 +The server the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 5 no 0 9 0 0 0 0 1 +RENAME may rename R RE REN RENA BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 9 5 no 0 9 0 0 0 0 1 +that open that t th tha that BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 5 , 1 10 0 0 0 0 1 +or access or o or or or BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 5 . 1 9 0 0 0 0 1 +exists with exists e ex exi exis BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 5 . 1 9 0 0 0 0 1 +because of because b be bec beca BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 5 , 1 8 0 0 0 0 1 +returned. returned. returned. r re ret retu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 5 . 1 1 0 0 0 0 1 +When oldname when W Wh Whe When BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 7 no 0 10 0 0 0 0 1 +in a in i in in in BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 9 7 no 0 8 0 0 0 0 1 +NFS4ERR_FILE_OPEN if nfs4err_file_open N NF NFS NFS4 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 7 , 1 9 0 0 0 0 1 +RENAME SHOULD rename R RE REN RENA BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 9 7 . 1 7 0 0 0 0 1 +If a if I If If If BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 9 no 0 10 0 0 0 0 1 +include cases include i in inc incl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 9 no 0 9 0 0 0 0 1 +rename, the rename, r re ren rena BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 9 , 1 9 0 0 0 0 1 +the existence the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 9 . 1 9 0 0 0 0 1 +when a when w wh whe when BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 9 , 1 9 0 0 0 0 1 +accurate account accurate a ac acc accu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 9 , 1 10 0 0 0 0 1 +execute OPENs execute e ex exe exec BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 9 . 1 10 0 0 0 0 1 +delayed until delayed d de del dela BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 9 ., 2 9 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 9 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 11 , 1 10 0 0 0 0 0 +[Page 499] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 9 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 9 0 no 0 4 0 0 0 0 1 +there are there t th the ther BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 0 no 0 9 0 0 0 0 1 +whose presence whose w wh who whos BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 0 ,' 2 8 0 0 0 0 1 +semantics, NFS4ERR_FILE_OPEN semantics, s se sem sema BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 0 , 1 10 0 0 0 0 1 +that delegation that t th tha that BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 0 no 0 9 0 0 0 0 1 +be returned. be b be be be BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 0 ., 2 8 0 0 0 0 1 +delegations, NFS4ERR_FILE_OPEN delegations, d de del dele BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 0 , 1 9 0 0 0 0 1 +delegation recall delegation d de del dele BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 0 . 1 4 0 0 0 0 1 +If the if I If If If BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 2 no 0 9 0 0 0 0 1 +directory for directory d di dir dire BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 2 , 1 9 0 0 0 0 1 +then, unless then, t th the then BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 2 ,, 2 10 0 0 0 0 1 +the delegation the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 2 , 1 9 0 0 0 0 1 +until the until u un unt unti BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 2 . 1 9 0 0 0 0 1 +happens very happens h ha hap happ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 2 , 1 9 0 0 0 0 1 +returned to returned r re ret retu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 2 . 1 9 0 0 0 0 1 +When the when W Wh Whe When BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 3 no 0 8 0 0 0 0 1 +designate a designate d de des desi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 3 no 0 9 0 0 0 0 1 +exist, then, exist, e ex exi exis BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 3 ,,, 3 9 0 0 0 0 1 +notification of notification n no not noti BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 3 no 0 9 0 0 0 0 1 +result of result r re res resu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 3 . 1 9 0 0 0 0 1 +file, no file, f fi fil file BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 3 ,(,.. 5 9 0 0 0 0 1 +states, the states, s st sta stat BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 3 ,). 3 9 0 0 0 0 1 +because it because b be bec beca BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 3 , 1 9 0 0 0 0 1 +atomically with atomically a at ato atom BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 3 , 1 10 0 0 0 0 1 +not be not n no not not BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 3 ., 2 10 0 0 0 0 1 +as part as a as as as BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 3 . 1 7 0 0 0 0 1 +When the when W Wh Whe When BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 7 : 1 10 0 0 0 0 1 +o If o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 9 7 no 0 10 0 0 0 0 1 +more directory more m mo mor more BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 7 ,, 2 9 0 0 0 0 1 +request such request r re req requ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 7 , 1 9 0 0 0 0 1 +a result a a a a a BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 1 0 0 0 0 0 9 7 . 1 9 0 0 0 0 1 +the same the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 7 , 1 9 0 0 0 0 1 +with the with w wi wit with BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 7 , 1 9 0 0 0 0 1 +generated. Instead, generated. g ge gen gene BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 7 ., 2 9 0 0 0 0 1 +part of part p pa par part BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 7 . 1 6 0 0 0 0 1 +o If o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 9 9 no 0 9 0 0 0 0 1 +more directory more m mo mor more BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 9 ,, 2 9 0 0 0 0 1 +request such request r re req requ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 9 , 1 10 0 0 0 0 1 +as a as a as as as BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 9 . 1 4 0 0 0 0 1 +If the if I If If If BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 10 no 0 9 0 0 0 0 1 +other than other o ot oth othe BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 10 , 1 8 0 0 0 0 1 +recalled, and recalled, r re rec reca BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 10 , 1 10 0 0 0 0 1 +is returned is i is is is BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 10 . 1 9 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 9 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 11 , 1 10 0 0 0 0 0 +[Page 500] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 9 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 9 0 no 0 4 0 0 0 0 1 +files, the files, f fi fil file BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 0 , 1 8 0 0 0 0 1 +delegation was delegation d de del dele BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 0 no 0 10 0 0 0 0 1 +renamed. In renamed. r re ren rena BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 0 ., 2 10 0 0 0 0 1 +is likely is i is is is BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 0 no 0 9 0 0 0 0 1 +delegation(s) remains delegation(s) d de del dele BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 0 (), 3 10 0 0 0 0 1 +the delegations the t th the the BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 0 . 1 5 0 0 0 0 1 +The RENAME the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 2 . 1 9 0 0 0 0 1 +"source and "source " "s "so "sou BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 2 " 1 10 0 0 0 0 1 +the server" the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 2 " 1 9 0 0 0 0 1 +directories are directories d di dir dire BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 2 ., 2 9 0 0 0 0 1 +the error the t th the the BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 2 . 1 5 0 0 0 0 1 +Based on based B Ba Bas Base BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 4 , 1 9 0 0 0 0 1 +the filehandle the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 4 ., 2 9 0 0 0 0 1 +implementors are implementors i im imp impl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 4 no 0 10 0 0 0 0 1 +from expiring from f fr fro from BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 4 . 1 4 0 0 0 0 1 +On some on O On On On BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 6 ,"."".." 8 9 0 0 0 0 1 +oldname or oldname o ol old oldn BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 6 ,. 2 10 0 0 0 0 1 +addition, on addition, a ad add addi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 6 , 1 9 0 0 0 0 1 +alias for alias a al ali alia BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 6 . 1 9 0 0 0 0 1 +will return will w wi wil will BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 9 6 . 1 7 0 0 0 0 1 +If either if I If If If BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 8 , 1 10 0 0 0 0 1 +the server the t th the the BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 8 . 1 5 0 0 0 0 1 +18.27. Operation 18.27. 1 18 18. 18.2 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 9 ..:- 4 10 0 0 0 0 1 +18.27.1. ARGUMENTS 18.27.1. 1 18 18. 18.2 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 9 ... 3 10 0 0 0 0 1 +/* SAVED_FH: /* / /* /* /* BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 10 /*:*/ 5 10 0 0 0 0 1 +void; void; void; v vo voi void BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 10 ; 1 3 0 0 0 0 1 +18.27.2. RESULTS 18.27.2. 1 18 18. 18.2 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 10 ... 3 10 0 0 0 0 1 +struct RESTOREFH4res struct s st str stru BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 10 no 0 6 0 0 0 0 1 +/* /* /* / /* /* /* BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 10 /* 2 0 0 0 0 0 1 +* If * * * * * BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 10 *, 2 7 0 0 0 0 1 +* * * * * * * BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 10 * 1 0 0 0 0 0 1 +new CURRENT_FH: new n ne new new BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 10 : 1 10 0 0 0 0 1 +*/ */ */ * */ */ */ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 10 */ 2 0 0 0 0 0 1 +nfsstat4 nfsstat4 nfsstat4 n nf nfs nfss BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 10 no 0 2 0 0 0 0 1 +status; status; status; s st sta stat BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 10 ; 1 2 0 0 0 0 1 +}; }; }; } }; }; }; BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 10 ; 1 0 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 9 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 11 , 1 10 0 0 0 0 0 +[Page 501] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 9 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 9 0 no 0 4 0 0 0 0 1 +18.27.3. DESCRIPTION 18.27.3. 1 18 18. 18.2 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 0 ... 3 10 0 0 0 0 1 +The RESTOREFH the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 0 no 0 9 0 0 0 0 1 +the values the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 0 . 1 10 0 0 0 0 1 +filehandle, then filehandle, f fi fil file BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 0 , 1 7 0 0 0 0 1 +NFS4ERR_NOFILEHANDLE. NFS4ERR_NOFILEHANDLE. nfs4err_nofilehandle. N NF NFS NFS4 BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 0 . 1 3 0 0 0 0 1 +See Section see S Se See See BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 9 2 ..... 5 10 0 0 0 0 1 +See Section see S Se See See BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 9 3 ..... 5 10 0 0 0 0 1 +18.27.4. IMPLEMENTATION 18.27.4. 1 18 18. 18.2 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 3 ... 3 10 0 0 0 0 1 +Operations like operations O Op Ope Oper BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 9 4 no 0 8 0 0 0 0 1 +represent a represent r re rep repr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 4 . 1 10 0 0 0 0 1 +that the that t th tha that BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 4 , 1 9 0 0 0 0 1 +previous filehandle previous p pr pre prev BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 4 . 1 9 0 0 0 0 1 +is commonly is i is is is BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 4 - 1 8 0 0 0 0 1 +directory, e.g., directory, d di dir dire BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 4 ,.., 4 2 0 0 0 0 1 +PUTFH (directory putfh P PU PUT PUTF BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 7 () 2 10 0 0 0 0 1 +SAVEFH SAVEFH savefh S SA SAV SAVE BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 7 no 0 2 0 0 0 0 1 +GETATTR attrbits getattr G GE GET GETA BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 7 no 0 5 0 0 0 0 1 +(pre-op dir (pre-op ( (p (pr (pre BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 7 (-) 3 6 0 0 0 0 1 +CREATE optbits create C CR CRE CREA BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 9 7 "" 2 9 0 0 0 0 1 +GETATTR attrbits getattr G GE GET GETA BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 7 no 0 5 0 0 0 0 1 +(file attributes) (file ( (f (fi (fil BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 7 () 2 6 0 0 0 0 1 +RESTOREFH RESTOREFH restorefh R RE RES REST BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 7 no 0 3 0 0 0 0 1 +GETATTR attrbits getattr G GE GET GETA BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 7 no 0 5 0 0 0 0 1 +(post-op dir (post-op ( (p (po (pos BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 7 (-) 3 6 0 0 0 0 1 +18.28. Operation 18.28. 1 18 18. 18.2 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 8 ..:- 4 10 0 0 0 0 1 +18.28.1. ARGUMENTS 18.28.1. 1 18 18. 18.2 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 9 ... 3 10 0 0 0 0 1 +/* CURRENT_FH: /* / /* /* /* BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 9 /*:*/ 5 10 0 0 0 0 1 +void; void; void; v vo voi void BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 9 ; 1 3 0 0 0 0 1 +18.28.2. RESULTS 18.28.2. 1 18 18. 18.2 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 9 ... 3 10 0 0 0 0 1 +struct SAVEFH4res struct s st str stru BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 10 no 0 5 0 0 0 0 1 +/* /* /* / /* /* /* BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 10 /* 2 0 0 0 0 0 1 +* If * * * * * BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 10 *, 2 7 0 0 0 0 1 +* * * * * * * BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 10 * 1 0 0 0 0 0 1 +new SAVED_FH: new n ne new new BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 10 : 1 10 0 0 0 0 1 +*/ */ */ * */ */ */ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 10 */ 2 0 0 0 0 0 1 +nfsstat4 nfsstat4 nfsstat4 n nf nfs nfss BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 10 no 0 2 0 0 0 0 1 +status; status; status; s st sta stat BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 10 ; 1 2 0 0 0 0 1 +}; }; }; } }; }; }; BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 10 ; 1 0 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 9 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 11 , 1 10 0 0 0 0 0 +[Page 502] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 9 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 9 0 no 0 4 0 0 0 0 1 +18.28.3. DESCRIPTION 18.28.3. 1 18 18. 18.2 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 0 ... 3 10 0 0 0 0 1 +The SAVEFH the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 1 . 1 10 0 0 0 0 1 +previous filehandle previous p pr pre prev BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 1 ,. 2 10 0 0 0 0 1 +saved filehandle saved s sa sav save BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 1 no 0 10 0 0 0 0 1 +RESTOREFH operator. restorefh R RE RES REST BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 1 . 1 2 0 0 0 0 1 +On success, on O On On On BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 4 ,. 2 10 0 0 0 0 1 +See Section see S Se See See BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 9 5 ..... 5 10 0 0 0 0 1 +See Section see S Se See See BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 9 6 ..... 5 10 0 0 0 0 1 +18.28.4. IMPLEMENTATION 18.28.4. 1 18 18. 18.2 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 7 ... 3 10 0 0 0 0 1 +18.29. Operation 18.29. 1 18 18. 18.2 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 8 ..:- 4 10 0 0 0 0 1 +18.29.1. ARGUMENTS 18.29.1. 1 18 18. 18.2 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 8 ... 3 10 0 0 0 0 1 +struct SECINFO4args struct s st str stru BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 9 no 0 7 0 0 0 0 1 +/* CURRENT_FH: /* / /* /* /* BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 9 /*:*/ 5 10 0 0 0 0 1 +component4 component4 component4 c co com comp BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 9 no 0 3 0 0 0 0 1 +name; name; name; n na nam name BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 9 ; 1 2 0 0 0 0 1 +}; }; }; } }; }; }; BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 9 ; 1 1 0 0 0 0 1 +18.29.2. RESULTS 18.29.2. 1 18 18. 18.2 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 10 ... 3 10 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 9 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 11 , 1 10 0 0 0 0 0 +[Page 503] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 9 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 9 0 no 0 4 0 0 0 0 1 +/* /* /* / /* /* /* BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 0 /* 2 1 0 0 0 0 1 +* From * * * * * BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 0 * 1 7 0 0 0 0 1 +*/ */ */ * */ */ */ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 0 */ 2 1 0 0 0 0 1 +enum rpc_gss_svc_t enum e en enu enum BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 0 no 0 9 0 0 0 0 1 +RPC_GSS_SVC_NONE RPC_GSS_SVC_NONE rpc_gss_svc_none R RP RPC RPC_ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 0 no 0 7 0 0 0 0 1 += 1, = = = = = BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 0 , 1 2 0 0 0 0 1 +RPC_GSS_SVC_INTEGRITY RPC_GSS_SVC_INTEGRITY rpc_gss_svc_integrity R RP RPC RPC_ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 0 no 0 10 0 0 0 0 1 += 2, = = = = = BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 0 , 1 2 0 0 0 0 1 +RPC_GSS_SVC_PRIVACY RPC_GSS_SVC_PRIVACY rpc_gss_svc_privacy R RP RPC RPC_ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 0 no 0 9 0 0 0 0 1 += 3 = = = = = BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 0 no 0 1 0 0 0 0 1 +}; }; }; } }; }; }; BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 0 ; 1 1 0 0 0 0 1 +struct rpcsec_gss_info struct s st str stru BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 1 no 0 10 0 0 0 0 1 +sec_oid4 sec_oid4 sec_oid4 s se sec sec_ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 1 no 0 3 0 0 0 0 1 +oid; oid; oid; o oi oid oid; BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 1 ; 1 2 0 0 0 0 1 +qop4 qop4 qop4 q qo qop qop4 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 1 no 0 2 0 0 0 0 1 +qop; qop; qop; q qo qop qop; BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 1 ; 1 2 0 0 0 0 1 +rpc_gss_svc_t rpc_gss_svc_t rpc_gss_svc_t r rp rpc rpc_ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 1 no 0 5 0 0 0 0 1 +service; service; service; s se ser serv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 1 ; 1 3 0 0 0 0 1 +}; }; }; } }; }; }; BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 1 ; 1 1 0 0 0 0 1 +/* RPCSEC_GSS /* / /* /* /* BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 2 /*''-*/ 7 10 0 0 0 0 1 +union secinfo4 union u un uni unio BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 2 () 2 8 0 0 0 0 1 +case RPCSEC_GSS: case c ca cas case BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 9 2 : 1 3 0 0 0 0 1 +rpcsec_gss_info rpcsec_gss_info rpcsec_gss_info r rp rpc rpcs BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 2 no 0 3 0 0 0 0 1 +flavor_info; flavor_info; flavor_info; f fl fla flav BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 2 ; 1 2 0 0 0 0 1 +default: default: default: d de def defa BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 2 : 1 1 0 0 0 0 1 +void; void; void; v vo voi void BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 2 ; 1 1 0 0 0 0 1 +}; }; }; } }; }; }; BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 2 ; 1 0 0 0 0 0 1 +typedef secinfo4 typedef t ty typ type BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 4 ; 1 10 0 0 0 0 1 +union SECINFO4res union u un uni unio BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 4 () 2 10 0 0 0 0 1 +case NFS4_OK: case c ca cas case BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 9 4 : 1 3 0 0 0 0 1 +/* CURRENTFH: /* / /* /* /* BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 4 /*:*/ 5 5 0 0 0 0 1 +SECINFO4resok resok4; secinfo4resok S SE SEC SECI BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 4 ; 1 4 0 0 0 0 1 +default: default: default: d de def defa BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 4 : 1 2 0 0 0 0 1 +void; void; void; v vo voi void BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 4 ; 1 1 0 0 0 0 1 +}; }; }; } }; }; }; BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 4 ; 1 0 0 0 0 0 1 +18.29.3. DESCRIPTION 18.29.3. 1 18 18. 18.2 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 5 ... 3 10 0 0 0 0 1 +The SECINFO the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 5 no 0 10 0 0 0 0 1 +RPC authentication rpc R RP RPC RPC BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 5 , 1 9 0 0 0 0 1 +name pair. name n na nam name BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 5 . 1 9 0 0 0 0 1 +LOOKUP when lookup L LO LOO LOOK BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 5 ., 2 9 0 0 0 0 1 +not have not n no not not BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 5 , 1 10 0 0 0 0 1 +behave the behave b be beh beha BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 5 . 1 6 0 0 0 0 1 +The result the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 8 no 0 8 0 0 0 0 1 +mechanisms available, mechanisms m me mec mech BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 8 ,' 2 9 0 0 0 0 1 +preferences, the preferences, p pr pre pref BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 8 ,. 2 10 0 0 0 0 1 +is free is i is is is BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 8 no 0 9 0 0 0 0 1 +supports, or supports, s su sup supp BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 8 ,' 2 9 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 9 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 11 , 1 10 0 0 0 0 0 +[Page 504] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 9 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 9 0 no 0 4 0 0 0 0 1 +it supports. it i it it it BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 0 . 1 9 0 0 0 0 1 +structure. The structure. s st str stru BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 0 .'', 4 9 0 0 0 0 1 +AUTH_SYS (as auth_sys A AU AUT AUTH BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 0 ([]),( 6 10 0 0 0 0 1 +RFC 2203 rfc R RF RFC RFC BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 0 []). 4 9 0 0 0 0 1 +flavor registered flavor f fl fla flav BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 0 . 1 4 0 0 0 0 1 +For the for F Fo For For BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 1 , 1 9 0 0 0 0 1 +information is information i in inf info BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 1 .() 3 9 0 0 0 0 1 +other security other o ot oth othe BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 1 ,. 2 9 0 0 0 0 1 +RPCSEC_GSS, a rpcsec_gss, R RP RPC RPCS BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 1 , 1 10 0 0 0 0 1 +object identifier object o ob obj obje BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 1 (,[]), 6 9 0 0 0 0 1 +protection (as protection p pr pro prot BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 1 ([]),( 6 9 0 0 0 0 1 +defined in defined d de def defi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 1 []). 4 9 0 0 0 0 1 +multiple entries multiple m mu mul mult BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 1 no 0 9 0 0 0 0 1 +security triple security s se sec secu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 9 1 . 1 3 0 0 0 0 1 +On success, on O On On On BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 4 ,( 2 7 0 0 0 0 1 +Section 2.6.3.1.1.8), section S Se Sec Sect BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 4 .....), 7 10 0 0 0 0 1 +to use to t to to to BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 4 , 1 9 0 0 0 0 1 +status NFS4ERR_NOFILEHANDLE. status s st sta stat BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 4 . 1 4 0 0 0 0 1 +If the if I If If If BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 5 , 1 10 0 0 0 0 1 +UTF-8 definition utf-8 U UT UTF UTF- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 5 -(-; 4 9 0 0 0 0 1 +Section 14.4), section S Se Sec Sect BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 5 .),. 4 8 0 0 0 0 1 +See Section see S Se See See BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 9 6 .. 2 10 0 0 0 0 1 +18.29.4. IMPLEMENTATION 18.29.4. 1 18 18. 18.2 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 6 ... 3 10 0 0 0 0 1 +The SECINFO the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 6 no 0 9 0 0 0 0 1 +the error the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 6 no 0 9 0 0 0 0 1 +operation. This operation. o op ope oper BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 6 .' 2 9 0 0 0 0 1 +policy is policy p po pol poli BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 6 . 1 10 0 0 0 0 1 +point, the point, p po poi poin BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 6 , 1 9 0 0 0 0 1 +flavors and flavors f fl fla flav BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 6 . 1 7 0 0 0 0 1 +As mentioned, as A As As As BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 8 ,' 2 9 0 0 0 0 1 +client request client c cl cli clie BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 8 . 1 9 0 0 0 0 1 +operations that operations o op ope oper BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 9 8 ., 2 9 0 0 0 0 1 +READDIR returns readdir R RE REA READ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 8 ,(...) 6 9 0 0 0 0 1 +contain NFS4ERR_WRONGSEC. contain c co con cont BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 8 . 1 9 0 0 0 0 1 +return NFS4ERR_WRONGSEC. return r re ret retu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 8 . 1 10 0 0 0 0 1 +target name target t ta tar targ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 8 , 1 9 0 0 0 0 1 +the parent the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 8 , 1 9 0 0 0 0 1 +checked when checked c ch che chec BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 8 ' 1 10 0 0 0 0 1 +operations stream operations o op ope oper BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 9 8 (, 2 9 0 0 0 0 1 +creates the creates c cr cre crea BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 8 ). 2 9 0 0 0 0 1 +name exists, name n na nam name BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 8 ,, 2 10 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 9 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 11 , 1 10 0 0 0 0 0 +[Page 505] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 9 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 9 0 no 0 4 0 0 0 0 1 +irrelevant because irrelevant i ir irr irre BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 0 . 1 9 0 0 0 0 1 +for REMOVE for f fo for for BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 0 no 0 9 0 0 0 0 1 +policy, the policy, p po pol poli BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 0 ,, 2 10 0 0 0 0 1 +of the of o of of of BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 0 . 1 9 0 0 0 0 1 +LINK MAY link L LI LIN LINK BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 1 1 0 0 0 0 0 9 0 , 1 9 0 0 0 0 1 +applies only applies a ap app appl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 0 (....). 7 9 0 0 0 0 1 +NFS4ERR_WRONGSEC error nfs4err_wrongsec N NF NFS NFS4 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 0 no 0 9 0 0 0 0 1 +RENAME MUST rename R RE REN RENA BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 9 0 ,,, 3 8 0 0 0 0 1 +RESTOREFH operation restorefh R RE RES REST BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 0 . 1 8 0 0 0 0 1 +With the with W Wi Wit With BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 2 , 1 10 0 0 0 0 1 +return NFS4ERR_WRONGSEC return r re ret retu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 2 no 0 9 0 0 0 0 1 +inject a inject i in inj inje BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 2 "". 3 9 0 0 0 0 1 +filehandle is filehandle f fi fil file BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 2 (,, 3 8 0 0 0 0 1 +PUTROOTFH), generated putrootfh), P PU PUT PUTR BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 2 ),-- 4 10 0 0 0 0 1 +(LOOKUP and (lookup ( (L (LO (LOO BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 2 (), 3 8 0 0 0 0 1 +RESTOREFH. As restorefh. R RE RES REST BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 2 ......, 7 9 0 0 0 0 1 +followed by followed f fo fol foll BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 2 ., 2 9 0 0 0 0 1 +RESTOREFH operation, restorefh R RE RES REST BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 2 ,( 2 7 0 0 0 0 1 +Section 2.6.3.1.1), section S Se Sec Sect BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 2 ....), 6 9 0 0 0 0 1 +security policies security s se sec secu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 9 2 . 1 4 0 0 0 0 1 +The READDIR the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 6 no 0 9 0 0 0 0 1 +error. However, error. e er err erro BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 6 ., 2 8 0 0 0 0 1 +attributes, it attributes, a at att attr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 6 ,' 2 10 0 0 0 0 1 +did not did d di did did BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 6 . 1 9 0 0 0 0 1 +client has client c cl cli clie BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 6 , 1 9 0 0 0 0 1 +return the return r re ret retu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 6 . 1 9 0 0 0 0 1 +To resolve to T To To To BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 7 , 1 10 0 0 0 0 1 +following: following: following: f fo fol foll BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 7 : 1 1 0 0 0 0 1 +o For o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 9 8 , 1 9 0 0 0 0 1 +current filehandle current c cu cur curr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 8 no 0 10 0 0 0 0 1 +OPEN to open O OP OPE OPEN BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 9 8 . 1 7 0 0 0 0 1 +o For o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 9 9 , 1 9 0 0 0 0 1 +current filehandle current c cu cur curr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 9 . 1 9 0 0 0 0 1 +passed to passed p pa pas pass BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 9 ( 1 10 0 0 0 0 1 +from READDIR) from f fr fro from BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 9 ) 1 8 0 0 0 0 1 +rdattr_error attribute. rdattr_error r rd rda rdat BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 9 . 1 3 0 0 0 0 1 +o For o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 9 10 ,,,,,, 6 10 0 0 0 0 1 +client will client c cl cli clie BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 10 no 0 6 0 0 0 0 1 +SECINFO_STYLE4_CURRENT_FH }. secinfo_style4_current_fh S SE SEC SECI BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 10 . 1 8 0 0 0 0 1 +SECINFO_NO_NAME operation secinfo_no_name S SE SEC SECI BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 10 ,, 2 10 0 0 0 0 1 +PUTROOTFH operation putrootfh P PU PUT PUTR BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 10 no 0 8 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 9 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 11 , 1 10 0 0 0 0 0 +[Page 506] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 9 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 9 0 no 0 4 0 0 0 0 1 +provided by provided p pr pro prov BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 0 ,,, 3 10 0 0 0 0 1 +operation. operation. operation. o op ope oper BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 0 . 1 1 0 0 0 0 1 +NOTE: In note: N NO NOT NOTE BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 9 0 :.,, 4 10 0 0 0 0 1 +to reconstruct to t to to to BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 0 no 0 9 0 0 0 0 1 +component name component c co com comp BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 0 . 1 9 0 0 0 0 1 +NFSv4.1 of nfsv4.1 N NF NFS NFSv BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 0 .. 2 9 0 0 0 0 1 +o For o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 9 2 , 1 9 0 0 0 0 1 +SECINFO_STYLE4_PARENT } secinfo_style4_parent S SE SEC SECI BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 2 no 0 10 0 0 0 0 1 +filehandle originally filehandle f fi fil file BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 2 . 1 6 0 0 0 0 1 +See Section see S Se See See BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 9 3 no 0 10 0 0 0 0 1 +security flavor security s se sec secu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 9 3 . 1 8 0 0 0 0 1 +18.30. Operation 18.30. 1 18 18. 18.3 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 4 ..:- 4 10 0 0 0 0 1 +18.30.1. ARGUMENTS 18.30.1. 1 18 18. 18.3 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 4 ... 3 10 0 0 0 0 1 +struct SETATTR4args struct s st str stru BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 4 no 0 6 0 0 0 0 1 +/* CURRENT_FH: /* / /* /* /* BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 4 /*:*/ 5 10 0 0 0 0 1 +stateid4 stateid4 stateid4 s st sta stat BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 4 no 0 2 0 0 0 0 1 +stateid; stateid; stateid; s st sta stat BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 4 ; 1 2 0 0 0 0 1 +fattr4 fattr4 fattr4 f fa fat fatt BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 4 no 0 2 0 0 0 0 1 +obj_attributes; obj_attributes; obj_attributes; o ob obj obj_ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 4 ; 1 5 0 0 0 0 1 +}; }; }; } }; }; }; BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 4 ; 1 0 0 0 0 0 1 +18.30.2. RESULTS 18.30.2. 1 18 18. 18.3 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 5 ... 3 10 0 0 0 0 1 +struct SETATTR4res struct s st str stru BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 5 no 0 10 0 0 0 0 1 +nfsstat4 nfsstat4 nfsstat4 n nf nfs nfss BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 5 no 0 4 0 0 0 0 1 +status; status; status; s st sta stat BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 5 ; 1 3 0 0 0 0 1 +bitmap4 bitmap4 bitmap4 b bi bit bitm BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 5 no 0 3 0 0 0 0 1 +attrsset; attrsset; attrsset; a at att attr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 5 ; 1 4 0 0 0 0 1 +}; }; }; } }; }; }; BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 5 ; 1 1 0 0 0 0 1 +18.30.3. DESCRIPTION 18.30.3. 1 18 18. 18.3 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 6 ... 3 10 0 0 0 0 1 +The SETATTR the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 6 no 0 10 0 0 0 0 1 +system object. system s sy sys syst BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 6 . 1 9 0 0 0 0 1 +the attributes the t th the the BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 6 . 1 7 0 0 0 0 1 +The stateid the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 7 - 1 9 0 0 0 0 1 +locking context locking l lo loc lock BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 7 no 0 9 0 0 0 0 1 +size attribute. size s si siz size BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 7 .' 2 9 0 0 0 0 1 +data, it data, d da dat data BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 7 ,. 2 9 0 0 0 0 1 +Any SETATTR any A An Any Any BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 7 no 0 10 0 0 0 0 1 +reservation that reservation r re res rese BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 7 . 1 9 0 0 0 0 1 +the old the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 7 ---- 4 9 0 0 0 0 1 +modified just modified m mo mod modi BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 7 no 0 9 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 9 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 11 , 1 10 0 0 0 0 0 +[Page 507] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 9 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 9 0 no 0 4 0 0 0 0 1 +been specified been b be bee been BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 0 , 1 9 0 0 0 0 1 +conflicts with conflicts c co con conf BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 0 -, 2 10 0 0 0 0 1 +implementing mandatory implementing i im imp impl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 0 -. 2 9 0 0 0 0 1 +SHOULD always should S SH SHO SHOU BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 9 0 ., 2 9 0 0 0 0 1 +the special the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 0 no 0 9 0 0 0 0 1 +passed. passed. passed. p pa pas pass BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 0 . 1 1 0 0 0 0 1 +On either on O On On On BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 1 , 1 10 0 0 0 0 1 +the attrsset the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 1 () 2 9 0 0 0 0 1 +successfully set. successfully s su suc succ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 1 . 1 9 0 0 0 0 1 +attrmask field attrmask a at att attr BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 1 . 1 8 0 0 0 0 1 +On success, on O On On On BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 2 ,. 2 10 0 0 0 0 1 +18.30.4. IMPLEMENTATION 18.30.4. 1 18 18. 18.3 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 3 ... 3 10 0 0 0 0 1 +If the if I If If If BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 3 , 1 9 0 0 0 0 1 +SHOULD allow should S SH SHO SHOU BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 9 3 no 0 9 0 0 0 0 1 +object matches object o ob obj obje BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 3 . 1 9 0 0 0 0 1 +be implemented be b be be be BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 3 no 0 9 0 0 0 0 1 +attribute unless attribute a at att attr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 3 . 1 10 0 0 0 0 1 +is lenient is i is is is BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 3 , 1 9 0 0 0 0 1 +implementation may implementation i im imp impl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 3 no 0 9 0 0 0 0 1 +(e.g., an (e.g., ( (e (e. (e.g BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 3 (..,). 6 8 0 0 0 0 1 +The file the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 5 no 0 9 0 0 0 0 1 +file. A file. f fi fil file BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 5 ., 2 9 0 0 0 0 1 +than the than t th tha than BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 5 no 0 9 0 0 0 0 1 +end of end e en end end BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 5 , 1 9 0 0 0 0 1 +size of size s si siz size BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 5 no 0 9 0 0 0 0 1 +the end the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 5 . 1 8 0 0 0 0 1 +unallocated bytes unallocated u un una unal BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 5 (). 3 9 0 0 0 0 1 +Clients should clients C Cl Cli Clie BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 5 ' 1 8 0 0 0 0 1 +implementation of implementation i im imp impl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 5 , 1 10 0 0 0 0 1 +byte-range returned byte-range b by byt byte BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 5 -. 2 9 0 0 0 0 1 +extending the extending e ex ext exte BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 5 . 1 5 0 0 0 0 1 +SETATTR is setattr S SE SET SETA BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 9 . 1 8 0 0 0 0 1 +partially change partially p pa par part BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 9 ', 2 10 0 0 0 0 1 +always includes always a al alw alwa BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 9 . 1 10 0 0 0 0 1 +If the if I If If If BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 9 no 0 8 0 0 0 0 1 +delegation that delegation d de del dele BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 9 no 0 9 0 0 0 0 1 +SETATTR, the setattr, S SE SET SETA BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 9 ,(), 4 10 0 0 0 0 1 +proceed to proceed p pr pro proc BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 9 no 0 10 0 0 0 0 1 +returned or returned r re ret retu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 9 ., 2 9 0 0 0 0 1 +the server the t th the the BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 9 no 0 10 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 9 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 11 , 1 10 0 0 0 0 0 +[Page 508] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 9 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 9 0 no 0 4 0 0 0 0 1 +the delegation(s) the t th the the BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 0 (), 3 10 0 0 0 0 1 +if the if i if if if BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 0 . 1 5 0 0 0 0 1 +If the if I If If If BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 0 no 0 9 0 0 0 0 1 +another client another a an ano anot BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 0 , 1 9 0 0 0 0 1 +if enabled, if i if if if BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 0 , 1 10 0 0 0 0 1 +of attributes of o of of of BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 0 - 1 9 0 0 0 0 1 +attributes for attributes a at att attr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 0 . 1 9 0 0 0 0 1 +type NOTIFY4_CHANGE_DIR_ATTRS type t ty typ type BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 0 no 0 8 0 0 0 0 1 +client(s), but client(s), c cl cli clie BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 0 (), 3 9 0 0 0 0 1 +notifications to notifications n no not noti BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 0 . 1 3 0 0 0 0 1 +If the if I If If If BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 2 no 0 9 0 0 0 0 1 +directory for directory d di dir dire BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 2 , 1 10 0 0 0 0 1 +asynchronous notifications asynchronous a as asy asyn BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 2 no 0 8 0 0 0 0 1 +attributes changed attributes a at att attr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 2 - 1 9 0 0 0 0 1 +attributes for attributes a at att attr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 2 . 1 9 0 0 0 0 1 +type NOTIFY4_CHANGE_CHILD_ATTRS type t ty typ type BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 2 no 0 9 0 0 0 0 1 +clients, but clients, c cl cli clie BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 2 , 1 8 0 0 0 0 1 +notifications to notifications n no not noti BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 2 . 1 3 0 0 0 0 1 +Changing the changing C Ch Cha Chan BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 5 no 0 9 0 0 0 0 1 +time_modify and time_modify t ti tim time BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 5 . 1 10 0 0 0 0 1 +size changes size s si siz size BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 5 . 1 6 0 0 0 0 1 +The attributes the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 5 - 1 9 0 0 0 0 1 +attributes constructed attributes a at att attr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 5 no 0 9 0 0 0 0 1 +the server the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 5 . 1 8 0 0 0 0 1 +specifies SET_TO_CLIENT_TIME4, specifies s sp spe spec BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 5 , 1 10 0 0 0 0 1 +be used be b be be be BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 5 . 1 9 0 0 0 0 1 +SET_TO_CLIENT_TIME4, the set_to_client_time4, S SE SET SET_ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 5 , 1 9 0 0 0 0 1 +SETATTR operation. setattr S SE SET SETA BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 5 . 1 2 0 0 0 0 1 +If server if I If If If BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 7 , 1 10 0 0 0 0 1 +to file to t to to to BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 7 . 1 9 0 0 0 0 1 +used to used u us use used BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 7 /. 2 5 0 0 0 0 1 +Use of use U Us Use Use BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 8 no 0 9 0 0 0 0 1 +change attribute, change c ch cha chan BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 8 ,, 2 10 0 0 0 0 1 +whereby a whereby w wh whe wher BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 8 no 0 8 0 0 0 0 1 +functionality of functionality f fu fun func BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 8 . 1 9 0 0 0 0 1 +function of function f fu fun func BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 8 no 0 9 0 0 0 0 1 +attributes based attributes a at att attr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 8 , 1 10 0 0 0 0 1 +guard condition guard g gu gua guar BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 8 no 0 9 0 0 0 0 1 +to compromise to t to to to BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 8 , 1 9 0 0 0 0 1 +NFSv4 emulation. nfsv4 N NF NFS NFSv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 8 .,. 3 9 0 0 0 0 1 +avoid such avoid a av avo avoi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 8 ,, 2 9 0 0 0 0 1 +request. request. request. r re req requ BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 8 . 1 1 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 9 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 11 , 1 10 0 0 0 0 0 +[Page 509] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 9 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 9 0 no 0 4 0 0 0 0 1 +If the if I If If If BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 0 no 0 10 0 0 0 0 1 +client, the client, c cl cli clie BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 0 ,. 2 8 0 0 0 0 1 +A mask a A A A A BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 1 0 0 0 0 0 9 1 no 0 9 0 0 0 0 1 +cases. That cases. c ca cas case BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 1 . 1 10 0 0 0 0 1 +set by set s se set set BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 1 . 1 9 0 0 0 0 1 +are equal, are a ar are are BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 1 ,. 2 8 0 0 0 0 1 +18.31. Operation 18.31. 1 18 18. 18.3 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 3 ..:- 4 10 0 0 0 0 1 +18.31.1. ARGUMENTS 18.31.1. 1 18 18. 18.3 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 4 ... 3 10 0 0 0 0 1 +struct VERIFY4args struct s st str stru BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 4 no 0 8 0 0 0 0 1 +/* CURRENT_FH: /* / /* /* /* BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 4 /*:*/ 5 10 0 0 0 0 1 +fattr4 fattr4 fattr4 f fa fat fatt BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 4 no 0 2 0 0 0 0 1 +obj_attributes; obj_attributes; obj_attributes; o ob obj obj_ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 4 ; 1 6 0 0 0 0 1 +}; }; }; } }; }; }; BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 4 ; 1 1 0 0 0 0 1 +18.31.2. RESULTS 18.31.2. 1 18 18. 18.3 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 4 ... 3 10 0 0 0 0 1 +struct VERIFY4res struct s st str stru BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 5 no 0 10 0 0 0 0 1 +nfsstat4 nfsstat4 nfsstat4 n nf nfs nfss BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 5 no 0 4 0 0 0 0 1 +status; status; status; s st sta stat BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 5 ; 1 4 0 0 0 0 1 +}; }; }; } }; }; }; BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 5 ; 1 1 0 0 0 0 1 +18.31.3. DESCRIPTION 18.31.3. 1 18 18. 18.3 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 5 ... 3 10 0 0 0 0 1 +The VERIFY the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 5 no 0 10 0 0 0 0 1 +assumed by assumed a as ass assu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 5 no 0 10 0 0 0 0 1 +in the in i in in in BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 9 5 ., 2 9 0 0 0 0 1 +the error the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 5 . 1 9 0 0 0 0 1 +retains its retains r re ret reta BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 5 . 1 9 0 0 0 0 1 +18.31.4. IMPLEMENTATION 18.31.4. 1 18 18. 18.3 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 8 ... 3 10 0 0 0 0 1 +One possible one O On One One BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 8 no 0 9 0 0 0 0 1 +operations. With operations. o op ope oper BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 8 ., 2 9 0 0 0 0 1 +file being file f fi fil file BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 8 . 1 10 0 0 0 0 1 +This series this T Th Thi This BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 8 . 1 9 0 0 0 0 1 +PUTFH (directory putfh P PU PUT PUTF BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 10 () 2 10 0 0 0 0 1 +LOOKUP (file lookup L LO LOO LOOK BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 10 () 2 6 0 0 0 0 1 +VERIFY (filehandle verify V VE VER VERI BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 9 10 () 2 8 0 0 0 0 1 +PUTFH (directory putfh P PU PUT PUTF BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 10 () 2 10 0 0 0 0 1 +REMOVE (file remove R RE REM REMO BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 9 10 () 2 6 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 9 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 11 , 1 10 0 0 0 0 0 +[Page 510] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 9 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 9 0 no 0 4 0 0 0 0 1 +This series this T Th Thi This BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 0 no 0 9 0 0 0 0 1 +creating a creating c cr cre crea BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 0 , 1 10 0 0 0 0 1 +avoid the avoid a av avo avoi BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 0 . 1 4 0 0 0 0 1 +In the in I In In In BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 9 2 no 0 9 0 0 0 0 1 +operation and operation o op ope oper BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 2 no 0 10 0 0 0 0 1 +system object, system s sy sys syst BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 2 , 1 9 0 0 0 0 1 +client. client. client. c cl cli clie BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 2 . 1 1 0 0 0 0 1 +When the when W Wh Whe When BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 4 -(.., 5 9 0 0 0 0 1 +time_modify_set) is time_modify_set) t ti tim time BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 4 ), 2 10 0 0 0 0 1 +the client. the t th the the BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 4 . 1 1 0 0 0 0 1 +18.32. Operation 18.32. 1 18 18. 18.3 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 5 ..:- 4 10 0 0 0 0 1 +18.32.1. ARGUMENTS 18.32.1. 1 18 18. 18.3 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 6 ... 3 10 0 0 0 0 1 +enum stable_how4 enum e en enu enum BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 6 no 0 10 0 0 0 0 1 +UNSTABLE4 UNSTABLE4 unstable4 U UN UNS UNST BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 6 no 0 5 0 0 0 0 1 += 0, = = = = = BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 6 , 1 2 0 0 0 0 1 +DATA_SYNC4 DATA_SYNC4 data_sync4 D DA DAT DATA BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 6 no 0 5 0 0 0 0 1 += 1, = = = = = BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 6 , 1 2 0 0 0 0 1 +FILE_SYNC4 FILE_SYNC4 file_sync4 F FI FIL FILE BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 6 no 0 5 0 0 0 0 1 += 2 = = = = = BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 6 no 0 2 0 0 0 0 1 +}; }; }; } }; }; }; BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 6 ; 1 1 0 0 0 0 1 +struct WRITE4args struct s st str stru BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 7 no 0 8 0 0 0 0 1 +/* CURRENT_FH: /* / /* /* /* BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 7 /*:*/ 5 10 0 0 0 0 1 +stateid4 stateid4 stateid4 s st sta stat BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 7 no 0 3 0 0 0 0 1 +stateid; stateid; stateid; s st sta stat BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 7 ; 1 3 0 0 0 0 1 +offset4 offset4 offset4 o of off offs BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 7 no 0 3 0 0 0 0 1 +offset; offset; offset; o of off offs BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 7 ; 1 3 0 0 0 0 1 +stable_how4 stable_how4 stable_how4 s st sta stab BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 7 no 0 5 0 0 0 0 1 +stable; stable; stable; s st sta stab BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 7 ; 1 3 0 0 0 0 1 +opaque opaque opaque o op opa opaq BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 7 no 0 3 0 0 0 0 1 +data<>; data<>; data<>; d da dat data BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 7 ; 1 3 0 0 0 0 1 +}; }; }; } }; }; }; BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 7 ; 1 1 0 0 0 0 1 +18.32.2. RESULTS 18.32.2. 1 18 18. 18.3 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 9 ... 3 10 0 0 0 0 1 +struct WRITE4resok struct s st str stru BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 9 no 0 10 0 0 0 0 1 +count4 count4 count4 c co cou coun BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 9 no 0 3 0 0 0 0 1 +count; count; count; c co cou coun BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 9 ; 1 3 0 0 0 0 1 +stable_how4 stable_how4 stable_how4 s st sta stab BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 9 no 0 5 0 0 0 0 1 +committed; committed; committed; c co com comm BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 9 ; 1 5 0 0 0 0 1 +verifier4 verifier4 verifier4 v ve ver veri BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 9 no 0 4 0 0 0 0 1 +writeverf; writeverf; writeverf; w wr wri writ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 9 ; 1 5 0 0 0 0 1 +}; }; }; } }; }; }; BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 9 ; 1 1 0 0 0 0 1 +union WRITE4res union u un uni unio BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 10 () 2 10 0 0 0 0 1 +case NFS4_OK: case c ca cas case BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 9 10 : 1 3 0 0 0 0 1 +WRITE4resok WRITE4resok write4resok W WR WRI WRIT BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 10 no 0 2 0 0 0 0 1 +resok4; resok4; resok4; r re res reso BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 10 ; 1 1 0 0 0 0 1 +default: default: default: d de def defa BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 10 : 1 2 0 0 0 0 1 +void; void; void; v vo voi void BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 10 ; 1 1 0 0 0 0 1 +}; }; }; } }; }; }; BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 10 ; 1 0 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 9 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 11 , 1 10 0 0 0 0 0 +[Page 511] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 9 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 9 0 no 0 4 0 0 0 0 1 +18.32.3. DESCRIPTION 18.32.3. 1 18 18. 18.3 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 0 ... 3 10 0 0 0 0 1 +The WRITE the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 0 . 1 9 0 0 0 0 1 +target file target t ta tar targ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 0 . 1 9 0 0 0 0 1 +specifies the specifies s sp spe spec BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 0 . 1 9 0 0 0 0 1 +zero specifies zero z ze zer zero BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 0 no 0 9 0 0 0 0 1 +file. The file. f fi fil file BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 0 .,, 3 9 0 0 0 0 1 +represents the represents r re rep repr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 0 . 1 9 0 0 0 0 1 +the count the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 0 , 1 10 0 0 0 0 1 +subject to subject s su sub subj BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 0 . 1 9 0 0 0 0 1 +than requested than t th tha than BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 0 . 1 4 0 0 0 0 1 +The client the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 3 no 0 10 0 0 0 0 1 +data is data d da dat data BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 3 ., 2 9 0 0 0 0 1 +server MUST server s se ser serv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 3 no 0 10 0 0 0 0 1 +stable storage stable s st sta stab BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 3 . 1 9 0 0 0 0 1 +NFSv2 protocol nfsv2 N NF NFS NFSv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 3 . 1 9 0 0 0 0 1 +violation. If violation. v vi vio viol BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 3 ., 2 9 0 0 0 0 1 +of the of o of of of BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 3 no 0 10 0 0 0 0 1 +the data the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 3 . 1 8 0 0 0 0 1 +implement DATA_SYNC4 implement i im imp impl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 3 , 1 9 0 0 0 0 1 +possible performance possible p po pos poss BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 3 ., 2 9 0 0 0 0 1 +free to free f fr fre free BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 9 3 no 0 9 0 0 0 0 1 +storage, including storage, s st sto stor BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 3 ,, 2 9 0 0 0 0 1 +client. There client. c cl cli clie BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 3 . 1 9 0 0 0 0 1 +will subsequently will w wi wil will BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 9 3 . 1 8 0 0 0 0 1 +guarantees made guarantees g gu gua guar BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 3 no 0 9 0 0 0 0 1 +without changing without w wi wit with BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 3 no 0 9 0 0 0 0 1 +the data the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 3 no 0 9 0 0 0 0 1 +client. client. client. c cl cli clie BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 3 . 1 1 0 0 0 0 1 +Except when except E Ex Exc Exce BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 7 , 1 10 0 0 0 0 1 +request represents request r re req requ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 7 - 1 9 0 0 0 0 1 +or OPEN or o or or or BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 7 . 1 9 0 0 0 0 1 +stateid identifies stateid s st sta stat BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 7 no 0 9 0 0 0 0 1 +server to server s se ser serv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 7 (.., 4 9 0 0 0 0 1 +have not have h ha hav have BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 7 ). 2 3 0 0 0 0 1 +Upon successful upon U Up Upo Upon BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 9 ,. 2 9 0 0 0 0 1 +count result count c co cou coun BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 9 . 1 10 0 0 0 0 1 +server may server s se ser serv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 9 ., 2 9 0 0 0 0 1 +number of number n nu num numb BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 9 ,,. 3 9 0 0 0 0 1 +The server the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 10 no 0 10 0 0 0 0 1 +the data the t th the the BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 10 ., 2 7 0 0 0 0 1 +o The o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 9 11 . 1 10 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 9 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 11 , 1 10 0 0 0 0 0 +[Page 512] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 9 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 9 0 no 0 4 0 0 0 0 1 +o The o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 9 0 no 0 10 0 0 0 0 1 +that committed. that t th tha that BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 0 . 1 2 0 0 0 0 1 +Valid combinations valid V Va Val Vali BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 0 no 0 10 0 0 0 0 1 +in the in i in in in BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 9 0 . 1 2 0 0 0 0 1 ++------------+-----------------------------------+ +------------+-----------------------------------+ +------------+-----------------------------------+ + +- +-- +--- BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 1 ----------------------------------------------- 47 10 0 0 0 0 1 +| stable | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 1 no 0 1 0 0 0 0 1 +| committed | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 1 no 0 2 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 1 no 0 0 0 0 0 0 1 ++------------+-----------------------------------+ +------------+-----------------------------------+ +------------+-----------------------------------+ + +- +-- +--- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 1 ----------------------------------------------- 47 10 0 0 0 0 1 +| UNSTABLE4 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 1 ,, 2 9 0 0 0 0 1 +| DATA_SYNC4 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 1 , 1 7 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 1 no 0 0 0 0 0 0 1 +| FILE_SYNC4 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 1 no 0 5 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 1 no 0 0 0 0 0 0 1 ++------------+-----------------------------------+ +------------+-----------------------------------+ +------------+-----------------------------------+ + +- +-- +--- BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 1 ----------------------------------------------- 47 10 0 0 0 0 1 +Table 11 table T Ta Tab Tabl BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 3 no 0 10 0 0 0 0 1 +The final the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 3 . 1 9 0 0 0 0 1 +is the is i is is is BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 3 no 0 9 0 0 0 0 1 +determine whether determine d de det dete BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 3 (.., 4 10 0 0 0 0 1 +restart) between restart) r re res rest BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 3 ) 1 9 0 0 0 0 1 +WRITE or write W WR WRI WRIT BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 9 3 . 1 9 0 0 0 0 1 +instance of instance i in ins inst BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 3 . 1 10 0 0 0 0 1 +of the of o of of of BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 3 .., 3 9 0 0 0 0 1 +assume that assume a as ass assu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 3 no 0 9 0 0 0 0 1 +and an and a an and and BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 3 no 0 10 0 0 0 0 1 +recovered. recovered. recovered. r re rec reco BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 3 . 1 1 0 0 0 0 1 +If a if I If If If BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 7 no 0 10 0 0 0 0 1 +UNSTABLE4 and unstable4 U UN UNS UNST BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 7 no 0 9 0 0 0 0 1 +UNSTABLE4, the unstable4, U UN UNS UNST BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 7 , 1 9 0 0 0 0 1 +COMMIT operation commit C CO COM COMM BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 9 7 no 0 9 0 0 0 0 1 +metadata with metadata m me met meta BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 7 ',. 3 9 0 0 0 0 1 +is possible is i is is is BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 7 no 0 10 0 0 0 0 1 +COMMIT will commit C CO COM COMM BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 9 7 . 1 6 0 0 0 0 1 +For a for F Fo For For BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 9 , 1 9 0 0 0 0 1 +server MAY server s se ser serv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 9 - 1 9 0 0 0 0 1 +range locks range r ra ran rang BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 9 . 1 9 0 0 0 0 1 +WRITE with write W WR WRI WRIT BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 9 9 , 1 9 0 0 0 0 1 +NOT allow not N NO NOT NOT BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 9 9 no 0 10 0 0 0 0 1 +and otherwise and a an and and BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 9 no 0 9 0 0 0 0 1 +were used. were w we wer were BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 9 . 1 1 0 0 0 0 1 +On success, on O On On On BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 11 ,. 2 10 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 9 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 11 , 1 10 0 0 0 0 0 +[Page 513] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 9 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 9 0 no 0 4 0 0 0 0 1 +18.32.4. IMPLEMENTATION 18.32.4. 1 18 18. 18.3 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 0 ... 3 10 0 0 0 0 1 +It is it I It It It BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 0 no 0 9 0 0 0 0 1 +requested by requested r re req requ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 0 ., 2 9 0 0 0 0 1 +an error an a an an an BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 9 0 . 1 9 0 0 0 0 1 +less than less l le les less BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 0 , 1 10 0 0 0 0 1 +another WRITE another a an ano anot BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 0 . 1 6 0 0 0 0 1 +It is it I It It It BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 2 no 0 9 0 0 0 0 1 +time_modified and time_modified t ti tim time BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 2 . 1 9 0 0 0 0 1 +However, these however, H Ho How Howe BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 2 , 1 9 0 0 0 0 1 +of the of o of of of BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 2 ., 2 9 0 0 0 0 1 +zero SHOULD zero z ze zer zero BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 2 no 0 10 0 0 0 0 1 +file to file f fi fil file BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 2 . 1 2 0 0 0 0 1 +Stable storage stable S St Sta Stab BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 3 : 1 10 0 0 0 0 1 +1. Repeated 1. 1 1. 1. 1. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 4 .. 2 10 0 0 0 0 1 +2. Hardware 2. 2 2. 2. 2. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 4 .(,,.). 7 10 0 0 0 0 1 +3. Repeated 3. 3 3. 3. 3. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 4 .. 2 10 0 0 0 0 1 +This definition this T Th Thi This BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 4 no 0 10 0 0 0 0 1 +itself. itself. itself. i it its itse BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 4 . 1 1 0 0 0 0 1 +The verifier the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 5 no 0 8 0 0 0 0 1 +instances of instances i in ins inst BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 5 ., 2 8 0 0 0 0 1 +uncommitted data uncommitted u un unc unco BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 5 ., 2 9 0 0 0 0 1 +allows the allows a al all allo BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 5 . 1 9 0 0 0 0 1 +required so required r re req requ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 5 no 0 9 0 0 0 0 1 +could have could c co cou coul BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 5 . 1 9 0 0 0 0 1 +the client the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 5 ( 1 9 0 0 0 0 1 +with the with w wi wit with BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 5 no 0 9 0 0 0 0 1 +committed was committed c co com comm BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 5 ), 2 9 0 0 0 0 1 +have flushed have h ha hav have BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 5 . 1 9 0 0 0 0 1 +is on is i is is is BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 5 , 1 10 0 0 0 0 1 +the server. the t th the the BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 5 . 1 1 0 0 0 0 1 +A suggested a A A A A BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 1 0 0 0 0 0 9 8 no 0 10 0 0 0 0 1 +last started last l la las last BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 8 (). 3 9 0 0 0 0 1 +The reply's the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 9 ' 1 9 0 0 0 0 1 +caching. If caching. c ca cac cach BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 9 . 1 9 0 0 0 0 1 +storage, then storage, s st sto stor BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 9 ,, 2 9 0 0 0 0 1 +regardless of regardless r re reg rega BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 9 . 1 9 0 0 0 0 1 +server that server s se ser serv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 9 no 0 9 0 0 0 0 1 +policy. The policy. p po pol poli BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 9 . 1 10 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 9 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 11 , 1 10 0 0 0 0 0 +[Page 514] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 9 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 9 0 no 0 4 0 0 0 0 1 +cache by cache c ca cac cach BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 0 no 0 10 0 0 0 0 1 +the server. the t th the the BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 0 . 1 1 0 0 0 0 1 +Some implementations some S So Som Some BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 0 no 0 10 0 0 0 0 1 +NFS4ERR_DQUOT when nfs4err_dquot N NF NFS NFS4 BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 0 '. 2 8 0 0 0 0 1 +In the in I In In In BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 9 1 , 1 10 0 0 0 0 1 +will return will w wi wil will BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 9 1 ., 2 9 0 0 0 0 1 +the error the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 1 ., 2 8 0 0 0 0 1 +current filehandle current c cu cur curr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 1 , 1 9 0 0 0 0 1 +will return will w wi wil will BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 9 1 . 1 4 0 0 0 0 1 +If mandatory if I If If If BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 2 -, 2 9 0 0 0 0 1 +corresponding byte-range corresponding c co cor corr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 2 - 1 9 0 0 0 0 1 +READ_LT or read_lt R RE REA READ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 2 no 0 9 0 0 0 0 1 +the stateid, the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 2 ,., 3 9 0 0 0 0 1 +client MUST client c cl cli clie BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 2 no 0 10 0 0 0 0 1 +the WRITE the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 2 no 0 10 0 0 0 0 1 +the byte-range the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 2 -.' 3 9 0 0 0 0 1 +conflicting READ_LT conflicting c co con conf BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 2 , 1 9 0 0 0 0 1 +appropriate write appropriate a ap app appr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 2 -- 2 9 0 0 0 0 1 +attempting the attempting a at att atte BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 2 ., 2 9 0 0 0 0 1 +release the release r re rel rele BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 2 -. 2 5 0 0 0 0 1 +If the if I If If If BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 5 ', 2 9 0 0 0 0 1 +client has client c cl cli clie BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 5 no 0 9 0 0 0 0 1 +attempted the attempted a at att atte BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 5 .' 2 9 0 0 0 0 1 +had a had h ha had had BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 5 , 1 9 0 0 0 0 1 +effectively upgrade effectively e ef eff effe BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 5 no 0 9 0 0 0 0 1 +server has server s se ser serv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 5 . 1 10 0 0 0 0 1 +the READ_LT the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 5 ,- 2 9 0 0 0 0 1 +attempt the attempt a at att atte BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 5 , 1 9 0 0 0 0 1 +another client another a an ano anot BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 5 . 1 9 0 0 0 0 1 +trying to trying t tr try tryi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 5 ,. 2 10 0 0 0 0 1 +has no has h ha has has BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 5 , 1 8 0 0 0 0 1 +operation to operation o op ope oper BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 5 . 1 3 0 0 0 0 1 +If one if I If If If BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 8 no 0 9 0 0 0 0 1 +written, those written, w wr wri writ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 8 ,, 2 10 0 0 0 0 1 +proceed until proceed p pr pro proc BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 8 . 1 9 0 0 0 0 1 +where this where w wh whe wher BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 8 , 1 9 0 0 0 0 1 +will be will w wi wil will BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 9 8 no 0 9 0 0 0 0 1 +outstanding. Normally, outstanding. o ou out outs BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 8 ., 2 9 0 0 0 0 1 +of a of o of of of BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 8 no 0 9 0 0 0 0 1 +earlier OPEN. earlier e ea ear earl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 8 ., 2 9 0 0 0 0 1 +with a with w wi wit with BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 8 , 1 9 0 0 0 0 1 +though the though t th tho thou BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 8 . 1 7 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 9 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 11 , 1 10 0 0 0 0 0 +[Page 515] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 9 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 9 0 no 0 4 0 0 0 0 1 +18.33. Operation 18.33. 1 18 18. 18.3 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 0 ..:- 4 10 0 0 0 0 1 +18.33.1. ARGUMENT 18.33.1. 1 18 18. 18.3 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 1 ... 3 10 0 0 0 0 1 +typedef opaque typedef t ty typ type BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 1 ; 1 10 0 0 0 0 1 +struct gss_cb_handles4 struct s st str stru BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 1 no 0 8 0 0 0 0 1 +rpc_gss_svc_t rpc_gss_svc_t rpc_gss_svc_t r rp rpc rpc_ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 1 no 0 4 0 0 0 0 1 +gcbp_service; /* gcbp_service; g gc gcb gcbp BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 1 ;/**/ 5 10 0 0 0 0 1 +gsshandle4_t gsshandle4_t gsshandle4_t g gs gss gssh BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 1 no 0 4 0 0 0 0 1 +gcbp_handle_from_server; gcbp_handle_from_server; gcbp_handle_from_server; g gc gcb gcbp BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 1 ; 1 8 0 0 0 0 1 +gsshandle4_t gsshandle4_t gsshandle4_t g gs gss gssh BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 1 no 0 4 0 0 0 0 1 +gcbp_handle_from_client; gcbp_handle_from_client; gcbp_handle_from_client; g gc gcb gcbp BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 1 ; 1 8 0 0 0 0 1 +}; }; }; } }; }; }; BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 1 ; 1 1 0 0 0 0 1 +union callback_sec_parms4 union u un uni unio BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 2 () 2 10 0 0 0 0 1 +case AUTH_NONE: case c ca cas case BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 9 2 : 1 2 0 0 0 0 1 +void; void; void; v vo voi void BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 2 ; 1 1 0 0 0 0 1 +case AUTH_SYS: case c ca cas case BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 9 2 : 1 2 0 0 0 0 1 +authsys_parms authsys_parms authsys_parms a au aut auth BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 2 no 0 2 0 0 0 0 1 +cbsp_sys_cred; /* cbsp_sys_cred; c cb cbs cbsp BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 2 ;/**/ 5 5 0 0 0 0 1 +case RPCSEC_GSS: case c ca cas case BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 9 2 : 1 2 0 0 0 0 1 +gss_cb_handles4 cbsp_gss_handles; gss_cb_handles4 g gs gss gss_ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 2 ; 1 5 0 0 0 0 1 +}; }; }; } }; }; }; BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 2 ; 1 0 0 0 0 0 1 +struct BACKCHANNEL_CTL4args struct s st str stru BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 4 no 0 10 0 0 0 0 1 +uint32_t uint32_t uint32_t u ui uin uint BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 4 no 0 3 0 0 0 0 1 +bca_cb_program; bca_cb_program; bca_cb_program; b bc bca bca_ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 4 ; 1 5 0 0 0 0 1 +callback_sec_parms4 callback_sec_parms4 callback_sec_parms4 c ca cal call BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 4 no 0 6 0 0 0 0 1 +bca_sec_parms<>; bca_sec_parms<>; bca_sec_parms<>; b bc bca bca_ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 4 ; 1 5 0 0 0 0 1 +}; }; }; } }; }; }; BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 4 ; 1 1 0 0 0 0 1 +18.33.2. RESULT 18.33.2. 1 18 18. 18.3 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 5 ... 3 10 0 0 0 0 1 +struct BACKCHANNEL_CTL4res struct s st str stru BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 5 no 0 10 0 0 0 0 1 +nfsstat4 nfsstat4 nfsstat4 n nf nfs nfss BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 5 no 0 3 0 0 0 0 1 +bcr_status; bcr_status; bcr_status; b bc bcr bcr_ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 5 ; 1 4 0 0 0 0 1 +}; }; }; } }; }; }; BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 5 ; 1 1 0 0 0 0 1 +18.33.3. DESCRIPTION 18.33.3. 1 18 18. 18.3 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 6 ... 3 10 0 0 0 0 1 +The BACKCHANNEL_CTL the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 6 ' 1 9 0 0 0 0 1 +program number program p pr pro prog BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 9 6 () 2 10 0 0 0 0 1 +the backchannel. the t th the the BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 6 . 1 2 0 0 0 0 1 +The arguments the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 8 no 0 8 0 0 0 0 1 +CREATE_SESSION parameters. create_session C CR CRE CREA BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 8 ., 2 9 0 0 0 0 1 +bca_cb_program field bca_cb_program b bc bca bca_ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 8 no 0 10 0 0 0 0 1 +to the to t to to to BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 8 no 0 9 0 0 0 0 1 +CREATE_SESSION (Section create_session C CR CRE CREA BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 8 (.). 4 4 0 0 0 0 1 +BACKCHANNEL_CTL MUST backchannel_ctl B BA BAC BACK BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 10 . 1 10 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 9 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 11 , 1 10 0 0 0 0 0 +[Page 516] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 9 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 9 0 no 0 4 0 0 0 0 1 +If the if I If If If BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 0 no 0 10 0 0 0 0 1 +not exist not n no not not BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 0 ,. 2 9 0 0 0 0 1 +If an if I If If If BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 2 ( 1 7 0 0 0 0 1 +Section 2.10.9), section S Se Sec Sect BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 2 ..), 4 9 0 0 0 0 1 +common SSV common c co com comm BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 2 , 1 10 0 0 0 0 1 +this situation this t th thi this BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 2 ... 3 6 0 0 0 0 1 +18.34. Operation 18.34. 1 18 18. 18.3 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 6 ..:- 4 10 0 0 0 0 1 +Session Session session S Se Ses Sess BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 6 no 0 1 0 0 0 0 1 +18.34.1. ARGUMENT 18.34.1. 1 18 18. 18.3 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 6 ... 3 10 0 0 0 0 1 +enum channel_dir_from_client4 enum e en enu enum BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 7 no 0 10 0 0 0 0 1 +CDFC4_FORE CDFC4_FORE cdfc4_fore C CD CDF CDFC BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 7 no 0 3 0 0 0 0 1 += 0x1, = = = = = BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 7 , 1 2 0 0 0 0 1 +CDFC4_BACK CDFC4_BACK cdfc4_back C CD CDF CDFC BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 7 no 0 3 0 0 0 0 1 += 0x2, = = = = = BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 7 , 1 2 0 0 0 0 1 +CDFC4_FORE_OR_BOTH CDFC4_FORE_OR_BOTH cdfc4_fore_or_both C CD CDF CDFC BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 7 no 0 5 0 0 0 0 1 += 0x3, = = = = = BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 7 , 1 2 0 0 0 0 1 +CDFC4_BACK_OR_BOTH CDFC4_BACK_OR_BOTH cdfc4_back_or_both C CD CDF CDFC BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 7 no 0 5 0 0 0 0 1 += 0x7 = = = = = BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 7 no 0 1 0 0 0 0 1 +}; }; }; } }; }; }; BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 7 ; 1 0 0 0 0 0 1 +struct BIND_CONN_TO_SESSION4args struct s st str stru BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 9 no 0 10 0 0 0 0 1 +sessionid4 sessionid4 sessionid4 s se ses sess BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 9 no 0 3 0 0 0 0 1 +bctsa_sessid; bctsa_sessid; bctsa_sessid; b bc bct bcts BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 9 ; 1 4 0 0 0 0 1 +channel_dir_from_client4 channel_dir_from_client4 channel_dir_from_client4 c ch cha chan BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 9 no 0 10 0 0 0 0 1 +bctsa_dir; bctsa_dir; bctsa_dir; b bc bct bcts BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 9 ; 1 4 0 0 0 0 1 +bool bool bool b bo boo bool BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 10 no 0 1 0 0 0 0 1 +bctsa_use_conn_in_rdma_mode; bctsa_use_conn_in_rdma_mode; bctsa_use_conn_in_rdma_mode; b bc bct bcts BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 10 ; 1 10 0 0 0 0 1 +}; }; }; } }; }; }; BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 10 ; 1 1 0 0 0 0 1 +18.34.2. RESULT 18.34.2. 1 18 18. 18.3 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 10 ... 3 10 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 9 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 11 , 1 10 0 0 0 0 0 +[Page 517] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 9 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 9 0 no 0 4 0 0 0 0 1 +enum channel_dir_from_server4 enum e en enu enum BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 0 no 0 10 0 0 0 0 1 +CDFS4_FORE CDFS4_FORE cdfs4_fore C CD CDF CDFS BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 0 no 0 3 0 0 0 0 1 += 0x1, = = = = = BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 0 , 1 2 0 0 0 0 1 +CDFS4_BACK CDFS4_BACK cdfs4_back C CD CDF CDFS BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 0 no 0 3 0 0 0 0 1 += 0x2, = = = = = BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 0 , 1 2 0 0 0 0 1 +CDFS4_BOTH CDFS4_BOTH cdfs4_both C CD CDF CDFS BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 0 no 0 3 0 0 0 0 1 += 0x3 = = = = = BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 0 no 0 1 0 0 0 0 1 +}; }; }; } }; }; }; BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 0 ; 1 0 0 0 0 0 1 +struct BIND_CONN_TO_SESSION4resok struct s st str stru BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 1 no 0 10 0 0 0 0 1 +sessionid4 sessionid4 sessionid4 s se ses sess BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 1 no 0 3 0 0 0 0 1 +bctsr_sessid; bctsr_sessid; bctsr_sessid; b bc bct bcts BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 1 ; 1 3 0 0 0 0 1 +channel_dir_from_server4 channel_dir_from_server4 channel_dir_from_server4 c ch cha chan BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 1 no 0 10 0 0 0 0 1 +bctsr_dir; bctsr_dir; bctsr_dir; b bc bct bcts BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 1 ; 1 4 0 0 0 0 1 +bool bool bool b bo boo bool BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 1 no 0 1 0 0 0 0 1 +bctsr_use_conn_in_rdma_mode; bctsr_use_conn_in_rdma_mode; bctsr_use_conn_in_rdma_mode; b bc bct bcts BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 1 ; 1 10 0 0 0 0 1 +}; }; }; } }; }; }; BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 1 ; 1 1 0 0 0 0 1 +union BIND_CONN_TO_SESSION4res union u un uni unio BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 1 no 0 9 0 0 0 0 1 +switch (nfsstat4 switch s sw swi swit BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 1 () 2 10 0 0 0 0 1 +case NFS4_OK: case c ca cas case BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 9 2 : 1 5 0 0 0 0 1 +BIND_CONN_TO_SESSION4resok BIND_CONN_TO_SESSION4resok bind_conn_to_session4resok B BI BIN BIND BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 2 no 0 10 0 0 0 0 1 +bctsr_resok4; bctsr_resok4; bctsr_resok4; b bc bct bcts BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 2 ; 1 5 0 0 0 0 1 +default: default: default: d de def defa BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 2 : 1 10 0 0 0 0 1 +void; void; void; v vo voi void BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 2 ; 1 6 0 0 0 0 1 +}; }; }; } }; }; }; BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 2 ; 1 3 0 0 0 0 1 +18.34.3. DESCRIPTION 18.34.3. 1 18 18. 18.3 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 2 ... 3 10 0 0 0 0 1 +BIND_CONN_TO_SESSION is bind_conn_to_session B BI BIN BIND BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 3 no 0 10 0 0 0 0 1 +a session. a a a a a BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 1 0 0 0 0 0 9 3 . 1 9 0 0 0 0 1 +the session. the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 3 . 1 8 0 0 0 0 1 +procedure. If procedure. p pr pro proc BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 3 .(.), 5 9 0 0 0 0 1 +principal, security principal, p pr pri prin BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 3 ,, 2 9 0 0 0 0 1 +invoke the invoke i in inv invo BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 3 ., 2 9 0 0 0 0 1 +used with used u us use used BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 3 , 1 10 0 0 0 0 1 +created the created c cr cre crea BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 3 ., 2 9 0 0 0 0 1 +GSS mechanism gss G GS GSS GSS BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 3 (..). 5 10 0 0 0 0 1 +If, when if, I If If, If, BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 7 ,, 2 9 0 0 0 0 1 +state protection, state s st sta stat BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 7 , 1 7 0 0 0 0 1 +BIND_CONN_TO_SESSION to bind_conn_to_session B BI BIN BIND BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 7 , 1 9 0 0 0 0 1 +unless the unless u un unl unle BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 7 no 0 8 0 0 0 0 1 +backchannel. When backchannel. b ba bac back BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 7 ., 2 9 0 0 0 0 1 +COMPOUND request compound C CO COM COMP BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 9 7 no 0 10 0 0 0 0 1 +the connection the t th the the BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 7 . 1 7 0 0 0 0 1 +The field the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 10 no 0 10 0 0 0 0 1 +the connection the t th the the BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 10 no 0 9 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 9 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 11 , 1 10 0 0 0 0 0 +[Page 518] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 9 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 9 0 no 0 4 0 0 0 0 1 +channels. The channels. c ch cha chan BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 0 . 1 9 0 0 0 0 1 +wants to wants w wa wan want BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 0 no 0 9 0 0 0 0 1 +backchannel, but backchannel, b ba bac back BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 0 , 1 9 0 0 0 0 1 +the fore the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 0 . 1 9 0 0 0 0 1 +client wants client c cl cli clie BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 0 , 1 10 0 0 0 0 1 +but will but b bu but but BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 0 no 0 8 0 0 0 0 1 +backchannel. The backchannel. b ba bac back BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 0 .() 3 9 0 0 0 0 1 +connection is connection c co con conn BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 0 ., 2 9 0 0 0 0 1 +the server the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 0 . 1 8 0 0 0 0 1 +CDFC4_BACK, the cdfc4_back, C CD CDF CDFC BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 0 ,. 2 8 0 0 0 0 1 +specified CDFC4_FORE_OR_BOTH, specified s sp spe spec BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 0 , 1 9 0 0 0 0 1 +CDFS4_BOTH. If cdfs4_both. C CD CDF CDFS BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 0 ., 2 9 0 0 0 0 1 +MUST return must M MU MUS MUST BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 9 0 . 1 5 0 0 0 0 1 +See the see S Se See See BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 9 3 (.), 4 10 0 0 0 0 1 +of the of o of of of BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 3 no 0 8 0 0 0 0 1 +bctsa_use_conn_in_rdma_mode, and bctsa_use_conn_in_rdma_mode, b bc bct bcts BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 3 , 1 7 0 0 0 0 1 +csr_use_conn_in_rdma_mode to csr_use_conn_in_rdma_mode c cs csr csr_ BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 3 . 1 9 0 0 0 0 1 +Invoking BIND_CONN_TO_SESSION invoking I In Inv Invo BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 4 no 0 10 0 0 0 0 1 +the specified the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 4 , 1 10 0 0 0 0 1 +NFS4_OK, unless nfs4_ok, N NF NFS NFS4 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 4 , 1 8 0 0 0 0 1 +channels the channels c ch cha chan BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 4 ., 2 9 0 0 0 0 1 +return NFS4ERR_INVAL. return r re ret retu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 4 . 1 3 0 0 0 0 1 +18.34.4. IMPLEMENTATION 18.34.4. 1 18 18. 18.3 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 5 ... 3 10 0 0 0 0 1 +If a if I If If If BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 5 ', 2 10 0 0 0 0 1 +ID's state id's I ID ID' ID's BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 9 5 ', 2 9 0 0 0 0 1 +use BIND_CONN_TO_SESSION use u us use use BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 5 . 1 9 0 0 0 0 1 +server restarted server s se ser serv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 5 , 1 10 0 0 0 0 1 +the server the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 5 . 1 8 0 0 0 0 1 +ultimately have ultimately u ul ult ulti BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 5 no 0 9 0 0 0 0 1 +session. session. session. s se ses sess BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 5 . 1 1 0 0 0 0 1 +Suppose SP4_SSV suppose S Su Sup Supp BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 8 , 1 7 0 0 0 0 1 +BIND_CONN_TO_SESSION is bind_conn_to_session B BI BIN BIND BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 8 no 0 8 0 0 0 0 1 +spo_must_enforce set spo_must_enforce s sp spo spo_ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 8 (.). 4 9 0 0 0 0 1 +If so, if I If If If BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 8 ,,, 3 10 0 0 0 0 1 +and the and a an and and BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 8 . 1 9 0 0 0 0 1 +client, per client, c cl cli clie BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 8 ,,. 3 9 0 0 0 0 1 +a new a a a a a BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 1 0 0 0 0 0 9 8 , 1 9 0 0 0 0 1 +the session the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 8 no 0 10 0 0 0 0 1 +mechanism. The mechanism. m me mec mech BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 8 . 1 9 0 0 0 0 1 +codes use codes c co cod code BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 8 no 0 9 0 0 0 0 1 +have changed. have h ha hav have BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 8 ., 2 8 0 0 0 0 1 +single, general single, s si sin sing BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 8 ,. 2 6 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 9 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 11 , 1 10 0 0 0 0 0 +[Page 519] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 9 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 9 0 no 0 4 0 0 0 0 1 +o The o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 9 0 . 1 10 0 0 0 0 1 +o The o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 9 0 , 1 9 0 0 0 0 1 +BIND_CONN_TO_SESSION with bind_conn_to_session B BI BIN BIND BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 0 (, 2 9 0 0 0 0 1 +i.e., what i.e., i i. i.e i.e. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 0 ..,) 4 10 0 0 0 0 1 +the RPCSEC_GSS the t th the the BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 0 . 1 7 0 0 0 0 1 +o If o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 9 2 , 1 10 0 0 0 0 1 +SET_SSV did set_ssv S SE SET SET_ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 2 .- 2 8 0 0 0 0 1 +original SET_SSV, original o or ori orig BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 2 , 1 9 0 0 0 0 1 +cache. cache. cache. c ca cac cach BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 2 . 1 1 0 0 0 0 1 +o If o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 9 3 , 1 10 0 0 0 0 1 +the server's the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 3 '( 2 8 0 0 0 0 1 +likely not likely l li lik like BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 3 ). 2 9 0 0 0 0 1 +with the with w wi wit with BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 3 no 0 8 0 0 0 0 1 +RPCSEC_GSS message rpcsec_gss R RP RPC RPCS BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 3 . 1 5 0 0 0 0 1 +o The o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 9 5 no 0 9 0 0 0 0 1 +succeed. If succeed. s su suc succ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 5 .,-. 4 10 0 0 0 0 1 +original SET_SSV original o or ori orig BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 5 ,. 2 9 0 0 0 0 1 +If the if I If If If BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 5 , 1 10 0 0 0 0 1 +return the return r re ret retu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 5 . 1 6 0 0 0 0 1 +18.35. Operation 18.35. 1 18 18. 18.3 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 7 ..:- 4 10 0 0 0 0 1 +The EXCHANGE_ID the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 7 - 1 9 0 0 0 0 1 +identifiers (owners), identifiers i id ide iden BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 7 (),, 4 9 0 0 0 0 1 +one if one o on one one BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 7 . 1 8 0 0 0 0 1 +connection on connection c co con conn BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 7 , 1 9 0 0 0 0 1 +when a when w wh whe when BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 7 no 0 10 0 0 0 0 1 +a request a a a a a BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 1 0 0 0 0 0 9 7 . 1 9 0 0 0 0 1 +18.35.1. ARGUMENT 18.35.1. 1 18 18. 18.3 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 9 ... 3 10 0 0 0 0 1 +const EXCHGID4_FLAG_SUPP_MOVED_REFER const c co con cons BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 10 no 0 10 0 0 0 0 1 += 0x00000001; = = = = = BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 10 ; 1 3 0 0 0 0 1 +const EXCHGID4_FLAG_SUPP_MOVED_MIGR const c co con cons BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 10 no 0 9 0 0 0 0 1 += 0x00000002; = = = = = BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 10 ; 1 3 0 0 0 0 1 +const EXCHGID4_FLAG_BIND_PRINC_STATEID const c co con cons BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 10 ; 1 10 0 0 0 0 1 +const EXCHGID4_FLAG_USE_NON_PNFS const c co con cons BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 10 no 0 10 0 0 0 0 1 += 0x00010000; = = = = = BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 10 ; 1 4 0 0 0 0 1 +const EXCHGID4_FLAG_USE_PNFS_MDS const c co con cons BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 10 no 0 10 0 0 0 0 1 += 0x00020000; = = = = = BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 10 ; 1 4 0 0 0 0 1 +const EXCHGID4_FLAG_USE_PNFS_DS const c co con cons BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 10 no 0 9 0 0 0 0 1 += 0x00040000; = = = = = BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 10 ; 1 4 0 0 0 0 1 +const EXCHGID4_FLAG_MASK_PNFS const c co con cons BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 11 no 0 10 0 0 0 0 1 += 0x00070000; = = = = = BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 11 ; 1 4 0 0 0 0 1 +const EXCHGID4_FLAG_UPD_CONFIRMED_REC_A const c co con cons BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 11 ; 1 10 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 9 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 11 , 1 10 0 0 0 0 0 +[Page 520] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 9 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 9 0 no 0 4 0 0 0 0 1 +const EXCHGID4_FLAG_CONFIRMED_R const c co con cons BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 0 no 0 10 0 0 0 0 1 += 0x80000000; = = = = = BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 0 ; 1 4 0 0 0 0 1 +struct state_protect_ops4 struct s st str stru BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 1 no 0 10 0 0 0 0 1 +bitmap4 spo_must_enforce; bitmap4 b bi bit bitm BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 1 ; 1 9 0 0 0 0 1 +bitmap4 spo_must_allow; bitmap4 b bi bit bitm BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 1 ; 1 8 0 0 0 0 1 +}; }; }; } }; }; }; BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 1 ; 1 1 0 0 0 0 1 +struct ssv_sp_parms4 struct s st str stru BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 2 no 0 10 0 0 0 0 1 +state_protect_ops4 state_protect_ops4 state_protect_ops4 s st sta stat BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 2 no 0 8 0 0 0 0 1 +ssp_ops; ssp_ops; ssp_ops; s ss ssp ssp_ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 2 ; 1 3 0 0 0 0 1 +sec_oid4 sec_oid4 sec_oid4 s se sec sec_ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 2 no 0 3 0 0 0 0 1 +ssp_hash_algs<>; ssp_hash_algs<>; ssp_hash_algs<>; s ss ssp ssp_ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 2 ; 1 7 0 0 0 0 1 +sec_oid4 sec_oid4 sec_oid4 s se sec sec_ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 2 no 0 3 0 0 0 0 1 +ssp_encr_algs<>; ssp_encr_algs<>; ssp_encr_algs<>; s ss ssp ssp_ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 2 ; 1 7 0 0 0 0 1 +uint32_t uint32_t uint32_t u ui uin uint BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 2 no 0 3 0 0 0 0 1 +ssp_window; ssp_window; ssp_window; s ss ssp ssp_ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 2 ; 1 5 0 0 0 0 1 +uint32_t uint32_t uint32_t u ui uin uint BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 2 no 0 3 0 0 0 0 1 +ssp_num_gss_handles; ssp_num_gss_handles; ssp_num_gss_handles; s ss ssp ssp_ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 2 ; 1 9 0 0 0 0 1 +}; }; }; } }; }; }; BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 2 ; 1 1 0 0 0 0 1 +enum state_protect_how4 enum e en enu enum BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 4 no 0 10 0 0 0 0 1 +SP4_NONE = sp4_none S SP SP4 SP4_ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 4 , 1 5 0 0 0 0 1 +SP4_MACH_CRED = sp4_mach_cred S SP SP4 SP4_ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 4 , 1 7 0 0 0 0 1 +SP4_SSV = sp4_ssv S SP SP4 SP4_ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 4 no 0 4 0 0 0 0 1 +}; }; }; } }; }; }; BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 4 ; 1 1 0 0 0 0 1 +union state_protect4_a union u un uni unio BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 6 () 2 10 0 0 0 0 1 +case SP4_NONE: case c ca cas case BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 9 6 : 1 2 0 0 0 0 1 +void; void; void; v vo voi void BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 6 ; 1 1 0 0 0 0 1 +case SP4_MACH_CRED: case c ca cas case BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 9 6 : 1 3 0 0 0 0 1 +state_protect_ops4 state_protect_ops4 state_protect_ops4 s st sta stat BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 6 no 0 3 0 0 0 0 1 +spa_mach_ops; spa_mach_ops; spa_mach_ops; s sp spa spa_ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 6 ; 1 2 0 0 0 0 1 +case SP4_SSV: case c ca cas case BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 9 6 : 1 2 0 0 0 0 1 +ssv_sp_parms4 ssv_sp_parms4 ssv_sp_parms4 s ss ssv ssv_ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 6 no 0 2 0 0 0 0 1 +spa_ssv_parms; spa_ssv_parms; spa_ssv_parms; s sp spa spa_ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 6 ; 1 2 0 0 0 0 1 +}; }; }; } }; }; }; BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 6 ; 1 0 0 0 0 0 1 +struct EXCHANGE_ID4args struct s st str stru BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 8 no 0 10 0 0 0 0 1 +client_owner4 client_owner4 client_owner4 c cl cli clie BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 8 no 0 5 0 0 0 0 1 +eia_clientowner; eia_clientowner; eia_clientowner; e ei eia eia_ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 8 ; 1 6 0 0 0 0 1 +uint32_t uint32_t uint32_t u ui uin uint BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 8 no 0 3 0 0 0 0 1 +eia_flags; eia_flags; eia_flags; e ei eia eia_ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 8 ; 1 4 0 0 0 0 1 +state_protect4_a state_protect4_a state_protect4_a s st sta stat BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 8 no 0 6 0 0 0 0 1 +eia_state_protect; eia_state_protect; eia_state_protect; e ei eia eia_ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 8 ; 1 7 0 0 0 0 1 +nfs_impl_id4 nfs_impl_id4 nfs_impl_id4 n nf nfs nfs_ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 8 no 0 5 0 0 0 0 1 +eia_client_impl_id<1>; eia_client_impl_id<1>; eia_client_impl_id<1>; e ei eia eia_ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 8 ; 1 8 0 0 0 0 1 +}; }; }; } }; }; }; BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 8 ; 1 1 0 0 0 0 1 +18.35.2. RESULT 18.35.2. 1 18 18. 18.3 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 10 ... 3 10 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 9 10 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 10 , 1 10 0 0 0 0 0 +[Page 521] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 10 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 9 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 9 0 no 0 4 0 0 0 0 1 +struct ssv_prot_info4 struct s st str stru BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 0 no 0 10 0 0 0 0 1 +state_protect_ops4 state_protect_ops4 state_protect_ops4 s st sta stat BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 0 no 0 7 0 0 0 0 1 +spi_ops; spi_ops; spi_ops; s sp spi spi_ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 0 ; 1 3 0 0 0 0 1 +uint32_t uint32_t uint32_t u ui uin uint BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 0 no 0 3 0 0 0 0 1 +spi_hash_alg; spi_hash_alg; spi_hash_alg; s sp spi spi_ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 0 ; 1 5 0 0 0 0 1 +uint32_t uint32_t uint32_t u ui uin uint BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 0 no 0 3 0 0 0 0 1 +spi_encr_alg; spi_encr_alg; spi_encr_alg; s sp spi spi_ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 0 ; 1 5 0 0 0 0 1 +uint32_t uint32_t uint32_t u ui uin uint BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 0 no 0 3 0 0 0 0 1 +spi_ssv_len; spi_ssv_len; spi_ssv_len; s sp spi spi_ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 0 ; 1 5 0 0 0 0 1 +uint32_t uint32_t uint32_t u ui uin uint BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 0 no 0 3 0 0 0 0 1 +spi_window; spi_window; spi_window; s sp spi spi_ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 0 ; 1 5 0 0 0 0 1 +gsshandle4_t gsshandle4_t gsshandle4_t g gs gss gssh BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 0 no 0 5 0 0 0 0 1 +spi_handles<>; spi_handles<>; spi_handles<>; s sp spi spi_ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 0 ; 1 6 0 0 0 0 1 +}; }; }; } }; }; }; BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 0 ; 1 1 0 0 0 0 1 +union state_protect4_r union u un uni unio BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 2 () 2 10 0 0 0 0 1 +case SP4_NONE: case c ca cas case BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 9 2 : 1 2 0 0 0 0 1 +void; void; void; v vo voi void BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 2 ; 1 1 0 0 0 0 1 +case SP4_MACH_CRED: case c ca cas case BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 9 2 : 1 3 0 0 0 0 1 +state_protect_ops4 state_protect_ops4 state_protect_ops4 s st sta stat BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 2 no 0 3 0 0 0 0 1 +spr_mach_ops; spr_mach_ops; spr_mach_ops; s sp spr spr_ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 2 ; 1 2 0 0 0 0 1 +case SP4_SSV: case c ca cas case BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 9 2 : 1 2 0 0 0 0 1 +ssv_prot_info4 ssv_prot_info4 ssv_prot_info4 s ss ssv ssv_ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 2 no 0 2 0 0 0 0 1 +spr_ssv_info; spr_ssv_info; spr_ssv_info; s sp spr spr_ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 2 ; 1 2 0 0 0 0 1 +}; }; }; } }; }; }; BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 2 ; 1 0 0 0 0 0 1 +struct EXCHANGE_ID4resok struct s st str stru BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 3 no 0 7 0 0 0 0 1 +clientid4 clientid4 clientid4 c cl cli clie BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 3 no 0 2 0 0 0 0 1 +eir_clientid; eir_clientid; eir_clientid; e ei eir eir_ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 3 ; 1 3 0 0 0 0 1 +sequenceid4 sequenceid4 sequenceid4 s se seq sequ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 3 no 0 3 0 0 0 0 1 +eir_sequenceid; eir_sequenceid; eir_sequenceid; e ei eir eir_ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 3 ; 1 4 0 0 0 0 1 +uint32_t uint32_t uint32_t u ui uin uint BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 3 no 0 2 0 0 0 0 1 +eir_flags; eir_flags; eir_flags; e ei eir eir_ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 3 ; 1 2 0 0 0 0 1 +state_protect4_r eir_state_protect; state_protect4_r s st sta stat BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 3 ; 1 9 0 0 0 0 1 +server_owner4 server_owner4 server_owner4 s se ser serv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 3 no 0 3 0 0 0 0 1 +eir_server_owner; eir_server_owner; eir_server_owner; e ei eir eir_ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 3 ; 1 4 0 0 0 0 1 +opaque opaque opaque o op opa opaq BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 3 no 0 1 0 0 0 0 1 +eir_server_scope<NFS4_OPAQUE_LIMIT>; eir_server_scope<NFS4_OPAQUE_LIMIT>; eir_server_scope<nfs4_opaque_limit>; e ei eir eir_ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 3 ; 1 10 0 0 0 0 1 +nfs_impl_id4 nfs_impl_id4 nfs_impl_id4 n nf nfs nfs_ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 3 no 0 3 0 0 0 0 1 +eir_server_impl_id<1>; eir_server_impl_id<1>; eir_server_impl_id<1>; e ei eir eir_ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 3 ; 1 6 0 0 0 0 1 +}; }; }; } }; }; }; BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 3 ; 1 0 0 0 0 0 1 +union EXCHANGE_ID4res union u un uni unio BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 5 () 2 10 0 0 0 0 1 +case NFS4_OK: case c ca cas case BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 9 5 : 1 2 0 0 0 0 1 +EXCHANGE_ID4resok EXCHANGE_ID4resok exchange_id4resok E EX EXC EXCH BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 5 no 0 3 0 0 0 0 1 +eir_resok4; eir_resok4; eir_resok4; e ei eir eir_ BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 5 ; 1 2 0 0 0 0 1 +default: default: default: d de def defa BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 6 : 1 10 0 0 0 0 1 +void; void; void; v vo voi void BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 6 ; 1 6 0 0 0 0 1 +}; }; }; } }; }; }; BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 6 ; 1 3 0 0 0 0 1 +18.35.3. DESCRIPTION 18.35.3. 1 18 18. 18.3 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 6 ... 3 10 0 0 0 0 1 +The client the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 6 no 0 9 0 0 0 0 1 +client_owner with client_owner c cl cli clie BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 6 ., 2 9 0 0 0 0 1 +already been already a al alr alre BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 6 (.. 3 9 0 0 0 0 1 +Migration), the migration), M Mi Mig Migr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 9 6 ), 2 10 0 0 0 0 1 +ID assigned id I ID ID ID BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 1 0 0 0 0 0 0 9 6 . 1 3 0 0 0 0 1 +The client the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 9 no 0 9 0 0 0 0 1 +the connection the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 9 no 0 10 0 0 0 0 1 +a parent a a a a a BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 1 0 0 0 0 0 9 9 no 0 10 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 9 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 11 , 1 10 0 0 0 0 0 +[Page 522] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 9 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 9 0 no 0 4 0 0 0 0 1 +or to or o or or or BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 0 . 1 9 0 0 0 0 1 +sessions to sessions s se ses sess BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 9 0 , 1 10 0 0 0 0 1 +will become will w wi wil will BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 9 0 . 1 7 0 0 0 0 1 +In situations in I In In In BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 9 1 no 0 9 0 0 0 0 1 +occurred previously, occurred o oc occ occu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 1 ,, 2 10 0 0 0 0 1 +returned eir_sequenceid, returned r re ret retu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 1 , 1 9 0 0 0 0 1 +CREATE_SESSION. CREATE_SESSION. create_session. C CR CRE CREA BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 1 . 1 2 0 0 0 0 1 +If the if I If If If BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 2 , 1 8 0 0 0 0 1 +eir_flags, then eir_flags, e ei eir eir_ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 2 , 1 9 0 0 0 0 1 +client_owner has client_owner c cl cli clie BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 2 no 0 10 0 0 0 0 1 +is not is i is is is BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 2 ., 2 9 0 0 0 0 1 +operations may operations o op ope oper BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 9 2 . 1 6 0 0 0 0 1 +The value the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 3 no 0 9 0 0 0 0 1 +value associate value v va val valu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 3 . 1 9 0 0 0 0 1 +CREATE_SESSION has create_session C CR CRE CREA BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 3 , 1 9 0 0 0 0 1 +value, since value, v va val valu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 3 , 1 10 0 0 0 0 1 +and the and a an and and BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 3 no 0 8 0 0 0 0 1 +EXCHANGE_ID MAY exchange_id E EX EXC EXCH BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 4 no 0 9 0 0 0 0 1 +SEQUENCE. However, sequence. S SE SEQ SEQU BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 9 4 ., 2 9 0 0 0 0 1 +first time, first f fi fir firs BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 4 ,, 2 10 0 0 0 0 1 +possible. If possible. p po pos poss BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 4 ., 2 9 0 0 0 0 1 +it MUST it i it it it BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 4 '. 2 9 0 0 0 0 1 +If it if I If If If BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 4 ,. 2 8 0 0 0 0 1 +The eia_clientowner the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 6 no 0 9 0 0 0 0 1 +co_ownerid string. co_ownerid c co co_ co_o BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 6 .., 3 8 0 0 0 0 1 +describes the describes d de des desc BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 6 , 1 10 0 0 0 0 1 +client. An client. c cl cli clie BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 6 . 1 9 0 0 0 0 1 +will lead will w wi wil will BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 9 6 . 1 10 0 0 0 0 1 +Whereas an whereas W Wh Whe Wher BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 6 no 0 8 0 0 0 0 1 +co_ownerid will co_ownerid c co co_ co_o BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 6 ' 1 9 0 0 0 0 1 +properties, depending properties, p pr pro prop BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 6 ,. 2 8 0 0 0 0 1 +A server a A A A A BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 1 0 0 0 0 0 9 9 no 0 10 0 0 0 0 1 +incarnations of incarnations i in inc inca BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 9 . 1 5 0 0 0 0 1 +In addition in I In In In BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 9 9 , 1 9 0 0 0 0 1 +server owner server s se ser serv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 9 ()(). 5 10 0 0 0 0 1 +The former the T Th The The BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 9 no 0 9 0 0 0 0 1 +described in described d de des desc BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 9 ... 3 9 0 0 0 0 1 +clients to clients c cl cli clie BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 9 no 0 9 0 0 0 0 1 +recognized by recognized r re rec reco BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 9 ( 1 9 0 0 0 0 1 +Section 11.10.9 section S Se Sec Sect BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 9 ..). 4 6 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 9 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 11 , 1 10 0 0 0 0 0 +[Page 523] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 9 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 9 0 no 0 4 0 0 0 0 1 +The client the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 0 no 0 10 0 0 0 0 1 +combination of combination c co com comb BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 0 .. 2 9 0 0 0 0 1 +Thus, if thus, T Th Thu Thus BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 0 ,, 2 9 0 0 0 0 1 +client to client c cl cli clie BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 0 no 0 7 0 0 0 0 1 +eir_server_owner.so_major_id and eir_server_owner.so_major_id e ei eir eir_ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 0 .. 2 9 0 0 0 0 1 +different servers different d di dif diff BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 0 . 1 8 0 0 0 0 1 +eir_server_scope, the eir_server_scope, e ei eir eir_ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 0 , 1 9 0 0 0 0 1 +discussed in discussed d di dis disc BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 0 ... 3 8 0 0 0 0 1 +distinct. If distinct. d di dis dist BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 0 ., 2 9 0 0 0 0 1 +the destination the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 0 no 0 9 0 0 0 0 1 +server and server s se ser serv BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 0 . 1 9 0 0 0 0 1 +The server, the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 4 , 1 9 0 0 0 0 1 +so_major_id of so_major_id s so so_ so_m BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 4 , 1 10 0 0 0 0 1 +several properties several s se sev seve BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 4 . 1 9 0 0 0 0 1 +apply to apply a ap app appl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 4 no 0 9 0 0 0 0 1 +ID. The id. I ID ID. ID. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 4 . 1 9 0 0 0 0 1 +EXCHANGE_ID. The exchange_id. E EX EXC EXCH BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 4 .: 2 6 0 0 0 0 1 +o The o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 9 6 , 1 10 0 0 0 0 1 +the results the t th the the BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 6 : 1 4 0 0 0 0 1 +* EXCHGID4_FLAG_SUPP_MOVED_REFER * * * * * BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 7 * 1 10 0 0 0 0 1 +* EXCHGID4_FLAG_SUPP_MOVED_MIGR * * * * * BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 7 * 1 10 0 0 0 0 1 +* EXCHGID4_FLAG_BIND_PRINC_STATEID * * * * * BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 7 * 1 10 0 0 0 0 1 +* EXCHGID4_FLAG_USE_NON_PNFS * * * * * BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 7 * 1 10 0 0 0 0 1 +* EXCHGID4_FLAG_USE_PNFS_MDS * * * * * BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 7 * 1 10 0 0 0 0 1 +* EXCHGID4_FLAG_USE_PNFS_DS * * * * * BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 8 * 1 10 0 0 0 0 1 +These properties these T Th The Thes BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 8 no 0 8 0 0 0 0 1 +operations on operations o op ope oper BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 9 8 no 0 10 0 0 0 0 1 +change them. change c ch cha chan BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 8 . 1 1 0 0 0 0 1 +o The o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 9 8 ,,, 3 10 0 0 0 0 1 +or SP4_SSV, or o or or or BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 8 , 1 8 0 0 0 0 1 +EXCHANGE_ID. Once exchange_id. E EX EXC EXCH BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 8 ., 2 8 0 0 0 0 1 +cannot be cannot c ca can cann BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 8 . 1 8 0 0 0 0 1 +o For o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 9 10 : 1 10 0 0 0 0 1 +* The * * * * * BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 10 *() 3 10 0 0 0 0 1 +specified state specified s sp spe spec BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 10 . 1 9 0 0 0 0 1 +of EXCHANGE_ID. of o of of of BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 10 . 1 2 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 9 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 11 , 1 10 0 0 0 0 0 +[Page 524] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 9 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 9 0 no 0 4 0 0 0 0 1 +* The * * * * * BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 0 *() 3 9 0 0 0 0 1 +specified state specified s sp spe spec BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 0 . 1 10 0 0 0 0 1 +of EXCHANGE_ID. of o of of of BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 0 . 1 2 0 0 0 0 1 +Once the once O On Onc Once BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 1 , 1 10 0 0 0 0 1 +updated by updated u up upd upda BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 1 . 1 7 0 0 0 0 1 +o For o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 9 1 : 1 10 0 0 0 0 1 +* The * * * * * BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 1 *. 2 10 0 0 0 0 1 +one of one o on one one BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 1 no 0 8 0 0 0 0 1 +EXCHANGE_ID arguments. exchange_id E EX EXC EXCH BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 1 ., 2 9 0 0 0 0 1 +property cannot property p pr pro prop BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 1 . 1 9 0 0 0 0 1 +* The * * * * * BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 3 *. 2 8 0 0 0 0 1 +represented by represented r re rep repr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 3 no 0 10 0 0 0 0 1 +of the of o of of of BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 3 ., 2 9 0 0 0 0 1 +this property this t th thi this BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 3 no 0 9 0 0 0 0 1 +requests. requests. requests. r re req requ BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 3 . 1 1 0 0 0 0 1 +* The * * * * * BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 4 *. 2 9 0 0 0 0 1 +spi_ssv_len field spi_ssv_len s sp spi spi_ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 4 . 1 9 0 0 0 0 1 +ID is id I ID ID ID BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 1 0 0 0 0 0 0 9 4 , 1 10 0 0 0 0 1 +EXCHANGE_ID operations. exchange_id E EX EXC EXCH BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 4 . 1 3 0 0 0 0 1 +There are there T Th The Ther BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 5 no 0 9 0 0 0 0 1 +length of length l le len leng BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 5 (""), 5 9 0 0 0 0 1 +the length the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 5 (""), 5 10 0 0 0 0 1 +the length the t th the the BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 5 (""). 5 5 0 0 0 0 1 ++ key + + + + + BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 6 . 1 10 0 0 0 0 1 +used for used u us use used BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 6 no 0 8 0 0 0 0 1 +derived from derived d de der deri BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 6 , 1 9 0 0 0 0 1 +algorithm. The algorithm. a al alg algo BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 6 . 1 9 0 0 0 0 1 +key length key k ke key key BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 9 6 no 0 9 0 0 0 0 1 +hash algorithm hash h ha has hash BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 6 , 1 9 0 0 0 0 1 +use of use u us use use BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 6 . 1 5 0 0 0 0 1 ++ hash + + + + + BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 9 . 1 10 0 0 0 0 1 +SSV is ssv S SS SSV SSV BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 9 , 1 10 0 0 0 0 1 +recommended that recommended r re rec reco BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 9 no 0 9 0 0 0 0 1 +least as least l le lea leas BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 9 '' 2 10 0 0 0 0 1 +output (see output o ou out outp BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 9 ([]). 5 5 0 0 0 0 1 ++ key + + + + + BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 10 . 1 10 0 0 0 0 1 +result of result r re res resu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 10 . 1 6 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 9 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 11 , 1 10 0 0 0 0 0 +[Page 525] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 9 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 9 0 no 0 4 0 0 0 0 1 ++ key + + + + + BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 0 /. 2 10 0 0 0 0 1 +the subkey the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 0 no 0 10 0 0 0 0 1 +that if that t th tha that BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 0 , 1 9 0 0 0 0 1 +truncated to truncated t tr tru trun BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 0 ( 1 10 0 0 0 0 1 +of RFC2104 of o of of of BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 0 []). 4 3 0 0 0 0 1 +* Number * * * * * BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 1 * 1 10 0 0 0 0 1 +will support will w wi wil will BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 9 1 (..). 5 8 0 0 0 0 1 +represented by represented r re rep repr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 1 . 1 8 0 0 0 0 1 +property may property p pr pro prop BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 1 . 1 9 0 0 0 0 1 +o The o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 9 2 ' 1 8 0 0 0 0 1 +eia_client_impl_id field eia_client_impl_id e ei eia eia_ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 2 . 1 10 0 0 0 0 1 +updated by updated u up upd upda BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 2 . 1 6 0 0 0 0 1 +o The o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 9 3 ' 1 9 0 0 0 0 1 +eir_server_impl_id field eir_server_impl_id e ei eir eir_ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 3 . 1 10 0 0 0 0 1 +updated by updated u up upd upda BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 3 . 1 9 0 0 0 0 1 +The eia_flags the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 4 no 0 9 0 0 0 0 1 +results allow results r re res resu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 9 4 no 0 9 0 0 0 0 1 +capabilities as capabilities c ca cap capa BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 4 . 1 9 0 0 0 0 1 +Whether a whether W Wh Whe Whet BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 4 ' 1 9 0 0 0 0 1 +force the force f fo for forc BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 4 '. 2 9 0 0 0 0 1 +Bits not bits B Bi Bit Bits BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 4 . 1 10 0 0 0 0 1 +are, the are, a ar are are, BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 4 ,. 2 8 0 0 0 0 1 +The EXCHGID4_FLAG_UPD_CONFIRMED_REC_A the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 6 no 0 8 0 0 0 0 1 +eia_flags; it eia_flags; e ei eia eia_ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 6 ;. 2 6 0 0 0 0 1 +EXCHGID4_FLAG_CONFIRMED_R bit exchgid4_flag_confirmed_r E EX EXC EXCH BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 6 ; 1 9 0 0 0 0 1 +always off always a al alw alwa BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 6 . 1 10 0 0 0 0 1 +co_verifier as co_verifier c co co_ co_v BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 6 , 1 8 0 0 0 0 1 +EXCHGID4_FLAG_CONFIRMED_R in exchgid4_flag_confirmed_r E EX EXC EXCH BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 6 . 1 6 0 0 0 0 1 +EXCHGID4_FLAG_CONFIRMED_R flag exchgid4_flag_confirmed_r E EX EXC EXCH BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 6 no 0 10 0 0 0 0 1 +ID it id I ID ID ID BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 1 0 0 0 0 0 0 9 6 . 1 8 0 0 0 0 1 +If EXCHGID4_FLAG_UPD_CONFIRMED_REC_A if I If If If BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 8 , 1 9 0 0 0 0 1 +that the that t th tha that BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 8 no 0 9 0 0 0 0 1 +confirmed client confirmed c co con conf BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 8 ( 1 9 0 0 0 0 1 +unconfirmed client unconfirmed u un unc unco BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 8 , 1 5 0 0 0 0 1 +EXCHGID4_FLAG_UPD_CONFIRMED_REC_A). If exchgid4_flag_upd_confirmed_rec_a). E EX EXC EXCH BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 8 )., 3 9 0 0 0 0 1 +the client the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 8 no 0 10 0 0 0 0 1 +as a as a as as as BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 8 . 1 9 0 0 0 0 1 +Whether the whether W Wh Whe Whet BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 8 no 0 9 0 0 0 0 1 +the state the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 8 , 1 9 0 0 0 0 1 +the principal the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 8 no 0 8 0 0 0 0 1 +EXCHANGE_ID operation. exchange_id E EX EXC EXCH BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 8 .,,, 4 9 0 0 0 0 1 +9 of 9 9 9 9 9 BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 9 8 ... 3 9 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 9 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 11 , 1 10 0 0 0 0 0 +[Page 526] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 9 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 9 0 no 0 4 0 0 0 0 1 +Note that note N No Not Note BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 0 no 0 9 0 0 0 0 1 +already confirmed, already a al alr alre BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 0 , 1 10 0 0 0 0 1 +bit in bit b bi bit bit BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 0 . 1 2 0 0 0 0 1 +If EXCHGID4_FLAG_UPD_CONFIRMED_REC_A if I If If If BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 0 , 1 9 0 0 0 0 1 +means that means m me mea mean BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 9 0 ; 1 9 0 0 0 0 1 +attempting to attempting a at att atte BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 0 ( 1 8 0 0 0 0 1 +Section 2.10.5); section S Se Sec Sect BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 0 ..); 4 9 0 0 0 0 1 +unconfirmed client unconfirmed u un unc unco BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 0 .,,,, 5 9 0 0 0 0 1 +or 5 or o or or or BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 0 ... 3 10 0 0 0 0 1 +Note that note N No Not Note BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 0 no 0 9 0 0 0 0 1 +previously confirmed, previously p pr pre prev BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 0 , 1 6 0 0 0 0 1 +EXCHGID4_FLAG_CONFIRMED_R bit exchgid4_flag_confirmed_r E EX EXC EXCH BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 0 . 1 6 0 0 0 0 1 +When the when W Wh Whe When BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 3 , 1 9 0 0 0 0 1 +indicates that indicates i in ind indi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 3 no 0 9 0 0 0 0 1 +as part as a as as as BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 3 ., 2 9 0 0 0 0 1 +still legal still s st sti stil BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 3 ., 2 9 0 0 0 0 1 +a server a a a a a BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 1 0 0 0 0 0 9 3 no 0 9 0 0 0 0 1 +responding to responding r re res resp BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 3 ,. 2 9 0 0 0 0 1 +It may, it I It It It BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 3 ,,, 3 10 0 0 0 0 1 +at some at a at at at BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 3 ,. 2 9 0 0 0 0 1 +If the if I If If If BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 3 , 1 9 0 0 0 0 1 +EXCHGID4_FLAG_SUPP_MOVED_REFER in exchgid4_flag_supp_moved_refer E EX EXC EXCH BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 3 . 1 6 0 0 0 0 1 +When the when W Wh Whe When BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 6 , 1 9 0 0 0 0 1 +that it that t th tha that BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 6 no 0 9 0 0 0 0 1 +a file a a a a a BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 1 0 0 0 0 0 9 6 ., 2 9 0 0 0 0 1 +still legal still s st sti stil BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 6 , 1 9 0 0 0 0 1 +when this when w wh whe when BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 6 ., 2 9 0 0 0 0 1 +the client the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 6 no 0 10 0 0 0 0 1 +scheduling of scheduling s sc sch sche BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 9 6 no 0 9 0 0 0 0 1 +file systems file f fi fil file BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 6 . 1 9 0 0 0 0 1 +from clients from f fr fro from BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 6 no 0 9 0 0 0 0 1 +migrated file migrated m mi mig migr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 6 , 1 8 0 0 0 0 1 +performance, although performance, p pe per perf BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 6 ,. 2 9 0 0 0 0 1 +will potentially will w wi wil will BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 9 6 , 1 7 0 0 0 0 1 +EXCHGID4_FLAG_SUPP_MOVED_MIGR in exchgid4_flag_supp_moved_migr E EX EXC EXCH BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 6 . 1 6 0 0 0 0 1 +When EXCHGID4_FLAG_BIND_PRINC_STATEID when W Wh Whe When BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 9 , 1 9 0 0 0 0 1 +that it that t th tha that BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 9 . 1 9 0 0 0 0 1 +means that means m me mea mean BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 9 9 , 1 9 0 0 0 0 1 +to use to t to to to BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 9 ., 2 9 0 0 0 0 1 +return EXCHGID4_FLAG_BIND_PRINC_STATEID. return r re ret retu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 9 . 1 9 0 0 0 0 1 +EXCHGID4_FLAG_BIND_PRINC_STATEID even exchgid4_flag_bind_princ_stateid E EX EXC EXCH BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 9 no 0 10 0 0 0 0 1 +it. If it. i it it. it. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 9 . 1 7 0 0 0 0 1 +EXCHGID4_FLAG_BIND_PRINC_STATEID's client exchgid4_flag_bind_princ_stateid's E EX EXC EXCH BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 9 ', 2 9 0 0 0 0 1 +applies only applies a ap app appl BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 9 .( 2 9 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 9 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 11 , 1 10 0 0 0 0 0 +[Page 527] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 9 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 9 0 no 0 4 0 0 0 0 1 +with the with w wi wit with BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 0 "") 3 9 0 0 0 0 1 +principal binding principal p pr pri prin BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 0 . 1 9 0 0 0 0 1 +Existing stateids existing E Ex Exi Exis BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 0 ("") 4 10 0 0 0 0 1 +were created were w we wer were BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 0 no 0 9 0 0 0 0 1 +have binding have h ha hav have BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 0 . 1 3 0 0 0 0 1 +The EXCHGID4_FLAG_USE_NON_PNFS, the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 1 ,, 2 9 0 0 0 0 1 +EXCHGID4_FLAG_USE_PNFS_DS bits exchgid4_flag_use_pnfs_ds E EX EXC EXCH BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 1 ... 3 9 0 0 0 0 1 +convey roles convey c co con conv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 1 . 1 9 0 0 0 0 1 +The server the T Th The The BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 1 no 0 9 0 0 0 0 1 +(roles) in (roles) ( (r (ro (rol BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 1 (),. 4 9 0 0 0 0 1 +same client same s sa sam same BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 1 /. 2 8 0 0 0 0 1 +Multiple roles multiple M Mu Mul Mult BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 1 no 0 9 0 0 0 0 1 +different client different d di dif diff BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 1 ., 2 9 0 0 0 0 1 +same client same s sa sam same BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 1 , 1 9 0 0 0 0 1 +specifies different specifies s sp spe spec BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 1 , 1 9 0 0 0 0 1 +different client different d di dif diff BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 1 . 1 9 0 0 0 0 1 +different client different d di dif diff BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 1 , 1 10 0 0 0 0 1 +each role/client each e ea eac each BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 1 /. 2 3 0 0 0 0 1 +The spa_how the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 5 no 0 9 0 0 0 0 1 +client wants client c cl cli clie BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 5 ,, 2 10 0 0 0 0 1 +unauthorized changes unauthorized u un una unau BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 5 (...): 6 5 0 0 0 0 1 +o SP4_NONE. o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 9 6 .. 2 10 0 0 0 0 1 +enforce state enforce e en enf enfo BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 6 .. 2 10 0 0 0 0 1 +state protection state s st sta stat BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 6 . 1 7 0 0 0 0 1 +o SP4_MACH_CRED. o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 9 7 ., 2 10 0 0 0 0 1 +send the send s se sen send BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 7 no 0 9 0 0 0 0 1 +flavor, and flavor, f fl fla flav BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 7 , 1 8 0 0 0 0 1 +RPC_GSS_SVC_PRIVACY. If rpc_gss_svc_privacy. R RP RPC RPC_ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 7 ., 2 9 0 0 0 0 1 +client wants client c cl cli clie BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 7 - 1 9 0 0 0 0 1 +protect its protect p pr pro prot BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 7 . 1 8 0 0 0 0 1 +EXCHANGE_ID operation exchange_id E EX EXC EXCH BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 7 ,. 2 9 0 0 0 0 1 +These notes these T Th The Thes BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 7 . 1 8 0 0 0 0 1 +After the after A Af Aft Afte BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 9 , 1 9 0 0 0 0 1 +with the with w wi wit with BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 9 , 1 8 0 0 0 0 1 +operation that operation o op ope oper BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 9 . 1 10 0 0 0 0 1 +EXCHANGE_ID MUST exchange_id E EX EXC EXCH BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 9 no 0 10 0 0 0 0 1 +EXCHANGE_ID. The exchange_id. E EX EXC EXCH BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 9 . 1 8 0 0 0 0 1 +subsequent EXCHANGE_ID subsequent s su sub subs BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 9 no 0 8 0 0 0 0 1 +EXCHANGE_ID. EXCHANGE_ID. exchange_id. E EX EXC EXCH BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 9 . 1 1 0 0 0 0 1 +o SP4_SSV. o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 9 10 ., 2 9 0 0 0 0 1 +EXCHANGE_ID operation exchange_id E EX EXC EXCH BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 10 , 1 10 0 0 0 0 1 +with a with w wi wit with BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 10 . 1 9 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 9 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 11 , 1 10 0 0 0 0 0 +[Page 528] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 9 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 9 0 no 0 4 0 0 0 0 1 +If SP4_SSV if I If If If BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 0 , 1 10 0 0 0 0 1 +protect its protect p pr pro prot BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 0 . 1 10 0 0 0 0 1 +request as request r re req requ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 0 () 2 9 0 0 0 0 1 +eia_clientowner.co_owner. The eia_clientowner.co_owner. e ei eia eia_ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 0 .. 2 9 0 0 0 0 1 +confirms the confirms c co con conf BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 0 . 1 9 0 0 0 0 1 +When a when W Wh Whe When BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 1 , 1 9 0 0 0 0 1 +two lists two t tw two two BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 1 (). 3 9 0 0 0 0 1 +is spo_must_enforce is i is is is BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 1 no 0 9 0 0 0 0 1 +send (subject send s se sen send BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 1 ( 1 9 0 0 0 0 1 +result of result r re res resu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 1 )( 2 9 0 0 0 0 1 +protection is protection p pr pro prot BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 1 )-( 3 9 0 0 0 0 1 +protection is protection p pr pro prot BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 1 ). 2 8 0 0 0 0 1 +RPCSEC_GSS credentials rpcsec_gss R RP RPC RPCS BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 1 no 0 9 0 0 0 0 1 +RPC_GSS_SVC_PRIVACY security rpc_gss_svc_privacy R RP RPC RPC_ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 1 ., 2 9 0 0 0 0 1 +operations includes operations o op ope oper BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 9 1 ,,, 3 8 0 0 0 0 1 +DESTROY_SESSION, BIND_CONN_TO_SESSION, destroy_session, D DE DES DEST BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 1 ,,. 3 9 0 0 0 0 1 +client SHOULD client c cl cli clie BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 1 no 0 9 0 0 0 0 1 +filehandle because filehandle f fi fil file BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 1 ' 1 10 0 0 0 0 1 +client's choice, client's c cl cli clie BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 1 ', 2 10 0 0 0 0 1 +subset of subset s su sub subs BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 1 '. 2 4 0 0 0 0 1 +Note that note N No Not Note BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 5 , 1 8 0 0 0 0 1 +indicates that indicates i in ind indi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 5 , 1 10 0 0 0 0 1 +the SSV the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 5 , 1 8 0 0 0 0 1 +CREATE_SESSION MUST create_session C CR CRE CREA BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 5 , 1 10 0 0 0 0 1 +the server the t th the the BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 5 . 1 6 0 0 0 0 1 +There is there T Th The Ther BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 7 ,, 2 10 0 0 0 0 1 +operations for operations o op ope oper BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 9 7 no 0 10 0 0 0 0 1 +protection. Normally, protection. p pr pro prot BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 7 .,'' 4 8 0 0 0 0 1 +argument, but argument, a ar arg argu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 7 ,. 2 9 0 0 0 0 1 +one or one o on one one BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 7 ,, 2 9 0 0 0 0 1 +DELEGPURGE, DESTROY_SESSION, delegpurge, D DE DEL DELE BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 7 ,,, 3 9 0 0 0 0 1 +}, then }, } }, }, }, BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 7 , 1 9 0 0 0 0 1 +client requested client c cl cli clie BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 7 . 1 4 0 0 0 0 1 +If spo_must_enforce if I If If If BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 9 , 1 10 0 0 0 0 1 +connection binding connection c co con conn BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 9 , 1 9 0 0 0 0 1 +the machine the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 9 ()( 3 9 0 0 0 0 1 +protection is protection p pr pro prot BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 9 ). 2 9 0 0 0 0 1 +The second the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 10 no 0 10 0 0 0 0 1 +the client the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 10 no 0 9 0 0 0 0 1 +credential or credential c cr cre cred BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 10 -, 2 9 0 0 0 0 1 +operations are operations o op ope oper BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 9 10 no 0 9 0 0 0 0 1 +credential. credential. credential. c cr cre cred BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 10 . 1 1 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 9 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 11 , 1 10 0 0 0 0 0 +[Page 529] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 9 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 9 0 no 0 4 0 0 0 0 1 +The corresponding the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 0 ,, 2 10 0 0 0 0 1 +operations the operations o op ope oper BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 9 0 no 0 8 0 0 0 0 1 +SP4_MACH_CRED credentials sp4_mach_cred S SP SP4 SP4_ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 0 .,' 3 9 0 0 0 0 1 +the client's the t th the the BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 0 ',. 3 8 0 0 0 0 1 +The purpose the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 1 no 0 9 0 0 0 0 1 +following conundrum. following f fo fol foll BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 1 . 1 8 0 0 0 0 1 +EXCHGID4_FLAG_BIND_PRINC_STATEID, and exchgid4_flag_bind_princ_stateid, E EX EXC EXCH BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 1 , 1 8 0 0 0 0 1 +RPCSEC_GSS credentials rpcsec_gss R RP RPC RPCS BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 1 .' 2 9 0 0 0 0 1 +credentials expire, credentials c cr cre cred BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 1 ,(.., 5 9 0 0 0 0 1 +granting ticket granting g gr gra gran BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 1 , 1 9 0 0 0 0 1 +acquiring a acquiring a ac acq acqu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 1 ). 2 9 0 0 0 0 1 +to send to t to to to BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 1 ', 2 9 0 0 0 0 1 +client has client c cl cli clie BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 1 - 1 8 0 0 0 0 1 +EXCHANGE_ID with exchange_id E EX EXC EXCH BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 1 ,, 2 9 0 0 0 0 1 +the client the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 1 no 0 10 0 0 0 0 1 +and the and a an and and BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 1 . 1 3 0 0 0 0 1 +The SP4_SSV the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 5 : 1 10 0 0 0 0 1 +ssp_hash_algs: ssp_hash_algs: ssp_hash_algs: s ss ssp ssp_ BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 5 : 1 10 0 0 0 0 1 +This is this T Th Thi This BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 5 no 0 9 0 0 0 0 1 +of computing of o of of of BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 5 no 0 10 0 0 0 0 1 +and for and a an and and BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 5 . 1 9 0 0 0 0 1 +object identifier object o ob obj obje BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 5 (). 3 9 0 0 0 0 1 +id-sha1, id-sha224, id-sha1, i id id- id-s BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 5 -,-,-,-,-[]. 12 9 0 0 0 0 1 +algorithm the algorithm a al alg algo BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 5 no 0 8 0 0 0 0 1 +spi_hash_alg, a spi_hash_alg, s sp spi spi_ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 5 ,. 2 8 0 0 0 0 1 +spi_hash_alg is spi_hash_alg s sp spi spi_ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 5 . 1 9 0 0 0 0 1 +server does server s se ser serv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 5 , 1 9 0 0 0 0 1 +NFS4ERR_HASH_ALG_UNSUPP. If nfs4err_hash_alg_unsupp. N NF NFS NFS4 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 5 ., 2 9 0 0 0 0 1 +MUST return must M MU MUS MUST BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 9 5 . 1 4 0 0 0 0 1 +ssp_encr_algs: ssp_encr_algs: ssp_encr_algs: s ss ssp ssp_ BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 8 : 1 10 0 0 0 0 1 +This is this T Th Thi This BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 8 no 0 10 0 0 0 0 1 +of providing of o of of of BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 8 no 0 8 0 0 0 0 1 +mechanism. Each mechanism. m me mec mech BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 8 .. 2 9 0 0 0 0 1 +algorithm for algorithm a al alg algo BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 8 --. 3 8 0 0 0 0 1 +algorithms are algorithms a al alg algo BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 8 ----[]. 7 10 0 0 0 0 1 +algorithm is algorithm a al alg algo BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 8 , 1 8 0 0 0 0 1 +ssp_encr_algs. If ssp_encr_algs. s ss ssp ssp_ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 8 . 1 9 0 0 0 0 1 +algorithms, it algorithms, a al alg algo BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 8 ,. 2 9 0 0 0 0 1 +is empty, is i is is is BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 8 ,. 2 9 0 0 0 0 1 +previously stated previously p pr pre prev BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 8 no 0 8 0 0 0 0 1 +relationships between relationships r re rel rela BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 8 , 1 8 0 0 0 0 1 +combinations of combinations c co com comb BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 8 no 0 10 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 9 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 11 , 1 10 0 0 0 0 0 +[Page 530] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 9 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 9 0 no 0 4 0 0 0 0 1 +hash algorithm hash h ha has hash BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 0 . 1 10 0 0 0 0 1 +summarizes the summarizes s su sum summ BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 0 . 1 8 0 0 0 0 1 +ssp_window: ssp_window: ssp_window: s ss ssp ssp_ BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 0 : 1 10 0 0 0 0 1 +This is this T Th Thi This BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 0 no 0 9 0 0 0 0 1 +maintain (i.e., maintain m ma mai main BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 0 (.., 4 9 0 0 0 0 1 +version of version v ve ver vers BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 0 )., 3 8 0 0 0 0 1 +return NFS4ERR_INVAL. return r re ret retu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 0 ., 2 9 0 0 0 0 1 +MUST NOT must M MU MUS MUST BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 9 0 . 1 9 0 0 0 0 1 +on the on o on on on BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 0 no 0 10 0 0 0 0 1 +SSV that ssv S SS SSV SSV BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 0 no 0 8 0 0 0 0 1 +authentication error, authentication a au aut auth BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 0 , 1 9 0 0 0 0 1 +with the with w wi wit with BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 0 . 1 5 0 0 0 0 1 +ssp_num_gss_handles: ssp_num_gss_handles: ssp_num_gss_handles: s ss ssp ssp_ BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 3 : 1 10 0 0 0 0 1 +This is this T Th Thi This BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 4 no 0 9 0 0 0 0 1 +that are that t th tha that BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 4 (..). 5 9 0 0 0 0 1 +is not is i is is is BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 4 . 1 9 0 0 0 0 1 +Indeed, subsequent indeed, I In Ind Inde BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 4 , 1 8 0 0 0 0 1 +handles. The handles. h ha han hand BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 4 . 1 8 0 0 0 0 1 +spi_handles. If spi_handles. s sp spi spi_ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 4 . 1 9 0 0 0 0 1 +server cannot server s se ser serv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 4 ,. 2 9 0 0 0 0 1 +handles in handles h ha han hand BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 4 no 0 9 0 0 0 0 1 +ID is id I ID ID ID BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 1 0 0 0 0 0 0 9 4 , 1 10 0 0 0 0 1 +EXCHGID4_FLAG_CONFIRMED_R, or exchgid4_flag_confirmed_r, E EX EXC EXCH BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 4 , 1 9 0 0 0 0 1 +CREATE_SESSION. CREATE_SESSION. create_session. C CR CRE CREA BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 4 . 1 2 0 0 0 0 1 +While a while W Wh Whi Whil BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 7 no 0 10 0 0 0 0 1 +to a to t to to to BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 7 ., 2 9 0 0 0 0 1 +RPCSEC_GSS handles rpcsec_gss R RP RPC RPCS BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 7 no 0 9 0 0 0 0 1 +connections connected connections c co con conn BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 7 no 0 9 0 0 0 0 1 +eir_server_owner.so_major_id and eir_server_owner.so_major_id e ei eir eir_ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 7 .. 2 9 0 0 0 0 1 +each connection. each e ea eac each BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 7 . 1 8 0 0 0 0 1 +ssp_num_gss_handles to ssp_num_gss_handles s ss ssp ssp_ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 7 ; 1 9 0 0 0 0 1 +with another with w wi wit with BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 7 . 1 4 0 0 0 0 1 +Because each because B Be Bec Beca BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 9 no 0 9 0 0 0 0 1 +context, there context, c co con cont BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 9 , 1 10 0 0 0 0 1 +situation discussed situation s si sit situ BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 9 ... 3 6 0 0 0 0 1 +The seq_window the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 10 (...[]) 7 8 0 0 0 0 1 +RPCSEC_GSS handle rpcsec_gss R RP RPC RPCS BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 10 no 0 10 0 0 0 0 1 +of the of o of of of BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 10 no 0 8 0 0 0 0 1 +request that request r re req requ BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 10 . 1 9 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 9 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 11 , 1 10 0 0 0 0 0 +[Page 531] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 9 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 9 0 no 0 4 0 0 0 0 1 ++-------------------+----------------------+------------------------+ +-------------------+----------------------+------------------------+ +-------------------+----------------------+------------------------+ + +- +-- +--- BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 0 ----------------------------------------------------------------- 65 10 0 0 0 0 1 +| Encryption | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 0 no 0 1 0 0 0 0 1 +| MUST | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 0 no 0 7 0 0 0 0 1 +| Algorithm | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 0 no 0 1 0 0 0 0 1 +| with | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 0 no 0 1 0 0 0 0 1 +| with | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 0 no 0 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 0 no 0 0 0 0 0 0 1 ++-------------------+----------------------+------------------------+ +-------------------+----------------------+------------------------+ +-------------------+----------------------+------------------------+ + +- +-- +--- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 0 ----------------------------------------------------------------- 65 10 0 0 0 0 1 +| id-aes128-CBC | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 0 -- 2 2 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 0 no 0 0 0 0 0 0 1 +| id-sha384, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 0 -,- 3 3 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 0 no 0 0 0 0 0 0 1 +| id-aes192-CBC | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 0 -- 2 2 0 0 0 0 1 +| id-sha1 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 0 - 1 1 0 0 0 0 1 +| id-sha512 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 0 - 1 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 0 no 0 0 0 0 0 0 1 +| id-aes256-CBC | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 0 -- 2 2 0 0 0 0 1 +| id-sha1, | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 0 -,- 3 3 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 0 no 0 0 0 0 0 0 1 ++-------------------+----------------------+------------------------+ +-------------------+----------------------+------------------------+ +-------------------+----------------------+------------------------+ + +- +-- +--- BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 0 ----------------------------------------------------------------- 65 10 0 0 0 0 1 +Table 12 table T Ta Tab Tabl BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 4 no 0 10 0 0 0 0 1 +The arguments the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 4 no 0 10 0 0 0 0 1 +eia_client_impl_id. If eia_client_impl_id. e ei eia eia_ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 4 ., 2 9 0 0 0 0 1 +the information the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 4 . 1 8 0 0 0 0 1 +Similarly, the similarly, S Si Sim Simi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 4 , 1 9 0 0 0 0 1 +length called length l le len leng BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 4 no 0 9 0 0 0 0 1 +of the of o of of of BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 4 .- 2 9 0 0 0 0 1 +array, and array, a ar arr arra BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 4 ,- 2 9 0 0 0 0 1 +array. array. array. a ar arr arra BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 4 . 1 1 0 0 0 0 1 +A possible a A A A A BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 1 0 0 0 0 0 9 6 no 0 9 0 0 0 0 1 +software that software s so sof soft BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 6 no 0 9 0 0 0 0 1 +interoperability problems, interoperability i in int inte BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 6 ,, 2 10 0 0 0 0 1 +usage statistics. usage u us usa usag BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 6 . 1 8 0 0 0 0 1 +information is information i in inf info BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 6 , 1 10 0 0 0 0 1 +server MUST server s se ser serv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 6 no 0 10 0 0 0 0 1 +a way a a a a a BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 1 0 0 0 0 0 9 6 . 1 9 0 0 0 0 1 +The client the T Th The The BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 6 ' 1 8 0 0 0 0 1 +manifesting a manifesting m ma man mani BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 6 no 0 9 0 0 0 0 1 +identifier but identifier i id ide iden BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 6 no 0 10 0 0 0 0 1 +the protocol the t th the the BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 6 . 1 4 0 0 0 0 1 +Because it because B Be Bec Beca BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 9 no 0 9 0 0 0 0 1 +protocol specification protocol p pr pro prot BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 9 , 1 9 0 0 0 0 1 +implementations MUST implementations i im imp impl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 9 no 0 10 0 0 0 0 1 +server be server s se ser serv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 9 no 0 8 0 0 0 0 1 +structures sent structures s st str stru BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 9 . 1 5 0 0 0 0 1 +18.35.4. IMPLEMENTATION 18.35.4. 1 18 18. 18.3 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 10 ... 3 10 0 0 0 0 1 +A server's a A A A A BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 1 0 0 0 0 0 9 10 '-: 3 10 0 0 0 0 1 +1. co_ownerid 1. 1 1. 1. 1. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 11 . 1 10 0 0 0 0 1 +The client the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 11 , 1 10 0 0 0 0 1 +structure of structure s st str stru BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 11 . 1 8 0 0 0 0 1 +2. co_verifier: 2. 2 2. 2. 2. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 11 .: 2 10 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 9 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 11 , 1 10 0 0 0 0 0 +[Page 532] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 9 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 9 0 no 0 4 0 0 0 0 1 +A client-specific a A A A A BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 1 0 0 0 0 0 9 0 -( 2 10 0 0 0 0 1 +client restart client c cl cli clie BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 0 ), 2 8 0 0 0 0 1 +eia_clientowner structure eia_clientowner e ei eia eia_ BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 0 . 1 9 0 0 0 0 1 +3. principal: 3. 3 3. 3. 3. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 1 .: 2 10 0 0 0 0 1 +The principal the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 1 ' 1 9 0 0 0 0 1 +and/or verifier and/or a an and and/ BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 1 /. 2 10 0 0 0 0 1 +4. client 4. 4 4. 4. 4. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 3 .: 2 10 0 0 0 0 1 +The shorthand the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 3 , 1 10 0 0 0 0 1 +returned via returned r re ret retu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 3 no 0 10 0 0 0 0 1 +structure. structure. structure. s st str stru BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 3 . 1 1 0 0 0 0 1 +5. confirmed: 5. 5 5. 5. 5. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 4 .: 2 10 0 0 0 0 1 +A private a A A A A BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 1 0 0 0 0 0 9 4 no 0 9 0 0 0 0 1 +client record client c cl cli clie BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 4 . 1 8 0 0 0 0 1 +confirmed if confirmed c co con conf BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 4 no 0 8 0 0 0 0 1 +operation to operation o op ope oper BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 4 .,. 3 9 0 0 0 0 1 +unconfirmed record unconfirmed u un unc unco BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 4 . 1 9 0 0 0 0 1 +unconfirmed record unconfirmed u un unc unco BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 4 no 0 10 0 0 0 0 1 +SHOULD be should S SH SHO SHOU BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 9 4 . 1 3 0 0 0 0 1 +The following the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 7 no 0 10 0 0 0 0 1 +the records. the t th the the BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 7 . 1 1 0 0 0 0 1 +ownerid_arg: ownerid_arg: ownerid_arg: o ow own owne BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 7 : 1 10 0 0 0 0 1 +The value the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 8 . 1 10 0 0 0 0 1 +EXCHANGE_ID4args structure exchange_id4args E EX EXC EXCH BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 8 . 1 8 0 0 0 0 1 +verifier_arg: verifier_arg: verifier_arg: v ve ver veri BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 8 : 1 10 0 0 0 0 1 +The value the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 8 . 1 10 0 0 0 0 1 +EXCHANGE_ID4args structure exchange_id4args E EX EXC EXCH BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 8 . 1 8 0 0 0 0 1 +old_verifier_arg: old_verifier_arg: old_verifier_arg: o ol old old_ BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 9 : 1 10 0 0 0 0 1 +A value a A A A A BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 1 0 0 0 0 0 9 9 . 1 10 0 0 0 0 1 +record received record r re rec reco BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 9 ; 1 10 0 0 0 0 1 +verifier_arg. verifier_arg. verifier_arg. v ve ver veri BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 9 . 1 2 0 0 0 0 1 +principal_arg: principal_arg: principal_arg: p pr pri prin BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 10 : 1 10 0 0 0 0 1 +The value the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 10 . 1 10 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 9 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 11 , 1 10 0 0 0 0 0 +[Page 533] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 9 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 9 0 no 0 4 0 0 0 0 1 +old_principal_arg: old_principal_arg: old_principal_arg: o ol old old_ BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 0 : 1 10 0 0 0 0 1 +A value a A A A A BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 1 0 0 0 0 0 9 0 no 0 10 0 0 0 0 1 +header's credential header's h he hea head BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 0 '. 2 9 0 0 0 0 1 +distinct from distinct d di dis dist BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 0 . 1 4 0 0 0 0 1 +clientid_ret: clientid_ret: clientid_ret: c cl cli clie BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 1 : 1 10 0 0 0 0 1 +The value the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 1 no 0 10 0 0 0 0 1 +EXCHANGE_ID4resok structure exchange_id4resok E EX EXC EXCH BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 1 . 1 8 0 0 0 0 1 +old_clientid_ret: old_clientid_ret: old_clientid_ret: o ol old old_ BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 2 : 1 10 0 0 0 0 1 +The value the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 2 no 0 10 0 0 0 0 1 +EXCHANGE_ID4resok structure exchange_id4resok E EX EXC EXCH BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 2 . 1 9 0 0 0 0 1 +distinct from distinct d di dis dist BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 2 . 1 4 0 0 0 0 1 +confirmed: confirmed: confirmed: c co con conf BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 3 : 1 10 0 0 0 0 1 +The client the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 3 . 1 10 0 0 0 0 1 +unconfirmed: unconfirmed: unconfirmed: u un unc unco BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 4 : 1 10 0 0 0 0 1 +The client the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 4 . 1 10 0 0 0 0 1 +Since EXCHANGE_ID since S Si Sin Sinc BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 4 -, 2 10 0 0 0 0 1 +possibility that possibility p po pos poss BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 4 , 1 9 0 0 0 0 1 +network partition, network n ne net netw BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 9 4 ,,. 3 8 0 0 0 0 1 +identified by identified i id ide iden BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 4 no 0 8 0 0 0 0 1 +EXCHANGE_ID4args, and exchange_id4args, E EX EXC EXCH BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 4 , 1 10 0 0 0 0 1 +the scenarios the t th the the BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 4 . 1 3 0 0 0 0 1 +The scenarios the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 6 () 2 10 0 0 0 0 1 +has for has h ha has has BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 6 . 1 9 0 0 0 0 1 +specifying SP4_SSV specifying s sp spe spec BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 6 no 0 10 0 0 0 0 1 +operations in operations o op ope oper BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 9 6 , 1 8 0 0 0 0 1 +EXCHANGE_IDs with exchange_ids E EX EXC EXCH BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 9 6 no 0 10 0 0 0 0 1 +created the created c cr cre crea BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 6 . 1 3 0 0 0 0 1 +1. New 1. 1 1. 1. 1. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 9 . 1 10 0 0 0 0 1 +If the if I If If If BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 9 no 0 6 0 0 0 0 1 +eia_clientowner.co_ownerid matching eia_clientowner.co_ownerid e ei eia eia_ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 9 ., 2 8 0 0 0 0 1 +EXCHGID4_FLAG_UPD_CONFIRMED_REC_A is exchgid4_flag_upd_confirmed_rec_a E EX EXC EXCH BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 9 no 0 8 0 0 0 0 1 +EXCHANGE_ID, then exchange_id, E EX EXC EXCH BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 9 ,( 2 10 0 0 0 0 1 +clientid_ret) is clientid_ret) c cl cli clie BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 9 ), 2 9 0 0 0 0 1 +record is record r re rec reco BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 9 '. 2 6 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 9 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 11 , 1 10 0 0 0 0 0 +[Page 534] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 9 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 9 0 no 0 4 0 0 0 0 1 +{ ownerid_arg, { { { { { BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 0 ,,,, 4 10 0 0 0 0 1 +unconfirmed } unconfirmed u un unc unco BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 0 no 0 2 0 0 0 0 1 +Subsequently, the subsequently, S Su Sub Subs BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 0 ,. 2 10 0 0 0 0 1 +2. Non-Update 2. 2 2. 2. 2. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 1 .- 2 10 0 0 0 0 1 +If the if I If If If BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 1 , 1 9 0 0 0 0 1 +request does request r re req requ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 1 , 1 10 0 0 0 0 1 +then the then t th the then BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 1 no 0 10 0 0 0 0 1 +faulty router faulty f fa fau faul BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 1 , 1 10 0 0 0 0 1 +determine if determine d de det dete BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 1 . 1 6 0 0 0 0 1 +{ ownerid_arg, { { { { { BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 3 ,,,, 4 10 0 0 0 0 1 +confirmed } confirmed c co con conf BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 3 no 0 2 0 0 0 0 1 +Since the since S Si Sin Sinc BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 3 , 1 9 0 0 0 0 1 +received the received r re rec rece BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 3 ' 1 9 0 0 0 0 1 +request. Since request. r re req requ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 3 ., 2 9 0 0 0 0 1 +EXCHGID4_FLAG_UPD_CONFIRMED_REC_A is exchgid4_flag_upd_confirmed_rec_a E EX EXC EXCH BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 3 , 1 8 0 0 0 0 1 +possible exception possible p po pos poss BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 3 ., 2 10 0 0 0 0 1 +returns the returns r re ret retu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 3 ' 1 10 0 0 0 0 1 +were last were w we wer were BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 3 (, 2 9 0 0 0 0 1 +client ID client c cl cli clie BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 3 ).. 3 9 0 0 0 0 1 +3. Client 3. 3 3. 3. 3. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 6 . 1 10 0 0 0 0 1 +If EXCHGID4_FLAG_UPD_CONFIRMED_REC_A if I If If If BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 6 , 1 9 0 0 0 0 1 +server has server s se ser serv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 6 , 1 9 0 0 0 0 1 +is likely is i is is is BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 6 no 0 9 0 0 0 0 1 +of the of o of of of BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 6 . 1 10 0 0 0 0 1 +for two for f fo for for BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 6 . 1 4 0 0 0 0 1 +{ ownerid_arg, { { { { { BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 8 ,*,,, 5 10 0 0 0 0 1 +confirmed } confirmed c co con conf BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 8 no 0 2 0 0 0 0 1 +If there if I If If If BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 8 no 0 7 0 0 0 0 1 +old_clientid_ret, or old_clientid_ret, o ol old old_ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 8 , 1 9 0 0 0 0 1 +expired, then expired, e ex exp expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 8 , 1 9 0 0 0 0 1 +Owner ID owner O Ow Own Owne BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 8 . 1 8 0 0 0 0 1 +deleted, the deleted, d de del dele BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 8 ,, 2 10 0 0 0 0 1 +a new a a a a a BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 1 0 0 0 0 0 9 8 , 1 9 0 0 0 0 1 +unconfirmed record unconfirmed u un unc unco BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 8 '. 2 8 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 9 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 11 , 1 10 0 0 0 0 0 +[Page 535] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 9 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 9 0 no 0 4 0 0 0 0 1 +{ ownerid_arg, { { { { { BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 0 ,,,, 4 10 0 0 0 0 1 +unconfirmed } unconfirmed u un unc unco BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 0 no 0 2 0 0 0 0 1 +Subsequently, the subsequently, S Su Sub Subs BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 0 ,. 2 10 0 0 0 0 1 +If old_clientid_ret if I If If If BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 1 , 1 10 0 0 0 0 1 +state of state s st sta stat BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 1 . 1 9 0 0 0 0 1 +returns NFS4ERR_CLID_INUSE returns r re ret retu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 1 no 0 9 0 0 0 0 1 +retry with retry r re ret retr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 1 no 0 5 0 0 0 0 1 +eia_clientowner.co_ownerid subfield eia_clientowner.co_ownerid e ei eia eia_ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 1 .. 2 9 0 0 0 0 1 +client record client c cl cli clie BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 1 . 1 4 0 0 0 0 1 +4. Replacement 4. 4 4. 4. 4. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 3 . 1 10 0 0 0 0 1 +If the if I If If If BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 3 , 1 10 0 0 0 0 1 +the server the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 3 , 1 9 0 0 0 0 1 +client is client c cl cli clie BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 3 no 0 9 0 0 0 0 1 +client ID, client c cl cli clie BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 3 ,, 2 9 0 0 0 0 1 +client ID client c cl cli clie BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 3 (.., 4 9 0 0 0 0 1 +called), or called), c ca cal call BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 3 ),. 3 5 0 0 0 0 1 +{ ownerid_arg, { { { { { BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 6 ,*,*,, 6 10 0 0 0 0 1 +It is it I It It It BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 6 no 0 9 0 0 0 0 1 +different than different d di dif diff BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 6 . 1 9 0 0 0 0 1 +Whether or whether W Wh Whe Whet BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 6 , 1 10 0 0 0 0 1 +ambiguity, the ambiguity, a am amb ambi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 6 ,, 2 8 0 0 0 0 1 +generates a generates g ge gen gene BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 6 (), 3 10 0 0 0 0 1 +following unconfirmed following f fo fol foll BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 6 : 1 4 0 0 0 0 1 +{ ownerid_arg, { { { { { BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 8 ,,,, 4 10 0 0 0 0 1 +unconfirmed } unconfirmed u un unc unco BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 8 no 0 2 0 0 0 0 1 +5. Client 5. 5 5. 5. 5. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 9 . 1 10 0 0 0 0 1 +If EXCHGID4_FLAG_UPD_CONFIRMED_REC_A if I If If If BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 9 , 1 9 0 0 0 0 1 +server has server s se ser serv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 9 , 1 9 0 0 0 0 1 +request is request r re req requ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 9 no 0 10 0 0 0 0 1 +restarted. restarted. restarted. r re res rest BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 9 . 1 1 0 0 0 0 1 +{ ownerid_arg, { { { { { BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 11 ,,, 3 10 0 0 0 0 1 +old_clientid_ret, confirmed old_clientid_ret, o ol old old_ BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 11 , 1 6 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 9 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 11 , 1 10 0 0 0 0 0 +[Page 536] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 9 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 9 0 no 0 4 0 0 0 0 1 +Since the since S Si Sin Sinc BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 0 no 0 9 0 0 0 0 1 +longer be longer l lo lon long BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 0 , 1 10 0 0 0 0 1 +by CREATE_SESSION, by b by by by BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 0 ,- 2 9 0 0 0 0 1 +should be should s sh sho shou BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 0 no 0 9 0 0 0 0 1 +incarnation to incarnation i in inc inca BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 0 no 0 8 0 0 0 0 1 +incarnation to incarnation i in inc inca BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 0 ., 2 9 0 0 0 0 1 +removed since removed r re rem remo BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 0 no 0 9 0 0 0 0 1 +across restart, across a ac acr acro BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 0 ,. 2 9 0 0 0 0 1 +server supports server s se ser serv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 0 no 0 8 0 0 0 0 1 +CLAIM_DELEG_PREV_FH claim claim_deleg_prev_fh C CL CLA CLAI BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 0 , 1 10 0 0 0 0 1 +be purged be b be be be BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 0 ;, 2 9 0 0 0 0 1 +recovery proceeds recovery r re rec reco BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 0 ... 3 7 0 0 0 0 1 +After processing, after A Af Aft Afte BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 4 , 1 10 0 0 0 0 1 +this client this t th thi this BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 4 : 1 4 0 0 0 0 1 +{ ownerid_arg, { { { { { BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 5 ,,,, 4 10 0 0 0 0 1 +unconfirmed } unconfirmed u un unc unco BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 5 no 0 2 0 0 0 0 1 +The previously the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 5 , 1 10 0 0 0 0 1 +and thus and a an and and BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 5 no 0 9 0 0 0 0 1 +unconfirmed state unconfirmed u un unc unco BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 5 . 1 9 0 0 0 0 1 +collapse to collapse c co col coll BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 5 no 0 8 0 0 0 0 1 +CREATE_SESSION or create_session C CR CRE CREA BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 5 . 1 5 0 0 0 0 1 ++ If + + + + + BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 7 no 0 8 0 0 0 0 1 +CREATE_SESSION that create_session C CR CRE CREA BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 7 , 1 10 0 0 0 0 1 +atomically destroys atomically a at ato atom BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 7 no 0 9 0 0 0 0 1 +unconfirmed record unconfirmed u un unc unco BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 7 no 0 7 0 0 0 0 1 +Section 18.36.3. section S Se Sec Sect BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 7 ... 3 2 0 0 0 0 1 ++ If + + + + + BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 8 no 0 10 0 0 0 0 1 +with the with w wi wit with BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 8 , 1 9 0 0 0 0 1 +to simply to t to to to BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 8 , 1 9 0 0 0 0 1 +EXCHANGE_ID as exchange_id E EX EXC EXCH BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 8 no 0 7 0 0 0 0 1 +Section 18.35.4. section S Se Sec Sect BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 8 ... 3 2 0 0 0 0 1 +6. Update 6. 6 6. 6. 6. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 10 . 1 10 0 0 0 0 1 +If EXCHGID4_FLAG_UPD_CONFIRMED_REC_A if I If If If BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 10 , 1 10 0 0 0 0 1 +has the has h ha has has BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 10 , 1 10 0 0 0 0 1 +attempt at attempt a at att atte BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 10 . 1 3 0 0 0 0 1 +{ ownerid_arg, { { { { { BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 11 ,,,, 4 10 0 0 0 0 1 +confirmed } confirmed c co con conf BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 11 no 0 2 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 9 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 11 , 1 10 0 0 0 0 0 +[Page 537] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 9 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 9 0 no 0 4 0 0 0 0 1 +Since the since S Si Sin Sinc BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 0 , 1 9 0 0 0 0 1 +received the received r re rec rece BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 0 ' 1 9 0 0 0 0 1 +request. The request. r re req requ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 0 ., 2 10 0 0 0 0 1 +is left is i is is is BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 0 . 1 2 0 0 0 0 1 +7. Update 7. 7 7. 7. 7. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 2 . 1 10 0 0 0 0 1 +If EXCHGID4_FLAG_UPD_CONFIRMED_REC_A if I If If If BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 2 , 1 9 0 0 0 0 1 +has no has h ha has has BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 2 , 1 9 0 0 0 0 1 +server returns server s se ser serv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 2 no 0 10 0 0 0 0 1 +intact. intact. intact. i in int inta BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 2 . 1 1 0 0 0 0 1 +8. Update 8. 8 8. 8. 8. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 4 . 1 10 0 0 0 0 1 +If EXCHGID4_FLAG_UPD_CONFIRMED_REC_A if I If If If BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 4 , 1 9 0 0 0 0 1 +has the has h ha has has BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 4 , 1 9 0 0 0 0 1 +illegal attempt illegal i il ill ille BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 4 , 1 10 0 0 0 0 1 +a previous a a a a a BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 1 0 0 0 0 0 9 4 . 1 5 0 0 0 0 1 +{ ownerid_arg, { { { { { BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 6 ,,*,, 5 10 0 0 0 0 1 +The server the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 6 no 0 10 0 0 0 0 1 +record intact. record r re rec reco BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 6 . 1 2 0 0 0 0 1 +9. Update 9. 9 9. 9. 9. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 7 . 1 10 0 0 0 0 1 +If EXCHGID4_FLAG_UPD_CONFIRMED_REC_A if I If If If BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 7 , 1 10 0 0 0 0 1 +has the has h ha has has BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 7 , 1 10 0 0 0 0 1 +illegal attempt illegal i il ill ille BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 7 . 1 9 0 0 0 0 1 +{ ownerid_arg, { { { { { BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 9 ,,,, 4 10 0 0 0 0 1 +confirmed } confirmed c co con conf BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 9 no 0 1 0 0 0 0 1 +The server the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 9 no 0 10 0 0 0 0 1 +intact. intact. intact. i in int inta BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 9 . 1 1 0 0 0 0 1 +18.36. Operation 18.36. 1 18 18. 18.3 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 10 ..:- 4 10 0 0 0 0 1 +Client ID client C Cl Cli Clie BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 10 no 0 1 0 0 0 0 1 +18.36.1. ARGUMENT 18.36.1. 1 18 18. 18.3 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 11 ... 3 10 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 9 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 11 , 1 10 0 0 0 0 0 +[Page 538] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 9 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 9 0 no 0 4 0 0 0 0 1 +struct channel_attrs4 struct s st str stru BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 0 no 0 8 0 0 0 0 1 +count4 count4 count4 c co cou coun BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 0 no 0 2 0 0 0 0 1 +ca_headerpadsize; ca_headerpadsize; ca_headerpadsize; c ca ca_ ca_h BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 0 ; 1 6 0 0 0 0 1 +count4 count4 count4 c co cou coun BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 0 no 0 2 0 0 0 0 1 +ca_maxrequestsize; ca_maxrequestsize; ca_maxrequestsize; c ca ca_ ca_m BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 0 ; 1 7 0 0 0 0 1 +count4 count4 count4 c co cou coun BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 0 no 0 2 0 0 0 0 1 +ca_maxresponsesize; ca_maxresponsesize; ca_maxresponsesize; c ca ca_ ca_m BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 0 ; 1 7 0 0 0 0 1 +count4 count4 count4 c co cou coun BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 0 no 0 2 0 0 0 0 1 +ca_maxresponsesize_cached; ca_maxresponsesize_cached; ca_maxresponsesize_cached; c ca ca_ ca_m BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 0 ; 1 10 0 0 0 0 1 +count4 count4 count4 c co cou coun BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 0 no 0 2 0 0 0 0 1 +ca_maxoperations; ca_maxoperations; ca_maxoperations; c ca ca_ ca_m BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 0 ; 1 6 0 0 0 0 1 +count4 count4 count4 c co cou coun BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 0 no 0 2 0 0 0 0 1 +ca_maxrequests; ca_maxrequests; ca_maxrequests; c ca ca_ ca_m BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 0 ; 1 5 0 0 0 0 1 +uint32_t uint32_t uint32_t u ui uin uint BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 0 no 0 3 0 0 0 0 1 +ca_rdma_ird<1>; ca_rdma_ird<1>; ca_rdma_ird<1>; c ca ca_ ca_r BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 0 ; 1 5 0 0 0 0 1 +}; }; }; } }; }; }; BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 0 ; 1 1 0 0 0 0 1 +const CREATE_SESSION4_FLAG_PERSIST const c co con cons BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 3 no 0 8 0 0 0 0 1 += 0x00000001; = = = = = BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 3 ; 1 3 0 0 0 0 1 +const CREATE_SESSION4_FLAG_CONN_BACK_CHAN const c co con cons BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 3 no 0 10 0 0 0 0 1 += 0x00000002; = = = = = BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 3 ; 1 3 0 0 0 0 1 +const CREATE_SESSION4_FLAG_CONN_RDMA const c co con cons BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 3 no 0 8 0 0 0 0 1 += 0x00000004; = = = = = BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 3 ; 1 3 0 0 0 0 1 +struct CREATE_SESSION4args struct s st str stru BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 4 no 0 10 0 0 0 0 1 +clientid4 clientid4 clientid4 c cl cli clie BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 4 no 0 3 0 0 0 0 1 +csa_clientid; csa_clientid; csa_clientid; c cs csa csa_ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 4 ; 1 4 0 0 0 0 1 +sequenceid4 sequenceid4 sequenceid4 s se seq sequ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 4 no 0 4 0 0 0 0 1 +csa_sequence; csa_sequence; csa_sequence; c cs csa csa_ BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 4 ; 1 4 0 0 0 0 1 +uint32_t uint32_t uint32_t u ui uin uint BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 5 no 0 8 0 0 0 0 1 +csa_flags; csa_flags; csa_flags; c cs csa csa_ BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 5 ; 1 10 0 0 0 0 1 +channel_attrs4 channel_attrs4 channel_attrs4 c ch cha chan BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 5 no 0 7 0 0 0 0 1 +csa_fore_chan_attrs; csa_fore_chan_attrs; csa_fore_chan_attrs; c cs csa csa_ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 5 ; 1 10 0 0 0 0 1 +channel_attrs4 channel_attrs4 channel_attrs4 c ch cha chan BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 5 no 0 7 0 0 0 0 1 +csa_back_chan_attrs; csa_back_chan_attrs; csa_back_chan_attrs; c cs csa csa_ BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 5 ; 1 10 0 0 0 0 1 +uint32_t uint32_t uint32_t u ui uin uint BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 6 no 0 4 0 0 0 0 1 +csa_cb_program; csa_cb_program; csa_cb_program; c cs csa csa_ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 6 ; 1 8 0 0 0 0 1 +callback_sec_parms4 callback_sec_parms4 callback_sec_parms4 c ca cal call BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 6 no 0 10 0 0 0 0 1 +csa_sec_parms<>; csa_sec_parms<>; csa_sec_parms<>; c cs csa csa_ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 6 ; 1 8 0 0 0 0 1 +}; }; }; } }; }; }; BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 6 ; 1 1 0 0 0 0 1 +18.36.2. RESULT 18.36.2. 1 18 18. 18.3 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 7 ... 3 10 0 0 0 0 1 +struct CREATE_SESSION4resok struct s st str stru BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 7 no 0 10 0 0 0 0 1 +sessionid4 sessionid4 sessionid4 s se ses sess BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 7 no 0 3 0 0 0 0 1 +csr_sessionid; csr_sessionid; csr_sessionid; c cs csr csr_ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 7 ; 1 5 0 0 0 0 1 +sequenceid4 sequenceid4 sequenceid4 s se seq sequ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 7 no 0 4 0 0 0 0 1 +csr_sequence; csr_sequence; csr_sequence; c cs csr csr_ BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 7 ; 1 4 0 0 0 0 1 +uint32_t uint32_t uint32_t u ui uin uint BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 8 no 0 8 0 0 0 0 1 +csr_flags; csr_flags; csr_flags; c cs csr csr_ BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 8 ; 1 10 0 0 0 0 1 +channel_attrs4 channel_attrs4 channel_attrs4 c ch cha chan BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 8 no 0 7 0 0 0 0 1 +csr_fore_chan_attrs; csr_fore_chan_attrs; csr_fore_chan_attrs; c cs csr csr_ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 8 ; 1 10 0 0 0 0 1 +channel_attrs4 channel_attrs4 channel_attrs4 c ch cha chan BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 8 no 0 7 0 0 0 0 1 +csr_back_chan_attrs; csr_back_chan_attrs; csr_back_chan_attrs; c cs csr csr_ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 8 ; 1 10 0 0 0 0 1 +}; }; }; } }; }; }; BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 8 ; 1 1 0 0 0 0 1 +union CREATE_SESSION4res union u un uni unio BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 9 () 2 10 0 0 0 0 1 +case NFS4_OK: case c ca cas case BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 9 9 : 1 2 0 0 0 0 1 +CREATE_SESSION4resok CREATE_SESSION4resok create_session4resok C CR CRE CREA BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 9 no 0 3 0 0 0 0 1 +csr_resok4; csr_resok4; csr_resok4; c cs csr csr_ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 9 ; 1 2 0 0 0 0 1 +default: default: default: d de def defa BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 9 : 1 1 0 0 0 0 1 +void; void; void; v vo voi void BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 9 ; 1 1 0 0 0 0 1 +}; }; }; } }; }; }; BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 9 ; 1 0 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 9 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 11 , 1 10 0 0 0 0 0 +[Page 539] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 9 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 9 0 no 0 4 0 0 0 0 1 +18.36.3. DESCRIPTION 18.36.3. 1 18 18. 18.3 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 0 ... 3 10 0 0 0 0 1 +This operation this T Th Thi This BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 0 no 0 10 0 0 0 0 1 +the server. the t th the the BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 0 . 1 1 0 0 0 0 1 +CREATE_SESSION can create_session C CR CRE CREA BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 1 no 0 9 0 0 0 0 1 +operation in operation o op ope oper BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 1 . 1 9 0 0 0 0 1 +with a with w wi wit with BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 1 , 1 8 0 0 0 0 1 +CREATE_SESSION has create_session C CR CRE CREA BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 1 no 0 10 0 0 0 0 1 +SEQUENCE operation, sequence S SE SEQ SEQU BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 9 1 , 1 9 0 0 0 0 1 +with the with w wi wit with BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 1 . 1 8 0 0 0 0 1 +preceding SEQUENCE, preceding p pr pre prec BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 1 , 1 8 0 0 0 0 1 +COMPOUND procedure's compound C CO COM COMP BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 9 1 '., 3 9 0 0 0 0 1 +NFS4ERR_NOT_ONLY_OP. NFS4ERR_NOT_ONLY_OP. nfs4err_not_only_op. N NF NFS NFS4 BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 1 . 1 3 0 0 0 0 1 +In addition in I In In In BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 9 4 , 1 10 0 0 0 0 1 +effects: effects: effects: e ef eff effe BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 4 : 1 1 0 0 0 0 1 +o The o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 9 4 no 0 10 0 0 0 0 1 +the creation the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 4 '. 2 9 0 0 0 0 1 +returns the returns r re ret retu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 4 . 1 7 0 0 0 0 1 +o The o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 9 5 no 0 10 0 0 0 0 1 +the session's the t th the the BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 5 '. 2 4 0 0 0 0 1 +The arguments the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 6 : 1 10 0 0 0 0 1 +csa_clientid: csa_clientid: csa_clientid: c cs csa csa_ BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 6 : 1 10 0 0 0 0 1 +This is this T Th Thi This BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 6 no 0 9 0 0 0 0 1 +associated. The associated. a as ass asso BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 6 ., 2 10 0 0 0 0 1 +session ID session s se ses sess BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 6 . 1 5 0 0 0 0 1 +csa_sequence: csa_sequence: csa_sequence: c cs csa csa_ BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 7 : 1 10 0 0 0 0 1 +Each client each E Ea Eac Each BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 7 - 1 9 0 0 0 0 1 +sequence number sequence s se seq sequ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 7 (..). 5 10 0 0 0 0 1 +is csr_sequence, is i is is is BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 7 ,. 2 8 0 0 0 0 1 +In the in I In In In BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 9 8 , 1 10 0 0 0 0 1 +a property a a a a a BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 1 0 0 0 0 0 9 8 ., 2 9 0 0 0 0 1 +RECOMMENDED that recommended R RE REC RECO BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 9 8 . 1 8 0 0 0 0 1 +acceptable, the acceptable, a ac acc acce BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 8 ,., 3 9 0 0 0 0 1 +server MUST server s se ser serv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 8 ( 1 9 0 0 0 0 1 +either what either e ei eit eith BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 8 ,) 2 9 0 0 0 0 1 +to the to t to to to BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 8 . 1 2 0 0 0 0 1 +csa_flags: csa_flags: csa_flags: c cs csa csa_ BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 11 : 1 10 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 9 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 11 , 1 10 0 0 0 0 0 +[Page 540] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 9 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 9 0 no 0 4 0 0 0 0 1 +The csa_flags the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 0 : 1 10 0 0 0 0 1 +CREATE_SESSION4_FLAG_PERSIST: CREATE_SESSION4_FLAG_PERSIST: create_session4_flag_persist: C CR CRE CREA BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 0 : 1 10 0 0 0 0 1 +If CREATE_SESSION4_FLAG_PERSIST if I If If If BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 0 , 1 9 0 0 0 0 1 +server to server s se ser serv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 0 . 1 9 0 0 0 0 1 +which only which w wh whi whic BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 0 (..,- 5 9 0 0 0 0 1 +only session), only o on onl only BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 0 ), 2 6 0 0 0 0 1 +CREATE_SESSION4_FLAG_PERSIST. If create_session4_flag_persist. C CR CRE CREA BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 0 . 1 10 0 0 0 0 1 +provide a provide p pr pro prov BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 0 , 1 9 0 0 0 0 1 +CREATE_SESSION4_FLAG_PERSIST in create_session4_flag_persist C CR CRE CREA BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 0 . 1 8 0 0 0 0 1 +If the if I If If If BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 3 , 1 10 0 0 0 0 1 +in Section in i in in in BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 9 3 .. 2 5 0 0 0 0 1 +CREATE_SESSION4_FLAG_PERSIST if create_session4_flag_persist C CR CRE CREA BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 3 no 0 9 0 0 0 0 1 +(Section 5.12.4) (section ( (S (Se (Sec BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 3 (..). 5 4 0 0 0 0 1 +CREATE_SESSION4_FLAG_CONN_BACK_CHAN: CREATE_SESSION4_FLAG_CONN_BACK_CHAN: create_session4_flag_conn_back_chan: C CR CRE CREA BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 4 : 1 10 0 0 0 0 1 +If CREATE_SESSION4_FLAG_CONN_BACK_CHAN if I If If If BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 4 , 1 10 0 0 0 0 1 +client is client c cl cli clie BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 4 no 0 8 0 0 0 0 1 +CREATE_SESSION operation create_session C CR CRE CREA BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 4 no 0 8 0 0 0 0 1 +session's backchannel session's s se ses sess BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 4 '. 2 9 0 0 0 0 1 +server agrees, server s se ser serv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 4 , 1 9 0 0 0 0 1 +the result the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 4 . 1 4 0 0 0 0 1 +CREATE_SESSION4_FLAG_CONN_BACK_CHAN is create_session4_flag_conn_back_chan C CR CRE CREA BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 4 , 1 9 0 0 0 0 1 +then CREATE_SESSION4_FLAG_CONN_BACK_CHAN then t th the then BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 4 no 0 9 0 0 0 0 1 +csr_flags. csr_flags. csr_flags. c cs csr csr_ BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 4 . 1 1 0 0 0 0 1 +CREATE_SESSION4_FLAG_CONN_RDMA: CREATE_SESSION4_FLAG_CONN_RDMA: create_session4_flag_conn_rdma: C CR CRE CREA BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 6 : 1 10 0 0 0 0 1 +If CREATE_SESSION4_FLAG_CONN_RDMA if I If If If BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 6 , 1 9 0 0 0 0 1 +the connection the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 6 no 0 9 0 0 0 0 1 +is currently is i is is is BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 6 - 1 10 0 0 0 0 1 +in RDMA in i in in in BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 9 6 , 1 9 0 0 0 0 1 +"step up" "step " "s "st "ste BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 6 "". 3 8 0 0 0 0 1 +agrees, it agrees, a ag agr agre BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 6 , 1 9 0 0 0 0 1 +field csr_flags. field f fi fie fiel BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 9 6 . 1 9 0 0 0 0 1 +in csa_flags, in i in in in BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 9 6 , 1 9 0 0 0 0 1 +set in set s se set set BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 6 ., 2 9 0 0 0 0 1 +it and it i it it it BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 6 no 0 9 0 0 0 0 1 +connection with connection c co con conn BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 6 ([]). 5 10 0 0 0 0 1 +csa_fore_chan_attrs, csa_fore_chan_attrs: csa_fore_chan_attrs, c cs csa csa_ BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 10 ,: 2 10 0 0 0 0 1 +The csa_fore_chan_attrs the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 10 no 0 9 0 0 0 0 1 +attributes of attributes a at att attr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 10 ( 1 10 0 0 0 0 1 +from the from f fr fro from BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 10 ),( 3 9 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 10 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 11 , 1 10 0 0 0 0 0 +[Page 541] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 10 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 10 0 no 0 4 0 0 0 0 1 +that conveys that t th tha that BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 0 no 0 10 0 0 0 0 1 +client), respectively. client), c cl cli clie BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 0 ),. 3 8 0 0 0 0 1 +structures called structures s st str stru BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 0 . 1 9 0 0 0 0 1 +The results the T Th The The BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 0 , 1 9 0 0 0 0 1 +subsequent use subsequent s su sub subs BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 0 . 1 10 0 0 0 0 1 +the following the t th the the BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 0 : 1 3 0 0 0 0 1 +ca_headerpadsize: ca_headerpadsize: ca_headerpadsize: c ca ca_ ca_h BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 1 : 1 10 0 0 0 0 1 +The maximum the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 2 no 0 10 0 0 0 0 1 +to ensure to t to to to BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 2 no 0 9 0 0 0 0 1 +the replier. the t th the the BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 2 ., 2 6 0 0 0 0 1 ++ will + + + + + BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 3 , 1 10 0 0 0 0 1 +zero if zero z ze zer zero BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 3 , 1 5 0 0 0 0 1 ++ MAY + + + + + BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 3 . 1 10 0 0 0 0 1 +ca_maxrequestsize: ca_maxrequestsize: ca_maxrequestsize: c ca ca_ ca_m BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 4 : 1 10 0 0 0 0 1 +The maximum the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 4 no 0 10 0 0 0 0 1 +be sent. be b be be be BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 4 . 1 9 0 0 0 0 1 +request, including request, r re req requ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 4 ,( 2 9 0 0 0 0 1 +credentials and credentials c cr cre cred BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 4 ) 1 9 0 0 0 0 1 +framing headers. framing f fr fra fram BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 4 .-/ 3 9 0 0 0 0 1 +IP connection, ip I IP IP IP BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 1 0 0 0 0 0 0 10 4 , 1 9 0 0 0 0 1 +preceding it. preceding p pr pre prec BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 4 . 1 8 0 0 0 0 1 +header will header h he hea head BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 4 . 1 8 0 0 0 0 1 +request that request r re req requ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 4 , 1 7 0 0 0 0 1 +NFS4ERR_REQ_TOO_BIG will nfs4err_req_too_big N NF NFS NFS4 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 4 no 0 9 0 0 0 0 1 +Section 2.10.6.4. section S Se Sec Sect BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 4 ...., 5 9 0 0 0 0 1 +this value this t th thi this BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 4 . 1 5 0 0 0 0 1 +ca_maxresponsesize: ca_maxresponsesize: ca_maxresponsesize: c ca ca_ ca_m BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 7 : 1 10 0 0 0 0 1 +The maximum the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 7 no 0 9 0 0 0 0 1 +requester will requester r re req requ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 7 no 0 9 0 0 0 0 1 +(see the (see ( (s (se (see BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 7 ()., 4 9 0 0 0 0 1 +server MAY server s se ser serv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 7 ,. 2 9 0 0 0 0 1 +However, if however, H Ho How Howe BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 7 , 1 9 0 0 0 0 1 +such that such s su suc such BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 7 , 1 9 0 0 0 0 1 +the server the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 7 no 0 10 0 0 0 0 1 +reply. After reply. r re rep repl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 7 ., 2 9 0 0 0 0 1 +request for request r re req requ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 7 no 0 9 0 0 0 0 1 +value, the value, v va val valu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 7 ,, 2 9 0 0 0 0 1 +description in description d de des desc BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 7 .... 4 5 0 0 0 0 1 +ca_maxresponsesize_cached: ca_maxresponsesize_cached: ca_maxresponsesize_cached: c ca ca_ ca_m BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 11 : 1 10 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 10 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 11 , 1 10 0 0 0 0 0 +[Page 542] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 10 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 10 0 no 0 4 0 0 0 0 1 +Like ca_maxresponsesize, like L Li Lik Like BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 0 , 1 9 0 0 0 0 1 +will be will w wi wil will BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 10 0 (...). 6 9 0 0 0 0 1 +channel, the channel, c ch cha chan BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 0 ,, 2 9 0 0 0 0 1 +increase it. increase i in inc incr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 0 .,, 3 9 0 0 0 0 1 +ca_maxresponsesize_cached of ca_maxresponsesize_cached c ca ca_ ca_m BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 0 no 0 9 0 0 0 0 1 +of ca_maxresponsesize of o of of of BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 0 , 1 9 0 0 0 0 1 +indication to indication i in ind indi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 0 no 0 10 0 0 0 0 1 +which replies which w wh whi whic BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 0 ;, 2 9 0 0 0 0 1 +large replies large l la lar larg BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 10 0 (.., 4 9 0 0 0 0 1 +requests with requests r re req requ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 10 0 ). 2 9 0 0 0 0 1 +requester decides requester r re req requ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 0 no 0 10 0 0 0 0 1 +SEQUENCE (the sequence S SE SEQ SEQU BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 10 0 (,.) 4 8 0 0 0 0 1 +CB_SEQUENCE (the cb_sequence C CB CB_ CB_S BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 0 (,.) 4 8 0 0 0 0 1 +operations. After operations. o op ope oper BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 0 ., 2 9 0 0 0 0 1 +a request a a a a a BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 1 0 0 0 0 0 10 0 no 0 8 0 0 0 0 1 +ca_maxresponsesize_cached, the ca_maxresponsesize_cached, c ca ca_ ca_m BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 0 , 1 7 0 0 0 0 1 +NFS4ERR_REP_TOO_BIG_TO_CACHE, per nfs4err_rep_too_big_to_cache, N NF NFS NFS4 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 0 , 1 8 0 0 0 0 1 +Section 2.10.6.4. section S Se Sec Sect BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 0 .... 4 2 0 0 0 0 1 +ca_maxoperations: ca_maxoperations: ca_maxoperations: c ca ca_ ca_m BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 5 : 1 10 0 0 0 0 1 +The maximum the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 6 no 0 9 0 0 0 0 1 +COMPOUND or compound C CO COM COMP BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 10 6 ., 2 9 0 0 0 0 1 +NOT change not N NO NOT NOT BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 10 6 ., 2 9 0 0 0 0 1 +the server the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 6 . 1 9 0 0 0 0 1 +is created, is i is is is BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 6 , 1 10 0 0 0 0 1 +more operations more m mo mor more BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 6 , 1 9 0 0 0 0 1 +NFS4ERR_TOO_MANY_OPS. NFS4ERR_TOO_MANY_OPS. nfs4err_too_many_ops. N NF NFS NFS4 BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 6 . 1 3 0 0 0 0 1 +ca_maxrequests: ca_maxrequests: ca_maxrequests: c ca ca_ ca_m BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 8 : 1 10 0 0 0 0 1 +The maximum the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 8 no 0 9 0 0 0 0 1 +requests the requests r re req requ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 10 8 . 1 9 0 0 0 0 1 +requests will requests r re req requ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 10 8 no 0 8 0 0 0 0 1 +requester within requester r re req requ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 8 - 1 8 0 0 0 0 1 +inclusive. For inclusive. i in inc incl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 8 ., 2 10 0 0 0 0 1 +value the value v va val valu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 8 ., 2 9 0 0 0 0 1 +change the change c ch cha chan BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 8 . 1 4 0 0 0 0 1 +ca_rdma_ird: ca_rdma_ird: ca_rdma_ird: c ca ca_ ca_r BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 10 : 1 10 0 0 0 0 1 +This array this T Th Thi This BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 10 . 1 10 0 0 0 0 1 +element, then element, e el ele elem BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 10 , 1 10 0 0 0 0 1 +depth (IRD). depth d de dep dept BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 10 ()., 4 9 0 0 0 0 1 +value, but value, v va val valu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 10 ,. 2 5 0 0 0 0 1 +csa_cb_program csa_cb_program csa_cb_program c cs csa csa_ BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 11 no 0 10 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 10 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 11 , 1 10 0 0 0 0 0 +[Page 543] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 10 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 10 0 no 0 4 0 0 0 0 1 +This is this T Th Thi This BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 0 no 0 9 0 0 0 0 1 +callbacks sent callbacks c ca cal call BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 0 . 1 9 0 0 0 0 1 +MUST specify must M MU MUS MUST BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 10 0 no 0 10 0 0 0 0 1 +an ONC an a an an an BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 10 0 no 0 9 0 0 0 0 1 +client. If client. c cl cli clie BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 0 ., 2 9 0 0 0 0 1 +use a use u us use use BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 0 . 1 8 0 0 0 0 1 +result. result. result. r re res resu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 0 . 1 1 0 0 0 0 1 +csa_sec_parms csa_sec_parms csa_sec_parms c cs csa csa_ BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 2 no 0 10 0 0 0 0 1 +The field the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 2 no 0 8 0 0 0 0 1 +credentials the credentials c cr cre cred BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 2 '. 2 9 0 0 0 0 1 +Three security three T Th Thr Thre BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 2 :,, 3 9 0 0 0 0 1 +RPCSEC_GSS. If rpcsec_gss. R RP RPC RPCS BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 2 ., 2 9 0 0 0 0 1 +says the says s sa say says BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 2 no 0 9 0 0 0 0 1 +callbacks for callbacks c ca cal call BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 2 ., 2 9 0 0 0 0 1 +client is client c cl cli clie BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 2 , 1 10 0 0 0 0 1 +using the using u us usi usin BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 2 . 1 9 0 0 0 0 1 +specified, then specified, s sp spe spec BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 2 , 1 8 0 0 0 0 1 +context specified context c co con cont BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 2 no 0 9 0 0 0 0 1 +the credential the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 2 . 1 9 0 0 0 0 1 +There is there T Th The Ther BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 2 . 1 5 0 0 0 0 1 +The RPCSEC_GSS the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 5 no 0 10 0 0 0 0 1 +of values of o of of of BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 5 . 1 9 0 0 0 0 1 +represents an represents r re rep repr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 5 , 1 9 0 0 0 0 1 +data type data d da dat data BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 5 "" 2 9 0 0 0 0 1 +defined in defined d de def defi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 5 ...,"- 6 8 0 0 0 0 1 +Successful Acceptance", successful S Su Suc Succ BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 5 ",[]. 5 4 0 0 0 0 1 +The first the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 7 ,, 2 10 0 0 0 0 1 +handle the handle h ha han hand BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 7 ( 1 9 0 0 0 0 1 +field of field f fi fie fiel BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 10 7 no 0 9 0 0 0 0 1 +the spi_handles the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 7 ) 1 9 0 0 0 0 1 +the RPCSEC_GSS the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 7 . 1 9 0 0 0 0 1 +handle, gcbp_handle_from_client, handle, h ha han hand BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 7 ,, 2 9 0 0 0 0 1 +client will client c cl cli clie BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 7 . 1 8 0 0 0 0 1 +immediately use immediately i im imm imme BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 7 no 0 9 0 0 0 0 1 +RPCSEC_GSS credential rpcsec_gss R RP RPC RPCS BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 7 ., 2 9 0 0 0 0 1 +gcbp_handle_from_client can gcbp_handle_from_client g gc gcb gcbp BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 7 no 0 9 0 0 0 0 1 +"handle" in "handle" " "h "ha "han BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 7 ""(," 5 10 0 0 0 0 1 +the RPCSEC_GSS the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 7 ",[]). 6 9 0 0 0 0 1 +server MUST server s se ser serv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 7 no 0 9 0 0 0 0 1 +gcbp_service, i.e., gcbp_service, g gc gcb gcbp BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 7 ,..,"" 6 8 0 0 0 0 1 +rpc_gss_cred_t data rpc_gss_cred_t r rp rpc rpc_ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 7 no 0 10 0 0 0 0 1 +gcbp_service (see gcbp_service g gc gcb gcbp BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 7 (..,"",[]). 11 9 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 10 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 11 , 1 10 0 0 0 0 0 +[Page 544] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 10 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 10 0 no 0 4 0 0 0 0 1 +If the if I If If If BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 0 no 0 10 0 0 0 0 1 +does not does d do doe does BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 0 , 1 8 0 0 0 0 1 +NFS4ERR_NOENT. NFS4ERR_NOENT. nfs4err_noent. N NF NFS NFS4 BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 0 . 1 2 0 0 0 0 1 +Within each within W Wi Wit With BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 1 , 1 10 0 0 0 0 1 +contexts MUST contexts c co con cont BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 1 no 0 9 0 0 0 0 1 +seq_window (see seq_window s se seq seq_ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 1 (...[]). 8 9 0 0 0 0 1 +back RPCSEC_GSS back b ba bac back BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 10 1 no 0 10 0 0 0 0 1 +as the as a as as as BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 1 ( 1 9 0 0 0 0 1 +rpc_gss_cred_t data rpc_gss_cred_t r rp rpc rpc_ BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 1 ..[]). 6 8 0 0 0 0 1 +If an if I If If If BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 3 ( 1 8 0 0 0 0 1 +Section 2.10.9), section S Se Sec Sect BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 3 ..), 4 9 0 0 0 0 1 +common SSV common c co com comm BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 3 , 1 10 0 0 0 0 1 +to this to t to to to BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 3 ... 3 7 0 0 0 0 1 +Once the once O On Onc Once BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 4 , 1 9 0 0 0 0 1 +received on received r re rec rece BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 4 ;, 2 10 0 0 0 0 1 +replier MUST replier r re rep repl BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 4 . 1 6 0 0 0 0 1 +18.36.4. IMPLEMENTATION 18.36.4. 1 18 18. 18.3 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 5 ... 3 10 0 0 0 0 1 +To describe to T To To To BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 5 , 1 9 0 0 0 0 1 +records introduced records r re rec reco BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 10 5 no 0 10 0 0 0 0 1 +following addition: following f fo fol foll BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 5 : 1 2 0 0 0 0 1 +clientid_arg: The clientid_arg: c cl cli clie BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 6 : 1 10 0 0 0 0 1 +CREATE_SESSION4args structure create_session4args C CR CRE CREA BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 6 . 1 9 0 0 0 0 1 +Since CREATE_SESSION since S Si Sin Sinc BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 7 -, 2 9 0 0 0 0 1 +consider the consider c co con cons BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 7 no 0 9 0 0 0 0 1 +client restart, client c cl cli clie BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 7 ,,,. 4 9 0 0 0 0 1 +each client each e ea eac each BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 7 , 1 8 0 0 0 0 1 +separate reply separate s se sep sepa BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 7 () 2 10 0 0 0 0 1 +to the to t to to to BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 7 , 1 9 0 0 0 0 1 +distinctions. distinctions. distinctions. d di dis dist BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 7 . 1 2 0 0 0 0 1 +o First, o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 10 9 , 1 10 0 0 0 0 1 +CREATE_SESSION requests create_session C CR CRE CREA BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 9 . 1 7 0 0 0 0 1 +o Second, o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 10 10 ,( 2 10 0 0 0 0 1 +as a as a as as as BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 10 , 1 9 0 0 0 0 1 +number). This number). n nu num numb BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 10 ). 2 9 0 0 0 0 1 +given client given g gi giv give BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 10 . 1 5 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 10 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 11 , 1 10 0 0 0 0 0 +[Page 545] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 10 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 10 0 no 0 4 0 0 0 0 1 +As previously as A As As As BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 0 , 1 9 0 0 0 0 1 +preceding SEQUENCE preceding p pr pre prec BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 0 . 1 8 0 0 0 0 1 +CREATE_SESSION, the create_session, C CR CRE CREA BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 0 , 1 9 0 0 0 0 1 +cache, which cache, c ca cac cach BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 0 , 1 8 0 0 0 0 1 +associated with associated a as ass asso BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 0 . 1 9 0 0 0 0 1 +itself, the itself, i it its itse BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 0 , 1 9 0 0 0 0 1 +within a within w wi wit with BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 0 . 1 9 0 0 0 0 1 +originally sent originally o or ori orig BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 0 , 1 9 0 0 0 0 1 +client SHOULD client c cl cli clie BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 0 no 0 9 0 0 0 0 1 +that has that t th tha that BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 0 . 1 10 0 0 0 0 1 +However, the however, H Ho How Howe BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 0 , 1 10 0 0 0 0 1 +preceding SEQUENCE, preceding p pr pre prec BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 0 , 1 9 0 0 0 0 1 +different session different d di dif diff BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 0 . 1 9 0 0 0 0 1 +necessary if necessary n ne nec nece BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 0 no 0 10 0 0 0 0 1 +by a by b by by by BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 0 ,. 2 9 0 0 0 0 1 +Regardless, any regardless, R Re Reg Rega BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 0 ,, 2 9 0 0 0 0 1 +SEQUENCE, MUST sequence, S SE SEQ SEQU BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 10 0 ,. 2 9 0 0 0 0 1 +After the after A Af Aft Afte BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 4 no 0 9 0 0 0 0 1 +contains a contains c co con cont BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 4 ,, 2 10 0 0 0 0 1 +to follow to t to to to BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 4 . 1 9 0 0 0 0 1 +The server the T Th The The BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 4 no 0 9 0 0 0 0 1 +CREATE_SESSION to create_session C CR CRE CREA BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 4 no 0 9 0 0 0 0 1 +that was that t th tha that BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 4 no 0 9 0 0 0 0 1 +unconfirmed client unconfirmed u un unc unco BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 4 . 1 10 0 0 0 0 1 +operation, it operation, o op ope oper BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 4 , 1 8 0 0 0 0 1 +eir_sequenceid -1 eir_sequenceid e ei eir eir_ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 4 -(), 4 8 0 0 0 0 1 +contrived CREATE_SESSION contrived c co con cont BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 4 "" 2 8 0 0 0 0 1 +NFS4ERR_SEQ_MISORDERED. With nfs4err_seq_misordered. N NF NFS NFS4 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 4 ., 2 9 0 0 0 0 1 +the processing the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 4 no 0 9 0 0 0 0 1 +phases: phases: phases: p ph pha phas BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 4 : 1 1 0 0 0 0 1 +1. Client 1. 1 1. 1. 1. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 7 .. 2 10 0 0 0 0 1 +client record client c cl cli clie BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 7 . 1 8 0 0 0 0 1 +client ID client c cl cli clie BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 7 ,' 2 9 0 0 0 0 1 +state has state s st sta stat BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 7 , 1 9 0 0 0 0 1 +to a to t to to to BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 7 ., 2 9 0 0 0 0 1 +and no and a an and and BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 7 . 1 9 0 0 0 0 1 +Otherwise, the otherwise, O Ot Oth Othe BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 7 ,. 2 5 0 0 0 0 1 +2. Sequence 2. 2 2. 2. 2. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 9 .. 2 9 0 0 0 0 1 +sequence ID sequence s se seq sequ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 9 ', 2 10 0 0 0 0 1 +previous CREATE_SESSION previous p pr pre prev BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 9 , 1 9 0 0 0 0 1 +cached result. cached c ca cac cach BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 9 . 1 9 0 0 0 0 1 +in the in i in in in BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 10 9 ,( 2 8 0 0 0 0 1 +wraparound), then wraparound), w wr wra wrap BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 9 ), 2 7 0 0 0 0 1 +NFS4ERR_SEQ_MISORDERED, and nfs4err_seq_misordered, N NF NFS NFS4 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 9 ,. 2 8 0 0 0 0 1 +csa_sequenceid is csa_sequenceid c cs csa csa_ BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 9 '( 2 10 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 10 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 11 , 1 10 0 0 0 0 0 +[Page 546] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 10 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 10 0 no 0 4 0 0 0 0 1 +for wraparound), for f fo for for BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 0 ),' 3 8 0 0 0 0 1 +csa_sequenceid, and csa_sequenceid, c cs csa csa_ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 0 , 1 9 0 0 0 0 1 +next phase. next n ne nex next BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 0 . 1 9 0 0 0 0 1 +client ID client c cl cli clie BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 0 no 0 10 0 0 0 0 1 +sequence ID sequence s se seq sequ BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 0 . 1 3 0 0 0 0 1 +3. Client 3. 3 3. 3. 3. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 2 .. 2 10 0 0 0 0 1 +the client the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 2 , 1 10 0 0 0 0 1 +client ID. client c cl cli clie BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 2 ., 2 8 0 0 0 0 1 +skipped and skipped s sk ski skip BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 2 . 1 9 0 0 0 0 1 +which there which w wh whi whic BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 2 no 0 9 0 0 0 0 1 +client ID client c cl cli clie BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 2 . 1 9 0 0 0 0 1 +the potential the t th the the BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 2 . 1 7 0 0 0 0 1 +* Successful * * * * * BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 5 * 1 10 0 0 0 0 1 +If the if I If If If BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 5 , 1 9 0 0 0 0 1 +this is this t th thi this BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 5 . 1 10 0 0 0 0 1 +{ ownerid, { { { { { BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 5 ,,,, 4 10 0 0 0 0 1 +unconfirmed } unconfirmed u un unc unco BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 5 no 0 2 0 0 0 0 1 +As noted as A As As As BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 6 .., 3 10 0 0 0 0 1 +following confirmed following f fo fol foll BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 6 . 1 4 0 0 0 0 1 +{ ownerid, { { { { { BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 7 ,,,, 4 10 0 0 0 0 1 +confirmed } confirmed c co con conf BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 7 no 0 2 0 0 0 0 1 +The server the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 7 : 1 10 0 0 0 0 1 +{ ownerid, { { { { { BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 7 ,,,, 4 10 0 0 0 0 1 +} } } } } } } BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 7 no 0 0 0 0 0 0 1 +The processing the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 8 no 0 10 0 0 0 0 1 +creation. Once creation. c cr cre crea BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 8 ., 2 9 0 0 0 0 1 +scheduled client scheduled s sc sch sche BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 8 . 1 10 0 0 0 0 1 +session is session s se ses sess BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 8 , 1 10 0 0 0 0 1 +made to made m ma mad made BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 8 . 1 7 0 0 0 0 1 +* Unsuccessful * * * * * BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 9 * 1 10 0 0 0 0 1 +If the if I If If If BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 9 , 1 10 0 0 0 0 1 +changed principals changed c ch cha chan BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 9 , 1 9 0 0 0 0 1 +or there or o or or or BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 9 no 0 9 0 0 0 0 1 +client identifiers. client c cl cli clie BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 9 . 1 3 0 0 0 0 1 +{ *, { { { { { BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 11 *,*,,,* 7 10 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 10 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 11 , 1 10 0 0 0 0 0 +[Page 547] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 10 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 10 0 no 0 4 0 0 0 0 1 +Neither of neither N Ne Nei Neit BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 0 . 1 10 0 0 0 0 1 +and NFS4ERR_CLID_INUSE and a an and and BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 0 . 1 9 0 0 0 0 1 +changes are changes c ch cha chan BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 10 0 . 1 9 0 0 0 0 1 +4. Session 4. 4 4. 4. 4. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 1 .., 3 10 0 0 0 0 1 +this CREATE_SESSION this t th thi this BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 1 , 1 8 0 0 0 0 1 +operation. The operation. o op ope oper BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 1 . 1 8 0 0 0 0 1 +arguments. arguments. arguments. a ar arg argu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 1 . 1 1 0 0 0 0 1 +The server the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 1 no 0 9 0 0 0 0 1 +used (including used u us use used BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 1 ( 1 9 0 0 0 0 1 +set and set s se set set BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 1 ) 1 10 0 0 0 0 1 +the session the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 1 (, 2 10 0 0 0 0 1 +returns NFS4ERR_NOSPC). returns r re ret retu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 1 )., 3 9 0 0 0 0 1 +server sets server s se ser serv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 1 , 1 8 0 0 0 0 1 +containing a containing c co con cont BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 1 no 0 9 0 0 0 0 1 +NFS4ERR_SEQ_MISORDERED. This nfs4err_seq_misordered. N NF NFS NFS4 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 1 ., 2 9 0 0 0 0 1 +sent has sent s se sen sent BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 1 , 1 9 0 0 0 0 1 +return what return r re ret retu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 1 :. 2 9 0 0 0 0 1 +client initializes client c cl cli clie BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 1 no 0 10 0 0 0 0 1 +same way, same s sa sam same BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 1 ,, 2 9 0 0 0 0 1 +slot after slot s sl slo slot BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 1 . 1 9 0 0 0 0 1 +If the if I If If If BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 5 , 1 8 0 0 0 0 1 +associates the associates a as ass asso BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 10 5 . 1 10 0 0 0 0 1 +When a when W Wh Whe When BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 6 no 0 9 0 0 0 0 1 +to be to t to to to BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 6 , 1 10 0 0 0 0 1 +in non-RDMA in i in in in BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 10 6 -. 2 8 0 0 0 0 1 +different enough different d di dif diff BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 6 no 0 9 0 0 0 0 1 +change, then change, c ch cha chan BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 6 ,-. 3 8 0 0 0 0 1 +eventually dispose eventually e ev eve even BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 6 no 0 8 0 0 0 0 1 +original connection. original o or ori orig BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 6 . 1 3 0 0 0 0 1 +On the on O On On On BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 8 , 1 9 0 0 0 0 1 +slots, in slots, s sl slo slot BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 8 ,, 2 10 0 0 0 0 1 +deal with deal d de dea deal BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 10 8 no 0 10 0 0 0 0 1 +is the is i is is is BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 8 ., 2 10 0 0 0 0 1 +client provides client c cl cli clie BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 8 , 1 9 0 0 0 0 1 +limit the limit l li lim limi BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 8 . 1 9 0 0 0 0 1 +Implementing RPCSEC_GSS implementing I Im Imp Impl BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 10 no 0 10 0 0 0 0 1 +client and client c cl cli clie BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 10 . 1 9 0 0 0 0 1 +changes includes: changes c ch cha chan BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 10 10 : 1 2 0 0 0 0 1 +o Adding o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 10 11 - 1 10 0 0 0 0 1 +reference count. reference r re ref refe BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 11 . 1 2 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 10 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 11 , 1 10 0 0 0 0 0 +[Page 548] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 10 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 10 0 no 0 4 0 0 0 0 1 +o New o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 10 0 . 1 10 0 0 0 0 1 +the reference the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 0 , 1 9 0 0 0 0 1 +structure and structure s st str stru BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 0 -. 2 9 0 0 0 0 1 +o Change o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 10 1 no 0 9 0 0 0 0 1 +receiving GSS-API receiving r re rec rece BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 10 1 -() 3 9 0 0 0 0 1 +gss_init_sec_context(). The gss_init_sec_context(). g gs gss gss_ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 1 (). 3 10 0 0 0 0 1 +to 1. to t to to to BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 1 . 1 0 0 0 0 0 1 +o Adding o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 10 3 no 0 9 0 0 0 0 1 +pointer to pointer p po poi poin BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 10 3 . 1 10 0 0 0 0 1 +be incremented. be b be be be BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 3 . 1 2 0 0 0 0 1 +o Adding o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 10 4 no 0 10 0 0 0 0 1 +to the to t to to to BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 4 . 1 8 0 0 0 0 1 +incremented. incremented. incremented. i in inc incr BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 4 . 1 1 0 0 0 0 1 +o Replacing o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 10 5 -, 2 10 0 0 0 0 1 +calls to calls c ca cal call BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 5 no 0 8 0 0 0 0 1 +structure. structure. structure. s st str stru BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 5 . 1 1 0 0 0 0 1 +18.37. Operation 18.37. 1 18 18. 18.3 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 6 ..:- 4 10 0 0 0 0 1 +18.37.1. ARGUMENT 18.37.1. 1 18 18. 18.3 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 6 ... 3 10 0 0 0 0 1 +struct DESTROY_SESSION4args struct s st str stru BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 6 no 0 10 0 0 0 0 1 +sessionid4 sessionid4 sessionid4 s se ses sess BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 6 no 0 3 0 0 0 0 1 +dsa_sessionid; dsa_sessionid; dsa_sessionid; d ds dsa dsa_ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 6 ; 1 5 0 0 0 0 1 +}; }; }; } }; }; }; BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 6 ; 1 1 0 0 0 0 1 +18.37.2. RESULT 18.37.2. 1 18 18. 18.3 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 7 ... 3 10 0 0 0 0 1 +struct DESTROY_SESSION4res struct s st str stru BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 7 no 0 10 0 0 0 0 1 +nfsstat4 nfsstat4 nfsstat4 n nf nfs nfss BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 7 no 0 3 0 0 0 0 1 +dsr_status; dsr_status; dsr_status; d ds dsr dsr_ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 7 ; 1 4 0 0 0 0 1 +}; }; }; } }; }; }; BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 7 ; 1 1 0 0 0 0 1 +18.37.3. DESCRIPTION 18.37.3. 1 18 18. 18.3 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 7 ... 3 10 0 0 0 0 1 +The DESTROY_SESSION the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 7 no 0 9 0 0 0 0 1 +session's reply session's s se ses sess BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 7 ',. 3 9 0 0 0 0 1 +with the with w wi wit with BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 7 . 1 9 0 0 0 0 1 +has no has h ha has has BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 7 , 1 10 0 0 0 0 1 +the server. the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 7 .,,,,, 6 9 0 0 0 0 1 +are all are a ar are are BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 7 ,. 2 9 0 0 0 0 1 +DESTROY_SESSION MUST destroy_session D DE DES DEST BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 10 no 0 10 0 0 0 0 1 +with the with w wi wit with BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 10 ., 2 9 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 10 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 11 , 1 10 0 0 0 0 0 +[Page 549] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 10 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 10 0 no 0 4 0 0 0 0 1 +state protection state s st sta stat BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 0 , 1 9 0 0 0 0 1 +RPCSEC_GSS principal rpcsec_gss R RP RPC RPCS BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 0 no 0 9 0 0 0 0 1 +destroys the destroys d de des dest BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 0 ,. 2 9 0 0 0 0 1 +SP4_SSV state sp4_ssv S SP SP4 SP4_ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 0 no 0 8 0 0 0 0 1 +created, RPCSEC_GSS created, c cr cre crea BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 0 ,(..) 5 10 0 0 0 0 1 +used, with used, u us use used BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 0 ,. 2 4 0 0 0 0 1 +If the if I If If If BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 2 , 1 10 0 0 0 0 1 +specified in specified s sp spe spec BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 2 , 1 8 0 0 0 0 1 +o DESTROY_SESSION o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 10 3 no 0 10 0 0 0 0 1 +request. request. request. r re req requ BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 3 . 1 1 0 0 0 0 1 +o It o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 10 3 no 0 10 0 0 0 0 1 +request with request r re req requ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 3 -, 2 9 0 0 0 0 1 +DESTROY_SESSION will destroy_session D DE DES DEST BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 3 . 1 7 0 0 0 0 1 +o Because o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 10 4 , 1 10 0 0 0 0 1 +that retries that t th tha that BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 4 no 0 9 0 0 0 0 1 +retry, even retry, r re ret retr BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 4 ,. 2 8 0 0 0 0 1 +If the if I If If If BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 5 , 1 10 0 0 0 0 1 +specified in specified s sp spe spec BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 5 , 1 9 0 0 0 0 1 +DESTROY_SESSION can destroy_session D DE DES DEST BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 5 no 0 9 0 0 0 0 1 +(except for (except ( (e (ex (exc BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 5 (). 3 9 0 0 0 0 1 +different client different d di dif diff BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 5 . 1 3 0 0 0 0 1 +If the if I If If If BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 6 , 1 9 0 0 0 0 1 +DESTROY_SESSION is destroy_session D DE DES DEST BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 6 , 1 10 0 0 0 0 1 +NFS4ERR_NOT_ONLY_OP. NFS4ERR_NOT_ONLY_OP. nfs4err_not_only_op. N NF NFS NFS4 BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 6 . 1 3 0 0 0 0 1 +If there if I If If If BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 7 no 0 8 0 0 0 0 1 +outstanding CB_COMPOUND outstanding o ou out outs BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 7 no 0 9 0 0 0 0 1 +been replied been b be bee been BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 7 , 1 9 0 0 0 0 1 +and return and a an and and BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 7 ., 2 9 0 0 0 0 1 +down, the down, d do dow down BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 7 , 1 9 0 0 0 0 1 +client that client c cl cli clie BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 7 no 0 9 0 0 0 0 1 +will allow will w wi wil will BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 10 7 ., 2 8 0 0 0 0 1 +CB_BACK_CHAN_BUSY SHOULD cb_back_chan_busy C CB CB_ CB_B BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 7 no 0 9 0 0 0 0 1 +CB_COMPOUNDs that cb_compounds C CB CB_ CB_C BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 10 7 . 1 10 0 0 0 0 1 +all outstanding all a al all all BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 7 -. 2 9 0 0 0 0 1 +18.38. Operation 18.38. 1 18 18. 18.3 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 11 ..:- 4 10 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 10 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 11 , 1 10 0 0 0 0 0 +[Page 550] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 10 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 10 0 no 0 4 0 0 0 0 1 +18.38.1. ARGUMENT 18.38.1. 1 18 18. 18.3 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 0 ... 3 10 0 0 0 0 1 +struct FREE_STATEID4args struct s st str stru BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 0 no 0 10 0 0 0 0 1 +stateid4 stateid4 stateid4 s st sta stat BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 0 no 0 3 0 0 0 0 1 +fsa_stateid; fsa_stateid; fsa_stateid; f fs fsa fsa_ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 0 ; 1 4 0 0 0 0 1 +}; }; }; } }; }; }; BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 0 ; 1 1 0 0 0 0 1 +18.38.2. RESULT 18.38.2. 1 18 18. 18.3 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 1 ... 3 10 0 0 0 0 1 +struct FREE_STATEID4res struct s st str stru BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 1 no 0 10 0 0 0 0 1 +nfsstat4 nfsstat4 nfsstat4 n nf nfs nfss BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 1 no 0 3 0 0 0 0 1 +fsr_status; fsr_status; fsr_status; f fs fsr fsr_ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 1 ; 1 4 0 0 0 0 1 +}; }; }; } }; }; }; BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 1 ; 1 1 0 0 0 0 1 +18.38.3. DESCRIPTION 18.38.3. 1 18 18. 18.3 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 2 ... 3 10 0 0 0 0 1 +The FREE_STATEID the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 2 no 0 9 0 0 0 0 1 +has any has h ha has has BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 2 (,-, 4 8 0 0 0 0 1 +delegations, and delegations, d de del dele BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 2 ,). 3 9 0 0 0 0 1 +operations or operations o op ope oper BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 10 2 . 1 10 0 0 0 0 1 +(of any (of ( (o (of (of BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 2 (), 3 9 0 0 0 0 1 +NFS4ERR_LOCKS_HELD will nfs4err_locks_held N NF NFS NFS4 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 2 , 1 10 0 0 0 0 1 +not be not n no not not BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 2 . 1 2 0 0 0 0 1 +When a when W Wh Whe When BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 6 , 1 10 0 0 0 0 1 +by sending by b by by by BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 6 , 1 9 0 0 0 0 1 +loss of loss l lo los loss BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 6 ., 2 9 0 0 0 0 1 +state is state s st sta stat BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 6 ,, 2 9 0 0 0 0 1 +without encountering without w wi wit with BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 6 ... 3 10 0 0 0 0 1 +Once a once O On Onc Once BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 9 , 1 9 0 0 0 0 1 +subsequent use subsequent s su sub subs BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 9 no 0 10 0 0 0 0 1 +error. error. error. e er err erro BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 9 . 1 1 0 0 0 0 1 +18.39. Operation 18.39. 1 18 18. 18.3 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 10 ..:- 4 10 0 0 0 0 1 +18.39.1. ARGUMENT 18.39.1. 1 18 18. 18.3 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 11 ... 3 10 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 10 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 11 , 1 10 0 0 0 0 0 +[Page 551] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 10 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 10 0 no 0 4 0 0 0 0 1 +typedef nfstime4 typedef t ty typ type BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 0 ; 1 10 0 0 0 0 1 +struct GET_DIR_DELEGATION4args struct s st str stru BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 1 no 0 8 0 0 0 0 1 +/* CURRENT_FH: /* / /* /* /* BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 1 /*:*/ 5 10 0 0 0 0 1 +bool bool bool b bo boo bool BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 1 no 0 1 0 0 0 0 1 +gdda_signal_deleg_avail; gdda_signal_deleg_avail; gdda_signal_deleg_avail; g gd gdd gdda BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 1 ; 1 6 0 0 0 0 1 +bitmap4 bitmap4 bitmap4 b bi bit bitm BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 1 no 0 2 0 0 0 0 1 +gdda_notification_types; gdda_notification_types; gdda_notification_types; g gd gdd gdda BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 1 ; 1 6 0 0 0 0 1 +attr_notice4 attr_notice4 attr_notice4 a at att attr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 1 no 0 3 0 0 0 0 1 +gdda_child_attr_delay; gdda_child_attr_delay; gdda_child_attr_delay; g gd gdd gdda BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 1 ; 1 6 0 0 0 0 1 +attr_notice4 attr_notice4 attr_notice4 a at att attr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 1 no 0 3 0 0 0 0 1 +gdda_dir_attr_delay; gdda_dir_attr_delay; gdda_dir_attr_delay; g gd gdd gdda BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 1 ; 1 5 0 0 0 0 1 +bitmap4 bitmap4 bitmap4 b bi bit bitm BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 1 no 0 2 0 0 0 0 1 +gdda_child_attributes; gdda_child_attributes; gdda_child_attributes; g gd gdd gdda BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 1 ; 1 6 0 0 0 0 1 +bitmap4 bitmap4 bitmap4 b bi bit bitm BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 1 no 0 2 0 0 0 0 1 +gdda_dir_attributes; gdda_dir_attributes; gdda_dir_attributes; g gd gdd gdda BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 1 ; 1 5 0 0 0 0 1 +}; }; }; } }; }; }; BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 1 ; 1 0 0 0 0 0 1 +18.39.2. RESULT 18.39.2. 1 18 18. 18.3 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 3 ... 3 10 0 0 0 0 1 +struct GET_DIR_DELEGATION4resok struct s st str stru BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 4 no 0 6 0 0 0 0 1 +verifier4 verifier4 verifier4 v ve ver veri BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 4 no 0 2 0 0 0 0 1 +gddr_cookieverf; gddr_cookieverf; gddr_cookieverf; g gd gdd gddr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 4 ; 1 3 0 0 0 0 1 +/* Stateid /* / /* /* /* BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 4 /**/ 4 7 0 0 0 0 1 +stateid4 stateid4 stateid4 s st sta stat BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 4 no 0 1 0 0 0 0 1 +gddr_stateid; gddr_stateid; gddr_stateid; g gd gdd gddr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 4 ; 1 2 0 0 0 0 1 +/* Which /* / /* /* /* BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 4 /**/ 4 10 0 0 0 0 1 +bitmap4 bitmap4 bitmap4 b bi bit bitm BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 4 no 0 1 0 0 0 0 1 +gddr_notification; gddr_notification; gddr_notification; g gd gdd gddr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 4 ; 1 3 0 0 0 0 1 +bitmap4 bitmap4 bitmap4 b bi bit bitm BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 4 no 0 1 0 0 0 0 1 +gddr_child_attributes; gddr_child_attributes; gddr_child_attributes; g gd gdd gddr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 4 ; 1 4 0 0 0 0 1 +bitmap4 bitmap4 bitmap4 b bi bit bitm BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 4 no 0 1 0 0 0 0 1 +gddr_dir_attributes; gddr_dir_attributes; gddr_dir_attributes; g gd gdd gddr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 4 ; 1 4 0 0 0 0 1 +}; }; }; } }; }; }; BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 4 ; 1 0 0 0 0 0 1 +enum gddrnf4_status enum e en enu enum BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 6 no 0 10 0 0 0 0 1 +GDD4_OK GDD4_OK gdd4_ok G GD GDD GDD4 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 6 no 0 3 0 0 0 0 1 += 0, = = = = = BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 6 , 1 2 0 0 0 0 1 +GDD4_UNAVAIL GDD4_UNAVAIL gdd4_unavail G GD GDD GDD4 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 6 no 0 5 0 0 0 0 1 += 1 = = = = = BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 6 no 0 1 0 0 0 0 1 +}; }; }; } }; }; }; BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 6 ; 1 1 0 0 0 0 1 +union GET_DIR_DELEGATION4res_non_fatal union u un uni unio BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 7 no 0 9 0 0 0 0 1 +switch (gddrnf4_status switch s sw swi swit BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 7 () 2 10 0 0 0 0 1 +case GDD4_OK: case c ca cas case BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 10 7 : 1 3 0 0 0 0 1 +GET_DIR_DELEGATION4resok GET_DIR_DELEGATION4resok get_dir_delegation4resok G GE GET GET_ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 7 no 0 6 0 0 0 0 1 +gddrnf_resok4; gddrnf_resok4; gddrnf_resok4; g gd gdd gddr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 7 ; 1 3 0 0 0 0 1 +case GDD4_UNAVAIL: case c ca cas case BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 10 7 : 1 4 0 0 0 0 1 +bool bool bool b bo boo bool BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 7 no 0 1 0 0 0 0 1 +gddrnf_will_signal_deleg_avail; gddrnf_will_signal_deleg_avail; gddrnf_will_signal_deleg_avail; g gd gdd gddr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 7 ; 1 8 0 0 0 0 1 +}; }; }; } }; }; }; BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 7 ; 1 0 0 0 0 0 1 +union GET_DIR_DELEGATION4res union u un uni unio BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 9 no 0 8 0 0 0 0 1 +switch (nfsstat4 switch s sw swi swit BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 9 () 2 9 0 0 0 0 1 +case NFS4_OK: case c ca cas case BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 10 9 : 1 4 0 0 0 0 1 +GET_DIR_DELEGATION4res_non_fatal GET_DIR_DELEGATION4res_non_fatal get_dir_delegation4res_non_fatal G GE GET GET_ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 9 no 0 10 0 0 0 0 1 +gddr_res_non_fatal4; gddr_res_non_fatal4; gddr_res_non_fatal4; g gd gdd gddr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 9 ; 1 6 0 0 0 0 1 +default: default: default: d de def defa BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 9 : 1 2 0 0 0 0 1 +void; void; void; v vo voi void BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 9 ; 1 1 0 0 0 0 1 +}; }; }; } }; }; }; BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 9 ; 1 0 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 10 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 11 , 1 10 0 0 0 0 0 +[Page 552] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 10 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 10 0 no 0 4 0 0 0 0 1 +18.39.3. DESCRIPTION 18.39.3. 1 18 18. 18.3 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 0 ... 3 10 0 0 0 0 1 +The GET_DIR_DELEGATION the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 0 no 0 9 0 0 0 0 1 +directory delegation. directory d di dir dire BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 0 . 1 9 0 0 0 0 1 +filehandle. The filehandle. f fi fil file BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 0 . 1 10 0 0 0 0 1 +notify it notify n no not noti BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 0 no 0 9 0 0 0 0 1 +or more or o or or or BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 0 . 1 8 0 0 0 0 1 +delegation. In delegation. d de del dele BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 0 ., 2 7 0 0 0 0 1 +NFS4ERR_DIRDELEG_UNAVAIL. If nfs4err_dirdeleg_unavail. N NF NFS NFS4 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 0 . 1 9 0 0 0 0 1 +delegation, it delegation, d de del dele BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 0 ,. 2 9 0 0 0 0 1 +the cookie the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 0 no 0 8 0 0 0 0 1 +delegation, the delegation, d de del dele BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 0 , 1 9 0 0 0 0 1 +asked for asked a as ask aske BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 0 . 1 5 0 0 0 0 1 +The server the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 3 , 1 8 0 0 0 0 1 +gddr_stateid, as gddr_stateid, g gd gdd gddr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 3 ,. 2 10 0 0 0 0 1 +stateid will stateid s st sta stat BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 3 , 1 10 0 0 0 0 1 +such as such s su suc such BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 3 . 1 9 0 0 0 0 1 +this stateid this t th thi this BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 3 . 1 10 0 0 0 0 1 +delegation is delegation d de del dele BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 3 . 1 8 0 0 0 0 1 +The server the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 5 no 0 9 0 0 0 0 1 +events. If events. e ev eve even BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 5 ., 2 9 0 0 0 0 1 +inform the inform i in inf info BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 5 no 0 8 0 0 0 0 1 +GET_DIR_DELEGATION reply get_dir_delegation G GE GET GET_ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 5 no 0 9 0 0 0 0 1 +supported notifications supported s su sup supp BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 5 ,, 2 10 0 0 0 0 1 +reply. The reply. r re rep repl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 5 . 1 9 0 0 0 0 1 +client did client c cl cli clie BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 5 . 1 3 0 0 0 0 1 +The GET_DIR_DELEGATION the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 7 no 0 10 0 0 0 0 1 +named attribute named n na nam name BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 7 . 1 4 0 0 0 0 1 +If client if I If If If BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 7 , 1 8 0 0 0 0 1 +registering with registering r re reg regi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 7 "". 3 10 0 0 0 0 1 +the delegation the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 7 , 1 9 0 0 0 0 1 +honor the honor h ho hon hono BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 10 7 "", 3 5 0 0 0 0 1 +gddrnf_will_signal_deleg_avail set gddrnf_will_signal_deleg_avail g gd gdd gddr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 7 no 0 9 0 0 0 0 1 +indicated on indicated i in ind indi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 7 ., 2 9 0 0 0 0 1 +CB_RECALLABLE_OBJ_AVAIL operation cb_recallable_obj_avail C CB CB_ CB_R BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 7 no 0 9 0 0 0 0 1 +delegation is delegation d de del dele BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 7 . 1 9 0 0 0 0 1 +"want" or "want" " "w "wa "wan BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 7 "", 3 7 0 0 0 0 1 +NFS4ERR_DIRDELEG_UNAVAIL. If nfs4err_dirdeleg_unavail. N NF NFS NFS4 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 7 . 1 8 0 0 0 0 1 +available, the available, a av ava avai BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 7 , 1 9 0 0 0 0 1 +operation, rather operation, o op ope oper BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 7 ,. 2 5 0 0 0 0 1 +When a when W Wh Whe When BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 10 no 0 9 0 0 0 0 1 +already holds already a al alr alre BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 10 ( 1 10 0 0 0 0 1 +the case the t th the the BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 10 no 0 9 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 10 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 11 , 1 10 0 0 0 0 0 +[Page 553] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 10 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 10 0 no 0 4 0 0 0 0 1 +client or client c cl cli clie BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 0 ), 2 9 0 0 0 0 1 +value of value v va val valu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 0 , 1 9 0 0 0 0 1 +to GDD4_UNAVAIL, to t to to to BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 0 , 1 10 0 0 0 0 1 +to FALSE. to t to to to BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 0 . 1 9 0 0 0 0 1 +intact, and intact, i in int inta BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 0 ,. 2 9 0 0 0 0 1 +changed (see changed c ch cha chan BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 0 (.... 5 9 0 0 0 0 1 +stateid). stateid). stateid). s st sta stat BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 0 ). 2 1 0 0 0 0 1 +18.39.4. IMPLEMENTATION 18.39.4. 1 18 18. 18.3 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 2 ... 3 10 0 0 0 0 1 +Directory delegations directory D Di Dir Dire BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 2 no 0 8 0 0 0 0 1 +consistency of consistency c co con cons BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 2 . 1 8 0 0 0 0 1 +synchronous callbacks. synchronous s sy syn sync BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 2 . 1 9 0 0 0 0 1 +in order in i in in in BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 10 2 ., 2 9 0 0 0 0 1 +asynchronous notifications asynchronous a as asy asyn BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 2 no 0 10 0 0 0 0 1 +well as well w we wel well BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 2 . 1 8 0 0 0 0 1 +Notifications are notifications N No Not Noti BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 3 no 0 9 0 0 0 0 1 +directory. A directory. d di dir dire BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 3 . 1 9 0 0 0 0 1 +or more or o or or or BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 3 . 1 9 0 0 0 0 1 +notifications on notifications n no not noti BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 3 ( 1 9 0 0 0 0 1 +NOTIFY4_ADD_ENTRY in notify4_add_entry N NO NOT NOTI BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 3 ), 2 10 0 0 0 0 1 +removal (NOTIFY4_REMOVE_ENTRY), removal r re rem remo BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 3 (),(), 6 9 0 0 0 0 1 +directory attribute directory d di dir dire BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 3 (), 3 9 0 0 0 0 1 +cookie verifier cookie c co coo cook BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 10 3 () 2 9 0 0 0 0 1 +one or one o on one one BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 3 . 1 9 0 0 0 0 1 +The client the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 6 no 0 10 0 0 0 0 1 +directory entries directory d di dir dire BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 6 () 2 9 0 0 0 0 1 +its attribute its i it its its BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 6 ., 2 9 0 0 0 0 1 +attributes do attributes a at att attr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 6 . 1 9 0 0 0 0 1 +is interested is i is is is BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 6 , 1 10 0 0 0 0 1 +can set can c ca can can BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 6 no 0 9 0 0 0 0 1 +need and need n ne nee need BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 6 no 0 8 0 0 0 0 1 +otherwise invalidate otherwise o ot oth othe BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 6 . 1 9 0 0 0 0 1 +client asks client c cl cli clie BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 6 ,, 2 10 0 0 0 0 1 +and the and a an and and BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 6 . 1 8 0 0 0 0 1 +enumeration of enumeration e en enu enum BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 6 no 0 9 0 0 0 0 1 +notification is notification n no not noti BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 6 . 1 8 0 0 0 0 1 +For attribute for F Fo For For BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 9 , 1 8 0 0 0 0 1 +gdda_dir_attributes bitmap gdda_dir_attributes g gd gdd gdda BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 9 no 0 10 0 0 0 0 1 +be notified be b be be be BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 9 . 1 9 0 0 0 0 1 +changes to changes c ch cha chan BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 10 9 , 1 10 0 0 0 0 1 +the supported the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 9 no 0 7 0 0 0 0 1 +(gddr_dir_attributes). The (gddr_dir_attributes). ( (g (gd (gdd BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 9 (). 3 8 0 0 0 0 1 +gdda_child_attributes bitmap gdda_child_attributes g gd gdd gdda BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 9 no 0 10 0 0 0 0 1 +wants to wants w wa wan want BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 9 , 1 8 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 10 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 11 , 1 10 0 0 0 0 0 +[Page 554] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 10 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 10 0 no 0 4 0 0 0 0 1 +gddr_child_attributes which gddr_child_attributes g gd gdd gddr BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 0 no 0 10 0 0 0 0 1 +notify the notify n no not noti BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 0 . 1 3 0 0 0 0 1 +The client the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 0 no 0 9 0 0 0 0 1 +notification as notification n no not noti BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 0 no 0 9 0 0 0 0 1 +certain delay certain c ce cer cert BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 0 ; 1 10 0 0 0 0 1 +attribute changes attribute a at att attr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 0 no 0 10 0 0 0 0 1 +attribute changes attribute a at att attr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 0 . 1 9 0 0 0 0 1 +zero, that zero, z ze zer zero BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 0 , 1 9 0 0 0 0 1 +notified of notified n no not noti BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 0 . 1 9 0 0 0 0 1 +delay factor delay d de del dela BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 0 ,- 2 9 0 0 0 0 1 +guarantee that guarantee g gu gua guar BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 0 . 1 9 0 0 0 0 1 +If the if I If If If BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 0 no 0 9 0 0 0 0 1 +support or support s su sup supp BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 10 0 no 0 9 0 0 0 0 1 +server by server s se ser serv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 0 , 1 9 0 0 0 0 1 +server should server s se ser serv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 0 no 0 9 0 0 0 0 1 +and therefore and a an and and BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 0 no 0 7 0 0 0 0 1 +gddr_child_attributes and gddr_child_attributes g gd gdd gddr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 0 no 0 8 0 0 0 0 1 +response. response. response. r re res resp BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 0 . 1 1 0 0 0 0 1 +The client the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 6 (..) 4 8 0 0 0 0 1 +directory or directory d di dir dire BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 6 (.). 4 9 0 0 0 0 1 +If not, if I If If If BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 6 , 1 10 0 0 0 0 1 +both precedes both b bo bot both BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 6 ( 1 10 0 0 0 0 1 +Section 2.6.3.1). section S Se Sec Sect BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 6 ...). 5 2 0 0 0 0 1 +The directory the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 8 no 0 9 0 0 0 0 1 +except the except e ex exc exce BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 8 . 1 9 0 0 0 0 1 +both hold both b bo bot both BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 8 , 1 9 0 0 0 0 1 +cause a cause c ca cau caus BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 8 ' 1 10 0 0 0 0 1 +parent entry parent p pa par pare BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 10 8 . 1 6 0 0 0 0 1 +18.40. Operation 18.40. 1 18 18. 18.4 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 10 ..:- 4 10 0 0 0 0 1 +18.40.1. ARGUMENT 18.40.1. 1 18 18. 18.4 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 10 ... 3 10 0 0 0 0 1 +struct GETDEVICEINFO4args struct s st str stru BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 10 no 0 10 0 0 0 0 1 +deviceid4 deviceid4 deviceid4 d de dev devi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 10 no 0 3 0 0 0 0 1 +gdia_device_id; gdia_device_id; gdia_device_id; g gd gdi gdia BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 10 ; 1 5 0 0 0 0 1 +layouttype4 layouttype4 layouttype4 l la lay layo BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 10 no 0 4 0 0 0 0 1 +gdia_layout_type; gdia_layout_type; gdia_layout_type; g gd gdi gdia BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 10 ; 1 6 0 0 0 0 1 +count4 count4 count4 c co cou coun BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 10 no 0 2 0 0 0 0 1 +gdia_maxcount; gdia_maxcount; gdia_maxcount; g gd gdi gdia BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 10 ; 1 5 0 0 0 0 1 +bitmap4 bitmap4 bitmap4 b bi bit bitm BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 10 no 0 2 0 0 0 0 1 +gdia_notify_types; gdia_notify_types; gdia_notify_types; g gd gdi gdia BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 10 ; 1 6 0 0 0 0 1 +}; }; }; } }; }; }; BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 10 ; 1 1 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 10 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 11 , 1 10 0 0 0 0 0 +[Page 555] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 10 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 10 0 no 0 4 0 0 0 0 1 +18.40.2. RESULT 18.40.2. 1 18 18. 18.4 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 0 ... 3 10 0 0 0 0 1 +struct GETDEVICEINFO4resok struct s st str stru BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 0 no 0 10 0 0 0 0 1 +device_addr4 device_addr4 device_addr4 d de dev devi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 0 no 0 4 0 0 0 0 1 +gdir_device_addr; gdir_device_addr; gdir_device_addr; g gd gdi gdir BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 0 ; 1 6 0 0 0 0 1 +bitmap4 bitmap4 bitmap4 b bi bit bitm BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 0 no 0 2 0 0 0 0 1 +gdir_notification; gdir_notification; gdir_notification; g gd gdi gdir BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 0 ; 1 6 0 0 0 0 1 +}; }; }; } }; }; }; BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 0 ; 1 1 0 0 0 0 1 +union GETDEVICEINFO4res union u un uni unio BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 1 () 2 10 0 0 0 0 1 +case NFS4_OK: case c ca cas case BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 10 1 : 1 2 0 0 0 0 1 +GETDEVICEINFO4resok GETDEVICEINFO4resok getdeviceinfo4resok G GE GET GETD BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 1 no 0 3 0 0 0 0 1 +gdir_resok4; gdir_resok4; gdir_resok4; g gd gdi gdir BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 1 ; 1 2 0 0 0 0 1 +case NFS4ERR_TOOSMALL: case c ca cas case BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 10 1 : 1 4 0 0 0 0 1 +count4 count4 count4 c co cou coun BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 1 no 0 1 0 0 0 0 1 +gdir_mincount; gdir_mincount; gdir_mincount; g gd gdi gdir BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 1 ; 1 2 0 0 0 0 1 +default: default: default: d de def defa BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 1 : 1 1 0 0 0 0 1 +void; void; void; v vo voi void BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 1 ; 1 1 0 0 0 0 1 +}; }; }; } }; }; }; BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 1 ; 1 0 0 0 0 0 1 +18.40.3. DESCRIPTION 18.40.3. 1 18 18. 18.4 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 1 ... 3 10 0 0 0 0 1 +The GETDEVICEINFO the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 2 no 0 9 0 0 0 0 1 +information for information i in inf info BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 2 . 1 9 0 0 0 0 1 +device information device d de dev devi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 2 no 0 10 0 0 0 0 1 +gdia_layout_type that gdia_layout_type g gd gdi gdia BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 2 . 1 9 0 0 0 0 1 +provides gdia_maxcount provides p pr pro prov BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 2 . 1 9 0 0 0 0 1 +This maximum this T Th Thi This BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 2 no 0 9 0 0 0 0 1 +the GETDEVICEINFO4resok the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 2 . 1 9 0 0 0 0 1 +server may server s se ser serv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 2 . 1 9 0 0 0 0 1 +information within information i in inf info BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 2 , 1 7 0 0 0 0 1 +NFS4ERR_TOOSMALL will nfs4err_toosmall N NF NFS NFS4 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 2 ., 2 9 0 0 0 0 1 +zero, NFS4ERR_TOOSMALL zero, z ze zer zero BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 2 ,. 2 6 0 0 0 0 1 +The da_layout_type the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 6 no 0 9 0 0 0 0 1 +server MUST server s se ser serv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 6 . 1 10 0 0 0 0 1 +If it if I If If If BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 6 , 1 9 0 0 0 0 1 +and behave and a an and and BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 6 , 1 9 0 0 0 0 1 +does have does d do doe does BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 6 . 1 6 0 0 0 0 1 +The client the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 8 ,, 2 9 0 0 0 0 1 +for the for f fo for for BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 8 no 0 10 0 0 0 0 1 +receiving; the receiving; r re rec rece BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 8 ; 1 9 0 0 0 0 1 +notification request notification n no not noti BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 8 . 1 8 0 0 0 0 1 +composed in composed c co com comp BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 8 no 0 8 0 0 0 0 1 +(Section 3.3.7). (section ( (S (Se (Sec BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 8 (..). 5 9 0 0 0 0 1 +notify_device_type4 enumeration notify_device_type4 n no not noti BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 8 (.). 4 9 0 0 0 0 1 +enumerated values enumerated e en enu enum BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 8 no 0 8 0 0 0 0 1 +GETDEVICEINFO: NOTIFY_DEVICEID4_CHANGE getdeviceinfo: G GE GET GETD BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 8 : 1 9 0 0 0 0 1 +(see Section (see ( (s (se (see BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 8 (.). 4 3 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 10 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 11 , 1 10 0 0 0 0 0 +[Page 556] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 10 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 10 0 no 0 4 0 0 0 0 1 +The notification the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 0 . 1 10 0 0 0 0 1 +a client a a a a a BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 1 0 0 0 0 0 10 0 no 0 9 0 0 0 0 1 +times, the times, t ti tim time BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 0 , 1 9 0 0 0 0 1 +subsequent notifications. subsequent s su sub subs BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 0 ., 2 9 0 0 0 0 1 +device ID's device d de dev devi BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 0 '. 2 6 0 0 0 0 1 +If the if I If If If BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 1 , 1 9 0 0 0 0 1 +send a send s se sen send BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 1 . 1 9 0 0 0 0 1 +that event, that t th tha that BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 1 ,,' 3 10 0 0 0 0 1 +of the of o of of of BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 1 . 1 7 0 0 0 0 1 +If an if I If If If BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 3 , 1 9 0 0 0 0 1 +returns NFS4ERR_NOENT. returns r re ret retu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 3 ., 2 9 0 0 0 0 1 +returned in returned r re ret retu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 3 ., 2 8 0 0 0 0 1 +notifications for notifications n no not noti BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 3 , 1 9 0 0 0 0 1 +will contain will w wi wil will BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 10 3 no 0 10 0 0 0 0 1 +the client the t th the the BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 3 (,.). 5 8 0 0 0 0 1 +If NFS4ERR_TOOSMALL if I If If If BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 4 , 1 8 0 0 0 0 1 +gdir_mincount. The gdir_mincount. g gd gdi gdir BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 4 . 1 10 0 0 0 0 1 +size necessary size s si siz size BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 4 . 1 7 0 0 0 0 1 +18.40.4. IMPLEMENTATION 18.40.4. 1 18 18. 18.4 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 5 ... 3 10 0 0 0 0 1 +Aside from aside A As Asi Asid BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 5 , 1 10 0 0 0 0 1 +for gdia_maxcount for f fo for for BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 5 . 1 9 0 0 0 0 1 +The client the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 6 no 0 10 0 0 0 0 1 +device ID device d de dev devi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 6 no 0 9 0 0 0 0 1 +client gracefully client c cl cli clie BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 6 ,/ 2 9 0 0 0 0 1 +abruptly, or abruptly, a ab abr abru BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 6 , 1 9 0 0 0 0 1 +revoked. revoked. revoked. r re rev revo BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 6 . 1 1 0 0 0 0 1 +It is it I It It It BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 7 () 2 10 0 0 0 0 1 +CB_NOTIFY_DEVICEID, i.e., cb_notify_deviceid, C CB CB_ CB_N BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 7 ,.., 4 9 0 0 0 0 1 +client gets client c cl cli clie BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 7 no 0 8 0 0 0 0 1 +GETDEVICELIST. The getdevicelist. G GE GET GETD BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 7 . 1 9 0 0 0 0 1 +server MUST server s se ser serv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 7 no 0 9 0 0 0 0 1 +the client the t th the the BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 7 . 1 2 0 0 0 0 1 +o CB_NOTIFY_DEVICEID o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 10 9 . 1 10 0 0 0 0 1 +has layouts has h ha has has BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 9 , 1 9 0 0 0 0 1 +layouts referring layouts l la lay layo BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 9 . 1 9 0 0 0 0 1 +client should client c cl cli clie BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 9 no 0 9 0 0 0 0 1 +each layout each e ea eac each BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 9 . 1 8 0 0 0 0 1 +indicates that indicates i in ind indi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 9 , 1 9 0 0 0 0 1 +recover from recover r re rec reco BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 9 ... 3 9 0 0 0 0 1 +TEST_STATEID indicates test_stateid T TE TES TEST BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 9 no 0 8 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 10 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 11 , 1 10 0 0 0 0 0 +[Page 557] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 10 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 10 0 no 0 4 0 0 0 0 1 +revoked, the revoked, r re rev revo BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 0 , 1 9 0 0 0 0 1 +supposedly deleted supposedly s su sup supp BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 0 no 0 10 0 0 0 0 1 +deleted. deleted. deleted. d de del dele BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 0 . 1 1 0 0 0 0 1 +If GETDEVICEINFO if I If If If BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 1 , 1 10 0 0 0 0 1 +the client the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 1 no 0 10 0 0 0 0 1 +EXCHANGE_ID operation. exchange_id E EX EXC EXCH BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 1 . 1 9 0 0 0 0 1 +ID does id I ID ID ID BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 1 0 0 0 0 0 0 10 1 , 1 9 0 0 0 0 1 +erroneous device erroneous e er err erro BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 1 , 1 9 0 0 0 0 1 +is faulty is i is is is BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 1 . 1 9 0 0 0 0 1 +If the if I If If If BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 4 , 1 9 0 0 0 0 1 +no harm no n no no no BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 4 ., 2 10 0 0 0 0 1 +and when and a an and and BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 4 no 0 10 0 0 0 0 1 +indicate that indicate i in ind indi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 4 , 1 9 0 0 0 0 1 +ID should id I ID ID ID BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 1 0 0 0 0 0 0 10 4 '. 2 6 0 0 0 0 1 +o CB_NOTIFY_DEVICEID o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 10 6 ' 1 10 0 0 0 0 1 +mappings have mappings m ma map mapp BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 6 . 1 9 0 0 0 0 1 +from the from f fr fro from BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 6 - 1 9 0 0 0 0 1 +once received, once o on onc once BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 6 , 1 9 0 0 0 0 1 +device ID. device d de dev devi BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 6 . 1 1 0 0 0 0 1 +18.41. Operation 18.41. 1 18 18. 18.4 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 8 ..:- 4 10 0 0 0 0 1 +System System system S Sy Sys Syst BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 8 no 0 0 0 0 0 0 1 +18.41.1. ARGUMENT 18.41.1. 1 18 18. 18.4 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 9 ... 3 10 0 0 0 0 1 +struct GETDEVICELIST4args struct s st str stru BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 9 no 0 5 0 0 0 0 1 +/* CURRENT_FH: /* / /* /* /* BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 9 /*:*/ 5 10 0 0 0 0 1 +layouttype4 layouttype4 layouttype4 l la lay layo BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 9 no 0 2 0 0 0 0 1 +gdla_layout_type; gdla_layout_type; gdla_layout_type; g gd gdl gdla BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 9 ; 1 3 0 0 0 0 1 +/* number /* / /* /* /* BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 10 /**/ 4 10 0 0 0 0 1 +count4 count4 count4 c co cou coun BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 10 no 0 1 0 0 0 0 1 +gdla_maxdevices; gdla_maxdevices; gdla_maxdevices; g gd gdl gdla BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 10 ; 1 4 0 0 0 0 1 +nfs_cookie4 nfs_cookie4 nfs_cookie4 n nf nfs nfs_ BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 10 no 0 7 0 0 0 0 1 +gdla_cookie; gdla_cookie; gdla_cookie; g gd gdl gdla BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 10 ; 1 7 0 0 0 0 1 +verifier4 verifier4 verifier4 v ve ver veri BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 10 no 0 5 0 0 0 0 1 +gdla_cookieverf; gdla_cookieverf; gdla_cookieverf; g gd gdl gdla BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 10 ; 1 10 0 0 0 0 1 +}; }; }; } }; }; }; BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 10 ; 1 1 0 0 0 0 1 +18.41.2. RESULT 18.41.2. 1 18 18. 18.4 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 11 ... 3 10 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 10 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 11 , 1 10 0 0 0 0 0 +[Page 558] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 10 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 10 0 no 0 4 0 0 0 0 1 +struct GETDEVICELIST4resok struct s st str stru BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 0 no 0 10 0 0 0 0 1 +nfs_cookie4 nfs_cookie4 nfs_cookie4 n nf nfs nfs_ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 0 no 0 4 0 0 0 0 1 +gdlr_cookie; gdlr_cookie; gdlr_cookie; g gd gdl gdlr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 0 ; 1 4 0 0 0 0 1 +verifier4 verifier4 verifier4 v ve ver veri BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 0 no 0 3 0 0 0 0 1 +gdlr_cookieverf; gdlr_cookieverf; gdlr_cookieverf; g gd gdl gdlr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 0 ; 1 5 0 0 0 0 1 +deviceid4 deviceid4 deviceid4 d de dev devi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 0 no 0 3 0 0 0 0 1 +gdlr_deviceid_list<>; gdlr_deviceid_list<>; gdlr_deviceid_list<>; g gd gdl gdlr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 0 ; 1 7 0 0 0 0 1 +bool bool bool b bo boo bool BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 0 no 0 1 0 0 0 0 1 +gdlr_eof; gdlr_eof; gdlr_eof; g gd gdl gdlr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 0 ; 1 3 0 0 0 0 1 +}; }; }; } }; }; }; BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 0 ; 1 1 0 0 0 0 1 +union GETDEVICELIST4res union u un uni unio BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 1 () 2 10 0 0 0 0 1 +case NFS4_OK: case c ca cas case BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 10 1 : 1 2 0 0 0 0 1 +GETDEVICELIST4resok GETDEVICELIST4resok getdevicelist4resok G GE GET GETD BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 1 no 0 3 0 0 0 0 1 +gdlr_resok4; gdlr_resok4; gdlr_resok4; g gd gdl gdlr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 1 ; 1 2 0 0 0 0 1 +default: default: default: d de def defa BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 1 : 1 1 0 0 0 0 1 +void; void; void; v vo voi void BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 1 ; 1 1 0 0 0 0 1 +}; }; }; } }; }; }; BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 1 ; 1 0 0 0 0 0 1 +18.41.3. DESCRIPTION 18.41.3. 1 18 18. 18.4 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 1 ... 3 10 0 0 0 0 1 +This operation this T Th Thi This BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 1 no 0 10 0 0 0 0 1 +IDs that ids I ID IDs IDs BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 10 1 '. 2 5 0 0 0 0 1 +The client the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 2 no 0 9 0 0 0 0 1 +belongs to belongs b be bel belo BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 2 (.., 4 9 0 0 0 0 1 +fsid as fsid f fs fsi fsid BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 2 ) 1 9 0 0 0 0 1 +gdia_layout_type. Since gdia_layout_type. g gd gdi gdia BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 2 . 1 9 0 0 0 0 1 +to enumerate to t to to to BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 2 ( 1 9 0 0 0 0 1 +(Section 18.23) (section ( (S (Se (Sec BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 2 (.)), 5 9 0 0 0 0 1 +gdia_cookieverf to gdia_cookieverf g gd gdi gdia BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 2 . 1 9 0 0 0 0 1 +When the when W Wh Whe When BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 2 ' 1 10 0 0 0 0 1 +device mappings, device d de dev devi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 2 ,. 2 8 0 0 0 0 1 +gdla_cookieverf MUST gdla_cookieverf g gd gdl gdla BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 2 no 0 9 0 0 0 0 1 +zero. The zero. z ze zer zero BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 2 . 1 9 0 0 0 0 1 +device IDs device d de dev devi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 2 ., 2 9 0 0 0 0 1 +MUST return must M MU MUS MUST BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 10 2 .. 2 9 0 0 0 0 1 +The successful the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 8 , 1 9 0 0 0 0 1 +gdlr_cookie, and gdlr_cookie, g gd gdl gdlr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 8 ,,, 3 10 0 0 0 0 1 +the subsequent the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 8 . 1 9 0 0 0 0 1 +that there that t th tha that BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 8 '. 2 9 0 0 0 0 1 +Each element each E Ea Eac Each BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 8 . 1 8 0 0 0 0 1 +18.41.4. IMPLEMENTATION 18.41.4. 1 18 18. 18.4 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 10 ... 3 10 0 0 0 0 1 +An example an A An An An BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 10 10 no 0 9 0 0 0 0 1 +servers that servers s se ser serv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 10 . 1 9 0 0 0 0 1 +it may it i it it it BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 10 no 0 10 0 0 0 0 1 +first file first f fi fir firs BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 10 . 1 3 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 10 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 11 , 1 10 0 0 0 0 0 +[Page 559] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 10 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 10 0 no 0 4 0 0 0 0 1 +18.42. Operation 18.42. 1 18 18. 18.4 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 1 ..:- 4 10 0 0 0 0 1 +18.42.1. ARGUMENT 18.42.1. 1 18 18. 18.4 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 2 ... 3 10 0 0 0 0 1 +union newtime4 union u un uni unio BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 2 () 2 10 0 0 0 0 1 +case TRUE: case c ca cas case BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 10 2 : 1 2 0 0 0 0 1 +nfstime4 nfstime4 nfstime4 n nf nfs nfst BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 2 no 0 1 0 0 0 0 1 +nt_time; nt_time; nt_time; n nt nt_ nt_t BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 2 ; 1 1 0 0 0 0 1 +case FALSE: case c ca cas case BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 10 2 : 1 2 0 0 0 0 1 +void; void; void; v vo voi void BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 2 ; 1 1 0 0 0 0 1 +}; }; }; } }; }; }; BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 2 ; 1 0 0 0 0 0 1 +union newoffset4 union u un uni unio BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 4 () 2 10 0 0 0 0 1 +case TRUE: case c ca cas case BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 10 4 : 1 2 0 0 0 0 1 +offset4 offset4 offset4 o of off offs BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 4 no 0 1 0 0 0 0 1 +no_offset; no_offset; no_offset; n no no_ no_o BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 4 ; 1 2 0 0 0 0 1 +case FALSE: case c ca cas case BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 10 4 : 1 2 0 0 0 0 1 +void; void; void; v vo voi void BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 4 ; 1 1 0 0 0 0 1 +}; }; }; } }; }; }; BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 4 ; 1 0 0 0 0 0 1 +struct LAYOUTCOMMIT4args struct s st str stru BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 6 no 0 10 0 0 0 0 1 +/* CURRENT_FH: /* / /* /* /* BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 6 /*:*/ 5 8 0 0 0 0 1 +offset4 offset4 offset4 o of off offs BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 6 no 0 2 0 0 0 0 1 +loca_offset; loca_offset; loca_offset; l lo loc loca BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 6 ; 1 4 0 0 0 0 1 +length4 length4 length4 l le len leng BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 6 no 0 2 0 0 0 0 1 +loca_length; loca_length; loca_length; l lo loc loca BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 6 ; 1 4 0 0 0 0 1 +bool bool bool b bo boo bool BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 6 no 0 1 0 0 0 0 1 +loca_reclaim; loca_reclaim; loca_reclaim; l lo loc loca BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 6 ; 1 5 0 0 0 0 1 +stateid4 stateid4 stateid4 s st sta stat BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 6 no 0 3 0 0 0 0 1 +loca_stateid; loca_stateid; loca_stateid; l lo loc loca BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 6 ; 1 5 0 0 0 0 1 +newoffset4 newoffset4 newoffset4 n ne new newo BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 6 no 0 4 0 0 0 0 1 +loca_last_write_offset; loca_last_write_offset; loca_last_write_offset; l lo loc loca BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 6 ; 1 8 0 0 0 0 1 +newtime4 newtime4 newtime4 n ne new newt BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 6 no 0 3 0 0 0 0 1 +loca_time_modify; loca_time_modify; loca_time_modify; l lo loc loca BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 6 ; 1 6 0 0 0 0 1 +layoutupdate4 layoutupdate4 layoutupdate4 l la lay layo BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 6 no 0 5 0 0 0 0 1 +loca_layoutupdate; loca_layoutupdate; loca_layoutupdate; l lo loc loca BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 6 ; 1 7 0 0 0 0 1 +}; }; }; } }; }; }; BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 6 ; 1 1 0 0 0 0 1 +18.42.2. RESULT 18.42.2. 1 18 18. 18.4 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 10 ... 3 10 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 10 10 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 10 , 1 10 0 0 0 0 0 +[Page 560] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 10 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 10 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 10 0 no 0 4 0 0 0 0 1 +union newsize4 union u un uni unio BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 0 () 2 10 0 0 0 0 1 +case TRUE: case c ca cas case BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 10 0 : 1 2 0 0 0 0 1 +length4 length4 length4 l le len leng BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 0 no 0 1 0 0 0 0 1 +ns_size; ns_size; ns_size; n ns ns_ ns_s BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 0 ; 1 1 0 0 0 0 1 +case FALSE: case c ca cas case BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 10 0 : 1 2 0 0 0 0 1 +void; void; void; v vo voi void BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 0 ; 1 1 0 0 0 0 1 +}; }; }; } }; }; }; BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 0 ; 1 0 0 0 0 0 1 +struct LAYOUTCOMMIT4resok struct s st str stru BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 1 no 0 10 0 0 0 0 1 +newsize4 newsize4 newsize4 n ne new news BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 1 no 0 3 0 0 0 0 1 +locr_newsize; locr_newsize; locr_newsize; l lo loc locr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 1 ; 1 5 0 0 0 0 1 +}; }; }; } }; }; }; BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 1 ; 1 1 0 0 0 0 1 +union LAYOUTCOMMIT4res union u un uni unio BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 1 () 2 10 0 0 0 0 1 +case NFS4_OK: case c ca cas case BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 10 1 : 1 2 0 0 0 0 1 +LAYOUTCOMMIT4resok LAYOUTCOMMIT4resok layoutcommit4resok L LA LAY LAYO BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 1 no 0 3 0 0 0 0 1 +locr_resok4; locr_resok4; locr_resok4; l lo loc locr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 1 ; 1 2 0 0 0 0 1 +default: default: default: d de def defa BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 1 : 1 1 0 0 0 0 1 +void; void; void; v vo voi void BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 1 ; 1 1 0 0 0 0 1 +}; }; }; } }; }; }; BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 1 ; 1 0 0 0 0 0 1 +18.42.3. DESCRIPTION 18.42.3. 1 18 18. 18.4 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 2 ... 3 10 0 0 0 0 1 +The LAYOUTCOMMIT the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 2 no 0 10 0 0 0 0 1 +by the by b by by by BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 2 ,( 2 10 0 0 0 0 1 +the preceding the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 2 ),-,. 5 9 0 0 0 0 1 +layouts are layouts l la lay layo BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 2 -,, 3 9 0 0 0 0 1 +via LAYOUTGET, via v vi via via BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 2 ,.- 3 9 0 0 0 0 1 +specified through specified s sp spe spec BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 2 -(). 4 10 0 0 0 0 1 +byte-range MUST byte-range b by byt byte BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 2 - 1 10 0 0 0 0 1 +granted via granted g gr gra gran BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 2 (.), 4 8 0 0 0 0 1 +LAYOUTIOMODE4_RW. In layoutiomode4_rw. L LA LAY LAYO BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 2 . 1 9 0 0 0 0 1 +segment is segment s se seg segm BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 2 , 1 9 0 0 0 0 1 +NFS4ERR_BAD_IOMODE. For nfs4err_bad_iomode. N NF NFS NFS4 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 2 . 1 9 0 0 0 0 1 +matching layout matching m ma mat matc BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 2 ()-, 4 9 0 0 0 0 1 +should return should s sh sho shou BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 2 . 1 6 0 0 0 0 1 +The LAYOUTCOMMIT the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 6 no 0 9 0 0 0 0 1 +writes using writes w wr wri writ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 6 . 1 9 0 0 0 0 1 +may have may m ma may may BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 1 0 0 10 6 no 0 9 0 0 0 0 1 +requested. LAYOUTCOMMIT requested. r re req requ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 6 . 1 10 0 0 0 0 1 +allocated space allocated a al all allo BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 6 --. 3 10 0 0 0 0 1 +layout referenced layout l la lay layo BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 6 no 0 10 0 0 0 0 1 +completes and completes c co com comp BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 6 , 1 9 0 0 0 0 1 +filehandle, byte-range, filehandle, f fi fil file BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 6 ,-,,. 5 7 0 0 0 0 1 +If the if I If If If BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 9 , 1 9 0 0 0 0 1 +client is client c cl cli clie BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 9 no 0 10 0 0 0 0 1 +of the of o of of of BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 9 ' 1 9 0 0 0 0 1 +period (see period p pe per peri BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 9 (..). 5 9 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 10 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 11 , 1 10 0 0 0 0 0 +[Page 561] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 10 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 10 0 no 0 4 0 0 0 0 1 +when the when w wh whe when BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 0 no 0 9 0 0 0 0 1 +byte-ranges of byte-ranges b by byt byte BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 0 - 1 9 0 0 0 0 1 +the restart the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 0 ., 2 8 0 0 0 0 1 +provided by provided p pr pro prov BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 0 no 0 10 0 0 0 0 1 +client held client c cl cli clie BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 0 . 1 9 0 0 0 0 1 +The value the T Th The The BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 0 no 0 10 0 0 0 0 1 +server returned server s se ser serv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 0 . 1 9 0 0 0 0 1 +accept or accept a ac acc acce BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 0 no 0 9 0 0 0 0 1 +consistency checks. consistency c co con cons BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 0 . 1 9 0 0 0 0 1 +provided by provided p pr pro prov BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 0 , 1 9 0 0 0 0 1 +reject the reject r re rej reje BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 0 . 1 8 0 0 0 0 1 +successful completion successful s su suc succ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 0 no 0 9 0 0 0 0 1 +set to set s se set set BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 0 . 1 9 0 0 0 0 1 +It simply it I It It It BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 0 no 0 8 0 0 0 0 1 +loca_layoutupdate field. loca_layoutupdate l lo loc loca BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 0 ., 2 9 0 0 0 0 1 +must send must m mu mus must BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 0 ' 1 9 0 0 0 0 1 +period has period p pe per peri BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 0 . 1 9 0 0 0 0 1 +request with request r re req requ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 0 no 0 10 0 0 0 0 1 +in its in i in in in BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 10 0 , 1 9 0 0 0 0 1 +status NFS4ERR_NO_GRACE. status s st sta stat BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 0 . 1 3 0 0 0 0 1 +Setting the setting S Se Set Sett BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 5 no 0 10 0 0 0 0 1 +committed layout committed c co com comm BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 5 . 1 9 0 0 0 0 1 +the client the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 5 no 0 9 0 0 0 0 1 +metadata server's metadata m me met meta BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 5 ',"" 4 9 0 0 0 0 1 +FALSE. FALSE. false. F FA FAL FALS BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 10 5 . 1 1 0 0 0 0 1 +The loca_stateid the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 6 no 0 10 0 0 0 0 1 +successful layout successful s su suc succ BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 6 (..). 5 7 0 0 0 0 1 +The loca_last_write_offset the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 7 no 0 9 0 0 0 0 1 +byte written byte b by byt byte BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 7 . 1 9 0 0 0 0 1 +this value this t th thi this BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 7 '( 2 9 0 0 0 0 1 +less than less l le les less BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 7 ') 2 8 0 0 0 0 1 +NFS4_MAXFILEOFF. Also, nfs4_maxfileoff. N NF NFS NFS4 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 7 ., 2 9 0 0 0 0 1 +described by described d de des desc BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 7 . 1 9 0 0 0 0 1 +use this use u us use use BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 7 ' 1 10 0 0 0 0 1 +updated. If updated. u up upd upda BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 7 .' 2 9 0 0 0 0 1 +result of result r re res resu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 7 , 1 9 0 0 0 0 1 +(locr_newsize.ns_size) as (locr_newsize.ns_size) ( (l (lo (loc BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 7 (.). 4 6 0 0 0 0 1 +The loca_time_modify the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 9 no 0 8 0 0 0 0 1 +modification time modification m mo mod modi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 9 . 1 9 0 0 0 0 1 +metadata server metadata m me met meta BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 9 no 0 9 0 0 0 0 1 +LAYOUTCOMMIT operation layoutcommit L LA LAY LAYO BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 9 . 1 9 0 0 0 0 1 +server uses server s se ser serv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 9 -, 2 9 0 0 0 0 1 +that time that t th tha that BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 9 . 1 9 0 0 0 0 1 +metadata server metadata m me met meta BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 9 , 1 10 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 10 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 11 , 1 10 0 0 0 0 0 +[Page 562] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 10 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 10 0 no 0 4 0 0 0 0 1 +operation in operation o op ope oper BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 0 ... 3 10 0 0 0 0 1 +for more for f fo for for BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 0 . 1 9 0 0 0 0 1 +time, it time, t ti tim time BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 0 , 1 10 0 0 0 0 1 +LAYOUTCOMMIT. LAYOUTCOMMIT. layoutcommit. L LA LAY LAYO BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 0 . 1 2 0 0 0 0 1 +The loca_layoutupdate the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 1 no 0 9 0 0 0 0 1 +for a for f fo for for BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 1 - 1 9 0 0 0 0 1 +server. For server. s se ser serv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 1 .,- 3 10 0 0 0 0 1 +of the of o of of of BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 1 - 1 9 0 0 0 0 1 +deallocated. There deallocated. d de dea deal BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 1 ..- 3 9 0 0 0 0 1 +structure. structure. structure. s st str stru BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 1 . 1 1 0 0 0 0 1 +The layout the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 2 no 0 9 0 0 0 0 1 +objects and objects o ob obj obje BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 2 no 0 9 0 0 0 0 1 +allocation behind allocation a al all allo BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 2 ., 2 9 0 0 0 0 1 +client needs client c cl cli clie BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 2 -- 2 10 0 0 0 0 1 +to the to t to to to BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 2 ,,,' 4 9 0 0 0 0 1 +time. For time. t ti tim time BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 2 ./, 3 9 0 0 0 0 1 +blocks have blocks b bl blo bloc BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 2 . 1 3 0 0 0 0 1 +If the if I If If If BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 5 , 1 10 0 0 0 0 1 +NFS4ERR_BADLAYOUT is nfs4err_badlayout N NF NFS NFS4 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 5 . 1 9 0 0 0 0 1 +be rejected be b be be be BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 5 no 0 10 0 0 0 0 1 +iomode of iomode i io iom iomo BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 5 . 1 4 0 0 0 0 1 +On success, on O On On On BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 6 , 1 10 0 0 0 0 1 +stateid retains stateid s st sta stat BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 6 . 1 3 0 0 0 0 1 +18.42.4. IMPLEMENTATION 18.42.4. 1 18 18. 18.4 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 6 ... 3 10 0 0 0 0 1 +The client the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 6 no 0 9 0 0 0 0 1 +to TRUE to t to to to BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 6 no 0 9 0 0 0 0 1 +layout-type specific layout-type l la lay layo BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 6 -/- 3 9 0 0 0 0 1 +storage layouts, storage s st sto stor BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 6 ,. 2 9 0 0 0 0 1 +may help may m ma may may BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 1 0 0 10 6 no 0 9 0 0 0 0 1 +restart. For restart. r re res rest BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 6 ., 2 9 0 0 0 0 1 +expansive recovery expansive e ex exp expa BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 6 no 0 10 0 0 0 0 1 +not get not n no not not BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 6 no 0 8 0 0 0 0 1 +LAYOUTIOMODE4_RW layout layoutiomode4_rw L LA LAY LAYO BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 6 no 0 9 0 0 0 0 1 +their writes. their t th the thei BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 6 .() 3 8 0 0 0 0 1 +following with following f fo fol foll BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 6 no 0 9 0 0 0 0 1 +for graceful for f fo for for BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 6 . 1 5 0 0 0 0 1 +If loca_reclaim if I If If If BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 10 , 1 9 0 0 0 0 1 +examine or examine e ex exa exam BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 10 . 1 9 0 0 0 0 1 +server implementation server s se ser serv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 10 no 0 10 0 0 0 0 1 +information that information i in inf info BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 10 no 0 9 0 0 0 0 1 +check on check c ch che chec BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 10 . 1 5 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 10 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 11 , 1 10 0 0 0 0 0 +[Page 563] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 10 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 10 0 no 0 4 0 0 0 0 1 +18.43. Operation 18.43. 1 18 18. 18.4 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 0 ..:- 4 10 0 0 0 0 1 +18.43.1. ARGUMENT 18.43.1. 1 18 18. 18.4 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 1 ... 3 10 0 0 0 0 1 +struct LAYOUTGET4args struct s st str stru BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 1 no 0 9 0 0 0 0 1 +/* CURRENT_FH: /* / /* /* /* BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 1 /*:*/ 5 8 0 0 0 0 1 +bool bool bool b bo boo bool BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 1 no 0 1 0 0 0 0 1 +loga_signal_layout_avail; loga_signal_layout_avail; loga_signal_layout_avail; l lo log loga BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 1 ; 1 10 0 0 0 0 1 +layouttype4 layouttype4 layouttype4 l la lay layo BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 1 no 0 4 0 0 0 0 1 +loga_layout_type; loga_layout_type; loga_layout_type; l lo log loga BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 1 ; 1 6 0 0 0 0 1 +layoutiomode4 layoutiomode4 layoutiomode4 l la lay layo BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 1 no 0 5 0 0 0 0 1 +loga_iomode; loga_iomode; loga_iomode; l lo log loga BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 1 ; 1 5 0 0 0 0 1 +offset4 offset4 offset4 o of off offs BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 1 no 0 3 0 0 0 0 1 +loga_offset; loga_offset; loga_offset; l lo log loga BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 1 ; 1 5 0 0 0 0 1 +length4 length4 length4 l le len leng BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 1 no 0 3 0 0 0 0 1 +loga_length; loga_length; loga_length; l lo log loga BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 1 ; 1 5 0 0 0 0 1 +length4 length4 length4 l le len leng BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 1 no 0 3 0 0 0 0 1 +loga_minlength; loga_minlength; loga_minlength; l lo log loga BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 1 ; 1 6 0 0 0 0 1 +stateid4 stateid4 stateid4 s st sta stat BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 1 no 0 3 0 0 0 0 1 +loga_stateid; loga_stateid; loga_stateid; l lo log loga BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 1 ; 1 5 0 0 0 0 1 +count4 count4 count4 c co cou coun BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 1 no 0 2 0 0 0 0 1 +loga_maxcount; loga_maxcount; loga_maxcount; l lo log loga BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 1 ; 1 5 0 0 0 0 1 +}; }; }; } }; }; }; BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 1 ; 1 1 0 0 0 0 1 +18.43.2. RESULT 18.43.2. 1 18 18. 18.4 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 3 ... 3 10 0 0 0 0 1 +struct LAYOUTGET4resok struct s st str stru BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 3 no 0 10 0 0 0 0 1 +bool bool bool b bo boo bool BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 3 no 0 2 0 0 0 0 1 +logr_return_on_close; logr_return_on_close; logr_return_on_close; l lo log logr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 3 ; 1 8 0 0 0 0 1 +stateid4 stateid4 stateid4 s st sta stat BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 3 no 0 3 0 0 0 0 1 +logr_stateid; logr_stateid; logr_stateid; l lo log logr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 3 ; 1 5 0 0 0 0 1 +layout4 layout4 layout4 l la lay layo BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 3 no 0 3 0 0 0 0 1 +logr_layout<>; logr_layout<>; logr_layout<>; l lo log logr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 3 ; 1 6 0 0 0 0 1 +}; }; }; } }; }; }; BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 3 ; 1 1 0 0 0 0 1 +union LAYOUTGET4res union u un uni unio BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 4 () 2 10 0 0 0 0 1 +case NFS4_OK: case c ca cas case BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 10 4 : 1 2 0 0 0 0 1 +LAYOUTGET4resok LAYOUTGET4resok layoutget4resok L LA LAY LAYO BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 4 no 0 3 0 0 0 0 1 +logr_resok4; logr_resok4; logr_resok4; l lo log logr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 4 ; 1 2 0 0 0 0 1 +case NFS4ERR_LAYOUTTRYLATER: case c ca cas case BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 10 4 : 1 5 0 0 0 0 1 +bool bool bool b bo boo bool BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 4 no 0 0 0 0 0 0 1 +logr_will_signal_layout_avail; logr_will_signal_layout_avail; logr_will_signal_layout_avail; l lo log logr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 4 ; 1 5 0 0 0 0 1 +default: default: default: d de def defa BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 4 : 1 1 0 0 0 0 1 +void; void; void; v vo voi void BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 4 ; 1 1 0 0 0 0 1 +}; }; }; } }; }; }; BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 4 ; 1 0 0 0 0 0 1 +18.43.3. DESCRIPTION 18.43.3. 1 18 18. 18.4 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 5 ... 3 10 0 0 0 0 1 +The LAYOUTGET the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 5 no 0 9 0 0 0 0 1 +for reading for f fo for for BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 5 - 1 10 0 0 0 0 1 +range specified range r ra ran rang BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 5 . 1 10 0 0 0 0 1 +client ID client c cl cli clie BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 5 ( 1 9 0 0 0 0 1 +operation), current operation), o op ope oper BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 5 ),,(), 6 10 0 0 0 0 1 +the layout the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 5 (). 3 10 0 0 0 0 1 +depends upon depends d de dep depe BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 5 ,' 2 9 0 0 0 0 1 +access intent. access a ac acc acce BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 5 . 1 2 0 0 0 0 1 +If the if I If If If BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 9 , 1 9 0 0 0 0 1 +layouts and layouts l la lay layo BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 9 , 1 10 0 0 0 0 1 +NFS4ERR_GRACE (see nfs4err_grace N NF NFS NFS4 BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 9 (...). 6 5 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 10 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 11 , 1 10 0 0 0 0 0 +[Page 564] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 10 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 10 0 no 0 4 0 0 0 0 1 +The LAYOUTGET the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 0 no 0 9 0 0 0 0 1 +byte-range: a byte-range: b by byt byte BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 0 -:., 4 9 0 0 0 0 1 +starting at starting s st sta star BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 0 . 1 9 0 0 0 0 1 +between loga_offset between b be bet betw BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 0 -. 2 9 0 0 0 0 1 +This range this T Th Thi This BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 0 no 0 10 0 0 0 0 1 +cover. The cover. c co cov cove BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 0 . 1 9 0 0 0 0 1 +loga_minlength -1 loga_minlength l lo log loga BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 0 -. 2 9 0 0 0 0 1 +range the range r ra ran rang BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 0 ., 2 9 0 0 0 0 1 +MUST be must M MU MUS MUST BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 10 0 . 1 6 0 0 0 0 1 +When a when W Wh Whe When BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 2 , 1 9 0 0 0 0 1 +desire (when desire d de des desi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 10 2 ()( 3 9 0 0 0 0 1 +loga_minlength is loga_minlength l lo log loga BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 2 ) 1 10 0 0 0 0 1 +through the through t th thr thro BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 2 --,'. 5 8 0 0 0 0 1 +The following the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 4 , 1 10 0 0 0 0 1 +of, loga_length, of, o of of, of, BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 4 ,,,. 4 7 0 0 0 0 1 +o If o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 10 4 , 1 10 0 0 0 0 1 +MUST return must M MU MUS MUST BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 10 4 . 1 4 0 0 0 0 1 +o If o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 10 4 , 1 10 0 0 0 0 1 +server that server s se ser serv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 4 no 0 10 0 0 0 0 1 +less that less l le les less BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 4 "". 3 9 0 0 0 0 1 +subjective, and subjective, s su sub subj BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 4 , 1 9 0 0 0 0 1 +implementation. For implementation. i im imp impl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 4 ., 2 9 0 0 0 0 1 +pre-allocate stable pre-allocate p pr pre pre- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 4 - 1 9 0 0 0 0 1 +range of range r ra ran rang BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 4 '. 2 9 0 0 0 0 1 +loga_minlength is loga_minlength l lo log loga BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 4 , 1 9 0 0 0 0 1 +tells the tells t te tel tell BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 4 no 0 9 0 0 0 0 1 +would prefer would w wo wou woul BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 4 . 1 9 0 0 0 0 1 +zero, then zero, z ze zer zero BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 4 , 1 9 0 0 0 0 1 +any length any a an any any BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 4 no 0 9 0 0 0 0 1 +value specified value v va val valu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 4 , 1 9 0 0 0 0 1 +loga_offset. If loga_offset. l lo log loga BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 4 . 1 9 0 0 0 0 1 +is readily is i is is is BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 4 ,. 2 9 0 0 0 0 1 +o If o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 10 9 no 0 8 0 0 0 0 1 +NFS4_UINT64_MAX, and nfs4_uint64_max, N NF NFS NFS4 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 9 ,, 2 10 0 0 0 0 1 +error NFS4ERR_INVAL error e er err erro BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 9 . 1 5 0 0 0 0 1 +o If o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 10 10 , 1 10 0 0 0 0 1 +and loga_length and a an and and BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 10 , 1 9 0 0 0 0 1 +MUST result. must M MU MUS MUST BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 10 10 . 1 1 0 0 0 0 1 +After the after A Af Aft Afte BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 10 no 0 9 0 0 0 0 1 +loga_offset, loga_minlength, loga_offset, l lo log loga BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 10 ,,, 3 10 0 0 0 0 1 +MUST return must M MU MUS MUST BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 10 10 . 1 8 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 10 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 11 , 1 10 0 0 0 0 0 +[Page 565] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 10 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 10 0 no 0 4 0 0 0 0 1 +Acceptable layouts acceptable A Ac Acc Acce BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 0 .: 2 8 0 0 0 0 1 +NFS4_UINT64_MAX; a_off nfs4_uint64_max; N NF NFS NFS4 BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 0 ;;. 3 10 0 0 0 0 1 ++-----------+-----------+----------+----------+---------------------+ +-----------+-----------+----------+----------+---------------------+ +-----------+-----------+----------+----------+---------------------+ + +- +-- +--- BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 0 --------------------------------------------------------------- 63 10 0 0 0 0 1 +| Layout | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 no 0 1 0 0 0 0 1 +| Layout | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 no 0 1 0 0 0 0 1 +| Layout | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 no 0 1 0 0 0 0 1 +| Layout | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 no 0 1 0 0 0 0 1 +| Layout | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 no 0 2 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 no 0 0 0 0 0 0 1 +| iomode | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 no 0 4 0 0 0 0 1 +| offset | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 no 0 1 0 0 0 0 1 +| reply | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 no 0 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 no 0 0 0 0 0 0 1 +| request | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 no 0 1 0 0 0 0 1 +| of | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 no 0 0 0 0 0 0 1 +| of | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 no 0 3 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 no 0 0 0 0 0 0 1 +| request | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 no 0 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 no 0 0 0 0 0 0 1 ++-----------+-----------+----------+----------+---------------------+ +-----------+-----------+----------+----------+---------------------+ +-----------+-----------+----------+----------+---------------------+ + +- +-- +--- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 0 --------------------------------------------------------------- 63 10 0 0 0 0 1 +| _READ | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 no 0 1 0 0 0 0 1 +| u64m | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 no 0 1 0 0 0 0 1 +| MAY | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 no 0 1 0 0 0 0 1 +| MUST | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 no 0 4 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 no 0 0 0 0 0 0 1 +| _READ | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 no 0 1 0 0 0 0 1 +| <= | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 - 1 4 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 no 0 0 0 0 0 0 1 +| offset | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 no 0 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 no 0 0 0 0 0 0 1 +| _READ | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 no 0 1 0 0 0 0 1 +| u64m | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 no 0 1 0 0 0 0 1 +| MAY | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 no 0 1 0 0 0 0 1 +| MUST | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 no 0 3 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 no 0 0 0 0 0 0 1 +| _RW | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 no 0 0 0 0 0 0 1 +| <= | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 no 0 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 no 0 0 0 0 0 0 1 +| _READ | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 no 0 1 0 0 0 0 1 +| > | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 no 0 3 0 0 0 0 1 +| MUST | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 ( 1 4 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 no 0 0 0 0 0 0 1 +| u64m | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 no 0 1 0 0 0 0 1 +| _READ | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 no 0 1 0 0 0 0 1 +| <= | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 , 1 4 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 no 0 0 0 0 0 0 1 +| a_off) | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 )- 2 2 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 no 0 0 0 0 0 0 1 +| offset | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 no 0 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 no 0 0 0 0 0 0 1 +| _READ | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 no 0 1 0 0 0 0 1 +| > | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 no 0 3 0 0 0 0 1 +| MUST | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 - 1 4 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 no 0 0 0 0 0 0 1 +| u64m | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 no 0 1 0 0 0 0 1 +| _RW | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 no 0 0 0 0 0 0 1 +| <= | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 no 0 4 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 no 0 0 0 0 0 0 1 +| a_minlen | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 no 0 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 no 0 0 0 0 0 0 1 +| _READ | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 no 0 1 0 0 0 0 1 +| 0 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 no 0 0 0 0 0 0 1 +| MAY | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 no 0 1 0 0 0 0 1 +| MUST | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 no 0 3 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 no 0 0 0 0 0 0 1 +| _READ | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 no 0 1 0 0 0 0 1 +| <= | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 no 0 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 no 0 0 0 0 0 0 1 +| _READ | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 no 0 1 0 0 0 0 1 +| 0 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 no 0 0 0 0 0 0 1 +| MAY | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 no 0 1 0 0 0 0 1 +| MUST | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 no 0 3 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 no 0 0 0 0 0 0 1 +| _RW | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 no 0 0 0 0 0 0 1 +| <= | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 no 0 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 no 0 0 0 0 0 0 1 +| _RW | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 no 0 0 0 0 0 0 1 +| u64m | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 no 0 1 0 0 0 0 1 +| MUST | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 no 0 5 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 no 0 0 0 0 0 0 1 +| _RW | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 no 0 0 0 0 0 0 1 +| <= | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 no 0 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 no 0 0 0 0 0 0 1 +| _RW | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 no 0 0 0 0 0 0 1 +| > | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 - 1 7 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 no 0 0 0 0 0 0 1 +| u64m | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 no 0 1 0 0 0 0 1 +| _RW | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 no 0 0 0 0 0 0 1 +| <= | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 no 0 4 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 no 0 0 0 0 0 0 1 +| a_minlen | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 no 0 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 no 0 0 0 0 0 0 1 +| _RW | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 no 0 0 0 0 0 0 1 +| 0 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 no 0 0 0 0 0 0 1 +| MUST | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 no 0 4 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 no 0 0 0 0 0 0 1 +| _RW | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 no 0 0 0 0 0 0 1 +| <= | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 no 0 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 no 0 0 0 0 0 0 1 ++-----------+-----------+----------+----------+---------------------+ +-----------+-----------+----------+----------+---------------------+ +-----------+-----------+----------+----------+---------------------+ + +- +-- +--- BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 0 --------------------------------------------------------------- 63 10 0 0 0 0 1 +Table 13 table T Ta Tab Tabl BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 9 no 0 10 0 0 0 0 1 +If loga_minlength if I If If If BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 10 no 0 10 0 0 0 0 1 +layout according layout l la lay layo BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 10 , 1 9 0 0 0 0 1 +MUST return must M MU MUS MUST BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 10 10 . 1 9 0 0 0 0 1 +and the and a an and and BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 10 no 0 9 0 0 0 0 1 +to the to t to to to BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 10 , 1 9 0 0 0 0 1 +error NFS4ERR_LAYOUTTRYLATER. error e er err erro BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 10 . 1 9 0 0 0 0 1 +than loga_minlength than t th tha than BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 10 , 1 9 0 0 0 0 1 +return a return r re ret retu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 10 . 1 7 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 10 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 11 , 1 10 0 0 0 0 0 +[Page 566] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 10 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 10 0 no 0 4 0 0 0 0 1 +Desired layouts desired D De Des Desi BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 0 . 1 10 0 0 0 0 1 +applied first. applied a ap app appl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 0 .:;; 4 9 0 0 0 0 1 +a_len = a_len a a_ a_l a_le BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 0 . 1 3 0 0 0 0 1 ++------------+------------+-----------+-----------+-----------------+ +------------+------------+-----------+-----------+-----------------+ +------------+------------+-----------+-----------+-----------------+ + +- +-- +--- BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 0 --------------------------------------------------------------- 63 10 0 0 0 0 1 +| Layout | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 no 0 1 0 0 0 0 1 +| Layout | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 no 0 1 0 0 0 0 1 +| Layout | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 no 0 1 0 0 0 0 1 +| Layout | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 no 0 1 0 0 0 0 1 +| Layout | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 no 0 2 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 no 0 0 0 0 0 0 1 +| iomode | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 no 0 3 0 0 0 0 1 +| iomode | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 no 0 5 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 no 0 0 0 0 0 0 1 +| request | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 no 0 1 0 0 0 0 1 +| request | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 no 0 1 0 0 0 0 1 +| reply | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 no 0 1 0 0 0 0 1 +| reply | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 no 0 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 no 0 0 0 0 0 0 1 ++------------+------------+-----------+-----------+-----------------+ +------------+------------+-----------+-----------+-----------------+ +------------+------------+-----------+-----------+-----------------+ + +- +-- +--- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 0 --------------------------------------------------------------- 63 10 0 0 0 0 1 +| _READ | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 no 0 1 0 0 0 0 1 +| u64m | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 no 0 1 0 0 0 0 1 +| MAY | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 no 0 1 0 0 0 0 1 +| MUST | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 no 0 1 0 0 0 0 1 +| SHOULD | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 no 0 2 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 no 0 0 0 0 0 0 1 +| _READ | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 no 0 1 0 0 0 0 1 +| <= | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 no 0 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 no 0 0 0 0 0 0 1 +| _READ | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 no 0 1 0 0 0 0 1 +| u64m | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 no 0 1 0 0 0 0 1 +| MAY | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 no 0 1 0 0 0 0 1 +| MUST | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 no 0 1 0 0 0 0 1 +| SHOULD | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 no 0 2 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 no 0 0 0 0 0 0 1 +| _RW | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 no 0 0 0 0 0 0 1 +| <= | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 no 0 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 no 0 0 0 0 0 0 1 +| _READ | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 no 0 1 0 0 0 0 1 +| > | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 no 0 3 0 0 0 0 1 +| MUST | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 no 0 1 0 0 0 0 1 +| SHOULD | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 no 0 2 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 no 0 0 0 0 0 0 1 +| u64m | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 no 0 1 0 0 0 0 1 +| _READ | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 no 0 1 0 0 0 0 1 +| <= | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 - 1 4 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 no 0 0 0 0 0 0 1 +| offset | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 no 0 2 0 0 0 0 1 +| _READ | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 no 0 1 0 0 0 0 1 +| > | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 no 0 3 0 0 0 0 1 +| MUST | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 no 0 1 0 0 0 0 1 +| SHOULD | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 no 0 2 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 no 0 0 0 0 0 0 1 +| u64m | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 no 0 1 0 0 0 0 1 +| _RW | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 no 0 0 0 0 0 0 1 +| <= | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 - 1 4 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 no 0 0 0 0 0 0 1 +| offset | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 no 0 2 0 0 0 0 1 +| _READ | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 no 0 1 0 0 0 0 1 +| 0 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 no 0 0 0 0 0 0 1 +| MAY | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 no 0 1 0 0 0 0 1 +| MUST | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 no 0 1 0 0 0 0 1 +| SHOULD | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 no 0 2 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 no 0 0 0 0 0 0 1 +| _READ | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 no 0 1 0 0 0 0 1 +| <= | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 - 1 4 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 no 0 0 0 0 0 0 1 +| offset | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 no 0 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 no 0 0 0 0 0 0 1 +| _READ | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 no 0 1 0 0 0 0 1 +| 0 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 no 0 0 0 0 0 0 1 +| MAY | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 no 0 1 0 0 0 0 1 +| MUST | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 no 0 1 0 0 0 0 1 +| SHOULD | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 no 0 2 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 no 0 0 0 0 0 0 1 +| _READ | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 no 0 1 0 0 0 0 1 +| <= | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 - 1 4 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 no 0 0 0 0 0 0 1 +| offset | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 no 0 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 no 0 0 0 0 0 0 1 +| _RW | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 no 0 0 0 0 0 0 1 +| u64m | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 no 0 1 0 0 0 0 1 +| MUST | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 no 0 1 0 0 0 0 1 +| MUST | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 no 0 1 0 0 0 0 1 +| SHOULD | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 no 0 2 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 no 0 0 0 0 0 0 1 +| _RW | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 no 0 0 0 0 0 0 1 +| <= | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 no 0 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 no 0 0 0 0 0 0 1 +| _RW | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 no 0 0 0 0 0 0 1 +| > | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 no 0 3 0 0 0 0 1 +| MUST | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 no 0 1 0 0 0 0 1 +| SHOULD | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 no 0 2 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 no 0 0 0 0 0 0 1 +| u64m | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 no 0 1 0 0 0 0 1 +| _RW | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 no 0 0 0 0 0 0 1 +| <= | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 - 1 4 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 no 0 0 0 0 0 0 1 +| offset | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 no 0 2 0 0 0 0 1 +| _RW | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 no 0 0 0 0 0 0 1 +| 0 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 no 0 0 0 0 0 0 1 +| MUST | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 no 0 1 0 0 0 0 1 +| MUST | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 no 0 1 0 0 0 0 1 +| SHOULD | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 no 0 2 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 no 0 0 0 0 0 0 1 +| _RW | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 no 0 0 0 0 0 0 1 +| <= | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 - 1 4 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 no 0 0 0 0 0 0 1 +| offset | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 no 0 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 no 0 0 0 0 0 0 1 ++------------+------------+-----------+-----------+-----------------+ +------------+------------+-----------+-----------+-----------------+ +------------+------------+-----------+-----------+-----------------+ + +- +-- +--- BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 0 --------------------------------------------------------------- 63 10 0 0 0 0 1 +Table 14 table T Ta Tab Tabl BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 9 no 0 10 0 0 0 0 1 +The loga_stateid the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 9 . 1 10 0 0 0 0 1 +currently held currently c cu cur curr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 9 , 1 9 0 0 0 0 1 +stateid reflecting stateid s st sta stat BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 9 ,-, 3 9 0 0 0 0 1 +or delegation or o or or or BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 9 . 1 9 0 0 0 0 1 +client, the client, c cl cli clie BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 9 , 1 9 0 0 0 0 1 +previous LAYOUTGET previous p pr pre prev BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 9 no 0 8 0 0 0 0 1 +CB_LAYOUTRECALL operation cb_layoutrecall C CB CB_ CB_L BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 9 (..). 5 6 0 0 0 0 1 +The loga_maxcount the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 11 () 2 10 0 0 0 0 1 +that the that t th tha that BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 11 . 1 9 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 10 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 11 , 1 10 0 0 0 0 0 +[Page 567] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 10 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 10 0 no 0 4 0 0 0 0 1 +exceeds the exceeds e ex exc exce BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 0 , 1 10 0 0 0 0 1 +return the return r re ret retu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 0 . 1 5 0 0 0 0 1 +The returned the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 0 ,, 2 10 0 0 0 0 1 +element of element e el ele elem BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 0 ., 2 9 0 0 0 0 1 +then logr_layout then t th the then BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 0 ., 2 9 0 0 0 0 1 +requested range requested r re req requ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 0 , 1 10 0 0 0 0 1 +will contain will w wi wil will BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 10 0 . 1 8 0 0 0 0 1 +logr_layout MUST logr_layout l lo log logr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 0 no 0 9 0 0 0 0 1 +lo_offset field lo_offset l lo lo_ lo_o BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 0 . 1 9 0 0 0 0 1 +in the in i in in in BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 10 0 . 1 9 0 0 0 0 1 +lo_iomode field lo_iomode l lo lo_ lo_i BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 0 . 1 9 0 0 0 0 1 +Table 13 table T Ta Tab Tabl BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 3 ,, 2 10 0 0 0 0 1 +and length. and a an and and BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 3 . 1 8 0 0 0 0 1 +logr_layout array, logr_layout l lo log logr BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 3 ,. 2 7 0 0 0 0 1 +iomode iomode iomode i io iom iomo BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 4 no 0 10 0 0 0 0 1 +The value the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 5 no 0 9 0 0 0 0 1 +Table 14 table T Ta Tab Tabl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 5 no 0 9 0 0 0 0 1 +element of element e el ele elem BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 5 ., 2 9 0 0 0 0 1 +metadata server metadata m me met meta BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 5 no 0 9 0 0 0 0 1 +from the from f fr fro from BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 5 (). 3 9 0 0 0 0 1 +it does it i it it it BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 5 , 1 9 0 0 0 0 1 +than the than t th tha than BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 5 ., 2 10 0 0 0 0 1 +an implementation an a an an an BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 10 5 no 0 9 0 0 0 0 1 +LAYOUTIOMODE4_RW requests layoutiomode4_rw L LA LAY LAYO BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 5 , 1 10 0 0 0 0 1 +the layout the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 5 . 1 8 0 0 0 0 1 +LAYOUTIOMODE4_READ or layoutiomode4_read L LA LAY LAYO BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 5 . 1 8 0 0 0 0 1 +offset offset offset o of off offs BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 8 no 0 10 0 0 0 0 1 +The value the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 8 no 0 10 0 0 0 0 1 +Table 14 table T Ta Tab Tabl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 8 no 0 9 0 0 0 0 1 +element logr_layout. element e el ele elem BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 8 . 1 3 0 0 0 0 1 +length length length l le len leng BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 9 no 0 10 0 0 0 0 1 +When setting when W Wh Whe When BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 9 , 1 8 0 0 0 0 1 +situation is situation s si sit situ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 9 no 0 9 0 0 0 0 1 +layout length layout l la lay layo BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 9 . 1 8 0 0 0 0 1 +logr_layout array logr_layout l lo log logr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 9 , 1 10 0 0 0 0 1 +N-1 elements n-1 N N- N-1 N-1 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 9 -. 2 9 0 0 0 0 1 +the last the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 9 no 0 10 0 0 0 0 1 +conditions as conditions c co con cond BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 9 . 1 7 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 10 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 11 , 1 10 0 0 0 0 0 +[Page 568] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 10 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 10 0 no 0 4 0 0 0 0 1 +* If * * * * * BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 * 1 9 0 0 0 0 1 +server MUST server s se ser serv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 0 , 1 10 0 0 0 0 1 +lo_length field lo_length l lo lo_ lo_l BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 0 no 0 9 0 0 0 0 1 +NFS4_UINT64_MAX. NFS4_UINT64_MAX. nfs4_uint64_max. N NF NFS NFS4 BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 0 . 1 2 0 0 0 0 1 +* If * * * * * BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 1 * 1 9 0 0 0 0 1 +server MUST server s se ser serv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 1 , 1 10 0 0 0 0 1 +the lo_length the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 1 no 0 10 0 0 0 0 1 +be NFS4_UINT64_MAX. be b be be be BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 1 . 1 3 0 0 0 0 1 +* If * * * * * BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 2 * 1 9 0 0 0 0 1 +server SHOULD server s se ser serv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 2 , 1 10 0 0 0 0 1 +the lo_length the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 2 no 0 10 0 0 0 0 1 +be NFS4_UINT64_MAX. be b be be be BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 2 . 1 3 0 0 0 0 1 +* When * * * * * BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 3 * 1 10 0 0 0 0 1 +Table 14 table T Ta Tab Tabl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 3 , 1 9 0 0 0 0 1 +length is length l le len leng BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 3 no 0 9 0 0 0 0 1 +element of element e el ele elem BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 3 . 1 3 0 0 0 0 1 +The logr_return_on_close the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 4 no 0 9 0 0 0 0 1 +layout before layout l la lay layo BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 4 . 1 9 0 0 0 0 1 +return value return r re ret retu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 4 , 1 10 0 0 0 0 1 +case in case c ca cas case BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 10 4 . 1 9 0 0 0 0 1 +For the for F Fo For For BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 4 no 0 10 0 0 0 0 1 +close of close c cl clo clos BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 10 4 , 1 9 0 0 0 0 1 +desired behavior desired d de des desi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 4 no 0 9 0 0 0 0 1 +the client's the t th the the BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 4 ''. 3 6 0 0 0 0 1 +The logr_stateid the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 6 no 0 9 0 0 0 0 1 +subsequent layout subsequent s su sub subs BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 6 ..,.., 6 10 0 0 0 0 1 +12.5.5.2 for 12.5.5.2 1 12 12. 12.5 BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 6 .... 4 7 0 0 0 0 1 +The format the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 7 () 2 9 0 0 0 0 1 +layout type. layout l la lay layo BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 7 .(.) 4 9 0 0 0 0 1 +each of each e ea eac each BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 7 no 0 10 0 0 0 0 1 +server (logr_layout) server s se ser serv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 7 () 2 9 0 0 0 0 1 +by the by b by by by BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 7 ., 2 9 0 0 0 0 1 +response as response r re res resp BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 7 no 0 9 0 0 0 0 1 +error, even error, e er err erro BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 7 , 1 9 0 0 0 0 1 +returned. returned. returned. r re ret retu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 7 . 1 1 0 0 0 0 1 +If neither if I If If If BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 10 no 0 10 0 0 0 0 1 +layouts, the layouts, l la lay layo BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 10 ,. 2 9 0 0 0 0 1 +If the if I If If If BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 10 , 1 10 0 0 0 0 1 +NFS4ERR_UNKNOWN_LAYOUTTYPE. If nfs4err_unknown_layouttype. N NF NFS NFS4 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 10 . 1 9 0 0 0 0 1 +matches the matches m ma mat matc BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 10 , 1 9 0 0 0 0 1 +server MUST server s se ser serv BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 10 . 1 9 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 10 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 11 , 1 10 0 0 0 0 0 +[Page 569] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 10 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 10 0 no 0 4 0 0 0 0 1 +specified, or specified, s sp spe spec BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 0 ,, 2 10 0 0 0 0 1 +metadata server metadata m me met meta BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 0 . 1 7 0 0 0 0 1 +If the if I If If If BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 0 no 0 8 0 0 0 0 1 +conditions, e.g., conditions, c co con cond BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 0 ,..,, 5 10 0 0 0 0 1 +MUST return must M MU MUS MUST BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 10 0 . 1 5 0 0 0 0 1 +If the if I If If If BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 1 no 0 9 0 0 0 0 1 +recall, the recall, r re rec reca BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 1 ,. 2 10 0 0 0 0 1 +Section 12.5.5.2 section S Se Sec Sect BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 1 .... 4 4 0 0 0 0 1 +If the if I If If If BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 2 - 1 10 0 0 0 0 1 +file, and file, f fi fil file BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 2 , 1 8 0 0 0 0 1 +mandatory locks, mandatory m ma man mand BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 2 ,, 2 9 0 0 0 0 1 +metadata server metadata m me met meta BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 2 . 1 6 0 0 0 0 1 +If client if I If If If BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 3 , 1 8 0 0 0 0 1 +registering with registering r re reg regi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 3 "" 2 9 0 0 0 0 1 +layout cannot layout l la lay layo BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 3 . 1 8 0 0 0 0 1 +metadata server metadata m me met meta BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 3 "", 3 10 0 0 0 0 1 +have logr_will_signal_layout_avail have h ha hav have BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 3 ., 2 9 0 0 0 0 1 +should expect should s sh sho shou BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 3 no 0 10 0 0 0 0 1 +layout is layout l la lay layo BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 3 . 1 3 0 0 0 0 1 +On success, on O On On On BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 5 , 1 10 0 0 0 0 1 +stateid is stateid s st sta stat BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 5 . 1 9 0 0 0 0 1 +18.43.4. IMPLEMENTATION 18.43.4. 1 18 18. 18.4 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 6 ... 3 10 0 0 0 0 1 +Typically, LAYOUTGET typically, T Ty Typ Typi BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 6 , 1 9 0 0 0 0 1 +after an after a af aft afte BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 6 no 0 9 0 0 0 0 1 +information for information i in inf info BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 6 . 1 9 0 0 0 0 1 +the special the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 6 no 0 10 0 0 0 0 1 +stateid, which stateid, s st sta stat BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 6 ,(....). 8 9 0 0 0 0 1 +also hold also a al als also BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 6 . 1 9 0 0 0 0 1 +layout type layout l la lay layo BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 6 no 0 9 0 0 0 0 1 +return. This return. r re ret retu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 6 . 1 9 0 0 0 0 1 +are unusable are a ar are are BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 6 . 1 4 0 0 0 0 1 +As indicated as A As As As BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 9 , 1 10 0 0 0 0 1 +allows a allows a al all allo BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 9 . 1 9 0 0 0 0 1 +client can client c cl cli clie BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 9 . 1 9 0 0 0 0 1 +examples are examples e ex exa exam BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 9 . 1 3 0 0 0 0 1 +o If o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 10 10 no 0 10 0 0 0 0 1 +the OPEN the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 10 , 1 9 0 0 0 0 1 +opt to opt o op opt opt BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 10 , 1 8 0 0 0 0 1 +loga_minlength set loga_minlength l lo log loga BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 10 , 1 7 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 10 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 11 , 1 10 0 0 0 0 0 +[Page 570] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 10 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 10 0 no 0 4 0 0 0 0 1 +NFS4_UINT64_MAX. If nfs4_uint64_max. N NF NFS NFS4 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 0 ., 2 9 0 0 0 0 1 +space is space s sp spa spac BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 0 , 1 9 0 0 0 0 1 +either no either e ei eit eith BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 0 no 0 9 0 0 0 0 1 +layout does layout l la lay layo BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 0 ' 1 8 0 0 0 0 1 +implementation, then implementation, i im imp impl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 0 , 1 9 0 0 0 0 1 +with a with w wi wit with BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 0 , 1 9 0 0 0 0 1 +of the of o of of of BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 0 ,. 2 9 0 0 0 0 1 +not a not n no not not BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 0 '(. 3 10 0 0 0 0 1 +for a for f fo for for BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 0 ), 2 9 0 0 0 0 1 +returned layout's returned r re ret retu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 0 '. 2 3 0 0 0 0 1 +o If o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 10 2 , 1 10 0 0 0 0 1 +the OPEN the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 2 no 0 9 0 0 0 0 1 +truncate the truncate t tr tru trun BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 2 , 1 9 0 0 0 0 1 +with loga_offset with w wi wit with BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 2 ,, 2 8 0 0 0 0 1 +loga_length set loga_length l lo log loga BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 2 '(), 4 8 0 0 0 0 1 +NFS4_UINT64_MAX. As nfs4_uint64_max. N NF NFS NFS4 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 2 ., 2 9 0 0 0 0 1 +the metadata the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 2 no 0 9 0 0 0 0 1 +length of length l le len leng BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 2 . 1 4 0 0 0 0 1 +o This o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 10 4 ,. 2 10 0 0 0 0 1 +this case, this t th thi this BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 4 , 1 10 0 0 0 0 1 +file from file f fi fil file BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 4 , 1 10 0 0 0 0 1 +set to set s se set set BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 4 , 1 8 0 0 0 0 1 +threshold4_write_iosize. The threshold4_write_iosize. t th thr thre BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 4 . 1 9 0 0 0 0 1 +layout from layout l la lay layo BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 4 no 0 8 0 0 0 0 1 +threshold4_write_iosize. threshold4_write_iosize. threshold4_write_iosize. t th thr thre BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 4 . 1 3 0 0 0 0 1 +o A o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 10 6 no 0 9 0 0 0 0 1 +10000 for 10000 1 10 100 1000 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 0 0 0 0 1 0 0 0 10 6 ./, 3 9 0 0 0 0 1 +buffer sizes buffer b bu buf buff BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 6 . 1 9 0 0 0 0 1 +of the of o of of of BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 6 no 0 9 0 0 0 0 1 +8192. The 8192. 8 81 819 8192 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 6 . 1 9 0 0 0 0 1 +60000, and 60000, 6 60 600 6000 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 6 ,. 2 9 0 0 0 0 1 +The difference the T Th The The BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 6 no 0 9 0 0 0 0 1 +layout is layout l la lay layo BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 6 (). 3 9 0 0 0 0 1 +of threshold4_read_iosize of o of of of BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 6 , 1 9 0 0 0 0 1 +a LAYOUTGET a a a a a BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 1 0 0 0 0 0 10 6 , 1 9 0 0 0 0 1 +set to set s se set set BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 6 ,'() 4 9 0 0 0 0 1 +minus 8192 minus m mi min minu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 6 ('). 4 10 0 0 0 0 1 +Since this since S Si Sin Sinc BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 6 ' 1 8 0 0 0 0 1 +threshold, it threshold, t th thr thre BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 6 ,, 2 9 0 0 0 0 1 +of zero, of o of of of BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 6 ,-, 3 9 0 0 0 0 1 +but preferably but b bu but but BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 6 no 0 10 0 0 0 0 1 +and a and a an and and BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 6 . 1 7 0 0 0 0 1 +o This o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 10 11 ,/ 2 10 0 0 0 0 1 +O, and o, O O, O, O, BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 11 ,/ 2 9 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 10 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 11 , 1 10 0 0 0 0 0 +[Page 571] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 10 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 10 0 no 0 4 0 0 0 0 1 +server. The server. s se ser serv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 0 . 1 10 0 0 0 0 1 +loga_minlength set loga_minlength l lo log loga BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 0 . 1 9 0 0 0 0 1 +the length the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 0 . 1 9 0 0 0 0 1 +layout that layout l la lay layo BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 0 , 1 9 0 0 0 0 1 +offset and offset o of off offs BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 0 . 1 7 0 0 0 0 1 +o Again, o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 10 1 , 1 9 0 0 0 0 1 +offset 10000 offset o of off offs BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 1 (.. 3 10 0 0 0 0 1 +of 10000 of o of of of BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 1 ),/ 3 9 0 0 0 0 1 +use. The use. u us use use. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 1 . 1 9 0 0 0 0 1 +return the return r re ret retu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 1 /. 2 9 0 0 0 0 1 +map the map m ma map map BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 1 no 0 9 0 0 0 0 1 +requests starting requests r re req requ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 10 1 ,, 2 9 0 0 0 0 1 +total length total t to tot tota BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 1 (*), 4 8 0 0 0 0 1 +contains the contains c co con cont BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 1 '. 2 9 0 0 0 0 1 +the value the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 1 , 1 8 0 0 0 0 1 +practical and practical p pr pra prac BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 1 no 0 9 0 0 0 0 1 +operations to operations o op ope oper BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 10 1 . 1 9 0 0 0 0 1 +LAYOUTGET request layoutget L LA LAY LAYO BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 1 , 1 10 0 0 0 0 1 +to 4096, to t to to to BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 1 ,. 2 9 0 0 0 0 1 +grant a grant g gr gra gran BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 10 1 , 1 9 0 0 0 0 1 +end offset end e en end end BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 1 -, 2 9 0 0 0 0 1 +layout with layout l la lay layo BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 1 no 0 9 0 0 0 0 1 +that is that t th tha that BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 1 . 1 8 0 0 0 0 1 +client to client c cl cli clie BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 1 , 1 9 0 0 0 0 1 +operations for operations o op ope oper BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 10 1 . 1 6 0 0 0 0 1 +o An o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 10 6 , 1 10 0 0 0 0 1 +LAYOUTGET operation layoutget L LA LAY LAYO BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 6 no 0 9 0 0 0 0 1 +read requests read r re rea read BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 10 6 . 1 9 0 0 0 0 1 +this pattern, this t th thi this BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 6 ,. 2 9 0 0 0 0 1 +reads from reads r re rea read BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 6 no 0 9 0 0 0 0 1 +through the through t th thr thro BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 6 , 1 9 0 0 0 0 1 +avoid stalling avoid a av avo avoi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 6 /, 2 10 0 0 0 0 1 +more operations more m mo mor more BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 6 no 0 10 0 0 0 0 1 +the way the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 6 . 1 10 0 0 0 0 1 +to request to t to to to BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 6 - 1 9 0 0 0 0 1 +the byte-ranges the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 6 -/ 2 9 0 0 0 0 1 +running on running r ru run runn BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 10 6 . 1 3 0 0 0 0 1 +o This o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 10 9 , 1 9 0 0 0 0 1 +pattern, but pattern, p pa pat patt BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 9 ,. 2 9 0 0 0 0 1 +gets a gets g ge get gets BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 9 , 1 10 0 0 0 0 1 +beyond loga_minlength. beyond b be bey beyo BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 9 . 1 3 0 0 0 0 1 +o A o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 10 10 /,- 3 10 0 0 0 0 1 +behinds to behinds b be beh behi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 10 . 1 10 0 0 0 0 1 +It sends it I It It It BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 10 no 0 9 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 10 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 11 , 1 10 0 0 0 0 0 +[Page 572] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 10 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 10 0 no 0 4 0 0 0 0 1 +queued write-behinds queued q qu que queu BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 0 -, 2 10 0 0 0 0 1 +filer's current filer's f fi fil file BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 0 '. 2 9 0 0 0 0 1 +operations once operations o op ope oper BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 10 0 - 1 10 0 0 0 0 1 +queue length. queue q qu que queu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 0 . 1 2 0 0 0 0 1 +Once the once O On Onc Once BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 2 no 0 9 0 0 0 0 1 +device ID, device d de dev devi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 2 , 1 10 0 0 0 0 1 +the layout the t th the the BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 2 . 1 5 0 0 0 0 1 +CB_NOTIFY_DEVICEID can cb_notify_deviceid C CB CB_ CB_N BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 3 . 1 9 0 0 0 0 1 +that LAYOUTGET that t th tha that BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 3 no 0 10 0 0 0 0 1 +device address device d de dev devi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 3 , 1 8 0 0 0 0 1 +CB_NOTIFY_DEVICEID to cb_notify_deviceid C CB CB_ CB_N BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 3 ' 1 10 0 0 0 0 1 +meanwhile the meanwhile m me mea mean BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 3 . 1 9 0 0 0 0 1 +scenario is scenario s sc sce scen BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 3 ... 3 9 0 0 0 0 1 +the CB_NOTIFY_DEVICEID the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 3 no 0 10 0 0 0 0 1 +the results the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 3 . 1 9 0 0 0 0 1 +the device the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 3 . 1 9 0 0 0 0 1 +the client the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 3 , 1 9 0 0 0 0 1 +race. If race. r ra rac race BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 3 . 1 9 0 0 0 0 1 +from GETDEVICEINFO, from f fr fro from BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 3 , 1 8 0 0 0 0 1 +GETDEVICEINFO or getdeviceinfo G GE GET GETD BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 3 -- 2 9 0 0 0 0 1 +device address device d de dev devi BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 3 . 1 6 0 0 0 0 1 +18.44. Operation 18.44. 1 18 18. 18.4 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 10 ..:- 4 10 0 0 0 0 1 +18.44.1. ARGUMENT 18.44.1. 1 18 18. 18.4 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 11 ... 3 10 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 10 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 11 , 1 10 0 0 0 0 0 +[Page 573] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 10 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 10 0 no 0 4 0 0 0 0 1 +/* Constants /* / /* /* /* BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 0 /**/ 4 10 0 0 0 0 1 +const LAYOUT4_RET_REC_FILE const c co con cons BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 0 no 0 4 0 0 0 0 1 += 1; = = = = = BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 ; 1 0 0 0 0 0 1 +const LAYOUT4_RET_REC_FSID const c co con cons BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 0 no 0 4 0 0 0 0 1 += 2; = = = = = BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 ; 1 0 0 0 0 0 1 +const LAYOUT4_RET_REC_ALL const c co con cons BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 0 no 0 4 0 0 0 0 1 += 3; = = = = = BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 ; 1 0 0 0 0 0 1 +enum layoutreturn_type4 enum e en enu enum BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 3 no 0 6 0 0 0 0 1 +LAYOUTRETURN4_FILE = layoutreturn4_file L LA LAY LAYO BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 3 , 1 10 0 0 0 0 1 +LAYOUTRETURN4_FSID = layoutreturn4_fsid L LA LAY LAYO BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 3 , 1 10 0 0 0 0 1 +LAYOUTRETURN4_ALL = layoutreturn4_all L LA LAY LAYO BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 3 no 0 9 0 0 0 0 1 +}; }; }; } }; }; }; BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 3 ; 1 0 0 0 0 0 1 +struct layoutreturn_file4 struct s st str stru BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 4 no 0 8 0 0 0 0 1 +offset4 offset4 offset4 o of off offs BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 4 no 0 2 0 0 0 0 1 +lrf_offset; lrf_offset; lrf_offset; l lr lrf lrf_ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 4 ; 1 3 0 0 0 0 1 +length4 length4 length4 l le len leng BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 4 no 0 2 0 0 0 0 1 +lrf_length; lrf_length; lrf_length; l lr lrf lrf_ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 4 ; 1 3 0 0 0 0 1 +stateid4 stateid4 stateid4 s st sta stat BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 4 no 0 2 0 0 0 0 1 +lrf_stateid; lrf_stateid; lrf_stateid; l lr lrf lrf_ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 4 ; 1 4 0 0 0 0 1 +/* layouttype4 /* / /* /* /* BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 4 /**/ 4 10 0 0 0 0 1 +opaque opaque opaque o op opa opaq BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 4 no 0 2 0 0 0 0 1 +lrf_body<>; lrf_body<>; lrf_body<>; l lr lrf lrf_ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 4 ; 1 3 0 0 0 0 1 +}; }; }; } }; }; }; BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 4 ; 1 0 0 0 0 0 1 +union layoutreturn4 union u un uni unio BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 6 () 2 10 0 0 0 0 1 +case LAYOUTRETURN4_FILE: case c ca cas case BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 10 6 : 1 3 0 0 0 0 1 +layoutreturn_file4 layoutreturn_file4 layoutreturn_file4 l la lay layo BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 6 no 0 3 0 0 0 0 1 +lr_layout; lr_layout; lr_layout; l lr lr_ lr_l BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 6 ; 1 1 0 0 0 0 1 +default: default: default: d de def defa BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 6 : 1 1 0 0 0 0 1 +void; void; void; v vo voi void BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 6 ; 1 0 0 0 0 0 1 +}; }; }; } }; }; }; BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 6 ; 1 0 0 0 0 0 1 +struct LAYOUTRETURN4args struct s st str stru BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 8 no 0 10 0 0 0 0 1 +/* CURRENT_FH: /* / /* /* /* BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 8 /*:*/ 5 8 0 0 0 0 1 +bool bool bool b bo boo bool BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 8 no 0 1 0 0 0 0 1 +lora_reclaim; lora_reclaim; lora_reclaim; l lo lor lora BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 8 ; 1 5 0 0 0 0 1 +layouttype4 layouttype4 layouttype4 l la lay layo BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 8 no 0 4 0 0 0 0 1 +lora_layout_type; lora_layout_type; lora_layout_type; l lo lor lora BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 8 ; 1 6 0 0 0 0 1 +layoutiomode4 layoutiomode4 layoutiomode4 l la lay layo BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 8 no 0 5 0 0 0 0 1 +lora_iomode; lora_iomode; lora_iomode; l lo lor lora BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 8 ; 1 4 0 0 0 0 1 +layoutreturn4 layoutreturn4 layoutreturn4 l la lay layo BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 8 no 0 5 0 0 0 0 1 +lora_layoutreturn; lora_layoutreturn; lora_layoutreturn; l lo lor lora BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 8 ; 1 7 0 0 0 0 1 +}; }; }; } }; }; }; BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 8 ; 1 1 0 0 0 0 1 +18.44.2. RESULT 18.44.2. 1 18 18. 18.4 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 10 ... 3 10 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 10 10 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 10 , 1 10 0 0 0 0 0 +[Page 574] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 10 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 10 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 10 0 no 0 4 0 0 0 0 1 +union layoutreturn_stateid union u un uni unio BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 0 () 2 10 0 0 0 0 1 +case TRUE: case c ca cas case BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 10 0 : 1 2 0 0 0 0 1 +stateid4 stateid4 stateid4 s st sta stat BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 0 no 0 1 0 0 0 0 1 +lrs_stateid; lrs_stateid; lrs_stateid; l lr lrs lrs_ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 0 ; 1 2 0 0 0 0 1 +case FALSE: case c ca cas case BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 10 0 : 1 2 0 0 0 0 1 +void; void; void; v vo voi void BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 0 ; 1 1 0 0 0 0 1 +}; }; }; } }; }; }; BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 0 ; 1 0 0 0 0 0 1 +union LAYOUTRETURN4res union u un uni unio BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 0 () 2 10 0 0 0 0 1 +case NFS4_OK: case c ca cas case BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 10 0 : 1 2 0 0 0 0 1 +layoutreturn_stateid layoutreturn_stateid layoutreturn_stateid l la lay layo BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 0 no 0 3 0 0 0 0 1 +lorr_stateid; lorr_stateid; lorr_stateid; l lo lor lorr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 0 ; 1 2 0 0 0 0 1 +default: default: default: d de def defa BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 0 : 1 1 0 0 0 0 1 +void; void; void; v vo voi void BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 0 ; 1 1 0 0 0 0 1 +}; }; }; } }; }; }; BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 0 ; 1 0 0 0 0 0 1 +18.44.3. DESCRIPTION 18.44.3. 1 18 18. 18.4 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 1 ... 3 10 0 0 0 0 1 +This operation this T Th Thi This BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 1 no 0 9 0 0 0 0 1 +layouts represented layouts l la lay layo BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 1 ( 1 9 0 0 0 0 1 +the preceding the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 1 ),,. 4 10 0 0 0 0 1 +When lr_returntype when W Wh Whe When BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 1 , 1 9 0 0 0 0 1 +further identified further f fu fur furt BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 1 ,,, 3 10 0 0 0 0 1 +and lrf_stateid. and a an and and BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 1 ., 2 9 0 0 0 0 1 +bytes of bytes b by byt byte BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 1 ,,. 3 9 0 0 0 0 1 +lr_returntype is lr_returntype l lr lr_ lr_r BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 1 , 1 9 0 0 0 0 1 +to identify to t to to to BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 1 , 1 9 0 0 0 0 1 +the fsid the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 1 ,, 2 9 0 0 0 0 1 +returned. When returned. r re ret retu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 1 ., 2 9 0 0 0 0 1 +matching the matching m ma mat matc BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 1 ,, 2 8 0 0 0 0 1 +returned and returned r re ret retu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 1 ., 2 9 0 0 0 0 1 +the client the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 1 () 2 9 0 0 0 0 1 +storage protocol storage s st sto stor BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 1 . 1 6 0 0 0 0 1 +If the if I If If If BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 6 no 0 10 0 0 0 0 1 +LAYOUTRETURN4_ALL is layoutreturn4_all L LA LAY LAYO BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 6 ,. 2 9 0 0 0 0 1 +LAYOUTRETURN4_FILE, the layoutreturn4_file, L LA LAY LAYO BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 6 ,- 2 9 0 0 0 0 1 +is a is i is is is BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 6 , 1 9 0 0 0 0 1 +combination of combination c co com comb BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 6 , 1 9 0 0 0 0 1 +or a or o or or or BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 6 no 0 9 0 0 0 0 1 +LAYOUTGET, and layoutget, L LA LAY LAYO BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 6 ,. 2 9 0 0 0 0 1 +byte-range does byte-range b by byt byte BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 6 - 1 9 0 0 0 0 1 +for the for f fo for for BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 6 ,,, 3 9 0 0 0 0 1 +results. See results. r re res resu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 6 ......"" 8 9 0 0 0 0 1 +return of return r re ret retu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 6 . 1 2 0 0 0 0 1 +The layout the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 10 no 0 9 0 0 0 0 1 +specified by specified s sp spe spec BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 10 .,, 3 10 0 0 0 0 1 +is not is i is is is BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 10 . 1 9 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 10 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 11 , 1 10 0 0 0 0 0 +[Page 575] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 10 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 10 0 no 0 4 0 0 0 0 1 +Recalled scope recalled R Re Rec Reca BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 0 - 1 8 0 0 0 0 1 +LAYOUTRETURN4_FILE, the layoutreturn4_file, L LA LAY LAYO BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 0 ,, 2 9 0 0 0 0 1 +LAYOUTRETURN4_ALL. There layoutreturn4_all. L LA LAY LAYO BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 0 . 1 9 0 0 0 0 1 +scope to scope s sc sco scop BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 0 no 0 10 0 0 0 0 1 +been previously been b be bee been BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 0 . 1 5 0 0 0 0 1 +For all for F Fo For For BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 1 , 1 8 0 0 0 0 1 +specifies that specifies s sp spe spec BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 1 no 0 8 0 0 0 0 1 +LAYOUTRETURN (i.e., layoutreturn L LA LAY LAYO BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 1 (..,,, 6 10 0 0 0 0 1 +filehandle and filehandle f fi fil file BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 1 ;; 2 9 0 0 0 0 1 +LAYOUTRETURN4_ALL) are layoutreturn4_all) L LA LAY LAYO BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 1 ). 2 5 0 0 0 0 1 +In the in I In In In BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 10 2 , 1 10 0 0 0 0 1 +provided by provided p pr pro prov BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 2 no 0 9 0 0 0 0 1 +layout operations. layout l la lay layo BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 2 ."" 3 9 0 0 0 0 1 +NOT be not N NO NOT NOT BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 10 2 ..,..,... 9 9 0 0 0 0 1 +discussion and discussion d di dis disc BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 2 . 1 4 0 0 0 0 1 +Return of return R Re Ret Retu BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 4 no 0 9 0 0 0 0 1 +storage device storage s st sto stor BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 4 . 1 9 0 0 0 0 1 +in effect in i in in in BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 10 4 no 0 8 0 0 0 0 1 +notification callbacks. notification n no not noti BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 4 . 1 9 0 0 0 0 1 +that refer that t th tha that BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 4 , 1 9 0 0 0 0 1 +delete a delete d de del dele BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 4 , 1 10 0 0 0 0 1 +case when case c ca cas case BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 10 4 . 1 6 0 0 0 0 1 +If the if I If If If BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 6 , 1 10 0 0 0 0 1 +return a return r re ret retu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 6 no 0 9 0 0 0 0 1 +server during server s se ser serv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 6 '. 2 9 0 0 0 0 1 +layouts that layouts l la lay layo BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 6 ', 2 10 0 0 0 0 1 +the client the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 6 . 1 8 0 0 0 0 1 +lora_reclaim field lora_reclaim l lo lor lora BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 6 no 0 9 0 0 0 0 1 +LAYOUTRETURN4_FSID or layoutreturn4_fsid L LA LAY LAYO BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 6 . 1 8 0 0 0 0 1 +(Section 18.42) (section ( (S (Se (Sec BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 6 (.). 4 4 0 0 0 0 1 +Layouts may layouts L La Lay Layo BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 8 (.., 4 9 0 0 0 0 1 +the server the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 8 )., 3 9 0 0 0 0 1 +properly propagate properly p pr pro prop BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 8 no 0 9 0 0 0 0 1 +the storage the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 8 () 2 10 0 0 0 0 1 +layout. layout. layout. l la lay layo BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 8 . 1 1 0 0 0 0 1 +If the if I If If If BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 9 no 0 9 0 0 0 0 1 +where the where w wh whe wher BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 9 no 0 8 0 0 0 0 1 +LAYOUTRECALL4_FILE, the layoutrecall4_file, L LA LAY LAYO BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 9 , 1 10 0 0 0 0 1 +CB_LAYOUTRECALL as cb_layoutrecall C CB CB_ CB_L BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 9 ., 2 9 0 0 0 0 1 +use logr_stateid use u us use use BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 9 () 2 9 0 0 0 0 1 +(from a (from ( (f (fr (fro BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 9 (). 3 9 0 0 0 0 1 +point in point p po poi poin BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 9 () 2 9 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 10 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 11 , 1 10 0 0 0 0 0 +[Page 576] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 10 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 10 0 no 0 4 0 0 0 0 1 +recall was recall r re rec reca BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 0 . 1 9 0 0 0 0 1 +value and value v va val valu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 0 ';, 3 9 0 0 0 0 1 +NFS4ERR_BAD_STATEID MUST nfs4err_bad_stateid N NF NFS NFS4 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 0 . 1 9 0 0 0 0 1 +returned if returned r re ret retu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 0 , 1 9 0 0 0 0 1 +the client the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 0 ., 2 9 0 0 0 0 1 +client uses client c cl cli clie BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 0 , 1 10 0 0 0 0 1 +with the with w wi wit with BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 0 , 1 9 0 0 0 0 1 +the old the t th the the BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 0 . 1 2 0 0 0 0 1 +If a if I If If If BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 2 , 1 9 0 0 0 0 1 +metadata server metadata m me met meta BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 2 no 0 9 0 0 0 0 1 +devices to devices d de dev devi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 2 no 0 10 0 0 0 0 1 +layout. See layout. l la lay layo BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 2 .... 4 6 0 0 0 0 1 +If the if I If If If BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 3 no 0 10 0 0 0 0 1 +the metadata the t th the the BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 3 ',. 3 9 0 0 0 0 1 +If the if I If If If BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 4 no 0 10 0 0 0 0 1 +lr_returntype is lr_returntype l lr lr_ lr_r BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 4 , 1 9 0 0 0 0 1 +NFS4ERR_INVAL is nfs4err_inval N NF NFS NFS4 BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 4 . 1 3 0 0 0 0 1 +If the if I If If If BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 5 , 1 9 0 0 0 0 1 +then the then t th the then BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 5 no 0 9 0 0 0 0 1 +updated for updated u up upd upda BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 5 '; 2 9 0 0 0 0 1 +also be also a al als also BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 5 . 1 10 0 0 0 0 1 +layout for layout l la lay layo BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 5 ,, 2 9 0 0 0 0 1 +returned and returned r re ret retu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 5 no 0 8 0 0 0 0 1 +operations for operations o op ope oper BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 10 5 , 1 8 0 0 0 0 1 +lrs_present MUST lrs_present l lr lrs lrs_ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 5 ,. 2 9 0 0 0 0 1 +addition, the addition, a ad add addi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 5 ,' 2 9 0 0 0 0 1 +all-zeroes special all-zeroes a al all all- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 5 -(....). 8 10 0 0 0 0 1 +reject with reject r re rej reje BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 5 no 0 9 0 0 0 0 1 +stateid in stateid s st sta stat BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 5 - 1 10 0 0 0 0 1 +by a by b by by by BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 5 -. 2 5 0 0 0 0 1 +On success, on O On On On BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 8 ,. 2 10 0 0 0 0 1 +If the if I If If If BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 9 no 0 9 0 0 0 0 1 +client ID client c cl cli clie BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 9 (.), 4 9 0 0 0 0 1 +principal, security principal, p pr pri prin BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 9 ,,,, 4 9 0 0 0 0 1 +combination that combination c co com comb BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 9 no 0 8 0 0 0 0 1 +LAYOUTRETURN. This layoutreturn. L LA LAY LAYO BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 9 . 1 9 0 0 0 0 1 +principal are principal p pr pri prin BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 9 . 1 9 0 0 0 0 1 +credential or credential c cr cre cred BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 9 (.) 3 10 0 0 0 0 1 +if LAYOUTRETURN's if i if if if BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 9 ' 1 10 0 0 0 0 1 +of EXCHANGE_ID. of o of of of BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 9 . 1 2 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 10 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 11 , 1 10 0 0 0 0 0 +[Page 577] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 10 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 10 0 no 0 4 0 0 0 0 1 +18.44.4. IMPLEMENTATION 18.44.4. 1 18 18. 18.4 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 0 ... 3 10 0 0 0 0 1 +The final the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 0 no 0 9 0 0 0 0 1 +callback MUST callback c ca cal call BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 0 , 1 9 0 0 0 0 1 +LAYOUTRETURN operations. layoutreturn L LA LAY LAYO BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 0 . 1 9 0 0 0 0 1 +client is client c cl cli clie BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 0 , 1 10 0 0 0 0 1 +may recall may m ma may may BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 1 0 0 10 0 (..,); 6 10 0 0 0 0 1 +final return final f fi fin fina BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 0 no 0 9 0 0 0 0 1 +layout recall layout l la lay layo BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 0 . 1 3 0 0 0 0 1 +Returning all returning R Re Ret Retu BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 3 no 0 9 0 0 0 0 1 +typically done typically t ty typ typi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 3 no 0 10 0 0 0 0 1 +as the as a as as as BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 3 ., 2 9 0 0 0 0 1 +in response in i in in in BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 10 3 . 1 9 0 0 0 0 1 +that the that t th tha that BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 3 no 0 8 0 0 0 0 1 +individual LAYOUTRETURN individual i in ind indi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 3 no 0 10 0 0 0 0 1 +LAYOUTRETURN4_ALL marks layoutreturn4_all L LA LAY LAYO BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 3 . 1 9 0 0 0 0 1 +Section 12.5.5.1 section S Se Sec Sect BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 3 .... 4 5 0 0 0 0 1 +Once the once O On Onc Once BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 6 no 0 10 0 0 0 0 1 +device ID, device d de dev devi BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 6 ,. 2 7 0 0 0 0 1 +18.45. Operation 18.45. 1 18 18. 18.4 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 7 ..:- 4 10 0 0 0 0 1 +18.45.1. ARGUMENT 18.45.1. 1 18 18. 18.4 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 7 ... 3 10 0 0 0 0 1 +enum secinfo_style4 enum e en enu enum BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 8 no 0 8 0 0 0 0 1 +SECINFO_STYLE4_CURRENT_FH SECINFO_STYLE4_CURRENT_FH secinfo_style4_current_fh S SE SEC SECI BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 8 no 0 10 0 0 0 0 1 += 0, = = = = = BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 8 , 1 1 0 0 0 0 1 +SECINFO_STYLE4_PARENT SECINFO_STYLE4_PARENT secinfo_style4_parent S SE SEC SECI BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 8 no 0 8 0 0 0 0 1 += 1 = = = = = BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 8 no 0 1 0 0 0 0 1 +}; }; }; } }; }; }; BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 8 ; 1 1 0 0 0 0 1 +/* CURRENT_FH: /* / /* /* /* BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 8 /*:*/ 5 9 0 0 0 0 1 +typedef secinfo_style4 typedef t ty typ type BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 8 ; 1 10 0 0 0 0 1 +18.45.2. RESULT 18.45.2. 1 18 18. 18.4 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 9 ... 3 10 0 0 0 0 1 +/* CURRENTFH: /* / /* /* /* BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 9 /*:*/ 5 10 0 0 0 0 1 +typedef SECINFO4res typedef t ty typ type BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 9 ; 1 8 0 0 0 0 1 +18.45.3. DESCRIPTION 18.45.3. 1 18 18. 18.4 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 9 ... 3 10 0 0 0 0 1 +Like the like L Li Lik Like BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 10 , 1 9 0 0 0 0 1 +obtain a obtain o ob obt obta BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 10 no 0 10 0 0 0 0 1 +object. Unlike object. o ob obj obje BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 10 ., 2 9 0 0 0 0 1 +are accessed are a ar are are BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 10 . 1 4 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 10 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 11 , 1 10 0 0 0 0 0 +[Page 578] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 10 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 10 0 no 0 4 0 0 0 0 1 +There are there T Th The Ther BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 0 , 1 9 0 0 0 0 1 +of the of o of of of BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 0 . 1 9 0 0 0 0 1 +passed, then passed, p pa pas pass BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 0 , 1 9 0 0 0 0 1 +for the for f fo for for BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 0 ., 2 9 0 0 0 0 1 +SECINFO_NO_NAME is secinfo_no_name S SE SEC SECI BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 0 no 0 9 0 0 0 0 1 +filehandle's parent. filehandle's f fi fil file BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 0 '., 3 9 0 0 0 0 1 +then SECINFO then t th the then BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 0 no 0 9 0 0 0 0 1 +LOOKUPP when lookupp L LO LOO LOOK BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 0 . 1 9 0 0 0 0 1 +Therefore, if therefore, T Th The Ther BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 0 , 1 9 0 0 0 0 1 +LOOKUPP the lookupp L LO LOO LOOK BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 0 , 1 10 0 0 0 0 1 +return NFS4ERR_ACCESS. return r re ret retu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 0 . 1 3 0 0 0 0 1 +If PUTFH, if I If If If BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 4 ,,,, 4 10 0 0 0 0 1 +then the then t th the then BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 4 no 0 9 0 0 0 0 1 +that consists that t th tha that BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 4 ,, 2 9 0 0 0 0 1 +by SECINFO_NO_NAME, by b by by by BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 4 ,.. 3 9 0 0 0 0 1 +for instructions for f fo for for BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 4 no 0 9 0 0 0 0 1 +PUTFH, PUTROOTFH, putfh, P PU PUT PUTF BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 4 ,,,. 4 6 0 0 0 0 1 +If SECINFO_STYLE4_PARENT if I If If If BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 6 no 0 10 0 0 0 0 1 +directory, SECINFO_NO_NAME directory, d di dir dire BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 6 ,. 2 8 0 0 0 0 1 +On success, on O On On On BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 7 ,( 2 7 0 0 0 0 1 +Section 2.6.3.1.1.8), section S Se Sec Sect BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 7 .....), 7 10 0 0 0 0 1 +tries to tries t tr tri trie BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 7 , 1 9 0 0 0 0 1 +the status the t th the the BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 7 . 1 4 0 0 0 0 1 +Everything else everything E Ev Eve Ever BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 8 . 1 10 0 0 0 0 1 +the discussion the t th the the BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 8 (..). 5 6 0 0 0 0 1 +18.45.4. IMPLEMENTATION 18.45.4. 1 18 18. 18.4 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 9 ... 3 10 0 0 0 0 1 +See the see S Se See See BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 10 9 (..). 5 10 0 0 0 0 1 +18.46. Operation 18.46. 1 18 18. 18.4 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 9 ..:-- 5 10 0 0 0 0 1 +Control Control control C Co Con Cont BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 9 no 0 1 0 0 0 0 1 +18.46.1. ARGUMENT 18.46.1. 1 18 18. 18.4 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 10 ... 3 10 0 0 0 0 1 +struct SEQUENCE4args struct s st str stru BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 10 no 0 10 0 0 0 0 1 +sessionid4 sessionid4 sessionid4 s se ses sess BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 10 no 0 4 0 0 0 0 1 +sa_sessionid; sa_sessionid; sa_sessionid; s sa sa_ sa_s BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 10 ; 1 6 0 0 0 0 1 +sequenceid4 sequenceid4 sequenceid4 s se seq sequ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 10 no 0 5 0 0 0 0 1 +sa_sequenceid; sa_sequenceid; sa_sequenceid; s sa sa_ sa_s BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 10 ; 1 6 0 0 0 0 1 +slotid4 slotid4 slotid4 s sl slo slot BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 10 no 0 3 0 0 0 0 1 +sa_slotid; sa_slotid; sa_slotid; s sa sa_ sa_s BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 10 ; 1 4 0 0 0 0 1 +slotid4 slotid4 slotid4 s sl slo slot BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 10 no 0 3 0 0 0 0 1 +sa_highest_slotid; sa_highest_slotid; sa_highest_slotid; s sa sa_ sa_h BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 10 ; 1 8 0 0 0 0 1 +bool bool bool b bo boo bool BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 10 no 0 2 0 0 0 0 1 +sa_cachethis; sa_cachethis; sa_cachethis; s sa sa_ sa_c BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 10 ; 1 6 0 0 0 0 1 +}; }; }; } }; }; }; BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 10 ; 1 1 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 10 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 11 , 1 10 0 0 0 0 0 +[Page 579] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 10 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 10 0 no 0 4 0 0 0 0 1 +18.46.2. RESULT 18.46.2. 1 18 18. 18.4 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 0 ... 3 10 0 0 0 0 1 +const SEQ4_STATUS_CB_PATH_DOWN const c co con cons BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 0 no 0 6 0 0 0 0 1 += 0x00000001; = = = = = BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 ; 1 3 0 0 0 0 1 +const SEQ4_STATUS_CB_GSS_CONTEXTS_EXPIRING const c co con cons BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 0 no 0 9 0 0 0 0 1 += 0x00000002; = = = = = BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 ; 1 3 0 0 0 0 1 +const SEQ4_STATUS_CB_GSS_CONTEXTS_EXPIRED const c co con cons BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 0 no 0 9 0 0 0 0 1 += 0x00000004; = = = = = BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 ; 1 3 0 0 0 0 1 +const SEQ4_STATUS_EXPIRED_ALL_STATE_REVOKED const c co con cons BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 0 no 0 9 0 0 0 0 1 += 0x00000008; = = = = = BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 ; 1 3 0 0 0 0 1 +const SEQ4_STATUS_EXPIRED_SOME_STATE_REVOKED const c co con cons BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 0 no 0 10 0 0 0 0 1 += 0x00000010; = = = = = BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 ; 1 3 0 0 0 0 1 +const SEQ4_STATUS_ADMIN_STATE_REVOKED const c co con cons BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 0 no 0 8 0 0 0 0 1 += 0x00000020; = = = = = BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 ; 1 3 0 0 0 0 1 +const SEQ4_STATUS_RECALLABLE_STATE_REVOKED const c co con cons BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 0 no 0 9 0 0 0 0 1 += 0x00000040; = = = = = BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 ; 1 3 0 0 0 0 1 +const SEQ4_STATUS_LEASE_MOVED const c co con cons BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 0 no 0 6 0 0 0 0 1 += 0x00000080; = = = = = BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 ; 1 3 0 0 0 0 1 +const SEQ4_STATUS_RESTART_RECLAIM_NEEDED const c co con cons BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 0 no 0 9 0 0 0 0 1 += 0x00000100; = = = = = BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 ; 1 3 0 0 0 0 1 +const SEQ4_STATUS_CB_PATH_DOWN_SESSION const c co con cons BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 0 no 0 8 0 0 0 0 1 += 0x00000200; = = = = = BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 ; 1 3 0 0 0 0 1 +const SEQ4_STATUS_BACKCHANNEL_FAULT const c co con cons BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 0 no 0 8 0 0 0 0 1 += 0x00000400; = = = = = BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 ; 1 3 0 0 0 0 1 +const SEQ4_STATUS_DEVID_CHANGED const c co con cons BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 0 no 0 7 0 0 0 0 1 += 0x00000800; = = = = = BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 ; 1 3 0 0 0 0 1 +const SEQ4_STATUS_DEVID_DELETED const c co con cons BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 0 no 0 7 0 0 0 0 1 += 0x00001000; = = = = = BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 ; 1 3 0 0 0 0 1 +struct SEQUENCE4resok struct s st str stru BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 4 no 0 9 0 0 0 0 1 +sessionid4 sessionid4 sessionid4 s se ses sess BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 4 no 0 4 0 0 0 0 1 +sr_sessionid; sr_sessionid; sr_sessionid; s sr sr_ sr_s BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 4 ; 1 5 0 0 0 0 1 +sequenceid4 sequenceid4 sequenceid4 s se seq sequ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 4 no 0 4 0 0 0 0 1 +sr_sequenceid; sr_sequenceid; sr_sequenceid; s sr sr_ sr_s BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 4 ; 1 5 0 0 0 0 1 +slotid4 slotid4 slotid4 s sl slo slot BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 4 no 0 3 0 0 0 0 1 +sr_slotid; sr_slotid; sr_slotid; s sr sr_ sr_s BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 4 ; 1 4 0 0 0 0 1 +slotid4 slotid4 slotid4 s sl slo slot BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 4 no 0 3 0 0 0 0 1 +sr_highest_slotid; sr_highest_slotid; sr_highest_slotid; s sr sr_ sr_h BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 4 ; 1 7 0 0 0 0 1 +slotid4 slotid4 slotid4 s sl slo slot BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 4 no 0 3 0 0 0 0 1 +sr_target_highest_slotid; sr_target_highest_slotid; sr_target_highest_slotid; s sr sr_ sr_t BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 4 ; 1 10 0 0 0 0 1 +uint32_t uint32_t uint32_t u ui uin uint BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 4 no 0 3 0 0 0 0 1 +sr_status_flags; sr_status_flags; sr_status_flags; s sr sr_ sr_s BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 4 ; 1 6 0 0 0 0 1 +}; }; }; } }; }; }; BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 4 ; 1 1 0 0 0 0 1 +union SEQUENCE4res union u un uni unio BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 5 () 2 10 0 0 0 0 1 +case NFS4_OK: case c ca cas case BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 10 5 : 1 2 0 0 0 0 1 +SEQUENCE4resok sr_resok4; sequence4resok S SE SEQ SEQU BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 5 ; 1 5 0 0 0 0 1 +default: default: default: d de def defa BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 5 : 1 1 0 0 0 0 1 +void; void; void; v vo voi void BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 5 ; 1 1 0 0 0 0 1 +}; }; }; } }; }; }; BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 5 ; 1 0 0 0 0 0 1 +18.46.3. DESCRIPTION 18.46.3. 1 18 18. 18.4 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 6 ... 3 10 0 0 0 0 1 +The SEQUENCE the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 6 no 0 10 0 0 0 0 1 +request control request r re req requ BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 6 . 1 7 0 0 0 0 1 +SEQUENCE MUST sequence S SE SEQ SEQU BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 10 7 no 0 10 0 0 0 0 1 +it appears. it i it it it BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 7 . 1 9 0 0 0 0 1 +is found is i is is is BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 7 . 1 9 0 0 0 0 1 +other than other o ot oth othe BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 7 ,,, 3 8 0 0 0 0 1 +CREATE_SESSION, and create_session, C CR CRE CREA BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 7 ,, 2 9 0 0 0 0 1 +operation in operation o op ope oper BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 7 . 1 8 0 0 0 0 1 +NFS4ERR_OP_NOT_IN_SESSION if nfs4err_op_not_in_session N NF NFS NFS4 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 7 no 0 8 0 0 0 0 1 +COMPOUND. COMPOUND. compound. C CO COM COMP BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 10 7 . 1 1 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 10 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 11 , 1 10 0 0 0 0 0 +[Page 580] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 10 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 10 0 no 0 4 0 0 0 0 1 +If SEQUENCE if I If If If BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 0 no 0 9 0 0 0 0 1 +session via session s se ses sess BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 0 , 1 10 0 0 0 0 1 +association enforcement association a as ass asso BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 0 (.), 4 9 0 0 0 0 1 +server returns server s se ser serv BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 0 . 1 7 0 0 0 0 1 +The sa_sessionid the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 1 no 0 9 0 0 0 0 1 +request applies. request r re req requ BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 1 .. 2 10 0 0 0 0 1 +The sa_slotid the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 1 no 0 9 0 0 0 0 1 +request. The request. r re req requ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 1 . 1 9 0 0 0 0 1 +request for request r re req requ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 1 (). 3 10 0 0 0 0 1 +equal sa_slotid. equal e eq equ equa BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 1 .. 2 10 0 0 0 0 1 +The sa_highest_slotid the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 2 no 0 9 0 0 0 0 1 +client has client c cl cli clie BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 2 ;. 2 9 0 0 0 0 1 +The server the T Th The The BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 2 "": 3 10 0 0 0 0 1 +sr_target_highest_slotid. The sr_target_highest_slotid. s sr sr_ sr_t BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 2 . 1 9 0 0 0 0 1 +server will server s se ser serv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 2 , 1 9 0 0 0 0 1 +less than less l le les less BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 2 (... 4 9 0 0 0 0 1 +for an for f fo for for BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 2 ). 2 9 0 0 0 0 1 +would prefer would w wo wou woul BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 2 . 1 8 0 0 0 0 1 +If sa_cachethis if I If If If BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 5 , 1 9 0 0 0 0 1 +server cache server s se ser serv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 5 ';, 3 10 0 0 0 0 1 +the server the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 5 (....). 7 9 0 0 0 0 1 +MAY cache may M MA MAY MAY BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 1 1 0 0 1 0 0 10 5 . 1 9 0 0 0 0 1 +cache the cache c ca cac cach BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 5 , 1 9 0 0 0 0 1 +request at request r re req requ BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 5 . 1 6 0 0 0 0 1 +The response the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 7 no 0 9 0 0 0 0 1 +flags (sr_status_flags) flags f fl fla flag BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 7 () 2 9 0 0 0 0 1 +related to related r re rel rela BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 7 ' 1 9 0 0 0 0 1 +paths. Note paths. p pa pat path BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 7 . 1 10 0 0 0 0 1 +when lock when w wh whe when BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 7 ( 1 10 0 0 0 0 1 +is persistent is i is is is BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 7 ; 1 9 0 0 0 0 1 +lock state lock l lo loc lock BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 10 7 ) 1 8 0 0 0 0 1 +instance. instance. instance. i in ins inst BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 7 . 1 1 0 0 0 0 1 +SEQ4_STATUS_CB_PATH_DOWN SEQ4_STATUS_CB_PATH_DOWN seq4_status_cb_path_down S SE SEQ SEQ4 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 9 no 0 3 0 0 0 0 1 +When set, when W Wh Whe When BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 9 , 1 10 0 0 0 0 1 +path for path p pa pat path BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 9 , 1 9 0 0 0 0 1 +necessary for necessary n ne nec nece BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 9 -. 2 9 0 0 0 0 1 +set on set s se set set BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 9 no 0 9 0 0 0 0 1 +client ID client c cl cli clie BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 9 no 0 9 0 0 0 0 1 +session associated session s se ses sess BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 9 .- 2 9 0 0 0 0 1 +establish a establish e es est esta BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 9 , 1 10 0 0 0 0 1 +recallable state recallable r re rec reca BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 9 . 1 3 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 10 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 11 , 1 10 0 0 0 0 0 +[Page 581] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 10 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 10 0 no 0 4 0 0 0 0 1 +SEQ4_STATUS_CB_PATH_DOWN_SESSION SEQ4_STATUS_CB_PATH_DOWN_SESSION seq4_status_cb_path_down_session S SE SEQ SEQ4 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 0 no 0 4 0 0 0 0 1 +When set, when W Wh Whe When BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 0 , 1 8 0 0 0 0 1 +backchannel. There backchannel. b ba bac back BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 0 . 1 5 0 0 0 0 1 +SEQ4_STATUS_CB_PATH_DOWN_SESSION may seq4_status_cb_path_down_session S SE SEQ SEQ4 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 0 no 0 7 0 0 0 0 1 +SEQ4_STATUS_CB_PATH_DOWN. First seq4_status_cb_path_down. S SE SEQ SEQ4 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 0 . 1 9 0 0 0 0 1 +applies specifically applies a ap app appl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 0 (..,, 5 9 0 0 0 0 1 +Section 20.8) section S Se Sec Sect BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 0 .). 3 9 0 0 0 0 1 +send a send s se sen send BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 0 , 1 9 0 0 0 0 1 +reply. The reply. r re rep repl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 0 . 1 8 0 0 0 0 1 +received the received r re rec rece BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 0 ,, 2 9 0 0 0 0 1 +retry, the retry, r re ret retr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 0 , 1 9 0 0 0 0 1 +session. The session. s se ses sess BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 0 . 1 8 0 0 0 0 1 +indication to indication i in ind indi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 0 no 0 9 0 0 0 0 1 +to the to t to to to BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 0 '. 2 8 0 0 0 0 1 +SEQUENCE responses sequence S SE SEQ SEQU BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 10 0 no 0 10 0 0 0 0 1 +with the with w wi wit with BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 0 '.- 3 8 0 0 0 0 1 +establish a establish e es est esta BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 0 , 1 9 0 0 0 0 1 +recallable state recallable r re rec reca BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 0 . 1 3 0 0 0 0 1 +SEQ4_STATUS_CB_GSS_CONTEXTS_EXPIRING SEQ4_STATUS_CB_GSS_CONTEXTS_EXPIRING seq4_status_cb_gss_contexts_expiring S SE SEQ SEQ4 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 5 no 0 5 0 0 0 0 1 +When set, when W Wh Whe When BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 5 , 1 9 0 0 0 0 1 +assigned to assigned a as ass assi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 5 ' 1 10 0 0 0 0 1 +equal to equal e eq equ equa BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 5 . 1 9 0 0 0 0 1 +replies until replies r re rep repl BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 5 : 1 8 0 0 0 0 1 +* All * * * * * BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 6 *' 2 10 0 0 0 0 1 +been destroyed been b be bee been BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 6 -. 2 9 0 0 0 0 1 +* At * * * * * BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 7 * 1 10 0 0 0 0 1 +backchannel. backchannel. backchannel. b ba bac back BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 7 . 1 2 0 0 0 0 1 +* The * * * * * BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 7 *- 2 10 0 0 0 0 1 +RPCSEC_GSS handle rpcsec_gss R RP RPC RPCS BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 7 no 0 9 0 0 0 0 1 +time (relative time t ti tim time BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 7 ( 1 9 0 0 0 0 1 +sent) sent) sent) s se sen sent BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 7 ) 1 0 0 0 0 0 1 +SEQ4_STATUS_CB_GSS_CONTEXTS_EXPIRED SEQ4_STATUS_CB_GSS_CONTEXTS_EXPIRED seq4_status_cb_gss_contexts_expired S SE SEQ SEQ4 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 8 no 0 5 0 0 0 0 1 +When set, when W Wh Whe When BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 8 ,- 2 8 0 0 0 0 1 +RPCSEC_GSS handles rpcsec_gss R RP RPC RPCS BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 8 ' 1 9 0 0 0 0 1 +expired or expired e ex exp expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 8 . 1 9 0 0 0 0 1 +SEQUENCE replies sequence S SE SEQ SEQU BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 10 8 -- 2 9 0 0 0 0 1 +context for context c co con cont BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 8 ' 1 10 0 0 0 0 1 +least one least l le lea leas BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 8 no 0 8 0 0 0 0 1 +backchannel. backchannel. backchannel. b ba bac back BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 8 . 1 2 0 0 0 0 1 +SEQ4_STATUS_EXPIRED_ALL_STATE_REVOKED SEQ4_STATUS_EXPIRED_ALL_STATE_REVOKED seq4_status_expired_all_state_revoked S SE SEQ SEQ4 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 10 no 0 5 0 0 0 0 1 +When set, when W Wh Whe When BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 10 , 1 10 0 0 0 0 1 +server released server s se ser serv BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 10 '. 2 9 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 10 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 11 , 1 10 0 0 0 0 0 +[Page 582] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 10 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 10 0 no 0 4 0 0 0 0 1 +bit remains bit b bi bit bit BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 0 no 0 10 0 0 0 0 1 +locks has locks l lo loc lock BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 0 ( 1 8 0 0 0 0 1 +Section 18.38), section S Se Sec Sect BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 0 .), 3 8 0 0 0 0 1 +destroying all destroying d de des dest BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 0 (),( 4 9 0 0 0 0 1 +DESTROY_CLIENTID), and destroy_clientid), D DE DES DEST BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 0 ), 2 7 0 0 0 0 1 +CREATE_SESSION to create_session C CR CRE CREA BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 0 . 1 6 0 0 0 0 1 +SEQ4_STATUS_EXPIRED_SOME_STATE_REVOKED SEQ4_STATUS_EXPIRED_SOME_STATE_REVOKED seq4_status_expired_some_state_revoked S SE SEQ SEQ4 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 2 no 0 6 0 0 0 0 1 +When set, when W Wh Whe When BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 2 ,' 2 10 0 0 0 0 1 +been revoked been b be bee been BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 2 no 0 9 0 0 0 0 1 +another client's another a an ano anot BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 2 '. 2 9 0 0 0 0 1 +remains set remains r re rem rema BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 2 no 0 9 0 0 0 0 1 +locks has locks l lo loc lock BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 2 . 1 8 0 0 0 0 1 +SEQ4_STATUS_ADMIN_STATE_REVOKED SEQ4_STATUS_ADMIN_STATE_REVOKED seq4_status_admin_state_revoked S SE SEQ SEQ4 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 4 no 0 4 0 0 0 0 1 +When set, when W Wh Whe When BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 4 , 1 9 0 0 0 0 1 +without expiration without w wi wit with BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 4 , 1 9 0 0 0 0 1 +action. This action. a ac act acti BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 4 . 1 10 0 0 0 0 1 +the loss the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 4 no 0 8 0 0 0 0 1 +FREE_STATEID. FREE_STATEID. free_stateid. F FR FRE FREE BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 4 . 1 2 0 0 0 0 1 +SEQ4_STATUS_RECALLABLE_STATE_REVOKED SEQ4_STATUS_RECALLABLE_STATE_REVOKED seq4_status_recallable_state_revoked S SE SEQ SEQ4 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 5 no 0 5 0 0 0 0 1 +When set, when W Wh Whe When BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 5 , 1 10 0 0 0 0 1 +revoked without revoked r re rev revo BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 5 , 1 8 0 0 0 0 1 +client's failure client's c cl cli clie BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 5 ', 2 9 0 0 0 0 1 +consequence of consequence c co con cons BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 5 no 0 9 0 0 0 0 1 +failing to failing f fa fai fail BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 5 - 1 6 0 0 0 0 1 +SEQ4_STATUS_CB_PATH_DOWN, SEQ4_STATUS_CB_PATH_DOWN_SESSION, seq4_status_cb_path_down, S SE SEQ SEQ4 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 5 ,, 2 9 0 0 0 0 1 +SEQ4_STATUS_CB_GSS_CONTEXTS_EXPIRED status seq4_status_cb_gss_contexts_expired S SE SEQ SEQ4 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 5 . 1 10 0 0 0 0 1 +remains set remains r re rem rema BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 5 no 0 9 0 0 0 0 1 +locks has locks l lo loc lock BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 5 . 1 7 0 0 0 0 1 +SEQ4_STATUS_LEASE_MOVED SEQ4_STATUS_LEASE_MOVED seq4_status_lease_moved S SE SEQ SEQ4 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 8 no 0 3 0 0 0 0 1 +When set, when W Wh Whe When BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 8 , 1 10 0 0 0 0 1 +transferred to transferred t tr tra tran BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 8 . 1 8 0 0 0 0 1 +continue until continue c co con cont BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 8 no 0 9 0 0 0 0 1 +server receives server s se ser serv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 8 no 0 9 0 0 0 0 1 +fs_locations_info attribute fs_locations_info f fs fs_ fs_l BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 8 no 0 9 0 0 0 0 1 +which a which w wh whi whic BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 8 . 1 7 0 0 0 0 1 +Section 11.10.9.1. section S Se Sec Sect BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 8 .... 4 2 0 0 0 0 1 +SEQ4_STATUS_RESTART_RECLAIM_NEEDED SEQ4_STATUS_RESTART_RECLAIM_NEEDED seq4_status_restart_reclaim_needed S SE SEQ SEQ4 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 10 no 0 5 0 0 0 0 1 +When set, when W Wh Whe When BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 10 ,, 2 10 0 0 0 0 1 +reclaim locking reclaim r re rec recl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 10 . 1 8 0 0 0 0 1 +RECLAIM_COMPLETE (Section reclaim_complete R RE REC RECL BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 10 (.), 4 10 0 0 0 0 1 +return SEQ4_STATUS_RESTART_RECLAIM_NEEDED. return r re ret retu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 10 . 1 6 0 0 0 0 1 +SEQ4_STATUS_BACKCHANNEL_FAULT SEQ4_STATUS_BACKCHANNEL_FAULT seq4_status_backchannel_fault S SE SEQ SEQ4 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 11 no 0 10 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 10 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 11 , 1 10 0 0 0 0 0 +[Page 583] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 10 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 10 0 no 0 4 0 0 0 0 1 +The server the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 0 no 0 8 0 0 0 0 1 +backchannel (e.g., backchannel b ba bac back BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 0 (.., 4 10 0 0 0 0 1 +in the in i in in in BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 10 0 ). 2 9 0 0 0 0 1 +on the on o on on on BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 0 ', 2 9 0 0 0 0 1 +to complete to t to to to BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 0 , 1 9 0 0 0 0 1 +session. session. session. s se ses sess BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 0 . 1 1 0 0 0 0 1 +SEQ4_STATUS_DEVID_CHANGED SEQ4_STATUS_DEVID_CHANGED seq4_status_devid_changed S SE SEQ SEQ4 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 2 no 0 4 0 0 0 0 1 +The client the T Th The The BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 2 no 0 9 0 0 0 0 1 +changed a changed c ch cha chan BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 2 . 1 9 0 0 0 0 1 +stay present stay s st sta stay BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 2 no 0 10 0 0 0 0 1 +GETDEVICEINFO. GETDEVICEINFO. getdeviceinfo. G GE GET GETD BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 2 . 1 2 0 0 0 0 1 +SEQ4_STATUS_DEVID_DELETED SEQ4_STATUS_DEVID_DELETED seq4_status_devid_deleted S SE SEQ SEQ4 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 3 no 0 4 0 0 0 0 1 +The client the T Th The The BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 3 no 0 10 0 0 0 0 1 +deleted a deleted d de del dele BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 3 . 1 10 0 0 0 0 1 +stay in stay s st sta stay BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 3 no 0 9 0 0 0 0 1 +device ID device d de dev devi BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 3 . 1 10 0 0 0 0 1 +The value the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 4 no 0 10 0 0 0 0 1 +sequence ID sequence s se seq sequ BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 4 . 1 8 0 0 0 0 1 +o If o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 10 5 ' 1 9 0 0 0 0 1 +sequence ID sequence s se seq sequ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 5 (), 3 10 0 0 0 0 1 +is less is i is is is BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 5 ( 1 9 0 0 0 0 1 +the unsigned the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 5 ), 2 9 0 0 0 0 1 +NFS4ERR_SEQ_MISORDERED. NFS4ERR_SEQ_MISORDERED. nfs4err_seq_misordered. N NF NFS NFS4 BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 5 . 1 3 0 0 0 0 1 +o If o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 10 6 , 1 10 0 0 0 0 1 +a retry, a a a a a BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 1 0 0 0 0 0 10 6 , 1 9 0 0 0 0 1 +cache. The cache. c ca cac cach BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 6 .. 2 8 0 0 0 0 1 +o If o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 10 7 () 2 10 0 0 0 0 1 +the cached the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 7 ,,' 3 10 0 0 0 0 1 +sequence ID sequence s se seq sequ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 7 . 1 8 0 0 0 0 1 +SEQUENCE, if sequence, S SE SEQ SEQU BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 10 7 ,,. 3 8 0 0 0 0 1 +operations, the operations, o op ope oper BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 7 , 1 10 0 0 0 0 1 +in the in i in in in BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 10 7 ,', 3 9 0 0 0 0 1 +the lease. the t th the the BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 7 . 1 1 0 0 0 0 1 +If the if I If If If BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 9 no 0 9 0 0 0 0 1 +different request, different d di dif diff BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 9 , 1 9 0 0 0 0 1 +retry of retry r re ret retr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 9 . 1 10 0 0 0 0 1 +the client's the t th the the BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 9 '. 2 9 0 0 0 0 1 +If SEQUENCE if I If If If BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 10 ,( 2 9 0 0 0 0 1 +ID, cached id, I ID ID, ID, BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 10 ,), 3 10 0 0 0 0 1 +be renewed. be b be be be BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 10 . 1 1 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 10 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 11 , 1 10 0 0 0 0 0 +[Page 584] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 10 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 10 0 no 0 4 0 0 0 0 1 +If SEQUENCE if I If If If BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 0 , 1 9 0 0 0 0 1 +renewed (see renewed r re ren rene BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 0 (.), 4 5 0 0 0 0 1 +SEQ4_STATUS_EXPIRED_ALL_STATE_REVOKED is seq4_status_expired_all_state_revoked S SE SEQ SEQ4 BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 0 . 1 10 0 0 0 0 1 +18.46.4. IMPLEMENTATION 18.46.4. 1 18 18. 18.4 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 1 ... 3 10 0 0 0 0 1 +The server the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 1 no 0 9 0 0 0 0 1 +order to order o or ord orde BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 1 no 0 10 0 0 0 0 1 +stateid as stateid s st sta stat BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 1 /. 2 5 0 0 0 0 1 +If the if I If If If BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 2 , 1 9 0 0 0 0 1 +received after received r re rec rece BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 2 no 0 9 0 0 0 0 1 +and recorded and a an and and BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 2 . 1 9 0 0 0 0 1 +In this in I In In In BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 10 2 ,, 2 10 0 0 0 0 1 +that were that t th tha that BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 2 no 0 9 0 0 0 0 1 +NFS4ERR_DEADSESSION. NFS4ERR_DEADSESSION. nfs4err_deadsession. N NF NFS NFS4 BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 2 . 1 3 0 0 0 0 1 +Depending on depending D De Dep Depe BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 5 no 0 8 0 0 0 0 1 +successfully performed successfully s su suc succ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 5 , 1 9 0 0 0 0 1 +will also will w wi wil will BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 10 5 . 1 9 0 0 0 0 1 +when these when w wh whe when BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 5 , 1 9 0 0 0 0 1 +that applies that t th tha that BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 5 no 0 9 0 0 0 0 1 +client ID, client c cl cli clie BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 5 ,, 2 9 0 0 0 0 1 +after these after a af aft afte BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 5 ,. 2 9 0 0 0 0 1 +partially executed partially p pa par part BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 5 , 1 9 0 0 0 0 1 +processed during processed p pr pro proc BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 5 , 1 10 0 0 0 0 1 +new one new n ne new new BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 5 ., 2 9 0 0 0 0 1 +NFS4ERR_DEADSESSION will nfs4err_deadsession N NF NFS NFS4 BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 5 . 1 8 0 0 0 0 1 +18.47. Operation 18.47. 1 18 18. 18.4 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 9 ..:- 4 10 0 0 0 0 1 +18.47.1. ARGUMENT 18.47.1. 1 18 18. 18.4 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 10 ... 3 10 0 0 0 0 1 +struct ssa_digest_input4 struct s st str stru BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 10 no 0 10 0 0 0 0 1 +SEQUENCE4args sdi_seqargs; sequence4args S SE SEQ SEQU BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 10 ; 1 10 0 0 0 0 1 +}; }; }; } }; }; }; BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 10 ; 1 1 0 0 0 0 1 +struct SET_SSV4args struct s st str stru BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 10 no 0 10 0 0 0 0 1 +opaque opaque opaque o op opa opaq BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 10 no 0 3 0 0 0 0 1 +ssa_ssv<>; ssa_ssv<>; ssa_ssv<>; s ss ssa ssa_ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 10 ; 1 5 0 0 0 0 1 +opaque opaque opaque o op opa opaq BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 10 no 0 3 0 0 0 0 1 +ssa_digest<>; ssa_digest<>; ssa_digest<>; s ss ssa ssa_ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 10 ; 1 6 0 0 0 0 1 +}; }; }; } }; }; }; BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 10 ; 1 1 0 0 0 0 1 +18.47.2. RESULT 18.47.2. 1 18 18. 18.4 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 11 ... 3 10 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 10 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 11 , 1 10 0 0 0 0 0 +[Page 585] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 10 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 10 0 no 0 4 0 0 0 0 1 +struct ssr_digest_input4 struct s st str stru BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 0 no 0 10 0 0 0 0 1 +SEQUENCE4res sdi_seqres; sequence4res S SE SEQ SEQU BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 0 ; 1 9 0 0 0 0 1 +}; }; }; } }; }; }; BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 0 ; 1 1 0 0 0 0 1 +struct SET_SSV4resok struct s st str stru BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 0 no 0 10 0 0 0 0 1 +opaque opaque opaque o op opa opaq BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 0 no 0 3 0 0 0 0 1 +ssr_digest<>; ssr_digest<>; ssr_digest<>; s ss ssr ssr_ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 0 ; 1 6 0 0 0 0 1 +}; }; }; } }; }; }; BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 0 ; 1 1 0 0 0 0 1 +union SET_SSV4res union u un uni unio BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 0 () 2 10 0 0 0 0 1 +case NFS4_OK: case c ca cas case BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 10 0 : 1 2 0 0 0 0 1 +SET_SSV4resok SET_SSV4resok set_ssv4resok S SE SET SET_ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 0 no 0 2 0 0 0 0 1 +ssr_resok4; ssr_resok4; ssr_resok4; s ss ssr ssr_ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 0 ; 1 2 0 0 0 0 1 +default: default: default: d de def defa BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 0 : 1 1 0 0 0 0 1 +void; void; void; v vo voi void BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 0 ; 1 1 0 0 0 0 1 +}; }; }; } }; }; }; BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 0 ; 1 0 0 0 0 0 1 +18.47.3. DESCRIPTION 18.47.3. 1 18 18. 18.4 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 1 ... 3 10 0 0 0 0 1 +This operation this T Th Thi This BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 1 . 1 9 0 0 0 0 1 +SET_SSV is set_ssv S SE SET SET_ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 1 ,. 2 9 0 0 0 0 1 +The SSV the T Th The The BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 1 (..) 4 10 0 0 0 0 1 +SET_SSV MUST set_ssv S SE SET SET_ BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 3 no 0 8 0 0 0 0 1 +COMPOUND. It compound. C CO COM COMP BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 10 3 . 1 9 0 0 0 0 1 +state protection state s st sta stat BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 3 (.); 4 10 0 0 0 0 1 +the server the t th the the BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 3 . 1 6 0 0 0 0 1 +The field the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 4 ( 1 10 0 0 0 0 1 +[59]) using [59]) [ [5 [59 [59] BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 4 []) 3 9 0 0 0 0 1 +current SSV current c cu cur curr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 4 (.. 3 9 0 0 0 0 1 +subkeys), and subkeys), s su sub subk BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 4 ),. 3 9 0 0 0 0 1 +The field the T Th The The BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 4 no 0 9 0 0 0 0 1 +operation for operation o op ope oper BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 4 . 1 8 0 0 0 0 1 +The argument the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 7 no 0 10 0 0 0 0 1 +SSV. The ssv. S SS SSV SSV. BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 7 .. 2 8 0 0 0 0 1 +In the in I In In In BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 10 7 , 1 9 0 0 0 0 1 +subkey derived subkey s su sub subk BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 7 , 1 9 0 0 0 0 1 +an XDR an a an an an BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 10 7 . 1 9 0 0 0 0 1 +sdi_seqres is sdi_seqres s sd sdi sdi_ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 7 no 0 10 0 0 0 0 1 +COMPOUND procedure compound C CO COM COMP BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 10 7 . 1 6 0 0 0 0 1 +As noted as A As As As BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 9 ., 2 8 0 0 0 0 1 +multiple concurrent multiple m mu mul mult BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 9 . 1 9 0 0 0 0 1 +MUST maintain must M MU MUS MUST BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 10 9 , 1 10 0 0 0 0 1 +first time first f fi fir firs BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 9 no 0 10 0 0 0 0 1 +first SET_SSV first f fi fir firs BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 9 . 1 9 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 10 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 11 , 1 10 0 0 0 0 0 +[Page 586] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 10 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 10 0 no 0 4 0 0 0 0 1 +SSV version ssv S SS SSV SSV BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 0 . 1 9 0 0 0 0 1 +corresponds to corresponds c co cor corr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 0 ,,, 3 10 0 0 0 0 1 +ssct_ssv_seq fields ssct_ssv_seq s ss ssc ssct BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 0 ( 1 8 0 0 0 0 1 +Section 2.10.9). section S Se Sec Sect BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 0 ..). 4 2 0 0 0 0 1 +18.47.4. IMPLEMENTATION 18.47.4. 1 18 18. 18.4 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 1 ... 3 10 0 0 0 0 1 +When the when W Wh Whe When BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 1 , 1 9 0 0 0 0 1 +computing the computing c co com comp BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 1 no 0 9 0 0 0 0 1 +with ssa_digest. with w wi wit with BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 1 ., 2 9 0 0 0 0 1 +error, NFS4ERR_BAD_SESSION_DIGEST. error, e er err erro BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 1 ,. 2 10 0 0 0 0 1 +another SET_SSV another a an ano anot BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 1 ., 2 10 0 0 0 0 1 +client recovers client c cl cli clie BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 1 no 0 8 0 0 0 0 1 +recomputed digest recomputed r re rec reco BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 1 . 1 8 0 0 0 0 1 +transport connection transport t tr tra tran BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 1 , 1 9 0 0 0 0 1 +but before but b bu but but BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 1 , 1 9 0 0 0 0 1 +considerations for considerations c co con cons BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 1 no 0 9 0 0 0 0 1 +associated with associated a as ass asso BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 1 . 1 9 0 0 0 0 1 +See Section see S Se See See BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 10 1 ... 3 3 0 0 0 0 1 +Clients SHOULD clients C Cl Cli Clie BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 5 no 0 9 0 0 0 0 1 +ssa_ssv, nor ssa_ssv, s ss ssa ssa_ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 5 ,( 2 10 0 0 0 0 1 +equal to equal e eq equ equa BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 5 no 0 10 0 0 0 0 1 +is created). is i is is is BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 5 ). 2 1 0 0 0 0 1 +Clients SHOULD clients C Cl Cli Clie BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 6 . 1 9 0 0 0 0 1 +support RPCSEC_GSS support s su sup supp BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 10 6 , 1 10 0 0 0 0 1 +SET_SSV }. set_ssv S SE SET SET_ BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 6 . 1 1 0 0 0 0 1 +A client a A A A A BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 1 0 0 0 0 0 10 7 ' 1 8 0 0 0 0 1 +credential because credential c cr cre cred BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 7 no 0 9 0 0 0 0 1 +non-SSV credentials. non-ssv n no non non- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 7 -., 3 8 0 0 0 0 1 +credential of credential c cr cre cred BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 7 no 0 9 0 0 0 0 1 +time (Section time t ti tim time BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 7 (...)., 7 9 0 0 0 0 1 +with SSV with w wi wit with BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 7 , 1 9 0 0 0 0 1 +value of value v va val valu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 7 , 1 8 0 0 0 0 1 +protecting the protecting p pr pro prot BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 7 no 0 10 0 0 0 0 1 +XORed in. xored X XO XOR XORe BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 10 7 . 1 1 0 0 0 0 1 +18.48. Operation 18.48. 1 18 18. 18.4 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 10 ..:- 4 10 0 0 0 0 1 +18.48.1. ARGUMENT 18.48.1. 1 18 18. 18.4 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 11 ... 3 10 0 0 0 0 1 +struct TEST_STATEID4args struct s st str stru BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 11 no 0 10 0 0 0 0 1 +stateid4 stateid4 stateid4 s st sta stat BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 11 no 0 3 0 0 0 0 1 +ts_stateids<>; ts_stateids<>; ts_stateids<>; t ts ts_ ts_s BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 11 ; 1 5 0 0 0 0 1 +}; }; }; } }; }; }; BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 11 ; 1 1 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 10 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 11 , 1 10 0 0 0 0 0 +[Page 587] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 10 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 10 0 no 0 4 0 0 0 0 1 +18.48.2. RESULT 18.48.2. 1 18 18. 18.4 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 0 ... 3 10 0 0 0 0 1 +struct TEST_STATEID4resok struct s st str stru BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 0 no 0 10 0 0 0 0 1 +nfsstat4 nfsstat4 nfsstat4 n nf nfs nfss BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 0 no 0 3 0 0 0 0 1 +tsr_status_codes<>; tsr_status_codes<>; tsr_status_codes<>; t ts tsr tsr_ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 0 ; 1 7 0 0 0 0 1 +}; }; }; } }; }; }; BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 0 ; 1 1 0 0 0 0 1 +union TEST_STATEID4res union u un uni unio BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 1 () 2 10 0 0 0 0 1 +case NFS4_OK: case c ca cas case BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 10 1 : 1 2 0 0 0 0 1 +TEST_STATEID4resok tsr_resok4; test_stateid4resok T TE TES TEST BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 1 ; 1 5 0 0 0 0 1 +default: default: default: d de def defa BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 1 : 1 1 0 0 0 0 1 +void; void; void; v vo voi void BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 1 ; 1 1 0 0 0 0 1 +}; }; }; } }; }; }; BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 1 ; 1 0 0 0 0 0 1 +18.48.3. DESCRIPTION 18.48.3. 1 18 18. 18.4 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 1 ... 3 10 0 0 0 0 1 +The TEST_STATEID the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 2 no 0 10 0 0 0 0 1 +stateids. It stateids. s st sta stat BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 2 ., 2 8 0 0 0 0 1 +definitely use definitely d de def defi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 2 no 0 10 0 0 0 0 1 +its stateids its i it its its BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 2 . 1 9 0 0 0 0 1 +occurs when occurs o oc occ occu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 2 no 0 10 0 0 0 0 1 +sr_status_flags set: sr_status_flags s sr sr_ sr_s BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 2 : 1 3 0 0 0 0 1 +o SEQ4_STATUS_EXPIRED_SOME_STATE_REVOKED o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 10 4 no 0 10 0 0 0 0 1 +o SEQ4_STATUS_EXPIRED_ADMIN_STATE_REVOKED o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 10 4 no 0 10 0 0 0 0 1 +o SEQ4_STATUS_EXPIRED_RECALLABLE_STATE_REVOKED o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 10 4 no 0 10 0 0 0 0 1 +The client the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 4 no 0 8 0 0 0 0 1 +validity of validity v va val vali BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 4 . 1 9 0 0 0 0 1 +set of set s se set set BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 4 no 0 9 0 0 0 0 1 +stateids in stateids s st sta stat BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 4 no 0 10 0 0 0 0 1 +subsequent stateids, subsequent s su sub subs BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 4 , 1 9 0 0 0 0 1 +tested by tested t te tes test BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 4 no 0 9 0 0 0 0 1 +request. request. request. r re req requ BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 4 . 1 1 0 0 0 0 1 +For each for F Fo For For BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 7 , 1 9 0 0 0 0 1 +returned if returned r re ret retu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 7 . 1 8 0 0 0 0 1 +Returning such returning R Re Ret Retu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 7 no 0 10 0 0 0 0 1 +COMPOUND processing compound C CO COM COMP BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 10 7 . 1 9 0 0 0 0 1 +stateid proceed stateid s st sta stat BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 7 no 0 9 0 0 0 0 1 +exceptions: exceptions: exceptions: e ex exc exce BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 7 : 1 1 0 0 0 0 1 +o There o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 10 10 , 1 10 0 0 0 0 1 +case for case c ca cas case BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 10 10 . 1 5 0 0 0 0 1 +o There o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 10 11 . 1 10 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 10 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 11 , 1 10 0 0 0 0 0 +[Page 588] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 10 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 10 0 no 0 4 0 0 0 0 1 +o Special o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 10 0 ( 1 10 0 0 0 0 1 +error code error e er err erro BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 0 ). 2 4 0 0 0 0 1 +All stateids all A Al All All BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 2 no 0 10 0 0 0 0 1 +the current the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 2 . 1 8 0 0 0 0 1 +instance of instance i in ins inst BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 2 (). 3 8 0 0 0 0 1 +The valid the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 5 no 0 9 0 0 0 0 1 +NFS4ERR_OK, NFS4ERR_BAD_STATEID, nfs4err_ok, N NF NFS NFS4 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 5 ,,, 3 8 0 0 0 0 1 +NFS4ERR_EXPIRED, NFS4ERR_ADMIN_REVOKED, nfs4err_expired, N NF NFS NFS4 BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 5 ,,. 3 10 0 0 0 0 1 +18.48.4. IMPLEMENTATION 18.48.4. 1 18 18. 18.4 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 7 ... 3 10 0 0 0 0 1 +See Sections see S Se See See BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 10 7 ...., 5 10 0 0 0 0 1 +lifetime, and lifetime, l li lif life BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 7 ,. 2 3 0 0 0 0 1 +18.49. Operation 18.49. 1 18 18. 18.4 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 9 ..:- 4 10 0 0 0 0 1 +18.49.1. ARGUMENT 18.49.1. 1 18 18. 18.4 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 10 ... 3 10 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 10 10 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 10 , 1 10 0 0 0 0 0 +[Page 589] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 10 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 10 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 10 0 no 0 4 0 0 0 0 1 +union deleg_claim4 union u un uni unio BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 0 () 2 10 0 0 0 0 1 +/* /* /* / /* /* /* BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 0 /* 2 0 0 0 0 0 1 +* No * * * * * BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 *. 2 9 0 0 0 0 1 +* request * * * * * BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 *. 2 9 0 0 0 0 1 +* by * * * * * BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 *. 2 3 0 0 0 0 1 +*/ */ */ * */ */ */ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 0 */ 2 0 0 0 0 0 1 +case CLAIM_FH: case c ca cas case BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 10 0 :/*.*/ 6 5 0 0 0 0 1 +/* CURRENT_FH: /* / /* /* /* BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 0 /*:*/ 5 7 0 0 0 0 1 +void; void; void; v vo voi void BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 0 ; 1 1 0 0 0 0 1 +/* /* /* / /* /* /* BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 3 /* 2 0 0 0 0 0 1 +* Right * * * * * BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 3 * 1 10 0 0 0 0 1 +* to * * * * * BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 3 *. 2 9 0 0 0 0 1 +* File * * * * * BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 3 *. 2 7 0 0 0 0 1 +*/ */ */ * */ */ */ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 3 */ 2 0 0 0 0 0 1 +case CLAIM_DELEG_PREV_FH: case c ca cas case BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 10 3 :/*.*/ 6 9 0 0 0 0 1 +/* CURRENT_FH: /* / /* /* /* BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 3 /*:*/ 5 8 0 0 0 0 1 +void; void; void; v vo voi void BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 3 ; 1 1 0 0 0 0 1 +/* /* /* / /* /* /* BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 6 /* 2 0 0 0 0 0 1 +* Right * * * * * BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 6 * 1 10 0 0 0 0 1 +* to * * * * * BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 6 *.. 3 9 0 0 0 0 1 +* Used * * * * * BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 6 *. 2 8 0 0 0 0 1 +*/ */ */ * */ */ */ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 6 */ 2 0 0 0 0 0 1 +case CLAIM_PREVIOUS: case c ca cas case BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 10 6 : 1 4 0 0 0 0 1 +/* CURRENT_FH: /* / /* /* /* BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 6 /*:*/ 5 7 0 0 0 0 1 +open_delegation_type4 open_delegation_type4 open_delegation_type4 o op ope open BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 6 no 0 4 0 0 0 0 1 +dc_delegate_type; dc_delegate_type; dc_delegate_type; d dc dc_ dc_d BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 6 ; 1 3 0 0 0 0 1 +}; }; }; } }; }; }; BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 6 ; 1 0 0 0 0 0 1 +struct WANT_DELEGATION4args struct s st str stru BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 9 no 0 10 0 0 0 0 1 +uint32_t uint32_t uint32_t u ui uin uint BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 9 no 0 3 0 0 0 0 1 +wda_want; wda_want; wda_want; w wd wda wda_ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 9 ; 1 3 0 0 0 0 1 +deleg_claim4 deleg_claim4 deleg_claim4 d de del dele BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 9 no 0 4 0 0 0 0 1 +wda_claim; wda_claim; wda_claim; w wd wda wda_ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 9 ; 1 3 0 0 0 0 1 +}; }; }; } }; }; }; BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 9 ; 1 1 0 0 0 0 1 +18.49.2. RESULT 18.49.2. 1 18 18. 18.4 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 9 ... 3 10 0 0 0 0 1 +union WANT_DELEGATION4res union u un uni unio BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 10 () 2 10 0 0 0 0 1 +case NFS4_OK: case c ca cas case BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 10 10 : 1 2 0 0 0 0 1 +open_delegation4 wdr_resok4; open_delegation4 o op ope open BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 10 ; 1 5 0 0 0 0 1 +default: default: default: d de def defa BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 10 : 1 1 0 0 0 0 1 +void; void; void; v vo voi void BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 10 ; 1 1 0 0 0 0 1 +}; }; }; } }; }; }; BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 10 ; 1 0 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 10 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 11 , 1 10 0 0 0 0 0 +[Page 590] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 10 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 10 0 no 0 4 0 0 0 0 1 +18.49.3. DESCRIPTION 18.49.3. 1 18 18. 18.4 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 0 ... 3 10 0 0 0 0 1 +Where this where W Wh Whe Wher BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 0 no 0 10 0 0 0 0 1 +for a for f fo for for BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 0 ,, 2 9 0 0 0 0 1 +server MAY server s se ser serv BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 0 . 1 7 0 0 0 0 1 +This operation this T Th Thi This BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 2 : 1 10 0 0 0 0 1 +o Get o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 10 2 . 1 10 0 0 0 0 1 +o Register o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 10 2 "", 3 10 0 0 0 0 1 +and be and a an and and BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 2 . 1 9 0 0 0 0 1 +The server the T Th The The BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 2 no 0 8 0 0 0 0 1 +callbacks. If callbacks. c ca cal call BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 2 ., 2 9 0 0 0 0 1 +it MUST it i it it it BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 2 , 1 9 0 0 0 0 1 +return with return r re ret retu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 2 no 0 9 0 0 0 0 1 +ond_server_will_push_deleg or ond_server_will_push_deleg o on ond ond_ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 2 no 0 9 0 0 0 0 1 +FALSE. When false. F FA FAL FALS BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 10 2 . 1 9 0 0 0 0 1 +by means by b by by by BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 2 , 1 9 0 0 0 0 1 +using a using u us usi usin BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 2 no 0 9 0 0 0 0 1 +CB_WANTS_CANCELLED operation. cb_wants_cancelled C CB CB_ CB_W BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 2 . 1 4 0 0 0 0 1 +o Cancel o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 10 7 . 1 10 0 0 0 0 1 +The client the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 7 no 0 10 0 0 0 0 1 +OPEN4_SHARE_ACCESS_WRITE in open4_share_access_write O OP OPE OPEN BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 7 ., 2 9 0 0 0 0 1 +ignore them. ignore i ig ign igno BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 7 . 1 1 0 0 0 0 1 +The meanings the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 8 no 0 10 0 0 0 0 1 +are in are a ar are are BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 8 ,. 2 5 0 0 0 0 1 +o OPEN4_SHARE_ACCESS_WANT_READ_DELEG o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 10 9 no 0 10 0 0 0 0 1 +o OPEN4_SHARE_ACCESS_WANT_WRITE_DELEG o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 10 9 no 0 10 0 0 0 0 1 +o OPEN4_SHARE_ACCESS_WANT_ANY_DELEG o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 10 9 no 0 10 0 0 0 0 1 +o OPEN4_SHARE_ACCESS_WANT_NO_DELEG. o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 10 9 ., 2 10 0 0 0 0 1 +flag SHOULD flag f fl fla flag BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 9 no 0 8 0 0 0 0 1 +WANT_DELEGATION, and want_delegation, W WA WAN WANT BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 9 ,. 2 7 0 0 0 0 1 +o OPEN4_SHARE_ACCESS_WANT_CANCEL o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 10 11 no 0 10 0 0 0 0 1 +o OPEN4_SHARE_ACCESS_WANT_SIGNAL_DELEG_WHEN_RESRC_AVAIL o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 10 11 no 0 10 0 0 0 0 1 +o OPEN4_SHARE_ACCESS_WANT_PUSH_DELEG_WHEN_UNCONTENDED o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 10 11 no 0 10 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 10 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 11 , 1 10 0 0 0 0 0 +[Page 591] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 10 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 10 0 no 0 4 0 0 0 0 1 +The handling the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 0 no 0 10 0 0 0 0 1 +OPEN. Information open. O OP OPE OPEN BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 10 0 ./ 2 9 0 0 0 0 1 +server is server s se ser serv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 0 no 0 9 0 0 0 0 1 +described in described d de des desc BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 0 . 1 6 0 0 0 0 1 +The successful the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 1 no 0 8 0 0 0 0 1 +open_delegation4, which open_delegation4, o op ope open BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 1 ,"" 3 9 0 0 0 0 1 +field in field f fi fie fiel BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 10 1 (..). 5 9 0 0 0 0 1 +The server the T Th The The BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 1 ' 1 9 0 0 0 0 1 +"delegation" with "delegation" " "d "de "del BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 1 "": 3 10 0 0 0 0 1 +delegation type delegation d de del dele BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 1 . 1 5 0 0 0 0 1 +If ((wda_want if I If If If BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 3 (() 3 7 0 0 0 0 1 +~OPEN4_SHARE_ACCESS_WANT_NO_DELEG) is ~open4_share_access_want_no_deleg) ~ ~O ~OP ~OPE BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 3 ), 2 9 0 0 0 0 1 +indicating no indicating i in ind indi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 3 - 1 10 0 0 0 0 1 +server MUST server s se ser serv BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 3 . 1 4 0 0 0 0 1 +The client the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 4 no 0 9 0 0 0 0 1 +WANT_DELEGATION operation want_delegation W WA WAN WANT BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 4 no 0 10 0 0 0 0 1 +delegation. Note delegation. d de del dele BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 4 . 1 9 0 0 0 0 1 +delegation (via delegation d de del dele BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 4 () 2 8 0 0 0 0 1 +cancellation of cancellation c ca can canc BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 4 , 1 10 0 0 0 0 1 +client. client. client. c cl cli clie BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 4 . 1 1 0 0 0 0 1 +If WANT_DELEGATION if I If If If BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 5 , 1 9 0 0 0 0 1 +returns NFS4_OK, returns r re ret retu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 5 , 1 8 0 0 0 0 1 +OPEN4_DELEGATE_NONE_EXT, and open4_delegate_none_ext, O OP OPE OPEN BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 5 ,, 2 9 0 0 0 0 1 +Section 18.16. section S Se Sec Sect BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 5 .. 2 9 0 0 0 0 1 +that are that t th tha that BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 5 ., 2 10 0 0 0 0 1 +NF4CHR, NF4LNK, nf4chr, N NF NF4 NF4C BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 5 ,,,. 4 9 0 0 0 0 1 +OPEN4_SHARE_ACCESS_WANT_WRITE_DELEG without open4_share_access_want_write_deleg O OP OPE OPEN BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 5 no 0 6 0 0 0 0 1 +OPEN4_SHARE_ACCESS_WANT_READ_DELEG on open4_share_access_want_read_deleg O OP OPE OPEN BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 5 no 0 9 0 0 0 0 1 +aforementioned file aforementioned a af afo afor BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 5 , 1 7 0 0 0 0 1 +wdr_resok4.od_whynone.ond_why to wdr_resok4.od_whynone.ond_why w wd wdr wdr_ BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 5 ... 3 9 0 0 0 0 1 +18.49.4. IMPLEMENTATION 18.49.4. 1 18 18. 18.4 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 8 ... 3 10 0 0 0 0 1 +A request a A A A A BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 1 0 0 0 0 0 10 8 no 0 9 0 0 0 0 1 +trigger the trigger t tr tri trig BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 8 . 1 10 0 0 0 0 1 +treat some treat t tr tre trea BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 10 8 no 0 9 0 0 0 0 1 +will trigger will w wi wil will BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 10 8 , 1 9 0 0 0 0 1 +expected to expected e ex exp expe BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 8 . 1 5 0 0 0 0 1 +Servers will servers S Se Ser Serv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 10 10 no 0 10 0 0 0 0 1 +on the on o on on on BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 10 . 1 8 0 0 0 0 1 +generally be generally g ge gen gene BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 10 no 0 8 0 0 0 0 1 +inconsistent with inconsistent i in inc inco BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 10 . 1 9 0 0 0 0 1 +delegations is delegations d de del dele BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 10 , 1 9 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 10 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 11 , 1 10 0 0 0 0 0 +[Page 592] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 10 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 10 0 no 0 4 0 0 0 0 1 +opportunity to opportunity o op opp oppo BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 0 no 0 10 0 0 0 0 1 +view. view. view. v vi vie view BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 0 . 1 0 0 0 0 0 1 +18.50. Operation 18.50. 1 18 18. 18.5 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 1 ..:- 4 10 0 0 0 0 1 +18.50.1. ARGUMENT 18.50.1. 1 18 18. 18.5 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 1 ... 3 10 0 0 0 0 1 +struct DESTROY_CLIENTID4args struct s st str stru BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 1 no 0 10 0 0 0 0 1 +clientid4 clientid4 clientid4 c cl cli clie BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 1 no 0 3 0 0 0 0 1 +dca_clientid; dca_clientid; dca_clientid; d dc dca dca_ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 1 ; 1 4 0 0 0 0 1 +}; }; }; } }; }; }; BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 1 ; 1 0 0 0 0 0 1 +18.50.2. RESULT 18.50.2. 1 18 18. 18.5 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 2 ... 3 10 0 0 0 0 1 +struct DESTROY_CLIENTID4res struct s st str stru BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 2 no 0 10 0 0 0 0 1 +nfsstat4 nfsstat4 nfsstat4 n nf nfs nfss BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 2 no 0 3 0 0 0 0 1 +dcr_status; dcr_status; dcr_status; d dc dcr dcr_ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 2 ; 1 4 0 0 0 0 1 +}; }; }; } }; }; }; BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 2 ; 1 1 0 0 0 0 1 +18.50.3. DESCRIPTION 18.50.3. 1 18 18. 18.5 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 2 ... 3 10 0 0 0 0 1 +The DESTROY_CLIENTID the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 2 . 1 9 0 0 0 0 1 +sessions (both sessions s se ses sess BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 10 2 (-),,,, 7 8 0 0 0 0 1 +layouts, and/or layouts, l la lay layo BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 2 ,/(.) 5 9 0 0 0 0 1 +lease of lease l le lea leas BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 2 ,. 2 10 0 0 0 0 1 +DESTROY_CLIENTID MAY destroy_clientid D DE DES DEST BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 2 no 0 10 0 0 0 0 1 +the client the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 2 no 0 10 0 0 0 0 1 +as the as a as as as BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 2 ., 2 9 0 0 0 0 1 +then the then t th the then BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 2 . 1 7 0 0 0 0 1 +If DESTROY_CLIENTID if I If If If BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 6 , 1 10 0 0 0 0 1 +operation in operation o op ope oper BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 6 (, 2 10 0 0 0 0 1 +NFS4ERR_NOT_ONLY_OP). If nfs4err_not_only_op). N NF NFS NFS4 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 6 ). 2 9 0 0 0 0 1 +preceding it, preceding p pr pre prec BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 6 , 1 9 0 0 0 0 1 +error in error e er err erro BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 6 , 1 9 0 0 0 0 1 +successfully executed. successfully s su suc succ BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 6 . 1 3 0 0 0 0 1 +18.50.4. IMPLEMENTATION 18.50.4. 1 18 18. 18.5 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 9 ... 3 10 0 0 0 0 1 +DESTROY_CLIENTID allows destroy_clientid D DE DES DEST BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 9 no 0 10 0 0 0 0 1 +consumed by consumed c co con cons BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 9 , 1 9 0 0 0 0 1 +generated the generated g ge gen gene BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 9 . 1 9 0 0 0 0 1 +client ID, client c cl cli clie BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 9 , 1 9 0 0 0 0 1 +EXCHANGE_ID operation. exchange_id E EX EXC EXCH BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 9 . 1 3 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 10 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 11 , 1 10 0 0 0 0 0 +[Page 593] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 10 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 10 0 no 0 4 0 0 0 0 1 +18.51. Operation 18.51. 1 18 18. 18.5 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 0 ..:- 4 10 0 0 0 0 1 +18.51.1. ARGUMENT 18.51.1. 1 18 18. 18.5 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 0 ... 3 10 0 0 0 0 1 +<CODE BEGINS> <code < <C <CO <COD BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 1 no 0 10 0 0 0 0 1 +struct RECLAIM_COMPLETE4args struct s st str stru BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 1 no 0 10 0 0 0 0 1 +/* /* /* / /* /* /* BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 1 /* 2 0 0 0 0 0 1 +* If * * * * * BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 1 *, 2 7 0 0 0 0 1 +* * * * * * * BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 1 * 1 0 0 0 0 0 1 +* * * * * * * BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 1 * 1 0 0 0 0 0 1 +CURRENT_FH: object current_fh: C CU CUR CURR BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 1 : 1 7 0 0 0 0 1 +* * * * * * * BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 1 * 1 0 0 0 0 0 1 +file system file f fi fil file BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 1 no 0 7 0 0 0 0 1 +* * * * * * * BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 1 * 1 0 0 0 0 0 1 +complete for. complete c co com comp BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 1 . 1 4 0 0 0 0 1 +*/ */ */ * */ */ */ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 1 */ 2 0 0 0 0 0 1 +bool bool bool b bo boo bool BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 1 no 0 1 0 0 0 0 1 +rca_one_fs; rca_one_fs; rca_one_fs; r rc rca rca_ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 1 ; 1 3 0 0 0 0 1 +}; }; }; } }; }; }; BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 1 ; 1 0 0 0 0 0 1 +<CODE ENDS> <code < <C <CO <COD BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 2 no 0 10 0 0 0 0 1 +18.51.2. RESULTS 18.51.2. 1 18 18. 18.5 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 3 ... 3 10 0 0 0 0 1 +<CODE BEGINS> <code < <C <CO <COD BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 3 no 0 10 0 0 0 0 1 +struct RECLAIM_COMPLETE4res struct s st str stru BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 3 no 0 10 0 0 0 0 1 +nfsstat4 nfsstat4 nfsstat4 n nf nfs nfss BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 3 no 0 3 0 0 0 0 1 +rcr_status; rcr_status; rcr_status; r rc rcr rcr_ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 3 ; 1 4 0 0 0 0 1 +}; }; }; } }; }; }; BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 3 ; 1 1 0 0 0 0 1 +<CODE ENDS> <code < <C <CO <COD BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 3 no 0 10 0 0 0 0 1 +18.51.3. DESCRIPTION 18.51.3. 1 18 18. 18.5 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 4 ... 3 10 0 0 0 0 1 +A RECLAIM_COMPLETE a A A A A BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 1 0 0 0 0 0 10 4 no 0 10 0 0 0 0 1 +reclaimed all reclaimed r re rec recl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 4 no 0 8 0 0 0 0 1 +reclaim, when reclaim, r re rec recl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 4 , 1 9 0 0 0 0 1 +or the or o or or or BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 4 . 1 9 0 0 0 0 1 +types of types t ty typ type BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 4 : 1 5 0 0 0 0 1 +o When o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 10 6 ,. 2 10 0 0 0 0 1 +This indicates this T Th Thi This BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 6 no 0 9 0 0 0 0 1 +the previous the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 6 . 1 8 0 0 0 0 1 +filehandle need filehandle f fi fil file BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 6 . 1 5 0 0 0 0 1 +o When o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 10 8 ,- 2 10 0 0 0 0 1 +is being is i is is is BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 8 . 1 9 0 0 0 0 1 +fs (the fs f fs fs fs BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 8 () 2 9 0 0 0 0 1 +migration of migration m mi mig migr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 8 . 1 9 0 0 0 0 1 +current filehandle current c cu cur curr BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 8 . 1 9 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 10 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 11 , 1 10 0 0 0 0 0 +[Page 594] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 10 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 10 0 no 0 4 0 0 0 0 1 +When the when W Wh Whe When BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 0 no 0 10 0 0 0 0 1 +system not system s sy sys syst BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 0 , 1 10 0 0 0 0 1 +NFS4_OK and nfs4_ok N NF NFS NFS4 BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 0 . 1 5 0 0 0 0 1 +Once a once O On Onc Once BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 0 , 1 9 0 0 0 0 1 +operations for operations o op ope oper BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 10 0 no 0 9 0 0 0 0 1 +recovery. Once recovery. r re rec reco BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 0 ., 2 9 0 0 0 0 1 +not allow not n no not not BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 0 no 0 9 0 0 0 0 1 +that scope that t th tha that BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 0 ,,. 3 10 0 0 0 0 1 +Whenever a whenever W Wh Whe When BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 2 no 0 10 0 0 0 0 1 +first non-reclaim first f fi fir firs BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 2 -, 2 9 0 0 0 0 1 +RECLAIM_COMPLETE with reclaim_complete R RE REC RECL BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 2 , 1 9 0 0 0 0 1 +locks to locks l lo loc lock BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 2 .- 2 9 0 0 0 0 1 +the RECLAIM_COMPLETE, the t th the the BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 2 ,. 2 9 0 0 0 0 1 +Similarly, when similarly, S Si Sim Simi BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 3 , 1 9 0 0 0 0 1 +server, before server, s se ser serv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 3 ,- 2 10 0 0 0 0 1 +a lock a a a a a BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 1 0 0 0 0 0 10 3 , 1 9 0 0 0 0 1 +rca_one_fs set rca_one_fs r rc rca rca_ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 3 no 0 9 0 0 0 0 1 +system, even system, s sy sys syst BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 3 ,.- 3 8 0 0 0 0 1 +locking operations locking l lo loc lock BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 3 no 0 8 0 0 0 0 1 +RECLAIM_COMPLETE, an reclaim_complete, R RE REC RECL BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 3 ,. 2 8 0 0 0 0 1 +It should it I It It It BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 5 no 0 10 0 0 0 0 1 +to issue to t to to to BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 5 . 1 9 0 0 0 0 1 +of file of o of of of BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 5 no 0 9 0 0 0 0 1 +server for server s se ser serv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 5 ., 2 10 0 0 0 0 1 +needs to needs n ne nee need BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 5 ( 1 8 0 0 0 0 1 +responsibility to responsibility r re res resp BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 5 ) 1 9 0 0 0 0 1 +as well as a as as as BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 5 no 0 9 0 0 0 0 1 +the per-fs the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 5 -. 2 9 0 0 0 0 1 +These two these T Th The Thes BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 5 no 0 9 0 0 0 0 1 +reclaims have reclaims r re rec recl BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 5 . 1 7 0 0 0 0 1 +Any locks any A An Any Any BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 8 no 0 9 0 0 0 0 1 +done become done d do don done BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 8 -. 2 9 0 0 0 0 1 +them, either them, t th the them BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 8 , 1 10 0 0 0 0 1 +server instance, server s se ser serv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 8 , 1 9 0 0 0 0 1 +that file that t th tha that BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 8 ., 2 9 0 0 0 0 1 +would be would w wo wou woul BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 8 no 0 9 0 0 0 0 1 +locks that locks l lo loc lock BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 8 ,. 2 9 0 0 0 0 1 +Section 8.4.3 section S Se Sec Sect BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 8 ..[] 4 10 0 0 0 0 1 +lock reclaim. lock l lo loc lock BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 10 8 . 1 2 0 0 0 0 1 +By sending by B By By By BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 10 , 1 10 0 0 0 0 1 +proceed to proceed p pr pro proc BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 10 -. 2 9 0 0 0 0 1 +should be should s sh sho shou BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 10 no 0 9 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 10 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 11 , 1 10 0 0 0 0 0 +[Page 595] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 10 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 10 0 no 0 4 0 0 0 0 1 +NFS4ERR_GRACE errors nfs4err_grace N NF NFS NFS4 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 0 no 0 10 0 0 0 0 1 +period. period. period. p pe per peri BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 0 . 1 1 0 0 0 0 1 +18.51.4. IMPLEMENTATION 18.51.4. 1 18 18. 18.5 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 0 ... 3 10 0 0 0 0 1 +Servers will servers S Se Ser Serv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 10 0 no 0 9 0 0 0 0 1 +activity is activity a ac act acti BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 0 . 1 10 0 0 0 0 1 +the server the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 0 no 0 9 0 0 0 0 1 +might have might m mi mig migh BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 0 , 1 9 0 0 0 0 1 +clients have clients c cl cli clie BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 0 no 0 9 0 0 0 0 1 +and begin and a an and and BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 0 (..,) 5 9 0 0 0 0 1 +sooner than sooner s so soo soon BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 0 . 1 4 0 0 0 0 1 +Latency can latency L La Lat Late BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 10 2 no 0 9 0 0 0 0 1 +COMPOUND request compound C CO COM COMP BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 10 2 -. 2 10 0 0 0 0 1 +When there when W Wh Whe When BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 2 , 1 9 0 0 0 0 1 +done immediately done d do don done BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 2 no 0 10 0 0 0 0 1 +possible. possible. possible. p po pos poss BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 2 . 1 1 0 0 0 0 1 +RECLAIM_COMPLETE should reclaim_complete R RE REC RECL BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 4 no 0 10 0 0 0 0 1 +occasion of occasion o oc occ occa BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 4 . 1 9 0 0 0 0 1 +time, the time, t ti tim time BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 4 ,. 2 9 0 0 0 0 1 +because of because b be bec beca BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 4 ', 2 8 0 0 0 0 1 +COMPOUND requests compound C CO COM COMP BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 10 4 no 0 9 0 0 0 0 1 +result in result r re res resu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 4 . 1 3 0 0 0 0 1 +When a when W Wh Whe When BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 5 , 1 10 0 0 0 0 1 +any locks any a an any any BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 5 .- 2 9 0 0 0 0 1 +enable the enable e en ena enab BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 5 no 0 8 0 0 0 0 1 +conditions, as conditions, c co con cond BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 5 ,.., 4 9 0 0 0 0 1 +disable the disable d di dis disa BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 5 '. 2 6 0 0 0 0 1 +Because previous because B Be Bec Beca BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 7 no 0 8 0 0 0 0 1 +sufficiently explicit sufficiently s su suf suff BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 7 no 0 8 0 0 0 0 1 +RECLAIM_COMPLETE with reclaim_complete R RE REC RECL BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 7 , 1 9 0 0 0 0 1 +have been have h ha hav have BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 7 , 1 9 0 0 0 0 1 +which servers which w wh whi whic BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 7 ,, 2 9 0 0 0 0 1 +described above. described d de des desc BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 7 . 1 9 0 0 0 0 1 +servers SHOULD servers s se ser serv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 7 , 1 8 0 0 0 0 1 +implementers need implementers i im imp impl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 7 no 0 10 0 0 0 0 1 +make necessary make m ma mak make BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 7 no 0 9 0 0 0 0 1 +implementations and implementations i im imp impl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 7 no 0 9 0 0 0 0 1 +recovery in recovery r re rec reco BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 7 . 1 6 0 0 0 0 1 +o When o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 10 10 no 0 10 0 0 0 0 1 +of a of o of of of BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 10 , 1 9 0 0 0 0 1 +a per-fs a a a a a BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 1 0 0 0 0 0 10 10 - 1 9 0 0 0 0 1 +of it of o of of of BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 10 ., 2 9 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 10 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 11 , 1 10 0 0 0 0 0 +[Page 596] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 10 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 10 0 no 0 4 0 0 0 0 1 +accepting such accepting a ac acc acce BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 0 no 0 9 0 0 0 0 1 +client does client c cl cli clie BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 0 . 1 10 0 0 0 0 1 +o When o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 10 1 no 0 10 0 0 0 0 1 +migrated, inappropriate migrated, m mi mig migr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 1 ,- 2 9 0 0 0 0 1 +concerning. In concerning. c co con conc BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 1 . 1 9 0 0 0 0 1 +not within not n no not not BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 1 -,- 3 8 0 0 0 0 1 +SHOULD be should S SH SHO SHOU BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 10 1 , 1 9 0 0 0 0 1 +being limited, being b be bei bein BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 1 ,. 2 9 0 0 0 0 1 +However, if however, H Ho How Howe BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 1 , 1 8 0 0 0 0 1 +migration, the migration, m mi mig migr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 1 , 1 9 0 0 0 0 1 +RECLAIM_COMPLETE without reclaim_complete R RE REC RECL BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 1 . 1 8 0 0 0 0 1 +18.52. Operation 18.52. 1 18 18. 18.5 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 5 ..:- 4 10 0 0 0 0 1 +18.52.1. ARGUMENTS 18.52.1. 1 18 18. 18.5 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 5 ... 3 10 0 0 0 0 1 +void; void; void; v vo voi void BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 5 ; 1 10 0 0 0 0 1 +18.52.2. RESULTS 18.52.2. 1 18 18. 18.5 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 5 ... 3 10 0 0 0 0 1 +struct ILLEGAL4res struct s st str stru BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 6 no 0 10 0 0 0 0 1 +nfsstat4 nfsstat4 nfsstat4 n nf nfs nfss BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 6 no 0 4 0 0 0 0 1 +status; status; status; s st sta stat BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 6 ; 1 3 0 0 0 0 1 +}; }; }; } }; }; }; BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 6 ; 1 1 0 0 0 0 1 +18.52.3. DESCRIPTION 18.52.3. 1 18 18. 18.5 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 6 ... 3 10 0 0 0 0 1 +This operation this T Th Thi This BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 6 no 0 9 0 0 0 0 1 +case of case c ca cas case BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 10 6 no 0 10 0 0 0 0 1 +not supported. not n no not not BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 6 . 1 9 0 0 0 0 1 +details. details. details. d de det deta BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 6 . 1 1 0 0 0 0 1 +The status the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 8 . 1 10 0 0 0 0 1 +18.52.4. IMPLEMENTATION 18.52.4. 1 18 18. 18.5 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 8 ... 3 10 0 0 0 0 1 +A client a A A A A BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 1 0 0 0 0 0 10 8 no 0 10 0 0 0 0 1 +if it if i if if if BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 8 , 1 10 0 0 0 0 1 +any other any a an any any BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 8 . 1 9 0 0 0 0 1 +illegal operation illegal i il ill ille BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 8 , 1 9 0 0 0 0 1 +checks for checks c ch che chec BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 8 , 1 9 0 0 0 0 1 +the ILLEGAL4res the t th the the BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 8 . 1 5 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 10 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 11 , 1 10 0 0 0 0 0 +[Page 597] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 10 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 10 0 no 0 4 0 0 0 0 1 +19. NFSv4.1 19. 1 19 19. 19. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 0 .. 2 10 0 0 0 0 1 +The procedures the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 1 no 0 9 0 0 0 0 1 +sections. In sections. s se sec sect BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 1 .,"" 4 8 0 0 0 0 1 +"server" refer "server" " "s "se "ser BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 1 "", 3 10 0 0 0 0 1 +an individual an a an an an BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 10 1 , 1 8 0 0 0 0 1 +precisely the precisely p pr pre prec BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 1 . 1 3 0 0 0 0 1 +Both procedures, both B Bo Bot Both BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 4 ,,. 3 10 0 0 0 0 1 +19.1. Procedure 19.1. 1 19 19. 19.1 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 4 ..:- 4 10 0 0 0 0 1 +19.1.1. ARGUMENTS 19.1.1. 1 19 19. 19.1 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 5 ... 3 10 0 0 0 0 1 +void; void; void; v vo voi void BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 5 ; 1 10 0 0 0 0 1 +19.1.2. RESULTS 19.1.2. 1 19 19. 19.1 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 5 ... 3 10 0 0 0 0 1 +void; void; void; v vo voi void BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 6 ; 1 10 0 0 0 0 1 +19.1.3. DESCRIPTION 19.1.3. 1 19 19. 19.1 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 6 ... 3 10 0 0 0 0 1 +CB_NULL is cb_null C CB CB_ CB_N BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 6 , 1 9 0 0 0 0 1 +void argument void v vo voi void BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 6 . 1 9 0 0 0 0 1 +functionality associated functionality f fu fun func BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 6 , 1 9 0 0 0 0 1 +CB_NULL to cb_null C CB CB_ CB_N BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 6 no 0 10 0 0 0 0 1 +to client. to t to to to BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 6 . 1 1 0 0 0 0 1 +19.1.4. ERRORS 19.1.4. 1 19 19. 19.1 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 9 ... 3 10 0 0 0 0 1 +None. None. none. N No Non None BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 10 . 1 10 0 0 0 0 1 +19.2. Procedure 19.2. 1 19 19. 19.2 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 10 ..:- 4 10 0 0 0 0 1 +19.2.1. ARGUMENTS 19.2.1. 1 19 19. 19.2 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 10 ... 3 10 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 10 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 11 , 1 10 0 0 0 0 0 +[Page 598] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 10 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 10 0 no 0 4 0 0 0 0 1 +enum nfs_cb_opnum4 enum e en enu enum BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 0 no 0 5 0 0 0 0 1 +OP_CB_GETATTR OP_CB_GETATTR op_cb_getattr O OP OP_ OP_C BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 0 no 0 3 0 0 0 0 1 += 3, = = = = = BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 , 1 1 0 0 0 0 1 +OP_CB_RECALL OP_CB_RECALL op_cb_recall O OP OP_ OP_C BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 0 no 0 3 0 0 0 0 1 += 4, = = = = = BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 , 1 1 0 0 0 0 1 +/* Callback /* / /* /* /* BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 0 /*.*/ 5 10 0 0 0 0 1 +OP_CB_LAYOUTRECALL OP_CB_LAYOUTRECALL op_cb_layoutrecall O OP OP_ OP_C BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 0 no 0 4 0 0 0 0 1 += 5, = = = = = BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 , 1 1 0 0 0 0 1 +OP_CB_NOTIFY OP_CB_NOTIFY op_cb_notify O OP OP_ OP_C BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 0 no 0 3 0 0 0 0 1 += 6, = = = = = BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 , 1 1 0 0 0 0 1 +OP_CB_PUSH_DELEG OP_CB_PUSH_DELEG op_cb_push_deleg O OP OP_ OP_C BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 0 no 0 4 0 0 0 0 1 += 7, = = = = = BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 , 1 1 0 0 0 0 1 +OP_CB_RECALL_ANY OP_CB_RECALL_ANY op_cb_recall_any O OP OP_ OP_C BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 0 no 0 4 0 0 0 0 1 += 8, = = = = = BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 , 1 1 0 0 0 0 1 +OP_CB_RECALLABLE_OBJ_AVAIL = op_cb_recallable_obj_avail O OP OP_ OP_C BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 0 , 1 7 0 0 0 0 1 +OP_CB_RECALL_SLOT OP_CB_RECALL_SLOT op_cb_recall_slot O OP OP_ OP_C BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 0 no 0 4 0 0 0 0 1 += 10, = = = = = BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 , 1 1 0 0 0 0 1 +OP_CB_SEQUENCE OP_CB_SEQUENCE op_cb_sequence O OP OP_ OP_C BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 0 no 0 3 0 0 0 0 1 += 11, = = = = = BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 , 1 1 0 0 0 0 1 +OP_CB_WANTS_CANCELLED OP_CB_WANTS_CANCELLED op_cb_wants_cancelled O OP OP_ OP_C BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 0 no 0 5 0 0 0 0 1 += 12, = = = = = BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 , 1 1 0 0 0 0 1 +OP_CB_NOTIFY_LOCK OP_CB_NOTIFY_LOCK op_cb_notify_lock O OP OP_ OP_C BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 0 no 0 4 0 0 0 0 1 += 13, = = = = = BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 , 1 1 0 0 0 0 1 +OP_CB_NOTIFY_DEVICEID OP_CB_NOTIFY_DEVICEID op_cb_notify_deviceid O OP OP_ OP_C BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 0 no 0 5 0 0 0 0 1 += 14, = = = = = BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 , 1 1 0 0 0 0 1 +OP_CB_ILLEGAL OP_CB_ILLEGAL op_cb_illegal O OP OP_ OP_C BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 4 no 0 10 0 0 0 0 1 += 10044 = = = = = BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 4 no 0 5 0 0 0 0 1 +}; }; }; } }; }; }; BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 4 ; 1 2 0 0 0 0 1 +union nfs_cb_argop4 union u un uni unio BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 5 () 2 8 0 0 0 0 1 +case OP_CB_GETATTR: case c ca cas case BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 10 5 : 1 3 0 0 0 0 1 +CB_GETATTR4args CB_GETATTR4args cb_getattr4args C CB CB_ CB_G BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 5 no 0 2 0 0 0 0 1 +opcbgetattr; opcbgetattr; opcbgetattr; o op opc opcb BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 5 ; 1 2 0 0 0 0 1 +case OP_CB_RECALL: case c ca cas case BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 10 5 : 1 3 0 0 0 0 1 +CB_RECALL4args CB_RECALL4args cb_recall4args C CB CB_ CB_R BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 5 no 0 2 0 0 0 0 1 +opcbrecall; opcbrecall; opcbrecall; o op opc opcb BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 5 ; 1 2 0 0 0 0 1 +case OP_CB_LAYOUTRECALL: case c ca cas case BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 10 5 : 1 4 0 0 0 0 1 +CB_LAYOUTRECALL4args CB_LAYOUTRECALL4args cb_layoutrecall4args C CB CB_ CB_L BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 5 no 0 3 0 0 0 0 1 +opcblayoutrecall; opcblayoutrecall; opcblayoutrecall; o op opc opcb BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 5 ; 1 3 0 0 0 0 1 +case OP_CB_NOTIFY: case c ca cas case BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 10 5 : 1 3 0 0 0 0 1 +CB_NOTIFY4args CB_NOTIFY4args cb_notify4args C CB CB_ CB_N BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 5 no 0 2 0 0 0 0 1 +opcbnotify; opcbnotify; opcbnotify; o op opc opcb BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 5 ; 1 2 0 0 0 0 1 +case OP_CB_PUSH_DELEG: case c ca cas case BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 10 5 : 1 4 0 0 0 0 1 +CB_PUSH_DELEG4args CB_PUSH_DELEG4args cb_push_deleg4args C CB CB_ CB_P BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 5 no 0 3 0 0 0 0 1 +opcbpush_deleg; opcbpush_deleg; opcbpush_deleg; o op opc opcb BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 5 ; 1 2 0 0 0 0 1 +case OP_CB_RECALL_ANY: case c ca cas case BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 10 5 : 1 4 0 0 0 0 1 +CB_RECALL_ANY4args CB_RECALL_ANY4args cb_recall_any4args C CB CB_ CB_R BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 5 no 0 3 0 0 0 0 1 +opcbrecall_any; opcbrecall_any; opcbrecall_any; o op opc opcb BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 5 ; 1 2 0 0 0 0 1 +case OP_CB_RECALLABLE_OBJ_AVAIL: case c ca cas case BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 10 5 : 1 6 0 0 0 0 1 +CB_RECALLABLE_OBJ_AVAIL4args opcbrecallable_obj_avail; cb_recallable_obj_avail4args C CB CB_ CB_R BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 5 ; 1 10 0 0 0 0 1 +case OP_CB_RECALL_SLOT: case c ca cas case BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 10 5 : 1 4 0 0 0 0 1 +CB_RECALL_SLOT4args CB_RECALL_SLOT4args cb_recall_slot4args C CB CB_ CB_R BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 5 no 0 3 0 0 0 0 1 +opcbrecall_slot; opcbrecall_slot; opcbrecall_slot; o op opc opcb BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 5 ; 1 3 0 0 0 0 1 +case OP_CB_SEQUENCE: case c ca cas case BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 10 5 : 1 3 0 0 0 0 1 +CB_SEQUENCE4args CB_SEQUENCE4args cb_sequence4args C CB CB_ CB_S BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 5 no 0 3 0 0 0 0 1 +opcbsequence; opcbsequence; opcbsequence; o op opc opcb BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 5 ; 1 2 0 0 0 0 1 +case OP_CB_WANTS_CANCELLED: case c ca cas case BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 10 5 : 1 5 0 0 0 0 1 +CB_WANTS_CANCELLED4args CB_WANTS_CANCELLED4args cb_wants_cancelled4args C CB CB_ CB_W BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 5 no 0 4 0 0 0 0 1 +opcbwants_cancelled; opcbwants_cancelled; opcbwants_cancelled; o op opc opcb BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 5 ; 1 3 0 0 0 0 1 +case OP_CB_NOTIFY_LOCK: case c ca cas case BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 10 5 : 1 4 0 0 0 0 1 +CB_NOTIFY_LOCK4args CB_NOTIFY_LOCK4args cb_notify_lock4args C CB CB_ CB_N BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 5 no 0 3 0 0 0 0 1 +opcbnotify_lock; opcbnotify_lock; opcbnotify_lock; o op opc opcb BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 5 ; 1 3 0 0 0 0 1 +case OP_CB_NOTIFY_DEVICEID: case c ca cas case BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 10 5 : 1 5 0 0 0 0 1 +CB_NOTIFY_DEVICEID4args CB_NOTIFY_DEVICEID4args cb_notify_deviceid4args C CB CB_ CB_N BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 5 no 0 4 0 0 0 0 1 +opcbnotify_deviceid; opcbnotify_deviceid; opcbnotify_deviceid; o op opc opcb BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 5 ; 1 3 0 0 0 0 1 +case OP_CB_ILLEGAL: case c ca cas case BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 10 5 : 1 3 0 0 0 0 1 +void; void; void; v vo voi void BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 5 ; 1 1 0 0 0 0 1 +}; }; }; } }; }; }; BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 5 ; 1 0 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 10 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 11 , 1 10 0 0 0 0 0 +[Page 599] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 10 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 10 0 no 0 4 0 0 0 0 1 +struct CB_COMPOUND4args struct s st str stru BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 2 no 0 10 0 0 0 0 1 +utf8str_cs utf8str_cs utf8str_cs u ut utf utf8 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 2 no 0 4 0 0 0 0 1 +tag; tag; tag; t ta tag tag; BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 2 ; 1 1 0 0 0 0 1 +uint32_t uint32_t uint32_t u ui uin uint BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 2 no 0 3 0 0 0 0 1 +minorversion; minorversion; minorversion; m mi min mino BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 2 ; 1 5 0 0 0 0 1 +uint32_t uint32_t uint32_t u ui uin uint BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 2 no 0 3 0 0 0 0 1 +callback_ident; callback_ident; callback_ident; c ca cal call BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 2 ; 1 6 0 0 0 0 1 +nfs_cb_argop4 nfs_cb_argop4 nfs_cb_argop4 n nf nfs nfs_ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 2 no 0 5 0 0 0 0 1 +argarray<>; argarray<>; argarray<>; a ar arg arga BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 2 ; 1 4 0 0 0 0 1 +}; }; }; } }; }; }; BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 2 ; 1 1 0 0 0 0 1 +19.2.2. RESULTS 19.2.2. 1 19 19. 19.2 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 7 ... 3 10 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 10 9 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 9 , 1 10 0 0 0 0 0 +[Page 600] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 9 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 10 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 10 0 no 0 4 0 0 0 0 1 +union nfs_cb_resop4 union u un uni unio BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 0 () 2 10 0 0 0 0 1 +case OP_CB_GETATTR: case c ca cas case BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 10 0 : 1 4 0 0 0 0 1 +CB_GETATTR4res opcbgetattr; cb_getattr4res C CB CB_ CB_G BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 0 ; 1 6 0 0 0 0 1 +case OP_CB_RECALL: case c ca cas case BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 10 0 : 1 4 0 0 0 0 1 +CB_RECALL4res CB_RECALL4res cb_recall4res C CB CB_ CB_R BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 0 no 0 3 0 0 0 0 1 +opcbrecall; opcbrecall; opcbrecall; o op opc opcb BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 0 ; 1 2 0 0 0 0 1 +/* new /* / /* /* /* BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 2 /*.*/ 5 10 0 0 0 0 1 +case OP_CB_LAYOUTRECALL: case c ca cas case BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 10 2 : 1 8 0 0 0 0 1 +CB_LAYOUTRECALL4res CB_LAYOUTRECALL4res cb_layoutrecall4res C CB CB_ CB_L BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 2 no 0 6 0 0 0 0 1 +opcblayoutrecall; opcblayoutrecall; opcblayoutrecall; o op opc opcb BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 2 ; 1 6 0 0 0 0 1 +case OP_CB_NOTIFY: case c ca cas case BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 10 3 : 1 10 0 0 0 0 1 +CB_NOTIFY4res CB_NOTIFY4res cb_notify4res C CB CB_ CB_N BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 3 no 0 7 0 0 0 0 1 +opcbnotify; opcbnotify; opcbnotify; o op opc opcb BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 3 ; 1 6 0 0 0 0 1 +case OP_CB_PUSH_DELEG: case c ca cas case BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 10 4 : 1 10 0 0 0 0 1 +opcbpush_deleg; opcbpush_deleg; opcbpush_deleg; o op opc opcb BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 4 ; 1 3 0 0 0 0 1 +case OP_CB_RECALL_ANY: case c ca cas case BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 10 4 : 1 10 0 0 0 0 1 +opcbrecall_any; opcbrecall_any; opcbrecall_any; o op opc opcb BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 4 ; 1 3 0 0 0 0 1 +case OP_CB_RECALLABLE_OBJ_AVAIL: case c ca cas case BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 10 5 : 1 10 0 0 0 0 1 +CB_RECALLABLE_OBJ_AVAIL4res CB_RECALLABLE_OBJ_AVAIL4res cb_recallable_obj_avail4res C CB CB_ CB_R BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 5 no 0 8 0 0 0 0 1 +opcbrecallable_obj_avail; opcbrecallable_obj_avail; opcbrecallable_obj_avail; o op opc opcb BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 5 ; 1 7 0 0 0 0 1 +case OP_CB_RECALL_SLOT: case c ca cas case BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 10 5 : 1 10 0 0 0 0 1 +CB_RECALL_SLOT4res CB_RECALL_SLOT4res cb_recall_slot4res C CB CB_ CB_R BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 5 no 0 7 0 0 0 0 1 +opcbrecall_slot; opcbrecall_slot; opcbrecall_slot; o op opc opcb BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 5 ; 1 7 0 0 0 0 1 +case OP_CB_SEQUENCE: case c ca cas case BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 10 6 : 1 7 0 0 0 0 1 +CB_SEQUENCE4res opcbsequence; cb_sequence4res C CB CB_ CB_S BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 6 ; 1 10 0 0 0 0 1 +case OP_CB_WANTS_CANCELLED: case c ca cas case BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 10 6 : 1 10 0 0 0 0 1 +CB_WANTS_CANCELLED4res CB_WANTS_CANCELLED4res cb_wants_cancelled4res C CB CB_ CB_W BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 6 no 0 8 0 0 0 0 1 +opcbwants_cancelled; opcbwants_cancelled; opcbwants_cancelled; o op opc opcb BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 6 ; 1 7 0 0 0 0 1 +case OP_CB_NOTIFY_LOCK: case c ca cas case BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 10 7 : 1 10 0 0 0 0 1 +CB_NOTIFY_LOCK4res CB_NOTIFY_LOCK4res cb_notify_lock4res C CB CB_ CB_N BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 7 no 0 7 0 0 0 0 1 +opcbnotify_lock; opcbnotify_lock; opcbnotify_lock; o op opc opcb BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 7 ; 1 7 0 0 0 0 1 +case OP_CB_NOTIFY_DEVICEID: case c ca cas case BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 10 7 : 1 10 0 0 0 0 1 +CB_NOTIFY_DEVICEID4res CB_NOTIFY_DEVICEID4res cb_notify_deviceid4res C CB CB_ CB_N BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 7 no 0 8 0 0 0 0 1 +opcbnotify_deviceid; opcbnotify_deviceid; opcbnotify_deviceid; o op opc opcb BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 7 ; 1 7 0 0 0 0 1 +/* Not /* / /* /* /* BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 8 /**/ 4 8 0 0 0 0 1 +case OP_CB_ILLEGAL: case c ca cas case BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 10 8 : 1 7 0 0 0 0 1 +CB_ILLEGAL4res opcbillegal; cb_illegal4res C CB CB_ CB_I BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 8 ; 1 10 0 0 0 0 1 +}; }; }; } }; }; }; BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 8 ; 1 1 0 0 0 0 1 +struct CB_COMPOUND4res struct s st str stru BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 9 no 0 10 0 0 0 0 1 +nfsstat4 status; nfsstat4 n nf nfs nfss BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 9 ; 1 6 0 0 0 0 1 +utf8str_cs utf8str_cs utf8str_cs u ut utf utf8 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 9 no 0 4 0 0 0 0 1 +tag; tag; tag; t ta tag tag; BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 9 ; 1 2 0 0 0 0 1 +nfs_cb_resop4 nfs_cb_resop4 nfs_cb_resop4 n nf nfs nfs_ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 9 no 0 5 0 0 0 0 1 +resarray<>; resarray<>; resarray<>; r re res resa BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 9 ; 1 4 0 0 0 0 1 +}; }; }; } }; }; }; BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 9 ; 1 1 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 10 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 11 , 1 10 0 0 0 0 0 +[Page 601] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 10 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 10 0 no 0 4 0 0 0 0 1 +19.2.3. DESCRIPTION 19.2.3. 1 19 19. 19.2 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 0 ... 3 10 0 0 0 0 1 +The CB_COMPOUND the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 0 no 0 9 0 0 0 0 1 +callback procedures callback c ca cal call BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 0 . 1 10 0 0 0 0 1 +program has program p pr pro prog BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 10 0 :. 2 9 0 0 0 0 1 +operations use operations o op ope oper BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 10 0 . 1 7 0 0 0 0 1 +During the during D Du Dur Duri BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 1 , 1 9 0 0 0 0 1 +find that find f fi fin find BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 1 no 0 10 0 0 0 0 1 +all of all a al all all BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 1 . 1 9 0 0 0 0 1 +Section 2.10.6.4 section S Se Sec Sect BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 1 .... 4 4 0 0 0 0 1 +The minorversion the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 3 no 0 9 0 0 0 0 1 +minorversion of minorversion m mi min mino BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 3 no 0 10 0 0 0 0 1 +and session. and a an and and BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 3 ..,. 4 8 0 0 0 0 1 +Contained within contained C Co Con Cont BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 4 "". 3 9 0 0 0 0 1 +status MUST status s st sta stat BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 4 no 0 9 0 0 0 0 1 +executed within executed e ex exe exec BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 4 ., 2 8 0 0 0 0 1 +operation incurred operation o op ope oper BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 4 ,"" 3 10 0 0 0 0 1 +error value error e er err erro BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 4 . 1 9 0 0 0 0 1 +The "tag" the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 5 "" 2 10 0 0 0 0 1 +procedure (see procedure p pr pro proc BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 5 (..). 5 5 0 0 0 0 1 +Illegal operation illegal I Il Ill Ille BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 6 no 0 10 0 0 0 0 1 +handled for handled h ha han hand BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 6 . 1 5 0 0 0 0 1 +19.2.4. IMPLEMENTATION 19.2.4. 1 19 19. 19.2 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 7 ... 3 10 0 0 0 0 1 +The CB_COMPOUND the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 7 no 0 9 0 0 0 0 1 +into a into i in int into BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 7 . 1 8 0 0 0 0 1 +operations in operations o op ope oper BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 10 7 . 1 9 0 0 0 0 1 +the status the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 7 , 1 10 0 0 0 0 1 +the CB_COMPOUND the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 7 . 1 9 0 0 0 0 1 +process until process p pr pro proc BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 7 no 0 10 0 0 0 0 1 +the operations the t th the the BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 7 . 1 7 0 0 0 0 1 +19.2.5. ERRORS 19.2.5. 1 19 19. 19.2 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 9 ... 3 10 0 0 0 0 1 +CB_COMPOUND will cb_compound C CB CB_ CB_C BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 9 no 0 9 0 0 0 0 1 +the backchannel the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 9 ()., 4 9 0 0 0 0 1 +returns zero returns r re ret retu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 9 , 1 10 0 0 0 0 1 +nothing to nothing n no not noth BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 9 . 1 9 0 0 0 0 1 +errors CB_COMPOUND errors e er err erro BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 9 no 0 9 0 0 0 0 1 +includes: includes: includes: i in inc incl BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 9 : 1 1 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 10 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 11 , 1 10 0 0 0 0 0 +[Page 602] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 11 0 no 0 4 0 0 0 0 1 +CB_COMPOUND error cb_compound C CB CB_ CB_C BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 11 0 no 0 10 0 0 0 0 1 ++------------------------------+------------------------------------+ +------------------------------+------------------------------------+ +------------------------------+------------------------------------+ + +- +-- +--- BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 11 0 ------------------------------------------------------------------ 66 10 0 0 0 0 1 +| Error | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 11 0 no 0 1 0 0 0 0 1 +| Notes | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 11 0 no 0 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 11 0 no 0 0 0 0 0 0 1 ++------------------------------+------------------------------------+ +------------------------------+------------------------------------+ +------------------------------+------------------------------------+ + +- +-- +--- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 11 0 ------------------------------------------------------------------ 66 10 0 0 0 0 1 +| NFS4ERR_BADCHAR | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 11 0 no 0 2 0 0 0 0 1 +| The | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 11 0 no 0 5 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 11 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 11 0 no 0 0 0 0 0 0 1 +| the | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 11 0 . 1 4 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 11 0 no 0 0 0 0 0 0 1 +| NFS4ERR_BADXDR | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 11 0 no 0 2 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 11 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 11 0 no 0 0 0 0 0 0 1 +| NFS4ERR_DELAY | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 11 0 no 0 2 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 11 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 11 0 no 0 0 0 0 0 0 1 +| NFS4ERR_INVAL | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 11 0 no 0 2 0 0 0 0 1 +| The | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 11 0 - 1 5 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 11 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 11 0 no 0 0 0 0 0 0 1 +| encoding. | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 11 0 . 1 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 11 0 no 0 0 0 0 0 0 1 +| NFS4ERR_MINOR_VERS_MISMATCH | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 11 0 no 0 4 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 11 0 no 0 0 0 0 0 0 1 +| NFS4ERR_SERVERFAULT | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 11 0 no 0 3 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 11 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 11 0 no 0 0 0 0 0 0 1 +| NFS4ERR_TOO_MANY_OPS | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 11 0 no 0 3 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 11 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 11 0 no 0 0 0 0 0 0 1 +| NFS4ERR_REP_TOO_BIG | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 11 0 no 0 3 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 11 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 11 0 no 0 0 0 0 0 0 1 +| NFS4ERR_REP_TOO_BIG_TO_CACHE | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 11 0 no 0 4 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 11 0 no 0 0 0 0 0 0 1 +| NFS4ERR_REQ_TOO_BIG | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 11 0 no 0 3 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 11 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 11 0 no 0 0 0 0 0 0 1 ++------------------------------+------------------------------------+ +------------------------------+------------------------------------+ +------------------------------+------------------------------------+ + +- +-- +--- BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 11 0 ------------------------------------------------------------------ 66 10 0 0 0 0 1 +Table 15 table T Ta Tab Tabl BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 8 no 0 10 0 0 0 0 1 +20. NFSv4.1 20. 2 20 20. 20. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 8 .. 2 10 0 0 0 0 1 +20.1. Operation 20.1. 2 20 20. 20.1 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 8 ..:- 4 10 0 0 0 0 1 +20.1.1. ARGUMENT 20.1.1. 2 20 20. 20.1 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 9 ... 3 10 0 0 0 0 1 +struct CB_GETATTR4args struct s st str stru BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 9 no 0 10 0 0 0 0 1 +nfs_fh4 fh; nfs_fh4 n nf nfs nfs_ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 9 ; 1 4 0 0 0 0 1 +bitmap4 attr_request; bitmap4 b bi bit bitm BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 9 ; 1 8 0 0 0 0 1 +}; }; }; } }; }; }; BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 11 9 ; 1 1 0 0 0 0 1 +20.1.2. RESULT 20.1.2. 2 20 20. 20.1 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 10 ... 3 10 0 0 0 0 1 +struct CB_GETATTR4resok struct s st str stru BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 10 no 0 10 0 0 0 0 1 +fattr4 obj_attributes; fattr4 f fa fat fatt BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 10 ; 1 8 0 0 0 0 1 +}; }; }; } }; }; }; BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 11 10 ; 1 1 0 0 0 0 1 +union CB_GETATTR4res union u un uni unio BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 10 () 2 10 0 0 0 0 1 +case NFS4_OK: case c ca cas case BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 11 10 : 1 2 0 0 0 0 1 +CB_GETATTR4resok CB_GETATTR4resok cb_getattr4resok C CB CB_ CB_G BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 10 no 0 3 0 0 0 0 1 +resok4; resok4; resok4; r re res reso BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 10 ; 1 1 0 0 0 0 1 +default: default: default: d de def defa BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 10 : 1 1 0 0 0 0 1 +void; void; void; v vo voi void BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 10 ; 1 1 0 0 0 0 1 +}; }; }; } }; }; }; BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 11 10 ; 1 0 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 11 , 1 10 0 0 0 0 0 +[Page 603] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 11 0 no 0 4 0 0 0 0 1 +20.1.3. DESCRIPTION 20.1.3. 2 20 20. 20.1 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 0 ... 3 10 0 0 0 0 1 +The CB_GETATTR the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 0 no 0 9 0 0 0 0 1 +modified state modified m mo mod modi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 0 . 1 10 0 0 0 0 1 +The size the T Th The The BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 0 no 0 9 0 0 0 0 1 +serviced by serviced s se ser serv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 0 ... 3 9 0 0 0 0 1 +how the how h ho how how BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 0 . 1 10 0 0 0 0 1 +If the if I If If If BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 3 no 0 10 0 0 0 0 1 +OPEN_DELEGATE_WRITE delegation, open_delegate_write O OP OPE OPEN BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 11 3 , 1 8 0 0 0 0 1 +returned. returned. returned. r re ret retu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 3 . 1 1 0 0 0 0 1 +20.1.4. IMPLEMENTATION 20.1.4. 2 20 20. 20.1 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 4 ... 3 10 0 0 0 0 1 +The client the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 4 no 0 10 0 0 0 0 1 +only for only o on onl only BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 4 , 1 9 0 0 0 0 1 +(time_modify, and (time_modify, ( (t (ti (tim BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 4 (,). 4 3 0 0 0 0 1 +20.2. Operation 20.2. 2 20 20. 20.2 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 5 ..:- 4 10 0 0 0 0 1 +20.2.1. ARGUMENT 20.2.1. 2 20 20. 20.2 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 5 ... 3 10 0 0 0 0 1 +struct CB_RECALL4args struct s st str stru BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 6 no 0 10 0 0 0 0 1 +stateid4 stateid4 stateid4 s st sta stat BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 6 no 0 3 0 0 0 0 1 +stateid; stateid; stateid; s st sta stat BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 6 ; 1 3 0 0 0 0 1 +bool bool bool b bo boo bool BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 6 no 0 2 0 0 0 0 1 +truncate; truncate; truncate; t tr tru trun BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 6 ; 1 4 0 0 0 0 1 +nfs_fh4 nfs_fh4 nfs_fh4 n nf nfs nfs_ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 6 no 0 3 0 0 0 0 1 +fh; fh; fh; f fh fh; fh; BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 6 ; 1 1 0 0 0 0 1 +}; }; }; } }; }; }; BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 11 6 ; 1 1 0 0 0 0 1 +20.2.2. RESULT 20.2.2. 2 20 20. 20.2 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 6 ... 3 10 0 0 0 0 1 +struct CB_RECALL4res struct s st str stru BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 7 no 0 10 0 0 0 0 1 +nfsstat4 nfsstat4 nfsstat4 n nf nfs nfss BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 7 no 0 3 0 0 0 0 1 +status; status; status; s st sta stat BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 7 ; 1 3 0 0 0 0 1 +}; }; }; } }; }; }; BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 11 7 ; 1 1 0 0 0 0 1 +20.2.3. DESCRIPTION 20.2.3. 2 20 20. 20.2 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 7 ... 3 10 0 0 0 0 1 +The CB_RECALL the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 7 no 0 10 0 0 0 0 1 +delegation and delegation d de del dele BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 7 . 1 6 0 0 0 0 1 +The truncate the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 8 no 0 10 0 0 0 0 1 +is a is i is is is BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 8 . 1 9 0 0 0 0 1 +TRUE, the true, T TR TRU TRUE BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 11 8 , 1 9 0 0 0 0 1 +data for data d da dat data BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 8 ,. 2 9 0 0 0 0 1 +If the if I If If If BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 10 no 0 10 0 0 0 0 1 +delegation, an delegation, d de del dele BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 10 ,. 2 8 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 11 , 1 10 0 0 0 0 0 +[Page 604] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 11 0 no 0 4 0 0 0 0 1 +If the if I If If If BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 0 no 0 10 0 0 0 0 1 +delegation for delegation d de del dele BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 0 , 1 9 0 0 0 0 1 +NFS4ERR_BAD_STATEID is nfs4err_bad_stateid N NF NFS NFS4 BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 0 . 1 5 0 0 0 0 1 +20.2.4. IMPLEMENTATION 20.2.4. 2 20 20. 20.2 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 2 ... 3 10 0 0 0 0 1 +The client the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 2 . 1 9 0 0 0 0 1 +not complete not n no not not BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 2 ' 1 10 0 0 0 0 1 +field is field f fi fie fiel BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 11 2 . 1 9 0 0 0 0 1 +complete until complete c co com comp BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 2 no 0 9 0 0 0 0 1 +operation. operation. operation. o op ope oper BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 2 . 1 1 0 0 0 0 1 +20.3. Operation 20.3. 2 20 20. 20.3 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 5 ..:- 4 10 0 0 0 0 1 +20.3.1. ARGUMENT 20.3.1. 2 20 20. 20.3 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 5 ... 3 10 0 0 0 0 1 +/* /* /* / /* /* /* BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 11 5 /* 2 0 0 0 0 0 1 +* NFSv4.1 * * * * * BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 11 5 *. 2 10 0 0 0 0 1 +*/ */ */ * */ */ */ BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 11 5 */ 2 0 0 0 0 0 1 +enum layoutrecall_type4 enum e en enu enum BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 6 no 0 6 0 0 0 0 1 +LAYOUTRECALL4_FILE = layoutrecall4_file L LA LAY LAYO BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 6 , 1 10 0 0 0 0 1 +LAYOUTRECALL4_FSID = layoutrecall4_fsid L LA LAY LAYO BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 6 , 1 10 0 0 0 0 1 +LAYOUTRECALL4_ALL = layoutrecall4_all L LA LAY LAYO BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 6 no 0 9 0 0 0 0 1 +}; }; }; } }; }; }; BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 11 6 ; 1 0 0 0 0 0 1 +struct layoutrecall_file4 struct s st str stru BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 7 no 0 10 0 0 0 0 1 +nfs_fh4 nfs_fh4 nfs_fh4 n nf nfs nfs_ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 7 no 0 2 0 0 0 0 1 +lor_fh; lor_fh; lor_fh; l lo lor lor_ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 7 ; 1 2 0 0 0 0 1 +offset4 offset4 offset4 o of off offs BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 7 no 0 2 0 0 0 0 1 +lor_offset; lor_offset; lor_offset; l lo lor lor_ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 7 ; 1 4 0 0 0 0 1 +length4 length4 length4 l le len leng BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 7 no 0 2 0 0 0 0 1 +lor_length; lor_length; lor_length; l lo lor lor_ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 7 ; 1 4 0 0 0 0 1 +stateid4 stateid4 stateid4 s st sta stat BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 7 no 0 3 0 0 0 0 1 +lor_stateid; lor_stateid; lor_stateid; l lo lor lor_ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 7 ; 1 4 0 0 0 0 1 +}; }; }; } }; }; }; BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 11 7 ; 1 1 0 0 0 0 1 +union layoutrecall4 union u un uni unio BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 8 () 2 10 0 0 0 0 1 +case LAYOUTRECALL4_FILE: case c ca cas case BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 11 8 : 1 3 0 0 0 0 1 +layoutrecall_file4 lor_layout; layoutrecall_file4 l la lay layo BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 8 ; 1 4 0 0 0 0 1 +case LAYOUTRECALL4_FSID: case c ca cas case BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 11 8 : 1 3 0 0 0 0 1 +fsid4 fsid4 fsid4 f fs fsi fsid BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 8 no 0 0 0 0 0 0 1 +lor_fsid; lor_fsid; lor_fsid; l lo lor lor_ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 8 ; 1 1 0 0 0 0 1 +case LAYOUTRECALL4_ALL: case c ca cas case BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 11 8 : 1 3 0 0 0 0 1 +void; void; void; v vo voi void BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 8 ; 1 0 0 0 0 0 1 +}; }; }; } }; }; }; BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 11 8 ; 1 0 0 0 0 0 1 +struct CB_LAYOUTRECALL4args struct s st str stru BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 10 no 0 10 0 0 0 0 1 +layouttype4 layouttype4 layouttype4 l la lay layo BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 10 no 0 4 0 0 0 0 1 +clora_type; clora_type; clora_type; c cl clo clor BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 10 ; 1 4 0 0 0 0 1 +layoutiomode4 layoutiomode4 layoutiomode4 l la lay layo BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 10 no 0 4 0 0 0 0 1 +clora_iomode; clora_iomode; clora_iomode; c cl clo clor BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 10 ; 1 4 0 0 0 0 1 +bool bool bool b bo boo bool BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 10 no 0 1 0 0 0 0 1 +clora_changed; clora_changed; clora_changed; c cl clo clor BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 10 ; 1 5 0 0 0 0 1 +layoutrecall4 layoutrecall4 layoutrecall4 l la lay layo BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 10 no 0 4 0 0 0 0 1 +clora_recall; clora_recall; clora_recall; c cl clo clor BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 10 ; 1 4 0 0 0 0 1 +}; }; }; } }; }; }; BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 11 10 ; 1 1 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 11 , 1 10 0 0 0 0 0 +[Page 605] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 11 0 no 0 4 0 0 0 0 1 +20.3.2. RESULT 20.3.2. 2 20 20. 20.3 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 0 ... 3 10 0 0 0 0 1 +struct CB_LAYOUTRECALL4res struct s st str stru BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 0 no 0 10 0 0 0 0 1 +nfsstat4 nfsstat4 nfsstat4 n nf nfs nfss BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 0 no 0 3 0 0 0 0 1 +clorr_status; clorr_status; clorr_status; c cl clo clor BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 0 ; 1 4 0 0 0 0 1 +}; }; }; } }; }; }; BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 11 0 ; 1 1 0 0 0 0 1 +20.3.3. DESCRIPTION 20.3.3. 2 20 20. 20.3 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 0 ... 3 10 0 0 0 0 1 +The CB_LAYOUTRECALL the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 1 no 0 10 0 0 0 0 1 +from the from f fr fro from BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 1 ;, 2 9 0 0 0 0 1 +returning layouts returning r re ret retu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 1 . 1 9 0 0 0 0 1 +specifies one specifies s sp spe spec BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 1 no 0 9 0 0 0 0 1 +layoutrecall_type4. The layoutrecall_type4. l la lay layo BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 1 .: 2 8 0 0 0 0 1 +specific layout specific s sp spe spec BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 1 (), 3 9 0 0 0 0 1 +file system file f fi fil file BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 1 (), 3 8 0 0 0 0 1 +(LAYOUTRECALL4_ALL). (LAYOUTRECALL4_ALL). (layoutrecall4_all). ( (L (LA (LAY BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 1 (). 3 3 0 0 0 0 1 +The behavior the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 3 no 0 10 0 0 0 0 1 +layoutrecall_type4. The layoutrecall_type4. l la lay layo BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 3 .: 2 7 0 0 0 0 1 +LAYOUTRECALL4_FILE LAYOUTRECALL4_FILE layoutrecall4_file L LA LAY LAYO BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 4 no 0 10 0 0 0 0 1 +For a for F Fo For For BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 4 , 1 8 0 0 0 0 1 +following fields following f fo fol foll BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 4 :, 2 9 0 0 0 0 1 +clora_iomode, lor_fh, clora_iomode, c cl clo clor BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 4 ,,- 3 9 0 0 0 0 1 +and lor_length. and a an and and BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 4 . 1 9 0 0 0 0 1 +of LAYOUTIOMODE4_ANY. of o of of of BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 4 . 1 9 0 0 0 0 1 +match any match m ma mat matc BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 4 ;, 2 9 0 0 0 0 1 +acts as acts a ac act acts BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 4 . 1 8 0 0 0 0 1 +lor_length. If lor_length. l lo lor lor_ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 4 ., 2 9 0 0 0 0 1 +lor_length field lor_length l lo lor lor_ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 4 . 1 8 0 0 0 0 1 +matching layout matching m ma mat matc BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 4 , 1 8 0 0 0 0 1 +LAYOUTRETURN operation layoutreturn L LA LAY LAYO BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 11 4 (.). 4 9 0 0 0 0 1 +field's special field's f fi fie fiel BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 4 ', 2 10 0 0 0 0 1 +lor_offset is lor_offset l lo lor lor_ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 4 ,, 2 9 0 0 0 0 1 +entire layout entire e en ent enti BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 4 . 1 4 0 0 0 0 1 +The NFS4ERR_NOMATCHING_LAYOUT the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 9 no 0 9 0 0 0 0 1 +client does client c cl cli clie BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 9 no 0 10 0 0 0 0 1 +not have not n no not not BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 9 no 0 9 0 0 0 0 1 +layout recall. layout l la lay layo BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 9 . 1 2 0 0 0 0 1 +LAYOUTRECALL4_FSID and layoutrecall4_fsid L LA LAY LAYO BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 10 no 0 10 0 0 0 0 1 +If LAYOUTRECALL4_FSID if I If If If BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 10 , 1 10 0 0 0 0 1 +system for system s sy sys syst BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 10 . 1 9 0 0 0 0 1 +LAYOUTRECALL4_ALL is layoutrecall4_all L LA LAY LAYO BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 10 , 1 10 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 11 , 1 10 0 0 0 0 0 +[Page 606] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 11 0 no 0 4 0 0 0 0 1 +returned. In returned. r re ret retu BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 0 ., 2 9 0 0 0 0 1 +specify that specify s sp spe spec BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 0 no 0 10 0 0 0 0 1 +mappings in mappings m ma map mapp BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 0 (). 3 9 0 0 0 0 1 +respective LAYOUTRETURN respective r re res resp BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 0 no 0 8 0 0 0 0 1 +LAYOUTRETURN4_ALL acknowledges layoutreturn4_all L LA LAY LAYO BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 0 no 0 9 0 0 0 0 1 +invalidated the invalidated i in inv inva BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 0 ...... 6 9 0 0 0 0 1 +for considerations for f fo for for BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 0 "". 3 7 0 0 0 0 1 +The NFS4ERR_NOMATCHING_LAYOUT the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 2 no 0 10 0 0 0 0 1 +client does client c cl cli clie BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 2 no 0 10 0 0 0 0 1 +mappings. mappings. mappings. m ma map mapp BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 2 . 1 1 0 0 0 0 1 +In processing in I In In In BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 11 2 , 1 9 0 0 0 0 1 +behavior based behavior b be beh beha BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 2 . 1 9 0 0 0 0 1 +is used is i is is is BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 2 no 0 9 0 0 0 0 1 +why the why w wh why why BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 2 . 1 9 0 0 0 0 1 +indicates that indicates i in ind indi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 2 no 0 10 0 0 0 0 1 +write modified write w wr wri writ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 2 ; 1 9 0 0 0 0 1 +done prior done d do don done BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 2 . 1 9 0 0 0 0 1 +for clora_changed for f fo for for BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 2 . 1 9 0 0 0 0 1 +Examples of examples E Ex Exa Exam BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 2 no 0 9 0 0 0 0 1 +following: the following: f fo fol foll BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 2 : 1 9 0 0 0 0 1 +error has error e er err erro BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 2 no 0 9 0 0 0 0 1 +like to like l li lik like BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 2 ., 2 8 0 0 0 0 1 +clora_changed value clora_changed c cl clo clor BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 2 no 0 9 0 0 0 0 1 +layout and layout l la lay layo BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 2 no 0 9 0 0 0 0 1 +the storage the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 2 ., 2 9 0 0 0 0 1 +data through data d da dat data BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 2 . 1 4 0 0 0 0 1 +See Section see S Se See See BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 11 7 .. 2 10 0 0 0 0 1 +the arguments the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 7 ."" 3 9 0 0 0 0 1 +lor_stateid MUST lor_stateid l lo lor lor_ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 7 ..,..,... 9 10 0 0 0 0 1 +for a for f fo for for BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 7 . 1 6 0 0 0 0 1 +20.3.4. IMPLEMENTATION 20.3.4. 2 20 20. 20.3 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 8 ... 3 10 0 0 0 0 1 +The client's the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 9 ' 1 10 0 0 0 0 1 +(recall of (recall ( (r (re (rec BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 9 () 2 9 0 0 0 0 1 +request before request r re req requ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 9 no 0 9 0 0 0 0 1 +operation. While operation. o op ope oper BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 9 . 1 8 0 0 0 0 1 +immediately, the immediately, i im imm imme BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 9 ,(.., 5 8 0 0 0 0 1 +considered pending) considered c co con cons BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 9 ) 1 9 0 0 0 0 1 +server via server s se ser serv BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 9 . 1 5 0 0 0 0 1 +Before returning before B Be Bef Befo BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 10 , 1 9 0 0 0 0 1 +client should client c cl cli clie BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 10 -- 2 10 0 0 0 0 1 +READ, WRITE, read, R RE REA READ BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 11 10 ,,. 3 9 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 11 , 1 10 0 0 0 0 0 +[Page 607] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 11 0 no 0 4 0 0 0 0 1 +If the if I If If If BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 0 no 0 10 0 0 0 0 1 +layout, the layout, l la lay layo BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 0 , 1 9 0 0 0 0 1 +server. As server. s se ser serv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 0 ., 2 8 0 0 0 0 1 +metadata server. metadata m me met meta BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 0 ., 2 9 0 0 0 0 1 +than writing than t th tha than BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 0 no 0 9 0 0 0 0 1 +is TRUE is i is is is BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 0 ., 2 9 0 0 0 0 1 +the client the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 0 no 0 9 0 0 0 0 1 +device if device d de dev devi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 0 ; 1 9 0 0 0 0 1 +before returning before b be bef befo BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 0 . 1 9 0 0 0 0 1 +obtain a obtain o ob obt obta BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 0 '-, 3 9 0 0 0 0 1 +writing to writing w wr wri writ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 0 . 1 9 0 0 0 0 1 +that before that t th tha that BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 0 , 1 9 0 0 0 0 1 +original layout. original o or ori orig BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 0 . 1 2 0 0 0 0 1 +In the in I In In In BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 11 4 , 1 9 0 0 0 0 1 +the client the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 4 ; 1 9 0 0 0 0 1 +as required as a as as as BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 4 . 1 9 0 0 0 0 1 +large amount large l la lar larg BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 11 4 , 1 9 0 0 0 0 1 +LAYOUTRETURNs for layoutreturns L LA LAY LAYO BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 4 ; 1 9 0 0 0 0 1 +server to server s se ser serv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 4 ' 1 10 0 0 0 0 1 +recall request. recall r re rec reca BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 4 ., 2 9 0 0 0 0 1 +returns MUST returns r re ret retu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 4 ( 1 8 0 0 0 0 1 +Section 12.5.5.1 section S Se Sec Sect BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 4 ...). 5 4 0 0 0 0 1 +If a if I If If If BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 7 no 0 8 0 0 0 0 1 +referring to referring r re ref refe BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 7 , 1 10 0 0 0 0 1 +the client the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 7 no 0 9 0 0 0 0 1 +the server the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 7 . 1 9 0 0 0 0 1 +the affected the t th the the BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 7 ,. 2 8 0 0 0 0 1 +20.4. Operation 20.4. 2 20 20. 20.4 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 9 ..:- 4 10 0 0 0 0 1 +20.4.1. ARGUMENT 20.4.1. 2 20 20. 20.4 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 10 ... 3 10 0 0 0 0 1 +/* /* /* / /* /* /* BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 11 10 /* 2 0 0 0 0 0 1 +* Directory * * * * * BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 11 10 *. 2 9 0 0 0 0 1 +*/ */ */ * */ */ */ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 11 10 */ 2 0 0 0 0 0 1 +enum notify_type4 enum e en enu enum BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 10 no 0 5 0 0 0 0 1 +NOTIFY4_CHANGE_CHILD_ATTRS = notify4_change_child_attrs N NO NOT NOTI BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 10 , 1 9 0 0 0 0 1 +NOTIFY4_CHANGE_DIR_ATTRS = notify4_change_dir_attrs N NO NOT NOTI BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 10 , 1 8 0 0 0 0 1 +NOTIFY4_REMOVE_ENTRY = notify4_remove_entry N NO NOT NOTI BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 10 , 1 7 0 0 0 0 1 +NOTIFY4_ADD_ENTRY = notify4_add_entry N NO NOT NOTI BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 10 , 1 6 0 0 0 0 1 +NOTIFY4_RENAME_ENTRY = notify4_rename_entry N NO NOT NOTI BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 10 , 1 7 0 0 0 0 1 +NOTIFY4_CHANGE_COOKIE_VERIFIER = notify4_change_cookie_verifier N NO NOT NOTI BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 10 no 0 10 0 0 0 0 1 +}; }; }; } }; }; }; BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 11 10 ; 1 0 0 0 0 0 1 +/* Changed /* / /* /* /* BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 11 11 /*.*/ 5 10 0 0 0 0 1 +struct notify_entry4 struct s st str stru BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 11 no 0 6 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 11 , 1 10 0 0 0 0 0 +[Page 608] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 11 0 no 0 4 0 0 0 0 1 +component4 component4 component4 c co com comp BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 0 no 0 10 0 0 0 0 1 +ne_file; ne_file; ne_file; n ne ne_ ne_f BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 0 ; 1 8 0 0 0 0 1 +fattr4 fattr4 fattr4 f fa fat fatt BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 0 no 0 6 0 0 0 0 1 +ne_attrs; ne_attrs; ne_attrs; n ne ne_ ne_a BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 0 ; 1 9 0 0 0 0 1 +}; }; }; } }; }; }; BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 11 0 ; 1 2 0 0 0 0 1 +/* Previous /* / /* /* /* BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 11 1 /**/ 4 7 0 0 0 0 1 +struct prev_entry4 struct s st str stru BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 1 no 0 4 0 0 0 0 1 +notify_entry4 notify_entry4 notify_entry4 n no not noti BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 1 no 0 3 0 0 0 0 1 +pe_prev_entry; pe_prev_entry; pe_prev_entry; p pe pe_ pe_p BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 1 ; 1 3 0 0 0 0 1 +/* what /* / /* /* /* BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 11 1 /**/ 4 10 0 0 0 0 1 +nfs_cookie4 nfs_cookie4 nfs_cookie4 n nf nfs nfs_ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 1 no 0 2 0 0 0 0 1 +pe_prev_entry_cookie; pe_prev_entry_cookie; pe_prev_entry_cookie; p pe pe_ pe_p BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 1 ; 1 5 0 0 0 0 1 +}; }; }; } }; }; }; BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 11 1 ; 1 0 0 0 0 0 1 +struct notify_remove4 struct s st str stru BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 3 no 0 10 0 0 0 0 1 +notify_entry4 notify_entry4 notify_entry4 n no not noti BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 3 no 0 5 0 0 0 0 1 +nrm_old_entry; nrm_old_entry; nrm_old_entry; n nr nrm nrm_ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 3 ; 1 6 0 0 0 0 1 +nfs_cookie4 nfs_cookie4 nfs_cookie4 n nf nfs nfs_ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 3 no 0 5 0 0 0 0 1 +nrm_old_entry_cookie; nrm_old_entry_cookie; nrm_old_entry_cookie; n nr nrm nrm_ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 3 ; 1 9 0 0 0 0 1 +}; }; }; } }; }; }; BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 11 3 ; 1 1 0 0 0 0 1 +struct notify_add4 struct s st str stru BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 3 no 0 3 0 0 0 0 1 +/* /* /* / /* /* /* BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 11 3 /* 2 0 0 0 0 0 1 +* Information * * * * * BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 11 3 * 1 4 0 0 0 0 1 +* possibly * * * * * BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 11 3 *. 2 4 0 0 0 0 1 +*/ */ */ * */ */ */ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 11 3 */ 2 0 0 0 0 0 1 +notify_remove4 notify_remove4 notify_remove4 n no not noti BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 3 no 0 2 0 0 0 0 1 +nad_old_entry<1>; nad_old_entry<1>; nad_old_entry<1>; n na nad nad_ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 3 ; 1 3 0 0 0 0 1 +notify_entry4 notify_entry4 notify_entry4 n no not noti BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 3 no 0 2 0 0 0 0 1 +nad_new_entry; nad_new_entry; nad_new_entry; n na nad nad_ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 3 ; 1 2 0 0 0 0 1 +/* what /* / /* /* /* BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 11 3 /**/ 4 10 0 0 0 0 1 +nfs_cookie4 nfs_cookie4 nfs_cookie4 n nf nfs nfs_ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 3 no 0 2 0 0 0 0 1 +nad_new_entry_cookie<1>; nad_new_entry_cookie<1>; nad_new_entry_cookie<1>; n na nad nad_ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 3 ; 1 4 0 0 0 0 1 +prev_entry4 prev_entry4 prev_entry4 p pr pre prev BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 3 no 0 2 0 0 0 0 1 +nad_prev_entry<1>; nad_prev_entry<1>; nad_prev_entry<1>; n na nad nad_ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 3 ; 1 3 0 0 0 0 1 +bool bool bool b bo boo bool BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 3 no 0 0 0 0 0 0 1 +nad_last_entry; nad_last_entry; nad_last_entry; n na nad nad_ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 3 ; 1 2 0 0 0 0 1 +}; }; }; } }; }; }; BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 11 3 ; 1 0 0 0 0 0 1 +struct notify_attr4 struct s st str stru BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 7 no 0 10 0 0 0 0 1 +notify_entry4 notify_entry4 notify_entry4 n no not noti BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 7 no 0 6 0 0 0 0 1 +na_changed_entry; na_changed_entry; na_changed_entry; n na na_ na_c BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 7 ; 1 8 0 0 0 0 1 +}; }; }; } }; }; }; BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 11 7 ; 1 1 0 0 0 0 1 +struct notify_rename4 struct s st str stru BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 7 no 0 8 0 0 0 0 1 +notify_remove4 nrn_old_entry; notify_remove4 n no not noti BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 7 ; 1 10 0 0 0 0 1 +notify_add4 notify_add4 notify_add4 n no not noti BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 7 no 0 4 0 0 0 0 1 +nrn_new_entry; nrn_new_entry; nrn_new_entry; n nr nrn nrn_ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 7 ; 1 5 0 0 0 0 1 +}; }; }; } }; }; }; BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 11 7 ; 1 1 0 0 0 0 1 +struct notify_verifier4 struct s st str stru BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 8 no 0 10 0 0 0 0 1 +verifier4 verifier4 verifier4 v ve ver veri BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 8 no 0 3 0 0 0 0 1 +nv_old_cookieverf; nv_old_cookieverf; nv_old_cookieverf; n nv nv_ nv_o BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 8 ; 1 7 0 0 0 0 1 +verifier4 verifier4 verifier4 v ve ver veri BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 8 no 0 3 0 0 0 0 1 +nv_new_cookieverf; nv_new_cookieverf; nv_new_cookieverf; n nv nv_ nv_n BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 8 ; 1 7 0 0 0 0 1 +}; }; }; } }; }; }; BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 11 8 ; 1 1 0 0 0 0 1 +/* /* /* / /* /* /* BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 11 9 /* 2 0 0 0 0 0 1 +* Objects * * * * * BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 11 9 * 1 8 0 0 0 0 1 +* notify_device_<>4 * * * * * BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 11 9 *. 2 10 0 0 0 0 1 +*/ */ */ * */ */ */ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 11 9 */ 2 0 0 0 0 0 1 +typedef opaque typedef t ty typ type BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 9 ; 1 7 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 11 , 1 10 0 0 0 0 0 +[Page 609] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 11 0 no 0 4 0 0 0 0 1 +struct notify4 struct s st str stru BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 0 no 0 2 0 0 0 0 1 +/* composed /* / /* /* /* BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 11 0 /**/ 4 10 0 0 0 0 1 +bitmap4 bitmap4 bitmap4 b bi bit bitm BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 0 no 0 1 0 0 0 0 1 +notify_mask; notify_mask; notify_mask; n no not noti BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 0 ; 1 2 0 0 0 0 1 +notifylist4 notifylist4 notifylist4 n no not noti BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 0 no 0 2 0 0 0 0 1 +notify_vals; notify_vals; notify_vals; n no not noti BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 0 ; 1 2 0 0 0 0 1 +}; }; }; } }; }; }; BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 11 0 ; 1 0 0 0 0 0 1 +struct CB_NOTIFY4args struct s st str stru BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 1 no 0 10 0 0 0 0 1 +stateid4 stateid4 stateid4 s st sta stat BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 1 no 0 3 0 0 0 0 1 +cna_stateid; cna_stateid; cna_stateid; c cn cna cna_ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 1 ; 1 5 0 0 0 0 1 +nfs_fh4 nfs_fh4 nfs_fh4 n nf nfs nfs_ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 1 no 0 3 0 0 0 0 1 +cna_fh; cna_fh; cna_fh; c cn cna cna_ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 1 ; 1 3 0 0 0 0 1 +notify4 notify4 notify4 n no not noti BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 1 no 0 3 0 0 0 0 1 +cna_changes<>; cna_changes<>; cna_changes<>; c cn cna cna_ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 1 ; 1 6 0 0 0 0 1 +}; }; }; } }; }; }; BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 11 1 ; 1 1 0 0 0 0 1 +20.4.2. RESULT 20.4.2. 2 20 20. 20.4 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 1 ... 3 10 0 0 0 0 1 +struct CB_NOTIFY4res struct s st str stru BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 1 no 0 10 0 0 0 0 1 +nfsstat4 nfsstat4 nfsstat4 n nf nfs nfss BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 1 no 0 3 0 0 0 0 1 +cnr_status; cnr_status; cnr_status; c cn cnr cnr_ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 1 ; 1 5 0 0 0 0 1 +}; }; }; } }; }; }; BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 11 1 ; 1 1 0 0 0 0 1 +20.4.3. DESCRIPTION 20.4.3. 2 20 20. 20.4 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 2 ... 3 10 0 0 0 0 1 +The CB_NOTIFY the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 2 no 0 10 0 0 0 0 1 +to clients to t to to to BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 2 . 1 10 0 0 0 0 1 +of notifications of o of of of BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 2 no 0 9 0 0 0 0 1 +established using established e es est esta BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 2 . 1 9 0 0 0 0 1 +over the over o ov ove over BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 2 . 1 9 0 0 0 0 1 +request has request r re req requ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 2 . 1 9 0 0 0 0 1 +array of array a ar arr arra BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 2 no 0 9 0 0 0 0 1 +directory. The directory. d di dir dire BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 2 . 1 9 0 0 0 0 1 +and values. and a an and and BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 2 .... 4 9 0 0 0 0 1 +bitmaps work. bitmaps b bi bit bitm BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 2 . 1 2 0 0 0 0 1 +If the if I If If If BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 5 no 0 9 0 0 0 0 1 +request, it request, r re req requ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 5 , 1 9 0 0 0 0 1 +that the that t th tha that BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 5 '. 2 9 0 0 0 0 1 +For example, for F Fo For For BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 5 ,"" 3 10 0 0 0 0 1 +and that and a an and and BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 5 "", 3 9 0 0 0 0 1 +receives these receives r re rec rece BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 5 no 0 9 0 0 0 0 1 +which the which w wh whi whic BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 5 . 1 8 0 0 0 0 1 +If the if I If If If BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 9 no 0 8 0 0 0 0 1 +directory that directory d di dir dire BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 9 -, 2 10 0 0 0 0 1 +the server the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 9 (). 3 9 0 0 0 0 1 +the client the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 9 no 0 9 0 0 0 0 1 +verifier changes verifier v ve ver veri BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 9 , 1 10 0 0 0 0 1 +to that to t to to to BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 9 . 1 9 0 0 0 0 1 +each operation: each e ea eac each BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 9 : 1 2 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 11 , 1 10 0 0 0 0 0 +[Page 610] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 11 0 no 0 4 0 0 0 0 1 +NOTIFY4_ADD_ENTRY NOTIFY4_ADD_ENTRY notify4_add_entry N NO NOT NOTI BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 0 no 0 2 0 0 0 0 1 +The server the T Th The The BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 0 no 0 9 0 0 0 0 1 +being created being b be bei bein BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 0 . 1 9 0 0 0 0 1 +information (data information i in inf info BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 0 () 2 10 0 0 0 0 1 +the entry the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 0 . 1 9 0 0 0 0 1 +when a when w wh whe when BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 0 , 1 9 0 0 0 0 1 +added to added a ad add adde BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 0 no 0 9 0 0 0 0 1 +(see below), (see ( (s (se (see BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 0 (), 3 9 0 0 0 0 1 +file. If file. f fi fil file BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 0 ., 2 9 0 0 0 0 1 +server will server s se ser serv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 0 . 1 9 0 0 0 0 1 +added such added a ad add adde BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 0 , 1 9 0 0 0 0 1 +will also will w wi wil will BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 11 0 (, 2 10 0 0 0 0 1 +variable-length array variable-length v va var vari BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 0 -. 2 9 0 0 0 0 1 +zero length, zero z ze zer zero BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 0 ,),. 4 9 0 0 0 0 1 +This is this T Th Thi This BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 0 no 0 10 0 0 0 0 1 +caches and caches c ca cac cach BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 0 . 1 9 0 0 0 0 1 +the new the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 0 ', 2 8 0 0 0 0 1 +nad_new_entry_cookie (another nad_new_entry_cookie n na nad nad_ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 0 (- 2 9 0 0 0 0 1 +element) field. element) e el ele elem BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 0 ). 2 9 0 0 0 0 1 +to be to t to to to BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 0 () 2 8 0 0 0 0 1 +atomically with atomically a at ato atom BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 0 , 1 9 0 0 0 0 1 +reported in reported r re rep repo BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 0 . 1 4 0 0 0 0 1 +NOTIFY4_REMOVE_ENTRY NOTIFY4_REMOVE_ENTRY notify4_remove_entry N NO NOT NOTI BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 6 no 0 3 0 0 0 0 1 +The server the T Th The The BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 6 no 0 10 0 0 0 0 1 +deleted. The deleted. d de del dele BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 6 . 1 9 0 0 0 0 1 +deleted entry deleted d de del dele BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 6 no 0 9 0 0 0 0 1 +for this for f fo for for BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 6 . 1 2 0 0 0 0 1 +NOTIFY4_RENAME_ENTRY NOTIFY4_RENAME_ENTRY notify4_rename_entry N NO NOT NOTI BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 7 no 0 3 0 0 0 0 1 +The server the T Th The The BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 7 no 0 10 0 0 0 0 1 +new entry. new n ne new new BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 7 .. 2 9 0 0 0 0 1 +In addition, in I In In In BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 11 7 ,(.., 5 10 0 0 0 0 1 +the case the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 7 ), 2 8 0 0 0 0 1 +nrn_new_new_entry.nad_old_entry. This nrn_new_new_entry.nad_old_entry. n nr nrn nrn_ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 7 .. 2 9 0 0 0 0 1 +if both if i if if if BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 7 . 1 9 0 0 0 0 1 +across directories, across a ac acr acro BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 7 , 1 10 0 0 0 0 1 +one directory one o on one one BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 7 , 1 9 0 0 0 0 1 +assuming both assuming a as ass assu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 7 . 1 6 0 0 0 0 1 +NOTIFY4_CHANGE_CHILD_ATTRS/NOTIFY4_CHANGE_DIR_ATTRS NOTIFY4_CHANGE_CHILD_ATTRS/NOTIFY4_CHANGE_DIR_ATTRS notify4_change_child_attrs/notify4_change_dir_attrs N NO NOT NOTI BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 9 / 1 7 0 0 0 0 1 +The client the T Th The The BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 9 no 0 9 0 0 0 0 1 +attributes for attributes a at att attr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 9 . 1 9 0 0 0 0 1 +change notification change c ch cha chan BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 9 no 0 10 0 0 0 0 1 +of the of o of of of BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 9 ' 1 9 0 0 0 0 1 +the directory the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 9 . 1 9 0 0 0 0 1 +cannot ask cannot c ca can cann BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 9 . 1 9 0 0 0 0 1 +One attribute one O On One One BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 9 . 1 9 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 11 , 1 10 0 0 0 0 0 +[Page 611] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 11 0 no 0 4 0 0 0 0 1 +any attribute any a an any any BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 0 , 1 9 0 0 0 0 1 +changed attributes. changed c ch cha chan BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 0 . 1 9 0 0 0 0 1 +file system-wide file f fi fil file BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 0 -, 2 10 0 0 0 0 1 +which subset which w wh whi whic BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 0 . 1 9 0 0 0 0 1 +frequency of frequency f fr fre freq BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 0 no 0 9 0 0 0 0 1 +how often how h ho how how BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 0 . 1 9 0 0 0 0 1 +server will server s se ser serv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 0 no 0 9 0 0 0 0 1 +indication that indication i in ind indi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 0 no 0 9 0 0 0 0 1 +child attributes child c ch chi chil BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 11 0 no 0 7 0 0 0 0 1 +dir_entry_notif_delay attributes, dir_entry_notif_delay d di dir dir_ BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 0 ,. 2 7 0 0 0 0 1 +NOTIFY4_CHANGE_COOKIE_VERIFIER NOTIFY4_CHANGE_COOKIE_VERIFIER notify4_change_cookie_verifier N NO NOT NOTI BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 4 no 0 4 0 0 0 0 1 +If the if I If If If BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 4 no 0 8 0 0 0 0 1 +delegation, the delegation, d de del dele BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 4 , 1 9 0 0 0 0 1 +invalidate its invalidate i in inv inva BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 4 - 1 10 0 0 0 0 1 +cookies. cookies. cookies. c co coo cook BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 4 . 1 1 0 0 0 0 1 +20.5. Operation 20.5. 2 20 20. 20.5 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 5 ..:- 4 10 0 0 0 0 1 +Delegation to delegation D De Del Dele BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 5 no 0 3 0 0 0 0 1 +20.5.1. ARGUMENT 20.5.1. 2 20 20. 20.5 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 6 ... 3 10 0 0 0 0 1 +struct CB_PUSH_DELEG4args struct s st str stru BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 6 no 0 8 0 0 0 0 1 +nfs_fh4 nfs_fh4 nfs_fh4 n nf nfs nfs_ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 6 no 0 2 0 0 0 0 1 +cpda_fh; cpda_fh; cpda_fh; c cp cpd cpda BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 6 ; 1 2 0 0 0 0 1 +open_delegation4 cpda_delegation; open_delegation4 o op ope open BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 6 ; 1 10 0 0 0 0 1 +}; }; }; } }; }; }; BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 11 6 ; 1 10 0 0 0 0 1 +20.5.2. RESULT 20.5.2. 2 20 20. 20.5 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 7 ... 3 10 0 0 0 0 1 +struct CB_PUSH_DELEG4res struct s st str stru BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 7 no 0 10 0 0 0 0 1 +nfsstat4 cpdr_status; nfsstat4 n nf nfs nfss BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 7 ; 1 8 0 0 0 0 1 +}; }; }; } }; }; }; BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 11 7 ; 1 1 0 0 0 0 1 +20.5.3. DESCRIPTION 20.5.3. 2 20 20. 20.5 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 7 ... 3 10 0 0 0 0 1 +CB_PUSH_DELEG is cb_push_deleg C CB CB_ CB_P BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 11 7 no 0 10 0 0 0 0 1 +the delegation the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 7 ( 1 9 0 0 0 0 1 +from an from f fr fro from BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 7 ) 1 9 0 0 0 0 1 +simultaneously offer simultaneously s si sim simu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 7 . 1 9 0 0 0 0 1 +the choice the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 7 no 0 9 0 0 0 0 1 +server, delaying server, s se ser serv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 7 , 1 9 0 0 0 0 1 +returning NFS4ERR_DELAY, returning r re ret retu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 7 , 1 9 0 0 0 0 1 +delegation by delegation d de del dele BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 7 . 1 9 0 0 0 0 1 +rejected in rejected r re rej reje BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 7 , 1 8 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 11 , 1 10 0 0 0 0 0 +[Page 612] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 11 0 no 0 4 0 0 0 0 1 +permanently deleted permanently p pe per perm BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 0 no 0 10 0 0 0 0 1 +another client. another a an ano anot BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 0 . 1 2 0 0 0 0 1 +20.5.4. IMPLEMENTATION 20.5.4. 2 20 20. 20.5 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 1 ... 3 10 0 0 0 0 1 +If the if I If If If BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 1 no 0 9 0 0 0 0 1 +delegation request, delegation d de del dele BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 1 , 1 10 0 0 0 0 1 +client that client c cl cli clie BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 1 .' 2 9 0 0 0 0 1 +cancelled, but cancelled, c ca can canc BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 1 , 1 10 0 0 0 0 1 +registered wants. registered r re reg regi BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 1 . 1 2 0 0 0 0 1 +When a when W Wh Whe When BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 3 ,, 2 10 0 0 0 0 1 +NFS4ERR_REJECT_DELAY, the nfs4err_reject_delay, N NF NFS NFS4 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 3 ,, 2 10 0 0 0 0 1 +decide to decide d de dec deci BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 3 . 1 8 0 0 0 0 1 +20.6. Operation 20.6. 2 20 20. 20.6 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 4 ..:- 4 10 0 0 0 0 1 +20.6.1. ARGUMENT 20.6.1. 2 20 20. 20.6 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 5 ... 3 10 0 0 0 0 1 +const RCA4_TYPE_MASK_RDATA_DLG const c co con cons BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 5 no 0 8 0 0 0 0 1 += 0; = = = = = BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 11 5 ; 1 1 0 0 0 0 1 +const RCA4_TYPE_MASK_WDATA_DLG const c co con cons BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 5 no 0 8 0 0 0 0 1 += 1; = = = = = BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 11 5 ; 1 1 0 0 0 0 1 +const RCA4_TYPE_MASK_DIR_DLG const c co con cons BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 5 no 0 7 0 0 0 0 1 += 2; = = = = = BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 11 5 ; 1 1 0 0 0 0 1 +const RCA4_TYPE_MASK_FILE_LAYOUT const c co con cons BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 5 no 0 8 0 0 0 0 1 += 3; = = = = = BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 11 5 ; 1 1 0 0 0 0 1 +const RCA4_TYPE_MASK_BLK_LAYOUT const c co con cons BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 5 no 0 8 0 0 0 0 1 += 4; = = = = = BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 11 5 ; 1 1 0 0 0 0 1 +const RCA4_TYPE_MASK_OBJ_LAYOUT_MIN const c co con cons BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 5 no 0 9 0 0 0 0 1 += 8; = = = = = BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 11 5 ; 1 1 0 0 0 0 1 +const RCA4_TYPE_MASK_OBJ_LAYOUT_MAX const c co con cons BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 5 no 0 9 0 0 0 0 1 += 9; = = = = = BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 11 5 ; 1 1 0 0 0 0 1 +const RCA4_TYPE_MASK_OTHER_LAYOUT_MIN const c co con cons BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 5 no 0 10 0 0 0 0 1 += 12; = = = = = BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 11 5 ; 1 1 0 0 0 0 1 +const RCA4_TYPE_MASK_OTHER_LAYOUT_MAX const c co con cons BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 5 no 0 10 0 0 0 0 1 += 15; = = = = = BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 11 5 ; 1 1 0 0 0 0 1 +struct CB_RECALL_ANY4args struct s st str stru BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 7 no 0 10 0 0 0 0 1 +{ { { { { { { BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 11 7 no 0 0 0 0 0 0 1 +uint32_t uint32_t uint32_t u ui uin uint BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 7 no 0 3 0 0 0 0 1 +craa_objects_to_keep; craa_objects_to_keep; craa_objects_to_keep; c cr cra craa BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 7 ; 1 8 0 0 0 0 1 +bitmap4 bitmap4 bitmap4 b bi bit bitm BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 7 no 0 3 0 0 0 0 1 +craa_type_mask; craa_type_mask; craa_type_mask; c cr cra craa BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 7 ; 1 6 0 0 0 0 1 +}; }; }; } }; }; }; BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 11 7 ; 1 1 0 0 0 0 1 +20.6.2. RESULT 20.6.2. 2 20 20. 20.6 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 8 ... 3 10 0 0 0 0 1 +struct CB_RECALL_ANY4res struct s st str stru BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 8 no 0 10 0 0 0 0 1 +nfsstat4 nfsstat4 nfsstat4 n nf nfs nfss BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 8 no 0 3 0 0 0 0 1 +crar_status; crar_status; crar_status; c cr cra crar BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 8 ; 1 4 0 0 0 0 1 +}; }; }; } }; }; }; BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 11 8 ; 1 1 0 0 0 0 1 +20.6.3. DESCRIPTION 20.6.3. 2 20 20. 20.6 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 9 ... 3 10 0 0 0 0 1 +The server the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 9 no 0 9 0 0 0 0 1 +recallable objects, recallable r re rec reca BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 9 ,, 2 10 0 0 0 0 1 +out of out o ou out out BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 9 .,, 3 9 0 0 0 0 1 +free to free f fr fre free BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 11 9 . 1 7 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 11 , 1 10 0 0 0 0 0 +[Page 613] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 11 0 no 0 4 0 0 0 0 1 +Because the because B Be Bec Beca BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 0 no 0 10 0 0 0 0 1 +is to is i is is is BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 0 , 1 10 0 0 0 0 1 +interpret lack interpret i in int inte BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 0 no 0 9 0 0 0 0 1 +longer useful. longer l lo lon long BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 0 . 1 9 0 0 0 0 1 +delegation keeping delegation d de del dele BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 0 no 0 9 0 0 0 0 1 +server. In server. s se ser serv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 0 ., 2 9 0 0 0 0 1 +of a of o of of of BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 0 no 0 9 0 0 0 0 1 +devices receive devices d de dev devi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 0 /, 2 9 0 0 0 0 1 +storage device storage s st sto stor BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 0 no 0 9 0 0 0 0 1 +use of use u us use use BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 0 , 1 9 0 0 0 0 1 +layouts are layouts l la lay layo BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 0 . 1 9 0 0 0 0 1 +In order in I In In In BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 11 3 , 1 10 0 0 0 0 1 +the server's the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 3 ' 1 9 0 0 0 0 1 +determine when determine d de det dete BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 3 no 0 9 0 0 0 0 1 +the actual the t th the the BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 3 . 1 5 0 0 0 0 1 +Server implementations server S Se Ser Serv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 4 no 0 9 0 0 0 0 1 +requirements. For requirements. r re req requ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 4 ., 2 10 0 0 0 0 1 +classes of classes c cl cla clas BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 4 , 1 9 0 0 0 0 1 +resource pools resource r re res reso BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 4 , 1 10 0 0 0 0 1 +resources by resources r re res reso BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 4 . 1 5 0 0 0 0 1 +When a when W Wh Whe When BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 6 -, 2 9 0 0 0 0 1 +CB_RECALL_ANY to cb_recall_any C CB CB_ CB_R BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 11 6 no 0 9 0 0 0 0 1 +involved, allowing involved, i in inv invo BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 6 , 1 9 0 0 0 0 1 +return any return r re ret retu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 6 . 1 10 0 0 0 0 1 +limited. The limited. l li lim limi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 6 ., 2 9 0 0 0 0 1 +usefulness, which usefulness, u us use usef BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 6 ,. 2 9 0 0 0 0 1 +A number a A A A A BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 1 0 0 0 0 0 11 8 ., 2 9 0 0 0 0 1 +and it and a an and and BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 8 no 0 10 0 0 0 0 1 +these are these t th the thes BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 8 .- 2 9 0 0 0 0 1 +storage protocols storage s st sto stor BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 8 . 1 9 0 0 0 0 1 +RFC defining rfc R RF RFC RFC BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 11 8 no 0 9 0 0 0 0 1 +bits within bits b bi bit bits BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 8 ., 2 9 0 0 0 0 1 +mapping between mapping m ma map mapp BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 8 (., 3 9 0 0 0 0 1 +area) and area) a ar are area BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 8 ), 2 9 0 0 0 0 1 +where the where w wh whe wher BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 8 no 0 9 0 0 0 0 1 +the client. the t th the the BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 8 . 1 1 0 0 0 0 1 +RCA4_TYPE_MASK_RDATA_DLG RCA4_TYPE_MASK_RDATA_DLG rca4_type_mask_rdata_dlg R RC RCA RCA4 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 11 no 0 10 0 0 0 0 1 +The client the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 11 - 1 10 0 0 0 0 1 +directory file directory d di dir dire BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 11 . 1 3 0 0 0 0 1 +RCA4_TYPE_MASK_WDATA_DLG RCA4_TYPE_MASK_WDATA_DLG rca4_type_mask_wdata_dlg R RC RCA RCA4 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 11 no 0 10 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 11 , 1 10 0 0 0 0 0 +[Page 614] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 11 0 no 0 4 0 0 0 0 1 +The client the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 0 no 0 10 0 0 0 0 1 +file objects. file f fi fil file BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 0 . 1 2 0 0 0 0 1 +RCA4_TYPE_MASK_DIR_DLG RCA4_TYPE_MASK_DIR_DLG rca4_type_mask_dir_dlg R RC RCA RCA4 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 0 no 0 10 0 0 0 0 1 +The client the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 0 . 1 10 0 0 0 0 1 +RCA4_TYPE_MASK_FILE_LAYOUT RCA4_TYPE_MASK_FILE_LAYOUT rca4_type_mask_file_layout R RC RCA RCA4 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 1 no 0 10 0 0 0 0 1 +The client the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 1 . 1 10 0 0 0 0 1 +RCA4_TYPE_MASK_BLK_LAYOUT RCA4_TYPE_MASK_BLK_LAYOUT rca4_type_mask_blk_layout R RC RCA RCA4 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 1 no 0 10 0 0 0 0 1 +See [44] see S Se See See BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 11 1 []. 3 10 0 0 0 0 1 +RCA4_TYPE_MASK_OBJ_LAYOUT_MIN to rca4_type_mask_obj_layout_min R RC RCA RCA4 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 1 no 0 10 0 0 0 0 1 +See [43] see S Se See See BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 11 1 []. 3 10 0 0 0 0 1 +RCA4_TYPE_MASK_OTHER_LAYOUT_MIN to rca4_type_mask_other_layout_min R RC RCA RCA4 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 2 no 0 10 0 0 0 0 1 +This range this T Th Thi This BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 2 no 0 10 0 0 0 0 1 +experimental or experimental e ex exp expe BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 2 -(..). 6 9 0 0 0 0 1 +When a when W Wh Whe When BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 3 no 0 9 0 0 0 0 1 +type of type t ty typ type BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 3 ,. 2 9 0 0 0 0 1 +bit is bit b bi bit bit BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 3 no 0 9 0 0 0 0 1 +client does client c cl cli clie BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 3 , 1 10 0 0 0 0 1 +be returned. be b be be be BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 3 . 1 9 0 0 0 0 1 +valid type valid v va val vali BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 3 . 1 3 0 0 0 0 1 +CB_RECALL_ANY specifies cb_recall_any C CB CB_ CB_R BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 11 5 no 0 9 0 0 0 0 1 +as opposed as a as as as BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 5 . 1 9 0 0 0 0 1 +a potential a a a a a BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 1 0 0 0 0 0 11 5 no 0 10 0 0 0 0 1 +to free to t to to to BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 5 - 1 10 0 0 0 0 1 +or delegations. or o or or or BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 5 ., 2 10 0 0 0 0 1 +have differing have h ha hav have BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 5 ., 2 9 0 0 0 0 1 +client could client c cl cli clie BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 5 . 1 5 0 0 0 0 1 +If resource if I If If If BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 8 , 1 8 0 0 0 0 1 +CB_RECALL_ANY with cb_recall_any C CB CB_ CB_R BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 11 8 , 1 10 0 0 0 0 1 +acknowledgment from acknowledgment a ac ack ackn BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 8 no 0 10 0 0 0 0 1 +same type same s sa sam same BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 8 . 1 9 0 0 0 0 1 +received by received r re rec rece BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 8 no 0 10 0 0 0 0 1 +they were they t th the they BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 8 , 1 9 0 0 0 0 1 +harmless. It harmless. h ha har harm BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 8 . 1 9 0 0 0 0 1 +recallable object recallable r re rec reca BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 8 , 1 9 0 0 0 0 1 +until that until u un unt unti BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 8 , 1 9 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 11 , 1 10 0 0 0 0 0 +[Page 615] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 11 0 no 0 4 0 0 0 0 1 +any subsequent any a an any any BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 0 ., 2 9 0 0 0 0 1 +server sends server s se ser serv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 0 , 1 9 0 0 0 0 1 +the lower the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 0 ,. 2 10 0 0 0 0 1 +that this that t th tha that BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 0 no 0 8 0 0 0 0 1 +CB_RECALL_ANY by cb_recall_any C CB CB_ CB_R BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 11 0 . 1 9 0 0 0 0 1 +CB_RECALL_ANY is cb_recall_any C CB CB_ CB_R BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 11 0 no 0 9 0 0 0 0 1 +set or set s se set set BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 0 , 1 9 0 0 0 0 1 +that callback that t th tha that BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 0 . 1 4 0 0 0 0 1 +Servers are servers S Se Ser Serv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 3 no 0 8 0 0 0 0 1 +insufficient resources insufficient i in ins insu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 3 . 1 10 0 0 0 0 1 +policy is policy p po pol poli BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 3 no 0 10 0 0 0 0 1 +to requested to t to to to BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 3 , 1 9 0 0 0 0 1 +optimally used. optimally o op opt opti BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 3 ., 2 9 0 0 0 0 1 +the point the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 3 no 0 8 0 0 0 0 1 +somewhat below somewhat s so som some BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 3 no 0 9 0 0 0 0 1 +and layouts. and a an and and BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 3 .- 2 9 0 0 0 0 1 +whenever appropriate whenever w wh whe when BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 3 no 0 10 0 0 0 0 1 +given new given g gi giv give BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 3 . 1 6 0 0 0 0 1 +20.6.4. IMPLEMENTATION 20.6.4. 2 20 20. 20.6 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 6 ... 3 10 0 0 0 0 1 +The client the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 7 no 0 10 0 0 0 0 1 +mask. If mask. m ma mas mask BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 7 . 1 9 0 0 0 0 1 +type, it type, t ty typ type BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 7 ,. 2 10 0 0 0 0 1 +the client the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 7 , 1 10 0 0 0 0 1 +to handle to t to to to BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 7 , 1 9 0 0 0 0 1 +(i.e., sending (i.e., ( (i (i. (i.e BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 7 (..,) 5 9 0 0 0 0 1 +usage. The usage. u us usa usag BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 7 . 1 9 0 0 0 0 1 +objects before objects o ob obj obje BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 7 . 1 10 0 0 0 0 1 +be less be b be be be BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 7 . 1 4 0 0 0 0 1 +20.7. Operation 20.7. 2 20 20. 20.7 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 10 ..:- 4 10 0 0 0 0 1 +Recallable Objects recallable R Re Rec Reca BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 10 no 0 2 0 0 0 0 1 +20.7.1. ARGUMENT 20.7.1. 2 20 20. 20.7 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 10 ... 3 10 0 0 0 0 1 +typedef CB_RECALL_ANY4args typedef t ty typ type BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 11 ; 1 10 0 0 0 0 1 +20.7.2. RESULT 20.7.2. 2 20 20. 20.7 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 11 ... 3 10 0 0 0 0 1 +struct CB_RECALLABLE_OBJ_AVAIL4res struct s st str stru BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 11 no 0 10 0 0 0 0 1 +nfsstat4 nfsstat4 nfsstat4 n nf nfs nfss BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 11 no 0 2 0 0 0 0 1 +croa_status; croa_status; croa_status; c cr cro croa BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 11 ; 1 3 0 0 0 0 1 +}; }; }; } }; }; }; BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 11 11 ; 1 0 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 11 , 1 10 0 0 0 0 0 +[Page 616] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 11 0 no 0 4 0 0 0 0 1 +20.7.3. DESCRIPTION 20.7.3. 2 20 20. 20.7 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 0 ... 3 10 0 0 0 0 1 +CB_RECALLABLE_OBJ_AVAIL is cb_recallable_obj_avail C CB CB_ CB_R BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 11 0 no 0 9 0 0 0 0 1 +that the that t th tha that BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 0 no 0 10 0 0 0 0 1 +previously have previously p pr pre prev BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 0 ,,, 3 10 0 0 0 0 1 +or LAYOUTGET. or o or or or BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 0 . 1 2 0 0 0 0 1 +The argument the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 1 no 0 8 0 0 0 0 1 +recallable objects recallable r re rec reca BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 1 no 0 10 0 0 0 0 1 +that the that t th tha that BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 1 , 1 10 0 0 0 0 1 +the number the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 1 . 1 9 0 0 0 0 1 +tries to tries t tr tri trie BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 1 no 0 10 0 0 0 0 1 +can have can c ca can can BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 1 . 1 7 0 0 0 0 1 +The server the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 4 no 0 9 0 0 0 0 1 +number of number n nu num numb BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 4 no 0 9 0 0 0 0 1 +craa_objects_to_keep, nor craa_objects_to_keep, c cr cra craa BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 4 , 1 7 0 0 0 0 1 +CB_RECALLABLE_OBJ_AVAIL prevent cb_recallable_obj_avail C CB CB_ CB_R BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 11 4 no 0 9 0 0 0 0 1 +of the of o of of of BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 4 ., 2 9 0 0 0 0 1 +responds slowly responds r re res resp BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 4 , 1 8 0 0 0 0 1 +interpret the interpret i in int inte BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 4 no 0 8 0 0 0 0 1 +recallable objects, recallable r re rec reca BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 4 , 1 9 0 0 0 0 1 +maintaining on maintaining m ma mai main BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 4 ., 2 9 0 0 0 0 1 +acquire more acquire a ac acq acqu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 4 , 1 8 0 0 0 0 1 +CB_RECALLABLE_OBJ_AVAIL, and cb_recallable_obj_avail, C CB CB_ CB_R BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 11 4 , 1 10 0 0 0 0 1 +acquire recallable acquire a ac acq acqu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 4 . 1 4 0 0 0 0 1 +20.8. Operation 20.8. 2 20 20. 20.8 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 8 ..:- 4 10 0 0 0 0 1 +20.8.1. ARGUMENT 20.8.1. 2 20 20. 20.8 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 9 ... 3 10 0 0 0 0 1 +struct CB_RECALL_SLOT4args struct s st str stru BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 9 no 0 10 0 0 0 0 1 +slotid4 slotid4 slotid4 s sl slo slot BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 9 no 0 2 0 0 0 0 1 +rsa_target_highest_slotid; rsa_target_highest_slotid; rsa_target_highest_slotid; r rs rsa rsa_ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 9 ; 1 9 0 0 0 0 1 +}; }; }; } }; }; }; BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 11 9 ; 1 1 0 0 0 0 1 +20.8.2. RESULT 20.8.2. 2 20 20. 20.8 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 9 ... 3 10 0 0 0 0 1 +struct CB_RECALL_SLOT4res struct s st str stru BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 9 no 0 10 0 0 0 0 1 +nfsstat4 nfsstat4 nfsstat4 n nf nfs nfss BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 9 no 0 3 0 0 0 0 1 +rsr_status; rsr_status; rsr_status; r rs rsr rsr_ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 9 ; 1 4 0 0 0 0 1 +}; }; }; } }; }; }; BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 11 9 ; 1 1 0 0 0 0 1 +20.8.3. DESCRIPTION 20.8.3. 2 20 20. 20.8 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 10 ... 3 10 0 0 0 0 1 +The CB_RECALL_SLOT the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 10 no 0 9 0 0 0 0 1 +slots, and slots, s sl slo slot BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 10 ,,(.., 6 9 0 0 0 0 1 +connections associated connections c co con conn BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 10 )' 2 10 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 11 , 1 10 0 0 0 0 0 +[Page 617] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 11 0 no 0 4 0 0 0 0 1 +fore channel. fore f fo for fore BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 0 ., 2 9 0 0 0 0 1 +the value the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 0 no 0 9 0 0 0 0 1 +session. The session. s se ses sess BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 0 .' 2 10 0 0 0 0 1 +highest slot highest h hi hig high BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 0 . 1 5 0 0 0 0 1 +If the if I If If If BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 2 - 1 9 0 0 0 0 1 +operations channel, operations o op ope oper BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 11 2 , 1 8 0 0 0 0 1 +outstanding requests outstanding o ou out outs BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 2 no 0 9 0 0 0 0 1 +complete, then complete, c co com comp BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 2 , 1 10 0 0 0 0 1 +operation, with operation, o op ope oper BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 2 , 1 6 0 0 0 0 1 +rsa_target_highest_slotid. If rsa_target_highest_slotid. r rs rsa rsa_ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 2 .- 2 9 0 0 0 0 1 +associated with associated a as ass asso BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 2 , 1 10 0 0 0 0 1 +enough zero-length enough e en eno enou BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 2 -"" 3 10 0 0 0 0 1 +count to count c co cou coun BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 2 . 1 7 0 0 0 0 1 +20.8.4. IMPLEMENTATION 20.8.4. 2 20 20. 20.8 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 6 ... 3 10 0 0 0 0 1 +If the if I If If If BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 6 no 0 10 0 0 0 0 1 +to what to t to to to BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 6 , 1 9 0 0 0 0 1 +asserting flow asserting a as ass asse BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 6 no 0 9 0 0 0 0 1 +to the to t to to to BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 6 , 1 9 0 0 0 0 1 +requests that requests r re req requ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 11 6 . 1 9 0 0 0 0 1 +Once that once O On Onc Once BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 6 ,, 2 10 0 0 0 0 1 +time the time t ti tim time BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 6 no 0 8 0 0 0 0 1 +rsa_target_highest_slotid, the rsa_target_highest_slotid, r rs rsa rsa_ BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 6 ,. 2 9 0 0 0 0 1 +20.9. Operation 20.9. 2 20 20. 20.9 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 10 ..:- 4 10 0 0 0 0 1 +Control Control control C Co Con Cont BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 10 no 0 1 0 0 0 0 1 +20.9.1. ARGUMENT 20.9.1. 2 20 20. 20.9 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 11 ... 3 10 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 11 , 1 10 0 0 0 0 0 +[Page 618] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 11 0 no 0 4 0 0 0 0 1 +struct referring_call4 struct s st str stru BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 0 no 0 10 0 0 0 0 1 +sequenceid4 sequenceid4 sequenceid4 s se seq sequ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 0 no 0 4 0 0 0 0 1 +rc_sequenceid; rc_sequenceid; rc_sequenceid; r rc rc_ rc_s BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 0 ; 1 6 0 0 0 0 1 +slotid4 slotid4 slotid4 s sl slo slot BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 0 no 0 3 0 0 0 0 1 +rc_slotid; rc_slotid; rc_slotid; r rc rc_ rc_s BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 0 ; 1 4 0 0 0 0 1 +}; }; }; } }; }; }; BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 11 0 ; 1 1 0 0 0 0 1 +struct referring_call_list4 struct s st str stru BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 1 no 0 7 0 0 0 0 1 +sessionid4 sessionid4 sessionid4 s se ses sess BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 1 no 0 2 0 0 0 0 1 +rcl_sessionid; rcl_sessionid; rcl_sessionid; r rc rcl rcl_ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 1 ; 1 3 0 0 0 0 1 +referring_call4 rcl_referring_calls<>; referring_call4 r re ref refe BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 1 ; 1 10 0 0 0 0 1 +}; }; }; } }; }; }; BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 11 1 ; 1 0 0 0 0 0 1 +struct CB_SEQUENCE4args struct s st str stru BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 2 no 0 5 0 0 0 0 1 +sessionid4 sessionid4 sessionid4 s se ses sess BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 2 no 0 2 0 0 0 0 1 +csa_sessionid; csa_sessionid; csa_sessionid; c cs csa csa_ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 2 ; 1 3 0 0 0 0 1 +sequenceid4 sequenceid4 sequenceid4 s se seq sequ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 2 no 0 2 0 0 0 0 1 +csa_sequenceid; csa_sequenceid; csa_sequenceid; c cs csa csa_ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 2 ; 1 3 0 0 0 0 1 +slotid4 slotid4 slotid4 s sl slo slot BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 2 no 0 1 0 0 0 0 1 +csa_slotid; csa_slotid; csa_slotid; c cs csa csa_ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 2 ; 1 2 0 0 0 0 1 +slotid4 slotid4 slotid4 s sl slo slot BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 2 no 0 1 0 0 0 0 1 +csa_highest_slotid; csa_highest_slotid; csa_highest_slotid; c cs csa csa_ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 2 ; 1 4 0 0 0 0 1 +bool bool bool b bo boo bool BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 2 no 0 1 0 0 0 0 1 +csa_cachethis; csa_cachethis; csa_cachethis; c cs csa csa_ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 2 ; 1 3 0 0 0 0 1 +referring_call_list4 csa_referring_call_lists<>; referring_call_list4 r re ref refe BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 2 ; 1 10 0 0 0 0 1 +}; }; }; } }; }; }; BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 11 2 ; 1 0 0 0 0 0 1 +20.9.2. RESULT 20.9.2. 2 20 20. 20.9 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 3 ... 3 10 0 0 0 0 1 +struct CB_SEQUENCE4resok struct s st str stru BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 3 no 0 10 0 0 0 0 1 +sessionid4 sessionid4 sessionid4 s se ses sess BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 3 no 0 4 0 0 0 0 1 +csr_sessionid; csr_sessionid; csr_sessionid; c cs csr csr_ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 3 ; 1 5 0 0 0 0 1 +sequenceid4 sequenceid4 sequenceid4 s se seq sequ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 3 no 0 4 0 0 0 0 1 +csr_sequenceid; csr_sequenceid; csr_sequenceid; c cs csr csr_ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 3 ; 1 5 0 0 0 0 1 +slotid4 slotid4 slotid4 s sl slo slot BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 3 no 0 2 0 0 0 0 1 +csr_slotid; csr_slotid; csr_slotid; c cs csr csr_ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 3 ; 1 4 0 0 0 0 1 +slotid4 slotid4 slotid4 s sl slo slot BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 3 no 0 2 0 0 0 0 1 +csr_highest_slotid; csr_highest_slotid; csr_highest_slotid; c cs csr csr_ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 3 ; 1 7 0 0 0 0 1 +slotid4 slotid4 slotid4 s sl slo slot BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 3 no 0 2 0 0 0 0 1 +csr_target_highest_slotid; csr_target_highest_slotid; csr_target_highest_slotid; c cs csr csr_ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 3 ; 1 10 0 0 0 0 1 +}; }; }; } }; }; }; BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 11 3 ; 1 1 0 0 0 0 1 +union CB_SEQUENCE4res union u un uni unio BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 4 () 2 10 0 0 0 0 1 +case NFS4_OK: case c ca cas case BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 11 4 : 1 2 0 0 0 0 1 +CB_SEQUENCE4resok CB_SEQUENCE4resok cb_sequence4resok C CB CB_ CB_S BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 4 no 0 3 0 0 0 0 1 +csr_resok4; csr_resok4; csr_resok4; c cs csr csr_ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 4 ; 1 2 0 0 0 0 1 +default: default: default: d de def defa BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 4 : 1 1 0 0 0 0 1 +void; void; void; v vo voi void BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 4 ; 1 1 0 0 0 0 1 +}; }; }; } }; }; }; BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 11 4 ; 1 0 0 0 0 0 1 +20.9.3. DESCRIPTION 20.9.3. 2 20 20. 20.9 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 6 ... 3 10 0 0 0 0 1 +The CB_SEQUENCE the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 6 no 0 9 0 0 0 0 1 +for the for f fo for for BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 6 . 1 9 0 0 0 0 1 +contents include contents c co con cont BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 6 , 1 9 0 0 0 0 1 +slot ID slot s sl slo slot BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 6 no 0 9 0 0 0 0 1 +request control request r re req requ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 6 , 1 9 0 0 0 0 1 +maxima that maxima m ma max maxi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 11 6 . 1 10 0 0 0 0 1 +CB_COMPOUND request, cb_compound C CB CB_ CB_C BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 11 6 , 1 9 0 0 0 0 1 +first operation. first f fi fir firs BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 6 . 1 9 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 11 , 1 10 0 0 0 0 0 +[Page 619] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 11 0 no 0 4 0 0 0 0 1 +when CB_SEQUENCE when w wh whe when BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 0 no 0 10 0 0 0 0 1 +first. If first. f fi fir firs BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 0 . 1 8 0 0 0 0 1 +CB_COMPOUND, NFS4ERR_OP_NOT_IN_SESSION cb_compound, C CB CB_ CB_C BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 11 0 ,. 2 8 0 0 0 0 1 +See Section see S Se See See BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 11 1 ... 3 10 0 0 0 0 1 +If csa_cachethis if I If If If BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 1 , 1 9 0 0 0 0 1 +client cache client c cl cli clie BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 1 . 1 10 0 0 0 0 1 +cache the cache c ca cac cach BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 1 (....). 7 6 0 0 0 0 1 +The csa_referring_call_lists the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 2 , 1 10 0 0 0 0 1 +identified by identified i id ide iden BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 2 ,,. 3 8 0 0 0 0 1 +requests that requests r re req requ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 11 2 . 1 8 0 0 0 0 1 +previous requests previous p pr pre prev BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 2 () 2 9 0 0 0 0 1 +CB_COMPOUND as cb_compound C CB CB_ CB_C BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 11 2 . 1 9 0 0 0 0 1 +session ID session s se ses sess BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 2 , 1 9 0 0 0 0 1 +and a and a an and and BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 2 ..... 5 9 0 0 0 0 1 +The value the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 4 no 0 10 0 0 0 0 1 +sequence ID sequence s se seq sequ BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 4 . 1 8 0 0 0 0 1 +o If o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 11 5 ' 1 10 0 0 0 0 1 +sequence ID sequence s se seq sequ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 5 (), 3 7 0 0 0 0 1 +csa_sequenceid is csa_sequenceid c cs csa csa_ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 5 ( 1 10 0 0 0 0 1 +wraparound of wraparound w wr wra wrap BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 5 ), 2 9 0 0 0 0 1 +MUST return must M MU MUS MUST BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 11 5 . 1 5 0 0 0 0 1 +o If o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 11 6 , 1 10 0 0 0 0 1 +a retry, a a a a a BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 1 0 0 0 0 0 11 6 ,' 2 9 0 0 0 0 1 +reply. reply. reply. r re rep repl BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 6 . 1 1 0 0 0 0 1 +o If o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 11 7 () 2 10 0 0 0 0 1 +the cached the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 7 ,,' 3 9 0 0 0 0 1 +sequence ID sequence s se seq sequ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 7 . 1 8 0 0 0 0 1 +CB_SEQUENCE, if cb_sequence, C CB CB_ CB_S BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 11 7 ,,. 3 8 0 0 0 0 1 +operations, the operations, o op ope oper BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 7 , 1 9 0 0 0 0 1 +reply in reply r re rep repl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 7 ,', 3 9 0 0 0 0 1 +server receives server s se ser serv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 7 , 1 9 0 0 0 0 1 +related to related r re rel rela BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 7 . 1 3 0 0 0 0 1 +If the if I If If If BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 9 no 0 9 0 0 0 0 1 +different request, different d di dif diff BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 9 , 1 9 0 0 0 0 1 +retry of retry r re ret retr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 9 . 1 10 0 0 0 0 1 +the server's the t th the the BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 9 '. 2 9 0 0 0 0 1 +If CB_SEQUENCE if I If If If BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 10 ,( 2 10 0 0 0 0 1 +ID, cached id, I ID ID, ID, BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 11 10 ,)..... 7 9 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 11 , 1 10 0 0 0 0 0 +[Page 620] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 11 0 no 0 4 0 0 0 0 1 +conditions when conditions c co con cond BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 0 no 0 10 0 0 0 0 1 +returned. returned. returned. r re ret retu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 0 . 1 1 0 0 0 0 1 +The client the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 0 "": 3 9 0 0 0 0 1 +and csr_target_highest_slotid. and a an and and BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 0 . 1 10 0 0 0 0 1 +client will client c cl cli clie BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 0 , 1 10 0 0 0 0 1 +be less be b be be be BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 0 ( 1 7 0 0 0 0 1 +Section 2.10.6.1 section S Se Sec Sect BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 0 ...). 5 9 0 0 0 0 1 +ID the id I ID ID ID BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 1 0 0 0 0 0 0 11 0 no 0 9 0 0 0 0 1 +operation. operation. operation. o op ope oper BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 0 . 1 1 0 0 0 0 1 +20.10. Operation 20.10. 2 20 20. 20.1 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 4 ..:- 4 10 0 0 0 0 1 +Wants Wants wants W Wa Wan Want BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 4 no 0 0 0 0 0 0 1 +20.10.1. ARGUMENT 20.10.1. 2 20 20. 20.1 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 4 ... 3 10 0 0 0 0 1 +struct CB_WANTS_CANCELLED4args struct s st str stru BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 4 no 0 8 0 0 0 0 1 +bool cwca_contended_wants_cancelled; bool b bo boo bool BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 4 ; 1 10 0 0 0 0 1 +bool cwca_resourced_wants_cancelled; bool b bo boo bool BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 4 ; 1 10 0 0 0 0 1 +}; }; }; } }; }; }; BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 11 4 ; 1 0 0 0 0 0 1 +20.10.2. RESULT 20.10.2. 2 20 20. 20.1 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 5 ... 3 10 0 0 0 0 1 +struct CB_WANTS_CANCELLED4res struct s st str stru BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 5 no 0 10 0 0 0 0 1 +nfsstat4 nfsstat4 nfsstat4 n nf nfs nfss BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 5 no 0 2 0 0 0 0 1 +cwcr_status; cwcr_status; cwcr_status; c cw cwc cwcr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 5 ; 1 4 0 0 0 0 1 +}; }; }; } }; }; }; BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 11 5 ; 1 0 0 0 0 0 1 +20.10.3. DESCRIPTION 20.10.3. 2 20 20. 20.1 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 6 ... 3 10 0 0 0 0 1 +The CB_WANTS_CANCELLED the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 6 no 0 9 0 0 0 0 1 +some or some s so som some BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 6 no 0 10 0 0 0 0 1 +layouts have layouts l la lay layo BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 6 . 1 4 0 0 0 0 1 +If cwca_contended_wants_cancelled if I If If If BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 7 , 1 9 0 0 0 0 1 +server will server s se ser serv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 7 no 0 10 0 0 0 0 1 +available after available a av ava avai BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 7 . 1 5 0 0 0 0 1 +If cwca_resourced_wants_cancelled if I If If If BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 8 , 1 10 0 0 0 0 1 +server will server s se ser serv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 8 no 0 9 0 0 0 0 1 +server to server s se ser serv BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 8 . 1 5 0 0 0 0 1 +After receiving after A Af Aft Afte BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 10 , 1 10 0 0 0 0 1 +attempt to attempt a at att atte BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 10 , 1 10 0 0 0 0 1 +possibly re-register possibly p po pos poss BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 10 -. 2 4 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 11 , 1 10 0 0 0 0 0 +[Page 621] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 11 0 no 0 4 0 0 0 0 1 +20.10.4. IMPLEMENTATION 20.10.4. 2 20 20. 20.1 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 0 ... 3 10 0 0 0 0 1 +When a when W Wh Whe When BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 0 ,, 2 9 0 0 0 0 1 +request outstanding, request r re req requ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 0 ,, 2 9 0 0 0 0 1 +may need may m ma may may BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 1 0 0 11 0 no 0 9 0 0 0 0 1 +delegation availability delegation d de del dele BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 0 no 0 10 0 0 0 0 1 +thus covered thus t th thu thus BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 0 , 1 9 0 0 0 0 1 +was not was w wa was was BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 0 . 1 9 0 0 0 0 1 +putting the putting p pu put putt BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 0 no 0 9 0 0 0 0 1 +the associated the t th the the BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 0 . 1 4 0 0 0 0 1 +20.11. Operation 20.11. 2 20 20. 20.1 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 3 ..:- 4 10 0 0 0 0 1 +Availability Availability availability A Av Ava Avai BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 3 no 0 1 0 0 0 0 1 +20.11.1. ARGUMENT 20.11.1. 2 20 20. 20.1 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 3 ... 3 10 0 0 0 0 1 +struct CB_NOTIFY_LOCK4args struct s st str stru BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 4 no 0 10 0 0 0 0 1 +nfs_fh4 nfs_fh4 nfs_fh4 n nf nfs nfs_ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 4 no 0 2 0 0 0 0 1 +cnla_fh; cnla_fh; cnla_fh; c cn cnl cnla BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 4 ; 1 3 0 0 0 0 1 +lock_owner4 cnla_lock_owner; lock_owner4 l lo loc lock BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 4 ; 1 10 0 0 0 0 1 +}; }; }; } }; }; }; BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 11 4 ; 1 1 0 0 0 0 1 +20.11.2. RESULT 20.11.2. 2 20 20. 20.1 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 4 ... 3 10 0 0 0 0 1 +struct CB_NOTIFY_LOCK4res struct s st str stru BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 4 no 0 10 0 0 0 0 1 +nfsstat4 nfsstat4 nfsstat4 n nf nfs nfss BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 4 no 0 3 0 0 0 0 1 +cnlr_status; cnlr_status; cnlr_status; c cn cnl cnlr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 4 ; 1 4 0 0 0 0 1 +}; }; }; } }; }; }; BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 11 4 ; 1 1 0 0 0 0 1 +20.11.3. DESCRIPTION 20.11.3. 2 20 20. 20.1 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 5 ... 3 10 0 0 0 0 1 +The server the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 5 - 1 9 0 0 0 0 1 +for the for f fo for for BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 5 -, 2 10 0 0 0 0 1 +via an via v vi via via BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 5 ,. 2 8 0 0 0 0 1 +This callback this T Th Thi This BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 6 no 0 9 0 0 0 0 1 +latency of latency l la lat late BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 6 no 0 9 0 0 0 0 1 +client that client c cl cli clie BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 6 - 1 9 0 0 0 0 1 +be able be b be be be BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 6 . 1 9 0 0 0 0 1 +for a for f fo for for BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 6 , 1 9 0 0 0 0 1 +when responding when w wh whe when BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 6 . 1 9 0 0 0 0 1 +commit the commit c co com comm BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 6 , 1 9 0 0 0 0 1 +use this use u us use use BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 6 no 0 10 0 0 0 0 1 +from that from f fr fro from BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 6 . 1 2 0 0 0 0 1 +If an if I If If If BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 10 , 1 9 0 0 0 0 1 +returned has returned r re ret retu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 10 "" 2 9 0 0 0 0 1 +allocated, with allocated, a al all allo BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 10 ,"" 3 10 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 11 , 1 10 0 0 0 0 0 +[Page 622] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 11 0 no 0 4 0 0 0 0 1 +represented, then represented, r re rep repr BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 0 , 1 10 0 0 0 0 1 +when responding when w wh whe when BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 0 no 0 9 0 0 0 0 1 +going forward. going g go goi goin BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 0 . 1 9 0 0 0 0 1 +open-owner, the open-owner, o op ope open BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 0 -,"" 4 9 0 0 0 0 1 +stateids (subject stateids s st sta stat BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 0 () 2 8 0 0 0 0 1 +controlling value controlling c co con cont BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 0 . 1 8 0 0 0 0 1 +20.11.4. IMPLEMENTATION 20.11.4. 2 20 20. 20.1 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 3 ... 3 10 0 0 0 0 1 +The server the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 3 - 1 9 0 0 0 0 1 +and until and a an and and BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 3 ., 2 9 0 0 0 0 1 +the client the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 3 no 0 10 0 0 0 0 1 +lock or lock l lo loc lock BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 11 3 no 0 8 0 0 0 0 1 +successful. successful. successful. s su suc succ BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 3 . 1 1 0 0 0 0 1 +The server the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 6 , 1 10 0 0 0 0 1 +does, it does, d do doe does BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 6 ,. 2 8 0 0 0 0 1 +Therefore, the therefore, T Th The Ther BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 6 ,, 2 9 0 0 0 0 1 +as described as a as as as BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 6 .. 2 4 0 0 0 0 1 +Similarly, the similarly, S Si Sim Simi BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 8 ,, 2 10 0 0 0 0 1 +even it even e ev eve even BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 8 ,., 3 9 0 0 0 0 1 +NOT assume not N NO NOT NOT BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 11 8 . 1 8 0 0 0 0 1 +20.12. Operation 20.12. 2 20 20. 20.1 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 10 ..:- 4 10 0 0 0 0 1 +Changes Changes changes C Ch Cha Chan BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 11 10 no 0 1 0 0 0 0 1 +20.12.1. ARGUMENT 20.12.1. 2 20 20. 20.1 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 11 ... 3 10 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 11 , 1 10 0 0 0 0 0 +[Page 623] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 11 0 no 0 4 0 0 0 0 1 +/* /* /* / /* /* /* BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 11 0 /* 2 1 0 0 0 0 1 +* Device * * * * * BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 11 0 *. 2 10 0 0 0 0 1 +*/ */ */ * */ */ */ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 11 0 */ 2 1 0 0 0 0 1 +enum notify_deviceid_type4 enum e en enu enum BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 0 no 0 10 0 0 0 0 1 +NOTIFY_DEVICEID4_CHANGE = notify_deviceid4_change N NO NOT NOTI BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 0 , 1 10 0 0 0 0 1 +NOTIFY_DEVICEID4_DELETE = notify_deviceid4_delete N NO NOT NOTI BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 0 no 0 9 0 0 0 0 1 +}; }; }; } }; }; }; BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 11 0 ; 1 1 0 0 0 0 1 +/* For /* / /* /* /* BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 11 1 /**/ 4 10 0 0 0 0 1 +struct notify_deviceid_delete4 struct s st str stru BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 1 no 0 9 0 0 0 0 1 +layouttype4 layouttype4 layouttype4 l la lay layo BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 1 no 0 3 0 0 0 0 1 +ndd_layouttype; ndd_layouttype; ndd_layouttype; n nd ndd ndd_ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 1 ; 1 4 0 0 0 0 1 +deviceid4 deviceid4 deviceid4 d de dev devi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 1 no 0 2 0 0 0 0 1 +ndd_deviceid; ndd_deviceid; ndd_deviceid; n nd ndd ndd_ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 1 ; 1 4 0 0 0 0 1 +}; }; }; } }; }; }; BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 11 1 ; 1 0 0 0 0 0 1 +/* For /* / /* /* /* BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 11 2 /**/ 4 10 0 0 0 0 1 +struct notify_deviceid_change4 struct s st str stru BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 2 no 0 9 0 0 0 0 1 +layouttype4 layouttype4 layouttype4 l la lay layo BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 2 no 0 3 0 0 0 0 1 +ndc_layouttype; ndc_layouttype; ndc_layouttype; n nd ndc ndc_ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 2 ; 1 4 0 0 0 0 1 +deviceid4 deviceid4 deviceid4 d de dev devi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 2 no 0 2 0 0 0 0 1 +ndc_deviceid; ndc_deviceid; ndc_deviceid; n nd ndc ndc_ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 2 ; 1 4 0 0 0 0 1 +bool bool bool b bo boo bool BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 2 no 0 1 0 0 0 0 1 +ndc_immediate; ndc_immediate; ndc_immediate; n nd ndc ndc_ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 2 ; 1 4 0 0 0 0 1 +}; }; }; } }; }; }; BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 11 2 ; 1 0 0 0 0 0 1 +struct CB_NOTIFY_DEVICEID4args struct s st str stru BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 3 no 0 10 0 0 0 0 1 +notify4 cnda_changes<>; notify4 n no not noti BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 3 ; 1 7 0 0 0 0 1 +}; }; }; } }; }; }; BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 11 3 ; 1 0 0 0 0 0 1 +20.12.2. RESULT 20.12.2. 2 20 20. 20.1 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 4 ... 3 10 0 0 0 0 1 +struct CB_NOTIFY_DEVICEID4res struct s st str stru BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 4 no 0 10 0 0 0 0 1 +nfsstat4 nfsstat4 nfsstat4 n nf nfs nfss BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 4 no 0 2 0 0 0 0 1 +cndr_status; cndr_status; cndr_status; c cn cnd cndr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 4 ; 1 4 0 0 0 0 1 +}; }; }; } }; }; }; BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 11 4 ; 1 0 0 0 0 0 1 +20.12.3. DESCRIPTION 20.12.3. 2 20 20. 20.1 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 4 ... 3 10 0 0 0 0 1 +The CB_NOTIFY_DEVICEID the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 5 no 0 9 0 0 0 0 1 +notifications to notifications n no not noti BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 5 . 1 9 0 0 0 0 1 +registration of registration r re reg regi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 5 no 0 10 0 0 0 0 1 +GETDEVICEINFO. These getdeviceinfo. G GE GET GETD BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 11 5 . 1 9 0 0 0 0 1 +once the once o on onc once BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 5 . 1 9 0 0 0 0 1 +server will server s se ser serv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 5 ,, 2 10 0 0 0 0 1 +of pairs of o of of of BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 5 ... 3 10 0 0 0 0 1 +of how of o of of of BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 5 .. 2 4 0 0 0 0 1 +As with as A As As As BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 9 (..), 5 10 0 0 0 0 1 +more notifications more m mo mor more BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 9 , 1 9 0 0 0 0 1 +multiple CB_COMPOUNDs. multiple m mu mul mult BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 9 ., 2 9 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 11 , 1 10 0 0 0 0 0 +[Page 624] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 11 0 no 0 4 0 0 0 0 1 +issue because issue i is iss issu BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 0 ,- 2 10 0 0 0 0 1 +after being after a af aft afte BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 0 (..). 5 5 0 0 0 0 1 +All device all A Al All All BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 1 . 1 9 0 0 0 0 1 +The layout the T Th The The BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 1 no 0 10 0 0 0 0 1 +share the share s sh sha shar BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 1 , 1 8 0 0 0 0 1 +completely different completely c co com comp BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 1 . 1 7 0 0 0 0 1 +The server the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 2 : 1 10 0 0 0 0 1 +NOTIFY_DEVICEID4_CHANGE NOTIFY_DEVICEID4_CHANGE notify_deviceid4_change N NO NOT NOTI BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 2 no 0 3 0 0 0 0 1 +A previously a A A A A BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 1 0 0 0 0 0 11 2 ---- 4 9 0 0 0 0 1 +changed and changed c ch cha chan BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 2 no 0 9 0 0 0 0 1 +mapping. The mapping. m ma map mapp BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 2 . 1 9 0 0 0 0 1 +notify_deviceid_change4. This notify_deviceid_change4. n no not noti BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 2 . 1 9 0 0 0 0 1 +field, ndc_immediate, field, f fi fie fiel BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 2 ,, 2 10 0 0 0 0 1 +be enforced be b be be be BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 2 , 1 9 0 0 0 0 1 +complete any complete c co com comp BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 2 /. 2 9 0 0 0 0 1 +FALSE, then false, F FA FAL FALS BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 11 2 ,, 2 8 0 0 0 0 1 +pending I/O. pending p pe pen pend BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 2 /./, 4 9 0 0 0 0 1 +the new the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 2 ----/ 5 10 0 0 0 0 1 +O requests o O O O O BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 11 2 . 1 9 0 0 0 0 1 +NOTIFY4_DEVICEID_DELETE NOTIFY4_DEVICEID_DELETE notify4_deviceid_delete N NO NOT NOTI BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 6 no 0 3 0 0 0 0 1 +Deletes a deletes D De Del Dele BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 6 . 1 10 0 0 0 0 1 +be sent be b be be be BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 6 . 1 9 0 0 0 0 1 +In other in I In In In BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 11 6 , 1 9 0 0 0 0 1 +notification, one notification, n no not noti BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 6 , 1 10 0 0 0 0 1 +with the with w wi wit with BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 6 : 1 3 0 0 0 0 1 +* The * * * * * BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 11 8 *. 2 10 0 0 0 0 1 +* The * * * * * BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 11 9 * 1 10 0 0 0 0 1 +ID. ID. id. I ID ID. ID. BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 11 9 . 1 0 0 0 0 0 1 +* The * * * * * BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 11 9 *. 2 10 0 0 0 0 1 +The notification the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 10 no 0 8 0 0 0 0 1 +notify_deviceid_delete4. After notify_deviceid_delete4. n no not noti BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 10 ., 2 9 0 0 0 0 1 +MUST NOT must M MU MUS MUST BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 11 10 no 0 10 0 0 0 0 1 +client ID client c cl cli clie BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 10 . 1 3 0 0 0 0 1 +20.13. Operation 20.13. 2 20 20. 20.1 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 11 ..:- 4 10 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 11 , 1 10 0 0 0 0 0 +[Page 625] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 11 0 no 0 4 0 0 0 0 1 +20.13.1. ARGUMENT 20.13.1. 2 20 20. 20.1 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 0 ... 3 10 0 0 0 0 1 +void; void; void; v vo voi void BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 0 ; 1 10 0 0 0 0 1 +20.13.2. RESULT 20.13.2. 2 20 20. 20.1 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 0 ... 3 10 0 0 0 0 1 +/* /* /* / /* /* /* BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 11 0 /* 2 0 0 0 0 0 1 +* CB_ILLEGAL: * * * * * BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 11 0 *: 2 10 0 0 0 0 1 +*/ */ */ * */ */ */ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 11 0 */ 2 0 0 0 0 0 1 +struct CB_ILLEGAL4res struct s st str stru BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 0 no 0 4 0 0 0 0 1 +nfsstat4 nfsstat4 nfsstat4 n nf nfs nfss BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 0 no 0 1 0 0 0 0 1 +status; status; status; s st sta stat BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 0 ; 1 1 0 0 0 0 1 +}; }; }; } }; }; }; BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 11 0 ; 1 0 0 0 0 0 1 +20.13.3. DESCRIPTION 20.13.3. 2 20 20. 20.1 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 1 ... 3 10 0 0 0 0 1 +This operation this T Th Thi This BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 1 no 0 9 0 0 0 0 1 +case of case c ca cas case BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 11 1 no 0 10 0 0 0 0 1 +is not is i is is is BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 1 .... 4 9 0 0 0 0 1 +more details. more m mo mor more BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 1 . 1 2 0 0 0 0 1 +The status the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 2 . 1 10 0 0 0 0 1 +20.13.4. IMPLEMENTATION 20.13.4. 2 20 20. 20.1 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 3 ... 3 10 0 0 0 0 1 +A server a A A A A BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 1 0 0 0 0 0 11 3 , 1 10 0 0 0 0 1 +but if but b bu but but BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 3 , 1 9 0 0 0 0 1 +be with be b be be be BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 3 . 1 9 0 0 0 0 1 +gets an gets g ge get gets BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 3 , 1 9 0 0 0 0 1 +client checks client c cl cli clie BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 3 , 1 9 0 0 0 0 1 +then an then t th the then BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 3 . 1 9 0 0 0 0 1 +21. Security 21. 2 21 21. 21. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 5 . 1 10 0 0 0 0 1 +Historically, the historically, H Hi His Hist BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 6 , 1 10 0 0 0 0 1 +machine being machine m ma mac mach BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 6 , 1 9 0 0 0 0 1 +client to client c cl cli clie BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 6 -. 2 9 0 0 0 0 1 +its files its i it its its BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 6 ,' 2 9 0 0 0 0 1 +source network source s so sou sour BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 6 ., 2 9 0 0 0 0 1 +flavor simply flavor f fl fla flav BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 6 - 1 9 0 0 0 0 1 +server. When server. s se ser serv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 6 ., 2 9 0 0 0 0 1 +responses came responses r re res resp BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 6 no 0 10 0 0 0 0 1 +the request the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 6 . 1 9 0 0 0 0 1 +simple to simple s si sim simp BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 6 ,.,. 4 7 0 0 0 0 1 +implementations are implementations i im imp impl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 6 no 0 9 0 0 0 0 1 +end-to-end authentication, end-to-end e en end end- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 6 --,- 4 9 0 0 0 0 1 +authenticates (via authenticates a au aut auth BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 6 ( 1 10 0 0 0 0 1 +or keys or o or or or BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 6 ). 2 10 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 11 , 1 10 0 0 0 0 0 +[Page 626] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 11 0 no 0 4 0 0 0 0 1 +Consideration is consideration C Co Con Cons BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 0 no 0 10 0 0 0 0 1 +requests and requests r re req requ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 11 0 .-- 3 8 0 0 0 0 1 +authentication, integrity, authentication, a au aut auth BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 0 ,, 2 8 0 0 0 0 1 +Section 2.2.1.1.1. section S Se Sec Sect BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 0 ..... 5 10 0 0 0 0 1 +Kerberos V5 kerberos K Ke Ker Kerb BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 0 ........ 8 8 0 0 0 0 1 +Note that note N No Not Note BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 1 ; 1 10 0 0 0 0 1 +AUTH_SYS can auth_sys A AU AUT AUTH BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 11 1 .., 3 8 0 0 0 0 1 +AUTH_SYS is auth_sys A AU AUT AUTH BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 11 1 ., 2 9 0 0 0 0 1 +interoperability via interoperability i in int inte BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 1 . 1 6 0 0 0 0 1 +For reasons for F Fo For For BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 2 ,, 2 9 0 0 0 0 1 +and/or reduction and/or a an and and/ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 2 /,. 3 10 0 0 0 0 1 +might decline might m mi mig migh BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 2 no 0 9 0 0 0 0 1 +protection on protection p pr pro prot BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 2 . 1 9 0 0 0 0 1 +mechanisms without mechanisms m me mec mech BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 2 -- 2 9 0 0 0 0 1 +the-middle of the-middle t th the the- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 2 - 1 10 0 0 0 0 1 +and/or the and/or a an and and/ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 2 /. 2 9 0 0 0 0 1 +option to option o op opt opti BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 2 , 1 9 0 0 0 0 1 +in particular in i in in in BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 11 2 no 0 8 0 0 0 0 1 +choices. choices. choices. c ch cho choi BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 2 . 1 1 0 0 0 0 1 +o The o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 11 5 . 1 10 0 0 0 0 1 +is RECOMMENDED is i is is is BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 5 no 0 9 0 0 0 0 1 +are protected are a ar are are BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 5 no 0 8 0 0 0 0 1 +protection, such protection, p pr pro prot BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 5 , 1 6 0 0 0 0 1 +rpc_gss_svc_integrity or rpc_gss_svc_integrity r rp rpc rpc_ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 5 . 1 9 0 0 0 0 1 +integrity protection integrity i in int inte BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 5 no 0 9 0 0 0 0 1 +their results, their t th the thei BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 5 ,--- 4 9 0 0 0 0 1 +the client the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 5 no 0 9 0 0 0 0 1 +the server, the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 5 ,/ 2 9 0 0 0 0 1 +attacks. attacks. attacks. a at att atta BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 5 . 1 1 0 0 0 0 1 +o The o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 11 7 no 0 9 0 0 0 0 1 +GETATTR for getattr G GE GET GETA BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 11 7 , 1 9 0 0 0 0 1 +order to order o or ord orde BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 7 ---. 4 9 0 0 0 0 1 +attack has attack a at att atta BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 7 . 1 9 0 0 0 0 1 +results of results r re res resu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 11 7 ., 2 9 0 0 0 0 1 +the client the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 7 no 0 9 0 0 0 0 1 +fs_locations_info attributes, fs_locations_info f fs fs_ fs_l BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 7 , 1 10 0 0 0 0 1 +cause the cause c ca cau caus BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 7 no 0 9 0 0 0 0 1 +the attacker. the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 7 ., 2 8 0 0 0 0 1 +mitigated. mitigated. mitigated. m mi mit miti BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 7 . 1 1 0 0 0 0 1 +Relative to relative R Re Rel Rela BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 10 ,. 2 9 0 0 0 0 1 +considerations for considerations c co con cons BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 10 (..), 5 9 0 0 0 0 1 +session state session s se ses sess BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 10 (...), 6 10 0 0 0 0 1 +period (see period p pe per peri BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 10 (....). 7 9 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 11 , 1 10 0 0 0 0 0 +[Page 627] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 11 0 no 0 4 0 0 0 0 1 +state, if state, s st sta stat BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 0 ,,.. 4 10 0 0 0 0 1 +specific security specific s sp spe spec BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 0 .. 2 9 0 0 0 0 1 +The use the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 0 - 1 8 0 0 0 0 1 +Section 11 section S Se Sec Sect BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 0 no 0 10 0 0 0 0 1 +of network of o of of of BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 0 no 0 8 0 0 0 0 1 +interfered with interfered i in int inte BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 0 . 1 10 0 0 0 0 1 +of this of o of of of BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 0 , 1 9 0 0 0 0 1 +note of: note n no not note BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 0 : 1 1 0 0 0 0 1 +o When o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 11 2 no 0 10 0 0 0 0 1 +[29] is [29] [ [2 [29 [29] BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 2 [], 3 9 0 0 0 0 1 +returned cannot returned r re ret retu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 2 ., 2 9 0 0 0 0 1 +RPCSEC_GSS to rpcsec_gss R RP RPC RPCS BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 11 2 , 1 9 0 0 0 0 1 +mutual authentication mutual m mu mut mutu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 2 no 0 8 0 0 0 0 1 +provided, as provided, p pr pro prov BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 2 , 1 9 0 0 0 0 1 +use insecure use u us use use BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 2 no 0 9 0 0 0 0 1 +of the of o of of of BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 2 ,[]. 4 8 0 0 0 0 1 +o The o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 11 4 no 0 9 0 0 0 0 1 +information SHOULD information i in inf info BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 4 no 0 9 0 0 0 0 1 +protection. It protection. p pr pro prot BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 4 . 1 9 0 0 0 0 1 +request of request r re req requ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 4 no 0 9 0 0 0 0 1 +protection needs protection p pr pro prot BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 4 no 0 9 0 0 0 0 1 +so, which so, s so so, so, BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 4 , 1 9 0 0 0 0 1 +being returned. being b be bei bein BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 4 . 1 8 0 0 0 0 1 +directed a directed d di dir dire BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 4 , 1 9 0 0 0 0 1 +access to access a ac acc acce BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 4 . 1 9 0 0 0 0 1 +In light in I In In In BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 11 4 , 1 9 0 0 0 0 1 +returned location returned r re ret retu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 4 no 0 9 0 0 0 0 1 +use of use u us use use BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 4 (..) 4 9 0 0 0 0 1 +can result can c ca can can BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 4 - 1 8 0 0 0 0 1 +controlled server, controlled c co con cont BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 4 , 1 10 0 0 0 0 1 +the server's the t th the the BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 4 '. 2 3 0 0 0 0 1 +o Despite o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 11 8 "" 2 10 0 0 0 0 1 +provide "support" provide p pr pro prov BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 8 "", 3 10 0 0 0 0 1 +use of use u us use use BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 8 no 0 9 0 0 0 0 1 +client-server pair. client-server c cl cli clie BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 8 -. 2 2 0 0 0 0 1 +o When o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 11 9 no 0 10 0 0 0 0 1 +associated host associated a as ass asso BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 9 , 1 9 0 0 0 0 1 +use RPCSEC_GSS. use u us use use BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 9 . 1 2 0 0 0 0 1 +In light in I In In In BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 11 10 , 1 9 0 0 0 0 1 +entries that entries e en ent entr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 10 no 0 10 0 0 0 0 1 +name. This name. n na nam name BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 10 . 1 9 0 0 0 0 1 +the destination the t th the the BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 10 ( 1 9 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 11 , 1 10 0 0 0 0 0 +[Page 628] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 11 0 no 0 4 0 0 0 0 1 +replica information) replica r re rep repl BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 0 ), 2 10 0 0 0 0 1 +name provided name n na nam name BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 0 no 0 10 0 0 0 0 1 +in flight. in i in in in BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 11 0 . 1 1 0 0 0 0 1 +When RPCSEC_GSS when W Wh Whe When BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 0 , 1 9 0 0 0 0 1 +aware of aware a aw awa awar BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 0 no 0 8 0 0 0 0 1 +modification in modification m mo mod modi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 0 . 1 9 0 0 0 0 1 +a client a a a a a BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 1 0 0 0 0 0 11 0 , 1 9 0 0 0 0 1 +could vitiate could c co cou coul BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 0 no 0 10 0 0 0 0 1 +the destination. the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 0 . 1 9 0 0 0 0 1 +the destination, the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 0 , 1 9 0 0 0 0 1 +server to server s se ser serv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 0 . 1 9 0 0 0 0 1 +to decide to t to to to BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 0 , 1 9 0 0 0 0 1 +determine, using determine, d de det dete BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 0 ,, 2 9 0 0 0 0 1 +provided, with provided, p pr pro prov BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 0 ,., 3 9 0 0 0 0 1 +client SHOULD client c cl cli clie BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 0 no 0 10 0 0 0 0 1 +migration, even migration, m mi mig migr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 0 , 1 8 0 0 0 0 1 +destination. destination. destination. d de des dest BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 0 . 1 1 0 0 0 0 1 +When a when W Wh Whe When BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 4 no 0 10 0 0 0 0 1 +an NFS an a an an an BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 11 4 ,,, 3 9 0 0 0 0 1 +with integrity with w wi wit with BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 4 ., 2 9 0 0 0 0 1 +best for best b be bes best BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 4 no 0 9 0 0 0 0 1 +simply not simply s si sim simp BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 4 . 1 8 0 0 0 0 1 +When location when W Wh Whe When BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 6 , 1 9 0 0 0 0 1 +additional filtering additional a ad add addi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 6 no 0 10 0 0 0 0 1 +directed. For directed. d di dir dire BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 6 ., 2 8 0 0 0 0 1 +determined that determined d de det dete BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 6 no 0 9 0 0 0 0 1 +are subject are a ar are are BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 6 (.. 3 9 0 0 0 0 1 +network isolation, network n ne net netw BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 11 6 , 1 9 0 0 0 0 1 +used), then used), u us use used BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 6 ), 2 9 0 0 0 0 1 +with others with w wi wit with BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 6 . 1 8 0 0 0 0 1 +To summarize to T To To To BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 8 no 0 9 0 0 0 0 1 +fetching location fetching f fe fet fetc BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 8 , 1 9 0 0 0 0 1 +possibilities for possibilities p po pos poss BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 8 , 1 10 0 0 0 0 1 +interrogation approaches interrogation i in int inte BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 8 no 0 9 0 0 0 0 1 +arrived at arrived a ar arr arri BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 8 : 1 3 0 0 0 0 1 +o The o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 11 9 no 0 10 0 0 0 0 1 +all cases, all a al all all BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 9 , 1 9 0 0 0 0 1 +client to client c cl cli clie BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 9 no 0 8 0 0 0 0 1 +transit. transit. transit. t tr tra tran BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 9 . 1 1 0 0 0 0 1 +o The o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 11 10 (.. 3 10 0 0 0 0 1 +which has which w wh whi whic BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 10 ), 2 9 0 0 0 0 1 +while undesirable while w wh whi whil BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 10 , 1 9 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 11 , 1 10 0 0 0 0 0 +[Page 629] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 11 0 no 0 4 0 0 0 0 1 +avoidable in avoidable a av avo avoi BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 0 . 1 10 0 0 0 0 1 +cannot be cannot c ca can cann BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 0 , 1 9 0 0 0 0 1 +above to above a ab abo abov BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 0 no 0 10 0 0 0 0 1 +invalid address invalid i in inv inva BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 0 . 1 9 0 0 0 0 1 +vary depending vary v va var vary BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 0 no 0 10 0 0 0 0 1 +request is request r re req requ BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 0 . 1 7 0 0 0 0 1 +22. IANA 22. 2 22 22. 22. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 2 . 1 10 0 0 0 0 1 +This section this T Th Thi This BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 2 []. 3 10 0 0 0 0 1 +22.1. IANA 22.1. 2 22 22. 22.1 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 2 .. 2 10 0 0 0 0 1 +This update this T Th Thi This BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 3 . 1 10 0 0 0 0 1 +Previous actions previous P Pr Pre Prev BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 3 . 1 10 0 0 0 0 1 +remaining subsections remaining r re rem rema BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 3 . 1 5 0 0 0 0 1 +22.2. Named 22.2. 2 22 22. 22.2 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 3 .. 2 10 0 0 0 0 1 +IANA created iana I IA IAN IANA BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 11 4 " 1 10 0 0 0 0 1 +Registry". Registry". registry". R Re Reg Regi BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 4 ". 2 1 0 0 0 0 1 +The NFSv4.1 the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 4 . 1 10 0 0 0 0 1 +more named more m mo mor more BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 4 . 1 8 0 0 0 0 1 +attributes are attributes a at att attr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 4 . 1 10 0 0 0 0 1 +the specific the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 4 . 1 9 0 0 0 0 1 +The IANA the T Th The The BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 4 no 0 9 0 0 0 0 1 +exist. While exist. e ex exi exis BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 4 . 1 9 0 0 0 0 1 +attributes as attributes a at att attr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 4 , 1 10 0 0 0 0 1 +with IANA. with w wi wit with BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 4 . 1 1 0 0 0 0 1 +Such registered such S Su Suc Such BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 6 no 0 10 0 0 0 0 1 +versions of versions v ve ver vers BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 6 , 1 9 0 0 0 0 1 +registration. If registration. r re reg regi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 6 . 1 9 0 0 0 0 1 +specific minor specific s sp spe spec BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 6 , 1 8 0 0 0 0 1 +registry's assignment. registry's r re reg regi BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 6 '. 2 3 0 0 0 0 1 +All assignments all A Al All All BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 8 no 0 10 0 0 0 0 1 +basis, per basis, b ba bas basi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 8 ,.[]. 5 9 0 0 0 0 1 +Specification Required, specification S Sp Spe Spec BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 8 ,.[]. 5 7 0 0 0 0 1 +Under the under U Un Und Unde BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 9 ., 2 10 0 0 0 0 1 +theory be theory t th the theo BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 9 -,. 3 9 0 0 0 0 1 +clients and clients c cl cli clie BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 9 . 1 9 0 0 0 0 1 +IANA should iana I IA IAN IANA BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 11 9 no 0 10 0 0 0 0 1 +exceeds 128 exceeds e ex exc exce BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 9 -. 2 9 0 0 0 0 1 +set up set s se set set BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 9 , 1 9 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 11 , 1 10 0 0 0 0 0 +[Page 630] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 11 0 no 0 4 0 0 0 0 1 +the prefixes the t th the the BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 0 """". 5 10 0 0 0 0 1 +with a with w wi wit with BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 0 -. 2 5 0 0 0 0 1 +The prefix the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 1 "". 3 10 0 0 0 0 1 +to make to t to to to BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 1 no 0 9 0 0 0 0 1 +conflicting with conflicting c co con conf BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 1 ' 1 9 0 0 0 0 1 +prefix "PRIV" prefix p pr pre pref BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 1 "". 3 6 0 0 0 0 1 +Because some because B Be Bec Beca BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 2 .- 2 9 0 0 0 0 1 +semantics, the semantics, s se sem sema BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 2 , 1 8 0 0 0 0 1 +permutations of permutations p pe per perm BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 2 "","","" 8 9 0 0 0 0 1 +(e.g., "expe", (e.g., ( (e (e. (e.g BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 2 (..,"","","",.)., 17 10 0 0 0 0 1 +must not must m mu mus must BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 2 no 0 9 0 0 0 0 1 +attributes were attributes a at att attr BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 2 . 1 6 0 0 0 0 1 +The registry the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 4 , 1 10 0 0 0 0 1 +containing three containing c co con cont BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 4 . 1 7 0 0 0 0 1 +1. A 1. 1 1. 1. 1. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 5 .-. 3 10 0 0 0 0 1 +This name this T Th Thi This BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 5 .- 2 9 0 0 0 0 1 +characters long. characters c ch cha char BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 5 . 1 2 0 0 0 0 1 +2. A 2. 2 2. 2. 2. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 6 .. 2 9 0 0 0 0 1 +reference can reference r re ref refe BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 6 (). 3 10 0 0 0 0 1 +3. The 3. 3 3. 3. 3. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 7 .. 2 10 0 0 0 0 1 +consume up consume c co con cons BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 7 (). 3 7 0 0 0 0 1 +22.2.1. Initial 22.2.1. 2 22 22. 22.2 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 7 ... 3 10 0 0 0 0 1 +There is there T Th The Ther BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 8 . 1 10 0 0 0 0 1 +22.2.2. Updating 22.2.2. 2 22 22. 22.2 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 8 ... 3 10 0 0 0 0 1 +The registrant the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 8 no 0 9 0 0 0 0 1 +field. Any field. f fi fie fiel BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 8 .. 2 10 0 0 0 0 1 +22.3. Device 22.3. 2 22 22. 22.3 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 9 .. 2 10 0 0 0 0 1 +IANA created iana I IA IAN IANA BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 11 9 " 1 10 0 0 0 0 1 +Registry". Registry". registry". R Re Reg Regi BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 9 ". 2 1 0 0 0 0 1 +The potential the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 9 no 0 9 0 0 0 0 1 +CB_NOTIFY_DEVICEID operation cb_notify_deviceid C CB CB_ CB_N BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 11 9 (.). 4 9 0 0 0 0 1 +via changes via v vi via via BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 9 , 1 9 0 0 0 0 1 +adding new adding a ad add addi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 9 . 1 10 0 0 0 0 1 +NFSv4, and nfsv4, N NF NFS NFSv BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 9 ,. 2 8 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 11 , 1 10 0 0 0 0 0 +[Page 631] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 11 0 no 0 4 0 0 0 0 1 +Another way another A An Ano Anot BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 0 no 0 10 0 0 0 0 1 +(see Section (see ( (s (se (see BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 0 (.). 4 3 0 0 0 0 1 +Hence, all hence, H He Hen Henc BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 0 , 1 10 0 0 0 0 1 +basis per basis b ba bas basi BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 0 .[],. 5 8 0 0 0 0 1 +The registry the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 1 , 1 10 0 0 0 0 1 +per assignment. per p pe per per BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 1 . 1 2 0 0 0 0 1 +1. The 1. 1 1. 1. 1. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 2 .. 2 10 0 0 0 0 1 +prefix "NOTIFY_DEVICEID4_". prefix p pr pre pref BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 2 "".. 4 8 0 0 0 0 1 +2. The 2. 2 2. 2. 2. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 2 .., 3 10 0 0 0 0 1 +the request the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 2 no 0 8 0 0 0 0 1 +actual value. actual a ac act actu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 2 . 1 9 0 0 0 0 1 +than 2^32-1, than t th tha than BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 2 -,. 3 9 0 0 0 0 1 +assigned must assigned a as ass assi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 2 . 1 8 0 0 0 0 1 +ensure that ensure e en ens ensu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 2 no 0 9 0 0 0 0 1 +are added are a ar are are BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 2 . 1 9 0 0 0 0 1 +type in type t ty typ type BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 2 .([]), 6 9 0 0 0 0 1 +to be to t to to to BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 2 . 1 4 0 0 0 0 1 +3. The 3. 3 3. 3. 3. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 6 .(). 4 10 0 0 0 0 1 +the RFC(s) the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 6 (), 3 9 0 0 0 0 1 +RFCTBD2, RFCTBD3, rfctbd2, R RF RFC RFCT BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 6 ,,.. 4 8 0 0 0 0 1 +4. How 4. 4 4. 4. 4. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 7 .. 2 10 0 0 0 0 1 +single US-ASCII single s si sin sing BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 7 -., 3 8 0 0 0 0 1 +revision to revision r re rev revi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 7 ., 2 9 0 0 0 0 1 +new pNFS new n ne new new BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 7 . 1 8 0 0 0 0 1 +Approval. Approval. approval. A Ap App Appr BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 7 . 1 1 0 0 0 0 1 +5. The 5. 5 5. 5. 5. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 8 . 1 9 0 0 0 0 1 +notification. While notification. n no not noti BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 8 ., 2 9 0 0 0 0 1 +allocate and allocate a al all allo BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 8 ; 1 10 0 0 0 0 1 +IESG Approval iesg I IE IES IESG BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 11 8 . 1 9 0 0 0 0 1 +minor version minor m mi min mino BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 11 8 , 1 9 0 0 0 0 1 +review the review r re rev revi BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 8 . 1 9 0 0 0 0 1 +22.3.1. Initial 22.3.1. 2 22 22. 22.3 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 10 ... 3 10 0 0 0 0 1 +The initial the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 11 . 1 10 0 0 0 0 1 +value is value v va val valu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 11 . 1 2 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 11 , 1 10 0 0 0 0 0 +[Page 632] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 11 0 no 0 4 0 0 0 0 1 ++-------------------------+-------+---------+-----+----------------+ +-------------------------+-------+---------+-----+----------------+ +-------------------------+-------+---------+-----+----------------+ + +- +-- +--- BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 11 0 -------------------------------------------------------------- 62 10 0 0 0 0 1 +| Notification | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 11 0 no 0 2 0 0 0 0 1 +| Value | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 11 0 no 0 2 0 0 0 0 1 +| How | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 11 0 no 0 3 0 0 0 0 1 ++-------------------------+-------+---------+-----+----------------+ +-------------------------+-------+---------+-----+----------------+ +-------------------------+-------+---------+-----+----------------+ + +- +-- +--- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 11 0 -------------------------------------------------------------- 62 10 0 0 0 0 1 +| NOTIFY_DEVICEID4_CHANGE | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 11 0 no 0 4 0 0 0 0 1 +| RFC5661 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 11 0 no 0 2 0 0 0 0 1 +| 1 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 11 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 11 0 no 0 0 0 0 0 0 1 +| NOTIFY_DEVICEID4_DELETE | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 11 0 no 0 4 0 0 0 0 1 +| RFC5661 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 11 0 no 0 2 0 0 0 0 1 +| 1 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 11 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 11 0 no 0 0 0 0 0 0 1 ++-------------------------+-------+---------+-----+----------------+ +-------------------------+-------+---------+-----+----------------+ +-------------------------+-------+---------+-----+----------------+ + +- +-- +--- BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 11 0 -------------------------------------------------------------- 62 10 0 0 0 0 1 +Table 16: table T Ta Tab Tabl BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 3 : 1 10 0 0 0 0 1 +22.3.2. Updating 22.3.2. 2 22 22. 22.3 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 3 ... 3 10 0 0 0 0 1 +The update the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 4 no 0 10 0 0 0 0 1 +of a of o of of of BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 4 . 1 3 0 0 0 0 1 +22.4. Object 22.4. 2 22 22. 22.4 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 4 .. 2 10 0 0 0 0 1 +IANA created iana I IA IAN IANA BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 11 4 " 1 10 0 0 0 0 1 +Registry". Registry". registry". R Re Reg Regi BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 4 ". 2 1 0 0 0 0 1 +The potential the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 5 no 0 8 0 0 0 0 1 +CB_RECALL_ANY operation cb_recall_any C CB CB_ CB_R BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 11 5 (.). 4 9 0 0 0 0 1 +changes to changes c ch cha chan BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 11 5 , 1 10 0 0 0 0 1 +operations to operations o op ope oper BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 11 5 ., 2 9 0 0 0 0 1 +requires a requires r re req requ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 5 . 1 9 0 0 0 0 1 +new recallable new n ne new new BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 5 ( 1 8 0 0 0 0 1 +Section 22.5). section S Se Sec Sect BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 5 .). 3 2 0 0 0 0 1 +All assignments all A Al All All BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 7 no 0 10 0 0 0 0 1 +per Section per p pe per per BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 7 .[],. 5 7 0 0 0 0 1 +Recallable object recallable R Re Rec Reca BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 7 -. 2 9 0 0 0 0 1 +Reserved values. reserved R Re Res Rese BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 7 .,, 3 10 0 0 0 0 1 +designated for designated d de des desi BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 7 . 1 4 0 0 0 0 1 +The registry the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 8 , 1 10 0 0 0 0 1 +per assignment. per p pe per per BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 8 . 1 2 0 0 0 0 1 +1. The 1. 1 1. 1. 1. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 8 .. 2 10 0 0 0 0 1 +prefix "RCA4_TYPE_MASK_". prefix p pr pre pref BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 8 "".. 4 7 0 0 0 0 1 +2. The 2. 2 2. 2. 2. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 9 .. 2 10 0 0 0 0 1 +number, and number, n nu num numb BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 9 , 1 10 0 0 0 0 1 +of an of o of of of BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 9 . 1 9 0 0 0 0 1 +higher than higher h hi hig high BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 9 -,. 3 9 0 0 0 0 1 +value must value v va val valu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 9 . 1 9 0 0 0 0 1 +that when that t th tha that BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 9 no 0 10 0 0 0 0 1 +to the to t to to to BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 9 [], 3 9 0 0 0 0 1 +valid XDR valid v va val vali BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 9 . 1 3 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 11 , 1 10 0 0 0 0 0 +[Page 633] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 11 0 no 0 4 0 0 0 0 1 +3. The 3. 3 3. 3. 3. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 0 .() 3 10 0 0 0 0 1 +type. If type. t ty typ type BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 0 .(), 4 9 0 0 0 0 1 +will use will w wi wil will BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 11 0 ,,.. 4 9 0 0 0 0 1 +4. How 4. 4 4. 4. 4. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 1 .. 2 9 0 0 0 0 1 +indicated by indicated i in ind indi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 1 -., 3 9 0 0 0 0 1 +means a means m me mea mean BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 11 1 ., 2 10 0 0 0 0 1 +it means it i it it it BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 1 . 1 9 0 0 0 0 1 +IESG Approval. iesg I IE IES IESG BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 11 1 . 1 2 0 0 0 0 1 +5. The 5. 5 5. 5. 5. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 2 . 1 8 0 0 0 0 1 +recallable object recallable r re rec reca BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 2 ., 2 9 0 0 0 0 1 +will not will w wi wil will BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 11 2 ; 1 9 0 0 0 0 1 +RFCs with rfcs R RF RFC RFCs BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 2 . 1 9 0 0 0 0 1 +is a is i is is is BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 2 , 1 9 0 0 0 0 1 +should review should s sh sho shou BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 2 . 1 10 0 0 0 0 1 +22.4.1. Initial 22.4.1. 2 22 22. 22.4 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 4 ... 3 10 0 0 0 0 1 +The initial the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 4 . 1 10 0 0 0 0 1 +value is value v va val valu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 4 . 1 2 0 0 0 0 1 ++-------------------------------+-------+--------+-----+------------+ +-------------------------------+-------+--------+-----+------------+ +-------------------------------+-------+--------+-----+------------+ + +- +-- +--- BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 11 4 --------------------------------------------------------------- 63 10 0 0 0 0 1 +| Recallable | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 11 4 no 0 4 0 0 0 0 1 +| Value | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 11 4 no 0 2 0 0 0 0 1 +| How | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 11 4 no 0 2 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 11 4 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 11 4 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 11 4 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 11 4 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 11 4 no 0 0 0 0 0 0 1 +| Versions | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 11 4 no 0 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 11 4 no 0 0 0 0 0 0 1 ++-------------------------------+-------+--------+-----+------------+ +-------------------------------+-------+--------+-----+------------+ +-------------------------------+-------+--------+-----+------------+ + +- +-- +--- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 11 4 --------------------------------------------------------------- 63 10 0 0 0 0 1 +| RCA4_TYPE_MASK_RDATA_DLG | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 11 4 no 0 3 0 0 0 0 1 +| 0 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 11 4 no 0 0 0 0 0 0 1 +| RFC | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 11 4 no 0 0 0 0 0 0 1 +| N | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 11 4 no 0 0 0 0 0 0 1 +| 1 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 11 4 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 11 4 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 11 4 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 11 4 no 0 0 0 0 0 0 1 +| 5661 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 11 4 no 0 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 11 4 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 11 4 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 11 4 no 0 0 0 0 0 0 1 +| RCA4_TYPE_MASK_WDATA_DLG | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 11 4 no 0 3 0 0 0 0 1 +| 1 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 11 4 no 0 0 0 0 0 0 1 +| RFC | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 11 4 no 0 0 0 0 0 0 1 +| N | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 11 4 no 0 0 0 0 0 0 1 +| 1 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 11 4 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 11 4 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 11 4 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 11 4 no 0 0 0 0 0 0 1 +| 5661 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 11 4 no 0 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 11 4 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 11 4 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 11 4 no 0 0 0 0 0 0 1 +| RCA4_TYPE_MASK_DIR_DLG | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 11 4 no 0 3 0 0 0 0 1 +| 2 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 11 4 no 0 0 0 0 0 0 1 +| RFC | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 11 4 no 0 0 0 0 0 0 1 +| N | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 11 4 no 0 0 0 0 0 0 1 +| 1 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 11 4 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 11 4 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 11 4 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 11 4 no 0 0 0 0 0 0 1 +| 5661 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 11 4 no 0 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 11 4 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 11 4 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 11 4 no 0 0 0 0 0 0 1 +| RCA4_TYPE_MASK_FILE_LAYOUT | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 11 4 no 0 4 0 0 0 0 1 +| 3 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 11 4 no 0 0 0 0 0 0 1 +| RFC | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 11 4 no 0 0 0 0 0 0 1 +| N | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 11 4 no 0 0 0 0 0 0 1 +| 1 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 11 4 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 11 4 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 11 4 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 11 4 no 0 0 0 0 0 0 1 +| 5661 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 11 4 no 0 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 11 4 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 11 4 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 11 4 no 0 0 0 0 0 0 1 +| RCA4_TYPE_MASK_BLK_LAYOUT | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 11 4 no 0 4 0 0 0 0 1 +| 4 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 11 4 no 0 0 0 0 0 0 1 +| RFC | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 11 4 no 0 0 0 0 0 0 1 +| L | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 11 4 no 0 0 0 0 0 0 1 +| 1 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 11 4 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 11 4 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 11 4 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 11 4 no 0 0 0 0 0 0 1 +| 5661 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 11 4 no 0 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 11 4 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 11 4 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 11 4 no 0 0 0 0 0 0 1 +| RCA4_TYPE_MASK_OBJ_LAYOUT_MIN | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 11 4 no 0 5 0 0 0 0 1 +| RFC | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 11 4 no 0 0 0 0 0 0 1 +| L | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 11 4 no 0 0 0 0 0 0 1 +| 1 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 11 4 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 11 4 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 11 4 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 11 4 no 0 0 0 0 0 0 1 +| 5661 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 11 4 no 0 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 11 4 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 11 4 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 11 4 no 0 0 0 0 0 0 1 +| RCA4_TYPE_MASK_OBJ_LAYOUT_MAX | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 11 4 no 0 5 0 0 0 0 1 +| RFC | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 11 4 no 0 0 0 0 0 0 1 +| L | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 11 4 no 0 0 0 0 0 0 1 +| 1 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 11 4 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 11 4 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 11 4 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 11 4 no 0 0 0 0 0 0 1 +| 5661 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 11 4 no 0 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 11 4 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 11 4 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 11 4 no 0 0 0 0 0 0 1 ++-------------------------------+-------+--------+-----+------------+ +-------------------------------+-------+--------+-----+------------+ +-------------------------------+-------+--------+-----+------------+ + +- +-- +--- BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 11 4 --------------------------------------------------------------- 63 10 0 0 0 0 1 +Table 17: table T Ta Tab Tabl BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 11 : 1 10 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 11 , 1 10 0 0 0 0 0 +[Page 634] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 11 0 no 0 4 0 0 0 0 1 +22.4.2. Updating 22.4.2. 2 22 22. 22.4 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 0 ... 3 10 0 0 0 0 1 +The update the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 0 no 0 10 0 0 0 0 1 +of a of o of of of BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 0 . 1 3 0 0 0 0 1 +22.5. Layout 22.5. 2 22 22. 22.5 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 1 .. 2 10 0 0 0 0 1 +IANA created iana I IA IAN IANA BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 11 1 "". 3 10 0 0 0 0 1 +All assignments all A Al All All BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 1 , 1 10 0 0 0 0 1 +with Expert with w wi wit with BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 1 . 1 4 0 0 0 0 1 +Layout types layout L La Lay Layo BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 2 -.. 3 10 0 0 0 0 1 +in the in i in in in BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 11 2 no 0 9 0 0 0 0 1 +Private Use. private P Pr Pri Priv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 2 . 1 9 0 0 0 0 1 +0x7FFFFFFF inclusive. 0x7fffffff 0 0x 0x7 0x7F BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 2 . 1 3 0 0 0 0 1 +The registry the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 3 ,. 2 10 0 0 0 0 1 +1. The 1. 1 1. 1. 1. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 3 .. 2 10 0 0 0 0 1 +"LAYOUT4_". The "layout4_". " "L "LA "LAY BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 3 "".. 4 5 0 0 0 0 1 +2. The 2. 2 2. 2. 2. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 4 .., 3 10 0 0 0 0 1 +the request the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 4 no 0 8 0 0 0 0 1 +actual value. actual a ac act actu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 4 .. 2 9 0 0 0 0 1 +Expert must expert E Ex Exp Expe BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 4 no 0 9 0 0 0 0 1 +type and type t ty typ type BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 4 . 1 8 0 0 0 0 1 +enumerated data enumerated e en enu enum BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 4 .([]), 6 9 0 0 0 0 1 +result continues result r re res resu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 4 . 1 7 0 0 0 0 1 +3. The 3. 3 3. 3. 3. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 6 .(). 4 10 0 0 0 0 1 +the RFC(s) the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 6 (), 3 9 0 0 0 0 1 +RFCTBD2, RFCTBD3, rfctbd2, R RF RFC RFCT BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 6 ,,.. 4 8 0 0 0 0 1 +Collectively, the collectively, C Co Col Coll BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 6 ,() 3 10 0 0 0 0 1 +Section 22.5.3. section S Se Sec Sect BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 6 ... 3 2 0 0 0 0 1 +4. How 4. 4 4. 4. 4. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 8 .. 2 10 0 0 0 0 1 +single US-ASCII single s si sin sing BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 8 -., 3 8 0 0 0 0 1 +revision to revision r re rev revi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 8 ., 2 9 0 0 0 0 1 +new pNFS new n ne new new BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 8 . 1 8 0 0 0 0 1 +Approval. Approval. approval. A Ap App Appr BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 8 . 1 1 0 0 0 0 1 +5. The 5. 5 5. 5. 5. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 9 . 1 9 0 0 0 0 1 +notification. While notification. n no not noti BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 9 ., 2 9 0 0 0 0 1 +allocate and allocate a al all allo BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 9 ; 1 10 0 0 0 0 1 +IESG Approval iesg I IE IES IESG BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 11 9 . 1 9 0 0 0 0 1 +minor version minor m mi min mino BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 11 9 , 1 9 0 0 0 0 1 +review the review r re rev revi BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 9 . 1 9 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 11 , 1 10 0 0 0 0 0 +[Page 635] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 11 0 no 0 4 0 0 0 0 1 +22.5.1. Initial 22.5.1. 2 22 22. 22.5 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 0 ... 3 10 0 0 0 0 1 +The initial the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 0 . 1 10 0 0 0 0 1 ++-----------------------+-------+----------+-----+----------------+ +-----------------------+-------+----------+-----+----------------+ +-----------------------+-------+----------+-----+----------------+ + +- +-- +--- BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 11 0 ------------------------------------------------------------- 61 10 0 0 0 0 1 +| Layout | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 11 0 no 0 2 0 0 0 0 1 +| Value | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 11 0 no 0 2 0 0 0 0 1 +| How | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 11 0 no 0 3 0 0 0 0 1 ++-----------------------+-------+----------+-----+----------------+ +-----------------------+-------+----------+-----+----------------+ +-----------------------+-------+----------+-----+----------------+ + +- +-- +--- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 11 0 ------------------------------------------------------------- 61 10 0 0 0 0 1 +| LAYOUT4_NFSV4_1_FILES | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 11 0 no 0 4 0 0 0 0 1 +| RFC | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 11 0 no 0 2 0 0 0 0 1 +| 1 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 11 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 11 0 no 0 0 0 0 0 0 1 +| LAYOUT4_OSD2_OBJECTS | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 11 0 no 0 4 0 0 0 0 1 +| RFC | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 11 0 no 0 2 0 0 0 0 1 +| 1 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 11 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 11 0 no 0 0 0 0 0 0 1 +| LAYOUT4_BLOCK_VOLUME | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 11 0 no 0 4 0 0 0 0 1 +| RFC | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 11 0 no 0 2 0 0 0 0 1 +| 1 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 11 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 11 0 no 0 0 0 0 0 0 1 ++-----------------------+-------+----------+-----+----------------+ +-----------------------+-------+----------+-----+----------------+ +-----------------------+-------+----------+-----+----------------+ + +- +-- +--- BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 11 0 ------------------------------------------------------------- 61 10 0 0 0 0 1 +Table 18: table T Ta Tab Tabl BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 5 : 1 10 0 0 0 0 1 +22.5.2. Updating 22.5.2. 2 22 22. 22.5 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 5 ... 3 10 0 0 0 0 1 +The update the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 5 no 0 10 0 0 0 0 1 +of a of o of of of BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 5 . 1 3 0 0 0 0 1 +22.5.3. Guidelines 22.5.3. 2 22 22. 22.5 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 6 ... 3 10 0 0 0 0 1 +The author the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 6 no 0 10 0 0 0 0 1 +to obtain to t to to to BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 6 : 1 9 0 0 0 0 1 +1. The 1. 1 1. 1. 1. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 7 .. 2 10 0 0 0 0 1 +2. The 2. 2 2. 2. 2. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 7 .,: 3 10 0 0 0 0 1 +* Define * * * * * BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 11 8 *-- 3 10 0 0 0 0 1 +following data following f fo fol foll BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 8 : 1 3 0 0 0 0 1 ++ the + + + + + BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 11 8 ; 1 10 0 0 0 0 1 ++ the + + + + + BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 11 8 ; 1 10 0 0 0 0 1 ++ the + + + + + BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 11 9 ( 1 10 0 0 0 0 1 +turn is turn t tu tur turn BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 9 ); 2 9 0 0 0 0 1 ++ the + + + + + BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 11 9 ; 1 10 0 0 0 0 1 +* Describe * * * * * BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 11 10 * 1 10 0 0 0 0 1 +the storage the t th the the BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 10 . 1 3 0 0 0 0 1 +* Describe * * * * * BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 11 10 *. 2 10 0 0 0 0 1 +* At * * * * * BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 11 10 *,: 3 10 0 0 0 0 1 +1. Failure 1. 1 1. 1. 1. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 11 .,,. 4 10 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 11 , 1 10 0 0 0 0 0 +[Page 636] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 11 0 no 0 4 0 0 0 0 1 +2. Lease 2. 2 2. 2. 2. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 0 ., 2 10 0 0 0 0 1 +server, storage server, s se ser serv BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 0 ,. 2 4 0 0 0 0 1 +3. Loss 3. 3 3. 3. 3. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 0 . 1 10 0 0 0 0 1 +to storage to t to to to BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 0 (,..). 6 9 0 0 0 0 1 +* Include * * * * * BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 11 1 *, 2 10 0 0 0 0 1 +include: include: include: i in inc incl BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 1 : 1 1 0 0 0 0 1 ++ A + + + + + BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 11 2 .. 2 10 0 0 0 0 1 ++ A + + + + + BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 11 2 no 0 10 0 0 0 0 1 +types for types t ty typ type BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 2 ; 1 9 0 0 0 0 1 +the form the t th the the BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 2 .. 2 6 0 0 0 0 1 ++ A + + + + + BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 11 3 no 0 10 0 0 0 0 1 +for CB_NOTIFY_DEVICEID; for f fo for for BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 3 ; 1 9 0 0 0 0 1 +the form the t th the the BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 3 .. 2 5 0 0 0 0 1 +* Include * * * * * BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 11 4 *. 2 10 0 0 0 0 1 +explain how explain e ex exp expl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 4 .,, 3 9 0 0 0 0 1 +access-control models access-control a ac acc acce BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 4 -., 3 9 0 0 0 0 1 +server would server s se ser serv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 4 , 1 9 0 0 0 0 1 +pNFS via pnfs p pN pNF pNFS BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 4 no 0 9 0 0 0 0 1 +or output or o or or or BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 4 ? 1 3 0 0 0 0 1 +3. The 3. 3 3. 3. 3. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 6 .- 2 10 0 0 0 0 1 +Draft. Draft. draft. D Dr Dra Draf BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 6 . 1 1 0 0 0 0 1 +4. The 4. 4 4. 4. 4. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 7 .- 2 10 0 0 0 0 1 +standards process standards s st sta stan BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 11 7 "-- 3 9 0 0 0 0 1 +Revision 3" revision R Re Rev Revi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 7 "(). 4 8 0 0 0 0 1 +submitted for submitted s su sub subm BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 7 . 1 8 0 0 0 0 1 +5. The 5. 5 5. 5. 5. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 8 . 1 10 0 0 0 0 1 +process. process. process. p pr pro proc BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 8 . 1 1 0 0 0 0 1 +22.6. Path 22.6. 2 22 22. 22.6 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 9 .. 2 10 0 0 0 0 1 +This section this T Th Thi This BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 9 no 0 9 0 0 0 0 1 +variable substitution variable v va var vari BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 9 no 0 9 0 0 0 0 1 +Section 11.16.3. section S Se Sec Sect BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 9 ..., 4 8 0 0 0 0 1 +substitution consist substitution s su sub subs BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 9 no 0 10 0 0 0 0 1 +domain, with domain, d do dom doma BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 9 ,. 2 9 0 0 0 0 1 +IANA considerations iana I IA IAN IANA BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 11 9 : 1 3 0 0 0 0 1 +1. The 1. 1 1. 1. 1. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 11 .. 2 10 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 11 , 1 10 0 0 0 0 0 +[Page 637] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 11 0 no 0 4 0 0 0 0 1 +2. For 2. 2 2. 2. 2. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 0 .,. 3 10 0 0 0 0 1 +Thus, there thus, T Th Thu Thus BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 0 ,, 2 10 0 0 0 0 1 +possibly one possibly p po pos poss BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 0 . 1 9 0 0 0 0 1 +22.6.1. Path 22.6.1. 2 22 22. 22.6 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 1 ... 3 10 0 0 0 0 1 +IANA created iana I IA IAN IANA BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 11 1 "". 3 10 0 0 0 0 1 +22.6.1.1. Path 22.6.1.1. 2 22 22. 22.6 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 1 .... 4 10 0 0 0 0 1 +Variable names variable V Va Var Vari BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 1 "$",, 5 9 0 0 0 0 1 +followed by followed f fo fol foll BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 1 (":"),- 7 9 0 0 0 0 1 +the variable the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 1 ,"". 4 8 0 0 0 0 1 +"ietf.org", all "ietf.org", " "i "ie "iet BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 1 ".", 4 9 0 0 0 0 1 +Standards Action standards S St Sta Stan BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 11 1 ,. 2 9 0 0 0 0 1 +with registered with w wi wit with BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 1 . 1 9 0 0 0 0 1 +are assigned are a ar are are BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 1 ( 1 9 0 0 0 0 1 +domain owner) domain d do dom doma BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 1 ), 2 10 0 0 0 0 1 +chooses to chooses c ch cho choo BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 1 . 1 9 0 0 0 0 1 +owner chooses owner o ow own owne BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 1 , 1 9 0 0 0 0 1 +basis. To basis. b ba bas basi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 1 ., 2 9 0 0 0 0 1 +IANA will iana I IA IAN IANA BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 11 1 no 0 9 0 0 0 0 1 +"${FCFS.ietf.org:" on "${fcfs.ietf.org:" " "$ "${ "${F BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 1 "$..:". 7 9 0 0 0 0 1 +on a on o on on on BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 1 , 1 9 0 0 0 0 1 +registrant also registrant r re reg regi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 1 no 0 9 0 0 0 0 1 +the registered the t th the the BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 1 . 1 3 0 0 0 0 1 +The registry the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 6 ,. 2 10 0 0 0 0 1 +1. The 1. 1 1. 1. 1. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 6 .. 2 10 0 0 0 0 1 +with a with w wi wit with BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 6 "$", 4 9 0 0 0 0 1 +":", or ":", " ": ":" ":", BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 11 6 ":","$..". 10 9 0 0 0 0 1 +no more no n no no no BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 6 -.. 3 9 0 0 0 0 1 +2. For 2. 2 2. 2. 2. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 8 ., 2 10 0 0 0 0 1 +Track RFC(s) track T Tr Tra Trac BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 8 ().() 5 9 0 0 0 0 1 +yet been yet y ye yet yet BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 8 ,,, 3 9 0 0 0 0 1 +etc. instead etc. e et etc etc. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 8 .. 2 9 0 0 0 0 1 +have to have h ha hav have BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 8 . 1 9 0 0 0 0 1 +on a on o on on on BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 8 ,( 2 9 0 0 0 0 1 +more than more m mo mor more BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 8 ,) 2 10 0 0 0 0 1 +the variable. the t th the the BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 8 .. 2 10 0 0 0 0 1 +3. The 3. 3 3. 3. 3. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 10 .,. 3 10 0 0 0 0 1 +contact can contact c co con cont BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 10 (). 3 9 0 0 0 0 1 +For assignments for F Fo For For BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 10 , 1 9 0 0 0 0 1 +contact is contact c co con cont BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 10 . 1 3 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 11 , 1 10 0 0 0 0 0 +[Page 638] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 11 0 no 0 4 0 0 0 0 1 +22.6.1.1.1. Initial 22.6.1.1.1. 2 22 22. 22.6 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 0 ..... 5 10 0 0 0 0 1 +The initial the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 0 . 1 10 0 0 0 0 1 ++------------------------+----------+------------------+ +------------------------+----------+------------------+ +------------------------+----------+------------------+ + +- +-- +--- BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 11 0 ---------------------------------------------------- 52 10 0 0 0 0 1 +| Variable | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 11 0 no 0 2 0 0 0 0 1 +| RFC | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 11 0 no 0 1 0 0 0 0 1 +| Point | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 11 0 no 0 3 0 0 0 0 1 ++------------------------+----------+------------------+ +------------------------+----------+------------------+ +------------------------+----------+------------------+ + +- +-- +--- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 11 0 ---------------------------------------------------- 52 10 0 0 0 0 1 +| ${ietf.org:CPU_ARCH} | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 11 0 $.: 3 4 0 0 0 0 1 +| RFC | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 11 0 no 0 3 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 11 0 no 0 0 0 0 0 0 1 +| ${ietf.org:OS_TYPE} | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 11 0 $.: 3 3 0 0 0 0 1 +| RFC | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 11 0 no 0 3 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 11 0 no 0 0 0 0 0 0 1 +| ${ietf.org:OS_VERSION} | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 11 0 $.: 3 7 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 11 0 no 0 0 0 0 0 0 1 ++------------------------+----------+------------------+ +------------------------+----------+------------------+ +------------------------+----------+------------------+ + +- +-- +--- BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 11 0 ---------------------------------------------------- 52 10 0 0 0 0 1 +Table 19: table T Ta Tab Tabl BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 4 : 1 10 0 0 0 0 1 +IANA has iana I IA IAN IANA BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 11 4 no 0 9 0 0 0 0 1 +${ietf.org:CPU_ARCH} and ${ietf.org:cpu_arch} $ ${ ${i ${ie BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 4 $.:$.:... 9 10 0 0 0 0 1 +22.6.3. 22.6.3. 22.6.3. 2 22 22. 22.6 BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 4 ... 3 1 0 0 0 0 1 +For the for F Fo For For BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 5 $.:, 4 10 0 0 0 0 1 +needed as needed n ne nee need BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 5 no 0 9 0 0 0 0 1 +the value the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 5 $.:., 5 7 0 0 0 0 1 +${ietf.org:OS_VERSION} are ${ietf.org:os_version} $ ${ ${i ${ie BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 5 $.: 3 10 0 0 0 0 1 +of no of o of of of BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 5 . 1 3 0 0 0 0 1 +22.6.1.1.2. Updating 22.6.1.1.2. 2 22 22. 22.6 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 7 ..... 5 10 0 0 0 0 1 +The update the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 7 no 0 10 0 0 0 0 1 +require IESG require r re req requ BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 7 . 1 9 0 0 0 0 1 +The registrant the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 7 no 0 8 0 0 0 0 1 +assignment made assignment a as ass assi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 7 . 1 10 0 0 0 0 1 +will require will w wi wil will BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 11 7 . 1 4 0 0 0 0 1 +22.6.2. Values 22.6.2. 2 22 22. 22.6 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 8 ...$.: 6 10 0 0 0 0 1 +IANA created iana I IA IAN IANA BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 11 9 "$.: 4 10 0 0 0 0 1 +Registry". Registry". registry". R Re Reg Regi BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 9 ". 2 1 0 0 0 0 1 +Assignments to assignments A As Ass Assi BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 9 no 0 9 0 0 0 0 1 +basis. The basis. b ba bas basi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 9 .-$.:. 6 10 0 0 0 0 1 +Values with values V Va Val Valu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 9 "". 3 9 0 0 0 0 1 +The registry the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 10 ,. 2 10 0 0 0 0 1 +1. A 1. 1 1. 1. 1. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 10 .$.:. 5 10 0 0 0 0 1 +1 to 1 1 1 1 1 BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 11 10 -.. 3 8 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 11 , 1 10 0 0 0 0 0 +[Page 639] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 11 0 no 0 4 0 0 0 0 1 +2. An 2. 2 2. 2. 2. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 0 .(, 3 10 0 0 0 0 1 +IANA permits) iana I IA IAN IANA BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 11 0 ). 2 9 0 0 0 0 1 +reference to reference r re ref refe BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 0 . 1 7 0 0 0 0 1 +3. The 3. 3 3. 3. 3. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 1 .,. 3 10 0 0 0 0 1 +contact can contact c co con cont BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 1 (). 3 9 0 0 0 0 1 +22.6.2.1. Initial 22.6.2.1. 2 22 22. 22.6 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 2 .... 4 10 0 0 0 0 1 +There is there T Th The Ther BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 2 . 1 10 0 0 0 0 1 +22.6.2.2. Updating 22.6.2.2. 2 22 22. 22.6 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 3 .... 4 10 0 0 0 0 1 +The registrant the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 3 ,.., 4 10 0 0 0 0 1 +explanation and/or explanation e ex exp expl BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 3 /--. 4 6 0 0 0 0 1 +22.6.3. Values 22.6.3. 2 22 22. 22.6 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 4 ...$.: 6 10 0 0 0 0 1 +IANA created iana I IA IAN IANA BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 11 4 "$.: 4 10 0 0 0 0 1 +Registry". Registry". registry". R Re Reg Regi BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 4 ". 2 1 0 0 0 0 1 +Assignments to assignments A As Ass Assi BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 5 no 0 10 0 0 0 0 1 +basis. The basis. b ba bas basi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 5 .-$.:. 6 10 0 0 0 0 1 +Values with values V Va Val Valu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 5 "". 3 9 0 0 0 0 1 +The registry the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 6 ,. 2 10 0 0 0 0 1 +1. A 1. 1 1. 1. 1. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 6 .$.:. 5 10 0 0 0 0 1 +to 32 to t to to to BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 6 -.. 3 8 0 0 0 0 1 +2. An 2. 2 2. 2. 2. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 7 .(, 3 10 0 0 0 0 1 +IANA permits) iana I IA IAN IANA BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 11 7 ). 2 9 0 0 0 0 1 +reference to reference r re ref refe BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 7 . 1 7 0 0 0 0 1 +3. The 3. 3 3. 3. 3. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 9 .,. 3 10 0 0 0 0 1 +contact can contact c co con cont BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 9 (). 3 9 0 0 0 0 1 +22.6.3.1. Initial 22.6.3.1. 2 22 22. 22.6 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 10 .... 4 10 0 0 0 0 1 +There is there T Th The Ther BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 10 . 1 10 0 0 0 0 1 +22.6.3.2. Updating 22.6.3.2. 2 22 22. 22.6 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 10 .... 4 10 0 0 0 0 1 +The registrant the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 10 ,.., 4 10 0 0 0 0 1 +explanation and/or explanation e ex exp expl BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 10 /. 2 6 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 11 , 1 10 0 0 0 0 0 +[Page 640] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 11 0 no 0 4 0 0 0 0 1 +23. References 23. 2 23 23. 23. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 0 . 1 10 0 0 0 0 1 +23.1. Normative 23.1. 2 23 23. 23.1 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 0 .. 2 10 0 0 0 0 1 +[1] [1] [1] [ [1 [1] [1] BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 0 [] 2 0 0 0 0 0 1 +Bradner, S., bradner, B Br Bra Brad BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 0 ,.," 4 10 0 0 0 0 1 +Requirement Levels", requirement R Re Req Requ BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 0 ",,,. 5 9 0 0 0 0 1 +[2] [2] [2] [ [2 [2] [2] BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 1 [] 2 0 0 0 0 0 1 +Eisler, M., eisler, E Ei Eis Eisl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 1 ,.,.,": 7 10 0 0 0 0 1 +Standard", STD standard", S St Sta Stan BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 1 ",,,. 5 7 0 0 0 0 1 +[3] [3] [3] [ [3 [3] [3] BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 2 [] 2 0 0 0 0 0 1 +Thurlow, R., thurlow, T Th Thu Thur BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 2 ,.,": 5 10 0 0 0 0 1 +Specification Version specification S Sp Spe Spec BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 2 ",,. 4 9 0 0 0 0 1 +[4] [4] [4] [ [4 [4] [4] BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 2 [] 2 0 0 0 0 0 1 +Eisler, M., eisler, E Ei Eis Eisl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 2 ,.,,.,.," 9 10 0 0 0 0 1 +Specification", RFC specification", S Sp Spe Spec BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 2 ",,. 4 7 0 0 0 0 1 +[5] [5] [5] [ [5 [5] [5] BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 3 [] 2 0 0 0 0 0 1 +Zhu, L., zhu, Z Zh Zhu Zhu, BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 3 ,.,,.,.," 9 9 0 0 0 0 1 +Version 5 version V Ve Ver Vers BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 3 no 0 9 0 0 0 0 1 +Interface (GSS-API) interface I In Int Inte BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 3 (-)",, 6 10 0 0 0 0 1 +2005. 2005. 2005. 2 20 200 2005 BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 1 0 0 0 11 3 . 1 1 0 0 0 0 1 +[6] [6] [6] [ [6 [6] [6] BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 4 [] 2 0 0 0 0 0 1 +The Open the T Th The The BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 4 ,". 3 8 0 0 0 0 1 +Definitions of definitions D De Def Defi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 4 no 0 10 0 0 0 0 1 +IEEE Std ieee I IE IEE IEEE BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 11 4 .,, 3 7 0 0 0 0 1 +(www.opengroup.org), ISBN (www.opengroup.org), ( (w (ww (www BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 4 (..),",. 8 7 0 0 0 0 1 +[7] [7] [7] [ [7 [7] [7] BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 6 [] 2 0 0 0 0 0 1 +Linn, J., linn, L Li Lin Linn BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 6 ,.," 4 10 0 0 0 0 1 +Interface Version interface I In Int Inte BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 6 ,",,. 5 10 0 0 0 0 1 +[8] [8] [8] [ [8 [8] [8] BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 7 [] 2 0 0 0 0 0 1 +Recio, R., recio, R Re Rec Reci BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 7 ,.,,.,,.,,.,. 13 10 0 0 0 0 1 +Garcia, "A garcia, G Ga Gar Garc BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 7 ," 2 8 0 0 0 0 1 +Specification", RFC specification", S Sp Spe Spec BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 7 ",,. 4 7 0 0 0 0 1 +[9] [9] [9] [ [9 [9] [9] BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 8 [] 2 0 0 0 0 0 1 +Eisler, M., eisler, E Ei Eis Eisl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 8 ,.,"",, 7 10 0 0 0 0 1 +2009. 2009. 2009. 2 20 200 2009 BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 1 0 0 0 11 8 . 1 1 0 0 0 0 1 +[10] [10] [10] [ [1 [10 [10] BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 8 [] 2 0 0 0 0 0 1 +Shepler, S., shepler, S Sh She Shep BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 8 ,.,.,,.,.,.,., 14 9 0 0 0 0 1 +"Network File "network " "N "Ne "Net BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 8 "() 3 9 0 0 0 0 1 +External Data external E Ex Ext Exte BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 8 ()", 4 10 0 0 0 0 1 +RFC 5662, rfc R RF RFC RFC BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 11 8 ,. 2 4 0 0 0 0 1 +[11] [11] [11] [ [1 [11 [11] BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 10 [] 2 0 0 0 0 0 1 +The Open the T Th The The BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 10 ,". 3 8 0 0 0 0 1 +Definitions of definitions D De Def Defi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 10 no 0 10 0 0 0 0 1 +IEEE Std ieee I IE IEE IEEE BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 11 10 .,, 3 7 0 0 0 0 1 +(www.opengroup.org), ISBN (www.opengroup.org), ( (w (ww (www BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 10 (..),",. 8 7 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 11 , 1 10 0 0 0 0 0 +[Page 641] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 11 0 no 0 4 0 0 0 0 1 +[12] [12] [12] [ [1 [12 [12] BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 0 [] 2 0 0 0 0 0 1 +Eisler, M., eisler, E Ei Eis Eisl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 0 ,.," 4 10 0 0 0 0 1 +(RPC) Network (rpc) ( (R (RP (RPC BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 11 0 ()", 4 9 0 0 0 0 1 +RFC 5665, rfc R RF RFC RFC BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 11 0 ,. 2 4 0 0 0 0 1 +[13] [13] [13] [ [1 [13 [13] BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 1 [] 2 0 0 0 0 0 1 +The Open the T Th The The BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 1 ,"'()' 6 10 0 0 0 0 1 +The Open the T Th The The BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 1 no 0 8 0 0 0 0 1 +1003.1, 2004 1003.1, 1 10 100 1003 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 1 0 0 0 11 1 .,,(..), 8 9 0 0 0 0 1 +ISBN 1931624232", isbn I IS ISB ISBN BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 11 1 ",. 3 4 0 0 0 0 1 +[14] [14] [14] [ [1 [14 [14] BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 2 [] 2 0 0 0 0 0 1 +The Open the T Th The The BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 2 ,"'()' 6 10 0 0 0 0 1 +of The of o of of of BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 2 no 0 9 0 0 0 0 1 +1003.1, 2004 1003.1, 1 10 100 1003 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 1 0 0 0 11 2 .,,(..), 8 9 0 0 0 0 1 +ISBN 1931624232", isbn I IS ISB ISBN BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 11 2 ",. 3 4 0 0 0 0 1 +[15] [15] [15] [ [1 [15 [15] BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 3 [] 2 0 0 0 0 0 1 +The Open the T Th The The BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 3 ,"'()' 6 10 0 0 0 0 1 +The Open the T Th The The BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 3 no 0 8 0 0 0 0 1 +1003.1, 2004 1003.1, 1 10 100 1003 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 1 0 0 0 11 3 .,,(..), 8 9 0 0 0 0 1 +ISBN 1931624232", isbn I IS ISB ISBN BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 11 3 ",. 3 4 0 0 0 0 1 +[16] [16] [16] [ [1 [16 [16] BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 5 [] 2 0 0 0 0 0 1 +Hoffman, P. hoffman, H Ho Hof Hoff BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 5 ,..," 5 8 0 0 0 0 1 +Internationalized Strings internationalized I In Int Inte BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 5 ("")",, 7 10 0 0 0 0 1 +December 2002. december D De Dec Dece BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 11 5 . 1 2 0 0 0 0 1 +[17] [17] [17] [ [1 [17 [17] BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 6 [] 2 0 0 0 0 0 1 +The Open the T Th The The BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 6 ,"'()' 6 10 0 0 0 0 1 +The Open the T Th The The BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 6 no 0 8 0 0 0 0 1 +1003.1, 2004 1003.1, 1 10 100 1003 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 1 0 0 0 11 6 .,,(..), 8 9 0 0 0 0 1 +ISBN 1931624232", isbn I IS ISB ISBN BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 11 6 ",. 3 4 0 0 0 0 1 +[18] [18] [18] [ [1 [18 [18] BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 7 [] 2 0 0 0 0 0 1 +International Organization international I In Int Inte BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 7 , 1 8 0 0 0 0 1 +"Information Technology "information " "I "In "Inf BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 7 "-- 3 10 0 0 0 0 1 +Character Set character C Ch Cha Char BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 7 ()-: 4 9 0 0 0 0 1 +Multilingual Plane", multilingual M Mu Mul Mult BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 7 ",-,. 5 9 0 0 0 0 1 +[19] [19] [19] [ [1 [19 [19] BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 8 [] 2 0 0 0 0 0 1 +Alvestrand, H., alvestrand, A Al Alv Alve BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 8 ,.," 4 10 0 0 0 0 1 +Languages", BCP languages", L La Lan Lang BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 8 ",,,. 5 8 0 0 0 0 1 +[20] [20] [20] [ [2 [20 [20] BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 9 [] 2 0 0 0 0 0 1 +Hoffman, P. hoffman, H Ho Hof Hoff BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 9 ,..,": 6 10 0 0 0 0 1 +Profile for profile P Pr Pro Prof BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 9 ()", 4 9 0 0 0 0 1 +RFC 3491, rfc R RF RFC RFC BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 11 9 ,. 2 4 0 0 0 0 1 +[21] [21] [21] [ [2 [21 [21] BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 10 [] 2 0 0 0 0 0 1 +The Open the T Th The The BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 10 ,"'()' 6 10 0 0 0 0 1 +The Open the T Th The The BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 10 no 0 8 0 0 0 0 1 +1003.1, 2004 1003.1, 1 10 100 1003 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 1 0 0 0 11 10 .,,(..), 8 9 0 0 0 0 1 +ISBN 1931624232", isbn I IS ISB ISBN BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 11 10 ",. 3 4 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 11 , 1 10 0 0 0 0 0 +[Page 642] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 11 0 no 0 4 0 0 0 0 1 +[22] [22] [22] [ [2 [22 [22] BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 0 [] 2 0 0 0 0 0 1 +The Open the T Th The The BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 0 ,"'()' 6 10 0 0 0 0 1 +The Open the T Th The The BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 0 no 0 8 0 0 0 0 1 +1003.1, 2004 1003.1, 1 10 100 1003 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 1 0 0 0 11 0 .,,(..), 8 9 0 0 0 0 1 +ISBN 1931624232", isbn I IS ISB ISBN BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 11 0 ",. 3 4 0 0 0 0 1 +[23] [23] [23] [ [2 [23 [23] BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 1 [] 2 0 0 0 0 0 1 +The Open the T Th The The BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 1 ,"'()' 6 10 0 0 0 0 1 +of The of o of of of BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 1 no 0 9 0 0 0 0 1 +1003.1, 2004 1003.1, 1 10 100 1003 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 1 0 0 0 11 1 .,,(..), 8 9 0 0 0 0 1 +ISBN 1931624232", isbn I IS ISB ISBN BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 11 1 ",. 3 4 0 0 0 0 1 +[24] [24] [24] [ [2 [24 [24] BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 2 [] 2 0 0 0 0 0 1 +The Open the T Th The The BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 2 ,"'()' 6 10 0 0 0 0 1 +of The of o of of of BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 2 no 0 9 0 0 0 0 1 +1003.1, 2004 1003.1, 1 10 100 1003 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 1 0 0 0 11 2 .,,(..), 8 9 0 0 0 0 1 +ISBN 1931624232", isbn I IS ISB ISBN BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 11 2 ",. 3 4 0 0 0 0 1 +[25] [25] [25] [ [2 [25 [25] BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 4 [] 2 0 0 0 0 0 1 +Schaad, J., schaad, S Sc Sch Scha BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 4 ,.,,.,.," 9 8 0 0 0 0 1 +Algorithms and algorithms A Al Alg Algo BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 4 no 0 10 0 0 0 0 1 +the Internet the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 4 . 1 9 0 0 0 0 1 +and Certificate and a an and and BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 4 ()",, 5 9 0 0 0 0 1 +June 2005. june J Ju Jun June BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 0 0 0 1 0 0 11 4 . 1 1 0 0 0 0 1 +[26] [26] [26] [ [2 [26 [26] BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 5 [] 2 0 0 0 0 0 1 +National Institute national N Na Nat Nati BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 5 , 1 8 0 0 0 0 1 +"Cryptographic Algorithm "cryptographic " "C "Cr "Cry BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 5 "", 3 9 0 0 0 0 1 +http://csrc.nist.gov/groups/ST/crypto_apps_infra/csor/ http://csrc.nist.gov/groups/ST/crypto_apps_infra/csor/ http://csrc.nist.gov/groups/st/crypto_apps_infra/csor/ h ht htt http BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 1 11 5 ://..///// 10 10 0 0 0 0 1 +algorithms.html, November algorithms.html, a al alg algo BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 5 .,. 3 5 0 0 0 0 1 +[27] [27] [27] [ [2 [27 [27] BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 6 [] 2 0 0 0 0 0 1 +Adamson, A. adamson, A Ad Ada Adam BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 6 ,..,"() 7 10 0 0 0 0 1 +Security Version security S Se Sec Secu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 11 6 ",,./, 6 9 0 0 0 0 1 +November 2016, november N No Nov Nove BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 11 6 ,://.-.//. 10 10 0 0 0 0 1 +[28] [28] [28] [ [2 [28 [28] BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 7 [] 2 0 0 0 0 0 1 +Neuman, C., neuman, N Ne Neu Neum BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 7 ,.,,.,,.,.," 12 9 0 0 0 0 1 +Kerberos Network kerberos K Ke Ker Kerb BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 7 ()",, 5 10 0 0 0 0 1 +DOI 10.17487/RFC4120, doi D DO DOI DOI BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 1 0 0 0 0 0 0 11 7 ./,, 4 5 0 0 0 0 1 +<https://www.rfc-editor.org/info/rfc4120>. <https://www.rfc-editor.org/info/rfc4120>. <https://www.rfc-editor.org/info/rfc4120>. < <h <ht <htt BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 1 11 7 ://.-.//. 9 7 0 0 0 0 1 +[29] [29] [29] [ [2 [29 [29] BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 9 [] 2 0 0 0 0 0 1 +Arends, R., arends, A Ar Are Aren BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 9 ,.,,.,,.,,.,. 13 10 0 0 0 0 1 +Rose, "DNS rose, R Ro Ros Rose BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 9 ,"", 4 9 0 0 0 0 1 +RFC 4033, rfc R RF RFC RFC BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 11 9 ,./,, 5 7 0 0 0 0 1 +<https://www.rfc-editor.org/info/rfc4033>. <https://www.rfc-editor.org/info/rfc4033>. <https://www.rfc-editor.org/info/rfc4033>. < <h <ht <htt BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 1 11 9 ://.-.//. 9 7 0 0 0 0 1 +[30] [30] [30] [ [3 [30 [30] BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 10 [] 2 0 0 0 0 0 1 +Adamson, A. adamson, A Ad Ada Adam BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 10 ,..," 5 10 0 0 0 0 1 +Multi-Domain Namespace multi-domain M Mu Mul Mult BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 10 -",, 4 8 0 0 0 0 1 +DOI 10.17487/RFC8000, doi D DO DOI DOI BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 1 0 0 0 0 0 0 11 10 ./,, 4 6 0 0 0 0 1 +<https://www.rfc-editor.org/info/rfc8000>. <https://www.rfc-editor.org/info/rfc8000>. <https://www.rfc-editor.org/info/rfc8000>. < <h <ht <htt BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 1 11 10 ://.-.//. 9 8 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 11 , 1 10 0 0 0 0 0 +[Page 643] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 11 0 no 0 4 0 0 0 0 1 +[31] [31] [31] [ [3 [31 [31] BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 0 [] 2 0 0 0 0 0 1 +Lever, C., lever, L Le Lev Leve BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 0 ,.,.,,.,.," 11 10 0 0 0 0 1 +Memory Access memory M Me Mem Memo BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 0 no 0 9 0 0 0 0 1 +1", RFC 1", 1 1" 1", 1", BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 0 ",,./,, 7 7 0 0 0 0 1 +<https://www.rfc-editor.org/info/rfc8166>. <https://www.rfc-editor.org/info/rfc8166>. <https://www.rfc-editor.org/info/rfc8166>. < <h <ht <htt BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 1 11 0 ://.-.//. 9 7 0 0 0 0 1 +[32] [32] [32] [ [3 [32 [32] BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 1 [] 2 0 0 0 0 0 1 +Lever, C., lever, L Le Lev Leve BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 1 ,.,"()- 7 10 0 0 0 0 1 +to RPC-over-RDMA to t to to to BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 1 --",, 5 6 0 0 0 0 1 +DOI 10.17487/RFC8267, doi D DO DOI DOI BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 1 0 0 0 0 0 0 11 1 ./,, 4 6 0 0 0 0 1 +<https://www.rfc-editor.org/info/rfc8267>. <https://www.rfc-editor.org/info/rfc8267>. <https://www.rfc-editor.org/info/rfc8267>. < <h <ht <htt BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 1 11 1 ://.-.//. 9 7 0 0 0 0 1 +23.2. Informative 23.2. 2 23 23. 23.2 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 2 .. 2 10 0 0 0 0 1 +[33] [33] [33] [ [3 [33 [33] BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 3 [] 2 0 0 0 0 0 1 +Shepler, S., shepler, S Sh She Shep BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 3 ,.,,.,,.,,., 12 9 0 0 0 0 1 +Beame, C., beame, B Be Bea Beam BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 3 ,.,,.,.," 9 10 0 0 0 0 1 +(NFS) version (nfs) ( (N (NF (NFS BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 11 3 ()",,. 6 8 0 0 0 0 1 +[34] [34] [34] [ [3 [34 [34] BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 4 [] 2 0 0 0 0 0 1 +Callaghan, B., callaghan, C Ca Cal Call BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 4 ,.,,.,.," 9 9 0 0 0 0 1 +Version 3 version V Ve Ver Vers BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 4 ",,. 4 10 0 0 0 0 1 +[35] [35] [35] [ [3 [35 [35] BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 5 [] 2 0 0 0 0 0 1 +Eisler, M., eisler, E Ei Eis Eisl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 5 ,.,"- 5 10 0 0 0 0 1 +Mechanism Using mechanism M Me Mec Mech BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 5 ",,. 4 8 0 0 0 0 1 +[36] [36] [36] [ [3 [36 [36] BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 5 [] 2 0 0 0 0 0 1 +Eisler, M., eisler, E Ei Eis Eisl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 5 ,.," 4 9 0 0 0 0 1 +and the and a an and and BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 5 '", 3 10 0 0 0 0 1 +RFC 2623, rfc R RF RFC RFC BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 11 5 ,. 2 3 0 0 0 0 1 +[37] [37] [37] [ [3 [37 [37] BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 6 [] 2 0 0 0 0 0 1 +Juszczak, C., juszczak, J Ju Jus Jusz BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 6 ,.," 4 10 0 0 0 0 1 +of an of o of of of BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 6 ",, 3 9 0 0 0 0 1 +1990. 1990. 1990. 1 19 199 1990 BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 1 0 0 0 11 6 . 1 1 0 0 0 0 1 +[38] [38] [38] [ [3 [38 [38] BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 7 [] 2 0 0 0 0 0 1 +Reynolds, J., reynolds, R Re Rey Reyn BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 7 ,.,.,": 7 10 0 0 0 0 1 +by an by b by by by BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 7 -",,. 5 8 0 0 0 0 1 +[39] [39] [39] [ [3 [39 [39] BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 8 [] 2 0 0 0 0 0 1 +Srinivasan, R., srinivasan, S Sr Sri Srin BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 8 ,.,"", 6 10 0 0 0 0 1 +RFC 1833, rfc R RF RFC RFC BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 11 8 ,. 2 3 0 0 0 0 1 +[40] [40] [40] [ [4 [40 [40] BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 8 [] 2 1 0 0 0 0 1 +Werme, R., werme, W We Wer Werm BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 8 ,.,"", 6 10 0 0 0 0 1 +Proceedings , proceedings P Pr Pro Proc BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 8 ,. 2 6 0 0 0 0 1 +[41] [41] [41] [ [4 [41 [41] BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 9 [] 2 1 0 0 0 0 1 +Nowicki, B., nowicki, N No Now Nowi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 9 ,.,": 5 10 0 0 0 0 1 +specification", RFC specification", s sp spe spec BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 9 ",,. 4 7 0 0 0 0 1 +[42] [42] [42] [ [4 [42 [42] BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 10 [] 2 0 0 0 0 0 1 +Bhide, A., bhide, B Bh Bhi Bhid BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 10 ,.,,.,.," 9 8 0 0 0 0 1 +Available Network available A Av Ava Avai BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 10 ",, 3 10 0 0 0 0 1 +January 1991. january J Ja Jan Janu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 0 0 0 1 0 0 11 10 . 1 2 0 0 0 0 1 +[43] [43] [43] [ [4 [43 [43] BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 10 [] 2 0 0 0 0 0 1 +Halevy, B., halevy, H Ha Hal Hale BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 10 ,.,,.,.,"- 10 9 0 0 0 0 1 +Parallel NFS parallel P Pa Par Para BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 10 ()",,. 6 10 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 11 , 1 10 0 0 0 0 0 +[Page 644] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 11 0 no 0 4 0 0 0 0 1 +[44] [44] [44] [ [4 [44 [44] BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 0 [] 2 0 0 0 0 0 1 +Black, D., black, B Bl Bla Blac BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 0 ,.,,.,.," 9 10 0 0 0 0 1 +(pNFS) Block/Volume (pnfs) ( (p (pN (pNF BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 0 ()/",,. 7 9 0 0 0 0 1 +[45] [45] [45] [ [4 [45 [45] BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 1 [] 2 0 0 0 0 0 1 +Callaghan, B., callaghan, C Ca Cal Call BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 1 ,.,"",, 7 10 0 0 0 0 1 +October 1996. october O Oc Oct Octo BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 11 1 . 1 2 0 0 0 0 1 +[46] [46] [46] [ [4 [46 [46] BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 1 [] 2 0 0 0 0 0 1 +Callaghan, B., callaghan, C Ca Cal Call BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 1 ,.,"",, 7 10 0 0 0 0 1 +October 1996. october O Oc Oct Octo BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 11 1 . 1 2 0 0 0 0 1 +[47] [47] [47] [ [4 [47 [47] BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 2 [] 2 0 0 0 0 0 1 +IESG, "IESG iesg, I IE IES IESG BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 11 2 ,"", 4 10 0 0 0 0 1 +July 2008. july J Ju Jul July BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 11 2 . 1 1 0 0 0 0 1 +[48] [48] [48] [ [4 [48 [48] BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 2 [] 2 0 0 0 0 0 1 +Shepler, S., shepler, S Sh She Shep BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 2 ,.,"", 6 10 0 0 0 0 1 +RFC 2624, rfc R RF RFC RFC BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 11 2 ,. 2 4 0 0 0 0 1 +[49] [49] [49] [ [4 [49 [49] BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 3 [] 2 0 0 0 0 0 1 +The Open the T Th The The BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 3 ,":, 4 10 0 0 0 0 1 +3W, ISBN 3w, 3 3W 3W, 3W, BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 3 ,---",. 7 6 0 0 0 0 1 +[50] [50] [50] [ [5 [50 [50] BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 3 [] 2 0 0 0 0 0 1 +Floyd, S. floyd, F Fl Flo Floy BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 3 ,..," 5 9 0 0 0 0 1 +Periodic Routing periodic P Pe Per Peri BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 3 ",/ 3 10 0 0 0 0 1 +Networking 2(2), networking N Ne Net Netw BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 3 (),.-,. 7 7 0 0 0 0 1 +[51] [51] [51] [ [5 [51 [51] BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 4 [] 2 0 0 0 0 0 1 +Satran, J., satran, S Sa Sat Satr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 4 ,.,,.,,.,,., 12 9 0 0 0 0 1 +and E. and a an and and BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 4 .," 3 10 0 0 0 0 1 +(iSCSI)", RFC (iscsi)", ( (i (iS (iSC BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 4 ()",,. 6 5 0 0 0 0 1 +[52] [52] [52] [ [5 [52 [52] BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 5 [] 2 0 0 0 0 0 1 +Snively, R., snively, S Sn Sni Sniv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 5 ,.,", 5 10 0 0 0 0 1 +(FCP-2)", ANSI/INCITS (fcp-2)", ( (F (FC (FCP BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 5 (-)",/-,. 9 7 0 0 0 0 1 +[53] [53] [53] [ [5 [53 [53] BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 6 [] 2 0 0 0 0 0 1 +Weber, R., weber, W We Web Webe BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 6 ,.,"-()", 9 10 0 0 0 0 1 +ANSI/INCITS 400-2004, ansi/incits A AN ANS ANSI BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 11 6 /-,, 4 5 0 0 0 0 1 +<http://www.t10.org/ftp/t10/drafts/osd/osd-r10.pdf>. <http://www.t10.org/ftp/t10/drafts/osd/osd-r10.pdf>. <http://www.t10.org/ftp/t10/drafts/osd/osd-r10.pdf>. < <h <ht <htt BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 1 11 6 ://../////-.. 13 9 0 0 0 0 1 +[54] [54] [54] [ [5 [54 [54] BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 7 [] 2 0 0 0 0 0 1 +Carns, P., carns, C Ca Car Carn BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 7 ,.,,.,,.,.,": 13 10 0 0 0 0 1 +A Parallel a A A A A BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 1 0 0 0 0 0 11 7 .", 3 9 0 0 0 0 1 +of the of o of of of BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 7 ,. 2 9 0 0 0 0 1 +[55] [55] [55] [ [5 [55 [55] BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 8 [] 2 0 0 0 0 0 1 +The Open the T Th The The BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 8 ," 2 10 0 0 0 0 1 +6, IEEE 6, 6 6, 6, 6, BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 8 ,.,",. 6 7 0 0 0 0 1 +[56] [56] [56] [ [5 [56 [56] BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 9 [] 2 0 0 0 0 0 1 +Callaghan, B., callaghan, C Ca Cal Call BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 9 ,.,"",,. 8 10 0 0 0 0 1 +[57] [57] [57] [ [5 [57 [57] BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 10 [] 2 1 0 0 0 0 1 +Chiu, A., chiu, C Ch Chi Chiu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 10 ,.,,.,.," 9 10 0 0 0 0 1 +Negotiation for negotiation N Ne Neg Nego BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 10 ",,. 4 9 0 0 0 0 1 +[58] [58] [58] [ [5 [58 [58] BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 10 [] 2 0 0 0 0 0 1 +Narten, T. narten, N Na Nar Nart BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 10 ,..," 5 10 0 0 0 0 1 +IANA Considerations iana I IA IAN IANA BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 11 10 ",,, 4 9 0 0 0 0 1 +May 2008. may M Ma May May BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 11 10 . 1 1 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 11 , 1 10 0 0 0 0 0 +[Page 645] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 11 0 no 0 4 0 0 0 0 1 +[59] [59] [59] [ [5 [59 [59] BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 0 [] 2 0 0 0 0 0 1 +Krawczyk, H., krawczyk, K Kr Kra Kraw BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 0 ,.,,.,.,":- 11 10 0 0 0 0 1 +Hashing for hashing H Ha Has Hash BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 0 ",, 3 10 0 0 0 0 1 +1997. 1997. 1997. 1 19 199 1997 BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 1 0 0 0 11 0 . 1 1 0 0 0 0 1 +[60] [60] [60] [ [6 [60 [60] BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 1 [] 2 0 0 0 0 0 1 +Shepler, S., shepler, S Sh She Shep BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 1 ,.,.,,.,.,.,., 14 9 0 0 0 0 1 +"Network File "network " "N "Ne "Net BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 1 "() 3 9 0 0 0 0 1 +Protocol", RFC protocol", P Pr Pro Prot BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 1 ",,./,, 7 10 0 0 0 0 1 +<https://www.rfc-editor.org/info/rfc5661>. <https://www.rfc-editor.org/info/rfc5661>. <https://www.rfc-editor.org/info/rfc5661>. < <h <ht <htt BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 1 11 1 ://.-.//. 9 7 0 0 0 0 1 +[61] [61] [61] [ [6 [61 [61] BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 3 [] 2 0 0 0 0 0 1 +Noveck, D., noveck, N No Nov Nove BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 3 ,.," 4 9 0 0 0 0 1 +Versions", RFC versions", V Ve Ver Vers BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 3 ",,./,, 7 10 0 0 0 0 1 +<https://www.rfc-editor.org/info/rfc8178>. <https://www.rfc-editor.org/info/rfc8178>. <https://www.rfc-editor.org/info/rfc8178>. < <h <ht <htt BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 1 11 3 ://.-.//. 9 7 0 0 0 0 1 +[62] [62] [62] [ [6 [62 [62] BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 4 [] 2 0 0 0 0 0 1 +Haynes, T., haynes, H Ha Hay Hayn BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 4 ,.,..,.," 9 9 0 0 0 0 1 +(NFS) Version (nfs) ( (N (NF (NFS BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 11 4 ()",,./, 8 10 0 0 0 0 1 +March 2015, march M Ma Mar Marc BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 11 4 ,://.-.//. 10 9 0 0 0 0 1 +[63] [63] [63] [ [6 [63 [63] BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 5 [] 2 0 0 0 0 0 1 +Noveck, D., noveck, N No Nov Nove BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 5 ,.,.,,.,,.,., 13 10 0 0 0 0 1 +"NFSv4.0 Migration: "nfsv4.0 " "N "NF "NFS BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 5 ".:",, 6 9 0 0 0 0 1 +DOI 10.17487/RFC7931, doi D DO DOI DOI BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 1 0 0 0 0 0 0 11 5 ./,, 4 6 0 0 0 0 1 +<https://www.rfc-editor.org/info/rfc7931>. <https://www.rfc-editor.org/info/rfc7931>. <https://www.rfc-editor.org/info/rfc7931>. < <h <ht <htt BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 1 11 5 ://.-.//. 9 7 0 0 0 0 1 +[64] [64] [64] [ [6 [64 [64] BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 7 [] 2 0 0 0 0 0 1 +Haynes, T., haynes, H Ha Hay Hayn BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 7 ,.,"() 6 10 0 0 0 0 1 +Types", RFC types", T Ty Typ Type BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 7 ",,./,, 7 9 0 0 0 0 1 +<https://www.rfc-editor.org/info/rfc8434>. <https://www.rfc-editor.org/info/rfc8434>. <https://www.rfc-editor.org/info/rfc8434>. < <h <ht <htt BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 1 11 7 ://.-.//. 9 7 0 0 0 0 1 +[65] [65] [65] [ [6 [65 [65] BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 8 [] 2 0 0 0 0 0 1 +Farrell, S. farrell, F Fa Far Farr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 8 ,..," 5 10 0 0 0 0 1 +Attack", BCP attack", A At Att Atta BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 8 ",,,./, 7 9 0 0 0 0 1 +2014, <https://www.rfc-editor.org/info/rfc7258>. 2014, 2 20 201 2014 BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 1 0 0 0 11 8 ,://.-.//. 10 8 0 0 0 0 1 +[66] [66] [66] [ [6 [66 [66] BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 10 [] 2 0 0 0 0 0 1 +Rescorla, E. rescorla, R Re Res Resc BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 10 ,..," 5 10 0 0 0 0 1 +Text on text T Te Tex Text BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 10 ",,, 4 9 0 0 0 0 1 +DOI 10.17487/RFC3552, doi D DO DOI DOI BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 1 0 0 0 0 0 0 11 10 ./,, 4 5 0 0 0 0 1 +<https://www.rfc-editor.org/info/rfc3552>. <https://www.rfc-editor.org/info/rfc3552>. <https://www.rfc-editor.org/info/rfc3552>. < <h <ht <htt BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 1 11 10 ://.-.//. 9 7 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 11 , 1 10 0 0 0 0 0 +[Page 646] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 11 0 no 0 4 0 0 0 0 1 +Appendix A. appendix A Ap App Appe BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 0 . 1 10 0 0 0 0 1 +This document this T Th Thi This BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 0 no 0 9 0 0 0 0 1 +to determine to t to to to BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 0 no 0 10 0 0 0 0 1 +a file a a a a a BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 1 0 0 0 0 0 11 0 . 1 9 0 0 0 0 1 +replica to replica r re rep repl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 0 no 0 10 0 0 0 0 1 +are to are a ar are are BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 0 , 1 9 0 0 0 0 1 +to be to t to to to BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 0 . 1 9 0 0 0 0 1 +which there which w wh whi whic BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 0 no 0 9 0 0 0 0 1 +which different which w wh whi whic BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 0 no 0 9 0 0 0 0 1 +replica. replica. replica. r re rep repl BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 0 . 1 1 0 0 0 0 1 +As a as A As As As BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 3 [], 3 9 0 0 0 0 1 +necessary to necessary n ne nec nece BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 3 no 0 10 0 0 0 0 1 +document. These document. d do doc docu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 3 . 1 8 0 0 0 0 1 +o RFC5661 o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 11 4 [], 3 9 0 0 0 0 1 +forms of forms f fo for form BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 4 - 1 10 0 0 0 0 1 +co-operating servers co-operating c co co- co-o BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 4 -, 2 8 0 0 0 0 1 +Transparent State transparent T Tr Tra Tran BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 4 .., 3 8 0 0 0 0 1 +Migration was migration M Mi Mig Migr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 4 [] 2 10 0 0 0 0 1 +and clarified and a an and and BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 4 []. 3 9 0 0 0 0 1 +NFSv4.1 had nfsv4.1 N NF NFS NFSv BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 4 .. 2 4 0 0 0 0 1 +o Although o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 11 5 . 1 9 0 0 0 0 1 +trunking detection trunking t tr tru trun BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 5 , 1 8 0 0 0 0 1 +specification of specification s sp spe spec BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 5 , 1 9 0 0 0 0 1 +the fact the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 5 no 0 9 0 0 0 0 1 +information could information i in inf info BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 5 no 0 10 0 0 0 0 1 +attributes. attributes. attributes. a at att attr BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 5 . 1 1 0 0 0 0 1 +o Because o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 11 7 no 0 10 0 0 0 0 1 +file system file f fi fil file BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 7 , 1 9 0 0 0 0 1 +issues relating issues i is iss issu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 7 no 0 9 0 0 0 0 1 +clearly distinguished clearly c cl cle clea BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 7 - 1 9 0 0 0 0 1 +the addresses the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 7 . 1 9 0 0 0 0 1 +As a as A As As As BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 7 , 1 9 0 0 0 0 1 +configuration changes configuration c co con conf BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 7 , 1 9 0 0 0 0 1 +clearly dealt clearly c cl cle clea BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 7 no 0 9 0 0 0 0 1 +was not was w wa was was BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 7 . 1 4 0 0 0 0 1 +o Because o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 11 9 no 0 9 0 0 0 0 1 +instance (i.e. instance i in ins inst BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 9 (..) 4 10 0 0 0 0 1 +involved, it involved, i in inv invo BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 9 , 1 9 0 0 0 0 1 +simultaneously. As simultaneously. s si sim simu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 9 ., 2 9 0 0 0 0 1 +simultaneously in simultaneously s si sim simu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 9 [] 2 10 0 0 0 0 1 +distinct cases distinct d di dis dist BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 9 no 0 9 0 0 0 0 1 +two different two t tw two two BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 9 no 0 10 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 11 , 1 10 0 0 0 0 0 +[Page 647] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 11 0 no 0 4 0 0 0 0 1 +simultaneously, with simultaneously, s si sim simu BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 0 , 1 10 0 0 0 0 1 +clearly laid clearly c cl cle clea BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 0 . 1 2 0 0 0 0 1 +The majority the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 0 no 0 9 0 0 0 0 1 +presenting in presenting p pr pre pres BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 0 no 0 10 0 0 0 0 1 +[60]. This [60]. [ [6 [60 [60] BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 0 [].- 4 9 0 0 0 0 1 +section and section s se sec sect BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 0 ,.., 4 9 0 0 0 0 1 +existing sections existing e ex exi exis BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 0 .: 2 9 0 0 0 0 1 +o Reorganize o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 11 2 no 0 10 0 0 0 0 1 +paths to paths p pa pat path BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 2 no 0 9 0 0 0 0 1 +clearly from clearly c cl cle clea BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 2 , 1 9 0 0 0 0 1 +former case, former f fo for form BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 2 , 1 9 0 0 0 0 1 +of session of o of of of BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 2 . 1 2 0 0 0 0 1 +o Provide o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 11 4 no 0 9 0 0 0 0 1 +transparent transfer transparent t tr tra tran BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 4 no 0 10 0 0 0 0 1 +recommendation that recommendation r re rec reco BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 4 - 1 10 0 0 0 0 1 +provided. provided. provided. p pr pro prov BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 4 . 1 1 0 0 0 0 1 +o Specifically o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 11 5 no 0 10 0 0 0 0 1 +the client, the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 5 , 1 9 0 0 0 0 1 +in [63] in i in in in BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 11 5 [] 2 8 0 0 0 0 1 +NFSv4.1. NFSv4.1. nfsv4.1. N NF NFS NFSv BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 5 .. 2 1 0 0 0 0 1 +o Provide o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 11 6 no 0 10 0 0 0 0 1 +transfer and transfer t tr tra tran BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 6 (). 3 5 0 0 0 0 1 +o Provide o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 11 7 no 0 10 0 0 0 0 1 +to specify to t to to to BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 7 no 0 9 0 0 0 0 1 +specific network specific s sp spe spec BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 7 no 0 9 0 0 0 0 1 +path is path p pa pat path BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 7 . 1 3 0 0 0 0 1 +In addition, in I In In In BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 11 8 , 1 9 0 0 0 0 1 +[60], where [60], [ [6 [60 [60] BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 8 [], 3 9 0 0 0 0 1 +the current the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 8 - 1 10 0 0 0 0 1 +be corrected. be b be be be BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 8 . 1 9 0 0 0 0 1 +B.2 through b.2 B B. B.2 B.2 BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 8 ... 3 2 0 0 0 0 1 +o A o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 11 9 - 1 10 0 0 0 0 1 +facilities is facilities f fa fac faci BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 9 . 1 3 0 0 0 0 1 +o A o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 11 10 , 1 9 0 0 0 0 1 +reflects the reflects r re ref refl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 10 - 1 10 0 0 0 0 1 +by servers by b by by by BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 10 . 1 7 0 0 0 0 1 +o Some o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 11 11 no 0 10 0 0 0 0 1 +clarified. clarified. clarified. c cl cla clar BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 11 . 1 1 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 11 , 1 10 0 0 0 0 0 +[Page 648] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 11 0 no 0 4 0 0 0 0 1 +o The o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 11 0 no 0 10 0 0 0 0 1 +clearly explain clearly c cl cle clea BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 0 no 0 9 0 0 0 0 1 +of trunking of o of of of BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 0 -. 2 9 0 0 0 0 1 +For details, for F Fo For For BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 0 ,.. 3 4 0 0 0 0 1 +o New o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 11 1 , 1 9 0 0 0 0 1 +either because either e ei eit eith BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 1 no 0 8 0 0 0 0 1 +situations that situations s si sit situ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 1 no 0 9 0 0 0 0 1 +migration, or migration, m mi mig migr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 1 , 1 8 0 0 0 0 1 +adequately dealt adequately a ad ade adeq BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 1 -. 2 10 0 0 0 0 1 +For details, for F Fo For For BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 1 ,.. 3 4 0 0 0 0 1 +Appendix B. appendix A Ap App Appe BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 3 . 1 10 0 0 0 0 1 +B.1. Revisions b.1. B B. B.1 B.1. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 3 ..[] 4 10 0 0 0 0 1 +A number a A A A A BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 1 0 0 0 0 0 11 3 , 1 9 0 0 0 0 1 +replacing existing replacing r re rep repl BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 3 -[]: 4 10 0 0 0 0 1 +o New o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 11 4 ,, 2 9 0 0 0 0 1 +replaces the replaces r re rep repl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 4 [] 2 9 0 0 0 0 1 +start of start s st sta star BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 4 no 0 10 0 0 0 0 1 +Section 11.1. section S Se Sec Sect BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 4 .. 2 8 0 0 0 0 1 +Section 11 section S Se Sec Sect BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 4 .. 2 6 0 0 0 0 1 +o A o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 11 5 no 0 9 0 0 0 0 1 +Sections 11.4 sections S Se Sec Sect BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 5 ..([]). 7 8 0 0 0 0 1 +reasons for reasons r re rea reas BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 5 no 0 9 0 0 0 0 1 +section with section s se sec sect BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 5 .. 2 10 0 0 0 0 1 +below. This below. b be bel belo BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 5 ... 3 8 0 0 0 0 1 +New material new N Ne New New BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 7 no 0 10 0 0 0 0 1 +attributes is attributes a at att attr BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 7 ..... 5 9 0 0 0 0 1 +o A o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 11 8 no 0 10 0 0 0 0 1 +within a within w wi wit with BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 8 -. 2 9 0 0 0 0 1 +o A o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 11 8 .[] 3 10 0 0 0 0 1 +entitled "Effecting entitled e en ent enti BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 8 "", 3 8 0 0 0 0 1 +Sections 11.8 sections S Se Sec Sect BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 8 ... 3 9 0 0 0 0 1 +of this of o of of of BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 8 no 0 8 0 0 0 0 1 +Appendix B.1.2. appendix A Ap App Appe BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 8 ... 3 2 0 0 0 0 1 +o A o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 11 10 .[] 3 9 0 0 0 0 1 +entitled "The entitled e en ent enti BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 10 "", 3 8 0 0 0 0 1 +Section 11.16, section S Se Sec Sect BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 10 .,.. 4 9 0 0 0 0 1 +between the between b be bet betw BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 10 []. 3 9 0 0 0 0 1 +treatment is treatment t tr tre trea BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 10 no 0 10 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 11 , 1 10 0 0 0 0 0 +[Page 649] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 11 0 no 0 4 0 0 0 0 1 +clear how clear c cl cle clea BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 0 no 0 10 0 0 0 0 1 +trunked paths trunked t tr tru trun BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 0 . 1 8 0 0 0 0 1 +addressed in addressed a ad add addr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 0 [] 2 9 0 0 0 0 1 +network path network n ne net netw BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 11 0 no 0 8 0 0 0 0 1 +distinguished. distinguished. distinguished. d di dis dist BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 0 . 1 2 0 0 0 0 1 +B.1.1. Re-organization b.1.1. B B. B.1 B.1. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 1 ...-..[] 8 10 0 0 0 0 1 +Previously, issues previously, P Pr Pre Prev BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 2 , 1 10 0 0 0 0 1 +directed the directed d di dir dire BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 2 no 0 9 0 0 0 0 1 +in a in i in in in BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 11 2 .[]. 4 9 0 0 0 0 1 +treatment of treatment t tr tre trea BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 2 ,. 2 9 0 0 0 0 1 +below. below. below. b be bel belo BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 2 . 1 1 0 0 0 0 1 +In this in I In In In BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 11 3 ,.. 3 9 0 0 0 0 1 +together with together t to tog toge BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 3 no 0 10 0 0 0 0 1 +described in described d de des desc BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 3 ..... 5 8 0 0 0 0 1 +As a as A As As As BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 4 ,.. 3 10 0 0 0 0 1 +[60] is [60] [ [6 [60 [60] BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 4 [] 2 10 0 0 0 0 1 +some existing some s so som some BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 4 no 0 9 0 0 0 0 1 +below while, below b be bel belo BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 4 ,,, 3 10 0 0 0 0 1 +in a in i in in in BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 11 4 ,: 2 9 0 0 0 0 1 +o The o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 11 6 .,, 3 10 0 0 0 0 1 +the material the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 6 .[] 3 8 0 0 0 0 1 +subsections. subsections. subsections. s su sub subs BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 6 . 1 1 0 0 0 0 1 +o Section o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 11 6 ... 3 10 0 0 0 0 1 +o Section o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 11 7 ... 3 10 0 0 0 0 1 +o Each o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 11 7 ..,..,..( 9 10 0 0 0 0 1 +order) one order) o or ord orde BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 7 )..,.., 7 9 0 0 0 0 1 +11.4.3 of 11.4.3 1 11 11. 11.4 BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 7 ..[]...,... 11 6 0 0 0 0 1 +o Section o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 11 9 ... 3 10 0 0 0 0 1 +B.1.2. Re-organization b.1.2. B B. B.1 B.1. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 9 ...- 4 10 0 0 0 0 1 +The material the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 9 , 1 10 0 0 0 0 1 +in Section in i in in in BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 11 9 .[] 3 10 0 0 0 0 1 +described below: described d de des desc BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 9 : 1 2 0 0 0 0 1 +o Because o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 11 10 no 0 10 0 0 0 0 1 +access a access a ac acc acce BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 10 , 1 9 0 0 0 0 1 +a new a a a a a BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 1 0 0 0 0 0 11 10 . 1 9 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 11 , 1 10 0 0 0 0 0 +[Page 650] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 11 0 no 0 4 0 0 0 0 1 +there is there t th the ther BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 0 no 0 10 0 0 0 0 1 +shift in shift s sh shi shif BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 0 . 1 9 0 0 0 0 1 +As a as A As As As BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 0 ,. 2 8 0 0 0 0 1 +transitions while transitions t tr tra tran BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 0 .( 2 10 0 0 0 0 1 +[60]) is [60]) [ [6 [60 [60] BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 0 []). 4 10 0 0 0 0 1 +is now is i is is is BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 0 no 0 9 0 0 0 0 1 +different sets different d di dif diff BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 0 . 1 4 0 0 0 0 1 +o The o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 11 2 . 1 10 0 0 0 0 1 +to a to t to to to BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 2 no 0 9 0 0 0 0 1 +the client the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 2 no 0 10 0 0 0 0 1 +locking state locking l lo loc lock BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 2 . 1 4 0 0 0 0 1 +o The o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 11 3 .' 2 10 0 0 0 0 1 +access transitions access a ac acc acce BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 3 no 0 9 0 0 0 0 1 +occurred, and occurred, o oc occ occu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 3 , 1 9 0 0 0 0 1 +session state. session s se ses sess BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 3 . 1 2 0 0 0 0 1 +o The o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 11 5 . 1 10 0 0 0 0 1 +source and source s so sou sour BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 5 no 0 8 0 0 0 0 1 +session state. session s se ses sess BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 5 . 1 2 0 0 0 0 1 +This re-organization this T Th Thi This BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 5 - 1 10 0 0 0 0 1 +Section 11 section S Se Sec Sect BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 5 []: 3 5 0 0 0 0 1 +o The o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 11 6 .. 2 10 0 0 0 0 1 +wit these wit w wi wit wit BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 11 6 . 1 5 0 0 0 0 1 +o Section o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 11 6 .[] 3 10 0 0 0 0 1 +Section 11.10. section S Se Sec Sect BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 6 .. 2 9 0 0 0 0 1 +this section this t th thi this BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 6 no 0 9 0 0 0 0 1 +while transitions while w wh whi whil BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 6 no 0 9 0 0 0 0 1 +other sections. other o ot oth othe BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 6 . 1 9 0 0 0 0 1 +in this in i in in in BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 11 6 . 1 2 0 0 0 0 1 +o The o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 11 8 .,.,.. 6 10 0 0 0 0 1 +o Consequently, o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 11 9 ,.,.,.,.[] 10 10 0 0 0 0 1 +appear as appear a ap app appe BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 9 .,.,.,.,. 9 9 0 0 0 0 1 +As part as A As As As BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 10 -,.[] 5 10 0 0 0 0 1 +will be will w wi wil will BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 11 10 : 1 5 0 0 0 0 1 +o Sections o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 11 10 ...[] 5 10 0 0 0 0 1 +Sections 11.10 sections S Se Sec Sect BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 10 ...,. 5 6 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 11 , 1 10 0 0 0 0 0 +[Page 651] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 11 0 no 0 4 0 0 0 0 1 +o Section o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 11 0 ..()[] 6 10 0 0 0 0 1 +be deleted. be b be be be BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 0 . 1 1 0 0 0 0 1 +o Sections o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 11 0 ..,.....,...,.. 15 10 0 0 0 0 1 +[60] are [60] [ [6 [60 [60] BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 0 []..,..,.., 11 9 0 0 0 0 1 +11.10.4.1, and 11.10.4.1, 1 11 11. 11.1 BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 0 ...,... 7 8 0 0 0 0 1 +o Section o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 11 2 ..[] 4 8 0 0 0 0 1 +Section 11.10.9 section S Se Sec Sect BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 2 ..- 3 10 0 0 0 0 1 +section dealing section s se sec sect BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 2 . 1 6 0 0 0 0 1 +o Sections o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 11 3 ..,.....[] 10 9 0 0 0 0 1 +replaced by replaced r re rep repl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 3 ..,..,.. 8 10 0 0 0 0 1 +this document. this t th thi this BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 3 . 1 2 0 0 0 0 1 +B.1.3. Updates b.1.3. B B. B.1 B.1. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 4 ... 3 10 0 0 0 0 1 +Various elements various V Va Var Vari BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 4 no 0 8 0 0 0 0 1 +information that information i in inf info BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 4 no 0 10 0 0 0 0 1 +to a to t to to to BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 4 no 0 9 0 0 0 0 1 +replica. The replica. r re rep repl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 4 .( 2 8 0 0 0 0 1 +Section 11.10 section S Se Sec Sect BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 4 .[]) 4 9 0 0 0 0 1 +cases, in cases, c ca cas case BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 4 , 1 9 0 0 0 0 1 +replicas from replicas r re rep repl BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 4 . 1 6 0 0 0 0 1 +In addition, in I In In In BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 11 6 , 1 10 0 0 0 0 1 +to the to t to to to BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 6 : 1 3 0 0 0 0 1 +o With o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 11 7 , 1 10 0 0 0 0 1 +clear that clear c cl cle clea BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 7 no 0 9 0 0 0 0 1 +rather than rather r ra rat rath BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 7 . 1 6 0 0 0 0 1 +o In o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 11 8 no 0 9 0 0 0 0 1 +fli_valid_for, it fli_valid_for, f fl fli fli_ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 8 , 1 10 0 0 0 0 1 +the client the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 8 no 0 9 0 0 0 0 1 +prepared for prepared p pr pre prep BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 8 . 1 6 0 0 0 0 1 +o Clarification o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 11 9 no 0 10 0 0 0 0 1 +be provided. be b be be be BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 9 . 1 9 0 0 0 0 1 +in effect in i in in in BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 11 9 [], 3 9 0 0 0 0 1 +updated in updated u up upd upda BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 9 no 0 8 0 0 0 0 1 +RFC8178 [61]. rfc8178 R RF RFC RFC8 BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 9 []. 3 2 0 0 0 0 1 +B.2. Revisions b.2. B B. B.2 B.2. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 10 ..[] 4 10 0 0 0 0 1 +Revised descriptions revised R Re Rev Revi BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 11 no 0 10 0 0 0 0 1 +effecting necessary effecting e ef eff effe BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 11 -. 2 9 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 11 , 1 10 0 0 0 0 0 +[Page 652] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 11 0 no 0 4 0 0 0 0 1 +o The o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 11 0 (. 2 10 0 0 0 0 1 +[60]) assumes [60]) [ [6 [60 [60] BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 0 [])/ 4 9 0 0 0 0 1 +than by than t th tha than BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 0 ., 2 9 0 0 0 0 1 +necessary use necessary n ne nec nece BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 0 no 0 8 0 0 0 0 1 +related situations related r re rel rela BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 0 . 1 9 0 0 0 0 1 +of EXCHANGE_ID of o of of of BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 0 . 1 9 0 0 0 0 1 +the specific the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 0 [] 2 9 0 0 0 0 1 +are explained are a ar are are BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 0 ... 3 5 0 0 0 0 1 +o The o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 11 2 . 1 9 0 0 0 0 1 +RFC5661 [60]) rfc5661 R RF RFC RFC5 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 2 []) 3 9 0 0 0 0 1 +of the of o of of of BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 2 no 0 10 0 0 0 0 1 +values of values v va val valu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 2 . 1 9 0 0 0 0 1 +interoperability issues, interoperability i in int inte BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 2 , 1 9 0 0 0 0 1 +necessary and necessary n ne nec nece BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 2 . 1 10 0 0 0 0 1 +differences between differences d di dif diff BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 2 [] 2 9 0 0 0 0 1 +discussed in discussed d di dis disc BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 2 ..., 4 9 0 0 0 0 1 +of the of o of of of BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 2 - 1 9 0 0 0 0 1 +Section 15.1.9 section S Se Sec Sect BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 2 .. 2 8 0 0 0 0 1 +contexts for contexts c co con cont BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 2 . 1 5 0 0 0 0 1 +B.2.1. Revision b.2.1. B B. B.2 B.2. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 5 ... 3 10 0 0 0 0 1 +There are there T Th The Ther BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 5 no 0 10 0 0 0 0 1 +(in RFC5661 (in ( (i (in (in BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 5 ([]) 4 10 0 0 0 0 1 +and for and a an and and BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 5 no 0 10 0 0 0 0 1 +to the to t to to to BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 5 . 1 4 0 0 0 0 1 +These issues these T Th The Thes BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 6 , 1 10 0 0 0 0 1 +o Assuming o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 11 7 no 0 9 0 0 0 0 1 +having been having h ha hav havi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 7 , 1 10 0 0 0 0 1 +of the of o of of of BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 7 . 1 8 0 0 0 0 1 +o Considering o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 11 8 no 0 10 0 0 0 0 1 +occurring on occurring o oc occ occu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 8 no 0 5 0 0 0 0 1 +As these as A As As As BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 8 no 0 8 0 0 0 0 1 +Transparent State transparent T Tr Tra Tran BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 8 , 1 10 0 0 0 0 1 +has been has h ha has has BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 8 . 1 5 0 0 0 0 1 +o It o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 11 9 no 0 10 0 0 0 0 1 +is already is i is is is BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 9 no 0 8 0 0 0 0 1 +updating associated updating u up upd upda BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 9 (..) 4 9 0 0 0 0 1 +a lingering a a a a a BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 1 0 0 0 0 0 11 9 . 1 9 0 0 0 0 1 +As result, as A As As As BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 9 , 1 9 0 0 0 0 1 +of no of o of of of BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 9 . 1 9 0 0 0 0 1 +"MUST NOT" "must " "M "MU "MUS BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 11 9 "",[]. 6 9 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 11 , 1 10 0 0 0 0 0 +[Page 653] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 11 0 no 0 4 0 0 0 0 1 +This created this T Th Thi This BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 0 no 0 8 0 0 0 0 1 +Transparent State transparent T Tr Tra Tran BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 0 no 0 10 0 0 0 0 1 +be used be b be be be BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 0 . 1 5 0 0 0 0 1 +In the in I In In In BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 11 1 , 1 10 0 0 0 0 1 +are confirmed are a ar are are BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 1 . 1 9 0 0 0 0 1 +The slot the T Th The The BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 1 no 0 9 0 0 0 0 1 +would be would w wo wou woul BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 1 . 1 6 0 0 0 0 1 +o It o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 11 2 no 0 10 0 0 0 0 1 +inform the inform i in inf info BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 2 ,, 2 9 0 0 0 0 1 +communicate it communicate c co com comm BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 2 . 1 8 0 0 0 0 1 +connections are connections c co con conn BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 2 ,, 2 9 0 0 0 0 1 +treatment was treatment t tr tre trea BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 2 no 0 8 0 0 0 0 1 +EXCHANGE_ID in exchange_id E EX EXC EXCH BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 11 2 no 0 10 0 0 0 0 1 +which it which w wh whi whic BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 2 , 1 9 0 0 0 0 1 +CREATE_SESSSION, whose create_sesssion, C CR CRE CREA BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 11 2 , 1 9 0 0 0 0 1 +client ID. client c cl cli clie BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 2 . 1 1 0 0 0 0 1 +The new the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 5 no 0 9 0 0 0 0 1 +associating the associating a as ass asso BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 5 no 0 10 0 0 0 0 1 +CREATE_SESSION and create_session C CR CRE CREA BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 11 5 no 0 9 0 0 0 0 1 +session. session. session. s se ses sess BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 5 . 1 1 0 0 0 0 1 +The new the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 6 .. 2 8 0 0 0 0 1 +intended to intended i in int inte BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 6 .[]. 4 10 0 0 0 0 1 +Publishing a publishing P Pu Pub Publ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 6 . 1 9 0 0 0 0 1 +corrected definition corrected c co cor corr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 6 , 1 9 0 0 0 0 1 +RFC5661 [60]. rfc5661 R RF RFC RFC5 BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 6 []. 3 2 0 0 0 0 1 +B.2.2. Revision b.2.2. B B. B.2 B.2. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 8 ... 3 10 0 0 0 0 1 +The following the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 8 no 0 10 0 0 0 0 1 +in RFC5661 in i in in in BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 11 8 [].. 4 8 0 0 0 0 1 +o In o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 11 9 no 0 9 0 0 0 0 1 +purpose of purpose p pu pur purp BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 9 . 1 10 0 0 0 0 1 +o There o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 11 10 no 0 10 0 0 0 0 1 +RECLAIM_COMPLETE would reclaim_complete R RE REC RECL BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 11 10 . 1 5 0 0 0 0 1 +o There o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 11 10 no 0 10 0 0 0 0 1 +implementations that implementations i im imp impl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 10 no 0 9 0 0 0 0 1 +the previous the t th the the BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 10 . 1 6 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 11 , 1 10 0 0 0 0 0 +[Page 654] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 11 0 no 0 4 0 0 0 0 1 +B.3. Revisions b.3. B B. B.3 B.3. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 0 ..[] 4 10 0 0 0 0 1 +The new the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 0 no 0 10 0 0 0 0 1 +existing error existing e ex exi exis BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 0 : 1 4 0 0 0 0 1 +o Because o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 11 1 - 1 9 0 0 0 0 1 +issues, some issues, i is iss issu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 1 ,""[] 5 9 0 0 0 0 1 +become problematic become b be bec beco BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 1 no 0 9 0 0 0 0 1 +considered to considered c co con cons BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 1 ., 2 10 0 0 0 0 1 +existing definition existing e ex exi exis BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 1 (... 4 9 0 0 0 0 1 +RFC5661 [60]) rfc5661 R RF RFC RFC5 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 1 []) 3 8 0 0 0 0 1 +handling of handling h ha han hand BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 1 no 0 9 0 0 0 0 1 +network address. network n ne net netw BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 11 1 . 1 2 0 0 0 0 1 +Since such since S Si Sin Sinc BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 3 no 0 9 0 0 0 0 1 +unavailability of unavailability u un una unav BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 3 , 1 10 0 0 0 0 1 +change even change c ch cha chan BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 3 no 0 9 0 0 0 0 1 +returned remain returned r re ret retu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 3 . 1 9 0 0 0 0 1 +that a that t th tha that BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 3 , 1 10 0 0 0 0 1 +description, misleadingly, description, d de des desc BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 3 ,, 2 9 0 0 0 0 1 +replicas while replicas r re rep repl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 3 no 0 8 0 0 0 0 1 +involved. The involved. i in inv invo BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 3 .... 4 9 0 0 0 0 1 +below. below. below. b be bel belo BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 3 . 1 1 0 0 0 0 1 +o Because o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 11 5 - 1 9 0 0 0 0 1 +periods, it periods, p pe per peri BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 5 , 1 10 0 0 0 0 1 +of reclaim-related of o of of of BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 5 -[], 4 9 0 0 0 0 1 +text applies text t te tex text BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 5 . 1 10 0 0 0 0 1 +The updated the T Th The The BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 5 ... 3 9 0 0 0 0 1 +B.4. Other b.4. B B. B.4 B.4. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 7 ..[] 4 10 0 0 0 0 1 +Beside the beside B Be Bes Besi BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 7 no 0 10 0 0 0 0 1 +to existing to t to to to BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 7 , 1 9 0 0 0 0 1 +changes that changes c ch cha chan BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 11 7 : 1 4 0 0 0 0 1 +o The o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 11 8 ...[] 5 10 0 0 0 0 1 +revised to revised r re rev revi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 8 no 0 9 0 0 0 0 1 +above. The above. a ab abo abov BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 8 ..... 5 9 0 0 0 0 1 +o The o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 11 9 .. 2 10 0 0 0 0 1 +RFC5661 [60] rfc5661 R RF RFC RFC5 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 9 [], 3 8 0 0 0 0 1 +appears to appears a ap app appe BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 9 -- 2 8 0 0 0 0 1 +incompatible with incompatible i in inc inco BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 9 no 0 9 0 0 0 0 1 +globally uniform globally g gl glo glob BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 9 . 1 8 0 0 0 0 1 +revised treatment revised r re rev revi BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 9 ... 3 6 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 11 , 1 10 0 0 0 0 0 +[Page 655] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 11 0 no 0 4 0 0 0 0 1 +o The o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 11 0 .. 2 9 0 0 0 0 1 +RFC5661 [60] rfc5661 R RF RFC RFC5 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 0 [], 3 9 0 0 0 0 1 +multiple types multiple m mu mul mult BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 0 no 0 9 0 0 0 0 1 +made aware made m ma mad made BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 0 . 1 9 0 0 0 0 1 +the last the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 0 (-), 4 9 0 0 0 0 1 +dealing with dealing d de dea deal BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 0 ,, 2 10 0 0 0 0 1 +a source a a a a a BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 1 0 0 0 0 0 11 0 . 1 9 0 0 0 0 1 +as suggesting as a as as as BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 0 -, 2 9 0 0 0 0 1 +the issue the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 0 , 1 9 0 0 0 0 1 +appears in appears a ap app appe BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 0 .. 2 3 0 0 0 0 1 +Appendix C. appendix A Ap App Appe BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 3 . 1 10 0 0 0 0 1 +The following the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 3 . 1 10 0 0 0 0 1 +specification need specification s sp spe spec BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 3 : 1 5 0 0 0 0 1 +o The o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 11 4 [] 2 10 0 0 0 0 1 +in accord in i in in in BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 11 4 [](). 5 9 0 0 0 0 1 +is the is i is is is BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 4 . 1 9 0 0 0 0 1 +o Initial o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 11 5 . 1 10 0 0 0 0 1 +made it made m ma mad made BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 5 no 0 9 0 0 0 0 1 +the existing the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 5 () 2 9 0 0 0 0 1 +likely to likely l li lik like BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 5 . 1 9 0 0 0 0 1 +use on use u us use use BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 5 . 1 3 0 0 0 0 1 +The Security the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 6 () 2 9 0 0 0 0 1 +has not has h ha has has BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 6 no 0 10 0 0 0 0 1 +above. Instead, above. a ab abo abov BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 6 ., 2 9 0 0 0 0 1 +issues related issues i is iss issu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 6 - 1 9 0 0 0 0 1 +Section 11, section S Se Sec Sect BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 6 , 1 10 0 0 0 0 1 +pretty much pretty p pr pre pret BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 6 . 1 3 0 0 0 0 1 +The following the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 8 no 0 9 0 0 0 0 1 +satisfactory fashion satisfactory s sa sat sati BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 8 no 0 9 0 0 0 0 1 +section can section s se sec sect BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 8 .: 2 10 0 0 0 0 1 +o The o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 11 9 no 0 9 0 0 0 0 1 +creates needs creates c cr cre crea BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 9 . 1 10 0 0 0 0 1 +limited to limited l li lim limi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 9 no 0 9 0 0 0 0 1 +OPTIONAL was optional O OP OPT OPTI BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 11 9 . 1 8 0 0 0 0 1 +In any in I In In In BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 11 10 ,,, 3 9 0 0 0 0 1 +the security the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 10 no 0 10 0 0 0 0 1 +by revising by b by by by BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 10 . 1 4 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 11 , 1 10 0 0 0 0 0 +[Page 656] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 11 0 no 0 4 0 0 0 0 1 +o The o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 11 0 no 0 10 0 0 0 0 1 +pervasive monitoring pervasive p pe per perv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 0 no 0 9 0 0 0 0 1 +[65] (also [65] [ [6 [65 [65] BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 0 [](). 5 3 0 0 0 0 1 +In that in I In In In BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 11 1 , 1 9 0 0 0 0 1 +protection needs protection p pr pro prot BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 1 no 0 9 0 0 0 0 1 +view by view v vi vie view BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 1 . 1 9 0 0 0 0 1 +type of type t ty typ type BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 1 , 1 10 0 0 0 0 1 +further mischief further f fu fur furt BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 1 - 1 10 0 0 0 0 1 +of-service attacks of-service o of of- of-s BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 1 - 1 9 0 0 0 0 1 +single, normally single, s si sin sing BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 1 ,-,, 4 9 0 0 0 0 1 +authentication is authentication a au aut auth BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 1 . 1 3 0 0 0 0 1 +o The o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 11 3 , 1 10 0 0 0 0 1 +infrastructure to infrastructure i in inf infr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 3 , 1 9 0 0 0 0 1 +be addressed. be b be be be BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 3 . 1 2 0 0 0 0 1 +In light in I In In In BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 11 4 , 1 10 0 0 0 0 1 +is not is i is is is BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 4 , 1 9 0 0 0 0 1 +of sufficient of o of of of BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 4 ,., 3 9 0 0 0 0 1 +needed is needed n ne nee need BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 4 , 1 9 0 0 0 0 1 +limited performance limited l li lim limi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 4 no 0 8 0 0 0 0 1 +infrastructure that infrastructure i in inf infr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 4 no 0 9 0 0 0 0 1 +clients and clients c cl cli clie BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 4 . 1 4 0 0 0 0 1 +In trying in I In In In BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 11 6 no 0 10 0 0 0 0 1 +such as such s su suc such BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 6 .,, 3 9 0 0 0 0 1 +likely to likely l li lik like BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 6 no 0 10 0 0 0 0 1 +the following: the t th the the BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 6 : 1 2 0 0 0 0 1 +o The o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 11 7 no 0 10 0 0 0 0 1 +as specified as a as as as BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 7 . 1 8 0 0 0 0 1 +o The o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 11 8 no 0 10 0 0 0 0 1 +implementations. implementations. implementations. i im imp impl BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 8 . 1 2 0 0 0 0 1 +o The o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 11 8 no 0 10 0 0 0 0 1 +those in those t th tho thos BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 8 . 1 6 0 0 0 0 1 +o The o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 11 9 no 0 10 0 0 0 0 1 +to ignore to t to to to BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 9 no 0 9 0 0 0 0 1 +under the under u un und unde BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 9 , 1 9 0 0 0 0 1 +and of and a an and and BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 9 ,. 2 8 0 0 0 0 1 +Given that given G Gi Giv Give BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 10 no 0 9 0 0 0 0 1 +zero as zero z ze zer zero BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 10 , 1 10 0 0 0 0 1 +a common a a a a a BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 1 0 0 0 0 0 11 10 . 1 9 0 0 0 0 1 +approach is approach a ap app appr BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 10 , 1 9 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 11 , 1 10 0 0 0 0 0 +[Page 657] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 11 0 no 0 4 0 0 0 0 1 +NFv4.1 bis nfv4.1 N NF NFv NFv4 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 0 . 1 10 0 0 0 0 1 +defining RFCs defining d de def defi BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 0 . 1 9 0 0 0 0 1 +Appendix D. appendix A Ap App Appe BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 1 . 1 10 0 0 0 0 1 +D.1. Acknowledgments d.1. D D. D.1 D.1. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 1 .. 2 10 0 0 0 0 1 +The authors the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 1 no 0 10 0 0 0 0 1 +Netapp in netapp N Ne Net Neta BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 1 , 1 9 0 0 0 0 1 +and exploring and a an and and BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 1 no 0 9 0 0 0 0 1 +providing the providing p pr pro prov BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 1 . 1 4 0 0 0 0 1 +The authors the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 2 no 0 10 0 0 0 0 1 +attention to attention a at att atte BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 2 no 0 9 0 0 0 0 1 +best be best b be bes best BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 2 no 0 9 0 0 0 0 1 +they apply they t th the they BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 2 . 1 5 0 0 0 0 1 +The authors the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 4 no 0 10 0 0 0 0 1 +with NFSv4.1 with w wi wit with BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 4 . 1 9 0 0 0 0 1 +migration functionality. migration m mi mig migr BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 4 . 1 3 0 0 0 0 1 +The authors the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 5 no 0 9 0 0 0 0 1 +issues. The issues. i is iss issu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 5 . 1 9 0 0 0 0 1 +trunking helped trunking t tr tru trun BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 5 . 1 9 0 0 0 0 1 +Rick Macklem's rick R Ri Ric Rick BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 0 0 0 0 0 0 11 5 ' 1 10 0 0 0 0 1 +of the of o of of of BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 5 -. 2 6 0 0 0 0 1 +The authors the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 7 no 0 10 0 0 0 0 1 +review comments. review r re rev revi BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 7 . 1 2 0 0 0 0 1 +D.2. Acknowledgments d.2. D D. D.2 D.2. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 7 .. 2 10 0 0 0 0 1 +The initial the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 7 no 0 9 0 0 0 0 1 +Eisler with eisler E Ei Eis Eisl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 0 0 0 0 0 0 11 7 ,, 2 10 0 0 0 0 1 +Burnett. Burnett. burnett. B Bu Bur Burn BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 7 . 1 1 0 0 0 0 1 +The initial the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 8 no 0 9 0 0 0 0 1 +Talpey, Spencer talpey, T Ta Tal Talp BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 8 ,, 2 9 0 0 0 0 1 +Antonelli, Brent antonelli, A An Ant Anto BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 8 ,,,,, 5 10 0 0 0 0 1 +Trond Myklebust, trond T Tr Tro Tron BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 8 ,,,, 4 9 0 0 0 0 1 +Wittle. Wittle. wittle. W Wi Wit Witt BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 8 . 1 1 0 0 0 0 1 +Initial text initial I In Ini Init BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 10 -, 2 10 0 0 0 0 1 +the concept the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 10 ,, 2 9 0 0 0 0 1 +Burnett, and burnett, B Bu Bur Burn BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 10 ,, 2 10 0 0 0 0 1 +Brown, and brown, B Br Bro Brow BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 10 ,. 2 3 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 11 , 1 10 0 0 0 0 0 +[Page 658] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 11 0 no 0 4 0 0 0 0 1 +The initial the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 0 no 0 8 0 0 0 0 1 +contributed by contributed c co con cont BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 0 ,, 2 10 0 0 0 0 1 +Carl Burnett, carl C Ca Car Carl BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 0 0 0 0 0 0 11 0 ,,. 3 6 0 0 0 0 1 +The initial the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 1 no 0 10 0 0 0 0 1 +Falkner and falkner F Fa Fal Falk BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 0 0 0 0 0 0 11 1 . 1 3 0 0 0 0 1 +The pNFS the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 1 no 0 9 0 0 0 0 1 +Gibson. Gary gibson. G Gi Gib Gibs BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 1 .- 2 9 0 0 0 0 1 +parallel I/O. parallel p pa par para BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 1 /. 2 10 0 0 0 0 1 +with a with w wi wit with BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 1 no 0 10 0 0 0 0 1 +for the for f fo for for BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 1 .. 2 4 0 0 0 0 1 +The initial the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 3 no 0 9 0 0 0 0 1 +Welch and welch W We Wel Welc BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 0 0 0 0 0 0 11 3 . 1 10 0 0 0 0 1 +Benny Halevy, benny B Be Ben Benn BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 0 0 0 0 0 0 11 3 ,,. 3 9 0 0 0 0 1 +from the from f fr fro from BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 3 no 0 9 0 0 0 0 1 +initial pNFS initial i in ini init BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 3 ;, 2 9 0 0 0 0 1 +Peter Corbett, peter P Pe Pet Pete BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 0 0 0 0 0 0 11 3 ,,,. 4 9 0 0 0 0 1 +Fredric Isaman fredric F Fr Fre Fred BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 0 0 0 0 0 0 11 5 no 0 10 0 0 0 0 1 +XDR description xdr X XD XDR XDR BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 11 5 .. 2 5 0 0 0 0 1 +Audrey Van audrey A Au Aud Audr BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 0 0 0 0 0 0 11 6 ,,- 3 8 0 0 0 0 1 +ordination and ordination o or ord ordi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 6 no 0 10 0 0 0 0 1 +documents. documents. documents. d do doc docu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 6 . 1 1 0 0 0 0 1 +Richard Jernigan richard R Ri Ric Rich BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 0 0 0 0 0 0 11 7 ' 1 10 0 0 0 0 1 +design. design. design. d de des desi BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 7 . 1 1 0 0 0 0 1 +Several formal several S Se Sev Seve BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 7 no 0 10 0 0 0 0 1 +of the of o of of of BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 7 . 1 9 0 0 0 0 1 +room for room r ro roo room BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 7 ..': 4 8 0 0 0 0 1 +o ACLs, o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 11 8 ,:,, 4 10 0 0 0 0 1 +Rahul Iyer, rahul R Ra Rah Rahu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 8 ,,,,, 5 10 0 0 0 0 1 +Alan Yoder. alan A Al Ala Alan BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 0 0 0 0 0 0 11 8 . 1 1 0 0 0 0 1 +o Sessions, o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 11 9 ,:, 3 9 0 0 0 0 1 +Doeppner, Robert doeppner, D Do Doe Doep BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 9 ,,,, 4 8 0 0 0 0 1 +Macklem, Trond macklem, M Ma Mac Mack BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 9 ,,,,, 5 10 0 0 0 0 1 +and Peter and a an and and BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 9 . 1 2 0 0 0 0 1 +o Initial o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 11 10 ,: 2 9 0 0 0 0 1 +Adamson, David adamson, A Ad Ada Adam BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 10 ,,,,, 5 10 0 0 0 0 1 +Goodson, Benny goodson, G Go Goo Good BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 10 ,,,, 4 9 0 0 0 0 1 +Shepler, and shepler, S Sh She Shep BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 10 ,. 2 3 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 11 , 1 10 0 0 0 0 0 +[Page 659] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 11 0 no 0 4 0 0 0 0 1 +o Global o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 11 0 ,:, 3 10 0 0 0 0 1 +Ellard, Craig ellard, E El Ell Ella BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 0 ,,,, 4 9 0 0 0 0 1 +Noveck, Theresa noveck, N No Nov Nove BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 0 ,,,, 4 9 0 0 0 0 1 +Thurlow. Thurlow. thurlow. T Th Thu Thur BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 0 . 1 1 0 0 0 0 1 +o NFSv4.1 o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 11 1 .,: 3 9 0 0 0 0 1 +Adamson, Marc adamson, A Ad Ada Adam BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 1 ,,,,, 5 10 0 0 0 0 1 +Myklebust, and myklebust, M My Myk Mykl BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 1 ,. 2 3 0 0 0 0 1 +o NFSv4.1 o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 11 2 ., 2 9 0 0 0 0 1 +inspectors: Mike inspectors: i in ins insp BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 2 :,,, 4 9 0 0 0 0 1 +Khan, Eric khan, K Kh Kha Khan BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 2 ,,,,. 5 10 0 0 0 0 1 +o EXCHANGE_ID o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 11 3 ,: 2 10 0 0 0 0 1 +Mike Eisler, mike M Mi Mik Mike BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 11 3 ,,,, 4 10 0 0 0 0 1 +Isaman, Saadia isaman, I Is Isa Isam BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 3 ,,,, 4 8 0 0 0 0 1 +Myklebust, Spencer myklebust, M My Myk Mykl BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 3 ,,. 3 6 0 0 0 0 1 +o Final o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 11 4 ,: 2 9 0 0 0 0 1 +Adamson, Mike adamson, A Ad Ada Adam BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 4 ,,,,, 5 9 0 0 0 0 1 +Garth Goodson, garth G Ga Gar Gart BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 0 0 0 0 0 0 11 4 ,,,, 4 10 0 0 0 0 1 +Iyer, Suchit iyer, I Iy Iye Iyer BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 4 ,,,, 4 9 0 0 0 0 1 +Shepler, Renu shepler, S Sh She Shep BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 4 ,,,. 4 7 0 0 0 0 1 +A review a A A A A BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 1 0 0 0 0 0 11 6 no 0 10 0 0 0 0 1 +of error of o of of of BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 6 no 0 10 0 0 0 0 1 +had two had h ha had had BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 6 . 1 9 0 0 0 0 1 +were Andy were w we wer were BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 6 ,,,, 4 9 0 0 0 0 1 +Gordon, Trond gordon, G Go Gor Gord BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 6 ,,,,, 5 9 0 0 0 0 1 +Amy Weaver, amy A Am Amy Amy BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 0 0 0 0 0 0 11 6 ,. 2 3 0 0 0 0 1 +Jari Arkko, jari J Ja Jar Jari BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 8 ,,,,, 5 10 0 0 0 0 1 +Chris Newman, chris C Ch Chr Chri BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 0 0 0 0 0 0 11 8 ,. 2 9 0 0 0 0 1 +Olga Kornievskaia olga O Ol Olg Olga BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 0 0 0 0 0 0 11 9 . 1 10 0 0 0 0 1 +Ricardo Labiaga ricardo R Ri Ric Rica BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 0 0 0 0 0 0 11 9 no 0 10 0 0 0 0 1 +underspecified. underspecified. underspecified. u un und unde BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 9 . 1 2 0 0 0 0 1 +Those who those T Th Tho Thos BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 9 :, 2 9 0 0 0 0 1 +Sunil Bhargo, sunil S Su Sun Suni BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 9 ,,,, 4 9 0 0 0 0 1 +Finkelstein, Jason finkelstein, F Fi Fin Fink BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 9 ,,.,, 5 9 0 0 0 0 1 +Ricardo Labiaga, ricardo R Ri Ric Rica BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 0 0 0 0 0 0 11 9 ,,,, 4 9 0 0 0 0 1 +Picken, Archana picken, P Pi Pic Pick BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 9 ,,,,, 5 10 0 0 0 0 1 +Peter Varga. peter P Pe Pet Pete BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 0 0 0 0 0 0 11 9 . 1 1 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 11 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 11 , 1 10 0 0 0 0 0 +[Page 660] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 0 - 1 10 0 0 1 0 1 +NFSv4.1 with nfsv4.1 N NF NFS NFSv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 0 . 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 11 0 no 0 4 0 0 0 0 1 +Authors' Addresses authors' A Au Aut Auth BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 1 ' 1 10 0 0 0 0 1 +David Noveck david D Da Dav Davi BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 0 0 0 0 0 0 11 2 () 2 7 0 0 0 0 1 +NetApp NetApp netapp N Ne Net NetA BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 2 no 0 2 0 0 0 0 1 +1601 Trapelo 1601 1 16 160 1601 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 0 0 0 0 1 0 0 0 11 2 , 1 10 0 0 0 0 1 +Waltham, MA waltham, W Wa Wal Walt BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 2 , 1 6 0 0 0 0 1 +USA USA usa U US USA USA BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 11 2 no 0 1 0 0 0 0 1 +Phone: +1-781-768-5347 phone: P Ph Pho Phon BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 4 :--- 4 8 0 0 0 0 1 +EMail: dnoveck@netapp.com email: E EM EMa EMai BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 4 :. 2 10 0 0 0 0 1 +Charles Lever charles C Ch Cha Char BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 0 0 0 0 0 0 11 6 no 0 5 0 0 0 0 1 +Oracle Corporation oracle O Or Ora Orac BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 6 no 0 7 0 0 0 0 1 +1015 Granger 1015 1 10 101 1015 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 0 0 0 0 1 0 0 0 11 6 no 0 8 0 0 0 0 1 +Ann Arbor, ann A An Ann Ann BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 0 0 0 0 0 0 11 6 , 1 8 0 0 0 0 1 +United States united U Un Uni Unit BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 6 no 0 10 0 0 0 0 1 +Phone: +1 phone: P Ph Pho Phon BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 8 : 1 7 0 0 0 0 1 +EMail: chuck.lever@oracle.com email: E EM EMa EMai BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 8 :.. 3 10 0 0 0 0 1 +Noveck & noveck N No Nov Nove BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 10 no 0 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 10 , 1 10 0 0 0 0 0 +[Page 661] [page [ [P [Pa [Pag BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 10 [] 2 4 0 0 0 0 0 + diff --git a/grobid-trainer/resources/dataset/segmentation/sdo/ietf/corpus/raw/XP015134635.training.segmentation b/grobid-trainer/resources/dataset/segmentation/sdo/ietf/corpus/raw/XP015134635.training.segmentation new file mode 100644 index 0000000000..9ae7116a9e --- /dev/null +++ b/grobid-trainer/resources/dataset/segmentation/sdo/ietf/corpus/raw/XP015134635.training.segmentation @@ -0,0 +1,1093 @@ +server date server s se ser serv BLOCKSTART PAGESTART NEWFONT HIGHERFONT 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 0 ; 1 10 0 0 0 0 0 +Network Working network N Ne Net Netw BLOCKSTART PAGEIN NEWFONT HIGHERFONT 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 0 0 no 0 10 0 0 0 0 1 +U. Carion u. U U. U. U. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 . 1 3 0 0 0 0 1 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 - 1 4 0 0 0 0 1 +August 05, august A Au Aug Augu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 0 0 , 1 5 0 0 0 0 1 +Intended status: intended I In Int Inte BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 : 1 10 0 0 0 0 1 +Expires: February expires: E Ex Exp Expi BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 :, 2 8 0 0 0 0 1 +JSON Schema json J JS JSO JSON BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 1 no 0 5 0 0 0 0 1 +draft-ucarion-json-schema-language-00 draft-ucarion-json-schema-language-00 draft-ucarion-json-schema-language-00 d dr dra draf BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 1 ----- 5 10 0 0 0 0 1 +Abstract Abstract abstract A Ab Abs Abst BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 1 no 0 10 0 0 0 0 1 +JSON Schema json J JS JSO JSON BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 1 () 2 10 0 0 0 0 1 +format of format f fo for form BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 1 () 2 9 0 0 0 0 1 +associated with associated a as ass asso BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 1 -. 2 9 0 0 0 0 1 +generation from generation g ge gen gene BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 1 . 1 3 0 0 0 0 1 +Status of status S St Sta Stat BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 3 no 0 10 0 0 0 0 1 +This Internet-Draft this T Th Thi This BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 3 - 1 10 0 0 0 0 1 +provisions of provisions p pr pro prov BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 3 . 1 5 0 0 0 0 1 +Internet-Drafts are internet-drafts I In Int Inte BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 3 - 1 9 0 0 0 0 1 +Task Force task T Ta Tas Task BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 3 (). 3 9 0 0 0 0 1 +working documents working w wo wor work BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 3 -.- 3 10 0 0 0 0 1 +Drafts is drafts D Dr Dra Draf BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 3 ://..///. 9 8 0 0 0 0 1 +Internet-Drafts are internet-drafts I In Int Inte BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 5 - 1 10 0 0 0 0 1 +and may and a an and and BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 5 ,, 2 9 0 0 0 0 1 +time. It time. t ti tim time BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 5 .- 2 8 0 0 0 0 1 +material or material m ma mat mate BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 5 "." 3 8 0 0 0 0 1 +This Internet-Draft this T Th Thi This BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 7 -,. 3 10 0 0 0 0 1 +Copyright Notice copyright C Co Cop Copy BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 7 no 0 10 0 0 0 0 1 +Copyright (c) copyright C Co Cop Copy BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 7 () 2 10 0 0 0 0 1 +document authors. document d do doc docu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 7 .. 2 6 0 0 0 0 1 +This document this T Th Thi This BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 8 ' 1 8 0 0 0 0 1 +Provisions Relating provisions P Pr Pro Prov BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 8 no 0 5 0 0 0 0 1 +(https://trustee.ietf.org/license-info) in (https://trustee.ietf.org/license-info) ( (h (ht (htt BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 1 0 8 (://../-) 9 9 0 0 0 0 1 +publication of publication p pu pub publ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 8 . 1 8 0 0 0 0 1 +carefully, as carefully, c ca car care BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 8 , 1 10 0 0 0 0 1 +to this to t to to to BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 8 . 1 9 0 0 0 0 1 +include Simplified include i in inc incl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 8 . 1 9 0 0 0 0 1 +the Trust the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 8 no 0 9 0 0 0 0 1 +described in described d de des desc BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 8 . 1 5 0 0 0 0 1 +Carion Carion carion C Ca Car Cari BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 11 no 0 2 0 0 0 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 11 , 1 10 0 0 0 0 0 +[Page 1] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 11 [] 2 3 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 - 1 10 0 0 1 1 1 +JSON Schema json J JS JSO JSON BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 no 0 10 0 0 1 1 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 0 0 no 0 5 0 0 0 0 1 +Table of table T Ta Tab Tabl BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 no 0 10 0 0 0 0 1 +1. Introduction 1. 1 1. 1. 1. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ......................... 25 9 0 0 0 0 1 +2 2 2 2 2 2 2 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 0 0 no 0 0 0 0 0 0 1 +1.1. Terminology 1.1. 1 1. 1.1 1.1. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ......................... 25 9 0 0 0 0 1 +3 3 3 3 3 3 3 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 0 0 no 0 0 0 0 0 0 1 +2. Syntax 2. 2 2. 2. 2. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ............................ 28 9 0 0 0 0 1 +3 3 3 3 3 3 3 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 0 0 no 0 0 0 0 0 0 1 +3. Semantics 3. 3 3. 3. 3. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ........................... 27 9 0 0 0 0 1 +9 9 9 9 9 9 9 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 0 0 no 0 0 0 0 0 0 1 +3.1. Strict 3.1. 3 3. 3.1 3.1. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 .................. 18 9 0 0 0 0 1 +9 9 9 9 9 9 9 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 0 0 no 0 0 0 0 0 0 1 +3.2. Errors 3.2. 3 3. 3.2 3.2. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ........................... 27 9 0 0 0 0 1 +3.3. Forms 3.3. 3 3. 3.3 3.3. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ............................ 28 9 0 0 0 0 1 +3.3.1. Empty 3.3.1. 3 3. 3.3 3.3. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ........................... 27 9 0 0 0 0 1 +3.3.2. Ref 3.3.2. 3 3. 3.3 3.3. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ............................ 28 9 0 0 0 0 1 +3.3.3. Type 3.3.3. 3 3. 3.3 3.3. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ........................... 27 9 0 0 0 0 1 +3.3.4. Enum 3.3.4. 3 3. 3.3 3.3. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ........................... 27 9 0 0 0 0 1 +3.3.5. Elements 3.3.5. 3 3. 3.3 3.3. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ......................... 25 9 0 0 0 0 1 +3.3.6. Properties 3.3.6. 3 3. 3.3 3.3. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ........................ 24 9 0 0 0 0 1 +3.3.7. Values 3.3.7. 3 3. 3.3 3.3. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 .......................... 26 9 0 0 0 0 1 +3.3.8. Discriminator 3.3.8. 3 3. 3.3 3.3. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ....................... 23 9 0 0 0 0 1 +4. IANA 4. 4 4. 4. 4. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ...................... 22 9 0 0 0 0 1 +5. Security 5. 5 5. 5. 5. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 .................... 20 9 0 0 0 0 1 +6. Normative 6. 6 6. 6. 6. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ..................... 21 9 0 0 0 0 1 +Appendix A. appendix A Ap App Appe BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 ................. 17 9 0 0 0 0 1 +Acknowledgments . acknowledgments A Ac Ack Ackn BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 ......................... 25 10 0 0 0 0 1 +Author's Address author's A Au Aut Auth BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 '........................ 25 9 0 0 0 0 1 +1. Introduction 1. 1 1. 1. 1. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 9 . 1 10 0 0 0 0 1 +This document this T Th Thi This BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 9 [] 2 10 0 0 0 0 1 +JSON Schema json J JS JSO JSON BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 1 9 (). 3 4 0 0 0 0 1 +The goals the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 9 : 1 10 0 0 0 0 1 +o Provide o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 1 9 no 0 10 0 0 0 0 1 +JSON document. json J JS JSO JSON BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 1 9 . 1 2 0 0 0 0 1 +o Be o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 1 10 . 1 10 0 0 0 0 1 +o Provide o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 1 10 no 0 9 0 0 0 0 1 +humans and humans h hu hum huma BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 10 , 1 10 0 0 0 0 1 +documents. documents. documents. d do doc docu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 10 . 1 1 0 0 0 0 1 +o Enable o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 1 10 . 1 10 0 0 0 0 1 +o Provide o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 1 10 no 0 10 0 0 0 0 1 +conform with conform c co con conf BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 10 . 1 3 0 0 0 0 1 +JSL is jsl J JS JSL JSL BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 1 11 . 1 9 0 0 0 0 1 +For example, for F Fo For For BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 11 ,(,, 4 10 0 0 0 0 1 +JSON) yet json) J JS JSO JSON BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 1 11 ). 2 9 0 0 0 0 1 +Carion Carion carion C Ca Car Cari BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 1 11 no 0 2 0 0 0 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 11 , 1 10 0 0 0 0 0 +[Page 2] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 11 [] 2 3 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 1 0 - 1 10 0 0 1 0 1 +JSON Schema json J JS JSO JSON BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 1 0 no 0 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 1 0 no 0 5 0 0 0 0 1 +keeping the keeping k ke kee keep BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 0 , 1 10 0 0 0 0 1 +code generation code c co cod code BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 0 . 1 8 0 0 0 0 1 +It is it I It It It BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 0 -,' 3 10 0 0 0 0 1 +expressiveness is expressiveness e ex exp expr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 0 . 1 9 0 0 0 0 1 +required, alternatives required, r re req requ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 0 ,([], 5 9 0 0 0 0 1 +Definition Language) definition D De Def Defi BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 0 ). 2 4 0 0 0 0 1 +This document this T Th Thi This BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 2 : 1 10 0 0 0 0 1 +The syntax the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 2 . 1 9 0 0 0 0 1 +semantics of semantics s se sem sema BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 2 ; 1 8 0 0 0 0 1 +satisfies a satisfies s sa sat sati BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 2 no 0 9 0 0 0 0 1 +is unsatisfactory. is i is is is BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 2 . 1 10 0 0 0 0 1 +CDDL equivalents. cddl C CD CDD CDDL BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 1 2 . 1 2 0 0 0 0 1 +1.1. Terminology 1.1. 1 1. 1.1 1.1. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 3 .. 2 10 0 0 0 0 1 +The key the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 3 "","","","","", 15 9 0 0 0 0 1 +"SHOULD", "SHOULD "should", " "S "SH "SHO BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 1 3 "","","","","", 15 9 0 0 0 0 1 +"OPTIONAL" in "optional" " "O "OP "OPT BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 1 3 "" 2 9 0 0 0 0 1 +BCP 14 bcp B BC BCP BCP BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 1 3 [][],, 6 9 0 0 0 0 1 +capitals, as capitals, c ca cap capi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 3 ,. 2 8 0 0 0 0 1 +document in document d do doc docu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 3 , 1 10 0 0 0 0 1 +meanings. meanings. meanings. m me mea mean BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 3 . 1 1 0 0 0 0 1 +The term the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 6 "",, 4 10 0 0 0 0 1 +understood as understood u un und unde BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 6 []. 3 6 0 0 0 0 1 +The terms the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 7 "","","","","","" 17 10 0 0 0 0 1 +in this in i in in in BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 1 7 []. 3 9 0 0 0 0 1 +The term the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 8 "",, 4 10 0 0 0 0 1 +JSON value json J JS JSO JSON BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 1 8 . 1 7 0 0 0 0 1 +2. Syntax 2. 2 2. 2. 2. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 8 . 1 10 0 0 0 0 1 +This section this T Th Thi This BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 8 . 1 10 0 0 0 0 1 +JSL schemas jsl J JS JSL JSL BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 1 9 ., 2 10 0 0 0 0 1 +a "root a a a a a BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 1 0 0 0 0 0 1 9 "", 3 10 0 0 0 0 1 +i.e. it i.e. i i. i.e i.e. BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 9 .."". 5 3 0 0 0 0 1 +A correct a A A A A BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 1 0 0 0 0 0 2 10 "" 2 9 0 0 0 0 1 +this section. this t th thi this BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 10 . 1 10 0 0 0 0 1 +form. It form. f fo for form BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 10 .( 2 10 0 0 0 0 1 +schemas) and schemas) s sc sch sche BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 10 ). 2 4 0 0 0 0 1 +Carion Carion carion C Ca Car Cari BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 2 11 no 0 2 0 0 0 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 11 , 1 10 0 0 0 0 0 +[Page 3] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 11 [] 2 3 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 2 0 - 1 10 0 0 1 0 1 +JSON Schema json J JS JSO JSON BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 2 0 no 0 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 2 0 no 0 5 0 0 0 0 1 +schema = schema s sc sch sche BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 0 no 0 3 0 0 0 0 1 +form, form, form, f fo for form BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 0 , 1 1 0 0 0 0 1 +? definitions: ? ? ? ? ? BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 ?:* 3 10 0 0 0 0 1 +} } } } } } } BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 0 0 0 0 0 1 +Figure 1: figure F Fi Fig Figu BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 1 : 1 10 0 0 0 0 1 +This is this T Th Thi This BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 1 ,"" 3 10 0 0 0 0 1 +contains a contains c co con cont BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 1 ,: 2 6 0 0 0 0 1 +{ "definitions": { { { { { BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 2 "":"": 6 10 0 0 0 0 1 +JSL schemas jsl J JS JSL JSL BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 2 3 . 1 10 0 0 0 0 1 +so as so s so so so BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 2 3 ; 1 9 0 0 0 0 1 +forms at forms f fo for form BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 3 . 1 2 0 0 0 0 1 +form = form f fo for form BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 4 / 1 10 0 0 0 0 1 +ref / ref r re ref ref BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 4 / 1 4 0 0 0 0 1 +type / type t ty typ type BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 4 / 1 4 0 0 0 0 1 +enum / enum e en enu enum BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 4 / 1 4 0 0 0 0 1 +elements / elements e el ele elem BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 4 / 1 7 0 0 0 0 1 +properties / properties p pr pro prop BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 4 / 1 8 0 0 0 0 1 +values / values v va val valu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 4 / 1 6 0 0 0 0 1 +discriminator discriminator discriminator d di dis disc BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 4 no 0 9 0 0 0 0 1 +Figure 2: figure F Fi Fig Figu BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 5 : 1 10 0 0 0 0 1 +The first the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 5 ,"",. 5 10 0 0 0 0 1 +instance: instance: instance: i in ins inst BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 5 : 1 1 0 0 0 0 1 +empty = empty e em emp empt BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 6 no 0 10 0 0 0 0 1 +Figure 3: figure F Fi Fig Figu BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 6 : 1 10 0 0 0 0 1 +Thus, this thus, T Th Thu Thus BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 7 ,: 2 10 0 0 0 0 1 +{} {} {} { {} {} {} BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 2 7 no 0 10 0 0 0 0 1 +The second the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 7 ,"", 4 10 0 0 0 0 1 +in terms in i in in in BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 2 7 "": 3 5 0 0 0 0 1 +ref = ref r re ref ref BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 8 : 1 10 0 0 0 0 1 +Figure 4: figure F Fi Fig Figu BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 9 : 1 10 0 0 0 0 1 +For a for F Fo For For BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 9 ,"" 3 10 0 0 0 0 1 +definitions found definitions d de def defi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 9 . 1 9 0 0 0 0 1 +More formally, more M Mo Mor More BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 9 ,"": 4 7 0 0 0 0 1 +Carion Carion carion C Ca Car Cari BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 2 11 no 0 2 0 0 0 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 11 , 1 10 0 0 0 0 0 +[Page 4] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 11 [] 2 3 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 2 0 - 1 10 0 0 1 0 1 +JSON Schema json J JS JSO JSON BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 2 0 no 0 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 2 0 no 0 5 0 0 0 0 1 +o Let o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 2 0 , 1 10 0 0 0 0 1 +itself if itself i it its itse BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 0 . 1 4 0 0 0 0 1 +o Let o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 2 1 "". 3 10 0 0 0 0 1 +If the if I If If If BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 2 , 1 9 0 0 0 0 1 +name "definitions", name n na nam name BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 2 "", 3 10 0 0 0 0 1 +_R_. _R_. _r_. _ _R _R_ _R_. BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 2 2 . 1 0 0 0 0 0 1 +Here is here H He Her Here BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 3 ""- 3 10 0 0 0 0 1 +the same the t th the the BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 3 : 1 3 0 0 0 0 1 +{ { { { { { { BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 4 no 0 0 0 0 0 0 1 +"definitions": { "definitions": " "d "de "def BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 4 "": 3 3 0 0 0 0 1 +"coordinates": { "coordinates": " "c "co "coo BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 4 "": 3 3 0 0 0 0 1 +"properties": { "properties": " "p "pr "pro BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 4 "": 3 3 0 0 0 0 1 +"lat": { "lat": " "l "la "lat BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 4 "":"":"", 9 6 0 0 0 0 1 +"lng": { "lng": " "l "ln "lng BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 4 "":"":"" 8 6 0 0 0 0 1 +} } } } } } } BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 4 no 0 0 0 0 0 0 1 +} } } } } } } BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 4 no 0 0 0 0 0 0 1 +}, }, }, } }, }, }, BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 2 4 , 1 0 0 0 0 0 1 +"properties": { "properties": " "p "pr "pro BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 4 "": 3 3 0 0 0 0 1 +"user_location": { "user_location": " "u "us "use BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 4 "":"":"", 9 9 0 0 0 0 1 +"server_location": { "server_location": " "s "se "ser BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 4 "":"":"" 8 10 0 0 0 0 1 +} } } } } } } BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 4 no 0 0 0 0 0 0 1 +} } } } } } } BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 4 no 0 0 0 0 0 0 1 +However, this however, H Ho How Howe BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 6 ,, 2 10 0 0 0 0 1 +doesn't exist: doesn't d do doe does BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 6 ': 2 2 0 0 0 0 1 +{ { { { { { { BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 7 no 0 0 0 0 0 0 1 +"definitions": { "definitions": " "d "de "def BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 7 "":"":"":"", 12 10 0 0 0 0 1 +"ref": "bar" "ref": " "r "re "ref BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 7 "":"" 5 2 0 0 0 0 1 +} } } } } } } BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 7 no 0 0 0 0 0 0 1 +This schema this T Th Thi This BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 8 , 1 10 0 0 0 0 1 +doesn't exist doesn't d do doe does BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 8 '.- 3 8 0 0 0 0 1 +immaterial: immaterial: immaterial: i im imm imma BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 8 : 1 1 0 0 0 0 1 +{ { { { { { { BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 9 no 0 0 0 0 0 0 1 +"definitions": { "definitions": " "d "de "def BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 9 "":"":"":"", 12 10 0 0 0 0 1 +"elements": { "elements": " "e "el "ele BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 9 "": 3 2 0 0 0 0 1 +"definitions": { "definitions": " "d "de "def BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 9 "":"":"":"", 12 10 0 0 0 0 1 +"ref": "bar" "ref": " "r "re "ref BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 9 "":"" 5 2 0 0 0 0 1 +} } } } } } } BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 9 no 0 0 0 0 0 0 1 +} } } } } } } BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 9 no 0 0 0 0 0 0 1 +Carion Carion carion C Ca Car Cari BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 2 11 no 0 2 0 0 0 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 11 , 1 10 0 0 0 0 0 +[Page 5] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 11 [] 2 3 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 2 0 - 1 10 0 0 1 0 1 +JSON Schema json J JS JSO JSON BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 2 0 no 0 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 2 0 no 0 5 0 0 0 0 1 +The third the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 0 ,"", 4 9 0 0 0 0 1 +primitive type. primitive p pr pri prim BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 0 . 1 10 0 0 0 0 1 +is described is i is is is BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 0 . 1 4 0 0 0 0 1 +type = type t ty typ type BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 1 :""/-/""/"" 11 10 0 0 0 0 1 +num-type = num-type n nu num num- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 1 -""/""/""/ 10 7 0 0 0 0 1 +"int8" / "int8" " "i "in "int BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 1 ""/""/""/""/""/"" 17 9 0 0 0 0 1 +Figure 5: figure F Fi Fig Figu BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 3 : 1 10 0 0 0 0 1 +For example, for F Fo For For BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 3 , 1 10 0 0 0 0 1 +correct [RFC3339] correct c co cor corr BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 3 []: 3 4 0 0 0 0 1 +{ "type": { { { { { BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 4 "":"" 5 10 0 0 0 0 1 +The fourth the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 4 ,"", 4 10 0 0 0 0 1 +of a of o of of of BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 4 ,: 2 6 0 0 0 0 1 +enum = enum e en enu enum BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 5 :[] 3 10 0 0 0 0 1 +Figure 6: figure F Fi Fig Figu BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 5 : 1 10 0 0 0 0 1 +The values the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 5 "[]"., 6 10 0 0 0 0 1 +following is following f fo fol foll BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 5 : 1 4 0 0 0 0 1 +{ "enum": { { { { { BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 3 6 "":["","",""] 13 10 0 0 0 0 1 +But this but B Bu But But BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 6 ,"": 4 10 0 0 0 0 1 +{ "enum": { { { { { BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 3 7 "":["","",""] 13 10 0 0 0 0 1 +The fifth the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 7 ,"",. 5 10 0 0 0 0 1 +A further a A A A A BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 1 0 0 0 0 0 3 7 -. 2 8 0 0 0 0 1 +elements = elements e el ele elem BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 8 : 1 10 0 0 0 0 1 +Figure 7: figure F Fi Fig Figu BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 8 : 1 10 0 0 0 0 1 +Here is here H He Her Here BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 9 []: 3 10 0 0 0 0 1 +{ "elements": { { { { { BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 3 9 "":"":"" 8 10 0 0 0 0 1 +The sixth the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 10 ,"", 4 10 0 0 0 0 1 +"struct". A "struct". " "s "st "str BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 10 "". 3 9 0 0 0 0 1 +optional properties, optional o op opt opti BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 10 , 1 10 0 0 0 0 1 +must satisfy: must m mu mus must BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 10 : 1 2 0 0 0 0 1 +Carion Carion carion C Ca Car Cari BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 3 11 no 0 2 0 0 0 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 11 , 1 10 0 0 0 0 0 +[Page 6] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 11 [] 2 3 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 3 0 - 1 10 0 0 1 0 1 +JSON Schema json J JS JSO JSON BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 3 0 no 0 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 3 0 no 0 5 0 0 0 0 1 +; One ; ; ; ; ; BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 3 0 ;, 2 10 0 0 0 0 1 +; but ; ; ; ; ; BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 3 0 ;. 2 2 0 0 0 0 1 +properties = properties p pr pro prop BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 0 -/-- 4 9 0 0 0 0 1 +with-properties = with-properties w wi wit with BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 1 - 1 5 0 0 0 0 1 +properties: * properties: p pr pro prop BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 1 :*, 3 7 0 0 0 0 1 +? optionalProperties ? ? ? ? ? BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 3 1 ?* 2 10 0 0 0 0 1 +} } } } } } } BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 3 1 no 0 0 0 0 0 0 1 +with-optional-properties = with-optional-properties w wi wit with BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 2 -- 2 7 0 0 0 0 1 +? properties: ? ? ? ? ? BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 3 2 ?:*, 4 8 0 0 0 0 1 +optionalProperties: * optionalproperties: o op opt opti BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 2 :* 2 10 0 0 0 0 1 +} } } } } } } BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 3 2 no 0 0 0 0 0 0 1 +Figure 8: figure F Fi Fig Figu BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 3 : 1 10 0 0 0 0 1 +If a if I If If If BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 3 ""() 4 10 0 0 0 0 1 +another member another a an ano anot BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 3 ""(), 5 9 0 0 0 0 1 +and _P_ and a an and and BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 3 . 1 9 0 0 0 0 1 +ambiguity as ambiguity a am amb ambi BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 3 . 1 8 0 0 0 0 1 +Thus, this thus, T Th Thu Thus BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 5 ,,"" 4 10 0 0 0 0 1 +"properties" and "properties" " "p "pr "pro BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 5 """": 5 5 0 0 0 0 1 +{ { { { { { { BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 3 6 no 0 0 0 0 0 0 1 +"properties": { "properties": " "p "pr "pro BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 6 "":"":, 7 8 0 0 0 0 1 +"optionalProperties": { "optionalproperties": " "o "op "opt BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 6 "":"": 6 10 0 0 0 0 1 +} } } } } } } BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 3 6 no 0 0 0 0 0 0 1 +Here is here H He Her Here BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 7 ,: 2 10 0 0 0 0 1 +{ { { { { { { BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 3 8 no 0 0 0 0 0 0 1 +"properties": { "properties": " "p "pr "pro BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 8 "": 3 4 0 0 0 0 1 +"users": { "users": " "u "us "use BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 8 "": 3 2 0 0 0 0 1 +"elements": { "elements": " "e "el "ele BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 8 "": 3 3 0 0 0 0 1 +"properties": { "properties": " "p "pr "pro BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 8 "": 3 4 0 0 0 0 1 +"id": { "id": " "i "id "id" BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 8 "":"":"", 9 7 0 0 0 0 1 +"name": { "name": " "n "na "nam BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 8 "":"":"", 9 7 0 0 0 0 1 +"create_time": { "create_time": " "c "cr "cre BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 8 "":"":"" 8 9 0 0 0 0 1 +}, }, }, } }, }, }, BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 3 8 , 1 0 0 0 0 0 1 +"optionalProperties": { "optionalproperties": " "o "op "opt BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 8 "": 3 6 0 0 0 0 1 +"delete_time": { "delete_time": " "d "de "del BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 8 "":"":"" 8 9 0 0 0 0 1 +} } } } } } } BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 3 8 no 0 0 0 0 0 0 1 +} } } } } } } BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 3 8 no 0 0 0 0 0 0 1 +}, }, }, } }, }, }, BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 3 8 , 1 0 0 0 0 0 1 +"next_page_token": { "next_page_token": " "n "ne "nex BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 8 "":"":"" 8 10 0 0 0 0 1 +} } } } } } } BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 3 8 no 0 0 0 0 0 0 1 +} } } } } } } BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 3 8 no 0 0 0 0 0 0 1 +Carion Carion carion C Ca Car Cari BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 3 11 no 0 2 0 0 0 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 11 , 1 10 0 0 0 0 0 +[Page 7] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 11 [] 2 3 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 3 0 - 1 10 0 0 1 0 1 +JSON Schema json J JS JSO JSON BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 3 0 no 0 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 3 0 no 0 5 0 0 0 0 1 +The seventh the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 0 ,"", 4 10 0 0 0 0 1 +associative array. associative a as ass asso BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 0 . 1 9 0 0 0 0 1 +member values member m me mem memb BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 0 , 1 10 0 0 0 0 1 +names: names: names: n na nam name BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 0 : 1 1 0 0 0 0 1 +values = values v va val valu BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 1 :* 2 10 0 0 0 0 1 +Figure 9: figure F Fi Fig Figu BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 2 : 1 10 0 0 0 0 1 +Thus, this thus, T Th Thu Thus BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 2 ,, 2 10 0 0 0 0 1 +numbers: numbers: numbers: n nu num numb BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 2 : 1 1 0 0 0 0 1 +{ "values": { { { { { BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 3 2 "":"":"" 8 10 0 0 0 0 1 +Finally, the finally, F Fi Fin Fina BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 3 ,,"", 5 9 0 0 0 0 1 +being used being b be bei bein BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 3 . 1 10 0 0 0 0 1 +the "tag" the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 3 ""(""), 7 9 0 0 0 0 1 +from tag from f fr fro from BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 3 . 1 7 0 0 0 0 1 +; Note ; ; ; ; ; BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 3 4 ;:. 3 10 0 0 0 0 1 +discriminator = discriminator d di dis disc BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 4 :,:* 4 9 0 0 0 0 1 +Figure 10: figure F Fi Fig Figu BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 5 : 1 10 0 0 0 0 1 +To prevent to T To To To BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 6 "" 2 10 0 0 0 0 1 +discriminator, an discriminator, d di dis disc BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 6 , 1 8 0 0 0 0 1 +discriminator form discriminator d di dis disc BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 6 .: 2 9 0 0 0 0 1 +o Let o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 4 7 "". 3 10 0 0 0 0 1 +o Let o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 4 7 "". 3 10 0 0 0 0 1 +o Let o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 4 8 "". 3 10 0 0 0 0 1 +If the if I If If If BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 8 , 1 9 0 0 0 0 1 +schemas of schemas s sc sch sche BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 8 "". 3 9 0 0 0 0 1 +name equals name n na nam name BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 8 """",', 7 10 0 0 0 0 1 +must be must m mu mus must BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 8 , 1 9 0 0 0 0 1 +_T_'s value. _t_'s _ _T _T_ _T_' BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 8 '. 2 1 0 0 0 0 1 +Thus, this thus, T Th Thu Thus BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 10 ,,"" 4 10 0 0 0 0 1 +of "tag" of o of of of BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 10 """" 4 8 0 0 0 0 1 +"properties": "properties": "properties": " "p "pr "pro BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 10 "": 3 2 0 0 0 0 1 +Carion Carion carion C Ca Car Cari BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 4 11 no 0 2 0 0 0 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 11 , 1 10 0 0 0 0 0 +[Page 8] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 11 [] 2 3 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 4 0 - 1 10 0 0 1 0 1 +JSON Schema json J JS JSO JSON BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 4 0 no 0 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 4 0 no 0 5 0 0 0 0 1 +{ { { { { { { BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 0 no 0 0 0 0 0 0 1 +"tag": "event_type", "tag": " "t "ta "tag BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 0 "":"", 6 4 0 0 0 0 1 +"mapping": { "mapping": " "m "ma "map BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 0 "": 3 2 0 0 0 0 1 +"is_event_type_a_string_or_a_number?": { "is_event_type_a_string_or_a_number?": " "i "is "is_ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 0 "?": 4 7 0 0 0 0 1 +"properties": { "properties": " "p "pr "pro BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 0 "":"":"":"" 11 10 0 0 0 0 1 +} } } } } } } BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 0 no 0 0 0 0 0 0 1 +} } } } } } } BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 0 no 0 0 0 0 0 0 1 +} } } } } } } BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 0 no 0 0 0 0 0 0 1 +However, this however, H Ho How Howe BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 1 ,, 2 10 0 0 0 0 1 +common in common c co com comm BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 1 -: 2 6 0 0 0 0 1 +{ { { { { { { BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 2 no 0 0 0 0 0 0 1 +"tag": "event_type", "tag": " "t "ta "tag BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 2 "":"", 6 4 0 0 0 0 1 +"mapping": { "mapping": " "m "ma "map BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 2 "": 3 2 0 0 0 0 1 +"account_deleted": { "account_deleted": " "a "ac "acc BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 2 "": 3 4 0 0 0 0 1 +"properties": { "properties": " "p "pr "pro BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 2 "": 3 3 0 0 0 0 1 +"account_id": { "account_id": " "a "ac "acc BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 2 "":"":"" 8 7 0 0 0 0 1 +} } } } } } } BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 2 no 0 0 0 0 0 0 1 +}, }, }, } }, }, }, BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 4 2 , 1 0 0 0 0 0 1 +"account_payment_plan_changed": { "account_payment_plan_changed": " "a "ac "acc BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 2 "": 3 7 0 0 0 0 1 +"properties": { "properties": " "p "pr "pro BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 2 "": 3 3 0 0 0 0 1 +"account_id": { "account_id": " "a "ac "acc BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 2 "":"":"", 9 8 0 0 0 0 1 +"payment_plan": { "payment_plan": " "p "pa "pay BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 2 "":"":["",""] 13 10 0 0 0 0 1 +}, }, }, } }, }, }, BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 4 2 , 1 0 0 0 0 0 1 +"optionalProperties": { "optionalproperties": " "o "op "opt BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 2 "": 3 5 0 0 0 0 1 +"upgraded_by": { "upgraded_by": " "u "up "upg BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 2 "":"":"" 8 8 0 0 0 0 1 +} } } } } } } BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 2 no 0 0 0 0 0 0 1 +} } } } } } } BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 2 no 0 0 0 0 0 0 1 +} } } } } } } BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 2 no 0 0 0 0 0 0 1 +} } } } } } } BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 2 no 0 0 0 0 0 0 1 +3. Semantics 3. 3 3. 3. 3. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 4 6 . 1 10 0 0 0 0 1 +This section this T Th Thi This BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 7 no 0 9 0 0 0 0 1 +JSL schema, jsl J JS JSL JSL BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 4 7 , 1 10 0 0 0 0 1 +is invalid. is i is is is BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 7 . 1 1 0 0 0 0 1 +3.1. Strict 3.1. 3 3. 3.1 3.1. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 4 8 .. 2 10 0 0 0 0 1 +Users will users U Us Use User BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 8 no 0 10 0 0 0 0 1 +"unspcecified" members "unspcecified" " "u "un "uns BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 8 "".: 4 8 0 0 0 0 1 +{ "properties": { { { { { BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 9 "":"":"":"" 11 10 0 0 0 0 1 +Some users some S So Som Some BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 10 "":"","":"" 11 10 0 0 0 0 1 +above schema. above a ab abo abov BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 10 .. 2 9 0 0 0 0 1 +Carion Carion carion C Ca Car Cari BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 4 11 no 0 2 0 0 0 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 11 , 1 10 0 0 0 0 0 +[Page 9] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 11 [] 2 3 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 4 0 - 1 10 0 0 1 0 1 +JSON Schema json J JS JSO JSON BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 4 0 no 0 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 4 0 no 0 5 0 0 0 0 1 +contention by contention c co con cont BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 0 no 0 10 0 0 0 0 1 +"unspecified" members, "unspecified" " "u "un "uns BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 0 "",. 4 7 0 0 0 0 1 +Rejecting "unspecified" rejecting R Re Rej Reje BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 1 """ 3 8 0 0 0 0 1 +semantics". Whether semantics". s se sem sema BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 1 ". 2 8 0 0 0 0 1 +specified within specified s sp spe spec BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 1 ---. 4 10 0 0 0 0 1 +Implementations MAY implementations I Im Imp Impl BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 2 no 0 9 0 0 0 0 1 +instance semantics. instance i in ins inst BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 2 . 1 10 0 0 0 0 1 +strict instance strict s st str stri BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 2 . 1 5 0 0 0 0 1 +See Section see S Se See See BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 4 3 .. 2 10 0 0 0 0 1 +evaluation. evaluation. evaluation. e ev eva eval BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 3 . 1 1 0 0 0 0 1 +3.2. Errors 3.2. 3 3. 3.2 3.2. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 4 3 .. 2 10 0 0 0 0 1 +To facilitate to T To To To BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 3 , 1 10 0 0 0 0 1 +specifies a specifies s sp spe spec BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 3 . 1 10 0 0 0 0 1 +producing errors producing p pr pro prod BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 3 . 1 6 0 0 0 0 1 +The standard the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 4 . 1 10 0 0 0 0 1 +of this of o of of of BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 4 . 1 9 0 0 0 0 1 +objects with objects o ob obj obje BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 4 : 1 3 0 0 0 0 1 +o A o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 4 6 "", 3 9 0 0 0 0 1 +string encoding string s st str stri BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 6 . 1 10 0 0 0 0 1 +the part the t th the the BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 6 . 1 6 0 0 0 0 1 +o A o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 4 7 "", 3 10 0 0 0 0 1 +encoding a encoding e en enc enco BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 7 . 1 9 0 0 0 0 1 +of the of o of of of BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 7 . 1 6 0 0 0 0 1 +The values the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 8 """" 4 10 0 0 0 0 1 +the schema, the t th the the BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 8 ,.. 3 8 0 0 0 0 1 +3.3. Forms 3.3. 3 3. 3.3 3.3. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 4 9 .. 2 10 0 0 0 0 1 +This section this T Th Thi This BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 9 ,, 2 10 0 0 0 0 1 +rules dictating rules r ru rul rule BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 9 , 1 9 0 0 0 0 1 +standardized errors standardized s st sta stan BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 9 . 1 8 0 0 0 0 1 +The forms the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 11 no 0 10 0 0 0 0 1 +Section 2. section S Se Sec Sect BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 11 . 1 1 0 0 0 0 1 +Carion Carion carion C Ca Car Cari BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 5 11 no 0 2 0 0 0 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 11 , 1 10 0 0 0 0 0 +[Page 10] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 5 0 - 1 10 0 0 1 0 1 +JSON Schema json J JS JSO JSON BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 5 0 no 0 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 5 0 no 0 5 0 0 0 0 1 +3.3.1. Empty 3.3.1. 3 3. 3.3 3.3. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 0 ... 3 10 0 0 0 0 1 +The empty the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 0 no 0 9 0 0 0 0 1 +unknown, unpredictable, unknown, u un unk unkn BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 0 ,,. 3 10 0 0 0 0 1 +If a if I If If If BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 1 ,. 2 10 0 0 0 0 1 +schema of schema s sc sch sche BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 1 . 1 8 0 0 0 0 1 +3.3.2. Ref 3.3.2. 3 3. 3.3 3.3. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 2 ... 3 10 0 0 0 0 1 +The ref the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 2 no 0 10 0 0 0 0 1 +something in something s so som some BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 2 "". 3 9 0 0 0 0 1 +enables schemas enables e en ena enab BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 2 , 1 9 0 0 0 0 1 +recursive structures. recursive r re rec recu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 2 . 1 3 0 0 0 0 1 +If a if I If If If BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 3 ,: 2 10 0 0 0 0 1 +o Let o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 5 4 , 1 10 0 0 0 0 1 +itself if itself i it its itse BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 4 . 1 4 0 0 0 0 1 +o Let o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 5 5 "". 3 10 0 0 0 0 1 +Section 2, section S Se Sec Sect BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 5 ,. 2 3 0 0 0 0 1 +o Let o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 5 5 "". 3 10 0 0 0 0 1 +o Let o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 5 6 . 1 10 0 0 0 0 1 +By Section by B By By By BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 6 ,,. 3 6 0 0 0 0 1 +The schema the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 7 no 0 9 0 0 0 0 1 +instance. Otherwise, instance. i in ins inst BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 7 ., 2 10 0 0 0 0 1 +the union the t th the the BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 7 . 1 9 0 0 0 0 1 +For example, for F Fo For For BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 8 ,: 2 10 0 0 0 0 1 +{ { { { { { { BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 8 no 0 0 0 0 0 0 1 +"definitions": { "definitions": " "d "de "def BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 8 "":"":"":"", 12 10 0 0 0 0 1 +"ref": "a" "ref": " "r "re "ref BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 8 "":"" 5 2 0 0 0 0 1 +} } } } } } } BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 8 no 0 0 0 0 0 0 1 +Accepts 123 accepts A Ac Acc Acce BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 9 . 1 10 0 0 0 0 1 +evaluting false evaluting e ev eva eval BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 9 : 1 6 0 0 0 0 1 +[{ "instancePath": [{ [ [{ [{ [{ BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 5 10 ["":"","":"///"] 16 10 0 0 0 0 1 +Note that note N No Not Note BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 10 no 0 10 0 0 0 0 1 +root level. root r ro roo root BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 5 10 .,: 3 5 0 0 0 0 1 +Carion Carion carion C Ca Car Cari BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 5 11 no 0 2 0 0 0 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 11 , 1 10 0 0 0 0 0 +[Page 11] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 5 0 - 1 10 0 0 1 0 1 +JSON Schema json J JS JSO JSON BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 5 0 no 0 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 5 0 no 0 5 0 0 0 0 1 +{ { { { { { { BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 0 no 0 0 0 0 0 0 1 +"definitions": { "definitions": " "d "de "def BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 0 "":"":"":"", 12 9 0 0 0 0 1 +"elements": { "elements": " "e "el "ele BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 0 "": 3 3 0 0 0 0 1 +"definitions": { "definitions": " "d "de "def BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 0 "":"":"":"", 12 10 0 0 0 0 1 +"ref": "foo" "ref": " "r "re "ref BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 0 "":"" 5 2 0 0 0 0 1 +} } } } } } } BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 0 no 0 0 0 0 0 0 1 +} } } } } } } BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 0 no 0 0 0 0 0 0 1 +The instance the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 3 ,. 2 10 0 0 0 0 1 +errors to errors e er err erro BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 3 : 1 9 0 0 0 0 1 +[{ "instancePath": [{ [ [{ [{ [{ BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 5 4 ["":"","":"///"] 16 10 0 0 0 0 1 +Though non-root though T Th Tho Thou BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 5 - 1 10 0 0 0 0 1 +correct schemas, correct c co cor corr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 5 , 1 9 0 0 0 0 1 +references. references. references. r re ref refe BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 5 . 1 1 0 0 0 0 1 +3.3.3. Type 3.3.3. 3 3. 3.3 3.3. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 6 ... 3 10 0 0 0 0 1 +The type the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 7 no 0 10 0 0 0 0 1 +boolean, number, boolean, b bo boo bool BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 7 ,,,([]). 8 8 0 0 0 0 1 +If a if I If If If BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 8 , 1 9 0 0 0 0 1 +member with member m me mem memb BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 8 "". 3 10 0 0 0 0 1 +the instance the t th the the BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 8 ,': 3 8 0 0 0 0 1 +Carion Carion carion C Ca Car Cari BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 5 11 no 0 2 0 0 0 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 11 , 1 10 0 0 0 0 0 +[Page 12] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 5 0 - 1 10 0 0 1 0 1 +JSON Schema json J JS JSO JSON BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 5 0 no 0 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 5 0 no 0 5 0 0 0 0 1 ++-------------------+----------------------------------------------+ +-------------------+----------------------------------------------+ +-------------------+----------------------------------------------+ + +- +-- +--- BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 5 0 ----------------------------------------------------------------- 65 10 0 0 0 0 1 +| If | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 0 ...... 6 9 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 0 no 0 0 0 0 0 0 1 ++-------------------+----------------------------------------------+ +-------------------+----------------------------------------------+ +-------------------+----------------------------------------------+ + +- +-- +--- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 5 0 ----------------------------------------------------------------- 65 10 0 0 0 0 1 +| boolean | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 0 no 0 1 0 0 0 0 1 +| equal | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 0 """" 4 4 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 0 no 0 0 0 0 0 0 1 +| number | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 0 no 0 1 0 0 0 0 1 +| a | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 0 no 0 2 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 0 no 0 0 0 0 0 0 1 +| float32 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 0 no 0 1 0 0 0 0 1 +| a | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 0 no 0 2 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 0 no 0 0 0 0 0 0 1 +| float64 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 0 no 0 1 0 0 0 0 1 +| a | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 0 no 0 2 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 0 no 0 0 0 0 0 0 1 +| int8 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 0 no 0 1 0 0 0 0 1 +| See | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 0 no 0 2 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 0 no 0 0 0 0 0 0 1 +| uint8 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 0 no 0 1 0 0 0 0 1 +| See | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 0 no 0 2 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 0 no 0 0 0 0 0 0 1 +| int16 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 0 no 0 1 0 0 0 0 1 +| See | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 0 no 0 2 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 0 no 0 0 0 0 0 0 1 +| uint16 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 0 no 0 1 0 0 0 0 1 +| See | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 0 no 0 2 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 0 no 0 0 0 0 0 0 1 +| int32 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 0 no 0 1 0 0 0 0 1 +| See | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 0 no 0 2 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 0 no 0 0 0 0 0 0 1 +| uint32 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 0 no 0 1 0 0 0 0 1 +| See | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 0 no 0 2 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 0 no 0 0 0 0 0 0 1 +| string | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 0 no 0 1 0 0 0 0 1 +| a | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 0 no 0 2 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 0 no 0 0 0 0 0 0 1 +| timestamp | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 0 no 0 1 0 0 0 0 1 +| a | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 0 [] 2 7 0 0 0 0 1 ++-------------------+----------------------------------------------+ +-------------------+----------------------------------------------+ +-------------------+----------------------------------------------+ + +- +-- +--- BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 5 0 ----------------------------------------------------------------- 65 10 0 0 0 0 1 +Table 1: table T Ta Tab Tabl BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 8 : 1 10 0 0 0 0 1 +"float32" and "float32" " "f "fl "flo BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 8 """""" 6 9 0 0 0 0 1 +intent. "float32" intent. i in int inte BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 8 ."" 3 9 0 0 0 0 1 +754 single-precision 754 7 75 754 754 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 0 0 0 0 0 0 0 0 6 8 -,"" 4 10 0 0 0 0 1 +to be to t to to to BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 8 -."" 4 9 0 0 0 0 1 +indicates no indicates i in ind indi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 8 . 1 9 0 0 0 0 1 +schemas will schemas s sc sch sche BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 8 "","", 6 9 0 0 0 0 1 +and "number". and a an and and BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 8 "". 3 2 0 0 0 0 1 +If _T_ if I If If If BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 10 """", 5 9 0 0 0 0 1 +and only and a an and and BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 10 no 0 10 0 0 0 0 1 +part. Depending part. p pa par part BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 10 ., 2 8 0 0 0 0 1 +additionally fall additionally a ad add addi BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 10 : 1 6 0 0 0 0 1 +Carion Carion carion C Ca Car Cari BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 6 11 no 0 2 0 0 0 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 11 , 1 10 0 0 0 0 0 +[Page 13] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 6 0 - 1 10 0 0 1 0 1 +JSON Schema json J JS JSO JSON BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 6 0 no 0 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 6 0 no 0 5 0 0 0 0 1 ++--------+---------------------------+---------------------------+ +--------+---------------------------+---------------------------+ +--------+---------------------------+---------------------------+ + +- +-- +--- BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 6 0 -------------------------------------------------------------- 62 10 0 0 0 0 1 +| _T_ | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 0 no 0 0 0 0 0 0 1 +| Minimum | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 0 ()() 4 8 0 0 0 0 1 ++--------+---------------------------+---------------------------+ +--------+---------------------------+---------------------------+ +--------+---------------------------+---------------------------+ + +- +-- +--- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 6 0 -------------------------------------------------------------- 62 10 0 0 0 0 1 +| int8 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 0 no 0 1 0 0 0 0 1 +| -128 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 0 - 1 1 0 0 0 0 1 +| 127 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 0 no 0 0 0 0 0 0 1 +| uint8 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 0 no 0 1 0 0 0 0 1 +| 255 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 0 no 0 0 0 0 0 0 1 +| int16 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 0 -, 2 2 0 0 0 0 1 +| 32,767 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 0 , 1 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 0 no 0 0 0 0 0 0 1 +| uint16 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 0 no 0 1 0 0 0 0 1 +| 65,535 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 0 , 1 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 0 no 0 0 0 0 0 0 1 +| int32 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 0 -,,, 4 3 0 0 0 0 1 +| 2,147,483,647 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 0 ,,, 3 2 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 0 no 0 0 0 0 0 0 1 +| uint32 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 0 no 0 1 0 0 0 0 1 +| 4,294,967,295 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 0 ,,, 3 2 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 0 no 0 0 0 0 0 0 1 ++--------+---------------------------+---------------------------+ +--------+---------------------------+---------------------------+ +--------+---------------------------+---------------------------+ + +- +-- +--- BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 6 0 -------------------------------------------------------------- 62 10 0 0 0 0 1 +Table 2: table T Ta Tab Tabl BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 5 : 1 10 0 0 0 0 1 +Note that note N No Not Note BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 5 ,.,. 4 9 0 0 0 0 1 +part. 10.5 part. p pa par part BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 5 ..-. 4 10 0 0 0 0 1 +{"type": "int8"} {"type": { {" {"t {"ty BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 5 "":"",.,.,.. 12 9 0 0 0 0 1 +If the if I If If If BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 7 , 1 10 0 0 0 0 1 +case shall case c ca cas case BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 6 7 "", 3 10 0 0 0 0 1 +"schemaPath" pointing "schemapath" " "s "sc "sch BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 7 """". 5 9 0 0 0 0 1 +For example: for F Fo For For BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 8 : 1 10 0 0 0 0 1 +o The o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 6 8 "":"",. 7 10 0 0 0 0 1 +o The o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 6 8 "":"".,, 8 10 0 0 0 0 1 +rejects false. rejects r re rej reje BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 8 . 1 2 0 0 0 0 1 +o The o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 6 9 "":"",., 8 10 0 0 0 0 1 +false. false. false. f fa fal fals BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 9 . 1 1 0 0 0 0 1 +o The o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 6 9 "":"""--::." 12 10 0 0 0 0 1 +and "foo", and a an and and BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 9 "",. 4 4 0 0 0 0 1 +o The o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 6 10 "":"" 5 7 0 0 0 0 1 +"1985-04-12T23:20:50.52Z", but "1985-04-12t23:20:50.52z", " "1 "19 "198 BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 1 0 0 0 6 10 "--::.","". 11 10 0 0 0 0 1 +In all in I In In In BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 6 10 , 1 10 0 0 0 0 1 +produce is: produce p pr pro prod BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 10 : 1 1 0 0 0 0 1 +[{ "instancePath": [{ [ [{ [{ [{ BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 6 11 ["":"","":"/"] 14 10 0 0 0 0 1 +Carion Carion carion C Ca Car Cari BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 6 11 no 0 2 0 0 0 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 11 , 1 10 0 0 0 0 0 +[Page 14] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 6 0 - 1 10 0 0 1 0 1 +JSON Schema json J JS JSO JSON BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 7 0 no 0 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 7 0 no 0 5 0 0 0 0 1 +3.3.4. Enum 3.3.4. 3 3. 3.3 3.3. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 0 ... 3 10 0 0 0 0 1 +The enum the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 0 no 0 10 0 0 0 0 1 +of a of o of of of BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 0 ,. 2 7 0 0 0 0 1 +If a if I If If If BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 1 , 1 9 0 0 0 0 1 +schema member schema s sc sch sche BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 7 1 "". 3 10 0 0 0 0 1 +only if only o on onl only BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 1 . 1 7 0 0 0 0 1 +If the if I If If If BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 2 , 1 10 0 0 0 0 1 +case shall case c ca cas case BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 7 2 "", 3 10 0 0 0 0 1 +"schemaPath" pointing "schemapath" " "s "sc "sch BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 7 2 """". 5 9 0 0 0 0 1 +For example, for F Fo For For BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 3 ,: 2 10 0 0 0 0 1 +{ "enum": { { { { { BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 4 "":["","",""] 13 10 0 0 0 0 1 +Accepts "PENDING", accepts A Ac Acc Acce BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 4 "","","", 9 10 0 0 0 0 1 +and "UNKNOWN" and a an and and BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 4 "": 3 5 0 0 0 0 1 +[{ "instancePath": [{ [ [{ [{ [{ BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 7 5 ["":"","":"/"] 14 10 0 0 0 0 1 +3.3.5. Elements 3.3.5. 3 3. 3.3 3.3. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 5 ... 3 10 0 0 0 0 1 +The elements the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 6 . 1 10 0 0 0 0 1 +A further a A A A A BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 1 0 0 0 0 0 7 6 -. 2 8 0 0 0 0 1 +If a if I If If If BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 6 , 1 10 0 0 0 0 1 +schema member schema s sc sch sche BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 7 6 "". 3 9 0 0 0 0 1 +and only and a an and and BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 6 : 1 6 0 0 0 0 1 +o The o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 7 8 ., 2 10 0 0 0 0 1 +case shall case c ca cas case BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 7 8 "", 3 9 0 0 0 0 1 +"schemaPath" pointing "schemapath" " "s "sc "sch BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 7 8 "" 2 8 0 0 0 0 1 +"elements". "elements". "elements". " "e "el "ele BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 7 8 "". 3 1 0 0 0 0 1 +o If o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 7 9 , 1 10 0 0 0 0 1 +must be must m mu mus must BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 9 ., 2 9 0 0 0 0 1 +case are case c ca cas case BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 7 9 no 0 9 0 0 0 0 1 +against elements against a ag aga agai BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 9 . 1 5 0 0 0 0 1 +For example, for F Fo For For BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 10 ,: 2 10 0 0 0 0 1 +{ { { { { { { BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 11 no 0 1 0 0 0 0 1 +"elements": { "elements": " "e "el "ele BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 7 11 "": 3 8 0 0 0 0 1 +"type": "number" "type": " "t "ty "typ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 7 11 "":"" 5 10 0 0 0 0 1 +} } } } } } } BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 11 no 0 1 0 0 0 0 1 +} } } } } } } BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 11 no 0 1 0 0 0 0 1 +Carion Carion carion C Ca Car Cari BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 7 11 no 0 2 0 0 0 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 11 , 1 10 0 0 0 0 0 +[Page 15] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 7 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 7 0 - 1 10 0 0 1 0 1 +JSON Schema json J JS JSO JSON BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 7 0 no 0 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 7 0 no 0 5 0 0 0 0 1 +Then the then T Th The Then BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 0 [][,,]. 7 10 0 0 0 0 1 +evaluate false evaluate e ev eva eval BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 0 ,: 2 9 0 0 0 0 1 +[{ "instancePath": [{ [ [{ [{ [{ BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 7 1 ["":"","":"/"] 14 10 0 0 0 0 1 +Finally, if finally, F Fi Fin Fina BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 1 ,: 2 10 0 0 0 0 1 +[1, 2, [1, [ [1 [1, [1, BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 1 [,,"",,""] 10 10 0 0 0 0 1 +The standard the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 2 : 1 10 0 0 0 0 1 +[ [ [ [ [ [ [ BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 2 [ 1 0 0 0 0 0 1 +{ "instancePath": { { { { { BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 2 "":"/","":"//", 15 10 0 0 0 0 1 +{ "instancePath": { { { { { BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 2 "":"/","":"//" 14 9 0 0 0 0 1 +] ] ] ] ] ] ] BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 2 ] 1 0 0 0 0 0 1 +3.3.6. Properties 3.3.6. 3 3. 3.3 3.3. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 3 ... 3 10 0 0 0 0 1 +The properties the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 3 no 0 10 0 0 0 0 1 +"struct". "struct". "struct". " "s "st "str BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 7 3 "". 3 1 0 0 0 0 1 +If a if I If If If BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 4 , 1 10 0 0 0 0 1 +if and if i if if if BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 4 : 1 6 0 0 0 0 1 +o The o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 7 4 . 1 10 0 0 0 0 1 +Otherwise, the otherwise, O Ot Oth Othe BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 5 , 1 8 0 0 0 0 1 +"instancePath" pointing "instancepath" " "i "in "ins BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 7 5 "","" 5 8 0 0 0 0 1 +pointing to pointing p po poi poin BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 5 "" 2 10 0 0 0 0 1 +schema member schema s sc sch sche BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 7 5 ;',"" 5 10 0 0 0 0 1 +shall point shall s sh sha shal BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 5 no 0 7 0 0 0 0 1 +"optionalProperties". "optionalProperties". "optionalproperties". " "o "op "opt BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 7 5 "". 3 3 0 0 0 0 1 +o If o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 7 7 no 0 9 0 0 0 0 1 +"properties", then "properties", " "p "pr "pro BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 7 7 "", 3 10 0 0 0 0 1 +"properties". _P_, "properties". " "p "pr "pro BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 7 7 "".,,. 6 9 0 0 0 0 1 +member name member m me mem memb BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 7 , 1 10 0 0 0 0 1 +exist. exist. exist. e ex exi exis BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 7 . 1 1 0 0 0 0 1 +Otherwise, the otherwise, O Ot Oth Othe BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 9 , 1 9 0 0 0 0 1 +"instancePath" pointing "instancepath" " "i "in "ins BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 7 9 "","" 5 10 0 0 0 0 1 +pointing to pointing p po poi poin BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 9 no 0 9 0 0 0 0 1 +described. described. described. d de des desc BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 9 . 1 1 0 0 0 0 1 +o If o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 7 10 , 1 10 0 0 0 0 1 +schema member schema s sc sch sche BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 7 10 ""(), 5 9 0 0 0 0 1 +value of value v va val valu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 10 ""( 3 9 0 0 0 0 1 +exists). exists). exists). e ex exi exis BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 7 10 ). 2 1 0 0 0 0 1 +Carion Carion carion C Ca Car Cari BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 8 11 no 0 2 0 0 0 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 11 , 1 10 0 0 0 0 0 +[Page 16] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 8 0 - 1 10 0 0 1 0 1 +JSON Schema json J JS JSO JSON BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 0 no 0 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 8 0 no 0 5 0 0 0 0 1 +For every for F Fo For For BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 0 , 1 10 0 0 0 0 1 +name as name n na nam name BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 0 '., 3 10 0 0 0 0 1 +both _P_ both b bo bot both BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 0 ." 2 10 0 0 0 0 1 +exemption" is exemption" e ex exe exem BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 0 "(..), 6 9 0 0 0 0 1 +_I_. Otherwise: _i_. _ _I _I_ _I_. BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 0 .: 2 2 0 0 0 0 1 +* If * * * * * BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 2 * 1 10 0 0 0 0 1 +strict instance strict s st str stri BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 2 ,. 2 8 0 0 0 0 1 +The standard the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 3 "" 2 10 0 0 0 0 1 +_I_, and _i_, _ _I _I_ _I_, BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 3 ,"". 4 7 0 0 0 0 1 +* If * * * * * BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 3 *, 2 9 0 0 0 0 1 +member _S_. member m me mem memb BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 3 .', 3 10 0 0 0 0 1 +rejected. rejected. rejected. r re rej reje BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 3 . 1 1 0 0 0 0 1 +The standard the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 4 no 0 10 0 0 0 0 1 +from evaluating from f fr fro from BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 4 '. 2 6 0 0 0 0 1 +An instance an A An An An BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 8 5 no 0 9 0 0 0 0 1 +third bullet third t th thi thir BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 5 ., 2 10 0 0 0 0 1 +union of union u un uni unio BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 5 . 1 3 0 0 0 0 1 +For example, for F Fo For For BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 6 ,: 2 10 0 0 0 0 1 +{ { { { { { { BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 6 no 0 0 0 0 0 0 1 +"properties": { "properties": " "p "pr "pro BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 6 "": 3 5 0 0 0 0 1 +"a": { "a": " "a "a" "a": BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 6 "":"":"", 9 10 0 0 0 0 1 +"b": { "b": " "b "b" "b": BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 6 "":"":"" 8 9 0 0 0 0 1 +}, }, }, } }, }, }, BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 6 , 1 1 0 0 0 0 1 +"optionalProperties": { "optionalproperties": " "o "op "opt BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 6 "": 3 8 0 0 0 0 1 +"c": { "c": " "c "c" "c": BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 6 "":"":"", 9 10 0 0 0 0 1 +"d": { "d": " "d "d" "d": BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 6 "":"":"" 8 9 0 0 0 0 1 +} } } } } } } BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 6 no 0 0 0 0 0 0 1 +} } } } } } } BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 6 no 0 0 0 0 0 0 1 +Then each then T Th The Then BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 8 (): 3 10 0 0 0 0 1 +{ "a": { { { { { BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 8 "":"","":"" 11 5 0 0 0 0 1 +{ "a": { { { { { BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 8 "":"","":"","":"" 17 7 0 0 0 0 1 +{ "a": { { { { { BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 8 "":"","":"","":"","":"" 23 10 0 0 0 0 1 +{ "a": { { { { { BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 8 "":"","":"","":"" 17 7 0 0 0 0 1 +If we if I If If If BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 10 , 1 10 0 0 0 0 1 +standard errors standard s st sta stan BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 10 : 1 3 0 0 0 0 1 +[{ "instancePath": [{ [ [{ [{ [{ BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 11 ["":"","":"/"] 14 10 0 0 0 0 1 +Carion Carion carion C Ca Car Cari BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 8 11 no 0 2 0 0 0 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 11 , 1 10 0 0 0 0 0 +[Page 17] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 8 0 - 1 10 0 0 1 0 1 +JSON Schema json J JS JSO JSON BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 0 no 0 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 8 0 no 0 5 0 0 0 0 1 +If instead if I If If If BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 0 : 1 10 0 0 0 0 1 +{ "b": { { { { { BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 "":,"":,"": 11 10 0 0 0 0 1 +The standard the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 1 ,,: 3 10 0 0 0 0 1 +[ [ [ [ [ [ [ BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 1 [ 1 0 0 0 0 0 1 +{ "instancePath": { { { { { BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 1 "":"", 6 4 0 0 0 0 1 +"schemaPath": "/properties/a" "schemapath": " "s "sc "sch BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 1 "":"//", 8 7 0 0 0 0 1 +{ "instancePath": { { { { { BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 1 "":"/", 7 5 0 0 0 0 1 +"schemaPath": "/properties/b/type" "schemapath": " "s "sc "sch BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 1 "":"///", 9 8 0 0 0 0 1 +{ "instancePath": { { { { { BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 1 "":"/", 7 5 0 0 0 0 1 +"schemaPath": "/optionalProperties/c/type" "schemapath": " "s "sc "sch BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 1 "":"///", 9 10 0 0 0 0 1 +{ "instancePath": { { { { { BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 1 "":"/", 7 5 0 0 0 0 1 +"schemaPath": "" "schemapath": " "s "sc "sch BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 1 "":"" 5 4 0 0 0 0 1 +] ] ] ] ] ] ] BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 1 ] 1 0 0 0 0 0 1 +If we if I If If If BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 3 , 1 10 0 0 0 0 1 +semantics, the semantics, s se sem sema BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 3 , 1 10 0 0 0 0 1 +be present. be b be be be BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 3 . 1 1 0 0 0 0 1 +3.3.7. Values 3.3.7. 3 3. 3.3 3.3. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 4 ... 3 10 0 0 0 0 1 +The elements the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 5 no 0 10 0 0 0 0 1 +objects being objects o ob obj obje BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 5 . 1 6 0 0 0 0 1 +If a if I If If If BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 5 , 1 10 0 0 0 0 1 +schema member schema s sc sch sche BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 5 "". 3 9 0 0 0 0 1 +and only and a an and and BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 5 : 1 6 0 0 0 0 1 +o The o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 8 7 ., 2 10 0 0 0 0 1 +case shall case c ca cas case BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 8 7 "", 3 9 0 0 0 0 1 +"schemaPath" pointing "schemapath" " "s "sc "sch BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 7 """". 5 9 0 0 0 0 1 +o If o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 8 8 , 1 9 0 0 0 0 1 +instance must instance i in ins inst BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 8 ., 2 10 0 0 0 0 1 +for this for f fo for for BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 8 no 0 9 0 0 0 0 1 +evaluating _S_ evaluating e ev eva eval BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 8 . 1 8 0 0 0 0 1 +For example, for F Fo For For BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 10 ,: 2 10 0 0 0 0 1 +{ { { { { { { BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 11 no 0 1 0 0 0 0 1 +"values": { "values": " "v "va "val BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 11 "": 3 7 0 0 0 0 1 +"type": "number" "type": " "t "ty "typ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 11 "":"" 5 10 0 0 0 0 1 +} } } } } } } BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 11 no 0 1 0 0 0 0 1 +} } } } } } } BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 11 no 0 1 0 0 0 0 1 +Carion Carion carion C Ca Car Cari BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 8 11 no 0 2 0 0 0 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 11 , 1 10 0 0 0 0 0 +[Page 18] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 8 0 - 1 10 0 0 1 0 1 +JSON Schema json J JS JSO JSON BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 0 no 0 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 9 0 no 0 5 0 0 0 0 1 +Then the then T Th The Then BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 0 "":,"":. 8 10 0 0 0 0 1 +we evaluate we w we we we BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 0 ,: 2 9 0 0 0 0 1 +[{ "instancePath": [{ [ [{ [{ [{ BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 1 ["":"","":"/"] 14 10 0 0 0 0 1 +Finally, if finally, F Fi Fin Fina BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 1 ,: 2 10 0 0 0 0 1 +{ "a": { { { { { BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 2 "":,"":,"":"","":,"":"" 23 10 0 0 0 0 1 +The standard the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 2 : 1 10 0 0 0 0 1 +[ [ [ [ [ [ [ BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 3 [ 1 0 0 0 0 0 1 +{ "instancePath": { { { { { BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 3 "":"/","":"//", 15 10 0 0 0 0 1 +{ "instancePath": { { { { { BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 3 "":"/","":"//" 14 9 0 0 0 0 1 +] ] ] ] ] ] ] BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 3 ] 1 0 0 0 0 0 1 +3.3.8. Discriminator 3.3.8. 3 3. 3.3 3.3. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 4 ... 3 10 0 0 0 0 1 +The discriminator the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 4 no 0 10 0 0 0 0 1 +in a in i in in in BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 9 4 - 1 9 0 0 0 0 1 +languages. When languages. l la lan lang BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 4 ."", 4 8 0 0 0 0 1 +validates: validates: validates: v va val vali BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 4 : 1 1 0 0 0 0 1 +o That o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 9 5 , 1 10 0 0 0 0 1 +o That o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 9 6 "", 3 10 0 0 0 0 1 +o That o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 9 6 ""' 3 10 0 0 0 0 1 +values, and values, v va val valu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 6 , 1 1 0 0 0 0 1 +o That o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 9 7 , 1 10 0 0 0 0 1 +schema is schema s sc sch sche BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 7 "". 3 9 0 0 0 0 1 +The behavior the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 7 no 0 10 0 0 0 0 1 +keywords. Readers keywords. k ke key keyw BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 7 . 1 9 0 0 0 0 1 +Appendix A appendix A Ap App Appe BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 7 . 1 9 0 0 0 0 1 +this section this t th thi this BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 7 ', 2 9 0 0 0 0 1 +as well as a as as as BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 7 . 1 3 0 0 0 0 1 +If a if I If If If BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 9 "",: 4 10 0 0 0 0 1 +o Let o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 9 10 "". 3 10 0 0 0 0 1 +o Let o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 9 10 "". 3 10 0 0 0 0 1 +o Let o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 9 11 "". 3 10 0 0 0 0 1 +Carion Carion carion C Ca Car Cari BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 9 11 no 0 2 0 0 0 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 11 , 1 10 0 0 0 0 0 +[Page 19] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 9 0 - 1 10 0 0 1 0 1 +JSON Schema json J JS JSO JSON BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 0 no 0 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 9 0 no 0 5 0 0 0 0 1 +o Let o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 9 0 '. 2 10 0 0 0 0 1 +may, for may, m ma may may, BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 0 ,,. 3 6 0 0 0 0 1 +o Let o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 9 1 '. 2 10 0 0 0 0 1 +may, for may, m ma may may, BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 1 ,,. 3 6 0 0 0 0 1 +The instance the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 1 : 1 10 0 0 0 0 1 +o The o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 9 2 . 1 10 0 0 0 0 1 +Otherwise, the otherwise, O Ot Oth Othe BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 2 , 1 9 0 0 0 0 1 +"instancePath" pointing "instancepath" " "i "in "ins BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 2 "","" 5 10 0 0 0 0 1 +pointing to pointing p po poi poin BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 2 . 1 2 0 0 0 0 1 +o If o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 9 3 ,. 2 10 0 0 0 0 1 +Otherwise, the otherwise, O Ot Oth Othe BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 3 , 1 9 0 0 0 0 1 +"instancePath" pointing "instancepath" " "i "in "ins BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 3 "","" 5 10 0 0 0 0 1 +pointing to pointing p po poi poin BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 3 . 1 2 0 0 0 0 1 +o If o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 9 4 ,' 2 10 0 0 0 0 1 +be a be b be be be BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 4 . 1 1 0 0 0 0 1 +Otherwise, the otherwise, O Ot Oth Othe BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 5 , 1 9 0 0 0 0 1 +"instancePath" pointing "instancepath" " "i "in "ins BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 5 "","" 5 10 0 0 0 0 1 +_T_. _T_. _t_. _ _T _T_ _T_. BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 5 . 1 0 0 0 0 0 1 +o If o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 9 6 no 0 10 0 0 0 0 1 +value, then value, v va val valu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 6 ,. 2 4 0 0 0 0 1 +Otherwise, the otherwise, O Ot Oth Othe BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 6 , 1 9 0 0 0 0 1 +"instancePath" pointing "instancepath" " "i "in "ins BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 6 "","" 5 10 0 0 0 0 1 +_M_. _M_. _m_. _ _M _M_ _M_. BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 6 . 1 0 0 0 0 0 1 +o If o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 9 7 ,,, 3 10 0 0 0 0 1 +the instance the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 7 '.,' 4 9 0 0 0 0 1 +must have must m mu mus must BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 7 ." 2 8 0 0 0 0 1 +exemption" afforded exemption" e ex exe exem BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 7 ".. 3 8 0 0 0 0 1 +whether the whether w wh whe whet BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 7 '. 2 6 0 0 0 0 1 +Otherwise, the otherwise, O Ot Oth Othe BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 9 , 1 9 0 0 0 0 1 +errors from errors e er err erro BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 9 ', 2 10 0 0 0 0 1 +"discriminator tag "discriminator " "d "di "dis BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 9 "". 3 6 0 0 0 0 1 +Each of each E Ea Eac Each BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 10 . 1 10 0 0 0 0 1 +For the for F Fo For For BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 10 , 1 10 0 0 0 0 1 +will apply. will w wi wil will BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 9 10 . 1 1 0 0 0 0 1 +Carion Carion carion C Ca Car Cari BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 9 11 no 0 2 0 0 0 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 11 , 1 10 0 0 0 0 0 +[Page 20] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 9 0 - 1 10 0 0 1 0 1 +JSON Schema json J JS JSO JSON BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 0 no 0 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 9 0 no 0 5 0 0 0 0 1 +To illustrate to T To To To BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 0 ,: 2 10 0 0 0 0 1 +{ { { { { { { BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 1 no 0 0 0 0 0 0 1 +"discriminator": { "discriminator": " "d "di "dis BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 1 "": 3 7 0 0 0 0 1 +"tag": "version", "tag": " "t "ta "tag BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 1 "":"", 6 6 0 0 0 0 1 +"mapping": { "mapping": " "m "ma "map BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 1 "": 3 5 0 0 0 0 1 +"v1": { "v1": " "v "v1 "v1" BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 1 "": 3 3 0 0 0 0 1 +"properties": { "properties": " "p "pr "pro BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 1 "": 3 6 0 0 0 0 1 +"a": { "a": " "a "a" "a": BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 1 "":"":"" 8 10 0 0 0 0 1 +} } } } } } } BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 1 no 0 0 0 0 0 0 1 +}, }, }, } }, }, }, BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 1 , 1 1 0 0 0 0 1 +"v2": { "v2": " "v "v2 "v2" BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 1 "": 3 3 0 0 0 0 1 +"properties": { "properties": " "p "pr "pro BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 1 "": 3 6 0 0 0 0 1 +"a": { "a": " "a "a" "a": BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 1 "":"":"" 8 10 0 0 0 0 1 +} } } } } } } BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 1 no 0 0 0 0 0 0 1 +} } } } } } } BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 1 no 0 0 0 0 0 0 1 +} } } } } } } BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 1 no 0 0 0 0 0 0 1 +} } } } } } } BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 1 no 0 0 0 0 0 0 1 +} } } } } } } BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 1 no 0 0 0 0 0 0 1 +Then if then T Th The Then BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 4 : 1 10 0 0 0 0 1 +"example" "example" "example" " "e "ex "exa BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 5 "" 2 10 0 0 0 0 1 +Against this against A Ag Aga Agai BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 5 ,: 2 10 0 0 0 0 1 +[{ "instancePath": [{ [ [{ [{ [{ BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 5 ["":"","":"/"] 14 10 0 0 0 0 1 +(This is (this ( (T (Th (Thi BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 6 (.) 3 10 0 0 0 0 1 +If we if I If If If BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 7 : 1 10 0 0 0 0 1 +{} {} {} { {} {} {} BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 7 no 0 10 0 0 0 0 1 +Then the then T Th The Then BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 7 : 1 10 0 0 0 0 1 +[{ "instancePath": [{ [ [{ [{ [{ BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 8 ["":"","":"//"] 15 10 0 0 0 0 1 +(This is (this ( (T (Th (Thi BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 8 (.) 3 10 0 0 0 0 1 +If we if I If If If BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 9 : 1 10 0 0 0 0 1 +{ "version": { { { { { BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 9 "": 3 10 0 0 0 0 1 +Then the then T Th The Then BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 10 : 1 10 0 0 0 0 1 +[{ "instancePath": [{ [ [{ [{ [{ BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 10 ["":"/","":"//"] 16 10 0 0 0 0 1 +Carion Carion carion C Ca Car Cari BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 10 11 no 0 2 0 0 0 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 11 , 1 10 0 0 0 0 0 +[Page 21] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 10 0 - 1 10 0 0 1 0 1 +JSON Schema json J JS JSO JSON BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 0 no 0 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 10 0 no 0 5 0 0 0 0 1 +(This is (this ( (T (Th (Thi BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 0 (,.) 4 10 0 0 0 0 1 +If we if I If If If BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 1 : 1 10 0 0 0 0 1 +{ "version": { { { { { BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 1 "":"" 5 10 0 0 0 0 1 +Then the then T Th The Then BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 1 : 1 10 0 0 0 0 1 +[ [ [ [ [ [ [ BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 2 [ 1 0 0 0 0 0 1 +{ "instancePath": { { { { { BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 2 "":"/", 7 7 0 0 0 0 1 +"schemaPath": "/discriminator/mapping" "schemapath": " "s "sc "sch BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 2 "":"//" 7 10 0 0 0 0 1 +] ] ] ] ] ] ] BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 2 ] 1 0 0 0 0 0 1 +(This is (this ( (T (Th (Thi BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 3 (, 2 10 0 0 0 0 1 +not existing.) not n no not not BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 3 .) 2 2 0 0 0 0 1 +If the if I If If If BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 4 : 1 10 0 0 0 0 1 +{ "version": { { { { { BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 4 "":"","": 9 10 0 0 0 0 1 +Then the then T Th The Then BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 4 : 1 10 0 0 0 0 1 +[ [ [ [ [ [ [ BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 5 [ 1 0 0 0 0 0 1 +{ { { { { { { BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 5 no 0 0 0 0 0 0 1 +"instancePath": "/a", "instancepath": " "i "in "ins BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 5 "":"/", 7 3 0 0 0 0 1 +"schemaPath": "/discriminator/mapping/v2/properties/a/type" "schemapath": " "s "sc "sch BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 5 "":"//////" 11 10 0 0 0 0 1 +} } } } } } } BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 5 no 0 0 0 0 0 0 1 +] ] ] ] ] ] ] BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 5 ] 1 0 0 0 0 0 1 +(This is (this ( (T (Th (Thi BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 6 (, 2 10 0 0 0 0 1 +satisfying _S_'s satisfying s sa sat sati BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 6 '.) 3 3 0 0 0 0 1 +Finally, if finally, F Fi Fin Fina BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 7 ,: 2 10 0 0 0 0 1 +{ "version": { { { { { BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 7 "":"","":"" 11 10 0 0 0 0 1 +Then the then T Th The Then BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 8 . 1 9 0 0 0 0 1 +returned. This returned. r re ret retu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 8 . 1 9 0 0 0 0 1 +strict instance strict s st str stri BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 8 ,"" 3 10 0 0 0 0 1 +ensure that ensure e en ens ensu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 8 "" 2 9 0 0 0 0 1 +evaluating the evaluating e ev eva eval BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 8 '. 2 6 0 0 0 0 1 +4. IANA 4. 4 4. 4. 4. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 11 . 1 10 0 0 0 0 1 +No IANA no N No No No BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 11 . 1 10 0 0 0 0 1 +Carion Carion carion C Ca Car Cari BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 10 11 no 0 2 0 0 0 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 11 , 1 10 0 0 0 0 0 +[Page 22] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 10 0 - 1 10 0 0 1 0 1 +JSON Schema json J JS JSO JSON BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 0 no 0 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 10 0 no 0 5 0 0 0 0 1 +5. Security 5. 5 5. 5. 5. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 0 . 1 10 0 0 0 0 1 +Implementations of implementations I Im Imp Impl BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 0 no 0 9 0 0 0 0 1 +manipulating JSON manipulating m ma man mani BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 0 ., 2 10 0 0 0 0 1 +[RFC8259] are [rfc8259] [ [R [RF [RFC BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 0 []. 3 5 0 0 0 0 1 +Implementations which implementations I Im Imp Impl BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 1 - 1 10 0 0 0 0 1 +mechanisms to mechanisms m me mec mech BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 1 ,, 2 9 0 0 0 0 1 +cause a cause c ca cau caus BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 1 . 1 9 0 0 0 0 1 +such mechanisms, such s su suc such BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 1 ,-- 3 9 0 0 0 0 1 +service attacks. service s se ser serv BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 1 . 1 2 0 0 0 0 1 +6. Normative 6. 6 6. 6. 6. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 2 . 1 10 0 0 0 0 1 +[RFC2119] Bradner, [rfc2119] [ [R [RF [RFC BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 1 0 0 0 10 2 [],.," 6 10 0 0 0 0 1 +Requirement Levels", requirement R Re Req Requ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 2 ",,, 4 6 0 0 0 0 1 +DOI 10.17487/RFC2119, doi D DO DOI DOI BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 1 0 0 0 0 0 0 10 2 ./,, 4 5 0 0 0 0 1 +<https://www.rfc-editor.org/info/rfc2119>. <https://www.rfc-editor.org/info/rfc2119>. <https://www.rfc-editor.org/info/rfc2119>. < <h <ht <htt BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 1 0 0 1 10 2 ://.-.//. 9 6 0 0 0 0 1 +[RFC3339] Klyne, [rfc3339] [ [R [RF [RFC BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 4 [],..,": 8 10 0 0 0 0 1 +Timestamps", RFC timestamps", T Ti Tim Time BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 10 4 ",,./,, 7 8 0 0 0 0 1 +<https://www.rfc-editor.org/info/rfc3339>. <https://www.rfc-editor.org/info/rfc3339>. <https://www.rfc-editor.org/info/rfc3339>. < <h <ht <htt BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 1 10 4 ://.-.//. 9 6 0 0 0 0 1 +[RFC6901] Bryan, [rfc6901] [ [R [RF [RFC BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 5 [],.,.,,.,.,., 14 10 0 0 0 0 1 +"JavaScript Object "javascript " "J "Ja "Jav BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 5 "()",, 6 9 0 0 0 0 1 +DOI 10.17487/RFC6901, doi D DO DOI DOI BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 1 0 0 0 0 0 0 10 5 ./,, 4 5 0 0 0 0 1 +<https://www.rfc-editor.org/info/rfc6901>. <https://www.rfc-editor.org/info/rfc6901>. <https://www.rfc-editor.org/info/rfc6901>. < <h <ht <htt BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 1 10 5 ://.-.//. 9 7 0 0 0 0 1 +[RFC8174] Leiba, [rfc8174] [ [R [RF [RFC BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 6 [],.," 6 10 0 0 0 0 1 +2119 Key 2119 2 21 211 2119 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 0 0 0 0 1 0 0 0 10 6 ",,,./, 7 8 0 0 0 0 1 +May 2017, may M Ma May May BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 10 6 ,://.-.//. 10 8 0 0 0 0 1 +[RFC8259] Bray, [rfc8259] [ [R [RF [RFC BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 8 [],.,.,"() 10 10 0 0 0 0 1 +Interchange Format", interchange I In Int Inte BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 8 ",,, 4 5 0 0 0 0 1 +DOI 10.17487/RFC8259, doi D DO DOI DOI BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 1 0 0 0 0 0 0 10 8 ./,, 4 5 0 0 0 0 1 +<https://www.rfc-editor.org/info/rfc8259>. <https://www.rfc-editor.org/info/rfc8259>. <https://www.rfc-editor.org/info/rfc8259>. < <h <ht <htt BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 1 10 8 ://.-.//. 9 6 0 0 0 0 1 +[RFC8610] Birkholz, [rfc8610] [ [R [RF [RFC BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 9 [],.,,.,.," 11 10 0 0 0 0 1 +Definition Language definition D De Def Defi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 9 (): 3 8 0 0 0 0 1 +Express Concise express E Ex Exp Expr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 9 () 2 8 0 0 0 0 1 +JSON Data json J JS JSO JSON BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 11 9 ",,./, 6 8 0 0 0 0 1 +June 2019, june J Ju Jun June BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 0 0 0 1 0 0 11 9 ,://.-.//. 10 8 0 0 0 0 1 +Appendix A. appendix A Ap App Appe BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 11 . 1 10 0 0 0 0 1 +This appendix this T Th Thi This BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 11 . 1 10 0 0 0 0 1 +Carion Carion carion C Ca Car Cari BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 11 no 0 2 0 0 0 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 11 , 1 10 0 0 0 0 0 +[Page 23] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 0 - 1 10 0 0 1 0 1 +JSON Schema json J JS JSO JSON BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 11 0 no 0 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 11 0 no 0 5 0 0 0 0 1 +To aid to T To To To BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 0 , 1 9 0 0 0 0 1 +JSL works jsl J JS JSL JSL BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 11 0 no 0 10 0 0 0 0 1 +reject the reject r re rej reje BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 0 . 1 3 0 0 0 0 1 +The JSL the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 1 : 1 10 0 0 0 0 1 +root = root r ro roo root BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 11 2 no 0 10 0 0 0 0 1 +The JSL the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 2 : 1 10 0 0 0 0 1 +{ { { { { { { BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 11 2 no 0 0 0 0 0 0 1 +"definitions": { "definitions": " "d "de "def BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 2 "": 3 4 0 0 0 0 1 +"a": { "a": " "a "a" "a": BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 2 "":"":"":"", 12 10 0 0 0 0 1 +"b": { "b": " "b "b" "b": BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 2 "":"":"" 8 7 0 0 0 0 1 +}, }, }, } }, }, }, BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 11 2 , 1 0 0 0 0 0 1 +"elements": { "elements": " "e "el "ele BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 2 "": 3 3 0 0 0 0 1 +"ref": "a" "ref": " "r "re "ref BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 2 "":"" 5 3 0 0 0 0 1 +} } } } } } } BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 11 2 no 0 0 0 0 0 0 1 +} } } } } } } BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 11 2 no 0 0 0 0 0 0 1 +Corresponds to corresponds C Co Cor Corr BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 5 : 1 10 0 0 0 0 1 +root = root r ro roo root BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 11 5 [*] 3 10 0 0 0 0 1 +a = a a a a a BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 1 0 0 0 0 0 11 5 [*] 3 9 0 0 0 0 1 +b = b b b b b BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 11 5 no 0 10 0 0 0 0 1 +The JSL the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 6 : 1 10 0 0 0 0 1 +{ "enum": { { { { { BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 11 6 "":["","",""] 13 10 0 0 0 0 1 +Accepts the accepts A Ac Acc Acce BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 6 : 1 10 0 0 0 0 1 +root = root r ro roo root BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 11 7 ""/""/"" 8 10 0 0 0 0 1 +The JSL the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 7 "":"": 6 10 0 0 0 0 1 +root = root r ro roo root BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 11 8 no 0 10 0 0 0 0 1 +The JSL the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 8 "":"": 6 10 0 0 0 0 1 +root = root r ro roo root BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 11 9 no 0 10 0 0 0 0 1 +The JSL the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 9 "":"": 6 10 0 0 0 0 1 +root = root r ro roo root BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 11 10 no 0 10 0 0 0 0 1 +The JSL the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 10 "":"": 6 10 0 0 0 0 1 +Carion Carion carion C Ca Car Cari BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 11 no 0 2 0 0 0 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 11 , 1 10 0 0 0 0 0 +[Page 24] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 0 - 1 10 0 0 1 0 1 +JSON Schema json J JS JSO JSON BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 11 0 no 0 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 11 0 no 0 5 0 0 0 0 1 +root = root r ro roo root BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 11 0 no 0 10 0 0 0 0 1 +The JSL the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 0 : 1 10 0 0 0 0 1 +{ "elements": { { { { { BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 11 1 "":"":"" 8 10 0 0 0 0 1 +Corresponds to corresponds C Co Cor Corr BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 2 : 1 10 0 0 0 0 1 +root = root r ro roo root BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 11 2 [*] 3 10 0 0 0 0 1 +The JSL the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 2 : 1 10 0 0 0 0 1 +{ { { { { { { BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 11 3 no 0 0 0 0 0 0 1 +"properties": { "properties": " "p "pr "pro BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 3 "": 3 5 0 0 0 0 1 +"a": { "a": " "a "a" "a": BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 3 "":"":"", 9 9 0 0 0 0 1 +"b": { "b": " "b "b" "b": BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 3 "":"":"" 8 8 0 0 0 0 1 +}, }, }, } }, }, }, BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 11 3 , 1 1 0 0 0 0 1 +"optionalProperties": { "optionalproperties": " "o "op "opt BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 3 "": 3 8 0 0 0 0 1 +"c": { "c": " "c "c" "c": BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 3 "":"":"", 9 9 0 0 0 0 1 +"d": { "d": " "d "d" "d": BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 3 "":"":"" 8 10 0 0 0 0 1 +} } } } } } } BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 11 3 no 0 0 0 0 0 0 1 +} } } } } } } BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 11 3 no 0 0 0 0 0 0 1 +Corresponds to corresponds C Co Cor Corr BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 6 : 1 10 0 0 0 0 1 +root = root r ro roo root BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 11 7 :,:,?:,?: 9 10 0 0 0 0 1 +The JSL the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 8 : 1 10 0 0 0 0 1 +{ "values": { { { { { BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 11 8 "":"":"" 8 10 0 0 0 0 1 +Corresponds to corresponds C Co Cor Corr BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 9 : 1 10 0 0 0 0 1 +root = root r ro roo root BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 11 10 * 1 10 0 0 0 0 1 +Finally, the finally, F Fi Fin Fina BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 10 ,: 2 10 0 0 0 0 1 +Carion Carion carion C Ca Car Cari BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 11 no 0 2 0 0 0 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 11 , 1 10 0 0 0 0 0 +[Page 25] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 0 - 1 10 0 0 1 0 1 +JSON Schema json J JS JSO JSON BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 11 0 no 0 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 11 0 no 0 5 0 0 0 0 1 +{ { { { { { { BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 11 0 no 0 0 0 0 0 0 1 +"discriminator": { "discriminator": " "d "di "dis BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 0 "": 3 7 0 0 0 0 1 +"tag": "a", "tag": " "t "ta "tag BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 0 "":"", 6 4 0 0 0 0 1 +"mapping": { "mapping": " "m "ma "map BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 0 "": 3 5 0 0 0 0 1 +"foo": { "foo": " "f "fo "foo BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 0 "": 3 3 0 0 0 0 1 +"properties": { "properties": " "p "pr "pro BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 0 "": 3 6 0 0 0 0 1 +"b": { "b": " "b "b" "b": BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 0 "":"":"" 8 10 0 0 0 0 1 +} } } } } } } BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 11 0 no 0 0 0 0 0 0 1 +}, }, }, } }, }, }, BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 11 0 , 1 1 0 0 0 0 1 +"bar": { "bar": " "b "ba "bar BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 0 "": 3 3 0 0 0 0 1 +"properties": { "properties": " "p "pr "pro BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 0 "": 3 6 0 0 0 0 1 +"b": { "b": " "b "b" "b": BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 0 "":"":"" 8 10 0 0 0 0 1 +} } } } } } } BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 11 0 no 0 0 0 0 0 0 1 +} } } } } } } BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 11 0 no 0 0 0 0 0 0 1 +} } } } } } } BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 11 0 no 0 0 0 0 0 0 1 +} } } } } } } BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 11 0 no 0 0 0 0 0 0 1 +} } } } } } } BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 11 0 no 0 0 0 0 0 0 1 +Corresponds to corresponds C Co Cor Corr BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 4 : 1 10 0 0 0 0 1 +root = root r ro roo root BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 11 4 :"",:/:"",: 11 10 0 0 0 0 1 +Acknowledgments Acknowledgments acknowledgments A Ac Ack Ackn BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 5 no 0 10 0 0 0 0 1 +Thanks to thanks T Th Tha Than BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 5 ,,,, 4 10 0 0 0 0 1 +Desrosiers, Daniel desrosiers, D De Des Desr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 5 ,,,, 4 8 0 0 0 0 1 +Poberezkin, Brad poberezkin, P Po Pob Pobe BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 5 ,,,,, 5 10 0 0 0 0 1 +Denis Laxalde, denis D De Den Deni BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 0 0 0 0 0 0 11 5 ,, 2 10 0 0 0 0 1 +initial drafts initial i in ini init BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 5 ,. 2 9 0 0 0 0 1 +Thanks to thanks T Th Tha Than BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 9 ,, 2 10 0 0 0 0 1 +on JSON on o on on on BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 9 . 1 3 0 0 0 0 1 +Author's Address author's A Au Aut Auth BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 10 ' 1 10 0 0 0 0 1 +Ulysse Carion ulysse U Ul Uly Ulys BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 10 no 0 10 0 0 0 0 1 +Email: ulyssecarion@gmail.com email: E Em Ema Emai BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 11 :. 2 10 0 0 0 0 1 +Carion Carion carion C Ca Car Cari BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 11 no 0 2 0 0 0 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 11 , 1 10 0 0 0 0 0 +[Page 26] [page [ [P [Pa [Pag BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 11 [] 2 4 0 0 0 0 0 + diff --git a/grobid-trainer/resources/dataset/segmentation/sdo/ietf/corpus/raw/XP015134658.training.segmentation b/grobid-trainer/resources/dataset/segmentation/sdo/ietf/corpus/raw/XP015134658.training.segmentation new file mode 100644 index 0000000000..7125ac5ae6 --- /dev/null +++ b/grobid-trainer/resources/dataset/segmentation/sdo/ietf/corpus/raw/XP015134658.training.segmentation @@ -0,0 +1,337 @@ +server date server s se ser serv BLOCKSTART PAGESTART NEWFONT HIGHERFONT 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 0 ; 1 10 0 0 0 0 0 +Network Work network N Ne Net Netw BLOCKSTART PAGEIN NEWFONT HIGHERFONT 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 0 0 no 0 10 0 0 0 0 1 +N. Nainar n. N N. N. N. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 . 1 3 0 0 0 0 1 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 - 1 4 0 0 0 0 1 +C. Pignataro c. C C. C. C. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 . 1 3 0 0 0 0 1 +Updates: 8287 updates: U Up Upd Upda BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 :() 3 8 0 0 0 0 1 +Cisco Systems, cisco C Ci Cis Cisc BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 0 0 0 0 0 0 0 0 ,. 2 6 0 0 0 0 1 +Intended status: intended I In Int Inte BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 : 1 10 0 0 0 0 1 +F. Iqbal f. F F. F. F. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 . 1 2 0 0 0 0 1 +Expires: February expires: E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 :, 2 7 0 0 0 0 1 +Individual Individual individual I In Ind Indi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 no 0 3 0 0 0 0 1 +A. Vainshtein a. A A. A. A. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 . 1 4 0 0 0 0 1 +ECI Telecom eci E EC ECI ECI BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 no 0 3 0 0 0 0 1 +August 8, august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 0 0 , 1 4 0 0 0 0 1 +RFC8287 Sub-TLV rfc8287 R RF RFC RFC8 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 2 - 1 8 0 0 0 0 1 +draft-ietf-mpls-rfc8287-len-clarification-03 draft-ietf-mpls-rfc8287-len-clarification-03 draft-ietf-mpls-rfc8287-len-clarification-03 d dr dra draf BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 2 ------ 6 10 0 0 0 0 1 +Abstract Abstract abstract A Ab Abs Abst BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 2 no 0 10 0 0 0 0 1 +RFC8287 defines rfc8287 R RF RFC RFC8 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 2 no 0 9 0 0 0 0 1 +Segment Routing segment S Se Seg Segm BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 2 -- 2 9 0 0 0 0 1 +(SIDs) with (sids) ( (S (SI (SID BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 2 (). 3 9 0 0 0 0 1 +Sub-TLVs. While sub-tlvs. S Su Sub Sub- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 2 -. 2 9 0 0 0 0 1 +handle those handle h ha han hand BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 2 -, 2 9 0 0 0 0 1 +length of length l le len leng BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 2 - 1 9 0 0 0 0 1 +the Length the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 2 - 1 10 0 0 0 0 1 +issues. issues. issues. i is iss issu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 2 . 1 1 0 0 0 0 1 +This document this T Th Thi This BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 5 no 0 10 0 0 0 0 1 +Segment ID segment S Se Seg Segm BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 5 -. 2 6 0 0 0 0 1 +Status of status S St Sta Stat BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 6 no 0 10 0 0 0 0 1 +This Internet-Draft this T Th Thi This BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 6 - 1 10 0 0 0 0 1 +provisions of provisions p pr pro prov BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 6 . 1 5 0 0 0 0 1 +Internet-Drafts are internet-drafts I In Int Inte BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 7 - 1 9 0 0 0 0 1 +Task Force task T Ta Tas Task BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 7 (). 3 9 0 0 0 0 1 +working documents working w wo wor work BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 7 -.- 3 10 0 0 0 0 1 +Drafts is drafts D Dr Dra Draf BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 7 ://..///. 9 8 0 0 0 0 1 +Internet-Drafts are internet-drafts I In Int Inte BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 1 9 - 1 10 0 0 0 0 1 +and may and a an and and BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 9 ,, 2 9 0 0 0 0 1 +time. It time. t ti tim time BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 9 .- 2 8 0 0 0 0 1 +material or material m ma mat mate BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 9 "." 3 8 0 0 0 0 1 +This Internet-Draft this T Th Thi This BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 11 -,. 3 10 0 0 0 0 1 +Nainar, et nainar, N Na Nai Nain BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 1 11 ,. 2 6 0 0 1 1 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 11 , 1 10 0 0 0 0 0 +[Page 1] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 11 [] 2 3 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 1 0 - 1 10 0 0 1 1 1 +RFC8287 Sub-TLV rfc8287 R RF RFC RFC8 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 0 - 1 10 0 0 1 1 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 1 0 no 0 3 0 0 0 0 1 +Copyright Notice copyright C Co Cop Copy BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 0 no 0 10 0 0 0 0 1 +Copyright (c) copyright C Co Cop Copy BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 0 () 2 10 0 0 0 0 1 +document authors. document d do doc docu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 0 .. 2 6 0 0 0 0 1 +This document this T Th Thi This BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 0 ' 1 8 0 0 0 0 1 +Provisions Relating provisions P Pr Pro Prov BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 0 no 0 5 0 0 0 0 1 +(https://trustee.ietf.org/license-info) in (https://trustee.ietf.org/license-info) ( (h (ht (htt BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 1 1 0 (://../-) 9 9 0 0 0 0 1 +publication of publication p pu pub publ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 0 . 1 8 0 0 0 0 1 +carefully, as carefully, c ca car care BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 0 , 1 10 0 0 0 0 1 +to this to t to to to BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 0 . 1 9 0 0 0 0 1 +include Simplified include i in inc incl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 0 . 1 9 0 0 0 0 1 +the Trust the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 0 no 0 9 0 0 0 0 1 +described in described d de des desc BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 0 . 1 5 0 0 0 0 1 +Table of table T Ta Tab Tabl BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 2 no 0 10 0 0 0 0 1 +1. Introduction 1. 1 1. 1. 1. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 2 ......................... 25 9 0 0 0 0 1 +2 2 2 2 2 2 2 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 1 2 no 0 0 0 0 0 0 1 +2. Terminology 2. 2 2. 2. 2. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 2 .......................... 26 10 0 0 0 0 1 +3 3 3 3 3 3 3 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 1 2 no 0 0 0 0 0 0 1 +3. Requirements 3. 3 3. 3. 3. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 2 ..................... 21 10 0 0 0 0 1 +3 3 3 3 3 3 3 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 1 2 no 0 0 0 0 0 0 1 +4. Length 4. 4 4. 4. 4. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 2 .-..... 7 9 0 0 0 0 1 +3 3 3 3 3 3 3 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 1 2 no 0 0 0 0 0 0 1 +4.1. IPv4 4.1. 4 4. 4.1 4.1. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 2 ..--........... 15 9 0 0 0 0 1 +3 3 3 3 3 3 3 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 1 2 no 0 0 0 0 0 0 1 +4.2. IPv6 4.2. 4 4. 4.2 4.2. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 2 ..--........... 15 9 0 0 0 0 1 +3 3 3 3 3 3 3 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 1 2 no 0 0 0 0 0 0 1 +4.3. IGP-Adjacency 4.3. 4 4. 4.3 4.3. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 2 ..--............ 16 9 0 0 0 0 1 +4 4 4 4 4 4 4 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 1 2 no 0 0 0 0 0 0 1 +5. IANA 5. 5 5. 5. 5. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 2 ...................... 22 10 0 0 0 0 1 +5 5 5 5 5 5 5 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 1 2 no 0 0 0 0 0 0 1 +6. Security 6. 6 6. 6. 6. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 2 .................... 20 10 0 0 0 0 1 +5 5 5 5 5 5 5 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 1 2 no 0 0 0 0 0 0 1 +7. Contributors 7. 7 7. 7. 7. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 2 ......................... 25 9 0 0 0 0 1 +5 5 5 5 5 5 5 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 1 2 no 0 0 0 0 0 0 1 +8. Acknowledgement 8. 8 8. 8. 8. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 2 ........................ 24 10 0 0 0 0 1 +5 5 5 5 5 5 5 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 1 2 no 0 0 0 0 0 0 1 +9. Normative 9. 9 9. 9. 9. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 2 ..................... 21 9 0 0 0 0 1 +5 5 5 5 5 5 5 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 1 2 no 0 0 0 0 0 0 1 +Authors' Addresses authors' A Au Aut Auth BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 1 2 '....................... 24 10 0 0 0 0 1 +6 6 6 6 6 6 6 BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 1 2 no 0 0 0 0 0 0 1 +1. Introduction 1. 1 1. 1. 1. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 3 9 . 1 10 0 0 0 0 1 +[RFC8287] defines [rfc8287] [ [R [RF [RFC BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 3 9 [] 2 9 0 0 0 0 1 +Segment Routing segment S Se Seg Segm BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 9 -- 2 9 0 0 0 0 1 +(SIDs) with (sids) ( (S (SI (SID BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 9 ().[] 5 9 0 0 0 0 1 +Stack Sub-TLVs. stack S St Sta Stac BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 3 9 -. 2 9 0 0 0 0 1 +to handle to t to to to BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 9 -, 2 9 0 0 0 0 1 +length of length l le len leng BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 9 - 1 9 0 0 0 0 1 +the Length the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 9 - 1 10 0 0 0 0 1 +issues. issues. issues. i is iss issu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 9 . 1 1 0 0 0 0 1 +This document this T Th Thi This BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 11 [] 2 10 0 0 0 0 1 +Segment ID segment S Se Seg Segm BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 11 -[]. 4 6 0 0 0 0 1 +Nainar, et nainar, N Na Nai Nain BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 3 11 ,. 2 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 11 , 1 10 0 0 0 0 0 +[Page 2] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 11 [] 2 3 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 3 0 - 1 10 0 0 1 0 1 +RFC8287 Sub-TLV rfc8287 R RF RFC RFC8 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 3 0 - 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 3 0 no 0 3 0 0 0 0 1 +2. Terminology 2. 2 2. 2. 2. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 3 0 . 1 10 0 0 0 0 1 +This document this T Th Thi This BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 0 [],[], 6 10 0 0 0 0 1 +[RFC8287] and [rfc8287] [ [R [RF [RFC BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 3 0 [] 2 9 0 0 0 0 1 +same. same. same. s sa sam same BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 0 . 1 0 0 0 0 0 1 +3. Requirements 3. 3 3. 3. 3. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 4 1 . 1 10 0 0 0 0 1 +The key the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 1 "","","","","", 15 9 0 0 0 0 1 +"SHOULD", "SHOULD "should", " "S "SH "SHO BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 4 1 "","","","","" 14 10 0 0 0 0 1 +document are document d do doc docu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 1 [][] 4 9 0 0 0 0 1 +when, and when, w wh whe when BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 1 ,,,. 4 9 0 0 0 0 1 +4. Length 4. 4 4. 4. 4. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 4 2 .- 2 10 0 0 0 0 1 +Section 5 section S Se Sec Sect BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 2 []- 3 10 0 0 0 0 1 +will be will w wi wil will BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 4 2 []. 3 9 0 0 0 0 1 +length of length l le len leng BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 2 - 1 9 0 0 0 0 1 +section. section. section. s se sec sect BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 2 . 1 1 0 0 0 0 1 +The TLVs the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 3 .,.. 4 9 0 0 0 0 1 +[RFC8287] are [rfc8287] [ [R [RF [RFC BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 4 3 [] 2 10 0 0 0 0 1 +section 4.1, section s se sec sect BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 3 .,... 5 8 0 0 0 0 1 +representation contain representation r re rep repr BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 3 . 1 7 0 0 0 0 1 +4.1. IPv4 4.1. 4 4. 4.1 4.1. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 4 5 ..-- 4 10 0 0 0 0 1 +The Sub-TLV the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 5 -- 2 10 0 0 0 0 1 +shown in shown s sh sho show BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 5 : 1 4 0 0 0 0 1 +0 0 0 0 0 0 0 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 4 5 no 0 0 0 0 0 0 1 +1 1 1 1 1 1 1 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 4 5 no 0 0 0 0 0 0 1 +2 2 2 2 2 2 2 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 4 5 no 0 0 0 0 0 0 1 +3 3 3 3 3 3 3 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 4 5 no 0 0 0 0 0 0 1 +0 1 0 0 0 0 0 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 4 5 no 0 9 0 0 0 0 1 ++-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ + +- +-+ +-+- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 4 5 -------------------------------- 32 10 0 0 0 0 1 +|Type = |type | |T |Ty |Typ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 5 (-) 3 5 0 0 0 0 1 +Length = length L Le Len Leng BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 5 no 0 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 5 no 0 0 0 0 0 0 1 ++-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ + +- +-+ +-+- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 4 5 -------------------------------- 32 10 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 5 no 0 0 0 0 0 0 1 +IPv4 prefix ipv4 I IP IPv IPv4 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 4 5 no 0 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 5 no 0 0 0 0 0 0 1 ++-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ + +- +-+ +-+- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 4 5 -------------------------------- 32 10 0 0 0 0 1 +|Prefix Length |prefix | |P |Pr |Pre BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 5 no 0 2 0 0 0 0 1 +Protocol Protocol protocol P Pr Pro Prot BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 5 no 0 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 5 no 0 0 0 0 0 0 1 +Reserved Reserved reserved R Re Res Rese BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 5 no 0 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 5 no 0 0 0 0 0 0 1 ++-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ + +- +-+ +-+- BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 4 5 -------------------------------- 32 10 0 0 0 0 1 +4.2. IPv6 4.2. 4 4. 4.2 4.2. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 10 ..-- 4 10 0 0 0 0 1 +The Sub-TLV the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 11 -- 2 10 0 0 0 0 1 +as shown as a as as as BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 11 : 1 5 0 0 0 0 1 +Nainar, et nainar, N Na Nai Nain BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 5 11 ,. 2 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 11 , 1 10 0 0 0 0 0 +[Page 3] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 11 [] 2 3 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 5 0 - 1 10 0 0 1 0 1 +RFC8287 Sub-TLV rfc8287 R RF RFC RFC8 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 0 - 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 5 0 no 0 3 0 0 0 0 1 +0 0 0 0 0 0 0 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 6 0 no 0 0 0 0 0 0 1 +1 1 1 1 1 1 1 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 6 0 no 0 0 0 0 0 0 1 +2 2 2 2 2 2 2 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 6 0 no 0 0 0 0 0 0 1 +3 3 3 3 3 3 3 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 6 0 no 0 0 0 0 0 0 1 +0 1 0 0 0 0 0 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 6 0 no 0 9 0 0 0 0 1 ++-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ + +- +-+ +-+- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 6 0 -------------------------------- 32 10 0 0 0 0 1 +|Type = |type | |T |Ty |Typ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 0 (-) 3 5 0 0 0 0 1 +Length = length L Le Len Leng BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 0 no 0 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 0 no 0 0 0 0 0 0 1 ++-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ + +- +-+ +-+- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 6 0 -------------------------------- 32 10 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 0 no 0 0 0 0 0 0 1 +IPv6 Prefix ipv6 I IP IPv IPv6 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 0 no 0 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 0 no 0 0 0 0 0 0 1 ++-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ + +- +-+ +-+- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 6 0 -------------------------------- 32 10 0 0 0 0 1 +|Prefix Length |prefix | |P |Pr |Pre BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 0 no 0 2 0 0 0 0 1 +Protocol Protocol protocol P Pr Pro Prot BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 0 no 0 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 0 no 0 0 0 0 0 0 1 +Reserved Reserved reserved R Re Res Rese BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 0 no 0 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 0 no 0 0 0 0 0 0 1 ++-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ + +- +-+ +-+- BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 6 0 -------------------------------- 32 10 0 0 0 0 1 +4.3. IGP-Adjacency 4.3. 4 4. 4.3 4.3. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 4 ..-- 4 10 0 0 0 0 1 +The Sub-TLV the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 4 -- 2 9 0 0 0 0 1 +the Adjacency the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 4 . 1 9 0 0 0 0 1 +of Adjacency of o of of of BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 4 ,- 2 10 0 0 0 0 1 +by including by b by by by BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 4 . 1 9 0 0 0 0 1 +length for length l le len leng BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 4 .. 2 8 0 0 0 0 1 ++-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ + +- +-+ +-+- BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 7 5 ------------------------------- 31 10 0 0 0 0 1 +| Protocol | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 5 no 0 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 5 no 0 0 0 0 0 0 1 +Length for length L Le Len Leng BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 5 . 1 3 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 5 no 0 0 0 0 0 0 1 ++ + + + + + + BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 5 no 0 0 0 0 0 0 1 ++-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ + +- +-+ +-+- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 7 5 ------------------------ 24 7 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 5 no 0 0 0 0 0 0 1 +| Parallel | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 5 no 0 2 0 0 0 0 1 +IPv4 IPv4 ipv4 I IP IPv IPv4 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 5 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 5 no 0 0 0 0 0 0 1 +IPv6 IPv6 ipv6 I IP IPv IPv6 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 5 no 0 0 0 0 0 0 1 +| Unnumbered| | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 5 no 0 2 0 0 0 0 1 ++-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ + +- +-+ +-+- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 7 5 ------------------------------- 31 10 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 5 no 0 0 0 0 0 0 1 +OSPF OSPF ospf O OS OSP OSPF BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 7 5 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 5 no 0 0 0 0 0 0 1 +20 20 20 2 20 20 20 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 0 0 0 0 0 0 0 0 7 5 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 5 no 0 0 0 0 0 0 1 +20 20 20 2 20 20 20 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 0 0 0 0 0 0 0 0 7 5 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 5 no 0 0 0 0 0 0 1 +44 44 44 4 44 44 44 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 0 0 0 0 0 0 0 0 7 5 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 5 no 0 0 0 0 0 0 1 +20 20 20 2 20 20 20 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 0 0 0 0 0 0 0 0 7 5 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 5 no 0 0 0 0 0 0 1 ++-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ + +- +-+ +-+- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 7 5 ------------------------------- 31 10 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 5 no 0 0 0 0 0 0 1 +ISIS ISIS isis I IS ISI ISIS BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 1 0 0 0 0 0 0 7 5 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 5 no 0 0 0 0 0 0 1 +24 24 24 2 24 24 24 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 0 0 0 0 0 0 0 0 7 5 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 5 no 0 0 0 0 0 0 1 +24 24 24 2 24 24 24 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 0 0 0 0 0 0 0 0 7 5 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 5 no 0 0 0 0 0 0 1 +48 48 48 4 48 48 48 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 0 0 0 0 0 0 0 0 7 5 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 5 no 0 0 0 0 0 0 1 +24 24 24 2 24 24 24 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 0 0 0 0 0 0 0 0 7 5 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 5 no 0 0 0 0 0 0 1 ++-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ + +- +-+ +-+- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 7 5 ------------------------------- 31 10 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 5 no 0 0 0 0 0 0 1 +Any Any any A An Any Any BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 5 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 5 no 0 0 0 0 0 0 1 +20 20 20 2 20 20 20 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 0 0 0 0 0 0 0 0 7 5 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 5 no 0 0 0 0 0 0 1 +20 20 20 2 20 20 20 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 0 0 0 0 0 0 0 0 7 5 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 5 no 0 0 0 0 0 0 1 +44 44 44 4 44 44 44 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 0 0 0 0 0 0 0 0 7 5 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 5 no 0 0 0 0 0 0 1 +20 20 20 2 20 20 20 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 0 0 0 0 0 0 0 0 7 5 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 5 no 0 0 0 0 0 0 1 ++-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ + +- +-+ +-+- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 7 5 ------------------------------- 31 10 0 0 0 0 1 +Table 1. table T Ta Tab Tabl BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 5 .- 2 7 0 0 0 0 1 +For example, for F Fo For For BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 11 ,. 2 10 0 0 0 0 1 +Protocol is protocol P Pr Pro Prot BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 11 ,-: 3 7 0 0 0 0 1 +Nainar, et nainar, N Na Nai Nain BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 8 11 ,. 2 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 11 , 1 10 0 0 0 0 0 +[Page 4] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 11 [] 2 3 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 8 0 - 1 10 0 0 1 0 1 +RFC8287 Sub-TLV rfc8287 R RF RFC RFC8 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 0 - 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 8 0 no 0 3 0 0 0 0 1 +0 0 0 0 0 0 0 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 8 0 no 0 0 0 0 0 0 1 +1 1 1 1 1 1 1 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 8 0 no 0 0 0 0 0 0 1 +2 2 2 2 2 2 2 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 8 0 no 0 0 0 0 0 0 1 +3 3 3 3 3 3 3 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 8 0 no 0 0 0 0 0 0 1 +0 1 0 0 0 0 0 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 8 0 no 0 9 0 0 0 0 1 ++-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ + +- +-+ +-+- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 0 -------------------------------- 32 10 0 0 0 0 1 +|Type = |type | |T |Ty |Typ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 0 (-) 3 5 0 0 0 0 1 +Length = length L Le Len Leng BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 0 no 0 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 0 0 0 0 0 1 ++-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ + +- +-+ +-+- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 0 -------------------------------- 32 10 0 0 0 0 1 +| Adj. | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 . 1 5 0 0 0 0 1 +Reserved Reserved reserved R Re Res Rese BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 0 no 0 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 0 0 0 0 0 1 ++-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ + +- +-+ +-+- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 0 -------------------------------- 32 10 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 0 0 0 0 0 1 +Local Interface local L Lo Loc Loca BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 0 () 2 4 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 0 0 0 0 0 1 ++-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ + +- +-+ +-+- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 0 -------------------------------- 32 10 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 0 0 0 0 0 1 +Remote Interface remote R Re Rem Remo BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 0 () 2 4 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 0 0 0 0 0 1 ++-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ + +- +-+ +-+- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 0 -------------------------------- 32 10 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 0 0 0 0 0 1 +Advertising Node advertising A Ad Adv Adve BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 0 () 2 5 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 0 0 0 0 0 1 ++-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ + +- +-+ +-+- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 0 -------------------------------- 32 10 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 0 0 0 0 0 1 +Receiving Node receiving R Re Rec Rece BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 8 0 () 2 5 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 0 0 0 0 0 1 ++-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ + +- +-+ +-+- BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 0 -------------------------------- 32 10 0 0 0 0 1 +5. IANA 5. 5 5. 5. 5. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 7 . 1 10 0 0 0 0 1 +This document this T Th Thi This BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 7 . 1 10 0 0 0 0 1 +6. Security 6. 6 6. 6. 6. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 8 . 1 10 0 0 0 0 1 +This document this T Th Thi This BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 8 [] 2 10 0 0 0 0 1 +security considerations. security s se sec secu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 10 8 . 1 3 0 0 0 0 1 +7. Contributors 7. 7 7. 7. 7. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 8 . 1 10 0 0 0 0 1 +The below the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 8 : 1 10 0 0 0 0 1 +Zafar Ali, zafar Z Za Zaf Zafa BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 10 8 ,,. 3 10 0 0 0 0 1 +8. Acknowledgement 8. 8 8. 8. 8. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 8 . 1 10 0 0 0 0 1 +The authors the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 8 no 0 9 0 0 0 0 1 +Doppalapudi for doppalapudi D Do Dop Dopp BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 10 8 . 1 10 0 0 0 0 1 +9. Normative 9. 9 9. 9. 9. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 9 . 1 10 0 0 0 0 1 +[RFC2119] Bradner, [rfc2119] [ [R [RF [RFC BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 1 0 0 0 10 9 [],.," 6 10 0 0 0 0 1 +Requirement Levels", requirement R Re Req Requ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 9 ",,, 4 6 0 0 0 0 1 +DOI 10.17487/RFC2119, doi D DO DOI DOI BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 1 0 0 0 0 0 0 10 9 ./,, 4 5 0 0 0 0 1 +<https://www.rfc-editor.org/info/rfc2119>. <https://www.rfc-editor.org/info/rfc2119>. <https://www.rfc-editor.org/info/rfc2119>. < <h <ht <htt BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 1 0 0 1 10 9 ://.-.//. 9 6 0 0 0 0 1 +[RFC8029] Kompella, [rfc8029] [ [R [RF [RFC BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 10 [],.,,.,,.,.,,., 16 10 0 0 0 0 1 +Aldrin, S., aldrin, A Al Ald Aldr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 10 10 ,.,.," 6 8 0 0 0 0 1 +Switched (MPLS) switched S Sw Swi Swit BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 10 ()-",, 6 7 0 0 0 0 1 +DOI 10.17487/RFC8029, doi D DO DOI DOI BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 1 0 0 0 0 0 0 10 10 ./,, 4 5 0 0 0 0 1 +<https://www.rfc-editor.org/info/rfc8029>. <https://www.rfc-editor.org/info/rfc8029>. <https://www.rfc-editor.org/info/rfc8029>. < <h <ht <htt BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 1 10 10 ://.-.//. 9 6 0 0 0 0 1 +Nainar, et nainar, N Na Nai Nain BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 10 11 ,. 2 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 11 , 1 10 0 0 0 0 0 +[Page 5] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 11 [] 2 3 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 10 0 - 1 10 0 0 1 0 1 +RFC8287 Sub-TLV rfc8287 R RF RFC RFC8 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 0 - 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 10 0 no 0 3 0 0 0 0 1 +[RFC8174] Leiba, [rfc8174] [ [R [RF [RFC BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 0 [],.," 6 10 0 0 0 0 1 +2119 Key 2119 2 21 211 2119 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 0 0 0 0 1 0 0 0 10 0 ",,,./, 7 8 0 0 0 0 1 +May 2017, may M Ma May May BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 10 0 ,://.-.//. 10 8 0 0 0 0 1 +[RFC8287] Kumar, [rfc8287] [ [R [RF [RFC BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 2 [],.,.,,.,.,,.,, 16 10 0 0 0 0 1 +N., Kini, n., N N. N., N., BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 11 2 .,,.,.,"() 10 8 0 0 0 0 1 +Ping/Traceroute for ping/traceroute P Pi Pin Ping BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 2 /()- 4 8 0 0 0 0 1 +IGP-Adjacency Segment igp-adjacency I IG IGP IGP- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 2 -() 3 8 0 0 0 0 1 +Planes", RFC planes", P Pl Pla Plan BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 2 ",,./,, 7 8 0 0 0 0 1 +<https://www.rfc-editor.org/info/rfc8287>. <https://www.rfc-editor.org/info/rfc8287>. <https://www.rfc-editor.org/info/rfc8287>. < <h <ht <htt BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 1 11 2 ://.-.//. 9 6 0 0 0 0 1 +[RFC8402] Filsfils, [rfc8402] [ [R [RF [RFC BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 5 [],.,.,,.,.,,., 15 10 0 0 0 0 1 +Decraene, B., decraene, D De Dec Decr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 5 ,.,,.,.," 9 8 0 0 0 0 1 +Routing Architecture", routing R Ro Rou Rout BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 11 5 ",,./, 6 9 0 0 0 0 1 +July 2018, july J Ju Jul July BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 11 5 ,://.-.//. 10 8 0 0 0 0 1 +Authors' Addresses authors' A Au Aut Auth BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 7 ' 1 10 0 0 0 0 1 +Nagendra Kumar nagendra N Na Nag Nage BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 0 0 0 0 0 0 11 8 no 0 6 0 0 0 0 1 +Cisco Systems, cisco C Ci Cis Cisc BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 0 0 0 0 0 0 11 8 ,. 2 6 0 0 0 0 1 +7200-12 Kit 7200-12 7 72 720 7200 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 8 - 1 6 0 0 0 0 1 +Research Triangle research R Re Res Rese BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 11 8 , 1 10 0 0 0 0 1 +US US us U US US US BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 1 1 0 0 0 0 0 11 8 no 0 0 0 0 0 0 1 +Email: naikumar@cisco.com email: E Em Ema Emai BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 9 :. 2 10 0 0 0 0 1 +Carlos Pignataro carlos C Ca Car Carl BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 0 0 0 0 0 0 11 9 no 0 5 0 0 0 0 1 +Cisco Systems, cisco C Ci Cis Cisc BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 0 0 0 0 0 0 11 9 ,. 2 6 0 0 0 0 1 +7200-11 Kit 7200-11 7 72 720 7200 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 9 - 1 6 0 0 0 0 1 +Research Triangle research R Re Res Rese BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 11 9 , 1 10 0 0 0 0 1 +US US us U US US US BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 1 1 0 0 0 0 0 11 9 no 0 0 0 0 0 0 1 +Email: cpignata@cisco.com email: E Em Ema Emai BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 10 :. 2 10 0 0 0 0 1 +Faisal Iqbal faisal F Fa Fai Fais BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 10 no 0 10 0 0 0 0 1 +Individual Individual individual I In Ind Indi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 10 no 0 8 0 0 0 0 1 +Canada Canada canada C Ca Can Cana BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 0 0 0 0 0 0 11 10 no 0 5 0 0 0 0 1 +Email: faisal.iqbal@msn.com email: E Em Ema Emai BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 10 :.. 3 10 0 0 0 0 1 +Alexander Vainshtein alexander A Al Ale Alex BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 0 0 0 0 0 0 11 10 no 0 10 0 0 0 0 1 +ECI Telecom eci E EC ECI ECI BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 11 10 no 0 5 0 0 0 0 1 +Israel Israel israel I Is Isr Isra BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 0 0 0 0 0 0 11 10 no 0 3 0 0 0 0 1 +Email: vainshtein.alex@gmail.com email: E Em Ema Emai BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 11 :.. 3 10 0 0 0 0 1 +Nainar, et nainar, N Na Nai Nain BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 11 ,. 2 6 0 0 1 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 11 , 1 10 0 0 0 0 0 +[Page 6] [page [ [P [Pa [Pag BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 11 [] 2 3 0 0 0 0 0 + diff --git a/grobid-trainer/resources/dataset/segmentation/sdo/ietf/corpus/raw/XP015134870.training.segmentation b/grobid-trainer/resources/dataset/segmentation/sdo/ietf/corpus/raw/XP015134870.training.segmentation new file mode 100644 index 0000000000..f29aa83d76 --- /dev/null +++ b/grobid-trainer/resources/dataset/segmentation/sdo/ietf/corpus/raw/XP015134870.training.segmentation @@ -0,0 +1,3968 @@ +server date server s se ser serv BLOCKSTART PAGESTART NEWFONT HIGHERFONT 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 0 ; 1 10 0 0 0 0 0 +6TiSCH 6TiSCH 6tisch 6 6T 6Ti 6TiS BLOCKSTART PAGEIN NEWFONT HIGHERFONT 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 no 0 10 0 0 0 0 1 +P. Thubert, p. P P. P. P. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 .,. 3 5 0 0 0 0 1 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 - 1 4 0 0 0 0 1 +Cisco Systems cisco C Ci Cis Cisc BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 0 0 0 0 0 0 0 0 no 0 4 0 0 0 0 1 +Intended status: intended I In Int Inte BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 : 1 10 0 0 0 0 1 +August 27, august A Au Aug Augu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 0 0 , 1 5 0 0 0 0 1 +Expires: February expires: E Ex Exp Expi BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 :, 2 8 0 0 0 0 1 +An Architecture an A An An An BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 0 1 .. 2 10 0 0 0 0 1 +draft-ietf-6tisch-architecture-26 draft-ietf-6tisch-architecture-26 draft-ietf-6tisch-architecture-26 d dr dra draf BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 1 ---- 4 5 0 0 0 0 1 +Abstract Abstract abstract A Ab Abs Abst BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 1 no 0 10 0 0 0 0 1 +This document this T Th Thi This BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 1 - 1 9 0 0 0 0 1 +latency, low-jitter latency, l la lat late BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 1 ,--. 4 8 0 0 0 0 1 +combines a combines c co com comb BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 1 - 1 9 0 0 0 0 1 +802.15.4 time-slotted 802.15.4 8 80 802 802. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 1 ..-() 5 10 0 0 0 0 1 +of LowPower of o of of of BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 1 . 1 7 0 0 0 0 1 +Status of status S St Sta Stat BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 3 no 0 10 0 0 0 0 1 +This Internet-Draft this T Th Thi This BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 3 - 1 10 0 0 0 0 1 +provisions of provisions p pr pro prov BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 3 . 1 5 0 0 0 0 1 +Internet-Drafts are internet-drafts I In Int Inte BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 4 - 1 9 0 0 0 0 1 +Task Force task T Ta Tas Task BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 4 (). 3 9 0 0 0 0 1 +working documents working w wo wor work BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 4 -.- 3 10 0 0 0 0 1 +Drafts is drafts D Dr Dra Draf BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 4 ://..///. 9 8 0 0 0 0 1 +Internet-Drafts are internet-drafts I In Int Inte BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 5 - 1 10 0 0 0 0 1 +and may and a an and and BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 5 ,, 2 9 0 0 0 0 1 +time. It time. t ti tim time BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 5 .- 2 8 0 0 0 0 1 +material or material m ma mat mate BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 5 "." 3 8 0 0 0 0 1 +This Internet-Draft this T Th Thi This BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 7 -,. 3 10 0 0 0 0 1 +Copyright Notice copyright C Co Cop Copy BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 7 no 0 10 0 0 0 0 1 +Copyright (c) copyright C Co Cop Copy BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 7 () 2 10 0 0 0 0 1 +document authors. document d do doc docu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 7 .. 2 6 0 0 0 0 1 +This document this T Th Thi This BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 8 ' 1 8 0 0 0 0 1 +Provisions Relating provisions P Pr Pro Prov BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 8 no 0 5 0 0 0 0 1 +(https://trustee.ietf.org/license-info) in (https://trustee.ietf.org/license-info) ( (h (ht (htt BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 1 0 8 (://../-) 9 9 0 0 0 0 1 +publication of publication p pu pub publ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 8 . 1 8 0 0 0 0 1 +carefully, as carefully, c ca car care BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 8 , 1 10 0 0 0 0 1 +to this to t to to to BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 8 . 1 9 0 0 0 0 1 +include Simplified include i in inc incl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 8 . 1 9 0 0 0 0 1 +the Trust the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 8 no 0 9 0 0 0 0 1 +described in described d de des desc BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 8 . 1 5 0 0 0 0 1 +Thubert Thubert thubert T Th Thu Thub BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 11 no 0 3 0 0 0 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 11 , 1 10 0 0 0 0 0 +[Page 1] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 11 [] 2 3 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 - 1 10 0 0 1 1 1 +6tisch-architecture 6tisch-architecture 6tisch-architecture 6 6t 6ti 6tis BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 - 1 10 0 0 1 1 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 0 0 no 0 6 0 0 0 0 1 +Table of table T Ta Tab Tabl BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 no 0 10 0 0 0 0 1 +1. Introduction 1. 1 1. 1. 1. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ......................... 25 9 0 0 0 0 1 +3 3 3 3 3 3 3 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 0 0 no 0 0 0 0 0 0 1 +2. Terminology 2. 2 2. 2. 2. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 .......................... 26 9 0 0 0 0 1 +5 5 5 5 5 5 5 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 0 0 no 0 0 0 0 0 0 1 +2.1. New 2.1. 2 2. 2.1 2.1. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 .......................... 26 9 0 0 0 0 1 +5 5 5 5 5 5 5 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 0 0 no 0 0 0 0 0 0 1 +2.2. Abbreviations 2.2. 2 2. 2.2 2.2. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ........................ 24 9 0 0 0 0 1 +2.3. Related 2.3. 2 2. 2.3 2.3. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ...................... 22 9 0 0 0 0 1 +3. High 3. 3 3. 3. 3. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 .................... 20 10 0 0 0 0 1 +3.1. A 3.1. 3 3. 3.1 3.1. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ..--..... 9 9 0 0 0 0 1 +3.2. A 3.2. 3 3. 3.2 3.2. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ..-................ 19 9 0 0 0 0 1 +3.3. TSCH: 3.3. 3 3. 3.3 3.3. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ..:............. 16 9 0 0 0 0 1 +3.4. Scheduling 3.4. 3 3. 3.4 3.4. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ....................... 23 9 0 0 0 0 1 +3.5. Distributed 3.5. 3 3. 3.5 3.5. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 .............. 14 9 0 0 0 0 1 +3.6. Forwarding 3.6. 3 3. 3.6 3.6. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 .................... 20 9 0 0 0 0 1 +3.7. 6TiSCH 3.7. 3 3. 3.7 3.7. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ........................ 24 9 0 0 0 0 1 +3.8. Communication 3.8. 3 3. 3.8 3.8. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ....... 7 9 0 0 0 0 1 +4. Architecture 4. 4 4. 4. 4. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 .................... 20 10 0 0 0 0 1 +4.1. 6LoWPAN 4.1. 4 4. 4.1 4.1. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ..().................... 24 9 0 0 0 0 1 +4.1.1. RPL-Unaware 4.1.1. 4 4. 4.1 4.1. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ...-.......... 14 9 0 0 0 0 1 +4.1.2. 6LBR 4.1.2. 4 4. 4.1 4.1. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ..................... 21 9 0 0 0 0 1 +4.2. Network 4.2. 4 4. 4.2 4.2. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ................ 16 9 0 0 0 0 1 +4.2.1. Join 4.2.1. 4 4. 4.2 4.2. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ....................... 23 9 0 0 0 0 1 +4.2.2. Registration 4.2.2. 4 4. 4.2 4.2. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ....................... 23 9 0 0 0 0 1 +4.3. TSCH 4.3. 4 4. 4.3 4.3. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ........................ 24 9 0 0 0 0 1 +4.3.1. 6top 4.3.1. 4 4. 4.3 4.3. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ........................... 27 9 0 0 0 0 1 +4.3.2. Scheduling 4.3.2. 4 4. 4.3 4.3. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ........ 8 9 0 0 0 0 1 +4.3.3. 6top 4.3.3. 4 4. 4.3 4.3. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ........ 8 9 0 0 0 0 1 +4.3.4. Network 4.3.4. 4 4. 4.3 4.3. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 .................. 18 9 0 0 0 0 1 +4.3.5. Slotframes 4.3.5. 4 4. 4.3 4.3. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ................. 17 9 0 0 0 0 1 +4.3.6. Distributing 4.3.6. 4 4. 4.3 4.3. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ........... 11 9 0 0 0 0 1 +4.4. Schedule 4.4. 4 4. 4.4 4.4. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ............... 15 9 0 0 0 0 1 +4.4.1. Static 4.4.1. 4 4. 4.4 4.4. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ..................... 21 9 0 0 0 0 1 +4.4.2. Neighbor-to-neighbor 4.4.2. 4 4. 4.4 4.4. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ...--........... 16 9 0 0 0 0 1 +4.4.3. Remote 4.4.3. 4 4. 4.4 4.4. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ......... 9 9 0 0 0 0 1 +4.4.4. Hop-by-hop 4.4.4. 4 4. 4.4 4.4. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ...--................ 21 9 0 0 0 0 1 +4.5. On 4.5. 4 4. 4.5 4.5. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 .......................... 26 9 0 0 0 0 1 +4.5.1. General 4.5.1. 4 4. 4.5 4.5. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ................ 16 9 0 0 0 0 1 +4.5.2. Serial 4.5.2. 4 4. 4.5 4.5. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ....................... 23 9 0 0 0 0 1 +4.5.3. Complex 4.5.3. 4 4. 4.5 4.5. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ...... 6 9 0 0 0 0 1 +4.5.4. DetNet 4.5.4. 4 4. 4.5 4.5. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ...--............... 20 9 0 0 0 0 1 +4.5.5. Cell 4.5.5. 4 4. 4.5 4.5. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ........................ 24 9 0 0 0 0 1 +4.6. Forwarding 4.6. 4 4. 4.6 4.6. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ...................... 22 9 0 0 0 0 1 +4.6.1. Track 4.6.1. 4 4. 4.6 4.6. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ..................... 21 9 0 0 0 0 1 +4.6.2. IPv6 4.6.2. 4 4. 4.6 4.6. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ...................... 22 9 0 0 0 0 1 +4.6.3. Fragment 4.6.3. 4 4. 4.6 4.6. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 .................... 20 9 0 0 0 0 1 +4.7. Advanced 4.7. 4 4. 4.7 4.7. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ................... 19 9 0 0 0 0 1 +4.7.1. Packet 4.7.1. 4 4. 4.7 4.7. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ................ 16 9 0 0 0 0 1 +4.7.2. Replication, 4.7.2. 4 4. 4.7 4.7. BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ...,........ 12 9 0 0 0 0 1 +Thubert Thubert thubert T Th Thu Thub BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 11 no 0 3 0 0 0 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 11 , 1 10 0 0 0 0 0 +[Page 2] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 11 [] 2 3 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 - 1 10 0 0 1 0 1 +6tisch-architecture 6tisch-architecture 6tisch-architecture 6 6t 6ti 6tis BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 - 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 0 0 no 0 6 0 0 0 0 1 +5. IANA 5. 5 5. 5. 5. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ...................... 22 10 0 0 0 0 1 +6. Security 6. 6 6. 6. 6. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 .................... 20 10 0 0 0 0 1 +6.1. Availability 6.1. 6 6. 6.1 6.1. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ............... 15 9 0 0 0 0 1 +6.2. Selective 6.2. 6 6. 6.2 6.2. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ...................... 22 9 0 0 0 0 1 +6.3. MAC-Layer 6.3. 6 6. 6.3 6.3. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ..-................... 22 9 0 0 0 0 1 +6.4. Time 6.4. 6 6. 6.4 6.4. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 .................... 20 9 0 0 0 0 1 +6.5. Validating 6.5. 6 6. 6.5 6.5. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ....................... 23 9 0 0 0 0 1 +6.6. Network 6.6. 6 6. 6.6 6.6. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ................. 17 9 0 0 0 0 1 +7. Acknowledgments 7. 7 7. 7. 7. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ........................ 24 10 0 0 0 0 1 +7.1. Contributors 7.1. 7 7. 7.1 7.1. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ........................ 24 9 0 0 0 0 1 +7.2. Special 7.2. 7 7. 7.2 7.2. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ....................... 23 9 0 0 0 0 1 +7.3. And 7.3. 7 7. 7.3 7.3. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ...................... 22 9 0 0 0 0 1 +8. References 8. 8 8. 8. 8. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 .......................... 26 9 0 0 0 0 1 +8.1. Normative 8.1. 8 8. 8.1 8.1. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 .................... 20 9 0 0 0 0 1 +8.2. Informative 8.2. 8 8. 8.2 8.2. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ................... 19 9 0 0 0 0 1 +Appendix A. appendix A Ap App Appe BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 ............... 15 10 0 0 0 0 1 +A.1. Unchartered a.1. A A. A.1 A.1. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ................. 17 9 0 0 0 0 1 +A.1.1. 6TiSCH a.1.1. A A. A.1 A.1. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ................. 17 9 0 0 0 0 1 +A.1.2. 6TiSCH a.1.2. A A. A.1 A.1. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 .................... 20 9 0 0 0 0 1 +A.1.3. Using a.1.3. A A. A.1 A.1. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 .............. 14 9 0 0 0 0 1 +A.2. External a.2. A A. A.2 A.2. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ..(-)............. 18 9 0 0 0 0 1 +Author's Address author's A Au Aut Auth BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 '........................ 25 10 0 0 0 0 1 +1. Introduction 1. 1 1. 1. 1. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 8 . 1 10 0 0 0 0 1 +Wireless Networks wireless W Wi Wir Wire BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 8 no 0 10 0 0 0 0 1 +interconnected, often interconnected, i in int inte BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 8 ,, 2 9 0 0 0 0 1 +range, and range, r ra ran rang BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 8 ,, 2 9 0 0 0 0 1 +instance on instance i in ins inst BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 8 -. 2 6 0 0 0 0 1 +On the on O On On On BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 8 , 1 9 0 0 0 0 1 +delivery ratio delivery d de del deli BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 8 - 1 9 0 0 0 0 1 +critical machine-to-machine critical c cr cri crit BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 8 --(). 5 9 0 0 0 0 1 +such networks such s su suc such BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 8 [-.---] 7 9 0 0 0 0 1 +[I-D.bernardos-raw-use-cases], which [i-d.bernardos-raw-use-cases], [ [I [I- [I-D BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 8 [-.---], 8 9 0 0 0 0 1 +use cases use u us use use BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 8 . 1 8 0 0 0 0 1 +considered applications considered c co con cons BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 8 , 1 9 0 0 0 0 1 +Automation Control automation A Au Aut Auto BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 8 (),,- 5 9 0 0 0 0 1 +command and command c co com comm BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 8 , 1 9 0 0 0 0 1 +mobile scenarios, mobile m mo mob mobi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 8 ,,, 3 10 0 0 0 0 1 +and home and a an and and BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 8 . 1 4 0 0 0 0 1 +The Timeslotted the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 10 ()[] 4 9 0 0 0 0 1 +Std. 802.15.4 std. S St Std Std. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 10 ...[]() 7 10 0 0 0 0 1 +with the with w wi wit with BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 10 ...[] 5 9 0 0 0 0 1 +retrofitted in retrofitted r re ret retr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 10 ., 2 9 0 0 0 0 1 +document is document d do doc docu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 10 no 0 9 0 0 0 0 1 +standard, which standard, s st sta stan BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 10 ,. 2 9 0 0 0 0 1 +Thubert Thubert thubert T Th Thu Thub BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 11 no 0 3 0 0 0 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 11 , 1 10 0 0 0 0 0 +[Page 3] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 11 [] 2 3 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 - 1 10 0 0 1 0 1 +6tisch-architecture 6tisch-architecture 6tisch-architecture 6 6t 6ti 6tis BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 - 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 0 0 no 0 6 0 0 0 0 1 +Time-Division Multiplexing time-division T Ti Tim Time BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 -- 2 9 0 0 0 0 1 +technique whereby technique t te tec tech BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 no 0 8 0 0 0 0 1 +transmission, and transmission, t tr tra tran BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 , 1 8 0 0 0 0 1 +deterministic operations, deterministic d de det dete BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 0 , 1 10 0 0 0 0 1 +constrained wireless constrained c co con cons BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 . 1 4 0 0 0 0 1 +The scheduled the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 1 no 0 10 0 0 0 0 1 +can be can c ca can can BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 1 ,..,, 5 9 0 0 0 0 1 +in a in i in in in BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 0 1 . 1 4 0 0 0 0 1 +Proven Deterministic proven P Pr Pro Prov BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 2 , 1 10 0 0 0 0 1 +including ISA100.11a including i in inc incl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 2 .[.][], 7 9 0 0 0 0 1 +have demonstrated have h ha hav have BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 2 ... 3 10 0 0 0 0 1 +for high for f fo for for BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 2 ,- 2 9 0 0 0 0 1 +well-known flows, well-known w we wel well BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 2 -,() 4 9 0 0 0 0 1 +from a from f fr fro from BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 2 . 1 3 0 0 0 0 1 +To enable to T To To To BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 4 () 2 8 0 0 0 0 1 +Operational Technology operational O Op Ope Oper BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 4 ()-(), 6 9 0 0 0 0 1 +6TiSCH Architecture 6tisch 6 6T 6Ti 6TiS BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 4 no 0 10 0 0 0 0 1 +Std. 802.15.4 std. S St Std Std. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 4 ... 3 9 0 0 0 0 1 +otherwise constrained otherwise o ot oth othe BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 4 . 1 5 0 0 0 0 1 +The 6TiSCH the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 5 [] 2 9 0 0 0 0 1 +routing to routing r ro rou rout BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 0 5 . 1 9 0 0 0 0 1 +high-speed federating high-speed h hi hig high BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 5 - 1 10 0 0 0 0 1 +to the to t to to to BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 5 .- 2 9 0 0 0 0 1 +as an as a as as as BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 5 , 1 9 0 0 0 0 1 +routed structure. routed r ro rou rout BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 5 . 1 2 0 0 0 0 1 +The 6TiSCH the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 7 - 1 9 0 0 0 0 1 +that is that t th tha that BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 7 . 1 9 0 0 0 0 1 +802.15.4 TSCH 802.15.4 8 80 802 802. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 7 ..- 3 10 0 0 0 0 1 +by Backbone by b by by by BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 7 .- 2 9 0 0 0 0 1 +the Backbone the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 7 ( 1 10 0 0 0 0 1 +ND) [RFC4861] nd) N ND ND) ND) BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 7 )[]. 4 3 0 0 0 0 1 +The 6TiSCH the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 9 [] 2 10 0 0 0 0 1 +the constrained the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 9 [] 2 9 0 0 0 0 1 +operations. operations. operations. o op ope oper BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 9 . 1 1 0 0 0 0 1 +Centralized routing centralized C Ce Cen Cent BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 10 no 0 10 0 0 0 0 1 +resources are resources r re res reso BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 10 . 1 8 0 0 0 0 1 +particularly helpful particularly p pa par part BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 10 no 0 8 0 0 0 0 1 +transmissions. In transmissions. t tr tra tran BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 10 ., 2 9 0 0 0 0 1 +that relies that t th tha that BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 10 no 0 9 0 0 0 0 1 +resource allocation resource r re res reso BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 10 . 1 6 0 0 0 0 1 +Thubert Thubert thubert T Th Thu Thub BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 1 11 no 0 3 0 0 0 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 11 , 1 10 0 0 0 0 0 +[Page 4] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 11 [] 2 3 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 1 0 - 1 10 0 0 1 0 1 +6tisch-architecture 6tisch-architecture 6tisch-architecture 6 6t 6ti 6tis BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 0 - 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 1 0 no 0 6 0 0 0 0 1 +The architecture the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 0 no 0 10 0 0 0 0 1 +and scheduling and a an and and BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 0 ,,, 3 9 0 0 0 0 1 +use in use u us use use BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 0 . 1 9 0 0 0 0 1 +highly scalable highly h hi hig high BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 0 no 0 8 0 0 0 0 1 +Infrastructure [AMI] infrastructure I In Inf Infr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 0 [] 2 9 0 0 0 0 1 +enable multipath enable e en ena enab BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 0 . 1 7 0 0 0 0 1 +2. Terminology 2. 2 2. 2. 2. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 2 . 1 10 0 0 0 0 1 +2.1. New 2.1. 2 2. 2.1 2.1. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 2 .. 2 10 0 0 0 0 1 +The draft the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 2 ... 3 8 0 0 0 0 1 +[IEEE802154] standard [ieee802154] [ [I [IE [IEE BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 1 0 0 0 1 2 []"""" 6 10 0 0 0 0 1 +that is that t th tha that BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 2 . 1 7 0 0 0 0 1 +This document this T Th Thi This BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 3 : 1 10 0 0 0 0 1 +6TiSCH (IPv6 6tisch 6 6T 6Ti 6TiS BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 3 (..): 5 10 0 0 0 0 1 +adaptation sublayer adaptation a ad ada adap BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 3 , 1 8 0 0 0 0 1 +of protocols of o of of of BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 3 no 0 6 0 0 0 0 1 +distributed approach, distributed d di dis dist BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 3 ,. 2 8 0 0 0 0 1 +be extended be b be be be BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 3 / 1 7 0 0 0 0 1 +providing a providing p pr pro prov BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 3 . 1 5 0 0 0 0 1 +6top (6TiSCH 6top 6 6t 6to 6top BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 5 (): 3 10 0 0 0 0 1 +Std. 802.15.4 std. S St Std Std. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 1 5 .... 4 7 0 0 0 0 1 +abstraction of abstraction a ab abs abst BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 5 , 1 7 0 0 0 0 1 +packets over packets p pa pac pack BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 5 , 1 7 0 0 0 0 1 +interface to interface i in int inte BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 5 . 1 5 0 0 0 0 1 +6P (6top 6p 6 6P 6P 6P BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 7 ():[]. 6 10 0 0 0 0 1 +Layer-2 peers layer-2 L La Lay Laye BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 7 -, 2 8 0 0 0 0 1 +their respective their t th the thei BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 7 . 1 8 0 0 0 0 1 +at the at a at at at BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 7 . 1 2 0 0 0 0 1 +6P Transaction: 6p 6 6P 6P 6P BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 8 :-- 3 10 0 0 0 0 1 +Layer-2 peers layer-2 L La Lay Laye BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 8 -. 2 8 0 0 0 0 1 +ASN (Absolute asn A AS ASN ASN BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 1 8 ():[], 6 10 0 0 0 0 1 +total number total t to tot tota BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 8 no 0 7 0 0 0 0 1 +Epoch Time epoch E Ep Epo Epoc BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 8 . 1 8 0 0 0 0 1 +one at one o on one one BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 8 . 1 8 0 0 0 0 1 +in practice. in i in in in BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 1 8 . 1 1 0 0 0 0 1 +bundle: bundle: bundle: b bu bun bund BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 10 : 1 1 0 0 0 0 1 +A group a A A A A BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 1 0 0 0 0 0 1 10 ,.., 4 9 0 0 0 0 1 +identified by identified i id ide iden BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 10 [,], 4 9 0 0 0 0 1 +which are which w wh whi whic BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 10 , 1 9 0 0 0 0 1 +neighbor, with neighbor, n ne nei neig BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 10 ,,. 3 10 0 0 0 0 1 +Thubert Thubert thubert T Th Thu Thub BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 1 11 no 0 3 0 0 0 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 11 , 1 10 0 0 0 0 0 +[Page 5] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 11 [] 2 3 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 1 0 - 1 10 0 0 1 0 1 +6tisch-architecture 6tisch-architecture 6tisch-architecture 6 6t 6ti 6tis BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 0 - 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 1 0 no 0 6 0 0 0 0 1 +The size the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 0 no 0 9 0 0 0 0 1 +contains. For contains. c co con cont BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 0 ., 2 9 0 0 0 0 1 +bundle translates bundle b bu bun bund BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 0 . 1 10 0 0 0 0 1 +local abstraction local l lo loc loca BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 0 - 1 10 0 0 0 0 1 +either sending either e ei eit eith BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 0 , 1 10 0 0 0 0 1 +to the to t to to to BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 0 . 1 6 0 0 0 0 1 +Layer-2 vs. layer-2 L La Lay Laye BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 1 -.-: 4 10 0 0 0 0 1 +Layer-2 (switching) layer-2 L La Lay Laye BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 1 -()-() 6 8 0 0 0 0 1 +operations. A operations. o op ope oper BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 1 .-( 3 8 0 0 0 0 1 +direction) maps direction) d di dir dire BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 1 ), 2 9 0 0 0 0 1 +set of set s se set set BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 1 -("" 4 9 0 0 0 0 1 +direction) corresponds direction) d di dir dire BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 1 ) 1 8 0 0 0 0 1 +incoming bundle(s) incoming i in inc inco BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 1 ()-() 5 9 0 0 0 0 1 +one or one o on one one BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 1 ()- 3 7 0 0 0 0 1 +neighbor(s) along neighbor(s) n ne nei neig BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 1 (), 3 9 0 0 0 0 1 +which may which w wh whi whic BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 1 . 1 7 0 0 0 0 1 +CCA (Clear cca C CC CCA CCA BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 1 4 ():[] 5 10 0 0 0 0 1 +whereby nodes whereby w wh whe wher BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 4 no 0 7 0 0 0 0 1 +detect ongoing detect d de det dete BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 4 . 1 8 0 0 0 0 1 +the network the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 4 , 1 8 0 0 0 0 1 +colliding transmissions colliding c co col coll BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 4 , 1 8 0 0 0 0 1 +can be can c ca can can BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 4 . 1 8 0 0 0 0 1 +cell: cell: cell: c ce cel cell BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 6 : 1 1 0 0 0 0 1 +A unit a A A A A BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 1 0 0 0 0 0 1 6 , 1 10 0 0 0 0 1 +is identified is i is is is BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 6 . 1 9 0 0 0 0 1 +cell can cell c ce cel cell BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 6 . 1 6 0 0 0 0 1 +Channel Distribution/Usage channel C Ch Cha Chan BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 7 /()::(,) 8 10 0 0 0 0 1 +representing the representing r re rep repr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 7 () 2 8 0 0 0 0 1 +the different the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 7 . 1 7 0 0 0 0 1 +matrix has matrix m ma mat matr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 7 , 1 8 0 0 0 0 1 +network scheduling network n ne net netw BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 1 7 , 1 8 0 0 0 0 1 +number of number n nu num numb BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 7 .(,) 4 8 0 0 0 0 1 +CDU, identified cdu, C CD CDU CDU, BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 1 7 ,(,), 5 8 0 0 0 0 1 +to a to t to to to BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 7 . 1 3 0 0 0 0 1 +channelOffset: Identifies channeloffset: c ch cha chan BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 9 :. 2 10 0 0 0 0 1 +channelOffset values channeloffset c ch cha chan BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 9 no 0 7 0 0 0 0 1 +available frequencies. available a av ava avai BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 9 . 1 8 0 0 0 0 1 +a frequency a a a a a BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 1 0 0 0 0 0 1 9 no 0 8 0 0 0 0 1 +time when time t ti tim time BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 9 , 1 8 0 0 0 0 1 +channel hopping channel c ch cha chan BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 9 . 1 3 0 0 0 0 1 +chunk: chunk: chunk: c ch chu chun BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 10 : 1 1 0 0 0 0 1 +A well-known a A A A A BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 1 0 0 0 0 0 1 10 -, 2 9 0 0 0 0 1 +frequency, within frequency, f fr fre freq BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 10 ,. 2 9 0 0 0 0 1 +portion of portion p po por port BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 10 . 1 10 0 0 0 0 1 +Thubert Thubert thubert T Th Thu Thub BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 1 11 no 0 3 0 0 0 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 11 , 1 10 0 0 0 0 0 +[Page 6] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 11 [] 2 3 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 1 0 - 1 10 0 0 1 0 1 +6tisch-architecture 6tisch-architecture 6tisch-architecture 6 6t 6ti 6tis BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 0 - 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 1 0 no 0 6 0 0 0 0 1 +in chunks in i in in in BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 1 0 no 0 8 0 0 0 0 1 +network to network n ne net netw BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 1 0 , 1 9 0 0 0 0 1 +negotiation between negotiation n ne neg nego BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 0 . 1 9 0 0 0 0 1 +A node a A A A A BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 1 0 0 0 0 0 1 0 no 0 10 0 0 0 0 1 +which transmissions which w wh whi whic BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 0 no 0 9 0 0 0 0 1 +chunk within chunk c ch chu chun BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 0 ,.., 4 10 0 0 0 0 1 +will decide will w wi wil will BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 1 0 no 0 9 0 0 0 0 1 +are used are a ar are are BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 0 ,. 2 8 0 0 0 0 1 +CoJP (Constrained cojp C Co CoJ CoJP BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 1 2 (): 3 10 0 0 0 0 1 +(CoJP) enables (cojp) ( (C (Co (CoJ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 2 () 2 9 0 0 0 0 1 +and obtain and a an and and BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 2 . 1 8 0 0 0 0 1 +Minimal Security minimal M Mi Min Mini BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 2 no 0 5 0 0 0 0 1 +[I-D.ietf-6tisch-minimal-security] defines [i-d.ietf-6tisch-minimal-security] [ [I [I- [I-D BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 2 [-.---] 7 8 0 0 0 0 1 +CoJP setup cojp C Co CoJ CoJP BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 1 2 -., 3 8 0 0 0 0 1 +CoJP can cojp C Co CoJ CoJP BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 1 2 . 1 8 0 0 0 0 1 +dedicated cell: dedicated d de ded dedi BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 4 : 1 10 0 0 0 0 1 +to a to t to to to BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 4 . 1 3 0 0 0 0 1 +deterministic network: deterministic d de det dete BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 5 : 1 10 0 0 0 0 1 +is defined is i is is is BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 5 [-.--]. 7 7 0 0 0 0 1 +applied to applied a ap app appl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 5 , 1 8 0 0 0 0 1 +which guarantees which w wh whi whic BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 5 -- 2 8 0 0 0 0 1 +Packet Delivery packet P Pa Pac Pack BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 5 ()-. 4 8 0 0 0 0 1 +distributed cell distributed d di dis dist BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 6 : 1 10 0 0 0 0 1 +more in-network more m mo mor more BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 6 -. 2 3 0 0 0 0 1 +distributed Track distributed d di dis dist BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 7 : 1 10 0 0 0 0 1 +or more or o or or or BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 7 -. 2 4 0 0 0 0 1 +EB (Enhanced eb E EB EB EB BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 1 7 ():[] 5 10 0 0 0 0 1 +by a by b by by by BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 7 ,, 2 8 0 0 0 0 1 +the network. the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 7 . 1 8 0 0 0 0 1 +to synchronize to t to to to BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 7 . 1 4 0 0 0 0 1 +hard cell: hard h ha har hard BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 9 : 1 10 0 0 0 0 1 +relocate. relocate. relocate. r re rel relo BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 9 . 1 1 0 0 0 0 1 +hopping sequence: hopping h ho hop hopp BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 9 :, 2 10 0 0 0 0 1 +Hopping_Sequence_ID, used hopping_sequence_id, H Ho Hop Hopp BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 1 9 , 1 7 0 0 0 0 1 +translating the translating t tr tra tran BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 9 . 1 8 0 0 0 0 1 +IE (Information ie I IE IE IE BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 1 10 ():-- 5 10 0 0 0 0 1 +end of end e en end end BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 10 , 1 8 0 0 0 0 1 +or devices. or o or or or BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 10 . 1 8 0 0 0 0 1 +[IEEE802154]. Some [ieee802154]. [ [I [IE [IEE BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 1 0 0 0 1 10 []. 3 7 0 0 0 0 1 +Thubert Thubert thubert T Th Thu Thub BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 1 11 no 0 3 0 0 0 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 11 , 1 10 0 0 0 0 0 +[Page 7] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 11 [] 2 3 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 1 0 - 1 10 0 0 1 0 1 +6tisch-architecture 6tisch-architecture 6tisch-architecture 6 6t 6ti 6tis BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 0 - 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 1 0 no 0 6 0 0 0 0 1 +IETF [RFC8137], ietf I IE IET IETF BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 1 0 [], 3 3 0 0 0 0 1 +[I-D.ietf-6tisch-enrollment-enhanced-beacon] uses [i-d.ietf-6tisch-enrollment-enhanced-beacon] [ [I [I- [I-D BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 0 [-.----] 8 10 0 0 0 0 1 +subtype to subtype s su sub subt BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 0 . 1 9 0 0 0 0 1 +join process: join j jo joi join BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 1 : 1 10 0 0 0 0 1 +network by network n ne net netw BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 1 1 () 2 7 0 0 0 0 1 +protocol. protocol. protocol. p pr pro prot BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 1 . 1 1 0 0 0 0 1 +join protocol: join j jo joi join BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 1 : 1 10 0 0 0 0 1 +network. The network. n ne net netw BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 1 ., 2 8 0 0 0 0 1 +authorization and authorization a au aut auth BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 1 . 1 8 0 0 0 0 1 +protocol is protocol p pr pro prot BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 1 . 1 8 0 0 0 0 1 +joined node: joined j jo joi join BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 3 :, 2 10 0 0 0 0 1 +process, often process, p pr pro proc BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 3 ,. 2 5 0 0 0 0 1 +JP (Join jp J JP JP JP BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 1 3 (): 3 10 0 0 0 0 1 +as a as a as as as BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 3 no 0 8 0 0 0 0 1 +the JRC. the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 3 . 1 8 0 0 0 0 1 +regularly sending regularly r re reg regu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 3 . 1 4 0 0 0 0 1 +JRC (Join jrc J JR JRC JRC BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 1 5 (/): 4 10 0 0 0 0 1 +authentication, authorization authentication, a au aut auth BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 5 , 1 7 0 0 0 0 1 +pledge. pledge. pledge. p pl ple pled BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 5 . 1 1 0 0 0 0 1 +link: link: link: l li lin link BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 5 : 1 1 0 0 0 0 1 +A communication a A A A A BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 1 0 0 0 0 0 1 5 no 0 10 0 0 0 0 1 +communicate at communicate c co com comm BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 5 -, 2 9 0 0 0 0 1 +below IP. below b be bel belo BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 5 ., 2 9 0 0 0 0 1 +collection of collection c co col coll BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 5 -.: 3 9 0 0 0 0 1 +for the for f fo for for BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 5 "", 3 9 0 0 0 0 1 +Std. 802.15.4 std. S St Std Std. BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 1 5 .... 4 4 0 0 0 0 1 +Operational Technology: operational O Op Ope Oper BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 7 :, 2 10 0 0 0 0 1 +for instance for f fo for for BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 7 . 1 7 0 0 0 0 1 +convergence of convergence c co con conv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 7 no 0 7 0 0 0 0 1 +Industrial Internet industrial I In Ind Indu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 7 (). 3 5 0 0 0 0 1 +pledge: pledge: pledge: p pl ple pled BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 9 : 1 1 0 0 0 0 1 +A new a A A A A BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 1 0 0 0 0 0 1 9 . 1 10 0 0 0 0 1 +(to) relocate (to) ( (t (to (to) BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 9 (): 3 10 0 0 0 0 1 +changing the changing c ch cha chan BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 9 / 1 8 0 0 0 0 1 +cell. cell. cell. c ce cel cell BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 9 . 1 0 0 0 0 0 1 +(to) schedule (to) ( (t (to (to) BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 10 (): 3 10 0 0 0 0 1 +a scheduled a a a a a BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 1 0 0 0 0 0 1 10 . 1 2 0 0 0 0 1 +scheduled cell: scheduled s sc sch sche BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 10 : 1 10 0 0 0 0 1 +(broadcast address (broadcast ( (b (br (bro BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 10 (), 3 8 0 0 0 0 1 +Thubert Thubert thubert T Th Thu Thub BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 1 11 no 0 3 0 0 0 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 11 , 1 10 0 0 0 0 0 +[Page 8] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 11 [] 2 3 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 1 0 - 1 10 0 0 1 0 1 +6tisch-architecture 6tisch-architecture 6tisch-architecture 6 6t 6ti 6tis BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 0 - 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 1 0 no 0 6 0 0 0 0 1 +the following the t th the the BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 0 :,,. 4 9 0 0 0 0 1 +scheduled cell scheduled s sc sch sche BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 0 ... 3 10 0 0 0 0 1 +implementation to implementation i im imp impl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 0 . 1 8 0 0 0 0 1 +either be either e ei eit eith BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 0 . 1 5 0 0 0 0 1 +SF (6top sf S SF SF SF BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 1 1 (): 3 10 0 0 0 0 1 +or deletes or o or or or BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 1 no 0 7 0 0 0 0 1 +networking requirements. networking n ne net netw BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 1 . 1 7 0 0 0 0 1 +neighbor is neighbor n ne nei neig BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 1 . 1 3 0 0 0 0 1 +SFID (6top sfid S SF SFI SFID BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 1 2 ():- 4 10 0 0 0 0 1 +identifying an identifying i id ide iden BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 2 . 1 3 0 0 0 0 1 +shared cell: shared s sh sha shar BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 2 :"""". 6 10 0 0 0 0 1 +This cell this T Th Thi This BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 2 . 1 8 0 0 0 0 1 +A back-off a A A A A BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 1 0 0 0 0 0 1 2 -. 2 7 0 0 0 0 1 +slotframe: A slotframe: s sl slo slot BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 4 :, 2 10 0 0 0 0 1 +a superframe a a a a a BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 1 0 0 0 0 0 1 4 no 0 8 0 0 0 0 1 +opportunities. It opportunities. o op opp oppo BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 4 ., 2 7 0 0 0 0 1 +and a and a an and and BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 4 . 1 8 0 0 0 0 1 +a node's a a a a a BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 1 0 0 0 0 0 1 4 ',.., 5 7 0 0 0 0 1 +activities scheduled activities a ac act acti BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 4 , 1 7 0 0 0 0 1 +the priority the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 4 /. 2 8 0 0 0 0 1 +in the in i in in in BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 1 4 ; 1 8 0 0 0 0 1 +timeslot is timeslot t ti tim time BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 4 . 1 4 0 0 0 0 1 +slotOffset: A slotoffset: s sl slo slot BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 6 :,.., 5 10 0 0 0 0 1 +timeslots since timeslots t ti tim time BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 6 no 0 9 0 0 0 0 1 +the slotframe. the t th the the BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 6 . 1 2 0 0 0 0 1 +soft cell: soft s so sof soft BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 7 :. 2 10 0 0 0 0 1 +time source time t ti tim time BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 7 : 1 10 0 0 0 0 1 +reference, and reference, r re ref refe BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 7 , 1 8 0 0 0 0 1 +synchronized. synchronized. synchronized. s sy syn sync BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 7 . 1 2 0 0 0 0 1 +timeslot: timeslot: timeslot: t ti tim time BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 8 : 1 1 0 0 0 0 1 +A basic a A A A A BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 1 0 0 0 0 0 1 8 no 0 8 0 0 0 0 1 +transmitter node transmitter t tr tra tran BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 8 , 1 10 0 0 0 0 1 +and that and a an and and BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 8 no 0 9 0 0 0 0 1 +acknowledgment. acknowledgment. acknowledgment. a ac ack ackn BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 8 . 1 2 0 0 0 0 1 +Track: Track: track: T Tr Tra Trac BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 9 : 1 1 0 0 0 0 1 +A Track a A A A A BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 1 0 0 0 0 0 1 9 () 2 10 0 0 0 0 1 +a complex a a a a a BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 1 0 0 0 0 0 1 9 -() 3 9 0 0 0 0 1 +path. In path. p pa pat path BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 9 ., 2 9 0 0 0 0 1 +Destination Oriented destination D De Des Dest BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 9 () 2 9 0 0 0 0 1 +DODAG is dodag D DO DOD DODA BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 1 9 . 1 9 0 0 0 0 1 +enables replication, enables e en ena enab BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 9 , 1 10 0 0 0 0 1 +Thubert Thubert thubert T Th Thu Thub BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 1 11 no 0 3 0 0 0 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 11 , 1 10 0 0 0 0 0 +[Page 9] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 11 [] 2 3 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 1 0 - 1 10 0 0 1 0 1 +6tisch-architecture 6tisch-architecture 6tisch-architecture 6 6t 6ti 6tis BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 0 - 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 1 0 no 0 6 0 0 0 0 1 +on the on o on on on BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 0 ( 1 10 0 0 0 0 1 +Networking Architecture networking N Ne Net Netw BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 0 [-.--]). 8 10 0 0 0 0 1 +A Track a A A A A BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 1 0 0 0 0 0 1 0 no 0 9 0 0 0 0 1 +cells and cells c ce cel cell BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 0 . 1 10 0 0 0 0 1 +is associated is i is is is BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 0 no 0 9 0 0 0 0 1 +destination of destination d de des dest BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 0 . 1 4 0 0 0 0 1 +TrackID: TrackID: trackid: T Tr Tra Trac BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 1 2 : 1 1 0 0 0 0 1 +A TrackID a A A A A BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 1 0 0 0 0 0 1 2 , 1 10 0 0 0 0 1 +the Track the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 2 , 1 9 0 0 0 0 1 +owner must owner o ow own owne BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 2 no 0 8 0 0 0 0 1 +provide a provide p pr pro prov BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 2 . 1 8 0 0 0 0 1 +owner is owner o ow own owne BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 2 no 0 8 0 0 0 0 1 +destination IP destination d de des dest BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 2 no 0 9 0 0 0 0 1 +used as used u us use used BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 2 no 0 8 0 0 0 0 1 +InstanceID [RFC6550] instanceid I In Ins Inst BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 1 2 []. 3 9 0 0 0 0 1 +case, a case, c ca cas case BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 2 ,[] 3 8 0 0 0 0 1 +packet can packet p pa pac pack BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 2 no 0 9 0 0 0 0 1 +expressed in expressed e ex exp expr BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 2 []. 3 8 0 0 0 0 1 +TSCH: TSCH: tsch: T TS TSC TSCH BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 1 5 : 1 1 0 0 0 0 1 +A medium a A A A A BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 1 0 0 0 0 0 1 5 ... 3 8 0 0 0 0 1 +[IEEE802154] standard [ieee802154] [ [I [IE [IEE BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 1 0 0 0 1 5 [] 2 9 0 0 0 0 1 +achieve ultra-low-power achieve a ac ach achi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 5 --, 3 10 0 0 0 0 1 +enable high enable e en ena enab BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 5 . 1 4 0 0 0 0 1 +TSCH Schedule: tsch T TS TSC TSCH BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 1 7 :, 2 10 0 0 0 0 1 +and a and a an and and BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 7 . 1 8 0 0 0 0 1 +scheduled cells scheduled s sc sch sche BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 7 no 0 8 0 0 0 0 1 +qualify the qualify q qu qua qual BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 7 . 1 7 0 0 0 0 1 +number of number n nu num numb BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 7 ("" 3 7 0 0 0 0 1 +matrix) is matrix) m ma mat matr BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 7 ). 2 8 0 0 0 0 1 +Unscheduled Cell: unscheduled U Un Uns Unsc BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 9 :... 4 10 0 0 0 0 1 +TSCH implementation. tsch T TS TSC TSCH BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 1 9 . 1 3 0 0 0 0 1 +2.2. Abbreviations 2.2. 2 2. 2.2 2.2. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 9 .. 2 10 0 0 0 0 1 +This document this T Th Thi This BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 10 : 1 10 0 0 0 0 1 +6BBR: 6LoWPAN 6bbr: 6 6B 6BB 6BBR BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 10 :() 3 10 0 0 0 0 1 +6LBR: 6LoWPAN 6lbr: 6 6L 6LB 6LBR BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 10 :() 3 10 0 0 0 0 1 +6LN: 6LoWPAN 6ln: 6 6L 6LN 6LN: BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 10 : 1 10 0 0 0 0 1 +6LR: 6LoWPAN 6lr: 6 6L 6LR 6LR: BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 11 :() 3 10 0 0 0 0 1 +6CIO: Capability 6cio: 6 6C 6CI 6CIO BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 11 : 1 10 0 0 0 0 1 +Thubert Thubert thubert T Th Thu Thub BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 1 11 no 0 3 0 0 0 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 11 , 1 10 0 0 0 0 0 +[Page 10] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 11 [] 2 3 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 1 0 - 1 10 0 0 1 0 1 +6tisch-architecture 6tisch-architecture 6tisch-architecture 6 6t 6ti 6tis BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 0 - 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 1 0 no 0 6 0 0 0 0 1 +(E)ARO: (Extended) (e)aro: ( (E (E) (E)A BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 1 0 ():() 5 10 0 0 0 0 1 +(E)DAR: (Extended) (e)dar: ( (E (E) (E)D BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 1 0 ():() 5 10 0 0 0 0 1 +(E)DAC: (Extended) (e)dac: ( (E (E) (E)D BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 1 1 ():() 5 10 0 0 0 0 1 +DAD: Duplicate dad: D DA DAD DAD: BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 1 1 : 1 10 0 0 0 0 1 +DODAG: Destination-Oriented dodag: D DO DOD DODA BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 1 2 :- 2 10 0 0 0 0 1 +LLN: Low-Power lln: L LL LLN LLN: BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 1 2 :-() 4 10 0 0 0 0 1 +NA: NA: na: N NA NA: NA: BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 1 3 : 1 1 0 0 0 0 1 +Neighbor Advertisement neighbor N Ne Nei Neig BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 3 no 0 10 0 0 0 0 1 +NCE: Neighbor nce: N NC NCE NCE: BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 1 3 : 1 10 0 0 0 0 1 +ND: ND: nd: N ND ND: ND: BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 1 3 : 1 2 0 0 0 0 1 +Neighbor Discovery neighbor N Ne Nei Neig BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 3 no 0 10 0 0 0 0 1 +NDP: Neighbor ndp: N ND NDP NDP: BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 1 3 : 1 10 0 0 0 0 1 +PCE: Path pce: P PC PCE PCE: BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 1 4 : 1 10 0 0 0 0 1 +NME: Network nme: N NM NME NME: BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 1 4 : 1 10 0 0 0 0 1 +ROVR: Registration rovr: R RO ROV ROVR BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 1 4 :() 3 10 0 0 0 0 1 +RPL: IPv6 rpl: R RP RPL RPL: BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 1 5 :() 3 10 0 0 0 0 1 +RA: RA: ra: R RA RA: RA: BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 1 5 : 1 1 0 0 0 0 1 +Router Advertisement router R Ro Rou Rout BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 1 5 no 0 10 0 0 0 0 1 +RS: RS: rs: R RS RS: RS: BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 1 6 : 1 2 0 0 0 0 1 +Router Solicitation router R Ro Rou Rout BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 1 6 no 0 10 0 0 0 0 1 +TSCH: timeslotted tsch: T TS TSC TSCH BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 1 6 : 1 10 0 0 0 0 1 +TID: Transaction tid: T TI TID TID: BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 1 6 :() 3 10 0 0 0 0 1 +2.3. Related 2.3. 2 2. 2.3 2.3. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 7 .. 2 10 0 0 0 0 1 +The draft the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 7 no 0 8 0 0 0 0 1 +[RFC3444] and [rfc3444] [ [R [RF [RFC BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 7 [][] 4 9 0 0 0 0 1 +defined in defined d de def defi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 7 [][] 4 10 0 0 0 0 1 +for reservation for f fo for for BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 7 no 0 2 0 0 0 0 1 +The draft the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 9 -: 2 10 0 0 0 0 1 +6LoWPAN ND 6lowpan 6 6L 6Lo 6LoW BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 10 "- 2 9 0 0 0 0 1 +Lossy Networks" lossy L Lo Los Loss BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 1 10 "[]" 4 10 0 0 0 0 1 +Neighbor Discovery" neighbor N Ne Nei Neig BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 10 "[], 4 4 0 0 0 0 1 +Thubert Thubert thubert T Th Thu Thub BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 1 11 no 0 3 0 0 0 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 11 , 1 10 0 0 0 0 0 +[Page 11] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 11 [] 2 3 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 1 0 - 1 10 0 0 1 0 1 +6tisch-architecture 6tisch-architecture 6tisch-architecture 6 6t 6ti 6tis BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 0 - 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 2 0 no 0 6 0 0 0 0 1 +"Terms Used "terms " "T "Te "Ter BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 0 "-()" 5 10 0 0 0 0 1 +[RFC7102], [RFC7102], [rfc7102], [ [R [RF [RFC BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 0 [], 3 1 0 0 0 0 1 +and RPL and a an and and BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 1 "- 2 10 0 0 0 0 1 +Power and power P Po Pow Powe BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 2 1 ()"[],": 8 10 0 0 0 0 1 +Protocol for protocol P Pr Pro Prot BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 1 -"[]. 5 8 0 0 0 0 1 +Other terms other O Ot Oth Othe BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 2 "- 2 10 0 0 0 0 1 +Node Networks" node N No Nod Node BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 2 "[]. 4 3 0 0 0 0 1 +Readers are readers R Re Rea Read BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 3 no 0 10 0 0 0 0 1 +that are that t th tha that BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 3 no 0 3 0 0 0 0 1 +o "Neighbor o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 2 4 ""[]," 6 10 0 0 0 0 1 +Stateless Address stateless S St Sta Stat BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 2 4 "[]. 4 7 0 0 0 0 1 +In addition, in I In In In BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 2 5 ,: 2 10 0 0 0 0 1 +o "Problem o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 2 5 "- 2 10 0 0 0 0 1 +Wireless Personal wireless W Wi Wir Wire BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 5 ()"[], 6 9 0 0 0 0 1 +o "Multi-Link o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 2 6 "-"[], 6 10 0 0 0 0 1 +o "IPv6 o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 2 7 "-(): 5 10 0 0 0 0 1 +Overview, Assumptions, overview, O Ov Ove Over BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 7 ,,,"[] 6 9 0 0 0 0 1 +prior to prior p pr pri prio BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 8 no 0 10 0 0 0 0 1 +ND-proxying and nd-proxying N ND ND- ND-p BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 2 8 -. 2 3 0 0 0 0 1 +3. High 3. 3 3. 3. 3. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 9 . 1 10 0 0 0 0 1 +3.1. A 3.1. 3 3. 3.1 3.1. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 9 ..-- 4 10 0 0 0 0 1 +A 6TiSCH a A A A A BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 1 0 0 0 0 0 2 9 [], 3 9 0 0 0 0 1 +configuration illustrated configuration c co con conf BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 9 ,- 2 10 0 0 0 0 1 +Network (LLN) network N Ne Net Netw BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 2 9 ()-. 4 9 0 0 0 0 1 +Thubert Thubert thubert T Th Thu Thub BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 2 11 no 0 3 0 0 0 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 11 , 1 10 0 0 0 0 0 +[Page 12] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 11 [] 2 3 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 2 0 - 1 10 0 0 1 0 1 +6tisch-architecture 6tisch-architecture 6tisch-architecture 6 6t 6ti 6tis BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 0 - 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 2 0 no 0 6 0 0 0 0 1 +---+--------............ ------------ ---+--------............ - -- --- ---+ BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 2 0 -----------............------------ 35 10 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 0 0 0 0 0 1 +External Network external E Ex Ext Exte BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 0 no 0 4 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 0 0 0 0 0 1 ++-----+ +-----+ +-----+ + +- +-- +--- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 2 0 ----- 5 2 0 0 0 0 1 ++-----+ +-----+ +-----+ + +- +-- +--- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 2 0 ----- 5 2 0 0 0 0 1 +| NME | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 2 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 0 0 0 0 0 1 +| LLN | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 3 0 0 0 0 1 +| PCE | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 2 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 0 0 0 0 0 1 +| router | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 () 2 4 0 0 0 0 1 ++-----+ +-----+ +-----+ + +- +-- +--- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 2 0 ----- 5 2 0 0 0 0 1 ++-----+ +-----+ +-----+ + +- +-- +--- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 2 0 ----- 5 2 0 0 0 0 1 +o o o o o o o BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 0 0 0 0 0 1 +o o o o o o o BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 0 0 0 0 0 1 +o o o o o o o BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 0 0 0 0 0 1 +o o o o o o o BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 0 0 0 0 0 1 +o o o o o o o BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 0 0 0 0 0 1 +o o o o o o o BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 0 0 0 0 0 1 +o o o o o o o BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 0 0 0 0 0 1 +o o o o o o o BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 0 0 0 0 0 1 +o o o o o o o BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 0 0 0 0 0 1 +o 6LoWPAN o o o o o BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 4 0 0 0 0 1 +o o o o o o o BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 0 0 0 0 0 1 +o o o o o o o BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 0 0 0 0 0 1 +o o o o o o o BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 0 0 0 0 0 1 +o o o o o o o BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 0 0 0 0 0 1 +o o o o o o o BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 0 0 0 0 0 1 +Figure 1: figure F Fi Fig Figu BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 2 : 1 10 0 0 0 0 1 +Inside a inside I In Ins Insi BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 2 , 1 8 0 0 0 0 1 +(6LoWPAN HC) (6lowpan ( (6 (6L (6Lo BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 2 ()[]. 5 9 0 0 0 0 1 +of the of o of of of BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 2 ,(. 3 10 0 0 0 0 1 +802.15.4-compliant radio) 802.15.4-compliant 8 80 802 802. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 2 ..-) 4 9 0 0 0 0 1 +different capabilities different d di dif diff BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 2 . 1 8 0 0 0 0 1 +6TiSCH nodes 6tisch 6 6T 6Ti 6TiS BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 4 no 0 9 0 0 0 0 1 +already members already a al alr alre BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 4 (..). 5 9 0 0 0 0 1 +aspects of aspects a as asp aspe BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 4 . 1 10 0 0 0 0 1 +mesh network, mesh m me mes mesh BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 4 , 1 9 0 0 0 0 1 +another at another a an ano anot BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 4 -. 2 8 0 0 0 0 1 +This forms this T Th Thi This BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 6 --(), 5 10 0 0 0 0 1 +which is which w wh whi whic BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 6 () 2 9 0 0 0 0 1 +[RFC4861][RFC4862]. 6LoWPAN [rfc4861][rfc4862]. [ [R [RF [RFC BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 6 [][].() 7 8 0 0 0 0 1 +[RFC6775][RFC8505] specifies [rfc6775][rfc8505] [ [R [RF [RFC BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 6 [][] 4 9 0 0 0 0 1 +operations in operations o op ope oper BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 2 6 no 0 9 0 0 0 0 1 +address theft address a ad add addr BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 6 [-.---]. 8 8 0 0 0 0 1 +Once it once O On Onc Once BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 7 , 1 10 0 0 0 0 1 +and register and a an and and BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 7 . 1 8 0 0 0 0 1 +addresses are addresses a ad add addr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 7 no 0 9 0 0 0 0 1 +subnet, more subnet, s su sub subn BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 7 ,... 4 4 0 0 0 0 1 +Within the within W Wi Wit With BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 8 ,[]- 4 9 0 0 0 0 1 +called Route called c ca cal call BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 8 ,()- 4 9 0 0 0 0 1 +storing (stateless, storing s st sto stor BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 8 (,)., 5 10 0 0 0 0 1 +nodes can nodes n no nod node BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 8 , 1 9 0 0 0 0 1 +detailed in detailed d de det deta BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 8 .. 2 3 0 0 0 0 1 +With TSCH, with W Wi Wit With BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 10 ,-. 3 9 0 0 0 0 1 +of a of o of of of BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 10 no 0 10 0 0 0 0 1 +Section 4.3.4. section S Se Sec Sect BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 10 ..., 4 9 0 0 0 0 1 +at the at a at at at BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 10 . 1 9 0 0 0 0 1 +Thubert Thubert thubert T Th Thu Thub BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 2 11 no 0 3 0 0 0 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 11 , 1 10 0 0 0 0 0 +[Page 13] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 11 [] 2 3 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 2 0 - 1 10 0 0 1 0 1 +6tisch-architecture 6tisch-architecture 6tisch-architecture 6 6t 6ti 6tis BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 0 - 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 2 0 no 0 6 0 0 0 0 1 +RPL forms rpl R RP RPL RPL BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 2 0 () 2 9 0 0 0 0 1 +within Instances within w wi wit with BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 0 , 1 10 0 0 0 0 1 +an Objective an a an an an BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 2 0 (). 3 9 0 0 0 0 1 +6TiSCH node, 6tisch 6 6T 6Ti 6TiS BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 0 ,(),, 5 9 0 0 0 0 1 +HC terminator, hc H HC HC HC BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 2 0 ,. 2 9 0 0 0 0 1 +6LBR is 6lbr 6 6L 6LB 6LBR BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 0 . 1 9 0 0 0 0 1 +section 3.1 section s se sec sect BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 0 .[],"..." 9 9 0 0 0 0 1 +and "3.1.3. and a an and and BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 0 "...,,". 8 8 0 0 0 0 1 +artifacts in artifacts a ar art arti BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 0 no 0 9 0 0 0 0 1 +addition 6LoRH addition a ad add addi BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 0 []. 3 3 0 0 0 0 1 +Additional routing additional A Ad Add Addi BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 3 no 0 9 0 0 0 0 1 +establish on-demand establish e es est esta BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 3 --- 3 8 0 0 0 0 1 +characteristics inside characteristics c ch cha char BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 3 . 1 10 0 0 0 0 1 +centralized fashion centralized c ce cen cent BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 3 ()[] 4 9 0 0 0 0 1 +programs both programs p pr pro prog BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 3 , 1 9 0 0 0 0 1 +or by or o or or or BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 3 no 0 10 0 0 0 0 1 +a Hop-by-Hop a a a a a BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 1 0 0 0 0 0 2 3 --. 3 4 0 0 0 0 1 +This architecture this T Th Thi This BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 5 no 0 9 0 0 0 0 1 +to a to t to to to BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 5 , 1 10 0 0 0 0 1 +to connect to t to to to BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 5 no 0 10 0 0 0 0 1 +to the to t to to to BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 5 . 1 9 0 0 0 0 1 +6LoWPAN node 6lowpan 6 6L 6Lo 6LoW BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 5 no 0 9 0 0 0 0 1 +connect as connect c co con conn BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 5 [-.---]. 8 8 0 0 0 0 1 +3.2. A 3.2. 3 3. 3.2 3.2. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 7 ..- 3 10 0 0 0 0 1 +An extended an A An An An BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 2 7 no 0 9 0 0 0 0 1 +illustrated in illustrated i il ill illu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 7 ., 2 9 0 0 0 0 1 +Registrar [RFC8505] registrar R Re Reg Regi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 7 [] 2 9 0 0 0 0 1 +Root and root R Ro Roo Root BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 2 7 / 1 9 0 0 0 0 1 +campus / campus c ca cam camp BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 7 /-- 3 10 0 0 0 0 1 +haul link. haul h ha hau haul BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 7 . 1 8 0 0 0 0 1 +operations, or operations, o op ope oper BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 7 , 1 9 0 0 0 0 1 +such as such s su suc such BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 7 [][], 5 9 0 0 0 0 1 +mobility protocol mobility m mo mob mobi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 7 [],[], 6 9 0 0 0 0 1 +[RFC6830]. [RFC6830]. [rfc6830]. [ [R [RF [RFC BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 7 []. 3 1 0 0 0 0 1 +Multiple LLNs multiple M Mu Mul Mult BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 10 no 0 10 0 0 0 0 1 +backbone, which backbone, b ba bac back BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 10 ,. 2 9 0 0 0 0 1 +with IPv6 with w wi wit with BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 10 [][] 4 9 0 0 0 0 1 +and 6LoWPAN and a an and and BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 10 [][][-.---]. 12 7 0 0 0 0 1 +Thubert Thubert thubert T Th Thu Thub BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 2 11 no 0 3 0 0 0 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 11 , 1 10 0 0 0 0 0 +[Page 14] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 11 [] 2 3 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 2 0 - 1 10 0 0 1 0 1 +6tisch-architecture 6tisch-architecture 6tisch-architecture 6 6t 6ti 6tis BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 0 - 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 2 0 no 0 6 0 0 0 0 1 +| | | | | | | BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 0 0 0 0 0 1 ++-----+ +-----+ +-----+ + +- +-- +--- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 2 0 ----- 5 1 0 0 0 0 1 ++-----+ +-----+ +-----+ + +- +-- +--- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 2 0 ----- 5 1 0 0 0 0 1 ++-----+ +-----+ +-----+ + +- +-- +--- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 2 0 ----- 5 1 0 0 0 0 1 +(default) | (default) ( (d (de (def BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 0 () 2 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 0 0 0 0 0 1 +(Optional) | (optional) ( (O (Op (Opt BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 0 () 2 2 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 0 0 0 0 0 1 +| IPv6 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 1 0 0 0 0 1 +Router | router R Ro Rou Rout BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 2 0 no 0 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 0 0 0 0 0 1 +6LBR | 6lbr 6 6L 6LB 6LBR BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 0 no 0 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 0 0 0 0 0 1 +| Node | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 1 0 0 0 0 1 ++-----+ +-----+ +-----+ + +- +-- +--- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 2 0 ----- 5 1 0 0 0 0 1 ++-----+ +-----+ +-----+ + +- +-- +--- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 2 0 ----- 5 1 0 0 0 0 1 ++-----+ +-----+ +-----+ + +- +-- +--- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 2 0 ----- 5 1 0 0 0 0 1 +| Backbone | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 2 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 0 0 0 0 0 1 +--------+---+--------------------+-+---------------+------+--- --------+---+--------------------+-+---------------+------+--- --------+---+--------------------+-+---------------+------+--- - -- --- ---- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 2 0 -------------------------------------------------------- 56 10 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 0 0 0 0 0 1 ++-----------+ +-----------+ +-----------+ + +- +-- +--- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 2 0 ----------- 11 2 0 0 0 0 1 ++-----------+ +-----------+ +-----------+ + +- +-- +--- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 2 0 ----------- 11 2 0 0 0 0 1 ++-----------+ +-----------+ +-----------+ + +- +-- +--- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 2 0 ----------- 11 2 0 0 0 0 1 +| Routing | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 0 0 0 0 0 1 +| Routing | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 0 0 0 0 0 1 +| Routing | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 0 0 0 0 0 1 +| Registrar | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 2 0 0 0 0 1 +| Registrar | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 2 0 0 0 0 1 +| Registrar | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 2 0 0 0 0 1 ++-----------+ +-----------+ +-----------+ + +- +-- +--- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 2 0 ----------- 11 2 0 0 0 0 1 ++-----------+ +-----------+ +-----------+ + +- +-- +--- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 2 0 ----------- 11 2 0 0 0 0 1 ++-----------+ +-----------+ +-----------+ + +- +-- +--- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 2 0 ----------- 11 2 0 0 0 0 1 +o o o o o o o BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 0 0 0 0 0 1 +Wireless side wireless W Wi Wir Wire BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 0 no 0 2 0 0 0 0 1 +o o o o o o o BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 0 0 0 0 0 1 +o o o o o o o BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 0 0 0 0 0 1 +o o o o o o o BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 0 0 0 0 0 1 +o o o o o o o BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 0 0 0 0 0 1 +o o o o o o o BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 0 0 0 0 0 1 +o o o o o o o BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 0 0 0 0 0 1 +o o o o o o o BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 1 0 0 0 0 1 +o o o o o o o BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 0 0 0 0 0 1 +6TiSCH 6TiSCH 6tisch 6 6T 6Ti 6TiS BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 0 no 0 1 0 0 0 0 1 +o o o o o o o BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 0 0 0 0 0 1 +6TiSCH 6TiSCH 6tisch 6 6T 6Ti 6TiS BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 0 no 0 1 0 0 0 0 1 +o o o o o o o BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 0 0 0 0 0 1 +o o o o o o o BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 2 0 0 0 0 1 +o o o o o o o BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 0 0 0 0 0 1 +o LLN o o o o o BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 0 0 0 0 0 1 +o o o o o o o BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 0 0 0 0 0 1 +o o o o o o o BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 1 0 0 0 0 1 +o o o o o o o BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 0 0 0 0 0 1 +o o o o o o o BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 0 0 0 0 0 1 +LLN LLN lln L LL LLN LLN BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 2 0 no 0 0 0 0 0 0 1 +o o o o o o o BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 0 0 0 0 0 1 +o o o o o o o BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 0 0 0 0 0 1 +o o o o o o o BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 1 0 0 0 0 1 +o o o o o o o BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 1 0 0 0 0 1 +o o o o o o o BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 0 0 0 0 0 1 +o o o o o o o BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 0 0 0 0 0 1 +o o o o o o o BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 0 0 0 0 0 1 +Figure 2: figure F Fi Fig Figu BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 5 : 1 10 0 0 0 0 1 +A Routing a A A A A BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 1 0 0 0 0 0 2 5 no 0 9 0 0 0 0 1 +backbone on backbone b ba bac back BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 5 no 0 9 0 0 0 0 1 +(6BBR) [I-D.ietf-6lo-backbone-router]. (6bbr) ( (6 (6B (6BB BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 5 ()[-.---]. 10 9 0 0 0 0 1 +the wireless the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 5 , 1 10 0 0 0 0 1 +to form to t to to to BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 5 . 1 9 0 0 0 0 1 +another over another a an ano anot BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 5 , 1 9 0 0 0 0 1 +that form that t th tha that BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 5 . 1 7 0 0 0 0 1 +The use the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 7 no 0 9 0 0 0 0 1 +registrar that registrar r re reg regi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 7 no 0 9 0 0 0 0 1 +well as well w we wel well BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 7 /. 2 10 0 0 0 0 1 +[I-D.thubert-6man-unicast-lookup] is [i-d.thubert-6man-unicast-lookup] [ [I [I- [I-D BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 7 [-.---] 7 9 0 0 0 0 1 +an example an a an an an BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 2 7 no 0 9 0 0 0 0 1 +[RFC8505], using [rfc8505], [ [R [RF [RFC BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 7 [],-, 5 9 0 0 0 0 1 +illustrated in illustrated i il ill illu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 7 . 1 3 0 0 0 0 1 +As detailed as A As As As BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 9 . 1 10 0 0 0 0 1 +of the of o of of of BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 9 no 0 9 0 0 0 0 1 +are learned are a ar are are BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 9 . 1 9 0 0 0 0 1 +preferred way preferred p pr pre pref BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 9 /. 2 9 0 0 0 0 1 +combined RPL combined c co com comb BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 9 , 1 9 0 0 0 0 1 +directly attached directly d di dir dire BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 9 ., 2 9 0 0 0 0 1 +extended registration extended e ex ext exte BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 9 [] 2 9 0 0 0 0 1 +6LoWPAN ND 6lowpan 6 6L 6Lo 6LoW BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 9 , 1 9 0 0 0 0 1 +that the that t th tha that BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 9 no 0 10 0 0 0 0 1 +the backbone. the t th the the BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 9 . 1 2 0 0 0 0 1 +Thubert Thubert thubert T Th Thu Thub BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 2 11 no 0 3 0 0 0 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 11 , 1 10 0 0 0 0 0 +[Page 15] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 11 [] 2 3 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 2 0 - 1 10 0 0 1 0 1 +6tisch-architecture 6tisch-architecture 6tisch-architecture 6 6t 6ti 6tis BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 0 - 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 2 0 no 0 6 0 0 0 0 1 +The DetNet the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 0 [-.--] 6 9 0 0 0 0 1 +Layer-3 aspects layer-3 L La Lay Laye BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 0 -, 2 10 0 0 0 0 1 +span multiple span s sp spa span BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 0 -. 2 9 0 0 0 0 1 +(such as (such ( (s (su (suc BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 0 (), 3 10 0 0 0 0 1 +the Backbone the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 0 -- 2 9 0 0 0 0 1 +behavior is behavior b be beh beha BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 0 . 1 8 0 0 0 0 1 +3.3. TSCH: 3.3. 3 3. 3.3 3.3. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 2 ..: 3 10 0 0 0 0 1 +Though at though T Th Tho Thou BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 2 (), 3 10 0 0 0 0 1 +IEEE Std. ieee I IE IEE IEEE BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 2 2 ..... 5 9 0 0 0 0 1 +Deterministic capabilities deterministic D De Det Dete BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 2 2 no 0 9 0 0 0 0 1 +to a to t to to to BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 2 no 0 10 0 0 0 0 1 +a precise a a a a a BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 1 0 0 0 0 0 2 2 , 1 8 0 0 0 0 1 +intermediate stations intermediate i in int inte BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 2 . 1 7 0 0 0 0 1 +With TSCH, with W Wi Wit With BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 4 ,, 2 8 0 0 0 0 1 +communication cells communication c co com comm BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 2 4 no 0 8 0 0 0 0 1 +communication at communication c co com comm BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 2 4 .- 2 9 0 0 0 0 1 +collisions, saves collisions, c co col coll BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 4 ,, 2 9 0 0 0 0 1 +network for network n ne net netw BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 2 4 . 1 10 0 0 0 0 1 +a simple a a a a a BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 1 0 0 0 0 0 2 4 - 1 9 0 0 0 0 1 +channel interference. channel c ch cha chan BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 4 . 1 3 0 0 0 0 1 +6TiSCH builds 6tisch 6 6T 6Ti 6TiS BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 6 ... 3 9 0 0 0 0 1 +advanced capabilities advanced a ad adv adva BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 6 no 0 10 0 0 0 0 1 +they can they t th the they BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 6 . 1 9 0 0 0 0 1 +Architecture also architecture A Ar Arc Arch BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 6 no 0 9 0 0 0 0 1 +route computation route r ro rou rout BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 6 , 1 9 0 0 0 0 1 +relies on relies r re rel reli BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 6 no 0 5 0 0 0 0 1 +[I-D.ietf-detnet-architecture], and [i-d.ietf-detnet-architecture], [ [I [I- [I-D BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 6 [-.--], 7 10 0 0 0 0 1 +[PCE], for [pce], [ [P [PC [PCE BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 2 6 [],. 4 4 0 0 0 0 1 +On top on O On On On BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 8 , 1 9 0 0 0 0 1 +routing and routing r ro rou rout BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 2 8 no 0 9 0 0 0 0 1 +and capabilities and a an and and BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 8 . 1 9 0 0 0 0 1 +These distributed these T Th The Thes BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 8 no 0 9 0 0 0 0 1 +deployment of deployment d de dep depl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 2 8 no 0 10 0 0 0 0 1 +variety of variety v va var vari BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 8 . 1 8 0 0 0 0 1 +Examples of examples E Ex Exa Exam BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 8 - 1 9 0 0 0 0 1 +setup and setup s se set setu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 8 , 1 9 0 0 0 0 1 +importance measurements importance i im imp impo BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 8 no 0 9 0 0 0 0 1 +workers accessing workers w wo wor work BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 8 . 1 4 0 0 0 0 1 +Thubert Thubert thubert T Th Thu Thub BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 2 11 no 0 3 0 0 0 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 11 , 1 10 0 0 0 0 0 +[Page 16] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 11 [] 2 3 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 2 0 - 1 10 0 0 1 0 1 +6tisch-architecture 6tisch-architecture 6tisch-architecture 6 6t 6ti 6tis BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 0 - 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 2 0 no 0 6 0 0 0 0 1 +3.4. Scheduling 3.4. 3 3. 3.4 3.4. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 0 .. 2 10 0 0 0 0 1 +A scheduling a A A A A BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 1 0 0 0 0 0 2 0 -- 2 8 0 0 0 0 1 +Multiplexing (TDM) multiplexing M Mu Mul Mult BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 2 0 ()/-() 6 9 0 0 0 0 1 +called the called c ca cal call BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 0 /() 3 9 0 0 0 0 1 +transmissions or transmissions t tr tra tran BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 0 -. 2 9 0 0 0 0 1 +can be can c ca can can BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 0 no 0 9 0 0 0 0 1 +particular nodes particular p pa par part BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 0 . 1 10 0 0 0 0 1 +More in more M Mo Mor More BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 0 ... 3 3 0 0 0 0 1 +From the from F Fr Fro From BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 2 (), 3 10 0 0 0 0 1 +is the is i is is is BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 2 no 0 9 0 0 0 0 1 +transmission, and transmission, t tr tra tran BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 2 , 1 9 0 0 0 0 1 +listen at listen l li lis list BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 2 . 1 9 0 0 0 0 1 +slotframes that slotframes s sl slo slot BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 2 . 1 9 0 0 0 0 1 +require a require r re req requ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 2 , 1 8 0 0 0 0 1 +slotframe with slotframe s sl slo slot BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 2 . 1 7 0 0 0 0 1 +The 6top the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 4 (.) 3 10 0 0 0 0 1 +the schedule the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 4 . 1 9 0 0 0 0 1 +traffic utilizes traffic t tr tra traf BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 4 -, 2 9 0 0 0 0 1 +to receive to t to to to BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 4 ., 2 9 0 0 0 0 1 +which case which w wh whi whic BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 4 . 1 8 0 0 0 0 1 +Scheduling enables scheduling S Sc Sch Sche BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 2 5 no 0 10 0 0 0 0 1 +interference domain interference i in int inte BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 5 ; 1 9 0 0 0 0 1 +with a with w wi wit with BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 5 no 0 9 0 0 0 0 1 +channel at channel c ch cha chan BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 5 . 1 9 0 0 0 0 1 +role, e.g., role, r ro rol role BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 5 ,..,,. 6 10 0 0 0 0 1 +The 6TiSCH the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 7 no 0 9 0 0 0 0 1 +managed and managed m ma man mana BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 7 :,- 3 10 0 0 0 0 1 +to-Neighbor Scheduling, to-neighbor t to to- to-N BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 7 -,() 4 9 0 0 0 0 1 +Schedule Management, schedule S Sc Sch Sche BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 7 ,--. 4 7 0 0 0 0 1 +Static Scheduling: static S St Sta Stat BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 8 : 1 9 0 0 0 0 1 +whereby a whereby w wh whe wher BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 8 no 0 10 0 0 0 0 1 +use in use u us use use BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 8 [-]. 4 9 0 0 0 0 1 +distributed through distributed d di dis dist BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 8 no 0 9 0 0 0 0 1 +does not does d do doe does BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 8 - 1 9 0 0 0 0 1 +same 6TiSCH same s sa sam same BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 8 . 1 9 0 0 0 0 1 +operations such operations o op ope oper BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 2 8 no 0 9 0 0 0 0 1 +during the during d du dur duri BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 8 , 1 9 0 0 0 0 1 +Minimal 6TiSCH minimal M Mi Min Mini BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 8 []. 3 6 0 0 0 0 1 +Neighbor-to-Neighbor Scheduling: neighbor-to-neighbor N Ne Nei Neig BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 2 10 --: 3 9 0 0 0 0 1 +adaptation of adaptation a ad ada adap BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 10 no 0 9 0 0 0 0 1 +traffic between traffic t tr tra traf BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 10 . 1 10 0 0 0 0 1 +Thubert Thubert thubert T Th Thu Thub BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 2 11 no 0 3 0 0 0 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 11 , 1 10 0 0 0 0 0 +[Page 17] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 11 [] 2 3 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 2 0 - 1 10 0 0 1 0 1 +6tisch-architecture 6tisch-architecture 6tisch-architecture 6 6t 6ti 6tis BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 0 - 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 2 0 no 0 6 0 0 0 0 1 +"6TiSCH Minimal "6tisch " "6 "6T "6Ti BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 0 "()"[-.--] 10 9 0 0 0 0 1 +influence the influence i in inf infl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 0 , 1 10 0 0 0 0 1 +cells in cells c ce cel cell BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 0 ,'[], 5 10 0 0 0 0 1 +the negotiation the t th the the BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 0 . 1 5 0 0 0 0 1 +Centralized (or centralized C Ce Cen Cent BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 1 (): 3 9 0 0 0 0 1 +refers to refers r re ref refe BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 1 no 0 10 0 0 0 0 1 +to forward to t to to to BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 1 ., 2 9 0 0 0 0 1 +the related the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 1 no 0 10 0 0 0 0 1 +resources are resources r re res reso BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 1 no 0 9 0 0 0 0 1 +(NME), which (nme), ( (N (NM (NME BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 3 1 (), 3 8 0 0 0 0 1 +interaction with interaction i in int inte BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 3 1 . 1 9 0 0 0 0 1 +model is model m mo mod mode BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 1 "" 2 8 0 0 0 0 1 +[I-D.ietf-detnet-architecture], and [i-d.ietf-detnet-architecture], [ [I [I- [I-D BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 1 [-.--], 7 10 0 0 0 0 1 +with deterministic with w wi wit with BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 1 . 1 4 0 0 0 0 1 +Hop-by-hop Scheduling: hop-by-hop H Ho Hop Hop- BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 3 4 --: 3 10 0 0 0 0 1 +cells along cells c ce cel cell BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 4 no 0 9 0 0 0 0 1 +mechanism. mechanism. mechanism. m me mec mech BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 4 . 1 1 0 0 0 0 1 +It is it I It It It BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 5 no 0 8 0 0 0 0 1 +mechanisms. Static mechanisms. m me mec mech BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 5 . 1 9 0 0 0 0 1 +only one only o on onl only BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 5 , 1 10 0 0 0 0 1 +simple and simple s si sim simp BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 5 no 0 8 0 0 0 0 1 +distribution. distribution. distribution. d di dis dist BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 5 . 1 2 0 0 0 0 1 +A deeper a A A A A BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 1 0 0 0 0 0 3 6 .. 2 10 0 0 0 0 1 +3.5. Distributed 3.5. 3 3. 3.5 3.5. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 3 6 ... 3 10 0 0 0 0 1 +6TiSCH enables 6tisch 6 6T 6Ti 6TiS BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 3 6 no 0 9 0 0 0 0 1 +routes. Centralized routes. r ro rou rout BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 6 . 1 10 0 0 0 0 1 +such as such s su suc such BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 6 .[] 3 9 0 0 0 0 1 +for interoperable for f fo for for BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 6 . 1 7 0 0 0 0 1 +Both methods both B Bo Bot Both BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 7 no 0 9 0 0 0 0 1 +routers. In routers. r ro rou rout BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 7 ., 2 9 0 0 0 0 1 +topology that topology t to top topo BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 7 . 1 10 0 0 0 0 1 +topology is topology t to top topo BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 7 , 1 10 0 0 0 0 1 +RPLInstanceID as rplinstanceid R RP RPL RPLI BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 3 7 . 1 4 0 0 0 0 1 +RPL [RFC6550] rpl R RP RPL RPL BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 3 9 []-- 4 9 0 0 0 0 1 +Neighbor Scheduling. neighbor N Ne Nei Neig BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 9 . 1 9 0 0 0 0 1 +routing model routing r ro rou rout BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 3 9 . 1 9 0 0 0 0 1 +expected that expected e ex exp expe BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 9 -- 2 9 0 0 0 0 1 +point routing point p po poi poin BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 9 [],-- 5 10 0 0 0 0 1 +in Low-Power in i in in in BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 3 9 -"[-.---]-), 12 9 0 0 0 0 1 +which derives which w wh whi whic BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 9 - 1 9 0 0 0 0 1 +Thubert Thubert thubert T Th Thu Thub BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 3 11 no 0 3 0 0 0 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 11 , 1 10 0 0 0 0 0 +[Page 18] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 11 [] 2 3 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 3 0 - 1 10 0 0 1 0 1 +6tisch-architecture 6tisch-architecture 6tisch-architecture 6 6t 6ti 6tis BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 3 0 - 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 3 0 no 0 6 0 0 0 0 1 +(AODV) [I-D.ietf-manet-aodvv2] (aodv) ( (A (AO (AOD BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 3 0 ()[-.--]-- 10 10 0 0 0 0 1 +Scheduling. Scheduling. scheduling. S Sc Sch Sche BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 0 . 1 1 0 0 0 0 1 +Both RPL both B Bo Bot Both BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 0 no 0 9 0 0 0 0 1 +Global and global G Gl Glo Glob BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 0 . 1 9 0 0 0 0 1 +It is it I It It It BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 0 no 0 9 0 0 0 0 1 +same topology. same s sa sam same BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 0 ., 2 10 0 0 0 0 1 +and centralized and a an and and BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 0 no 0 9 0 0 0 0 1 +have precedence have h ha hav have BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 0 no 0 10 0 0 0 0 1 +the slotframes. the t th the the BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 0 . 1 2 0 0 0 0 1 +3.6. Forwarding 3.6. 3 3. 3.6 3.6. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 3 2 .. 2 10 0 0 0 0 1 +The 6TiSCH the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 2 . 1 9 0 0 0 0 1 +One is one O On One One BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 2 , 1 9 0 0 0 0 1 +feasible successor feasible f fe fea feas BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 2 - 1 10 0 0 0 0 1 +routing table. routing r ro rou rout BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 3 2 .(-)- 5 9 0 0 0 0 1 +called Track called c ca cal call BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 2 , 1 9 0 0 0 0 1 +timeslot can timeslot t ti tim time BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 2 - 1 9 0 0 0 0 1 +regard to regard r re reg rega BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 2 . 1 9 0 0 0 0 1 +Fragment Forwarding, fragment F Fr Fra Frag BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 2 , 1 9 0 0 0 0 1 +fragments along fragments f fr fra frag BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 2 . 1 8 0 0 0 0 1 +In more in I In In In BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 3 5 : 1 10 0 0 0 0 1 +IPv6 Forwarding: ipv6 I IP IPv IPv6 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 3 5 :, 2 10 0 0 0 0 1 +Routing Information routing R Ro Rou Rout BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 3 5 () 2 9 0 0 0 0 1 +routing protocol routing r ro rou rout BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 3 5 no 0 9 0 0 0 0 1 +packet. The packet. p pa pac pack BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 5 ., 2 9 0 0 0 0 1 +layer maps layer l la lay laye BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 5 (-), 4 9 0 0 0 0 1 +transmission based transmission t tr tra tran BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 5 ., 2 9 0 0 0 0 1 +also applies also a al als also BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 5 no 0 9 0 0 0 0 1 +6TiSCH network, 6tisch 6 6T 6Ti 6TiS BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 3 5 , 1 9 0 0 0 0 1 +models, Static, models, m mo mod mode BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 5 ,,----. 7 9 0 0 0 0 1 +G-MPLS Track g-mpls G G- G-M G-MP BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 3 8 -: 2 9 0 0 0 0 1 +Monitoring and monitoring M Mo Mon Moni BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 8 ., 2 9 0 0 0 0 1 +controller (hosting controller c co con cont BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 8 () 2 9 0 0 0 0 1 +the devices the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 8 .(-) 4 9 0 0 0 0 1 +the previous the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 8 (-) 3 10 0 0 0 0 1 +bundle towards bundle b bu bun bund BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 8 no 0 9 0 0 0 0 1 +PCE. The pce. P PC PCE PCE. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 3 8 . 1 9 0 0 0 0 1 +can assume can c ca can can BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 8 no 0 9 0 0 0 0 1 +sequence of sequence s se seq sequ BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 8 . 1 2 0 0 0 0 1 +6LoWPAN Fragment 6lowpan 6 6L 6Lo 6LoW BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 3 10 : 1 9 0 0 0 0 1 +from IPv6 from f fr fro from BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 10 no 0 10 0 0 0 0 1 +at the at a at at at BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 10 . 1 9 0 0 0 0 1 +Thubert Thubert thubert T Th Thu Thub BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 3 11 no 0 3 0 0 0 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 11 , 1 10 0 0 0 0 0 +[Page 19] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 11 [] 2 3 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 3 0 - 1 10 0 0 1 0 1 +6tisch-architecture 6tisch-architecture 6tisch-architecture 6 6t 6ti 6tis BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 3 0 - 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 3 0 no 0 6 0 0 0 0 1 +IPv6 packet ipv6 I IP IPv IPv6 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 3 0 no 0 10 0 0 0 0 1 +forwarding of forwarding f fo for forw BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 0 no 0 9 0 0 0 0 1 +without the without w wi wit with BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 0 . 1 8 0 0 0 0 1 +A deeper a A A A A BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 1 0 0 0 0 0 3 1 .. 2 10 0 0 0 0 1 +The following the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 1 no 0 10 0 0 0 0 1 +various routing various v va var vari BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 1 : 1 6 0 0 0 0 1 ++-------------------+------------+----------------------------------+ +-------------------+------------+----------------------------------+ +-------------------+------------+----------------------------------+ + +- +-- +--- BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 3 2 ----------------------------------------------------------------- 65 10 0 0 0 0 1 +| Forwarding | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 3 2 no 0 4 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 3 2 no 0 0 0 0 0 0 1 +Scheduling Scheduling scheduling S Sc Sch Sche BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 3 2 no 0 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 3 2 no 0 0 0 0 0 0 1 ++===================+============+==================================+ +===================+============+==================================+ +===================+============+==================================+ + += +== +=== BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 3 2 no 0 10 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 3 2 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 3 2 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 3 2 no 0 0 0 0 0 0 1 +Static (Minimal static S St Sta Stat BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 2 () 2 4 0 0 0 0 1 ++ classical + + + + + BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 3 2 no 0 2 0 0 0 0 1 ++ + + + + + + BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 3 2 no 0 0 0 0 0 0 1 +RPL RPL rpl R RP RPL RPL BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 3 2 no 0 0 0 0 0 0 1 ++----------------------------------+ +----------------------------------+ +----------------------------------+ + +- +-- +--- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 3 2 ---------------------------------- 34 5 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 3 2 no 0 0 0 0 0 0 1 +/ / / / / / / BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 3 2 / 1 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 3 2 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 3 2 no 0 0 0 0 0 0 1 +Neighbor-to-Neighbor (SF+6P) neighbor-to-neighbor N Ne Nei Neig BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 3 2 --() 4 4 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 3 2 no 0 0 0 0 0 0 1 ++ 6LoWPAN + + + + + BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 3 2 ---------------------------------------------- 46 9 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 3 2 no 0 0 0 0 0 0 1 +| Reactive | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 3 2 no 0 1 0 0 0 0 1 +Hop-by-Hop (AODV-RPL) hop-by-hop H Ho Hop Hop- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 3 2 --(-) 5 3 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 3 2 no 0 0 0 0 0 0 1 ++-------------------+------------+----------------------------------+ +-------------------+------------+----------------------------------+ +-------------------+------------+----------------------------------+ + +- +-- +--- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 3 2 ----------------------------------------------------------------- 65 10 0 0 0 0 1 +|G-MPLS Track |g-mpls | |G |G- |G-M BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 3 2 - 1 3 0 0 0 0 1 +PCE PCE pce P PC PCE PCE BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 3 2 no 0 0 0 0 0 0 1 +|Remote Monitoring |remote | |R |Re |Rem BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 2 no 0 5 0 0 0 0 1 ++-------------------+------------+----------------------------------+ +-------------------+------------+----------------------------------+ +-------------------+------------+----------------------------------+ + +- +-- +--- BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 3 2 ----------------------------------------------------------------- 65 10 0 0 0 0 1 +3.7. 6TiSCH 3.7. 3 3. 3.7 3.7. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 3 8 .. 2 10 0 0 0 0 1 +The IETF the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 8 no 0 10 0 0 0 0 1 +related to related r re rel rela BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 8 ,. 2 6 0 0 0 0 1 +The 6TiSCH the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 9 no 0 9 0 0 0 0 1 +and recommends and a an and and BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 9 no 0 9 0 0 0 0 1 +control the control c co con cont BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 9 no 0 8 0 0 0 0 1 +interactions, and interactions, i in int inte BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 9 ,. 2 10 0 0 0 0 1 +particular, UDP particular, p pa par part BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 9 ,[],[] 6 8 0 0 0 0 1 +Application Protocol application A Ap App Appl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 9 []()/ 5 9 0 0 0 0 1 +binding of binding b bi bin bind BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 9 no 0 9 0 0 0 0 1 +and HTTP. and a an and and BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 9 . 1 1 0 0 0 0 1 +The resulting the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 11 : 1 10 0 0 0 0 1 +Thubert Thubert thubert T Th Thu Thub BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 3 11 no 0 3 0 0 0 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 11 , 1 10 0 0 0 0 0 +[Page 20] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 11 [] 2 3 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 3 0 - 1 10 0 0 1 0 1 +6tisch-architecture 6tisch-architecture 6tisch-architecture 6 6t 6ti 6tis BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 3 0 - 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 3 0 no 0 6 0 0 0 0 1 ++--------+--------+ +--------+--------+ +--------+--------+ + +- +-- +--- BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 3 0 ---------------- 16 3 0 0 0 0 1 +| Applis | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 3 0 no 0 2 0 0 0 0 1 ++--------+--------+--------------+-----+ +--------+--------+--------------+-----+ +--------+--------+--------------+-----+ + +- +-- +--- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 3 0 ----------------------------------- 35 6 0 0 0 0 1 +| CoAP | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 3 0 / 1 2 0 0 0 0 1 +| 6LoWPAN | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 3 0 no 0 3 0 0 0 0 1 ++-----------------+--------------+-----+ +-----------------+--------------+-----+ +-----------------+--------------+-----+ + +- +-- +--- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 3 0 ------------------------------------ 36 6 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 3 0 no 0 0 0 0 0 0 1 +UDP UDP udp U UD UDP UDP BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 3 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 3 0 no 0 0 0 0 0 0 1 +ICMPv6 ICMPv6 icmpv6 I IC ICM ICMP BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 3 0 no 0 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 3 0 no 0 0 0 0 0 0 1 ++-----------------+--------------------+ +-----------------+--------------------+ +-----------------+--------------------+ + +- +-- +--- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 3 0 ------------------------------------- 37 6 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 3 0 no 0 0 0 0 0 0 1 +IPv6 IPv6 ipv6 I IP IPv IPv6 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 3 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 3 0 no 0 0 0 0 0 0 1 ++--------------------------------------+----------------------+ +--------------------------------------+----------------------+ +--------------------------------------+----------------------+ + +- +-- +--- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 3 0 ------------------------------------------------------------ 60 10 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 3 0 no 0 0 0 0 0 0 1 +6LoWPAN HC 6lowpan 6 6L 6Lo 6LoW BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 3 0 no 0 1 0 0 0 0 1 +/ / / / / / / BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 3 0 / 1 0 0 0 0 0 1 +6LoRH HC 6lorh 6 6L 6Lo 6LoR BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 3 0 no 0 1 0 0 0 0 1 +| Scheduling | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 3 0 no 0 3 0 0 0 0 1 ++--------------------------------------+----------------------+ +--------------------------------------+----------------------+ +--------------------------------------+----------------------+ + +- +-- +--- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 3 0 ------------------------------------------------------------ 60 10 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 3 0 no 0 0 0 0 0 0 1 +6top inc. 6top 6 6t 6to 6top BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 3 0 . 1 3 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 3 0 no 0 0 0 0 0 0 1 ++-------------------------------------------------------------+ +-------------------------------------------------------------+ +-------------------------------------------------------------+ + +- +-- +--- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 3 0 ------------------------------------------------------------- 61 10 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 3 0 no 0 0 0 0 0 0 1 +IEEE Std. ieee I IE IEE IEEE BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 3 0 ... 3 3 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 3 0 no 0 0 0 0 0 0 1 ++-------------------------------------------------------------+ +-------------------------------------------------------------+ +-------------------------------------------------------------+ + +- +-- +--- BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 3 0 ------------------------------------------------------------- 61 10 0 0 0 0 1 +Figure 4: figure F Fi Fig Figu BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 5 : 1 10 0 0 0 0 1 +RPL is rpl R RP RPL RPL BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 3 5 ., 2 9 0 0 0 0 1 +identified need identified i id ide iden BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 5 . 1 9 0 0 0 0 1 +Minimal 6TiSCH minimal M Mi Min Mini BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 5 [] 2 10 0 0 0 0 1 +over a over o ov ove over BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 5 [-], 4 9 0 0 0 0 1 +whereby all whereby w wh whe wher BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 5 no 0 9 0 0 0 0 1 +both unicast both b bo bot both BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 5 . 1 5 0 0 0 0 1 +The 6LoWPAN the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 7 [] 2 10 0 0 0 0 1 +and UDP and a an and and BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 7 ,()[] 5 10 0 0 0 0 1 +is used is i is is is BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 7 , 1 9 0 0 0 0 1 +including the including i in inc incl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 7 (),-- 5 8 0 0 0 0 1 +encapsulation to/from encapsulation e en enc enca BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 7 /,() 4 10 0 0 0 0 1 +in non-storing in i in in in BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 3 7 -.",--" 7 9 0 0 0 0 1 +[I-D.ietf-roll-useofrplinfo] provides [i-d.ietf-roll-useofrplinfo] [ [I [I- [I-D BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 7 [-.--] 6 9 0 0 0 0 1 +encapsulation are encapsulation e en enc enca BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 7 . 1 3 0 0 0 0 1 +The Object the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 9 () 2 9 0 0 0 0 1 +[I-D.ietf-core-object-security], is [i-d.ietf-core-object-security], [ [I [I- [I-D BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 9 [-.---], 8 10 0 0 0 0 1 +Protocol (CoJP) protocol P Pr Pro Prot BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 9 () 2 9 0 0 0 0 1 +protection of protection p pr pro prot BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 9 . 1 9 0 0 0 0 1 +payload may payload p pa pay payl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 9 no 0 8 0 0 0 0 1 +Security (DTLS) security S Se Sec Secu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 3 9 ()[] 4 9 0 0 0 0 1 +it can it i it it it BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 9 . 1 3 0 0 0 0 1 +The 6TiSCH the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 10 () 2 9 0 0 0 0 1 +Control (LLC) control C Co Con Cont BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 10 () 2 10 0 0 0 0 1 +MAC and mac M MA MAC MAC BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 1 1 0 0 0 0 0 3 10 , 1 9 0 0 0 0 1 +the next the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 10 , 1 9 0 0 0 0 1 +with the with w wi wit with BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 10 ()[]. 5 5 0 0 0 0 1 +Thubert Thubert thubert T Th Thu Thub BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 3 11 no 0 3 0 0 0 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 11 , 1 10 0 0 0 0 0 +[Page 21] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 11 [] 2 3 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 3 0 - 1 10 0 0 1 0 1 +6tisch-architecture 6tisch-architecture 6tisch-architecture 6 6t 6ti 6tis BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 3 0 - 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 3 0 no 0 6 0 0 0 0 1 +The reference the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 0 no 0 9 0 0 0 0 1 +interop-tested by interop-tested i in int inte BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 0 -,. 3 10 0 0 0 0 1 +One goal one O On One One BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 0 , 1 9 0 0 0 0 1 +making the making m ma mak maki BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 0 -. 2 8 0 0 0 0 1 +For a for F Fo For For BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 1 , 1 9 0 0 0 0 1 +this architecture this t th thi this BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 1 ., 2 9 0 0 0 0 1 +required for required r re req requ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 1 --, 3 10 0 0 0 0 1 +and the and a an and and BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 1 - 1 8 0 0 0 0 1 +constrained cases constrained c co con cons BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 1 -(). 4 9 0 0 0 0 1 +In such in I In In In BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 3 1 , 1 9 0 0 0 0 1 +selection that selection s se sel sele BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 1 no 0 9 0 0 0 0 1 +components to components c co com comp BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 1 . 1 7 0 0 0 0 1 +3.8. Communication 3.8. 3 3. 3.8 3.8. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 3 3 .. 2 10 0 0 0 0 1 +Section 2.1 section S Se Sec Sect BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 3 . 1 8 0 0 0 0 1 +Interaction Models, interaction I In Int Inte BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 3 3 ," 2 9 0 0 0 0 1 +Information Models information I In Inf Info BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 3 "[]. 4 9 0 0 0 0 1 +Paradigm would paradigm P Pa Par Para BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 3 , 1 10 0 0 0 0 1 +come with come c co com come BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 3 no 0 9 0 0 0 0 1 +exchanged. In exchanged. e ex exc exch BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 3 ., 2 9 0 0 0 0 1 +and could and a an and and BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 3 no 0 9 0 0 0 0 1 +state transfer state s st sta stat BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 3 ()"" 4 9 0 0 0 0 1 +for the for f fo for for BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 3 . 1 8 0 0 0 0 1 +Section 2.1.3 section S Se Sec Sect BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 6 ..[-.----] 10 9 0 0 0 0 1 +next sections next n ne nex next BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 6 -,- 3 9 0 0 0 0 1 +sink (SS) sink s si sin sink BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 6 ()() 4 9 0 0 0 0 1 +used for used u us use used BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 6 ,-(,/) 6 9 0 0 0 0 1 +is typically is i is is is BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 6 ,--() 5 10 0 0 0 0 1 +Peer-to-multipeer (P2MP) peer-to-multipeer P Pe Pee Peer BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 3 6 --(). 5 5 0 0 0 0 1 +Additional considerations additional A Ad Add Addi BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 8 -, 2 10 0 0 0 0 1 +redundancy -and redundancy r re red redu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 8 --. 3 9 0 0 0 0 1 +paradigms are paradigms p pa par para BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 8 , 1 9 0 0 0 0 1 +major use major m ma maj majo BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 3 8 ... 3 9 0 0 0 0 1 +[ISA100.11a] and [isa100.11a] [ [I [IS [ISA BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 3 8 [.][], 6 10 0 0 0 0 1 +[HART] applications [hart] [ [H [HA [HAR BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 3 8 []. 3 4 0 0 0 0 1 +This document this T Th Thi This BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 9 no 0 9 0 0 0 0 1 +Models for models M Mo Mod Mode BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 9 (). 3 9 0 0 0 0 1 +Management mechanisms management M Ma Man Mana BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 3 9 -(-), 5 9 0 0 0 0 1 +Network-layer (multihop network-layer N Ne Net Netw BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 9 -(),-( 6 10 0 0 0 0 1 +control) are control) c co con cont BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 9 )..- 4 9 0 0 0 0 1 +interactions are interactions i in int inte BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 9 .,- 3 9 0 0 0 0 1 +routing is routing r ro rou rout BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 3 9 .. 2 5 0 0 0 0 1 +Thubert Thubert thubert T Th Thu Thub BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 3 11 no 0 3 0 0 0 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 11 , 1 10 0 0 0 0 0 +[Page 22] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 11 [] 2 3 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 3 0 - 1 10 0 0 1 0 1 +6tisch-architecture 6tisch-architecture 6tisch-architecture 6 6t 6ti 6tis BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 3 0 - 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 3 0 no 0 6 0 0 0 0 1 +4. Architecture 4. 4 4. 4. 4. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 3 0 . 1 10 0 0 0 0 1 +4.1. 6LoWPAN 4.1. 4 4. 4.1 4.1. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 3 0 ..() 4 10 0 0 0 0 1 +A RPL a A A A A BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 1 0 0 0 0 0 3 0 ,, 2 9 0 0 0 0 1 +that are that t th tha that BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 0 . 1 9 0 0 0 0 1 +they did they t th the they BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 0 .- 2 9 0 0 0 0 1 +advertise their advertise a ad adv adve BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 0 ,- 2 10 0 0 0 0 1 +connected RPL connected c co con conn BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 0 . 1 9 0 0 0 0 1 +multiple levels, multiple m mu mul mult BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 0 ,- 2 9 0 0 0 0 1 +leaves. leaves. leaves. l le lea leav BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 0 . 1 1 0 0 0 0 1 +4.1.1. RPL-Unaware 4.1.1. 4 4. 4.1 4.1. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 3 2 ...- 4 10 0 0 0 0 1 +RPL needs rpl R RP RPL RPL BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 3 3 no 0 10 0 0 0 0 1 +Destination Advertisement destination D De Des Dest BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 3 () 2 9 0 0 0 0 1 +reachability. reachability. reachability. r re rea reac BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 3 . 1 2 0 0 0 0 1 +"Routing for "routing " "R "Ro "Rou BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 3 ""[-.---] 9 9 0 0 0 0 1 +basic interaction basic b ba bas basi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 3 no 0 10 0 0 0 0 1 +supports [RFC8505] supports s su sup supp BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 3 [] 2 10 0 0 0 0 1 +as an as a as as as BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 3 -. 2 8 0 0 0 0 1 +reachability services reachability r re rea reac BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 3 no 0 9 0 0 0 0 1 +Registrar by registrar R Re Reg Regi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 3 '' 2 10 0 0 0 0 1 +Option [RFC8505], option O Op Opt Opti BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 3 [], 3 9 0 0 0 0 1 +number in number n nu num numb BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 3 []. 3 5 0 0 0 0 1 +[I-D.ietf-roll-unaware-leaves] also [i-d.ietf-roll-unaware-leaves] [ [I [I- [I-D BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 6 [-.---] 7 9 0 0 0 0 1 +RPL InstanceID rpl R RP RPL RPL BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 3 6 no 0 10 0 0 0 0 1 +of the of o of of of BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 6 ., 2 9 0 0 0 0 1 +mapped to mapped m ma map mapp BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 6 ,.., 4 9 0 0 0 0 1 +LAN (VLAN) lan L LA LAN LAN BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 1 0 0 0 0 0 0 3 6 ()(). 5 9 0 0 0 0 1 +Though at though T Th Tho Thou BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 8 no 0 10 0 0 0 0 1 +model where model m mo mod mode BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 8 , 1 10 0 0 0 0 1 +to collocate to t to to to BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 8 . 1 7 0 0 0 0 1 +4.1.2. 6LBR 4.1.2. 4 4. 4.1 4.1. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 4 9 ... 3 10 0 0 0 0 1 +With the with W Wi Wit With BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 9 [], 3 8 0 0 0 0 1 +disseminated via disseminated d di dis diss BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 9 () 2 10 0 0 0 0 1 +messages. [RFC8505] messages. m me mes mess BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 9 .[][] 5 9 0 0 0 0 1 +routing and routing r ro rou rout BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 4 9 .[] 3 8 0 0 0 0 1 +indicated in indicated i in ind indi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 9 (). 3 9 0 0 0 0 1 +discovery and discovery d di dis disc BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 9 no 0 9 0 0 0 0 1 +[RFC6550] itself. [rfc6550] [ [R [RF [RFC BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 4 9 []. 3 2 0 0 0 0 1 +Thubert Thubert thubert T Th Thu Thub BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 4 11 no 0 3 0 0 0 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 11 , 1 10 0 0 0 0 0 +[Page 23] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 11 [] 2 3 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 4 0 - 1 10 0 0 1 0 1 +6tisch-architecture 6tisch-architecture 6tisch-architecture 6 6t 6ti 6tis BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 4 0 - 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 4 0 no 0 6 0 0 0 0 1 +When 6LoWPAN when W Wh Whe When BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 0 , 1 8 0 0 0 0 1 +functionalities are functionalities f fu fun func BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 0 - 1 9 0 0 0 0 1 +be indicated be b be be be BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 0 no 0 9 0 0 0 0 1 +the EDAR/EDAC the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 0 /[] 3 10 0 0 0 0 1 +RPL. RPL. rpl. R RP RPL RPL. BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 4 0 . 1 0 0 0 0 0 1 +Section 7 section S Se Sec Sect BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 1 [-.---] 7 9 0 0 0 0 1 +messages are messages m me mes mess BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 1 , 1 9 0 0 0 0 1 +duplication of duplication d du dup dupl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 1 /, 2 9 0 0 0 0 1 +illustrated in illustrated i il ill illu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 1 .[-.---] 8 8 0 0 0 0 1 +provides the provides p pr pro prov BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 1 no 0 10 0 0 0 0 1 +Root functionalities root R Ro Roo Root BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 4 1 -. 2 5 0 0 0 0 1 +Even though even E Ev Eve Even BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 3 , 1 10 0 0 0 0 1 +it is it i it it it BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 3 () 2 9 0 0 0 0 1 +used to used u us use used BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 3 ., 2 9 0 0 0 0 1 +has all has h ha has has BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 3 no 0 9 0 0 0 0 1 +attached to attached a at att atta BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 3 . 1 2 0 0 0 0 1 +This architecture this T Th Thi This BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 4 no 0 9 0 0 0 0 1 +(proxy-)registers the (proxy-)registers ( (p (pr (pro BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 4 (-), 4 10 0 0 0 0 1 +whatever operation whatever w wh wha what BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 4 , 1 9 0 0 0 0 1 +proxy, or proxy, p pr pro prox BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 4 ,. 2 9 0 0 0 0 1 +extension of extension e ex ext exte BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 4 no 0 7 0 0 0 0 1 +[I-D.ietf-6lo-backbone-router]. [I-D.ietf-6lo-backbone-router]. [i-d.ietf-6lo-backbone-router]. [ [I [I- [I-D BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 4 4 [-.---]. 8 4 0 0 0 0 1 +This model this T Th Thi This BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 6 - 1 9 0 0 0 0 1 +Link Subnet, link L Li Lin Link BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 4 6 , 1 9 0 0 0 0 1 +into the into i in int into BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 6 /.[] 4 9 0 0 0 0 1 +the Registered the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 6 no 0 10 0 0 0 0 1 +NS message ns N NS NS NS BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 4 6 ,, 2 9 0 0 0 0 1 +of a of o of of of BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 6 ,/. 3 9 0 0 0 0 1 +4.2. Network 4.2. 4 4. 4.2 4.2. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 4 8 .. 2 10 0 0 0 0 1 +4.2.1. Join 4.2.1. 4 4. 4.2 4.2. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 4 8 ... 3 10 0 0 0 0 1 +A new a A A A A BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 1 0 0 0 0 0 4 8 ,, 2 9 0 0 0 0 1 +become a become b be bec beco BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 8 . 1 9 0 0 0 0 1 +when the when w wh whe when BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 8 . 1 9 0 0 0 0 1 +the Join the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 8 /() 3 10 0 0 0 0 1 +Proxy (JP), proxy P Pr Pro Prox BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 8 (),. 4 6 0 0 0 0 1 +The JP the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 10 . 1 9 0 0 0 0 1 +from possibly from f fr fro from BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 10 , 1 9 0 0 0 0 1 +acceptable position acceptable a ac acc acce BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 10 no 0 8 0 0 0 0 1 +ineffficient. [I-D.ietf-6tisch-enrollment-enhanced-beacon] ineffficient. i in ine inef BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 10 .[-.----] 9 9 0 0 0 0 1 +new subtype new n ne new new BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 10 no 0 10 0 0 0 0 1 +Thubert Thubert thubert T Th Thu Thub BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 4 11 no 0 3 0 0 0 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 11 , 1 10 0 0 0 0 0 +[Page 24] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 11 [] 2 3 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 4 0 - 1 10 0 0 1 0 1 +6tisch-architecture 6tisch-architecture 6tisch-architecture 6 6t 6ti 6tis BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 4 0 - 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 4 0 no 0 6 0 0 0 0 1 +[RFC8137] and [rfc8137] [ [R [RF [RFC BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 4 0 [] 2 9 0 0 0 0 1 +and the and a an and and BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 0 . 1 10 0 0 0 0 1 +The join the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 1 : 1 10 0 0 0 0 1 +o Mutual o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 4 1 no 0 10 0 0 0 0 1 +o Authorization o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 4 1 no 0 10 0 0 0 0 1 +o Parameter o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 4 1 no 0 10 0 0 0 0 1 +Minimal Security minimal M Mi Min Mini BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 1 no 0 5 0 0 0 0 1 +[I-D.ietf-6tisch-minimal-security] defines [i-d.ietf-6tisch-minimal-security] [ [I [I- [I-D BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 4 1 [-.---] 7 9 0 0 0 0 1 +required for required r re req requ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 1 . 1 9 0 0 0 0 1 +specification defines specification s sp spe spec BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 1 () 2 9 0 0 0 0 1 +used to used u us use used BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 1 no 0 10 0 0 0 0 1 +established through established e es est esta BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 1 [-.---], 8 9 0 0 0 0 1 +secure configuration secure s se sec secu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 1 . 1 9 0 0 0 0 1 +with pre-shared with w wi wit with BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 1 -(), 4 9 0 0 0 0 1 +single round-trip single s si sin sing BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 1 -. 2 9 0 0 0 0 1 +to the to t to to to BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 1 , 1 9 0 0 0 0 1 +'one-touch' bootstrapping 'one-touch' ' 'o 'on 'one BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 1 '-', 4 9 0 0 0 0 1 +pledge into pledge p pl ple pled BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 1 . 1 6 0 0 0 0 1 +In certain in I In In In BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 4 5 ,'' 3 9 0 0 0 0 1 +due to due d du due due BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 5 no 0 9 0 0 0 0 1 +into the into i in int into BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 5 -. 2 9 0 0 0 0 1 +'zero-touch' extension 'zero-touch' ' 'z 'ze 'zer BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 5 '-'. 4 9 0 0 0 0 1 +Zero touch zero Z Ze Zer Zero BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 5 [-.----] 8 9 0 0 0 0 1 +leverages the leverages l le lev leve BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 5 ' 1 9 0 0 0 0 1 +(BRSKI)' [[I-D.ietf-anima-bootstrapping-keyinfra] (brski)' ( (B (BR (BRS BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 4 5 ()'[[-.---] 11 10 0 0 0 0 1 +shared secret shared s sh sha shar BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 5 no 0 10 0 0 0 0 1 +them belong them t th the them BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 5 (). 3 9 0 0 0 0 1 +through inter-domain through t th thr thro BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 5 - 1 9 0 0 0 0 1 +network and network n ne net netw BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 4 5 ,, 2 10 0 0 0 0 1 +Manufacturer Authorized manufacturer M Ma Man Manu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 5 ().- 4 9 0 0 0 0 1 +touch exchange touch t to tou touc BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 5 , 1 7 0 0 0 0 1 +[I-D.ietf-6tisch-minimal-security] is [i-d.ietf-6tisch-minimal-security] [ [I [I- [I-D BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 4 5 [-.---] 7 10 0 0 0 0 1 +established between established e es est esta BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 5 . 1 6 0 0 0 0 1 +Figure 5 figure F Fi Fig Figu BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 10 - 1 10 0 0 0 0 1 +(LLA) is (lla) ( (L (LL (LLA BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 4 10 (),(). 6 8 0 0 0 0 1 +Thubert Thubert thubert T Th Thu Thub BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 4 11 no 0 3 0 0 0 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 11 , 1 10 0 0 0 0 0 +[Page 25] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 11 [] 2 3 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 4 0 - 1 10 0 0 1 0 1 +6tisch-architecture 6tisch-architecture 6tisch-architecture 6 6t 6ti 6tis BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 4 0 - 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 4 0 no 0 6 0 0 0 0 1 +6LoWPAN Node 6lowpan 6 6L 6Lo 6LoW BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 4 0 no 0 2 0 0 0 0 1 +6LR 6LR 6lr 6 6L 6LR 6LR BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 4 0 no 0 0 0 0 0 0 1 +6LBR 6LBR 6lbr 6 6L 6LB 6LBR BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 4 0 no 0 0 0 0 0 0 1 +Join Registrar join J Jo Joi Join BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 0 no 0 2 0 0 0 0 1 +MASA MASA masa M MA MAS MASA BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 4 0 no 0 0 0 0 0 0 1 +(pledge) (pledge) (pledge) ( (p (pl (ple BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 0 () 2 1 0 0 0 0 1 +(Join Proxy) (join ( (J (Jo (Joi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 0 () 2 2 0 0 0 0 1 +(Root) (Root) (root) ( (R (Ro (Roo BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 0 () 2 1 0 0 0 0 1 +/Coordinator (JRC) /coordinator / /C /Co /Coo BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 0 /() 3 2 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 0 no 0 0 0 0 0 0 1 +| 6LoWPAN | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 0 no 0 2 0 0 0 0 1 +|6LoWPAN ND+RPL |6lowpan | |6 |6L |6Lo BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 4 0 no 0 7 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 0 no 0 0 0 0 0 0 1 +LLN link lln L LL LLN LLN BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 4 0 no 0 1 0 0 0 0 1 +|Route-Over mesh|(the |route-over | |R |Ro |Rou BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 0 -()() 5 7 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 0 no 0 0 0 0 0 0 1 +Layer-2 Layer-2 layer-2 L La Lay Laye BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 4 0 - 1 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 0 no 0 0 0 0 0 0 1 +|enhanced beacon| |enhanced | |e |en |enh BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 0 no 0 2 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 0 no 0 0 0 0 0 0 1 +|<--------------| |<--------------| |<--------------| | |< |<- |<-- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 4 0 -------------- 14 2 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 0 no 0 0 0 0 0 0 1 +NS (EARO) ns N NS NS NS BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 4 0 () 2 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 0 no 0 0 0 0 0 0 1 +| (for | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 0 () 2 2 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 0 no 0 0 0 0 0 0 1 +|-------------->| |-------------->| |-------------->| | |- |-- |--- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 4 0 -------------- 14 2 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 0 no 0 0 0 0 0 0 1 +NA (EARO) na N NA NA NA BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 1 0 0 0 0 0 0 4 0 () 2 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 0 no 0 0 0 0 0 0 1 +|<--------------| |<--------------| |<--------------| | |< |<- |<-- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 4 0 -------------- 14 2 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 0 no 0 0 0 0 0 0 1 +| (Zero-touch | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 0 (- 2 2 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 0 no 0 0 0 0 0 0 1 +handshake) | handshake) h ha han hand BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 0 ) 1 2 0 0 0 0 1 +(Zero-touch handshake) (zero-touch ( (Z (Ze (Zer BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 0 (-) 3 3 0 0 0 0 1 +| (Zero-touch | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 0 (- 2 2 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 0 no 0 0 0 0 0 0 1 +using LLA using u us usi usin BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 0 no 0 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 0 no 0 0 0 0 0 0 1 +using GUA using u us usi usin BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 0 no 0 1 0 0 0 0 1 +| handshake) | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 0 ) 1 2 0 0 0 0 1 +|<------------->|<---------------------------->|<------------>| |<------------->|<---------------------------->|<------------>| |<------------->|<---------------------------->|<------------>| | |< |<- |<-- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 4 0 ----------------------------------------------------- 53 10 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 0 no 0 0 0 0 0 0 1 +| CoJP | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 0 no 0 2 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 0 no 0 0 0 0 0 0 1 +| \ | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 0 no 0 0 0 0 0 0 1 +| using | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 0 no 0 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 0 no 0 0 0 0 0 0 1 +|-------------->| |-------------->| |-------------->| | |- |-- |--- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 4 0 -------------- 14 2 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 0 no 0 0 0 0 0 0 1 +CoJP Join cojp C Co CoJ CoJP BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 4 0 no 0 2 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 0 no 0 0 0 0 0 0 1 +using GUA using u us usi usin BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 0 no 0 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 0 no 0 0 0 0 0 0 1 +|----------------------------->| |----------------------------->| |----------------------------->| | |- |-- |--- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 4 0 ----------------------------- 29 5 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 0 no 0 0 0 0 0 0 1 +CoJP Join cojp C Co CoJ CoJP BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 4 0 no 0 2 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 0 no 0 0 0 0 0 0 1 +using GUA using u us usi usin BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 0 no 0 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 0 no 0 0 0 0 0 0 1 +|<-----------------------------| |<-----------------------------| |<-----------------------------| | |< |<- |<-- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 4 0 ----------------------------- 29 5 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 0 no 0 0 0 0 0 0 1 +|CoJP Join |cojp | |C |Co |CoJ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 0 no 0 2 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 0 no 0 0 0 0 0 0 1 +| using | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 0 no 0 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 0 no 0 0 0 0 0 0 1 +|<--------------| |<--------------| |<--------------| | |< |<- |<-- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 4 0 -------------- 14 2 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 0 no 0 0 0 0 0 0 1 +| / | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 0 / 1 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 0 no 0 0 0 0 0 0 1 +Figure 5: figure F Fi Fig Figu BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 9 :-.() 5 10 0 0 0 0 1 +optional exchanges. optional o op opt opti BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 9 . 1 2 0 0 0 0 1 +4.2.2. Registration 4.2.2. 4 4. 4.2 4.2. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 4 9 ... 3 10 0 0 0 0 1 +Once the once O On Onc Once BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 9 no 0 9 0 0 0 0 1 +a network a a a a a BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 1 0 0 0 0 0 4 9 , 1 9 0 0 0 0 1 +routers and routers r ro rou rout BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 9 . 1 8 0 0 0 0 1 +Section 4.1, section S Se Sec Sect BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 9 ., 2 10 0 0 0 0 1 +learn information learn l le lea lear BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 9 () 2 9 0 0 0 0 1 +the updated the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 9 (), 3 9 0 0 0 0 1 +registration to registration r re reg regi BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 9 . 1 7 0 0 0 0 1 +Thubert Thubert thubert T Th Thu Thub BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 4 11 no 0 3 0 0 0 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 11 , 1 10 0 0 0 0 0 +[Page 26] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 11 [] 2 3 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 4 0 - 1 10 0 0 1 0 1 +6tisch-architecture 6tisch-architecture 6tisch-architecture 6 6t 6ti 6tis BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 4 0 - 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 4 0 no 0 6 0 0 0 0 1 +Figure 6 figure F Fi Fig Figu BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 0 no 0 10 0 0 0 0 1 +form a form f fo for form BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 0 no 0 9 0 0 0 0 1 +[RFC8505], is [rfc8505], [ [R [RF [RFC BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 4 0 [],, 4 9 0 0 0 0 1 +6BBR. This 6bbr. 6 6B 6BB 6BBR BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 4 0 . 1 9 0 0 0 0 1 +first registered. first f fi fir firs BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 0 . 1 2 0 0 0 0 1 +6LoWPAN Node 6lowpan 6 6L 6Lo 6LoW BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 4 1 no 0 3 0 0 0 0 1 +6LR 6LR 6lr 6 6L 6LR 6LR BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 4 1 no 0 0 0 0 0 0 1 +6LBR 6LBR 6lbr 6 6L 6LB 6LBR BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 4 1 no 0 1 0 0 0 0 1 +6BBR 6BBR 6bbr 6 6B 6BB 6BBR BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 4 1 no 0 1 0 0 0 0 1 +(RPL leaf) (rpl ( (R (RP (RPL BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 4 1 () 2 2 0 0 0 0 1 +(router) (router) (router) ( (r (ro (rou BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 1 () 2 2 0 0 0 0 1 +(Root) (Root) (root) ( (R (Ro (Roo BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 1 () 2 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 1 no 0 0 0 0 0 0 1 +| 6LoWPAN | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 1 no 0 3 0 0 0 0 1 +|6LoWPAN ND+RPL |6lowpan | |6 |6L |6Lo BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 4 1 no 0 6 0 0 0 0 1 +| IPv6 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 1 no 0 2 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 1 no 0 0 0 0 0 0 1 +LLN link lln L LL LLN LLN BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 4 1 no 0 2 0 0 0 0 1 +|Route-Over mesh|Ethernet/serial| |route-over | |R |Ro |Rou BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 1 -/ 2 10 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 1 no 0 0 0 0 0 0 1 +| RS | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 1 () 2 3 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 1 no 0 0 0 0 0 0 1 +|-------------->| |-------------->| |-------------->| | |- |-- |--- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 4 1 -------------- 14 4 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 1 no 0 0 0 0 0 0 1 +|-----------> |-----------> |-----------> | |- |-- |--- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 4 1 ----------- 11 3 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 1 no 0 0 0 0 0 0 1 +|------------------> |------------------> |------------------> | |- |-- |--- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 4 1 ------------------ 18 4 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 1 no 0 0 0 0 0 0 1 +| RA | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 1 () 2 3 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 1 no 0 0 0 0 0 0 1 +|<--------------| |<--------------| |<--------------| | |< |<- |<-- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 4 1 -------------- 14 4 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 1 no 0 0 0 0 0 0 1 +| NS(EARO) | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 1 () 2 2 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 1 no 0 0 0 0 0 0 1 +|-------------->| |-------------->| |-------------->| | |- |-- |--- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 4 1 -------------- 14 4 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 1 no 0 0 0 0 0 0 1 +| 6LoWPAN | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 1 no 0 3 0 0 0 0 1 +| Extended | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 1 no 0 3 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 1 no 0 0 0 0 0 0 1 +|-------------->| |-------------->| |-------------->| | |- |-- |--- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 4 1 -------------- 14 4 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 1 no 0 0 0 0 0 0 1 +| NS(EARO) | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 1 () 2 2 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 1 no 0 0 0 0 0 0 1 +|-------------->| |-------------->| |-------------->| | |- |-- |--- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 4 1 -------------- 14 4 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 1 no 0 0 0 0 0 0 1 +| NS-DAD | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 1 - 1 2 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 1 no 0 0 0 0 0 0 1 +|------> |------> |------> | |- |-- |--- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 4 1 ------ 6 2 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 1 no 0 0 0 0 0 0 1 +| (EARO) | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 1 () 2 2 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 1 no 0 0 0 0 0 0 1 +| NA(EARO) | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 1 () 2 2 0 0 0 0 1 +|<timeout> |<timeout> |<timeout> | |< |<t |<ti BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 1 no 0 2 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 1 no 0 0 0 0 0 0 1 +|<--------------| |<--------------| |<--------------| | |< |<- |<-- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 4 1 -------------- 14 4 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 1 no 0 0 0 0 0 0 1 +| Extended | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 1 no 0 3 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 1 no 0 0 0 0 0 0 1 +|<--------------| |<--------------| |<--------------| | |< |<- |<-- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 4 1 -------------- 14 4 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 1 no 0 0 0 0 0 0 1 +| NA(EARO) | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 1 () 2 2 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 1 no 0 0 0 0 0 0 1 +|<--------------| |<--------------| |<--------------| | |< |<- |<-- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 4 1 -------------- 14 4 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 1 no 0 0 0 0 0 0 1 +Figure 6: figure F Fi Fig Figu BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 9 :- 2 10 0 0 0 0 1 +Figure 7 figure F Fi Fig Figu BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 9 no 0 9 0 0 0 0 1 +to keep to t to to to BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 9 no 0 9 0 0 0 0 1 +6LoWPAN ND 6lowpan 6 6L 6Lo 6LoW BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 4 9 ,, 2 10 0 0 0 0 1 +to the to t to to to BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 9 ,/ 2 9 0 0 0 0 1 +the network the t th the the BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 9 -. 2 8 0 0 0 0 1 +Thubert Thubert thubert T Th Thu Thub BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 4 11 no 0 3 0 0 0 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 11 , 1 10 0 0 0 0 0 +[Page 27] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 11 [] 2 3 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 4 0 - 1 10 0 0 1 0 1 +6tisch-architecture 6tisch-architecture 6tisch-architecture 6 6t 6ti 6tis BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 4 0 - 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 4 0 no 0 6 0 0 0 0 1 +6LoWPAN Node 6lowpan 6 6L 6Lo 6LoW BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 4 0 no 0 3 0 0 0 0 1 +6LR 6LR 6lr 6 6L 6LR 6LR BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 4 0 no 0 0 0 0 0 0 1 +6LBR 6LBR 6lbr 6 6L 6LB 6LBR BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 4 0 no 0 1 0 0 0 0 1 +6BBR 6BBR 6bbr 6 6B 6BB 6BBR BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 4 0 no 0 1 0 0 0 0 1 +(RPL leaf) (rpl ( (R (RP (RPL BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 4 0 () 2 2 0 0 0 0 1 +(router) (router) (router) ( (r (ro (rou BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 0 () 2 2 0 0 0 0 1 +(Root) (Root) (root) ( (R (Ro (Roo BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 0 () 2 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 0 no 0 0 0 0 0 0 1 +| 6LoWPAN | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 0 no 0 3 0 0 0 0 1 +|6LoWPAN ND+RPL |6lowpan | |6 |6L |6Lo BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 4 0 no 0 6 0 0 0 0 1 +| IPv6 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 0 no 0 2 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 0 no 0 0 0 0 0 0 1 +LLN link lln L LL LLN LLN BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 4 0 no 0 2 0 0 0 0 1 +|Route-Over mesh| |route-over | |R |Ro |Rou BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 0 - 1 10 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 0 no 0 0 0 0 0 0 1 +| NS(EARO) | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 0 () 2 2 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 0 no 0 0 0 0 0 0 1 +|-------------->| |-------------->| |-------------->| | |- |-- |--- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 4 0 -------------- 14 4 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 0 no 0 0 0 0 0 0 1 +| NA(EARO) | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 0 () 2 2 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 0 no 0 0 0 0 0 0 1 +|<--------------| |<--------------| |<--------------| | |< |<- |<-- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 4 0 -------------- 14 4 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 0 no 0 0 0 0 0 0 1 +| DAO | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 0 no 0 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 0 no 0 0 0 0 0 0 1 +|-------------->| |-------------->| |-------------->| | |- |-- |--- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 4 0 -------------- 14 4 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 0 no 0 0 0 0 0 0 1 +| DAO-ACK | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 0 - 1 2 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 0 no 0 0 0 0 0 0 1 +|<--------------| |<--------------| |<--------------| | |< |<- |<-- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 4 0 -------------- 14 4 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 0 no 0 0 0 0 0 0 1 +| NS(EARO) | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 0 () 2 2 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 0 no 0 0 0 0 0 0 1 +|-------------->| |-------------->| |-------------->| | |- |-- |--- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 4 0 -------------- 14 4 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 0 no 0 0 0 0 0 0 1 +| NA(EARO) | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 0 () 2 2 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 0 no 0 0 0 0 0 0 1 +|<--------------| |<--------------| |<--------------| | |< |<- |<-- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 4 0 -------------- 14 4 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 0 no 0 0 0 0 0 0 1 +Figure 7: figure F Fi Fig Figu BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 5 :- 2 10 0 0 0 0 1 +As the as A As As As BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 5 , 1 9 0 0 0 0 1 +RPL network, rpl R RP RPL RPL BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 4 5 ,- 2 10 0 0 0 0 1 +6LR, so 6lr, 6 6L 6LR 6LR, BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 4 5 ,. 2 9 0 0 0 0 1 +4.3. TSCH 4.3. 4 4. 4.3 4.3. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 4 7 .. 2 10 0 0 0 0 1 +4.3.1. 6top 4.3.1. 4 4. 4.3 4.3. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 4 7 ... 3 10 0 0 0 0 1 +6TiSCH expects 6tisch 6 6T 6Ti 6TiS BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 4 7 no 0 8 0 0 0 0 1 +distributed routing distributed d di dis dist BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 7 . 1 9 0 0 0 0 1 +goal, the goal, g go goa goal BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 7 , 1 10 0 0 0 0 1 +reuse between reuse r re reu reus BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 7 . 1 9 0 0 0 0 1 +large and large l la lar larg BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 4 7 , 1 9 0 0 0 0 1 +good position good g go goo good BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 4 7 . 1 9 0 0 0 0 1 +With 6TiSCH, with W Wi Wit With BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 9 , 1 10 0 0 0 0 1 +of bundles of o of of of BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 9 ,. 2 8 0 0 0 0 1 +enabled between enabled e en ena enab BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 9 . 1 9 0 0 0 0 1 +optimal when optimal o op opt opti BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 9 no 0 10 0 0 0 0 1 +in idle in i in in in BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 4 9 no 0 9 0 0 0 0 1 +minimized, while minimized, m mi min mini BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 9 ,. 2 9 0 0 0 0 1 +Thubert Thubert thubert T Th Thu Thub BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 4 11 no 0 3 0 0 0 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 11 , 1 10 0 0 0 0 0 +[Page 28] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 11 [] 2 3 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 4 0 - 1 10 0 0 1 0 1 +6tisch-architecture 6tisch-architecture 6tisch-architecture 6 6t 6ti 6tis BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 4 0 - 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 4 0 no 0 6 0 0 0 0 1 +Use cases use U Us Use Use BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 0 no 0 8 0 0 0 0 1 +statistical distribution statistical s st sta stat BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 0 - 1 9 0 0 0 0 1 +for bandwidth for f fo for for BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 0 . 1 9 0 0 0 0 1 +remain optimal remain r re rem rema BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 0 , 1 10 0 0 0 0 1 +reactivity to reactivity r re rea reac BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 0 -, 2 10 0 0 0 0 1 +of bandwidth of o of of of BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 0 no 0 10 0 0 0 0 1 +children, in children, c ch chi chil BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 0 ,., 3 9 0 0 0 0 1 +needs for needs n ne nee need BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 0 no 0 9 0 0 0 0 1 +with other with w wi wit with BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 0 . 1 8 0 0 0 0 1 +6top is 6top 6 6t 6to 6top BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 4 2 no 0 9 0 0 0 0 1 +TSCH MAC tsch T TS TSC TSCH BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 4 2 , 1 9 0 0 0 0 1 +for IP for f fo for for BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 2 .,, 3 9 0 0 0 0 1 +[RFC8480], is [rfc8480], [ [R [RF [RFC BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 4 2 [],., 5 9 0 0 0 0 1 +the 6top the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 2 no 0 10 0 0 0 0 1 +external management external e ex ext exte BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 2 , 1 9 0 0 0 0 1 +allows the allows a al all allo BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 2 , 1 9 0 0 0 0 1 +Scheduling Function scheduling S Sc Sch Sche BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 4 2 no 0 9 0 0 0 0 1 +on observed on o on on on BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 2 ... 3 9 0 0 0 0 1 +purpose, the purpose, p pu pur purp BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 2 ,"" 3 9 0 0 0 0 1 +"hard" cells. "hard" " "h "ha "har BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 2 "". 3 2 0 0 0 0 1 +4.3.1.1. Hard 4.3.1.1. 4 4. 4.3 4.3. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 5 .... 4 10 0 0 0 0 1 +"Hard" cells "hard" " "H "Ha "Har BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 6 "" 2 9 0 0 0 0 1 +scheduling entity scheduling s sc sch sche BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 5 6 (..,)/ 6 9 0 0 0 0 1 +channelOffset of channeloffset c ch cha chan BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 6 //, 3 10 0 0 0 0 1 +6top can 6top 6 6t 6to 6top BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 6 , 1 10 0 0 0 0 1 +TSCH schedule tsch T TS TSC TSCH BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 5 6 . 1 3 0 0 0 0 1 +4.3.1.2. Soft 4.3.1.2. 4 4. 4.3 4.3. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 7 .... 4 10 0 0 0 0 1 +In contrast, in I In In In BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 5 7 ,"". 4 9 0 0 0 0 1 +6top contains 6top 6 6t 6to 6top BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 7 no 0 9 0 0 0 0 1 +cells, and cells, c ce cel cell BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 7 ,, 2 9 0 0 0 0 1 +to the to t to to to BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 7 ,. 2 8 0 0 0 0 1 +reserve a reserve r re res rese BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 7 , 1 9 0 0 0 0 1 +slotOffset/channelOffset of slotoffset/channeloffset s sl slo slot BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 7 /, 2 10 0 0 0 0 1 +bandwidth and bandwidth b ba ban band BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 7 . 1 9 0 0 0 0 1 +a cell a a a a a BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 1 0 0 0 0 0 5 7 , 1 10 0 0 0 0 1 +cell negotiate cell c ce cel cell BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 7 . 1 7 0 0 0 0 1 +4.3.2. Scheduling 4.3.2. 4 4. 4.3 4.3. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 10 ... 3 10 0 0 0 0 1 +In the in I In In In BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 5 10 , 1 9 0 0 0 0 1 +the dynamic the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 10 no 0 10 0 0 0 0 1 +rate flows rate r ra rat rate BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 10 (). 3 7 0 0 0 0 1 +Thubert Thubert thubert T Th Thu Thub BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 5 11 no 0 3 0 0 0 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 11 , 1 10 0 0 0 0 0 +[Page 29] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 11 [] 2 3 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 5 0 - 1 10 0 0 1 0 1 +6tisch-architecture 6tisch-architecture 6tisch-architecture 6 6t 6ti 6tis BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 0 - 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 5 0 no 0 6 0 0 0 0 1 +There may there T Th The Ther BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 0 no 0 10 0 0 0 0 1 +the dynamics the t th the the BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 0 . 1 4 0 0 0 0 1 +An SF an A An An An BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 5 0 no 0 9 0 0 0 0 1 +logic that logic l lo log logi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 0 no 0 10 0 0 0 0 1 +obtain and obtain o ob obt obta BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 0 , 1 9 0 0 0 0 1 +those needs those t th tho thos BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 0 , 1 8 0 0 0 0 1 +bandwidth onto bandwidth b ba ban band BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 0 no 0 9 0 0 0 0 1 +illustrated in illustrated i il ill illu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 0 . 1 3 0 0 0 0 1 ++------------------------+ +------------------------+ +------------------------+ + +- +-- +--- BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 5 2 ------------------------ 24 4 0 0 0 0 1 ++------------------------+ +------------------------+ +------------------------+ + +- +-- +--- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 5 2 ------------------------ 24 4 0 0 0 0 1 +| Scheduling | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 2 no 0 3 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 2 no 0 0 0 0 0 0 1 +| Scheduling | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 2 no 0 3 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 2 no 0 0 0 0 0 0 1 +| Bandwidth | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 2 no 0 4 0 0 0 0 1 +| Bandwidth | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 2 no 0 4 0 0 0 0 1 ++------------------------+ +------------------------+ +------------------------+ + +- +-- +--- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 5 2 ------------------------ 24 4 0 0 0 0 1 ++------------------------+ +------------------------+ +------------------------+ + +- +-- +--- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 5 2 ------------------------ 24 4 0 0 0 0 1 +| Scheduling | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 2 no 0 3 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 2 no 0 0 0 0 0 0 1 +| Scheduling | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 2 no 0 3 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 2 no 0 0 0 0 0 0 1 +| TSCH | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 2 no 0 4 0 0 0 0 1 +| TSCH | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 2 no 0 4 0 0 0 0 1 ++------------------------+ +------------------------+ +------------------------+ + +- +-- +--- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 5 2 ------------------------ 24 4 0 0 0 0 1 ++------------------------+ +------------------------+ +------------------------+ + +- +-- +--- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 5 2 ------------------------ 24 4 0 0 0 0 1 +| 6top | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 2 -- 2 10 0 0 0 0 1 ++------------------------+ +------------------------+ +------------------------+ + +- +-- +--- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 5 2 ------------------------ 24 4 0 0 0 0 1 ++------------------------+ +------------------------+ +------------------------+ + +- +-- +--- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 5 2 ------------------------ 24 4 0 0 0 0 1 +Device A device D De Dev Devi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 2 no 0 1 0 0 0 0 1 +Device B device D De Dev Devi BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 2 no 0 1 0 0 0 0 1 +Figure 8: figure F Fi Fig Figu BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 6 :/ 2 10 0 0 0 0 1 +The SF the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 6 () 2 9 0 0 0 0 1 +[RFC8480] to [rfc8480] [ [R [RF [RFC BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 6 [] 2 9 0 0 0 0 1 +freed based freed f fr fre free BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 5 6 . 1 9 0 0 0 0 1 +a peer a a a a a BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 1 0 0 0 0 0 5 6 no 0 9 0 0 0 0 1 +schedule, but schedule, s sc sch sche BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 6 , 1 10 0 0 0 0 1 +communication with communication c co com comm BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 5 6 . 1 9 0 0 0 0 1 +peers to peers p pe pee peer BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 5 6 no 0 10 0 0 0 0 1 +final consistency final f fi fin fina BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 6 . 1 5 0 0 0 0 1 +MSF [I-D.ietf-6tisch-msf] msf M MS MSF MSF BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 5 8 [-.--] 6 8 0 0 0 0 1 +functions. MSF functions. f fu fun func BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 8 .-[] 4 10 0 0 0 0 1 +discovery, neighbor discovery, d di dis disc BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 8 ,,. 3 8 0 0 0 0 1 +For basic for F Fo For For BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 9 , 1 9 0 0 0 0 1 +receive cell receive r re rec rece BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 9 -/, 3 10 0 0 0 0 1 +hash of hash h ha has hash BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 9 . 1 9 0 0 0 0 1 +installing a installing i in ins inst BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 9 ()/ 3 9 0 0 0 0 1 +derived from derived d de der deri BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 9 '. 2 5 0 0 0 0 1 +For child-parent for F Fo For For BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 10 -,/ 3 10 0 0 0 0 1 +parents and parents p pa par pare BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 10 ./ 2 9 0 0 0 0 1 +cells whenever cells c ce cel cell BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 10 -/- 3 9 0 0 0 0 1 +provisioned. provisioned. provisioned. p pr pro prov BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 10 . 1 1 0 0 0 0 1 +Thubert Thubert thubert T Th Thu Thub BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 5 11 no 0 3 0 0 0 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 11 , 1 10 0 0 0 0 0 +[Page 30] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 11 [] 2 3 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 5 0 - 1 10 0 0 1 0 1 +6tisch-architecture 6tisch-architecture 6tisch-architecture 6 6t 6ti 6tis BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 0 - 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 5 0 no 0 6 0 0 0 0 1 +4.3.3. 6top 4.3.3. 4 4. 4.3 4.3. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 0 ... 3 10 0 0 0 0 1 +An implementation an A An An An BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 5 0 [](), 5 10 0 0 0 0 1 +the RPL the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 0 ()[] 4 9 0 0 0 0 1 +Minimal 6TiSCH minimal M Mi Min Mini BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 0 [] 2 9 0 0 0 0 1 +schedule, may schedule, s sc sch sche BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 0 ,,, 3 10 0 0 0 0 1 +maintained by maintained m ma mai main BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 0 . 1 2 0 0 0 0 1 +An OF an A An An An BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 5 1 , 1 9 0 0 0 0 1 +Transmission Count transmission T Tr Tra Tran BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 1 ()[]. 5 8 0 0 0 0 1 +maintains an maintains m ma mai main BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 1 , 1 10 0 0 0 0 1 +to feed to t to to to BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 1 /. 2 9 0 0 0 0 1 +entry may entry e en ent entr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 1 no 0 9 0 0 0 0 1 +neighbor. neighbor. neighbor. n ne nei neig BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 1 . 1 1 0 0 0 0 1 +The neighbor the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 3 no 0 9 0 0 0 0 1 +has been has h ha has has BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 3 ,, 2 10 0 0 0 0 1 +e.g., received e.g., e e. e.g e.g. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 3 ..,() 5 9 0 0 0 0 1 +indicator (LQI), indicator i in ind indi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 3 (), 3 9 0 0 0 0 1 +number of number n nu num numb BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 3 . 1 9 0 0 0 0 1 +available through available a av ava avai BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 3 no 0 9 0 0 0 0 1 +compute a compute c co com comp BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 3 no 0 9 0 0 0 0 1 +preferred parent. preferred p pr pre pref BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 3 . 1 2 0 0 0 0 1 +6top provides 6top 6 6t 6to 6top BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 5 no 0 10 0 0 0 0 1 +tuned to tuned t tu tun tune BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 5 . 1 10 0 0 0 0 1 +OF to of O OF OF OF BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 5 5 , 1 9 0 0 0 0 1 +periodicity of periodicity p pe per peri BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 5 ...(). 6 8 0 0 0 0 1 +augmenting the augmenting a au aug augm BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 5 , 1 9 0 0 0 0 1 +dynamics so dynamics d dy dyn dyna BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 5 no 0 9 0 0 0 0 1 +their point their t th the thei BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 5 . 1 7 0 0 0 0 1 +Some RPL some S So Som Some BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 7 ,() 3 10 0 0 0 0 1 +are ICMPv6 are a ar are are BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 7 . 1 9 0 0 0 0 1 +6TiSCH, the 6tisch, 6 6T 6Ti 6TiS BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 7 , 1 9 0 0 0 0 1 +configuring TSCH configuring c co con conf BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 7 ,, 2 9 0 0 0 0 1 +instance, piggybacking instance, i in ins inst BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 7 ,- 2 9 0 0 0 0 1 +(EBs), which (ebs), ( (E (EB (EBs BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 7 (),, 4 9 0 0 0 0 1 +size issues size s si siz size BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 7 no 0 10 0 0 0 0 1 +where EBs where w wh whe wher BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 7 . 1 7 0 0 0 0 1 +4.3.4. Network 4.3.4. 4 4. 4.3 4.3. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 10 ... 3 10 0 0 0 0 1 +Nodes in nodes N No Nod Node BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 10 . 1 9 0 0 0 0 1 +synchronized to synchronized s sy syn sync BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 10 no 0 9 0 0 0 0 1 +frame-based and frame-based f fr fra fram BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 10 --. 3 9 0 0 0 0 1 +battery life battery b ba bat batt BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 10 , 1 9 0 0 0 0 1 +discovery and discovery d di dis disc BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 10 () 2 10 0 0 0 0 1 +Thubert Thubert thubert T Th Thu Thub BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 5 11 no 0 3 0 0 0 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 11 , 1 10 0 0 0 0 0 +[Page 31] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 11 [] 2 3 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 5 0 - 1 10 0 0 1 0 1 +6tisch-architecture 6tisch-architecture 6tisch-architecture 6 6t 6ti 6tis BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 0 - 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 5 0 no 0 6 0 0 0 0 1 +somehow coordinated somehow s so som some BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 0 no 0 10 0 0 0 0 1 +packets (especially packets p pa pac pack BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 0 (). 3 6 0 0 0 0 1 +This could this T Th Thi This BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 0 no 0 10 0 0 0 0 1 +and the and a an and and BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 0 , 1 8 0 0 0 0 1 +management entity. management m ma man mana BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 5 0 . 1 2 0 0 0 0 1 +Time distribution time T Ti Tim Time BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 1 -. 2 9 0 0 0 0 1 +synchronization loop synchronization s sy syn sync BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 1 no 0 10 0 0 0 0 1 +become isolated. become b be bec beco BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 1 . 1 9 0 0 0 0 1 +Instance for instance I In Ins Inst BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 1 . 1 9 0 0 0 0 1 +referred to referred r re ref refe BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 1 (). 3 9 0 0 0 0 1 +TSGI can tsgi T TS TSG TSGI BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 5 1 no 0 9 0 0 0 0 1 +section 3.1.3 section s se sec sect BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 1 ..[],",, 8 8 0 0 0 0 1 +Versions". Multiple versions". V Ve Ver Vers BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 5 1 ". 2 9 0 0 0 0 1 +be used be b be be be BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 1 no 0 9 0 0 0 0 1 +Global Positioning global G Gl Glo Glob BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 1 (). 3 4 0 0 0 0 1 +In the in I In In In BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 5 4 , 1 10 0 0 0 0 1 +DODAG with dodag D DO DOD DODA BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 5 4 . 1 8 0 0 0 0 1 +synchronize and synchronize s sy syn sync BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 4 no 0 9 0 0 0 0 1 +routers that routers r ro rou rout BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 4 .,' 3 9 0 0 0 0 1 +operations may operations o op ope oper BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 5 4 . 1 9 0 0 0 0 1 +This may this T Th Thi This BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 4 () 2 9 0 0 0 0 1 +timer if timer t ti tim time BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 4 no 0 10 0 0 0 0 1 +get out get g ge get get BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 4 . 1 4 0 0 0 0 1 +A node a A A A A BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 1 0 0 0 0 0 5 6 no 0 9 0 0 0 0 1 +Priority of priority P Pr Pri Prio BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 6 no 0 9 0 0 0 0 1 +serving as serving s se ser serv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 6 . 1 10 0 0 0 0 1 +MAC level mac M MA MAC MAC BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 1 1 0 0 0 0 0 5 6 (), 3 10 0 0 0 0 1 +DAGRank() is dagrank() D DA DAG DAGR BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 5 6 ()..[], 7 9 0 0 0 0 1 +"Rank Comparison". "rank " "R "Ra "Ran BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 6 "". 3 2 0 0 0 0 1 +The provisioning the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 7 no 0 10 0 0 0 0 1 +Architecture, whereas architecture, A Ar Arc Arch BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 7 , 1 8 0 0 0 0 1 +information down information i in inf info BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 7 .; 2 10 0 0 0 0 1 +is configured is i is is is BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 7 no 0 9 0 0 0 0 1 +RPLInstanceID for rplinstanceid R RP RPL RPLI BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 5 7 . 1 9 0 0 0 0 1 +TSGI, that tsgi, T TS TSG TSGI BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 5 7 ,, 2 9 0 0 0 0 1 +Std. 802.15.4 std. S St Std Std. BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 5 7 ...(). 6 5 0 0 0 0 1 +A node a A A A A BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 1 0 0 0 0 0 5 10 no 0 9 0 0 0 0 1 +neighbor with neighbor n ne nei neig BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 10 . 1 10 0 0 0 0 1 +the node the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 10 , 1 10 0 0 0 0 1 +join the join j jo joi join BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 10 , 1 9 0 0 0 0 1 +its own its i it its its BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 10 . 1 8 0 0 0 0 1 +Thubert Thubert thubert T Th Thu Thub BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 5 11 no 0 3 0 0 0 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 11 , 1 10 0 0 0 0 0 +[Page 32] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 11 [] 2 3 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 5 0 - 1 10 0 0 1 0 1 +6tisch-architecture 6tisch-architecture 6tisch-architecture 6 6t 6ti 6tis BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 0 - 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 5 0 no 0 6 0 0 0 0 1 +4.3.5. Slotframes 4.3.5. 4 4. 4.3 4.3. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 0 ... 3 10 0 0 0 0 1 +6TiSCH enables 6tisch 6 6T 6Ti 6TiS BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 0 () 2 10 0 0 0 0 1 +layer that layer l la lay laye BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 0 () 2 8 0 0 0 0 1 +transmissions. A transmissions. t tr tra tran BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 0 . 1 9 0 0 0 0 1 +transmission where transmission t tr tra tran BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 0 ,, 2 9 0 0 0 0 1 +be free be b be be be BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 0 no 0 9 0 0 0 0 1 +contending packets contending c co con cont BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 0 . 1 9 0 0 0 0 1 +simple way simple s si sim simp BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 0 no 0 9 0 0 0 0 1 +in cells in i in in in BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 5 0 . 1 9 0 0 0 0 1 +is adopted is i is is is BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 0 ... 3 9 0 0 0 0 1 +Evolution (LTE) evolution E Ev Evo Evol BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 0 (). 3 5 0 0 0 0 1 +The 6TiSCH the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 3 no 0 10 0 0 0 0 1 +Channel Distribution channel C Ch Cha Chan BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 3 () 2 9 0 0 0 0 1 +formatting of formatting f fo for form BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 3 , 1 5 0 0 0 0 1 +A CDU a A A A A BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 1 0 0 0 0 0 5 3 . 1 10 0 0 0 0 1 +It is it I It It It BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 3 no 0 8 0 0 0 0 1 +available channels available a av ava avai BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 3 ()( 3 9 0 0 0 0 1 +timeslots) that timeslots) t ti tim time BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 3 ) 1 9 0 0 0 0 1 +(indexed by (indexed ( (i (in (ind BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 3 (). 3 9 0 0 0 0 1 +models for models m mo mod mode BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 3 , 1 8 0 0 0 0 1 +responsibility of responsibility r re res resp BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 3 no 0 10 0 0 0 0 1 +or on or o or or or BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 3 , 1 10 0 0 0 0 1 +scan for scan s sc sca scan BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 3 (.). 4 6 0 0 0 0 1 +The size the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 6 , 1 9 0 0 0 0 1 +milliseconds are milliseconds m mi mil mill BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 6 .. 2 9 0 0 0 0 1 +transmission of transmission t tr tra tran BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 6 , 1 10 0 0 0 0 1 +on the on o on on on BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 6 no 0 9 0 0 0 0 1 +device architecture. device d de dev devi BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 6 . 1 3 0 0 0 0 1 +A CDU a A A A A BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 1 0 0 0 0 0 5 7 - 1 8 0 0 0 0 1 +rotation called rotation r ro rot rota BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 7 ., 2 9 0 0 0 0 1 +might be might m mi mig migh BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 7 , 1 10 0 0 0 0 1 +they have they t th the they BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 7 no 0 9 0 0 0 0 1 +operations. It operations. o op ope oper BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 7 . 1 9 0 0 0 0 1 +domain operate domain d do dom doma BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 7 , 1 10 0 0 0 0 1 +reduce the reduce r re red redu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 7 no 0 8 0 0 0 0 1 +operations. The operations. o op ope oper BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 7 . 1 9 0 0 0 0 1 +the nodes the t th the the BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 7 . 1 7 0 0 0 0 1 +A slotframe a A A A A BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 1 0 0 0 0 0 5 10 - 1 9 0 0 0 0 1 +and contains and a an and and BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 10 . 1 9 0 0 0 0 1 +It is it I It It It BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 10 ,. 2 9 0 0 0 0 1 +slotframe aligns slotframe s sl slo slot BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 10 , 1 10 0 0 0 0 1 +and duration and a an and and BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 10 . 1 3 0 0 0 0 1 +Thubert Thubert thubert T Th Thu Thub BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 5 11 no 0 3 0 0 0 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 11 , 1 10 0 0 0 0 0 +[Page 33] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 11 [] 2 3 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 5 0 - 1 10 0 0 1 0 1 +6tisch-architecture 6tisch-architecture 6tisch-architecture 6 6t 6ti 6tis BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 0 - 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 5 0 no 0 6 0 0 0 0 1 +Multiple slotframes multiple M Mu Mul Mult BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 0 ,.., 4 10 0 0 0 0 1 +have multiple have h ha hav have BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 0 . 1 8 0 0 0 0 1 +slotframe is slotframe s sl slo slot BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 0 no 0 9 0 0 0 0 1 +precedence of precedence p pr pre prec BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 0 . 1 9 0 0 0 0 1 +aligned to aligned a al ali alig BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 0 . 1 9 0 0 0 0 1 +There is there T Th The Ther BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 0 no 0 9 0 0 0 0 1 +highest precedence highest h hi hig high BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 0 (). 3 10 0 0 0 0 1 +timeslots in timeslots t ti tim time BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 0 ; 1 9 0 0 0 0 1 +cell is cell c ce cel cell BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 0 . 1 3 0 0 0 0 1 +When a when W Wh Whe When BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 2 , 1 10 0 0 0 0 1 +inserts that inserts i in ins inse BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 2 no 0 9 0 0 0 0 1 +best (Differentiated best b be bes best BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 2 ([]). 5 9 0 0 0 0 1 +each scheduled each e ea eac each BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 2 , 1 9 0 0 0 0 1 +outgoing queues outgoing o ou out outg BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 2 ., 2 10 0 0 0 0 1 +is given is i is is is BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 2 . 1 6 0 0 0 0 1 +4.3.6. Distributing 4.3.6. 4 4. 4.3 4.3. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 4 ... 3 10 0 0 0 0 1 +The 6TiSCH the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 4 no 0 8 0 0 0 0 1 +(Section 2.1) (section ( (S (Se (Sec BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 4 (.) 3 9 0 0 0 0 1 +whole group whole w wh who whol BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 4 . 1 9 0 0 0 0 1 +set of set s se set set BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 4 ,, 2 9 0 0 0 0 1 +chunks identified chunks c ch chu chun BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 4 -. 2 9 0 0 0 0 1 +formatting is formatting f fo for form BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 4 . 1 9 0 0 0 0 1 +could be could c co cou coul BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 4 , 1 10 0 0 0 0 1 +document, or document, d do doc docu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 4 ,. 2 9 0 0 0 0 1 +to static to t to to to BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 4 - 1 10 0 0 0 0 1 +is specified is i is is is BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 4 []- 3 9 0 0 0 0 1 +chunk formatting. chunk c ch chu chun BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 4 . 1 2 0 0 0 0 1 ++-----+-----+-----+-----+-----+-----+-----+ +-----+-----+-----+-----+-----+-----+-----+ +-----+-----+-----+-----+-----+-----+-----+ + +- +-- +--- BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 5 7 ----------------------------------- 35 6 0 0 0 0 1 ++-----+ +-----+ +-----+ + +- +-- +--- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 5 7 ----- 5 1 0 0 0 0 1 +chan.Off. 0 chan.off. c ch cha chan BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 7 ..... 5 9 0 0 0 0 1 ++-----+-----+-----+-----+-----+-----+-----+ +-----+-----+-----+-----+-----+-----+-----+ +-----+-----+-----+-----+-----+-----+-----+ + +- +-- +--- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 5 7 ----------------------------------- 35 6 0 0 0 0 1 ++-----+ +-----+ +-----+ + +- +-- +--- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 5 7 ----- 5 1 0 0 0 0 1 +chan.Off. 1 chan.off. c ch cha chan BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 7 ..... 5 9 0 0 0 0 1 ++-----+-----+-----+-----+-----+-----+-----+ +-----+-----+-----+-----+-----+-----+-----+ +-----+-----+-----+-----+-----+-----+-----+ + +- +-- +--- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 5 7 ----------------------------------- 35 6 0 0 0 0 1 ++-----+ +-----+ +-----+ + +- +-- +--- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 5 7 ----- 5 1 0 0 0 0 1 +... ... ... . .. ... ... BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 5 7 ... 3 0 0 0 0 0 1 ++-----+-----+-----+-----+-----+-----+-----+ +-----+-----+-----+-----+-----+-----+-----+ +-----+-----+-----+-----+-----+-----+-----+ + +- +-- +--- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 5 7 ----------------------------------- 35 6 0 0 0 0 1 ++-----+ +-----+ +-----+ + +- +-- +--- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 5 7 ----- 5 1 0 0 0 0 1 +chan.Off. 15 chan.off. c ch cha chan BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 7 ..... 5 10 0 0 0 0 1 ++-----+-----+-----+-----+-----+-----+-----+ +-----+-----+-----+-----+-----+-----+-----+ +-----+-----+-----+-----+-----+-----+-----+ + +- +-- +--- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 5 7 ----------------------------------- 35 6 0 0 0 0 1 ++-----+ +-----+ +-----+ + +- +-- +--- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 5 7 ----- 5 1 0 0 0 0 1 +0 0 0 0 0 0 0 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 5 7 no 0 0 0 0 0 0 1 +1 1 1 1 1 1 1 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 5 7 no 0 0 0 0 0 0 1 +2 2 2 2 2 2 2 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 5 7 no 0 0 0 0 0 0 1 +3 3 3 3 3 3 3 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 5 7 no 0 0 0 0 0 0 1 +4 4 4 4 4 4 4 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 5 7 no 0 0 0 0 0 0 1 +5 5 5 5 5 5 5 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 5 7 no 0 0 0 0 0 0 1 +6 6 6 6 6 6 6 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 5 7 no 0 0 0 0 0 0 1 +M M m M M M M BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 7 no 0 0 0 0 0 0 1 +Figure 9: figure F Fi Fig Figu BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 11 : 1 10 0 0 0 0 1 +The 6TiSCH the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 11 no 0 9 0 0 0 0 1 +ownership appropriation ownership o ow own owne BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 11 no 0 10 0 0 0 0 1 +Thubert Thubert thubert T Th Thu Thub BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 6 11 no 0 3 0 0 0 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 11 , 1 10 0 0 0 0 0 +[Page 34] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 11 [] 2 3 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 6 0 - 1 10 0 0 1 0 1 +6tisch-architecture 6tisch-architecture 6tisch-architecture 6 6t 6ti 6tis BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 0 - 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 6 0 no 0 6 0 0 0 0 1 +is not is i is is is BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 0 ,, 2 9 0 0 0 0 1 +defends it defends d de def defe BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 0 no 0 10 0 0 0 0 1 +while it while w wh whi whil BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 0 . 1 9 0 0 0 0 1 +used in used u us use used BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 0 . 1 3 0 0 0 0 1 +As a as A As As As BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 1 , 1 10 0 0 0 0 1 +parent has parent p pa par pare BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 6 1 no 0 8 0 0 0 0 1 +appropriated chunk appropriated a ap app appr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 1 no 0 9 0 0 0 0 1 +domain. In domain. d do dom doma BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 1 ., 2 9 0 0 0 0 1 +manage the manage m ma man mana BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 1 no 0 9 0 0 0 0 1 +chunk. chunk. chunk. c ch chu chun BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 1 . 1 1 0 0 0 0 1 +Initially, those initially, I In Ini Init BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 3 ,, 2 10 0 0 0 0 1 +dynamically placed dynamically d dy dyn dyna BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 3 ,, 2 9 0 0 0 0 1 +allocated opportunistically allocated a al all allo BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 3 . 1 7 0 0 0 0 1 +Note that note N No Not Note BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 4 , 1 10 0 0 0 0 1 +that a that t th tha that BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 4 no 0 10 0 0 0 0 1 +in-use by in-use i in in- in-u BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 4 -. 2 2 0 0 0 0 1 +4.4. Schedule 4.4. 4 4. 4.4 4.4. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 5 .. 2 10 0 0 0 0 1 +6TiSCH uses 6tisch 6 6T 6Ti 6TiS BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 5 : 1 10 0 0 0 0 1 +Static Scheduling, static S St Sta Stat BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 5 ,--, 4 10 0 0 0 0 1 +and scheduling and a an and and BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 5 ,--. 4 9 0 0 0 0 1 +mechanisms are mechanisms m me mec mech BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 5 no 0 9 0 0 0 0 1 +Models, and models, M Mo Mod Mode BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 5 ,. 2 8 0 0 0 0 1 +mechanism(s) to mechanism(s) m me mec mech BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 5 (). 3 8 0 0 0 0 1 +4.4.1. Static 4.4.1. 4 4. 4.4 4.4. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 7 ... 3 10 0 0 0 0 1 +In the in I In In In BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 6 7 , 1 9 0 0 0 0 1 +schedule may schedule s sc sch sche BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 7 . 1 8 0 0 0 0 1 +shared, and shared, s sh sha shar BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 7 ,. 2 10 0 0 0 0 1 +A static a A A A A BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 1 0 0 0 0 0 6 8 , 1 9 0 0 0 0 1 +initial phase initial i in ini init BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 8 ,- 2 9 0 0 0 0 1 +case of case c ca cas case BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 6 8 .-, 3 9 0 0 0 0 1 +instance decided instance i in ins inst BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 8 no 0 9 0 0 0 0 1 +needs. It needs. n ne nee need BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 8 .-,,, 5 9 0 0 0 0 1 +learned by learned l le lea lear BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 8 . 1 9 0 0 0 0 1 +802.15.4 Information 802.15.4 8 80 802 802. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 8 ..()., 6 10 0 0 0 0 1 +unchanged after unchanged u un unc unch BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 8 . 1 9 0 0 0 0 1 +resulting network. resulting r re res resu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 8 ."" 3 8 0 0 0 0 1 +implements this implements i im imp impl BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 8 []. 3 7 0 0 0 0 1 +Thubert Thubert thubert T Th Thu Thub BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 6 11 no 0 3 0 0 0 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 11 , 1 10 0 0 0 0 0 +[Page 35] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 11 [] 2 3 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 6 0 - 1 10 0 0 1 0 1 +6tisch-architecture 6tisch-architecture 6tisch-architecture 6 6t 6ti 6tis BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 0 - 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 6 0 no 0 6 0 0 0 0 1 +4.4.2. Neighbor-to-neighbor 4.4.2. 4 4. 4.4 4.4. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 0 ...-- 5 10 0 0 0 0 1 +In the in I In In In BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 6 0 no 0 9 0 0 0 0 1 +Section 4.4.1, section S Se Sec Sect BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 0 .., 3 9 0 0 0 0 1 +and will and a an and and BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 0 . 1 8 0 0 0 0 1 +instantiation of instantiation i in ins inst BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 0 , 1 10 0 0 0 0 1 +is established is i is is is BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 0 no 0 9 0 0 0 0 1 +transmissions between transmissions t tr tra tran BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 0 . 1 9 0 0 0 0 1 +between a between b be bet betw BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 0 no 0 9 0 0 0 0 1 +implement the implement i im imp impl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 0 . 1 9 0 0 0 0 1 +link is link l li lin link BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 6 0 . 1 8 0 0 0 0 1 +If the if I If If If BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 3 no 0 10 0 0 0 0 1 +bandwidth, peak bandwidth, b ba ban band BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 3 ,. 2 9 0 0 0 0 1 +allow for allow a al all allo BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 3 ,. 2 9 0 0 0 0 1 +As discussed as A As As As BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 3 ., 2 9 0 0 0 0 1 +[RFC8480] specifies [rfc8480] [ [R [RF [RFC BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 3 [] 2 9 0 0 0 0 1 +soft cells soft s so sof soft BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 3 , 1 10 0 0 0 0 1 +a Scheduling a a a a a BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 1 0 0 0 0 0 6 3 (). 3 10 0 0 0 0 1 +global knowledge global g gl glo glob BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 3 , 1 8 0 0 0 0 1 +scheduling collisions scheduling s sc sch sche BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 6 3 . 1 5 0 0 0 0 1 +And as and A An And And BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 5 .., 3 9 0 0 0 0 1 +(SF) is (sf) ( (S (SF (SF) BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 6 5 () 2 9 0 0 0 0 1 +dynamic allocation dynamic d dy dyn dyna BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 5 . 1 9 0 0 0 0 1 +part of part p pa par part BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 5 . 1 9 0 0 0 0 1 +or may or o or or or BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 5 . 1 9 0 0 0 0 1 +"6TiSCH Minimal "6tisch " "6 "6T "6Ti BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 5 "()"[-.--] 10 9 0 0 0 0 1 +provides a provides p pr pro prov BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 5 no 0 10 0 0 0 0 1 +devices that devices d de dev devi BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 5 . 1 7 0 0 0 0 1 +Monitoring and monitoring M Mo Mon Moni BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 7 . 1 9 0 0 0 0 1 +layer, the layer, l la lay laye BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 7 , 1 9 0 0 0 0 1 +of cells. of o of of of BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 7 ., 2 9 0 0 0 0 1 +request 6top request r re req requ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 7 no 0 9 0 0 0 0 1 +particular neighbor, particular p pa par part BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 7 , 1 10 0 0 0 0 1 +slotOffset/channelOffset of slotoffset/channeloffset s sl slo slot BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 7 /. 2 5 0 0 0 0 1 +4.4.3. Remote 4.4.3. 4 4. 4.4 4.4. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 9 ... 3 10 0 0 0 0 1 +Remote monitoring remote R Re Rem Remo BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 9 / 1 9 0 0 0 0 1 +model whereby model m mo mod mode BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 9 ,, 2 9 0 0 0 0 1 +reside in reside r re res resi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 9 no 0 9 0 0 0 0 1 +control IPv6 control c co con cont BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 9 (.). 4 9 0 0 0 0 1 +composite centralized composite c co com comp BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 9 (.., 4 10 0 0 0 0 1 +buffers and buffers b bu buf buff BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 9 ) 1 8 0 0 0 0 1 +reliability within reliability r re rel reli BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 9 -. 2 9 0 0 0 0 1 +Thubert Thubert thubert T Th Thu Thub BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 6 11 no 0 3 0 0 0 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 11 , 1 10 0 0 0 0 0 +[Page 36] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 11 [] 2 3 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 6 0 - 1 10 0 0 1 0 1 +6tisch-architecture 6tisch-architecture 6tisch-architecture 6 6t 6ti 6tis BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 0 - 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 6 0 no 0 6 0 0 0 0 1 +The work the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 0 - 1 10 0 0 0 0 1 +did not did d di did did BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 0 no 0 9 0 0 0 0 1 +controller to controller c co con cont BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 0 . 1 9 0 0 0 0 1 +This is this T Th Thi This BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 0 ,... 4 7 0 0 0 0 1 +With respect with W Wi Wit With BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 3 , 1 10 0 0 0 0 1 +that the that t th tha that BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 3 no 0 9 0 0 0 0 1 +extension of extension e ex ext exte BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 3 no 0 7 0 0 0 0 1 +[I-D.ietf-detnet-architecture], which [i-d.ietf-detnet-architecture], [ [I [I- [I-D BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 3 [-.--],- 8 9 0 0 0 0 1 +Deterministic Networks, deterministic D De Det Dete BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 6 3 , 1 9 0 0 0 0 1 +Layer-2 domains. layer-2 L La Lay Laye BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 3 -. 2 2 0 0 0 0 1 +The DetNet the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 6 no 0 9 0 0 0 0 1 +(SDN) Architecture (sdn) ( (S (SD (SDN BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 6 6 (),() 5 8 0 0 0 0 1 +Application Plane, application A Ap App Appl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 6 ,(), 4 10 0 0 0 0 1 +Network Plane network N Ne Net Netw BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 6 6 . 1 6 0 0 0 0 1 +Software-Defined Networking software-defined S So Sof Soft BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 9 -(): 4 8 0 0 0 0 1 +Terminology [RFC7426] terminology T Te Ter Term BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 9 [] 2 10 0 0 0 0 1 +architecture that architecture a ar arc arch BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 9 . 1 6 0 0 0 0 1 +Thubert Thubert thubert T Th Thu Thub BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 6 11 no 0 3 0 0 0 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 11 , 1 10 0 0 0 0 0 +[Page 37] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 11 [] 2 3 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 6 0 - 1 10 0 0 1 0 1 +6tisch-architecture 6tisch-architecture 6tisch-architecture 6 6t 6ti 6tis BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 0 - 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 6 0 no 0 6 0 0 0 0 1 +o--------------------------------o o--------------------------------o o--------------------------------o o o- o-- o--- BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 0 -------------------------------- 32 5 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 0 no 0 0 0 0 0 0 1 +| +-------------+ | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 0 ------------- 13 2 0 0 0 0 1 ++----------+ | +----------+ + +- +-- +--- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 6 0 ---------- 10 2 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 0 no 0 2 0 0 0 0 1 +| Service | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 0 no 0 2 0 0 0 0 1 +| +-------------+ | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 0 ------------- 13 2 0 0 0 0 1 ++----------+ | +----------+ + +- +-- +--- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 6 0 ---------- 10 2 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 0 no 0 0 0 0 0 0 1 +Application Plane application A Ap App Appl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 0 no 0 2 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 0 no 0 0 0 0 0 0 1 +o---------------Y----------------o o---------------Y----------------o o---------------y----------------o o o- o-- o--- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 0 ------------------------------- 31 5 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 0 no 0 0 0 0 0 0 1 +*-----------------------------Y---------------------------------* *-----------------------------Y---------------------------------* *-----------------------------y---------------------------------* * *- *-- *--- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 6 0 *--------------------------------------------------------------* 64 10 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 0 no 0 0 0 0 0 0 1 +Network Services network N Ne Net Netw BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 6 0 () 2 6 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 0 no 0 0 0 0 0 0 1 +*------Y------------------------------------------------Y-------* *------Y------------------------------------------------Y-------* *------y------------------------------------------------y-------* * *- *-- *--- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 6 0 *-------------------------------------------------------------* 63 10 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 0 no 0 0 0 0 0 0 1 +Service Interface service S Se Ser Serv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 0 no 0 2 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 0 no 0 0 0 0 0 0 1 +o------Y------------------o o------Y------------------o o------y------------------o o o- o-- o--- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 0 ------------------------ 24 4 0 0 0 0 1 +o---------------------Y------o o---------------------Y------o o---------------------y------o o o- o-- o--- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 0 --------------------------- 27 4 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 0 no 0 0 0 0 0 0 1 +Control Plane control C Co Con Cont BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 0 no 0 2 0 0 0 0 1 +| Management | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 0 no 0 2 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 0 no 0 0 0 0 0 0 1 +| +----Y----+ | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 0 -------- 8 2 0 0 0 0 1 ++-----+ +-----+ +-----+ + +- +-- +--- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 6 0 ----- 5 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 0 no 0 0 0 0 0 0 1 +| +-----+ | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 0 ----- 5 1 0 0 0 0 1 ++----Y----+ | +----y----+ + +- +-- +--- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 6 0 -------- 8 2 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 0 no 0 2 0 0 0 0 1 +| App | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 0 no 0 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 0 no 0 1 0 0 0 0 1 +| Service | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 0 no 0 2 0 0 0 0 1 +| +----Y----+ | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 0 -------- 8 2 0 0 0 0 1 ++--Y--+ +--Y--+ +--y--+ + +- +-- +--Y BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 6 0 ---- 4 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 0 no 0 0 0 0 0 0 1 +| +--Y--+ | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 0 ---- 4 1 0 0 0 0 1 ++----Y----+ | +----y----+ + +- +-- +--- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 6 0 -------- 8 2 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 0 no 0 0 0 0 0 0 1 +| *----Y-----------Y----* | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 0 *-------------------* 21 4 0 0 0 0 1 +| *---Y---------------Y----* | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 0 *----------------------* 24 4 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 0 no 0 4 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 0 no 0 4 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 0 no 0 0 0 0 0 0 1 +Layer (CAL) layer L La Lay Laye BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 0 () 2 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 0 no 0 0 0 0 0 0 1 +Layer (MAL) layer L La Lay Laye BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 0 () 2 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 0 no 0 0 0 0 0 0 1 +| *----------Y----------* | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 0 *--------------------* 22 4 0 0 0 0 1 +| *----------Y-------------* | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 0 *-----------------------* 25 4 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 0 no 0 0 0 0 0 0 1 +o------------|------------o o------------|------------o o------------|------------o o o- o-- o--- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 0 ------------------------ 24 4 0 0 0 0 1 +o------------|---------------o o------------|---------------o o------------|---------------o o o- o-- o--- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 0 --------------------------- 27 4 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 0 no 0 0 0 0 0 0 1 +| CP | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 0 no 0 0 0 0 0 0 1 +| MP | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 0 no 0 0 0 0 0 0 1 +| Southbound | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 0 no 0 1 0 0 0 0 1 +| Southbound | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 0 no 0 1 0 0 0 0 1 +| Interface | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 0 no 0 1 0 0 0 0 1 +| Interface | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 0 no 0 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 0 no 0 0 0 0 0 0 1 +*------------Y---------------------------------Y----------------* *------------Y---------------------------------Y----------------* *------------y---------------------------------y----------------* * *- *-- *--- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 6 0 *-------------------------------------------------------------* 63 10 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 0 no 0 0 0 0 0 0 1 +Device and device D De Dev Devi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 0 () 2 6 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 0 no 0 0 0 0 0 0 1 +*------------Y---------------------------------Y----------------* *------------Y---------------------------------Y----------------* *------------y---------------------------------y----------------* * *- *-- *--- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 6 0 *-------------------------------------------------------------* 63 10 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 0 no 0 0 0 0 0 0 1 +o-------Y----------o o-------Y----------o o-------y----------o o o- o-- o--- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 0 ----------------- 17 3 0 0 0 0 1 ++-----+ +-----+ +-----+ + +- +-- +--- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 6 0 ----- 5 1 0 0 0 0 1 +o--------Y----------o o--------Y----------o o--------y----------o o o- o-- o--- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 0 ------------------ 18 3 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 0 no 0 0 0 0 0 0 1 +| Forwarding | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 0 no 0 3 0 0 0 0 1 +| App | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 0 no 0 1 0 0 0 0 1 +| Operational | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 0 no 0 3 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 0 no 0 0 0 0 0 0 1 +o------------------o o------------------o o------------------o o o- o-- o--- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 0 ------------------ 18 3 0 0 0 0 1 ++-----+ +-----+ +-----+ + +- +-- +--- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 6 0 ----- 5 1 0 0 0 0 1 +o-------------------o o-------------------o o-------------------o o o- o-- o--- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 0 ------------------- 19 3 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 0 no 0 0 0 0 0 0 1 +Network Device network N Ne Net Netw BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 6 0 no 0 2 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 0 no 0 0 0 0 0 0 1 ++---------------------------------------------------------------+ +---------------------------------------------------------------+ +---------------------------------------------------------------+ + +- +-- +--- BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 6 0 --------------------------------------------------------------- 63 10 0 0 0 0 1 +Figure 10: figure F Fi Fig Figu BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 11 : 1 10 0 0 0 0 1 +The PCE the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 11 --, 3 10 0 0 0 0 1 +described in described d de des desc BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 11 ... 3 6 0 0 0 0 1 +Thubert Thubert thubert T Th Thu Thub BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 6 11 no 0 3 0 0 0 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 11 , 1 10 0 0 0 0 0 +[Page 38] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 11 [] 2 3 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 6 0 - 1 10 0 0 1 0 1 +6tisch-architecture 6tisch-architecture 6tisch-architecture 6 6t 6ti 6tis BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 0 - 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 6 0 no 0 6 0 0 0 0 1 +The DetNet the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 0 no 0 10 0 0 0 0 1 +across heterogeneous across a ac acr acro BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 0 . 1 10 0 0 0 0 1 +and an and a an and and BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 0 . 1 3 0 0 0 0 1 +This model this T Th Thi This BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 1 , 1 9 0 0 0 0 1 +federates multiple federates f fe fed fede BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 1 no 0 10 0 0 0 0 1 +can be, can c ca can can BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 1 ,,-., 5 9 0 0 0 0 1 +synchronize with synchronize s sy syn sync BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 1 , 1 9 0 0 0 0 1 +the multiple the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 1 no 0 8 0 0 0 0 1 +synchronized. synchronized. synchronized. s sy syn sync BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 1 . 1 2 0 0 0 0 1 +If the if I If If If BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 2 , 1 9 0 0 0 0 1 +that the that t th tha that BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 2 -- 2 10 0 0 0 0 1 +LLN and lln L LL LLN LLN BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 6 2 . 1 10 0 0 0 0 1 +a deterministic a a a a a BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 1 0 0 0 0 0 6 2 no 0 9 0 0 0 0 1 +Std. 802.1 std. S St Std Std. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 6 2 ..,- 4 9 0 0 0 0 1 +to-end deterministic to-end t to to- to-e BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 2 -. 2 4 0 0 0 0 1 +4.4.4. Hop-by-hop 4.4.4. 4 4. 4.4 4.4. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 4 ...-- 5 10 0 0 0 0 1 +A node a A A A A BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 1 0 0 0 0 0 6 5 (.) 3 8 0 0 0 0 1 +destination(s) that destination(s) d de des dest BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 5 () 2 9 0 0 0 0 1 +at each at a at at at BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 5 .. 2 9 0 0 0 0 1 +Track Scheduling track T Tr Tra Trac BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 5 no 0 10 0 0 0 0 1 +Track is track T Tr Tra Trac BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 5 no 0 9 0 0 0 0 1 +when needed. when w wh whe when BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 5 . 1 1 0 0 0 0 1 +This hop-by-hop this T Th Thi This BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 6 -- 2 9 0 0 0 0 1 +essence to essence e es ess esse BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 6 []/[]/[]. 9 10 0 0 0 0 1 +node to node n no nod node BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 6 --. 3 8 0 0 0 0 1 +4.5. On 4.5. 4 4. 4.5 4.5. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 8 .. 2 10 0 0 0 0 1 +The architecture the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 8 , 1 9 0 0 0 0 1 +directed path directed d di dir dire BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 8 no 0 10 0 0 0 0 1 +6TiSCH node(s) 6tisch 6 6T 6Ti 6TiS BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 8 (). 3 5 0 0 0 0 1 +A Track a A A A A BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 1 0 0 0 0 0 6 9 no 0 10 0 0 0 0 1 +Path as path P Pa Pat Path BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 9 [-.--]. 7 9 0 0 0 0 1 +resources such resources r re res reso BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 9 no 0 9 0 0 0 0 1 +intermediate 6TiSCH intermediate i in int inte BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 9 . 1 9 0 0 0 0 1 +A 6TiSCH a A A A A BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 1 0 0 0 0 0 6 9 no 0 9 0 0 0 0 1 +should use should s sh sho shou BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 9 , 1 9 0 0 0 0 1 +which bundle(s) which w wh whi whic BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 9 () 2 9 0 0 0 0 1 +the Track. the t th the the BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 9 . 1 1 0 0 0 0 1 +Thubert Thubert thubert T Th Thu Thub BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 6 11 no 0 3 0 0 0 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 11 , 1 10 0 0 0 0 0 +[Page 39] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 11 [] 2 3 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 6 0 - 1 10 0 0 1 0 1 +6tisch-architecture 6tisch-architecture 6tisch-architecture 6 6t 6ti 6tis BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 0 - 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 6 0 no 0 6 0 0 0 0 1 +4.5.1. General 4.5.1. 4 4. 4.5 4.5. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 0 ... 3 10 0 0 0 0 1 +A Track a A A A A BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 1 0 0 0 0 0 6 0 - 1 9 0 0 0 0 1 +schedules and schedules s sc sch sche BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 0 no 0 9 0 0 0 0 1 +that is that t th tha that BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 0 no 0 10 0 0 0 0 1 +destination. destination. destination. d de des dest BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 0 . 1 1 0 0 0 0 1 +Multiple cells multiple M Mu Mul Mult BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 1 no 0 9 0 0 0 0 1 +single packet, single s si sin sing BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 1 ,. 2 9 0 0 0 0 1 +802.15.4 Automatic 802.15.4 8 80 802 802. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 1 ..-(); 6 8 0 0 0 0 1 +acknowledgment may acknowledgment a ac ack ackn BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 1 , 1 10 0 0 0 0 1 +no scheduled no n no no no BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 1 . 1 5 0 0 0 0 1 +There are there T Th The Ther BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 3 no 0 10 0 0 0 0 1 +a source a a a a a BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 1 0 0 0 0 0 6 3 . 1 5 0 0 0 0 1 +1. Track 1. 1 1. 1. 1. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 3 .,.., 5 10 0 0 0 0 1 +Layer-2 forwarding layer-2 L La Lay Laye BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 3 -, 2 9 0 0 0 0 1 +and overhead and a an and and BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 3 -., 3 9 0 0 0 0 1 +Devices can devices D De Dev Devi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 3 , 1 10 0 0 0 0 1 +resource constrained resource r re res reso BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 3 . 1 4 0 0 0 0 1 +2. Since 2. 2 2. 2. 2. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 5 .,..,, 6 9 0 0 0 0 1 +reserved for reserved r re res rese BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 5 no 0 9 0 0 0 0 1 +the Track, the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 5 , 1 10 0 0 0 0 1 +along a along a al alo alon BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 5 . 1 10 0 0 0 0 1 +3. By 3. 3 3. 3. 3. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 6 .() 3 10 0 0 0 0 1 +outgoing bundle(s), outgoing o ou out outg BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 6 (), 3 9 0 0 0 0 1 +energy by energy e en ene ener BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 6 -. 2 8 0 0 0 0 1 +4. Tracks 4. 4 4. 4. 4. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 7 . 1 10 0 0 0 0 1 +is scheduled is i is is is BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 7 , 1 9 0 0 0 0 1 +is avoided is i is is is BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 7 no 0 9 0 0 0 0 1 +use that use u us use use BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 7 . 1 9 0 0 0 0 1 +and thus and a an and and BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 7 no 0 9 0 0 0 0 1 +reducing the reducing r re red redu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 7 . 1 5 0 0 0 0 1 +4.5.2. Serial 4.5.2. 4 4. 4.5 4.5. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 9 ... 3 10 0 0 0 0 1 +A Serial a A A A A BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 1 0 0 0 0 0 7 9 (); 3 9 0 0 0 0 1 +bundle of bundle b bu bun bund BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 9 (-) 3 10 0 0 0 0 1 +paired to paired p pa pai pair BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 7 9 (-), 4 9 0 0 0 0 1 +representing a representing r re rep repr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 9 - 1 9 0 0 0 0 1 +of the of o of of of BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 9 .-- 3 9 0 0 0 0 1 +end as end e en end end BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 9 , 1 9 0 0 0 0 1 +previous hop previous p pr pre prev BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 9 . 1 9 0 0 0 0 1 +Thubert Thubert thubert T Th Thu Thub BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 7 11 no 0 3 0 0 0 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 11 , 1 10 0 0 0 0 0 +[Page 40] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 7 11 [] 2 3 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 7 0 - 1 10 0 0 1 0 1 +6tisch-architecture 6tisch-architecture 6tisch-architecture 6 6t 6ti 6tis BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 0 - 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 7 0 no 0 6 0 0 0 0 1 +For a for F Fo For For BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 0 , 1 9 0 0 0 0 1 +of the of o of of of BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 0 - 1 9 0 0 0 0 1 +sequence that sequence s se seq sequ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 0 , 1 10 0 0 0 0 1 +which results which w wh whi whic BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 0 no 0 8 0 0 0 0 1 +transmission. The transmission. t tr tra tran BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 0 . 1 9 0 0 0 0 1 +variable rates variable v va var vari BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 0 , 1 9 0 0 0 0 1 +in the in i in in in BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 7 0 . 1 4 0 0 0 0 1 +4.5.3. Complex 4.5.3. 4 4. 4.5 4.5. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 2 ... 3 10 0 0 0 0 1 +The art the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 2 no 0 9 0 0 0 0 1 +and Elimination and a an and and BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 2 . 1 9 0 0 0 0 1 +Redundancy Protocol redundancy R Re Red Redu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 2 ()- 3 8 0 0 0 0 1 +Redundancy (HSR) redundancy R Re Red Redu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 2 ()[]., 6 9 0 0 0 0 1 +Track that track T Tr Tra Trac BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 2 , 1 9 0 0 0 0 1 +shaped as shaped s sh sha shap BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 2 () 2 10 0 0 0 0 1 +to support to t to to to BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 2 -. 2 8 0 0 0 0 1 +A Complex a A A A A BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 1 0 0 0 0 0 7 4 no 0 9 0 0 0 0 1 +purpose of purpose p pu pur purp BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 4 ,/, 3 8 0 0 0 0 1 +reconverges later reconverges r re rec reco BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 7 4 . 1 8 0 0 0 0 1 +Replication, Elimination replication, R Re Rep Repl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 7 4 ,() 3 9 0 0 0 0 1 +Detnet. Packet detnet. D De Det Detn BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 7 4 .,,() 5 10 0 0 0 0 1 +adds radio-specific adds a ad add adds BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 4 -- 2 9 0 0 0 0 1 +listening to listening l li lis list BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 4 no 0 10 0 0 0 0 1 +of the of o of of of BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 4 no 0 9 0 0 0 0 1 +Available Wireless available A Av Ava Avai BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 4 ()., 4 10 0 0 0 0 1 +may extend may m ma may may BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 1 0 0 7 4 . 1 9 0 0 0 0 1 +In the in I In In In BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 7 6 , 1 10 0 0 0 0 1 +almost systematically almost a al alm almo BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 6 -. 2 8 0 0 0 0 1 +scheduled so scheduled s sc sch sche BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 6 no 0 9 0 0 0 0 1 +solutions, and solutions, s so sol solu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 6 , 1 9 0 0 0 0 1 +and use and a an and and BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 6 - 1 10 0 0 0 0 1 +by ARQ. by b by by by BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 6 .,, 3 9 0 0 0 0 1 +schedule more schedule s sc sch sche BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 6 , 1 9 0 0 0 0 1 +Layer-2 retries layer-2 L La Lay Laye BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 6 -(). 4 9 0 0 0 0 1 +only uses only o on onl only BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 6 . 1 9 0 0 0 0 1 +4.5.4. DetNet 4.5.4. 4 4. 4.5 4.5. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 9 ...-- 5 10 0 0 0 0 1 +Ultimately, DetNet ultimately, U Ul Ult Ulti BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 9 ,[-.--] 7 9 0 0 0 0 1 +extend a extend e ex ext exte BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 9 . 1 10 0 0 0 0 1 +that example, that t th tha that BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 9 , 1 9 0 0 0 0 1 +6TiSCH network 6tisch 6 6T 6Ti 6TiS BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 9 .- 2 9 0 0 0 0 1 +Sensitive Networking sensitive S Se Sen Sens BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 9 ().- 4 9 0 0 0 0 1 +Layer handles layer L La Lay Laye BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 9 ,, 2 9 0 0 0 0 1 +Functions over functions F Fu Fun Func BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 9 . 1 6 0 0 0 0 1 +Thubert Thubert thubert T Th Thu Thub BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 7 11 no 0 3 0 0 0 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 11 , 1 10 0 0 0 0 0 +[Page 41] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 7 11 [] 2 3 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 7 0 - 1 10 0 0 1 0 1 +6tisch-architecture 6tisch-architecture 6tisch-architecture 6 6t 6ti 6tis BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 0 - 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 7 0 no 0 6 0 0 0 0 1 +The Replication the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 0 no 0 9 0 0 0 0 1 +packet over packet p pa pac pack BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 0 , 1 10 0 0 0 0 1 +both branches both b bo bot both BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 0 no 0 9 0 0 0 0 1 +gateway. In gateway. g ga gat gate BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 0 ., 2 9 0 0 0 0 1 +of the of o of of of BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 0 . 1 9 0 0 0 0 1 +the IoT the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 0 , 1 9 0 0 0 0 1 +extra packet extra e ex ext extr BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 0 . 1 8 0 0 0 0 1 ++-=-=-+ +-=-=-+ +-=-=-+ + +- +-= +-=- BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 7 2 --- 3 2 0 0 0 0 1 +| IoT | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 2 no 0 2 0 0 0 0 1 +| G/W | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 2 / 1 2 0 0 0 0 1 ++-=-=-+ +-=-=-+ +-=-=-+ + +- +-= +-=- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 7 2 --- 3 2 0 0 0 0 1 +^ <=== ^ ^ ^ ^ ^ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 2 no 0 5 0 0 0 0 1 +Track branch track T Tr Tra Trac BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 2 no 0 3 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 2 no 0 1 0 0 0 0 1 ++-=-=-=-+ +-=-=-=-=+ +-=-=-=-+ + +- +-= +-=- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 7 2 -------- 8 10 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 2 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 2 no 0 0 0 0 0 0 1 ++-=|-=+ +-=|-=+ +-=|-=+ + +- +-= +-=| BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 7 2 -- 2 2 0 0 0 0 1 ++-=|-=+ +-=|-=+ +-=|-=+ + +- +-= +-=| BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 7 2 -- 2 2 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 2 no 0 4 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 2 no 0 4 0 0 0 0 1 +o o o o o o o BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 7 2 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 2 no 0 3 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 2 no 0 3 0 0 0 0 1 ++-=/-=+ +-=/-=+ +-=/-=+ + +- +-= +-=/ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 7 2 -/- 3 2 0 0 0 0 1 ++-=|-=+ +-=|-=+ +-=|-=+ + +- +-= +-=| BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 7 2 -- 2 2 0 0 0 0 1 +o o o o o o o BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 7 2 no 0 0 0 0 0 0 1 +/ / / / / / / BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 2 / 1 0 0 0 0 0 1 +o o o o o o o BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 7 2 no 0 0 0 0 0 0 1 +o-=-o-=-=/ o-=-o-=-=/ o-=-o-=-=/ o o- o-= o-=- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 7 2 ----/ 5 2 0 0 0 0 1 +o o o o o o o BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 7 2 no 0 0 0 0 0 0 1 +o o o o o o o BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 7 2 no 0 0 0 0 0 0 1 +o-=-o-=/ o-=-o-=/ o-=-o-=/ o o- o-= o-=- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 7 2 ---/ 4 2 0 0 0 0 1 +o o o o o o o BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 7 2 no 0 0 0 0 0 0 1 +o o o o o o o BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 7 2 no 0 0 0 0 0 0 1 +o o o o o o o BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 7 2 no 0 1 0 0 0 0 1 +o o o o o o o BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 7 2 no 0 0 0 0 0 0 1 +o o o o o o o BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 7 2 no 0 0 0 0 0 0 1 +\ / \ \ \ \ \ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 2 / 1 1 0 0 0 0 1 +o o o o o o o BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 7 2 no 0 0 0 0 0 0 1 +o o o o o o o BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 7 2 no 0 0 0 0 0 0 1 +LLN LLN lln L LL LLN LLN BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 7 2 no 0 1 0 0 0 0 1 +o o o o o o o BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 7 2 no 0 0 0 0 0 0 1 +o o o o o o o BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 7 2 no 0 0 0 0 0 0 1 +v <=== v v v v v BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 7 2 no 0 5 0 0 0 0 1 +o o o o o o o BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 7 2 no 0 0 0 0 0 0 1 +Figure 11: figure F Fi Fig Figu BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 5 :-- 3 10 0 0 0 0 1 +4.5.5. Cell 4.5.5. 4 4. 4.5 4.5. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 6 ... 3 10 0 0 0 0 1 +The 6TiSCH the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 6 no 0 10 0 0 0 0 1 +well as well w we wel well BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 6 ,: 2 9 0 0 0 0 1 +A TX-cell a A A A A BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 1 0 0 0 0 0 7 6 - 1 10 0 0 0 0 1 +opportunistically on opportunistically o op opp oppo BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 7 6 -. 2 10 0 0 0 0 1 +the frame the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 6 no 0 9 0 0 0 0 1 +transmitted, any transmitted, t tr tra tran BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 6 ,- 2 9 0 0 0 0 1 +upper layer upper u up upp uppe BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 6 - 1 9 0 0 0 0 1 +hop along hop h ho hop hop BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 6 ., 2 9 0 0 0 0 1 +effectively a effectively e ef eff effe BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 6 -, 2 9 0 0 0 0 1 +destination is destination d de des dest BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 6 -. 2 6 0 0 0 0 1 +It results it I It It It BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 9 - 1 10 0 0 0 0 1 +destination MAC destination d de des dest BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 9 no 0 9 0 0 0 0 1 +MAC address mac M MA MAC MAC BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 1 1 0 0 0 0 0 7 9 no 0 9 0 0 0 0 1 +upper layer. upper u up upp uppe BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 9 . 1 9 0 0 0 0 1 +address is address a ad add addr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 9 no 0 10 0 0 0 0 1 +the 6top the t th the the BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 9 . 1 2 0 0 0 0 1 +Thubert Thubert thubert T Th Thu Thub BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 7 11 no 0 3 0 0 0 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 11 , 1 10 0 0 0 0 0 +[Page 42] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 7 11 [] 2 3 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 7 0 - 1 10 0 0 1 0 1 +6tisch-architecture 6tisch-architecture 6tisch-architecture 6 6t 6ti 6tis BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 0 - 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 7 0 no 0 6 0 0 0 0 1 +On the on O On On On BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 0 ,- 2 10 0 0 0 0 1 +in the in i in in in BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 7 0 , 1 10 0 0 0 0 1 +if more if i if if if BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 0 ., 2 9 0 0 0 0 1 +and if and a an and and BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 0 , 1 10 0 0 0 0 1 +transmission in transmission t tr tra tran BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 0 - 1 9 0 0 0 0 1 +the next the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 0 . 1 9 0 0 0 0 1 +next-hop MAC next-hop n ne nex next BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 0 -. 2 5 0 0 0 0 1 +It results it I It It It BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 2 - 1 9 0 0 0 0 1 +in fact in i in in in BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 7 2 . 1 9 0 0 0 0 1 +Ethernet, off-Track ethernet, E Et Eth Ethe BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 7 2 ,- 2 9 0 0 0 0 1 +to be to t to to to BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 2 -. 2 9 0 0 0 0 1 +But with but B Bu But But BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 2 ,- 2 9 0 0 0 0 1 +transmission failures, transmission t tr tra tran BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 2 , 1 10 0 0 0 0 1 +frame that frame f fr fra fram BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 7 2 -, 2 8 0 0 0 0 1 +appropriate bundle appropriate a ap app appr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 2 ..- 3 8 0 0 0 0 1 +scheduling it scheduling s sc sch sche BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 7 2 no 0 10 0 0 0 0 1 +the Track, the t th the the BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 2 ,. 2 8 0 0 0 0 1 +4.6. Forwarding 4.6. 4 4. 4.6 4.6. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 5 .. 2 10 0 0 0 0 1 +By forwarding, by B By By By BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 5 ,- 2 9 0 0 0 0 1 +allows to allows a al all allo BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 5 no 0 10 0 0 0 0 1 +node. Forwarding node. n no nod node BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 5 .- 2 10 0 0 0 0 1 +as a as a as as as BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 5 .. 2 9 0 0 0 0 1 +three different three t th thr thre BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 5 :(-), 5 8 0 0 0 0 1 +(classical) IPv6 (classical) ( (c (cl (cla BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 7 5 ()(). 5 9 0 0 0 0 1 +4.6.1. Track 4.6.1. 4 4. 4.6 4.6. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 6 ... 3 10 0 0 0 0 1 +Forwarding along forwarding F Fo For Forw BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 7 - 1 9 0 0 0 0 1 +Label Switching label L La Lab Labe BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 7 (-) 3 9 0 0 0 0 1 +switch a switch s sw swi swit BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 7 , 1 9 0 0 0 0 1 +properties of properties p pr pro prop BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 7 , 1 9 0 0 0 0 1 +the case the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 7 .,( 3 8 0 0 0 0 1 +Layer-2 security) layer-2 L La Lay Laye BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 7 -), 3 8 0 0 0 0 1 +regardless of regardless r re reg rega BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 7 ,, 2 10 0 0 0 0 1 +fragment, or fragment, f fr fra frag BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 7 , 1 9 0 0 0 0 1 +or ISA100.11a. or o or or or BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 7 .. 2 2 0 0 0 0 1 +A data a A A A A BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 1 0 0 0 0 0 7 9 no 0 8 0 0 0 0 1 +destination MAC destination d de des dest BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 9 - 1 9 0 0 0 0 1 +address depending address a ad add addr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 9 ., 2 9 0 0 0 0 1 +intermediate nodes intermediate i in int inte BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 9 no 0 10 0 0 0 0 1 +without incurring without w wi wit with BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 9 . 1 9 0 0 0 0 1 +Std. 802.15.4, std. S St Std Std. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 7 9 ...,, 5 10 0 0 0 0 1 +Track the track T Tr Tra Trac BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 9 no 0 10 0 0 0 0 1 +0xFFFF. 0xFFFF. 0xffff. 0 0x 0xF 0xFF BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 9 . 1 1 0 0 0 0 1 +Thubert Thubert thubert T Th Thu Thub BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 7 11 no 0 3 0 0 0 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 11 , 1 10 0 0 0 0 0 +[Page 43] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 7 11 [] 2 3 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 7 0 - 1 10 0 0 1 0 1 +6tisch-architecture 6tisch-architecture 6tisch-architecture 6 6t 6ti 6tis BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 0 - 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 7 0 no 0 6 0 0 0 0 1 +There are there T Th The Ther BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 0 ,. 2 10 0 0 0 0 1 +4.6.1.1. Native 4.6.1.1. 4 4. 4.6 4.6. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 0 .... 4 10 0 0 0 0 1 +In native in I In In In BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 7 0 ,()- 4 10 0 0 0 0 1 +dependent meta-data dependent d de dep depe BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 0 -, 2 9 0 0 0 0 1 +sublayer can sublayer s su sub subl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 7 0 no 0 8 0 0 0 0 1 +ambiguity. In ambiguity. a am amb ambi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 0 ., 2 10 0 0 0 0 1 +be done be b be be be BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 0 -[-.--]. 8 9 0 0 0 0 1 +particular, implementations particular, p pa par part BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 0 , 1 8 0 0 0 0 1 +identification of identification i id ide iden BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 0 . 1 9 0 0 0 0 1 +The flow the T Th The The BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 0 no 0 9 0 0 0 0 1 +Instance (see instance I In Ins Inst BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 0 (..[]), 7 9 0 0 0 0 1 +Information (more information I In Inf Info BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 0 (...[]). 8 8 0 0 0 0 1 +identification is identification i id ide iden BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 0 no 0 8 0 0 0 0 1 +destination MAC destination d de des dest BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 0 (). 3 9 0 0 0 0 1 +Figure 12 figure F Fi Fig Figu BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 4 no 0 10 0 0 0 0 1 +the 6top the t th the the BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 4 ,. 2 4 0 0 0 0 1 +| Packet | | | | | BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 4 no 0 10 0 0 0 0 1 ++--------------+ +--------------+ +--------------+ + +- +-- +--- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 7 4 -------------- 14 4 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 4 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 4 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 4 no 0 0 0 0 0 0 1 +IPv6 IPv6 ipv6 I IP IPv IPv6 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 4 no 0 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 4 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 4 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 4 no 0 0 0 0 0 0 1 ++--------------+ +--------------+ +--------------+ + +- +-- +--- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 7 4 -------------- 14 4 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 4 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 4 no 0 0 0 0 0 0 1 +| 6LoWPAN | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 4 no 0 3 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 4 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 4 no 0 0 0 0 0 0 1 ++--------------+ ingress +--------------+ + +- +-- +--- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 7 4 -------------- 14 6 0 0 0 0 1 +egress egress egress e eg egr egre BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 7 4 no 0 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 4 no 0 0 0 0 0 0 1 +6top 6top 6top 6 6t 6to 6top BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 4 no 0 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 4 no 0 0 0 0 0 0 1 +sets sets sets s se set sets BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 4 no 0 1 0 0 0 0 1 ++----+ +----+ +----+ + +- +-- +--- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 7 4 ---- 4 1 0 0 0 0 1 ++----+ +----+ +----+ + +- +-- +--- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 7 4 ---- 4 1 0 0 0 0 1 +restores restores restores r re res rest BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 4 no 0 2 0 0 0 0 1 ++--------------+ DMAC +--------------+ + +- +-- +--- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 7 4 -------------- 14 6 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 4 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 4 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 4 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 4 no 0 0 0 0 0 0 1 +DMAC to dmac D DM DMA DMAC BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 7 4 no 0 2 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 4 no 0 0 0 0 0 0 1 +TSCH MAC tsch T TS TSC TSCH BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 7 4 no 0 2 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 4 no 0 0 0 0 0 0 1 +brdcst brdcst brdcst b br brd brdc BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 7 4 no 0 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 4 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 4 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 4 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 4 no 0 0 0 0 0 0 1 +dest dest dest d de des dest BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 7 4 no 0 1 0 0 0 0 1 ++--------------+ +--------------+ +--------------+ + +- +-- +--- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 7 4 -------------- 14 4 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 4 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 4 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 4 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 4 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 4 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 4 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 4 no 0 0 0 0 0 0 1 +LLN PHY lln L LL LLN LLN BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 7 4 no 0 2 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 4 no 0 0 0 0 0 0 1 ++-------+ +-------+ +-------+ + +- +-- +--- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 7 4 ------- 7 2 0 0 0 0 1 ++--...-----+ +--...-----+ +--...-----+ + +- +-- +--. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 7 4 --...----- 10 3 0 0 0 0 1 ++-------+ +-------+ +-------+ + +- +-- +--- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 7 4 ------- 7 2 0 0 0 0 1 ++--------------+ +--------------+ +--------------+ + +- +-- +--- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 7 4 -------------- 14 4 0 0 0 0 1 +Ingress Ingress ingress I In Ing Ingr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 7 4 no 0 2 0 0 0 0 1 +Relay Relay relay R Re Rel Rela BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 4 no 0 1 0 0 0 0 1 +Relay Relay relay R Re Rel Rela BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 4 no 0 1 0 0 0 0 1 +Egress Egress egress E Eg Egr Egre BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 7 4 no 0 1 0 0 0 0 1 +Stack Layer stack S St Sta Stac BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 7 4 no 0 3 0 0 0 0 1 +Node Node node N No Nod Node BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 4 no 0 1 0 0 0 0 1 +Node Node node N No Nod Node BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 4 no 0 1 0 0 0 0 1 +Node Node node N No Nod Node BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 4 no 0 1 0 0 0 0 1 +Node Node node N No Nod Node BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 4 no 0 1 0 0 0 0 1 +Figure 12: figure F Fi Fig Figu BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 8 :, 2 10 0 0 0 0 1 +4.6.1.2. Tunnel 4.6.1.2. 4 4. 4.6 4.6. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 9 .... 4 10 0 0 0 0 1 +In tunnel in I In In In BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 7 9 , 1 9 0 0 0 0 1 +a compatible a a a a a BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 1 0 0 0 0 0 7 9 no 0 9 0 0 0 0 1 +network. An network. n ne net netw BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 9 . 1 9 0 0 0 0 1 +is capable is i is is is BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 9 . 1 10 0 0 0 0 1 +with the with w wi wit with BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 9 , 1 9 0 0 0 0 1 +Backbone Router, backbone B Ba Bac Back BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 9 ,.,(..,) 8 9 0 0 0 0 1 +can coordinate can c ca can can BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 9 . 1 9 0 0 0 0 1 +System Manager system S Sy Sys Syst BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 9 . 1 8 0 0 0 0 1 +Thubert Thubert thubert T Th Thu Thub BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 7 11 no 0 3 0 0 0 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 11 , 1 10 0 0 0 0 0 +[Page 44] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 7 11 [] 2 3 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 7 0 - 1 10 0 0 1 0 1 +6tisch-architecture 6tisch-architecture 6tisch-architecture 6 6t 6ti 6tis BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 0 - 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 7 0 no 0 6 0 0 0 0 1 ++--------------+ +--------------+ +--------------+ + +- +-- +--- BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 7 0 -------------- 14 4 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +IPv6 IPv6 ipv6 I IP IPv IPv6 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 0 no 0 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 ++--------------+ +--------------+ +--------------+ + +- +-- +--- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 7 0 -------------- 14 4 0 0 0 0 1 +| 6LoWPAN | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 3 0 0 0 0 1 ++--------------+ +--------------+ +--------------+ + +- +-- +--- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 7 0 -------------- 14 4 0 0 0 0 1 +set set set s se set set BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 0 no 0 1 0 0 0 0 1 +restore restore restore r re res rest BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 7 0 no 0 2 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +6top 6top 6top 6 6t 6to 6top BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 0 no 0 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 ++DMAC+ +DMAC+ +dmac+ + +D +DM +DMA BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 7 0 no 0 1 0 0 0 0 1 ++DMAC+ +DMAC+ +dmac+ + +D +DM +DMA BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 7 0 no 0 1 0 0 0 0 1 ++--------------+ +--------------+ +--------------+ + +- +-- +--- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 7 0 -------------- 14 4 0 0 0 0 1 +to|brdcst to|brdcst to|brdcst t to to| to|b BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 7 0 no 0 2 0 0 0 0 1 +to|nexthop to|nexthop to|nexthop t to to| to|n BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 7 0 no 0 2 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +TSCH MAC tsch T TS TSC TSCH BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 7 0 no 0 2 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 ++--------------+ +--------------+ +--------------+ + +- +-- +--- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 7 0 -------------- 14 4 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +LLN PHY lln L LL LLN LLN BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 7 0 no 0 2 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 ++-------+ +-------+ +-------+ + +- +-- +--- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 7 0 ------- 7 2 0 0 0 0 1 ++--...-----+ +--...-----+ +--...-----+ + +- +-- +--. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 7 0 --...----- 10 3 0 0 0 0 1 ++-------+ +-------+ +-------+ + +- +-- +--- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 7 0 ------- 7 2 0 0 0 0 1 ++--------------+ +--------------+ +--------------+ + +- +-- +--- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 7 0 -------------- 14 4 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +ingress ingress ingress i in ing ingr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 7 0 no 0 2 0 0 0 0 1 +egress egress egress e eg egr egre BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 7 0 no 0 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 ++--------------+ +--------------+ +--------------+ + +- +-- +--- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 7 0 -------------- 14 4 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +LLN PHY lln L LL LLN LLN BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 7 0 no 0 2 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 ++--------------+ +--------------+ +--------------+ + +- +-- +--- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 7 0 -------------- 14 4 0 0 0 0 1 +| Packet | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 10 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +TSCH MAC tsch T TS TSC TSCH BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 7 0 no 0 2 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 0 0 0 0 0 1 ++--------------+ +--------------+ +--------------+ + +- +-- +--- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 7 0 -------------- 14 4 0 0 0 0 1 +| DMAC | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 2 0 0 0 0 1 +| DMAC | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 2 0 0 0 0 1 +|ISA100/WiHART | |isa100/wihart | |I |IS |ISA BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 0 / 1 4 0 0 0 0 1 +| nexthop | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 2 0 0 0 0 1 +v nexthop v v v v v BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 2 0 0 0 0 1 ++--------------+ +--------------+ +--------------+ + +- +-- +--- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 7 0 -------------- 14 4 0 0 0 0 1 +Source Source source S So Sou Sour BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 0 no 0 1 0 0 0 0 1 +Ingress Ingress ingress I In Ing Ingr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 7 0 no 0 2 0 0 0 0 1 +Egress Egress egress E Eg Egr Egre BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 7 0 no 0 1 0 0 0 0 1 +Destination Destination destination D De Des Dest BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 0 no 0 3 0 0 0 0 1 +Stack Layer stack S St Sta Stac BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 7 0 no 0 3 0 0 0 0 1 +Node Node node N No Nod Node BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 0 no 0 1 0 0 0 0 1 +Node Node node N No Nod Node BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 0 no 0 1 0 0 0 0 1 +Node Node node N No Nod Node BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 0 no 0 1 0 0 0 0 1 +Node Node node N No Nod Node BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 0 no 0 1 0 0 0 0 1 +Figure 13: figure F Fi Fig Figu BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 6 :, 2 10 0 0 0 0 1 +In that in I In In In BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 7 6 , 1 9 0 0 0 0 1 +ingress 6TiSCH ingress i in ing ingr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 7 6 -. 2 9 0 0 0 0 1 +to this to t to to to BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 6 no 0 9 0 0 0 0 1 +be tunneled be b be be be BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 6 no 0 10 0 0 0 0 1 +upper layer. upper u up upp uppe BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 6 ., 2 9 0 0 0 0 1 +is passed is i is is is BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 6 . 1 6 0 0 0 0 1 +At the at A At At At BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 8 ,. 2 9 0 0 0 0 1 +tunneling information tunneling t tu tun tunn BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 7 8 , 1 9 0 0 0 0 1 +that the that t th tha that BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 8 , 1 10 0 0 0 0 1 +the appropriate the t th the the BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 8 -. 2 8 0 0 0 0 1 +4.6.1.3. Tunneling 4.6.1.3. 4 4. 4.6 4.6. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 9 .... 4 10 0 0 0 0 1 +Tunneling information tunneling T Tu Tun Tunn BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 7 9 no 0 9 0 0 0 0 1 +the destination the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 9 no 0 9 0 0 0 0 1 +tunnel mode tunnel t tu tun tunn BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 9 , 1 10 0 0 0 0 1 +service access service s se ser serv BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 9 . 1 7 0 0 0 0 1 +If the if I If If If BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 11 no 0 10 0 0 0 0 1 +the configuration, the t th the the BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 11 ,. 2 7 0 0 0 0 1 +Thubert Thubert thubert T Th Thu Thub BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 7 11 no 0 3 0 0 0 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 11 , 1 10 0 0 0 0 0 +[Page 45] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 7 11 [] 2 3 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 7 0 - 1 10 0 0 1 0 1 +6tisch-architecture 6tisch-architecture 6tisch-architecture 6 6t 6ti 6tis BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 0 - 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 7 0 no 0 6 0 0 0 0 1 +If the if I If If If BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 0 -, 2 10 0 0 0 0 1 +then it then t th the then BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 0 no 0 9 0 0 0 0 1 +compressed at compressed c co com comp BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 0 . 1 8 0 0 0 0 1 +Restoring the restoring R Re Res Rest BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 0 no 0 9 0 0 0 0 1 +in the in i in in in BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 7 0 . 1 9 0 0 0 0 1 +reason, a reason, r re rea reas BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 0 , 1 9 0 0 0 0 1 +MAC address mac M MA MAC MAC BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 1 1 0 0 0 0 0 7 0 . 1 9 0 0 0 0 1 +thus mandatory thus t th thu thus BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 0 no 0 9 0 0 0 0 1 +address that address a ad add addr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 0 no 0 10 0 0 0 0 1 +that of that t th tha that BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 0 . 1 10 0 0 0 0 1 +The 6top the T Th The The BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 0 no 0 9 0 0 0 0 1 +to the to t to to to BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 0 . 1 8 0 0 0 0 1 +4.6.2. IPv6 4.6.2. 4 4. 4.6 4.6. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 3 ... 3 10 0 0 0 0 1 +As the as A As As As BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 4 -, 2 9 0 0 0 0 1 +Queue Management queue Q Qu Que Queu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 4 (). 3 10 0 0 0 0 1 +| Packet | | | | | BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 4 no 0 10 0 0 0 0 1 ++--------------+ +--------------+ +--------------+ + +- +-- +--- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 4 -------------- 14 4 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 4 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 4 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 4 no 0 0 0 0 0 0 1 +IPv6 IPv6 ipv6 I IP IPv IPv6 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 4 no 0 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 4 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 4 no 0 0 0 0 0 0 1 ++-QoS+ +-QoS+ +-qos+ + +- +-Q +-Qo BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 4 - 1 1 0 0 0 0 1 ++-QoS+ +-QoS+ +-qos+ + +- +-Q +-Qo BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 4 - 1 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 4 no 0 0 0 0 0 0 1 ++--------------+ +--------------+ +--------------+ + +- +-- +--- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 4 -------------- 14 4 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 4 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 4 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 4 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 4 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 4 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 4 no 0 0 0 0 0 0 1 +| 6LoWPAN | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 4 no 0 3 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 4 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 4 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 4 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 4 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 4 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 4 no 0 0 0 0 0 0 1 ++--------------+ +--------------+ +--------------+ + +- +-- +--- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 4 -------------- 14 4 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 4 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 4 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 4 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 4 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 4 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 4 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 4 no 0 0 0 0 0 0 1 +6top 6top 6top 6 6t 6to 6top BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 4 no 0 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 4 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 4 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 4 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 4 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 4 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 4 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 4 no 0 0 0 0 0 0 1 ++--------------+ +--------------+ +--------------+ + +- +-- +--- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 4 -------------- 14 4 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 4 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 4 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 4 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 4 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 4 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 4 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 4 no 0 0 0 0 0 0 1 +TSCH MAC tsch T TS TSC TSCH BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 4 no 0 2 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 4 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 4 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 4 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 4 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 4 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 4 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 4 no 0 0 0 0 0 0 1 ++--------------+ +--------------+ +--------------+ + +- +-- +--- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 4 -------------- 14 4 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 4 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 4 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 4 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 4 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 4 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 4 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 4 no 0 0 0 0 0 0 1 +LLN PHY lln L LL LLN LLN BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 4 no 0 2 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 4 no 0 0 0 0 0 0 1 ++-------+ +-------+ +-------+ + +- +-- +--- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 4 ------- 7 2 0 0 0 0 1 ++--...-----+ +--...-----+ +--...-----+ + +- +-- +--. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 4 --...----- 10 3 0 0 0 0 1 ++-------+ +-------+ +-------+ + +- +-- +--- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 4 ------- 7 2 0 0 0 0 1 ++--------------+ +--------------+ +--------------+ + +- +-- +--- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 4 -------------- 14 4 0 0 0 0 1 +Source Source source S So Sou Sour BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 4 no 0 1 0 0 0 0 1 +Ingress Ingress ingress I In Ing Ingr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 8 4 no 0 2 0 0 0 0 1 +Egress Egress egress E Eg Egr Egre BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 8 4 no 0 1 0 0 0 0 1 +Destination Destination destination D De Des Dest BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 4 no 0 3 0 0 0 0 1 +Stack Layer stack S St Sta Stac BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 8 4 no 0 3 0 0 0 0 1 +Node Node node N No Nod Node BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 4 no 0 1 0 0 0 0 1 +Router Router router R Ro Rou Rout BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 8 4 no 0 1 0 0 0 0 1 +Router Router router R Ro Rou Rout BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 8 4 no 0 1 0 0 0 0 1 +Node Node node N No Nod Node BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 4 no 0 1 0 0 0 0 1 +Figure 14: figure F Fi Fig Figu BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 9 : 1 10 0 0 0 0 1 +4.6.3. Fragment 4.6.3. 4 4. 4.6 4.6. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 9 ... 3 10 0 0 0 0 1 +Considering that considering C Co Con Cons BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 9 [] 2 10 0 0 0 0 1 +large as large l la lar larg BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 8 9 (),- 4 9 0 0 0 0 1 +mode of mode m mo mod mode BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 9 no 0 9 0 0 0 0 1 +headers, and headers, h he hea head BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 9 ,... 4 9 0 0 0 0 1 +in the in i in in in BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 8 9 , 1 9 0 0 0 0 1 +be fragmented be b be be be BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 9 . 1 9 0 0 0 0 1 +Thubert Thubert thubert T Th Thu Thub BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 8 11 no 0 3 0 0 0 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 11 , 1 10 0 0 0 0 0 +[Page 46] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 11 [] 2 3 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 8 0 - 1 10 0 0 1 0 1 +6tisch-architecture 6tisch-architecture 6tisch-architecture 6 6t 6ti 6tis BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 0 - 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 8 0 no 0 6 0 0 0 0 1 +This level this T Th Thi This BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 0 no 0 10 0 0 0 0 1 +experienced over experienced e ex exp expe BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 0 , 1 8 0 0 0 0 1 +fragmentation is fragmentation f fr fra frag BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 0 . 1 6 0 0 0 0 1 +In the in I In In In BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 8 0 ,-- 3 9 0 0 0 0 1 +recomposition occurs recomposition r re rec reco BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 0 . 1 9 0 0 0 0 1 +This creates this T Th Thi This BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 0 no 0 9 0 0 0 0 1 +store a store s st sto stor BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 0 , 1 10 0 0 0 0 1 +critical resources critical c cr cri crit BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 0 . 1 6 0 0 0 0 1 +[I-D.ietf-6lo-minimal-fragment] describes [i-d.ietf-6lo-minimal-fragment] [ [I [I- [I-D BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 2 [-.---] 7 10 0 0 0 0 1 +fragments end-to-end fragments f fr fra frag BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 2 ---. 4 9 0 0 0 0 1 +framework, [I-D.ietf-lwig-6lowpan-virtual-reassembly] framework, f fr fra fram BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 2 ,[-.----] 9 9 0 0 0 0 1 +virtual reassembly virtual v vi vir virt BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 2 no 0 9 0 0 0 0 1 +6LoWPAN Fragment 6lowpan 6 6L 6Lo 6LoW BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 2 no 0 9 0 0 0 0 1 +sublayer. sublayer. sublayer. s su sub subl BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 2 . 1 1 0 0 0 0 1 +Building on building B Bu Bui Buil BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 3 ,[-.---] 8 8 0 0 0 0 1 +introduces a introduces i in int intr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 3 no 0 9 0 0 0 0 1 +selective recovery selective s se sel sele BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 3 , 1 10 0 0 0 0 1 +of flow of o of of of BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 3 . 1 9 0 0 0 0 1 +| Packet | | | | | BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 5 no 0 10 0 0 0 0 1 ++--------------+ +--------------+ +--------------+ + +- +-- +--- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 5 -------------- 14 4 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 5 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 5 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 5 no 0 0 0 0 0 0 1 +IPv6 IPv6 ipv6 I IP IPv IPv6 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 5 no 0 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 5 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 5 no 0 0 0 0 0 0 1 ++----+ +----+ +----+ + +- +-- +--- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 5 ---- 4 1 0 0 0 0 1 ++----+ +----+ +----+ + +- +-- +--- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 5 ---- 4 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 5 no 0 0 0 0 0 0 1 ++--------------+ +--------------+ +--------------+ + +- +-- +--- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 5 -------------- 14 4 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 5 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 5 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 5 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 5 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 5 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 5 no 0 0 0 0 0 0 1 +| 6LoWPAN | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 5 no 0 3 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 5 no 0 0 0 0 0 0 1 +learn learn learn l le lea lear BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 5 no 0 1 0 0 0 0 1 +learn learn learn l le lea lear BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 5 no 0 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 5 no 0 0 0 0 0 0 1 ++--------------+ +--------------+ +--------------+ + +- +-- +--- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 5 -------------- 14 4 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 5 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 5 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 5 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 5 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 5 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 5 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 5 no 0 0 0 0 0 0 1 +6top 6top 6top 6 6t 6to 6top BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 5 no 0 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 5 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 5 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 5 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 5 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 5 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 5 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 5 no 0 0 0 0 0 0 1 ++--------------+ +--------------+ +--------------+ + +- +-- +--- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 5 -------------- 14 4 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 5 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 5 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 5 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 5 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 5 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 5 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 5 no 0 0 0 0 0 0 1 +TSCH MAC tsch T TS TSC TSCH BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 5 no 0 2 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 5 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 5 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 5 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 5 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 5 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 5 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 5 no 0 0 0 0 0 0 1 ++--------------+ +--------------+ +--------------+ + +- +-- +--- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 5 -------------- 14 4 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 5 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 5 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 5 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 5 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 5 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 5 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 5 no 0 0 0 0 0 0 1 +LLN PHY lln L LL LLN LLN BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 5 no 0 2 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 5 no 0 0 0 0 0 0 1 ++-------+ +-------+ +-------+ + +- +-- +--- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 5 ------- 7 2 0 0 0 0 1 ++--...-----+ +--...-----+ +--...-----+ + +- +-- +--. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 5 --...----- 10 3 0 0 0 0 1 ++-------+ +-------+ +-------+ + +- +-- +--- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 5 ------- 7 2 0 0 0 0 1 ++--------------+ +--------------+ +--------------+ + +- +-- +--- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 5 -------------- 14 4 0 0 0 0 1 +Source Source source S So Sou Sour BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 5 no 0 1 0 0 0 0 1 +Ingress Ingress ingress I In Ing Ingr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 8 5 no 0 2 0 0 0 0 1 +Egress Egress egress E Eg Egr Egre BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 8 5 no 0 1 0 0 0 0 1 +Destination Destination destination D De Des Dest BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 5 no 0 3 0 0 0 0 1 +Stack Layer stack S St Sta Stac BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 8 5 no 0 3 0 0 0 0 1 +Node Node node N No Nod Node BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 5 no 0 1 0 0 0 0 1 +Router Router router R Ro Rou Rout BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 8 5 no 0 1 0 0 0 0 1 +Router Router router R Ro Rou Rout BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 8 5 no 0 1 0 0 0 0 1 +Node Node node N No Nod Node BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 5 no 0 1 0 0 0 0 1 +Figure 15: figure F Fi Fig Figu BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 9 : 1 10 0 0 0 0 1 +In that in I In In In BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 8 10 , 1 9 0 0 0 0 1 +that is that t th tha that BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 10 . 1 9 0 0 0 0 1 +next hop next n ne nex next BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 10 , 1 9 0 0 0 0 1 +the next the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 10 , 1 10 0 0 0 0 1 +address and address a ad add addr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 10 . 1 9 0 0 0 0 1 +on that on o on on on BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 10 . 1 3 0 0 0 0 1 +Thubert Thubert thubert T Th Thu Thub BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 8 11 no 0 3 0 0 0 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 11 , 1 10 0 0 0 0 0 +[Page 47] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 11 [] 2 3 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 8 0 - 1 10 0 0 1 0 1 +6tisch-architecture 6tisch-architecture 6tisch-architecture 6 6t 6ti 6tis BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 0 - 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 8 0 no 0 6 0 0 0 0 1 +| Packet | | | | | BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 10 0 0 0 0 1 ++--------------+ +--------------+ +--------------+ + +- +-- +--- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 0 -------------- 14 4 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 0 0 0 0 0 1 +IPv6 IPv6 ipv6 I IP IPv IPv6 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 0 no 0 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 0 0 0 0 0 1 ++--------------+ +--------------+ +--------------+ + +- +-- +--- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 0 -------------- 14 4 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 0 0 0 0 0 1 +| 6LoWPAN | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 3 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 0 0 0 0 0 1 +replay replay replay r re rep repl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 0 no 0 1 0 0 0 0 1 +replay replay replay r re rep repl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 0 no 0 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 0 0 0 0 0 1 ++--------------+ +--------------+ +--------------+ + +- +-- +--- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 0 -------------- 14 4 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 0 0 0 0 0 1 +6top 6top 6top 6 6t 6to 6top BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 0 no 0 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 0 0 0 0 0 1 ++--------------+ +--------------+ +--------------+ + +- +-- +--- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 0 -------------- 14 4 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 0 0 0 0 0 1 +TSCH MAC tsch T TS TSC TSCH BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 0 no 0 2 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 0 0 0 0 0 1 ++--------------+ +--------------+ +--------------+ + +- +-- +--- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 0 -------------- 14 4 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 0 0 0 0 0 1 +LLN PHY lln L LL LLN LLN BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 0 no 0 2 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 0 0 0 0 0 1 ++-------+ +-------+ +-------+ + +- +-- +--- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 0 ------- 7 2 0 0 0 0 1 ++--...-----+ +--...-----+ +--...-----+ + +- +-- +--. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 0 --...----- 10 3 0 0 0 0 1 ++-------+ +-------+ +-------+ + +- +-- +--- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 0 ------- 7 2 0 0 0 0 1 ++--------------+ +--------------+ +--------------+ + +- +-- +--- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 0 -------------- 14 4 0 0 0 0 1 +Source Source source S So Sou Sour BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 0 no 0 1 0 0 0 0 1 +Ingress Ingress ingress I In Ing Ingr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 8 0 no 0 2 0 0 0 0 1 +Egress Egress egress E Eg Egr Egre BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 8 0 no 0 1 0 0 0 0 1 +Destination Destination destination D De Des Dest BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 0 no 0 3 0 0 0 0 1 +Stack Layer stack S St Sta Stac BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 8 0 no 0 3 0 0 0 0 1 +Node Node node N No Nod Node BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 0 no 0 1 0 0 0 0 1 +Router Router router R Ro Rou Rout BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 8 0 no 0 1 0 0 0 0 1 +Router Router router R Ro Rou Rout BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 8 0 no 0 1 0 0 0 0 1 +Node Node node N No Nod Node BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 0 no 0 1 0 0 0 0 1 +Figure 16: figure F Fi Fig Figu BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 4 : 1 10 0 0 0 0 1 +A bitmap a A A A A BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 1 0 0 0 0 0 8 5 -- 2 9 0 0 0 0 1 +source to source s so sou sour BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 5 . 1 8 0 0 0 0 1 +fragment may fragment f fr fra frag BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 5 . 1 10 0 0 0 0 1 +The ECN the T Th The The BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 5 no 0 9 0 0 0 0 1 +should be should s sh sho shou BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 5 . 1 2 0 0 0 0 1 +4.7. Advanced 4.7. 4 4. 4.7 4.7. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 6 .. 2 10 0 0 0 0 1 +4.7.1. Packet 4.7.1. 4 4. 4.7 4.7. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 6 ... 3 10 0 0 0 0 1 +All packets all A Al All All BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 6 no 0 10 0 0 0 0 1 +identifies the identifies i id ide iden BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 6 no 0 9 0 0 0 0 1 +forwarding that forwarding f fo for forw BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 6 . 1 10 0 0 0 0 1 +same for same s sa sam same BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 6 . 1 7 0 0 0 0 1 +For packets for F Fo For For BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 8 , 1 10 0 0 0 0 1 +by the by b by by by BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 8 no 0 9 0 0 0 0 1 +identify uniquely identify i id ide iden BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 8 . 1 8 0 0 0 0 1 +For packets for F Fo For For BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 9 , 1 8 0 0 0 0 1 +RPLInstanceID which rplinstanceid R RP RPL RPLI BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 8 9 (), 3 10 0 0 0 0 1 +as discussed as a as as as BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 9 .[]," 5 9 0 0 0 0 1 +Detection". The detection". D De Det Dete BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 8 9 ".- 3 9 0 0 0 0 1 +By-Hop Header by-hop B By By- By-H BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 9 -[]. 4 3 0 0 0 0 1 +A compression a A A A A BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 1 0 0 0 0 0 8 10 no 0 9 0 0 0 0 1 +the compression the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 10 -- 2 10 0 0 0 0 1 +3 [RFC6554] 3 3 3 3 3 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 8 10 []/ 3 10 0 0 0 0 1 +specified in specified s sp spe spec BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 10 [][]. 5 5 0 0 0 0 1 +Thubert Thubert thubert T Th Thu Thub BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 8 11 no 0 3 0 0 0 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 11 , 1 10 0 0 0 0 0 +[Page 48] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 11 [] 2 3 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 8 0 - 1 10 0 0 1 0 1 +6tisch-architecture 6tisch-architecture 6tisch-architecture 6 6t 6ti 6tis BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 0 - 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 8 0 no 0 6 0 0 0 0 1 +Either way, either E Ei Eit Eith BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 0 , 1 10 0 0 0 0 1 +is generalized is i is is is BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 0 , 1 9 0 0 0 0 1 +both RPL both b bo bot both BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 0 . 1 4 0 0 0 0 1 +4.7.2. Replication, 4.7.2. 4 4. 4.7 4.7. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 0 ..., 4 10 0 0 0 0 1 +6TiSCH supports 6tisch 6 6T 6Ti 6TiS BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 1 no 0 10 0 0 0 0 1 +packets along packets p pa pac pack BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 1 , 1 10 0 0 0 0 1 +sequence number sequence s se seq sequ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 1 . 1 9 0 0 0 0 1 +6TiSCH, the 6tisch, 6 6T 6Ti 6TiS BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 1 , 1 8 0 0 0 0 1 +correspond to correspond c co cor corr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 1 , 1 10 0 0 0 0 1 +avoid listening avoid a av avo avoi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 1 no 0 10 0 0 0 0 1 +of the of o of of of BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 1 . 1 2 0 0 0 0 1 +The semantics the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 3 no 0 9 0 0 0 0 1 +to be to t to to to BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 3 ()'' 4 9 0 0 0 0 1 +relations, and relations, r re rel rela BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 3 ,'' 3 9 0 0 0 0 1 +groups. The groups. g gr gro grou BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 3 .( 2 9 0 0 0 0 1 +receive) operation receive) r re rec rece BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 3 )'', 4 9 0 0 0 0 1 +all the all a al all all BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 3 ., 2 9 0 0 0 0 1 +at least at a at at at BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 3 ,'' 3 10 0 0 0 0 1 +that one that t th tha that BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 3 . 1 7 0 0 0 0 1 +On the on O On On On BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 5 , 1 10 0 0 0 0 1 +branch of branch b br bra bran BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 8 5 ''.'' 5 9 0 0 0 0 1 +indicates that indicates i in ind indi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 5 , 1 7 0 0 0 0 1 +retransmissions of retransmissions r re ret retr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 5 no 0 10 0 0 0 0 1 +timeslots in timeslots t ti tim time BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 5 .'' 3 9 0 0 0 0 1 +branches of branches b br bra bran BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 5 .'' 3 9 0 0 0 0 1 +groups are groups g gr gro grou BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 5 , 1 9 0 0 0 0 1 +corresponding to corresponding c co cor corr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 5 .'' 3 10 0 0 0 0 1 +the groups the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 5 no 0 9 0 0 0 0 1 +attempted regardless attempted a at att atte BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 5 no 0 9 0 0 0 0 1 +branch. It branch. b br bra bran BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 5 .- 2 9 0 0 0 0 1 +routers in routers r ro rou rout BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 5 ''.- 4 9 0 0 0 0 1 +Tracks, trying tracks, T Tr Tra Trac BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 5 ,- 2 9 0 0 0 0 1 +first fails. first f fi fir firs BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 5 . 1 1 0 0 0 0 1 +On the on O On On On BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 9 ,'' 3 9 0 0 0 0 1 +group. Retries group. g gr gro grou BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 9 . 1 9 0 0 0 0 1 +elimination are elimination e el eli elim BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 9 , 1 8 0 0 0 0 1 +reception is reception r re rec rece BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 9 . 1 9 0 0 0 0 1 +A 'AND' a A A A A BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 1 0 0 0 0 0 8 9 '' 2 10 0 0 0 0 1 +transmitted over transmitted t tr tra tran BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 9 no 0 8 0 0 0 0 1 +respected 'AND' respected r re res resp BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 9 ''''. 5 4 0 0 0 0 1 +Thubert Thubert thubert T Th Thu Thub BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 8 11 no 0 3 0 0 0 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 11 , 1 10 0 0 0 0 0 +[Page 49] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 11 [] 2 3 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 8 0 - 1 10 0 0 1 0 1 +6tisch-architecture 6tisch-architecture 6tisch-architecture 6 6t 6ti 6tis BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 0 - 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 8 0 no 0 6 0 0 0 0 1 +As an as A As As As BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 0 no 0 9 0 0 0 0 1 +Figure 17, figure F Fi Fig Figu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 0 , 1 10 0 0 0 0 1 +an egress an a an an an BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 8 0 . 1 2 0 0 0 0 1 ++-+ +-+ +-+ + +- +-+ +-+ BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 0 - 1 2 0 0 0 0 1 ++-+ +-+ +-+ + +- +-+ +-+ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 0 - 1 2 0 0 0 0 1 +--|A| ------|C| --|a| - -- --| --|A BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 0 ---------- 10 9 0 0 0 0 1 +/ / / / / / / BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 / 1 1 0 0 0 0 1 ++-+ +-+ +-+ + +- +-+ +-+ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 0 - 1 2 0 0 0 0 1 ++-+ +-+ +-+ + +- +-+ +-+ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 0 - 1 2 0 0 0 0 1 +\ \ \ \ \ \ \ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 1 0 0 0 0 1 +/ / / / / / / BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 / 1 1 0 0 0 0 1 +\ \ \ \ \ \ \ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 1 0 0 0 0 1 ++-+ +-+ +-+ + +- +-+ +-+ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 0 - 1 2 0 0 0 0 1 ++-+ +-+ +-+ + +- +-+ +-+ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 0 - 1 2 0 0 0 0 1 +|I| |I| |i| | |I |I| |I| BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 0 no 0 2 0 0 0 0 1 +|E| |E| |e| | |E |E| |E| BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 0 no 0 2 0 0 0 0 1 ++-+ +-+ +-+ + +- +-+ +-+ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 0 - 1 2 0 0 0 0 1 ++-+ +-+ +-+ + +- +-+ +-+ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 0 - 1 2 0 0 0 0 1 +\ \ \ \ \ \ \ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 1 0 0 0 0 1 +/ / / / / / / BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 / 1 1 0 0 0 0 1 +\ \ \ \ \ \ \ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 no 0 1 0 0 0 0 1 ++-+ +-+ +-+ + +- +-+ +-+ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 0 - 1 2 0 0 0 0 1 ++-+ +-+ +-+ + +- +-+ +-+ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 0 - 1 2 0 0 0 0 1 +/ / / / / / / BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 0 / 1 1 0 0 0 0 1 +--|B| -------|D| --|b| - -- --| --|B BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 0 ----------- 11 10 0 0 0 0 1 ++-+ +-+ +-+ + +- +-+ +-+ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 0 - 1 2 0 0 0 0 1 ++-+ +-+ +-+ + +- +-+ +-+ BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 0 - 1 2 0 0 0 0 1 +Figure 17: figure F Fi Fig Figu BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 2 : 1 10 0 0 0 0 1 +The assumption the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 2 no 0 10 0 0 0 0 1 +a single a a a a a BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 1 0 0 0 0 0 8 2 ,/ 2 9 0 0 0 0 1 +operations at operations o op ope oper BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 8 2 ,. 2 8 0 0 0 0 1 +Say we say S Sa Say Say BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 8 3 , 1 9 0 0 0 0 1 +slotframe. Figure slotframe. s sl slo slot BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 3 . 1 8 0 0 0 0 1 +transmission is transmission t tr tra tran BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 3 , 1 9 0 0 0 0 1 +forwarded in forwarded f fo for forw BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 3 , 1 10 0 0 0 0 1 +other, providing other, o ot oth othe BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 3 ,, 2 9 0 0 0 0 1 +physical paths, physical p ph phy phys BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 3 ,. 2 5 0 0 0 0 1 +slotOffset slotOffset slotoffset s sl slo slot BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 4 no 0 2 0 0 0 0 1 +0 0 0 0 0 0 0 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 8 4 no 0 0 0 0 0 0 1 +1 1 1 1 1 1 1 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 8 4 no 0 0 0 0 0 0 1 +2 2 2 2 2 2 2 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 8 4 no 0 0 0 0 0 0 1 +3 3 3 3 3 3 3 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 8 4 no 0 0 0 0 0 0 1 +4 4 4 4 4 4 4 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 8 4 no 0 0 0 0 0 0 1 +5 5 5 5 5 5 5 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 8 4 no 0 0 0 0 0 0 1 +6 6 6 6 6 6 6 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 8 4 no 0 0 0 0 0 0 1 +7 7 7 7 7 7 7 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 8 4 no 0 0 0 0 0 0 1 +9 9 9 9 9 9 9 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 8 4 no 0 0 0 0 0 0 1 ++----+----+----+----+----+----+----+----+----+ +----+----+----+----+----+----+----+----+----+ +----+----+----+----+----+----+----+----+----+ + +- +-- +--- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 4 ------------------------------------ 36 10 0 0 0 0 1 +channelOffset 0 channeloffset c ch cha chan BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 4 no 0 3 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 4 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 4 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 4 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 4 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 4 no 0 0 0 0 0 0 1 +|B->D| |B->D| |b->d| | |B |B- |B-> BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 4 - 1 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 4 no 0 0 0 0 0 0 1 +| ... | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 4 ... 3 1 0 0 0 0 1 ++----+----+----+----+----+----+----+----+----+ +----+----+----+----+----+----+----+----+----+ +----+----+----+----+----+----+----+----+----+ + +- +-- +--- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 4 ------------------------------------ 36 10 0 0 0 0 1 +channelOffset 1 channeloffset c ch cha chan BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 4 no 0 3 0 0 0 0 1 +|I->A| |I->A| |i->a| | |I |I- |I-> BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 4 - 1 1 0 0 0 0 1 +|A->C|B->D| |A->C|B->D| |a->c|b->d| | |A |A- |A-> BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 4 -- 2 2 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 4 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 4 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 4 no 0 0 0 0 0 0 1 +| ... | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 4 ... 3 1 0 0 0 0 1 ++----+----+----+----+----+----+----+----+----+ +----+----+----+----+----+----+----+----+----+ +----+----+----+----+----+----+----+----+----+ + +- +-- +--- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 4 ------------------------------------ 36 10 0 0 0 0 1 +channelOffset 2 channeloffset c ch cha chan BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 4 - 1 4 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 4 no 0 0 0 0 0 0 1 +|I->B| |I->B| |i->b| | |I |I- |I-> BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 4 - 1 1 0 0 0 0 1 +|C->E| |C->E| |c->e| | |C |C- |C-> BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 4 - 1 1 0 0 0 0 1 +|D->E| |D->E| |d->e| | |D |D- |D-> BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 4 - 1 1 0 0 0 0 1 +| ... | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 4 ... 3 1 0 0 0 0 1 ++----+----+----+----+----+----+----+----+----+ +----+----+----+----+----+----+----+----+----+ +----+----+----+----+----+----+----+----+----+ + +- +-- +--- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 4 ------------------------------------ 36 10 0 0 0 0 1 +channelOffset 3 channeloffset c ch cha chan BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 4 no 0 3 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 4 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 4 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 4 no 0 0 0 0 0 0 1 +|A->C| |A->C| |a->c| | |A |A- |A-> BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 4 - 1 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 4 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 4 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 4 no 0 0 0 0 0 0 1 +| ... | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 4 ... 3 1 0 0 0 0 1 ++----+----+----+----+----+----+----+----+----+ +----+----+----+----+----+----+----+----+----+ +----+----+----+----+----+----+----+----+----+ + +- +-- +--- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 4 ------------------------------------ 36 10 0 0 0 0 1 +channelOffset 4 channeloffset c ch cha chan BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 4 no 0 3 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 4 no 0 0 0 0 0 0 1 +|I->B| |I->B| |i->b| | |I |I- |I-> BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 4 - 1 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 4 no 0 0 0 0 0 0 1 +|B->D| |B->D| |b->d| | |B |B- |B-> BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 4 - 1 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 4 no 0 0 0 0 0 0 1 +|D->E| ... |d->e| | |D |D- |D-> BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 4 -... 4 2 0 0 0 0 1 ++----+----+----+----+----+----+----+----+----+ +----+----+----+----+----+----+----+----+----+ +----+----+----+----+----+----+----+----+----+ + +- +-- +--- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 4 ------------------------------------ 36 10 0 0 0 0 1 +channelOffset 5 channeloffset c ch cha chan BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 4 no 0 3 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 4 no 0 0 0 0 0 0 1 +|A->C| |A->C| |a->c| | |A |A- |A-> BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 4 - 1 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 4 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 4 no 0 0 0 0 0 0 1 +|C->E| |C->E| |c->e| | |C |C- |C-> BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 4 - 1 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 4 no 0 0 0 0 0 0 1 +| ... | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 4 ... 3 1 0 0 0 0 1 ++----+----+----+----+----+----+----+----+----+ +----+----+----+----+----+----+----+----+----+ +----+----+----+----+----+----+----+----+----+ + +- +-- +--- BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 4 ------------------------------------ 36 10 0 0 0 0 1 +Figure 18: figure F Fi Fig Figu BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 11 : 1 10 0 0 0 0 1 +Thubert Thubert thubert T Th Thu Thub BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 8 11 no 0 3 0 0 0 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 11 , 1 10 0 0 0 0 0 +[Page 50] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 11 [] 2 3 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 8 0 - 1 10 0 0 1 0 1 +6tisch-architecture 6tisch-architecture 6tisch-architecture 6 6t 6ti 6tis BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 0 - 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 8 0 no 0 6 0 0 0 0 1 +This translates this T Th Thi This BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 0 no 0 10 0 0 0 0 1 +the waking the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 0 , 1 9 0 0 0 0 1 +awake. Figure awake. a aw awa awak BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 0 .. 2 9 0 0 0 0 1 +slotOffset slotOffset slotoffset s sl slo slot BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 1 no 0 2 0 0 0 0 1 +0 0 0 0 0 0 0 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 8 1 no 0 0 0 0 0 0 1 +1 1 1 1 1 1 1 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 8 1 no 0 0 0 0 0 0 1 +2 2 2 2 2 2 2 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 8 1 no 0 0 0 0 0 0 1 +3 3 3 3 3 3 3 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 8 1 no 0 0 0 0 0 0 1 +4 4 4 4 4 4 4 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 8 1 no 0 0 0 0 0 0 1 +5 5 5 5 5 5 5 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 8 1 no 0 0 0 0 0 0 1 +6 6 6 6 6 6 6 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 8 1 no 0 0 0 0 0 0 1 +7 7 7 7 7 7 7 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 8 1 no 0 0 0 0 0 0 1 +9 9 9 9 9 9 9 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 8 1 no 0 0 0 0 0 0 1 ++----+----+----+----+----+----+----+----+----+ +----+----+----+----+----+----+----+----+----+ +----+----+----+----+----+----+----+----+----+ + +- +-- +--- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 1 ------------------------------------ 36 9 0 0 0 0 1 +operation operation operation o op ope oper BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 1 no 0 1 0 0 0 0 1 +|rcv |rcv |rcv | |r |rc |rcv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 1 ... 3 10 0 0 0 0 1 ++----+----+----+----+----+----+----+----+----+ +----+----+----+----+----+----+----+----+----+ +----+----+----+----+----+----+----+----+----+ + +- +-- +--- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 1 ------------------------------------ 36 9 0 0 0 0 1 +channelOffset channelOffset channeloffset c ch cha chan BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 1 no 0 2 0 0 0 0 1 +| 2 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 1 ////... 7 9 0 0 0 0 1 ++----+----+----+----+----+----+----+----+----+ +----+----+----+----+----+----+----+----+----+ +----+----+----+----+----+----+----+----+----+ + +- +-- +--- BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 1 ------------------------------------ 36 9 0 0 0 0 1 +Figure 19: figure F Fi Fig Figu BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 3 : 1 10 0 0 0 0 1 +The logical the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 4 no 0 10 0 0 0 0 1 +following table: following f fo fol foll BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 4 : 1 2 0 0 0 0 1 ++------+---------------------+------------------------+ +------+---------------------+------------------------+ +------+---------------------+------------------------+ + +- +-- +--- BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 4 --------------------------------------------------- 51 10 0 0 0 0 1 +| Node | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 4 no 0 1 0 0 0 0 1 +rcv slotOffset rcv r rc rcv rcv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 4 no 0 2 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 4 no 0 0 0 0 0 0 1 +xmit slotOffset xmit x xm xmi xmit BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 4 no 0 2 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 4 no 0 0 0 0 0 0 1 ++------+---------------------+------------------------+ +------+---------------------+------------------------+ +------+---------------------+------------------------+ + +- +-- +--- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 4 --------------------------------------------------- 51 10 0 0 0 0 1 +| I | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 4 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 4 no 0 0 0 0 0 0 1 +N/A N/A n/a N N/ N/A N/A BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 4 / 1 0 0 0 0 0 1 +| (0 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 4 ()() 4 4 0 0 0 0 1 +| A | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 4 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 4 no 0 0 0 0 0 0 1 +(0 OR (0 ( (0 (0 (0 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 4 () 2 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 4 no 0 0 0 0 0 0 1 +(2 OR (2 ( (2 (2 (2 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 4 () 2 2 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 4 no 0 0 0 0 0 0 1 +| B | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 4 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 4 no 0 0 0 0 0 0 1 +(2 OR (2 ( (2 (2 (2 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 4 () 2 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 4 no 0 0 0 0 0 0 1 +(4 OR (4 ( (4 (4 (4 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 4 () 2 2 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 4 no 0 0 0 0 0 0 1 +| C | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 4 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 4 no 0 0 0 0 0 0 1 +(2 OR (2 ( (2 (2 (2 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 4 () 2 2 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 4 no 0 0 0 0 0 0 1 +(5 OR (5 ( (5 (5 (5 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 4 () 2 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 4 no 0 0 0 0 0 0 1 +| D | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 4 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 4 no 0 0 0 0 0 0 1 +(4 OR (4 ( (4 (4 (4 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 4 () 2 2 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 4 no 0 0 0 0 0 0 1 +(7 OR (7 ( (7 (7 (7 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 4 () 2 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 4 no 0 0 0 0 0 0 1 +| E | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 4 no 0 0 0 0 0 0 1 +| (5 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 4 () 2 4 0 0 0 0 1 +N/A N/A n/a N N/ N/A N/A BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 4 / 1 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 4 no 0 0 0 0 0 0 1 ++------+---------------------+------------------------+ +------+---------------------+------------------------+ +------+---------------------+------------------------+ + +- +-- +--- BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 4 --------------------------------------------------- 51 10 0 0 0 0 1 +5. IANA 5. 5 5. 5. 5. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 9 . 1 10 0 0 0 0 1 +This document this T Th Thi This BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 9 . 1 10 0 0 0 0 1 +6. Security 6. 6 6. 6. 6. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 9 . 1 10 0 0 0 0 1 +The "Minimal the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 9 "" 2 6 0 0 0 0 1 +[I-D.ietf-6tisch-minimal-security] was [i-d.ietf-6tisch-minimal-security] [ [I [I- [I-D BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 9 [-.---]- 8 10 0 0 0 0 1 +TSCH operations. tsch T TS TSC TSCH BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 9 . 1 9 0 0 0 0 1 +Considerations section considerations C Co Con Cons BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 9 , 1 9 0 0 0 0 1 +security issues security s se sec secu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 9 9 . 1 4 0 0 0 0 1 +6.1. Availability 6.1. 6 6. 6.1 6.1. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 10 .. 2 10 0 0 0 0 1 +The operation the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 10 no 0 10 0 0 0 0 1 +DetNet and detnet D De Det DetN BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 9 10 no 0 8 0 0 0 0 1 +[I-D.ietf-detnet-architecture]. The [i-d.ietf-detnet-architecture]. [ [I [I- [I-D BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 10 [-.--]. 7 9 0 0 0 0 1 +Thubert Thubert thubert T Th Thu Thub BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 9 11 no 0 3 0 0 0 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 11 , 1 10 0 0 0 0 0 +[Page 51] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 11 [] 2 3 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 9 0 - 1 10 0 0 1 0 1 +6tisch-architecture 6tisch-architecture 6tisch-architecture 6 6t 6ti 6tis BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 0 - 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 9 0 no 0 6 0 0 0 0 1 +of the of o of of of BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 0 no 0 10 0 0 0 0 1 +a PCE a a a a a BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 1 0 0 0 0 0 9 0 . 1 8 0 0 0 0 1 +connectivity is connectivity c co con conn BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 0 , 1 9 0 0 0 0 1 +the end the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 0 ,, 2 9 0 0 0 0 1 +Tracks cannot tracks T Tr Tra Trac BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 0 . 1 4 0 0 0 0 1 +In a in I In In In BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 9 1 , 1 9 0 0 0 0 1 +unreactive to unreactive u un unr unre BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 1 no 0 8 0 0 0 0 1 +communication. An communication. c co com comm BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 1 . 1 10 0 0 0 0 1 +jamming some jamming j ja jam jamm BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 1 . 1 9 0 0 0 0 1 +6TiSCH Tracks 6tisch 6 6T 6Ti 6TiS BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 1 no 0 9 0 0 0 0 1 +traffic in traffic t tr tra traf BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 1 no 0 10 0 0 0 0 1 +into the into i in int into BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 1 . 1 2 0 0 0 0 1 +As with as A As As As BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 3 , 1 9 0 0 0 0 1 +secured and secured s se sec secu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 3 , 1 10 0 0 0 0 1 +injection and injection i in inj inje BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 3 , 1 9 0 0 0 0 1 +security considerations security s se sec secu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 9 3 no 0 9 0 0 0 0 1 +Traffic Engineered traffic T Tr Tra Traf BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 3 ()[], 5 9 0 0 0 0 1 +applies equally applies a ap app appl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 3 ., 2 9 0 0 0 0 1 +communication with communication c co com comm BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 9 3 no 0 9 0 0 0 0 1 +against DoS against a ag aga agai BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 3 . 1 5 0 0 0 0 1 +6.2. Selective 6.2. 6 6. 6.2 6.2. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 5 .. 2 10 0 0 0 0 1 +The Hopping the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 5 -, 2 10 0 0 0 0 1 +a rogue a a a a a BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 1 0 0 0 0 0 9 5 , 1 9 0 0 0 0 1 +to selectively to t to to to BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 5 ,. 2 9 0 0 0 0 1 +This attack this T Th Thi This BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 5 no 0 9 0 0 0 0 1 +of the of o of of of BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 5 -, 2 9 0 0 0 0 1 +only one only o on onl only BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 5 . 1 3 0 0 0 0 1 +[I-D.tiloca-6tisch-robust-scheduling] proposes [i-d.tiloca-6tisch-robust-scheduling] [ [I [I- [I-D BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 7 [-.---] 7 9 0 0 0 0 1 +the hopping the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 7 no 0 10 0 0 0 0 1 +attack. attack. attack. a at att atta BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 7 . 1 1 0 0 0 0 1 +6.3. MAC-Layer 6.3. 6 6. 6.3 6.3. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 8 ..- 3 10 0 0 0 0 1 +This architecture this T Th Thi This BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 8 ... 3 9 0 0 0 0 1 +Link-Layer security link-layer L Li Lin Link BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 8 - 1 9 0 0 0 0 1 +devices, except devices, d de dev devi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 8 ,, 2 9 0 0 0 0 1 +where a where w wh whe wher BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 8 , 1 10 0 0 0 0 1 +as to as a as as as BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 8 ., 2 9 0 0 0 0 1 +joined nodes joined j jo joi join BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 8 . 1 9 0 0 0 0 1 +The 6TISCH the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 10 no 0 8 0 0 0 0 1 +authorization of authorization a au aut auth BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 10 no 0 9 0 0 0 0 1 +network keys. network n ne net netw BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 9 10 . 1 10 0 0 0 0 1 +Thubert Thubert thubert T Th Thu Thub BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 9 11 no 0 3 0 0 0 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 11 , 1 10 0 0 0 0 0 +[Page 52] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 11 [] 2 3 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 9 0 - 1 10 0 0 1 0 1 +6tisch-architecture 6tisch-architecture 6tisch-architecture 6 6t 6ti 6tis BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 0 - 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 9 0 no 0 6 0 0 0 0 1 +a large a a a a a BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 1 0 0 0 0 0 9 0 no 0 9 0 0 0 0 1 +routing information. routing r ro rou rout BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 9 0 ."-" 4 8 0 0 0 0 1 +desirable but desirable d de des desi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 0 . 1 9 0 0 0 0 1 +[I-D.ietf-6lo-ap-nd] is [i-d.ietf-6lo-ap-nd] [ [I [I- [I-D BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 0 [-.---] 7 8 0 0 0 0 1 +ownership of ownership o ow own owne BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 0 no 0 10 0 0 0 0 1 +from stealing from f fr fro from BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 0 . 1 9 0 0 0 0 1 +6.4. Time 6.4. 6 6. 6.4 6.4. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 2 .. 2 10 0 0 0 0 1 +Time Synchronization time T Ti Tim Time BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 2 no 0 9 0 0 0 0 1 +node will node n no nod node BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 2 no 0 10 0 0 0 0 1 +within a within w wi wit with BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 2 . 1 9 0 0 0 0 1 +network based network n ne net netw BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 9 2 . 1 9 0 0 0 0 1 +synchronizes a synchronizes s sy syn sync BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 2 no 0 9 0 0 0 0 1 +nodes then nodes n no nod node BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 2 no 0 9 0 0 0 0 1 +discover the discover d di dis disc BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 9 2 . 1 3 0 0 0 0 1 +As discussed as A As As As BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 4 [-.--], 7 9 0 0 0 0 1 +taken to taken t ta tak take BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 4 , 1 9 0 0 0 0 1 +includes ensuring includes i in inc incl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 4 (), 3 9 0 0 0 0 1 +node's sense node's n no nod node BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 4 ',. 3 10 0 0 0 0 1 +as the as a as as as BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 4 , 1 9 0 0 0 0 1 +transmissions. transmissions. transmissions. t tr tra tran BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 4 . 1 2 0 0 0 0 1 +IEEE Std. ieee I IE IEE IEEE BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 5 ...[], 6 10 0 0 0 0 1 +nonce that nonce n no non nonc BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 5 no 0 9 0 0 0 0 1 +(MIC) to (mic) ( (M (MI (MIC BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 5 ()- 3 9 0 0 0 0 1 +source of source s so sou sour BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 5 . 1 9 0 0 0 0 1 +ASN is asn A AS ASN ASN BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 5 . 1 9 0 0 0 0 1 +explicitly in explicitly e ex exp expl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 5 no 0 9 0 0 0 0 1 +anti-replay protection. anti-replay a an ant anti BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 5 -. 2 9 0 0 0 0 1 +provide a provide p pr pro prov BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 5 . 1 7 0 0 0 0 1 +If the if I If If If BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 8 , 1 10 0 0 0 0 1 +will not will w wi wil will BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 9 8 ., 2 9 0 0 0 0 1 +induces an induces i in ind indu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 8 no 0 9 0 0 0 0 1 +of ASN of o of of of BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 8 . 1 9 0 0 0 0 1 +6TiSCH, the 6tisch, 6 6T 6Ti 6TiS BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 8 , 1 9 0 0 0 0 1 +that have that t th tha that BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 8 . 1 9 0 0 0 0 1 +authenticated, the authenticated, a au aut auth BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 8 , 1 9 0 0 0 0 1 +an attacker an a an an an BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 9 8 no 0 9 0 0 0 0 1 +the past. the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 8 . 1 9 0 0 0 0 1 +beacon for beacon b be bea beac BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 8 ,- 2 9 0 0 0 0 1 +possible and possible p po pos poss BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 8 . 1 7 0 0 0 0 1 +Thubert Thubert thubert T Th Thu Thub BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 9 11 no 0 3 0 0 0 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 11 , 1 10 0 0 0 0 0 +[Page 53] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 11 [] 2 3 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 9 0 - 1 10 0 0 1 0 1 +6tisch-architecture 6tisch-architecture 6tisch-architecture 6 6t 6ti 6tis BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 0 - 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 9 0 no 0 6 0 0 0 0 1 +6.5. Validating 6.5. 6 6. 6.5 6.5. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 0 .. 2 10 0 0 0 0 1 +After obtaining after A Af Aft Afte BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 0 , 1 9 0 0 0 0 1 +6TiSCH network 6tisch 6 6T 6Ti 6TiS BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 0 . 1 9 0 0 0 0 1 +The join the T Th The The BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 0 no 0 9 0 0 0 0 1 +(CoJP). In (cojp). ( (C (Co (CoJ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 0 (). 3 6 0 0 0 0 1 +[I-D.ietf-6tisch-minimal-security], the [i-d.ietf-6tisch-minimal-security], [ [I [I- [I-D BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 0 [-.---], 8 9 0 0 0 0 1 +pre-shared key, pre-shared p pr pre pre- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 0 -,. 3 9 0 0 0 0 1 +exchange may exchange e ex exc exch BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 0 - 1 8 0 0 0 0 1 +[I-D.ietf-6tisch-dtsecurity-zerotouch-join] in [i-d.ietf-6tisch-dtsecurity-zerotouch-join] [ [I [I- [I-D BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 0 [-.----] 8 10 0 0 0 0 1 +joining based joining j jo joi join BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 0 /-. 3 9 0 0 0 0 1 +As detailed as A As As As BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 2 ..,() 5 10 0 0 0 0 1 +the join the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 2 - 1 9 0 0 0 0 1 +IP network ip I IP IP IP BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 1 0 0 0 0 0 0 9 2 /() 3 8 0 0 0 0 1 +authenticate the authenticate a au aut auth BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 2 no 0 9 0 0 0 0 1 +appropriate network. appropriate a ap app appr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 2 ., 2 10 0 0 0 0 1 +in possession in i in in in BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 9 2 - 1 9 0 0 0 0 1 +address, and address, a ad add addr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 2 ,, 2 9 0 0 0 0 1 +be secured be b be be be BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 2 *[]-. 5 7 0 0 0 0 1 +The authentication the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 5 no 0 10 0 0 0 0 1 +an attacker, an a an an an BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 9 5 , 1 9 0 0 0 0 1 +valid. During valid. v va val vali BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 5 ., 2 9 0 0 0 0 1 +pledge obtains pledge p pl ple pled BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 5 no 0 9 0 0 0 0 1 +spoofed ASN. spoofed s sp spo spoo BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 5 . 1 9 0 0 0 0 1 +network, it network, n ne net netw BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 5 ,. 2 9 0 0 0 0 1 +the Layer-2 the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 5 -(-), 5 10 0 0 0 0 1 +replaying the replaying r re rep repl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 5 - 1 10 0 0 0 0 1 +same node same s sa sam same BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 5 . 1 9 0 0 0 0 1 +derives from derives d de der deri BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 5 (..,) 5 9 0 0 0 0 1 +JRC must jrc J JR JRC JRC BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 5 no 0 9 0 0 0 0 1 +already given already a al alr alre BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 5 . 1 9 0 0 0 0 1 +words, the words, w wo wor word BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 5 , 1 9 0 0 0 0 1 +addresses. addresses. addresses. a ad add addr BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 5 . 1 1 0 0 0 0 1 +6.6. Network 6.6. 6 6. 6.6 6.6. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 9 .. 2 10 0 0 0 0 1 +Section 4.2.1 section S Se Sec Sect BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 9 .. 2 10 0 0 0 0 1 +[I-D.ietf-6tisch-minimal-security] by [i-d.ietf-6tisch-minimal-security] [ [I [I- [I-D BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 9 [-.---] 7 10 0 0 0 0 1 +in the in i in in in BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 9 9 ,. 2 7 0 0 0 0 1 +[I-D.ietf-6tisch-dtsecurity-zerotouch-join] is [i-d.ietf-6tisch-dtsecurity-zerotouch-join] [ [I [I- [I-D BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 9 [-.----] 8 9 0 0 0 0 1 +preceeds and preceeds p pr pre prec BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 9 no 0 8 0 0 0 0 1 +[I-D.ietf-anima-constrained-voucher] constrained [i-d.ietf-anima-constrained-voucher] [ [I [I- [I-D BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 9 [-.---] 7 8 0 0 0 0 1 +[I-D.ietf-anima-bootstrapping-keyinfra] (BRSKI). [i-d.ietf-anima-bootstrapping-keyinfra] [ [I [I- [I-D BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 9 [-.---](). 10 9 0 0 0 0 1 +requires a requires r re req requ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 9 -- 2 9 0 0 0 0 1 +Exchange protocol. exchange E Ex Exc Exch BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 9 . 1 2 0 0 0 0 1 +Thubert Thubert thubert T Th Thu Thub BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 9 11 no 0 3 0 0 0 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 11 , 1 10 0 0 0 0 0 +[Page 54] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 11 [] 2 3 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 9 0 - 1 10 0 0 1 0 1 +6tisch-architecture 6tisch-architecture 6tisch-architecture 6 6t 6ti 6tis BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 0 - 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 9 0 no 0 6 0 0 0 0 1 +The CoJP the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 0 - 1 10 0 0 0 0 1 +is to is i is is is BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 0 []. 3 9 0 0 0 0 1 +described in described d de des desc BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 0 [-.---]. 8 9 0 0 0 0 1 +9.3.2. 9.3.2. 9.3.2. 9 9. 9.3 9.3. BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 0 ... 3 1 0 0 0 0 1 +The BRSKI the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 1 , 1 10 0 0 0 0 1 +case it case c ca cas case BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 9 1 -. 2 8 0 0 0 0 1 +Alternatively the alternatively A Al Alt Alte BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 1 no 0 8 0 0 0 0 1 +[I-D.ietf-ace-coap-est] to [i-d.ietf-ace-coap-est] [ [I [I- [I-D BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 1 [-.---]. 8 9 0 0 0 0 1 +that case, that t th tha that BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 1 ,[] 3 9 0 0 0 0 1 +agreement protocol. agreement a ag agr agre BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 1 ., 2 8 0 0 0 0 1 +conceptually straight conceptually c co con conc BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 1 no 0 10 0 0 0 0 1 +hurdles to hurdles h hu hur hurd BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 1 . 1 2 0 0 0 0 1 +[I-D.ietf-6tisch-minimal-security] section [i-d.ietf-6tisch-minimal-security] [ [I [I- [I-D BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 3 [-.---]. 8 10 0 0 0 0 1 +to change to t to to to BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 3 (). 3 9 0 0 0 0 1 +initiate a initiate i in ini init BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 3 :(/) 4 9 0 0 0 0 1 +nodes, to nodes, n no nod node BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 3 ,-, 3 9 0 0 0 0 1 +encryption algorithms. encryption e en enc encr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 3 . 1 9 0 0 0 0 1 +network-wide key, network-wide n ne net netw BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 3 -,. 3 9 0 0 0 0 1 +more details: more m mo mor more BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 3 : 1 2 0 0 0 0 1 +o The o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 9 5 [-.---] 7 9 0 0 0 0 1 +section 9.2 section s se sec sect BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 5 . 1 9 0 0 0 0 1 +every one every e ev eve ever BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 5 . 1 9 0 0 0 0 1 +nodes may nodes n no nod node BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 5 , 1 10 0 0 0 0 1 +of time, of o of of of BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 5 , 1 9 0 0 0 0 1 +bandwidth. As bandwidth. b ba ban band BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 5 .,- 3 10 0 0 0 0 1 +that have that t th tha that BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 5 . 1 9 0 0 0 0 1 +rekey is rekey r re rek reke BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 5 , 1 9 0 0 0 0 1 +been updated, been b be bee been BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 5 , 1 8 0 0 0 0 1 +operation. If operation. o op ope oper BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 5 ., 2 9 0 0 0 0 1 +then the then t th the then BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 5 . 1 7 0 0 0 0 1 +o The o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 9 8 [] 2 9 0 0 0 0 1 +2-byte short 2-byte 2 2- 2-b 2-by BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 8 -. 2 9 0 0 0 0 1 +2-byte short 2-byte 2 2- 2-b 2-by BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 8 - 1 9 0 0 0 0 1 +network-wide keys network-wide n ne net netw BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 8 -, 2 10 0 0 0 0 1 +result in result r re res resu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 8 - 1 9 0 0 0 0 1 +nonce. A nonce. n no non nonc BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 8 . 1 9 0 0 0 0 1 +likely to likely l li lik like BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 8 -(-) 4 9 0 0 0 0 1 +addresses, even addresses, a ad add addr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 8 ,. 2 9 0 0 0 0 1 +Network planners network N Ne Net Netw BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 9 8 no 0 9 0 0 0 0 1 +a periodic a a a a a BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 1 0 0 0 0 0 9 8 -. 2 9 0 0 0 0 1 +can update can c ca can can BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 8 , 1 9 0 0 0 0 1 +there is there t th the ther BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 8 no 0 9 0 0 0 0 1 +changed. changed. changed. c ch cha chan BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 8 . 1 1 0 0 0 0 1 +Thubert Thubert thubert T Th Thu Thub BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 9 11 no 0 3 0 0 0 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 11 , 1 10 0 0 0 0 0 +[Page 55] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 11 [] 2 3 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 9 0 - 1 10 0 0 1 0 1 +6tisch-architecture 6tisch-architecture 6tisch-architecture 6 6t 6ti 6tis BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 0 - 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 9 0 no 0 6 0 0 0 0 1 +o Many o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 9 0 no 0 9 0 0 0 0 1 +bytes should bytes b by byt byte BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 0 no 0 10 0 0 0 0 1 +used. These used. u us use used BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 0 . 1 9 0 0 0 0 1 +gigabytes of gigabytes g gi gig giga BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 0 . 1 10 0 0 0 0 1 +important concern. important i im imp impo BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 0 . 1 8 0 0 0 0 1 +kilobits/second, this kilobits/second, k ki kil kilo BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 0 /,., 4 10 0 0 0 0 1 +LLN may lln L LL LLN LLN BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 0 , 1 8 0 0 0 0 1 +operators are operators o op ope oper BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 9 0 . 1 8 0 0 0 0 1 +Except for except E Ex Exc Exce BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 3 , 1 8 0 0 0 0 1 +operation described operation o op ope oper BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 3 [-.---] 7 10 0 0 0 0 1 +as a as a as as as BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 3 .- 2 9 0 0 0 0 1 +before-break mechanism. before-break b be bef befo BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 3 -. 2 8 0 0 0 0 1 +signaled by signaled s si sig sign BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 3 , 1 9 0 0 0 0 1 +use. As use. u us use use. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 3 .,, 3 9 0 0 0 0 1 +short a short s sh sho shor BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 9 3 . 1 3 0 0 0 0 1 +7. Acknowledgments 7. 7 7. 7. 7. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 6 . 1 10 0 0 0 0 1 +7.1. Contributors 7.1. 7 7. 7.1 7.1. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 6 .. 2 10 0 0 0 0 1 +The co-authors the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 6 -: 2 10 0 0 0 0 1 +Thomas Watteyne thomas T Th Tho Thom BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 0 0 0 0 0 0 9 6 , 1 10 0 0 0 0 1 +particular on particular p pa par part BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 6 , 1 9 0 0 0 0 1 +community with community c co com comm BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 6 . 1 6 0 0 0 0 1 +Xavier Vilajosana xavier X Xa Xav Xavi BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 0 0 0 0 0 0 9 7 no 0 10 0 0 0 0 1 +RPL and rpl R RP RPL RPL BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 7 - 1 9 0 0 0 0 1 +operation of operation o op ope oper BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 7 ; 1 4 0 0 0 0 1 +Kris Pister kris K Kr Kri Kris BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 0 0 0 0 0 0 9 8 no 0 10 0 0 0 0 1 +the elaboration the t th the the BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 8 ; 1 4 0 0 0 0 1 +Malisa Vucinic malisa M Ma Mal Mali BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 0 0 0 0 0 0 9 9 - 1 10 0 0 0 0 1 +contribution to contribution c co con cont BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 9 ; 1 6 0 0 0 0 1 +Michael Richardson michael M Mi Mic Mich BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 0 0 0 0 0 0 9 9 no 0 10 0 0 0 0 1 +Team and team T Te Tea Team BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 9 ; 1 7 0 0 0 0 1 +Tero Kivinen tero T Te Ter Tero BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 9 10 no 0 10 0 0 0 0 1 +and the and a an and and BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 10 . 1 6 0 0 0 0 1 +Maria Rita maria M Ma Mar Mari BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 0 0 0 0 0 0 9 11 no 0 10 0 0 0 0 1 +into this into i in int into BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 11 ; 1 5 0 0 0 0 1 +Thubert Thubert thubert T Th Thu Thub BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 9 11 no 0 3 0 0 0 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 11 , 1 10 0 0 0 0 0 +[Page 56] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 11 [] 2 3 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 9 0 - 1 10 0 0 1 0 1 +6tisch-architecture 6tisch-architecture 6tisch-architecture 6 6t 6ti 6tis BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 0 - 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 9 0 no 0 6 0 0 0 0 1 +Simon Duquennoy simon S Si Sim Simo BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 0 0 0 0 0 0 9 0 no 0 10 0 0 0 0 1 +with the with w wi wit with BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 0 , 1 8 0 0 0 0 1 +contribution to contribution c co con cont BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 0 . 1 7 0 0 0 0 1 +Qin Wang qin Q Qi Qin Qin BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 9 1 no 0 10 0 0 0 0 1 +related text related r re rel rela BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 1 /; 2 9 0 0 0 0 1 +Rene Struik rene R Re Ren Rene BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 0 0 0 0 0 0 9 1 no 0 10 0 0 0 0 1 +Security Design security S Se Sec Secu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 9 1 ; 1 3 0 0 0 0 1 +Robert Assimiti robert R Ro Rob Robe BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 0 0 0 0 0 0 9 2 no 0 10 0 0 0 0 1 +initial text initial i in ini init BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 2 ; 1 4 0 0 0 0 1 +7.2. Special 7.2. 7 7. 7.2 7.2. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 2 .. 2 10 0 0 0 0 1 +Special thanks special S Sp Spe Spec BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 2 ,, 2 9 0 0 0 0 1 +Yoshihiro Ohba yoshihiro Y Yo Yos Yosh BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 9 2 no 0 9 0 0 0 0 1 +work, to work, w wo wor work BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 2 , 1 8 0 0 0 0 1 +simulation that simulation s si sim simu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 2 , 1 9 0 0 0 0 1 +Dujovne for dujovne D Du Duj Dujo BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 9 2 no 0 10 0 0 0 0 1 +for evolving for f fo for for BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 2 . 1 4 0 0 0 0 1 +Special thanks special S Sp Spe Spec BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 4 , 1 10 0 0 0 0 1 +their support their t th the thei BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 4 no 0 10 0 0 0 0 1 +line with line l li lin line BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 4 .. 2 5 0 0 0 0 1 +Special thanks special S Sp Spe Spec BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 5 - 1 9 0 0 0 0 1 +document was document d do doc docu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 5 , 1 10 0 0 0 0 1 +to Suresh to t to to to BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 5 no 0 9 0 0 0 0 1 +till publication. till t ti til till BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 5 . 1 2 0 0 0 0 1 +Also special also A Al Als Also BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 7 no 0 9 0 0 0 0 1 +Directorate review, directorate D Di Dir Dire BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 7 , 1 9 0 0 0 0 1 +changed the changed c ch cha chan BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 7 , 1 10 0 0 0 0 1 +Carlos Pignataro carlos C Ca Car Carl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 0 0 0 0 0 0 10 7 no 0 9 0 0 0 0 1 +the IESG the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 7 ,,,, 4 9 0 0 0 0 1 +Francis Dupont, francis F Fr Fra Fran BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 0 0 0 0 0 0 10 7 ,,,, 4 10 0 0 0 0 1 +Kaduk and kaduk K Ka Kad Kadu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 10 7 , 1 9 0 0 0 0 1 +document through document d do doc docu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 7 . 1 6 0 0 0 0 1 +7.3. And 7.3. 7 7. 7.3 7.3. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 9 .. 2 10 0 0 0 0 1 +This document this T Th Thi This BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 9 , 1 9 0 0 0 0 1 +during the during d du dur duri BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 9 (), 3 10 0 0 0 0 1 +mailing list mailing m ma mai mail BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 9 ,. 2 9 0 0 0 0 1 +The authors the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 11 :, 2 10 0 0 0 0 1 +Chonggang Wang, chonggang C Ch Cho Chon BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 10 11 ,,, 3 8 0 0 0 0 1 +Thubert Thubert thubert T Th Thu Thub BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 10 11 no 0 3 0 0 0 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 11 , 1 10 0 0 0 0 0 +[Page 57] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 11 [] 2 3 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 10 0 - 1 10 0 0 1 0 1 +6tisch-architecture 6tisch-architecture 6tisch-architecture 6 6t 6ti 6tis BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 0 - 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 10 0 no 0 6 0 0 0 0 1 +Papadopoulos, Eric papadopoulos, P Pa Pap Papa BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 10 0 ,-,,, 5 9 0 0 0 0 1 +Cedric Adjih, cedric C Ce Ced Cedr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 0 0 0 0 0 0 10 0 ,,,, 4 9 0 0 0 0 1 +Vogli, Geraldine vogli, V Vo Vog Vogl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 10 0 ,,,, 4 9 0 0 0 0 1 +Muraoka, Ken muraoka, M Mu Mur Mura BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 10 0 ,,,, 4 9 0 0 0 0 1 +Seewald, Michael seewald, S Se See Seew BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 10 0 ,,,, 4 9 0 0 0 0 1 +Nicolas Montavont, nicolas N Ni Nic Nico BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 0 0 0 0 0 0 10 0 ,,,, 4 9 0 0 0 0 1 +van der van v va van van BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 10 0 ,,,, 4 9 0 0 0 0 1 +Nabati, Rafa nabati, N Na Nab Naba BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 10 0 ,-,,, 5 10 0 0 0 0 1 +Shah, Steve shah, S Sh Sha Shah BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 10 0 ,,,,, 5 9 0 0 0 0 1 +Robles and robles R Ro Rob Robl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 0 0 0 0 0 0 10 0 no 0 9 0 0 0 0 1 +contributions. contributions. contributions. c co con cont BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 0 . 1 2 0 0 0 0 1 +8. References 8. 8 8. 8. 8. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 3 . 1 10 0 0 0 0 1 +8.1. Normative 8.1. 8 8. 8.1 8.1. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 3 .. 2 10 0 0 0 0 1 +[I-D.ietf-6lo-ap-nd] [I-D.ietf-6lo-ap-nd] [i-d.ietf-6lo-ap-nd] [ [I [I- [I-D BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 4 [-.---] 7 3 0 0 0 0 1 +Thubert, P., thubert, T Th Thu Thub BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 10 4 ,.,,.,,.,., 11 9 0 0 0 0 1 +"Address Protected "address " "A "Ad "Add BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 4 "- 2 10 0 0 0 0 1 +Lossy Networks", lossy L Lo Los Loss BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 10 4 ",-----( 8 8 0 0 0 0 1 +progress), April progress), p pr pro prog BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 4 ),. 3 4 0 0 0 0 1 +[I-D.ietf-6lo-backbone-router] [I-D.ietf-6lo-backbone-router] [i-d.ietf-6lo-backbone-router] [ [I [I- [I-D BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 5 [-.---] 7 5 0 0 0 0 1 +Thubert, P., thubert, T Th Thu Thub BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 10 5 ,.,,.,.-," 10 9 0 0 0 0 1 +Backbone Router", backbone B Ba Bac Back BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 5 ",-----( 8 10 0 0 0 0 1 +in progress), in i in in in BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 10 5 ),. 3 5 0 0 0 0 1 +[I-D.ietf-6lo-fragment-recovery] [I-D.ietf-6lo-fragment-recovery] [i-d.ietf-6lo-fragment-recovery] [ [I [I- [I-D BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 6 [-.---] 7 5 0 0 0 0 1 +Thubert, P., thubert, T Th Thu Thub BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 10 6 ,.,"",- 7 10 0 0 0 0 1 +ietf-6lo-fragment-recovery-05 (work ietf-6lo-fragment-recovery-05 i ie iet ietf BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 6 ----(), 7 9 0 0 0 0 1 +2019. 2019. 2019. 2 20 201 2019 BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 1 0 0 0 10 6 . 1 1 0 0 0 0 1 +[I-D.ietf-6lo-minimal-fragment] [I-D.ietf-6lo-minimal-fragment] [i-d.ietf-6lo-minimal-fragment] [ [I [I- [I-D BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 7 [-.---] 7 5 0 0 0 0 1 +Watteyne, T., watteyne, W Wa Wat Watt BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 10 7 ,.,,.,.," 9 9 0 0 0 0 1 +Fragment Forwarding", fragment F Fr Fra Frag BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 7 ",----- 7 10 0 0 0 0 1 +(work in (work ( (w (wo (wor BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 7 (),. 4 5 0 0 0 0 1 +[I-D.ietf-6tisch-enrollment-enhanced-beacon] [I-D.ietf-6tisch-enrollment-enhanced-beacon] [i-d.ietf-6tisch-enrollment-enhanced-beacon] [ [I [I- [I-D BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 8 [-.----] 8 7 0 0 0 0 1 +Dujovne, D. dujovne, D Du Duj Dujo BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 10 8 ,..,".. 7 10 0 0 0 0 1 +Element encapsulation element E El Ele Elem BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 8 no 0 8 0 0 0 0 1 +Information", draft-ietf-6tisch-enrollment-enhanced- information", I In Inf Info BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 10 8 ",----- 7 8 0 0 0 0 1 +beacon-02 (work beacon-02 b be bea beac BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 8 -(),. 5 7 0 0 0 0 1 +[I-D.ietf-6tisch-minimal-security] [I-D.ietf-6tisch-minimal-security] [i-d.ietf-6tisch-minimal-security] [ [I [I- [I-D BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 10 [-.---] 7 6 0 0 0 0 1 +Vucinic, M., vucinic, V Vu Vuc Vuci BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 10 10 ,.,,.,,.,., 11 9 0 0 0 0 1 +"Minimal Security "minimal " "M "Mi "Min BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 10 "",-- 5 8 0 0 0 0 1 +6tisch-minimal-security-12 (work 6tisch-minimal-security-12 6 6t 6ti 6tis BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 10 ---(),. 7 10 0 0 0 0 1 +Thubert Thubert thubert T Th Thu Thub BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 10 11 no 0 3 0 0 0 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 11 , 1 10 0 0 0 0 0 +[Page 58] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 11 [] 2 3 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 10 0 - 1 10 0 0 1 0 1 +6tisch-architecture 6tisch-architecture 6tisch-architecture 6 6t 6ti 6tis BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 0 - 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 10 0 no 0 6 0 0 0 0 1 +[I-D.ietf-6tisch-msf] [I-D.ietf-6tisch-msf] [i-d.ietf-6tisch-msf] [ [I [I- [I-D BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 0 [-.--] 6 3 0 0 0 0 1 +Chang, T., chang, C Ch Cha Chan BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 10 0 ,.,,.,,.,,., 12 10 0 0 0 0 1 +D. Dujovne, d. D D. D. D. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 0 .,"()", 7 9 0 0 0 0 1 +draft-ietf-6tisch-msf-06 (work draft-ietf-6tisch-msf-06 d dr dra draf BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 0 ----(),. 8 9 0 0 0 0 1 +[I-D.ietf-detnet-architecture] [I-D.ietf-detnet-architecture] [i-d.ietf-detnet-architecture] [ [I [I- [I-D BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 1 [-.--] 6 5 0 0 0 0 1 +Finn, N., finn, F Fi Fin Finn BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 10 1 ,.,,.,,.,., 11 9 0 0 0 0 1 +"Deterministic Networking "deterministic " "D "De "Det BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 1 "",-- 5 9 0 0 0 0 1 +detnet-architecture-13 (work detnet-architecture-13 d de det detn BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 1 --(),. 6 10 0 0 0 0 1 +[I-D.ietf-roll-unaware-leaves] [I-D.ietf-roll-unaware-leaves] [i-d.ietf-roll-unaware-leaves] [ [I [I- [I-D BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 2 [-.---] 7 5 0 0 0 0 1 +Thubert, P., thubert, T Th Thu Thub BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 10 2 ,.,"",--- 9 10 0 0 0 0 1 +unaware-leaves-02 (work unaware-leaves-02 u un una unaw BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 2 --(),. 6 8 0 0 0 0 1 +[I-D.ietf-roll-useofrplinfo] [I-D.ietf-roll-useofrplinfo] [i-d.ietf-roll-useofrplinfo] [ [I [I- [I-D BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 3 [-.--] 6 5 0 0 0 0 1 +Robles, I., robles, R Ro Rob Robl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 10 3 ,.,,.,.," 9 9 0 0 0 0 1 +Option Type, option O Op Opt Opti BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 3 ,-- 3 10 0 0 0 0 1 +IPv6 encapsulation ipv6 I IP IPv IPv6 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 3 ",-- 4 9 0 0 0 0 1 +roll-useofrplinfo-31 (work roll-useofrplinfo-31 r ro rol roll BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 3 --(),. 6 9 0 0 0 0 1 +[RFC0768] Postel, [rfc0768] [ [R [RF [RFC BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 4 [],.,"",,, 10 10 0 0 0 0 1 +DOI 10.17487/RFC0768, doi D DO DOI DOI BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 1 0 0 0 0 0 0 10 4 ./,, 4 5 0 0 0 0 1 +<https://www.rfc-editor.org/info/rfc768>. <https://www.rfc-editor.org/info/rfc768>. <https://www.rfc-editor.org/info/rfc768>. < <h <ht <htt BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 1 10 4 ://.-.//. 9 6 0 0 0 0 1 +[RFC4861] Narten, [rfc4861] [ [R [RF [RFC BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 5 [],.,,.,,.,., 13 10 0 0 0 0 1 +"Neighbor Discovery "neighbor " "N "Ne "Nei BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 5 "()",, 6 8 0 0 0 0 1 +DOI 10.17487/RFC4861, doi D DO DOI DOI BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 1 0 0 0 0 0 0 10 5 ./,, 4 5 0 0 0 0 1 +<https://www.rfc-editor.org/info/rfc4861>. <https://www.rfc-editor.org/info/rfc4861>. <https://www.rfc-editor.org/info/rfc4861>. < <h <ht <htt BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 1 10 5 ://.-.//. 9 6 0 0 0 0 1 +[RFC4862] Thomson, [rfc4862] [ [R [RF [RFC BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 6 [],.,,.,.," 11 10 0 0 0 0 1 +Address Autoconfiguration", address A Ad Add Addr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 6 ",, 3 5 0 0 0 0 1 +DOI 10.17487/RFC4862, doi D DO DOI DOI BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 1 0 0 0 0 0 0 10 6 ./,, 4 5 0 0 0 0 1 +<https://www.rfc-editor.org/info/rfc4862>. <https://www.rfc-editor.org/info/rfc4862>. <https://www.rfc-editor.org/info/rfc4862>. < <h <ht <htt BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 1 10 6 ://.-.//. 9 6 0 0 0 0 1 +[RFC4944] Montenegro, [rfc4944] [ [R [RF [RFC BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 8 [],.,,.,,.,., 13 10 0 0 0 0 1 +"Transmission of "transmission " "T "Tr "Tra BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 8 ".. 3 7 0 0 0 0 1 +Networks", RFC networks", N Ne Net Netw BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 10 8 ",,./,, 7 8 0 0 0 0 1 +<https://www.rfc-editor.org/info/rfc4944>. <https://www.rfc-editor.org/info/rfc4944>. <https://www.rfc-editor.org/info/rfc4944>. < <h <ht <htt BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 1 10 8 ://.-.//. 9 6 0 0 0 0 1 +[RFC5889] Baccelli, [rfc5889] [ [R [RF [RFC BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 9 [],.,..,.," 11 10 0 0 0 0 1 +Model in model M Mo Mod Mode BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 9 ",,./, 6 9 0 0 0 0 1 +September 2010, september S Se Sep Sept BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 0 0 0 1 0 0 10 9 ,://.-.//. 10 9 0 0 0 0 1 +[RFC6282] Hui, [rfc6282] [ [R [RF [RFC BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 10 [],.,..," 9 10 0 0 0 0 1 +Datagrams over datagrams D Da Dat Data BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 10 10 ..-",, 6 8 0 0 0 0 1 +DOI 10.17487/RFC6282, doi D DO DOI DOI BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 1 0 0 0 0 0 0 10 10 ./,, 4 5 0 0 0 0 1 +<https://www.rfc-editor.org/info/rfc6282>. <https://www.rfc-editor.org/info/rfc6282>. <https://www.rfc-editor.org/info/rfc6282>. < <h <ht <htt BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 1 10 10 ://.-.//. 9 6 0 0 0 0 1 +Thubert Thubert thubert T Th Thu Thub BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 10 11 no 0 3 0 0 0 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 11 , 1 10 0 0 0 0 0 +[Page 59] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 11 [] 2 3 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 10 0 - 1 10 0 0 1 0 1 +6tisch-architecture 6tisch-architecture 6tisch-architecture 6 6t 6ti 6tis BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 0 - 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 10 0 no 0 6 0 0 0 0 1 +[RFC6550] Winter, [rfc6550] [ [R [RF [RFC BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 0 [],.,.,,.,.,,.,,., 18 10 0 0 0 0 1 +Kelsey, R., kelsey, K Ke Kel Kels BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 10 0 ,.,,.,,.,,.,, 13 8 0 0 0 0 1 +JP., and jp., J JP JP. JP., BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 0 .,.,": 6 8 0 0 0 0 1 +Low-Power and low-power L Lo Low Low- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 0 -",, 4 6 0 0 0 0 1 +DOI 10.17487/RFC6550, doi D DO DOI DOI BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 1 0 0 0 0 0 0 10 0 ./,, 4 5 0 0 0 0 1 +<https://www.rfc-editor.org/info/rfc6550>. <https://www.rfc-editor.org/info/rfc6550>. <https://www.rfc-editor.org/info/rfc6550>. < <h <ht <htt BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 1 10 0 ://.-.//. 9 6 0 0 0 0 1 +[RFC6551] Vasseur, [rfc6551] [ [R [RF [RFC BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 2 [],.,.,,.,.,,.,,., 18 10 0 0 0 0 1 +and D. and a an and and BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 2 .," 3 8 0 0 0 0 1 +in Low-Power in i in in in BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 10 2 -",, 4 6 0 0 0 0 1 +DOI 10.17487/RFC6551, doi D DO DOI DOI BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 1 0 0 0 0 0 0 10 2 ./,, 4 5 0 0 0 0 1 +<https://www.rfc-editor.org/info/rfc6551>. <https://www.rfc-editor.org/info/rfc6551>. <https://www.rfc-editor.org/info/rfc6551>. < <h <ht <htt BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 1 10 2 ://.-.//. 9 6 0 0 0 0 1 +[RFC6552] Thubert, [rfc6552] [ [R [RF [RFC BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 3 [],.,.," 8 10 0 0 0 0 1 +Protocol for protocol P Pr Pro Prot BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 3 -()", 5 7 0 0 0 0 1 +RFC 6552, rfc R RF RFC RFC BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 3 ,./,, 5 6 0 0 0 0 1 +<https://www.rfc-editor.org/info/rfc6552>. <https://www.rfc-editor.org/info/rfc6552>. <https://www.rfc-editor.org/info/rfc6552>. < <h <ht <htt BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 1 10 3 ://.-.//. 9 6 0 0 0 0 1 +[RFC6553] Hui, [rfc6553] [ [R [RF [RFC BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 5 [],..,"- 8 10 0 0 0 0 1 +Power and power P Po Pow Powe BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 10 5 () 2 8 0 0 0 0 1 +Information in information I In Inf Info BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 5 -",, 4 7 0 0 0 0 1 +DOI 10.17487/RFC6553, doi D DO DOI DOI BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 1 0 0 0 0 0 0 10 5 ./,, 4 5 0 0 0 0 1 +<https://www.rfc-editor.org/info/rfc6553>. <https://www.rfc-editor.org/info/rfc6553>. <https://www.rfc-editor.org/info/rfc6553>. < <h <ht <htt BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 1 10 5 ://.-.//. 9 6 0 0 0 0 1 +[RFC6554] Hui, [rfc6554] [ [R [RF [RFC BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 6 [],.,,.,,.,.," 14 10 0 0 0 0 1 +Routing Header routing R Ro Rou Rout BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 10 6 no 0 8 0 0 0 0 1 +for Low-Power for f fo for for BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 6 -()",, 6 7 0 0 0 0 1 +DOI 10.17487/RFC6554, doi D DO DOI DOI BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 1 0 0 0 0 0 0 10 6 ./,, 4 4 0 0 0 0 1 +<https://www.rfc-editor.org/info/rfc6554>. <https://www.rfc-editor.org/info/rfc6554>. <https://www.rfc-editor.org/info/rfc6554>. < <h <ht <htt BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 1 10 6 ://.-.//. 9 6 0 0 0 0 1 +[RFC6775] Shelby, [rfc6775] [ [R [RF [RFC BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 8 [],.,.,,.,,.,. 14 10 0 0 0 0 1 +Bormann, "Neighbor bormann, B Bo Bor Borm BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 10 8 ," 2 8 0 0 0 0 1 +Low-Power Wireless low-power L Lo Low Low- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 8 -()", 5 8 0 0 0 0 1 +RFC 6775, rfc R RF RFC RFC BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 8 ,./,, 5 7 0 0 0 0 1 +<https://www.rfc-editor.org/info/rfc6775>. <https://www.rfc-editor.org/info/rfc6775>. <https://www.rfc-editor.org/info/rfc6775>. < <h <ht <htt BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 1 10 8 ://.-.//. 9 6 0 0 0 0 1 +[RFC7102] Vasseur, [rfc7102] [ [R [RF [RFC BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 9 [],.,"- 7 10 0 0 0 0 1 +Lossy Networks", lossy L Lo Los Loss BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 10 9 ",,./, 6 8 0 0 0 0 1 +2014, <https://www.rfc-editor.org/info/rfc7102>. 2014, 2 20 201 2014 BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 1 0 0 0 10 9 ,://.-.//. 10 7 0 0 0 0 1 +[RFC7228] Bormann, [rfc7228] [ [R [RF [RFC BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 10 [],.,,.,.," 11 10 0 0 0 0 1 +Constrained-Node Networks", constrained-node C Co Con Cons BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 10 -",, 4 5 0 0 0 0 1 +DOI 10.17487/RFC7228, doi D DO DOI DOI BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 1 0 0 0 0 0 0 10 10 ./,, 4 4 0 0 0 0 1 +<https://www.rfc-editor.org/info/rfc7228>. <https://www.rfc-editor.org/info/rfc7228>. <https://www.rfc-editor.org/info/rfc7228>. < <h <ht <htt BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 1 10 10 ://.-.//. 9 6 0 0 0 0 1 +Thubert Thubert thubert T Th Thu Thub BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 10 11 no 0 3 0 0 0 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 11 , 1 10 0 0 0 0 0 +[Page 60] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 11 [] 2 3 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 10 0 - 1 10 0 0 1 0 1 +6tisch-architecture 6tisch-architecture 6tisch-architecture 6 6t 6ti 6tis BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 0 - 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 10 0 no 0 6 0 0 0 0 1 +[RFC7252] Shelby, [rfc7252] [ [R [RF [RFC BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 0 [],.,,.,.," 11 10 0 0 0 0 1 +Application Protocol application A Ap App Appl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 0 ()",, 5 5 0 0 0 0 1 +DOI 10.17487/RFC7252, doi D DO DOI DOI BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 1 0 0 0 0 0 0 10 0 ./,, 4 4 0 0 0 0 1 +<https://www.rfc-editor.org/info/rfc7252>. <https://www.rfc-editor.org/info/rfc7252>. <https://www.rfc-editor.org/info/rfc7252>. < <h <ht <htt BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 1 10 0 ://.-.//. 9 6 0 0 0 0 1 +[RFC7554] Watteyne, [rfc7554] [ [R [RF [RFC BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 1 [],.,.,,.,.," 13 10 0 0 0 0 1 +IEEE 802.15.4e ieee I IE IEE IEEE BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 1 ..-() 5 8 0 0 0 0 1 +Internet of internet I In Int Inte BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 10 1 ():",, 6 8 0 0 0 0 1 +DOI 10.17487/RFC7554, doi D DO DOI DOI BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 1 0 0 0 0 0 0 10 1 ./,, 4 4 0 0 0 0 1 +<https://www.rfc-editor.org/info/rfc7554>. <https://www.rfc-editor.org/info/rfc7554>. <https://www.rfc-editor.org/info/rfc7554>. < <h <ht <htt BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 1 10 1 ://.-.//. 9 6 0 0 0 0 1 +[RFC8025] Thubert, [rfc8025] [ [R [RF [RFC BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 2 [],.,..,"- 10 10 0 0 0 0 1 +Wireless Personal wireless W Wi Wir Wire BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 2 ()", 4 9 0 0 0 0 1 +RFC 8025, rfc R RF RFC RFC BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 2 ,./,, 5 7 0 0 0 0 1 +<https://www.rfc-editor.org/info/rfc8025>. <https://www.rfc-editor.org/info/rfc8025>. <https://www.rfc-editor.org/info/rfc8025>. < <h <ht <htt BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 1 10 2 ://.-.//. 9 6 0 0 0 0 1 +[RFC8137] Kivinen, [rfc8137] [ [R [RF [RFC BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 4 [],..,".. 9 10 0 0 0 0 1 +Element for element E El Ele Elem BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 4 ",,./, 6 9 0 0 0 0 1 +2017, <https://www.rfc-editor.org/info/rfc8137>. 2017, 2 20 201 2017 BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 1 0 0 0 10 4 ,://.-.//. 10 7 0 0 0 0 1 +[RFC8138] Thubert, [rfc8138] [ [R [RF [RFC BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 5 [],.,.,,.,,.,., 15 10 0 0 0 0 1 +"IPv6 over "ipv6 " "I "IP "IPv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 5 "- 2 7 0 0 0 0 1 +(6LoWPAN) Routing (6lowpan) ( (6 (6L (6Lo BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 5 ()",,./, 8 8 0 0 0 0 1 +April 2017, april A Ap Apr Apri BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 0 0 0 1 0 0 10 5 ,://.-.//. 10 7 0 0 0 0 1 +[RFC8180] Vilajosana, [rfc8180] [ [R [RF [RFC BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 6 [],.,.,,.,.," 13 10 0 0 0 0 1 +IPv6 over ipv6 I IP IPv IPv6 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 6 ..() 4 7 0 0 0 0 1 +Configuration", BCP configuration", C Co Con Conf BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 10 6 ",,,./, 7 8 0 0 0 0 1 +May 2017, may M Ma May May BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 10 6 ,://.-.//. 10 7 0 0 0 0 1 +[RFC8200] Deering, [rfc8200] [ [R [RF [RFC BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 8 [],..,", 8 10 0 0 0 0 1 +(IPv6) Specification", (ipv6) ( (I (IP (IPv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 8 ()",,, 6 6 0 0 0 0 1 +DOI 10.17487/RFC8200, doi D DO DOI DOI BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 1 0 0 0 0 0 0 10 8 ./,, 4 4 0 0 0 0 1 +<https://www.rfc-editor.org/info/rfc8200>. <https://www.rfc-editor.org/info/rfc8200>. <https://www.rfc-editor.org/info/rfc8200>. < <h <ht <htt BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 1 10 8 ://.-.//. 9 6 0 0 0 0 1 +[RFC8453] Ceccarelli, [rfc8453] [ [R [RF [RFC BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 9 [],.,..,.," 11 10 0 0 0 0 1 +Abstraction and abstraction A Ab Abs Abst BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 9 ()",, 5 9 0 0 0 0 1 +DOI 10.17487/RFC8453, doi D DO DOI DOI BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 1 0 0 0 0 0 0 10 9 ./,, 4 5 0 0 0 0 1 +<https://www.rfc-editor.org/info/rfc8453>. <https://www.rfc-editor.org/info/rfc8453>. <https://www.rfc-editor.org/info/rfc8453>. < <h <ht <htt BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 1 10 9 ://.-.//. 9 6 0 0 0 0 1 +[RFC8480] Wang, [rfc8480] [ [R [RF [RFC BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 10 [],.,.,,.,.," 13 10 0 0 0 0 1 +Operation Sublayer operation O Op Ope Oper BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 10 ()()",, 7 7 0 0 0 0 1 +DOI 10.17487/RFC8480, doi D DO DOI DOI BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 1 0 0 0 0 0 0 10 10 ./,, 4 5 0 0 0 0 1 +<https://www.rfc-editor.org/info/rfc8480>. <https://www.rfc-editor.org/info/rfc8480>. <https://www.rfc-editor.org/info/rfc8480>. < <h <ht <htt BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 1 10 10 ://.-.//. 9 6 0 0 0 0 1 +Thubert Thubert thubert T Th Thu Thub BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 10 11 no 0 3 0 0 0 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 11 , 1 10 0 0 0 0 0 +[Page 61] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 11 [] 2 3 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 10 0 - 1 10 0 0 1 0 1 +6tisch-architecture 6tisch-architecture 6tisch-architecture 6 6t 6ti 6tis BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 0 - 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 10 0 no 0 6 0 0 0 0 1 +[RFC8505] Thubert, [rfc8505] [ [R [RF [RFC BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 0 [],.,.,,.,,.,. 14 10 0 0 0 0 1 +Perkins, "Registration perkins, P Pe Per Perk BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 10 0 ,"- 3 8 0 0 0 0 1 +Wireless Personal wireless W Wi Wir Wire BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 0 () 2 7 0 0 0 0 1 +Discovery", RFC discovery", D Di Dis Disc BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 10 0 ",,./,, 7 8 0 0 0 0 1 +<https://www.rfc-editor.org/info/rfc8505>. <https://www.rfc-editor.org/info/rfc8505>. <https://www.rfc-editor.org/info/rfc8505>. < <h <ht <htt BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 1 10 0 ://.-.//. 9 6 0 0 0 0 1 +8.2. Informative 8.2. 8 8. 8.2 8.2. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 2 .. 2 10 0 0 0 0 1 +[AMI] [AMI] [ami] [ [A [AM [AMI BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 2 [] 2 1 0 0 0 0 1 +US Department us U US US US BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 1 1 0 0 0 0 0 10 2 ," 2 10 0 0 0 0 1 +and Customer and a an and and BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 2 ",, 3 4 0 0 0 0 1 +<https://www.energy.gov/sites/prod/files/2016/12/f34/ <https://www.energy.gov/sites/prod/files/2016/12/f34/ <https://www.energy.gov/sites/prod/files/2016/12/f34/ < <h <ht <htt BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 1 0 0 1 10 2 ://../////// 12 9 0 0 0 0 1 +AMI%20Summary%20Report_09-26-16.pdf>. AMI%20Summary%20Report_09-26-16.pdf>. ami%20summary%20report_09-26-16.pdf>. A AM AMI AMI% BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 2 --.. 4 6 0 0 0 0 1 +[ANIMA] [ANIMA] [anima] [ [A [AN [ANI BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 3 [] 2 1 0 0 0 0 1 +IETF, "Autonomic ietf, I IE IET IETF BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 3 ," 2 8 0 0 0 0 1 +Approach", Approach", approach", A Ap App Appr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 10 3 ", 2 1 0 0 0 0 1 +<https://dataTracker.ietf.org/doc/charter-ietf-anima/>. <https://dataTracker.ietf.org/doc/charter-ietf-anima/>. <https://datatracker.ietf.org/doc/charter-ietf-anima/>. < <h <ht <htt BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 1 10 3 ://..//--/. 11 10 0 0 0 0 1 +[CCAMP] [CCAMP] [ccamp] [ [C [CC [CCA BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 4 [] 2 1 0 0 0 0 1 +IETF, "Common ietf, I IE IET IETF BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 4 ,"", 4 8 0 0 0 0 1 +<https://dataTracker.ietf.org/doc/charter-ietf-ccamp/>. <https://dataTracker.ietf.org/doc/charter-ietf-ccamp/>. <https://datatracker.ietf.org/doc/charter-ietf-ccamp/>. < <h <ht <htt BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 1 10 4 ://..//--/. 11 10 0 0 0 0 1 +[CCMstar] Struik, [ccmstar] [ [C [CC [CCM BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 5 [],.,"* 7 10 0 0 0 0 1 +Operation", September operation", O Op Ope Oper BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 10 5 ",,..// 7 7 0 0 0 0 1 +pub/2004/15-04-0537-00-004b-formal-specification-ccm-star- pub/2004/15-04-0537-00-004b-formal-specification-ccm-star- pub/2004/15-04-0537-00-004b-formal-specification-ccm-star- p pu pub pub/ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 1 0 0 0 10 5 //--------- 11 9 0 0 0 0 1 +mode-operation.doc>. mode-operation.doc>. mode-operation.doc>. m mo mod mode BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 5 -.. 3 3 0 0 0 0 1 +[HART] [HART] [hart] [ [H [HA [HAR BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 6 [] 2 1 0 0 0 0 1 +www.hartcomm.org, "Highway www.hartcomm.org, w ww www www. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 6 ..,", 5 10 0 0 0 0 1 +a group a a a a a BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 1 0 0 0 0 0 10 6 no 0 9 0 0 0 0 1 +control devices control c co con cont BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 6 ". 2 9 0 0 0 0 1 +[I-D.bernardos-raw-use-cases] [I-D.bernardos-raw-use-cases] [i-d.bernardos-raw-use-cases] [ [I [I- [I-D BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 7 [-.---] 7 5 0 0 0 0 1 +Papadopoulos, G., papadopoulos, P Pa Pap Papa BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 10 7 ,.,,.,,.,. 10 10 0 0 0 0 1 +Bernardos, "RAW bernardos, B Be Ber Bern BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 10 7 ,"",---- 8 9 0 0 0 0 1 +cases-00 (work cases-00 c ca cas case BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 7 -(),. 5 7 0 0 0 0 1 +[I-D.ietf-6tisch-dtsecurity-zerotouch-join] [I-D.ietf-6tisch-dtsecurity-zerotouch-join] [i-d.ietf-6tisch-dtsecurity-zerotouch-join] [ [I [I- [I-D BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 8 [-.----] 8 7 0 0 0 0 1 +Richardson, M., richardson, R Ri Ric Rich BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 10 8 ,.,"-", 7 10 0 0 0 0 1 +draft-ietf-6tisch-dtsecurity-zerotouch-join-04 (work draft-ietf-6tisch-dtsecurity-zerotouch-join-04 d dr dra draf BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 8 ------( 7 9 0 0 0 0 1 +progress), July progress), p pr pro prog BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 8 ),. 3 3 0 0 0 0 1 +[I-D.ietf-ace-coap-est] [I-D.ietf-ace-coap-est] [i-d.ietf-ace-coap-est] [ [I [I- [I-D BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 10 [-.---] 7 4 0 0 0 0 1 +Stok, P., stok, S St Sto Stok BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 10 10 ,.,,.,,.,., 11 9 0 0 0 0 1 +"EST over "est " "E "ES "EST BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 10 "(-)",---- 10 10 0 0 0 0 1 +est-12 (work est-12 e es est est- BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 10 -(),. 5 6 0 0 0 0 1 +Thubert Thubert thubert T Th Thu Thub BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 10 11 no 0 3 0 0 0 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 11 , 1 10 0 0 0 0 0 +[Page 62] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 11 [] 2 3 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 10 0 - 1 10 0 0 1 0 1 +6tisch-architecture 6tisch-architecture 6tisch-architecture 6 6t 6ti 6tis BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 0 - 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 10 0 no 0 6 0 0 0 0 1 +[I-D.ietf-anima-bootstrapping-keyinfra] [I-D.ietf-anima-bootstrapping-keyinfra] [i-d.ietf-anima-bootstrapping-keyinfra] [ [I [I- [I-D BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 0 [-.---] 7 7 0 0 0 0 1 +Pritikin, M., pritikin, P Pr Pri Prit BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 10 0 ,.,,.,,.,,., 12 10 0 0 0 0 1 +and K. and a an and and BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 0 .," 3 8 0 0 0 0 1 +Infrastructures (BRSKI)", infrastructures I In Inf Infr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 10 0 ()",---- 8 10 0 0 0 0 1 +keyinfra-26 (work keyinfra-26 k ke key keyi BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 0 -(),. 5 7 0 0 0 0 1 +[I-D.ietf-anima-constrained-voucher] [I-D.ietf-anima-constrained-voucher] [i-d.ietf-anima-constrained-voucher] [ [I [I- [I-D BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 1 [-.---] 7 6 0 0 0 0 1 +Richardson, M., richardson, R Ri Ric Rich BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 10 1 ,.,,.,.," 9 9 0 0 0 0 1 +Voucher Artifacts voucher V Vo Vou Vouc BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 1 ",- 3 9 0 0 0 0 1 +ietf-anima-constrained-voucher-05 (work ietf-anima-constrained-voucher-05 i ie iet ietf BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 1 ----(), 7 10 0 0 0 0 1 +2019. 2019. 2019. 2 20 201 2019 BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 1 0 0 0 10 1 . 1 1 0 0 0 0 1 +[I-D.ietf-core-object-security] [I-D.ietf-core-object-security] [i-d.ietf-core-object-security] [ [I [I- [I-D BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 3 [-.---] 7 5 0 0 0 0 1 +Selander, G., selander, S Se Sel Sela BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 10 3 ,.,,.,,.,., 11 10 0 0 0 0 1 +"Object Security "object " "O "Ob "Obj BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 3 " 1 9 0 0 0 0 1 +(OSCORE)", draft-ietf-core-object-security-16 (oscore)", ( (O (OS (OSC BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 3 ()",-----( 10 9 0 0 0 0 1 +progress), March progress), p pr pro prog BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 3 ),. 3 4 0 0 0 0 1 +[I-D.ietf-detnet-ip] [I-D.ietf-detnet-ip] [i-d.ietf-detnet-ip] [ [I [I- [I-D BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 4 [-.--] 6 3 0 0 0 0 1 +Varga, B., varga, V Va Var Varg BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 10 4 ,.,,.,,.,,.,,., 15 10 0 0 0 0 1 +Bryant, S., bryant, B Br Bry Brya BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 10 4 ,.,.,":", 9 9 0 0 0 0 1 +draft-ietf-detnet-ip-01 (work draft-ietf-detnet-ip-01 d dr dra draf BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 4 ----(),. 8 9 0 0 0 0 1 +[I-D.ietf-detnet-use-cases] [I-D.ietf-detnet-use-cases] [i-d.ietf-detnet-use-cases] [ [I [I- [I-D BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 6 [-.---] 7 4 0 0 0 0 1 +Grossman, E., grossman, G Gr Gro Gros BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 10 6 ,.,"",- 7 10 0 0 0 0 1 +ietf-detnet-use-cases-20 (work ietf-detnet-use-cases-20 i ie iet ietf BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 6 ----(), 7 9 0 0 0 0 1 +2018. 2018. 2018. 2 20 201 2018 BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 1 0 0 0 10 6 . 1 1 0 0 0 0 1 +[I-D.ietf-lwig-6lowpan-virtual-reassembly] [I-D.ietf-lwig-6lowpan-virtual-reassembly] [i-d.ietf-lwig-6lowpan-virtual-reassembly] [ [I [I- [I-D BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 7 [-.----] 8 7 0 0 0 0 1 +Bormann, C. bormann, B Bo Bor Borm BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 10 7 ,..," 5 9 0 0 0 0 1 +in 6LoWPAN", in i in in in BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 10 7 ",------ 8 10 0 0 0 0 1 +(work in (work ( (w (wo (wor BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 7 (),. 4 5 0 0 0 0 1 +[I-D.ietf-manet-aodvv2] [I-D.ietf-manet-aodvv2] [i-d.ietf-manet-aodvv2] [ [I [I- [I-D BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 8 [-.--] 6 4 0 0 0 0 1 +Perkins, C., perkins, P Pe Per Perk BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 10 8 ,.,,.,,.,,., 12 10 0 0 0 0 1 +V. Mercieca, v. V V. V. V. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 8 .,"- 4 9 0 0 0 0 1 +(AODVv2) Routing", (aodvv2) ( (A (AO (AOD BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 8 ()",----( 9 9 0 0 0 0 1 +progress), May progress), p pr pro prog BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 8 ),. 3 3 0 0 0 0 1 +[I-D.ietf-roll-aodv-rpl] [I-D.ietf-roll-aodv-rpl] [i-d.ietf-roll-aodv-rpl] [ [I [I- [I-D BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 9 [-.---] 7 4 0 0 0 0 1 +Anamalamudi, S., anamalamudi, A An Ana Anam BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 9 ,.,,.,,.,,.,. 13 10 0 0 0 0 1 +Liu, "Asymmetric liu, L Li Liu Liu, BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 9 ,"--- 5 8 0 0 0 0 1 +Networks (LLNs)", networks N Ne Net Netw BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 11 9 ()",-----( 10 9 0 0 0 0 1 +progress), April progress), p pr pro prog BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 9 ),. 3 3 0 0 0 0 1 +Thubert Thubert thubert T Th Thu Thub BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 11 no 0 3 0 0 0 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 11 , 1 10 0 0 0 0 0 +[Page 63] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 11 [] 2 3 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 0 - 1 10 0 0 1 0 1 +6tisch-architecture 6tisch-architecture 6tisch-architecture 6 6t 6ti 6tis BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 0 - 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 11 0 no 0 6 0 0 0 0 1 +[I-D.ietf-roll-dao-projection] [I-D.ietf-roll-dao-projection] [i-d.ietf-roll-dao-projection] [ [I [I- [I-D BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 0 [-.---] 7 5 0 0 0 0 1 +Thubert, P., thubert, T Th Thu Thub BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 0 ,.,,.,,.,., 11 10 0 0 0 0 1 +"Root initiated "root " "R "Ro "Roo BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 0 "",--- 6 9 0 0 0 0 1 +dao-projection-06 (work dao-projection-06 d da dao dao- BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 0 --(),. 6 8 0 0 0 0 1 +[I-D.ietf-roll-rpl-industrial-applicability] [I-D.ietf-roll-rpl-industrial-applicability] [i-d.ietf-roll-rpl-industrial-applicability] [ [I [I- [I-D BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 1 [-.----] 8 8 0 0 0 0 1 +Phinney, T., phinney, P Ph Phi Phin BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 1 ,.,,.,.," 9 8 0 0 0 0 1 +applicability in applicability a ap app appl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 1 ",--- 5 10 0 0 0 0 1 +rpl-industrial-applicability-02 (work rpl-industrial-applicability-02 r rp rpl rpl- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 1 ---(), 6 9 0 0 0 0 1 +October 2013. october O Oc Oct Octo BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 11 1 . 1 2 0 0 0 0 1 +[I-D.rahul-roll-mop-ext] [I-D.rahul-roll-mop-ext] [i-d.rahul-roll-mop-ext] [ [I [I- [I-D BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 2 [-.---] 7 5 0 0 0 0 1 +Jadhav, R. jadhav, J Ja Jad Jadh BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 2 ,..," 5 10 0 0 0 0 1 +extension", draft-rahul-roll-mop-ext-01 extension", e ex ext exte BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 2 ",-----( 8 9 0 0 0 0 1 +progress), June progress), p pr pro prog BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 2 ),. 3 4 0 0 0 0 1 +[I-D.selander-ace-cose-ecdhe] [I-D.selander-ace-cose-ecdhe] [i-d.selander-ace-cose-ecdhe] [ [I [I- [I-D BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 4 [-.---] 7 5 0 0 0 0 1 +Selander, G., selander, S Se Sel Sela BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 4 ,.,,.,.," 9 10 0 0 0 0 1 +Diffie-Hellman Over diffie-hellman D Di Dif Diff BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 4 -()",--- 8 9 0 0 0 0 1 +cose-ecdhe-13 (work cose-ecdhe-13 c co cos cose BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 4 --(),. 6 8 0 0 0 0 1 +[I-D.thubert-6lo-bier-dispatch] [I-D.thubert-6lo-bier-dispatch] [i-d.thubert-6lo-bier-dispatch] [ [I [I- [I-D BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 5 [-.---] 7 5 0 0 0 0 1 +Thubert, P., thubert, T Th Thu Thub BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 5 ,.,,.,,.,.," 12 9 0 0 0 0 1 +6loRH for 6lorh 6 6l 6lo 6loR BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 5 ",----- 7 10 0 0 0 0 1 +(work in (work ( (w (wo (wor BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 5 (),. 4 5 0 0 0 0 1 +[I-D.thubert-6man-unicast-lookup] [I-D.thubert-6man-unicast-lookup] [i-d.thubert-6man-unicast-lookup] [ [I [I- [I-D BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 6 [-.---] 7 5 0 0 0 0 1 +Thubert, P. thubert, T Th Thu Thub BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 6 ,..-," 6 10 0 0 0 0 1 +Unicast Lookup", unicast U Un Uni Unic BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 6 ",----- 7 9 0 0 0 0 1 +(work in (work ( (w (wo (wor BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 6 (),. 4 5 0 0 0 0 1 +[I-D.thubert-bier-replication-elimination] [I-D.thubert-bier-replication-elimination] [i-d.thubert-bier-replication-elimination] [ [I [I- [I-D BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 7 [-.---] 7 7 0 0 0 0 1 +Thubert, P., thubert, T Th Thu Thub BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 7 ,.,,.,,.,.,"- 13 10 0 0 0 0 1 +TE extensions te T TE TE TE BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 11 7 no 0 9 0 0 0 0 1 +Function (PREF) function F Fu Fun Func BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 7 ()",---- 8 9 0 0 0 0 1 +elimination-03 (work elimination-03 e el eli elim BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 7 -(),. 5 8 0 0 0 0 1 +[I-D.thubert-raw-technologies] [I-D.thubert-raw-technologies] [i-d.thubert-raw-technologies] [ [I [I- [I-D BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 9 [-.--] 6 5 0 0 0 0 1 +Thubert, P., thubert, T Th Thu Thub BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 9 ,.,,.,,.,. 10 8 0 0 0 0 1 +Schmitt, "Reliable schmitt, S Sc Sch Schm BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 9 ,"", 4 9 0 0 0 0 1 +draft-thubert-raw-technologies-03 (work draft-thubert-raw-technologies-03 d dr dra draf BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 9 ----(), 7 10 0 0 0 0 1 +2019. 2019. 2019. 2 20 201 2019 BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 1 0 0 0 11 9 . 1 1 0 0 0 0 1 +[I-D.thubert-roll-bier] [I-D.thubert-roll-bier] [i-d.thubert-roll-bier] [ [I [I- [I-D BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 10 [-.--] 6 4 0 0 0 0 1 +Thubert, P., thubert, T Th Thu Thub BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 10 ,.,"-",----( 12 10 0 0 0 0 1 +in progress), in i in in in BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 11 10 ),. 3 4 0 0 0 0 1 +Thubert Thubert thubert T Th Thu Thub BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 11 no 0 3 0 0 0 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 11 , 1 10 0 0 0 0 0 +[Page 64] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 11 [] 2 3 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 0 - 1 10 0 0 1 0 1 +6tisch-architecture 6tisch-architecture 6tisch-architecture 6 6t 6ti 6tis BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 0 - 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 11 0 no 0 6 0 0 0 0 1 +[I-D.tiloca-6tisch-robust-scheduling] [I-D.tiloca-6tisch-robust-scheduling] [i-d.tiloca-6tisch-robust-scheduling] [ [I [I- [I-D BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 0 [-.---] 7 6 0 0 0 0 1 +Tiloca, M., tiloca, T Ti Til Tilo BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 0 ,.,,.,.," 9 10 0 0 0 0 1 +against Selective against a ag aga agai BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 0 ",- 3 8 0 0 0 0 1 +tiloca-6tisch-robust-scheduling-02 (work tiloca-6tisch-robust-scheduling-02 t ti til tilo BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 0 ----(), 7 9 0 0 0 0 1 +June 2019. june J Ju Jun June BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 0 0 0 1 0 0 11 0 . 1 1 0 0 0 0 1 +[IEC62439] [IEC62439] [iec62439] [ [I [IE [IEC BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 1 0 0 0 11 1 [] 2 1 0 0 0 0 1 +IEC, "Industrial iec, I IE IEC IEC, BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 11 1 ,"- 3 8 0 0 0 0 1 +availability automation availability a av ava avai BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 1 -: 2 8 0 0 0 0 1 +Redundancy Protocol redundancy R Re Red Redu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 1 ()- 3 10 0 0 0 0 1 +Redundancy (HSR) redundancy R Re Red Redu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 1 ()--",, 7 6 0 0 0 0 1 +<https://webstore.iec.ch/publication/7018>. <https://webstore.iec.ch/publication/7018>. <https://webstore.iec.ch/publication/7018>. < <h <ht <htt BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 1 11 1 ://..//. 8 7 0 0 0 0 1 +[IEEE802154] [IEEE802154] [ieee802154] [ [I [IE [IEE BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 1 0 0 0 11 3 [] 2 2 0 0 0 0 1 +IEEE standard ieee I IE IEE IEEE BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 11 3 ,". 3 8 0 0 0 0 1 +802.15.4, Part. 802.15.4, 8 80 802 802. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 3 ..,..:() 8 10 0 0 0 0 1 +and Physical and a an and and BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 3 ()- 3 8 0 0 0 0 1 +Wireless Personal wireless W Wi Wir Wire BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 3 ". 2 5 0 0 0 0 1 +[IEEE802154e] [IEEE802154e] [ieee802154e] [ [I [IE [IEE BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 1 0 0 0 11 4 [] 2 2 0 0 0 0 1 +IEEE standard ieee I IE IEE IEEE BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 11 4 ," 2 9 0 0 0 0 1 +for Information for f fo for for BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 4 ,...,. 6 9 0 0 0 0 1 +15.4: Wireless 15.4: 1 15 15. 15.4 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 4 .:() 4 9 0 0 0 0 1 +Layer (PHY) layer L La Lay Laye BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 4 ()- 3 10 0 0 0 0 1 +Area Networks, area A Ar Are Area BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 4 ,. 2 8 0 0 0 0 1 +802.15.4e, Part. 802.15.4e, 8 80 802 802. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 4 ..,..:- 7 9 0 0 0 0 1 +Networks (LR-WPANs) networks N Ne Net Netw BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 11 4 (-):", 6 9 0 0 0 0 1 +2012. 2012. 2012. 2 20 201 2012 BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 1 0 0 0 11 4 . 1 1 0 0 0 0 1 +[ISA100] [ISA100] [isa100] [ [I [IS [ISA BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 7 [] 2 1 0 0 0 0 1 +ISA/ANSI, "ISA100, isa/ansi, I IS ISA ISA/ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 11 7 /,",", 6 10 0 0 0 0 1 +<https://www.isa.org/isa100/>. <https://www.isa.org/isa100/>. <https://www.isa.org/isa100/>. < <h <ht <htt BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 1 11 7 ://..//. 8 5 0 0 0 0 1 +[ISA100.11a] [ISA100.11a] [isa100.11a] [ [I [IS [ISA BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 7 [.] 3 2 0 0 0 0 1 +ISA/ANSI, "Wireless isa/ansi, I IS ISA ISA/ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 11 7 /,": 4 9 0 0 0 0 1 +Process Control process P Pr Pro Proc BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 7 -.- 3 10 0 0 0 0 1 +-IEC 62734", -iec - -I -IE -IEC BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 11 7 -",,://..// 11 8 0 0 0 0 1 +SP100WirelessSystemsforAutomation>. SP100WirelessSystemsforAutomation>. sp100wirelesssystemsforautomation>. S SP SP1 SP10 BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 7 . 1 6 0 0 0 0 1 +[PCE] [PCE] [pce] [ [P [PC [PCE BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 11 9 [] 2 1 0 0 0 0 1 +IETF, "Path ietf, I IE IET IETF BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 11 9 ,"", 4 6 0 0 0 0 1 +<https://dataTracker.ietf.org/doc/charter-ietf-pce/>. <https://dataTracker.ietf.org/doc/charter-ietf-pce/>. <https://datatracker.ietf.org/doc/charter-ietf-pce/>. < <h <ht <htt BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 1 11 9 ://..//--/. 11 10 0 0 0 0 1 +[RFC2474] Nichols, [rfc2474] [ [R [RF [RFC BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 1 0 0 0 11 9 [],.,,.,,.,., 13 10 0 0 0 0 1 +"Definition of "definition " "D "De "Def BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 9 "( 2 8 0 0 0 0 1 +Field) in field) F Fi Fie Fiel BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 9 )",, 4 8 0 0 0 0 1 +DOI 10.17487/RFC2474, doi D DO DOI DOI BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 1 0 0 0 0 0 0 11 9 ./,, 4 6 0 0 0 0 1 +<https://www.rfc-editor.org/info/rfc2474>. <https://www.rfc-editor.org/info/rfc2474>. <https://www.rfc-editor.org/info/rfc2474>. < <h <ht <htt BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 1 0 0 1 11 9 ://.-.//. 9 7 0 0 0 0 1 +Thubert Thubert thubert T Th Thu Thub BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 11 no 0 3 0 0 0 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 11 , 1 10 0 0 0 0 0 +[Page 65] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 11 [] 2 3 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 0 - 1 10 0 0 1 0 1 +6tisch-architecture 6tisch-architecture 6tisch-architecture 6 6t 6ti 6tis BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 0 - 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 11 0 no 0 6 0 0 0 0 1 +[RFC2545] Marques, [rfc2545] [ [R [RF [RFC BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 1 0 0 0 11 0 [],..,"- 8 10 0 0 0 0 1 +Extensions for extensions E Ex Ext Exte BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 0 -",, 4 8 0 0 0 0 1 +DOI 10.17487/RFC2545, doi D DO DOI DOI BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 1 0 0 0 0 0 0 11 0 ./,, 4 5 0 0 0 0 1 +<https://www.rfc-editor.org/info/rfc2545>. <https://www.rfc-editor.org/info/rfc2545>. <https://www.rfc-editor.org/info/rfc2545>. < <h <ht <htt BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 1 0 0 1 11 0 ://.-.//. 9 6 0 0 0 0 1 +[RFC3209] Awduche, [rfc3209] [ [R [RF [RFC BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 1 [],.,,.,,.,,.,,., 17 10 0 0 0 0 1 +and G. and a an and and BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 1 .,"-: 5 7 0 0 0 0 1 +Tunnels", RFC tunnels", T Tu Tun Tunn BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 1 ",,./,, 7 8 0 0 0 0 1 +<https://www.rfc-editor.org/info/rfc3209>. <https://www.rfc-editor.org/info/rfc3209>. <https://www.rfc-editor.org/info/rfc3209>. < <h <ht <htt BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 1 11 1 ://.-.//. 9 6 0 0 0 0 1 +[RFC3444] Pras, [rfc3444] [ [R [RF [RFC BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 2 [],..," 7 10 0 0 0 0 1 +Information Models information I In Inf Info BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 2 ",, 3 6 0 0 0 0 1 +DOI 10.17487/RFC3444, doi D DO DOI DOI BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 1 0 0 0 0 0 0 11 2 ./,, 4 5 0 0 0 0 1 +<https://www.rfc-editor.org/info/rfc3444>. <https://www.rfc-editor.org/info/rfc3444>. <https://www.rfc-editor.org/info/rfc3444>. < <h <ht <htt BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 1 11 2 ://.-.//. 9 6 0 0 0 0 1 +[RFC3963] Devarapalli, [rfc3963] [ [R [RF [RFC BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 3 [],.,,.,,.,. 12 10 0 0 0 0 1 +Thubert, "Network thubert, T Th Thu Thub BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 3 ,"()", 6 9 0 0 0 0 1 +RFC 3963, rfc R RF RFC RFC BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 11 3 ,./,, 5 7 0 0 0 0 1 +<https://www.rfc-editor.org/info/rfc3963>. <https://www.rfc-editor.org/info/rfc3963>. <https://www.rfc-editor.org/info/rfc3963>. < <h <ht <htt BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 1 11 3 ://.-.//. 9 6 0 0 0 0 1 +[RFC4080] Hancock, [rfc4080] [ [R [RF [RFC BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 5 [],.,,.,,.,. 12 10 0 0 0 0 1 +Bosch, "Next bosch, B Bo Bos Bosc BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 5 ,"():", 7 7 0 0 0 0 1 +RFC 4080, rfc R RF RFC RFC BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 11 5 ,./,, 5 6 0 0 0 0 1 +<https://www.rfc-editor.org/info/rfc4080>. <https://www.rfc-editor.org/info/rfc4080>. <https://www.rfc-editor.org/info/rfc4080>. < <h <ht <htt BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 1 11 5 ://.-.//. 9 6 0 0 0 0 1 +[RFC4291] Hinden, [rfc4291] [ [R [RF [RFC BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 6 [],..," 7 10 0 0 0 0 1 +Architecture", RFC architecture", A Ar Arc Arch BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 6 ",,./, 6 9 0 0 0 0 1 +2006, <https://www.rfc-editor.org/info/rfc4291>. 2006, 2 20 200 2006 BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 1 0 0 0 11 6 ,://.-.//. 10 7 0 0 0 0 1 +[RFC4903] Thaler, [rfc4903] [ [R [RF [RFC BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 7 [],.,"-",, 10 10 0 0 0 0 1 +DOI 10.17487/RFC4903, doi D DO DOI DOI BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 1 0 0 0 0 0 0 11 7 ./,, 4 5 0 0 0 0 1 +<https://www.rfc-editor.org/info/rfc4903>. <https://www.rfc-editor.org/info/rfc4903>. <https://www.rfc-editor.org/info/rfc4903>. < <h <ht <htt BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 1 11 7 ://.-.//. 9 7 0 0 0 0 1 +[RFC4919] Kushalnagar, [rfc4919] [ [R [RF [RFC BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 8 [],.,,.,.," 11 10 0 0 0 0 1 +over Low-Power over o ov ove over BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 8 -(): 4 8 0 0 0 0 1 +Overview, Assumptions, overview, O Ov Ove Over BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 8 ,,,", 5 7 0 0 0 0 1 +RFC 4919, rfc R RF RFC RFC BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 11 8 ,./,, 5 6 0 0 0 0 1 +<https://www.rfc-editor.org/info/rfc4919>. <https://www.rfc-editor.org/info/rfc4919>. <https://www.rfc-editor.org/info/rfc4919>. < <h <ht <htt BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 1 11 8 ://.-.//. 9 6 0 0 0 0 1 +[RFC5340] Coltun, [rfc5340] [ [R [RF [RFC BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 9 [],.,,.,,.,.," 14 10 0 0 0 0 1 +for IPv6", for f fo for for BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 9 ",,./,, 7 8 0 0 0 0 1 +<https://www.rfc-editor.org/info/rfc5340>. <https://www.rfc-editor.org/info/rfc5340>. <https://www.rfc-editor.org/info/rfc5340>. < <h <ht <htt BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 1 11 9 ://.-.//. 9 6 0 0 0 0 1 +[RFC5974] Manner, [rfc5974] [ [R [RF [RFC BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 10 [],.,,.,.," 11 10 0 0 0 0 1 +Signaling Layer signaling S Si Sig Sign BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 10 ()-- 4 8 0 0 0 0 1 +Signaling", RFC signaling", S Si Sig Sign BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 10 ",,./,, 7 9 0 0 0 0 1 +<https://www.rfc-editor.org/info/rfc5974>. <https://www.rfc-editor.org/info/rfc5974>. <https://www.rfc-editor.org/info/rfc5974>. < <h <ht <htt BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 1 11 10 ://.-.//. 9 6 0 0 0 0 1 +Thubert Thubert thubert T Th Thu Thub BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 11 no 0 3 0 0 0 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 11 , 1 10 0 0 0 0 0 +[Page 66] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 11 [] 2 3 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 0 - 1 10 0 0 1 0 1 +6tisch-architecture 6tisch-architecture 6tisch-architecture 6 6t 6ti 6tis BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 0 - 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 11 0 no 0 6 0 0 0 0 1 +[RFC6275] Perkins, [rfc6275] [ [R [RF [RFC BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 0 [],.,.,,.,.," 13 10 0 0 0 0 1 +Support in support S Su Sup Supp BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 11 0 ",,./, 6 8 0 0 0 0 1 +2011, <https://www.rfc-editor.org/info/rfc6275>. 2011, 2 20 201 2011 BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 1 0 0 0 11 0 ,://.-.//. 10 7 0 0 0 0 1 +[RFC6347] Rescorla, [rfc6347] [ [R [RF [RFC BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 1 [],..," 7 10 0 0 0 0 1 +Security Version security S Se Sec Secu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 11 1 .",,./, 7 8 0 0 0 0 1 +January 2012, january J Ja Jan Janu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 0 0 0 1 0 0 11 1 ,://.-.//. 10 8 0 0 0 0 1 +[RFC6606] Kim, [rfc6606] [ [R [RF [RFC BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 2 [],.,,.,,.,.," 14 10 0 0 0 0 1 +Statement and statement S St Sta Stat BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 2 - 1 7 0 0 0 0 1 +Wireless Personal wireless W Wi Wir Wire BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 2 ()", 4 7 0 0 0 0 1 +RFC 6606, rfc R RF RFC RFC BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 11 2 ,./,, 5 6 0 0 0 0 1 +<https://www.rfc-editor.org/info/rfc6606>. <https://www.rfc-editor.org/info/rfc6606>. <https://www.rfc-editor.org/info/rfc6606>. < <h <ht <htt BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 1 11 2 ://.-.//. 9 6 0 0 0 0 1 +[RFC6830] Farinacci, [rfc6830] [ [R [RF [RFC BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 4 [],.,,.,,.,.," 14 10 0 0 0 0 1 +Locator/ID Separation locator/id L Lo Loc Loca BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 4 /()",, 6 7 0 0 0 0 1 +DOI 10.17487/RFC6830, doi D DO DOI DOI BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 1 0 0 0 0 0 0 11 4 ./,, 4 5 0 0 0 0 1 +<https://www.rfc-editor.org/info/rfc6830>. <https://www.rfc-editor.org/info/rfc6830>. <https://www.rfc-editor.org/info/rfc6830>. < <h <ht <htt BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 1 11 4 ://.-.//. 9 6 0 0 0 0 1 +[RFC7426] Haleplidis, [rfc7426] [ [R [RF [RFC BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 5 [],.,.,,.,.,,., 15 10 0 0 0 0 1 +Hadi Salim, hadi H Ha Had Hadi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 0 0 0 0 0 0 11 5 ,.,,.,.,"- 10 8 0 0 0 0 1 +Defined Networking defined D De Def Defi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 5 (): 3 7 0 0 0 0 1 +Terminology", RFC terminology", T Te Ter Term BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 5 ",,./, 6 8 0 0 0 0 1 +2015, <https://www.rfc-editor.org/info/rfc7426>. 2015, 2 20 201 2015 BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 1 0 0 0 11 5 ,://.-.//. 10 7 0 0 0 0 1 +[S-ALOHA] Roberts, [s-aloha] [ [S [S- [S-A BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 11 7 [-],..," 8 10 0 0 0 0 1 +Slots and slots S Sl Slo Slot BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 7 ",./., 6 8 0 0 0 0 1 +1975, <https://dl.acm.org/citation.cfm?id=1024920>. 1975, 1 19 197 1975 BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 1 0 0 0 11 7 ,://../.?. 10 8 0 0 0 0 1 +[TEAS] [TEAS] [teas] [ [T [TE [TEA BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 11 8 [] 2 1 0 0 0 0 1 +IETF, "Traffic ietf, I IE IET IETF BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 11 8 ,"", 4 10 0 0 0 0 1 +<https://dataTracker.ietf.org/doc/charter-ietf-teas/>. <https://dataTracker.ietf.org/doc/charter-ietf-teas/>. <https://datatracker.ietf.org/doc/charter-ietf-teas/>. < <h <ht <htt BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 1 11 8 ://..//--/. 11 9 0 0 0 0 1 +[WirelessHART] [WirelessHART] [wirelesshart] [ [W [Wi [Wir BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 8 [] 2 2 0 0 0 0 1 +www.hartcomm.org, "Industrial www.hartcomm.org, w ww www www. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 8 ..,"- 5 9 0 0 0 0 1 +Wireless Communication wireless W Wi Wir Wire BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 8 no 0 10 0 0 0 0 1 +-WirelessHART -IEC -wirelesshart - -W -Wi -Wir BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 8 --",. 5 5 0 0 0 0 1 +Appendix A. appendix A Ap App Appe BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 9 . 1 10 0 0 0 0 1 +This document this T Th Thi This BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 9 no 0 9 0 0 0 0 1 +the evolution the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 9 no 0 9 0 0 0 0 1 +work. The work. w wo wor work BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 9 . 1 10 0 0 0 0 1 +items. At items. i it ite item BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 9 . 1 9 0 0 0 0 1 +still in still s st sti stil BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 9 no 0 9 0 0 0 0 1 +6TiSCH-aware node. 6tisch-aware 6 6T 6Ti 6TiS BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 9 -. 2 2 0 0 0 0 1 +Thubert Thubert thubert T Th Thu Thub BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 11 no 0 3 0 0 0 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 11 , 1 10 0 0 0 0 0 +[Page 67] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 11 [] 2 3 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 0 - 1 10 0 0 1 0 1 +6tisch-architecture 6tisch-architecture 6tisch-architecture 6 6t 6ti 6tis BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 0 - 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 11 0 no 0 6 0 0 0 0 1 +A.1. Unchartered a.1. A A. A.1 A.1. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 0 .. 2 10 0 0 0 0 1 +A.1.1. 6TiSCH a.1.1. A A. A.1 A.1. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 0 ... 3 10 0 0 0 0 1 +The security the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 0 no 0 9 0 0 0 0 1 +[I-D.ietf-6tisch-dtsecurity-zerotouch-join] depends [i-d.ietf-6tisch-dtsecurity-zerotouch-join] [ [I [I- [I-D BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 0 [-.----] 8 9 0 0 0 0 1 +[ANIMA] Bootstrapping [anima] [ [A [AN [ANI BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 11 0 []() 4 9 0 0 0 0 1 +[I-D.ietf-anima-bootstrapping-keyinfra] to [i-d.ietf-anima-bootstrapping-keyinfra] [ [I [I- [I-D BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 0 [-.---]- 8 10 0 0 0 0 1 +provisionning; for provisionning; p pr pro prov BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 0 ;, 2 10 0 0 0 0 1 +pre-shared keys pre-shared p pr pre pre- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 0 -()., 5 9 0 0 0 0 1 +also depends also a al als also BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 0 , 1 9 0 0 0 0 1 +"Ephemeral Diffie-Hellman "ephemeral " "E "Ep "Eph BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 0 "-()" 5 6 0 0 0 0 1 +[I-D.selander-ace-cose-ecdhe], which [i-d.selander-ace-cose-ecdhe], [ [I [I- [I-D BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 0 [-.---], 8 10 0 0 0 0 1 +at the at a at at at BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 0 . 1 2 0 0 0 0 1 +A.1.2. 6TiSCH a.1.2. A A. A.1 A.1. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 3 ... 3 10 0 0 0 0 1 +ROLL is roll R RO ROL ROLL BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 11 3 no 0 9 0 0 0 0 1 +[I-D.ietf-roll-aodv-rpl] The [i-d.ietf-roll-aodv-rpl] [ [I [I- [I-D BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 3 [-.---] 7 9 0 0 0 0 1 +establish on-demand establish e es est esta BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 3 -- 2 9 0 0 0 0 1 +protocol to protocol p pr pro prot BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 3 - 1 10 0 0 0 0 1 +not chartered not n no not not BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 3 . 1 2 0 0 0 0 1 +At the at A At At At BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 4 , 1 9 0 0 0 0 1 +called RAW called c ca cal call BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 4 no 0 9 0 0 0 0 1 +considered. The considered. c co con cons BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 4 . 1 10 0 0 0 0 1 +a subsequent a a a a a BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 1 0 0 0 0 0 11 4 ,. 2 9 0 0 0 0 1 +Available Wireless available A Av Ava Avai BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 4 ()-. 4 9 0 0 0 0 1 +and develop and a an and and BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 4 no 0 9 0 0 0 0 1 +cover 6TiSCH cover c co cov cove BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 4 , 1 10 0 0 0 0 1 +[I-D.thubert-raw-technologies]. In [i-d.thubert-raw-technologies]. [ [I [I- [I-D BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 4 [-.--]., 8 9 0 0 0 0 1 +to update to t to to to BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 4 no 0 10 0 0 0 0 1 +the constrained the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 4 no 0 9 0 0 0 0 1 +wireless links wireless w wi wir wire BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 4 . 1 9 0 0 0 0 1 +react quickly react r re rea reac BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 4 . 1 9 0 0 0 0 1 +ROLL is roll R RO ROL ROLL BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 11 8 - 1 10 0 0 0 0 1 +computed routes computed c co com comp BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 8 [-.---] 7 7 0 0 0 0 1 +The 6TiSCH the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 9 no 0 8 0 0 0 0 1 +[I-D.ietf-detnet-architecture] architecture [i-d.ietf-detnet-architecture] [ [I [I- [I-D BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 9 [-.--]. 7 9 0 0 0 0 1 +The Path the T Th The The BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 9 () 2 10 0 0 0 0 1 +architecture. An architecture. a ar arc arch BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 9 .[] 3 9 0 0 0 0 1 +to expose to t to to to BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 9 no 0 9 0 0 0 0 1 +PCE, possibly pce, P PC PCE PCE, BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 11 9 ,[-.---]. 9 8 0 0 0 0 1 +protocol such protocol p pr pro prot BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 9 [] 2 10 0 0 0 0 1 +G-MPLS formats g-mpls G G- G-M G-MP BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 11 9 - 1 8 0 0 0 0 1 +Thubert Thubert thubert T Th Thu Thub BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 11 no 0 3 0 0 0 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 11 , 1 10 0 0 0 0 0 +[Page 68] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 11 [] 2 3 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 0 - 1 10 0 0 1 0 1 +6tisch-architecture 6tisch-architecture 6tisch-architecture 6 6t 6ti 6tis BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 0 - 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 11 0 no 0 6 0 0 0 0 1 +[I-D.ietf-roll-dao-projection] to [i-d.ietf-roll-dao-projection] [ [I [I- [I-D BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 0 [-.---], 8 10 0 0 0 0 1 +the PCE, the t th the the BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 0 ,. 2 4 0 0 0 0 1 +A.1.3. Using a.1.3. A A. A.1 A.1. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 0 ... 3 10 0 0 0 0 1 +ROLL is roll R RO ROL ROLL BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 11 1 () 2 10 0 0 0 0 1 +a method a a a a a BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 1 0 0 0 0 0 11 1 no 0 9 0 0 0 0 1 +tables in tables t ta tab tabl BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 11 1 [-.--]. 7 6 0 0 0 0 1 +BIER could bier B BI BIE BIER BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 11 2 . 1 9 0 0 0 0 1 +BIER-TE-based OAM, bier-te-based B BI BIE BIER BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 2 --, 3 6 0 0 0 0 1 +[I-D.thubert-bier-replication-elimination] leverages [i-d.thubert-bier-replication-elimination] [ [I [I- [I-D BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 2 [-.---] 7 9 0 0 0 0 1 +Engineering (TE) engineering E En Eng Engi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 2 () 2 10 0 0 0 0 1 +and Elimination and a an and and BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 2 , 1 9 0 0 0 0 1 +where replication where w wh whe wher BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 2 , 1 9 0 0 0 0 1 +the forwarding the t th the the BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 2 . 1 4 0 0 0 0 1 +a 6loRH a a a a a BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 1 0 0 0 0 0 11 4 [-.---] 7 9 0 0 0 0 1 +6LoWPAN compression 6lowpan 6 6L 6Lo 6LoW BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 4 no 0 10 0 0 0 0 1 +Header [RFC8138]. header H He Hea Head BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 4 []. 3 2 0 0 0 0 1 +A.2. External a.2. A A. A.2 A.2. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 5 ..(-) 5 10 0 0 0 0 1 +The current the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 5 .... 4 9 0 0 0 0 1 +Though most though T Th Tho Thou BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 5 , 1 9 0 0 0 0 1 +6TiSCH has 6tisch 6 6T 6Ti 6TiS BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 5 ... 3 8 0 0 0 0 1 +evolution. The evolution. e ev evo evol BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 5 . 1 9 0 0 0 0 1 +be minimal be b be be be BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 5 -, 2 10 0 0 0 0 1 +may be may m ma may may BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 1 0 0 11 5 . 1 9 0 0 0 0 1 +synchronization and synchronization s sy syn sync BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 5 no 0 9 0 0 0 0 1 +demand it. demand d de dem dema BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 5 . 1 1 0 0 0 0 1 +Work is work W Wo Wor Work BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 8 (..) 4 10 0 0 0 0 1 +logically include logically l lo log logi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 8 . 1 9 0 0 0 0 1 +sublayer and sublayer s su sub subl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 8 no 0 10 0 0 0 0 1 +yet to yet y ye yet yet BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 8 . 1 2 0 0 0 0 1 +ISA100 [ISA100] isa100 I IS ISA ISA1 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 9 []() 4 9 0 0 0 0 1 +work of work w wo wor work BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 9 .,., 4 9 0 0 0 0 1 +defines a defines d de def defi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 9 no 0 10 0 0 0 0 1 +management of management m ma man mana BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 11 9 no 0 8 0 0 0 0 1 +protocols such protocols p pr pro prot BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 9 .[.], 5 8 0 0 0 0 1 +[WirelessHART], and [wirelesshart], [ [W [Wi [Wir BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 9 [],., 5 9 0 0 0 0 1 +6TiSCH Deterministic 6tisch 6 6T 6Ti 6TiS BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 9 ,,, 3 9 0 0 0 0 1 +ISA100.20 is isa100.20 I IS ISA ISA1 BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 9 .. 2 7 0 0 0 0 1 +Thubert Thubert thubert T Th Thu Thub BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 11 no 0 3 0 0 0 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 11 , 1 10 0 0 0 0 0 +[Page 69] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 11 [] 2 3 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 0 - 1 10 0 0 1 0 1 +6tisch-architecture 6tisch-architecture 6tisch-architecture 6 6t 6ti 6tis BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 0 - 1 10 0 0 1 0 1 +August 2019 august A Au Aug Augu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 11 0 no 0 6 0 0 0 0 1 +Author's Address author's A Au Aut Auth BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 1 ' 1 10 0 0 0 0 1 +Pascal Thubert pascal P Pa Pas Pasc BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 0 0 0 0 0 0 11 2 () 2 7 0 0 0 0 1 +Cisco Systems, cisco C Ci Cis Cisc BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 0 0 0 0 0 0 11 2 , 1 5 0 0 0 0 1 +Building D building B Bu Bui Buil BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 2 no 0 3 0 0 0 0 1 +45 Allee 45 4 45 45 45 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 0 0 0 0 0 0 0 0 11 2 - 1 8 0 0 0 0 1 +MOUGINS -Sophia mougins M MO MOU MOUG BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 11 2 - 1 10 0 0 0 0 1 +FRANCE FRANCE france F FR FRA FRAN BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 1 0 0 0 0 0 0 11 2 no 0 2 0 0 0 0 1 +Phone: +33 phone: P Ph Pho Phon BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 7 : 1 9 0 0 0 0 1 +Email: pthubert@cisco.com email: E Em Ema Emai BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 7 :. 2 10 0 0 0 0 1 +Thubert Thubert thubert T Th Thu Thub BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 9 no 0 3 0 0 0 0 0 +Expires February expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 9 , 1 10 0 0 0 0 0 +[Page 70] [page [ [P [Pa [Pag BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 9 [] 2 3 0 0 0 0 0 + diff --git a/grobid-trainer/resources/dataset/segmentation/sdo/ietf/corpus/raw/XP015134903.training.segmentation b/grobid-trainer/resources/dataset/segmentation/sdo/ietf/corpus/raw/XP015134903.training.segmentation new file mode 100644 index 0000000000..ae39eb1dab --- /dev/null +++ b/grobid-trainer/resources/dataset/segmentation/sdo/ietf/corpus/raw/XP015134903.training.segmentation @@ -0,0 +1,699 @@ +server date server s se ser serv BLOCKSTART PAGESTART NEWFONT HIGHERFONT 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 0 ; 1 10 0 0 0 0 0 +Open Authentication open O Op Ope Open BLOCKSTART PAGEIN NEWFONT HIGHERFONT 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 no 0 10 0 0 0 0 1 +T. Lodderstedt, t. T T. T. T. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 .,. 3 6 0 0 0 0 1 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 - 1 4 0 0 0 0 1 +yes.com AG yes.com y ye yes yes. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 0 . 1 3 0 0 0 0 1 +Intended status: intended I In Int Inte BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 : 1 10 0 0 0 0 1 +V. Dzhuvinov v. V V. V. V. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 . 1 3 0 0 0 0 1 +Expires: March expires: E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 :, 2 6 0 0 0 0 1 +Connect2id Ltd. connect2id C Co Con Conn BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 . 1 4 0 0 0 0 1 +Aug 29, aug A Au Aug Aug BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 0 0 , 1 3 0 0 0 0 1 +JWT Response jwt J JW JWT JWT BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 1 no 0 9 0 0 0 0 1 +draft-ietf-oauth-jwt-introspection-response-07 draft-ietf-oauth-jwt-introspection-response-07 draft-ietf-oauth-jwt-introspection-response-07 d dr dra draf BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 1 ------ 6 10 0 0 0 0 1 +Abstract Abstract abstract A Ab Abs Abst BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 2 no 0 10 0 0 0 0 1 +This draft this T Th Thi This BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 2 () 2 10 0 0 0 0 1 +for OAuth for f fo for for BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 2 .. 2 5 0 0 0 0 1 +Status of status S St Sta Stat BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 2 no 0 10 0 0 0 0 1 +This Internet-Draft this T Th Thi This BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 3 - 1 10 0 0 0 0 1 +provisions of provisions p pr pro prov BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 3 . 1 5 0 0 0 0 1 +Internet-Drafts are internet-drafts I In Int Inte BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 3 - 1 9 0 0 0 0 1 +Task Force task T Ta Tas Task BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 3 (). 3 9 0 0 0 0 1 +working documents working w wo wor work BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 3 -.- 3 10 0 0 0 0 1 +Drafts is drafts D Dr Dra Draf BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 3 ://..///. 9 8 0 0 0 0 1 +Internet-Drafts are internet-drafts I In Int Inte BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 5 - 1 10 0 0 0 0 1 +and may and a an and and BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 5 ,, 2 9 0 0 0 0 1 +time. It time. t ti tim time BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 5 .- 2 8 0 0 0 0 1 +material or material m ma mat mate BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 5 "." 3 8 0 0 0 0 1 +This Internet-Draft this T Th Thi This BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 7 -,. 3 10 0 0 0 0 1 +Copyright Notice copyright C Co Cop Copy BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 7 no 0 10 0 0 0 0 1 +Copyright (c) copyright C Co Cop Copy BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 7 () 2 10 0 0 0 0 1 +document authors. document d do doc docu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 7 .. 2 6 0 0 0 0 1 +This document this T Th Thi This BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 8 ' 1 8 0 0 0 0 1 +Provisions Relating provisions P Pr Pro Prov BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 8 no 0 5 0 0 0 0 1 +(https://trustee.ietf.org/license-info) in (https://trustee.ietf.org/license-info) ( (h (ht (htt BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 1 0 8 (://../-) 9 9 0 0 0 0 1 +publication of publication p pu pub publ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 8 . 1 8 0 0 0 0 1 +carefully, as carefully, c ca car care BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 8 , 1 10 0 0 0 0 1 +to this to t to to to BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 8 . 1 9 0 0 0 0 1 +include Simplified include i in inc incl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 8 . 1 9 0 0 0 0 1 +the Trust the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 8 no 0 9 0 0 0 0 1 +described in described d de des desc BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 8 . 1 5 0 0 0 0 1 +Lodderstedt & lodderstedt L Lo Lod Lodd BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 11 no 0 10 0 0 1 1 0 +Expires March expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 11 , 1 9 0 0 0 0 0 +[Page 1] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 11 [] 2 3 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 - 1 10 0 0 1 1 1 +JWT Response jwt J JW JWT JWT BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 no 0 10 0 0 1 1 1 +Aug 2019 aug A Au Aug Aug BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 0 0 no 0 6 0 0 0 0 1 +Table of table T Ta Tab Tabl BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 no 0 10 0 0 0 0 1 +1. Introduction 1. 1 1. 1. 1. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ......................... 25 9 0 0 0 0 1 +2 2 2 2 2 2 2 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 0 0 no 0 0 0 0 0 0 1 +1.1. Requirements 1.1. 1 1. 1.1 1.1. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ............ 12 9 0 0 0 0 1 +3 3 3 3 3 3 3 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 0 0 no 0 0 0 0 0 0 1 +2. Requesting 2. 2 2. 2. 2. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ................... 19 9 0 0 0 0 1 +3 3 3 3 3 3 3 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 0 0 no 0 0 0 0 0 0 1 +3. JWT 3. 3 3. 3. 3. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ......................... 25 9 0 0 0 0 1 +3 3 3 3 3 3 3 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 0 0 no 0 0 0 0 0 0 1 +4. Client 4. 4 4. 4. 4. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ........................ 24 9 0 0 0 0 1 +5 5 5 5 5 5 5 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 0 0 no 0 0 0 0 0 0 1 +5. Authorization 5. 5 5. 5. 5. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ................. 17 9 0 0 0 0 1 +5 5 5 5 5 5 5 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 0 0 no 0 0 0 0 0 0 1 +6. Security 6. 6 6. 6. 6. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 .................... 20 9 0 0 0 0 1 +6 6 6 6 6 6 6 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 0 0 no 0 0 0 0 0 0 1 +6.1. Cross-JWT 6.1. 6 6. 6.1 6.1. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ..-................... 22 9 0 0 0 0 1 +6 6 6 6 6 6 6 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 0 0 no 0 0 0 0 0 0 1 +6.2. Token 6.2. 6 6. 6.2 6.2. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ..................... 21 9 0 0 0 0 1 +7 7 7 7 7 7 7 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 0 0 no 0 0 0 0 0 0 1 +6.3. Keeping 6.3. 6 6. 6.3 6.3. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ..... 5 9 0 0 0 0 1 +7 7 7 7 7 7 7 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 0 0 no 0 0 0 0 0 0 1 +6.4. Logging 6.4. 6 6. 6.4 6.4. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ......... 9 9 0 0 0 0 1 +7 7 7 7 7 7 7 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 0 0 no 0 0 0 0 0 0 1 +6.5. Data 6.5. 6 6. 6.5 6.5. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ...................... 22 9 0 0 0 0 1 +7 7 7 7 7 7 7 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 0 0 no 0 0 0 0 0 0 1 +7. Acknowledgements 7. 7 7. 7. 7. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ....................... 23 9 0 0 0 0 1 +7 7 7 7 7 7 7 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 0 0 no 0 0 0 0 0 0 1 +8. IANA 8. 8 8. 8. 8. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ...................... 22 9 0 0 0 0 1 +8 8 8 8 8 8 8 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 0 0 no 0 0 0 0 0 0 1 +8.1. OAuth 8.1. 8 8. 8.1 8.1. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ... 3 9 0 0 0 0 1 +8 8 8 8 8 8 8 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 0 0 no 0 0 0 0 0 0 1 +8.1.1. Registry 8.1.1. 8 8. 8.1 8.1. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ..................... 21 8 0 0 0 0 1 +8 8 8 8 8 8 8 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 0 0 no 0 0 0 0 0 0 1 +8.2. OAuth 8.2. 8 8. 8.2 8.2. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ...... 6 9 0 0 0 0 1 +8 8 8 8 8 8 8 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 0 0 no 0 0 0 0 0 0 1 +8.2.1. Registry 8.2.1. 8 8. 8.2 8.2. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ..................... 21 8 0 0 0 0 1 +8 8 8 8 8 8 8 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 0 0 no 0 0 0 0 0 0 1 +8.3. OAuth 8.3. 8 8. 8.3 8.3. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ............. 13 9 0 0 0 0 1 +9 9 9 9 9 9 9 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 0 0 no 0 0 0 0 0 0 1 +8.3.1. Registry 8.3.1. 8 8. 8.3 8.3. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ..................... 21 8 0 0 0 0 1 +9 9 9 9 9 9 9 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 0 0 no 0 0 0 0 0 0 1 +9. References 9. 9 9. 9. 9. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 .......................... 26 9 0 0 0 0 1 +9.1. Normative 9.1. 9 9. 9.1 9.1. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 .................... 20 9 0 0 0 0 1 +9.2. Informative 9.2. 9 9. 9.2 9.2. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ................... 19 9 0 0 0 0 1 +Appendix A. appendix A Ap App Appe BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 ................... 19 10 0 0 0 0 1 +Authors' Addresses authors' A Au Aut Auth BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 '....................... 24 10 0 0 0 0 1 +1. Introduction 1. 1 1. 1. 1. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 9 . 1 10 0 0 0 0 1 +OAuth 2.0 oauth O OA OAu OAut BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 1 9 .[] 3 9 0 0 0 0 1 +protected resource protected p pr pro prot BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 9 . 1 9 0 0 0 0 1 +determine the determine d de det dete BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 9 no 0 10 0 0 0 0 1 +with the with w wi wit with BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 9 . 1 9 0 0 0 0 1 +identifier-based access identifier-based i id ide iden BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 9 -. 2 8 0 0 0 0 1 +The introspection the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 10 ,. 2 8 0 0 0 0 1 +Introspection [RFC7662], introspection I In Int Intr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 2 10 [],., 5 9 0 0 0 0 1 +use cases use u us use use BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 10 no 0 10 0 0 0 0 1 +the authorization the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 10 , 1 9 0 0 0 0 1 +where the where w wh whe wher BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 10 ' 1 9 0 0 0 0 1 +content. An content. c co con cont BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 10 . 1 9 0 0 0 0 1 +to create to t to to to BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 10 , 1 9 0 0 0 0 1 +electronic signatures. electronic e el ele elec BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 10 . 1 3 0 0 0 0 1 +In such in I In In In BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 2 11 no 0 9 0 0 0 0 1 +signed JWT signed s si sig sign BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 11 . 1 10 0 0 0 0 1 +Lodderstedt & lodderstedt L Lo Lod Lodd BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 2 11 no 0 10 0 0 1 0 0 +Expires March expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 11 , 1 9 0 0 0 0 0 +[Page 2] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 11 [] 2 3 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 2 0 - 1 10 0 0 1 0 1 +JWT Response jwt J JW JWT JWT BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 2 0 no 0 10 0 0 1 0 1 +Aug 2019 aug A Au Aug Aug BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 2 0 no 0 6 0 0 0 0 1 +the token the t th the the BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 0 no 0 10 0 0 0 0 1 +responses as responses r re res resp BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 0 . 1 3 0 0 0 0 1 +1.1. Requirements 1.1. 1 1. 1.1 1.1. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 0 .. 2 10 0 0 0 0 1 +The key the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 1 "","","","","", 15 9 0 0 0 0 1 +"SHOULD", "SHOULD "should", " "S "SH "SHO BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 2 1 "","","","","", 15 9 0 0 0 0 1 +"OPTIONAL" in "optional" " "O "OP "OPT BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 2 1 "" 2 10 0 0 0 0 1 +14 [RFC2119] 14 1 14 14 14 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 0 0 0 0 0 0 0 0 2 1 [][],, 6 9 0 0 0 0 1 +capitals, as capitals, c ca cap capi BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 1 ,. 2 3 0 0 0 0 1 +2. Requesting 2. 2 2. 2. 2. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 4 . 1 10 0 0 0 0 1 +A resource a A A A A BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 1 0 0 0 0 0 2 4 no 0 10 0 0 0 0 1 +including an including i in inc incl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 4 "/" 3 10 0 0 0 0 1 +introspection request. introspection i in int intr BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 4 . 1 3 0 0 0 0 1 +The following the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 5 -: 2 10 0 0 0 0 1 +POST /introspect post P PO POS POST BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 1 1 0 0 0 0 0 2 6 //. 3 5 0 0 0 0 1 +Host: server.example.com host: H Ho Hos Host BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 6 :.. 3 5 0 0 0 0 1 +Accept: application/jwt accept: A Ac Acc Acce BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 6 :/ 2 5 0 0 0 0 1 +Content-Type: application/x-www-form-urlencoded content-type: C Co Con Cont BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 6 -:/--- 6 10 0 0 0 0 1 +token=2YotnFZFEjr1zCsicMWpAA token=2YotnFZFEjr1zCsicMWpAA token=2yotnfzfejr1zcsicmwpaa t to tok toke BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 7 no 0 10 0 0 0 0 1 +3. JWT 3. 3 3. 3. 3. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 7 . 1 10 0 0 0 0 1 +The introspection the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 7 ,- 2 10 0 0 0 0 1 +Type header type T Ty Typ Type BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 7 "/". 4 5 0 0 0 0 1 +This JWT this T Th Thi This BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 8 """" 4 10 0 0 0 0 1 +misuse of misuse m mi mis misu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 8 (.). 4 8 0 0 0 0 1 +This JWT this T Th Thi This BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 9 " 1 10 0 0 0 0 1 +Token Introspection token T To Tok Toke BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 9 "[]. 4 9 0 0 0 0 1 +The following the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 10 -( 2 10 0 0 0 0 1 +for display for f fo for for BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 10 ): 2 4 0 0 0 0 1 +Lodderstedt & lodderstedt L Lo Lod Lodd BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 2 11 no 0 10 0 0 1 0 0 +Expires March expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 11 , 1 9 0 0 0 0 0 +[Page 3] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 11 [] 2 3 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 2 0 - 1 10 0 0 1 0 1 +JWT Response jwt J JW JWT JWT BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 2 0 no 0 10 0 0 1 0 1 +Aug 2019 aug A Au Aug Aug BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 2 0 no 0 6 0 0 0 0 1 +HTTP/1.1 200 http/1.1 H HT HTT HTTP BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 0 /. 2 5 0 0 0 0 1 +Content-Type: application/jwt content-type: C Co Con Cont BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 0 -:/ 3 10 0 0 0 0 1 +eyJraWQiOiIxIiwiYWxnIjoiUlMyNTYifQ.eyJzdWIiOiJaNU8zdXBQQzg4UXJBa eyJraWQiOiIxIiwiYWxnIjoiUlMyNTYifQ.eyJzdWIiOiJaNU8zdXBQQzg4UXJBa eyjrawqioiixiiwiywxnijoiulmyntyifq.eyjzdwiioijanu8zdxbqqzg4uxjba e ey eyJ eyJr BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 0 . 1 10 0 0 0 0 1 +ngwMGRpcyIsImF1ZCI6Imh0dHBzOlwvXC9wcm90ZWN0ZWQuZXhhbXBsZS5uZXRcL ngwMGRpcyIsImF1ZCI6Imh0dHBzOlwvXC9wcm90ZWN0ZWQuZXhhbXBsZS5uZXRcL ngwmgrpcyisimf1zci6imh0dhbzolwvxc9wcm90zwn0zwquzxhhbxbszs5uzxrcl n ng ngw ngwM BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 0 no 0 10 0 0 0 0 1 +3Jlc291cmNlIiwiZXh0ZW5zaW9uX2ZpZWxkIjoidHdlbnR5LXNldmVuIiwic2Nvc 3Jlc291cmNlIiwiZXh0ZW5zaW9uX2ZpZWxkIjoidHdlbnR5LXNldmVuIiwic2Nvc 3jlc291cmnliiwizxh0zw5zaw9ux2zpzwxkijoidhdlbnr5lxnldmvuiiwic2nvc 3 3J 3Jl 3Jlc BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 0 no 0 10 0 0 0 0 1 +GUiOiJyZWFkIHdyaXRlIGRvbHBoaW4iLCJpc3MiOiJodHRwczpcL1wvc2VydmVyL GUiOiJyZWFkIHdyaXRlIGRvbHBoaW4iLCJpc3MiOiJodHRwczpcL1wvc2VydmVyL guioijyzwfkihdyaxrligrvbhboaw4ilcjpc3mioijodhrwczpcl1wvc2vydmvyl G GU GUi GUiO BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 0 no 0 10 0 0 0 0 1 +mV4YW1wbGUuY29tXC8iLCJhY3RpdmUiOnRydWUsImV4cCI6MTQxOTM1NjIzOCwia mV4YW1wbGUuY29tXC8iLCJhY3RpdmUiOnRydWUsImV4cCI6MTQxOTM1NjIzOCwia mv4yw1wbguuy29txc8ilcjhy3rpdmuionrydwusimv4cci6mtqxotm1njizocwia m mV mV4 mV4Y BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 0 no 0 10 0 0 0 0 1 +WF0IjoxNDE5MzUwMjM4LCJjbGllbnRfaWQiOiJsMjM4ajMyM2RzLTIzaWo0Iiwid WF0IjoxNDE5MzUwMjM4LCJjbGllbnRfaWQiOiJsMjM4ajMyM2RzLTIzaWo0Iiwid wf0ijoxnde5mzuwmjm4lcjjbgllbnrfawqioijsmjm4ajmym2rzltizawo0iiwid W WF WF0 WF0I BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 0 no 0 10 0 0 0 0 1 +XNlcm5hbWUiOiJqZG9lIn0.HEQHf05vqVvWVnWuEjbzUnPz6JDQVR69QkxgzBNq5 XNlcm5hbWUiOiJqZG9lIn0.HEQHf05vqVvWVnWuEjbzUnPz6JDQVR69QkxgzBNq5 xnlcm5hbwuioijqzg9lin0.heqhf05vqvvwvnwuejbzunpz6jdqvr69qkxgzbnq5 X XN XNl XNlc BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 0 . 1 10 0 0 0 0 1 +kk-sK54ieg1STazXGsdFAT8nUhiiV1f_Z4HOKNnBs8TLKaFXokhA0MqNBOYI--2u kk-sK54ieg1STazXGsdFAT8nUhiiV1f_Z4HOKNnBs8TLKaFXokhA0MqNBOYI--2u kk-sk54ieg1stazxgsdfat8nuhiiv1f_z4hoknnbs8tlkafxokha0mqnboyi--2u k kk kk- kk-s BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 0 --- 3 10 0 0 0 0 1 +nVHDqI_RPmC3p0NmP02Xmv4hzxFmTmpgjSy3vpKQDihOjhwNBh7G81JNaJqjJQTR nVHDqI_RPmC3p0NmP02Xmv4hzxFmTmpgjSy3vpKQDihOjhwNBh7G81JNaJqjJQTR nvhdqi_rpmc3p0nmp02xmv4hzxfmtmpgjsy3vpkqdihojhwnbh7g81jnajqjjqtr n nV nVH nVHD BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 0 no 0 10 0 0 0 0 1 +v_1dHUPJotQjMK3k8_5FyiO2p64Y2VyxyQn1VWVlgOHlJwhj6BaGHk4Qf5F8DHQZ v_1dHUPJotQjMK3k8_5FyiO2p64Y2VyxyQn1VWVlgOHlJwhj6BaGHk4Qf5F8DHQZ v_1dhupjotqjmk3k8_5fyio2p64y2vyxyqn1vwvlgohljwhj6baghk4qf5f8dhqz v v_ v_1 v_1d BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 0 no 0 10 0 0 0 0 1 +1WCPg2p_-hwfINfXh1_buSjxyDRF4oe9pKy6ZB3ejh9qIMm-WrwltuU1uWMXxN6e 1WCPg2p_-hwfINfXh1_buSjxyDRF4oe9pKy6ZB3ejh9qIMm-WrwltuU1uWMXxN6e 1wcpg2p_-hwfinfxh1_busjxydrf4oe9pky6zb3ejh9qimm-wrwltuu1uwmxxn6e 1 1W 1WC 1WCP BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 0 -- 2 10 0 0 0 0 1 +S6tUtpKo8UCHBwLWCHmJN7KU6ZojmaISspdS23lELAlyw S6tUtpKo8UCHBwLWCHmJN7KU6ZojmaISspdS23lELAlyw s6tutpko8uchbwlwchmjn7ku6zojmaisspds23lelalyw S S6 S6t S6tU BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 0 no 0 7 0 0 0 0 1 +The example the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 2 : 1 10 0 0 0 0 1 +{ { { { { { { BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 2 no 0 0 0 0 0 0 1 +"sub": "Z5O3upPC88QrAjx00dis", "sub": " "s "su "sub BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 2 "":"", 6 6 0 0 0 0 1 +"aud": "https://protected.example.net/resource", "aud": " "a "au "aud BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 2 "":"://../", 12 10 0 0 0 0 1 +"scope": "read "scope": " "s "sc "sco BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 2 "":"", 6 6 0 0 0 0 1 +"iss": "https://server.example.com/", "iss": " "i "is "iss BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 2 "":"://../", 12 7 0 0 0 0 1 +"active": true, "active": " "a "ac "act BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 2 "":, 4 3 0 0 0 0 1 +"exp": 1419356238, "exp": " "e "ex "exp BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 2 "":, 4 3 0 0 0 0 1 +"iat": 1419350238, "iat": " "i "ia "iat BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 2 "":, 4 3 0 0 0 0 1 +"client_id": "l238j323ds-23ij4", "client_id": " "c "cl "cli BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 2 "":"-", 7 6 0 0 0 0 1 +"given_name": "John", "given_name": " "g "gi "giv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 2 "":"", 6 4 0 0 0 0 1 +"family_name":"Doe", "family_name":"Doe", "family_name":"doe", " "f "fa "fam BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 2 "":"", 6 4 0 0 0 0 1 +"birthdate":"1982-02-01" "birthdate":"1982-02-01" "birthdate":"1982-02-01" " "b "bi "bir BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 1 0 0 0 2 2 "":"--" 7 5 0 0 0 0 1 +} } } } } } } BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 2 no 0 0 0 0 0 0 1 +Depending on depending D De Dep Depe BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 6 no 0 9 0 0 0 0 1 +signed, or signed, s si sig sign BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 6 ,. 2 10 0 0 0 0 1 +it MUST it i it it it BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 6 ,[]. 4 7 0 0 0 0 1 +Note: If note: N No Not Note BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 7 : 1 9 0 0 0 0 1 +response and response r re res resp BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 7 no 0 9 0 0 0 0 1 +request containing request r re req requ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 7 no 0 9 0 0 0 0 1 +"application/jwt", it "application/jwt", " "a "ap "app BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 7 "/", 4 10 0 0 0 0 1 +HTTP status http H HT HTT HTTP BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 3 7 . 1 10 0 0 0 0 1 +obtain token obtain o ob obt obta BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 7 no 0 10 0 0 0 0 1 +(see Section (see ( (s (se (see BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 7 (.). 4 2 0 0 0 0 1 +Lodderstedt & lodderstedt L Lo Lod Lodd BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 3 11 no 0 10 0 0 1 0 0 +Expires March expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 11 , 1 9 0 0 0 0 0 +[Page 4] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 11 [] 2 3 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 3 0 - 1 10 0 0 1 0 1 +JWT Response jwt J JW JWT JWT BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 3 0 no 0 10 0 0 1 0 1 +Aug 2019 aug A Au Aug Aug BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 3 0 no 0 6 0 0 0 0 1 +4. Client 4. 4 4. 4. 4. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 3 0 . 1 10 0 0 0 0 1 +The authorization the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 0 no 0 9 0 0 0 0 1 +secure the secure s se sec secu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 0 . 1 9 0 0 0 0 1 +decision can decision d de dec deci BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 0 no 0 9 0 0 0 0 1 +resource server, resource r re res reso BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 0 , 1 10 0 0 0 0 1 +resource server resource r re res reso BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 0 ,. 2 9 0 0 0 0 1 +The parameter the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 2 no 0 10 0 0 0 0 1 +Dynamic Client dynamic D Dy Dyn Dyna BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 2 [.] 3 9 0 0 0 0 1 +signing and signing s si sig sign BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 2 no 0 9 0 0 0 0 1 +endpoint. endpoint. endpoint. e en end endp BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 2 . 1 1 0 0 0 0 1 +The following the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 3 no 0 10 0 0 0 0 1 +specification: specification: specification: s sp spe spec BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 3 : 1 2 0 0 0 0 1 +introspection_signed_response_alg OPTIONAL. introspection_signed_response_alg i in int intr BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 3 .[] 3 10 0 0 0 0 1 +("alg" value) ("alg" ( (" ("a ("al BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 3 ("")[] 6 7 0 0 0 0 1 +introspection responses. introspection i in int intr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 3 ., 2 8 0 0 0 0 1 +will be will w wi wil will BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 3 3 . 1 8 0 0 0 0 1 +default, if default, d de def defa BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 3 ,,"". 5 4 0 0 0 0 1 +introspection_encrypted_response_alg OPTIONAL. introspection_encrypted_response_alg i in int intr BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 5 .[] 3 9 0 0 0 0 1 +algorithm ("alg" algorithm a al alg algo BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 5 ("")[] 6 9 0 0 0 0 1 +encrypting introspection encrypting e en enc encr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 5 ., 2 9 0 0 0 0 1 +the response the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 5 no 0 9 0 0 0 0 1 +algorithm. The algorithm. a al alg algo BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 5 .,, 3 9 0 0 0 0 1 +performed. If performed. p pe per perf BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 5 ., 2 9 0 0 0 0 1 +response will response r re res resp BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 5 , 1 10 0 0 0 0 1 +a Nested a a a a a BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 1 0 0 0 0 0 3 5 ,[]. 4 6 0 0 0 0 1 +introspection_encrypted_response_enc OPTIONAL. introspection_encrypted_response_enc i in int intr BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 8 .[] 3 10 0 0 0 0 1 +algorithm ("enc" algorithm a al alg algo BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 8 ("")[] 6 9 0 0 0 0 1 +authenticated encryption authenticated a au aut auth BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 8 . 1 9 0 0 0 0 1 +default, if default, d de def defa BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 8 ,,"-".: 7 8 0 0 0 0 1 +parameter MUST parameter p pa par para BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 8 no 0 7 0 0 0 0 1 +"introspection_encrypted_response_alg". "introspection_encrypted_response_alg". "introspection_encrypted_response_alg". " "i "in "int BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 8 "". 3 6 0 0 0 0 1 +Resource servers resource R Re Res Reso BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 9 no 0 10 0 0 0 0 1 +"jwks_uri" or "jwks_uri" " "j "jw "jwk BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 9 """". 5 6 0 0 0 0 1 +5. Authorization 5. 5 5. 5. 5. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 3 10 . 1 10 0 0 0 0 1 +Authorization servers authorization A Au Aut Auth BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 10 no 0 10 0 0 0 0 1 +signing and signing s si sig sign BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 10 no 0 9 0 0 0 0 1 +utilizing OAuth utilizing u ut uti util BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 10 .[] 3 9 0 0 0 0 1 +parameters. parameters. parameters. p pa par para BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 10 . 1 1 0 0 0 0 1 +Lodderstedt & lodderstedt L Lo Lod Lodd BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 3 11 no 0 10 0 0 1 0 0 +Expires March expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 11 , 1 9 0 0 0 0 0 +[Page 5] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 11 [] 2 3 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 4 0 - 1 10 0 0 1 0 1 +JWT Response jwt J JW JWT JWT BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 4 0 no 0 10 0 0 1 0 1 +Aug 2019 aug A Au Aug Aug BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 4 0 no 0 6 0 0 0 0 1 +The following the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 0 : 1 10 0 0 0 0 1 +introspection_signing_alg_values_supported OPTIONAL. introspection_signing_alg_values_supported i in int intr BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 0 . 1 10 0 0 0 0 1 +containing a containing c co con cont BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 0 [] 2 9 0 0 0 0 1 +("alg" values) ("alg" ( (" ("a ("al BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 0 ("")[] 6 9 0 0 0 0 1 +introspection endpoint introspection i in int intr BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 0 . 1 7 0 0 0 0 1 +introspection_encryption_alg_values_supported OPTIONAL. introspection_encryption_alg_values_supported i in int intr BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 1 . 1 10 0 0 0 0 1 +containing a containing c co con cont BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 1 [] 2 9 0 0 0 0 1 +("alg" values) ("alg" ( (" ("a ("al BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 1 ("")[] 6 8 0 0 0 0 1 +introspection endpoint introspection i in int intr BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 1 . 1 7 0 0 0 0 1 +introspection_encryption_enc_values_supported OPTIONAL. introspection_encryption_enc_values_supported i in int intr BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 2 . 1 10 0 0 0 0 1 +containing a containing c co con cont BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 2 [] 2 9 0 0 0 0 1 +("enc" values) ("enc" ( (" ("e ("en BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 2 ("")[] 6 8 0 0 0 0 1 +introspection endpoint introspection i in int intr BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 2 . 1 7 0 0 0 0 1 +6. Security 6. 6 6. 6. 6. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 4 4 . 1 10 0 0 0 0 1 +6.1. Cross-JWT 6.1. 6 6. 6.1 6.1. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 4 4 ..- 3 10 0 0 0 0 1 +JWT introspection jwt J JW JWT JWT BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 4 4 no 0 8 0 0 0 0 1 +syntactically similar. syntactically s sy syn synt BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 4 . 1 8 0 0 0 0 1 +impersonate an impersonate i im imp impe BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 4 - 1 10 0 0 0 0 1 +the JWT the t th the the BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 4 . 1 3 0 0 0 0 1 +Such an such S Su Suc Such BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 5 no 0 9 0 0 0 0 1 +attack. The attack. a at att atta BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 5 ."" 3 9 0 0 0 0 1 +"aud" in "aud" " "a "au "aud BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 5 "","" 5 10 0 0 0 0 1 +the authorization the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 5 '"" 3 9 0 0 0 0 1 +resource server's resource r re res reso BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 5 '. 2 9 0 0 0 0 1 +OpenID Connect openid O Op Ope Open BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 4 5 no 0 9 0 0 0 0 1 +"iss" and "iss" " "i "is "iss BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 5 """".... 8 8 0 0 0 0 1 +[OpenID.Core]. Relying [openid.core]. [ [O [Op [Ope BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 5 [.]."" 6 9 0 0 0 0 1 +parameter and parameter p pa par para BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 5 . 1 7 0 0 0 0 1 +Resource servers resource R Re Res Reso BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 9 - 1 10 0 0 0 0 1 +tokens could tokens t to tok toke BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 9 . 1 9 0 0 0 0 1 +should therefore should s sh sho shou BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 9 no 0 9 0 0 0 0 1 +described in described d de des desc BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 9 [-.---],.. 10 8 0 0 0 0 1 +JWT Confusion jwt J JW JWT JWT BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 4 10 no 0 10 0 0 0 0 1 +[I-D.ietf-oauth-jwt-bcp]. [I-D.ietf-oauth-jwt-bcp]. [i-d.ietf-oauth-jwt-bcp]. [ [I [I- [I-D BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 10 [-.---]. 8 4 0 0 0 0 1 +Lodderstedt & lodderstedt L Lo Lod Lodd BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 4 11 no 0 10 0 0 1 0 0 +Expires March expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 11 , 1 9 0 0 0 0 0 +[Page 6] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 11 [] 2 3 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 4 0 - 1 10 0 0 1 0 1 +JWT Response jwt J JW JWT JWT BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 4 0 no 0 10 0 0 1 0 1 +Aug 2019 aug A Au Aug Aug BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 4 0 no 0 6 0 0 0 0 1 +6.2. Token 6.2. 6 6. 6.2 6.2. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 4 0 .. 2 10 0 0 0 0 1 +The authorization the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 0 (). 3 10 0 0 0 0 1 +(or higher) (or ( (o (or (or BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 0 ()[]. 5 9 0 0 0 0 1 +To prevent to T To To To BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 1 no 0 8 0 0 0 0 1 +additional security additional a ad add addi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 1 no 0 8 0 0 0 0 1 +authorization server authorization a au aut auth BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 1 no 0 8 0 0 0 0 1 +introspection endpoint introspection i in int intr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 1 . 1 9 0 0 0 0 1 +an addition an a an an an BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 4 1 , 1 10 0 0 0 0 1 +up for up u up up up BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 1 . 1 4 0 0 0 0 1 +In the in I In In In BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 4 3 , 1 9 0 0 0 0 1 +the legitimate the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 3 . 1 8 0 0 0 0 1 +attacker could attacker a at att atta BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 3 no 0 9 0 0 0 0 1 +JSON response, json J JS JSO JSON BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 4 3 ,, 2 9 0 0 0 0 1 +for example, for f fo for for BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 3 ,"/""/". 8 9 0 0 0 0 1 +prevent this prevent p pr pre prev BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 3 no 0 9 0 0 0 0 1 +with content with w wi wit with BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 3 "/" 3 10 0 0 0 0 1 +is set is i is is is BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 3 (). 3 9 0 0 0 0 1 +6.3. Keeping 6.3. 6 6. 6.3 6.3. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 6 .. 2 10 0 0 0 0 1 +Authorization servers authorization A Au Aut Auth BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 6 no 0 9 0 0 0 0 1 +kept confidential kept k ke kep kept BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 6 no 0 10 0 0 0 0 1 +token introspection token t to tok toke BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 6 . 1 9 0 0 0 0 1 +or as or o or or or BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 6 , 1 9 0 0 0 0 1 +be set be b be be be BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 6 . 1 5 0 0 0 0 1 +6.4. Logging 6.4. 6 6. 6.4 6.4. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 8 .. 2 10 0 0 0 0 1 +Authorization servers authorization A Au Aut Auth BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 8 no 0 10 0 0 0 0 1 +activity to activity a ac act acti BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 8 no 0 9 0 0 0 0 1 +token introspection token t to tok toke BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 8 . 1 7 0 0 0 0 1 +6.5. Data 6.5. 6 6. 6.5 6.5. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 9 .. 2 10 0 0 0 0 1 +The authorisation the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 9 no 0 10 0 0 0 0 1 +is allowed is i is is is BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 9 ' 1 9 0 0 0 0 1 +suitable token suitable s su sui suit BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 9 ,... 4 6 0 0 0 0 1 +7. Acknowledgements 7. 7 7. 7. 7. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 10 . 1 10 0 0 0 0 1 +We would we W We We We BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 10 ,,, 3 10 0 0 0 0 1 +and Tony and a an and and BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 10 . 1 6 0 0 0 0 1 +Lodderstedt & lodderstedt L Lo Lod Lodd BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 5 11 no 0 10 0 0 1 0 0 +Expires March expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 11 , 1 9 0 0 0 0 0 +[Page 7] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 11 [] 2 3 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 5 0 - 1 10 0 0 1 0 1 +JWT Response jwt J JW JWT JWT BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 5 0 no 0 10 0 0 1 0 1 +Aug 2019 aug A Au Aug Aug BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 5 0 no 0 6 0 0 0 0 1 +8. IANA 8. 8 8. 8. 8. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 0 . 1 10 0 0 0 0 1 +8.1. OAuth 8.1. 8 8. 8.1 8.1. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 0 .. 2 10 0 0 0 0 1 +This specification this T Th Thi This BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 1 no 0 9 0 0 0 0 1 +metadata definitions metadata m me met meta BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 1 " 1 9 0 0 0 0 1 +Metadata" registry metadata" M Me Met Meta BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 5 1 "[..][]: 8 10 0 0 0 0 1 +8.1.1. Registry 8.1.1. 8 8. 8.1 8.1. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 2 ... 3 10 0 0 0 0 1 +o Client o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 5 2 :"" 3 10 0 0 0 0 1 +o Client o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 5 3 :' 2 10 0 0 0 0 1 +desired introspection desired d de des desi BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 3 . 1 7 0 0 0 0 1 +o Change o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 5 3 : 1 10 0 0 0 0 1 +o Specification o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 5 4 ():[[]] 7 10 0 0 0 0 1 +o Client o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 5 4 :"" 3 10 0 0 0 0 1 +o Client o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 5 5 : 1 10 0 0 0 0 1 +introspection response introspection i in int intr BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 5 (). 3 8 0 0 0 0 1 +o Change o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 5 6 : 1 10 0 0 0 0 1 +o Specification o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 5 6 ():[[]] 7 10 0 0 0 0 1 +o Client o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 5 6 :"" 3 10 0 0 0 0 1 +o Client o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 5 7 : 1 10 0 0 0 0 1 +introspection response introspection i in int intr BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 7 (). 3 8 0 0 0 0 1 +o Change o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 5 8 : 1 10 0 0 0 0 1 +o Specification o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 5 8 ():[[]] 7 10 0 0 0 0 1 +8.2. OAuth 8.2. 8 8. 8.2 8.2. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 9 .. 2 10 0 0 0 0 1 +This specification this T Th Thi This BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 9 no 0 10 0 0 0 0 1 +the IANA the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 9 "" 2 8 0 0 0 0 1 +[IANA.OAuth.Parameters] established [iana.oauth.parameters] [ [I [IA [IAN BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 9 [..][]. 7 7 0 0 0 0 1 +8.2.1. Registry 8.2.1. 8 8. 8.2 8.2. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 10 ... 3 10 0 0 0 0 1 +o Metadata o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 5 11 :"" 3 10 0 0 0 0 1 +Lodderstedt & lodderstedt L Lo Lod Lodd BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 5 11 no 0 10 0 0 1 0 0 +Expires March expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 11 , 1 9 0 0 0 0 0 +[Page 8] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 11 [] 2 3 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 6 0 - 1 10 0 0 1 0 1 +JWT Response jwt J JW JWT JWT BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 6 0 no 0 10 0 0 1 0 1 +Aug 2019 aug A Au Aug Aug BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 6 0 no 0 6 0 0 0 0 1 +o Metadata o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 6 0 : 1 10 0 0 0 0 1 +supported by supported s su sup supp BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 0 no 0 9 0 0 0 0 1 +signing. signing. signing. s si sig sign BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 0 . 1 1 0 0 0 0 1 +o Change o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 6 1 : 1 10 0 0 0 0 1 +o Specification o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 6 1 ():[[]] 7 10 0 0 0 0 1 +o Metadata o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 6 2 :"" 3 10 0 0 0 0 1 +o Metadata o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 6 2 : 1 10 0 0 0 0 1 +supported by supported s su sup supp BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 2 no 0 9 0 0 0 0 1 +encryption (alg encryption e en enc encr BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 2 (). 3 3 0 0 0 0 1 +o Change o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 6 3 : 1 10 0 0 0 0 1 +o Specification o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 6 3 ():[[]] 7 10 0 0 0 0 1 +o Metadata o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 6 4 :"" 3 10 0 0 0 0 1 +o Metadata o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 6 4 : 1 10 0 0 0 0 1 +supported by supported s su sup supp BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 4 no 0 9 0 0 0 0 1 +encryption (enc encryption e en enc encr BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 4 (). 3 3 0 0 0 0 1 +o Change o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 6 5 : 1 10 0 0 0 0 1 +o Specification o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 6 5 ():[[]] 7 10 0 0 0 0 1 +8.3. OAuth 8.3. 8 8. 8.3 8.3. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 6 .. 2 10 0 0 0 0 1 +This specification this T Th Thi This BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 6 no 0 9 0 0 0 0 1 +values as values v va val valu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 6 [.],.," 7 10 0 0 0 0 1 +Token Introspection token T To Tok Toke BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 6 ".[..] 6 9 0 0 0 0 1 +established by established e es est esta BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 6 []. 3 3 0 0 0 0 1 +8.3.1. Registry 8.3.1. 8 8. 8.3 8.3. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 8 ... 3 10 0 0 0 0 1 +o Name: o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 6 8 :"" 3 10 0 0 0 0 1 +o Description: o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 6 9 :-' 3 10 0 0 0 0 1 +all name all a al all all BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 9 ,, 2 9 0 0 0 0 1 +according to according a ac acc acco BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 9 -'. 3 7 0 0 0 0 1 +o Change o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 6 10 : 1 10 0 0 0 0 1 +o Specification o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 6 10 ():[.],. 8 10 0 0 0 0 1 +o Name: o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 6 11 :"" 3 10 0 0 0 0 1 +Lodderstedt & lodderstedt L Lo Lod Lodd BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 6 11 no 0 10 0 0 1 0 0 +Expires March expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 11 , 1 9 0 0 0 0 0 +[Page 9] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 11 [] 2 3 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 6 0 - 1 10 0 0 1 0 1 +JWT Response jwt J JW JWT JWT BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 6 0 no 0 10 0 0 1 0 1 +Aug 2019 aug A Au Aug Aug BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 6 0 no 0 6 0 0 0 0 1 +o Description: o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 6 0 :()()-. 7 10 0 0 0 0 1 +that in that t th tha that BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 0 ,; 2 9 0 0 0 0 1 +can be can c ca can can BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 0 , 1 8 0 0 0 0 1 +characters. characters. characters. c ch cha char BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 0 . 1 1 0 0 0 0 1 +o Change o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 6 1 : 1 10 0 0 0 0 1 +o Specification o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 6 2 ():[.],. 8 10 0 0 0 0 1 +o Name: o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 6 2 :"" 3 10 0 0 0 0 1 +o Description: o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 6 2 :()()-. 7 9 0 0 0 0 1 +that in that t th tha that BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 2 , 1 10 0 0 0 0 1 +family name; family f fa fam fami BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 2 ;, 2 10 0 0 0 0 1 +space characters. space s sp spa spac BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 2 . 1 2 0 0 0 0 1 +o Change o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 6 4 : 1 10 0 0 0 0 1 +o Specification o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 6 4 ():[.],. 8 10 0 0 0 0 1 +o Name: o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 6 4 :"" 3 10 0 0 0 0 1 +o Description: o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 6 5 :()-. 5 9 0 0 0 0 1 +cultures, people cultures, c cu cul cult BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 5 ,; 2 9 0 0 0 0 1 +present, with present, p pr pre pres BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 5 ,. 2 10 0 0 0 0 1 +note that note n no not note BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 5 ,. 2 8 0 0 0 0 1 +o Change o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 6 6 : 1 10 0 0 0 0 1 +o Specification o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 6 7 ():[.],. 8 10 0 0 0 0 1 +o Name: o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 6 7 :"" 3 10 0 0 0 0 1 +o Description: o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 6 7 :- 2 10 0 0 0 0 1 +the same the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 7 ., 2 9 0 0 0 0 1 +Mike might mike M Mi Mik Mike BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 6 7 . 1 9 0 0 0 0 1 +o Change o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 7 9 : 1 10 0 0 0 0 1 +o Specification o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 7 9 ():[.],. 8 10 0 0 0 0 1 +o Name: o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 7 9 :"" 3 10 0 0 0 0 1 +o Description: o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 7 9 :- 2 10 0 0 0 0 1 +referred to referred r re ref refe BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 9 ,.. 3 9 0 0 0 0 1 +be any be b be be be BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 9 , 1 10 0 0 0 0 1 +/, or /, / /, /, /, BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 7 9 /,. 3 2 0 0 0 0 1 +Lodderstedt & lodderstedt L Lo Lod Lodd BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 7 11 no 0 10 0 0 1 0 0 +Expires March expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 11 , 1 9 0 0 0 0 0 +[Page 10] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 7 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 7 0 - 1 10 0 0 1 0 1 +JWT Response jwt J JW JWT JWT BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 7 0 no 0 10 0 0 1 0 1 +Aug 2019 aug A Au Aug Aug BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 7 0 no 0 6 0 0 0 0 1 +o Change o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 7 0 : 1 10 0 0 0 0 1 +o Specification o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 7 0 ():[.],. 8 10 0 0 0 0 1 +o Name: o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 7 1 :"" 3 10 0 0 0 0 1 +o Description:URL o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 7 1 :-'. 4 10 0 0 0 0 1 +this Web this t th thi this BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 1 -. 2 6 0 0 0 0 1 +o Change o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 7 2 : 1 10 0 0 0 0 1 +o Specification o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 7 2 ():[.],. 8 10 0 0 0 0 1 +o Name: o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 7 2 :"" 3 10 0 0 0 0 1 +o Description: o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 7 3 :-'. 4 10 0 0 0 0 1 +refer to refer r re ref refe BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 3 (,,, 4 9 0 0 0 0 1 +file), rather file), f fi fil file BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 7 3 ),. 3 9 0 0 0 0 1 +this URL this t th thi this BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 3 - 1 9 0 0 0 0 1 +User suitable user U Us Use User BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 7 3 -, 2 9 0 0 0 0 1 +than an than t th tha than BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 3 -. 2 6 0 0 0 0 1 +o Change o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 7 6 : 1 10 0 0 0 0 1 +o Specification o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 7 6 ():[.],. 8 10 0 0 0 0 1 +o Name: o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 7 6 :"" 3 10 0 0 0 0 1 +o Description: o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 7 7 :-'. 4 10 0 0 0 0 1 +page SHOULD page p pa pag page BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 7 7 - 1 10 0 0 0 0 1 +organization that organization o or org orga BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 7 7 -. 2 7 0 0 0 0 1 +o Change o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 7 8 : 1 10 0 0 0 0 1 +o Specification o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 7 8 ():[.],. 8 10 0 0 0 0 1 +o Name: o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 7 9 :"" 3 10 0 0 0 0 1 +o Description: o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 7 9 :-'-. 5 10 0 0 0 0 1 +conform to conform c co con conf BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 9 []"-". 6 6 0 0 0 0 1 +o Change o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 7 10 : 1 10 0 0 0 0 1 +o Specification o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 7 10 ():[.],. 8 10 0 0 0 0 1 +o Name: o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 7 11 :"" 3 10 0 0 0 0 1 +Lodderstedt & lodderstedt L Lo Lod Lodd BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 7 11 no 0 10 0 0 1 0 0 +Expires March expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 11 , 1 9 0 0 0 0 0 +[Page 11] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 7 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 7 0 - 1 10 0 0 1 0 1 +JWT Response jwt J JW JWT JWT BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 7 0 no 0 10 0 0 1 0 1 +Aug 2019 aug A Au Aug Aug BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 7 0 no 0 6 0 0 0 0 1 +o Description: o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 7 0 :-'- 4 9 0 0 0 0 1 +verified; otherwise verified; v ve ver veri BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 0 ;., 3 9 0 0 0 0 1 +means that means m me mea mean BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 7 0 no 0 9 0 0 0 0 1 +e-mail address e-mail e e- e-m e-ma BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 7 0 -- 2 9 0 0 0 0 1 +verification was verification v ve ver veri BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 7 0 .- 2 10 0 0 0 0 1 +is verified is i is is is BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 0 -, 2 9 0 0 0 0 1 +framework or framework f fr fra fram BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 0 no 0 10 0 0 0 0 1 +operating. operating. operating. o op ope oper BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 0 . 1 1 0 0 0 0 1 +o Change o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 8 3 : 1 10 0 0 0 0 1 +o Specification o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 8 3 ():[.],. 8 10 0 0 0 0 1 +o Name: o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 8 3 :"" 3 10 0 0 0 0 1 +o Description:End-User's o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 8 4 :-'. 4 8 0 0 0 0 1 +specification are specification s sp spe spec BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 4 . 1 10 0 0 0 0 1 +neither of neither n ne nei neit BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 4 . 1 7 0 0 0 0 1 +o Change o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 8 5 : 1 10 0 0 0 0 1 +o Specification o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 8 5 ():[.],. 8 10 0 0 0 0 1 +o Name: o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 8 5 :"" 3 10 0 0 0 0 1 +o Description:Time o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 8 6 :-'. 4 10 0 0 0 0 1 +value is value v va val valu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 6 no 0 9 0 0 0 0 1 +1970-01-01T0:0:0Z as 1970-01-01t0:0:0z 1 19 197 1970 BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 1 0 0 0 8 6 --::/. 6 8 0 0 0 0 1 +o Change o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 8 7 : 1 10 0 0 0 0 1 +o Specification o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 8 7 ():[.],. 8 10 0 0 0 0 1 +o Name: o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 8 8 :"" 3 10 0 0 0 0 1 +o Description: o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 8 8 :[] 3 10 0 0 0 0 1 +representing the representing r re rep repr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 8 -'.,/ 5 9 0 0 0 0 1 +or America/Los_Angeles. or o or or or BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 8 /. 2 3 0 0 0 0 1 +o Change o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 8 9 : 1 10 0 0 0 0 1 +o Specification o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 8 9 ():[.],. 8 10 0 0 0 0 1 +o Name: o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 8 9 :"" 3 10 0 0 0 0 1 +o Description: o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 8 10 :-',[] 6 10 0 0 0 0 1 +language tag. language l la lan lang BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 10 .--[-] 6 9 0 0 0 0 1 +language code language l la lan lang BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 10 --[-] 5 9 0 0 0 0 1 +Lodderstedt & lodderstedt L Lo Lod Lodd BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 8 11 no 0 10 0 0 1 0 0 +Expires March expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 11 , 1 9 0 0 0 0 0 +[Page 12] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 8 0 - 1 10 0 0 1 0 1 +JWT Response jwt J JW JWT JWT BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 0 no 0 10 0 0 1 0 1 +Aug 2019 aug A Au Aug Aug BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 8 0 no 0 6 0 0 0 0 1 +country code country c co cou coun BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 0 ,.,- 4 9 0 0 0 0 1 +US or us U US US US BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 1 1 0 0 0 0 0 8 0 -., 3 9 0 0 0 0 1 +used an used u us use used BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 0 , 1 9 0 0 0 0 1 +example, en_US; example, e ex exa exam BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 0 ,; 2 10 0 0 0 0 1 +syntax as syntax s sy syn synt BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 0 . 1 2 0 0 0 0 1 +o Change o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 8 1 : 1 10 0 0 0 0 1 +o Specification o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 8 2 ():[.],. 8 10 0 0 0 0 1 +o Name: o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 8 2 :"" 3 10 0 0 0 0 1 +o Description: o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 8 2 :-'.[.] 7 10 0 0 0 0 1 +RECOMMENDED as recommended R RE REC RECO BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 8 2 ,,() 4 9 0 0 0 0 1 +555-1212 or 555-1212 5 55 555 555- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 1 0 0 0 8 2 -(). 4 9 0 0 0 0 1 +extension, it extension, e ex ext exte BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 2 , 1 9 0 0 0 0 1 +using the using u us usi usin BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 2 [],,() 6 9 0 0 0 0 1 +555-1234;ext=5678. 555-1234;ext=5678. 555-1234;ext=5678. 5 55 555 555- BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 1 0 0 0 8 2 -;. 3 2 0 0 0 0 1 +o Change o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 8 4 : 1 10 0 0 0 0 1 +o Specification o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 8 5 ():[.],. 8 10 0 0 0 0 1 +o Name: o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 8 5 :"" 3 10 0 0 0 0 1 +o Description: o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 8 5 :-' 3 8 0 0 0 0 1 +verified; otherwise verified; v ve ver veri BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 5 ;., 3 9 0 0 0 0 1 +means that means m me mea mean BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 8 5 no 0 10 0 0 0 0 1 +number was number n nu num numb BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 5 - 1 10 0 0 0 0 1 +was performed. was w wa was was BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 5 . 1 9 0 0 0 0 1 +context-specific, and context-specific, c co con cont BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 5 -, 2 8 0 0 0 0 1 +contractual agreements contractual c co con cont BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 5 . 1 9 0 0 0 0 1 +When true, when W Wh Whe When BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 5 ,[.] 4 9 0 0 0 0 1 +any extensions any a an any any BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 5 []. 3 8 0 0 0 0 1 +o Change o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 9 9 : 1 10 0 0 0 0 1 +o Specification o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 9 9 ():[.],. 8 10 0 0 0 0 1 +o Name: o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 9 9 :"" 3 10 0 0 0 0 1 +o Description: o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 9 9 :-'. 4 10 0 0 0 0 1 +the address the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 9 [] 2 10 0 0 0 0 1 +or all or o or or or BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 9 [.],... 7 9 0 0 0 0 1 +o Change o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 9 11 : 1 10 0 0 0 0 1 +o Specification o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 9 11 ():[.],. 8 10 0 0 0 0 1 +Lodderstedt & lodderstedt L Lo Lod Lodd BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 9 11 no 0 10 0 0 1 0 0 +Expires March expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 11 , 1 9 0 0 0 0 0 +[Page 13] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 9 0 - 1 10 0 0 1 0 1 +JWT Response jwt J JW JWT JWT BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 0 no 0 10 0 0 1 0 1 +Aug 2019 aug A Au Aug Aug BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 9 0 no 0 6 0 0 0 0 1 +o Name: o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 9 0 :"" 3 10 0 0 0 0 1 +o Description: o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 9 0 :-'. 4 9 0 0 0 0 1 +Its value its I It Its Its BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 0 no 0 10 0 0 0 0 1 +1970-01-01T0:0:0Z as 1970-01-01t0:0:0z 1 19 197 1970 BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 1 0 0 0 9 0 --::/. 6 8 0 0 0 0 1 +o Change o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 9 1 : 1 10 0 0 0 0 1 +o Specification o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 9 1 ():[.],. 8 10 0 0 0 0 1 +9. References 9. 9 9. 9. 9. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 2 . 1 10 0 0 0 0 1 +9.1. Normative 9.1. 9 9. 9.1 9.1. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 2 .. 2 10 0 0 0 0 1 +[E.164] [E.164] [e.164] [ [E [E. [E.1 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 2 [.] 3 1 0 0 0 0 1 +Standardization, I. standardization, S St Sta Stan BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 2 ,...,".: 8 10 0 0 0 0 1 +public telecommunication public p pu pub publ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 2 ",, 3 9 0 0 0 0 1 +<https://www.itu.int/rec/T-REC-E.164-201011-I/en>. <https://www.itu.int/rec/T-REC-E.164-201011-I/en>. <https://www.itu.int/rec/t-rec-e.164-201011-i/en>. < <h <ht <htt BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 1 0 0 1 9 2 ://..//--.--/. 14 9 0 0 0 0 1 +[I-D.ietf-oauth-jwt-bcp] [I-D.ietf-oauth-jwt-bcp] [i-d.ietf-oauth-jwt-bcp] [ [I [I- [I-D BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 3 [-.---] 7 4 0 0 0 0 1 +Sheffer, Y., sheffer, S Sh She Shef BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 9 3 ,.,,.,.," 9 10 0 0 0 0 1 +Current Practices", current C Cu Cur Curr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 3 ",-----( 8 9 0 0 0 0 1 +progress), June progress), p pr pro prog BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 3 ),. 3 3 0 0 0 0 1 +[I-D.ietf-oauth-security-topics] [I-D.ietf-oauth-security-topics] [i-d.ietf-oauth-security-topics] [ [I [I- [I-D BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 5 [-.---] 7 5 0 0 0 0 1 +Lodderstedt, T., lodderstedt, L Lo Lod Lodd BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 9 5 ,.,,.,,.,., 11 10 0 0 0 0 1 +"OAuth 2.0 "oauth " "O "OA "OAu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 5 ".",-- 6 9 0 0 0 0 1 +oauth-security-topics-13 (work oauth-security-topics-13 o oa oau oaut BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 5 ---(),. 7 9 0 0 0 0 1 +[ISO3166-1] [ISO3166-1] [iso3166-1] [ [I [IS [ISO BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 6 [-] 3 2 0 0 0 0 1 +Standardization, I. standardization, S St Sta Stan BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 6 ,...,"-:. 9 10 0 0 0 0 1 +representation of representation r re rep repr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 6 no 0 7 0 0 0 0 1 +subdivisions --Part subdivisions s su sub subd BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 6 --:",, 6 7 0 0 0 0 1 +<https://www.iso.org/standard/63545.html>. <https://www.iso.org/standard/63545.html>. <https://www.iso.org/standard/63545.html>. < <h <ht <htt BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 1 9 6 ://..//.. 9 7 0 0 0 0 1 +[ISO639-1] [ISO639-1] [iso639-1] [ [I [IS [ISO BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 8 [-] 3 1 0 0 0 0 1 +Standardization, I. standardization, S St Sta Stan BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 8 ,...,"-: 8 10 0 0 0 0 1 +representation of representation r re rep repr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 8 --:- 4 9 0 0 0 0 1 +Code", 2002, code", C Co Cod Code BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 9 8 ",,://..//.. 12 9 0 0 0 0 1 +[OpenID.Core] [OpenID.Core] [openid.core] [ [O [Op [Ope BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 9 [.] 3 2 0 0 0 0 1 +Sakimura, N., sakimura, S Sa Sak Saki BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 9 9 ,.,,.,,.,,.., 13 10 0 0 0 0 1 +C. Mortimore, c. C C. C. C. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 9 .,". 4 8 0 0 0 0 1 +errata set errata e er err erra BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 9 ",, 3 4 0 0 0 0 1 +<http://openid.net/specs/openid-connect-core-1_0.html>. <http://openid.net/specs/openid-connect-core-1_0.html>. <http://openid.net/specs/openid-connect-core-1_0.html>. < <h <ht <htt BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 1 9 9 ://.//---.. 11 9 0 0 0 0 1 +Lodderstedt & lodderstedt L Lo Lod Lodd BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 9 11 no 0 10 0 0 1 0 0 +Expires March expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 11 , 1 9 0 0 0 0 0 +[Page 14] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 9 0 - 1 10 0 0 1 0 1 +JWT Response jwt J JW JWT JWT BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 0 no 0 10 0 0 1 0 1 +Aug 2019 aug A Au Aug Aug BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 9 0 no 0 6 0 0 0 0 1 +[OpenID.Registration] [OpenID.Registration] [openid.registration] [ [O [Op [Ope BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 0 [.] 3 3 0 0 0 0 1 +Sakimura, N., sakimura, S Sa Sak Saki BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 9 0 ,.,,.,.," 9 10 0 0 0 0 1 +Dynamic Client dynamic D Dy Dyn Dyna BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 0 . 1 10 0 0 0 0 1 +1", Nov 1", 1 1" 1", 1", BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 0 ",,://.// 9 7 0 0 0 0 1 +openid-connect-registration-1_0.html>. openid-connect-registration-1_0.html>. openid-connect-registration-1_0.html>. o op ope open BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 0 ---.. 5 6 0 0 0 0 1 +[RFC2119] Bradner, [rfc2119] [ [R [RF [RFC BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 1 0 0 0 10 1 [],.," 6 10 0 0 0 0 1 +Requirement Levels", requirement R Re Req Requ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 1 ",,, 4 6 0 0 0 0 1 +DOI 10.17487/RFC2119, doi D DO DOI DOI BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 1 0 0 0 0 0 0 10 1 ./,, 4 5 0 0 0 0 1 +<https://www.rfc-editor.org/info/rfc2119>. <https://www.rfc-editor.org/info/rfc2119>. <https://www.rfc-editor.org/info/rfc2119>. < <h <ht <htt BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 1 0 0 1 10 1 ://.-.//. 9 6 0 0 0 0 1 +[RFC3966] Schulzrinne, [rfc3966] [ [R [RF [RFC BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 2 [],.,"", 8 10 0 0 0 0 1 +RFC 3966, rfc R RF RFC RFC BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 2 ,./,, 5 7 0 0 0 0 1 +<https://www.rfc-editor.org/info/rfc3966>. <https://www.rfc-editor.org/info/rfc3966>. <https://www.rfc-editor.org/info/rfc3966>. < <h <ht <htt BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 1 10 2 ://.-.//. 9 6 0 0 0 0 1 +[RFC5322] Resnick, [rfc5322] [ [R [RF [RFC BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 3 [],.,.,"",, 11 10 0 0 0 0 1 +DOI 10.17487/RFC5322, doi D DO DOI DOI BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 1 0 0 0 0 0 0 10 3 ./,, 4 5 0 0 0 0 1 +<https://www.rfc-editor.org/info/rfc5322>. <https://www.rfc-editor.org/info/rfc5322>. <https://www.rfc-editor.org/info/rfc5322>. < <h <ht <htt BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 1 10 3 ://.-.//. 9 6 0 0 0 0 1 +[RFC7515] Jones, [rfc7515] [ [R [RF [RFC BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 4 [],.,,.,.," 11 10 0 0 0 0 1 +Signature (JWS)", signature S Si Sig Sign BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 4 ()",,./, 8 8 0 0 0 0 1 +2015, <https://www.rfc-editor.org/info/rfc7515>. 2015, 2 20 201 2015 BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 1 0 0 0 10 4 ,://.-.//. 10 8 0 0 0 0 1 +[RFC7516] Jones, [rfc7516] [ [R [RF [RFC BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 5 [],..,"()", 11 10 0 0 0 0 1 +RFC 7516, rfc R RF RFC RFC BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 5 ,./,, 5 6 0 0 0 0 1 +<https://www.rfc-editor.org/info/rfc7516>. <https://www.rfc-editor.org/info/rfc7516>. <https://www.rfc-editor.org/info/rfc7516>. < <h <ht <htt BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 1 10 5 ://.-.//. 9 6 0 0 0 0 1 +[RFC7518] Jones, [rfc7518] [ [R [RF [RFC BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 6 [],.,"()",, 11 10 0 0 0 0 1 +DOI 10.17487/RFC7518, doi D DO DOI DOI BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 1 0 0 0 0 0 0 10 6 ./,, 4 5 0 0 0 0 1 +<https://www.rfc-editor.org/info/rfc7518>. <https://www.rfc-editor.org/info/rfc7518>. <https://www.rfc-editor.org/info/rfc7518>. < <h <ht <htt BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 1 10 6 ://.-.//. 9 7 0 0 0 0 1 +[RFC7519] Jones, [rfc7519] [ [R [RF [RFC BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 7 [],.,,.,.," 11 10 0 0 0 0 1 +(JWT)", RFC (jwt)", ( (J (JW (JWT BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 7 ()",,./,, 9 7 0 0 0 0 1 +<https://www.rfc-editor.org/info/rfc7519>. <https://www.rfc-editor.org/info/rfc7519>. <https://www.rfc-editor.org/info/rfc7519>. < <h <ht <htt BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 1 10 7 ://.-.//. 9 6 0 0 0 0 1 +[RFC7525] Sheffer, [rfc7525] [ [R [RF [RFC BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 8 [],.,,.,.-, 11 9 0 0 0 0 1 +"Recommendations for "recommendations " "R "Re "Rec BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 8 " 1 9 0 0 0 0 1 +Security (TLS) security S Se Sec Secu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 10 8 () 2 9 0 0 0 0 1 +(DTLS)", BCP (dtls)", ( (D (DT (DTL BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 8 ()",,,./, 9 10 0 0 0 0 1 +2015, <https://www.rfc-editor.org/info/rfc7525>. 2015, 2 20 201 2015 BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 1 0 0 0 10 8 ,://.-.//. 10 9 0 0 0 0 1 +[RFC7591] Richer, [rfc7591] [ [R [RF [RFC BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 10 [],.,.,,.,,.,,., 16 10 0 0 0 0 1 +P. Hunt, p. P P. P. P. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 10 .,".", 6 8 0 0 0 0 1 +RFC 7591, rfc R RF RFC RFC BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 10 ,./,, 5 6 0 0 0 0 1 +<https://www.rfc-editor.org/info/rfc7591>. <https://www.rfc-editor.org/info/rfc7591>. <https://www.rfc-editor.org/info/rfc7591>. < <h <ht <htt BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 1 10 10 ://.-.//. 9 6 0 0 0 0 1 +Lodderstedt & lodderstedt L Lo Lod Lodd BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 10 11 no 0 10 0 0 1 0 0 +Expires March expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 11 , 1 9 0 0 0 0 0 +[Page 15] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 10 0 - 1 10 0 0 1 0 1 +JWT Response jwt J JW JWT JWT BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 0 no 0 10 0 0 1 0 1 +Aug 2019 aug A Au Aug Aug BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 10 0 no 0 6 0 0 0 0 1 +[RFC7662] Richer, [rfc7662] [ [R [RF [RFC BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 0 [],.,.,".", 11 10 0 0 0 0 1 +RFC 7662, rfc R RF RFC RFC BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 0 ,./,, 5 7 0 0 0 0 1 +<https://www.rfc-editor.org/info/rfc7662>. <https://www.rfc-editor.org/info/rfc7662>. <https://www.rfc-editor.org/info/rfc7662>. < <h <ht <htt BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 1 10 0 ://.-.//. 9 7 0 0 0 0 1 +[RFC8174] Leiba, [rfc8174] [ [R [RF [RFC BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 1 [],.," 6 10 0 0 0 0 1 +2119 Key 2119 2 21 211 2119 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 0 0 0 0 1 0 0 0 10 1 ",,,./, 7 8 0 0 0 0 1 +May 2017, may M Ma May May BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 10 1 ,://.-.//. 10 8 0 0 0 0 1 +[RFC8259] Bray, [rfc8259] [ [R [RF [RFC BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 3 [],.,.,"() 10 10 0 0 0 0 1 +Interchange Format", interchange I In Int Inte BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 3 ",,, 4 5 0 0 0 0 1 +DOI 10.17487/RFC8259, doi D DO DOI DOI BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 1 0 0 0 0 0 0 11 3 ./,, 4 5 0 0 0 0 1 +<https://www.rfc-editor.org/info/rfc8259>. <https://www.rfc-editor.org/info/rfc8259>. <https://www.rfc-editor.org/info/rfc8259>. < <h <ht <htt BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 1 11 3 ://.-.//. 9 6 0 0 0 0 1 +[RFC8414] Jones, [rfc8414] [ [R [RF [RFC BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 5 [],.,,.,.,". 12 10 0 0 0 0 1 +Authorization Server authorization A Au Aut Auth BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 5 ",, 3 6 0 0 0 0 1 +DOI 10.17487/RFC8414, doi D DO DOI DOI BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 1 0 0 0 0 0 0 11 5 ./,, 4 5 0 0 0 0 1 +<https://www.rfc-editor.org/info/rfc8414>. <https://www.rfc-editor.org/info/rfc8414>. <https://www.rfc-editor.org/info/rfc8414>. < <h <ht <htt BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 1 11 5 ://.-.//. 9 6 0 0 0 0 1 +9.2. Informative 9.2. 9 9. 9.2 9.2. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 7 .. 2 10 0 0 0 0 1 +[IANA.OAuth.Parameters] [IANA.OAuth.Parameters] [iana.oauth.parameters] [ [I [IA [IAN BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 7 [..] 4 4 0 0 0 0 1 +IANA, "OAuth iana, I IA IAN IANA BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 11 7 ,"", 4 5 0 0 0 0 1 +<http://www.iana.org/assignments/oauth-parameters>. <http://www.iana.org/assignments/oauth-parameters>. <http://www.iana.org/assignments/oauth-parameters>. < <h <ht <htt BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 1 11 7 ://..//-. 9 10 0 0 0 0 1 +Appendix A. appendix A Ap App Appe BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 8 . 1 10 0 0 0 0 1 +[[ To [[ [ [[ [[ [[ BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 11 8 [[]] 4 10 0 0 0 0 1 +-07 -07 -07 - -0 -07 -07 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 8 - 1 10 0 0 0 0 1 +o fixed o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 11 9 "" 2 10 0 0 0 0 1 +o added o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 11 9 no 0 10 0 0 0 0 1 +-06 -06 -06 - -0 -06 -06 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 9 - 1 10 0 0 0 0 1 +o replaced o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 11 9 no 0 10 0 0 0 0 1 +-05 -05 -05 - -0 -05 -05 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 10 - 1 10 0 0 0 0 1 +o improved o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 11 10 no 0 10 0 0 0 0 1 +o added o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 11 10 no 0 10 0 0 0 0 1 +o fixed o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 11 11 no 0 10 0 0 0 0 1 +-04 -04 -04 - -0 -04 -04 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 11 - 1 10 0 0 0 0 1 +Lodderstedt & lodderstedt L Lo Lod Lodd BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 11 no 0 10 0 0 1 0 0 +Expires March expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 11 , 1 9 0 0 0 0 0 +[Page 16] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 0 - 1 10 0 0 1 0 1 +JWT Response jwt J JW JWT JWT BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 11 0 no 0 10 0 0 1 0 1 +Aug 2019 aug A Au Aug Aug BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 11 0 no 0 6 0 0 0 0 1 +o reworked o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 11 0 no 0 10 0 0 0 0 1 +o added o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 11 0 no 0 10 0 0 0 0 1 +o added o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 11 1 no 0 10 0 0 0 0 1 +-03 -03 -03 - -0 -03 -03 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 2 - 1 10 0 0 0 0 1 +o added o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 11 2 no 0 10 0 0 0 0 1 +Token Introspection token T To Tok Toke BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 2 no 0 5 0 0 0 0 1 +-02 -02 -02 - -0 -02 -02 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 3 - 1 10 0 0 0 0 1 +o updated o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 11 3 no 0 10 0 0 0 0 1 +-01 -01 -01 - -0 -01 -01 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 3 - 1 10 0 0 0 0 1 +o adapted o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 11 3 "/ 2 10 0 0 0 0 1 +jwt" if jwt" j jw jwt jwt" BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 3 " 1 5 0 0 0 0 1 +o use o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 11 4 no 0 10 0 0 0 0 1 +o added o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 11 5 no 0 10 0 0 0 0 1 +-00 -00 -00 - -0 -00 -00 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 5 - 1 10 0 0 0 0 1 +o initial o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 11 6 no 0 10 0 0 0 0 1 +o defined o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 11 6 no 0 10 0 0 0 0 1 +o changed o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 11 6 no 0 10 0 0 0 0 1 +o Added o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 11 7 no 0 10 0 0 0 0 1 +considerations considerations considerations c co con cons BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 7 no 0 2 0 0 0 0 1 +o moved o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 11 8 no 0 10 0 0 0 0 1 +WG draft wg W WG WG WG BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 11 8 no 0 10 0 0 0 0 1 +-01 -01 -01 - -0 -01 -01 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 8 - 1 10 0 0 0 0 1 +o fixed o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 11 8 no 0 10 0 0 0 0 1 +o added o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 11 9 no 0 9 0 0 0 0 1 +supported for supported s su sup supp BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 9 no 0 10 0 0 0 0 1 +o added o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 11 10 no 0 10 0 0 0 0 1 +Client Registration client C Cl Cli Clie BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 10 no 0 2 0 0 0 0 1 +Lodderstedt & lodderstedt L Lo Lod Lodd BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 11 no 0 10 0 0 1 0 0 +Expires March expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 11 , 1 9 0 0 0 0 0 +[Page 17] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 0 - 1 10 0 0 1 0 1 +JWT Response jwt J JW JWT JWT BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 11 0 no 0 10 0 0 1 0 1 +Aug 2019 aug A Au Aug Aug BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 11 0 no 0 6 0 0 0 0 1 +o added o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 11 1 no 0 10 0 0 0 0 1 +o made o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 11 2 no 0 10 0 0 0 0 1 +o Stylistic o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 11 4 , 1 10 0 0 0 0 1 +-00 -00 -00 - -0 -00 -00 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 5 - 1 10 0 0 0 0 1 +o initial o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 11 5 no 0 10 0 0 0 0 1 +Authors' Addresses authors' A Au Aut Auth BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 6 ' 1 10 0 0 0 0 1 +Torsten Lodderstedt torsten T To Tor Tors BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 6 () 2 10 0 0 0 0 1 +yes.com AG yes.com y ye yes yes. BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 6 . 1 3 0 0 0 0 1 +Email: torsten@lodderstedt.net email: E Em Ema Emai BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 8 :. 2 10 0 0 0 0 1 +Vladimir Dzhuvinov vladimir V Vl Vla Vlad BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 0 0 0 0 0 0 11 8 no 0 10 0 0 0 0 1 +Connect2id Ltd. connect2id C Co Con Conn BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 8 . 1 8 0 0 0 0 1 +Email: vladimir@connect2id.com email: E Em Ema Emai BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 9 :. 2 10 0 0 0 0 1 +Lodderstedt & lodderstedt L Lo Lod Lodd BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 10 no 0 10 0 0 1 0 0 +Expires March expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 10 , 1 9 0 0 0 0 0 +[Page 18] [page [ [P [Pa [Pag BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 10 [] 2 4 0 0 0 0 0 + diff --git a/grobid-trainer/resources/dataset/segmentation/sdo/ietf/corpus/raw/XP015135052.training.segmentation b/grobid-trainer/resources/dataset/segmentation/sdo/ietf/corpus/raw/XP015135052.training.segmentation new file mode 100644 index 0000000000..a064337868 --- /dev/null +++ b/grobid-trainer/resources/dataset/segmentation/sdo/ietf/corpus/raw/XP015135052.training.segmentation @@ -0,0 +1,314 @@ +server date server s se ser serv BLOCKSTART PAGESTART NEWFONT HIGHERFONT 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 0 ; 1 10 0 0 0 0 0 +Network Working network N Ne Net Netw BLOCKSTART PAGEIN NEWFONT HIGHERFONT 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 0 0 no 0 10 0 0 0 0 1 +T. Dreibholz t. T T. T. T. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 . 1 4 0 0 0 0 1 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 - 1 5 0 0 0 0 1 +SimulaMet SimulaMet simulamet S Si Sim Simu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 no 0 3 0 0 0 0 1 +Intended status: intended I In Int Inte BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 : 1 10 0 0 0 0 1 +X. Zhou x. X X. X. X. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 . 1 2 0 0 0 0 1 +Expires: March expires: E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 :, 2 8 0 0 0 0 1 +Hainan University hainan H Ha Hai Hain BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 no 0 6 0 0 0 0 1 +September 10, september S Se Sep Sept BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 0 0 0 1 0 0 0 0 , 1 6 0 0 0 0 1 +Takeover Suggestion takeover T Ta Tak Take BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 1 no 0 10 0 0 0 0 1 +draft-dreibholz-rserpool-enrp-takeover-22 draft-dreibholz-rserpool-enrp-takeover-22 draft-dreibholz-rserpool-enrp-takeover-22 d dr dra draf BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 1 ----- 5 7 0 0 0 0 1 +Abstract Abstract abstract A Ab Abs Abst BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 2 no 0 10 0 0 0 0 1 +This document this T Th Thi This BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 2 no 0 10 0 0 0 0 1 +ENRP_HANDLE_UPDATE message enrp_handle_update E EN ENR ENRP BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 2 . 1 8 0 0 0 0 1 +Status of status S St Sta Stat BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 2 no 0 10 0 0 0 0 1 +This Internet-Draft this T Th Thi This BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 2 - 1 10 0 0 0 0 1 +provisions of provisions p pr pro prov BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 2 . 1 5 0 0 0 0 1 +Internet-Drafts are internet-drafts I In Int Inte BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 3 - 1 9 0 0 0 0 1 +Task Force task T Ta Tas Task BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 3 (). 3 9 0 0 0 0 1 +working documents working w wo wor work BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 3 -.- 3 10 0 0 0 0 1 +Drafts is drafts D Dr Dra Draf BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 3 ://..///. 9 8 0 0 0 0 1 +Internet-Drafts are internet-drafts I In Int Inte BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 5 - 1 10 0 0 0 0 1 +and may and a an and and BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 5 ,, 2 9 0 0 0 0 1 +time. It time. t ti tim time BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 5 .- 2 8 0 0 0 0 1 +material or material m ma mat mate BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 5 "." 3 8 0 0 0 0 1 +This Internet-Draft this T Th Thi This BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 6 -,. 3 10 0 0 0 0 1 +Copyright Notice copyright C Co Cop Copy BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 7 no 0 10 0 0 0 0 1 +Copyright (c) copyright C Co Cop Copy BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 7 () 2 10 0 0 0 0 1 +document authors. document d do doc docu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 7 .. 2 6 0 0 0 0 1 +This document this T Th Thi This BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 8 ' 1 8 0 0 0 0 1 +Provisions Relating provisions P Pr Pro Prov BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 8 no 0 5 0 0 0 0 1 +(https://trustee.ietf.org/license-info) in (https://trustee.ietf.org/license-info) ( (h (ht (htt BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 1 0 8 (://../-) 9 9 0 0 0 0 1 +publication of publication p pu pub publ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 8 . 1 8 0 0 0 0 1 +carefully, as carefully, c ca car care BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 8 , 1 10 0 0 0 0 1 +to this to t to to to BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 8 . 1 9 0 0 0 0 1 +include Simplified include i in inc incl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 8 . 1 9 0 0 0 0 1 +the Trust the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 8 no 0 9 0 0 0 0 1 +described in described d de des desc BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 8 . 1 5 0 0 0 0 1 +Dreibholz & dreibholz D Dr Dre Drei BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 1 11 no 0 7 0 0 1 1 0 +Expires March expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 11 , 1 10 0 0 0 0 0 +[Page 1] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 11 [] 2 3 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 1 0 - 1 10 0 0 1 1 1 +Takeover Suggestion takeover T Ta Tak Take BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 0 no 0 10 0 0 1 1 1 +September 2019 september S Se Sep Sept BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 0 0 0 1 0 0 1 0 no 0 6 0 0 0 0 1 +Table of table T Ta Tab Tabl BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 0 no 0 10 0 0 0 0 1 +1. Introduction 1. 1 1. 1. 1. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 0 ......................... 25 9 0 0 0 0 1 +2 2 2 2 2 2 2 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 1 0 no 0 0 0 0 0 0 1 +1.1. Scope 1.1. 1 1. 1.1 1.1. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 0 ............................ 28 9 0 0 0 0 1 +2 2 2 2 2 2 2 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 1 0 no 0 0 0 0 0 0 1 +1.2. Terminology 1.2. 1 1. 1.2 1.2. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 0 ......................... 25 9 0 0 0 0 1 +3 3 3 3 3 3 3 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 1 0 no 0 0 0 0 0 0 1 +1.3. Conventions 1.3. 1 1. 1.3 1.3. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 0 ......................... 25 9 0 0 0 0 1 +3 3 3 3 3 3 3 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 1 0 no 0 0 0 0 0 0 1 +2. Takeover 2. 2 2. 2. 2. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 0 ................... 19 9 0 0 0 0 1 +3 3 3 3 3 3 3 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 1 0 no 0 0 0 0 0 0 1 +2.1. Definition 2.1. 2 2. 2.1 2.1. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 0 ......................... 25 9 0 0 0 0 1 +3 3 3 3 3 3 3 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 1 0 no 0 0 0 0 0 0 1 +3. Reference 3. 3 3. 3. 3. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 0 ................... 19 9 0 0 0 0 1 +4 4 4 4 4 4 4 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 1 0 no 0 0 0 0 0 0 1 +4. Testbed 4. 4 4. 4. 4. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 0 ....................... 23 9 0 0 0 0 1 +4 4 4 4 4 4 4 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 1 0 no 0 0 0 0 0 0 1 +5. Security 5. 5 5. 5. 5. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 0 .................... 20 10 0 0 0 0 1 +4 4 4 4 4 4 4 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 1 0 no 0 0 0 0 0 0 1 +6. IANA 6. 6 6. 6. 6. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 0 ...................... 22 10 0 0 0 0 1 +4 4 4 4 4 4 4 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 1 0 no 0 0 0 0 0 0 1 +7. References 7. 7 7. 7. 7. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 0 .......................... 26 9 0 0 0 0 1 +4 4 4 4 4 4 4 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 1 0 no 0 0 0 0 0 0 1 +7.1. Normative 7.1. 7 7. 7.1 7.1. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 0 .................... 20 9 0 0 0 0 1 +4 4 4 4 4 4 4 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 1 0 no 0 0 0 0 0 0 1 +7.2. Informative 7.2. 7 7. 7.2 7.2. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 0 ................... 19 9 0 0 0 0 1 +5 5 5 5 5 5 5 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 1 0 no 0 0 0 0 0 0 1 +Authors' Addresses authors' A Au Aut Auth BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 1 0 '....................... 24 10 0 0 0 0 1 +6 6 6 6 6 6 6 BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 1 0 no 0 0 0 0 0 0 1 +1. Introduction 1. 1 1. 1. 1. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 3 6 . 1 10 0 0 0 0 1 +Reliable Server reliable R Re Rel Reli BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 6 [] 2 10 0 0 0 0 1 +for providing for f fo for for BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 6 . 1 9 0 0 0 0 1 +used for used u us use used BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 6 no 0 9 0 0 0 0 1 +Registrar (PR). registrar R Re Reg Regi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 6 (). 3 9 0 0 0 0 1 +point of point p po poi poin BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 6 ,., 3 9 0 0 0 0 1 +denoted as denoted d de den deno BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 6 (), 3 9 0 0 0 0 1 +registration into registration r re reg regi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 6 . 1 10 0 0 0 0 1 +ENRP Server, enrp E EN ENR ENRP BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 3 6 ,(-),. 6 9 0 0 0 0 1 +responsible for responsible r re res resp BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 6 no 0 9 0 0 0 0 1 +servers (by servers s se ser serv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 6 () 2 9 0 0 0 0 1 +the PE the t th the the BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 6 (-). 4 6 0 0 0 0 1 +As shown as A As As As BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 9 [], 3 9 0 0 0 0 1 +ENRP server enrp E EN ENR ENRP BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 3 9 : 1 9 0 0 0 0 1 +one subset one o on one one BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 9 (, 2 9 0 0 0 0 1 +has problems) has h ha has has BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 9 )., 3 9 0 0 0 0 1 +reliable ENRP reliable r re rel reli BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 9 no 0 9 0 0 0 0 1 +all of all a al all all BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 9 ,. 2 10 0 0 0 0 1 +Since the since S Si Sin Sinc BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 9 -( 2 9 0 0 0 0 1 +shown by shown s sh sho show BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 9 []), 4 9 0 0 0 0 1 +large RSerPool large l la lar larg BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 3 9 ., 2 9 0 0 0 0 1 +the unreliable the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 9 (, 2 10 0 0 0 0 1 +the network the t th the the BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 9 ). 2 5 0 0 0 0 1 +1.1. Scope 1.1. 1 1. 1.1 1.1. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 4 11 .. 2 10 0 0 0 0 1 +The Takeover the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 11 no 0 10 0 0 0 0 1 +the ENRP_HANDLE_UPDATE the t th the the BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 11 ., 2 9 0 0 0 0 1 +Dreibholz & dreibholz D Dr Dre Drei BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 4 11 no 0 7 0 0 1 0 0 +Expires March expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 11 , 1 10 0 0 0 0 0 +[Page 2] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 11 [] 2 3 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 4 0 - 1 10 0 0 1 0 1 +Takeover Suggestion takeover T Ta Tak Take BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 0 no 0 10 0 0 1 0 1 +September 2019 september S Se Sep Sept BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 0 0 0 1 0 0 4 0 no 0 6 0 0 0 0 1 +ENRP server enrp E EN ENR ENRP BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 4 0 no 0 10 0 0 0 0 1 +ENRP_HANDLE_UPDATE message. enrp_handle_update E EN ENR ENRP BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 4 0 . 1 4 0 0 0 0 1 +1.2. Terminology 1.2. 1 1. 1.2 1.2. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 4 0 .. 2 10 0 0 0 0 1 +The terms the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 0 no 0 10 0 0 0 0 1 +the RSerPool the t th the the BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 0 []. 3 7 0 0 0 0 1 +1.3. Conventions 1.3. 1 1. 1.3 1.3. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 4 1 .. 2 10 0 0 0 0 1 +The key the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 1 "","","","","", 15 9 0 0 0 0 1 +"SHOULD", "SHOULD "should", " "S "SH "SHO BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 4 1 "","","","","", 15 9 0 0 0 0 1 +"OPTIONAL" in "optional" " "O "OP "OPT BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 4 1 "" 2 10 0 0 0 0 1 +14 [RFC2119] 14 1 14 14 14 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 0 0 0 0 0 0 0 0 4 1 [][],, 6 9 0 0 0 0 1 +capitals, as capitals, c ca cap capi BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 1 ,. 2 3 0 0 0 0 1 +2. Takeover 2. 2 2. 2. 2. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 2 . 1 10 0 0 0 0 1 +2.1. Definition 2.1. 2 2. 2.1 2.1. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 2 .. 2 10 0 0 0 0 1 +In this in I In In In BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 5 2 , 1 10 0 0 0 0 1 +message defined message m me mes mess BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 2 []. 3 9 0 0 0 0 1 +shows the shows s sh sho show BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 2 : 1 5 0 0 0 0 1 +0 0 0 0 0 0 0 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 5 3 no 0 0 0 0 0 0 1 +1 1 1 1 1 1 1 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 5 3 no 0 0 0 0 0 0 1 +2 2 2 2 2 2 2 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 5 3 no 0 0 0 0 0 0 1 +3 3 3 3 3 3 3 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 5 3 no 0 0 0 0 0 0 1 +0 1 0 0 0 0 0 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 5 3 no 0 9 0 0 0 0 1 ++-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ + +- +-+ +-+- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 5 3 -------------------------------- 32 10 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 3 no 0 0 0 0 0 0 1 +Type = type T Ty Typ Type BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 3 no 0 4 0 0 0 0 1 +Message Length message M Me Mes Mess BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 3 no 0 2 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 3 no 0 0 0 0 0 0 1 ++-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ + +- +-+ +-+- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 5 3 -------------------------------- 32 10 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 3 no 0 0 0 0 0 0 1 +Sending Server's sending S Se Sen Send BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 3 ' 1 3 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 3 no 0 0 0 0 0 0 1 ++-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ + +- +-+ +-+- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 5 3 -------------------------------- 32 10 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 3 no 0 0 0 0 0 0 1 +Receiving Server's receiving R Re Rec Rece BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 5 3 ' 1 3 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 3 no 0 0 0 0 0 0 1 ++-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ + +- +-+ +-+- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 5 3 -------------------------------- 32 10 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 3 no 0 0 0 0 0 0 1 +Update Action update U Up Upd Upda BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 3 no 0 2 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 3 no 0 0 0 0 0 0 1 +(reserved) (reserved) (reserved) ( (r (re (res BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 3 () 2 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 3 no 0 0 0 0 0 0 1 ++-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ + +- +-+ +-+- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 5 3 -------------------------------- 32 10 0 0 0 0 1 +: : : : : : : BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 3 : 1 0 0 0 0 0 1 +Pool Handle pool P Po Poo Pool BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 5 3 no 0 3 0 0 0 0 1 +: : : : : : : BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 3 : 1 0 0 0 0 0 1 ++-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ + +- +-+ +-+- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 5 3 -------------------------------- 32 10 0 0 0 0 1 +: : : : : : : BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 3 : 1 0 0 0 0 0 1 +Pool Element pool P Po Poo Pool BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 5 3 no 0 3 0 0 0 0 1 +: : : : : : : BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 3 : 1 0 0 0 0 0 1 ++-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ + +- +-+ +-+- BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 5 3 -------------------------------- 32 10 0 0 0 0 1 +T flag: t T T T T BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 10 :() 3 10 0 0 0 0 1 +If set, if I If If If BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 10 , 1 9 0 0 0 0 1 +specified by specified s sp spe spec BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 10 . 1 9 0 0 0 0 1 +RECOMMENDED for recommended R RE REC RECO BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 6 10 no 0 10 0 0 0 0 1 +it has it i it it it BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 10 . 1 4 0 0 0 0 1 +Dreibholz & dreibholz D Dr Dre Drei BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 6 11 no 0 7 0 0 1 0 0 +Expires March expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 11 , 1 10 0 0 0 0 0 +[Page 3] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 11 [] 2 3 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 6 0 - 1 10 0 0 1 0 1 +Takeover Suggestion takeover T Ta Tak Take BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 0 no 0 10 0 0 1 0 1 +September 2019 september S Se Sep Sept BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 0 0 0 1 0 0 6 0 no 0 6 0 0 0 0 1 +3. Reference 3. 3 3. 3. 3. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 0 . 1 10 0 0 0 0 1 +The RSerPool the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 0 no 0 8 0 0 0 0 1 +[RSerPool-Website]. It [rserpool-website]. [ [R [RS [RSe BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 0 [-]. 4 9 0 0 0 0 1 +[RFC5351], [RFC5352], [rfc5351], [ [R [RF [RFC BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 0 [],[],[],[][] 13 9 0 0 0 0 1 +the options the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 0 [-.---], 8 7 0 0 0 0 1 +[I-D.dreibholz-rserpool-delay] and [i-d.dreibholz-rserpool-delay] [ [I [I- [I-D BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 0 [-.--] 6 9 0 0 0 0 1 +this document. this t th thi this BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 0 . 1 10 0 0 0 0 1 +[Dre2006]. [Dre2006]. [dre2006]. [ [D [Dr [Dre BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 1 0 0 0 6 0 []. 3 1 0 0 0 0 1 +4. Testbed 4. 4 4. 4. 4. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 3 . 1 10 0 0 0 0 1 +A large-scale a A A A A BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 1 0 0 0 0 0 7 3 - 1 10 0 0 0 0 1 +for the for f fo for for BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 3 - 1 9 0 0 0 0 1 +NorNet. A nornet. N No Nor NorN BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 7 3 .[-], 5 9 0 0 0 0 1 +some further some s so som some BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 3 no 0 9 0 0 0 0 1 +[NorNet-Website]. [NorNet-Website]. [nornet-website]. [ [N [No [Nor BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 7 3 [-]. 4 2 0 0 0 0 1 +5. Security 5. 5 5. 5. 5. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 5 . 1 10 0 0 0 0 1 +Security considerations security S Se Sec Secu BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 7 5 no 0 10 0 0 0 0 1 +[RFC5355]. [RFC5355]. [rfc5355]. [ [R [RF [RFC BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 5 []. 3 1 0 0 0 0 1 +6. IANA 6. 6 6. 6. 6. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 5 . 1 10 0 0 0 0 1 +This document this T Th Thi This BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 6 no 0 10 0 0 0 0 1 +already identified already a al alr alre BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 6 . 1 9 0 0 0 0 1 +7. References 7. 7 7. 7. 7. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 6 . 1 10 0 0 0 0 1 +7.1. Normative 7.1. 7 7. 7.1 7.1. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 6 .. 2 10 0 0 0 0 1 +[I-D.dreibholz-rserpool-asap-hropt] [I-D.dreibholz-rserpool-asap-hropt] [i-d.dreibholz-rserpool-asap-hropt] [ [I [I- [I-D BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 7 7 [-.---] 7 6 0 0 0 0 1 +Dreibholz, T., dreibholz, D Dr Dre Drei BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 7 7 ,.,"",- 7 9 0 0 0 0 1 +dreibholz-rserpool-asap-hropt-24 (work dreibholz-rserpool-asap-hropt-24 d dr dre drei BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 7 ----(), 7 10 0 0 0 0 1 +2019. 2019. 2019. 2 20 201 2019 BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 1 0 0 0 7 7 . 1 1 0 0 0 0 1 +[I-D.dreibholz-rserpool-delay] [I-D.dreibholz-rserpool-delay] [i-d.dreibholz-rserpool-delay] [ [I [I- [I-D BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 7 8 [-.--] 6 5 0 0 0 0 1 +Dreibholz, T. dreibholz, D Dr Dre Drei BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 7 8 ,..," 5 8 0 0 0 0 1 +Measurement Infrastructure measurement M Me Mea Meas BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 8 -- 2 10 0 0 0 0 1 +Policy for policy P Po Pol Poli BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 8 ",-- 4 9 0 0 0 0 1 +rserpool-delay-23 (work rserpool-delay-23 r rs rse rser BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 8 --(),. 6 8 0 0 0 0 1 +[RFC2119] Bradner, [rfc2119] [ [R [RF [RFC BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 1 0 0 0 8 10 [],.," 6 10 0 0 0 0 1 +Requirement Levels", requirement R Re Req Requ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 10 ",,, 4 6 0 0 0 0 1 +DOI 10.17487/RFC2119, doi D DO DOI DOI BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 1 0 0 0 0 0 0 8 10 ./,, 4 5 0 0 0 0 1 +<https://www.rfc-editor.org/info/rfc2119>. <https://www.rfc-editor.org/info/rfc2119>. <https://www.rfc-editor.org/info/rfc2119>. < <h <ht <htt BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 1 0 0 1 8 10 ://.-.//. 9 6 0 0 0 0 1 +Dreibholz & dreibholz D Dr Dre Drei BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 8 11 no 0 7 0 0 1 0 0 +Expires March expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 11 , 1 10 0 0 0 0 0 +[Page 4] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 11 [] 2 3 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 8 0 - 1 10 0 0 1 0 1 +Takeover Suggestion takeover T Ta Tak Take BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 0 no 0 10 0 0 1 0 1 +September 2019 september S Se Sep Sept BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 0 0 0 1 0 0 8 0 no 0 6 0 0 0 0 1 +[RFC5351] Lei, [rfc5351] [ [R [RF [RFC BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 0 [],.,,.,,.,.," 14 10 0 0 0 0 1 +Overview of overview O Ov Ove Over BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 0 ",, 3 9 0 0 0 0 1 +DOI 10.17487/RFC5351, doi D DO DOI DOI BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 1 0 0 0 0 0 0 8 0 ./,, 4 6 0 0 0 0 1 +<https://www.rfc-editor.org/info/rfc5351>. <https://www.rfc-editor.org/info/rfc5351>. <https://www.rfc-editor.org/info/rfc5351>. < <h <ht <htt BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 1 8 0 ://.-.//. 9 6 0 0 0 0 1 +[RFC5352] Stewart, [rfc5352] [ [R [RF [RFC BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 1 [],.,,.,,.,., 13 10 0 0 0 0 1 +"Aggregate Server "aggregate " "A "Ag "Agg BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 1 "()",, 6 8 0 0 0 0 1 +DOI 10.17487/RFC5352, doi D DO DOI DOI BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 1 0 0 0 0 0 0 8 1 ./,, 4 6 0 0 0 0 1 +<https://www.rfc-editor.org/info/rfc5352>. <https://www.rfc-editor.org/info/rfc5352>. <https://www.rfc-editor.org/info/rfc5352>. < <h <ht <htt BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 1 8 1 ://.-.//. 9 7 0 0 0 0 1 +[RFC5353] Xie, [rfc5353] [ [R [RF [RFC BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 2 [],.,,.,,.,,.,. 15 10 0 0 0 0 1 +Silverton, "Endpoint silverton, S Si Sil Silv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 8 2 ," 2 8 0 0 0 0 1 +(ENRP)", RFC (enrp)", ( (E (EN (ENR BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 2 ()",,./,, 9 8 0 0 0 0 1 +<https://www.rfc-editor.org/info/rfc5353>. <https://www.rfc-editor.org/info/rfc5353>. <https://www.rfc-editor.org/info/rfc5353>. < <h <ht <htt BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 1 8 2 ://.-.//. 9 6 0 0 0 0 1 +[RFC5354] Stewart, [rfc5354] [ [R [RF [RFC BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 4 [],.,,.,,.,., 13 10 0 0 0 0 1 +"Aggregate Server "aggregate " "A "Ag "Agg BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 4 "() 3 8 0 0 0 0 1 +Handlespace Redundancy handlespace H Ha Han Hand BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 8 4 ()", 4 8 0 0 0 0 1 +RFC 5354, rfc R RF RFC RFC BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 4 ,./,, 5 7 0 0 0 0 1 +<https://www.rfc-editor.org/info/rfc5354>. <https://www.rfc-editor.org/info/rfc5354>. <https://www.rfc-editor.org/info/rfc5354>. < <h <ht <htt BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 1 8 4 ://.-.//. 9 7 0 0 0 0 1 +[RFC5355] Stillman, [rfc5355] [ [R [RF [RFC BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 5 [],.,.,,.,,.,,., 16 10 0 0 0 0 1 +and M. and a an and and BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 5 .," 3 8 0 0 0 0 1 +Pooling (RSerPool) pooling P Po Poo Pool BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 5 () 2 7 0 0 0 0 1 +Response to response R Re Res Resp BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 5 ",,./, 6 8 0 0 0 0 1 +September 2008, september S Se Sep Sept BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 0 0 0 1 0 0 9 5 ,://.-.//. 10 8 0 0 0 0 1 +[RFC5356] Dreibholz, [rfc5356] [ [R [RF [RFC BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 7 [],..," 7 10 0 0 0 0 1 +Policies", RFC policies", P Po Pol Poli BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 9 7 ",,./,, 7 9 0 0 0 0 1 +<https://www.rfc-editor.org/info/rfc5356>. <https://www.rfc-editor.org/info/rfc5356>. <https://www.rfc-editor.org/info/rfc5356>. < <h <ht <htt BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 1 9 7 ://.-.//. 9 6 0 0 0 0 1 +[RFC8174] Leiba, [rfc8174] [ [R [RF [RFC BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 8 [],.," 6 10 0 0 0 0 1 +2119 Key 2119 2 21 211 2119 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 0 0 0 0 1 0 0 0 9 8 ",,,./, 7 8 0 0 0 0 1 +May 2017, may M Ma May May BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 9 8 ,://.-.//. 10 8 0 0 0 0 1 +7.2. Informative 7.2. 7 7. 7.2 7.2. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 9 .. 2 10 0 0 0 0 1 +[AINA2009] [AINA2009] [aina2009] [ [A [AI [AIN BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 1 0 0 0 9 9 [] 2 1 0 0 0 0 1 +Zhou, X., zhou, Z Zh Zho Zhou BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 9 9 ,.,,.,,.,,.,., 14 9 0 0 0 0 1 +"Evaluation and "evaluation " "E "Ev "Eva BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 9 " 1 9 0 0 0 0 1 +Handling in handling H Ha Han Hand BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 9 ", 2 9 0 0 0 0 1 +of the of o of of of BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 9 no 0 9 0 0 0 0 1 +Information Networking information I In Inf Info BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 9 () 2 8 0 0 0 0 1 +256-262, ISBN 256-262, 2 25 256 256- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 9 -,----,./.., 12 10 0 0 0 0 1 +May 2009, may M Ma May May BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 9 9 ,://..- 7 5 0 0 0 0 1 +due.de/fileadmin/fileupload/I- due.de/fileadmin/fileupload/I- due.de/fileadmin/fileupload/i- d du due due. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 9 .///- 5 5 0 0 0 0 1 +TDR/ReliableServer/Publications/AINA2009.pdf>. TDR/ReliableServer/Publications/AINA2009.pdf>. tdr/reliableserver/publications/aina2009.pdf>. T TD TDR TDR/ BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 1 0 0 0 9 9 ///.. 5 7 0 0 0 0 1 +Dreibholz & dreibholz D Dr Dre Drei BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 10 11 no 0 7 0 0 1 0 0 +Expires March expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 11 , 1 10 0 0 0 0 0 +[Page 5] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 11 [] 2 3 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 10 0 - 1 10 0 0 1 0 1 +Takeover Suggestion takeover T Ta Tak Take BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 0 no 0 10 0 0 1 0 1 +September 2019 september S Se Sep Sept BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 0 0 0 1 0 0 10 0 no 0 6 0 0 0 0 1 +[Dre2006] Dreibholz, [dre2006] [ [D [Dr [Dre BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 1 0 0 0 10 0 [],.,"-, 8 10 0 0 0 0 1 +Optimization and optimization O Op Opt Opti BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 0 ", 2 9 0 0 0 0 1 +March 2007, march M Ma Mar Marc BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 10 0 ,://.-- 7 7 0 0 0 0 1 +essen.de/servlets/DerivateServlet/Derivate-16326/ essen.de/servlets/DerivateServlet/Derivate-16326/ essen.de/servlets/derivateservlet/derivate-16326/ e es ess esse BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 1 0 0 0 10 0 .///-/ 6 7 0 0 0 0 1 +Dre2006_final.pdf>. Dre2006_final.pdf>. dre2006_final.pdf>. D Dr Dre Dre2 BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 1 0 0 0 10 0 .. 2 3 0 0 0 0 1 +[IJHIT2008] [IJHIT2008] [ijhit2008] [ [I [IJ [IJH BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 1 0 0 0 10 1 [] 2 2 0 0 0 0 1 +Dreibholz, T. dreibholz, D Dr Dre Drei BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 10 1 ,..," 5 9 0 0 0 0 1 +Maintenance Overhead maintenance M Ma Mai Main BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 1 ", 2 10 0 0 0 0 1 +SERSC International sersc S SE SER SERS BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 1 no 0 8 0 0 0 0 1 +Technology (IJHIT) technology T Te Tec Tech BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 1 (),,-, 6 8 0 0 0 0 1 +ISSN 1738-9968, issn I IS ISS ISSN BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 1 -,,://..- 9 8 0 0 0 0 1 +due.de/fileadmin/fileupload/I- due.de/fileadmin/fileupload/I- due.de/fileadmin/fileupload/i- d du due due. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 1 .///- 5 5 0 0 0 0 1 +TDR/ReliableServer/Publications/IJHIT2008.pdf>. TDR/ReliableServer/Publications/IJHIT2008.pdf>. tdr/reliableserver/publications/ijhit2008.pdf>. T TD TDR TDR/ BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 1 0 0 0 10 1 ///.. 5 8 0 0 0 0 1 +[NorNet-Website] [NorNet-Website] [nornet-website] [ [N [No [Nor BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 4 [-] 3 3 0 0 0 0 1 +Dreibholz, T., dreibholz, D Dr Dre Drei BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 10 4 ,.,"--,-- 9 10 0 0 0 0 1 +Homing Testbed", homing H Ho Hom Homi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 10 4 ",:://../,, 11 9 0 0 0 0 1 +<https://www.nntb.no/>. <https://www.nntb.no/>. <https://www.nntb.no/>. < <h <ht <htt BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 1 10 4 ://../. 7 4 0 0 0 0 1 +[PAMS2013-NorNet] [PAMS2013-NorNet] [pams2013-nornet] [ [P [PA [PAM BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 1 0 0 0 10 5 [-] 3 3 0 0 0 0 1 +Dreibholz, T. dreibholz, D Dr Dre Drei BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 10 5 ,..," 5 9 0 0 0 0 1 +the NorNet the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 5 -", 3 10 0 0 0 0 1 +Proceedings of proceedings P Pr Pro Proc BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 5 no 0 10 0 0 0 0 1 +and Applications and a an and and BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 5 -() 3 9 0 0 0 0 1 +1094-1100, ISBN 1094-1100, 1 10 109 1094 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 1 0 0 0 10 5 -,----, 7 5 0 0 0 0 1 +DOI 10.1109/WAINA.2013.71, doi D DO DOI DOI BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 1 0 0 0 0 0 0 10 5 ./..,, 6 6 0 0 0 0 1 +<https://www.simula.no/file/ <https://www.simula.no/file/ <https://www.simula.no/file/ < <h <ht <htt BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 1 10 5 ://..// 7 4 0 0 0 0 1 +threfereedinproceedingsreference2012-12-207643198512pdf/ threfereedinproceedingsreference2012-12-207643198512pdf/ threfereedinproceedingsreference2012-12-207643198512pdf/ t th thr thre BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 1 0 0 0 10 5 --/ 3 9 0 0 0 0 1 +download>. download>. download>. d do dow down BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 5 . 1 1 0 0 0 0 1 +[RSerPool-Website] [RSerPool-Website] [rserpool-website] [ [R [RS [RSe BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 8 [-] 3 3 0 0 0 0 1 +Dreibholz, T., dreibholz, D Dr Dre Drei BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 8 ,.,"'", 7 9 0 0 0 0 1 +Online: https://www.uni-due.de/~be0001/rserpool/, online: O On Onl Onli BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 8 :://.-.///,, 12 10 0 0 0 0 1 +<https://www.uni-due.de/~be0001/rserpool/>. <https://www.uni-due.de/~be0001/rserpool/>. <https://www.uni-due.de/~be0001/rserpool/>. < <h <ht <htt BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 1 11 8 ://.-.///. 10 7 0 0 0 0 1 +Authors' Addresses authors' A Au Aut Auth BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 9 ' 1 10 0 0 0 0 1 +Thomas Dreibholz thomas T Th Tho Thom BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 0 0 0 0 0 0 11 9 no 0 3 0 0 0 0 1 +Simula Metropolitan simula S Si Sim Simu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 9 no 0 10 0 0 0 0 1 +Pilestredet 52 pilestredet P Pi Pil Pile BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 9 no 0 2 0 0 0 0 1 +0167 Oslo, 0167 0 01 016 0167 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 0 0 0 0 0 0 0 0 11 9 , 1 3 0 0 0 0 1 +Norway Norway norway N No Nor Norw BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 9 no 0 1 0 0 0 0 1 +Phone: +47-6782-8200 phone: P Ph Pho Phon BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 10 :-- 3 5 0 0 0 0 1 +Fax: Fax: fax: F Fa Fax Fax: BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 10 : 1 1 0 0 0 0 1 ++47-6782-8201 +47-6782-8201 +47-6782-8201 + +4 +47 +47- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 10 -- 2 3 0 0 0 0 1 +Email: dreibh@simula.no email: E Em Ema Emai BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 10 :. 2 6 0 0 0 0 1 +URI: URI: uri: U UR URI URI: BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 11 10 : 1 1 0 0 0 0 1 +https://www.simula.no/people/dreibh https://www.simula.no/people/dreibh https://www.simula.no/people/dreibh h ht htt http BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 1 11 10 ://..// 7 10 0 0 0 0 1 +Dreibholz & dreibholz D Dr Dre Drei BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 11 no 0 7 0 0 1 0 0 +Expires March expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 11 , 1 10 0 0 0 0 0 +[Page 6] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 11 [] 2 3 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 0 - 1 10 0 0 1 0 1 +Takeover Suggestion takeover T Ta Tak Take BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 0 no 0 10 0 0 1 0 1 +September 2019 september S Se Sep Sept BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 0 0 0 1 0 0 11 0 no 0 6 0 0 0 0 1 +Xing Zhou xing X Xi Xin Xing BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 1 no 0 1 0 0 0 0 1 +Hainan University, hainan H Ha Hai Hain BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 1 , 1 10 0 0 0 0 1 +Renmin Avenue renmin R Re Ren Renm BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 1 no 0 2 0 0 0 0 1 +570228 Haikou, 570228 5 57 570 5702 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 0 0 0 0 0 0 0 0 11 1 , 1 3 0 0 0 0 1 +China China china C Ch Chi Chin BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 11 1 no 0 0 0 0 0 0 1 +Phone: +86-898-66279141 phone: P Ph Pho Phon BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 5 :-- 3 4 0 0 0 0 1 +Email: zhouxing@hainu.edu.cn email: E Em Ema Emai BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 5 :.. 3 5 0 0 0 0 1 +URI: URI: uri: U UR URI URI: BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 11 5 : 1 0 0 0 0 0 1 +http://www.hainu.edu.cn/stm/xinxi/2011330/10409758.shtml http://www.hainu.edu.cn/stm/xinxi/2011330/10409758.shtml http://www.hainu.edu.cn/stm/xinxi/2011330/10409758.shtml h ht htt http BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 1 0 0 1 11 5 ://...////. 11 10 0 0 0 0 1 +Dreibholz & dreibholz D Dr Dre Drei BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 9 no 0 7 0 0 1 0 0 +Expires March expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 9 , 1 10 0 0 0 0 0 +[Page 7] [page [ [P [Pa [Pag BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 9 [] 2 3 0 0 0 0 0 + diff --git a/grobid-trainer/resources/dataset/segmentation/sdo/ietf/corpus/raw/XP015135115.training.segmentation b/grobid-trainer/resources/dataset/segmentation/sdo/ietf/corpus/raw/XP015135115.training.segmentation new file mode 100644 index 0000000000..b899b99df8 --- /dev/null +++ b/grobid-trainer/resources/dataset/segmentation/sdo/ietf/corpus/raw/XP015135115.training.segmentation @@ -0,0 +1,3451 @@ +server date server s se ser serv BLOCKSTART PAGESTART NEWFONT HIGHERFONT 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 0 ; 1 10 0 0 0 0 0 +CCAMP Working ccamp C CC CCA CCAM BLOCKSTART PAGEIN NEWFONT HIGHERFONT 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 no 0 10 0 0 0 0 1 +I. Busi i. I I. I. I. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 . 1 2 0 0 0 0 1 +Internet Draft internet I In Int Inte BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 no 0 4 0 0 0 0 1 +Huawei Huawei huawei H Hu Hua Huaw BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 no 0 2 0 0 0 0 1 +Intended status: intended I In Int Inte BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 : 1 10 0 0 0 0 1 +D. King d. D D. D. D. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 . 1 2 0 0 0 0 1 +Old Dog old O Ol Old Old BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 no 0 6 0 0 0 0 1 +H. Zheng h. H H. H. H. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 . 1 2 0 0 0 0 1 +Huawei Huawei huawei H Hu Hua Huaw BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 no 0 2 0 0 0 0 1 +Y. Xu y. Y Y. Y. Y. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 . 1 1 0 0 0 0 1 +CAICT CAICT caict C CA CAI CAIC BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 no 0 1 0 0 0 0 1 +Expires: March expires: E Ex Exp Expi BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 2 : 1 10 0 0 0 0 1 +September 12, september S Se Sep Sept BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 0 0 0 1 0 0 0 2 , 1 9 0 0 0 0 1 +Transport Northbound transport T Tr Tra Tran BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 2 no 0 10 0 0 0 0 1 +draft-ietf-ccamp-transport-nbi-app-statement-06 draft-ietf-ccamp-transport-nbi-app-statement-06 draft-ietf-ccamp-transport-nbi-app-statement-06 d dr dra draf BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 2 ------- 7 8 0 0 0 0 1 +Status of status S St Sta Stat BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 3 no 0 10 0 0 0 0 1 +This Internet-Draft this T Th Thi This BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 3 - 1 10 0 0 0 0 1 +provisions of provisions p pr pro prov BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 3 . 1 5 0 0 0 0 1 +Internet-Drafts are internet-drafts I In Int Inte BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 4 - 1 10 0 0 0 0 1 +Task Force task T Ta Tas Task BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 4 (),,. 5 9 0 0 0 0 1 +other groups other o ot oth othe BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 4 - 1 9 0 0 0 0 1 +Drafts. Drafts. drafts. D Dr Dra Draf BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 4 . 1 1 0 0 0 0 1 +Internet-Drafts are internet-drafts I In Int Inte BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 6 - 1 9 0 0 0 0 1 +months and months m mo mon mont BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 6 ,, 2 10 0 0 0 0 1 +at any at a at at at BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 6 .- 2 8 0 0 0 0 1 +reference material reference r re ref refe BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 6 "." 3 10 0 0 0 0 1 +The list the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 8 - 1 10 0 0 0 0 1 +http://www.ietf.org/ietf/1id-abstracts.txt http://www.ietf.org/ietf/1id-abstracts.txt http://www.ietf.org/ietf/1id-abstracts.txt h ht htt http BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 1 0 8 ://..//-. 9 7 0 0 0 0 1 +The list the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 9 - 1 10 0 0 0 0 1 +http://www.ietf.org/shadow.html http://www.ietf.org/shadow.html http://www.ietf.org/shadow.html h ht htt http BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 1 0 9 ://../. 7 4 0 0 0 0 1 +This Internet-Draft this T Th Thi This BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 10 -,. 3 10 0 0 0 0 1 +Busi, King, busi, B Bu Bus Busi BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 11 ,,. 3 9 0 0 1 1 0 +Expires March, expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 11 , 1 10 0 0 0 0 0 +[Page 1] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 11 [] 2 4 0 0 0 0 0 +Internet-Draft Transport internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 -- 2 10 0 0 1 1 1 +September 2019 september S Se Sep Sept BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 0 0 0 1 0 0 0 0 no 0 10 0 0 1 1 1 +Copyright Notice copyright C Co Cop Copy BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 no 0 10 0 0 0 0 1 +Copyright (c) copyright C Co Cop Copy BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 () 2 10 0 0 0 0 1 +document authors. document d do doc docu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 .. 2 6 0 0 0 0 1 +This document this T Th Thi This BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 ' 1 9 0 0 0 0 1 +Provisions Relating provisions P Pr Pro Prov BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 no 0 5 0 0 0 0 1 +(http://trustee.ietf.org/license-info) in (http://trustee.ietf.org/license-info) ( (h (ht (htt BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 1 0 0 (://../-) 9 9 0 0 0 0 1 +publication of publication p pu pub publ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 . 1 8 0 0 0 0 1 +carefully, as carefully, c ca car care BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 , 1 9 0 0 0 0 1 +respect to respect r re res resp BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 . 1 9 0 0 0 0 1 +document must document d do doc docu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 no 0 9 0 0 0 0 1 +Section 4.e section S Se Sec Sect BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 . 1 10 0 0 0 0 1 +warranty as warranty w wa war warr BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 . 1 7 0 0 0 0 1 +Abstract Abstract abstract A Ab Abs Abst BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 3 no 0 10 0 0 0 0 1 +Transport network transport T Tr Tra Tran BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 3 ,() 3 10 0 0 0 0 1 +and Wavelength and a an and and BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 3 (), 3 9 0 0 0 0 1 +deployed based deployed d de dep depl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 3 . 1 9 0 0 0 0 1 +often managed often o of oft ofte BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 3 no 0 9 0 0 0 0 1 +Management Systems management M Ma Man Mana BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 0 3 (),() 5 9 0 0 0 0 1 +increasingly Software increasingly i in inc incr BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 3 (). 3 8 0 0 0 0 1 +A well-defined a A A A A BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 1 0 0 0 0 0 0 4 - 1 9 0 0 0 0 1 +controller is controller c co con cont BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 4 no 0 10 0 0 0 0 1 +automation and automation a au aut auto BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 4 --- 3 10 0 0 0 0 1 +networks. These networks. n ne net netw BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 4 . 1 9 0 0 0 0 1 +models (e.g. models m mo mod mode BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 4 (..),(..,). 11 9 0 0 0 0 1 +This document this T Th Thi This BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 6 no 0 9 0 0 0 0 1 +defined by defined d de def defi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 6 ( 1 10 0 0 0 0 1 +(TEAS) and (teas) ( (T (TE (TEA BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 6 ()() 4 9 0 0 0 0 1 +particular) to particular) p pa par part BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 6 )-. 3 9 0 0 0 0 1 +Table of table T Ta Tab Tabl BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 7 no 0 10 0 0 0 0 1 +1. Introduction...................................................4 1. 1 1. 1. 1. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 7 .................................................... 52 10 0 0 0 0 1 +1.1. The 1.1. 1 1. 1.1 1.1. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 7 .................................. 34 9 0 0 0 0 1 +1.2. Assumptions...............................................5 1.2. 1 1. 1.2 1.2. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 7 ................................................. 49 9 0 0 0 0 1 +2. Terminology....................................................6 2. 2 2. 2. 2. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 7 ..................................................... 53 10 0 0 0 0 1 +3. Conventions 3. 3 3. 3. 3. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 7 ............................... 31 10 0 0 0 0 1 +3.1. Topology 3.1. 3 3. 3.1 3.1. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 7 ........................ 24 9 0 0 0 0 1 +3.2. JSON 3.2. 3 3. 3.2 3.2. BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 7 ................................................... 51 9 0 0 0 0 1 +Busi, King, busi, B Bu Bus Busi BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 11 ,,. 3 9 0 0 1 0 0 +Expires March, expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 11 , 1 10 0 0 0 0 0 +[Page 2] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 11 [] 2 4 0 0 0 0 0 +Internet-Draft Transport internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 -- 2 10 0 0 1 0 1 +September 2019 september S Se Sep Sept BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 0 0 0 1 0 0 0 0 no 0 10 0 0 1 0 1 +4. Scenarios 4. 4 4. 4. 4. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ........................................... 43 10 0 0 0 0 1 +4.1. Reference 4.1. 4 4. 4.1 4.1. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ........................................... 43 9 0 0 0 0 1 +4.2. Topology 4.2. 4 4. 4.2 4.2. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ...................................... 38 9 0 0 0 0 1 +4.3. Service 4.3. 4 4. 4.3 4.3. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ...................................... 38 9 0 0 0 0 1 +4.3.1. ODU 4.3.1. 4 4. 4.3 4.3. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ............................................ 44 9 0 0 0 0 1 +4.3.2. EPL 4.3.2. 4 4. 4.3 4.3. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ........................................... 43 9 0 0 0 0 1 +4.3.3. Other 4.3.3. 4 4. 4.3 4.3. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ............................. 29 9 0 0 0 0 1 +4.3.4. EVPL 4.3.4. 4 4. 4.3 4.3. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 .......................................... 42 9 0 0 0 0 1 +4.4. Multi-function 4.4. 4 4. 4.4 4.4. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ..-.............................. 33 9 0 0 0 0 1 +4.5. Protection 4.5. 4 4. 4.5 4.5. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ................... 19 9 0 0 0 0 1 +4.5.1. Linear 4.5.1. 4 4. 4.5 4.5. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ...(--)...................... 29 9 0 0 0 0 1 +4.5.2. Segmented 4.5.2. 4 4. 4.5 4.5. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ................................... 35 9 0 0 0 0 1 +4.6. Notification.............................................23 4.6. 4 4. 4.6 4.6. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ............................................... 47 9 0 0 0 0 1 +4.7. Path 4.7. 4 4. 4.7 4.7. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ........................... 27 9 0 0 0 0 1 +5. YANG 5. 5 5. 5. 5. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ............................................ 44 10 0 0 0 0 1 +5.1. YANG 5.1. 5 5. 5.1 5.1. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ....................... 23 9 0 0 0 0 1 +5.1.1. Domain 5.1.1. 5 5. 5.1 5.1. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 .................... 20 9 0 0 0 0 1 +5.1.2. Domain 5.1.2. 5 5. 5.1 5.1. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 .................... 20 9 0 0 0 0 1 +5.1.3. Domain 5.1.3. 5 5. 5.1 5.1. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 .................... 20 9 0 0 0 0 1 +5.1.4. Multi-domain 5.1.4. 5 5. 5.1 5.1. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ...-....................... 27 9 0 0 0 0 1 +5.2. YANG 5.2. 5 5. 5.2 5.2. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ...................... 22 9 0 0 0 0 1 +5.2.1. ODU 5.2.1. 5 5. 5.2 5.2. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 .................................... 36 9 0 0 0 0 1 +5.2.1.1. Single 5.2.1.1. 5 5. 5.2 5.2. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 .............................. 30 8 0 0 0 0 1 +5.2.2. EPL 5.2.2. 5 5. 5.2 5.2. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ................................... 35 9 0 0 0 0 1 +5.2.2.1. Single 5.2.2.1. 5 5. 5.2 5.2. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 .............................. 30 8 0 0 0 0 1 +5.2.3. Other 5.2.3. 5 5. 5.2 5.2. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 .............................. 30 9 0 0 0 0 1 +5.2.3.1. Single 5.2.3.1. 5 5. 5.2 5.2. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 .............................. 30 8 0 0 0 0 1 +5.2.4. EVPL 5.2.4. 5 5. 5.2 5.2. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 .................................. 34 9 0 0 0 0 1 +5.3. YANG 5.3. 5 5. 5.3 5.3. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ................... 19 9 0 0 0 0 1 +5.3.1. Linear 5.3.1. 5 5. 5.3 5.3. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ...(--)...................... 29 9 0 0 0 0 1 +5.4. Notifications............................................44 5.4. 5 5. 5.4 5.4. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 .............................................. 46 9 0 0 0 0 1 +5.5. Path 5.5. 5 5. 5.5 5.5. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 .......................... 26 9 0 0 0 0 1 +6. Security 6. 6 6. 6. 6. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ........................................ 40 10 0 0 0 0 1 +7. IANA 7. 7 7. 7. 7. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ............................................ 44 10 0 0 0 0 1 +8. References....................................................45 8. 8 8. 8. 8. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ..................................................... 53 10 0 0 0 0 1 +8.1. Normative 8.1. 8 8. 8.1 8.1. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ....................................... 39 9 0 0 0 0 1 +8.2. Informative 8.2. 8 8. 8.2 8.2. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ..................................... 37 9 0 0 0 0 1 +9. Acknowledgments...............................................47 9. 9 9. 9. 9. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ................................................ 48 10 0 0 0 0 1 +Appendix A. appendix A Ap App Appe BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 . 1 1 0 0 0 0 1 +Validating a validating V Va Val Vali BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 ... 3 7 0 0 0 0 1 +A.1. Manipulation a.1. A A. A.1 A.1. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ............................ 28 9 0 0 0 0 1 +A.2. Comments a.2. A A. A.2 A.2. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ................................ 32 9 0 0 0 0 1 +A.3. Validation a.3. A A. A.3 A.3. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ..:-....... 11 9 0 0 0 0 1 +A.4. Validation a.4. A A. A.4 A.4. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ..:- 4 8 0 0 0 0 1 +approach......................................................51 approach......................................................51 approach......................................................51 a ap app appr BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ...................................................... 54 9 0 0 0 0 1 +Busi, King, busi, B Bu Bus Busi BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 11 ,,. 3 9 0 0 1 0 0 +Expires March, expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 11 , 1 10 0 0 0 0 0 +[Page 3] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 11 [] 2 4 0 0 0 0 0 +Internet-Draft Transport internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 -- 2 10 0 0 1 0 1 +September 2019 september S Se Sep Sept BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 0 0 0 1 0 0 0 0 no 0 10 0 0 1 0 1 +Appendix B. appendix A Ap App Appe BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 . 1 1 0 0 0 0 1 +Detailed JSON detailed D De Det Deta BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 ............................ 28 8 0 0 0 0 1 +B.1. JSON b.1. B B. B.1 B.1. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ................... 19 10 0 0 0 0 1 +B.1.1. B.1.1. b.1.1. B B. B.1 B.1. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ... 3 1 0 0 0 0 1 +JSON Code: json J JS JSO JSON BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 :--.................. 21 8 0 0 0 0 1 +B.2. JSON b.2. B B. B.2 B.2. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ................... 19 10 0 0 0 0 1 +B.2.1. B.2.1. b.2.1. B B. B.2 B.2. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ... 3 1 0 0 0 0 1 +JSON Code: json J JS JSO JSON BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 :---........... 15 8 0 0 0 0 1 +B.2.2. B.2.2. b.2.2. B B. B.2 B.2. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ... 3 1 0 0 0 0 1 +JSON Code: json J JS JSO JSON BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 :---............ 16 8 0 0 0 0 1 +B.2.3. B.2.3. b.2.3. B B. B.2 B.2. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ... 3 1 0 0 0 0 1 +JSON Code: json J JS JSO JSON BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 :---............ 16 8 0 0 0 0 1 +1. Introduction 1. 1 1. 1. 1. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 4 . 1 10 0 0 0 0 1 +Transport of transport T Tr Tra Tran BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 4 - 1 9 0 0 0 0 1 +applications and applications a ap app appl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 0 4 , 1 8 0 0 0 0 1 +interconnects, Internet interconnects, i in int inte BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 4 , 1 9 0 0 0 0 1 +enterprise Carrier enterprise e en ent ente BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 4 . 1 10 0 0 0 0 1 +setup using setup s se set setu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 4 , 1 9 0 0 0 0 1 +propriety management propriety p pr pro prop BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 4 . 1 10 0 0 0 0 1 +clear goal clear c cl cle clea BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 4 no 0 9 0 0 0 0 1 +services across services s se ser serv BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 0 4 . 1 8 0 0 0 0 1 +A common a A A A A BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 1 0 0 0 0 0 0 6 () 2 9 0 0 0 0 1 +management system management m ma man mana BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 0 6 - 1 9 0 0 0 0 1 +multi-vendor and multi-vendor m mu mul mult BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 6 -- 2 9 0 0 0 0 1 +provisioning coordination/automation. provisioning p pr pro prov BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 6 /. 2 9 0 0 0 0 1 +standardized YANG standardized s st sta stan BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 6 , 1 10 0 0 0 0 1 +(e.g., RESTCONF (e.g., ( (e (e. (e.g BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 6 (..,[]). 8 4 0 0 0 0 1 +This document this T Th Thi This BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 8 no 0 9 0 0 0 0 1 +defined by defined d de def defi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 8 ( 1 9 0 0 0 0 1 +(TEAS) and (teas) ( (T (TE (TEA BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 8 ()() 4 9 0 0 0 0 1 +particular) to particular) p pa par part BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 8 )() 3 10 0 0 0 0 1 +multi-domain scenarios. multi-domain m mu mul mult BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 8 -. 2 3 0 0 0 0 1 +1.1. The 1.1. 1 1. 1.1 1.1. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 9 .. 2 10 0 0 0 0 1 +This document this T Th Thi This BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 9 , 1 9 0 0 0 0 1 +interfaces, based interfaces, i in int inte BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 9 ,- 2 10 0 0 0 0 1 +Engineered Networks engineered E En Eng Engi BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 9 (),[]. 6 8 0 0 0 0 1 +The focus the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 10 ( 1 10 0 0 0 0 1 +Multi Domain multi M Mu Mul Mult BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 10 () 2 9 0 0 0 0 1 +Controller (PNC), controller C Co Con Cont BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 10 (),). 5 9 0 0 0 0 1 +Busi, King, busi, B Bu Bus Busi BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 11 ,,. 3 9 0 0 1 0 0 +Expires March, expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 11 , 1 10 0 0 0 0 0 +[Page 4] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 11 [] 2 4 0 0 0 0 0 +Internet-Draft Transport internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 -- 2 10 0 0 1 0 1 +September 2019 september S Se Sep Sept BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 0 0 0 1 0 0 0 0 no 0 10 0 0 1 0 1 +It is it I It It It BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 no 0 10 0 0 0 0 1 +be used be b be be be BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 , 1 9 0 0 0 0 1 +of [RFC8453]. of o of of of BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 []. 3 2 0 0 0 0 1 +Detailed analysis detailed D De Det Deta BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 1 ( 1 10 0 0 0 0 1 +Controller (CNC) controller C Co Con Cont BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 1 ()) 3 9 0 0 0 0 1 +service and service s se ser serv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 1 no 0 9 0 0 0 0 1 +document. However, document. d do doc docu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 1 ., 2 9 0 0 0 0 1 +information are information i in inf info BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 1 . 1 5 0 0 0 0 1 +The relationship the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 2 no 0 9 0 0 0 0 1 +of ACTN of o of of of BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 2 [-]., 5 8 0 0 0 0 1 +considers the considers c co con cons BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 2 [-], 4 9 0 0 0 0 1 +OTN Topology otn O OT OTN OTN BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 1 2 [-] 3 9 0 0 0 0 1 +YANG model yang Y YA YAN YANG BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 1 0 0 0 0 0 0 1 2 [-], 4 9 0 0 0 0 1 +defined in defined d de def defi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 2 [-]. 4 9 0 0 0 0 1 +Topology augmentation topology T To Top Topo BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 1 2 [-] 3 10 0 0 0 0 1 +Signal YANG signal S Si Sig Sign BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 2 [-] 3 9 0 0 0 0 1 +and Ethernet and a an and and BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 2 . 1 3 0 0 0 0 1 +The ONF the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 5 no 0 10 0 0 0 0 1 +the transport the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 5 [-]- 4 10 0 0 0 0 1 +domain examples domain d do dom doma BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 5 [] 2 10 0 0 0 0 1 +defining the defining d de def defi BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 5 . 1 9 0 0 0 0 1 +1.2. Assumptions 1.2. 1 1. 1.2 1.2. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 6 .. 2 10 0 0 0 0 1 +This document this T Th Thi This BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 6 : 1 10 0 0 0 0 1 +1. The 1. 1 1. 1. 1. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 6 .,, 3 10 0 0 0 0 1 +Segment using segment S Se Seg Segm BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 6 :, 2 9 0 0 0 0 1 +endpoints of endpoints e en end endp BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 6 no 0 9 0 0 0 0 1 +that PNC, that t th tha that BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 6 , 1 9 0 0 0 0 1 +Tunnel Termination tunnel T Tu Tun Tunn BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 6 (),.., 6 9 0 0 0 0 1 +source, destination, source, s so sou sour BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 6 ,,---- 6 9 0 0 0 0 1 +tunnel instance, tunnel t tu tun tunn BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 6 ,--() 5 9 0 0 0 0 1 +or route-object-include-exclude or o or or or BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 6 --- 3 9 0 0 0 0 1 +egress links egress e eg egr egre BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 6 . 1 8 0 0 0 0 1 +2. Each 2. 2 2. 2. 2. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 10 .,, 3 10 0 0 0 0 1 +timeslots on timeslots t ti tim time BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 10 - 1 9 0 0 0 0 1 +model and model m mo mod mode BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 10 . 1 9 0 0 0 0 1 +in [TE-TOPO] in i in in in BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 1 10 [-] 3 7 0 0 0 0 1 +information. information. information. i in inf info BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 10 . 1 1 0 0 0 0 1 +Busi, King, busi, B Bu Bus Busi BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 1 11 ,,. 3 9 0 0 1 0 0 +Expires March, expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 11 , 1 10 0 0 0 0 0 +[Page 5] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 11 [] 2 4 0 0 0 0 0 +Internet-Draft Transport internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 1 0 -- 2 10 0 0 1 0 1 +September 2019 september S Se Sep Sept BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 0 0 0 1 0 0 1 0 no 0 10 0 0 1 0 1 +See section see S Se See See BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 1 0 .[-]. 5 10 0 0 0 0 1 +This document this T Th Thi This BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 0 : 1 10 0 0 0 0 1 +1. The 1. 1 1. 1. 1. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 1 . 1 10 0 0 0 0 1 +modelled using modelled m mo mod mode BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 1 [-]; 4 8 0 0 0 0 1 +2. The 2. 2 2. 2. 2. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 2 . 1 10 0 0 0 0 1 +access links access a ac acc acce BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 2 [- 2 9 0 0 0 0 1 +TOPO]; TOPO]; topo]; T TO TOP TOPO BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 1 2 ]; 2 1 0 0 0 0 1 +3. The 3. 3 3. 3. 3. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 3 . 1 10 0 0 0 0 1 +signals are signals s si sig sign BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 3 [- 2 9 0 0 0 0 1 +SIGNAL]. SIGNAL]. signal]. S SI SIG SIGN BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 1 3 ]. 2 1 0 0 0 0 1 +Finally, the finally, F Fi Fin Fina BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 4 ,() 3 10 0 0 0 0 1 +in the in i in in in BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 1 4 . 1 10 0 0 0 0 1 +links are links l li lin link BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 4 - 1 8 0 0 0 0 1 +wavelength, which wavelength, w wa wav wave BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 4 ,. 2 8 0 0 0 0 1 +2. Terminology 2. 2 2. 2. 2. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 5 . 1 10 0 0 0 0 1 +Domain: A domain: D Do Dom Doma BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 5 :[]" 4 9 0 0 0 0 1 +network elements network n ne net netw BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 1 5 no 0 9 0 0 0 0 1 +path computation path p pa pat path BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 5 "., 3 8 0 0 0 0 1 +document we document d do doc docu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 5 ' 1 9 0 0 0 0 1 +common management common c co com comm BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 5 (.., 4 10 0 0 0 0 1 +the same the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 5 ). 2 9 0 0 0 0 1 +elements will elements e el ele elem BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 5 no 0 9 0 0 0 0 1 +types, vendor types, t ty typ type BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 5 ,,. 3 7 0 0 0 0 1 +E-LINE: Ethernet e-line: E E- E-L E-LI BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 1 9 -: 2 10 0 0 0 0 1 +EPL: Ethernet epl: E EP EPL EPL: BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 1 9 : 1 10 0 0 0 0 1 +EVPL: Ethernet evpl: E EV EVP EVPL BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 1 9 : 1 10 0 0 0 0 1 +OTN: Optical otn: O OT OTN OTN: BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 1 10 : 1 10 0 0 0 0 1 +Service: A service: S Se Ser Serv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 10 : 1 10 0 0 0 0 1 +as some as a as as as BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 10 no 0 9 0 0 0 0 1 +network operator's network n ne net netw BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 1 10 '[]. 4 5 0 0 0 0 1 +Busi, King, busi, B Bu Bus Busi BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 1 11 ,,. 3 9 0 0 1 0 0 +Expires March, expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 11 , 1 10 0 0 0 0 0 +[Page 6] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 11 [] 2 4 0 0 0 0 0 +Internet-Draft Transport internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 1 0 -- 2 10 0 0 1 0 1 +September 2019 september S Se Sep Sept BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 0 0 0 1 0 0 1 0 no 0 10 0 0 1 0 1 +Service Model: service S Se Ser Serv BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 0 :[] 3 10 0 0 0 0 1 +the parameters the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 0 no 0 9 0 0 0 0 1 +uniformly and uniformly u un uni unif BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 0 no 0 8 0 0 0 0 1 +environment. environment. environment. e en env envi BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 0 . 1 1 0 0 0 0 1 +UNI: User uni: U UN UNI UNI: BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 1 1 : 1 10 0 0 0 0 1 +MDSC: Multi-Domain mdsc: M MD MDS MDSC BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 1 1 :- 2 10 0 0 0 0 1 +CNC: Customer cnc: C CN CNC CNC: BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 1 2 : 1 10 0 0 0 0 1 +PNC: Provisioning pnc: P PN PNC PNC: BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 1 2 : 1 10 0 0 0 0 1 +3. Conventions 3. 3 3. 3. 3. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 2 . 1 10 0 0 0 0 1 +3.1. Topology 3.1. 3 3. 3.1 3.1. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 2 .. 2 10 0 0 0 0 1 +The traffic the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 3 no 0 9 0 0 0 0 1 +list of list l li lis list BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 3 ,, 2 10 0 0 0 0 1 +the processing the t th the the BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 3 : 1 4 0 0 0 0 1 +<node> [<processing>]{, <node> < <n <no <nod BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 4 [],[] 5 10 0 0 0 0 1 +The order the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 4 no 0 10 0 0 0 0 1 +through the through t th thr thro BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 4 . 1 3 0 0 0 0 1 +The processing the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 5 no 0 7 0 0 0 0 1 +"[(switching)]" or "[(switching)]" " "[ "[( "[(s BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 5 "[()]" 6 10 0 0 0 0 1 +a server a a a a a BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 1 0 0 0 0 0 1 5 "[()-]"[-()], 13 9 0 0 0 0 1 +depending on depending d de dep depe BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 5 no 0 9 0 0 0 0 1 +server layer. server s se ser serv BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 5 . 1 2 0 0 0 0 1 +For example, for F Fo For For BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 7 ,: 2 10 0 0 0 0 1 +R1 [(PKT) r1 R R1 R1 R1 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 7 [()-],[()],[()],[()], 21 10 0 0 0 0 1 +R3 [ODU2 r3 R R3 R3 R3 BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 7 [-()] 5 3 0 0 0 0 1 +Node R1 node N No Nod Node BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 8 () 2 9 0 0 0 0 1 +into an into i in int into BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 8 ., 2 10 0 0 0 0 1 +switching at switching s sw swi swit BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 1 8 : 1 9 0 0 0 0 1 +then sends then t th the then BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 8 . 1 9 0 0 0 0 1 +the ODU2 the t th the the BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 8 (). 3 8 0 0 0 0 1 +Busi, King, busi, B Bu Bus Busi BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 1 11 ,,. 3 9 0 0 1 0 0 +Expires March, expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 11 , 1 10 0 0 0 0 0 +[Page 7] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 11 [] 2 4 0 0 0 0 0 +Internet-Draft Transport internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 1 0 -- 2 10 0 0 1 0 1 +September 2019 september S Se Sep Sept BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 0 0 0 1 0 0 1 0 no 0 10 0 0 1 0 1 +The paths the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 0 no 0 10 0 0 0 0 1 +as an as a as as as BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 0 ,: 2 7 0 0 0 0 1 +<node> {, <node> < <n <no <nod BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 0 , 1 10 0 0 0 0 1 +The order the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 1 no 0 9 0 0 0 0 1 +through the through t th thr thro BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 1 . 1 9 0 0 0 0 1 +bidirectional paths, bidirectional b bi bid bidi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 1 , 1 9 0 0 0 0 1 +selected arbitrarily, selected s se sel sele BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 1 , 1 9 0 0 0 0 1 +working/protection path working/protection w wo wor work BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 1 /,. 3 10 0 0 0 0 1 +3.2. JSON 3.2. 3 3. 3.2 3.2. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 2 .. 2 10 0 0 0 0 1 +This document this T Th Thi This BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 2 no 0 9 0 0 0 0 1 +how the how h ho how how BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 2 ( 1 9 0 0 0 0 1 +in particular) in i in in in BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 1 2 ). 2 10 0 0 0 0 1 +JSON to json J JS JSO JSON BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 1 2 . 1 4 0 0 0 0 1 +Different objects different D Di Dif Diff BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 3 . 1 10 0 0 0 0 1 +create mnemonic create c cr cre crea BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 3 (.., 4 9 0 0 0 0 1 +node S3), node n no nod node BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 3 ),(..,),"-", 12 9 0 0 0 0 1 +followed by followed f fo fol foll BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 3 "-"., 5 9 0 0 0 0 1 +would be would w wo wou woul BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 3 --. 3 3 0 0 0 0 1 +The JSON the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 5 no 0 9 0 0 0 0 1 +have been have h ha hav have BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 5 . 1 10 0 0 0 0 1 +document will document d do doc docu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 5 / 1 9 0 0 0 0 1 +pair with pair p pa pai pair BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 5 "//". 5 9 0 0 0 0 1 +For example, for F Fo For For BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 5 , 1 9 0 0 0 0 1 +representing the representing r re rep repr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 5 , 1 10 0 0 0 0 1 +the following the t th the the BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 5 : 1 7 0 0 0 0 1 +"// comment": "// " "/ "// "// BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 1 8 "//":"", 8 10 0 0 0 0 1 +The JSON the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 8 no 0 10 0 0 0 0 1 +against the against a ag aga agai BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 8 no 0 9 0 0 0 0 1 +in Appendix in i in in in BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 1 8 ,. 2 7 0 0 0 0 1 +In order in I In In In BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 1 9 , 1 8 0 0 0 0 1 +numbering scheme numbering n nu num numb BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 9 no 0 9 0 0 0 0 1 +different entities different d di dif diff BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 9 ., 2 10 0 0 0 0 1 +to simplify to t to to to BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 9 ,/ 2 10 0 0 0 0 1 +comment and comment c co com comm BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 9 . 1 9 0 0 0 0 1 +example, the example, e ex exa exam BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 9 ,(--) 5 9 0 0 0 0 1 +Busi, King, busi, B Bu Bus Busi BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 1 11 ,,. 3 9 0 0 1 0 0 +Expires March, expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 11 , 1 10 0 0 0 0 0 +[Page 8] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 11 [] 2 4 0 0 0 0 0 +Internet-Draft Transport internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 1 0 -- 2 10 0 0 1 0 1 +September 2019 september S Se Sep Sept BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 0 0 0 1 0 0 1 0 no 0 10 0 0 1 0 1 +be "10.0.0.3" be b be be be BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 0 "..." 5 10 0 0 0 0 1 +two JSON two t tw two two BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 0 /: 2 3 0 0 0 0 1 +"// te-node-id": "// " "/ "// "// BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 1 2 "//--":"--", 12 10 0 0 0 0 1 +"te-node-id": "10.0.0.3", "te-node-id": " "t "te "te- BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 3 "--":"...", 11 10 0 0 0 0 1 +The first the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 4 / 1 10 0 0 0 0 1 +first step first f fi fir firs BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 4 no 0 8 0 0 0 0 1 +name/value pair name/value n na nam name BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 4 / 1 8 0 0 0 0 1 +definitions. definitions. definitions. d de def defi BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 4 . 1 1 0 0 0 0 1 +4. Scenarios 4. 4 4. 4. 4. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 7 . 1 10 0 0 0 0 1 +4.1. Reference 4.1. 4 4. 4.1 4.1. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 7 .. 2 10 0 0 0 0 1 +The physical the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 7 . 1 10 0 0 0 0 1 +It represents it I It It It BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 7 no 0 9 0 0 0 0 1 +domains which domains d do dom doma BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 7 no 0 9 0 0 0 0 1 +customer network customer c cu cus cust BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 7 : 1 6 0 0 0 0 1 +Busi, King, busi, B Bu Bus Busi BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 1 10 ,,. 3 9 0 0 1 0 0 +Expires March, expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 10 , 1 10 0 0 0 0 0 +[Page 9] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 10 [] 2 4 0 0 0 0 0 +Internet-Draft Transport internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 1 0 -- 2 10 0 0 1 0 1 +September 2019 september S Se Sep Sept BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 0 0 0 1 0 0 1 0 no 0 10 0 0 1 0 1 +........................ ........................ ........................ . .. ... .... BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 1 0 ........................ 24 6 0 0 0 0 1 +......... ......... ......... . .. ... .... BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 1 0 ......... 9 2 0 0 0 0 1 +: : : : : : : BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 : 1 0 0 0 0 0 1 +: : : : : : : BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 : 1 0 0 0 0 0 1 +: : : : : : : BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 : 1 0 0 0 0 0 1 +: : : : : : : BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 : 1 0 0 0 0 0 1 +Network domain network N Ne Net Netw BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 1 0 no 0 4 0 0 0 0 1 +: : : : : : : BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 : 1 0 0 0 0 0 1 +............. ............. ............. . .. ... .... BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 1 0 ............. 13 3 0 0 0 0 1 +Customer: Customer: customer: C Cu Cus Cust BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 0 : 1 2 0 0 0 0 1 +: : : : : : : BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 : 1 0 0 0 0 0 1 +: : : : : : : BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 : 1 0 0 0 0 0 1 +: : : : : : : BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 : 1 0 0 0 0 0 1 +: : : : : : : BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 : 1 0 0 0 0 0 1 +domain : domain d do dom doma BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 0 : 1 2 0 0 0 0 1 +: : : : : : : BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 : 1 0 0 0 0 0 1 +S1 -------+ s1 S S1 S1 S1 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 0 ------- 7 3 0 0 0 0 1 +: : : : : : : BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 : 1 0 0 0 0 0 1 +: Network : : : : : BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 :: 2 3 0 0 0 0 1 +: : : : : : : BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 : 1 0 0 0 0 0 1 +: : : : : : : BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 : 1 0 0 0 0 0 1 +/ / / / / / / BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 / 1 0 0 0 0 0 1 +\ \ \ \ \ \ \ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 no 0 0 0 0 0 0 1 +: : : : : : : BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 : 1 0 0 0 0 0 1 +: domain : : : : : BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 :: 2 3 0 0 0 0 1 +.......... .......... .......... . .. ... .... BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 1 0 .......... 10 2 0 0 0 0 1 +R1 -------S3 r1 R R1 R1 R1 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 0 ------------ 12 5 0 0 0 0 1 +\ \ \ \ \ \ \ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 no 0 0 0 0 0 0 1 +: : : : : : : BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 : 1 0 0 0 0 0 1 +: : : : : : : BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 : 1 0 0 0 0 0 1 +: : : : : : : BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 : 1 0 0 0 0 0 1 +: : : : : : : BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 : 1 0 0 0 0 0 1 +: : : : : : : BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 : 1 0 0 0 0 0 1 +: : : : : : : BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 : 1 0 0 0 0 0 1 +\ \ \ \ \ \ \ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 no 0 0 0 0 0 0 1 +\ \ \ \ \ \ \ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 no 0 0 0 0 0 0 1 +S2 --------+ s2 S S2 S2 S2 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 0 -------- 8 3 0 0 0 0 1 +: : : : : : : BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 : 1 0 0 0 0 0 1 +:Customer :Customer :customer : :C :Cu :Cus BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 0 : 1 2 0 0 0 0 1 +: : : : : : : BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 : 1 0 0 0 0 0 1 +: : : : : : : BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 : 1 0 0 0 0 0 1 +\ \ \ \ \ \ \ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 no 0 0 0 0 0 0 1 +\ \ \ \ \ \ \ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 no 0 0 0 0 0 0 1 +| : | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 : 1 1 0 0 0 0 1 +: : : : : : : BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 : 1 0 0 0 0 0 1 +\ \ \ \ \ \ \ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 no 0 0 0 0 0 0 1 +: : : : : : : BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 : 1 0 0 0 0 0 1 +: domain : : : : : BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 : 1 2 0 0 0 0 1 +: : : : : : : BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 : 1 0 0 0 0 0 1 +: : : : : : : BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 : 1 0 0 0 0 0 1 +S5 S5 s5 S S5 S5 S5 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 0 no 0 0 0 0 0 0 1 +\ \ \ \ \ \ \ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 no 0 0 0 0 0 0 1 +| : | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 : 1 1 0 0 0 0 1 +: : : : : : : BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 : 1 0 0 0 0 0 1 +\ \ \ \ \ \ \ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 no 0 0 0 0 0 0 1 +: : : : : : : BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 : 1 0 0 0 0 0 1 +: : : : : : : BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 : 1 0 0 0 0 0 1 +R2 ------+ r2 R R2 R2 R2 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 0 ------ 6 2 0 0 0 0 1 +/ \ / / / / / BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 / 1 1 0 0 0 0 1 +\ | \ \ \ \ \ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 : 1 1 0 0 0 0 1 +: : : : : : : BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 : 1 0 0 0 0 0 1 +S31 ---------R5 s31 S S3 S31 S31 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 0 --------- 9 4 0 0 0 0 1 +: : : : : : : BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 : 1 0 0 0 0 0 1 +: \ : : : : : BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 :/ 2 1 0 0 0 0 1 +\ \ \ \ \ \ \ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 no 0 0 0 0 0 0 1 +\ | \ \ \ \ \ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 : 1 1 0 0 0 0 1 +: : : : : : : BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 : 1 0 0 0 0 0 1 +/ / / / / / / BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 / 1 0 0 0 0 0 1 +\ \ \ \ \ \ \ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 no 0 0 0 0 0 0 1 +: : : : : : : BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 : 1 0 0 0 0 0 1 +: : : : : : : BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 : 1 0 0 0 0 0 1 +R3 -------S6 r3 R R3 R3 R3 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 0 --------------------- 21 10 0 0 0 0 1 +S33 ------R6 s33 S S3 S33 S33 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 0 ------ 6 3 0 0 0 0 1 +: : : : : : : BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 : 1 0 0 0 0 0 1 +: / : : : : : BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 :/ 2 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 no 0 0 0 0 0 0 1 +: : : : : : : BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 : 1 0 0 0 0 0 1 +: / : : : : : BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 :/ 2 1 0 0 0 0 1 +/ / / / / / / BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 / 1 0 0 0 0 0 1 +: : : : : : : BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 : 1 0 0 0 0 0 1 +:....... :....... :....... : :. :.. :... BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 1 0 :....... 8 2 0 0 0 0 1 +R4 ------+ r4 R R4 R4 R4 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 0 ------ 6 2 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 no 0 0 0 0 0 0 1 +: : : : : : : BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 : 1 0 0 0 0 0 1 +:/ :/ :/ : :/ :/ :/ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 1 0 :/ 2 0 0 0 0 0 1 +S34 S34 s34 S S3 S34 S34 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 0 no 0 1 0 0 0 0 1 +: : : : : : : BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 : 1 0 0 0 0 0 1 +: : : : : : : BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 : 1 0 0 0 0 0 1 +: : : : : : : BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 : 1 0 0 0 0 0 1 +:..........|.......|...: :..........|.......|...: :..........|.......|...: : :. :.. :... BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 1 0 :....................: 22 6 0 0 0 0 1 +/ / / / / / / BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 / 1 0 0 0 0 0 1 +/ / / / / / / BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 / 1 0 0 0 0 0 1 +: : : : : : : BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 : 1 0 0 0 0 0 1 +: : : : : : : BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 : 1 0 0 0 0 0 1 +........: ........: ........: . .. ... .... BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 1 0 ........: 9 2 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 no 0 0 0 0 0 0 1 +/:.../.......: /:.../.......: /:.../.......: / /: /:. /:.. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 1 0 /:.../.......: 14 4 0 0 0 0 1 +: : : : : : : BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 : 1 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 no 0 0 0 0 0 0 1 +/ / / / / / / BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 / 1 0 0 0 0 0 1 +/ / / / / / / BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 / 1 0 0 0 0 0 1 +: : : : : : : BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 : 1 0 0 0 0 0 1 +...........|.......|..../..../... ...........|.......|..../..../... ...........|.......|..../..../... . .. ... .... BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 1 0 ....................../..../... 31 9 0 0 0 0 1 +: : : : : : : BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 : 1 0 0 0 0 0 1 +: : : : : : : BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 : 1 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 no 0 0 0 0 0 0 1 +/ / / / / / / BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 / 1 0 0 0 0 0 1 +/ / / / / / / BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 / 1 0 0 0 0 0 1 +: : : : : : : BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 : 1 0 0 0 0 0 1 +.............. .............. .............. . .. ... .... BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 1 0 .............. 14 4 0 0 0 0 1 +: Network : : : : : BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 : 1 3 0 0 0 0 1 +| / | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 / 1 1 0 0 0 0 1 +/ / / / / / / BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 / 1 0 0 0 0 0 1 +: : : : : : : BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 : 1 0 0 0 0 0 1 +: : : : : : : BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 : 1 0 0 0 0 0 1 +: domain : : : : : BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 : 1 3 0 0 0 0 1 +| / | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 / 1 1 0 0 0 0 1 +/ / / / / / / BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 / 1 0 0 0 0 0 1 +: : : : : : : BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 : 1 0 0 0 0 0 1 +:Customer :Customer :customer : :C :Cu :Cus BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 0 : 1 2 0 0 0 0 1 +: : : : : : : BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 : 1 0 0 0 0 0 1 +S11 ----S12 s11 S S1 S11 S11 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 0 ---- 4 3 0 0 0 0 1 +/ / / / / / / BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 / 1 0 0 0 0 0 1 +: : : : : : : BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 : 1 0 0 0 0 0 1 +: domain : : : : : BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 : 1 2 0 0 0 0 1 +: : : : : : : BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 : 1 0 0 0 0 0 1 +/ / / / / / / BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 / 1 0 0 0 0 0 1 +| \ | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 / 1 1 0 0 0 0 1 +: : : : : : : BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 : 1 0 0 0 0 0 1 +: : : : : : : BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 : 1 0 0 0 0 0 1 +: : : : : : : BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 : 1 0 0 0 0 0 1 +S13 S13 s13 S S1 S13 S13 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 0 no 0 1 0 0 0 0 1 +S14 S14 s14 S S1 S14 S14 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 0 no 0 1 0 0 0 0 1 +| S15 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 ------------- 13 5 0 0 0 0 1 +: : : : : : : BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 : 1 0 0 0 0 0 1 +| \ | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 no 0 1 0 0 0 0 1 +/ / / / / / / BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 / 1 0 0 0 0 0 1 +\ | \ \ \ \ \ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 no 0 1 0 0 0 0 1 +\ \ \ \ \ \ \ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 no 0 0 0 0 0 0 1 +: : : : : : : BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 : 1 0 0 0 0 0 1 +: : : : : : : BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 : 1 0 0 0 0 0 1 +: : : : : : : BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 : 1 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 no 0 0 0 0 0 0 1 +S16 S16 s16 S S1 S16 S16 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 0 no 0 1 0 0 0 0 1 +\ | \ \ \ \ \ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 no 0 1 0 0 0 0 1 +\ \ \ \ \ \ \ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 no 0 0 0 0 0 0 1 +: : : : : : : BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 : 1 0 0 0 0 0 1 +: : : : : : : BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 : 1 0 0 0 0 0 1 +: : : : : : : BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 : 1 0 0 0 0 0 1 +| / | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 / 1 1 0 0 0 0 1 +S17 --S18 s17 S S1 S17 S17 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 0 ----------- 11 5 0 0 0 0 1 +: : : : : : : BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 : 1 0 0 0 0 0 1 +| / | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 / 1 1 0 0 0 0 1 +\ \ \ \ \ \ \ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 no 0 0 0 0 0 0 1 +/ / / / / / / BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 / 1 0 0 0 0 0 1 +: : : : : : : BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 : 1 0 0 0 0 0 1 +: : : : : : : BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 : 1 0 0 0 0 0 1 +: : : : : : : BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 : 1 0 0 0 0 0 1 +S19 ----S20 s19 S S1 S19 S19 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 0 -------------------- 20 9 0 0 0 0 1 +: : : : : : : BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 : 1 0 0 0 0 0 1 +: : : : : : : BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 : 1 0 0 0 0 0 1 +: : : : : : : BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 1 0 : 1 0 0 0 0 0 1 +:...............................: :...............................: :...............................: : :. :.. :... BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 1 0 :...............................: 33 9 0 0 0 0 1 +:............. :............. :............. : :. :.. :... BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 1 0 :............. 14 4 0 0 0 0 1 +Figure 1 figure F Fi Fig Figu BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 9 - 1 10 0 0 0 0 1 +This document this T Th Thi This BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 9 no 0 10 0 0 0 0 1 +Si are si S Si Si Si BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 0 0 0 0 0 0 1 9 () 2 10 0 0 0 0 1 +and that and a an and and BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 9 - 1 8 0 0 0 0 1 +(intra-domain or (intra-domain ( (i (in (int BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 9 (--)- 5 10 0 0 0 0 1 +links are links l li lin link BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 9 . 1 3 0 0 0 0 1 +It is it I It It It BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 10 ,, 2 8 0 0 0 0 1 +physical/optical interconnections physical/optical p ph phy phys BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 10 /-( 3 10 0 0 0 0 1 +to the to t to to to BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 10 ),- 3 9 0 0 0 0 1 +Busi, King, busi, B Bu Bus Busi BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 2 11 ,,. 3 9 0 0 1 0 0 +Expires March, expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 11 , 1 10 0 0 0 0 0 +[Page 10] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 11 [] 2 5 0 0 0 0 0 +Internet-Draft Transport internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 2 0 -- 2 10 0 0 1 0 1 +September 2019 september S Se Sep Sept BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 0 0 0 1 0 0 2 0 no 0 10 0 0 1 0 1 +outside the outside o ou out outs BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 0 no 0 10 0 0 0 0 1 +to the to t to to to BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 0 . 1 1 0 0 0 0 1 +Different technologies different D Di Dif Diff BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 2 (.., 4 8 0 0 0 0 1 +Ethernet, STM-N ethernet, E Et Eth Ethe BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 2 2 ,-).. 5 9 0 0 0 0 1 +the different the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 2 no 0 10 0 0 0 0 1 +types and types t ty typ type BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 2 . 1 9 0 0 0 0 1 +can support can c ca can can BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 2 (..,-, 6 9 0 0 0 0 1 +or OTU2) or o or or or BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 2 )(- 3 9 0 0 0 0 1 +function access function f fu fun func BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 2 ). 2 3 0 0 0 0 1 +The transport the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 8 ,, 2 9 0 0 0 0 1 +follows the follows f fo fol foll BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 8 [], 3 10 0 0 0 0 1 +functional components: functional f fu fun func BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 8 : 1 3 0 0 0 0 1 +Busi, King, busi, B Bu Bus Busi BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 2 10 ,,. 3 9 0 0 1 0 0 +Expires March, expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 10 , 1 10 0 0 0 0 0 +[Page 11] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 10 [] 2 5 0 0 0 0 0 +Internet-Draft Transport internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 2 0 -- 2 10 0 0 1 0 1 +September 2019 september S Se Sep Sept BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 0 0 0 1 0 0 2 0 no 0 10 0 0 1 0 1 +-------------- -------------- -------------- - -- --- ---- BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 2 0 -------------- 14 2 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 0 0 0 0 0 1 +CNC CNC cnc C CN CNC CNC BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 2 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 0 0 0 0 0 1 +-------------- -------------- -------------- - -- --- ---- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 2 0 -------------- 14 2 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 0 0 0 0 0 1 +....................|....................... CMI ....................|....................... . .. ... .... BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 2 0 ........................................... 43 9 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 0 0 0 0 0 1 +---------------- ---------------- ---------------- - -- --- ---- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 2 0 ---------------- 16 3 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 0 0 0 0 0 1 +MDSC MDSC mdsc M MD MDS MDSC BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 2 0 no 0 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 0 0 0 0 0 1 +---------------- ---------------- ---------------- - -- --- ---- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 2 0 ---------------- 16 3 0 0 0 0 1 +/ / / / / / / BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 / 1 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 0 0 0 0 0 1 +\ \ \ \ \ \ \ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 0 0 0 0 0 1 +/ / / / / / / BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 / 1 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 0 0 0 0 0 1 +\ \ \ \ \ \ \ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 0 0 0 0 0 1 +............../.....|......\................ MPIs ............../.....|......\................ . .. ... .... BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 2 0 ............../........................... 42 10 0 0 0 0 1 +/ / / / / / / BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 / 1 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 0 0 0 0 0 1 +\ \ \ \ \ \ \ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 0 0 0 0 0 1 +/ / / / / / / BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 / 1 0 0 0 0 0 1 +---------- ---------- ---------- - -- --- ---- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 2 0 ---------- 10 2 0 0 0 0 1 +\ \ \ \ \ \ \ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 0 0 0 0 0 1 +/ / / / / / / BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 / 1 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 0 0 0 0 0 1 +PNC2 PNC2 pnc2 P PN PNC PNC2 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 0 no 0 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 0 0 0 0 0 1 +\ \ \ \ \ \ \ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 0 0 0 0 0 1 +/ / / / / / / BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 / 1 0 0 0 0 0 1 +---------- ---------- ---------- - -- --- ---- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 2 0 ---------- 10 2 0 0 0 0 1 +\ \ \ \ \ \ \ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 0 0 0 0 0 1 +---------- ---------- ---------- - -- --- ---- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 2 0 ---------- 10 2 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 0 0 0 0 0 1 +\ \ \ \ \ \ \ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 0 0 0 0 0 1 +PNC1 PNC1 pnc1 P PN PNC PNC1 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 0 no 0 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 0 0 0 0 0 1 +----- ----- ----- - -- --- ---- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 2 0 ----- 5 1 0 0 0 0 1 +\ \ \ \ \ \ \ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 0 0 0 0 0 1 +---------- ---------- ---------- - -- --- ---- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 2 0 ---------- 10 2 0 0 0 0 1 +( ( ( ( ( ( ( BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 ( 1 0 0 0 0 0 1 +) ) ) ) ) ) ) BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 ) 1 0 0 0 0 0 1 +---------- ---------- ---------- - -- --- ---- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 2 0 ---------- 10 2 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 0 0 0 0 0 1 +( ( ( ( ( ( ( BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 ( 1 0 0 0 0 0 1 +) ) ) ) ) ) ) BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 ) 1 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 0 0 0 0 0 1 +PNC3 PNC3 pnc3 P PN PNC PNC3 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 0 no 0 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 0 0 0 0 0 1 +----- ----- ----- - -- --- ---- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 2 0 ----- 5 1 0 0 0 0 1 +( Network ( ( ( ( ( BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 () 2 2 0 0 0 0 1 +---------- ---------- ---------- - -- --- ---- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 2 0 ---------- 10 2 0 0 0 0 1 +( ( ( ( ( ( ( BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 ( 1 0 0 0 0 0 1 +) ) ) ) ) ) ) BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 ) 1 0 0 0 0 0 1 +( Domain ( ( ( ( ( BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 () 2 2 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 no 0 0 0 0 0 0 1 +( ( ( ( ( ( ( BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 ( 1 0 0 0 0 0 1 +) ) ) ) ) ) ) BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 ) 1 0 0 0 0 0 1 +( ( ( ( ( ( ( BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 ( 1 0 0 0 0 0 1 +) ) ) ) ) ) ) BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 ) 1 0 0 0 0 0 1 +----- ----- ----- - -- --- ---- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 2 0 ----- 5 1 0 0 0 0 1 +( Network ( ( ( ( ( BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 () 2 2 0 0 0 0 1 +( ( ( ( ( ( ( BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 ( 1 0 0 0 0 0 1 +) ) ) ) ) ) ) BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 ) 1 0 0 0 0 0 1 +( ( ( ( ( ( ( BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 ( 1 0 0 0 0 0 1 +) ) ) ) ) ) ) BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 ) 1 0 0 0 0 0 1 +( Domain ( ( ( ( ( BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 () 2 2 0 0 0 0 1 +----- ----- ----- - -- --- ---- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 2 0 ----- 5 1 0 0 0 0 1 +( ( ( ( ( ( ( BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 ( 1 0 0 0 0 0 1 +) ) ) ) ) ) ) BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 ) 1 0 0 0 0 0 1 +( ( ( ( ( ( ( BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 ( 1 0 0 0 0 0 1 +) ) ) ) ) ) ) BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 ) 1 0 0 0 0 0 1 +( Network ( ( ( ( ( BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 () 2 2 0 0 0 0 1 +( ( ( ( ( ( ( BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 ( 1 0 0 0 0 0 1 +) ) ) ) ) ) ) BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 ) 1 0 0 0 0 0 1 +( Domain ( ( ( ( ( BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 () 2 2 0 0 0 0 1 +----- ----- ----- - -- --- ---- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 2 0 ----- 5 1 0 0 0 0 1 +( ( ( ( ( ( ( BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 ( 1 0 0 0 0 0 1 +) ) ) ) ) ) ) BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 ) 1 0 0 0 0 0 1 +( ( ( ( ( ( ( BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 ( 1 0 0 0 0 0 1 +) ) ) ) ) ) ) BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 0 ) 1 0 0 0 0 0 1 +----- ----- ----- - -- --- ---- BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 2 0 ----- 5 1 0 0 0 0 1 +Figure 2 figure F Fi Fig Figu BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 8 - 1 10 0 0 0 0 1 +The ACTN the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 9 no 0 9 0 0 0 0 1 +service control service s se ser serv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 9 . 1 8 0 0 0 0 1 +customer define customer c cu cus cust BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 9 ., 2 10 0 0 0 0 1 +care must care c ca car care BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 9 no 0 9 0 0 0 0 1 +(or no (or ( (o (or (or BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 9 () 2 8 0 0 0 0 1 +technologies. The technologies. t te tec tech BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 9 . 1 10 0 0 0 0 1 +to the to t to to to BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 9 . 1 3 0 0 0 0 1 +Busi, King, busi, B Bu Bus Busi BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 2 11 ,,. 3 9 0 0 1 0 0 +Expires March, expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 11 , 1 10 0 0 0 0 0 +[Page 12] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 11 [] 2 5 0 0 0 0 0 +Internet-Draft Transport internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 2 0 -- 2 10 0 0 1 0 1 +September 2019 september S Se Sep Sept BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 0 0 0 1 0 0 2 0 no 0 10 0 0 1 0 1 +The control the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 0 no 0 10 0 0 0 0 1 +three MPIs three t th thr thre BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 0 . 1 4 0 0 0 0 1 +It is it I It It It BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 0 no 0 10 0 0 0 0 1 +ACTN architecture actn A AC ACT ACTN BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 2 0 no 0 7 0 0 0 0 1 +equivalent/analogous to equivalent/analogous e eq equ equi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 0 / 1 9 0 0 0 0 1 +for the for f fo for for BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 0 -- 2 8 0 0 0 0 1 +controller and controller c co con cont BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 0 ,- 2 9 0 0 0 0 1 +multi-domain use multi-domain m mu mul mult BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 0 -[-], 5 9 0 0 0 0 1 +interface between interface i in int inte BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 0 () 2 9 0 0 0 0 1 +the Infrastructure the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 0 () 2 9 0 0 0 0 1 +Architecture [MEF architecture A Ar Arc Arch BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 0 []. 3 3 0 0 0 0 1 +This document this T Th Thi This BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 3 no 0 8 0 0 0 0 1 +architecture of architecture a ar arc arch BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 3 :[], 4 10 0 0 0 0 1 +CNC is cnc C CN CNC CNC BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 2 3 no 0 9 0 0 0 0 1 +architecture which architecture a ar arc arch BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 3 ,, 2 9 0 0 0 0 1 +connectivity between connectivity c co con conn BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 3 ,. 2 6 0 0 0 0 1 +The CNC the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 5 no 0 9 0 0 0 0 1 +routers which routers r ro rou rout BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 5 (.., 4 9 0 0 0 0 1 +between R1 between b be bet betw BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 5 ) 1 9 0 0 0 0 1 +(e.g., between (e.g., ( (e (e. (e.g BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 5 (..,). 6 10 0 0 0 0 1 +the transport the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 5 , 1 9 0 0 0 0 1 +the CNC the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 5 ,, 2 9 0 0 0 0 1 +independent on independent i in ind inde BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 5 - 1 9 0 0 0 0 1 +multi-domain. multi-domain. multi-domain. m mu mul mult BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 5 -. 2 2 0 0 0 0 1 +It is it I It It It BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 7 no 0 8 0 0 0 0 1 +information that information i in inf info BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 7 no 0 8 0 0 0 0 1 +connectivity service connectivity c co con conn BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 7 no 0 8 0 0 0 0 1 +configurations to configurations c co con conf BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 7 ,, 2 10 0 0 0 0 1 +to support to t to to to BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 7 . 1 6 0 0 0 0 1 +When a when W Wh Whe When BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 9 - 1 9 0 0 0 0 1 +(e.g., between (e.g., ( (e (e. (e.g BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 9 (..,), 6 9 0 0 0 0 1 +procedures, described procedures, p pr pro proc BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 9 ,-, 3 10 0 0 0 0 1 +the network the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 9 no 0 9 0 0 0 0 1 +controlling that controlling c co con cont BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 9 (..,). 6 8 0 0 0 0 1 +4.2. Topology 4.2. 4 4. 4.2 4.2. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 10 .. 2 10 0 0 0 0 1 +Abstraction provides abstraction A Ab Abs Abst BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 11 no 0 8 0 0 0 0 1 +connectivity information connectivity c co con conn BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 11 . 1 10 0 0 0 0 1 +Busi, King, busi, B Bu Bus Busi BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 2 11 ,,. 3 9 0 0 1 0 0 +Expires March, expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 11 , 1 10 0 0 0 0 0 +[Page 13] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 11 [] 2 5 0 0 0 0 0 +Internet-Draft Transport internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 2 0 -- 2 10 0 0 1 0 1 +September 2019 september S Se Sep Sept BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 0 0 0 1 0 0 2 0 no 0 10 0 0 1 0 1 +to abstract to t to to to BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 0 . 1 10 0 0 0 0 1 +abstraction method abstraction a ab abs abst BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 0 []: 3 7 0 0 0 0 1 +"Abstraction is "abstraction " "A "Ab "Abs BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 0 " 1 8 0 0 0 0 1 +available TE available a av ava avai BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 0 , 1 9 0 0 0 0 1 +information that information i in inf info BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 0 no 0 9 0 0 0 0 1 +across the across a ac acr acro BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 0 ., 2 9 0 0 0 0 1 +all possible all a al all all BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 0 , 1 9 0 0 0 0 1 +potential connectivity potential p po pot pote BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 0 no 0 9 0 0 0 0 1 +how the how h ho how how BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 0 ' 1 10 0 0 0 0 1 +to be to t to to to BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 0 ." 2 1 0 0 0 0 1 +[RFC8453] Provides [rfc8453] [ [R [RF [RFC BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 3 [] 2 10 0 0 0 0 1 +architecture and architecture a ar arc arch BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 3 no 0 9 0 0 0 0 1 +methods for methods m me met meth BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 3 . 1 10 0 0 0 0 1 +consideration since consideration c co con cons BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 3 no 0 9 0 0 0 0 1 +protocol design protocol p pr pro prot BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 3 . 1 9 0 0 0 0 1 +[RFC8453], there [rfc8453], [ [R [RF [RFC BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 3 [],: 4 6 0 0 0 0 1 +o White o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 2 5 : 1 10 0 0 0 0 1 +network topology network n ne net netw BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 2 5 . 1 9 0 0 0 0 1 +this case, this t th thi this BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 5 , 1 9 0 0 0 0 1 +network topology; network n ne net netw BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 2 5 ; 1 2 0 0 0 0 1 +o Black o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 2 6 : 1 10 0 0 0 0 1 +single virtual single s si sin sing BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 6 / 1 9 0 0 0 0 1 +disclosing any disclosing d di dis disc BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 6 ; 1 8 0 0 0 0 1 +o Grey o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 2 7 : 1 10 0 0 0 0 1 +and white and a an and and BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 7 . 1 9 0 0 0 0 1 +abstraction of abstraction a ab abs abst BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 7 . 1 9 0 0 0 0 1 +further differentiate further f fu fur furt BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 7 no 0 9 0 0 0 0 1 +internal TE internal i in int inte BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 7 : 1 8 0 0 0 0 1 +-Grey topology -grey - -G -Gr -Gre BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 9 -: 2 10 0 0 0 0 1 +in a in i in in in BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 2 9 ; 1 3 0 0 0 0 1 +-Grey topology -grey - -G -Gr -Gre BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 9 -: 2 10 0 0 0 0 1 +abstracted nodes abstracted a ab abs abst BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 9 . 1 7 0 0 0 0 1 +Each PNC each E Ea Eac Each BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 10 no 0 8 0 0 0 0 1 +abstractions hiding abstractions a ab abs abst BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 10 no 0 9 0 0 0 0 1 +network topology network n ne net netw BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 2 10 no 0 9 0 0 0 0 1 +independent of independent i in ind inde BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 10 . 1 10 0 0 0 0 1 +Busi, King, busi, B Bu Bus Busi BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 2 11 ,,. 3 9 0 0 1 0 0 +Expires March, expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 11 , 1 10 0 0 0 0 0 +[Page 14] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 11 [] 2 5 0 0 0 0 0 +Internet-Draft Transport internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 2 0 -- 2 10 0 0 1 0 1 +September 2019 september S Se Sep Sept BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 0 0 0 1 0 0 2 0 no 0 10 0 0 1 0 1 +is possible is i is is is BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 0 no 0 10 0 0 0 0 1 +abstractions and abstractions a ab abs abst BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 0 no 0 8 0 0 0 0 1 +regardless of, regardless r re reg rega BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 0 ,, 2 9 0 0 0 0 1 +provided by provided p pr pro prov BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 0 . 1 3 0 0 0 0 1 +To analyze to T To To To BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 1 no 0 8 0 0 0 0 1 +independently from independently i in ind inde BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 1 no 0 9 0 0 0 0 1 +and, therefore, and, a an and and, BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 1 ,, 2 10 0 0 0 0 1 +abstractions, that abstractions, a ab abs abst BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 1 ,: 2 8 0 0 0 0 1 +o PNC1 o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 2 2 no 0 10 0 0 0 0 1 +MPI1, and mpi1, M MP MPI MPI1 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 2 ,,( 3 9 0 0 0 0 1 +the whole the t th the the BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 2 ,). 3 8 0 0 0 0 1 +o PNC3 o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 2 3 no 0 10 0 0 0 0 1 +all the all a al all all BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 3 . 1 8 0 0 0 0 1 +The MDSC the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 4 no 0 9 0 0 0 0 1 +topologies provided topologies t to top topo BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 4 no 0 8 0 0 0 0 1 +multi-domain network multi-domain m mu mul mult BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 4 -. 2 9 0 0 0 0 1 +oversight, including oversight, o ov ove over BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 4 ,, 2 10 0 0 0 0 1 +a method a a a a a BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 1 0 0 0 0 0 2 4 . 1 9 0 0 0 0 1 +The MDSC the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 6 no 0 9 0 0 0 0 1 +the multi-domain the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 6 - 1 9 0 0 0 0 1 +customers' needs: customers' c cu cus cust BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 6 ': 2 8 0 0 0 0 1 +abstractions at abstractions a ab abs abst BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 6 . 1 10 0 0 0 0 1 +provided by provided p pr pro prov BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 6 no 0 9 0 0 0 0 1 +document. document. document. d do doc docu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 6 . 1 1 0 0 0 0 1 +4.3. Service 4.3. 4 4. 4.3 4.3. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 8 .. 2 10 0 0 0 0 1 +In the in I In In In BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 2 8 , 1 10 0 0 0 0 1 +requesting service requesting r re req requ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 8 no 0 9 0 0 0 0 1 +connectivity. connectivity. connectivity. c co con conn BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 8 . 1 2 0 0 0 0 1 +The type the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 9 no 0 10 0 0 0 0 1 +(e.g. OTN (e.g. ( (e (e. (e.g BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 9 (..,) 5 9 0 0 0 0 1 +transport network. transport t tr tra tran BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 9 . 1 2 0 0 0 0 1 +The control the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 10 ,(- 3 9 0 0 0 0 1 +foo) and foo) f fo foo foo) BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 10 )(-), 5 10 0 0 0 0 1 +are not are a ar are are BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 10 ,, 2 9 0 0 0 0 1 +Busi, King, busi, B Bu Bus Busi BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 2 11 ,,. 3 9 0 0 1 0 0 +Expires March, expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 11 , 1 10 0 0 0 0 0 +[Page 15] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 11 [] 2 5 0 0 0 0 0 +Internet-Draft Transport internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 2 0 -- 2 10 0 0 1 0 1 +September 2019 september S Se Sep Sept BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 0 0 0 1 0 0 2 0 no 0 10 0 0 1 0 1 +the PNCs. the t th the the BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 0 ., 2 10 0 0 0 0 1 +document. document. document. d do doc docu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 0 . 1 1 0 0 0 0 1 +4.3.1. ODU 4.3.1. 4 4. 4.3 4.3. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 0 ... 3 10 0 0 0 0 1 +The physical the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 0 no 0 10 0 0 0 0 1 +network can network n ne net netw BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 2 0 . 1 4 0 0 0 0 1 +In this in I In In In BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 2 1 ,/ 2 7 0 0 0 0 1 +interconnections below interconnections i in int inte BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 1 () 2 9 0 0 0 0 1 +pre-configured using pre-configured p pr pre pre- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 1 - 1 10 0 0 0 0 1 +document and document d do doc docu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 1 . 1 10 0 0 0 0 1 +For simplicity for F Fo For For BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 2 , 1 10 0 0 0 0 1 +interfaces are interfaces i in int inte BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 2 (.., 4 9 0 0 0 0 1 +ODU2). ODU2). odu2). O OD ODU ODU2 BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 2 ). 2 1 0 0 0 0 1 +To setup to T To To To BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 3 ,-- 3 9 0 0 0 0 1 +connection needs connection c co con conn BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 3 ,, 2 10 0 0 0 0 1 +S1, S2, s1, S S1 S1, S1, BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 3 ,,,,, 5 9 0 0 0 0 1 +domains (multi-domain domains d do dom doma BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 3 (-): 4 5 0 0 0 0 1 +R1 [(PKT) r1 R R1 R1 R1 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 5 [()-],[(]),[(]),[(]), 21 10 0 0 0 0 1 +S31 [(ODU2)], s31 S S3 S31 S31 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 5 [()],[()],[()], 15 7 0 0 0 0 1 +S15 [(ODU2)], s15 S S1 S15 S15 BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 5 [()],[()],[-()] 15 7 0 0 0 0 1 +The MDSC the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 6 no 0 9 0 0 0 0 1 +service between service s se ser serv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 6 , 1 9 0 0 0 0 1 +different PNC different d di dif diff BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 6 (-). 4 9 0 0 0 0 1 +decides the decides d de dec deci BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 6 ,, 2 10 0 0 0 0 1 +underlying PNCs, underlying u un und unde BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 6 ,- 2 9 0 0 0 0 1 +segment connection segment s se seg segm BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 6 . 1 8 0 0 0 0 1 +To setup to T To To To BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 8 ,-- 3 9 0 0 0 0 1 +connection needs connection c co con conn BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 8 ,, 2 9 0 0 0 0 1 +S5 and s5 S S5 S5 S5 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 8 (- 2 10 0 0 0 0 1 +request): request): request): r re req requ BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 8 ): 2 1 0 0 0 0 1 +R1 [(PKT) r1 R R1 R1 R1 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 9 [()-],[()],[()],[()], 21 10 0 0 0 0 1 +R3 [ODU2 r3 R R3 R3 R3 BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 9 [-()] 5 3 0 0 0 0 1 +As described as A As As As BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 10 ., 2 9 0 0 0 0 1 +CMI are cmi C CM CMI CMI BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 2 10 - 1 10 0 0 0 0 1 +service or service s se ser serv BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 10 -. 2 3 0 0 0 0 1 +Busi, King, busi, B Bu Bus Busi BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 3 11 ,,. 3 9 0 0 1 0 0 +Expires March, expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 11 , 1 10 0 0 0 0 0 +[Page 16] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 11 [] 2 5 0 0 0 0 0 +Internet-Draft Transport internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 3 0 -- 2 10 0 0 1 0 1 +September 2019 september S Se Sep Sept BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 0 0 0 1 0 0 3 0 no 0 10 0 0 1 0 1 +The MDSC the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 0 no 0 9 0 0 0 0 1 +service between service s se ser serv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 0 , 1 10 0 0 0 0 1 +same PNC same s sa sam same BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 0 (-) 3 10 0 0 0 0 1 +proper network proper p pr pro prop BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 0 . 1 6 0 0 0 0 1 +4.3.2. EPL 4.3.2. 4 4. 4.3 4.3. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 3 1 ... 3 10 0 0 0 0 1 +The physical the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 1 no 0 10 0 0 0 0 1 +network can network n ne net netw BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 3 1 (). 3 7 0 0 0 0 1 +In this in I In In In BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 3 2 , 1 9 0 0 0 0 1 +(up to (up ( (u (up (up BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 2 ()- 3 10 0 0 0 0 1 +outside the outside o ou out outs BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 2 no 0 9 0 0 0 0 1 +between the between b be bet betw BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 2 . 1 4 0 0 0 0 1 +To setup to T To To To BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 3 , 1 9 0 0 0 0 1 +be created, be b be be be BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 3 ,--, 4 9 0 0 0 0 1 +transport nodes transport t tr tra tran BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 3 ,,, 3 10 0 0 0 0 1 +S31, S33, s31, S S3 S31 S31, BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 3 3 ,,,(- 5 10 0 0 0 0 1 +domain service domain d do dom doma BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 3 ): 2 3 0 0 0 0 1 +R1 [(PKT) r1 R R1 R1 R1 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 3 5 [()-],[-()],[()], 17 9 0 0 0 0 1 +S2 [(ODU2)], s2 S S2 S2 S2 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 3 5 [()],[()),[()],[()], 20 10 0 0 0 0 1 +S15 [(ODU2)], s15 S S1 S15 S15 BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 3 5 [()],[()-],[-()] 16 9 0 0 0 0 1 +The MDSC the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 6 no 0 9 0 0 0 0 1 +the access the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 6 , 1 9 0 0 0 0 1 +domains (multi-domain domains d do dom doma BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 6 (-). 4 10 0 0 0 0 1 +configurations to configurations c co con conf BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 6 ,,, 3 9 0 0 0 0 1 +coordinate the coordinate c co coo coor BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 6 -- 2 9 0 0 0 0 1 +nodes S3 nodes n no nod node BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 6 , 1 9 0 0 0 0 1 +functions inside functions f fu fun func BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 6 ,[-()] 6 9 0 0 0 0 1 +S18 [(ODU2) s18 S S1 S18 S18 BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 3 6 [()-]. 6 3 0 0 0 0 1 +To setup to T To To To BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 9 , 1 9 0 0 0 0 1 +be created, be b be be be BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 9 ,-- 3 9 0 0 0 0 1 +transport nodes transport t tr tra tran BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 9 ,, 2 9 0 0 0 0 1 +which belong which w wh whi whic BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 9 (-): 4 10 0 0 0 0 1 +R1 [(PKT) r1 R R1 R1 R1 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 3 10 [()-],[-()][()], 16 10 0 0 0 0 1 +S6 [(ODU2) s6 S S6 S6 S6 BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 3 10 [()-],[-()] 11 7 0 0 0 0 1 +Busi, King, busi, B Bu Bus Busi BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 3 11 ,,. 3 9 0 0 1 0 0 +Expires March, expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 11 , 1 10 0 0 0 0 0 +[Page 17] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 11 [] 2 5 0 0 0 0 0 +Internet-Draft Transport internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 3 0 -- 2 10 0 0 1 0 1 +September 2019 september S Se Sep Sept BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 0 0 0 1 0 0 3 0 no 0 10 0 0 1 0 1 +As described as A As As As BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 0 ., 2 9 0 0 0 0 1 +CMI are cmi C CM CMI CMI BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 3 0 - 1 10 0 0 0 0 1 +service or service s se ser serv BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 0 -. 2 3 0 0 0 0 1 +Based on based B Ba Bas Base BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 1 ,, 2 10 0 0 0 0 1 +that it that t th tha that BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 1 no 0 10 0 0 0 0 1 +and S6, and a an and and BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 1 ,(- 3 9 0 0 0 0 1 +request) and request) r re req requ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 1 ) 1 9 0 0 0 0 1 +PNC1. PNC1. pnc1. P PN PNC PNC1 BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 3 1 . 1 0 0 0 0 0 1 +4.3.3. Other 4.3.3. 4 4. 4.3 4.3. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 3 2 ... 3 10 0 0 0 0 1 +[ITU-T G.709] [itu-t [ [I [IT [ITU BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 3 2 [-.] 4 9 0 0 0 0 1 +layers into layers l la lay laye BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 2 . 1 9 0 0 0 0 1 +services over services s se ser serv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 3 2 no 0 10 0 0 0 0 1 +of physical of o of of of BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 2 (..,,-,, 8 9 0 0 0 0 1 +InfiniBand, etc.) infiniband, I In Inf Infi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 3 2 ,.) 3 9 0 0 0 0 1 +network. network. network. n ne net netw BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 2 . 1 1 0 0 0 0 1 +In order in I In In In BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 3 4 , 1 9 0 0 0 0 1 +example SDH example e ex exa exam BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 4 no 0 9 0 0 0 0 1 +network, an network, n ne net netw BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 4 ,-, 3 8 0 0 0 0 1 +supported by supported s su sup supp BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 4 --, 3 9 0 0 0 0 1 +S3 and s3 S S3 S3 S3 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 3 4 ,,,,, 5 9 0 0 0 0 1 +and S15, and a an and and BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 4 ,(- 3 10 0 0 0 0 1 +request): request): request): r re req requ BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 4 ): 2 1 0 0 0 0 1 +R1 [(PKT) r1 R R1 R1 R1 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 3 6 [()--],[--()],[()], 19 9 0 0 0 0 1 +S2 [(ODU2)], s2 S S2 S2 S2 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 3 6 [()],[()],[()],[()], 20 9 0 0 0 0 1 +S15 [(ODU2)], s15 S S1 S15 S15 BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 3 6 [()],[()--],[--()] 18 10 0 0 0 0 1 +As already as A As As As BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 8 (.) 3 8 0 0 0 0 1 +information to information i in inf info BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 8 no 0 9 0 0 0 0 1 +is needed, is i is is is BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 8 ,,- 3 9 0 0 0 0 1 +access links access a ac acc acce BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 8 , 1 8 0 0 0 0 1 +configurations, including configurations, c co con conf BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 8 , 1 8 0 0 0 0 1 +functions inside functions f fu fun func BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 8 ,[--()] 7 10 0 0 0 0 1 +S18 [(ODU2) s18 S S1 S18 S18 BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 3 8 [()--]. 7 3 0 0 0 0 1 +To setup to T To To To BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 10 ),- 3 9 0 0 0 0 1 +service needs service s se ser serv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 10 (- 2 10 0 0 0 0 1 +request): request): request): r re req requ BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 10 ): 2 1 0 0 0 0 1 +Busi, King, busi, B Bu Bus Busi BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 3 11 ,,. 3 9 0 0 1 0 0 +Expires March, expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 11 , 1 10 0 0 0 0 0 +[Page 18] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 11 [] 2 5 0 0 0 0 0 +Internet-Draft Transport internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 3 0 -- 2 10 0 0 1 0 1 +September 2019 september S Se Sep Sept BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 0 0 0 1 0 0 3 0 no 0 10 0 0 1 0 1 +R1 [(PKT) r1 R R1 R1 R1 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 3 0 [()--],[--()],[()], 19 10 0 0 0 0 1 +S6 [(ODU2) s6 S S6 S6 S6 BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 3 0 [()--],[--()] 13 7 0 0 0 0 1 +As described as A As As As BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 1 ., 2 9 0 0 0 0 1 +CMI are cmi C CM CMI CMI BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 3 1 - 1 10 0 0 0 0 1 +service or service s se ser serv BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 1 -. 2 3 0 0 0 0 1 +Based on based B Ba Bas Base BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 2 ,, 2 10 0 0 0 0 1 +that it that t th tha that BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 2 - 1 9 0 0 0 0 1 +access links access a ac acc acce BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 2 , 1 9 0 0 0 0 1 +(single-domain service (single-domain ( (s (si (sin BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 2 (-) 3 9 0 0 0 0 1 +configuration to configuration c co con conf BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 2 . 1 4 0 0 0 0 1 +4.3.4. EVPL 4.3.4. 4 4. 4.3 4.3. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 3 3 ... 3 10 0 0 0 0 1 +When the when W Wh Whe When BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 3 no 0 9 0 0 0 0 1 +transport network transport t tr tra tran BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 3 , 1 10 0 0 0 0 1 +that different that t th tha that BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 3 (..,) 5 9 0 0 0 0 1 +physical access physical p ph phy phys BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 3 . 1 6 0 0 0 0 1 +As described as A As As As BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 5 .., 3 10 0 0 0 0 1 +physical interfaces physical p ph phy phys BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 5 ()-. 4 9 0 0 0 0 1 +To setup to T To To To BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 5 , 1 9 0 0 0 0 1 +two EVPL two t tw two two BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 5 ,-- 3 10 0 0 0 0 1 +end connections: end e en end end BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 5 : 1 2 0 0 0 0 1 +R1 [(PKT) r1 R R1 R1 R1 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 3 6 [()-],[-()],[()], 17 10 0 0 0 0 1 +S6 [(ODU0) s6 S S6 S6 S6 BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 3 6 [()-],[-()] 11 7 0 0 0 0 1 +R1 [(PKT) r1 R R1 R1 R1 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 3 7 [()-],[-()],[()], 17 9 0 0 0 0 1 +S2 [(ODU0)], s2 S S2 S2 S2 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 3 7 [()],[()],[()],[()], 20 10 0 0 0 0 1 +S15 [(ODU0)], s15 S S1 S15 S15 BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 3 7 [()],[()-],[-()] 16 9 0 0 0 0 1 +It is it I It It It BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 9 no 0 9 0 0 0 0 1 +access links access a ac acc acce BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 9 (- 2 9 0 0 0 0 1 +service request) service s se ser serv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 9 ) 1 10 0 0 0 0 1 +access links access a ac acc acce BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 9 (- 2 9 0 0 0 0 1 +service request). service s se ser serv BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 9 ). 2 2 0 0 0 0 1 +Since the since S Si Sin Sinc BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 10 no 0 10 0 0 0 0 1 +link between link l li lin link BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 3 10 , 1 9 0 0 0 0 1 +different EVPL different d di dif diff BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 10 :, 2 8 0 0 0 0 1 +respectively. respectively. respectively. r re res resp BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 10 . 1 2 0 0 0 0 1 +Busi, King, busi, B Bu Bus Busi BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 3 11 ,,. 3 9 0 0 1 0 0 +Expires March, expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 11 , 1 10 0 0 0 0 0 +[Page 19] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 11 [] 2 5 0 0 0 0 0 +Internet-Draft Transport internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 3 0 -- 2 10 0 0 1 0 1 +September 2019 september S Se Sep Sept BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 0 0 0 1 0 0 3 0 no 0 10 0 0 1 0 1 +Based on based B Ba Bas Base BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 0 .., 3 9 0 0 0 0 1 +requests at requests r re req requ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 3 0 no 0 10 0 0 0 0 1 +MDSC understands mdsc M MD MDS MDSC BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 3 0 no 0 9 0 0 0 0 1 +underlying PNCs, underlying u un und unde BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 0 ,... 4 7 0 0 0 0 1 +4.4. Multi-function 4.4. 4 4. 4.4 4.4. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 3 1 ..- 3 10 0 0 0 0 1 +Some physical some S So Som Some BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 1 no 0 10 0 0 0 0 1 +network can network n ne net netw BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 3 1 ,.., 4 10 0 0 0 0 1 +STM-64 or stm-64 S ST STM STM- BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 3 1 -. 2 4 0 0 0 0 1 +This configuration this T Th Thi This BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 2 - 1 9 0 0 0 0 1 +the scope the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 2 ., 2 10 0 0 0 0 1 +the MPI the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 2 (- 2 10 0 0 0 0 1 +configuration) and configuration) c co con conf BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 2 ) 1 9 0 0 0 0 1 +section 4.3: section s se sec sect BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 2 .:,- 4 9 0 0 0 0 1 +pre-configured as pre-configured p pr pre pre- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 2 -(..), 6 9 0 0 0 0 1 +link (section link l li lin link BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 3 2 (..)-(..). 10 9 0 0 0 0 1 +It is it I It It It BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 5 - 1 9 0 0 0 0 1 +the MDSC the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 5 (,-,) 5 10 0 0 0 0 1 +decide how decide d de dec deci BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 5 , 1 8 0 0 0 0 1 +configuration. configuration. configuration. c co con conf BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 5 . 1 2 0 0 0 0 1 +For example, for F Fo For For BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 6 , 1 8 0 0 0 0 1 +multi-functional access multi-functional m mu mul mult BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 6 - 1 10 0 0 0 0 1 +S6 and s6 S S6 S6 S6 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 3 6 - 1 8 0 0 0 0 1 +respectively, it respectively, r re res resp BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 6 ,- 2 9 0 0 0 0 1 +Line service line L Li Lin Line BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 6 . 1 9 0 0 0 0 1 +The traffic the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 7 : 1 10 0 0 0 0 1 +R1 [(PKT) r1 R R1 R1 R1 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 3 8 [()--],[--()],[()], 19 10 0 0 0 0 1 +S6 [(ODU2) s6 S S6 S6 S6 BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 3 8 [()--],[--()] 13 7 0 0 0 0 1 +The traffic the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 9 : 1 10 0 0 0 0 1 +R1 [(PKT) r1 R R1 R1 R1 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 3 9 [()-],[-()],[()], 17 9 0 0 0 0 1 +S2 [(ODU2)], s2 S S2 S2 S2 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 3 9 [()],[()),[()],[()], 20 10 0 0 0 0 1 +S15 [(ODU2)], s15 S S1 S15 S15 BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 3 9 [()],[()-],[-()] 16 9 0 0 0 0 1 +The CNC the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 10 - 1 10 0 0 0 0 1 +Private Line private P Pr Pri Priv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 10 ,,, 3 10 0 0 0 0 1 +R1 and r1 R R1 R1 R1 BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 3 10 . 1 1 0 0 0 0 1 +Busi, King, busi, B Bu Bus Busi BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 3 11 ,,. 3 9 0 0 1 0 0 +Expires March, expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 11 , 1 10 0 0 0 0 0 +[Page 20] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 11 [] 2 5 0 0 0 0 0 +Internet-Draft Transport internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 3 0 -- 2 10 0 0 1 0 1 +September 2019 september S Se Sep Sept BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 0 0 0 1 0 0 3 0 no 0 10 0 0 1 0 1 +The MDSC, the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 0 ,, 2 9 0 0 0 0 1 +configurations to configurations c co con conf BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 0 ,,, 3 9 0 0 0 0 1 +coordinate the coordinate c co coo coor BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 0 --, 3 9 0 0 0 0 1 +between nodes between b be bet betw BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 0 ,, 2 10 0 0 0 0 1 +configuration of configuration c co con conf BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 0 , 1 9 0 0 0 0 1 +in particular in i in in in BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 3 0 - 1 10 0 0 0 0 1 +S3 should s3 S S3 S3 S3 BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 3 0 -. 2 8 0 0 0 0 1 +4.5. Protection 4.5. 4 4. 4.5 4.5. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 3 3 .. 2 10 0 0 0 0 1 +Protection switching protection P Pr Pro Prot BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 3 - 1 8 0 0 0 0 1 +mechanism, typically mechanism, m me mec mech BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 3 , 1 9 0 0 0 0 1 +would be would w wo wou woul BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 3 ( 1 9 0 0 0 0 1 +common OTN common c co com comm BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 3 ),: 3 8 0 0 0 0 1 +bidirectional. This bidirectional. b bi bid bidi BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 3 .. 2 10 0 0 0 0 1 +Restoration methods restoration R Re Res Rest BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 4 no 0 10 0 0 0 0 1 +restore connectivity restore r re res rest BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 3 4 , 1 10 0 0 0 0 1 +network penalty network n ne net netw BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 3 4 . 1 9 0 0 0 0 1 +This section this T Th Thi This BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 5 no 0 10 0 0 0 0 1 +protection. The protection. p pr pro prot BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 5 . 1 10 0 0 0 0 1 +outside the outside o ou out outs BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 5 . 1 5 0 0 0 0 1 +The MDSC the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 6 no 0 10 0 0 0 0 1 +to request to t to to to BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 6 no 0 9 0 0 0 0 1 +configuration to configuration c co con conf BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 6 no 0 10 0 0 0 0 1 +in section in i in in in BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 3 6 .. 2 2 0 0 0 0 1 +Since in since S Si Sin Sinc BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 7 , 1 9 0 0 0 0 1 +network domain network n ne net netw BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 3 7 . 1 10 0 0 0 0 1 +be assumed be b be be be BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 7 no 0 9 0 0 0 0 1 +domain is domain d do dom doma BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 7 . 1 6 0 0 0 0 1 +4.5.1. Linear 4.5.1. 4 4. 4.5 4.5. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 3 9 ...(--) 7 10 0 0 0 0 1 +In order in I In In In BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 3 9 no 0 9 0 0 0 0 1 +4.3 from 4.3 4 4. 4.3 4.3 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 3 9 .-, 3 10 0 0 0 0 1 +MDSC can mdsc M MD MDS MDSC BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 3 9 no 0 9 0 0 0 0 1 +linear protection linear l li lin line BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 9 (.., 4 9 0 0 0 0 1 +for the for f fo for for BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 9 ). 2 6 0 0 0 0 1 +Busi, King, busi, B Bu Bus Busi BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 4 11 ,,. 3 9 0 0 1 0 0 +Expires March, expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 11 , 1 10 0 0 0 0 0 +[Page 21] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 11 [] 2 5 0 0 0 0 0 +Internet-Draft Transport internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 4 0 -- 2 10 0 0 1 0 1 +September 2019 september S Se Sep Sept BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 0 0 0 1 0 0 4 0 no 0 10 0 0 1 0 1 +It is it I It It It BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 0 no 0 10 0 0 0 0 1 +1+1 unidirectional 1+1 1 1+ 1+1 1+1 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 4 0 ,[- 3 10 0 0 0 0 1 +G.808.1] and g.808.1] G G. G.8 G.80 BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 4 0 ..][-..],[]. 12 8 0 0 0 0 1 +In these in I In In In BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 4 2 , 1 9 0 0 0 0 1 +transport entity, transport t tr tra tran BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 2 ,[-..],( 8 9 0 0 0 0 1 +and a and a an and and BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 2 ,[]) 4 10 0 0 0 0 1 +in the in i in in in BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 4 2 . 1 2 0 0 0 0 1 +Two cases two T Tw Two Two BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 3 : 1 10 0 0 0 0 1 +o In o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 4 4 , 1 10 0 0 0 0 1 +through the through t th thr thro BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 4 : 1 4 0 0 0 0 1 +Working transport working W Wo Wor Work BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 4 : 1 10 0 0 0 0 1 +S3, S1, s3, S S3 S3, S3, BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 4 4 ,,, 3 4 0 0 0 0 1 +S31, S33, s31, S S3 S31 S31, BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 4 4 ,,, 3 5 0 0 0 0 1 +S15, S18 s15, S S1 S15 S15, BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 4 4 , 1 3 0 0 0 0 1 +Protection transport protection P Pr Pro Prot BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 5 :,,, 4 10 0 0 0 0 1 +S32, S32, s32, S S3 S32 S32, BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 4 5 , 1 1 0 0 0 0 1 +S12, S17, s12, S S1 S12 S12, BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 4 5 ,, 2 3 0 0 0 0 1 +o In o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 4 6 , 1 10 0 0 0 0 1 +can pass can c ca can can BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 6 : 1 6 0 0 0 0 1 +Working transport working W Wo Wor Work BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 6 : 1 10 0 0 0 0 1 +S3, S5, s3, S S3 S3, S3, BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 4 6 ,,, 3 4 0 0 0 0 1 +S11, S12, s11, S S1 S11 S11, BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 4 6 ,,, 3 7 0 0 0 0 1 +Protection transport protection P Pr Pro Prot BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 7 :,,, 4 10 0 0 0 0 1 +S31, S33, s31, S S3 S31 S31, BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 4 7 ,,, 3 3 0 0 0 0 1 +S15, S18 s15, S S1 S15 S15, BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 4 7 , 1 2 0 0 0 0 1 +The PNCs the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 7 no 0 10 0 0 0 0 1 +transport entity, transport t tr tra tran BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 7 ,[-..],. 8 9 0 0 0 0 1 +Given the given G Gi Giv Give BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 9 no 0 9 0 0 0 0 1 +data plane data d da dat data BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 9 (), 3 10 0 0 0 0 1 +be in be b be be be BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 9 -. 2 2 0 0 0 0 1 +It is it I It It It BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 10 no 0 8 0 0 0 0 1 +switching, e.g., switching, s sw swi swit BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 10 ,..,, 5 10 0 0 0 0 1 +transport entity transport t tr tra tran BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 10 . 1 8 0 0 0 0 1 +Busi, King, busi, B Bu Bus Busi BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 4 11 ,,. 3 9 0 0 1 0 0 +Expires March, expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 11 , 1 10 0 0 0 0 0 +[Page 22] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 11 [] 2 5 0 0 0 0 0 +Internet-Draft Transport internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 4 0 -- 2 10 0 0 1 0 1 +September 2019 september S Se Sep Sept BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 0 0 0 1 0 0 4 0 no 0 10 0 0 1 0 1 +4.5.2. Segmented 4.5.2. 4 4. 4.5 4.5. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 4 0 ... 3 10 0 0 0 0 1 +To protect to T To To To BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 0 . 1 9 0 0 0 0 1 +failures within failures f fa fai fail BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 0 -, 2 10 0 0 0 0 1 +decide to decide d de dec deci BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 0 no 0 9 0 0 0 0 1 +protection between protection p pr pro prot BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 0 . 1 7 0 0 0 0 1 +For example, for F Fo For For BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 2 , 1 10 0 0 0 0 1 +between its between b be bet betw BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 2 : 1 5 0 0 0 0 1 +Working transport working W Wo Wor Work BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 3 : 1 10 0 0 0 0 1 +S3, S1, s3, S S3 S3, S3, BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 4 3 ,, 2 4 0 0 0 0 1 +Protection transport protection P Pr Pro Prot BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 4 :,,, 4 10 0 0 0 0 1 +MDSC can mdsc M MD MDS MDSC BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 4 4 no 0 10 0 0 0 0 1 +its edge its i it its its BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 4 : 1 4 0 0 0 0 1 +Working transport working W Wo Wor Work BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 5 : 1 10 0 0 0 0 1 +S15, S18 s15, S S1 S15 S15, BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 4 5 , 1 3 0 0 0 0 1 +Protection transport protection P Pr Pro Prot BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 5 :,,, 4 10 0 0 0 0 1 +MDSC can mdsc M MD MDS MDSC BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 4 6 no 0 10 0 0 0 0 1 +its edge its i it its its BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 6 : 1 4 0 0 0 0 1 +Working transport working W Wo Wor Work BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 7 : 1 10 0 0 0 0 1 +S31, S33, s31, S S3 S31 S31, BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 4 7 ,, 2 5 0 0 0 0 1 +Protection transport protection P Pr Pro Prot BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 7 :,, 3 10 0 0 0 0 1 +4.6. Notification 4.6. 4 4. 4.6 4.6. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 4 7 .. 2 10 0 0 0 0 1 +To realize to T To To To BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 8 , 1 10 0 0 0 0 1 +function, following function, f fu fun func BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 8 ,: 2 9 0 0 0 0 1 +1. Object 1. 1 1. 1. 1. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 4 8 . 1 10 0 0 0 0 1 +2. Object 2. 2 2. 2. 2. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 4 9 . 1 10 0 0 0 0 1 +3. Object 3. 3 3. 3. 3. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 4 9 . 1 10 0 0 0 0 1 +4. Alarm 4. 4 4. 4. 4. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 4 9 . 1 10 0 0 0 0 1 +There are there T Th The Ther BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 9 no 0 8 0 0 0 0 1 +section 4.2, section s se sec sect BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 9 .,. 3 10 0 0 0 0 1 +MDSC should mdsc M MD MDS MDSC BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 4 9 no 0 8 0 0 0 0 1 +Busi, King, busi, B Bu Bus Busi BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 4 11 ,,. 3 9 0 0 1 0 0 +Expires March, expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 11 , 1 10 0 0 0 0 0 +[Page 23] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 11 [] 2 5 0 0 0 0 0 +Internet-Draft Transport internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 4 0 -- 2 10 0 0 1 0 1 +September 2019 september S Se Sep Sept BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 0 0 0 1 0 0 4 0 no 0 10 0 0 1 0 1 +policy, such policy, p po pol poli BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 0 ,-, 3 10 0 0 0 0 1 +report the report r re rep repo BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 0 no 0 9 0 0 0 0 1 +MDSC. MDSC. mdsc. M MD MDS MDSC BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 4 0 . 1 0 0 0 0 0 1 +4.7. Path 4.7. 4 4. 4.7 4.7. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 4 1 .. 2 10 0 0 0 0 1 +It is it I It It It BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 1 no 0 10 0 0 0 0 1 +path computation path p pa pat path BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 1 (..,/). 7 6 0 0 0 0 1 +For example, for F Fo For For BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 2 ,,, 3 8 0 0 0 0 1 +service, as service, s se ser serv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 2 ,.., 4 9 0 0 0 0 1 +constraint to constraint c co con cons BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 2 (), 3 10 0 0 0 0 1 +a qualified a a a a a BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 1 0 0 0 0 0 4 2 : 1 3 0 0 0 0 1 +R1 [(PKT) r1 R R1 R1 R1 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 4 3 [()-],[(]),[(]),[(]), 21 10 0 0 0 0 1 +S31 [(ODU2)], s31 S S3 S31 S31 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 4 3 [()],[()],[()], 15 7 0 0 0 0 1 +S15 [(ODU2)], s15 S S1 S15 S15 BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 4 3 [()],[()],[-()] 15 7 0 0 0 0 1 +If the if I If If If BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 5 no 0 9 0 0 0 0 1 +S12, then s12, S S1 S12 S12, BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 4 5 ,, 2 10 0 0 0 0 1 +would be: would w wo wou woul BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 5 : 1 1 0 0 0 0 1 +R1 [(PKT) r1 R R1 R1 R1 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 4 5 [()-],[(]),[(]),[(]), 21 8 0 0 0 0 1 +S8 [(ODU2]), s8 S S8 S8 S8 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 4 5 [(]),[(]),[(]),[(]),[- 22 10 0 0 0 0 1 +(PKT)] (PKT)] (pkt)] ( (P (PK (PKT BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 4 5 ()] 3 1 0 0 0 0 1 +The mechanisms the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 7 no 0 9 0 0 0 0 1 +CMI are cmi C CM CMI CMI BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 4 7 . 1 9 0 0 0 0 1 +MDSC can mdsc M MD MDS MDSC BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 4 7 no 0 9 0 0 0 0 1 +its path its i it its its BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 7 ( 1 9 0 0 0 0 1 +domains and domains d do dom doma BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 7 -) 2 9 0 0 0 0 1 +provide to provide p pr pro prov BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 7 , 1 10 0 0 0 0 1 +computation procedures computation c co com comp BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 7 ( 1 10 0 0 0 0 1 +view of view v vi vie view BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 7 ). 2 2 0 0 0 0 1 +5. YANG 5. 5 5. 5. 5. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 4 9 . 1 10 0 0 0 0 1 +This section this T Th Thi This BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 10 no 0 10 0 0 0 0 1 +MPIs, between mpis, M MP MPI MPIs BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 4 10 ,, 2 9 0 0 0 0 1 +described in described d de des desc BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 10 . 1 3 0 0 0 0 1 +The YANG the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 11 [-] 3 10 0 0 0 0 1 +the MPI. the t th the the BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 11 . 1 1 0 0 0 0 1 +Busi, King, busi, B Bu Bus Busi BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 4 11 ,,. 3 9 0 0 1 0 0 +Expires March, expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 11 , 1 10 0 0 0 0 0 +[Page 24] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 11 [] 2 5 0 0 0 0 0 +Internet-Draft Transport internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 4 0 -- 2 10 0 0 1 0 1 +September 2019 september S Se Sep Sept BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 0 0 0 1 0 0 4 0 no 0 10 0 0 1 0 1 +Section 5.1 section S Se Sec Sect BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 0 . 1 10 0 0 0 0 1 +to the to t to to to BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 0 . 1 6 0 0 0 0 1 +Section 5.2 section S Se Sec Sect BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 0 ., 2 10 0 0 0 0 1 +their own their t th the thei BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 0 , 1 9 0 0 0 0 1 +different services different d di dif diff BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 0 .. 2 6 0 0 0 0 1 +Section 5.3 section S Se Sec Sect BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 1 ., 2 10 0 0 0 0 1 +including end-to-end including i in inc incl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 1 --, 3 9 0 0 0 0 1 +intra-domain and intra-domain i in int intr BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 1 --. 3 5 0 0 0 0 1 +5.1. YANG 5.1. 5 5. 5.1 5.1. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 4 2 .. 2 10 0 0 0 0 1 +Each PNC each E Ea Eac Each BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 2 , 1 9 0 0 0 0 1 +as described as a as as as BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 2 .,, 3 10 0 0 0 0 1 +in [RFC8345], in i in in in BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 4 2 [],, 4 9 0 0 0 0 1 +[TE-TOPO], and [te-topo], [ [T [TE [TE- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 4 2 [-],-, 6 9 0 0 0 0 1 +defined in defined d de def defi BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 2 [-]. 4 3 0 0 0 0 1 +The [OTN-TOPO] the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 4 [-] 3 8 0 0 0 0 1 +topology also topology t to top topo BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 4 no 0 9 0 0 0 0 1 +transparent client transparent t tr tra tran BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 4 ,.. 3 8 0 0 0 0 1 +[CLIENT-SIGNAL]. These [client-signal]. [ [C [CL [CLI BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 4 4 [-].- 5 10 0 0 0 0 1 +that can that t th tha that BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 4 (.., 4 10 0 0 0 0 1 +STM-64 physical stm-64 S ST STM STM- BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 4 4 -). 3 5 0 0 0 0 1 +In order in I In In In BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 4 6 , 1 10 0 0 0 0 1 +4.3.2 and 4.3.2 4 4. 4.3 4.3. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 4 6 ....,, 6 8 0 0 0 0 1 +configured as configured c co con conf BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 6 , 1 9 0 0 0 0 1 +within its within w wi wit with BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 6 , 1 10 0 0 0 0 1 +YANG models, yang Y YA YAN YANG BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 1 0 0 0 0 0 0 4 6 ,[], 4 8 0 0 0 0 1 +augmentations, defined augmentations, a au aug augm BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 6 ,[-], 5 8 0 0 0 0 1 +technology-specific YANG technology-specific t te tec tech BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 6 -,[-]. 6 9 0 0 0 0 1 +These links these T Th The Thes BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 6 - 1 9 0 0 0 0 1 +configured as configured c co con conf BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 6 / 1 9 0 0 0 0 1 +as transparent as a as as as BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 6 (..,-). 7 9 0 0 0 0 1 +In this in I In In In BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 4 6 , 1 9 0 0 0 0 1 +the OTN the t th the the BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 6 . 1 6 0 0 0 0 1 +It is it I It It It BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 10 no 0 9 0 0 0 0 1 +document (where document d do doc docu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 10 (), 3 9 0 0 0 0 1 +Ethernet abstract ethernet E Et Eth Ethe BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 4 10 no 0 10 0 0 0 0 1 +Ethernet client ethernet E Et Eth Ethe BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 4 10 : 1 9 0 0 0 0 1 +are reported are a ar are are BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 10 . 1 7 0 0 0 0 1 +Busi, King, busi, B Bu Bus Busi BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 4 11 ,,. 3 9 0 0 1 0 0 +Expires March, expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 11 , 1 10 0 0 0 0 0 +[Page 25] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 11 [] 2 5 0 0 0 0 0 +Internet-Draft Transport internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 4 0 -- 2 10 0 0 1 0 1 +September 2019 september S Se Sep Sept BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 0 0 0 1 0 0 4 0 no 0 10 0 0 1 0 1 +5.1.1. Domain 5.1.1. 5 5. 5.1 5.1. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 4 0 ... 3 10 0 0 0 0 1 +PNC1 provides pnc1 P PN PNC PNC1 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 4 0 , 1 10 0 0 0 0 1 +in section in i in in in BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 4 0 .., 3 9 0 0 0 0 1 +instances with instances i in ins inst BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 0 . 1 5 0 0 0 0 1 +The first the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 1 no 0 9 0 0 0 0 1 +topology view topology t to top topo BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 1 (),- 4 10 0 0 0 0 1 +augmentations [OTN-TOPO], augmentations a au aug augm BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 1 [-],(..,) 9 10 0 0 0 0 1 +and only and a an and and BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 1 -( 2 9 0 0 0 0 1 +the inter-domain the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 1 - 1 9 0 0 0 0 1 +can support can c ca can can BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 1 /), 3 9 0 0 0 0 1 +Figure 3 figure F Fi Fig Figu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 1 . 1 2 0 0 0 0 1 +................................... ................................... ................................... . .. ... .... BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 4 3 ................................... 35 10 0 0 0 0 1 +: : : : : : : BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 3 : 1 0 0 0 0 0 1 +: : : : : : : BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 3 : 1 0 0 0 0 0 1 +: : : : : : : BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 3 : 1 0 0 0 0 0 1 ++-----------------+ +-----------------+ +-----------------+ + +- +-- +--- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 4 3 ----------------- 17 5 0 0 0 0 1 +: : : : : : : BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 3 : 1 0 0 0 0 0 1 +: : : : : : : BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 3 : 1 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 3 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 3 no 0 0 0 0 0 0 1 +: : : : : : : BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 3 : 1 0 0 0 0 0 1 +(R1)----------| (R1)----------| (r1)----------| ( (R (R1 (R1) BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 4 3 ()---------- 12 4 0 0 0 0 1 +|----------(S31) |----------(S31) |----------(s31) | |- |-- |--- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 4 3 ----------() 12 4 0 0 0 0 1 +: AN1-1 : : : : : BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 3 :- 2 2 0 0 0 0 1 +| AN1-7 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 3 -: 2 2 0 0 0 0 1 +: : : : : : : BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 3 : 1 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 3 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 3 no 0 0 0 0 0 0 1 +: : : : : : : BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 3 : 1 0 0 0 0 0 1 +(R3)----------| (R3)----------| (r3)----------| ( (R (R3 (R3) BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 4 3 ()---------- 12 4 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 3 no 0 0 0 0 0 0 1 +: : : : : : : BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 3 : 1 0 0 0 0 0 1 +: AN1-2 : : : : : BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 3 :- 2 2 0 0 0 0 1 +AN1 AN1 an1 A AN AN1 AN1 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 4 3 no 0 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 3 no 0 0 0 0 0 0 1 +: : : : : : : BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 3 : 1 0 0 0 0 0 1 +: : : : : : : BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 3 : 1 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 3 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 3 no 0 0 0 0 0 0 1 +: : : : : : : BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 3 : 1 0 0 0 0 0 1 +(R4)----------| (R4)----------| (r4)----------| ( (R (R4 (R4) BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 4 3 ()---------- 12 4 0 0 0 0 1 +|----------(S32) |----------(S32) |----------(s32) | |- |-- |--- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 4 3 ----------() 12 4 0 0 0 0 1 +: AN1-3 : : : : : BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 3 :- 2 2 0 0 0 0 1 +| AN1-6 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 3 -: 2 2 0 0 0 0 1 +: : : : : : : BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 3 : 1 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 3 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 3 no 0 0 0 0 0 0 1 +: : : : : : : BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 3 : 1 0 0 0 0 0 1 +: : : : : : : BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 3 : 1 0 0 0 0 0 1 ++-----------------+ +-----------------+ +-----------------+ + +- +-- +--- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 4 3 ----------------- 17 5 0 0 0 0 1 +: : : : : : : BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 3 : 1 0 0 0 0 0 1 +: : : : : : : BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 3 : 1 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 3 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 3 no 0 0 0 0 0 0 1 +: : : : : : : BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 3 : 1 0 0 0 0 0 1 +: : : : : : : BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 3 : 1 0 0 0 0 0 1 +AN1-4 | an1-4 A AN AN1 AN1- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 4 3 - 1 2 0 0 0 0 1 +| AN1-5 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 3 - 1 2 0 0 0 0 1 +: : : : : : : BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 3 : 1 0 0 0 0 0 1 +:..........|..........|...........: :..........|..........|...........: :..........|..........|...........: : :. :.. :... BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 4 3 :...............................: 33 10 0 0 0 0 1 +| | | | | | | BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 9 no 0 3 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 9 no 0 3 0 0 0 0 1 +(S11) (S11) (s11) ( (S (S1 (S11 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 4 9 () 2 10 0 0 0 0 1 +(S12) (S12) (s12) ( (S (S1 (S12 BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 4 9 () 2 10 0 0 0 0 1 +Figure 3 figure F Fi Fig Figu BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 9 -() 3 10 0 0 0 0 1 +The second the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 9 no 0 9 0 0 0 0 1 +abstract topology abstract a ab abs abst BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 9 (), 3 10 0 0 0 0 1 +technology-specific augmentations technology-specific t te tec tech BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 9 -[-], 5 10 0 0 0 0 1 +abstract TE abstract a ab abs abst BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 9 (..,) 5 10 0 0 0 0 1 +(which represent (which ( (w (wh (whi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 9 ( 1 9 0 0 0 0 1 +Ethernet client ethernet E Et Eth Ethe BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 4 9 ),. 3 8 0 0 0 0 1 +Busi, King, busi, B Bu Bus Busi BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 4 11 ,,. 3 9 0 0 1 0 0 +Expires March, expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 11 , 1 10 0 0 0 0 0 +[Page 26] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 11 [] 2 5 0 0 0 0 0 +Internet-Draft Transport internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 4 0 -- 2 10 0 0 1 0 1 +September 2019 september S Se Sep Sept BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 0 0 0 1 0 0 4 0 no 0 10 0 0 1 0 1 +................................... ................................... ................................... . .. ... .... BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 4 0 ................................... 35 10 0 0 0 0 1 +: : : : : : : BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 0 : 1 0 0 0 0 0 1 +: : : : : : : BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 0 : 1 0 0 0 0 0 1 +: : : : : : : BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 0 : 1 0 0 0 0 0 1 ++-----------------+ +-----------------+ +-----------------+ + +- +-- +--- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 4 0 ----------------- 17 5 0 0 0 0 1 +: : : : : : : BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 0 : 1 0 0 0 0 0 1 +: : : : : : : BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 0 : 1 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 0 no 0 0 0 0 0 0 1 +: : : : : : : BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 0 : 1 0 0 0 0 0 1 +(R1)----------| (R1)----------| (r1)----------| ( (R (R1 (R1) BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 4 0 ()---------- 12 4 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 0 no 0 0 0 0 0 0 1 +: : : : : : : BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 0 : 1 0 0 0 0 0 1 +: AN1-1 : : : : : BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 0 :- 2 2 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 0 no 0 0 0 0 0 0 1 +: : : : : : : BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 0 : 1 0 0 0 0 0 1 +: : : : : : : BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 0 : 1 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 0 no 0 0 0 0 0 0 1 +: : : : : : : BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 0 : 1 0 0 0 0 0 1 +(R2)----------| (R2)----------| (r2)----------| ( (R (R2 (R2) BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 4 0 ()---------- 12 4 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 0 no 0 0 0 0 0 0 1 +: : : : : : : BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 0 : 1 0 0 0 0 0 1 +: AN1-8 : : : : : BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 0 :- 2 2 0 0 0 0 1 +AN1 AN1 an1 A AN AN1 AN1 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 4 0 no 0 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 0 no 0 0 0 0 0 0 1 +: : : : : : : BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 0 : 1 0 0 0 0 0 1 +: : : : : : : BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 0 : 1 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 0 no 0 0 0 0 0 0 1 +: : : : : : : BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 0 : 1 0 0 0 0 0 1 +: : : : : : : BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 0 : 1 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 0 no 0 0 0 0 0 0 1 +: : : : : : : BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 0 : 1 0 0 0 0 0 1 +: : : : : : : BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 0 : 1 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 0 no 0 0 0 0 0 0 1 +: : : : : : : BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 0 : 1 0 0 0 0 0 1 +: : : : : : : BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 0 : 1 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 0 no 0 0 0 0 0 0 1 +: : : : : : : BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 0 : 1 0 0 0 0 0 1 +: : : : : : : BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 0 : 1 0 0 0 0 0 1 ++-----------------+ +-----------------+ +-----------------+ + +- +-- +--- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 4 0 ----------------- 17 5 0 0 0 0 1 +: : : : : : : BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 0 : 1 0 0 0 0 0 1 +: : : : : : : BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 0 : 1 0 0 0 0 0 1 +: : : : : : : BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 0 : 1 0 0 0 0 0 1 +:.................................: :.................................: :.................................: : :. :.. :... BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 4 0 :.................................: 35 10 0 0 0 0 1 +Figure 4 figure F Fi Fig Figu BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 4 -() 3 10 0 0 0 0 1 +As described as A As As As BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 5 ., 2 9 0 0 0 0 1 +the inter-domain the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 5 -(..,) 6 9 0 0 0 0 1 +are pre-configured are a ar are are BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 5 -, 2 10 0 0 0 0 1 +OTN topology otn O OT OTN OTN BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 4 5 (..,- 5 9 0 0 0 0 1 +Link Termination link L Li Lin Link BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 4 5 () 2 9 0 0 0 0 1 +and S31). and a an and and BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 5 ). 2 1 0 0 0 0 1 +In order in I In In In BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 4 7 ..: 3 10 0 0 0 0 1 +o the o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 4 7 no 0 8 0 0 0 0 1 +multi-function access multi-function m mu mul mult BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 7 -, 2 10 0 0 0 0 1 +trail or trail t tr tra trai BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 7 -; 2 7 0 0 0 0 1 +o the o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 5 9 - 1 10 0 0 0 0 1 +as a as a as as as BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 9 ,; 2 6 0 0 0 0 1 +o the o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 5 9 no 0 8 0 0 0 0 1 +multi-function access multi-function m mu mul mult BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 9 - 1 10 0 0 0 0 1 +trail or trail t tr tra trai BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 9 -; 2 5 0 0 0 0 1 +o the o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 5 10 no 0 10 0 0 0 0 1 +pre-configured as pre-configured p pr pre pre- BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 10 --. 3 7 0 0 0 0 1 +Busi, King, busi, B Bu Bus Busi BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 5 11 ,,. 3 9 0 0 1 0 0 +Expires March, expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 11 , 1 10 0 0 0 0 0 +[Page 27] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 11 [] 2 5 0 0 0 0 0 +Internet-Draft Transport internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 5 0 -- 2 10 0 0 1 0 1 +September 2019 september S Se Sep Sept BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 0 0 0 1 0 0 5 0 no 0 10 0 0 1 0 1 +Therefore PNC1 therefore T Th The Ther BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 0 , 1 10 0 0 0 0 1 +within the within w wi wit with BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 0 : 1 4 0 0 0 0 1 +o two o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 5 1 ,-- 3 9 0 0 0 0 1 +respectively, abstracting respectively, r re res resp BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 1 , 1 10 0 0 0 0 1 +R1 and r1 R R1 R1 R1 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 1 , 1 9 0 0 0 0 1 +that they that t th tha that BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 1 - 1 9 0 0 0 0 1 +connections; connections; connections; c co con conn BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 1 ; 1 1 0 0 0 0 1 +o one o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 5 3 ,-, 3 10 0 0 0 0 1 +physical access physical p ph phy phys BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 3 , 1 9 0 0 0 0 1 +support STM-64 support s su sup supp BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 5 3 -. 2 8 0 0 0 0 1 +The information the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 5 no 0 10 0 0 0 0 1 +as the as a as as as BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 5 no 0 9 0 0 0 0 1 +configured as configured c co con conf BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 5 no 0 9 0 0 0 0 1 +OTN topology. otn O OT OTN OTN BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 5 5 . 1 2 0 0 0 0 1 +Therefore, PNC1 therefore, T Th The Ther BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 7 ,,, 3 9 0 0 0 0 1 +abstract TE abstract a ab abs abst BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 7 ,--, 4 10 0 0 0 0 1 +abstracting the abstracting a ab abs abst BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 7 no 0 9 0 0 0 0 1 +access link access a ac acc acce BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 7 , 1 10 0 0 0 0 1 +support Ethernet support s su sup supp BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 5 7 -- 2 9 0 0 0 0 1 +classifications. The classifications. c cl cla clas BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 7 . 1 9 0 0 0 0 1 +physical network physical p ph phy phys BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 7 , 1 9 0 0 0 0 1 +shown in shown s sh sho show BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 7 . 1 2 0 0 0 0 1 +Busi, King, busi, B Bu Bus Busi BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 5 11 ,,. 3 9 0 0 1 0 0 +Expires March, expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 11 , 1 10 0 0 0 0 0 +[Page 28] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 11 [] 2 5 0 0 0 0 0 +Internet-Draft Transport internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 5 0 -- 2 10 0 0 1 0 1 +September 2019 september S Se Sep Sept BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 0 0 0 1 0 0 5 0 no 0 10 0 0 1 0 1 +.................................. .................................. .................................. . .. ... .... BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 5 0 .................................. 34 7 0 0 0 0 1 +: : : : : : : BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 0 : 1 0 0 0 0 0 1 +: : : : : : : BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 0 : 1 0 0 0 0 0 1 +: : : : : : : BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 0 : 1 0 0 0 0 0 1 +Physical Topology physical P Ph Phy Phys BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 0 no 0 5 0 0 0 0 1 +: : : : : : : BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 0 : 1 0 0 0 0 0 1 +: : : : : : : BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 0 : 1 0 0 0 0 0 1 +: : : : : : : BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 0 : 1 0 0 0 0 0 1 +: : : : : : : BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 0 : 1 0 0 0 0 0 1 ++----+ +----+ +----+ + +- +-- +--- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 5 0 ---- 4 1 0 0 0 0 1 ++----+ +----+ +----+ + +- +-- +--- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 5 0 ---- 4 1 0 0 0 0 1 +: : : : : : : BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 0 : 1 0 0 0 0 0 1 +: : : : : : : BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 0 : 1 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 0 no 0 0 0 0 0 0 1 +|S1-1 |S1-1 |s1-1 | |S |S1 |S1- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 0 - 1 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 0 no 0 0 0 0 0 0 1 +|S2-3: |S2-3: |s2-3: | |S |S2 |S2- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 0 -: 2 1 0 0 0 0 1 +: : : : : : : BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 0 : 1 0 0 0 0 0 1 +| S1 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 0 ---------------() 17 6 0 0 0 0 1 +: : : : : : : BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 0 : 1 0 0 0 0 0 1 ++----+ +----+ +----+ + +- +-- +--- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 5 0 ---- 4 1 0 0 0 0 1 +S2-1+----+ S2-1+----+ s2-1+----+ S S2 S2- S2-1 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 0 ----- 5 2 0 0 0 0 1 +: : : : : : : BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 0 : 1 0 0 0 0 0 1 +: : : : : : : BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 0 : 1 0 0 0 0 0 1 +S1-2/ S1-2/ s1-2/ S S1 S1- S1-2 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 0 -/ 2 1 0 0 0 0 1 +|S2-2 : |s2-2 | |S |S2 |S2- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 0 -: 2 1 0 0 0 0 1 +: : : : : : : BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 0 : 1 0 0 0 0 0 1 +S3-4/ S3-4/ s3-4/ S S3 S3- S3-4 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 0 -/ 2 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 0 no 0 0 0 0 0 0 1 +: : : : : : : BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 0 : 1 0 0 0 0 0 1 +: : : : : : : BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 0 : 1 0 0 0 0 0 1 ++----+ +----+ +----+ + +- +-- +--- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 5 0 ---- 4 1 0 0 0 0 1 ++----+ +----+ +----+ + +- +-- +--- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 5 0 ---- 4 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 0 no 0 0 0 0 0 0 1 +: : : : : : : BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 0 : 1 0 0 0 0 0 1 +: : : : : : : BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 0 : 1 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 0 no 0 0 0 0 0 0 1 +|3 1| |3 | |3 |3 |3 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 0 no 0 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 0 no 0 0 0 0 0 0 1 +: : : : : : : BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 0 : 1 0 0 0 0 0 1 +(R1)-------| S3 (r1)-------| ( (R (R1 (R1) BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 0 ()---------- 12 5 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 0 no 0 0 0 0 0 0 1 +: : : : : : : BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 0 : 1 0 0 0 0 0 1 +:S3-1+----+ :S3-1+----+ :s3-1+----+ : :S :S3 :S3- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 0 :----- 6 2 0 0 0 0 1 ++----+ +----+ +----+ + +- +-- +--- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 5 0 ---- 4 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 0 no 0 0 0 0 0 0 1 +: : : : : : : BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 0 : 1 0 0 0 0 0 1 +: : : : : : : BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 0 : 1 0 0 0 0 0 1 +S3-2 \ s3-2 S S3 S3- S3-2 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 0 - 1 1 0 0 0 0 1 +\S4-2 \S4-2 \s4-2 \ \S \S4 \S4- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 0 - 1 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 0 no 0 0 0 0 0 0 1 +: : : : : : : BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 0 : 1 0 0 0 0 0 1 +: : : : : : : BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 0 : 1 0 0 0 0 0 1 +\S5-1 \S5-1 \s5-1 \ \S \S5 \S5- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 0 - 1 1 0 0 0 0 1 +\ \ \ \ \ \ \ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 0 no 0 0 0 0 0 0 1 +: : : : : : : BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 0 : 1 0 0 0 0 0 1 +: : : : : : : BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 0 : 1 0 0 0 0 0 1 ++----+ +----+ +----+ + +- +-- +--- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 5 0 ---- 4 1 0 0 0 0 1 +\ \ \ \ \ \ \ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 0 no 0 0 0 0 0 0 1 +: : : : : : : BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 0 : 1 0 0 0 0 0 1 +: : : : : : : BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 0 : 1 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 0 no 0 0 0 0 0 0 1 +\S8-2| \S8-2| \s8-2| \ \S \S8 \S8- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 0 - 1 1 0 0 0 0 1 +: : : : : : : BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 0 : 1 0 0 0 0 0 1 +: : : : : : : BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 0 : 1 0 0 0 0 0 1 +| S5 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 0 no 0 1 0 0 0 0 1 +\ \ \ \ \ \ \ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 0 no 0 0 0 0 0 0 1 +: : : : : : : BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 0 : 1 0 0 0 0 0 1 +: : : : : : : BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 0 : 1 0 0 0 0 0 1 ++----+ +----+ +----+ + +- +-- +--- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 5 0 ---- 4 1 0 0 0 0 1 +\ |S8-1 \ \ \ \ \ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 0 -: 2 2 0 0 0 0 1 +(R2)--------2/ (R2)--------2/ (r2)--------2/ ( (R (R2 (R2) BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 0 ()--------/ 11 3 0 0 0 0 1 +\3 \3 \3 \ \3 \3 \3 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 0 no 0 0 0 0 0 0 1 +\ | \ \ \ \ \ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 0 no 0 0 0 0 0 0 1 +: : : : : : : BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 0 : 1 0 0 0 0 0 1 +:S6-1 \ :s6-1 : :S :S6 :S6- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 0 :-/ 3 2 0 0 0 0 1 +\1 \1 \1 \ \1 \1 \1 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 0 no 0 0 0 0 0 0 1 +\| \| \| \ \| \| \| BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 5 0 no 0 0 0 0 0 0 1 +: : : : : : : BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 0 : 1 0 0 0 0 0 1 +: : : : : : : BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 0 : 1 0 0 0 0 0 1 ++----+ +----+ +----+ + +- +-- +--- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 5 0 ---- 4 1 0 0 0 0 1 ++----+ +----+ +----+ + +- +-- +--- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 5 0 ---- 4 1 0 0 0 0 1 ++----+ +----+ +----+ + +- +-- +--- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 5 0 ---- 4 1 0 0 0 0 1 +: : : : : : : BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 0 : 1 0 0 0 0 0 1 +: : : : : : : BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 0 : 1 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 0 no 0 0 0 0 0 0 1 +|S8-5: |S8-5: |s8-5: | |S |S8 |S8- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 0 -: 2 1 0 0 0 0 1 +(R3)-------| S6 (r3)-------| ( (R (R3 (R3) BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 0 ()--------------------() 24 10 0 0 0 0 1 +:S6-2+----+4 2+----+4 :s6-2+----+4 : :S :S6 :S6- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 0 :------------- 14 6 0 0 0 0 1 +: : : : : : : BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 0 : 1 0 0 0 0 0 1 +: : : : : : : BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 0 : 1 0 0 0 0 0 1 +/ / / / / / / BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 0 / 1 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 0 no 0 0 0 0 0 0 1 +: : : : : : : BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 0 : 1 0 0 0 0 0 1 +(R3)-------- (R3)-------- (r3)-------- ( (R (R3 (R3) BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 0 ()-------- 10 2 0 0 0 0 1 +S7-3 | s7-3 S S7 S7- S7-3 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 0 - 1 1 0 0 0 0 1 +| S8-4 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 0 -: 2 1 0 0 0 0 1 +:S6-3 :S6-3 :s6-3 : :S :S6 :S6- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 0 :- 2 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 0 no 0 0 0 0 0 0 1 +: : : : : : : BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 0 : 1 0 0 0 0 0 1 +:...............|........|.......: :...............|........|.......: :...............|........|.......: : :. :.. :... BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 5 0 :..............................: 32 7 0 0 0 0 1 +| | | | | | | BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 9 no 0 3 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 9 no 0 3 0 0 0 0 1 +(S11) (S11) (s11) ( (S (S1 (S11 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 9 () 2 10 0 0 0 0 1 +(S12) (S12) (s12) ( (S (S1 (S12 BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 9 () 2 10 0 0 0 0 1 +Figure 5 figure F Fi Fig Figu BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 9 - 1 10 0 0 0 0 1 +The PNC1 the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 10 no 0 9 0 0 0 0 1 +responsibility to responsibility r re res resp BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 10 no 0 9 0 0 0 0 1 +single TE single s si sin sing BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 10 no 0 10 0 0 0 0 1 +MPI abstract mpi M MP MPI MPI BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 5 10 no 0 9 0 0 0 0 1 +controlled by controlled c co con cont BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 10 : 1 3 0 0 0 0 1 +Busi, King, busi, B Bu Bus Busi BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 5 11 ,,. 3 9 0 0 1 0 0 +Expires March, expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 11 , 1 10 0 0 0 0 0 +[Page 29] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 11 [] 2 5 0 0 0 0 0 +Internet-Draft Transport internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 5 0 -- 2 10 0 0 1 0 1 +September 2019 september S Se Sep Sept BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 0 0 0 1 0 0 5 0 no 0 10 0 0 1 0 1 +Physical Interface physical P Ph Phy Phys BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 0 no 0 10 0 0 0 0 1 +OTN Topology otn O OT OTN OTN BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 5 0 no 0 8 0 0 0 0 1 +ETH Topology eth E ET ETH ETH BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 5 0 no 0 8 0 0 0 0 1 +(Figure 5) (figure ( (F (Fi (Fig BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 0 () 2 5 0 0 0 0 1 +(Figure 3) (figure ( (F (Fi (Fig BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 0 () 2 5 0 0 0 0 1 +(Figure 4) (figure ( (F (Fi (Fig BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 0 () 2 5 0 0 0 0 1 +S2-3 S2-3 s2-3 S S2 S2- S2-3 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 0 - 1 2 0 0 0 0 1 +AN1-7 AN1-7 an1-7 A AN AN1 AN1- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 0 - 1 3 0 0 0 0 1 +S3-1 S3-1 s3-1 S S3 S3- S3-1 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 0 - 1 2 0 0 0 0 1 +AN1-1 AN1-1 an1-1 A AN AN1 AN1- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 0 - 1 3 0 0 0 0 1 +AN1-1 AN1-1 an1-1 A AN AN1 AN1- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 0 - 1 3 0 0 0 0 1 +S6-1 S6-1 s6-1 S S6 S6- S6-1 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 0 - 1 2 0 0 0 0 1 +AN1-8 AN1-8 an1-8 A AN AN1 AN1- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 0 - 1 3 0 0 0 0 1 +S6-2 S6-2 s6-2 S S6 S6- S6-2 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 0 - 1 2 0 0 0 0 1 +AN1-2 AN1-2 an1-2 A AN AN1 AN1- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 0 - 1 3 0 0 0 0 1 +S6-3 S6-3 s6-3 S S6 S6- S6-3 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 0 - 1 2 0 0 0 0 1 +AN1-3 AN1-3 an1-3 A AN AN1 AN1- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 0 - 1 3 0 0 0 0 1 +S7-3 S7-3 s7-3 S S7 S7- S7-3 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 0 - 1 2 0 0 0 0 1 +AN1-4 AN1-4 an1-4 A AN AN1 AN1- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 0 - 1 3 0 0 0 0 1 +S8-4 S8-4 s8-4 S S8 S8- S8-4 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 0 - 1 2 0 0 0 0 1 +AN1-5 AN1-5 an1-5 A AN AN1 AN1- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 0 - 1 3 0 0 0 0 1 +S8-5 S8-5 s8-5 S S8 S8- S8-5 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 0 - 1 2 0 0 0 0 1 +AN1-6 AN1-6 an1-6 A AN AN1 AN1- BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 0 - 1 3 0 0 0 0 1 +Appendix B.1.1 appendix A Ap App Appe BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 2 ..("-- 6 9 0 0 0 0 1 +topology.json") describing topology.json") t to top topo BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 2 .") 3 9 0 0 0 0 1 +the PNC1, the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 2 ,[],[-][-], 11 10 0 0 0 0 1 +at MPI1. at a at at at BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 2 . 1 1 0 0 0 0 1 +It is it I It It It BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 3 no 0 10 0 0 0 0 1 +the attributes the t th the the BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 3 ,: 2 9 0 0 0 0 1 +o YANG o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 5 4 no 0 10 0 0 0 0 1 +not shown; not n no not not BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 4 ; 1 1 0 0 0 0 1 +o The o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 5 5 no 0 9 0 0 0 0 1 +available at available a av ava avai BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 5 -(-) 4 10 0 0 0 0 1 +are also are a ar are are BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 5 ; 1 8 0 0 0 0 1 +o The o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 5 6 no 0 9 0 0 0 0 1 +attributes in attributes a at att attr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 6 no 0 10 0 0 0 0 1 +document are document d do doc docu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 6 "//" 4 8 0 0 0 0 1 +included only included i in inc incl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 6 (.., 4 9 0 0 0 0 1 +Link from link L Li Lin Link BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 5 6 --). 4 10 0 0 0 0 1 +5.1.2. Domain 5.1.2. 5 5. 5.1 5.1. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 8 ... 3 10 0 0 0 0 1 +PNC2 provides pnc2 P PN PNC PNC2 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 8 , 1 10 0 0 0 0 1 +in section in i in in in BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 5 8 .,,, 4 9 0 0 0 0 1 +instances with instances i in ins inst BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 8 : 1 5 0 0 0 0 1 +o the o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 5 9 no 0 9 0 0 0 0 1 +view (MPI2 view v vi vie view BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 9 (),(..,) 8 10 0 0 0 0 1 +and only and a an and and BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 9 -( 2 8 0 0 0 0 1 +represent the represent r re rep repr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 9 - 1 10 0 0 0 0 1 +links which links l li lin link BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 9 /); 3 9 0 0 0 0 1 +Busi, King, busi, B Bu Bus Busi BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 5 11 ,,. 3 9 0 0 1 0 0 +Expires March, expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 11 , 1 10 0 0 0 0 0 +[Page 30] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 11 [] 2 5 0 0 0 0 0 +Internet-Draft Transport internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 5 0 -- 2 10 0 0 1 0 1 +September 2019 september S Se Sep Sept BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 0 0 0 1 0 0 5 0 no 0 10 0 0 1 0 1 +o the o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 5 0 no 0 10 0 0 0 0 1 +(MPI2 ETH (mpi2 ( (M (MP (MPI BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 0 (),(..,) 8 9 0 0 0 0 1 +and only and a an and and BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 0 ( 1 9 0 0 0 0 1 +physical links physical p ph phy phys BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 0 ). 2 8 0 0 0 0 1 +5.1.3. Domain 5.1.3. 5 5. 5.1 5.1. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 1 ... 3 10 0 0 0 0 1 +PNC3 provides pnc3 P PN PNC PNC3 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 1 , 1 10 0 0 0 0 1 +in section in i in in in BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 5 1 .,,, 4 9 0 0 0 0 1 +instances with instances i in ins inst BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 1 ,: 2 9 0 0 0 0 1 +o the o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 5 3 ( 1 10 0 0 0 0 1 +OTN Topology), otn O OT OTN OTN BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 5 3 ),, 3 9 0 0 0 0 1 +physical nodes physical p ph phy phys BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 3 (..,,), 7 9 0 0 0 0 1 +links, which links, l li lin link BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 3 ,- 2 9 0 0 0 0 1 +links; links; links; l li lin link BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 3 ; 1 1 0 0 0 0 1 +o the o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 5 4 no 0 9 0 0 0 0 1 +topology view topology t to top topo BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 4 (),, 4 10 0 0 0 0 1 +represent the represent r re rep repr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 4 (..,) 5 9 0 0 0 0 1 +only the only o on onl only BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 4 no 0 10 0 0 0 0 1 +links. links. links. l li lin link BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 4 . 1 1 0 0 0 0 1 +5.1.4. Multi-domain 5.1.4. 5 5. 5.1 5.1. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 6 ...- 4 10 0 0 0 0 1 +As assumed as A As As As BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 6 , 1 10 0 0 0 0 1 +knowledge of knowledge k kn kno know BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 6 no 0 9 0 0 0 0 1 +its own its i it its its BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 6 , 1 9 0 0 0 0 1 +these abstract these t th the thes BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 6 ,, 2 10 0 0 0 0 1 +own topology own o ow own own BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 6 -(- 3 9 0 0 0 0 1 +native topology), native n na nat nati BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 6 ),.[-]. 7 8 0 0 0 0 1 +Given the given G Gi Giv Give BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 8 , 1 9 0 0 0 0 1 +merge them merge m me mer merg BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 8 -. 2 9 0 0 0 0 1 +each domain each e ea eac each BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 8 (. 2 9 0 0 0 0 1 +[RFC8453] for [rfc8453] [ [R [RF [RFC BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 8 []),- 5 9 0 0 0 0 1 +domain link domain d do dom doma BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 8 no 0 10 0 0 0 0 1 +MDSC. MDSC. mdsc. M MD MDS MDSC BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 5 8 . 1 0 0 0 0 0 1 +The inter-domain the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 10 - 1 10 0 0 0 0 1 +PNCs, controlling pncs, P PN PNC PNCs BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 5 10 ,-. 3 8 0 0 0 0 1 +The MDSC the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 11 - 1 10 0 0 0 0 1 +domain links. domain d do dom doma BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 11 . 1 2 0 0 0 0 1 +Busi, King, busi, B Bu Bus Busi BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 5 11 ,,. 3 9 0 0 1 0 0 +Expires March, expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 11 , 1 10 0 0 0 0 0 +[Page 31] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 11 [] 2 5 0 0 0 0 0 +Internet-Draft Transport internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 5 0 -- 2 10 0 0 1 0 1 +September 2019 september S Se Sep Sept BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 0 0 0 1 0 0 5 0 no 0 10 0 0 1 0 1 +One possibility one O On One One BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 0 -,[- 4 9 0 0 0 0 1 +TOPO]: two topo]: T TO TOP TOPO BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 5 0 ]:-, 4 9 0 0 0 0 1 +topologies, terminating topologies, t to top topo BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 0 ,- 2 10 0 0 0 0 1 +can be can c ca can can BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 0 -, 2 9 0 0 0 0 1 +topology. topology. topology. t to top topo BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 0 . 1 1 0 0 0 0 1 +The value the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 1 - 1 10 0 0 0 0 1 +by a by b by by by BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 1 , 1 9 0 0 0 0 1 +domains. Alternatively, domains. d do dom doma BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 1 ., 2 9 0 0 0 0 1 +discovery mechanisms discovery d di dis disc BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 1 (..,-,[]). 10 9 0 0 0 0 1 +In case in I In In In BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 5 3 -, 2 10 0 0 0 0 1 +is under is i is is is BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 3 no 0 9 0 0 0 0 1 +values. values. values. v va val valu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 3 . 1 1 0 0 0 0 1 +In case in I In In In BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 5 4 -, 2 8 0 0 0 0 1 +information discovered information i in inf info BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 4 no 0 9 0 0 0 0 1 +to be to t to to to BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 4 -. 2 8 0 0 0 0 1 +encoding is encoding e en enc enco BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 4 , 1 10 0 0 0 0 1 +be consistent be b be be be BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 4 . 1 5 0 0 0 0 1 +In case in I In In In BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 5 5 - 1 9 0 0 0 0 1 +for the for f fo for for BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 5 -(.., 5 9 0 0 0 0 1 +even different even e ev eve even BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 5 ), 2 9 0 0 0 0 1 +the plug-id the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 5 - 1 10 0 0 0 0 1 +assign the assign a as ass assi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 5 --., 4 10 0 0 0 0 1 +the encoding the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 5 -- 2 9 0 0 0 0 1 +implementation specific implementation i im imp impl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 5 no 0 9 0 0 0 0 1 +the PNCs. the t th the the BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 5 . 1 1 0 0 0 0 1 +This document this T Th Thi This BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 8 - 1 9 0 0 0 0 1 +authority, with authority, a au aut auth BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 8 , 1 10 0 0 0 0 1 +authority namespace. authority a au aut auth BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 8 ., 2 9 0 0 0 0 1 +domain, are domain, d do dom doma BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 8 ,. 2 6 0 0 0 0 1 +Based on based B Ba Bas Base BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 10 -, 2 8 0 0 0 0 1 +abstract topologies abstract a ab abs abst BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 10 , 1 10 0 0 0 0 1 +sections 5.1.1, sections s se sec sect BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 10 ..,....,- 9 10 0 0 0 0 1 +TE topology te T TE TE TE BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 5 10 . 1 5 0 0 0 0 1 +Busi, King, busi, B Bu Bus Busi BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 5 11 ,,. 3 9 0 0 1 0 0 +Expires March, expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 11 , 1 10 0 0 0 0 0 +[Page 32] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 11 [] 2 5 0 0 0 0 0 +Internet-Draft Transport internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 5 0 -- 2 10 0 0 1 0 1 +September 2019 september S Se Sep Sept BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 0 0 0 1 0 0 5 0 no 0 10 0 0 1 0 1 +........................ ........................ ........................ . .. ... .... BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 5 0 ........................ 24 7 0 0 0 0 1 +: : : : : : : BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 0 : 1 0 0 0 0 0 1 +: : : : : : : BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 0 : 1 0 0 0 0 0 1 +: : : : : : : BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 0 : 1 0 0 0 0 0 1 +Network domain network N Ne Net Netw BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 5 0 no 0 5 0 0 0 0 1 +: : : : : : : BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 0 : 1 0 0 0 0 0 1 +............. ............. ............. . .. ... .... BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 5 0 ............. 13 4 0 0 0 0 1 +: : : : : : : BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 0 : 1 0 0 0 0 0 1 +Black Topology black B Bl Bla Blac BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 5 0 no 0 4 0 0 0 0 1 +: : : : : : : BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 0 : 1 0 0 0 0 0 1 +: : : : : : : BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 0 : 1 0 0 0 0 0 1 +: : : : : : : BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 0 : 1 0 0 0 0 0 1 +: : : : : : : BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 0 : 1 0 0 0 0 0 1 +Abstraction Abstraction abstraction A Ab Abs Abst BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 0 no 0 3 0 0 0 0 1 +: : : : : : : BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 0 : 1 0 0 0 0 0 1 +: Network : : : : : BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 0 :: 2 3 0 0 0 0 1 +: AN1-1 : : : : : BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 0 :- 2 2 0 0 0 0 1 +: : : : : : : BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 0 : 1 0 0 0 0 0 1 +: domain : : : : : BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 0 :: 2 3 0 0 0 0 1 +(R1)------------+ (R1)------------+ (r1)------------+ ( (R (R1 (R1) BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 0 ()------------ 14 5 0 0 0 0 1 +: : : : : : : BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 0 : 1 0 0 0 0 0 1 +: (White) : : : : : BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 0 :(): 4 3 0 0 0 0 1 +: : : : : : : BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 0 : 1 0 0 0 0 0 1 +\ \ \ \ \ \ \ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 0 no 0 0 0 0 0 0 1 ++--------------+ +--------------+ +--------------+ + +- +-- +--- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 5 0 -------------- 14 5 0 0 0 0 1 +: : : : : : : BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 0 : 1 0 0 0 0 0 1 +(R2)-----------+ + (r2)-----------+ ( (R (R2 (R2) BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 0 ()-----------/ 14 6 0 0 0 0 1 +: : : : : : : BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 0 : 1 0 0 0 0 0 1 +: : : : : : : BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 0 : 1 0 0 0 0 0 1 +\ \ \ \ \ \ \ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 0 no 0 0 0 0 0 0 1 +: : : : : : : BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 0 : 1 0 0 0 0 0 1 +: : : : : : : BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 0 : 1 0 0 0 0 0 1 +\| / \| \ \| \| \| BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 5 0 / 1 1 0 0 0 0 1 +: : : : : : : BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 0 : 1 0 0 0 0 0 1 +: : : : : : : BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 0 : 1 0 0 0 0 0 1 +\ \ \ \ \ \ \ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 0 no 0 0 0 0 0 0 1 +: : : : : : : BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 0 : 1 0 0 0 0 0 1 +(R3)-----------AN1 --+ (r3)-----------an1 ( (R (R3 (R3) BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 0 ()------------- 15 6 0 0 0 0 1 +: : : : : : : BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 0 : 1 0 0 0 0 0 1 +: : : : : : : BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 0 : 1 0 0 0 0 0 1 +S31 -----(R5) s31 S S3 S31 S31 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 0 -----() 7 4 0 0 0 0 1 +: : : : : : : BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 0 : 1 0 0 0 0 0 1 +/|\ /|\ /|\ / /| /|\ /|\ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 5 0 / 1 1 0 0 0 0 1 +\ \ \ \ \ \ \ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 0 no 0 0 0 0 0 0 1 +: : : : : : : BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 0 : 1 0 0 0 0 0 1 +: : : : : : : BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 0 : 1 0 0 0 0 0 1 +/ / / / / / / BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 0 / 1 0 0 0 0 0 1 +\ \ \ \ \ \ \ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 0 no 0 0 0 0 0 0 1 +: : : : : : : BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 0 : 1 0 0 0 0 0 1 +: : : : : : : BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 0 : 1 0 0 0 0 0 1 +(R4)-----------+ | (r4)-----------+ ( (R (R4 (R4) BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 0 ()----------- 13 6 0 0 0 0 1 ++---------S32 +---------S32 +---------s32 + +- +-- +--- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 0 --------- 9 4 0 0 0 0 1 +S33 --(R6) s33 S S3 S33 S33 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 0 --() 4 3 0 0 0 0 1 +: : : : : : : BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 0 : 1 0 0 0 0 0 1 +| \ | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 0 no 0 1 0 0 0 0 1 +: : : : : : : BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 0 : 1 0 0 0 0 0 1 +:/ \ :/ : :/ :/ :/ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 5 0 :/ 2 1 0 0 0 0 1 +/ / / / / / / BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 0 / 1 0 0 0 0 0 1 +: : : : : : : BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 0 : 1 0 0 0 0 0 1 +: : : : : : : BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 0 : 1 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 0 no 0 0 0 0 0 0 1 ++---+ +---+ +---+ + +- +-- +--- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 5 0 --- 3 1 0 0 0 0 1 +: : : : : : : BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 0 : 1 0 0 0 0 0 1 +/ / / / / / / BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 0 / 1 0 0 0 0 0 1 +S34 S34 s34 S S3 S34 S34 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 0 no 0 1 0 0 0 0 1 +: : : : : : : BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 0 : 1 0 0 0 0 0 1 +:..........|.......|...: /: :..........|.......|...: : :. :.. :... BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 5 0 :....................:/: 24 8 0 0 0 0 1 +/ / / / / / / BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 0 / 1 0 0 0 0 0 1 +: : : : : : : BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 0 : 1 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 0 no 0 0 0 0 0 0 1 +/ :../........: / / / / / BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 0 /:../........: 14 4 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 0 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 0 no 0 0 0 0 0 0 1 +/ / / / / / / BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 0 / 1 0 0 0 0 0 1 +/ / / / / / / BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 0 / 1 0 0 0 0 0 1 +...........|.......|.../..../.... ...........|.......|.../..../.... ...........|.......|.../..../.... . .. ... .... BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 5 0 ...................../..../.... 31 10 0 0 0 0 1 +: : : : : : : BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 0 : 1 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 0 no 0 0 0 0 0 0 1 +| / | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 0 / 1 1 0 0 0 0 1 +/ / / / / / / BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 0 / 1 0 0 0 0 0 1 +: : : : : : : BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 0 : 1 0 0 0 0 0 1 +: Network : : : : : BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 0 : 1 3 0 0 0 0 1 ++ / + + + + + BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 0 / 1 1 0 0 0 0 1 +/ / / / / / / BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 0 / 1 0 0 0 0 0 1 +: : : : : : : BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 0 : 1 0 0 0 0 0 1 +: domain : : : : : BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 0 : 1 3 0 0 0 0 1 +/ / / / / / / BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 0 // 2 1 0 0 0 0 1 +/ / / / / / / BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 0 / 1 0 0 0 0 0 1 +: : : : : : : BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 0 : 1 0 0 0 0 0 1 +: : : : : : : BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 0 : 1 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 0 no 0 0 0 0 0 0 1 +/ / / / / / / BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 0 // 2 1 0 0 0 0 1 +/ / / / / / / BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 0 / 1 0 0 0 0 0 1 +: : : : : : : BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 0 : 1 0 0 0 0 0 1 +: : : : : : : BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 0 : 1 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 0 no 0 0 0 0 0 0 1 ++ / + + + + + BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 0 /-- 3 2 0 0 0 0 1 +: : : : : : : BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 0 : 1 0 0 0 0 0 1 +: : : : : : : BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 0 : 1 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 0 no 0 0 0 0 0 0 1 +|/ / |/ | |/ |/ |/ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 5 0 // 2 1 0 0 0 0 1 +: : : : : : : BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 0 : 1 0 0 0 0 0 1 +: Black : : : : : BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 0 : 1 2 0 0 0 0 1 ++---AN2 ---------------(R7) +---an2 + +- +-- +--- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 0 ------------------() 20 8 0 0 0 0 1 +: Topology : : : : : BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 0 : 1 3 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 0 no 0 1 0 0 0 0 1 +AN2-1 AN2-1 an2-1 A AN AN2 AN2- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 0 - 1 1 0 0 0 0 1 +: : : : : : : BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 0 : 1 0 0 0 0 0 1 +: Abstraction : : : : : BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 0 : 1 4 0 0 0 0 1 +| +----------------(R8) | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 0 ----------------() 18 7 0 0 0 0 1 +: : : : : : : BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 0 : 1 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 0 no 0 0 0 0 0 0 1 +: : : : : : : BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 0 : 1 0 0 0 0 0 1 +: : : : : : : BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 0 : 1 0 0 0 0 0 1 ++------------------(R9) +------------------(R9) +------------------(r9) + +- +-- +--- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 0 ------------------() 20 7 0 0 0 0 1 +: : : : : : : BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 0 : 1 0 0 0 0 0 1 +: : : : : : : BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 0 : 1 0 0 0 0 0 1 +:...............................: :...............................: :...............................: : :. :.. :... BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 5 0 :...............................: 33 10 0 0 0 0 1 +Figure 6 figure F Fi Fig Figu BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 9 -- 2 10 0 0 0 0 1 +5.2. YANG 5.2. 5 5. 5.2 5.2. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 10 .. 2 10 0 0 0 0 1 +The service the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 10 ( 1 10 0 0 0 0 1 +1 in 1 1 1 1 1 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 6 10 ). 2 9 0 0 0 0 1 +models is models m mo mod mode BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 10 (..,,,) 7 9 0 0 0 0 1 +document. document. document. d do doc docu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 10 . 1 1 0 0 0 0 1 +Busi, King, busi, B Bu Bus Busi BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 6 11 ,,. 3 9 0 0 1 0 0 +Expires March, expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 11 , 1 10 0 0 0 0 0 +[Page 33] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 11 [] 2 5 0 0 0 0 0 +Internet-Draft Transport internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 6 0 -- 2 10 0 0 1 0 1 +September 2019 september S Se Sep Sept BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 0 0 0 1 0 0 6 0 no 0 10 0 0 1 0 1 +As described as A As As As BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 0 ., 2 10 0 0 0 0 1 +provide all provide p pr pro prov BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 0 no 0 10 0 0 0 0 1 +it needs it i it it it BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 0 - 1 9 0 0 0 0 1 +connection (which connection c co con conn BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 0 (-- 3 9 0 0 0 0 1 +segment connection) segment s se seg segm BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 0 ),, 3 10 0 0 0 0 1 +adaptation functions adaptation a ad ada adap BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 0 no 0 9 0 0 0 0 1 +domains. domains. domains. d do dom doma BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 0 . 1 1 0 0 0 0 1 +| | | | | | | BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 2 no 0 1 0 0 0 0 1 +| {1} | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 2 no 0 3 0 0 0 0 1 +V V v V V V V BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 2 no 0 1 0 0 0 0 1 +---------------- ---------------- ---------------- - -- --- ---- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 6 2 ---------------- 16 10 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 2 no 0 1 0 0 0 0 1 +{2} | {2} { {2 {2} {2} BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 2 no 0 3 0 0 0 0 1 +| {3} | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 2 no 0 6 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 2 no 0 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 2 no 0 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 2 no 0 1 0 0 0 0 1 +---------------- ---------------- ---------------- - -- --- ---- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 6 2 ---------------- 16 10 0 0 0 0 1 +^ ^ ^ ^ ^ ^ ^ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 2 no 0 1 0 0 0 0 1 +^ ^ ^ ^ ^ ^ ^ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 2 no 0 1 0 0 0 0 1 +^ ^ ^ ^ ^ ^ ^ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 2 no 0 1 0 0 0 0 1 +{3.1} | {3.1} { {3 {3. {3.1 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 2 . 1 5 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 2 no 0 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 2 no 0 1 0 0 0 0 1 ++---------+ +---------+ +---------+ + +- +-- +--- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 6 2 --------- 9 7 0 0 0 0 1 +|{3.2} | |{3.2} | |{ |{3 |{3. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 2 . 1 5 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 2 no 0 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 2 no 0 1 0 0 0 0 1 ++----------+ +----------+ +----------+ + +- +-- +--- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 6 2 ---------- 10 8 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 2 no 0 1 0 0 0 0 1 +V V v V V V V BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 2 no 0 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 2 no 0 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 2 no 0 1 0 0 0 0 1 +---------- ---------- ---------- - -- --- ---- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 6 2 ---------- 10 6 0 0 0 0 1 +|{3.3} |{3.3} |{3.3} | |{ |{3 |{3. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 2 . 1 4 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 2 no 0 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 2 no 0 1 0 0 0 0 1 +PNC2 PNC2 pnc2 P PN PNC PNC2 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 2 no 0 3 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 2 no 0 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 2 no 0 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 2 no 0 1 0 0 0 0 1 +---------- ---------- ---------- - -- --- ---- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 6 2 ---------- 10 6 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 2 no 0 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 2 no 0 1 0 0 0 0 1 +^ ^ ^ ^ ^ ^ ^ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 2 no 0 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 2 no 0 1 0 0 0 0 1 +V V v V V V V BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 2 no 0 1 0 0 0 0 1 +| {4.2} | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 2 . 1 5 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 2 no 0 1 0 0 0 0 1 +---------- ---------- ---------- - -- --- ---- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 6 2 ---------- 10 6 0 0 0 0 1 +V V v V V V V BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 2 no 0 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 2 no 0 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 2 no 0 1 0 0 0 0 1 +PNC1 PNC1 pnc1 P PN PNC PNC1 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 2 no 0 3 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 2 no 0 1 0 0 0 0 1 +----- ----- ----- - -- --- ---- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 6 2 ----- 5 3 0 0 0 0 1 +V V v V V V V BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 2 no 0 1 0 0 0 0 1 +---------- ---------- ---------- - -- --- ---- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 6 2 ---------- 10 6 0 0 0 0 1 +(Network) (Network) (network) ( (N (Ne (Net BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 2 () 2 6 0 0 0 0 1 +---------- ---------- ---------- - -- --- ---- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 6 2 ---------- 10 6 0 0 0 0 1 +^ ^ ^ ^ ^ ^ ^ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 2 no 0 1 0 0 0 0 1 +( Domain ( ( ( ( ( BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 2 () 2 7 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 2 no 0 1 0 0 0 0 1 +PNC3 PNC3 pnc3 P PN PNC PNC3 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 2 no 0 3 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 2 no 0 1 0 0 0 0 1 +| {4.1} | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 2 . 1 5 0 0 0 0 1 +( ( ( ( ( ( ( BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 2 ( 1 1 0 0 0 0 1 +_) _) _) _ _) _) _) BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 6 2 ) 1 1 0 0 0 0 1 +---------- ---------- ---------- - -- --- ---- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 6 2 ---------- 10 6 0 0 0 0 1 +V V v V V V V BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 2 no 0 1 0 0 0 0 1 +( ( ( ( ( ( ( BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 2 ( 1 1 0 0 0 0 1 +) ) ) ) ) ) ) BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 2 ) 1 1 0 0 0 0 1 +^ ^ ^ ^ ^ ^ ^ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 2 no 0 1 0 0 0 0 1 +----- ----- ----- - -- --- ---- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 6 2 ----- 5 3 0 0 0 0 1 +C==========D C==========D c==========d C C= C== C=== BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 6 2 no 0 8 0 0 0 0 1 +| {4.3} | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 2 . 1 5 0 0 0 0 1 +(Network) (Network) (network) ( (N (Ne (Net BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 2 () 2 6 0 0 0 0 1 +/ ( / / / / / BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 2 /( 2 2 0 0 0 0 1 +) \ ) ) ) ) ) BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 2 ) 1 2 0 0 0 0 1 +V V v V V V V BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 2 no 0 1 0 0 0 0 1 +( Domain ( ( ( ( ( BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 2 ()/ 3 8 0 0 0 0 1 +----- ----- ----- - -- --- ---- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 6 2 ----- 5 3 0 0 0 0 1 +\ \ \ \ \ \ \ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 2 no 0 1 0 0 0 0 1 +----- ----- ----- - -- --- ---- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 6 2 ----- 5 3 0 0 0 0 1 +( ( ( ( ( ( ( BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 2 ( 1 1 0 0 0 0 1 +)/ )/ )/ ) )/ )/ )/ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 6 2 )/ 2 1 0 0 0 0 1 +\ \ \ \ \ \ \ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 2 no 0 1 0 0 0 0 1 +(Network) (Network) (network) ( (N (Ne (Net BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 2 () 2 6 0 0 0 0 1 +A===========B A===========B a===========b A A= A== A=== BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 6 2 no 0 8 0 0 0 0 1 +\ ( \ \ \ \ \ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 2 () 2 8 0 0 0 0 1 +/ ( / / / / / BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 2 /( 2 2 0 0 0 0 1 +) ) ) ) ) ) ) BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 2 ) 1 1 0 0 0 0 1 +\( \( \( \ \( \( \( BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 6 2 ( 1 1 0 0 0 0 1 +) ) ) ) ) ) ) BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 2 ) 1 1 0 0 0 0 1 +AP-1 AP-1 ap-1 A AP AP- AP-1 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 2 - 1 3 0 0 0 0 1 +( ( ( ( ( ( ( BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 2 ( 1 1 0 0 0 0 1 +) ) ) ) ) ) ) BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 2 ) 1 1 0 0 0 0 1 +X===========Z X===========Z x===========z X X= X== X=== BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 6 2 no 0 8 0 0 0 0 1 +----- ----- ----- - -- --- ---- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 6 2 ----- 5 3 0 0 0 0 1 +( ( ( ( ( ( ( BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 2 ( 1 1 0 0 0 0 1 +) \ ) ) ) ) ) BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 2 ) 1 2 0 0 0 0 1 +( ( ( ( ( ( ( BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 2 ( 1 1 0 0 0 0 1 +) ) ) ) ) ) ) BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 6 2 ) 1 1 0 0 0 0 1 +AP-2 AP-2 ap-2 A AP AP- AP-2 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 2 - 1 3 0 0 0 0 1 +----- ----- ----- - -- --- ---- BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 6 2 ----- 5 3 0 0 0 0 1 +Figure 7 figure F Fi Fig Figu BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 11 -- 2 10 0 0 0 0 1 +Busi, King, busi, B Bu Bus Busi BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 6 11 ,,. 3 9 0 0 1 0 0 +Expires March, expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 11 , 1 10 0 0 0 0 0 +[Page 34] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 11 [] 2 5 0 0 0 0 0 +Internet-Draft Transport internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 6 0 -- 2 10 0 0 1 0 1 +September 2019 september S Se Sep Sept BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 0 0 0 1 0 0 6 0 no 0 10 0 0 1 0 1 +As an as A As As As BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 0 , 1 9 0 0 0 0 1 +transport service transport t tr tra tran BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 0 , 1 9 0 0 0 0 1 +described in described d de des desc BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 0 ..- 3 10 0 0 0 0 1 +<-> S3 <-> < <- <-> <-> BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 6 0 --------- 9 9 0 0 0 0 1 +(see the (see ( (s (se (see BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 0 (). 3 6 0 0 0 0 1 +According to according A Ac Acc Acco BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 2 , 1 9 0 0 0 0 1 +adaptations can adaptations a ad ada adap BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 2 no 0 10 0 0 0 0 1 +(i.e., S3 (i.e., ( (i (i. (i.e BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 2 (..,). 6 3 0 0 0 0 1 +After receiving after A Af Aft Afte BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 2 ,, 2 10 0 0 0 0 1 +i.e., domain i.e., i i. i.e i.e. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 2 ..,--, 6 9 0 0 0 0 1 +and the and a an and and BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 2 -(). 4 7 0 0 0 0 1 +As described as A As As As BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 3 [-], 4 8 0 0 0 0 1 +determined by determined d de det dete BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 3 no 0 9 0 0 0 0 1 +native topology, native n na nat nati BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 3 ,.., 4 9 0 0 0 0 1 +has enough has h ha has has BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 3 ., 2 9 0 0 0 0 1 +computation requests computation c co com comp BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 3 (.,.. 5 9 0 0 0 0 1 +in Figure in i in in in BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 6 3 ) 1 10 0 0 0 0 1 +on its on o on on on BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 3 . 1 8 0 0 0 0 1 +The MDSC the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 5 no 0 9 0 0 0 0 1 +segments via segments s se seg segm BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 5 ( 1 10 0 0 0 0 1 +and OTN and a an and and BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 5 ), 2 9 0 0 0 0 1 +intra-domain tunnel intra-domain i in int intr BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 5 -(,.,..). 9 10 0 0 0 0 1 +The MDSC the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 7 - 1 9 0 0 0 0 1 +domain tunnel domain d do dom doma BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 7 - 1 10 0 0 0 0 1 +(via TE (via ( (v (vi (via BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 7 () 2 9 0 0 0 0 1 +controlling the controlling c co con cont BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 7 . 1 9 0 0 0 0 1 +specifically, for specifically, s sp spe spec BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 7 ,--, 4 9 0 0 0 0 1 +account that account a ac acc acco BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 7 -, 2 9 0 0 0 0 1 +timeslots and timeslots t ti tim time BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 7 no 0 10 0 0 0 0 1 +inter-domain link inter-domain i in int inte BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 7 -. 2 7 0 0 0 0 1 +In any in I In In In BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 6 9 , 1 9 0 0 0 0 1 +that control that t th tha that BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 9 (..,--) 7 10 0 0 0 0 1 +PNCs of pncs P PN PNC PNCs BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 6 9 ()(..,-). 9 9 0 0 0 0 1 +configured by configured c co con conf BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 9 . 1 7 0 0 0 0 1 +Access configuration access A Ac Acc Acce BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 11 no 0 10 0 0 0 0 1 +service. Further service. s se ser serv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 11 . 1 8 0 0 0 0 1 +following sub-sections. following f fo fol foll BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 11 -. 2 3 0 0 0 0 1 +Busi, King, busi, B Bu Bus Busi BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 6 11 ,,. 3 9 0 0 1 0 0 +Expires March, expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 11 , 1 10 0 0 0 0 0 +[Page 35] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 11 [] 2 5 0 0 0 0 0 +Internet-Draft Transport internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 6 0 -- 2 10 0 0 1 0 1 +September 2019 september S Se Sep Sept BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 0 0 0 1 0 0 6 0 no 0 10 0 0 1 0 1 +5.2.1. ODU 5.2.1. 5 5. 5.2 5.2. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 0 ... 3 10 0 0 0 0 1 +In this in I In In In BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 6 0 ,.., 4 9 0 0 0 0 1 +links are links l li lin link BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 0 , 1 10 0 0 0 0 1 +5.1, reported 5.1, 5 5. 5.1 5.1, BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 0 ., 2 9 0 0 0 0 1 +topologies they topologies t to top topo BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 0 . 1 5 0 0 0 0 1 +To setup to T To To To BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 1 ,,, 3 10 0 0 0 0 1 +CMI, the cmi, C CM CMI CMI, BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 6 1 ,. 2 7 0 0 0 0 1 +From its from F Fr Fro From BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 2 ,,, 3 9 0 0 0 0 1 +by means by b by by by BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 2 , 1 9 0 0 0 0 1 +attached to attached a at att atta BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 2 - 1 10 0 0 0 0 1 +Abstract Topology abstract A Ab Abs Abst BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 2 (),, 4 8 0 0 0 0 1 +attached to attached a at att atta BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 2 - 1 9 0 0 0 0 1 +Abstract Topology, abstract A Ab Abs Abst BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 2 ,. 2 5 0 0 0 0 1 +MDSC then mdsc M MD MDS MDSC BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 6 4 -( 2 9 0 0 0 0 1 +7) and 7) 7 7) 7) 7) BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 4 ),,, 4 8 0 0 0 0 1 +respectively, to respectively, r re res resp BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 4 ,() 3 10 0 0 0 0 1 +Abstract Topologies abstract A Ab Abs Abst BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 4 (, 2 9 0 0 0 0 1 +OTN Abstract otn O OT OTN OTN BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 6 4 ,). 3 10 0 0 0 0 1 +MDSC requests, mdsc M MD MDS MDSC BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 6 6 ,,() 4 9 0 0 0 0 1 +Tunnel with tunnel T Tu Tun Tunn BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 6 --, 3 10 0 0 0 0 1 +MPI1 OTN mpi1 M MP MPI MPI1 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 6 (), 3 9 0 0 0 0 1 +model, defined model, m mo mod mode BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 6 ,[-],- 6 9 0 0 0 0 1 +augmentations, defined augmentations, a au aug augm BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 6 ,[-]: 5 5 0 0 0 0 1 +o Source o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 6 8 ( 1 10 0 0 0 0 1 +Transit Tunnel) transit T Tr Tra Tran BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 8 ) 1 2 0 0 0 0 1 +o Ingress o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 6 9 -- 2 9 0 0 0 0 1 +include-exclude list include-exclude i in inc incl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 9 --- 3 10 0 0 0 0 1 +path: path: path: p pa pat path BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 9 : 1 0 0 0 0 0 1 +o The o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 6 9 no 0 10 0 0 0 0 1 +AN1-1 LTP an1-1 A AN AN1 AN1- BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 9 - 1 1 0 0 0 0 1 +o The o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 6 10 - 1 10 0 0 0 0 1 +link terminating link l li lin link BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 6 10 - 1 9 0 0 0 0 1 +(i.e., the (i.e., ( (i (i. (i.e BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 10 (..,) 5 9 0 0 0 0 1 +connection over connection c co con conn BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 10 . 1 4 0 0 0 0 1 +Busi, King, busi, B Bu Bus Busi BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 6 11 ,,. 3 9 0 0 1 0 0 +Expires March, expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 11 , 1 10 0 0 0 0 0 +[Page 36] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 11 [] 2 5 0 0 0 0 0 +Internet-Draft Transport internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 6 0 -- 2 10 0 0 1 0 1 +September 2019 september S Se Sep Sept BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 0 0 0 1 0 0 6 0 no 0 10 0 0 1 0 1 +The configuration the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 0 no 0 9 0 0 0 0 1 +the internal the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 0 (.., 4 10 0 0 0 0 1 +within domain1) within w wi wit with BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 0 ) 1 10 0 0 0 0 1 +matter of matter m ma mat matt BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 0 . 1 7 0 0 0 0 1 +However, the however, H Ho How Howe BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 1 , 1 8 0 0 0 0 1 +connection at connection c co con conn BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 1 (.., 4 10 0 0 0 0 1 +inter-domain links) inter-domain i in int inte BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 1 -) 2 8 0 0 0 0 1 +available on available a av ava avai BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 1 no 0 9 0 0 0 0 1 +(e.g., on (e.g., ( (e (e. (e.g BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 1 (.., 4 9 0 0 0 0 1 +domain). domain). domain). d do dom doma BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 1 ). 2 1 0 0 0 0 1 +The MDSC, the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 3 ,- 2 8 0 0 0 0 1 +connection, also connection, c co con conn BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 3 ,(.., 5 10 0 0 0 0 1 +of timeslots of o of of of BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 3 )-. 3 9 0 0 0 0 1 +MDSC can mdsc M MD MDS MDSC BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 6 3 no 0 9 0 0 0 0 1 +nodes terminating nodes n no nod node BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 3 -(..,) 6 10 0 0 0 0 1 +OTN Topology otn O OT OTN OTN BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 6 3 ,, 2 8 0 0 0 0 1 +controlling the controlling c co con cont BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 3 (.., 4 9 0 0 0 0 1 +the physical the t th the the BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 3 ). 2 6 0 0 0 0 1 +Appendix B.2.1 appendix A Ap App Appe BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 5 ..("--- 7 9 0 0 0 0 1 +config.json") describing config.json") c co con conf BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 5 .")( 4 8 0 0 0 0 1 +Segment) Tunnel segment) S Se Seg Segm BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 6 5 ),[-] 5 10 0 0 0 0 1 +and [OTN-TUNNEL] and a an and and BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 5 [-]. 4 5 0 0 0 0 1 +PNC1 knows, pnc1 P PN PNC PNC1 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 7 ,.., 4 10 0 0 0 0 1 +AN-1 and an-1 A AN AN- AN-1 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 7 -- 2 10 0 0 0 0 1 +at MPI1 at a at at at BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 7 --,, 4 9 0 0 0 0 1 +its native its i it its its BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 7 ., 2 9 0 0 0 0 1 +ODU2 connection odu2 O OD ODU ODU2 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 7 , 1 9 0 0 0 0 1 +sets up sets s se set sets BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 7 -, 2 9 0 0 0 0 1 +and S2, and a an and and BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 7 ,... 4 5 0 0 0 0 1 +Since the since S Si Sin Sinc BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 9 --, 3 10 0 0 0 0 1 +also configures also a al als also BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 9 no 0 8 0 0 0 0 1 +cross-connection in cross-connection c cr cro cros BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 9 -. 2 4 0 0 0 0 1 +As part as A As As As BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 10 -, 2 9 0 0 0 0 1 +configures the configures c co con conf BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 10 (.., 4 10 0 0 0 0 1 +the TPN), the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 10 ),- 3 8 0 0 0 0 1 +inter-domain link, inter-domain i in int inte BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 10 -,. 3 6 0 0 0 0 1 +Busi, King, busi, B Bu Bus Busi BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 6 11 ,,. 3 9 0 0 1 0 0 +Expires March, expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 11 , 1 10 0 0 0 0 0 +[Page 37] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 11 [] 2 5 0 0 0 0 0 +Internet-Draft Transport internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 6 0 -- 2 10 0 0 1 0 1 +September 2019 september S Se Sep Sept BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 0 0 0 1 0 0 6 0 no 0 10 0 0 1 0 1 +Following similar following F Fo Fol Foll BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 0 () 2 10 0 0 0 0 1 +Tunnels within tunnels T Tu Tun Tunn BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 0 , 1 9 0 0 0 0 1 +sets up sets s se set sets BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 0 - 1 9 0 0 0 0 1 +up ODU2 up u up up up BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 0 -, 2 9 0 0 0 0 1 +4.3.1. PNC2 4.3.1. 4 4. 4.3 4.3. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 0 ...- 4 8 0 0 0 0 1 +multi-function access multi-function m mu mul mult BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 0 -. 2 4 0 0 0 0 1 +5.2.1.1. Single 5.2.1.1. 5 5. 5.2 5.2. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 2 .... 4 10 0 0 0 0 1 +To setup to T To To To BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 2 --,, 4 9 0 0 0 0 1 +between R1 between b be bet betw BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 2 ,,, 3 10 0 0 0 0 1 +an ODU an a an an an BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 6 2 . 1 3 0 0 0 0 1 +Following the following F Fo Fol Foll BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 3 .., 3 10 0 0 0 0 1 +only PCN1 only o on onl only BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 3 () 2 9 0 0 0 0 1 +access links access a ac acc acce BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 3 -- 2 9 0 0 0 0 1 +Abstract Topology abstract A Ab Abs Abst BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 3 - 1 10 0 0 0 0 1 +S3, S5 s3, S S3 S3, S3, BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 3 ,,... 5 10 0 0 0 0 1 +OTU2 trails otu2 O OT OTU OTU2 BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 3 ---. 4 9 0 0 0 0 1 +5.2.2. EPL 5.2.2. 5 5. 5.2 5.2. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 5 ... 3 10 0 0 0 0 1 +In this in I In In In BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 7 5 ,.., 4 9 0 0 0 0 1 +configured as configured c co con conf BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 5 ,., 3 10 0 0 0 0 1 +by each by b by by by BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 5 no 0 9 0 0 0 0 1 +expose to expose e ex exp expo BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 5 . 1 2 0 0 0 0 1 +To setup to T To To To BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 7 ,,, 3 10 0 0 0 0 1 +CMI, the cmi, C CM CMI CMI, BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 7 7 ,. 2 5 0 0 0 0 1 +From its from F Fr Fro From BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 7 ,,, 3 9 0 0 0 0 1 +by means by b by by by BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 7 , 1 9 0 0 0 0 1 +attached to attached a at att atta BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 7 - 1 10 0 0 0 0 1 +Abstract Topology, abstract A Ab Abs Abst BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 7 ,, 2 9 0 0 0 0 1 +access link access a ac acc acce BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 7 - 1 8 0 0 0 0 1 +Topology, exposed topology, T To Top Topo BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 7 7 ,. 2 3 0 0 0 0 1 +The MDSC the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 9 no 0 10 0 0 0 0 1 +multi-domain ODU2 multi-domain m mu mul mult BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 7 9 -, 2 9 0 0 0 0 1 +S18 within s18 S S1 S18 S18 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 9 , 1 9 0 0 0 0 1 +respectively. respectively. respectively. r re res resp BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 9 . 1 2 0 0 0 0 1 +MDSC then mdsc M MD MDS MDSC BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 7 11 -( 2 10 0 0 0 0 1 +7) and 7) 7 7) 7) 7) BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 11 ): 2 3 0 0 0 0 1 +Busi, King, busi, B Bu Bus Busi BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 7 11 ,,. 3 9 0 0 1 0 0 +Expires March, expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 11 , 1 10 0 0 0 0 0 +[Page 38] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 7 11 [] 2 5 0 0 0 0 0 +Internet-Draft Transport internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 7 0 -- 2 10 0 0 1 0 1 +September 2019 september S Se Sep Sept BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 0 0 0 1 0 0 7 0 no 0 10 0 0 1 0 1 +o PNC1, o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 7 0 ,,() 4 10 0 0 0 0 1 +MPI1 OTN mpi1 M MP MPI MPI1 BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 0 ; 1 4 0 0 0 0 1 +o PNC1, o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 7 0 ,,/- 4 10 0 0 0 0 1 +LTP, within ltp, L LT LTP LTP, BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 7 0 ,, 2 9 0 0 0 0 1 +(Head Segment) (head ( (H (He (Hea BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 7 0 (); 3 3 0 0 0 0 1 +o PNC3, o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 7 1 ,,() 4 10 0 0 0 0 1 +the MPI3 the t th the the BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 1 ; 1 4 0 0 0 0 1 +o PNC2, o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 7 2 ,,() 4 10 0 0 0 0 1 +MPI2 OTN mpi2 M MP MPI MPI2 BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 2 ; 1 4 0 0 0 0 1 +o PNC2, o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 7 3 ,,/- 4 10 0 0 0 0 1 +LTP, within ltp, L LT LTP LTP, BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 7 3 ,, 2 9 0 0 0 0 1 +(Tail Segment) (tail ( (T (Ta (Tai BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 7 3 (). 3 3 0 0 0 0 1 +MDSC requests, mdsc M MD MDS MDSC BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 7 4 ,,() 4 10 0 0 0 0 1 +with one with w wi wit with BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 4 -, 2 9 0 0 0 0 1 +the MPI1 the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 4 (), 3 10 0 0 0 0 1 +model, defined model, m mo mod mode BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 4 ,[-],- 6 9 0 0 0 0 1 +augmentations, defined augmentations, a au aug augm BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 4 ,[-]: 5 5 0 0 0 0 1 +o Only o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 7 5 ( 1 10 0 0 0 0 1 +Tunnel): therefore tunnel): T Tu Tun Tunn BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 7 5 ): 2 8 0 0 0 0 1 +o The o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 7 6 --- 3 10 0 0 0 0 1 +list of list l li lis list BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 6 --: 3 8 0 0 0 0 1 +o The o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 7 7 - 1 10 0 0 0 0 1 +link terminating link l li lin link BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 7 7 - 1 9 0 0 0 0 1 +(i.e., the (i.e., ( (i (i. (i.e BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 7 7 (..,) 5 9 0 0 0 0 1 +connection over connection c co con conn BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 7 . 1 4 0 0 0 0 1 +Appendix B.2.2 appendix A Ap App Appe BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 8 ..("--- 7 9 0 0 0 0 1 +config.json") describing config.json") c co con conf BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 7 8 .")() 5 9 0 0 0 0 1 +Tunnel can tunnel T Tu Tun Tunn BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 8 ,[-][- 6 10 0 0 0 0 1 +TUNNEL] YANG tunnel] T TU TUN TUNN BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 7 8 ]. 2 4 0 0 0 0 1 +MDSC requests, mdsc M MD MDS MDSC BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 7 10 ,, 2 9 0 0 0 0 1 +from/to AN1-2 from/to f fr fro from BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 7 10 /-,(), 6 10 0 0 0 0 1 +thought the thought t th tho thou BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 10 (), 3 9 0 0 0 0 1 +Client YANG client C Cl Cli Clie BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 10 ,[-]. 5 6 0 0 0 0 1 +Busi, King, busi, B Bu Bus Busi BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 7 11 ,,. 3 9 0 0 1 0 0 +Expires March, expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 11 , 1 10 0 0 0 0 0 +[Page 39] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 7 11 [] 2 5 0 0 0 0 0 +Internet-Draft Transport internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 7 0 -- 2 10 0 0 1 0 1 +September 2019 september S Se Sep Sept BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 0 0 0 1 0 0 7 0 no 0 10 0 0 1 0 1 +Appendix B.2.3 appendix A Ap App Appe BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 0 ..("--- 7 9 0 0 0 0 1 +config.json") describing config.json") c co con conf BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 7 0 .") 3 10 0 0 0 0 1 +ODU2 Tunnel odu2 O OD ODU ODU2 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 0 ,[-] 4 9 0 0 0 0 1 +YANG model yang Y YA YAN YANG BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 1 0 0 0 0 0 0 7 0 . 1 2 0 0 0 0 1 +PNC1 knows, pnc1 P PN PNC PNC1 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 1 ,.., 4 9 0 0 0 0 1 +tunnel source tunnel t tu tun tunn BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 1 -, 2 8 0 0 0 0 1 +Topology it topology T To Top Topo BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 7 1 ,-, 3 9 0 0 0 0 1 +respectively, within respectively, r re res resp BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 1 ,. 2 10 0 0 0 0 1 +computation, for computation, c co com comp BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 1 ,- 2 9 0 0 0 0 1 +within its within w wi wit with BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 1 ,- 2 9 0 0 0 0 1 +within the within w wi wit with BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 1 ,,... 5 9 0 0 0 0 1 +As part as A As As As BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 4 -, 2 9 0 0 0 0 1 +configures the configures c co con conf BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 4 (.., 4 10 0 0 0 0 1 +the TPN), the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 4 ),- 3 8 0 0 0 0 1 +inter-domain link, inter-domain i in int inte BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 4 -,. 3 6 0 0 0 0 1 +After the after A Af Aft Afte BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 5 -, 2 10 0 0 0 0 1 +PNC1 also pnc1 P PN PNC PNC1 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 5 [-()][()-] 10 9 0 0 0 0 1 +adaptation functions, adaptation a ad ada adap BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 5 ,,... 5 10 0 0 0 0 1 +Since the since S Si Sin Sinc BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 6 --, 3 10 0 0 0 0 1 +also configures also a al als also BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 6 . 1 7 0 0 0 0 1 +Following similar following F Fo Fol Foll BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 7 () 2 10 0 0 0 0 1 +within the within w wi wit with BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 7 no 0 8 0 0 0 0 1 +steering of steering s st ste stee BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 7 , 1 9 0 0 0 0 1 +cross-connections on cross-connections c cr cro cros BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 7 - 1 9 0 0 0 0 1 +cross-connections on cross-connections c cr cro cros BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 7 -[- 3 8 0 0 0 0 1 +(ODU2)] and (odu2)] ( (O (OD (ODU BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 7 ()][()-], 9 9 0 0 0 0 1 +shown in shown s sh sho show BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 7 ... 3 9 0 0 0 0 1 +S18-R8 multi-function s18-r8 S S1 S18 S18- BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 7 --. 3 5 0 0 0 0 1 +5.2.2.1. Single 5.2.2.1. 5 5. 5.2 5.2. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 10 .... 4 10 0 0 0 0 1 +To setup to T To To To BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 10 ,,, 3 10 0 0 0 0 1 +CMI, the cmi, C CM CMI CMI, BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 7 10 ,. 2 5 0 0 0 0 1 +Following the following F Fo Fol Foll BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 11 .., 3 10 0 0 0 0 1 +requests PCN1 requests r re req requ BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 7 11 : 1 2 0 0 0 0 1 +Busi, King, busi, B Bu Bus Busi BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 7 11 ,,. 3 9 0 0 1 0 0 +Expires March, expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 11 , 1 10 0 0 0 0 0 +[Page 40] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 7 11 [] 2 5 0 0 0 0 0 +Internet-Draft Transport internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 7 0 -- 2 10 0 0 1 0 1 +September 2019 september S Se Sep Sept BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 0 0 0 1 0 0 7 0 no 0 10 0 0 1 0 1 +o setup o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 7 0 (--), 5 10 0 0 0 0 1 +nodes S3 nodes n no nod node BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 0 no 0 10 0 0 0 0 1 +at MPI1; at a at at at BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 0 ; 1 1 0 0 0 0 1 +o steer o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 7 1 -- 2 9 0 0 0 0 1 +LTPs, exposed ltps, L LT LTP LTPs BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 7 1 ,, 2 10 0 0 0 0 1 +that ODU2 that t th tha that BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 1 (--). 5 4 0 0 0 0 1 +Then PNC1 then T Th The Then BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 2 -, 2 9 0 0 0 0 1 +well as well w we wel well BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 2 [-()][()-] 10 10 0 0 0 0 1 +in nodes in i in in in BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 7 2 ,... 4 10 0 0 0 0 1 +the 10GE the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 2 --(- 4 9 0 0 0 0 1 +access link access a ac acc acce BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 2 -). 3 7 0 0 0 0 1 +5.2.3. Other 5.2.3. 5 5. 5.2 5.2. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 4 ... 3 10 0 0 0 0 1 +In this in I In In In BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 7 4 ,.., 4 9 0 0 0 0 1 +configured as configured c co con conf BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 4 -,., 4 8 0 0 0 0 1 +reported by reported r re rep repo BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 4 no 0 10 0 0 0 0 1 +they expose they t th the they BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 4 . 1 3 0 0 0 0 1 +The CNC the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 6 ,,- 3 10 0 0 0 0 1 +service between service s se ser serv BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 6 . 1 4 0 0 0 0 1 +Following similar following F Fo Fol Foll BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 7 .., 3 10 0 0 0 0 1 +understands that: understands u un und unde BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 7 : 1 2 0 0 0 0 1 +o R1 o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 7 7 - 1 10 0 0 0 0 1 +MPI1 OTN mpi1 M MP MPI MPI1 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 7 ,, 2 8 0 0 0 0 1 +attached to attached a at att atta BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 7 - 1 9 0 0 0 0 1 +OTN Abstract otn O OT OTN OTN BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 7 7 ,; 2 5 0 0 0 0 1 +o it o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 7 9 - 1 10 0 0 0 0 1 +between the between b be bet betw BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 9 , 1 9 0 0 0 0 1 +Abstract Topologies abstract A Ab Abs Abst BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 9 ,. 2 9 0 0 0 0 1 +The MDSC the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 10 -( 2 10 0 0 0 0 1 +Figure 7) figure F Fi Fig Figu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 10 ): 2 4 0 0 0 0 1 +o PNC1, o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 7 10 ,,() 4 10 0 0 0 0 1 +MPI1 OTN mpi1 M MP MPI MPI1 BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 10 ; 1 4 0 0 0 0 1 +Busi, King, busi, B Bu Bus Busi BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 7 11 ,,. 3 9 0 0 1 0 0 +Expires March, expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 11 , 1 10 0 0 0 0 0 +[Page 41] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 7 11 [] 2 5 0 0 0 0 0 +Internet-Draft Transport internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 7 0 -- 2 10 0 0 1 0 1 +September 2019 september S Se Sep Sept BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 0 0 0 1 0 0 7 0 no 0 10 0 0 1 0 1 +o PNC1, o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 7 0 ,,- 3 9 0 0 0 0 1 +from/to AN1-1 from/to f fr fro from BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 7 0 /-,, 4 10 0 0 0 0 1 +that ODU2 that t th tha that BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 0 (); 3 5 0 0 0 0 1 +o PNC3, o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 7 1 ,,() 4 10 0 0 0 0 1 +the MPI3 the t th the the BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 1 ; 1 4 0 0 0 0 1 +o PNC2, o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 7 1 ,,() 4 10 0 0 0 0 1 +MPI2 OTN mpi2 M MP MPI MPI2 BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 1 ; 1 4 0 0 0 0 1 +o PNC2, o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 7 2 ,,- 3 9 0 0 0 0 1 +to/from AN2-1 to/from t to to/ to/f BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 7 2 /-,, 4 10 0 0 0 0 1 +that ODU2 that t th tha that BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 2 (). 3 5 0 0 0 0 1 +PNC1, PNC2 pnc1, P PN PNC PNC1 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 3 ,- 2 9 0 0 0 0 1 +the physical the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 3 ,,,,, 5 10 0 0 0 0 1 +[STM-64 -> [stm-64 [ [S [ST [STM BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 3 [--()][()--] 12 9 0 0 0 0 1 +nodes S3 nodes n no nod node BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 3 ,... 4 9 0 0 0 0 1 +configure the configure c co con conf BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 3 ---- 4 9 0 0 0 0 1 +access links, access a ac acc acce BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 3 ,. 2 4 0 0 0 0 1 +5.2.3.1. Single 5.2.3.1. 5 5. 5.2 5.2. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 5 .... 4 10 0 0 0 0 1 +To setup to T To To To BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 6 ,,, 3 10 0 0 0 0 1 +CMI, the cmi, C CM CMI CMI, BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 7 6 ,-. 3 8 0 0 0 0 1 +The MDSC the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 6 no 0 10 0 0 0 0 1 +5.2.2.1 to 5.2.2.1 5 5. 5.2 5.2. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 6 ...-, 5 9 0 0 0 0 1 +well as well w we wel well BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 6 [--()][()--] 12 9 0 0 0 0 1 +functions in functions f fu fun func BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 6 ,... 4 9 0 0 0 0 1 +configures the configures c co con conf BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 6 ---- 4 9 0 0 0 0 1 +access links. access a ac acc acce BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 6 . 1 2 0 0 0 0 1 +5.2.4. EVPL 5.2.4. 5 5. 5.2 5.2. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 9 ... 3 10 0 0 0 0 1 +In this in I In In In BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 7 9 ,.., 4 10 0 0 0 0 1 +configured as configured c co con conf BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 9 ,... 4 9 0 0 0 0 1 +The CNC the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 10 ,,: 3 10 0 0 0 0 1 +one between one o on one one BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 10 ,. 2 8 0 0 0 0 1 +Following similar following F Fo Fol Foll BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 11 .. 2 10 0 0 0 0 1 +5.2.2.1, MDSC 5.2.2.1, 5 5. 5.2 5.2. BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 11 ...,: 5 5 0 0 0 0 1 +Busi, King, busi, B Bu Bus Busi BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 7 11 ,,. 3 9 0 0 1 0 0 +Expires March, expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 11 , 1 10 0 0 0 0 0 +[Page 42] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 7 11 [] 2 5 0 0 0 0 0 +Internet-Draft Transport internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 7 0 -- 2 10 0 0 1 0 1 +September 2019 september S Se Sep Sept BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 0 0 0 1 0 0 7 0 no 0 10 0 0 1 0 1 +o R1 o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 7 0 no 0 8 0 0 0 0 1 +respectively on respectively r re res resp BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 0 -- 2 9 0 0 0 0 1 +Topology, exposed topology, T To Top Topo BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 7 0 ,, 2 10 0 0 0 0 1 +link terminating link l li lin link BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 7 0 -, 2 10 0 0 0 0 1 +exposed by exposed e ex exp expo BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 0 ; 1 2 0 0 0 0 1 +o to o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 7 1 (-), 4 10 0 0 0 0 1 +R2, it r2, R R2 R2, R2, BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 1 ,- 2 9 0 0 0 0 1 +Tunnel between tunnel T Tu Tun Tunn BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 1 , 1 9 0 0 0 0 1 +OTN Abstract otn O OT OTN OTN BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 7 1 ; 1 5 0 0 0 0 1 +o to o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 7 2 (-), 4 10 0 0 0 0 1 +R8, it r8, R R8 R8, R8, BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 2 ,- 2 9 0 0 0 0 1 +Tunnel between tunnel T Tu Tun Tunn BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 2 , 1 9 0 0 0 0 1 +OTN Abstract otn O OT OTN OTN BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 7 2 ,. 2 9 0 0 0 0 1 +To setup to T To To To BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 3 (-), 4 9 0 0 0 0 1 +the MDSC the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 3 no 0 10 0 0 0 0 1 +5.2.2.1 to 5.2.2.1 5 5. 5.2 5.2. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 3 ...-, 5 9 0 0 0 0 1 +well as well w we wel well BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 3 [-()][()-] 10 8 0 0 0 0 1 +functions, in functions, f fu fun func BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 3 ,,... 5 9 0 0 0 0 1 +configures the configures c co con conf BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 3 --. 3 9 0 0 0 0 1 +As part as A As As As BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 5 [-()][()-] 10 9 0 0 0 0 1 +functions configurations functions f fu fun func BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 5 , 1 10 0 0 0 0 1 +the classification the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 5 no 0 10 0 0 0 0 1 +client traffic client c cl cli clie BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 5 -- 2 9 0 0 0 0 1 +access links access a ac acc acce BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 5 . 1 9 0 0 0 0 1 +information to information i in inf info BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 5 [-]. 4 8 0 0 0 0 1 +To setup to T To To To BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 7 (-), 4 9 0 0 0 0 1 +the MDSC, the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 7 ,, 2 8 0 0 0 0 1 +described in described d de des desc BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 7 ..- 3 9 0 0 0 0 1 +within the within w wi wit with BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 7 ,,,,, 5 9 0 0 0 0 1 +as the as a as as as BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 7 [-()][()-] 10 10 0 0 0 0 1 +nodes S3 nodes n no nod node BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 7 ,... 4 9 0 0 0 0 1 +the 10GE the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 7 --(- 4 9 0 0 0 0 1 +10GE link 10ge 1 10 10G 10GE BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 7 no 0 9 0 0 0 0 1 +has been has h ha has has BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 7 ). 2 2 0 0 0 0 1 +As part as A As As As BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 10 [-()][()-] 10 9 0 0 0 0 1 +functions configurations functions f fu fun func BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 10 ,, 2 8 0 0 0 0 1 +respectively, PNC2 respectively, r re res resp BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 10 , 1 9 0 0 0 0 1 +to associated to t to to to BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 10 no 0 10 0 0 0 0 1 +Busi, King, busi, B Bu Bus Busi BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 8 11 ,,. 3 9 0 0 1 0 0 +Expires March, expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 11 , 1 10 0 0 0 0 0 +[Page 43] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 11 [] 2 5 0 0 0 0 0 +Internet-Draft Transport internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 8 0 -- 2 10 0 0 1 0 1 +September 2019 september S Se Sep Sept BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 0 0 0 1 0 0 8 0 no 0 10 0 0 1 0 1 +20 on 20 2 20 20 20 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 0 0 0 0 0 0 0 0 8 0 --. 3 10 0 0 0 0 1 +MDSC provides mdsc M MD MDS MDSC BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 0 no 0 8 0 0 0 0 1 +[CLIENT-SIGNAL] model. [client-signal] [ [C [CL [CLI BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 0 [-]. 4 3 0 0 0 0 1 +5.3. YANG 5.3. 5 5. 5.3 5.3. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 1 .. 2 10 0 0 0 0 1 +5.3.1. Linear 5.3.1. 5 5. 5.3 5.3. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 2 ...(--) 7 10 0 0 0 0 1 +To be to T To To To BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 2 . 1 10 0 0 0 0 1 +5.4. Notifications 5.4. 5 5. 5.4 5.4. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 2 .. 2 10 0 0 0 0 1 +Further detailed further F Fu Fur Furt BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 3 no 0 10 0 0 0 0 1 +5.5. Path 5.5. 5 5. 5.5 5.5. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 3 .. 2 10 0 0 0 0 1 +The path the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 3 no 0 10 0 0 0 0 1 +using the using u us usi usin BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 3 [-][- 5 9 0 0 0 0 1 +COMPUTE]. COMPUTE]. compute]. C CO COM COMP BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 3 ]. 2 1 0 0 0 0 1 +When there when W Wh Whe When BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 4 (..,), 6 8 0 0 0 0 1 +corresponding technology corresponding c co cor corr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 4 (..,) 5 9 0 0 0 0 1 +specify the specify s sp spe spec BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 4 , 1 10 0 0 0 0 1 +in TE in i in in in BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 8 4 . 1 2 0 0 0 0 1 +Further detailed further F Fu Fur Furt BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 6 no 0 10 0 0 0 0 1 +6. Security 6. 6 6. 6. 6. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 7 . 1 10 0 0 0 0 1 +This document this T Th Thi This BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 7 no 0 10 0 0 0 0 1 +defined by defined d de def defi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 7 - 1 8 0 0 0 0 1 +scenarios. scenarios. scenarios. s sc sce scen BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 7 . 1 1 0 0 0 0 1 +Inherently OTN inherently I In Inh Inhe BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 8 no 0 9 0 0 0 0 1 +partitioning of partitioning p pa par part BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 8 . 1 10 0 0 0 0 1 +network traffic network n ne net netw BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 8 8 no 0 9 0 0 0 0 1 +between nodes between b be bet betw BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 8 -. 2 6 0 0 0 0 1 +In OTN in I In In In BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 8 9 () 2 10 0 0 0 0 1 +functions such functions f fu fun func BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 9 ,, 2 10 0 0 0 0 1 +signaling. The signaling. s si sig sign BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 9 . 1 9 0 0 0 0 1 +suitable mechanism. suitable s su sui suit BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 9 . 1 3 0 0 0 0 1 +Busi, King, busi, B Bu Bus Busi BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 8 11 ,,. 3 9 0 0 1 0 0 +Expires March, expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 11 , 1 10 0 0 0 0 0 +[Page 44] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 11 [] 2 5 0 0 0 0 0 +Internet-Draft Transport internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 8 0 -- 2 10 0 0 1 0 1 +September 2019 september S Se Sep Sept BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 0 0 0 1 0 0 8 0 no 0 10 0 0 1 0 1 +There are there T Th The Ther BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 0 no 0 10 0 0 0 0 1 +this document. this t th thi this BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 0 . 1 2 0 0 0 0 1 +7. IANA 7. 7 7. 7. 7. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 0 . 1 10 0 0 0 0 1 +This document this T Th Thi This BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 1 . 1 10 0 0 0 0 1 +8. References 8. 8 8. 8. 8. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 1 . 1 10 0 0 0 0 1 +8.1. Normative 8.1. 8 8. 8.1 8.1. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 1 .. 2 10 0 0 0 0 1 +[RFC4427] Mannie, [rfc4427] [ [R [RF [RFC BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 1 [],.,,.,"( 10 10 0 0 0 0 1 +Restoration) Terminology restoration) R Re Res Rest BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 8 1 )- 2 8 0 0 0 0 1 +Label Switching label L La Lab Labe BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 1 ()",,. 6 7 0 0 0 0 1 +[RFC4655] Farrel, [rfc4655] [ [R [RF [RFC BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 2 [],..,"()- 10 10 0 0 0 0 1 +Architecture", RFC4655, architecture", A Ar Arc Arch BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 8 2 ",,. 4 5 0 0 0 0 1 +[RFC7926] Farrel, [rfc7926] [ [R [RF [RFC BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 3 [],..," 7 10 0 0 0 0 1 +Information Exchange information I In Inf Info BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 3 - 1 7 0 0 0 0 1 +Engineered Networks", engineered E En Eng Engi BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 3 ",,,. 5 7 0 0 0 0 1 +[RFC8345] Clemm, [rfc8345] [ [R [RF [RFC BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 4 [],.,,..," 10 10 0 0 0 0 1 +Network Topologies", network N Ne Net Netw BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 8 4 ",,. 4 6 0 0 0 0 1 +[RFC8453] Ceccarelli, [rfc8453] [ [R [RF [RFC BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 5 [],.,,..," 10 10 0 0 0 0 1 +and Control and a an and and BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 5 ()",,. 6 8 0 0 0 0 1 +[ITU-T G.709] [itu-t [ [I [IT [ITU BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 6 [-.]-.(/)," 11 10 0 0 0 0 1 +the optical the t th the the BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 6 ",. 3 6 0 0 0 0 1 +[ITU-T G.808.1] [itu-t [ [I [IT [ITU BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 7 [-..]-..(/)," 13 10 0 0 0 0 1 +protection switching protection p pr pro prot BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 7 - 1 7 0 0 0 0 1 +protection", May protection", p pr pro prot BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 7 ",. 3 3 0 0 0 0 1 +[ITU-T G.873.1] [itu-t [ [I [IT [ITU BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 8 [-..]-..(/)," 13 10 0 0 0 0 1 +transport network transport t tr tra tran BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 8 ():",. 6 8 0 0 0 0 1 +[TE-TOPO] Liu, [te-topo] [ [T [TE [TE- BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 9 [-],..,"", 10 10 0 0 0 0 1 +draft-ietf-teas-yang-te-topo, work draft-ietf-teas-yang-te-topo, d dr dra draf BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 9 -----,. 7 7 0 0 0 0 1 +[OTN-TOPO] Zheng, [otn-topo] [ [O [OT [OTN BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 10 [-],..," 8 10 0 0 0 0 1 +Transport Network transport T Tr Tra Tran BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 10 ",----- 7 9 0 0 0 0 1 +yang, work yang, y ya yan yang BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 10 ,. 2 4 0 0 0 0 1 +Busi, King, busi, B Bu Bus Busi BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 8 11 ,,. 3 9 0 0 1 0 0 +Expires March, expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 11 , 1 10 0 0 0 0 0 +[Page 45] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 11 [] 2 5 0 0 0 0 0 +Internet-Draft Transport internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 8 0 -- 2 10 0 0 1 0 1 +September 2019 september S Se Sep Sept BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 0 0 0 1 0 0 8 0 no 0 10 0 0 1 0 1 +[CLIENT-TOPO] Zheng, [client-topo] [ [C [CL [CLI BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 0 [-],..,"- 9 10 0 0 0 0 1 +Topology", draft-zheng-ccamp-client-topo-yang, topology", T To Top Topo BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 8 0 ",-----, 8 8 0 0 0 0 1 +progress. progress. progress. p pr pro prog BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 0 . 1 1 0 0 0 0 1 +[TE-TUNNEL] Saad, [te-tunnel] [ [T [TE [TE- BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 1 [-],..," 8 10 0 0 0 0 1 +Engineering Tunnels engineering E En Eng Engi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 1 ",---- 6 9 0 0 0 0 1 +te, work te, t te te, te, BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 1 ,. 2 3 0 0 0 0 1 +[PATH-COMPUTE] Busi, [path-compute] [ [P [PA [PAT BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 2 [-],.,,.," 10 10 0 0 0 0 1 +requesting Path requesting r re req requ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 2 ",----- 7 9 0 0 0 0 1 +computation, work computation, c co com comp BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 2 ,. 2 5 0 0 0 0 1 +[OTN-TUNNEL] [OTN-TUNNEL] [otn-tunnel] [ [O [OT [OTN BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 3 [-] 3 2 0 0 0 0 1 +Zheng, H. zheng, Z Zh Zhe Zhen BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 8 3 ,..,"",- 8 10 0 0 0 0 1 +ietf-ccamp-otn-tunnel-model, work ietf-ccamp-otn-tunnel-model, i ie iet ietf BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 3 ----,. 6 9 0 0 0 0 1 +[CLIENT-SIGNAL] [CLIENT-SIGNAL] [client-signal] [ [C [CL [CLI BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 4 [-] 3 2 0 0 0 0 1 +Zheng, H. zheng, Z Zh Zhe Zhen BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 8 4 ,..," 5 8 0 0 0 0 1 +Transport Network transport T Tr Tra Tran BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 4 ",---- 6 10 0 0 0 0 1 +client-signal-yang, work client-signal-yang, c cl cli clie BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 4 --,. 4 6 0 0 0 0 1 +8.2. Informative 8.2. 8 8. 8.2 8.2. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 5 .. 2 10 0 0 0 0 1 +[RFC5151] Farrel, [rfc5151] [ [R [RF [RFC BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 5 [],..,"- 8 10 0 0 0 0 1 +Engineering --Resource engineering E En Eng Engi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 5 --- 3 7 0 0 0 0 1 +Engineering (RSVP-TE) engineering E En Eng Engi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 5 (-)",, 6 8 0 0 0 0 1 +2008. 2008. 2008. 2 20 200 2008 BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 1 0 0 0 8 5 . 1 0 0 0 0 0 1 +[RFC6898] Li, [rfc6898] [ [R [RF [RFC BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 7 [],..," 7 10 0 0 0 0 1 +Negotiation and negotiation N Ne Neg Nego BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 7 ",, 3 9 0 0 0 0 1 +March 2013. march M Ma Mar Marc BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 8 7 . 1 2 0 0 0 0 1 +[RFC8040] Bierman, [rfc8040] [ [R [RF [RFC BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 7 [],..,"",, 10 10 0 0 0 0 1 +2017. 2017. 2017. 2 20 201 2017 BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 1 0 0 0 8 7 . 1 0 0 0 0 0 1 +[RFC8309] Wu, [rfc8309] [ [R [RF [RFC BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 8 [],..,"",, 10 10 0 0 0 0 1 +January 2018. january J Ja Jan Janu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 0 0 0 1 0 0 8 8 . 1 2 0 0 0 0 1 +[ACTN-YANG] Zhang, [actn-yang] [ [A [AC [ACT BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 9 [-],..," 8 10 0 0 0 0 1 +Abstraction and abstraction A Ab Abs Abst BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 9 ", 2 8 0 0 0 0 1 +draft-zhang-teas-actn-yang, work draft-zhang-teas-actn-yang, d dr dra draf BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 9 ----,. 6 7 0 0 0 0 1 +[RFC-FOLD] Watsen, [rfc-fold] [ [R [RF [RFC BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 10 [-],..," 8 10 0 0 0 0 1 +Internet-Drafts and internet-drafts I In Int Inte BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 8 10 -",---- 7 8 0 0 0 0 1 +folding, work folding, f fo fol fold BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 10 , 1 4 0 0 0 0 1 +Busi, King, busi, B Bu Bus Busi BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 8 11 ,,. 3 9 0 0 1 0 0 +Expires March, expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 11 , 1 10 0 0 0 0 0 +[Page 46] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 11 [] 2 5 0 0 0 0 0 +Internet-Draft Transport internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 8 0 -- 2 10 0 0 1 0 1 +September 2019 september S Se Sep Sept BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 0 0 0 1 0 0 8 0 no 0 10 0 0 1 0 1 +[TE-TUTORIAL] Bryskin, [te-tutorial] [ [T [TE [TE- BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 0 [-],..," 8 10 0 0 0 0 1 +for Transport for f fo for for BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 0 ",------ 8 7 0 0 0 0 1 +tunnel-modeling, work tunnel-modeling, t tu tun tunn BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 0 -, 2 5 0 0 0 0 1 +[ONF TR-527] [onf [ [O [ON [ONF BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 1 [-]-," 6 10 0 0 0 0 1 +Requirements for requirements R Re Req Requ BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 1 ",. 3 7 0 0 0 0 1 +[ONF GitHub] [onf [ [O [ON [ONF BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 2 [](), 5 8 0 0 0 0 1 +<https://github.com/OpenNetworkingFoundation/Snowmass- <https://github.com/OpenNetworkingFoundation/Snowmass- <https://github.com/opennetworkingfoundation/snowmass- < <h <ht <htt BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 1 8 2 ://.//- 7 10 0 0 0 0 1 +ONFOpenTransport> ONFOpenTransport> onfopentransport> O ON ONF ONFO BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 8 2 no 0 3 0 0 0 0 1 +[MEF 55] [mef [ [M [ME [MEF BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 2 []," 4 10 0 0 0 0 1 +(LSO): Reference (lso): ( (L (LS (LSO BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 2 ():", 5 8 0 0 0 0 1 +Specification MEF specification S Sp Spe Spec BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 2 ,, 2 5 0 0 0 0 1 +<https://www.mef.net/Assets/Technical_Specifications/PDF/M <https://www.mef.net/Assets/Technical_Specifications/PDF/M <https://www.mef.net/assets/technical_specifications/pdf/m < <h <ht <htt BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 1 8 2 ://..//// 9 9 0 0 0 0 1 +EF_55.pdf> EF_55.pdf> ef_55.pdf> E EF EF_ EF_5 BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 2 . 1 1 0 0 0 0 1 +9. Acknowledgments 9. 9 9. 9. 9. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 4 . 1 10 0 0 0 0 1 +The authors the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 4 no 0 9 0 0 0 0 1 +Design Team design D De Des Desi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 4 , 1 10 0 0 0 0 1 +and guidelines and a an and and BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 4 no 0 9 0 0 0 0 1 +Interface (NBI) interface I In Int Inte BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 4 (). 3 7 0 0 0 0 1 +The authors the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 5 ,, 2 9 0 0 0 0 1 +Belotti, Tara belotti, B Be Bel Belo BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 8 5 ,,,, 4 9 0 0 0 0 1 +Gonzalez de gonzalez G Go Gon Gonz BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 0 0 0 0 0 0 8 5 , 1 10 0 0 0 0 1 +the work the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 5 no 0 9 0 0 0 0 1 +foundations work foundations f fo fou foun BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 5 . 1 8 0 0 0 0 1 +The authors the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 7 no 0 10 0 0 0 0 1 +Tunnel YANG tunnel T Tu Tun Tunn BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 7 [-][-],, 8 9 0 0 0 0 1 +Bryskin, Vishnu bryskin, B Br Bry Brys BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 8 7 ,,, 3 10 0 0 0 0 1 +support in support s su sup supp BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 8 7 . 1 10 0 0 0 0 1 +The authors the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 9 no 0 9 0 0 0 0 1 +input and input i in inp inpu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 9 no 0 10 0 0 0 0 1 +examples. examples. examples. e ex exa exam BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 9 . 1 1 0 0 0 0 1 +This work this T Th Thi This BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 10 no 0 10 0 0 0 0 1 +H2020-ICT-2016-2 METRO-HAUL h2020-ict-2016-2 H H2 H20 H202 BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 1 0 0 0 8 10 ----(..). 9 7 0 0 0 0 1 +This document this T Th Thi This BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 11 --.... 6 10 0 0 0 0 1 +Busi, King, busi, B Bu Bus Busi BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 8 11 ,,. 3 9 0 0 1 0 0 +Expires March, expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 11 , 1 10 0 0 0 0 0 +[Page 47] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 11 [] 2 5 0 0 0 0 0 +Internet-Draft Transport internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 8 0 -- 2 10 0 0 1 0 1 +September 2019 september S Se Sep Sept BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 0 0 0 1 0 0 8 3 no 0 10 0 0 1 0 1 +Busi, King, busi, B Bu Bus Busi BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 8 5 ,,. 3 9 0 0 1 0 0 +Expires March, expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 5 , 1 10 0 0 0 0 0 +[Page 48] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 5 [] 2 5 0 0 0 0 0 +Internet-Draft Transport internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 8 0 -- 2 10 0 0 1 0 1 +September 2019 september S Se Sep Sept BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 0 0 0 1 0 0 8 0 no 0 10 0 0 1 0 1 +Appendix A. appendix A Ap App Appe BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 0 . 1 10 0 0 0 0 1 +The objective the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 0 no 0 9 0 0 0 0 1 +piece of piece p pi pie piec BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 0 - 1 10 0 0 0 0 1 +YANG model yang Y YA YAN YANG BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 1 0 0 0 0 0 0 8 0 /. 2 6 0 0 0 0 1 +A.1. Manipulation a.1. A A. A.1 A.1. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 1 .. 2 10 0 0 0 0 1 +This section this T Th Thi This BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 2 no 0 10 0 0 0 0 1 +the I-D the t th the the BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 2 -. 2 6 0 0 0 0 1 +Let's call let's L Le Let Let' BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 8 3 '"-"-: 6 10 0 0 0 0 1 +72 chars 72 7 72 72 72 BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS ALLDIGIT 0 0 0 0 0 0 0 0 8 3 . 1 9 0 0 0 0 1 +We then we W We We We BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 4 "-" 3 10 0 0 0 0 1 +contents of contents c co con cont BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 4 "-",.. 6 9 0 0 0 0 1 +text width. text t te tex text BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 4 ./ 2 10 0 0 0 0 1 +[RFC-FOLD]. The [rfc-fold]. [ [R [RF [RFC BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 4 [-]."-" 7 9 0 0 0 0 1 +JSON editors json J JS JSO JSON BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 4 - 1 9 0 0 0 0 1 +printing. printing. printing. p pr pri prin BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 4 . 1 1 0 0 0 0 1 +Both the both B Bo Bot Both BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 6 """" 4 9 0 0 0 0 1 +comments having comments c co com comm BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 8 6 ' 1 9 0 0 0 0 1 +later to later l la lat late BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 6 . 1 10 0 0 0 0 1 +The presence the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 7 "-" 3 10 0 0 0 0 1 +invalid JSON invalid i in inv inva BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 7 ."" 3 9 0 0 0 0 1 +the JSON the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 7 : 1 9 0 0 0 0 1 +valid JSON valid v va val vali BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 7 . 1 8 0 0 0 0 1 +The following the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 9 : 1 10 0 0 0 0 1 +unfold_it --> unfold_it u un unf unfo BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 9 -- 2 10 0 0 0 0 1 +stripper --> stripper s st str stri BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 9 -- 2 9 0 0 0 0 1 +Folded-JSON Folded-JSON folded-json F Fo Fol Fold BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 8 10 - 1 8 0 0 0 0 1 +Unfolded-JSON Unfolded-JSON unfolded-json U Un Unf Unfo BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 8 10 - 1 10 0 0 0 0 1 +Naked JSON naked N Na Nak Nake BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 10 no 0 7 0 0 0 0 1 +<--fold_it <--fold_it <--fold_it < <- <-- <--f BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 10 -- 2 6 0 0 0 0 1 +<--author edits <--author < <- <-- <--a BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 10 -- 2 10 0 0 0 0 1 +<=72-chars? <=72-chars? <=72-chars? < <= <=7 <=72 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 10 -? 2 10 0 0 0 0 1 +MUST MUST must M MU MUS MUST BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 8 10 no 0 4 0 0 0 0 1 +MAY MAY may M MA MAY MAY BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 1 1 0 0 1 0 0 8 10 no 0 3 0 0 0 0 1 +MAY MAY may M MA MAY MAY BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 1 1 0 0 1 0 0 8 10 no 0 3 0 0 0 0 1 +valid JSON? valid v va val vali BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 10 ? 1 10 0 0 0 0 1 +MAY MAY may M MA MAY MAY BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 1 1 0 0 1 0 0 8 10 no 0 3 0 0 0 0 1 +MUST MUST must M MU MUS MUST BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 8 10 no 0 4 0 0 0 0 1 +MUST MUST must M MU MUS MUST BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 8 10 no 0 4 0 0 0 0 1 +JSON-encoding JSON-encoding json-encoding J JS JSO JSON BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 8 11 - 1 10 0 0 0 0 1 +MAY MAY may M MA MAY MAY BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 1 1 0 0 1 0 0 8 11 no 0 2 0 0 0 0 1 +MAY MAY may M MA MAY MAY BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 1 1 0 0 1 0 0 8 11 no 0 2 0 0 0 0 1 +MUST MUST must M MU MUS MUST BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 8 11 no 0 3 0 0 0 0 1 +Busi, King, busi, B Bu Bus Busi BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 8 11 ,,. 3 9 0 0 1 0 0 +Expires March, expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 11 , 1 10 0 0 0 0 0 +[Page 49] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 11 [] 2 5 0 0 0 0 0 +Internet-Draft Transport internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 8 0 -- 2 10 0 0 1 0 1 +September 2019 september S Se Sep Sept BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 0 0 0 1 0 0 8 0 no 0 10 0 0 1 0 1 +of YANG of o of of of BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 0 no 0 10 0 0 0 0 1 +Our validation our O Ou Our Our BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 0 no 0 10 0 0 0 0 1 +the three the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 0 no 0 9 0 0 0 0 1 +relevant YANG relevant r re rel rele BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 0 -. 2 9 0 0 0 0 1 +found at: found f fo fou foun BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 0 :://.//-/ 9 8 0 0 0 0 1 +A.2. Comments a.2. A A. A.2 A.2. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 2 .. 2 10 0 0 0 0 1 +We found we W We We We BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 2 , 1 10 0 0 0 0 1 +key-value pairs key-value k ke key key- BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 2 -"//": 6 7 0 0 0 0 1 +-free-form descriptive -free-form - -f -fr -fre BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 3 --,.."//":"" 12 10 0 0 0 0 1 +to describe to t to to to BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 3 . 1 6 0 0 0 0 1 +-machine-usable directives -machine-usable - -m -ma -mac BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 4 --.."//": 9 9 0 0 0 0 1 +"ietf-routing-types@2017-12-04": "rfc8294",} "ietf-routing-types@2017-12-04": " "i "ie "iet BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 1 0 0 0 8 4 "----":"", 10 10 0 0 0 0 1 +automatically download automatically a au aut auto BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 4 - 1 10 0 0 0 0 1 +and extract and a an and and BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 4 . 1 8 0 0 0 0 1 +particularly useful particularly p pa par part BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 4 no 0 10 0 0 0 0 1 +rapidly evolving. rapidly r ra rap rapi BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 4 . 1 2 0 0 0 0 1 +A.3. Validation a.3. A A. A.3 A.3. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 6 ..:- 4 10 0 0 0 0 1 +The idea the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 6 (), 3 10 0 0 0 0 1 +use it use u us use use BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 6 no 0 9 0 0 0 0 1 +schemas, as schemas, s sc sch sche BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 6 ,. 2 4 0 0 0 0 1 +Useful link: useful U Us Use Usef BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 8 :://.//// 9 10 0 0 0 0 1 +(2) (2) (2) ( (2 (2) (2) BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 8 () 2 0 0 0 0 0 1 +YANG-module ---> yang-module Y YA YAN YANG BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 9 8 -----(,,) 9 7 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 8 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 8 no 0 0 0 0 0 0 1 +| (1) | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 8 () 2 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 8 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 8 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 8 no 0 0 0 0 0 0 1 +Config/state JTOX-file config/state C Co Con Conf BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 9 8 /- 2 4 0 0 0 0 1 +| (4) | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 8 () 2 1 0 0 0 0 1 +\ \ \ \ \ \ \ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 8 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 8 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 8 no 0 0 0 0 0 0 1 +\ \ \ \ \ \ \ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 8 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 8 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 8 no 0 0 0 0 0 0 1 +\ \ \ \ \ \ \ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 8 no 0 0 0 0 0 0 1 +V V v V V V V BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 8 no 0 0 0 0 0 0 1 +V V v V V V V BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 8 no 0 0 0 0 0 0 1 +JSON-file------------> XML-file json-file------------> J JS JSO JSON BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 9 8 ------------------------------ 30 10 0 0 0 0 1 +(3) (3) (3) ( (3 (3) (3) BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 8 () 2 0 0 0 0 0 1 +Figure 8 figure F Fi Fig Figu BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 11 -- 2 10 0 0 0 0 1 +Busi, King, busi, B Bu Bus Busi BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 9 11 ,,. 3 9 0 0 1 0 0 +Expires March, expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 11 , 1 10 0 0 0 0 0 +[Page 50] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 11 [] 2 5 0 0 0 0 0 +Internet-Draft Transport internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 9 0 -- 2 10 0 0 1 0 1 +September 2019 september S Se Sep Sept BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 0 0 0 1 0 0 9 0 no 0 10 0 0 1 0 1 +In order in I In In In BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 9 0 no 0 9 0 0 0 0 1 +defined in defined d de def defi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 0 ,, 2 9 0 0 0 0 1 +these comments these t th the thes BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 0 - 1 10 0 0 0 0 1 +will be will w wi wil will BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 9 0 . 1 2 0 0 0 0 1 +A.4. Validation a.4. A A. A.4 A.4. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 2 ..:- 4 10 0 0 0 0 1 +This approach this T Th Thi This BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 3 no 0 10 0 0 0 0 1 +supported by supported s su sup supp BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 3 . 1 3 0 0 0 0 1 +The idea the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 4 , 1 10 0 0 0 0 1 +against the against a ag aga agai BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 4 ,: 2 6 0 0 0 0 1 +(1) (1) (1) ( (1 (1) (1) BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 5 () 2 1 0 0 0 0 1 +YANG-module ---> yang-module Y YA YAN YANG BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 9 5 ------ 6 9 0 0 0 0 1 +(3) (3) (3) ( (3 (3) (3) BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 5 () 2 1 0 0 0 0 1 ++--> Validation +--> + +- +-- +--> BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 5 -- 2 5 0 0 0 0 1 +JSON-file------> XML-file json-file------> J JS JSO JSON BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 9 5 ------------/ 13 10 0 0 0 0 1 +(2) (2) (2) ( (2 (2) (2) BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 5 () 2 1 0 0 0 0 1 +Figure 9 figure F Fi Fig Figu BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 7 -- 2 10 0 0 0 0 1 +The pyang the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 8 . 1 9 0 0 0 0 1 +and removed and a an and and BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 8 ..... 5 10 0 0 0 0 1 +YANG 1.1 yang Y YA YAN YANG BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 1 0 0 0 0 0 0 9 8 . 1 9 0 0 0 0 1 +(1). (1). (1). ( (1 (1) (1). BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 8 (). 3 0 0 0 0 0 1 +Busi, King, busi, B Bu Bus Busi BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 9 11 ,,. 3 9 0 0 1 0 0 +Expires March, expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 11 , 1 10 0 0 0 0 0 +[Page 51] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 11 [] 2 5 0 0 0 0 0 +Internet-Draft Transport internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 9 0 -- 2 10 0 0 1 0 1 +September 2019 september S Se Sep Sept BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 0 0 0 1 0 0 9 0 no 0 10 0 0 1 0 1 +Appendix B. appendix A Ap App Appe BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 1 . 1 10 0 0 0 0 1 +The JSON the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 2 no 0 10 0 0 0 0 1 +using the using u us usi usin BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 2 [- 2 9 0 0 0 0 1 +FOLD]. FOLD]. fold]. F FO FOL FOLD BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 2 ]. 2 1 0 0 0 0 1 +B.1. JSON b.1. B B. B.1 B.1. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 5 .. 2 10 0 0 0 0 1 +B.1.1. B.1.1. b.1.1. B B. B.1 B.1. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 7 ... 3 2 0 0 0 0 1 +JSON Code: json J JS JSO JSON BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 7 :--. 4 10 0 0 0 0 1 +This is this T Th Thi This BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 8 : 1 10 0 0 0 0 1 +Busi, King, busi, B Bu Bus Busi BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 9 10 ,,. 3 9 0 0 1 0 0 +Expires March, expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 10 , 1 10 0 0 0 0 0 +[Page 52] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 10 [] 2 5 0 0 0 0 0 +Internet-Draft Transport internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 9 0 -- 2 10 0 0 1 0 1 +September 2019 september S Se Sep Sept BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 0 0 0 1 0 0 9 0 no 0 10 0 0 1 0 1 +========== NOTE: ========== = == === ==== BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 0 :''() 5 10 0 0 0 0 1 +{ { { { { { { BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 0 no 0 0 0 0 0 0 1 +"// __TITLE__": "// " "/ "// "// BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 0 "//":"", 8 6 0 0 0 0 1 +"// __LAST_UPDATE__": "// " "/ "// "// BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 0 "//":",", 9 6 0 0 0 0 1 +"// __MISSING_ATTRIBUTES__": "// " "/ "// "// BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 0 "//":, 6 5 0 0 0 0 1 +"// __REFERENCE_DRAFTS__": "// " "/ "// "// BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 0 "//": 5 4 0 0 0 0 1 +"ietf-routing-types@2017-12-04": "rfc8294", "ietf-routing-types@2017-12-04": " "i "ie "iet BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 1 0 0 0 9 0 "----":"", 10 6 0 0 0 0 1 +"ietf-otn-types@2017-10-30": "draft-ietf-ccamp-otn-tunnel-model-\ "ietf-otn-types@2017-10-30": " "i "ie "iet BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 1 0 0 0 9 0 "----":"------ 14 10 0 0 0 0 1 +\01", \01", \01", \ \0 \01 \01" BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 0 ", 2 0 0 0 0 0 1 +"ietf-network@2018-02-26": "rfc8345", "ietf-network@2018-02-26": " "i "ie "iet BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 1 0 0 0 9 0 "---":"", 9 5 0 0 0 0 1 +"ietf-network-topology@2018-02-26": "rfc8345", "ietf-network-topology@2018-02-26": " "i "ie "iet BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 1 0 0 0 9 0 "----":"", 10 7 0 0 0 0 1 +"ietf-te-types@2018-06-12": "draft-ietf-teas-yang-te-15", "ietf-te-types@2018-06-12": " "i "ie "iet BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 1 0 0 0 9 0 "----":"-----", 15 8 0 0 0 0 1 +"ietf-te-topology@2018-06-15": "draft-ietf-teas-yang-te-topo-18", "ietf-te-topology@2018-06-15": " "i "ie "iet BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 1 0 0 0 9 0 "----":"------", 16 10 0 0 0 0 1 +"ietf-otn-topology@2017-10-30": "draft-ietf-ccamp-otn-topo-yang-\ "ietf-otn-topology@2017-10-30": " "i "ie "iet BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 1 0 0 0 9 0 "----":"------ 14 10 0 0 0 0 1 +\02" \02" \02" \ \0 \02 \02" BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 0 " 1 0 0 0 0 0 1 +}, }, }, } }, }, }, BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 0 , 1 0 0 0 0 0 1 +"// __RESTCONF_OPERATION__": "// " "/ "// "// BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 0 "//": 5 4 0 0 0 0 1 +"operation": "GET", "operation": " "o "op "ope BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 0 "":"", 6 3 0 0 0 0 1 +"url": "http://{{PNC1-ADDR}}/restconf/data/ietf-network:networks" "url": " "u "ur "url BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 0 "":"://-///-:" 14 10 0 0 0 0 1 +}, }, }, } }, }, }, BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 0 , 1 0 0 0 0 0 1 +"ietf-network:networks": { "ietf-network:networks": " "i "ie "iet BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 0 "-:": 5 4 0 0 0 0 1 +"network": [ "network": " "n "ne "net BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 0 "":[ 4 1 0 0 0 0 1 +{ { { { { { { BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 0 no 0 0 0 0 0 0 1 +"network-id": "providerId/201/clientId/300/topologyId/otn-bl\ "network-id": " "n "ne "net BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 0 "-":"/////- 11 9 0 0 0 0 1 +\ack-topology", \ack-topology", \ack-topology", \ \a \ac \ack BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 0 -", 3 2 0 0 0 0 1 +"network-types": { "network-types": " "n "ne "net BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 0 "-": 4 2 0 0 0 0 1 +"ietf-te-topology:te-topology": { "ietf-te-topology:te-topology": " "i "ie "iet BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 0 "--:-": 7 5 0 0 0 0 1 +"ietf-otn-topology:otn-topology": {} "ietf-otn-topology:otn-topology": " "i "ie "iet BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 0 "--:-": 7 5 0 0 0 0 1 +} } } } } } } BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 0 no 0 0 0 0 0 0 1 +}, }, }, } }, }, }, BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 0 , 1 0 0 0 0 0 1 +"ietf-te-topology:provider-id": 201, "ietf-te-topology:provider-id": " "i "ie "iet BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 0 "--:-":, 8 5 0 0 0 0 1 +"ietf-te-topology:client-id": 300, "ietf-te-topology:client-id": " "i "ie "iet BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 0 "--:-":, 8 5 0 0 0 0 1 +"ietf-te-topology:te-topology-id": "otn-black-topology", "ietf-te-topology:te-topology-id": " "i "ie "iet BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 0 "--:--":"--", 13 8 0 0 0 0 1 +"// ietf-te-topology:te": "// " "/ "// "// BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 0 "//--:":": 10 9 0 0 0 0 1 +\ider, client \ider, \ \i \id \ide BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 0 ,--", 5 5 0 0 0 0 1 +"ietf-te-topology:te": { "ietf-te-topology:te": " "i "ie "iet BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 0 "--:": 6 3 0 0 0 0 1 +"name": "OTN "name": " "n "na "nam BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 0 "":"" 5 5 0 0 0 0 1 +}, }, }, } }, }, }, BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 0 , 1 0 0 0 0 0 1 +"// ietf-network:node": "// " "/ "// "// BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 0 "//-:":" 8 9 0 0 0 0 1 +\ure update", \ure \ \u \ur \ure BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 0 ", 2 2 0 0 0 0 1 +"ietf-network:node": [ "ietf-network:node": " "i "ie "iet BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 0 "-:":[ 6 3 0 0 0 0 1 +{ { { { { { { BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 0 no 0 0 0 0 0 0 1 +"// __NODE__:__DESCRIPTION__": "// " "/ "// "// BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 0 "//:": 6 5 0 0 0 0 1 +Busi, King, busi, B Bu Bus Busi BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 9 11 ,,. 3 9 0 0 1 0 0 +Expires March, expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 11 , 1 10 0 0 0 0 0 +[Page 53] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 11 [] 2 5 0 0 0 0 0 +Internet-Draft Transport internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 9 0 -- 2 10 0 0 1 0 1 +September 2019 september S Se Sep Sept BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 0 0 0 1 0 0 9 0 no 0 10 0 0 1 0 1 +"name": "AN1", "name": " "n "na "nam BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 0 "":"", 6 2 0 0 0 0 1 +"identifier": "10.0.0.1", "identifier": " "i "id "ide BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 0 "":"...", 9 4 0 0 0 0 1 +"type": "Abstract "type": " "t "ty "typ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 0 "":"", 6 4 0 0 0 0 1 +"physical node(s)": "physical " "p "ph "phy BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 0 "()":"" 7 8 0 0 0 0 1 +}, }, }, } }, }, }, BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 0 , 1 0 0 0 0 0 1 +"node-id": "10.0.0.1", "node-id": " "n "no "nod BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 0 "-":"...", 10 4 0 0 0 0 1 +"ietf-te-topology:te-node-id": "10.0.0.1", "ietf-te-topology:te-node-id": " "i "ie "iet BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 0 "--:--":"...", 14 7 0 0 0 0 1 +"ietf-te-topology:te": { "ietf-te-topology:te": " "i "ie "iet BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 0 "--:": 6 4 0 0 0 0 1 +"te-node-attributes": { "te-node-attributes": " "t "te "te- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 0 "--": 5 4 0 0 0 0 1 +"name": "AN11", "name": " "n "na "nam BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 0 "":"", 6 2 0 0 0 0 1 +"admin-status": "up", "admin-status": " "a "ad "adm BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 0 "-":"", 7 4 0 0 0 0 1 +"// __DISCUSS__ "// " "/ "// "// BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 0 "//-":" 7 10 0 0 0 0 1 +\TE Topology \te \ \T \TE \TE BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 0 ", 2 4 0 0 0 0 1 +"// __DISCUSS__ "// " "/ "// "// BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 0 "//-":" 7 10 0 0 0 0 1 +\ with \ \ \ \ \ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 0 " 1 5 0 0 0 0 1 +}, }, }, } }, }, }, BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 0 , 1 0 0 0 0 0 1 +"oper-status": "up", "oper-status": " "o "op "ope BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 0 "-":"", 7 3 0 0 0 0 1 +"// __DISCUSS__ "// " "/ "// "// BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 0 "//--":[] 9 8 0 0 0 0 1 +}, }, }, } }, }, }, BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 0 , 1 0 0 0 0 0 1 +"ietf-network-topology:termination-point": [ "ietf-network-topology:termination-point": " "i "ie "iet BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 0 "--:-":[ 8 8 0 0 0 0 1 +{ { { { { { { BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 0 no 0 0 0 0 0 0 1 +"// __DESCRIPTION__:__LTP__": "// " "/ "// "// BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 0 "//:": 6 5 0 0 0 0 1 +"name": "AN1-1 "name": " "n "na "nam BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 0 "":"-", 7 3 0 0 0 0 1 +"link type(s)": "link " "l "li "lin BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 0 "()":"-", 9 4 0 0 0 0 1 +"physical node": "physical " "p "ph "phy BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 0 "":"", 6 4 0 0 0 0 1 +"unnumberd/ifIndex": 1, "unnumberd/ifindex": " "u "un "unn BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 0 "/":, 5 4 0 0 0 0 1 +"port type": "port " "p "po "por BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 0 "":"", 6 5 0 0 0 0 1 +"connected to": "connected " "c "co "con BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 0 "":"" 5 3 0 0 0 0 1 +}, }, }, } }, }, }, BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 0 , 1 0 0 0 0 0 1 +"tp-id": "1", "tp-id": " "t "tp "tp- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 0 "-":"", 7 2 0 0 0 0 1 +"ietf-te-topology:te-tp-id": 1, "ietf-te-topology:te-tp-id": " "i "ie "iet BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 0 "--:--":, 9 5 0 0 0 0 1 +"ietf-te-topology:te": { "ietf-te-topology:te": " "i "ie "iet BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 0 "--:": 6 4 0 0 0 0 1 +"name": "AN1-1 "name": " "n "na "nam BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 0 "":"-", 7 3 0 0 0 0 1 +"admin-status": "up", "admin-status": " "a "ad "adm BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 0 "-":"", 7 4 0 0 0 0 1 +"// __DISCUSS__ "// " "/ "// "// BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 0 "//--":" 8 9 0 0 0 0 1 +\See Link \see \ \S \Se \See BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 0 (/...//)", 10 10 0 0 0 0 1 +"// __DISCUSS__ "// " "/ "// "// BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 0 "//---":" 9 9 0 0 0 0 1 +\k", \k", \k", \ \k \k" \k", BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 0 ", 2 0 0 0 0 0 1 +"// __COMMENT__ "// " "/ "// "// BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 0 "//---":": 10 9 0 0 0 0 1 +\Links are \links \ \L \Li \Lin BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 0 -", 3 5 0 0 0 0 1 +"oper-status": "up", "oper-status": " "o "op "ope BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 0 "-":"", 7 3 0 0 0 0 1 +"// __DISCUSS__ "// " "/ "// "// BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 0 "//--:- 7 9 0 0 0 0 1 +\d-types": "List \d-types": \ \d \d- \d-t BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 0 -":"?", 7 6 0 0 0 0 1 +"// __DISCUSS__ "// " "/ "// "// BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 0 "//--:-": 9 9 0 0 0 0 1 +Busi, King, busi, B Bu Bus Busi BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 9 11 ,,. 3 9 0 0 1 0 0 +Expires March, expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 11 , 1 10 0 0 0 0 0 +[Page 54] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 11 [] 2 5 0 0 0 0 0 +Internet-Draft Transport internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 9 0 -- 2 10 0 0 1 0 1 +September 2019 september S Se Sep Sept BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 0 0 0 1 0 0 9 0 no 0 10 0 0 1 0 1 +\true \true \true \ \t \tr \tru BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 0 no 0 1 0 0 0 0 1 +} } } } } } } BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 0 no 0 0 0 0 0 0 1 +}, }, }, } }, }, }, BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 0 , 1 0 0 0 0 0 1 +{ { { { { { { BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 0 no 0 0 0 0 0 0 1 +"// __DESCRIPTION__:__LTP__": "// " "/ "// "// BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 0 "//:": 6 5 0 0 0 0 1 +"name": "AN1-2 "name": " "n "na "nam BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 0 "":"-", 7 3 0 0 0 0 1 +"link type(s)": "link " "l "li "lin BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 0 "()":"-", 9 4 0 0 0 0 1 +"physical node": "physical " "p "ph "phy BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 0 "":"", 6 4 0 0 0 0 1 +"unnumberd/ifIndex": 1, "unnumberd/ifindex": " "u "un "unn BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 0 "/":, 5 4 0 0 0 0 1 +"port type": "port " "p "po "por BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 0 "":"-", 7 6 0 0 0 0 1 +"connected to": "connected " "c "co "con BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 0 "":"" 5 4 0 0 0 0 1 +}, }, }, } }, }, }, BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 0 , 1 0 0 0 0 0 1 +"tp-id": "2", "tp-id": " "t "tp "tp- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 0 "-":"", 7 2 0 0 0 0 1 +"ietf-te-topology:te-tp-id": 2, "ietf-te-topology:te-tp-id": " "i "ie "iet BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 0 "--:--":, 9 5 0 0 0 0 1 +"ietf-te-topology:te": { "ietf-te-topology:te": " "i "ie "iet BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 0 "--:": 6 4 0 0 0 0 1 +"name": "AN1-2 "name": " "n "na "nam BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 0 "":"-", 7 3 0 0 0 0 1 +"admin-status": "up", "admin-status": " "a "ad "adm BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 0 "-":"", 7 4 0 0 0 0 1 +"// __DISCUSS__ "// " "/ "// "// BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 0 "//--":" 8 9 0 0 0 0 1 +\See Link \see \ \S \Se \See BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 0 (/...//)", 10 10 0 0 0 0 1 +"// __DISCUSS__ "// " "/ "// "// BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 0 "//---":"- 10 9 0 0 0 0 1 +\in Link", \in \ \i \in \in BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 0 ", 2 2 0 0 0 0 1 +"oper-status": "up", "oper-status": " "o "op "ope BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 0 "-":"", 7 3 0 0 0 0 1 +"// __DISCUSS__ "// " "/ "// "// BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 0 "//--:- 7 9 0 0 0 0 1 +\d-types": "Empty? \d-types": \ \d \d- \d-t BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 0 -":"?(-)", 10 8 0 0 0 0 1 +"// __DEFAULT__ "// " "/ "// "// BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 0 "//--:-": 9 9 0 0 0 0 1 +\false \false \false \ \f \fa \fal BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 0 no 0 1 0 0 0 0 1 +} } } } } } } BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 0 no 0 0 0 0 0 0 1 +}, }, }, } }, }, }, BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 0 , 1 0 0 0 0 0 1 +{ { { { { { { BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 0 no 0 0 0 0 0 0 1 +"// __DESCRIPTION__:__LTP__": "// " "/ "// "// BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 0 "//:": 6 5 0 0 0 0 1 +"name": "AN1-3 "name": " "n "na "nam BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 0 "":"-", 7 3 0 0 0 0 1 +"link type(s)": "link " "l "li "lin BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 0 "()":"-", 9 4 0 0 0 0 1 +"physical node": "physical " "p "ph "phy BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 0 "":"", 6 4 0 0 0 0 1 +"unnumberd/ifIndex": 1, "unnumberd/ifindex": " "u "un "unn BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 0 "/":, 5 4 0 0 0 0 1 +"port type": "port " "p "po "por BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 0 "":"", 6 5 0 0 0 0 1 +"connected to": "connected " "c "co "con BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 0 "":"" 5 3 0 0 0 0 1 +}, }, }, } }, }, }, BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 0 , 1 0 0 0 0 0 1 +"tp-id": "3", "tp-id": " "t "tp "tp- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 0 "-":"", 7 2 0 0 0 0 1 +"ietf-te-topology:te-tp-id": 3, "ietf-te-topology:te-tp-id": " "i "ie "iet BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 0 "--:--":, 9 5 0 0 0 0 1 +"ietf-te-topology:te": { "ietf-te-topology:te": " "i "ie "iet BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 0 "--:": 6 4 0 0 0 0 1 +"name": "AN1-3 "name": " "n "na "nam BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 0 "":"-", 7 3 0 0 0 0 1 +"admin-status": "up", "admin-status": " "a "ad "adm BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 0 "-":"", 7 4 0 0 0 0 1 +"// __DISCUSS__ "// " "/ "// "// BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 0 "//--":" 8 9 0 0 0 0 1 +\See Link \see \ \S \Se \See BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 0 (/...//)", 10 10 0 0 0 0 1 +Busi, King, busi, B Bu Bus Busi BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 9 11 ,,. 3 9 0 0 1 0 0 +Expires March, expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 11 , 1 10 0 0 0 0 0 +[Page 55] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 11 [] 2 5 0 0 0 0 0 +Internet-Draft Transport internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 9 0 -- 2 10 0 0 1 0 1 +September 2019 september S Se Sep Sept BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 0 0 0 1 0 0 9 0 no 0 10 0 0 1 0 1 +"// __DISCUSS__ "// " "/ "// "// BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 0 "//---":" 9 9 0 0 0 0 1 +\k", \k", \k", \ \k \k" \k", BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 0 ", 2 0 0 0 0 0 1 +"oper-status": "up", "oper-status": " "o "op "ope BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 0 "-":"", 7 3 0 0 0 0 1 +"// __DISCUSS__ "// " "/ "// "// BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 0 "//--:- 7 9 0 0 0 0 1 +\d-types": "List \d-types": \ \d \d- \d-t BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 0 -":"?", 7 6 0 0 0 0 1 +"// __DISCUSS__ "// " "/ "// "// BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 0 "//--:-": 9 9 0 0 0 0 1 +\true \true \true \ \t \tr \tru BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 0 no 0 1 0 0 0 0 1 +} } } } } } } BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 0 no 0 0 0 0 0 0 1 +}, }, }, } }, }, }, BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 0 , 1 0 0 0 0 0 1 +{ { { { { { { BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 0 no 0 0 0 0 0 0 1 +"// __DESCRIPTION__:__LTP__": "// " "/ "// "// BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 0 "//:": 6 5 0 0 0 0 1 +"name": "AN1-4 "name": " "n "na "nam BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 0 "":"-", 7 3 0 0 0 0 1 +"link type(s)": "link " "l "li "lin BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 0 "()":"-", 9 4 0 0 0 0 1 +"physical node": "physical " "p "ph "phy BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 0 "":"", 6 4 0 0 0 0 1 +"unnumberd/ifIndex": 1, "unnumberd/ifindex": " "u "un "unn BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 0 "/":, 5 4 0 0 0 0 1 +"port type": "port " "p "po "por BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 0 "":"-", 7 6 0 0 0 0 1 +"connected to": "connected " "c "co "con BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 0 "":"" 5 4 0 0 0 0 1 +}, }, }, } }, }, }, BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 0 , 1 0 0 0 0 0 1 +"tp-id": "4", "tp-id": " "t "tp "tp- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 0 "-":"", 7 2 0 0 0 0 1 +"ietf-te-topology:te-tp-id": 4, "ietf-te-topology:te-tp-id": " "i "ie "iet BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 0 "--:--":, 9 5 0 0 0 0 1 +"ietf-te-topology:te": { "ietf-te-topology:te": " "i "ie "iet BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 0 "--:": 6 4 0 0 0 0 1 +"name": "AN1-4 "name": " "n "na "nam BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 0 "":"-", 7 3 0 0 0 0 1 +"admin-status": "up", "admin-status": " "a "ad "adm BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 0 "-":"", 7 4 0 0 0 0 1 +"// __DISCUSS__ "// " "/ "// "// BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 0 "//--":" 8 9 0 0 0 0 1 +\See Link \see \ \S \Se \See BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 0 (/...//)", 10 10 0 0 0 0 1 +"// __DISCUSS__ "// " "/ "// "// BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 0 "//---":"- 10 9 0 0 0 0 1 +\in Link", \in \ \i \in \in BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 0 ", 2 2 0 0 0 0 1 +"oper-status": "up", "oper-status": " "o "op "ope BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 0 "-":"", 7 3 0 0 0 0 1 +"// __DISCUSS__ "// " "/ "// "// BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 0 "//--:- 7 9 0 0 0 0 1 +\d-types": "Empty? \d-types": \ \d \d- \d-t BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 0 -":"?(-)", 10 8 0 0 0 0 1 +"// __DEFAULT__ "// " "/ "// "// BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 0 "//--:-": 9 9 0 0 0 0 1 +\false \false \false \ \f \fa \fal BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 0 no 0 1 0 0 0 0 1 +} } } } } } } BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 0 no 0 0 0 0 0 0 1 +}, }, }, } }, }, }, BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 0 , 1 0 0 0 0 0 1 +{ { { { { { { BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 0 no 0 0 0 0 0 0 1 +"// __DESCRIPTION__:__LTP__": "// " "/ "// "// BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 0 "//:": 6 5 0 0 0 0 1 +"name": "AN1-5 "name": " "n "na "nam BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 0 "":"-", 7 3 0 0 0 0 1 +"link type(s)": "link " "l "li "lin BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 0 "()":"-", 9 4 0 0 0 0 1 +"physical node": "physical " "p "ph "phy BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 0 "":"", 6 4 0 0 0 0 1 +"unnumberd/ifIndex": 5, "unnumberd/ifindex": " "u "un "unn BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 0 "/":, 5 4 0 0 0 0 1 +"port type": "port " "p "po "por BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 0 "":"-", 7 6 0 0 0 0 1 +"connected to": "connected " "c "co "con BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 0 "":"" 5 4 0 0 0 0 1 +}, }, }, } }, }, }, BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 0 , 1 0 0 0 0 0 1 +"tp-id": "5", "tp-id": " "t "tp "tp- BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 0 "-":"", 7 2 0 0 0 0 1 +Busi, King, busi, B Bu Bus Busi BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 9 11 ,,. 3 9 0 0 1 0 0 +Expires March, expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 11 , 1 10 0 0 0 0 0 +[Page 56] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 11 [] 2 5 0 0 0 0 0 +Internet-Draft Transport internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 9 0 -- 2 10 0 0 1 0 1 +September 2019 september S Se Sep Sept BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 0 0 0 1 0 0 9 0 no 0 10 0 0 1 0 1 +"ietf-te-topology:te-tp-id": 5, "ietf-te-topology:te-tp-id": " "i "ie "iet BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 0 "--:--":, 9 5 0 0 0 0 1 +"ietf-te-topology:te": { "ietf-te-topology:te": " "i "ie "iet BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 0 "--:": 6 4 0 0 0 0 1 +"name": "AN1-5 "name": " "n "na "nam BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 0 "":"-", 7 3 0 0 0 0 1 +"admin-status": "up", "admin-status": " "a "ad "adm BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 0 "-":"", 7 4 0 0 0 0 1 +"// __DISCUSS__ "// " "/ "// "// BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 0 "//--":" 8 9 0 0 0 0 1 +\See Link \see \ \S \Se \See BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 0 (/...//)", 10 10 0 0 0 0 1 +"// __DISCUSS__ "// " "/ "// "// BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 0 "//---":"- 10 9 0 0 0 0 1 +\in Link", \in \ \i \in \in BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 0 ", 2 2 0 0 0 0 1 +"oper-status": "up", "oper-status": " "o "op "ope BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 0 "-":"", 7 3 0 0 0 0 1 +"// __DISCUSS__ "// " "/ "// "// BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 0 "//--:- 7 9 0 0 0 0 1 +\d-types": "Empty? \d-types": \ \d \d- \d-t BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 0 -":"?(-)", 10 8 0 0 0 0 1 +"// __DEFAULT__ "// " "/ "// "// BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 0 "//--:-": 9 9 0 0 0 0 1 +\false \false \false \ \f \fa \fal BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 0 no 0 1 0 0 0 0 1 +} } } } } } } BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 0 no 0 0 0 0 0 0 1 +}, }, }, } }, }, }, BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 0 , 1 0 0 0 0 0 1 +{ { { { { { { BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 0 no 0 0 0 0 0 0 1 +"// __DESCRIPTION__:__LTP__": "// " "/ "// "// BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 0 "//:": 6 5 0 0 0 0 1 +"name": "AN1-6 "name": " "n "na "nam BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 0 "":"-", 7 3 0 0 0 0 1 +"link type(s)": "link " "l "li "lin BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 0 "()":"-", 9 4 0 0 0 0 1 +"physical node": "physical " "p "ph "phy BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 0 "":"", 6 4 0 0 0 0 1 +"unnumberd/ifIndex": 4, "unnumberd/ifindex": " "u "un "unn BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 0 "/":, 5 4 0 0 0 0 1 +"port type": "port " "p "po "por BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 0 "":"-", 7 6 0 0 0 0 1 +"connected to": "connected " "c "co "con BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 0 "":"" 5 4 0 0 0 0 1 +}, }, }, } }, }, }, BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 0 , 1 0 0 0 0 0 1 +"tp-id": "6", "tp-id": " "t "tp "tp- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 0 "-":"", 7 2 0 0 0 0 1 +"ietf-te-topology:te-tp-id": 6, "ietf-te-topology:te-tp-id": " "i "ie "iet BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 0 "--:--":, 9 5 0 0 0 0 1 +"ietf-te-topology:te": { "ietf-te-topology:te": " "i "ie "iet BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 0 "--:": 6 4 0 0 0 0 1 +"name": "AN1-6 "name": " "n "na "nam BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 0 "":"-", 7 3 0 0 0 0 1 +"admin-status": "up", "admin-status": " "a "ad "adm BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 0 "-":"", 7 4 0 0 0 0 1 +"// __DISCUSS__ "// " "/ "// "// BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 0 "//--":" 8 9 0 0 0 0 1 +\See Link \see \ \S \Se \See BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 0 (/...//)", 10 10 0 0 0 0 1 +"// __DISCUSS__ "// " "/ "// "// BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 0 "//---":"- 10 9 0 0 0 0 1 +\in Link", \in \ \i \in \in BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 0 ", 2 2 0 0 0 0 1 +"oper-status": "up", "oper-status": " "o "op "ope BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 0 "-":"", 7 3 0 0 0 0 1 +"// __DISCUSS__ "// " "/ "// "// BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 0 "//--:- 7 9 0 0 0 0 1 +\d-types": "Empty? \d-types": \ \d \d- \d-t BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 0 -":"?(-)", 10 8 0 0 0 0 1 +"// __DEFAULT__ "// " "/ "// "// BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 0 "//--:-": 9 9 0 0 0 0 1 +\false \false \false \ \f \fa \fal BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 0 no 0 1 0 0 0 0 1 +} } } } } } } BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 0 no 0 0 0 0 0 0 1 +}, }, }, } }, }, }, BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 0 , 1 0 0 0 0 0 1 +{ { { { { { { BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 0 no 0 0 0 0 0 0 1 +"// __DESCRIPTION__:__LTP__": "// " "/ "// "// BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 0 "//:": 6 5 0 0 0 0 1 +"name": "AN1-7 "name": " "n "na "nam BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 0 "":"-", 7 3 0 0 0 0 1 +"link type(s)": "link " "l "li "lin BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 0 "()":"-", 9 4 0 0 0 0 1 +Busi, King, busi, B Bu Bus Busi BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 9 11 ,,. 3 9 0 0 1 0 0 +Expires March, expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 11 , 1 10 0 0 0 0 0 +[Page 57] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 11 [] 2 5 0 0 0 0 0 +Internet-Draft Transport internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 9 0 -- 2 10 0 0 1 0 1 +September 2019 september S Se Sep Sept BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 0 0 0 1 0 0 9 0 no 0 10 0 0 1 0 1 +"physical node": "physical " "p "ph "phy BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 0 "":"", 6 3 0 0 0 0 1 +"unnumberd/ifIndex": 2, "unnumberd/ifindex": " "u "un "unn BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 0 "/":, 5 3 0 0 0 0 1 +"port type": "port " "p "po "por BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 0 "":"", 6 5 0 0 0 0 1 +"connected to": "connected " "c "co "con BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 0 "":"" 5 3 0 0 0 0 1 +}, }, }, } }, }, }, BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 0 , 1 0 0 0 0 0 1 +"tp-id": "7", "tp-id": " "t "tp "tp- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 0 "-":"", 7 2 0 0 0 0 1 +"ietf-te-topology:te-tp-id": 7, "ietf-te-topology:te-tp-id": " "i "ie "iet BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 0 "--:--":, 9 5 0 0 0 0 1 +"ietf-te-topology:te": { "ietf-te-topology:te": " "i "ie "iet BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 0 "--:": 6 4 0 0 0 0 1 +"name": "AN1-7 "name": " "n "na "nam BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 0 "":"-", 7 3 0 0 0 0 1 +"admin-status": "up", "admin-status": " "a "ad "adm BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 0 "-":"", 7 3 0 0 0 0 1 +"// __DISCUSS__ "// " "/ "// "// BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 0 "//--":" 8 8 0 0 0 0 1 +\See Link \see \ \S \Se \See BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 0 (/...//)", 10 8 0 0 0 0 1 +"// __DISCUSS__ "// " "/ "// "// BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 0 "//---":" 9 8 0 0 0 0 1 +\k", \k", \k", \ \k \k" \k", BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 0 ", 2 0 0 0 0 0 1 +"oper-status": "up", "oper-status": " "o "op "ope BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 0 "-":"", 7 3 0 0 0 0 1 +"// __DISCUSS__ "// " "/ "// "// BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 0 "//--:- 7 8 0 0 0 0 1 +\d-types": "List \d-types": \ \d \d- \d-t BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 0 -":"?", 7 5 0 0 0 0 1 +"// __DISCUSS__ "// " "/ "// "// BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 0 "//--:-": 9 8 0 0 0 0 1 +\true \true \true \ \t \tr \tru BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 0 no 0 0 0 0 0 0 1 +} } } } } } } BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 0 no 0 0 0 0 0 0 1 +} } } } } } } BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 0 no 0 0 0 0 0 0 1 +] ] ] ] ] ] ] BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 0 ] 1 0 0 0 0 0 1 +} } } } } } } BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 0 no 0 0 0 0 0 0 1 +], ], ], ] ], ], ], BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 0 ], 2 0 0 0 0 0 1 +"// ietf-network-topology:link": "// " "/ "// "// BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 0 "//--:":" 9 10 0 0 0 0 1 +\d in \d \ \d \d \d BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 0 ", 2 3 0 0 0 0 1 +"ietf-network-topology:link": [ "ietf-network-topology:link": " "i "ie "iet BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 0 "--:":[ 7 5 0 0 0 0 1 +{ { { { { { { BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 0 no 0 0 0 0 0 0 1 +"// __DESCRIPTION__:__LINK__": "// " "/ "// "// BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 0 "//:": 6 5 0 0 0 0 1 +"name": "Access "name": " "n "na "nam BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 0 "":"-", 7 5 0 0 0 0 1 +"type": "access "type": " "t "ty "typ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 0 "":"", 6 3 0 0 0 0 1 +"physical link": "physical " "p "ph "phy BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 0 "":"-" 6 6 0 0 0 0 1 +}, }, }, } }, }, }, BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 0 , 1 0 0 0 0 0 1 +"link-id": "teNodeId/10.0.0.1/teLinkId/1", "link-id": " "l "li "lin BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 0 "-":"/...//", 13 6 0 0 0 0 1 +"ietf-te-topology:te": { "ietf-te-topology:te": " "i "ie "iet BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 0 "--:": 6 4 0 0 0 0 1 +"te-link-attributes": { "te-link-attributes": " "t "te "te- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 0 "--": 5 3 0 0 0 0 1 +"name": "Access "name": " "n "na "nam BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 0 "":"-", 7 5 0 0 0 0 1 +"// __DISCUSS__ "// " "/ "// "// BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 0 "//-":"- 8 8 0 0 0 0 1 +\o-point as \o-point \ \o \o- \o-p BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 0 -?", 4 5 0 0 0 0 1 +"access-type": "point-to-point", "access-type": " "a "ac "acc BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 0 "-":"--", 9 5 0 0 0 0 1 +"// __COMMENT__ "// " "/ "// "// BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 0 "//-":":- 9 8 0 0 0 0 1 +\d is \d \ \d \d \d BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 0 ", 2 6 0 0 0 0 1 +"// __DISCUSS__ "// " "/ "// "// BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 0 "//-":" 7 8 0 0 0 0 1 +\TE Topology \te \ \T \TE \TE BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 0 ", 2 3 0 0 0 0 1 +Busi, King, busi, B Bu Bus Busi BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 10 11 ,,. 3 9 0 0 1 0 0 +Expires March, expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 11 , 1 10 0 0 0 0 0 +[Page 58] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 11 [] 2 5 0 0 0 0 0 +Internet-Draft Transport internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 10 0 -- 2 10 0 0 1 0 1 +September 2019 september S Se Sep Sept BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 0 0 0 1 0 0 10 0 no 0 10 0 0 1 0 1 +"// __DISCUSS__ "// " "/ "// "// BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 0 "//":" 6 9 0 0 0 0 1 +\Topology authors", \topology \ \T \To \Top BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 0 ", 2 3 0 0 0 0 1 +"admin-status": "up", "admin-status": " "a "ad "adm BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 0 "-":"", 7 3 0 0 0 0 1 +"interface-switching-capability": [ "interface-switching-capability": " "i "in "int BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 0 "--":[ 6 6 0 0 0 0 1 +{ { { { { { { BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 no 0 0 0 0 0 0 1 +"switching-capability": "ietf-te-types:switching\ "switching-capability": " "s "sw "swi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 0 "-":"--: 8 8 0 0 0 0 1 +\-otn", \-otn", \-otn", \ \- \-o \-ot BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 0 -", 3 1 0 0 0 0 1 +"encoding": "ietf-te-types:lsp-encoding-oduk", "encoding": " "e "en "enc BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 0 "":"--:--", 11 8 0 0 0 0 1 +"max-lsp-bandwidth": [ "max-lsp-bandwidth": " "m "ma "max BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 0 "--":[ 6 4 0 0 0 0 1 +{ { { { { { { BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 no 0 0 0 0 0 0 1 +"priority": 0, "priority": " "p "pr "pri BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 0 "":, 4 2 0 0 0 0 1 +"// __DISCUSS__ "// " "/ "// "// BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 0 "//-":"" 8 6 0 0 0 0 1 +} } } } } } } BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 no 0 0 0 0 0 0 1 +] ] ] ] ] ] ] BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 ] 1 0 0 0 0 0 1 +} } } } } } } BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 no 0 0 0 0 0 0 1 +], ], ], ] ], ], ], BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 0 ], 2 0 0 0 0 0 1 +"// __COMMENT__ "// " "/ "// "// BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 0 "//-":" 7 9 0 0 0 0 1 +\in this \in \ \i \in \in BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 0 ", 2 4 0 0 0 0 1 +"// __DISCUSS__ "// " "/ "// "// BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 0 "//--":" 8 9 0 0 0 0 1 +\e unprotected \e \ \e \e \e BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 0 ?", 3 6 0 0 0 0 1 +"link-protection-type": "unprotected", "link-protection-type": " "l "li "lin BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 0 "--":"", 8 6 0 0 0 0 1 +"max-link-bandwidth": { "max-link-bandwidth": " "m "ma "max BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 0 "--": 5 4 0 0 0 0 1 +"// __DISCUSS__ "// " "/ "// "// BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 0 "//-":"" 8 7 0 0 0 0 1 +}, }, }, } }, }, }, BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 0 , 1 0 0 0 0 0 1 +"max-resv-link-bandwidth": { "max-resv-link-bandwidth": " "m "ma "max BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 0 "---": 6 5 0 0 0 0 1 +"// __DISCUSS__ "// " "/ "// "// BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 0 "//-":"" 8 7 0 0 0 0 1 +}, }, }, } }, }, }, BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 0 , 1 0 0 0 0 0 1 +"unreserved-bandwidth": [ "unreserved-bandwidth": " "u "un "unr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 0 "-":[ 5 4 0 0 0 0 1 +{ { { { { { { BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 no 0 0 0 0 0 0 1 +"priority": 0, "priority": " "p "pr "pri BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 0 "":, 4 2 0 0 0 0 1 +"// __DISCUSS__ "// " "/ "// "// BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 0 "//-":"" 8 7 0 0 0 0 1 +} } } } } } } BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 no 0 0 0 0 0 0 1 +] ] ] ] ] ] ] BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 ] 1 0 0 0 0 0 1 +}, }, }, } }, }, }, BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 0 , 1 0 0 0 0 0 1 +"oper-status": "up", "oper-status": " "o "op "ope BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 0 "-":"", 7 3 0 0 0 0 1 +"// __EMPTY__ "// " "/ "// "// BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 0 "//-":" 7 10 0 0 0 0 1 +\nal link", \nal \ \n \na \nal BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 0 ", 2 2 0 0 0 0 1 +"// __DISCUSS__ "// " "/ "// "// BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 0 "//":" 6 10 0 0 0 0 1 +\opology authors" \opology \ \o \op \opo BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 0 " 1 3 0 0 0 0 1 +}, }, }, } }, }, }, BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 0 , 1 0 0 0 0 0 1 +"source": { "source": " "s "so "sou BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 0 "": 3 2 0 0 0 0 1 +"source-node": "10.0.0.1", "source-node": " "s "so "sou BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 0 "-":"...", 10 4 0 0 0 0 1 +"source-tp": 1 "source-tp": " "s "so "sou BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 0 "-": 4 2 0 0 0 0 1 +}, }, }, } }, }, }, BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 0 , 1 0 0 0 0 0 1 +Busi, King, busi, B Bu Bus Busi BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 10 11 ,,. 3 9 0 0 1 0 0 +Expires March, expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 11 , 1 10 0 0 0 0 0 +[Page 59] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 11 [] 2 5 0 0 0 0 0 +Internet-Draft Transport internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 10 0 -- 2 10 0 0 1 0 1 +September 2019 september S Se Sep Sept BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 0 0 0 1 0 0 10 0 no 0 10 0 0 1 0 1 +"// __EMPTY__ "// " "/ "// "// BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 0 "//":"" 7 7 0 0 0 0 1 +}, }, }, } }, }, }, BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 0 , 1 0 0 0 0 0 1 +{ { { { { { { BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 no 0 0 0 0 0 0 1 +"// __DESCRIPTION__:__LINK__": "// " "/ "// "// BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 0 "//:": 6 6 0 0 0 0 1 +"name": "Inter-domain "name": " "n "na "nam BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 0 "":"--", 8 7 0 0 0 0 1 +"type": "inter-domain "type": " "t "ty "typ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 0 "":"-", 7 5 0 0 0 0 1 +"physical link": "physical " "p "ph "phy BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 0 "":"-" 6 7 0 0 0 0 1 +}, }, }, } }, }, }, BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 0 , 1 0 0 0 0 0 1 +"link-id": "teNodeId/10.0.0.1/teLinkId/2", "link-id": " "l "li "lin BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 0 "-":"/...//", 13 7 0 0 0 0 1 +"ietf-te-topology:te": { "ietf-te-topology:te": " "i "ie "iet BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 0 "--:": 6 4 0 0 0 0 1 +"te-link-attributes": { "te-link-attributes": " "t "te "te- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 0 "--": 5 4 0 0 0 0 1 +"name": "Inter-domain "name": " "n "na "nam BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 0 "":"--", 8 7 0 0 0 0 1 +"// __DISCUSS__ "// " "/ "// "// BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 0 "//-":"- 8 10 0 0 0 0 1 +\o-point as \o-point \ \o \o- \o-p BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 0 -?", 4 6 0 0 0 0 1 +"access-type": "point-to-point", "access-type": " "a "ac "acc BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 0 "-":"--", 9 6 0 0 0 0 1 +"// __DISCUSS__ "// " "/ "// "// BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 0 "//-":" 7 10 0 0 0 0 1 +\TE Topology \te \ \T \TE \TE BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 0 ", 2 4 0 0 0 0 1 +"// __DISCUSS__ "// " "/ "// "// BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 0 "//":" 6 10 0 0 0 0 1 +\Topology authors", \topology \ \T \To \Top BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 0 ", 2 3 0 0 0 0 1 +"admin-status": "up", "admin-status": " "a "ad "adm BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 0 "-":"", 7 4 0 0 0 0 1 +"interface-switching-capability": [ "interface-switching-capability": " "i "in "int BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 0 "--":[ 6 6 0 0 0 0 1 +{ { { { { { { BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 no 0 0 0 0 0 0 1 +"switching-capability": "ietf-te-types:switching\ "switching-capability": " "s "sw "swi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 0 "-":"--: 8 9 0 0 0 0 1 +\-otn", \-otn", \-otn", \ \- \-o \-ot BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 0 -", 3 1 0 0 0 0 1 +"encoding": "ietf-te-types:lsp-encoding-oduk", "encoding": " "e "en "enc BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 0 "":"--:--", 11 8 0 0 0 0 1 +"max-lsp-bandwidth": [ "max-lsp-bandwidth": " "m "ma "max BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 0 "--":[ 6 4 0 0 0 0 1 +{ { { { { { { BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 no 0 0 0 0 0 0 1 +"priority": 0, "priority": " "p "pr "pri BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 0 "":, 4 2 0 0 0 0 1 +"// __DISCUSS__ "// " "/ "// "// BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 0 "//-":"" 8 7 0 0 0 0 1 +} } } } } } } BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 no 0 0 0 0 0 0 1 +], ], ], ] ], ], ], BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 0 ], 2 0 0 0 0 0 1 +"// __DISCUSS__ "// " "/ "// "// BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 0 "//-":" 7 9 0 0 0 0 1 +\d?" \d?" \d?" \ \d \d? \d?" BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 0 ?" 2 0 0 0 0 0 1 +} } } } } } } BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 no 0 0 0 0 0 0 1 +], ], ], ] ], ], ], BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 0 ], 2 0 0 0 0 0 1 +"// __DISCUSS__ "// " "/ "// "// BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 0 "//--":" 8 10 0 0 0 0 1 +\e unprotected \e \ \e \e \e BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 0 ?", 3 7 0 0 0 0 1 +"link-protection-type": "unprotected", "link-protection-type": " "l "li "lin BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 0 "--":"", 8 7 0 0 0 0 1 +"max-link-bandwidth": { "max-link-bandwidth": " "m "ma "max BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 0 "--": 5 4 0 0 0 0 1 +"// __DISCUSS__ "// " "/ "// "// BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 0 "//-":",..." 12 8 0 0 0 0 1 +}, }, }, } }, }, }, BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 0 , 1 0 0 0 0 0 1 +"max-resv-link-bandwidth": { "max-resv-link-bandwidth": " "m "ma "max BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 0 "---": 6 5 0 0 0 0 1 +"// __DISCUSS__ "// " "/ "// "// BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 0 "//-":",..." 12 8 0 0 0 0 1 +}, }, }, } }, }, }, BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 0 , 1 0 0 0 0 0 1 +Busi, King, busi, B Bu Bus Busi BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 10 11 ,,. 3 9 0 0 1 0 0 +Expires March, expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 11 , 1 10 0 0 0 0 0 +[Page 60] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 11 [] 2 5 0 0 0 0 0 +Internet-Draft Transport internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 10 0 -- 2 10 0 0 1 0 1 +September 2019 september S Se Sep Sept BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 0 0 0 1 0 0 10 0 no 0 10 0 0 1 0 1 +"unreserved-bandwidth": [ "unreserved-bandwidth": " "u "un "unr BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 0 "-":[ 5 4 0 0 0 0 1 +{ { { { { { { BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 no 0 0 0 0 0 0 1 +"priority": 0, "priority": " "p "pr "pri BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 0 "":, 4 2 0 0 0 0 1 +"// __DISCUSS__ "// " "/ "// "// BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 0 "//-":",..." 12 8 0 0 0 0 1 +} } } } } } } BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 no 0 0 0 0 0 0 1 +] ] ] ] ] ] ] BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 ] 1 0 0 0 0 0 1 +}, }, }, } }, }, }, BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 0 , 1 0 0 0 0 0 1 +"oper-status": "up", "oper-status": " "o "op "ope BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 0 "-":"", 7 3 0 0 0 0 1 +"// __EMPTY__ "// " "/ "// "// BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 0 "//-":" 7 10 0 0 0 0 1 +\nal link", \nal \ \n \na \nal BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 0 ", 2 2 0 0 0 0 1 +"// __DISCUSS__ "// " "/ "// "// BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 0 "//":" 6 10 0 0 0 0 1 +\opology authors" \opology \ \o \op \opo BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 0 " 1 3 0 0 0 0 1 +}, }, }, } }, }, }, BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 0 , 1 0 0 0 0 0 1 +"source": { "source": " "s "so "sou BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 0 "": 3 2 0 0 0 0 1 +"source-node": "10.0.0.1", "source-node": " "s "so "sou BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 0 "-":"...", 10 4 0 0 0 0 1 +"source-tp": 2 "source-tp": " "s "so "sou BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 0 "-": 4 2 0 0 0 0 1 +}, }, }, } }, }, }, BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 0 , 1 0 0 0 0 0 1 +"// __EMPTY__ "// " "/ "// "// BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 0 "//":"-" 8 8 0 0 0 0 1 +}, }, }, } }, }, }, BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 0 , 1 0 0 0 0 0 1 +{ { { { { { { BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 no 0 0 0 0 0 0 1 +"// __DESCRIPTION__:__LINK__": "// " "/ "// "// BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 0 "//:": 6 5 0 0 0 0 1 +"name": "Access "name": " "n "na "nam BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 0 "":"-", 7 6 0 0 0 0 1 +"type": "access "type": " "t "ty "typ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 0 "":"", 6 4 0 0 0 0 1 +"physical link": "physical " "p "ph "phy BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 0 "":"-" 6 7 0 0 0 0 1 +}, }, }, } }, }, }, BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 0 , 1 0 0 0 0 0 1 +"link-id": "teNodeId/10.0.0.1/teLinkId/3", "link-id": " "l "li "lin BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 0 "-":"/...//", 13 7 0 0 0 0 1 +"ietf-te-topology:te": { "ietf-te-topology:te": " "i "ie "iet BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 0 "--:": 6 4 0 0 0 0 1 +"te-link-attributes": { "te-link-attributes": " "t "te "te- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 0 "--": 5 4 0 0 0 0 1 +"name": "Access "name": " "n "na "nam BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 0 "":"-", 7 6 0 0 0 0 1 +"// __DISCUSS__ "// " "/ "// "// BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 0 "//-":"- 8 9 0 0 0 0 1 +\o-point as \o-point \ \o \o- \o-p BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 0 -?", 4 5 0 0 0 0 1 +"access-type": "point-to-point", "access-type": " "a "ac "acc BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 0 "-":"--", 9 5 0 0 0 0 1 +"// __DISCUSS__ "// " "/ "// "// BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 0 "//-":" 7 9 0 0 0 0 1 +\TE Topology \te \ \T \TE \TE BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 0 ", 2 4 0 0 0 0 1 +"// __DISCUSS__ "// " "/ "// "// BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 0 "//":" 6 9 0 0 0 0 1 +\Topology authors", \topology \ \T \To \Top BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 0 ", 2 3 0 0 0 0 1 +"admin-status": "up", "admin-status": " "a "ad "adm BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 0 "-":"", 7 3 0 0 0 0 1 +"interface-switching-capability": [ "interface-switching-capability": " "i "in "int BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 0 "--":[ 6 6 0 0 0 0 1 +{ { { { { { { BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 no 0 0 0 0 0 0 1 +"switching-capability": "ietf-te-types:switching\ "switching-capability": " "s "sw "swi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 0 "-":"--: 8 8 0 0 0 0 1 +\-otn", \-otn", \-otn", \ \- \-o \-ot BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 0 -", 3 1 0 0 0 0 1 +"encoding": "ietf-te-types:lsp-encoding-oduk", "encoding": " "e "en "enc BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 0 "":"--:--", 11 8 0 0 0 0 1 +"max-lsp-bandwidth": [ "max-lsp-bandwidth": " "m "ma "max BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 0 "--":[ 6 4 0 0 0 0 1 +{ { { { { { { BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 no 0 0 0 0 0 0 1 +Busi, King, busi, B Bu Bus Busi BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 10 11 ,,. 3 9 0 0 1 0 0 +Expires March, expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 11 , 1 10 0 0 0 0 0 +[Page 61] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 11 [] 2 5 0 0 0 0 0 +Internet-Draft Transport internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 10 0 -- 2 10 0 0 1 0 1 +September 2019 september S Se Sep Sept BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 0 0 0 1 0 0 10 0 no 0 10 0 0 1 0 1 +"priority": 0, "priority": " "p "pr "pri BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 0 "":, 4 2 0 0 0 0 1 +"// __DISCUSS__ "// " "/ "// "// BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 0 "//-":"" 8 6 0 0 0 0 1 +} } } } } } } BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 no 0 0 0 0 0 0 1 +], ], ], ] ], ], ], BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 0 ], 2 0 0 0 0 0 1 +"// __DISCUSS__ "// " "/ "// "// BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 0 "//-":" 7 8 0 0 0 0 1 +\d?" \d?" \d?" \ \d \d? \d?" BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 0 ?" 2 0 0 0 0 0 1 +} } } } } } } BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 no 0 0 0 0 0 0 1 +], ], ], ] ], ], ], BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 0 ], 2 0 0 0 0 0 1 +"// __DISCUSS__ "// " "/ "// "// BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 0 "//--":" 8 9 0 0 0 0 1 +\e unprotected \e \ \e \e \e BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 0 ?", 3 6 0 0 0 0 1 +"link-protection-type": "unprotected", "link-protection-type": " "l "li "lin BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 0 "--":"", 8 6 0 0 0 0 1 +"max-link-bandwidth": { "max-link-bandwidth": " "m "ma "max BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 0 "--": 5 4 0 0 0 0 1 +"// __DISCUSS__ "// " "/ "// "// BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 0 "//-":"" 8 7 0 0 0 0 1 +}, }, }, } }, }, }, BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 0 , 1 0 0 0 0 0 1 +"unreserved-bandwidth": [ "unreserved-bandwidth": " "u "un "unr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 0 "-":[ 5 4 0 0 0 0 1 +{ { { { { { { BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 no 0 0 0 0 0 0 1 +"priority": 0, "priority": " "p "pr "pri BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 0 "":, 4 2 0 0 0 0 1 +"// __DISCUSS__ "// " "/ "// "// BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 0 "//-":"" 8 7 0 0 0 0 1 +} } } } } } } BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 no 0 0 0 0 0 0 1 +], ], ], ] ], ], ], BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 0 ], 2 0 0 0 0 0 1 +"max-resv-link-bandwidth": { "max-resv-link-bandwidth": " "m "ma "max BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 0 "---": 6 5 0 0 0 0 1 +"// __DISCUSS__ "// " "/ "// "// BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 0 "//-":"" 8 7 0 0 0 0 1 +} } } } } } } BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 no 0 0 0 0 0 0 1 +}, }, }, } }, }, }, BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 0 , 1 0 0 0 0 0 1 +"oper-status": "up", "oper-status": " "o "op "ope BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 0 "-":"", 7 3 0 0 0 0 1 +"// __EMPTY__ "// " "/ "// "// BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 0 "//-":" 7 10 0 0 0 0 1 +\nal link", \nal \ \n \na \nal BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 0 ", 2 2 0 0 0 0 1 +"// __DISCUSS__ "// " "/ "// "// BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 0 "//":" 6 10 0 0 0 0 1 +\opology authors" \opology \ \o \op \opo BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 0 " 1 3 0 0 0 0 1 +}, }, }, } }, }, }, BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 0 , 1 0 0 0 0 0 1 +"source": { "source": " "s "so "sou BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 0 "": 3 2 0 0 0 0 1 +"source-node": "10.0.0.1", "source-node": " "s "so "sou BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 0 "-":"...", 10 4 0 0 0 0 1 +"source-tp": 3 "source-tp": " "s "so "sou BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 0 "-": 4 2 0 0 0 0 1 +}, }, }, } }, }, }, BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 0 , 1 0 0 0 0 0 1 +"// __EMPTY__ "// " "/ "// "// BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 0 "//":"" 7 7 0 0 0 0 1 +}, }, }, } }, }, }, BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 0 , 1 0 0 0 0 0 1 +{ { { { { { { BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 no 0 0 0 0 0 0 1 +"// __DESCRIPTION__:__LINK__": "// " "/ "// "// BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 0 "//:": 6 5 0 0 0 0 1 +"name": "Inter-domain "name": " "n "na "nam BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 0 "":"--", 8 7 0 0 0 0 1 +"type": "inter-domain "type": " "t "ty "typ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 0 "":"-", 7 5 0 0 0 0 1 +"physical link": "physical " "p "ph "phy BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 0 "":"-" 6 7 0 0 0 0 1 +}, }, }, } }, }, }, BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 0 , 1 0 0 0 0 0 1 +"link-id": "teNodeId/10.0.0.1/teLinkId/4", "link-id": " "l "li "lin BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 0 "-":"/...//", 13 7 0 0 0 0 1 +"ietf-te-topology:te": { "ietf-te-topology:te": " "i "ie "iet BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 0 "--:": 6 4 0 0 0 0 1 +Busi, King, busi, B Bu Bus Busi BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 10 11 ,,. 3 9 0 0 1 0 0 +Expires March, expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 11 , 1 10 0 0 0 0 0 +[Page 62] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 11 [] 2 5 0 0 0 0 0 +Internet-Draft Transport internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 10 0 -- 2 10 0 0 1 0 1 +September 2019 september S Se Sep Sept BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 0 0 0 1 0 0 10 0 no 0 10 0 0 1 0 1 +"te-link-attributes": { "te-link-attributes": " "t "te "te- BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 0 "--": 5 4 0 0 0 0 1 +"name": "Inter-domain "name": " "n "na "nam BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 0 "":"--", 8 7 0 0 0 0 1 +"// __DISCUSS__ "// " "/ "// "// BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 0 "//-":"- 8 9 0 0 0 0 1 +\o-point as \o-point \ \o \o- \o-p BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 0 -?", 4 5 0 0 0 0 1 +"access-type": "point-to-point", "access-type": " "a "ac "acc BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 0 "-":"--", 9 5 0 0 0 0 1 +"// __DISCUSS__ "// " "/ "// "// BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 0 "//-":" 7 9 0 0 0 0 1 +\TE Topology \te \ \T \TE \TE BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 0 ", 2 4 0 0 0 0 1 +"// __DISCUSS__ "// " "/ "// "// BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 0 "//":" 6 9 0 0 0 0 1 +\Topology authors", \topology \ \T \To \Top BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 0 ", 2 3 0 0 0 0 1 +"admin-status": "up", "admin-status": " "a "ad "adm BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 0 "-":"", 7 3 0 0 0 0 1 +"interface-switching-capability": [ "interface-switching-capability": " "i "in "int BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 0 "--":[ 6 6 0 0 0 0 1 +{ { { { { { { BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 no 0 0 0 0 0 0 1 +"switching-capability": "ietf-te-types:switching\ "switching-capability": " "s "sw "swi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 0 "-":"--: 8 8 0 0 0 0 1 +\-otn", \-otn", \-otn", \ \- \-o \-ot BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 0 -", 3 1 0 0 0 0 1 +"encoding": "ietf-te-types:lsp-encoding-oduk", "encoding": " "e "en "enc BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 0 "":"--:--", 11 8 0 0 0 0 1 +"max-lsp-bandwidth": [ "max-lsp-bandwidth": " "m "ma "max BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 0 "--":[ 6 4 0 0 0 0 1 +{ { { { { { { BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 no 0 0 0 0 0 0 1 +"priority": 0, "priority": " "p "pr "pri BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 0 "":, 4 2 0 0 0 0 1 +"// __DISCUSS__ "// " "/ "// "// BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 0 "//-":"" 8 6 0 0 0 0 1 +} } } } } } } BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 no 0 0 0 0 0 0 1 +], ], ], ] ], ], ], BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 0 ], 2 0 0 0 0 0 1 +"// __DISCUSS__ "// " "/ "// "// BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 0 "//-":" 7 8 0 0 0 0 1 +\d?" \d?" \d?" \ \d \d? \d?" BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 0 ?" 2 0 0 0 0 0 1 +} } } } } } } BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 no 0 0 0 0 0 0 1 +], ], ], ] ], ], ], BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 0 ], 2 0 0 0 0 0 1 +"// __DISCUSS__ "// " "/ "// "// BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 0 "//--":" 8 9 0 0 0 0 1 +\e unprotected \e \ \e \e \e BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 0 ?", 3 6 0 0 0 0 1 +"link-protection-type": "unprotected", "link-protection-type": " "l "li "lin BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 0 "--":"", 8 6 0 0 0 0 1 +"max-link-bandwidth": { "max-link-bandwidth": " "m "ma "max BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 0 "--": 5 4 0 0 0 0 1 +"// __DISCUSS__ "// " "/ "// "// BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 0 "//-":",..." 12 8 0 0 0 0 1 +}, }, }, } }, }, }, BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 0 , 1 0 0 0 0 0 1 +"unreserved-bandwidth": [ "unreserved-bandwidth": " "u "un "unr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 0 "-":[ 5 4 0 0 0 0 1 +{ { { { { { { BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 no 0 0 0 0 0 0 1 +"priority": 0, "priority": " "p "pr "pri BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 0 "":, 4 2 0 0 0 0 1 +"// __DISCUSS__ "// " "/ "// "// BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 0 "//-":",..." 12 8 0 0 0 0 1 +} } } } } } } BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 no 0 0 0 0 0 0 1 +], ], ], ] ], ], ], BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 0 ], 2 0 0 0 0 0 1 +"max-resv-link-bandwidth": { "max-resv-link-bandwidth": " "m "ma "max BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 0 "---": 6 5 0 0 0 0 1 +"// __DISCUSS__ "// " "/ "// "// BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 0 "//-":",..." 12 8 0 0 0 0 1 +} } } } } } } BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 no 0 0 0 0 0 0 1 +}, }, }, } }, }, }, BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 0 , 1 0 0 0 0 0 1 +"oper-status": "up", "oper-status": " "o "op "ope BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 0 "-":"", 7 3 0 0 0 0 1 +"// __EMPTY__ "// " "/ "// "// BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 0 "//-":" 7 10 0 0 0 0 1 +\nal link", \nal \ \n \na \nal BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 0 ", 2 2 0 0 0 0 1 +Busi, King, busi, B Bu Bus Busi BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 10 11 ,,. 3 9 0 0 1 0 0 +Expires March, expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 11 , 1 10 0 0 0 0 0 +[Page 63] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 11 [] 2 5 0 0 0 0 0 +Internet-Draft Transport internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 10 0 -- 2 10 0 0 1 0 1 +September 2019 september S Se Sep Sept BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 0 0 0 1 0 0 10 0 no 0 10 0 0 1 0 1 +"// __DISCUSS__ "// " "/ "// "// BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 0 "//":" 6 10 0 0 0 0 1 +\opology authors" \opology \ \o \op \opo BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 0 " 1 3 0 0 0 0 1 +}, }, }, } }, }, }, BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 0 , 1 0 0 0 0 0 1 +"source": { "source": " "s "so "sou BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 0 "": 3 2 0 0 0 0 1 +"source-node": "10.0.0.1", "source-node": " "s "so "sou BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 0 "-":"...", 10 4 0 0 0 0 1 +"source-tp": 4 "source-tp": " "s "so "sou BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 0 "-": 4 2 0 0 0 0 1 +}, }, }, } }, }, }, BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 0 , 1 0 0 0 0 0 1 +"// __EMPTY__ "// " "/ "// "// BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 0 "//":"-" 8 8 0 0 0 0 1 +}, }, }, } }, }, }, BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 0 , 1 0 0 0 0 0 1 +{ { { { { { { BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 no 0 0 0 0 0 0 1 +"// __DESCRIPTION__:__LINK__": "// " "/ "// "// BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 0 "//:": 6 5 0 0 0 0 1 +"name": "Inter-domain "name": " "n "na "nam BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 0 "":"--", 8 7 0 0 0 0 1 +"type": "inter-domain "type": " "t "ty "typ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 0 "":"-", 7 5 0 0 0 0 1 +"physical link": "physical " "p "ph "phy BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 0 "":"-" 6 7 0 0 0 0 1 +}, }, }, } }, }, }, BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 0 , 1 0 0 0 0 0 1 +"link-id": "teNodeId/10.0.0.1/teLinkId/5", "link-id": " "l "li "lin BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 0 "-":"/...//", 13 7 0 0 0 0 1 +"ietf-te-topology:te": { "ietf-te-topology:te": " "i "ie "iet BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 0 "--:": 6 4 0 0 0 0 1 +"te-link-attributes": { "te-link-attributes": " "t "te "te- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 0 "--": 5 4 0 0 0 0 1 +"name": "Inter-domain "name": " "n "na "nam BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 0 "":"--", 8 7 0 0 0 0 1 +"// __DISCUSS__ "// " "/ "// "// BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 0 "//-":"- 8 9 0 0 0 0 1 +\o-point as \o-point \ \o \o- \o-p BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 0 -?", 4 5 0 0 0 0 1 +"access-type": "point-to-point", "access-type": " "a "ac "acc BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 0 "-":"--", 9 5 0 0 0 0 1 +"// __DISCUSS__ "// " "/ "// "// BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 0 "//-":" 7 9 0 0 0 0 1 +\TE Topology \te \ \T \TE \TE BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 0 ", 2 4 0 0 0 0 1 +"// __DISCUSS__ "// " "/ "// "// BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 0 "//":" 6 9 0 0 0 0 1 +\Topology authors", \topology \ \T \To \Top BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 0 ", 2 3 0 0 0 0 1 +"admin-status": "up", "admin-status": " "a "ad "adm BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 0 "-":"", 7 3 0 0 0 0 1 +"interface-switching-capability": [ "interface-switching-capability": " "i "in "int BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 0 "--":[ 6 6 0 0 0 0 1 +{ { { { { { { BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 no 0 0 0 0 0 0 1 +"switching-capability": "ietf-te-types:switching\ "switching-capability": " "s "sw "swi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 0 "-":"--: 8 8 0 0 0 0 1 +\-otn", \-otn", \-otn", \ \- \-o \-ot BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 0 -", 3 1 0 0 0 0 1 +"encoding": "ietf-te-types:lsp-encoding-oduk", "encoding": " "e "en "enc BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 0 "":"--:--", 11 8 0 0 0 0 1 +"max-lsp-bandwidth": [ "max-lsp-bandwidth": " "m "ma "max BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 0 "--":[ 6 4 0 0 0 0 1 +{ { { { { { { BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 no 0 0 0 0 0 0 1 +"priority": 0, "priority": " "p "pr "pri BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 0 "":, 4 2 0 0 0 0 1 +"// __DISCUSS__ "// " "/ "// "// BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 0 "//-":"" 8 6 0 0 0 0 1 +} } } } } } } BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 no 0 0 0 0 0 0 1 +], ], ], ] ], ], ], BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 0 ], 2 0 0 0 0 0 1 +"// __DISCUSS__ "// " "/ "// "// BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 0 "//-":" 7 8 0 0 0 0 1 +\d?" \d?" \d?" \ \d \d? \d?" BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 0 ?" 2 0 0 0 0 0 1 +} } } } } } } BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 no 0 0 0 0 0 0 1 +], ], ], ] ], ], ], BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 0 ], 2 0 0 0 0 0 1 +"// __DISCUSS__ "// " "/ "// "// BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 0 "//--":" 8 9 0 0 0 0 1 +\e unprotected \e \ \e \e \e BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 0 ?", 3 6 0 0 0 0 1 +Busi, King, busi, B Bu Bus Busi BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 10 11 ,,. 3 9 0 0 1 0 0 +Expires March, expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 11 , 1 10 0 0 0 0 0 +[Page 64] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 11 [] 2 5 0 0 0 0 0 +Internet-Draft Transport internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 10 0 -- 2 10 0 0 1 0 1 +September 2019 september S Se Sep Sept BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 0 0 0 1 0 0 10 0 no 0 10 0 0 1 0 1 +"link-protection-type": "unprotected", "link-protection-type": " "l "li "lin BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 0 "--":"", 8 6 0 0 0 0 1 +"max-link-bandwidth": { "max-link-bandwidth": " "m "ma "max BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 0 "--": 5 4 0 0 0 0 1 +"// __DISCUSS__ "// " "/ "// "// BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 0 "//-":",..." 12 8 0 0 0 0 1 +}, }, }, } }, }, }, BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 0 , 1 0 0 0 0 0 1 +"max-resv-link-bandwidth": { "max-resv-link-bandwidth": " "m "ma "max BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 0 "---": 6 5 0 0 0 0 1 +"// __DISCUSS__ "// " "/ "// "// BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 0 "//-":",..." 12 8 0 0 0 0 1 +}, }, }, } }, }, }, BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 0 , 1 0 0 0 0 0 1 +"unreserved-bandwidth": [ "unreserved-bandwidth": " "u "un "unr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 0 "-":[ 5 4 0 0 0 0 1 +{ { { { { { { BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 no 0 0 0 0 0 0 1 +"priority": 0, "priority": " "p "pr "pri BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 0 "":, 4 2 0 0 0 0 1 +"// __DISCUSS__ "// " "/ "// "// BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 0 "//-":",..." 12 8 0 0 0 0 1 +} } } } } } } BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 no 0 0 0 0 0 0 1 +] ] ] ] ] ] ] BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 ] 1 0 0 0 0 0 1 +}, }, }, } }, }, }, BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 0 , 1 0 0 0 0 0 1 +"oper-status": "up", "oper-status": " "o "op "ope BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 0 "-":"", 7 3 0 0 0 0 1 +"// __EMPTY__ "// " "/ "// "// BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 0 "//-":" 7 10 0 0 0 0 1 +\nal link", \nal \ \n \na \nal BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 0 ", 2 2 0 0 0 0 1 +"// __DISCUSS__ "// " "/ "// "// BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 0 "//":" 6 10 0 0 0 0 1 +\opology authors" \opology \ \o \op \opo BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 0 " 1 3 0 0 0 0 1 +}, }, }, } }, }, }, BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 0 , 1 0 0 0 0 0 1 +"source": { "source": " "s "so "sou BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 0 "": 3 2 0 0 0 0 1 +"source-node": "10.0.0.1", "source-node": " "s "so "sou BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 0 "-":"...", 10 4 0 0 0 0 1 +"source-tp": 5 "source-tp": " "s "so "sou BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 0 "-": 4 2 0 0 0 0 1 +}, }, }, } }, }, }, BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 0 , 1 0 0 0 0 0 1 +"// __EMPTY__ "// " "/ "// "// BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 0 "//":"-" 8 8 0 0 0 0 1 +}, }, }, } }, }, }, BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 0 , 1 0 0 0 0 0 1 +{ { { { { { { BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 10 0 no 0 0 0 0 0 0 1 +"// __DESCRIPTION__:__LINK__": "// " "/ "// "// BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 0 "//:": 6 5 0 0 0 0 1 +"name": "Inter-domain "name": " "n "na "nam BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 0 "":"--", 8 7 0 0 0 0 1 +"type": "inter-domain "type": " "t "ty "typ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 0 "":"-", 7 5 0 0 0 0 1 +"physical link": "physical " "p "ph "phy BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 0 "":"-" 6 7 0 0 0 0 1 +}, }, }, } }, }, }, BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 0 , 1 0 0 0 0 0 1 +"link-id": "teNodeId/10.0.0.1/teLinkId/6", "link-id": " "l "li "lin BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 0 "-":"/...//", 13 7 0 0 0 0 1 +"ietf-te-topology:te": { "ietf-te-topology:te": " "i "ie "iet BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 0 "--:": 6 4 0 0 0 0 1 +"te-link-attributes": { "te-link-attributes": " "t "te "te- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 0 "--": 5 4 0 0 0 0 1 +"name": "Inter-domain "name": " "n "na "nam BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 0 "":"--", 8 7 0 0 0 0 1 +"// __DISCUSS__ "// " "/ "// "// BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 0 "//-":"- 8 9 0 0 0 0 1 +\o-point as \o-point \ \o \o- \o-p BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 0 -?", 4 5 0 0 0 0 1 +"access-type": "point-to-point", "access-type": " "a "ac "acc BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 0 "-":"--", 9 5 0 0 0 0 1 +"// __DISCUSS__ "// " "/ "// "// BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 0 "//-":" 7 9 0 0 0 0 1 +\TE Topology \te \ \T \TE \TE BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 0 ", 2 4 0 0 0 0 1 +"// __DISCUSS__ "// " "/ "// "// BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 0 "//":" 6 9 0 0 0 0 1 +\Topology authors", \topology \ \T \To \Top BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 0 ", 2 3 0 0 0 0 1 +"admin-status": "up", "admin-status": " "a "ad "adm BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 0 "-":"", 7 3 0 0 0 0 1 +Busi, King, busi, B Bu Bus Busi BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 11 ,,. 3 9 0 0 1 0 0 +Expires March, expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 11 , 1 10 0 0 0 0 0 +[Page 65] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 11 [] 2 5 0 0 0 0 0 +Internet-Draft Transport internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 0 -- 2 10 0 0 1 0 1 +September 2019 september S Se Sep Sept BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 0 0 0 1 0 0 11 0 no 0 10 0 0 1 0 1 +"interface-switching-capability": [ "interface-switching-capability": " "i "in "int BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 0 "--":[ 6 6 0 0 0 0 1 +{ { { { { { { BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 11 0 no 0 0 0 0 0 0 1 +"switching-capability": "ietf-te-types:switching\ "switching-capability": " "s "sw "swi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 0 "-":"--: 8 8 0 0 0 0 1 +\-otn", \-otn", \-otn", \ \- \-o \-ot BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 0 -", 3 1 0 0 0 0 1 +"encoding": "ietf-te-types:lsp-encoding-oduk", "encoding": " "e "en "enc BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 0 "":"--:--", 11 8 0 0 0 0 1 +"max-lsp-bandwidth": [ "max-lsp-bandwidth": " "m "ma "max BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 0 "--":[ 6 4 0 0 0 0 1 +{ { { { { { { BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 11 0 no 0 0 0 0 0 0 1 +"priority": 0, "priority": " "p "pr "pri BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 0 "":, 4 2 0 0 0 0 1 +"// __DISCUSS__ "// " "/ "// "// BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 11 0 "//-":"" 8 6 0 0 0 0 1 +} } } } } } } BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 11 0 no 0 0 0 0 0 0 1 +], ], ], ] ], ], ], BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 11 0 ], 2 0 0 0 0 0 1 +"// __DISCUSS__ "// " "/ "// "// BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 11 0 "//-":" 7 8 0 0 0 0 1 +\d?" \d?" \d?" \ \d \d? \d?" BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 0 ?" 2 0 0 0 0 0 1 +} } } } } } } BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 11 0 no 0 0 0 0 0 0 1 +], ], ], ] ], ], ], BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 11 0 ], 2 0 0 0 0 0 1 +"// __DISCUSS__ "// " "/ "// "// BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 11 0 "//--":" 8 9 0 0 0 0 1 +\e unprotected \e \ \e \e \e BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 0 ?", 3 6 0 0 0 0 1 +"link-protection-type": "unprotected", "link-protection-type": " "l "li "lin BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 0 "--":"", 8 6 0 0 0 0 1 +"max-link-bandwidth": { "max-link-bandwidth": " "m "ma "max BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 0 "--": 5 4 0 0 0 0 1 +"// __DISCUSS__ "// " "/ "// "// BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 11 0 "//-":",..." 12 8 0 0 0 0 1 +}, }, }, } }, }, }, BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 11 0 , 1 0 0 0 0 0 1 +"max-resv-link-bandwidth": { "max-resv-link-bandwidth": " "m "ma "max BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 0 "---": 6 5 0 0 0 0 1 +"// __DISCUSS__ "// " "/ "// "// BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 11 0 "//-":",..." 12 8 0 0 0 0 1 +}, }, }, } }, }, }, BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 11 0 , 1 0 0 0 0 0 1 +"unreserved-bandwidth": [ "unreserved-bandwidth": " "u "un "unr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 0 "-":[ 5 4 0 0 0 0 1 +{ { { { { { { BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 11 0 no 0 0 0 0 0 0 1 +"priority": 0, "priority": " "p "pr "pri BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 0 "":, 4 2 0 0 0 0 1 +"// __DISCUSS__ "// " "/ "// "// BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 11 0 "//-":",..." 12 8 0 0 0 0 1 +} } } } } } } BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 11 0 no 0 0 0 0 0 0 1 +] ] ] ] ] ] ] BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 11 0 ] 1 0 0 0 0 0 1 +}, }, }, } }, }, }, BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 11 0 , 1 0 0 0 0 0 1 +"oper-status": "up", "oper-status": " "o "op "ope BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 0 "-":"", 7 3 0 0 0 0 1 +"// __EMPTY__ "// " "/ "// "// BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 11 0 "//-":" 7 10 0 0 0 0 1 +\nal link", \nal \ \n \na \nal BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 0 ", 2 2 0 0 0 0 1 +"// __DISCUSS__ "// " "/ "// "// BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 11 0 "//":" 6 10 0 0 0 0 1 +\opology authors" \opology \ \o \op \opo BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 0 " 1 3 0 0 0 0 1 +}, }, }, } }, }, }, BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 11 0 , 1 0 0 0 0 0 1 +"source": { "source": " "s "so "sou BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 0 "": 3 2 0 0 0 0 1 +"source-node": "10.0.0.1", "source-node": " "s "so "sou BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 0 "-":"...", 10 4 0 0 0 0 1 +"source-tp": 6 "source-tp": " "s "so "sou BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 0 "-": 4 2 0 0 0 0 1 +}, }, }, } }, }, }, BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 11 0 , 1 0 0 0 0 0 1 +"// __EMPTY__ "// " "/ "// "// BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 11 0 "//":"-" 8 8 0 0 0 0 1 +}, }, }, } }, }, }, BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 11 0 , 1 0 0 0 0 0 1 +{ { { { { { { BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 11 0 no 0 0 0 0 0 0 1 +Busi, King, busi, B Bu Bus Busi BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 11 ,,. 3 9 0 0 1 0 0 +Expires March, expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 11 , 1 10 0 0 0 0 0 +[Page 66] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 11 [] 2 5 0 0 0 0 0 +Internet-Draft Transport internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 0 -- 2 10 0 0 1 0 1 +September 2019 september S Se Sep Sept BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 0 0 0 1 0 0 11 0 no 0 10 0 0 1 0 1 +"// __DESCRIPTION__:__LINK__": "// " "/ "// "// BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 11 0 "//:": 6 6 0 0 0 0 1 +"name": "Access "name": " "n "na "nam BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 0 "":"-", 7 6 0 0 0 0 1 +"type": "access "type": " "t "ty "typ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 0 "":"", 6 4 0 0 0 0 1 +"physical link": "physical " "p "ph "phy BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 0 "":"-" 6 7 0 0 0 0 1 +}, }, }, } }, }, }, BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 11 0 , 1 0 0 0 0 0 1 +"link-id": "teNodeId/10.0.0.1teLinkId/7", "link-id": " "l "li "lin BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 0 "-":"/.../", 12 7 0 0 0 0 1 +"ietf-te-topology:te": { "ietf-te-topology:te": " "i "ie "iet BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 0 "--:": 6 4 0 0 0 0 1 +"te-link-attributes": { "te-link-attributes": " "t "te "te- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 0 "--": 5 4 0 0 0 0 1 +"name": "Access "name": " "n "na "nam BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 0 "":"-", 7 6 0 0 0 0 1 +"// __DISCUSS__ "// " "/ "// "// BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 11 0 "//-":"- 8 10 0 0 0 0 1 +\o-point as \o-point \ \o \o- \o-p BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 0 -?", 4 6 0 0 0 0 1 +"access-type": "point-to-point", "access-type": " "a "ac "acc BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 0 "-":"--", 9 6 0 0 0 0 1 +"// __DISCUSS__ "// " "/ "// "// BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 11 0 "//-":" 7 10 0 0 0 0 1 +\TE Topology \te \ \T \TE \TE BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 11 0 ", 2 4 0 0 0 0 1 +"// __DISCUSS__ "// " "/ "// "// BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 11 0 "//":" 6 10 0 0 0 0 1 +\Topology authors", \topology \ \T \To \Top BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 0 ", 2 3 0 0 0 0 1 +"admin-status": "up", "admin-status": " "a "ad "adm BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 0 "-":"", 7 4 0 0 0 0 1 +"interface-switching-capability": [ "interface-switching-capability": " "i "in "int BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 0 "--":[ 6 6 0 0 0 0 1 +{ { { { { { { BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 11 0 no 0 0 0 0 0 0 1 +"switching-capability": "ietf-te-types:switching\ "switching-capability": " "s "sw "swi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 0 "-":"--: 8 9 0 0 0 0 1 +\-otn", \-otn", \-otn", \ \- \-o \-ot BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 0 -", 3 1 0 0 0 0 1 +"encoding": "ietf-te-types:lsp-encoding-oduk", "encoding": " "e "en "enc BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 0 "":"--:--", 11 8 0 0 0 0 1 +"max-lsp-bandwidth": [ "max-lsp-bandwidth": " "m "ma "max BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 0 "--":[ 6 4 0 0 0 0 1 +{ { { { { { { BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 11 0 no 0 0 0 0 0 0 1 +"priority": 0, "priority": " "p "pr "pri BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 0 "":, 4 2 0 0 0 0 1 +"// __DISCUSS__ "// " "/ "// "// BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 11 0 "//-":"" 8 7 0 0 0 0 1 +} } } } } } } BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 11 0 no 0 0 0 0 0 0 1 +], ], ], ] ], ], ], BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 11 0 ], 2 0 0 0 0 0 1 +"// __DISCUSS__ "// " "/ "// "// BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 11 0 "//-":" 7 9 0 0 0 0 1 +\d?" \d?" \d?" \ \d \d? \d?" BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 0 ?" 2 0 0 0 0 0 1 +} } } } } } } BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 11 0 no 0 0 0 0 0 0 1 +], ], ], ] ], ], ], BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 11 0 ], 2 0 0 0 0 0 1 +"// __DISCUSS__ "// " "/ "// "// BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 11 0 "//--":" 8 10 0 0 0 0 1 +\e unprotected \e \ \e \e \e BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 0 ?", 3 7 0 0 0 0 1 +"link-protection-type": "unprotected", "link-protection-type": " "l "li "lin BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 0 "--":"", 8 7 0 0 0 0 1 +"max-link-bandwidth": { "max-link-bandwidth": " "m "ma "max BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 0 "--": 5 4 0 0 0 0 1 +"// __DISCUSS__ "// " "/ "// "// BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 11 0 "//-":"" 8 7 0 0 0 0 1 +}, }, }, } }, }, }, BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 11 0 , 1 0 0 0 0 0 1 +"max-resv-link-bandwidth": { "max-resv-link-bandwidth": " "m "ma "max BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 0 "---": 6 5 0 0 0 0 1 +"// __DISCUSS__ "// " "/ "// "// BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 11 0 "//-":"" 8 7 0 0 0 0 1 +}, }, }, } }, }, }, BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 11 0 , 1 0 0 0 0 0 1 +"unreserved-bandwidth": [ "unreserved-bandwidth": " "u "un "unr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 0 "-":[ 5 4 0 0 0 0 1 +{ { { { { { { BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 11 0 no 0 0 0 0 0 0 1 +"priority": 0, "priority": " "p "pr "pri BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 0 "":, 4 2 0 0 0 0 1 +Busi, King, busi, B Bu Bus Busi BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 11 ,,. 3 9 0 0 1 0 0 +Expires March, expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 11 , 1 10 0 0 0 0 0 +[Page 67] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 11 [] 2 5 0 0 0 0 0 +Internet-Draft Transport internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 0 -- 2 10 0 0 1 0 1 +September 2019 september S Se Sep Sept BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 0 0 0 1 0 0 11 0 no 0 10 0 0 1 0 1 +"// __DISCUSS__ "// " "/ "// "// BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 11 0 "//-":"" 8 7 0 0 0 0 1 +} } } } } } } BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 11 0 no 0 0 0 0 0 0 1 +] ] ] ] ] ] ] BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 11 0 ] 1 0 0 0 0 0 1 +}, }, }, } }, }, }, BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 11 0 , 1 0 0 0 0 0 1 +"oper-status": "up", "oper-status": " "o "op "ope BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 0 "-":"", 7 3 0 0 0 0 1 +"// __EMPTY__ "// " "/ "// "// BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 11 0 "//-":" 7 10 0 0 0 0 1 +\nal link", \nal \ \n \na \nal BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 0 ", 2 2 0 0 0 0 1 +"// __DISCUSS__ "// " "/ "// "// BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 11 0 "//":" 6 10 0 0 0 0 1 +\opology authors" \opology \ \o \op \opo BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 0 " 1 3 0 0 0 0 1 +}, }, }, } }, }, }, BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 11 0 , 1 0 0 0 0 0 1 +"source": { "source": " "s "so "sou BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 0 "": 3 2 0 0 0 0 1 +"source-node": "10.0.0.1", "source-node": " "s "so "sou BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 0 "-":"...", 10 4 0 0 0 0 1 +"source-tp": 7 "source-tp": " "s "so "sou BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 0 "-": 4 2 0 0 0 0 1 +}, }, }, } }, }, }, BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 11 0 , 1 0 0 0 0 0 1 +"// __EMPTY__ "// " "/ "// "// BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 11 0 "//":"" 7 7 0 0 0 0 1 +} } } } } } } BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 11 0 no 0 0 0 0 0 0 1 +] ] ] ] ] ] ] BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 11 0 ] 1 0 0 0 0 0 1 +} } } } } } } BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 11 0 no 0 0 0 0 0 0 1 +] ] ] ] ] ] ] BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 11 0 ] 1 0 0 0 0 0 1 +} } } } } } } BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 11 0 no 0 0 0 0 0 0 1 +} } } } } } } BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 11 0 no 0 0 0 0 0 0 1 +B.2. JSON b.2. B B. B.2 B.2. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 8 .. 2 10 0 0 0 0 1 +B.2.1. B.2.1. b.2.1. B B. B.2 B.2. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 8 ... 3 1 0 0 0 0 1 +JSON Code: json J JS JSO JSON BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 11 8 :---. 5 10 0 0 0 0 1 +This is this T Th Thi This BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 9 no 0 10 0 0 0 0 1 +configuration @ configuration c co con conf BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 9 : 1 3 0 0 0 0 1 +Busi, King, busi, B Bu Bus Busi BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 10 ,,. 3 9 0 0 1 0 0 +Expires March, expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 10 , 1 10 0 0 0 0 0 +[Page 68] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 10 [] 2 5 0 0 0 0 0 +Internet-Draft Transport internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 0 -- 2 10 0 0 1 0 1 +September 2019 september S Se Sep Sept BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 0 0 0 1 0 0 11 0 no 0 10 0 0 1 0 1 +========== NOTE: ========== = == === ==== BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 11 0 :''() 5 10 0 0 0 0 1 +{ { { { { { { BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 11 0 no 0 0 0 0 0 0 1 +"// __TITLE__": "// " "/ "// "// BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 11 0 "//":"", 8 8 0 0 0 0 1 +"// __LAST_UPDATE__": "// " "/ "// "// BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 11 0 "//":",", 9 6 0 0 0 0 1 +"// __MISSING_ATTRIBUTES__": "// " "/ "// "// BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 11 0 "//":, 6 5 0 0 0 0 1 +"// __REFERENCE_DRAFTS__": "// " "/ "// "// BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 11 0 "//": 5 4 0 0 0 0 1 +"ietf-routing-types@2017-12-04": "rfc8294", "ietf-routing-types@2017-12-04": " "i "ie "iet BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 1 0 0 0 11 0 "----":"", 10 6 0 0 0 0 1 +"ietf-otn-types@2018-06-07": "draft-ietf-ccamp-otn-tunnel-model-\ "ietf-otn-types@2018-06-07": " "i "ie "iet BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 1 0 0 0 11 0 "----":"------ 14 10 0 0 0 0 1 +\02", \02", \02", \ \0 \02 \02" BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 0 ", 2 0 0 0 0 0 1 +"ietf-te-types@2018-07-01": "draft-ietf-teas-yang-te-16", "ietf-te-types@2018-07-01": " "i "ie "iet BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 1 0 0 0 11 0 "----":"-----", 15 8 0 0 0 0 1 +"ietf-te@2018-07-01": "draft-ietf-teas-yang-te-16", "ietf-te@2018-07-01": " "i "ie "iet BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 1 0 0 0 11 0 "---":"-----", 14 7 0 0 0 0 1 +"ietf-otn-tunnel@2018-06-07": "draft-ietf-ccamp-otn-tunnel-model\ "ietf-otn-tunnel@2018-06-07": " "i "ie "iet BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 1 0 0 0 11 0 "----":"----- 13 10 0 0 0 0 1 +\-02" \-02" \-02" \ \- \-0 \-02 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 0 -" 2 0 0 0 0 0 1 +}, }, }, } }, }, }, BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 11 0 , 1 0 0 0 0 0 1 +"// __RESTCONF_OPERATION__": "// " "/ "// "// BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 11 0 "//": 5 4 0 0 0 0 1 +"operation": "PUT", "operation": " "o "op "ope BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 0 "":"", 6 3 0 0 0 0 1 +"url": "http://{{PNC1-ADDR}}/restconf/data/ietf-te:te" "url": " "u "ur "url BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 0 "":"://-///-:" 14 8 0 0 0 0 1 +}, }, }, } }, }, }, BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 11 0 , 1 0 0 0 0 0 1 +"ietf-te:te": { "ietf-te:te": " "i "ie "iet BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 0 "-:": 5 2 0 0 0 0 1 +"tunnels": { "tunnels": " "t "tu "tun BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 0 "": 3 1 0 0 0 0 1 +"tunnel": [ "tunnel": " "t "tu "tun BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 0 "":[ 4 1 0 0 0 0 1 +{ { { { { { { BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 11 0 no 0 0 0 0 0 0 1 +"name": "mpi1-odu2-service", "name": " "n "na "nam BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 0 "":"--", 8 4 0 0 0 0 1 +"// identifier": "// " "/ "// "// BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 11 0 "//":"---", 11 7 0 0 0 0 1 +"identifier": 1, "identifier": " "i "id "ide BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 0 "":, 4 2 0 0 0 0 1 +"description": "ODU2 "description": " "d "de "des BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 0 "":" 4 9 0 0 0 0 1 +\l Segment \l \ \l \l \l BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 0 ", 2 3 0 0 0 0 1 +"// encoding "// " "/ "// "// BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 11 0 "//-":"", 9 6 0 0 0 0 1 +"encoding": "ietf-te-types:lsp-encoding-oduk "encoding": " "e "en "enc BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 0 "":"--:--", 11 7 0 0 0 0 1 +"switching-type": "ietf-te-types:switching-otn", "switching-type": " "s "sw "swi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 0 "-":"--:-", 11 7 0 0 0 0 1 +"// source": "// " "/ "// "// BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 11 0 "//":":", 9 6 0 0 0 0 1 +"// destination": "// " "/ "// "// BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 11 0 "//":":", 9 7 0 0 0 0 1 +"// src-tp-id": "// " "/ "// "// BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 11 0 "//--":":", 11 7 0 0 0 0 1 +"// dst-tp-id": "// " "/ "// "// BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 11 0 "//--":":", 11 7 0 0 0 0 1 +"// ietf-otn-tunnel:src-client-signal": "// " "/ "// "// BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 11 0 "//--:--":": 12 9 0 0 0 0 1 +\ tunnel \ \ \ \ \ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 11 0 ", 2 2 0 0 0 0 1 +"// ietf-otn-tunnel:dst-client-signal": "// " "/ "// "// BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 11 0 "//--:--":": 12 9 0 0 0 0 1 +\ tunnel \ \ \ \ \ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 11 0 ", 2 2 0 0 0 0 1 +"bidirectional": true, "bidirectional": " "b "bi "bid BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 0 "":, 4 3 0 0 0 0 1 +"// protection": "// " "/ "// "// BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 11 0 "//":"", 8 5 0 0 0 0 1 +"// __ "// " "/ "// "// BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 11 0 "//": 5 5 0 0 0 0 1 +"// __ "// " "/ "// "// BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 11 0 "//": 5 5 0 0 0 0 1 +}, }, }, } }, }, }, BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 11 0 , 1 0 0 0 0 0 1 +Busi, King, busi, B Bu Bus Busi BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 11 ,,. 3 9 0 0 1 0 0 +Expires March, expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 11 , 1 10 0 0 0 0 0 +[Page 69] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 11 [] 2 5 0 0 0 0 0 +Internet-Draft Transport internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 0 -- 2 10 0 0 1 0 1 +September 2019 september S Se Sep Sept BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 0 0 0 1 0 0 11 0 no 0 10 0 0 1 0 1 +"// restoration": "// " "/ "// "// BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 11 0 "//":"", 8 6 0 0 0 0 1 +"// __ "// " "/ "// "// BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 11 0 "//": 5 5 0 0 0 0 1 +"// __ "// " "/ "// "// BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 11 0 "//": 5 5 0 0 0 0 1 +}, }, }, } }, }, }, BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 11 0 , 1 0 0 0 0 0 1 +"// te-topology-identifier": "// " "/ "// "// BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 11 0 "//--":"", 10 10 0 0 0 0 1 +"te-topology-identifier": { "te-topology-identifier": " "t "te "te- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 0 "--": 5 4 0 0 0 0 1 +"provider-id": 201, "provider-id": " "p "pr "pro BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 0 "-":, 5 3 0 0 0 0 1 +"client-id": 300, "client-id": " "c "cl "cli BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 0 "-":, 5 3 0 0 0 0 1 +"topology-id": "otn-black-topology" "topology-id": " "t "to "top BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 0 "-":"--" 8 6 0 0 0 0 1 +}, }, }, } }, }, }, BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 11 0 , 1 0 0 0 0 0 1 +"te-bandwidth": { "te-bandwidth": " "t "te "te- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 0 "-": 4 3 0 0 0 0 1 +"ietf-otn-tunnel:odu-type": "ietf-otn-types:prot-ODU2" "ietf-otn-tunnel:odu-type": " "i "ie "iet BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 0 "--:-":"--:-" 13 9 0 0 0 0 1 +}, }, }, } }, }, }, BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 11 0 , 1 0 0 0 0 0 1 +"// hierarchical-link": "// " "/ "// "// BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 11 0 "//-":":", 10 9 0 0 0 0 1 +"p2p-primary-paths": { "p2p-primary-paths": " "p "p2 "p2p BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 0 "--": 5 3 0 0 0 0 1 +"p2p-primary-path": [ "p2p-primary-path": " "p "p2 "p2p BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 0 "--":[ 6 3 0 0 0 0 1 +{ { { { { { { BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 11 0 no 0 0 0 0 0 0 1 +"name": "mpi1-odu2-service-primary-path", "name": " "n "na "nam BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 0 "":"----", 10 7 0 0 0 0 1 +"path-scope": "ietf-te-types:path-scope-segment", "path-scope": " "p "pa "pat BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 0 "-":"--:--", 12 8 0 0 0 0 1 +"// te-bandwidth": "// " "/ "// "// BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 11 0 "//-":": 8 9 0 0 0 0 1 +\needs to \needs \ \n \ne \nee BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 0 ", 2 8 0 0 0 0 1 +"explicit-route-objects": { "explicit-route-objects": " "e "ex "exp BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 0 "--": 5 4 0 0 0 0 1 +"route-object-include-exclude": [ "route-object-include-exclude": " "r "ro "rou BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 0 "---":[ 7 5 0 0 0 0 1 +{ { { { { { { BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 11 0 no 0 0 0 0 0 0 1 +"// comment": "// " "/ "// "// BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 11 0 "//":"- 7 8 0 0 0 0 1 +\terface (S3-1)", \terface \ \t \te \ter BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 0 (-)", 5 3 0 0 0 0 1 +"index": 1, "index": " "i "in "ind BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 0 "":, 4 2 0 0 0 0 1 +"explicit-route-usage": "ietf-te-types:route-i\ "explicit-route-usage": " "e "ex "exp BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 0 "--":"--:- 10 8 0 0 0 0 1 +\nclude-ero", \nclude-ero", \nclude-ero", \ \n \nc \ncl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 0 -", 3 2 0 0 0 0 1 +"num-unnum-hop": { "num-unnum-hop": " "n "nu "num BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 0 "--": 5 3 0 0 0 0 1 +"// node-id": "// " "/ "// "// BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 11 0 "//-":"", 9 4 0 0 0 0 1 +"node-id": "10.0.0.1", "node-id": " "n "no "nod BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 0 "-":"...", 10 3 0 0 0 0 1 +"// link-tp-id": "// " "/ "// "// BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 11 0 "//--":"-", 11 5 0 0 0 0 1 +"link-tp-id": 1, "link-tp-id": " "l "li "lin BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 0 "--":, 6 2 0 0 0 0 1 +"hop-type": "STRICT", "hop-type": " "h "ho "hop BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 0 "-":"", 7 3 0 0 0 0 1 +"direction": "INCOMING" "direction": " "d "di "dir BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 0 "":"" 5 4 0 0 0 0 1 +} } } } } } } BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 11 0 no 0 0 0 0 0 0 1 +}, }, }, } }, }, }, BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 11 0 , 1 0 0 0 0 0 1 +{ { { { { { { BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 11 0 no 0 0 0 0 0 0 1 +"// comment": "// " "/ "// "// BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 11 0 "//":"- 7 8 0 0 0 0 1 +\bel (ODU2 \bel \ \b \be \bel BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 0 ()-", 5 5 0 0 0 0 1 +"index": 2, "index": " "i "in "ind BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 0 "":, 4 2 0 0 0 0 1 +"explicit-route-usage": "ietf-te-types:route-i\ "explicit-route-usage": " "e "ex "exp BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 0 "--":"--:- 10 8 0 0 0 0 1 +\nclude-ero", \nclude-ero", \nclude-ero", \ \n \nc \ncl BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 0 -", 3 2 0 0 0 0 1 +Busi, King, busi, B Bu Bus Busi BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 11 ,,. 3 9 0 0 1 0 0 +Expires March, expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 11 , 1 10 0 0 0 0 0 +[Page 70] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 11 [] 2 5 0 0 0 0 0 +Internet-Draft Transport internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 0 -- 2 10 0 0 1 0 1 +September 20199 september S Se Sep Sept BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 0 0 0 1 0 0 11 0 no 0 10 0 0 1 0 1 +"label-hop": { "label-hop": " "l "la "lab BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 0 "-": 4 3 0 0 0 0 1 +"te-label": { "te-label": " "t "te "te- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 0 "-": 4 2 0 0 0 0 1 +"// __ "// " "/ "// "// BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 11 0 "//-":"- 8 9 0 0 0 0 1 +\ODU (ODUk \odu \ \O \OD \ODU BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 11 0 ()?", 5 8 0 0 0 0 1 +"// __ "// " "/ "// "// BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 11 0 "//":" 6 9 0 0 0 0 1 +\TE Tunnel \te \ \T \TE \TE BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 11 0 ", 2 4 0 0 0 0 1 +"direction": "FORWARD "direction": " "d "di "dir BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 0 "":"" 5 5 0 0 0 0 1 +} } } } } } } BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 11 0 no 0 0 0 0 0 0 1 +} } } } } } } BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 11 0 no 0 0 0 0 0 0 1 +}, }, }, } }, }, }, BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 11 0 , 1 0 0 0 0 0 1 +{ { { { { { { BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 11 0 no 0 0 0 0 0 0 1 +"// comment": "// " "/ "// "// BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 11 0 "//":"- 7 10 0 0 0 0 1 +\erface (S2-1)", \erface \ \e \er \erf BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 0 (-)", 5 3 0 0 0 0 1 +"index": 3, "index": " "i "in "ind BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 0 "":, 4 2 0 0 0 0 1 +"explicit-route-usage": "ietf-te-types:route-i\ "explicit-route-usage": " "e "ex "exp BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 0 "--":"--:- 10 10 0 0 0 0 1 +\nclude-ero", \nclude-ero", \nclude-ero", \ \n \nc \ncl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 0 -", 3 2 0 0 0 0 1 +"num-unnum-hop": { "num-unnum-hop": " "n "nu "num BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 0 "--": 5 3 0 0 0 0 1 +"// node-id": "// " "/ "// "// BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 11 0 "//-":"", 9 5 0 0 0 0 1 +"node-id": "10.0.0.1", "node-id": " "n "no "nod BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 0 "-":"...", 10 4 0 0 0 0 1 +"// link-tp-id": "// " "/ "// "// BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 11 0 "//--":"-", 11 6 0 0 0 0 1 +"link-tp-id": 1, "link-tp-id": " "l "li "lin BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 0 "--":, 6 3 0 0 0 0 1 +"hop-type": "STRICT", "hop-type": " "h "ho "hop BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 0 "-":"", 7 4 0 0 0 0 1 +"direction": "OUTGOING" "direction": " "d "di "dir BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 0 "":"" 5 5 0 0 0 0 1 +} } } } } } } BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 11 0 no 0 0 0 0 0 0 1 +}, }, }, } }, }, }, BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 11 0 , 1 0 0 0 0 0 1 +{ { { { { { { BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 11 0 no 0 0 0 0 0 0 1 +"// comment": "// " "/ "// "// BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 11 0 "//":"- 7 10 0 0 0 0 1 +\el (ODU2 \el \ \e \el \el BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 0 ()-", 5 6 0 0 0 0 1 +"index": 4, "index": " "i "in "ind BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 0 "":, 4 2 0 0 0 0 1 +"explicit-route-usage": "ietf-te-types:route-i\ "explicit-route-usage": " "e "ex "exp BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 0 "--":"--:- 10 10 0 0 0 0 1 +\nclude-ero", \nclude-ero", \nclude-ero", \ \n \nc \ncl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 0 -", 3 2 0 0 0 0 1 +"label-hop": { "label-hop": " "l "la "lab BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 0 "-": 4 3 0 0 0 0 1 +"te-label": { "te-label": " "t "te "te- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 0 "-": 4 2 0 0 0 0 1 +"ietf-otn-tunnel:tpn": 1, "ietf-otn-tunnel:tpn": " "i "ie "iet BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 0 "--:":, 7 5 0 0 0 0 1 +"ietf-otn-tunnel:tsg": "ietf-otn-types:tsg\ "ietf-otn-tunnel:tsg": " "i "ie "iet BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 0 "--:":"--: 10 9 0 0 0 0 1 +\-1.25G", \-1.25G", \-1.25g", \ \- \-1 \-1. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 0 -.", 4 2 0 0 0 0 1 +"ietf-otn-tunnel:ts-list": "1-8", "ietf-otn-tunnel:ts-list": " "i "ie "iet BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 0 "--:-":"-", 11 7 0 0 0 0 1 +"// __ "// " "/ "// "// BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 11 0 "//":" 6 9 0 0 0 0 1 +\TE Tunnel \te \ \T \TE \TE BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 11 0 ", 2 4 0 0 0 0 1 +"direction": "FORWARD "direction": " "d "di "dir BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 0 "":"" 5 5 0 0 0 0 1 +} } } } } } } BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 11 0 no 0 0 0 0 0 0 1 +} } } } } } } BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 11 0 no 0 0 0 0 0 0 1 +} } } } } } } BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 11 0 no 0 0 0 0 0 0 1 +] ] ] ] ] ] ] BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 11 0 ] 1 0 0 0 0 0 1 +Busi, King, busi, B Bu Bus Busi BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 11 ,,. 3 9 0 0 1 0 0 +Expires March, expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 11 , 1 10 0 0 0 0 0 +[Page 71] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 11 [] 2 5 0 0 0 0 0 +Internet-Draft Transport internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 0 -- 2 10 0 0 1 0 1 +September 2019 september S Se Sep Sept BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 0 0 0 1 0 0 11 0 no 0 10 0 0 1 0 1 +} } } } } } } BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 11 0 no 0 10 0 0 0 0 1 +} } } } } } } BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 11 0 no 0 10 0 0 0 0 1 +] ] ] ] ] ] ] BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 11 0 ] 1 10 0 0 0 0 1 +} } } } } } } BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 11 0 no 0 10 0 0 0 0 1 +} } } } } } } BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 11 0 no 0 10 0 0 0 0 1 +] ] ] ] ] ] ] BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 11 0 ] 1 10 0 0 0 0 1 +} } } } } } } BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 11 0 no 0 10 0 0 0 0 1 +} } } } } } } BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 11 0 no 0 10 0 0 0 0 1 +} } } } } } } BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 11 0 no 0 10 0 0 0 0 1 +B.2.2. B.2.2. b.2.2. B B. B.2 B.2. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 2 ... 3 1 0 0 0 0 1 +JSON Code: json J JS JSO JSON BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 11 2 :---. 5 10 0 0 0 0 1 +The JSON the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 3 no 0 10 0 0 0 0 1 +this document this t th thi this BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 3 no 0 2 0 0 0 0 1 +An incomplete an A An An An BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 11 4 : 1 10 0 0 0 0 1 +https://github.com/danielkinguk/transport-nbi https://github.com/danielkinguk/transport-nbi https://github.com/danielkinguk/transport-nbi h ht htt http BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 1 11 5 ://.//- 7 10 0 0 0 0 1 +B.2.3. B.2.3. b.2.3. B B. B.2 B.2. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 6 ... 3 1 0 0 0 0 1 +JSON Code: json J JS JSO JSON BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 11 6 :---. 5 10 0 0 0 0 1 +The JSON the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 7 no 0 10 0 0 0 0 1 +this document this t th thi this BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 7 no 0 2 0 0 0 0 1 +An incomplete an A An An An BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 11 9 : 1 10 0 0 0 0 1 +https://github.com/danielkinguk/transport-nbi https://github.com/danielkinguk/transport-nbi https://github.com/danielkinguk/transport-nbi h ht htt http BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 1 11 10 ://.//- 7 10 0 0 0 0 1 +Busi, King, busi, B Bu Bus Busi BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 10 ,,. 3 9 0 0 1 0 0 +Expires March, expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 10 , 1 10 0 0 0 0 0 +[Page 72] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 10 [] 2 5 0 0 0 0 0 +Internet-Draft Transport internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 0 -- 2 10 0 0 1 0 1 +September 2019 september S Se Sep Sept BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 0 0 0 1 0 0 11 0 no 0 10 0 0 1 0 1 +Authors' Addresses authors' A Au Aut Auth BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 1 ' 1 10 0 0 0 0 1 +Italo Busi italo I It Ita Ital BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 1 () 2 10 0 0 0 0 1 +Huawei Huawei huawei H Hu Hua Huaw BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 1 no 0 3 0 0 0 0 1 +Email: italo.busi@huawei.com email: E Em Ema Emai BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 2 :.. 3 10 0 0 0 0 1 +Daniel King daniel D Da Dan Dani BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 0 0 0 0 0 0 11 2 () 2 10 0 0 0 0 1 +Old Dog old O Ol Old Old BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 2 no 0 9 0 0 0 0 1 +Email: daniel@olddog.co.uk email: E Em Ema Emai BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 3 :.. 3 10 0 0 0 0 1 +Haomian Zheng haomian H Ha Hao Haom BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 4 () 2 10 0 0 0 0 1 +Huawei Huawei huawei H Hu Hua Huaw BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 4 no 0 3 0 0 0 0 1 +Email: zhenghaomian@huawei.com email: E Em Ema Emai BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 5 :. 2 10 0 0 0 0 1 +Yunbin Xu yunbin Y Yu Yun Yunb BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 5 () 2 10 0 0 0 0 1 +CAICT CAICT caict C CA CAI CAIC BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 11 5 no 0 3 0 0 0 0 1 +Email: xuyunbin@ritt.cn email: E Em Ema Emai BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 6 :. 2 10 0 0 0 0 1 +Yang Zhao yang Y Ya Yan Yang BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 0 0 0 0 0 0 11 6 no 0 7 0 0 0 0 1 +China Mobile china C Ch Chi Chin BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 11 6 no 0 10 0 0 0 0 1 +Email: zhaoyangyjy@chinamobile.com email: E Em Ema Emai BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 7 :. 2 10 0 0 0 0 1 +Sergio Belotti sergio S Se Ser Serg BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 0 0 0 0 0 0 11 8 no 0 10 0 0 0 0 1 +Nokia Nokia nokia N No Nok Noki BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 8 no 0 4 0 0 0 0 1 +Email: sergio.belotti@nokia.com email: E Em Ema Emai BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 8 :.. 3 10 0 0 0 0 1 +Gianmarco Bruno gianmarco G Gi Gia Gian BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 9 no 0 10 0 0 0 0 1 +Ericsson Ericsson ericsson E Er Eri Eric BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 9 no 0 5 0 0 0 0 1 +Email: gianmarco.bruno@ericsson.com email: E Em Ema Emai BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 9 :.. 3 10 0 0 0 0 1 +Busi, King, busi, B Bu Bus Busi BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 10 ,,. 3 9 0 0 1 0 0 +Expires March, expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 10 , 1 10 0 0 0 0 0 +[Page 73] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 10 [] 2 5 0 0 0 0 0 +Internet-Draft Transport internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 0 -- 2 10 0 0 1 0 1 +September 2019 september S Se Sep Sept BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 0 0 0 1 0 0 11 1 no 0 10 0 0 1 0 1 +Young Lee young Y Yo You Youn BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 11 1 no 0 3 0 0 0 0 1 +Sung Kyun sung S Su Sun Sung BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 11 1 no 0 10 0 0 0 0 1 +Email: younglee.tx@gmail.com email: E Em Ema Emai BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 2 :.. 3 10 0 0 0 0 1 +Victor Lopez victor V Vi Vic Vict BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 11 3 no 0 10 0 0 0 0 1 +Telefonica Telefonica telefonica T Te Tel Tele BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 3 no 0 8 0 0 0 0 1 +Email: victor.lopezalvarez@telefonica.com email: E Em Ema Emai BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 3 :.. 3 10 0 0 0 0 1 +Carlo Perocchio carlo C Ca Car Carl BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 0 0 0 0 0 0 11 4 no 0 10 0 0 0 0 1 +Ericsson Ericsson ericsson E Er Eri Eric BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 4 no 0 5 0 0 0 0 1 +Email: carlo.perocchio@ericsson.com email: E Em Ema Emai BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 5 :.. 3 10 0 0 0 0 1 +Ricard Vilalta ricard R Ri Ric Rica BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 0 0 0 0 0 0 11 6 no 0 10 0 0 0 0 1 +CTTC CTTC cttc C CT CTT CTTC BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 11 6 no 0 3 0 0 0 0 1 +Email: ricard.vilalta@cttc.es email: E Em Ema Emai BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 6 :.. 3 10 0 0 0 0 1 +Michael Scharf michael M Mi Mic Mich BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 1 0 0 0 0 0 0 11 7 no 0 2 0 0 0 0 1 +Hochschule Esslingen hochschule H Ho Hoc Hoch BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 7 - 1 10 0 0 0 0 1 +Email: michael.scharf@hs-esslingen.de email: E Em Ema Emai BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 9 :.-. 4 10 0 0 0 0 1 +Busi, King, busi, B Bu Bus Busi BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 9 ,,. 3 9 0 0 1 0 0 +Expires March, expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 1 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 9 , 1 10 0 0 0 0 0 +[Page 74] [page [ [P [Pa [Pag BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 1 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 9 [] 2 5 0 0 0 0 0 + diff --git a/grobid-trainer/resources/dataset/segmentation/sdo/ietf/corpus/raw/draft-ietf-bfcpbis-rfc4583bis-27.segmentation b/grobid-trainer/resources/dataset/segmentation/sdo/ietf/corpus/raw/draft-ietf-bfcpbis-rfc4583bis-27.segmentation new file mode 100644 index 0000000000..654365aef9 --- /dev/null +++ b/grobid-trainer/resources/dataset/segmentation/sdo/ietf/corpus/raw/draft-ietf-bfcpbis-rfc4583bis-27.segmentation @@ -0,0 +1,986 @@ +BFCPbis Working bfcpbis B BF BFC BFCP BLOCKSTART PAGESTART NEWFONT HIGHERFONT 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 no 0 10 0 0 0 0 1 +G. Camarillo g. G G. G. G. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 . 1 3 0 0 0 0 1 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 - 1 4 0 0 1 1 1 +Ericsson Ericsson ericsson E Er Eri Eric BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 no 0 2 0 0 0 0 1 +Obsoletes: 4583 obsoletes: O Ob Obs Obso BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 :() 3 9 0 0 0 0 1 +T. Kristensen t. T T. T. T. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 . 1 4 0 0 0 0 1 +Intended status: intended I In Int Inte BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 : 1 10 0 0 0 0 1 +Cisco Cisco cisco C Ci Cis Cisc BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 1 0 0 0 0 0 0 0 0 no 0 1 0 0 0 0 1 +Expires: June expires: E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 :, 2 6 0 0 0 0 1 +C. Holmberg c. C C. C. C. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 . 1 3 0 0 0 0 1 +Ericsson Ericsson ericsson E Er Eri Eric BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 no 0 2 0 0 0 0 1 +December 8, december D De Dec Dece BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 0 0 , 1 5 0 0 0 0 1 +Session Description session S Se Ses Sess BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 1 () 2 10 0 0 0 0 1 +Protocol (BFCP) protocol P Pr Pro Prot BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 1 () 2 3 0 0 0 0 1 +draft-ietf-bfcpbis-rfc4583bis-27 draft-ietf-bfcpbis-rfc4583bis-27 draft-ietf-bfcpbis-rfc4583bis-27 d dr dra draf BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 1 ---- 4 4 0 0 0 0 1 +Abstract Abstract abstract A Ab Abs Abst BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 2 no 0 10 0 0 0 0 1 +This document this T Th Thi This BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 2 ()/ 3 10 0 0 0 0 1 +answer procedures answer a an ans answ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 2 no 0 9 0 0 0 0 1 +Control Protocol control C Co Con Cont BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 2 (). 3 4 0 0 0 0 1 +This document this T Th Thi This BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 3 . 1 10 0 0 0 0 1 +summarized in summarized s su sum summ BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 3 . 1 4 0 0 0 0 1 +Status of status S St Sta Stat BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 4 no 0 10 0 0 0 0 1 +This Internet-Draft this T Th Thi This BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 4 - 1 10 0 0 0 0 1 +provisions of provisions p pr pro prov BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 4 . 1 5 0 0 0 0 1 +Internet-Drafts are internet-drafts I In Int Inte BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 4 - 1 9 0 0 0 0 1 +Task Force task T Ta Tas Task BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 4 (). 3 9 0 0 0 0 1 +working documents working w wo wor work BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 4 -.- 3 10 0 0 0 0 1 +Drafts is drafts D Dr Dra Draf BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 4 ://..///. 9 8 0 0 0 0 1 +Internet-Drafts are internet-drafts I In Int Inte BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 6 - 1 10 0 0 0 0 1 +and may and a an and and BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 6 ,, 2 9 0 0 0 0 1 +time. It time. t ti tim time BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 6 .- 2 8 0 0 0 0 1 +material or material m ma mat mate BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 6 "." 3 8 0 0 0 0 1 +This Internet-Draft this T Th Thi This BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 8 -,. 3 10 0 0 0 0 1 +Copyright Notice copyright C Co Cop Copy BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 8 no 0 10 0 0 0 0 1 +Copyright (c) copyright C Co Cop Copy BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 9 () 2 10 0 0 0 0 1 +document authors. document d do doc docu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 9 .. 2 6 0 0 0 0 1 +This document this T Th Thi This BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 9 ' 1 9 0 0 0 0 1 +Provisions Relating provisions P Pr Pro Prov BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 9 no 0 5 0 0 0 0 1 +(http://trustee.ietf.org/license-info) in (http://trustee.ietf.org/license-info) ( (h (ht (htt BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 1 0 9 (://../-) 9 10 0 0 0 0 1 +publication of publication p pu pub publ BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 9 . 1 9 0 0 0 0 1 +Camarillo, et camarillo, C Ca Cam Cama BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 11 ,. 2 8 0 0 1 1 1 +Expires June expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 11 , 1 10 0 0 0 0 1 +[Page 1] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 11 [] 2 4 0 0 0 0 1 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 - 1 10 0 0 1 0 1 +BFCP BFCP bfcp B BF BFC BFCP BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 no 0 3 0 0 0 0 1 +December 2018 december D De Dec Dece BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 0 0 no 0 10 0 0 0 0 1 +carefully, as carefully, c ca car care BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 , 1 10 0 0 0 0 1 +to this to t to to to BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 . 1 9 0 0 0 0 1 +include Simplified include i in inc incl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 . 1 9 0 0 0 0 1 +the Trust the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 no 0 9 0 0 0 0 1 +described in described d de des desc BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 . 1 5 0 0 0 0 1 +Table of table T Ta Tab Tabl BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 no 0 10 0 0 0 0 1 +1. Introduction 1. 1 1. 1. 1. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ......................... 25 9 0 0 0 0 1 +3 3 3 3 3 3 3 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 0 0 no 0 0 0 0 0 0 1 +2. Conventions 2. 2 2. 2. 2. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 .......................... 26 9 0 0 0 0 1 +3 3 3 3 3 3 3 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 0 0 no 0 0 0 0 0 0 1 +3. Floor 3. 3 3. 3. 3. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ...................... 22 9 0 0 0 0 1 +4 4 4 4 4 4 4 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 0 0 no 0 0 0 0 0 0 1 +4. Fields 4. 4 4. 4. 4. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 .''................... 22 9 0 0 0 0 1 +4 4 4 4 4 4 4 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 0 0 no 0 0 0 0 0 0 1 +5. SDP 5. 5 5. 5. 5. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ........................ 24 9 0 0 0 0 1 +5 5 5 5 5 5 5 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 0 0 no 0 0 0 0 0 0 1 +5.1. SDP 5.1. 5 5. 5.1 5.1. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ..''................ 20 9 0 0 0 0 1 +5 5 5 5 5 5 5 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 0 0 no 0 0 0 0 0 0 1 +5.2. SDP 5.2. 5 5. 5.2 5.2. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ..''................. 21 8 0 0 0 0 1 +7 7 7 7 7 7 7 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 0 0 no 0 0 0 0 0 0 1 +5.3. SDP 5.3. 5 5. 5.3 5.3. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ..''................. 21 8 0 0 0 0 1 +8 8 8 8 8 8 8 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 0 0 no 0 0 0 0 0 0 1 +5.4. SDP 5.4. 5 5. 5.4 5.4. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ..''................. 21 9 0 0 0 0 1 +9 9 9 9 9 9 9 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 0 0 no 0 0 0 0 0 0 1 +5.5. SDP 5.5. 5 5. 5.5 5.5. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ..''................. 21 9 0 0 0 0 1 +6. Multiplexing 6. 6 6. 6. 6. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 .................. 18 9 0 0 0 0 1 +7. BFCP 7. 7 7. 7. 7. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 .................. 18 9 0 0 0 0 1 +7.1. TCP 7.1. 7 7. 7.1 7.1. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 .................. 18 9 0 0 0 0 1 +8. TLS/DTLS 8. 8 8. 8. 8. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ./................... 21 9 0 0 0 0 1 +9. ICE 9. 9 9. 9. 9. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ...................... 22 9 0 0 0 0 1 +10. SDP 10. 1 10 10. 10. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ./................. 19 10 0 0 0 0 1 +10.1. Generating 10.1. 1 10 10. 10.1 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 .............. 14 9 0 0 0 0 1 +10.2. Generating 10.2. 1 10 10. 10.2 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ................. 17 9 0 0 0 0 1 +10.3. Offerer 10.3. 1 10 10. 10.3 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ............ 12 9 0 0 0 0 1 +10.4. Modifying 10.4. 1 10 10. 10.4 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ................... 19 9 0 0 0 0 1 +11. Examples 11. 1 11 11. 11. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ........................... 27 9 0 0 0 0 1 +12. Security 12. 1 12 12. 12. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 .................... 20 10 0 0 0 0 1 +13. IANA 13. 1 13 13. 13. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ...................... 22 10 0 0 0 0 1 +13.1. Registration 13.1. 1 13 13. 13.1 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ..''........... 15 9 0 0 0 0 1 +13.2. Registration 13.2. 1 13 13. 13.2 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ..''..... 9 9 0 0 0 0 1 +13.3. Registration 13.3. 1 13 13. 13.3 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ..''....... 11 9 0 0 0 0 1 +13.4. Registration 13.4. 1 13 13. 13.4 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ..''....... 11 9 0 0 0 0 1 +13.5. Registration 13.5. 1 13 13. 13.5 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ..''...... 10 9 0 0 0 0 1 +13.6. Registration 13.6. 1 13 13. 13.6 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ..''...... 10 9 0 0 0 0 1 +14. Changes 14. 1 14 14. 14. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ..................... 21 10 0 0 0 0 1 +15. Acknowledgements 15. 1 15 15. 15. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ....................... 23 9 0 0 0 0 1 +16. References 16. 1 16 16. 16. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 .......................... 26 9 0 0 0 0 1 +16.1. Normative 16.1. 1 16 16. 16.1 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 .................... 20 9 0 0 0 0 1 +16.2. Informational 16.2. 1 16 16. 16.2 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 .................. 18 9 0 0 0 0 1 +Authors' Addresses authors' A Au Aut Auth BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 '....................... 24 9 0 0 0 0 1 +Camarillo, et camarillo, C Ca Cam Cama BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 1 11 ,. 2 8 0 0 1 0 0 +Expires June expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 11 , 1 10 0 0 0 0 0 +[Page 2] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 1 0 - 1 10 0 0 1 0 1 +BFCP BFCP bfcp B BF BFC BFCP BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 1 0 no 0 3 0 0 0 0 1 +December 2018 december D De Dec Dece BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 1 0 no 0 10 0 0 0 0 1 +1. Introduction 1. 1 1. 1. 1. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 0 . 1 10 0 0 0 0 1 +As discussed as A As As As BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 0 () 2 8 0 0 0 0 1 +specification [I-D.ietf-bfcpbis-rfc4582bis], specification s sp spe spec BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 0 [-.--], 7 9 0 0 0 0 1 +needs a needs n ne nee need BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 0 no 0 9 0 0 0 0 1 +floor control floor f fl flo floo BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 0 . 1 10 0 0 0 0 1 +the server, the t th the the BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 0 ,,. 3 9 0 0 0 0 1 +One way one O On One One BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 2 no 0 9 0 0 0 0 1 +offer/answer [RFC3264] offer/answer o of off offe BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 2 /[]. 4 9 0 0 0 0 1 +encode this encode e en enc enco BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 2 no 0 10 0 0 0 0 1 +of such of o of of of BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 2 /. 2 4 0 0 0 0 1 +User agents user U Us Use User BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 1 3 / 1 9 0 0 0 0 1 +number of number n nu num numb BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 3 ., 2 10 0 0 0 0 1 +BFCP connection bfcp B BF BFC BFCP BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 1 3 no 0 9 0 0 0 0 1 +SDP 'm' sdp S SD SDP SDP BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 1 3 '', 3 9 0 0 0 0 1 +apply to apply a ap app appl BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 3 . 1 4 0 0 0 0 1 +Section 4 section S Se Sec Sect BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 5 '' 2 10 0 0 0 0 1 +BFCP connection bfcp B BF BFC BFCP BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 1 5 . 1 3 0 0 0 0 1 +Section 5 section S Se Sec Sect BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 6 no 0 10 0 0 0 0 1 +BFCP connection. bfcp B BF BFC BFCP BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 1 6 . 1 2 0 0 0 0 1 +Section 6 section S Se Sec Sect BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 6 . 1 10 0 0 0 0 1 +Section 7 section S Se Sec Sect BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 7 . 1 10 0 0 0 0 1 +Section 8 section S Se Sec Sect BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 7 no 0 10 0 0 0 0 1 +connection. connection. connection. c co con conn BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 7 . 1 1 0 0 0 0 1 +Section 9 section S Se Sec Sect BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 8 () 2 10 0 0 0 0 1 +[RFC8445] considerations [rfc8445] [ [R [RF [RFC BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 8 []. 3 9 0 0 0 0 1 +Section 10 section S Se Sec Sect BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 8 / 1 10 0 0 0 0 1 +BFCP connection. bfcp B BF BFC BFCP BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 1 8 . 1 2 0 0 0 0 1 +2. Conventions 2. 2 2. 2. 2. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 9 . 1 10 0 0 0 0 1 +The key the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 9 "","","","","", 15 9 0 0 0 0 1 +"SHOULD", "SHOULD "should", " "S "SH "SHO BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 1 9 "","","","","", 15 9 0 0 0 0 1 +"OPTIONAL" in "optional" " "O "OP "OPT BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 1 9 "" 2 10 0 0 0 0 1 +14 [RFC2119] 14 1 14 14 14 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS ALLDIGIT 0 0 0 0 0 0 0 0 1 9 [][],, 6 9 0 0 0 0 1 +capitals, as capitals, c ca cap capi BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 9 ,. 2 3 0 0 0 0 1 +Camarillo, et camarillo, C Ca Cam Cama BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 2 11 ,. 2 8 0 0 1 0 0 +Expires June expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 11 , 1 10 0 0 0 0 0 +[Page 3] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 2 0 - 1 10 0 0 1 0 1 +BFCP BFCP bfcp B BF BFC BFCP BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 2 0 no 0 3 0 0 0 0 1 +December 2018 december D De Dec Dece BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 2 0 no 0 10 0 0 0 0 1 +3. Floor 3. 3 3. 3. 3. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 0 . 1 10 0 0 0 0 1 +When two when W Wh Whe When BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 0 , 1 10 0 0 0 0 1 +which of which w wh whi whic BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 0 no 0 9 0 0 0 0 1 +floor control floor f fl flo floo BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 0 . 1 3 0 0 0 0 1 +Once the once O On Onc Once BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 1 , 1 10 0 0 0 0 1 +BFCP-controlled streams bfcp-controlled B BF BFC BFCP BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 2 1 -. 2 8 0 0 0 0 1 +4. Fields 4. 4 4. 4. 4. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 2 .'' 3 10 0 0 0 0 1 +According to according A Ac Acc Acco BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 2 [],'' 5 10 0 0 0 0 1 +the following: the t th the the BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 2 : 1 2 0 0 0 0 1 +m=<media> <port> m=<media> m m= m=< m=<m BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 3 ... 3 10 0 0 0 0 1 +This section this T Th Thi This BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 3 '' 2 10 0 0 0 0 1 +Description ('m' description D De Des Desc BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 3 (''). 5 7 0 0 0 0 1 +The media the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 4 "". 3 10 0 0 0 0 1 +The port the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 4 , 1 9 0 0 0 0 1 +explained below. explained e ex exp expl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 4 . 1 9 0 0 0 0 1 +meaning (i.e., meaning m me mea mean BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 4 (..,) 5 10 0 0 0 0 1 +field. field. field. f fi fie fiel BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 4 . 1 1 0 0 0 0 1 +When TCP when W Wh Whe When BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 5 , 1 10 0 0 0 0 1 +the rules the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 5 [].'' 5 9 0 0 0 0 1 +attribute (discussed attribute a at att attr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 5 (.), 4 9 0 0 0 0 1 +port to port p po por port BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 5 , 1 10 0 0 0 0 1 +the case the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 5 no 0 9 0 0 0 0 1 +the remote the t th the the BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 5 ,. 2 7 0 0 0 0 1 +When UDP when W Wh Whe When BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 8 , 1 10 0 0 0 0 1 +port to port p po por port BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 8 no 0 9 0 0 0 0 1 +regardless of regardless r re reg rega BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 8 ''. 3 7 0 0 0 0 1 +This document this T Th Thi This BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 9 :/, 3 10 0 0 0 0 1 +TCP/DTLS/BFCP, TCP/TLS/BFCP, tcp/dtls/bfcp, T TC TCP TCP/ BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 2 9 //,//,/,//. 11 8 0 0 0 0 1 +The proto the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 10 : 1 10 0 0 0 0 1 +'TCP/BFCP' is 'tcp/bfcp' ' 'T 'TC 'TCP BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 2 10 '/' 3 9 0 0 0 0 1 +encryption, and encryption, e en enc encr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 10 , 1 10 0 0 0 0 1 +endpoints. endpoints. endpoints. e en end endp BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 10 . 1 1 0 0 0 0 1 +Camarillo, et camarillo, C Ca Cam Cama BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 2 11 ,. 2 8 0 0 1 0 0 +Expires June expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 11 , 1 10 0 0 0 0 0 +[Page 4] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 2 0 - 1 10 0 0 1 0 1 +BFCP BFCP bfcp B BF BFC BFCP BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 2 0 no 0 3 0 0 0 0 1 +December 2018 december D De Dec Dece BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 2 0 no 0 10 0 0 0 0 1 +'TCP/TLS/BFCP' is 'tcp/tls/bfcp' ' 'T 'TC 'TCP BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 2 0 '//' 4 9 0 0 0 0 1 +encryption, and encryption, e en enc encr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 0 , 1 10 0 0 0 0 1 +endpoints that endpoints e en end endp BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 0 . 1 4 0 0 0 0 1 +'UDP/BFCP' is 'udp/bfcp' ' 'U 'UD 'UDP BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 2 1 '/' 3 10 0 0 0 0 1 +encryption [RFC6347]. encryption e en enc encr BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 1 []. 3 3 0 0 0 0 1 +'UDP/TLS/BFCP' is 'udp/tls/bfcp' ' 'U 'UD 'UDP BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 2 1 '//' 4 9 0 0 0 0 1 +encryption. This encryption. e en enc encr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 1 . 1 8 0 0 0 0 1 +(Section 9). (section ( (S (Se (Sec BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 1 (). 3 9 0 0 0 0 1 +compatibility with compatibility c co com comp BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 1 . 1 10 0 0 0 0 1 +'TCP/DTLS/BFCP' is 'tcp/dtls/bfcp' ' 'T 'TC 'TCP BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 2 3 '//' 4 8 0 0 0 0 1 +encryption, running encryption, e en enc encr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 3 , 1 10 0 0 0 0 1 +in [RFC4571], in i in in in BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 2 3 [], 3 10 0 0 0 0 1 +RTP/RTCP packets rtp/rtcp R RT RTP RTP/ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 2 3 / 1 9 0 0 0 0 1 +length field length l le len leng BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 3 . 1 9 0 0 0 0 1 +is one is i is is is BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 3 (). 3 9 0 0 0 0 1 +be used be b be be be BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 3 no 0 9 0 0 0 0 1 +compliant endpoints compliant c co com comp BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 3 . 1 5 0 0 0 0 1 +The fmt the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 7 ().'' 5 10 0 0 0 0 1 +lines in lines l li lin line BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 7 no 0 9 0 0 0 0 1 +contain a contain c co con cont BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 7 "*". 4 9 0 0 0 0 1 +other value other o ot oth othe BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 7 . 1 4 0 0 0 0 1 +The following the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 9 '': 3 10 0 0 0 0 1 +m=application 50000 m=application m m= m=a m=ap BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 9 //* 3 10 0 0 0 0 1 +5. SDP 5. 5 5. 5. 5. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 9 . 1 10 0 0 0 0 1 +5.1. SDP 5.1. 5 5. 5.1 5.1. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 9 ..'' 4 10 0 0 0 0 1 +This section this T Th Thi This BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 10 ''-. 4 10 0 0 0 0 1 +attribute is attribute a at att attr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 10 ( 1 9 0 0 0 0 1 +server) for server) s se ser serv BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 10 ). 2 8 0 0 0 0 1 +Camarillo, et camarillo, C Ca Cam Cama BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 3 11 ,. 2 8 0 0 1 0 0 +Expires June expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 11 , 1 10 0 0 0 0 0 +[Page 5] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 3 0 - 1 10 0 0 1 0 1 +BFCP BFCP bfcp B BF BFC BFCP BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 3 0 no 0 3 0 0 0 0 1 +December 2018 december D De Dec Dece BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 3 0 no 0 10 0 0 0 0 1 +Attribute Name: attribute A At Att Attr BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 0 : 1 10 0 0 0 0 1 +Attribute Value: attribute A At Att Attr BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 0 :- 2 10 0 0 0 0 1 +Usage Level: usage U Us Usa Usag BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 0 : 1 10 0 0 0 0 1 +Charset Dependent: charset C Ch Cha Char BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 3 0 : 1 10 0 0 0 0 1 +Mux Category: mux M Mu Mux Mux BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 3 0 : 1 10 0 0 0 0 1 +The Augmented the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 0 []: 3 10 0 0 0 0 1 +floor-control = floor-control f fl flo floo BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 1 -*() 4 9 0 0 0 0 1 +role = role r ro rol role BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 1 "-"/"-"/"-" 11 10 0 0 0 0 1 +An endpoint an A An An An BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 3 1 () 2 10 0 0 0 0 1 +be willing be b be be be BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 1 -: 2 8 0 0 0 0 1 +c-only: The c-only: c c- c-o c-on BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 2 -:. 3 10 0 0 0 0 1 +s-only: The s-only: s s- s-o s-on BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 2 -:. 3 10 0 0 0 0 1 +When inserted when W Wh Whe When BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 3 , 1 8 0 0 0 0 1 +attribute values attribute a at att attr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 3 ("-""-"). 9 8 0 0 0 0 1 +answer, the answer, a an ans answ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 3 ,:"-" 5 10 0 0 0 0 1 +or "s-only". or o or or or BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 3 "-".. 5 9 0 0 0 0 1 +The offerer the T Th The The BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 3 . 1 6 0 0 0 0 1 +In [RFC4583], in I In In In BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 3 5 [],,"-", 8 9 0 0 0 0 1 +meant that meant m me mea mean BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 5 no 0 9 0 0 0 0 1 +client and client c cl cli clie BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 5 , 1 10 0 0 0 0 1 +taking different taking t ta tak taki BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 5 -. 2 9 0 0 0 0 1 +The feature the T Th The The BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 5 , 1 9 0 0 0 0 1 +particular many particular p pa par part BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 5 "-" 3 9 0 0 0 0 1 +endpoint is endpoint e en end endp BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 5 ( 1 9 0 0 0 0 1 +"c-only s-only"). "c-only " "c "c- "c-o BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 5 "--"). 6 9 0 0 0 0 1 +MUST NOT must M MU MUS MUST BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 3 5 "-" 3 10 0 0 0 0 1 +an answer, an a an an an BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 3 5 , 1 9 0 0 0 0 1 +process it process p pr pro proc BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 5 "--"("--"). 11 9 0 0 0 0 1 +Also, as also, A Al Als Also BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 5 , 1 9 0 0 0 0 1 +allowed to allowed a al all allo BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 5 ,'-''-', 8 9 0 0 0 0 1 +answer, each answer, a an ans answ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 5 ,, 2 9 0 0 0 0 1 +endpoint will endpoint e en end endp BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 5 - 1 9 0 0 0 0 1 +stream associated stream s st str stre BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 5 . 1 5 0 0 0 0 1 +Table 1 table T Ta Tab Tabl BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 10 , 1 10 0 0 0 0 1 +on what on o on on on BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 10 . 1 10 0 0 0 0 1 +Camarillo, et camarillo, C Ca Cam Cama BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 3 11 ,. 2 8 0 0 1 0 0 +Expires June expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 11 , 1 10 0 0 0 0 0 +[Page 6] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 3 0 - 1 10 0 0 1 0 1 +BFCP BFCP bfcp B BF BFC BFCP BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 3 0 no 0 3 0 0 0 0 1 +December 2018 december D De Dec Dece BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 3 0 no 0 10 0 0 0 0 1 ++---------+----------+ +---------+----------+ +---------+----------+ + +- +-- +--- BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 3 0 ------------------- 19 10 0 0 0 0 1 +| Offerer | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 3 0 no 0 10 0 0 0 0 1 ++---------+----------+ +---------+----------+ +---------+----------+ + +- +-- +--- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 3 0 ------------------- 19 10 0 0 0 0 1 +| c-only | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 3 0 -- 2 8 0 0 0 0 1 +| s-only | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 3 0 -- 2 8 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 3 0 no 0 0 0 0 0 0 1 +c-s c-s c-s c c- c-s c-s BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 0 - 1 1 0 0 0 0 1 +| c-only | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 3 0 - 1 4 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 3 0 no 0 0 0 0 0 0 1 +c-s c-s c-s c c- c-s c-s BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 0 - 1 1 0 0 0 0 1 +| s-only | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 3 0 - 1 4 0 0 0 0 1 ++---------+----------+ +---------+----------+ +---------+----------+ + +- +-- +--- BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 3 0 ------------------- 19 10 0 0 0 0 1 +Table 1: table T Ta Tab Tabl BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 4 : 1 10 0 0 0 0 1 +Endpoints compliant endpoints E En End Endp BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 3 4 []'' 4 9 0 0 0 0 1 +attribute in attribute a at att attr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 4 .'' 3 9 0 0 0 0 1 +not present, not n no not not BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 4 ,, 2 9 0 0 0 0 1 +offerer will offerer o of off offe BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 4 no 0 10 0 0 0 0 1 +floor control floor f fl flo floo BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 4 . 1 3 0 0 0 0 1 +The SDP the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 7 /'' 3 10 0 0 0 0 1 +defined in defined d de def defi BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 7 . 1 3 0 0 0 0 1 +The following the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 7 '': 3 10 0 0 0 0 1 +a=floorctrl:c-only s-only a=floorctrl:c-only a a= a=f a=fl BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 8 :-- 3 10 0 0 0 0 1 +5.2. SDP 5.2. 5 5. 5.2 5.2. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 3 9 ..'' 4 10 0 0 0 0 1 +This section this T Th Thi This BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 9 ''-. 4 9 0 0 0 0 1 +attribute is attribute a at att attr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 9 no 0 10 0 0 0 0 1 +ID value id I ID ID ID BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 0 1 0 0 0 0 0 0 3 9 , 1 8 0 0 0 0 1 +representation. representation. representation. r re rep repr BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 9 . 1 2 0 0 0 0 1 +Camarillo, et camarillo, C Ca Cam Cama BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 3 11 ,. 2 8 0 0 1 0 0 +Expires June expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 11 , 1 10 0 0 0 0 0 +[Page 7] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 3 0 - 1 10 0 0 1 0 1 +BFCP BFCP bfcp B BF BFC BFCP BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 3 0 no 0 3 0 0 0 0 1 +December 2018 december D De Dec Dece BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 3 0 no 0 10 0 0 0 0 1 +Attribute Name: attribute A At Att Attr BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 0 : 1 10 0 0 0 0 1 +Attribute Value: attribute A At Att Attr BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 0 :- 2 10 0 0 0 0 1 +Usage Level: usage U Us Usa Usag BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 1 : 1 10 0 0 0 0 1 +Charset Dependent: charset C Ch Cha Char BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 3 1 : 1 10 0 0 0 0 1 +Mux Category: mux M Mu Mux Mux BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 3 2 : 1 10 0 0 0 0 1 +The Augmented the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 2 []: 3 10 0 0 0 0 1 +conference-id = conference-id c co con conf BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 3 -* 2 10 0 0 0 0 1 +DIGIT = digit D DI DIG DIGI BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 3 3 [] 2 10 0 0 0 0 1 +The maximum the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 4 no 0 10 0 0 0 0 1 +COMMON-HEADER format common-header C CO COM COMM BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 3 4 -[-.--]. 8 9 0 0 0 0 1 +The SDP the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 6 /'' 3 10 0 0 0 0 1 +defined in defined d de def defi BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 6 . 1 3 0 0 0 0 1 +5.3. SDP 5.3. 5 5. 5.3 5.3. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 4 7 ..'' 4 10 0 0 0 0 1 +This section this T Th Thi This BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 8 '-. 3 9 0 0 0 0 1 +attribute is attribute a at att attr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 8 no 0 10 0 0 0 0 1 +value to value v va val valu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 8 , 1 8 0 0 0 0 1 +representation. representation. representation. r re rep repr BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 8 . 1 2 0 0 0 0 1 +Camarillo, et camarillo, C Ca Cam Cama BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 4 10 ,. 2 8 0 0 1 0 0 +Expires June expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 10 , 1 10 0 0 0 0 0 +[Page 8] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 10 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 4 0 - 1 10 0 0 1 0 1 +BFCP BFCP bfcp B BF BFC BFCP BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 4 0 no 0 3 0 0 0 0 1 +December 2018 december D De Dec Dece BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 4 0 no 0 10 0 0 0 0 1 +Attribute Name: attribute A At Att Attr BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 0 : 1 10 0 0 0 0 1 +Attribute Value: attribute A At Att Attr BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 0 :- 2 10 0 0 0 0 1 +Usage Level: usage U Us Usa Usag BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 1 : 1 10 0 0 0 0 1 +Charset Dependent: charset C Ch Cha Char BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 4 1 : 1 10 0 0 0 0 1 +Mux Category: mux M Mu Mux Mux BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 4 2 : 1 10 0 0 0 0 1 +The Augmented the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 2 []: 3 10 0 0 0 0 1 +user-id = user-id u us use user BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 3 -* 2 10 0 0 0 0 1 +DIGIT = digit D DI DIG DIGI BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 4 3 [] 2 10 0 0 0 0 1 +The maximum the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 4 no 0 10 0 0 0 0 1 +COMMON-HEADER format common-header C CO COM COMM BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 4 4 -[-.--]. 8 9 0 0 0 0 1 +The SDP the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 6 /'' 3 10 0 0 0 0 1 +defined in defined d de def defi BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 6 . 1 3 0 0 0 0 1 +5.4. SDP 5.4. 5 5. 5.4 5.4. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 4 7 ..'' 4 10 0 0 0 0 1 +This section this T Th Thi This BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 8 ''-. 4 10 0 0 0 0 1 +attribute conveys attribute a at att attr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 8 , 1 9 0 0 0 0 1 +representation, and representation, r re rep repr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 8 ,- 2 9 0 0 0 0 1 +controlled media controlled c co con cont BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 8 . 1 3 0 0 0 0 1 +Camarillo, et camarillo, C Ca Cam Cama BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 4 10 ,. 2 8 0 0 1 0 0 +Expires June expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 10 , 1 10 0 0 0 0 0 +[Page 9] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 10 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 4 0 - 1 10 0 0 1 0 1 +BFCP BFCP bfcp B BF BFC BFCP BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 4 0 no 0 3 0 0 0 0 1 +December 2018 december D De Dec Dece BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 4 0 no 0 10 0 0 0 0 1 +Attribute Name: attribute A At Att Attr BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 0 : 1 10 0 0 0 0 1 +Attribute Value: attribute A At Att Attr BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 0 :- 2 10 0 0 0 0 1 +Usage Level: usage U Us Usa Usag BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 0 : 1 10 0 0 0 0 1 +Charset Dependent: charset C Ch Cha Char BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 4 0 : 1 10 0 0 0 0 1 +Mux Category: mux M Mu Mux Mux BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 4 1 : 1 10 0 0 0 0 1 +The Augmented the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 1 []: 3 10 0 0 0 0 1 +floor-id = floor-id f fl flo floo BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 1 -*":"*() 8 10 0 0 0 0 1 +DIGIT = digit D DI DIG DIGI BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 4 2 [] 2 10 0 0 0 0 1 +token = token t to tok toke BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 2 [] 2 10 0 0 0 0 1 +The maximum the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 3 no 0 10 0 0 0 0 1 +FLOOR-ID format floor-id F FL FLO FLOO BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 4 3 -[-.--]. 8 8 0 0 0 0 1 +The floor the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 4 no 0 10 0 0 0 0 1 +ID to id I ID ID ID BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 0 1 0 0 0 0 0 0 4 4 . 1 9 0 0 0 0 1 +with an with w wi wit with BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 4 ''[]. 5 8 0 0 0 0 1 +The SDP the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 5 /'' 3 10 0 0 0 0 1 +defined in defined d de def defi BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 5 . 1 3 0 0 0 0 1 +Note: In note: N No Not Note BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 6 :[]'-'. 7 10 0 0 0 0 1 +Although the although A Al Alt Alth BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 6 -, 2 10 0 0 0 0 1 +vendors and vendors v ve ven vend BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 6 no 0 9 0 0 0 0 1 +as a as a as as as BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 6 ., 2 9 0 0 0 0 1 +interpreting 'm-stream' interpreting i in int inte BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 6 '-'''. 6 9 0 0 0 0 1 +5.5. SDP 5.5. 5 5. 5.5 5.5. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 4 9 ..'' 4 10 0 0 0 0 1 +This section this T Th Thi This BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 9 ''-. 4 10 0 0 0 0 1 +attribute is attribute a at att attr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 9 , 1 9 0 0 0 0 1 +integer representation. integer i in int inte BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 9 . 1 3 0 0 0 0 1 +The Augmented the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 10 []: 3 10 0 0 0 0 1 +Camarillo, et camarillo, C Ca Cam Cama BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 4 11 ,. 2 8 0 0 1 0 0 +Expires June expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 11 , 1 10 0 0 0 0 0 +[Page 10] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 4 0 - 1 10 0 0 1 0 1 +BFCP BFCP bfcp B BF BFC BFCP BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 4 0 no 0 3 0 0 0 0 1 +December 2018 december D De Dec Dece BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 4 0 no 0 10 0 0 0 0 1 +Attribute Name: attribute A At Att Attr BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 0 : 1 10 0 0 0 0 1 +Attribute Value: attribute A At Att Attr BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 0 :- 2 10 0 0 0 0 1 +Usage Level: usage U Us Usa Usag BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 0 : 1 10 0 0 0 0 1 +Charset Dependent: charset C Ch Cha Char BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 4 0 : 1 10 0 0 0 0 1 +Mux Category: mux M Mu Mux Mux BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 4 0 : 1 10 0 0 0 0 1 +The Augmented the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 1 []: 3 10 0 0 0 0 1 +bfcp-version = bfcp-version b bf bfc bfcp BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 1 -*() 4 10 0 0 0 0 1 +version version version v ve ver vers BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 1 no 0 2 0 0 0 0 1 += 1*DIGIT = = = = = BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 1 * 1 2 0 0 0 0 1 +DIGIT = digit D DI DIG DIGI BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 4 1 [] 2 10 0 0 0 0 1 +The maximum the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 2 no 0 10 0 0 0 0 1 +COMMON-HEADER format common-header C CO COM COMM BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 4 2 -[-.--]. 8 9 0 0 0 0 1 +An endpoint an A An An An BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 4 2 ''() 4 10 0 0 0 0 1 +BFCP supported bfcp B BF BFC BFCP BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 4 2 ,. 2 9 0 0 0 0 1 +version, the version, v ve ver vers BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 2 , 1 10 0 0 0 0 1 +"Version" field "version" " "V "Ve "Ver BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 2 ""- 3 9 0 0 0 0 1 +[I-D.ietf-bfcpbis-rfc4582bis]. The [i-d.ietf-bfcpbis-rfc4582bis]. [ [I [I- [I-D BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 4 2 [-.--]. 7 10 0 0 0 0 1 +be used be b be be be BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 2 -/. 3 8 0 0 0 0 1 +Endpoints compliant endpoints E En End Endp BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 4 5 [] 2 9 0 0 0 0 1 +'bfcpver' attribute 'bfcpver' ' 'b 'bf 'bfc BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 5 ''., 4 9 0 0 0 0 1 +present, MUST present, p pr pre pres BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 5 , 1 9 0 0 0 0 1 +field in field f fi fie fiel BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 4 5 [-.--]. 7 9 0 0 0 0 1 +present, endpoints present, p pr pre pres BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 5 , 1 9 0 0 0 0 1 +[I-D.ietf-bfcpbis-rfc4582bis]: when [i-d.ietf-bfcpbis-rfc4582bis]: [ [I [I- [I-D BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 4 5 [-.--]: 7 9 0 0 0 0 1 +the default the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 5 "", 3 10 0 0 0 0 1 +transport the transport t tr tra tran BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 5 "". 3 9 0 0 0 0 1 +from the from f fr fro from BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 5 ''()'' 6 9 0 0 0 0 1 +section associated section s se sec sect BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 5 . 1 5 0 0 0 0 1 +The SDP the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 9 /'' 3 10 0 0 0 0 1 +defined in defined d de def defi BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 9 . 1 3 0 0 0 0 1 +6. Multiplexing 6. 6 6. 6. 6. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 9 . 1 10 0 0 0 0 1 +[I-D.ietf-mmusic-sdp-bundle-negotiation] defines [i-d.ietf-mmusic-sdp-bundle-negotiation] [ [I [I- [I-D BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 10 [-.----] 8 10 0 0 0 0 1 +multiple media multiple m mu mul mult BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 10 . 1 9 0 0 0 0 1 +not define not n no not not BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 10 no 0 9 0 0 0 0 1 +streams. Therefore, streams. s st str stre BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 10 ., 2 9 0 0 0 0 1 +Camarillo, et camarillo, C Ca Cam Cama BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 5 11 ,. 2 8 0 0 1 0 0 +Expires June expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 11 , 1 10 0 0 0 0 0 +[Page 11] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 5 0 - 1 10 0 0 1 0 1 +BFCP BFCP bfcp B BF BFC BFCP BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 5 0 no 0 3 0 0 0 0 1 +December 2018 december D De Dec Dece BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 5 0 no 0 10 0 0 0 0 1 +BUNDLE group bundle B BU BUN BUND BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 5 0 [-.----]. 9 9 0 0 0 0 1 +BFCP-controlled media bfcp-controlled B BF BFC BFCP BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 5 0 - 1 10 0 0 0 0 1 +streams. streams. streams. s st str stre BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 0 . 1 1 0 0 0 0 1 +[I-D.ietf-mmusic-sdp-mux-attributes] defines [i-d.ietf-mmusic-sdp-mux-attributes] [ [I [I- [I-D BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 0 [-.----] 8 10 0 0 0 0 1 +the SDP the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 0 , 1 9 0 0 0 0 1 +'bfcpver' attribute. 'bfcpver' ' 'b 'bf 'bfc BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 0 ''. 3 9 0 0 0 0 1 +'bfcpver' attribute: 'bfcpver' ' 'b 'bf 'bfc BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 0 '': 3 3 0 0 0 0 1 ++---------+-------------------------------------+-------+-----------+ +---------+-------------------------------------+-------+-----------+ +---------+-------------------------------------+-------+-----------+ + +- +-- +--- BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 5 1 ---------------------------------------------------------------- 64 10 0 0 0 0 1 +| Name | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 1 no 0 1 0 0 0 0 1 +| Notes | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 1 no 0 1 0 0 0 0 1 +| Level | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 1 no 0 2 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 1 no 0 0 0 0 0 0 1 +| Category | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 1 no 0 1 0 0 0 0 1 ++---------+-------------------------------------+-------+-----------+ +---------+-------------------------------------+-------+-----------+ +---------+-------------------------------------+-------+-----------+ + +- +-- +--- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 5 1 ---------------------------------------------------------------- 64 10 0 0 0 0 1 +| bfcpver | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 1 no 0 5 0 0 0 0 1 +| M | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 1 no 0 0 0 0 0 0 1 +| TBD | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 1 no 0 0 0 0 0 0 1 +| separate | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 1 no 0 3 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 1 no 0 0 0 0 0 0 1 ++---------+-------------------------------------+-------+-----------+ +---------+-------------------------------------+-------+-----------+ +---------+-------------------------------------+-------+-----------+ + +- +-- +--- BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 5 1 ---------------------------------------------------------------- 64 10 0 0 0 0 1 +Table 2: table T Ta Tab Tabl BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 5 : 1 10 0 0 0 0 1 +7. BFCP 7. 7 7. 7. 7. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 5 . 1 10 0 0 0 0 1 +BFCP streams bfcp B BF BFC BFCP BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 5 5 . 1 9 0 0 0 0 1 +Endpoints exchanging endpoints E En End Endp BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 5 5 no 0 10 0 0 0 0 1 +towards the towards t to tow towa BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 5 no 0 10 0 0 0 0 1 +the SDP the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 5 ''''. 5 9 0 0 0 0 1 +complicated and complicated c co com comp BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 5 . 1 8 0 0 0 0 1 +Note: When note: N No Not Note BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 7 :() 3 9 0 0 0 0 1 +[RFC8445], TCP/DTLS/BFCP, [rfc8445], [ [R [RF [RFC BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 7 [],//,//,- 10 9 0 0 0 0 1 +procedures for procedures p pr pro proc BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 7 / 1 10 0 0 0 0 1 +apply. TCP/TLS/BFCP apply. a ap app appl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 7 ./// 4 9 0 0 0 0 1 +is described is i is is is BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 7 . 1 3 0 0 0 0 1 +7.1. TCP 7.1. 7 7. 7.1 7.1. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 8 .. 2 10 0 0 0 0 1 +The management the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 8 no 0 10 0 0 0 0 1 +is performed is i is is is BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 8 '''' 4 9 0 0 0 0 1 +[RFC4145]. The [rfc4145]. [ [R [RF [RFC BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 8 [].'' 5 9 0 0 0 0 1 +initiates the initiates i in ini init BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 8 .'' 3 10 0 0 0 0 1 +connection re-establishment. connection c co con conn BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 8 -. 2 4 0 0 0 0 1 +The BFCP the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 9 [-.--] 6 9 0 0 0 0 1 +number of number n nu num numb BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 9 no 0 10 0 0 0 0 1 +client and client c cl cli clie BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 9 -. 2 9 0 0 0 0 1 +However, that however, H Ho How Howe BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 9 ,- 2 9 0 0 0 0 1 +process because process p pr pro proc BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 9 no 0 9 0 0 0 0 1 +established in established e es est esta BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 9 ./ 2 9 0 0 0 0 1 +mechanism follow mechanism m me mec mech BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 9 . 1 5 0 0 0 0 1 +Camarillo, et camarillo, C Ca Cam Cama BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 5 11 ,. 2 8 0 0 1 0 0 +Expires June expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 11 , 1 10 0 0 0 0 0 +[Page 12] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 5 0 - 1 10 0 0 1 0 1 +BFCP BFCP bfcp B BF BFC BFCP BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 5 0 no 0 3 0 0 0 0 1 +December 2018 december D De Dec Dece BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 5 0 no 0 10 0 0 0 0 1 +When the when W Wh Whe When BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 0 - 1 8 0 0 0 0 1 +following the following f fo fol foll BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 0 [-.--], 7 9 0 0 0 0 1 +control client control c co con cont BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 0 no 0 10 0 0 0 0 1 +order to order o or ord orde BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 0 -. 2 9 0 0 0 0 1 +deliver a deliver d de del deli BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 0 , 1 9 0 0 0 0 1 +send the send s se sen send BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 0 (..,) 5 9 0 0 0 0 1 +send an send s se sen send BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 0 -. 2 8 0 0 0 0 1 +Endpoints that endpoints E En End Endp BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 5 2 / 1 9 0 0 0 0 1 +connections MUST connections c co con conn BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 2 ''''. 5 10 0 0 0 0 1 +8. TLS/DTLS 8. 8 8. 8. 8. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 3 ./ 2 10 0 0 0 0 1 +When DTLS when W Wh Whe When BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 3 , 1 10 0 0 0 0 1 +Section 5 section S Se Sec Sect BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 3 [-.---]. 8 9 0 0 0 0 1 +When TLS when W Wh Whe When BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 4 , 1 8 0 0 0 0 1 +established, the established, e es est esta BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 4 ,. 2 9 0 0 0 0 1 +connection is connection c co con conn BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 4 ,[] 3 10 0 0 0 0 1 +re-establishing the re-establishing r re re- re-e BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 4 -. 2 9 0 0 0 0 1 +negotiated, subsequent negotiated, n ne neg nego BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 4 , 1 9 0 0 0 0 1 +previously negotiated previously p pr pre prev BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 4 . 1 4 0 0 0 0 1 +Note: For note: N No Not Note BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 5 :, 2 10 0 0 0 0 1 +[RFC4583] to [rfc4583] [ [R [RF [RFC BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 5 [] 2 9 0 0 0 0 1 +order to order o or ord orde BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 5 . 1 6 0 0 0 0 1 +9. ICE 9. 9 9. 9. 9. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 6 . 1 10 0 0 0 0 1 +Generic SDP generic G Ge Gen Gene BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 6 / 1 9 0 0 0 0 1 +Establishment (ICE) establishment E Es Est Esta BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 6 ()[-.----]. 11 10 0 0 0 0 1 +When BFCP when W Wh Whe When BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 7 [] 2 10 0 0 0 0 1 +procedures for procedures p pr pro proc BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 7 //. 3 5 0 0 0 0 1 +When BFCP when W Wh Whe When BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 8 [] 2 10 0 0 0 0 1 +procedures for procedures p pr pro proc BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 8 //. 3 5 0 0 0 0 1 +Based on based B Ba Bas Base BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 8 [-.---], 8 9 0 0 0 0 1 +endpoints treat endpoints e en end endp BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 8 no 0 10 0 0 0 0 1 +on top on o on on on BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 8 . 1 9 0 0 0 0 1 +Thus, there thus, T Th Thu Thus BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 8 , 1 9 0 0 0 0 1 +even if even e ev eve even BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 8 , 1 9 0 0 0 0 1 +is shifted is i is is is BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 8 ( 1 9 0 0 0 0 1 +to TCP to t to to to BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 8 ). 2 9 0 0 0 0 1 +added, they added, a ad add adde BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 8 ,. 2 8 0 0 0 0 1 +Camarillo, et camarillo, C Ca Cam Cama BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 6 11 ,. 2 8 0 0 1 0 0 +Expires June expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 11 , 1 10 0 0 0 0 0 +[Page 13] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 6 0 - 1 10 0 0 1 0 1 +BFCP BFCP bfcp B BF BFC BFCP BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 6 0 no 0 3 0 0 0 0 1 +December 2018 december D De Dec Dece BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 6 0 no 0 10 0 0 0 0 1 +In order in I In In In BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 6 0 no 0 9 0 0 0 0 1 +endpoints, all endpoints, e en end endp BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 0 ,-- 3 10 0 0 0 0 1 +support for support s su sup supp BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 6 0 //. 3 3 0 0 0 0 1 +When an when W Wh Whe When BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 0 no 0 9 0 0 0 0 1 +BFCP stream, bfcp B BF BFC BFCP BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 6 0 , 1 10 0 0 0 0 1 +candidate SHOULD candidate c ca can cand BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 0 . 1 9 0 0 0 0 1 +transport is transport t tr tra tran BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 0 ,'' 3 10 0 0 0 0 1 +value MUST value v va val valu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 0 '//'. 5 9 0 0 0 0 1 +default candidate, default d de def defa BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 0 ,'''//'. 8 10 0 0 0 0 1 +Note: Usage note: N No Not Note BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 3 :// 3 10 0 0 0 0 1 +TCP/DTLS/BFCP is tcp/dtls/bfcp T TC TCP TCP/ BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 6 3 //. 3 9 0 0 0 0 1 +10. SDP 10. 1 10 10. 10. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 3 ./ 2 10 0 0 0 0 1 +This section this T Th Thi This BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 3 /[] 3 10 0 0 0 0 1 +negotiating and negotiating n ne neg nego BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 3 . 1 10 0 0 0 0 1 +DTLS are dtls D DT DTL DTLS BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 6 3 [-.---]. 8 10 0 0 0 0 1 +for TLS for f fo for for BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 3 []. 3 5 0 0 0 0 1 +This section this T Th Thi This BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 5 -. 2 9 0 0 0 0 1 +explicitly stated explicitly e ex exp expl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 5 ,'' 3 10 0 0 0 0 1 +describing a describing d de des desc BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 5 . 1 9 0 0 0 0 1 +'m' sections 'm' ' 'm 'm' 'm' BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 5 '', 3 9 0 0 0 0 1 +independently to independently i in ind inde BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 5 . 1 4 0 0 0 0 1 +Within this within W Wi Wit With BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 6 ,'', 4 9 0 0 0 0 1 +within an within w wi wit with BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 6 (.. 3 10 0 0 0 0 1 +Protocol (SIP) protocol P Pr Pro Prot BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 6 ()[]) 5 9 0 0 0 0 1 +indicates that indicates i in ind indi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 6 no 0 9 0 0 0 0 1 +stream. stream. stream. s st str stre BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 6 . 1 1 0 0 0 0 1 +If the if I If If If BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 7 '''''//','//' 13 10 0 0 0 0 1 +'UDP/TLS/BFCP', the 'udp/tls/bfcp', ' 'U 'UD 'UDP BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 6 7 '//', 5 8 0 0 0 0 1 +procedures defined procedures p pr pro proc BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 7 []. 3 4 0 0 0 0 1 +If the if I If If If BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 8 '''/','//','// 14 10 0 0 0 0 1 +TCP' or tcp' T TC TCP TCP' BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 6 8 ''//','' 8 9 0 0 0 0 1 +attribute according attribute a at att attr BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 8 []. 3 7 0 0 0 0 1 +If the if I If If If BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 10 '''/','//' 10 9 0 0 0 0 1 +'TCP/DTLS/BFCP', the 'tcp/dtls/bfcp', ' 'T 'TC 'TCP BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 6 10 '//','' 7 10 0 0 0 0 1 +attribute according attribute a at att attr BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 10 []. 3 7 0 0 0 0 1 +Note: The note: N No Not Note BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 11 :-[] 4 10 0 0 0 0 1 +defined for defined d de def defi BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 11 . 1 4 0 0 0 0 1 +Camarillo, et camarillo, C Ca Cam Cama BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 6 11 ,. 2 8 0 0 1 0 0 +Expires June expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 11 , 1 10 0 0 0 0 0 +[Page 14] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 6 0 - 1 10 0 0 1 0 1 +BFCP BFCP bfcp B BF BFC BFCP BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 6 0 no 0 3 0 0 0 0 1 +December 2018 december D De Dec Dece BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 6 0 no 0 10 0 0 0 0 1 +10.1. Generating 10.1. 1 10 10. 10.1 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 0 .. 2 10 0 0 0 0 1 +When the when W Wh Whe When BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 0 , 1 10 0 0 0 0 1 +an SDP an a an an an BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 7 0 ''(.)'' 7 9 0 0 0 0 1 +attribute (Section attribute a at att attr BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 0 (.)''. 6 6 0 0 0 0 1 +In addition, in I In In In BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 7 1 ,'' 3 9 0 0 0 0 1 +with 's-only' with w wi wit with BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 1 '-''-',: 8 10 0 0 0 0 1 +o MUST o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 7 2 ''(.)'' 7 10 0 0 0 0 1 +section; and section; s se sec sect BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 2 ; 1 1 0 0 0 0 1 +o MUST o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 7 2 ''(.)'' 7 10 0 0 0 0 1 +section; and section; s se sec sect BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 2 ; 1 1 0 0 0 0 1 +o MUST o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 7 3 ''(.)'' 7 10 0 0 0 0 1 +section; and section; s se sec sect BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 3 ; 1 1 0 0 0 0 1 +o MUST o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 7 4 ''([])'' 8 10 0 0 0 0 1 +section of section s se sec sect BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 4 -. 2 7 0 0 0 0 1 +Note: If note: N No Not Note BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 4 :'' 3 9 0 0 0 0 1 +'c-s' attribute 'c-s' ' 'c 'c- 'c-s BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 7 4 '-','-''-' 10 10 0 0 0 0 1 +value in value v va val valu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 4 , 1 9 0 0 0 0 1 +if it if i if if if BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 4 (.) 3 9 0 0 0 0 1 +floor control floor f fl flo floo BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 4 . 1 3 0 0 0 0 1 +10.2. Generating 10.2. 1 10 10. 10.2 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 6 .. 2 10 0 0 0 0 1 +When the when W Wh Whe When BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 6 '' 2 9 0 0 0 0 1 +describing a describing d de des desc BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 6 , 1 10 0 0 0 0 1 +one or one o on one one BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 6 no 0 8 0 0 0 0 1 +(Section 5.5). (section ( (S (Se (Sec BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 7 6 (.). 4 9 0 0 0 0 1 +versions, it versions, v ve ver vers BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 6 ,''., 5 9 0 0 0 0 1 +answerer accepts answerer a an ans answ BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 7 6 '',: 4 5 0 0 0 0 1 +o MUST o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 7 9 '', 3 10 0 0 0 0 1 +identical 'm' identical i id ide iden BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 9 ''[]; 5 7 0 0 0 0 1 +o MUST o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 7 9 ''''. 5 9 0 0 0 0 1 +versions indicated versions v ve ver vers BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 9 no 0 9 0 0 0 0 1 +the versions the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 9 ; 1 10 0 0 0 0 1 +and and and a an and and BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 9 no 0 0 0 0 0 0 1 +o MUST, o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 7 10 ,'', 4 10 0 0 0 0 1 +a 'floorctrl' a a a a a BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 1 0 1 0 0 0 0 0 7 10 ''''. 5 6 0 0 0 0 1 +Camarillo, et camarillo, C Ca Cam Cama BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 7 11 ,. 2 8 0 0 1 0 0 +Expires June expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 11 , 1 10 0 0 0 0 0 +[Page 15] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 7 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 7 0 - 1 10 0 0 1 0 1 +BFCP BFCP bfcp B BF BFC BFCP BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 7 0 no 0 3 0 0 0 0 1 +December 2018 december D De Dec Dece BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 7 0 no 0 10 0 0 0 0 1 +In addition, in I In In In BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 7 0 ,'' 3 10 0 0 0 0 1 +with an with w wi wit with BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 0 '-',: 5 9 0 0 0 0 1 +o MUST o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 7 0 ''''; 5 10 0 0 0 0 1 +o MUST o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 7 1 ''''; 5 10 0 0 0 0 1 +o MUST o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 7 1 ''''; 5 10 0 0 0 0 1 +o MUST o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 7 2 '''' 4 10 0 0 0 0 1 +BFCP-controlled media bfcp-controlled B BF BFC BFCP BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 7 2 -. 2 4 0 0 0 0 1 +Note: An note: N No Not Note BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 2 :[] 3 8 0 0 0 0 1 +'floorctrl' and 'floorctrl' ' 'f 'fl 'flo BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 7 2 '''', 5 10 0 0 0 0 1 +default values default d de def defa BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 2 . 1 3 0 0 0 0 1 +Once the once O On Onc Once BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 3 ,: 2 10 0 0 0 0 1 +o MUST, o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 7 3 ,, 2 9 0 0 0 0 1 +connection associated connection c co con conn BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 3 '' 2 10 0 0 0 0 1 +(or re-established), (or ( (o (or (or BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 7 3 (-), 4 9 0 0 0 0 1 +connection; and connection; c co con conn BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 3 ; 1 2 0 0 0 0 1 +o MUST, o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 7 5 ,,/ 3 10 0 0 0 0 1 +connection associated connection c co con conn BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 5 '' 2 9 0 0 0 0 1 +(or re-established), (or ( (o (or (or BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 7 5 (-),/ 5 9 0 0 0 0 1 +connection (by connection c co con conn BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 5 (). 3 7 0 0 0 0 1 +If the if I If If If BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 6 '', 3 10 0 0 0 0 1 +assign a assign a as ass assi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 6 '''' 4 9 0 0 0 0 1 +section in section s se sec sect BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 6 ., 2 9 0 0 0 0 1 +a TCP a a a a a BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 1 0 1 0 0 0 0 0 7 6 /'' 3 9 0 0 0 0 1 +section. section. section. s se sec sect BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 6 . 1 1 0 0 0 0 1 +10.3. Offerer 10.3. 1 10 10. 10.3 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 8 .. 2 10 0 0 0 0 1 +When the when W Wh Whe When BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 8 '' 2 10 0 0 0 0 1 +a non-zero a a a a a BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 1 0 1 0 0 0 0 0 7 8 -,,: 4 8 0 0 0 0 1 +o MUST, o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 7 9 ,, 2 9 0 0 0 0 1 +connection associated connection c co con conn BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 9 '' 2 10 0 0 0 0 1 +(or re-established), (or ( (o (or (or BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 7 9 (-), 4 9 0 0 0 0 1 +connection; and connection; c co con conn BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 9 ; 1 2 0 0 0 0 1 +o MUST, o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 8 10 ,,/ 3 10 0 0 0 0 1 +connection associated connection c co con conn BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 10 '' 2 9 0 0 0 0 1 +(or re-established), (or ( (o (or (or BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 10 (-),/ 5 9 0 0 0 0 1 +connection (by connection c co con conn BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 10 (). 3 7 0 0 0 0 1 +Camarillo, et camarillo, C Ca Cam Cama BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 8 11 ,. 2 8 0 0 1 0 0 +Expires June expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 11 , 1 10 0 0 0 0 0 +[Page 16] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 8 0 - 1 10 0 0 1 0 1 +BFCP BFCP bfcp B BF BFC BFCP BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 0 no 0 3 0 0 0 0 1 +December 2018 december D De Dec Dece BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 8 0 no 0 10 0 0 0 0 1 +Note: An note: N No Not Note BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 0 :[] 3 8 0 0 0 0 1 +'floorctrl' and 'floorctrl' ' 'f 'fl 'flo BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 0 '''', 5 10 0 0 0 0 1 +default values default d de def defa BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 0 . 1 3 0 0 0 0 1 +If the if I If If If BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 1 '', 3 9 0 0 0 0 1 +offerer for offerer o of off offe BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 1 (.., 4 9 0 0 0 0 1 +the answerer the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 1 no 0 10 0 0 0 0 1 +the offerer), the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 1 ), 2 9 0 0 0 0 1 +TLS/DTLS connection tls/dtls T TL TLS TLS/ BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 1 /''. 4 7 0 0 0 0 1 +10.4. Modifying 10.4. 1 10 10. 10.4 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 4 .. 2 10 0 0 0 0 1 +When an when W Wh Whe When BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 4 , 1 9 0 0 0 0 1 +previously established previously p pr pre prev BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 4 , 1 10 0 0 0 0 1 +Section 10.1, section S Se Sec Sect BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 4 .,: 3 6 0 0 0 0 1 +o If o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 8 5 , 1 9 0 0 0 0 1 +does not does d do doe does BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 5 -, 2 9 0 0 0 0 1 +offerer MUST offerer o of off offe BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 5 '' 2 10 0 0 0 0 1 +"existing", in "existing", " "e "ex "exi BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 5 "",''; 6 5 0 0 0 0 1 +o If o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 8 7 no 0 9 0 0 0 0 1 +stream, it stream, s st str stre BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 7 ,'' 3 8 0 0 0 0 1 +associated with associated a as ass asso BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 7 , 1 10 0 0 0 0 1 +[RFC3264]. [RFC3264]. [rfc3264]. [ [R [RF [RFC BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 7 []. 3 1 0 0 0 0 1 +11. Examples 11. 1 11 11. 11. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 9 . 1 10 0 0 0 0 1 +For the for F Fo For For BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 9 , 1 8 0 0 0 0 1 +description is description d de des desc BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 9 ,'' 3 10 0 0 0 0 1 +and their and a an and and BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 9 ''. 3 5 0 0 0 0 1 +The following the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 10 no 0 10 0 0 0 0 1 +to a to t to to to BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 10 . 1 1 0 0 0 0 1 +Camarillo, et camarillo, C Ca Cam Cama BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 8 11 ,. 2 8 0 0 1 0 0 +Expires June expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 11 , 1 10 0 0 0 0 0 +[Page 17] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 8 0 - 1 10 0 0 1 0 1 +BFCP BFCP bfcp B BF BFC BFCP BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 0 no 0 3 0 0 0 0 1 +December 2018 december D De Dec Dece BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 8 0 no 0 10 0 0 0 0 1 +m=application 50000 m=application m m= m=a m=ap BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 0 //* 3 6 0 0 0 0 1 +a=setup:actpass a=setup:actpass a=setup:actpass a a= a=s a=se BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 0 : 1 3 0 0 0 0 1 +a=connection:new a=connection:new a=connection:new a a= a=c a=co BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 0 : 1 3 0 0 0 0 1 +a=fingerprint:sha-256 \ a=fingerprint:sha-256 a a= a=f a=fi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 0 :- 2 4 0 0 0 0 1 +19:E2:1C:3B:4B:9F:81:E6:B8:5C:F4:A5:A8:D8:73:04: \ 19:e2:1c:3b:4b:9f:81:e6:b8:5c:f4:a5:a8:d8:73:04: 1 19 19: 19:E BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 0 :::::::::::::::: 16 10 0 0 0 0 1 +BB:05:2F:70:9F:04:A9:0E:05:E9:26:33:E8:70:88:A2 BB:05:2F:70:9F:04:A9:0E:05:E9:26:33:E8:70:88:A2 bb:05:2f:70:9f:04:a9:0e:05:e9:26:33:e8:70:88:a2 B BB BB: BB:0 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 0 ::::::::::::::: 15 9 0 0 0 0 1 +a=floorctrl:c-only s-only a=floorctrl:c-only a a= a=f a=fl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 0 :-- 3 5 0 0 0 0 1 +a=confid:4321 a=confid:4321 a=confid:4321 a a= a=c a=co BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 0 : 1 2 0 0 0 0 1 +a=userid:1234 a=userid:1234 a=userid:1234 a a= a=u a=us BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS CONTAINSDIGITS 0 0 0 0 1 0 0 0 8 0 : 1 2 0 0 0 0 1 +a=floorid:1 mstrm:10 a=floorid:1 a a= a=f a=fl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 0 :: 2 4 0 0 0 0 1 +a=floorid:2 mstrm:11 a=floorid:2 a a= a=f a=fl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 0 :: 2 4 0 0 0 0 1 +a=bfcpver:1 2 a=bfcpver:1 a a= a=b a=bf BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 0 : 1 2 0 0 0 0 1 +m=audio 50002 m=audio m m= m=a m=au BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 0 / 1 4 0 0 0 0 1 +a=label:10 a=label:10 a=label:10 a a= a=l a=la BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 0 : 1 2 0 0 0 0 1 +m=video 50004 m=video m m= m=v m=vi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 0 / 1 4 0 0 0 0 1 +a=label:11 a=label:11 a=label:11 a a= a=l a=la BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 0 : 1 2 0 0 0 0 1 +Note that note N No Not Note BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 4 , 1 10 0 0 0 0 1 +across lines across a ac acr acro BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 4 . 1 9 0 0 0 0 1 +character marks character c ch cha char BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 4 . 1 8 0 0 0 0 1 +backslash and backslash b ba bac back BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 4 no 0 9 0 0 0 0 1 +actual SDP actual a ac act actu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 4 . 1 2 0 0 0 0 1 +The following the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 6 . 1 10 0 0 0 0 1 +m=application 9 m=application m m= m=a m=ap BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 7 //* 3 6 0 0 0 0 1 +a=setup:active a=setup:active a=setup:active a a= a=s a=se BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 7 : 1 2 0 0 0 0 1 +a=connection:new a=connection:new a=connection:new a a= a=c a=co BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 7 : 1 3 0 0 0 0 1 +a=fingerprint:sha-256 \ a=fingerprint:sha-256 a a= a=f a=fi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 7 :- 2 4 0 0 0 0 1 +6B:8B:F0:65:5F:78:E2:51:3B:AC:6F:F3:3F:46:1B:35: \ 6b:8b:f0:65:5f:78:e2:51:3b:ac:6f:f3:3f:46:1b:35: 6 6B 6B: 6B:8 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 7 :::::::::::::::: 16 10 0 0 0 0 1 +DC:B8:5F:64:1A:24:C2:43:F0:A1:58:D0:A1:2C:19:08 DC:B8:5F:64:1A:24:C2:43:F0:A1:58:D0:A1:2C:19:08 dc:b8:5f:64:1a:24:c2:43:f0:a1:58:d0:a1:2c:19:08 D DC DC: DC:B BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 7 ::::::::::::::: 15 9 0 0 0 0 1 +a=floorctrl:c-only a=floorctrl:c-only a=floorctrl:c-only a a= a=f a=fl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 7 :- 2 3 0 0 0 0 1 +a=bfcpver:1 a=bfcpver:1 a=bfcpver:1 a a= a=b a=bf BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 7 : 1 2 0 0 0 0 1 +m=audio 55000 m=audio m m= m=a m=au BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 7 / 1 4 0 0 0 0 1 +m=video 55002 m=video m m= m=v m=vi BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 7 / 1 4 0 0 0 0 1 +A similar a A A A A BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 1 0 1 0 0 0 0 0 8 10 , 1 10 0 0 0 0 1 +where the where w wh whe wher BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 10 . 1 5 0 0 0 0 1 +Camarillo, et camarillo, C Ca Cam Cama BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 8 11 ,. 2 8 0 0 1 0 0 +Expires June expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 11 , 1 10 0 0 0 0 0 +[Page 18] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 8 0 - 1 10 0 0 1 0 1 +BFCP BFCP bfcp B BF BFC BFCP BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 0 no 0 3 0 0 0 0 1 +December 2018 december D De Dec Dece BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 8 0 no 0 10 0 0 0 0 1 +m=application 50000 m=application m m= m=a m=ap BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 0 //* 3 6 0 0 0 0 1 +a=setup:actpass a=setup:actpass a=setup:actpass a a= a=s a=se BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 0 : 1 3 0 0 0 0 1 +a=dtls-id:abc3dl a=dtls-id:abc3dl a=dtls-id:abc3dl a a= a=d a=dt BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 0 -: 2 3 0 0 0 0 1 +a=fingerprint:sha-256 \ a=fingerprint:sha-256 a a= a=f a=fi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 0 :- 2 4 0 0 0 0 1 +19:E2:1C:3B:4B:9F:81:E6:B8:5C:F4:A5:A8:D8:73:04: \ 19:e2:1c:3b:4b:9f:81:e6:b8:5c:f4:a5:a8:d8:73:04: 1 19 19: 19:E BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 0 :::::::::::::::: 16 10 0 0 0 0 1 +BB:05:2F:70:9F:04:A9:0E:05:E9:26:33:E8:70:88:A2 BB:05:2F:70:9F:04:A9:0E:05:E9:26:33:E8:70:88:A2 bb:05:2f:70:9f:04:a9:0e:05:e9:26:33:e8:70:88:a2 B BB BB: BB:0 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 0 ::::::::::::::: 15 9 0 0 0 0 1 +a=floorctrl:c-only s-only a=floorctrl:c-only a a= a=f a=fl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 0 :-- 3 5 0 0 0 0 1 +a=confid:4321 a=confid:4321 a=confid:4321 a a= a=c a=co BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 0 : 1 2 0 0 0 0 1 +a=userid:1234 a=userid:1234 a=userid:1234 a a= a=u a=us BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS CONTAINSDIGITS 0 0 0 0 1 0 0 0 8 0 : 1 2 0 0 0 0 1 +a=floorid:1 mstrm:10 a=floorid:1 a a= a=f a=fl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 0 :: 2 4 0 0 0 0 1 +a=floorid:2 mstrm:11 a=floorid:2 a a= a=f a=fl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 0 :: 2 4 0 0 0 0 1 +a=bfcpver:1 2 a=bfcpver:1 a a= a=b a=bf BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 0 : 1 2 0 0 0 0 1 +m=audio 50002 m=audio m m= m=a m=au BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 0 / 1 4 0 0 0 0 1 +a=label:10 a=label:10 a=label:10 a a= a=l a=la BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 0 : 1 2 0 0 0 0 1 +m=video 50004 m=video m m= m=v m=vi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 0 / 1 4 0 0 0 0 1 +a=label:11 a=label:11 a=label:11 a a= a=l a=la BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 0 : 1 2 0 0 0 0 1 +The following the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 3 . 1 10 0 0 0 0 1 +m=application 55000 m=application m m= m=a m=ap BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 3 //* 3 6 0 0 0 0 1 +a=setup:active a=setup:active a=setup:active a a= a=s a=se BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 3 : 1 2 0 0 0 0 1 +a=dtls-id:abc3dl a=dtls-id:abc3dl a=dtls-id:abc3dl a a= a=d a=dt BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 3 -: 2 3 0 0 0 0 1 +a=fingerprint:sha-256 \ a=fingerprint:sha-256 a a= a=f a=fi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 3 :- 2 4 0 0 0 0 1 +6B:8B:F0:65:5F:78:E2:51:3B:AC:6F:F3:3F:46:1B:35: \ 6b:8b:f0:65:5f:78:e2:51:3b:ac:6f:f3:3f:46:1b:35: 6 6B 6B: 6B:8 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 3 :::::::::::::::: 16 10 0 0 0 0 1 +DC:B8:5F:64:1A:24:C2:43:F0:A1:58:D0:A1:2C:19:08 DC:B8:5F:64:1A:24:C2:43:F0:A1:58:D0:A1:2C:19:08 dc:b8:5f:64:1a:24:c2:43:f0:a1:58:d0:a1:2c:19:08 D DC DC: DC:B BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 3 ::::::::::::::: 15 9 0 0 0 0 1 +a=floorctrl:s-only a=floorctrl:s-only a=floorctrl:s-only a a= a=f a=fl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 3 :- 2 3 0 0 0 0 1 +a=confid:4321 a=confid:4321 a=confid:4321 a a= a=c a=co BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 3 : 1 2 0 0 0 0 1 +a=userid:1234 a=userid:1234 a=userid:1234 a a= a=u a=us BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS CONTAINSDIGITS 0 0 0 0 1 0 0 0 8 3 : 1 2 0 0 0 0 1 +a=floorid:1 mstrm:10 a=floorid:1 a a= a=f a=fl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 3 :: 2 4 0 0 0 0 1 +a=floorid:2 mstrm:11 a=floorid:2 a a= a=f a=fl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 3 :: 2 4 0 0 0 0 1 +a=bfcpver:2 a=bfcpver:2 a=bfcpver:2 a a= a=b a=bf BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 3 : 1 2 0 0 0 0 1 +m=audio 55002 m=audio m m= m=a m=au BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 3 / 1 4 0 0 0 0 1 +m=video 55004 m=video m m= m=v m=vi BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 3 / 1 4 0 0 0 0 1 +12. Security 12. 1 12 12. 12. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 6 . 1 10 0 0 0 0 1 +The BFCP the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 6 [-.--],[],/ 11 9 0 0 0 0 1 +answer [RFC3264] answer a an ans answ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 6 [] 2 9 0 0 0 0 1 +BFCP, SDP, bfcp, B BF BFC BFCP BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 6 ,,/,.,[] 8 9 0 0 0 0 1 +and [RFC8122] and a an and and BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 6 [] 2 10 0 0 0 0 1 +TCP and tcp T TC TCP TCP BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 6 /., 3 9 0 0 0 0 1 +when using when w wh whe when BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 6 ,/ 2 9 0 0 0 0 1 +defined in defined d de def defi BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 6 [-.---]. 8 8 0 0 0 0 1 +The usage the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 9 / 1 10 0 0 0 0 1 +will result will w wi wil will BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 9 9 . 1 9 0 0 0 0 1 +Operators will operators O Op Ope Oper BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 9 9 no 0 8 0 0 0 0 1 +confidentiality protection confidentiality c co con conf BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 9 . 1 9 0 0 0 0 1 +Camarillo, et camarillo, C Ca Cam Cama BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 9 11 ,. 2 8 0 0 1 0 0 +Expires June expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 11 , 1 10 0 0 0 0 0 +[Page 19] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 9 0 - 1 10 0 0 1 0 1 +BFCP BFCP bfcp B BF BFC BFCP BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 0 no 0 3 0 0 0 0 1 +December 2018 december D De Dec Dece BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 9 0 no 0 10 0 0 0 0 1 +The generic the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 0 no 0 9 0 0 0 0 1 +are defined are a ar are are BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 0 []. 3 9 0 0 0 0 1 +specification do specification s sp spe spec BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 0 no 0 8 0 0 0 0 1 +individual BFCP individual i in ind indi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 0 , 1 10 0 0 0 0 1 +streams will streams s st str stre BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 0 . 1 4 0 0 0 0 1 +13. IANA 13. 1 13 13. 13. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 1 . 1 10 0 0 0 0 1 +[Editorial note: [editorial [ [E [Ed [Edi BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 1 [:. 3 9 0 0 0 0 1 +register the register r re reg regi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 9 1 //,/// 6 10 0 0 0 0 1 +BFCP for bfcp B BF BFC BFCP BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 1 ''.. 4 8 0 0 0 0 1 +registers a registers r re reg regi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 1 "". 3 9 0 0 0 0 1 +from [RFC4582].] from f fr fro from BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 1 [].] 4 2 0 0 0 0 1 +13.1. Registration 13.1. 1 13 13. 13.1 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 3 ..'' 4 10 0 0 0 0 1 +The IANA the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 4 no 0 9 0 0 0 0 1 +'proto' field 'proto' ' 'p 'pr 'pro BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 4 ''() 4 10 0 0 0 0 1 +registry: registry: registry: r re reg regi BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 4 : 1 1 0 0 0 0 1 ++---------------+------------+ +---------------+------------+ +---------------+------------+ + +- +-- +--- BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 4 --------------------------- 27 10 0 0 0 0 1 +| Value | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 4 no 0 2 0 0 0 0 1 +| Reference | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 4 no 0 4 0 0 0 0 1 ++---------------+------------+ +---------------+------------+ +---------------+------------+ + +- +-- +--- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 4 --------------------------- 27 10 0 0 0 0 1 +| TCP/BFCP | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 4 / 1 3 0 0 0 0 1 +| [RFC | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 4 [] 2 4 0 0 0 0 1 +| TCP/DTLS/BFCP | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 4 //[] 4 10 0 0 0 0 1 +| TCP/TLS/BFCP | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 4 //[] 4 9 0 0 0 0 1 +| UDP/BFCP | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 4 / 1 3 0 0 0 0 1 +| [RFC | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 4 [] 2 4 0 0 0 0 1 +| UDP/TLS/BFCP | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 4 //[] 4 9 0 0 0 0 1 ++---------------+------------+ +---------------+------------+ +---------------+------------+ + +- +-- +--- BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 4 --------------------------- 27 10 0 0 0 0 1 +Table 3: table T Ta Tab Tabl BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 8 :'' 3 10 0 0 0 0 1 +13.2. Registration 13.2. 1 13 13. 13.2 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 8 ..'' 4 10 0 0 0 0 1 +This document this T Th Thi This BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 8 ,''. 4 10 0 0 0 0 1 +the attribute the t th the the BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 8 .. 2 6 0 0 0 0 1 +13.3. Registration 13.3. 1 13 13. 13.3 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 9 ..'' 4 10 0 0 0 0 1 +This document this T Th Thi This BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 9 ,''. 4 10 0 0 0 0 1 +attribute are attribute a at att attr BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 9 .. 2 5 0 0 0 0 1 +13.4. Registration 13.4. 1 13 13. 13.4 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 10 ..'' 4 10 0 0 0 0 1 +This document this T Th Thi This BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 10 ,''. 4 10 0 0 0 0 1 +attribute are attribute a at att attr BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 10 .. 2 5 0 0 0 0 1 +Camarillo, et camarillo, C Ca Cam Cama BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 9 11 ,. 2 8 0 0 1 0 0 +Expires June expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 11 , 1 10 0 0 0 0 0 +[Page 20] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 9 0 - 1 10 0 0 1 0 1 +BFCP BFCP bfcp B BF BFC BFCP BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 0 no 0 3 0 0 0 0 1 +December 2018 december D De Dec Dece BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 9 0 no 0 10 0 0 0 0 1 +13.5. Registration 13.5. 1 13 13. 13.5 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 0 ..'' 4 10 0 0 0 0 1 +This document this T Th Thi This BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 0 ,''. 4 10 0 0 0 0 1 +the attribute the t th the the BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 0 .. 2 6 0 0 0 0 1 +13.6. Registration 13.6. 1 13 13. 13.6 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 1 ..'' 4 10 0 0 0 0 1 +This document this T Th Thi This BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 1 ,''. 4 10 0 0 0 0 1 +the attribute the t th the the BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 1 .. 2 6 0 0 0 0 1 +14. Changes 14. 1 14 14. 14. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 2 . 1 10 0 0 0 0 1 +Following is following F Fo Fol Foll BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 2 no 0 10 0 0 0 0 1 +[RFC4583]. [RFC4583]. [rfc4583]. [ [R [RF [RFC BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 2 []. 3 1 0 0 0 0 1 +Main purpose main M Ma Mai Main BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 9 3 no 0 10 0 0 0 0 1 +support BFCP support s su sup supp BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 9 3 , 1 8 0 0 0 0 1 +[I-D.ietf-bfcpbis-rfc4582bis], resulting [i-d.ietf-bfcpbis-rfc4582bis], [ [I [I- [I-D BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 3 [-.--],: 8 9 0 0 0 0 1 +1. Fields 1. 1 1. 1. 1. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 4 .''(): 6 6 0 0 0 0 1 +The section the T Th The The BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 4 - 1 10 0 0 0 0 1 +of TCP of o of of of BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 4 . 1 9 0 0 0 0 1 +TCP/DTLS/BFCP, UDP/BFCP tcp/dtls/bfcp, T TC TCP TCP/ BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 4 //,///. 7 7 0 0 0 0 1 +2. Security 2. 2 2. 2. 2. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 5 .(): 4 6 0 0 0 0 1 +For the for F Fo For For BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 5 , 1 10 0 0 0 0 1 +requirements for requirements r re req requ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 5 / 1 7 0 0 0 0 1 +[I-D.ietf-mmusic-dtls-sdp]. [I-D.ietf-mmusic-dtls-sdp]. [i-d.ietf-mmusic-dtls-sdp]. [ [I [I- [I-D BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 5 [-.---]. 8 4 0 0 0 0 1 +3. Registration 3. 3 3. 3. 3. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 6 .''(.): 7 9 0 0 0 0 1 +Register the register R Re Reg Regi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 10 6 //,/ 4 10 0 0 0 0 1 +UDP/TLS/BFCP in udp/tls/bfcp U UD UDP UDP/ BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 6 //. 3 7 0 0 0 0 1 +4. BFCP 4. 4 4. 4. 4. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 8 .(.): 5 6 0 0 0 0 1 +A new a A A A A BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 1 0 1 0 0 0 0 0 10 8 ''- 3 10 0 0 0 0 1 +signal supported signal s si sig sign BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 8 . 1 5 0 0 0 0 1 +In addition in I In In In BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 10 9 no 0 9 0 0 0 0 1 +unreliable transport, unreliable u un unr unre BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 9 , 1 10 0 0 0 0 1 +floor control floor f fl flo floo BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 9 no 0 9 0 0 0 0 1 +been removed. been b be bee been BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 9 .- 2 9 0 0 0 0 1 +controlled streams controlled c co con cont BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 9 . 1 7 0 0 0 0 1 +Clarification and clarification C Cl Cla Clar BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 10 : 1 10 0 0 0 0 1 +1. Errata 1. 1 1. 1. 1. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 11 .:(): 5 10 0 0 0 0 1 +Camarillo, et camarillo, C Ca Cam Cama BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 10 11 ,. 2 8 0 0 1 0 0 +Expires June expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 11 , 1 10 0 0 0 0 0 +[Page 21] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 10 0 - 1 10 0 0 1 0 1 +BFCP BFCP bfcp B BF BFC BFCP BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 0 no 0 3 0 0 0 0 1 +December 2018 december D De Dec Dece BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 10 0 no 0 10 0 0 0 0 1 +Language clarification. language L La Lan Lang BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 0 .' 2 9 0 0 0 0 1 +"used in "used " "u "us "use BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 0 "''", 5 10 0 0 0 0 1 +media-level attribute. media-level m me med medi BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 0 -. 2 3 0 0 0 0 1 +2. Fix 2. 2 2. 2. 2. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 1 .(): 4 5 0 0 0 0 1 +Do not do D Do Do Do BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 1 '-','' 6 10 0 0 0 0 1 +as specified as a as as as BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 1 .'-' 4 9 0 0 0 0 1 +it is it i it it it BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 1 ,. 2 9 0 0 0 0 1 +3. Assorted 3. 3 3. 3. 3. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 2 .(): 4 8 0 0 0 0 1 +Language clarifications language L La Lan Lang BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 2 ., 2 9 0 0 0 0 1 +normative language normative n no nor norm BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 2 ,.. 3 9 0 0 0 0 1 +changed from changed c ch cha chan BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 2 . 1 10 0 0 0 0 1 +15. Acknowledgements 15. 1 15 15. 15. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 3 . 1 10 0 0 0 0 1 +Joerg Ott, joerg J Jo Joe Joer BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 10 3 ,,,,, 5 10 0 0 0 0 1 +Oscar Novo oscar O Os Osc Osca BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 1 0 0 0 0 0 0 10 3 []. 3 9 0 0 0 0 1 +authors also authors a au aut auth BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 3 no 0 9 0 0 0 0 1 +use over use u us use use BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 3 , 1 9 0 0 0 0 1 +Eckel, Alan eckel, E Ec Eck Ecke BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 10 3 ,,. 3 8 0 0 0 0 1 +important final important i im imp impo BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 3 ., 2 9 0 0 0 0 1 +Charles Eckel. charles C Ch Cha Char BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 1 0 0 0 0 0 0 10 3 ., 2 8 0 0 0 0 1 +considerable effort considerable c co con cons BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 3 . 1 10 0 0 0 0 1 +16. References 16. 1 16 16. 16. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 6 . 1 10 0 0 0 0 1 +16.1. Normative 16.1. 1 16 16. 16.1 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 6 .. 2 10 0 0 0 0 1 +[I-D.ietf-bfcpbis-rfc4582bis] [I-D.ietf-bfcpbis-rfc4582bis] [i-d.ietf-bfcpbis-rfc4582bis] [ [I [I- [I-D BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 7 [-.--] 6 5 0 0 0 0 1 +Camarillo, G., camarillo, C Ca Cam Cama BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 10 7 ,.,,.,,.,,.,. 13 10 0 0 0 0 1 +Eckel, "The eckel, E Ec Eck Ecke BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 10 7 ,"()",- 7 9 0 0 0 0 1 +ietf-bfcpbis-rfc4582bis-16 (work ietf-bfcpbis-rfc4582bis-16 i ie iet ietf BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 7 ---(), 6 9 0 0 0 0 1 +2015. 2015. 2015. 2 20 201 2015 BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 1 0 0 0 10 7 . 1 1 0 0 0 0 1 +[I-D.ietf-mmusic-dtls-sdp] [I-D.ietf-mmusic-dtls-sdp] [i-d.ietf-mmusic-dtls-sdp] [ [I [I- [I-D BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 8 [-.---] 7 4 0 0 0 0 1 +Holmberg, C. holmberg, H Ho Hol Holm BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 10 8 ,..," 5 10 0 0 0 0 1 +(SDP) Offer/Answer (sdp) ( (S (SD (SDP BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 8 ()/ 3 9 0 0 0 0 1 +Layer Security layer L La Lay Laye BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 8 ()()", 6 10 0 0 0 0 1 +draft-ietf-mmusic-dtls-sdp-32 (work draft-ietf-mmusic-dtls-sdp-32 d dr dra draf BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 8 -----(), 8 9 0 0 0 0 1 +2017. 2017. 2017. 2 20 201 2017 BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 1 0 0 0 10 8 . 1 1 0 0 0 0 1 +[I-D.ietf-mmusic-ice-sip-sdp] [I-D.ietf-mmusic-ice-sip-sdp] [i-d.ietf-mmusic-ice-sip-sdp] [ [I [I- [I-D BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 10 [-.----] 8 5 0 0 0 0 1 +Petit-Huguenin, M., petit-huguenin, P Pe Pet Peti BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 10 10 -,.,,.,., 9 9 0 0 0 0 1 +"Session Description "session " "S "Se "Ses BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 10 "()/ 4 9 0 0 0 0 1 +procedures for procedures p pr pro proc BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 10 no 0 10 0 0 0 0 1 +(ICE)", draft-ietf-mmusic-ice-sip-sdp-24 (ice)", ( (I (IC (ICE BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 10 ()",------( 11 9 0 0 0 0 1 +progress), November progress), p pr pro prog BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 10 ),. 3 4 0 0 0 0 1 +Camarillo, et camarillo, C Ca Cam Cama BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 10 11 ,. 2 8 0 0 1 0 0 +Expires June expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 11 , 1 10 0 0 0 0 0 +[Page 22] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 10 0 - 1 10 0 0 1 0 1 +BFCP BFCP bfcp B BF BFC BFCP BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 0 no 0 3 0 0 0 0 1 +December 2018 december D De Dec Dece BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 10 0 no 0 10 0 0 0 0 1 +[I-D.ietf-mmusic-sdp-mux-attributes] [I-D.ietf-mmusic-sdp-mux-attributes] [i-d.ietf-mmusic-sdp-mux-attributes] [ [I [I- [I-D BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 0 [-.----] 8 6 0 0 0 0 1 +Nandakumar, S., nandakumar, N Na Nan Nand BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 10 0 ,.," 4 9 0 0 0 0 1 +Multiplexing", draft-ietf-mmusic-sdp-mux-attributes-17 multiplexing", M Mu Mul Mult BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 10 0 ",------ 8 10 0 0 0 0 1 +(work in (work ( (w (wo (wor BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 0 (),. 4 6 0 0 0 0 1 +[RFC2119] Bradner, [rfc2119] [ [R [RF [RFC BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 1 0 0 0 10 1 [],.," 6 10 0 0 0 0 1 +Requirement Levels", requirement R Re Req Requ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 1 ",,, 4 6 0 0 0 0 1 +DOI 10.17487/RFC2119, doi D DO DOI DOI BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 0 1 0 0 0 0 0 0 10 1 ./,,://.- 9 8 0 0 0 0 1 +editor.org/info/rfc2119>. editor.org/info/rfc2119>. editor.org/info/rfc2119>. e ed edi edit BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS CONTAINSDIGITS 0 0 0 0 1 0 0 0 10 1 .//. 4 4 0 0 0 0 1 +[RFC3261] Rosenberg, [rfc3261] [ [R [RF [RFC BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 2 [],.,,.,,.,, 12 10 0 0 0 0 1 +A., Peterson, a., A A. A., A., BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 2 .,,.,,.,,.,. 12 7 0 0 0 0 1 +Schooler, "SIP: schooler, S Sc Sch Scho BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 10 2 ,":",, 6 8 0 0 0 0 1 +DOI 10.17487/RFC3261, doi D DO DOI DOI BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 0 1 0 0 0 0 0 0 10 2 ./,,://.- 9 7 0 0 0 0 1 +editor.org/info/rfc3261>. editor.org/info/rfc3261>. editor.org/info/rfc3261>. e ed edi edit BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 2 .//. 4 3 0 0 0 0 1 +[RFC3264] Rosenberg, [rfc3264] [ [R [RF [RFC BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 3 [],..,"/ 8 10 0 0 0 0 1 +with Session with w wi wit with BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 3 ()",, 5 7 0 0 0 0 1 +DOI 10.17487/RFC3264, doi D DO DOI DOI BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 0 1 0 0 0 0 0 0 10 3 ./,,://.- 9 7 0 0 0 0 1 +editor.org/info/rfc3264>. editor.org/info/rfc3264>. editor.org/info/rfc3264>. e ed edi edit BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 3 .//. 4 3 0 0 0 0 1 +[RFC4145] Yon, [rfc4145] [ [R [RF [RFC BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 4 [],..,"- 8 10 0 0 0 0 1 +the Session the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 4 ()",, 5 7 0 0 0 0 1 +DOI 10.17487/RFC4145, doi D DO DOI DOI BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 0 1 0 0 0 0 0 0 11 4 ./,,://.- 9 8 0 0 0 0 1 +editor.org/info/rfc4145>. editor.org/info/rfc4145>. editor.org/info/rfc4145>. e ed edi edit BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 4 .//. 4 3 0 0 0 0 1 +[RFC4566] Handley, [rfc4566] [ [R [RF [RFC BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 6 [],.,,.,.,": 12 10 0 0 0 0 1 +Description Protocol", description D De Des Desc BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 6 ",,./, 6 8 0 0 0 0 1 +July 2006, july J Ju Jul July BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 11 6 ,://.-.//. 10 8 0 0 0 0 1 +[RFC4571] Lazzaro, [rfc4571] [ [R [RF [RFC BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 7 [],.,"-() 9 10 0 0 0 0 1 +and RTP and a an and and BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 7 ()- 3 8 0 0 0 0 1 +Oriented Transport", oriented O Or Ori Orie BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 7 ",,./, 6 8 0 0 0 0 1 +2006, <https://www.rfc-editor.org/info/rfc4571>. 2006, 2 20 200 2006 BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 1 0 0 0 11 7 ,://.-.//. 10 7 0 0 0 0 1 +[RFC4574] Levin, [rfc4574] [ [R [RF [RFC BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 8 [],..," 7 10 0 0 0 0 1 +Protocol (SDP) protocol P Pr Pro Prot BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 8 ()",, 5 6 0 0 0 0 1 +DOI 10.17487/RFC4574, doi D DO DOI DOI BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 0 1 0 0 0 0 0 0 11 8 ./,,://.- 9 8 0 0 0 0 1 +editor.org/info/rfc4574>. editor.org/info/rfc4574>. editor.org/info/rfc4574>. e ed edi edit BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 8 .//. 4 4 0 0 0 0 1 +[RFC4582] Camarillo, [rfc4582] [ [R [RF [RFC BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 9 [],.,,.,.," 11 10 0 0 0 0 1 +Control Protocol control C Co Con Cont BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 9 ()",,./, 8 8 0 0 0 0 1 +November 2006, november N No Nov Nove BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 11 9 ,://.-.//. 10 8 0 0 0 0 1 +[RFC4583] Camarillo, [rfc4583] [ [R [RF [RFC BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 10 [],.,"() 8 10 0 0 0 0 1 +for Binary for f fo for for BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 10 ()", 4 7 0 0 0 0 1 +RFC 4583, rfc R RF RFC RFC BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 11 10 ,./,, 5 6 0 0 0 0 1 +<https://www.rfc-editor.org/info/rfc4583>. <https://www.rfc-editor.org/info/rfc4583>. <https://www.rfc-editor.org/info/rfc4583>. < <h <ht <htt BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 1 11 10 ://.-.//. 9 6 0 0 0 0 1 +Camarillo, et camarillo, C Ca Cam Cama BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 11 ,. 2 8 0 0 1 0 0 +Expires June expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 11 , 1 10 0 0 0 0 0 +[Page 23] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 0 - 1 10 0 0 1 0 1 +BFCP BFCP bfcp B BF BFC BFCP BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 11 0 no 0 3 0 0 0 0 1 +December 2018 december D De Dec Dece BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 11 0 no 0 10 0 0 0 0 1 +[RFC5234] Crocker, [rfc5234] [ [R [RF [RFC BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 0 [],.,..," 9 10 0 0 0 0 1 +Specifications: ABNF", specifications: S Sp Spe Spec BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 0 :",,, 5 5 0 0 0 0 1 +DOI 10.17487/RFC5234, doi D DO DOI DOI BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 0 1 0 0 0 0 0 0 11 0 ./,,://.- 9 7 0 0 0 0 1 +editor.org/info/rfc5234>. editor.org/info/rfc5234>. editor.org/info/rfc5234>. e ed edi edit BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 0 .//. 4 3 0 0 0 0 1 +[RFC6347] Rescorla, [rfc6347] [ [R [RF [RFC BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 1 [],..," 7 10 0 0 0 0 1 +Security Version security S Se Sec Secu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 11 1 .",,./, 7 8 0 0 0 0 1 +January 2012, january J Ja Jan Janu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 1 0 0 0 1 0 0 11 1 ,://.-.//. 10 8 0 0 0 0 1 +[RFC6544] Rosenberg, [rfc6544] [ [R [RF [RFC BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 2 [],.,,.,,.,., 13 10 0 0 0 0 1 +"TCP Candidates "tcp " "T "TC "TCP BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 11 2 " 1 6 0 0 0 0 1 +Establishment (ICE)", establishment E Es Est Esta BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 2 ()",,./, 8 8 0 0 0 0 1 +March 2012, march M Ma Mar Marc BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 11 2 ,://.-.//. 10 8 0 0 0 0 1 +[RFC8122] Lennox, [rfc8122] [ [R [RF [RFC BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 4 [],..,"- 8 10 0 0 0 0 1 +Transport over transport T Tr Tra Tran BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 4 () 2 9 0 0 0 0 1 +in the in i in in in BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 11 4 ()",, 5 8 0 0 0 0 1 +DOI 10.17487/RFC8122, doi D DO DOI DOI BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 0 1 0 0 0 0 0 0 11 4 ./,,://.- 9 7 0 0 0 0 1 +editor.org/info/rfc8122>. editor.org/info/rfc8122>. editor.org/info/rfc8122>. e ed edi edit BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 4 .//. 4 4 0 0 0 0 1 +[RFC8174] Leiba, [rfc8174] [ [R [RF [RFC BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 5 [],.," 6 10 0 0 0 0 1 +2119 Key 2119 2 21 211 2119 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS ALLDIGIT 0 0 0 0 1 0 0 0 11 5 ",,,./, 7 8 0 0 0 0 1 +May 2017, may M Ma May May BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 11 5 ,://.-.//. 10 8 0 0 0 0 1 +[RFC8445] Keranen, [rfc8445] [ [R [RF [RFC BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 6 [],.,,.,.," 11 10 0 0 0 0 1 +Connectivity Establishment connectivity C Co Con Conn BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 6 (): 3 8 0 0 0 0 1 +Address Translator address A Ad Add Addr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 6 ()",, 5 6 0 0 0 0 1 +DOI 10.17487/RFC8445, doi D DO DOI DOI BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 0 1 0 0 0 0 0 0 11 6 ./,,://.- 9 7 0 0 0 0 1 +editor.org/info/rfc8445>. editor.org/info/rfc8445>. editor.org/info/rfc8445>. e ed edi edit BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 6 .//. 4 3 0 0 0 0 1 +16.2. Informational 16.2. 1 16 16. 16.2 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 8 .. 2 10 0 0 0 0 1 +[I-D.ietf-mmusic-sdp-bundle-negotiation] [I-D.ietf-mmusic-sdp-bundle-negotiation] [i-d.ietf-mmusic-sdp-bundle-negotiation] [ [I [I- [I-D BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 8 [-.----] 8 7 0 0 0 0 1 +Holmberg, C., holmberg, H Ho Hol Holm BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 8 ,.,,.,., 8 8 0 0 0 0 1 +"Negotiating Media "negotiating " "N "Ne "Neg BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 8 " 1 8 0 0 0 0 1 +Description Protocol description D De Des Desc BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 8 ()",----- 9 10 0 0 0 0 1 +negotiation-53 (work negotiation-53 n ne neg nego BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 8 -(),. 5 8 0 0 0 0 1 +[RFC5576] Lennox, [rfc5576] [ [R [RF [RFC BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 10 [],.,,.,.,"- 12 10 0 0 0 0 1 +Media Attributes media M Me Med Medi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 10 no 0 8 0 0 0 0 1 +(SDP)", RFC (sdp)", ( (S (SD (SDP BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 11 10 ()",,./,, 9 7 0 0 0 0 1 +<https://www.rfc-editor.org/info/rfc5576>. <https://www.rfc-editor.org/info/rfc5576>. <https://www.rfc-editor.org/info/rfc5576>. < <h <ht <htt BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 1 11 10 ://.-.//. 9 6 0 0 0 0 1 +Authors' Addresses authors' A Au Aut Auth BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 11 ' 1 10 0 0 0 0 1 +Camarillo, et camarillo, C Ca Cam Cama BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 11 ,. 2 8 0 0 1 0 0 +Expires June expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 11 , 1 10 0 0 0 0 0 +[Page 24] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 0 - 1 10 0 0 1 0 1 +BFCP BFCP bfcp B BF BFC BFCP BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 11 0 no 0 3 0 0 0 0 1 +December 2018 december D De Dec Dece BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 11 0 no 0 10 0 0 0 0 1 +Gonzalo Camarillo gonzalo G Go Gon Gonz BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 1 0 0 0 0 0 0 11 1 no 0 10 0 0 0 0 1 +Ericsson Ericsson ericsson E Er Eri Eric BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 1 no 0 5 0 0 0 0 1 +Hirsalantie 11 hirsalantie H Hi Hir Hirs BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 1 no 0 8 0 0 0 0 1 +FI-02420 Jorvas fi-02420 F FI FI- FI-0 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 1 0 0 0 11 1 - 1 8 0 0 0 0 1 +Finland Finland finland F Fi Fin Finl BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 1 no 0 4 0 0 0 0 1 +Email: Gonzalo.Camarillo@ericsson.com email: E Em Ema Emai BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 3 :.. 3 10 0 0 0 0 1 +Tom Kristensen tom T To Tom Tom BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 1 0 0 0 0 0 0 11 3 no 0 6 0 0 0 0 1 +Cisco Cisco cisco C Ci Cis Cisc BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 1 0 0 0 0 0 0 11 3 no 0 2 0 0 0 0 1 +Philip Pedersens philip P Ph Phi Phil BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 1 0 0 0 0 0 0 11 3 no 0 10 0 0 0 0 1 +NO-1366 Lysaker no-1366 N NO NO- NO-1 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 1 0 0 0 11 3 - 1 6 0 0 0 0 1 +Norway Norway norway N No Nor Norw BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 3 no 0 3 0 0 0 0 1 +Email: tomkrist@cisco.com, email: E Em Ema Emai BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 6 :.,.. 5 10 0 0 0 0 1 +Christer Holmberg christer C Ch Chr Chri BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 7 no 0 10 0 0 0 0 1 +Ericsson Ericsson ericsson E Er Eri Eric BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 7 no 0 5 0 0 0 0 1 +Hirsalantie 11 hirsalantie H Hi Hir Hirs BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 7 no 0 8 0 0 0 0 1 +Jorvas 02420 jorvas J Jo Jor Jorv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 7 no 0 7 0 0 0 0 1 +Finland Finland finland F Fi Fin Finl BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 7 no 0 4 0 0 0 0 1 +Email: christer.holmberg@ericsson.com email: E Em Ema Emai BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 9 :.. 3 10 0 0 0 0 1 +Camarillo, et camarillo, C Ca Cam Cama BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 9 ,. 2 8 0 0 1 0 0 +Expires June expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 9 , 1 10 0 0 0 0 0 +[Page 25] [page [ [P [Pa [Pag BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 9 [] 2 4 0 0 0 0 0 + diff --git a/grobid-trainer/resources/dataset/segmentation/sdo/ietf/corpus/raw/draft-ietf-mpls-rmr-12.segmentation b/grobid-trainer/resources/dataset/segmentation/sdo/ietf/corpus/raw/draft-ietf-mpls-rmr-12.segmentation new file mode 100644 index 0000000000..bea001e940 --- /dev/null +++ b/grobid-trainer/resources/dataset/segmentation/sdo/ietf/corpus/raw/draft-ietf-mpls-rmr-12.segmentation @@ -0,0 +1,720 @@ +MPLS WG mpls M MP MPL MPLS BLOCKSTART PAGESTART NEWFONT HIGHERFONT 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 no 0 10 0 0 0 0 1 +K. Kompella k. K K. K. K. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 . 1 3 0 0 0 0 1 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 - 1 4 0 0 1 1 1 +Juniper Networks, juniper J Ju Jun Juni BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 ,. 2 6 0 0 0 0 1 +Intended status: intended I In Int Inte BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 : 1 10 0 0 0 0 1 +L. Contreras l. L L. L. L. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 . 1 3 0 0 0 0 1 +Expires: April expires: E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 :, 2 7 0 0 0 0 1 +Telefonica Telefonica telefonica T Te Tel Tele BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 no 0 3 0 0 0 0 1 +October 23, october O Oc Oct Octo BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 0 0 , 1 5 0 0 0 0 1 +Resilient MPLS resilient R Re Res Resi BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 1 no 0 9 0 0 0 0 1 +draft-ietf-mpls-rmr-12 draft-ietf-mpls-rmr-12 draft-ietf-mpls-rmr-12 d dr dra draf BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 1 ---- 4 10 0 0 0 0 1 +Abstract Abstract abstract A Ab Abs Abst BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 1 no 0 10 0 0 0 0 1 +This document this T Th Thi This BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 1 no 0 9 0 0 0 0 1 +on ring on o on on on BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 1 ., 2 9 0 0 0 0 1 +proceeds to proceeds p pr pro proc BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 1 . 1 10 0 0 0 0 1 +It describes it I It It It BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 1 ,- 2 9 0 0 0 0 1 +signaled, as signaled, s si sig sign BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 1 ,. 2 9 0 0 0 0 1 +describe the describe d de des desc BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 1 no 0 8 0 0 0 0 1 +protocols. protocols. protocols. p pr pro prot BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 1 . 1 1 0 0 0 0 1 +Requirements Language requirements R Re Req Requ BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 4 no 0 10 0 0 0 0 1 +The key the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 4 "","","","","", 15 9 0 0 0 0 1 +"SHOULD", "SHOULD "should", " "S "SH "SHO BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 4 "","","","","" 14 10 0 0 0 0 1 +document are document d do doc docu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 4 []. 3 8 0 0 0 0 1 +Status of status S St Sta Stat BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 6 no 0 10 0 0 0 0 1 +This Internet-Draft this T Th Thi This BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 6 - 1 10 0 0 0 0 1 +provisions of provisions p pr pro prov BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 6 . 1 5 0 0 0 0 1 +Internet-Drafts are internet-drafts I In Int Inte BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 6 - 1 9 0 0 0 0 1 +Task Force task T Ta Tas Task BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 6 (). 3 9 0 0 0 0 1 +working documents working w wo wor work BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 6 -.- 3 10 0 0 0 0 1 +Drafts is drafts D Dr Dra Draf BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 6 ://..///. 9 8 0 0 0 0 1 +Internet-Drafts are internet-drafts I In Int Inte BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 8 - 1 10 0 0 0 0 1 +and may and a an and and BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 8 ,, 2 9 0 0 0 0 1 +time. It time. t ti tim time BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 8 .- 2 8 0 0 0 0 1 +material or material m ma mat mate BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 8 "." 3 8 0 0 0 0 1 +This Internet-Draft this T Th Thi This BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 10 -,. 3 10 0 0 0 0 1 +Copyright Notice copyright C Co Cop Copy BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 10 no 0 10 0 0 0 0 1 +Copyright (c) copyright C Co Cop Copy BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 10 () 2 10 0 0 0 0 1 +document authors. document d do doc docu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 10 .. 2 6 0 0 0 0 1 +Kompella & kompella K Ko Kom Komp BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 11 no 0 9 0 0 1 1 1 +Expires April expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 11 , 1 10 0 0 0 0 1 +[Page 1] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 11 [] 2 3 0 0 0 0 1 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 - 1 10 0 0 1 0 1 +Resilient MPLS resilient R Re Res Resi BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 no 0 10 0 0 1 1 1 +October 2019 october O Oc Oct Octo BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 0 0 no 0 6 0 0 0 0 1 +This document this T Th Thi This BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 ' 1 8 0 0 0 0 1 +Provisions Relating provisions P Pr Pro Prov BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 no 0 5 0 0 0 0 1 +(https://trustee.ietf.org/license-info) in (https://trustee.ietf.org/license-info) ( (h (ht (htt BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 1 0 0 (://../-) 9 9 0 0 0 0 1 +publication of publication p pu pub publ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 . 1 8 0 0 0 0 1 +carefully, as carefully, c ca car care BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 , 1 10 0 0 0 0 1 +to this to t to to to BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 . 1 9 0 0 0 0 1 +include Simplified include i in inc incl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 . 1 9 0 0 0 0 1 +the Trust the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 no 0 9 0 0 0 0 1 +described in described d de des desc BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 . 1 5 0 0 0 0 1 +Table of table T Ta Tab Tabl BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 1 no 0 10 0 0 0 0 1 +1. Introduction 1. 1 1. 1. 1. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 1 ......................... 25 9 0 0 0 0 1 +2 2 2 2 2 2 2 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 0 1 no 0 0 0 0 0 0 1 +1.1. Definitions 1.1. 1 1. 1.1 1.1. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 1 ......................... 25 9 0 0 0 0 1 +3 3 3 3 3 3 3 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 0 1 no 0 0 0 0 0 0 1 +2. Motivation 2. 2 2. 2. 2. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 1 .......................... 26 9 0 0 0 0 1 +5 5 5 5 5 5 5 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 0 1 no 0 0 0 0 0 0 1 +3. Theory 3. 3 3. 3. 3. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 1 ...................... 22 9 0 0 0 0 1 +5 5 5 5 5 5 5 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 0 1 no 0 0 0 0 0 0 1 +3.1. Provisioning 3.1. 3 3. 3.1 3.1. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 1 ........................ 24 9 0 0 0 0 1 +5 5 5 5 5 5 5 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 0 1 no 0 0 0 0 0 0 1 +3.2. Ring 3.2. 3 3. 3.2 3.2. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 1 ......................... 25 9 0 0 0 0 1 +6 6 6 6 6 6 6 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 0 1 no 0 0 0 0 0 0 1 +3.3. Ring 3.3. 3 3. 3.3 3.3. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 1 .................. 18 9 0 0 0 0 1 +6 6 6 6 6 6 6 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 0 1 no 0 0 0 0 0 0 1 +3.3.1. Express 3.3.1. 3 3. 3.3 3.3. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 1 ....................... 23 8 0 0 0 0 1 +6 6 6 6 6 6 6 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 0 1 no 0 0 0 0 0 0 1 +3.4. Ring 3.4. 3 3. 3.4 3.4. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 1 .......................... 26 9 0 0 0 0 1 +7 7 7 7 7 7 7 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 0 1 no 0 0 0 0 0 0 1 +3.5. Installing 3.5. 3 3. 3.5 3.5. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 1 ............... 15 9 0 0 0 0 1 +7 7 7 7 7 7 7 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 0 1 no 0 0 0 0 0 0 1 +3.6. Protection 3.6. 3 3. 3.6 3.6. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 1 ......................... 25 9 0 0 0 0 1 +7 7 7 7 7 7 7 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 0 1 no 0 0 0 0 0 0 1 +3.7. Installing 3.7. 3 3. 3.7 3.7. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 1 ................. 17 9 0 0 0 0 1 +8 8 8 8 8 8 8 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 0 1 no 0 0 0 0 0 0 1 +4. Autodiscovery 4. 4 4. 4. 4. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 1 ......................... 25 9 0 0 0 0 1 +9 9 9 9 9 9 9 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 0 1 no 0 0 0 0 0 0 1 +4.1. Overview 4.1. 4 4. 4.1 4.1. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 1 .......................... 26 9 0 0 0 0 1 +9 9 9 9 9 9 9 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 0 1 no 0 0 0 0 0 0 1 +4.2. Ring 4.2. 4 4. 4.2 4.2. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 1 ................... 19 9 0 0 0 0 1 +4.3. Mastership 4.3. 4 4. 4.3 4.3. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 1 ...................... 22 9 0 0 0 0 1 +4.4. Ring 4.4. 4 4. 4.4 4.4. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 1 .................. 18 9 0 0 0 0 1 +4.5. Ring 4.5. 4 4. 4.5 4.5. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 1 ........................ 24 9 0 0 0 0 1 +5. Ring 5. 5 5. 5. 5. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 1 ........................... 27 9 0 0 0 0 1 +6. Advanced 6. 6 6. 6. 6. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 1 ........................ 24 10 0 0 0 0 1 +6.1. Half-rings 6.1. 6 6. 6.1 6.1. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 1 ..-....................... 26 9 0 0 0 0 1 +6.2. Hub 6.2. 6 6. 6.2 6.2. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 1 ..................... 21 9 0 0 0 0 1 +7. Security 7. 7 7. 7. 7. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 1 .................... 20 10 0 0 0 0 1 +8. Acknowledgments 8. 8 8. 8. 8. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 1 ........................ 24 10 0 0 0 0 1 +9. IANA 9. 9 9. 9. 9. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 1 ...................... 22 10 0 0 0 0 1 +10. References 10. 1 10 10. 10. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 1 .......................... 26 10 0 0 0 0 1 +10.1. Normative 10.1. 1 10 10. 10.1 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 1 .................... 20 9 0 0 0 0 1 +10.2. Informative 10.2. 1 10 10. 10.2 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 1 ................... 19 9 0 0 0 0 1 +Authors' Addresses authors' A Au Aut Auth BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 1 '....................... 24 10 0 0 0 0 1 +1. Introduction 1. 1 1. 1. 1. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 11 . 1 10 0 0 0 0 1 +Rings are rings R Ri Rin Ring BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 11 . 1 9 0 0 0 0 1 +the simplest the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 11 . 1 9 0 0 0 0 1 +nearly ubiquitous nearly n ne nea near BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 11 . 1 8 0 0 0 0 1 +increases its increases i in inc incr BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 11 , 1 10 0 0 0 0 1 +Kompella & kompella K Ko Kom Komp BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 2 11 no 0 9 0 0 1 0 0 +Expires April expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 11 , 1 10 0 0 0 0 0 +[Page 2] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 11 [] 2 3 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 2 0 - 1 10 0 0 1 0 1 +Resilient MPLS resilient R Re Res Resi BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 0 no 0 10 0 0 1 0 1 +October 2019 october O Oc Oct Octo BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 2 0 no 0 6 0 0 0 0 1 +in transport, in i in in in BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 2 0 ,; 2 10 0 0 0 0 1 +not the not n no not not BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 0 . 1 2 0 0 0 0 1 +This document this T Th Thi This BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 0 , 1 10 0 0 0 0 1 +needs of needs n ne nee need BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 0 . 1 9 0 0 0 0 1 +several ways, several s se sev seve BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 0 , 1 9 0 0 0 0 1 +IS-IS [RFC5305], is-is I IS IS- IS-I BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 2 0 -[],[],-[][]. 13 10 0 0 0 0 1 +RMR LSPs rmr R RM RMR RMR BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 2 0 []; 3 9 0 0 0 0 1 +described in described d de des desc BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 0 . 1 4 0 0 0 0 1 +The intent the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 2 " 1 8 0 0 0 0 1 +naturally". Many naturally". n na nat natu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 2 ". 2 9 0 0 0 0 1 +their start their t th the thei BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 2 . 1 9 0 0 0 0 1 +topologies, for topologies, t to top topo BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 2 ,,, 3 10 0 0 0 0 1 +adding "express" adding a ad add addi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 2 "". 3 9 0 0 0 0 1 +(with some (with ( (w (wi (wit BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 2 (),. 4 10 0 0 0 0 1 +is not is i is is is BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 2 , 1 9 0 0 0 0 1 +protection. protection. protection. p pr pro prot BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 2 . 1 1 0 0 0 0 1 +1.1. Definitions 1.1. 1 1. 1.1 1.1. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 5 .. 2 10 0 0 0 0 1 +A (directed) a A A A A BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 1 0 1 0 0 0 0 0 2 5 ()(,)( 6 9 0 0 0 0 1 +nodes) V nodes) n no nod node BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 5 )(). 4 10 0 0 0 0 1 +of nodes of o of of of BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 5 (,),.(, 7 9 0 0 0 0 1 +terms node terms t te ter term BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 5 .) 2 8 0 0 0 0 1 +A ring a A A A A BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 1 0 1 0 0 0 0 0 2 7 . 1 9 0 0 0 0 1 +{R_i, 0 {r_i, { {R {R_ {R_i BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 7 ,.(,)(, 7 9 0 0 0 0 1 +R_i), 0 r_i), R R_ R_i R_i) BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 2 7 ),-( 4 10 0 0 0 0 1 +is done is i is is is BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 7 ). 2 9 0 0 0 0 1 +"clockwise" (CW) "clockwise" " "c "cl "clo BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 7 ""()""(). 9 9 0 0 0 0 1 +As there as A As As As BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 7 , 1 9 0 0 0 0 1 +distinct ring distinct d di dis dist BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 7 . 1 3 0 0 0 0 1 +R0 . r0 R R0 R0 R0 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 9 ... 3 8 0 0 0 0 1 +. . . . . . . BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 9 . 1 1 0 0 0 0 1 +. . . . . . . BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 9 . 1 1 0 0 0 0 1 +R7 R7 r7 R R7 R7 R7 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 9 no 0 2 0 0 0 0 1 +R2 R2 r2 R R2 R2 R2 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 9 no 0 2 0 0 0 0 1 +Anti- Anti- anti- A An Ant Anti BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 2 9 - 1 3 0 0 0 0 1 +| . | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 9 . 1 2 0 0 0 0 1 +Ring Ring ring R Ri Rin Ring BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 2 9 no 0 3 0 0 0 0 1 +. | . . . . . BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 9 . 1 2 0 0 0 0 1 +Clockwise | clockwise C Cl Clo Cloc BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 9 . 1 10 0 0 0 0 1 +. | . . . . . BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 9 . 1 10 0 0 0 0 1 +v . v v v v v BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 2 9 . 1 2 0 0 0 0 1 +RID = rid R RI RID RID BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 2 9 no 0 6 0 0 0 0 1 +. v . . . . . BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 9 . 1 2 0 0 0 0 1 +R6 R6 r6 R R6 R6 R6 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 9 no 0 2 0 0 0 0 1 +R3 R3 r3 R R3 R3 R3 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 9 no 0 2 0 0 0 0 1 +. . . . . . . BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 9 . 1 1 0 0 0 0 1 +. . . . . . . BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 2 9 . 1 1 0 0 0 0 1 +R5 . r5 R R5 R5 R5 BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 9 ... 3 8 0 0 0 0 1 +Figure 1: figure F Fi Fig Figu BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 11 : 1 10 0 0 0 0 1 +The following the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 11 : 1 10 0 0 0 0 1 +Kompella & kompella K Ko Kom Komp BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 2 11 no 0 9 0 0 1 0 0 +Expires April expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 11 , 1 10 0 0 0 0 0 +[Page 3] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 11 [] 2 3 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 2 0 - 1 10 0 0 1 0 1 +Resilient MPLS resilient R Re Res Resi BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 0 no 0 10 0 0 1 0 1 +October 2019 october O Oc Oct Octo BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 3 0 no 0 6 0 0 0 0 1 +Ring ID ring R Ri Rin Ring BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 3 0 ():-. 5 10 0 0 0 0 1 +ring, it ring, r ri rin ring BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 0 , 1 10 0 0 0 0 1 +Provider's network. provider's P Pr Pro Prov BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 3 0 '.,, 4 9 0 0 0 0 1 +indicates that indicates i in ind indi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 0 ""( 3 9 0 0 0 0 1 +Section 3.2). section S Se Sec Sect BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 0 .).. 4 7 0 0 0 0 1 +Ring node: ring R Ri Rin Ring BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 3 2 :. 2 10 0 0 0 0 1 +several rings. several s se sev seve BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 2 . 1 2 0 0 0 0 1 +Node index: node N No Nod Node BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 3 :, 2 10 0 0 0 0 1 +one less one o on one one BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 3 . 1 9 0 0 0 0 1 +document. document. document. d do doc docu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 3 . 1 1 0 0 0 0 1 +Ring master: ring R Ri Rin Ring BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 3 4 : 1 9 0 0 0 0 1 +process. Mastership process. p pr pro proc BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 4 .-. 3 10 0 0 0 0 1 +Ring neighbors: ring R Ri Rin Ring BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 3 5 :( 2 10 0 0 0 0 1 +size). size). size). s si siz size BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 5 ). 2 1 0 0 0 0 1 +Ring links: ring R Ri Rin Ring BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 3 5 :. 2 10 0 0 0 0 1 +Express links: express E Ex Exp Expr BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 6 :-. 3 10 0 0 0 0 1 +Ring direction: ring R Ri Rin Ring BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 3 6 :- 2 10 0 0 0 0 1 +of a of o of of of BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 6 .: 2 4 0 0 0 0 1 +UN: 00 un: U UN UN: UN: BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 3 7 : 1 10 0 0 0 0 1 +CW: 01 cw: C CW CW: CW: BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 3 7 : 1 10 0 0 0 0 1 +AC: 10 ac: A AC AC: AC: BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 3 7 : 1 10 0 0 0 0 1 +EX: 11 ex: E EX EX: EX: BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 3 8 : 1 10 0 0 0 0 1 +Ring Identification: ring R Ri Rin Ring BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 3 8 :, 2 10 0 0 0 0 1 +links, link links, l li lin link BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 8 ,,. 3 6 0 0 0 0 1 +The following the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 8 : 1 10 0 0 0 0 1 +R_k: A r_k: R R_ R_k R_k: BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 3 9 :.(-) 5 10 0 0 0 0 1 +neighbor R_(k+1). neighbor n ne nei neig BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 9 (). 3 2 0 0 0 0 1 +RL_k: A rl_k: R RL RL_ RL_k BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 3 10 :(). 4 10 0 0 0 0 1 +CL_jk: A cl_jk: C CL CL_ CL_j BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 3 10 :. 2 10 0 0 0 0 1 +AL_jk: A al_jk: A AL AL_ AL_j BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 3 11 :. 2 10 0 0 0 0 1 +Kompella & kompella K Ko Kom Komp BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 3 11 no 0 9 0 0 1 0 0 +Expires April expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 11 , 1 10 0 0 0 0 0 +[Page 4] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 11 [] 2 3 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 3 0 - 1 10 0 0 1 0 1 +Resilient MPLS resilient R Re Res Resi BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 0 no 0 10 0 0 1 0 1 +October 2019 october O Oc Oct Octo BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 3 0 no 0 6 0 0 0 0 1 +2. Motivation 2. 2 2. 2. 2. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 3 0 . 1 10 0 0 0 0 1 +A ring a A A A A BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 1 0 1 0 0 0 0 0 3 0 . 1 9 0 0 0 0 1 +perhaps the perhaps p pe per perh BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 0 ., 2 9 0 0 0 0 1 +mechanisms for mechanisms m me mec mech BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 0 ., 2 10 0 0 0 0 1 +are large are a ar are are BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 0 ., 2 10 0 0 0 0 1 +as simple as a as as as BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 0 ., 2 10 0 0 0 0 1 +is very is i is is is BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 0 ,. 2 10 0 0 0 0 1 +The goals the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 2 no 0 9 0 0 0 0 1 +MPLS-based resilience mpls-based M MP MPL MPLS BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 3 2 -( 2 8 0 0 0 0 1 +reminiscent of reminiscent r re rem remi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 2 ), 2 9 0 0 0 0 1 +bring-up of bring-up b br bri brin BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 2 -,-. 4 10 0 0 0 0 1 +These goals these T Th The Thes BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 2 no 0 10 0 0 0 0 1 +signaling protocols, signaling s si sig sign BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 2 ,,. 3 9 0 0 0 0 1 +3. Theory 3. 3 3. 3. 3. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 3 3 . 1 10 0 0 0 0 1 +Say a say S Sa Say Say BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 3 4 . 1 9 0 0 0 0 1 +or more or o or or or BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 4 . 1 9 0 0 0 0 1 +nodes in nodes n no nod node BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 4 , 1 10 0 0 0 0 1 +as "promiscuous". as a as as as BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 4 "".. 4 9 0 0 0 0 1 +knows its knows k kn kno know BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 4 , 1 9 0 0 0 0 1 +express links express e ex exp expr BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 4 ,. 2 9 0 0 0 0 1 +Once ring once O On Onc Once BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 6 , 1 9 0 0 0 0 1 +ring LSPs ring r ri rin ring BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 3 6 .,,- 4 9 0 0 0 0 1 +rotating unicast rotating r ro rot rota BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 6 . 1 9 0 0 0 0 1 +"multipoint": any "multipoint": " "m "mu "mul BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 6 "":; 4 9 0 0 0 0 1 +can be can c ca can can BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 6 ,(.., 5 8 0 0 0 0 1 +balanced). Both balanced). b ba bal bala BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 6 ).-""; 6 9 0 0 0 0 1 +choice of choice c ch cho choi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 6 no 0 10 0 0 0 0 1 +the node the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 6 . 1 9 0 0 0 0 1 +is to is i is is is BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 6 . 1 8 0 0 0 0 1 +connectivity between connectivity c co con conn BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 6 no 0 9 0 0 0 0 1 +different ring different d di dif diff BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 6 :, 2 10 0 0 0 0 1 +reach R_i. reach r re rea reac BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 6 . 1 1 0 0 0 0 1 +3.1. Provisioning 3.1. 3 3. 3.1 3.1. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 4 9 .. 2 10 0 0 0 0 1 +The goal the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 9 no 0 9 0 0 0 0 1 +configuration. The configuration. c co con conf BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 9 .- 2 10 0 0 0 0 1 +discovery via discovery d di dis disc BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 9 -().,- 6 9 0 0 0 0 1 +discovery can discovery d di dis disc BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 9 ., 2 9 0 0 0 0 1 +that would that t th tha that BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 9 - 1 10 0 0 0 0 1 +might be might m mi mig migh BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 9 . 1 7 0 0 0 0 1 +Kompella & kompella K Ko Kom Komp BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 4 11 no 0 9 0 0 1 0 0 +Expires April expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 11 , 1 10 0 0 0 0 0 +[Page 5] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 11 [] 2 3 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 4 0 - 1 10 0 0 1 0 1 +Resilient MPLS resilient R Re Res Resi BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 0 no 0 10 0 0 1 0 1 +October 2019 october O Oc Oct Octo BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 4 0 no 0 6 0 0 0 0 1 +3.2. Ring 3.2. 3 3. 3.2 3.2. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 4 0 .. 2 10 0 0 0 0 1 +Ring nodes ring R Ri Rin Ring BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 4 0 ,- 2 9 0 0 0 0 1 +MPLS signaling mpls M MP MPL MPLS BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 4 0 . 1 10 0 0 0 0 1 +RID, the rid, R RI RID RID, BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 4 0 ,. 2 9 0 0 0 0 1 +several rings, several s se sev seve BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 0 ,. 2 8 0 0 0 0 1 +To simplify to T To To To BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 1 , 1 9 0 0 0 0 1 +"promiscuous" by "promiscuous" " "p "pr "pro BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 1 "". 3 9 0 0 0 0 1 +listens to listens l li lis list BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 1 '-. 3 9 0 0 0 0 1 +non-zero RID non-zero n no non non- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 1 -, 2 10 0 0 0 0 1 +by taking by b by by by BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 1 ., 2 9 0 0 0 0 1 +mode means mode m mo mod mode BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 1 no 0 8 0 0 0 0 1 +provisioned; everything provisioned; p pr pro prov BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 1 ;-. 3 7 0 0 0 0 1 +A ring a A A A A BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 1 0 1 0 0 0 0 0 4 3 no 0 10 0 0 0 0 1 +protocols it protocols p pr pro prot BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 3 ./-., 5 10 0 0 0 0 1 +each node each e ea eac each BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 3 . 1 4 0 0 0 0 1 +3.3. Ring 3.3. 3 3. 3.3 3.3. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 4 4 .. 2 10 0 0 0 0 1 +Ring links ring R Ri Rin Ring BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 4 4 -., 3 9 0 0 0 0 1 +point-to-point (from point-to-point p po poi poin BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 4 --()"-". 8 9 0 0 0 0 1 +"auto-bundled" attribute "auto-bundled" " "a "au "aut BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 4 "-" 3 9 0 0 0 0 1 +neighbors are neighbors n ne nei neig BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 4 , 1 9 0 0 0 0 1 +explicit configuration explicit e ex exp expl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 4 ( 1 9 0 0 0 0 1 +Group). Note group). G Gr Gro Grou BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 4 4 ). 2 9 0 0 0 0 1 +IGP; however, igp; I IG IGP IGP; BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 4 4 ;, 2 10 0 0 0 0 1 +apply to apply a ap app appl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 4 . 1 9 0 0 0 0 1 +is often is i is is is BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 4 no 0 9 0 0 0 0 1 +those nodes. those t th tho thos BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 4 . 1 9 0 0 0 0 1 +layer; however, layer; l la lay laye BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 4 ;, 2 9 0 0 0 0 1 +result in result r re res resu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 4 . 1 6 0 0 0 0 1 +A ring a A A A A BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 1 0 1 0 0 0 0 0 5 8 ; 1 9 0 0 0 0 1 +discovered to discovered d di dis disc BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 8 no 0 10 0 0 0 0 1 +RID. A rid. R RI RID RID. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 5 8 .'(); 5 9 0 0 0 0 1 +process is process p pr pro proc BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 8 '. 2 9 0 0 0 0 1 +two attributes two t tw two two BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 8 ; 1 9 0 0 0 0 1 +then up then t th the then BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 8 no 0 10 0 0 0 0 1 +ring. ring. ring. r ri rin ring BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 8 . 1 0 0 0 0 0 1 +3.3.1. Express 3.3.1. 3 3. 3.3 3.3. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 10 ... 3 10 0 0 0 0 1 +Express links express E Ex Exp Expr BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 10 , 1 8 0 0 0 0 1 +directions have directions d di dir dire BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 10 ., 2 9 0 0 0 0 1 +are links are a ar are are BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 10 -;, 3 10 0 0 0 0 1 +result of result r re res resu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 10 . 1 6 0 0 0 0 1 +Kompella & kompella K Ko Kom Komp BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 5 11 no 0 9 0 0 1 0 0 +Expires April expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 11 , 1 10 0 0 0 0 0 +[Page 6] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 11 [] 2 3 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 5 0 - 1 10 0 0 1 0 1 +Resilient MPLS resilient R Re Res Resi BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 0 no 0 10 0 0 1 0 1 +October 2019 october O Oc Oct Octo BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 5 0 no 0 6 0 0 0 0 1 +3.4. Ring 3.4. 3 3. 3.4 3.4. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 0 .. 2 10 0 0 0 0 1 +Ring LSPs ring R Ri Rin Ring BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 5 0 ., 2 9 0 0 0 0 1 +its ring its i it its its BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 0 , 1 9 0 0 0 0 1 +automatically. R_i automatically. a au aut auto BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 0 . 1 9 0 0 0 0 1 +RL_k. R_i rl_k. R RL RL_ RL_k BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 5 0 .. 2 9 0 0 0 0 1 +propagates around propagates p pr pro prop BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 0 ,. 2 10 0 0 0 0 1 +receives CW receives r re rec rece BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 0 , 1 9 0 0 0 0 1 +and fast and a an and and BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 0 (). 3 8 0 0 0 0 1 +For RSVP-TE for F Fo For For BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 2 -,. 3 9 0 0 0 0 1 +However, these however, H Ho How Howe BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 2 ,;," 4 10 0 0 0 0 1 +call admission call c ca cal call BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 5 2 "., 3 9 0 0 0 0 1 +ring node ring r ri rin ring BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 5 2 no 0 10 0 0 0 0 1 +bandwidth on bandwidth b ba ban band BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 2 ., 2 9 0 0 0 0 1 +admitted to admitted a ad adm admi BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 2 . 1 3 0 0 0 0 1 +3.5. Installing 3.5. 3 3. 3.5 3.5. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 3 .. 2 10 0 0 0 0 1 +In setting in I In In In BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 5 4 ,:- 3 9 0 0 0 0 1 +and AL_jk and a an and and BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 4 .:, 3 9 0 0 0 0 1 +R_j+1, and r_j+1, R R_ R_j R_j+ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 4 ,-,-. 5 9 0 0 0 0 1 +entries for entries e en ent entr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 4 ., 2 9 0 0 0 0 1 +CL_jk with cl_jk C CL CL_ CL_j BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 5 4 ,; 2 9 0 0 0 0 1 +LSR for lsr L LS LSR LSR BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 5 4 ., 2 9 0 0 0 0 1 +next hop next n ne nex next BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 4 ., 2 9 0 0 0 0 1 +direction, R_j direction, d di dir dire BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 4 ,-, 3 10 0 0 0 0 1 +R_j-1 (as r_j-1 R R_ R_j R_j- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 4 -(),-,-( 8 10 0 0 0 0 1 +ingress). ingress). ingress). i in ing ingr BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 4 ). 2 1 0 0 0 0 1 +Clearly, R_k clearly, C Cl Cle Clea BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 7 ,., 3 9 0 0 0 0 1 +can send can c ca can can BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 7 ,, 2 9 0 0 0 0 1 +([I-D.ietf-mpls-rfc4379bis]), using ([i-d.ietf-mpls-rfc4379bis]), ( ([ ([I ([I- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 7 ([-.--]),,-,, 13 10 0 0 0 0 1 +test the test t te tes test BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 7 . 1 8 0 0 0 0 1 +Furthermore, if furthermore, F Fu Fur Furt BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 7 ,, 2 8 0 0 0 0 1 +installs LFIB installs i in ins inst BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 7 ,- 2 9 0 0 0 0 1 +and to and a an and and BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 7 ,. 2 7 0 0 0 0 1 +3.6. Protection 3.6. 3 3. 3.6 3.6. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 9 .. 2 10 0 0 0 0 1 +In this in I In In In BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 5 9 ,-- 3 9 0 0 0 0 1 +link bypass link l li lin link BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 5 9 ,,,- 4 9 0 0 0 0 1 +protection. Protection protection. p pr pro prot BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 9 ."", 4 10 0 0 0 0 1 +which is which w wh whi whic BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 9 -. 2 9 0 0 0 0 1 +works in works w wo wor work BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 9 ,. 2 8 0 0 0 0 1 +If a if I If If If BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 11 -- 2 9 0 0 0 0 1 +R_j+1 fail, r_j+1 R R_ R_j R_j+ BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 11 ,, 2 10 0 0 0 0 1 +Kompella & kompella K Ko Kom Komp BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 6 11 no 0 9 0 0 1 0 0 +Expires April expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 11 , 1 10 0 0 0 0 0 +[Page 7] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 11 [] 2 3 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 6 0 - 1 10 0 0 1 0 1 +Resilient MPLS resilient R Re Res Resi BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 0 no 0 10 0 0 1 0 1 +October 2019 october O Oc Oct Octo BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 6 0 no 0 6 0 0 0 0 1 +ring LSPs ring r ri rin ring BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 6 0 . 1 9 0 0 0 0 1 +failure is failure f fa fai fail BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 0 , 1 10 0 0 0 0 1 +for that for f fo for for BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 0 .,, 3 9 0 0 0 0 1 +the FRR the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 0 . 1 9 0 0 0 0 1 +switchover lead switchover s sw swi swit BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 0 . 1 6 0 0 0 0 1 +R_j then r_j R R_ R_j R_j BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 6 1 - 1 9 0 0 0 0 1 +working, so working, w wo wor work BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 1 ,- 2 8 0 0 0 0 1 +direction. For direction. d di dir dire BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 1 .-, 3 8 0 0 0 0 1 +Notify; other notify; N No Not Noti BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 1 ;. 2 9 0 0 0 0 1 +indications propagate indications i in ind indi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 1 no 0 10 0 0 0 0 1 +the failure the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 1 .,, 3 9 0 0 0 0 1 +traffic will traffic t tr tra traf BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 1 , 1 9 0 0 0 0 1 +failure on failure f fa fai fail BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 1 .(), 4 9 0 0 0 0 1 +where until where w wh whe wher BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 1 , 1 9 0 0 0 0 1 +suboptimal. suboptimal. suboptimal. s su sub subo BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 1 . 1 1 0 0 0 0 1 +Note that note N No Not Note BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 4 no 0 10 0 0 0 0 1 +all ring all a al all all BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 4 ., 2 9 0 0 0 0 1 +(and switch (and ( (a (an (and BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 4 (),. 4 6 0 0 0 0 1 +One point one O On One One BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 5 ,,, 3 9 0 0 0 0 1 +clearly unusable. clearly c cl cle clea BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 5 ., 2 9 0 0 0 0 1 +traffic loop: traffic t tr tra traf BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 5 :-, 3 10 0 0 0 0 1 +traffic on traffic t tr tra traf BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 5 , 1 9 0 0 0 0 1 +traffic to traffic t tr tra traf BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 5 -,.: 4 9 0 0 0 0 1 +1. Each 1. 1 1. 1. 1. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 7 . 1 10 0 0 0 0 1 +most 2*n, most m mo mos most BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 7 *,. 3 8 0 0 0 0 1 +2. A 2. 2 2. 2. 2. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 7 .(.., 5 10 0 0 0 0 1 +CW to cw C CW CW CW BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 6 7 ) 1 9 0 0 0 0 1 +egress. egress. egress. e eg egr egre BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 7 . 1 1 0 0 0 0 1 +3. A 3. 3 3. 3. 3. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 8 . 1 10 0 0 0 0 1 +below the below b be bel belo BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 8 . 1 9 0 0 0 0 1 +presence of presence p pr pre pres BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 8 ;, 2 9 0 0 0 0 1 +looping and looping l lo loo loop BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 8 . 1 4 0 0 0 0 1 +It is it I It It It BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 9 (). 3 10 0 0 0 0 1 +optional. optional. optional. o op opt opti BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 9 . 1 1 0 0 0 0 1 +3.7. Installing 3.7. 3 3. 3.7 3.7. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 10 .. 2 10 0 0 0 0 1 +At the at A At At At BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 10 , 1 10 0 0 0 0 1 +it can it i it it it BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 10 . 1 9 0 0 0 0 1 +the CW the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 10 , 1 9 0 0 0 0 1 +label CL_jk label l la lab labe BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 10 -,-., 5 9 0 0 0 0 1 +Kompella & kompella K Ko Kom Komp BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 7 11 no 0 9 0 0 1 0 0 +Expires April expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 11 , 1 10 0 0 0 0 0 +[Page 8] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 7 11 [] 2 3 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 7 0 - 1 10 0 0 1 0 1 +Resilient MPLS resilient R Re Res Resi BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 0 no 0 10 0 0 1 0 1 +October 2019 october O Oc Oct Octo BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 7 0 no 0 6 0 0 0 0 1 +R_j sets r_j R R_ R_j R_j BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 7 0 no 0 9 0 0 0 0 1 +CL_j+1,k with cl_j+1,k C CL CL_ CL_j BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 0 ,., 3 10 0 0 0 0 1 +entries in entries e en ent entr BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 0 . 1 3 0 0 0 0 1 +Say R1 say S Sa Say Say BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 7 1 no 0 9 0 0 0 0 1 +direction, and direction, d di dir dire BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 1 ,- 2 9 0 0 0 0 1 +clockwise direction. clockwise c cl clo cloc BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 1 . 1 10 0 0 0 0 1 +R5 in r5 R R5 R5 R5 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 1 , 1 9 0 0 0 0 1 +reach R5 reach r re rea reac BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 1 -. 2 9 0 0 0 0 1 +LFIB entries: lfib L LF LFI LFIB BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 7 1 : 1 2 0 0 0 0 1 ++------+--------+-----------+--------+-----------+ +------+--------+-----------+--------+-----------+ +------+--------+-----------+--------+-----------+ + +- +-- +--- BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 7 3 -------------------------------------------- 44 10 0 0 0 0 1 +| Dest | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 3 //// 4 9 0 0 0 0 1 ++------+--------+-----------+--------+-----------+ +------+--------+-----------+--------+-----------+ +------+--------+-----------+--------+-----------+ + +- +-- +--- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 7 3 -------------------------------------------- 44 10 0 0 0 0 1 +| ... | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 3 ... 3 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 3 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 3 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 3 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 3 no 0 0 0 0 0 0 1 +| R4 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 3 no 0 0 0 0 0 0 1 +| L42/R2 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 3 / 1 2 0 0 0 0 1 +L40/R0 | l40/r0 L L4 L40 L40/ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 3 // 2 3 0 0 0 0 1 +L42/R2 | l42/r2 L L4 L42 L42/ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 3 / 1 1 0 0 0 0 1 +| R5 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 3 no 0 0 0 0 0 0 1 +| L52/R2 | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 3 / 1 2 0 0 0 0 1 +L50/R0 | l50/r0 L L5 L50 L50/ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 3 // 2 3 0 0 0 0 1 +L52/R2 | l52/r2 L L5 L52 L52/ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 3 / 1 1 0 0 0 0 1 +| ... | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 3 ... 3 1 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 3 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 3 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 3 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 3 no 0 0 0 0 0 0 1 ++------+--------+-----------+--------+-----------+ +------+--------+-----------+--------+-----------+ +------+--------+-----------+--------+-----------+ + +- +-- +--- BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 7 3 -------------------------------------------- 44 10 0 0 0 0 1 +R1's LFIB r1's R R1 R1' R1's BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 7 ' 1 10 0 0 0 0 1 +4. Autodiscovery 4. 4 4. 4. 4. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 7 . 1 10 0 0 0 0 1 +4.1. Overview 4.1. 4 4. 4.1 4.1. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 7 .. 2 10 0 0 0 0 1 +Auto-discovery proceeds auto-discovery A Au Aut Auto BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 8 -. 2 9 0 0 0 0 1 +announcement phase. announcement a an ann anno BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 8 .. 2 10 0 0 0 0 1 +third phase third t th thi thir BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 8 . 1 6 0 0 0 0 1 +S1 S1 s1 S S1 S1 S1 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 8 no 0 1 0 0 0 0 1 +/ / / / / / / BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 8 / 1 0 0 0 0 0 1 +\ \ \ \ \ \ \ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 8 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 8 no 0 0 0 0 0 0 1 +R0 . r0 R R0 R0 R0 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 8 ... 3 4 0 0 0 0 1 +R0 has r0 R R0 R0 R0 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 8 no 0 5 0 0 0 0 1 +| . | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 8 . 1 1 0 0 0 0 1 +\ \ \ \ \ \ \ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 8 no 0 0 0 0 0 0 1 +. . . . . . . BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 8 . 1 0 0 0 0 0 1 +R1 has r1 R R1 R1 R1 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 8 no 0 5 0 0 0 0 1 +R7 R7 r7 R R7 R7 R7 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 8 no 0 1 0 0 0 0 1 +\________ R2 \________ \ \_ \__ \___ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 7 8 no 0 4 0 0 0 0 1 +All other all A Al All All BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 8 no 0 10 0 0 0 0 1 +Anti- Anti- anti- A An Ant Anti BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 7 8 - 1 1 0 0 0 0 1 +| . | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 8 . 1 1 0 0 0 0 1 +. | . . . . . BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 8 . 1 1 0 0 0 0 1 +clockwise | clockwise c cl clo cloc BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 8 . 1 4 0 0 0 0 1 +Ring Ring ring R Ri Rin Ring BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 7 8 no 0 1 0 0 0 0 1 +. | . . . . . BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 8 . 1 4 0 0 0 0 1 +v . v v v v v BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 7 8 . 1 1 0 0 0 0 1 +RID = rid R RI RID RID BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 7 8 no 0 3 0 0 0 0 1 +. v . . . . . BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 8 . 1 1 0 0 0 0 1 +R6 R6 r6 R R6 R6 R6 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 8 no 0 1 0 0 0 0 1 +R3 R3 r3 R R3 R3 R3 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 8 no 0 1 0 0 0 0 1 +. . . . . . . BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 8 . 1 0 0 0 0 0 1 +. . . . . . . BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 8 . 1 0 0 0 0 0 1 +R5 . r5 R R5 R5 R5 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 8 ... 3 4 0 0 0 0 1 +\ \ \ \ \ \ \ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 8 no 0 0 0 0 0 0 1 +/ / / / / / / BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 8 / 1 0 0 0 0 0 1 +\ \ \ \ \ \ \ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 8 no 0 0 0 0 0 0 1 +/ / / / / / / BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 8 / 1 0 0 0 0 0 1 +An An an A An An An BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 7 8 no 0 1 0 0 0 0 1 +Figure 2: figure F Fi Fig Figu BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 11 :- 2 10 0 0 0 0 1 +Kompella & kompella K Ko Kom Komp BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 7 11 no 0 9 0 0 1 0 0 +Expires April expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 11 , 1 10 0 0 0 0 0 +[Page 9] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 7 11 [] 2 3 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 7 0 - 1 10 0 0 1 0 1 +Resilient MPLS resilient R Re Res Resi BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 0 no 0 10 0 0 1 0 1 +October 2019 october O Oc Oct Octo BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 7 0 no 0 6 0 0 0 0 1 +The format the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 0 --(). 5 9 0 0 0 0 1 +consists of consists c co con cons BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 0 ,- 2 9 0 0 0 0 1 +TLVs. A tlvs. T TL TLV TLVs BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 7 0 .- 2 9 0 0 0 0 1 +node's neighbors. node's n no nod node BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 7 0 '.-. 4 9 0 0 0 0 1 +Details of details D De Det Deta BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 0 - 1 10 0 0 0 0 1 +corresponding IGP corresponding c co cor corr BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 0 . 1 4 0 0 0 0 1 +[RMR Node [rmr [ [R [RM [RMR BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 7 2 [][][][][-] 11 10 0 0 0 0 1 +Ring Node ring R Ri Rin Ring BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 7 2 no 0 10 0 0 0 0 1 +[RMR Nbr [rmr [ [R [RM [RMR BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 7 2 [][][][] 8 10 0 0 0 0 1 +Ring Neighbor ring R Ri Rin Ring BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 7 3 - 1 10 0 0 0 0 1 +0 0 0 0 0 0 0 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 7 3 no 0 0 0 0 0 0 1 +1 1 1 1 1 1 1 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 7 3 no 0 0 0 0 0 0 1 +0 1 0 0 0 0 0 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 7 3 no 0 4 0 0 0 0 1 ++-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ + +- +-+ +-+- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 7 3 ---------------- 16 5 0 0 0 0 1 +|MV | |mv | |M |MV |MV BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 7 3 no 0 3 0 0 0 0 1 +|SU |M| |su | |S |SU |SU BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 7 3 no 0 1 0 0 0 0 1 ++-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ + +- +-+ +-+- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 7 3 ---------------- 16 5 0 0 0 0 1 +MV: Mastership mv: M MV MV: MV: BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 7 3 : 1 3 0 0 0 0 1 +SS: Supported ss: S SS SS: SS: BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 7 3 : 1 5 0 0 0 0 1 +(100 = (100 ( (1 (10 (100 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 3 (-;;) 5 6 0 0 0 0 1 +MBZ: Must mbz: M MB MBZ MBZ: BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 7 3 : 1 2 0 0 0 0 1 +SO: Supported so: S SO SO: SO: BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 7 3 :(;;) 5 9 0 0 0 0 1 +SU: Signaling su: S SU SU: SU: BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 7 3 :(;;-) 6 10 0 0 0 0 1 +M : m M M M M BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 7 3 :(,) 4 5 0 0 0 0 1 +Flags for flags F Fl Fla Flag BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 7 no 0 10 0 0 0 0 1 +0 0 0 0 0 0 0 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 8 7 no 0 0 0 0 0 0 1 +1 1 1 1 1 1 1 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 8 7 no 0 0 0 0 0 0 1 +0 1 0 0 0 0 0 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 8 7 no 0 4 0 0 0 0 1 ++-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ + +- +-+ +-+- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 7 ---------------- 16 5 0 0 0 0 1 +|RD |OAM| |rd | |R |RD |RD BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 7 no 0 1 0 0 0 0 1 +MBZ MBZ mbz M MB MBZ MBZ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 7 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 8 7 no 0 0 0 0 0 0 1 ++-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ + +- +-+ +-+- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 7 ---------------- 16 5 0 0 0 0 1 +RD: Ring rd: R RD RD: RD: BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 7 : 1 2 0 0 0 0 1 +OAM: OAM oam: O OA OAM OAM: BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 7 :(;;;) 6 10 0 0 0 0 1 +MBZ: Must mbz: M MB MBZ MBZ: BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 7 : 1 2 0 0 0 0 1 +Flags for flags F Fl Fla Flag BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 9 no 0 10 0 0 0 0 1 +4.2. Ring 4.2. 4 4. 4.2 4.2. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 9 .. 2 10 0 0 0 0 1 +Each node each E Ea Eac Each BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 10 ; 1 10 0 0 0 0 1 +example, RID example, e ex exa exam BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 10 ,. 2 9 0 0 0 0 1 +value. Each value. v va val valu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 10 . 1 9 0 0 0 0 1 +participating in, participating p pa par part BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 10 ,. 2 9 0 0 0 0 1 +Kompella & kompella K Ko Kom Komp BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 8 11 no 0 9 0 0 1 0 0 +Expires April expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 11 , 1 10 0 0 0 0 0 +[Page 10] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 8 0 - 1 10 0 0 1 0 1 +Resilient MPLS resilient R Re Res Resi BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 0 no 0 10 0 0 1 0 1 +October 2019 october O Oc Oct Octo BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 8 0 no 0 6 0 0 0 0 1 +timer T1; timer t ti tim time BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 0 ; 1 10 0 0 0 0 1 +other nodes other o ot oth othe BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 0 . 1 3 0 0 0 0 1 +A node a A A A A BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 1 0 1 0 0 0 0 0 8 0 '. 2 9 0 0 0 0 1 +However, when however, H Ho How Howe BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 0 ,, 2 10 0 0 0 0 1 +that ring, that t th tha that BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 0 ,. 2 8 0 0 0 0 1 +The announcement the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 2 no 0 10 0 0 0 0 1 +nodes in nodes n no nod node BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 2 . 1 9 0 0 0 0 1 +4.3. Mastership 4.3. 4 4. 4.3 4.3. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 2 .. 2 10 0 0 0 0 1 +When timer when W Wh Whe When BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 2 ,. 2 9 0 0 0 0 1 +phase, each phase, p ph pha phas BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 2 ,. 2 9 0 0 0 0 1 +If it if I If If If BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 2 no 0 10 0 0 0 0 1 +the highest the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 2 , 1 8 0 0 0 0 1 +readvertising its readvertising r re rea read BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 2 . 1 7 0 0 0 0 1 +When timer when W Wh Whe When BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 4 , 1 9 0 0 0 0 1 +other nodes other o ot oth othe BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 4 . 1 10 0 0 0 0 1 +exactly one; exactly e ex exa exac BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 4 ;,. 3 9 0 0 0 0 1 +Barring software barring B Ba Bar Barr BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 5 , 1 9 0 0 0 0 1 +multiple nodes multiple m mu mul mult BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 5 - 1 8 0 0 0 0 1 +announcements. Say announcements. a an ann anno BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 5 . 1 9 0 0 0 0 1 +values, and values, v va val valu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 5 ,, 2 9 0 0 0 0 1 +second lowest second s se sec seco BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 5 . 1 9 0 0 0 0 1 +just as just j ju jus just BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 5 ', 2 10 0 0 0 0 1 +master (since master m ma mas mast BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 5 ('). 4 9 0 0 0 0 1 +However, in however, H Ho How Howe BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 5 ,, 2 9 0 0 0 0 1 +master. In master. m ma mas mast BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 5 ., 2 9 0 0 0 0 1 +times as times t ti tim time BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 5 . 1 5 0 0 0 0 1 +4.4. Ring 4.4. 4 4. 4.4 4.4. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 9 .. 2 10 0 0 0 0 1 +R0 . r0 R R0 R0 R0 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 9 ... 3 3 0 0 0 0 1 +<------3. Anti-clockwise <------3. < <- <-- <--- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 9 ------.- 8 10 0 0 0 0 1 +. . . . . . . BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 9 . 1 0 0 0 0 0 1 +. . . . . . . BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 9 . 1 0 0 0 0 0 1 +R7 R7 r7 R R7 R7 R7 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 9 no 0 0 0 0 0 0 1 +R2 <---0. r2 R R2 R2 R2 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 9 ---. 4 6 0 0 0 0 1 +. . . . . . . BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 9 . 1 0 0 0 0 0 1 +Ring Ring ring R Ri Rin Ring BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 9 9 no 0 1 0 0 0 0 1 +/ . / / / / / BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 9 /. 2 1 0 0 0 0 1 +. . . . . . . BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 9 . 1 0 0 0 0 0 1 +/ . / / / / / BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 9 /. 2 1 0 0 0 0 1 +1. Maximal 1. 1 1. 1. 1. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 9 . 1 8 0 0 0 0 1 +. . . . . . . BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 9 . 1 0 0 0 0 0 1 +/ / / / / / / BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 9 / 1 0 0 0 0 0 1 +. . . . . . . BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 9 . 1 0 0 0 0 0 1 +R6 R6 r6 R R6 R6 R6 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 9 no 0 0 0 0 0 0 1 +/ / / / / / / BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 9 / 1 0 0 0 0 0 1 +R3 <---2. r3 R R3 R3 R3 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 9 ---. 4 8 0 0 0 0 1 +. . . . . . . BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 9 . 1 0 0 0 0 0 1 +/ . / / / / / BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 9 /. 2 1 0 0 0 0 1 +R5 . r5 R R5 R5 R5 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 9 ... 3 3 0 0 0 0 1 +<------4. R4 <------4. < <- <-- <--- BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 9 ------. 7 9 0 0 0 0 1 +Figure 3: figure F Fi Fig Figu BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 11 : 1 10 0 0 0 0 1 +Kompella & kompella K Ko Kom Komp BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 9 11 no 0 9 0 0 1 0 0 +Expires April expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 11 , 1 10 0 0 0 0 0 +[Page 11] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 9 0 - 1 10 0 0 1 0 1 +Resilient MPLS resilient R Re Res Resi BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 0 no 0 10 0 0 1 0 1 +October 2019 october O Oc Oct Octo BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 9 0 no 0 6 0 0 0 0 1 +When there when W Wh Whe When BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 0 (,), 4 10 0 0 0 0 1 +Identification Phase. identification I Id Ide Iden BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 0 . 1 9 0 0 0 0 1 +this phase this t th thi this BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 0 . 1 9 0 0 0 0 1 +M's CW m's M M' M's M's BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 9 0 '. 2 9 0 0 0 0 1 +passes CW passes p pa pas pass BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 0 . 1 9 0 0 0 0 1 +In the in I In In In BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 9 1 , 1 9 0 0 0 0 1 +neighbors that neighbors n ne nei neig BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 1 no 0 10 0 0 0 0 1 +neighbor. If neighbor. n ne nei neig BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 1 ., 2 9 0 0 0 0 1 +ring neighbor. ring r ri rin ring BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 9 1 ., 2 9 0 0 0 0 1 +trivial. If trivial. t tr tri triv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 1 ., 2 9 0 0 0 0 1 +completed the completed c co com comp BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 1 ( 1 9 0 0 0 0 1 +TLVs) and tlvs) T TL TLV TLVs BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 9 1 ) 1 10 0 0 0 0 1 +the ring. the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 1 ., 2 9 0 0 0 0 1 +TLVs with tlvs T TL TLV TLVs BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 9 1 ; 1 9 0 0 0 0 1 +inserts a inserts i in ins inse BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 1 no 0 9 0 0 0 0 1 +neighbor. Then, neighbor. n ne nei neig BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 1 .,. 3 9 0 0 0 0 1 +connected to connected c co con conn BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 1 . 1 9 0 0 0 0 1 +ring link ring r ri rin ring BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 9 1 no 0 9 0 0 0 0 1 +"express link". "express " "e "ex "exp BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 1 "". 3 2 0 0 0 0 1 +Here, R2 here, H He Her Here BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 6 ,;, 3 10 0 0 0 0 1 +and R4 and a an and and BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 6 .(). 4 10 0 0 0 0 1 +then picks then t th the then BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 6 () 2 10 0 0 0 0 1 +(Step 3). (step ( (S (St (Ste BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 6 ().,. 5 9 0 0 0 0 1 +4.5. Ring 4.5. 4 4. 4.5 4.5. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 7 .. 2 10 0 0 0 0 1 +The main the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 8 : 1 10 0 0 0 0 1 +ring link ring r ri rin ring BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 9 8 ; 1 10 0 0 0 0 1 +ring link ring r ri rin ring BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 9 8 ; 1 10 0 0 0 0 1 +ring node ring r ri rin ring BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 9 8 ; 1 10 0 0 0 0 1 +ring node ring r ri rin ring BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 9 8 . 1 10 0 0 0 0 1 +The main the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 8 () 2 10 0 0 0 0 1 +to perturb to t to to to BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 8 .,' 3 10 0 0 0 0 1 +changed, all changed, c ch cha chan BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 8 , 1 9 0 0 0 0 1 +change. Link change. c ch cha chan BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 8 .; 2 8 0 0 0 0 1 +advantage of advantage a ad adv adva BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 8 . 1 9 0 0 0 0 1 +in the in i in in in BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 9 8 no 0 9 0 0 0 0 1 +(until the (until ( (u (un (unt BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 8 (.) 3 7 0 0 0 0 1 +The removal the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 11 , 1 10 0 0 0 0 1 +of a of o of of of BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 11 . 1 10 0 0 0 0 1 +Kompella & kompella K Ko Kom Komp BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 10 11 no 0 9 0 0 1 0 0 +Expires April expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 11 , 1 10 0 0 0 0 0 +[Page 12] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 10 0 - 1 10 0 0 1 0 1 +Resilient MPLS resilient R Re Res Resi BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 0 no 0 10 0 0 1 0 1 +October 2019 october O Oc Oct Octo BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 10 0 no 0 6 0 0 0 0 1 +simple ring, simple s si sim simp BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 0 ,., 3 9 0 0 0 0 1 +express links, express e ex exp expr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 0 , 1 10 0 0 0 0 1 +protection. protection. protection. p pr pro prot BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 0 . 1 1 0 0 0 0 1 +The addition the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 0 . 1 10 0 0 0 0 1 +5. Ring 5. 5 5. 5. 5. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 1 . 1 10 0 0 0 0 1 +Each ring each E Ea Eac Each BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 1 no 0 8 0 0 0 0 1 +protocols it protocols p pr pro prot BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 1 .- 2 9 0 0 0 0 1 +level OAM level l le lev leve BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 1 . 1 9 0 0 0 0 1 +both neighbors both b bo bot both BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 1 ... 3 10 0 0 0 0 1 +Each ring each E Ea Eac Each BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 2 no 0 9 0 0 0 0 1 +ring LSP. ring r ri rin ring BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 10 2 .-;, 4 9 0 0 0 0 1 +BFD would bfd B BF BFD BFD BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 2 .; 2 10 0 0 0 0 1 +default is default d de def defa BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 2 . 1 3 0 0 0 0 1 +6. Advanced 6. 6 6. 6. 6. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 3 . 1 10 0 0 0 0 1 +6.1. Half-rings 6.1. 6 6. 6.1 6.1. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 3 ..- 3 10 0 0 0 0 1 +In some in I In In In BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 10 4 ,, 2 9 0 0 0 0 1 +permanently missing permanently p pe per perm BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 4 (), 3 9 0 0 0 0 1 +because the because b be bec beca BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 4 . 1 9 0 0 0 0 1 +Either way, either E Ei Eit Eith BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 4 ,. 2 9 0 0 0 0 1 +ring a ring r ri rin ring BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 10 4 "-".- 5 9 0 0 0 0 1 +a way a a a a a BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 1 0 1 0 0 0 0 0 10 4 . 1 9 0 0 0 0 1 +This topic this T Th Thi This BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 4 ; 1 10 0 0 0 0 1 +for a for f fo for for BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 4 . 1 3 0 0 0 0 1 +6.2. Hub 6.2. 6 6. 6.2 6.2. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 6 .. 2 10 0 0 0 0 1 +Let's call let's L Le Let Let' BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 10 6 '() 3 10 0 0 0 0 1 +"hub node(s)" "hub " "h "hu "hub BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 6 "()"(,.) 8 9 0 0 0 0 1 +ring has ring r ri rin ring BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 10 6 .- 2 9 0 0 0 0 1 +ring node ring r ri rin ring BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 10 6 . 1 9 0 0 0 0 1 +This could this T Th Thi This BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 6 ,,(-) 5 10 0 0 0 0 1 +H1 and h1 H H1 H1 H1 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 6 (); 3 9 0 0 0 0 1 +would be would w wo wou woul BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 6 -., 3 9 0 0 0 0 1 +prefers H1; prefers p pr pre pref BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 6 ;, 2 9 0 0 0 0 1 +LSP, then lsp, L LS LSP LSP, BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 6 ,. 2 3 0 0 0 0 1 +If H1 if I If If If BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 9 ,- 2 9 0 0 0 0 1 +from H1 from f fr fro from BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 9 ,,' 3 9 0 0 0 0 1 +chosen. Thereafter, chosen. c ch cho chos BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 9 .,, 3 9 0 0 0 0 1 +then to then t th the then BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 9 .,. 3 10 0 0 0 0 1 +Since this since S Si Sin Sinc BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 9 , 1 9 0 0 0 0 1 +Kompella & kompella K Ko Kom Komp BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 10 11 no 0 9 0 0 1 0 0 +Expires April expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 11 , 1 10 0 0 0 0 0 +[Page 13] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 10 0 - 1 10 0 0 1 0 1 +Resilient MPLS resilient R Re Res Resi BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 0 no 0 10 0 0 1 0 1 +October 2019 october O Oc Oct Octo BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 10 0 no 0 6 0 0 0 0 1 +useful problem useful u us use usef BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 0 ., 2 8 0 0 0 0 1 +addressed in addressed a ad add addr BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 0 ;. 2 10 0 0 0 0 1 +7. Security 7. 7 7. 7. 7. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 1 . 1 10 0 0 0 0 1 +This document this T Th Thi This BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 1 -,,-, 5 9 0 0 0 0 1 +all of all a al all all BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 1 . 1 10 0 0 0 0 1 +do not do d do do do BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 1 no 0 9 0 0 0 0 1 +control plane control c co con cont BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 1 , 1 9 0 0 0 0 1 +the messages the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 1 no 0 9 0 0 0 0 1 +semantics are semantics s se sem sema BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 1 . 1 3 0 0 0 0 1 +8. Acknowledgments 8. 8 8. 8. 8. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 3 . 1 10 0 0 0 0 1 +Many thanks many M Ma Man Many BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 11 3 - 1 9 0 0 0 0 1 +networks and networks n ne net netw BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 11 3 no 0 10 0 0 0 0 1 +notion of notion n no not noti BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 3 . 1 4 0 0 0 0 1 +9. IANA 9. 9 9. 9. 9. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 4 . 1 10 0 0 0 0 1 +There are there T Th The Ther BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 4 . 1 10 0 0 0 0 1 +10. References 10. 1 10 10. 10. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 4 . 1 10 0 0 0 0 1 +10.1. Normative 10.1. 1 10 10. 10.1 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 5 .. 2 10 0 0 0 0 1 +[RFC2119] Bradner, [rfc2119] [ [R [RF [RFC BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 1 0 0 0 11 5 [],.," 6 10 0 0 0 0 1 +Requirement Levels", requirement R Re Req Requ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 5 ",,, 4 6 0 0 0 0 1 +DOI 10.17487/RFC2119, doi D DO DOI DOI BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 0 1 0 0 0 0 0 0 11 5 ./,, 4 5 0 0 0 0 1 +<https://www.rfc-editor.org/info/rfc2119>. <https://www.rfc-editor.org/info/rfc2119>. <https://www.rfc-editor.org/info/rfc2119>. < <h <ht <htt BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS CONTAINSDIGITS 0 0 0 0 1 0 0 1 11 5 ://.-.//. 9 6 0 0 0 0 1 +10.2. Informative 10.2. 1 10 10. 10.2 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 6 .. 2 10 0 0 0 0 1 +[I-D.ietf-mpls-rfc4379bis] [I-D.ietf-mpls-rfc4379bis] [i-d.ietf-mpls-rfc4379bis] [ [I [I- [I-D BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 6 [-.--] 6 4 0 0 0 0 1 +Kompella, K., kompella, K Ko Kom Komp BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 6 ,.,,.,,.,,., 12 9 0 0 0 0 1 +Aldrin, S., aldrin, A Al Ald Aldr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 6 ,.,.,"- 7 10 0 0 0 0 1 +Switched (MPLS) switched S Sw Swi Swit BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 6 ()",--- 7 9 0 0 0 0 1 +rfc4379bis-09 (work rfc4379bis-09 r rf rfc rfc4 BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 6 -(),. 5 8 0 0 0 0 1 +[RFC3209] Awduche, [rfc3209] [ [R [RF [RFC BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 8 [],.,,.,,.,,.,,., 17 10 0 0 0 0 1 +and G. and a an and and BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 8 .,"-: 5 7 0 0 0 0 1 +Tunnels", RFC tunnels", T Tu Tun Tunn BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 8 ",,./,, 7 8 0 0 0 0 1 +<https://www.rfc-editor.org/info/rfc3209>. <https://www.rfc-editor.org/info/rfc3209>. <https://www.rfc-editor.org/info/rfc3209>. < <h <ht <htt BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 1 11 8 ://.-.//. 9 6 0 0 0 0 1 +[RFC3630] Katz, [rfc3630] [ [R [RF [RFC BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 10 [],.,,.,.," 11 10 0 0 0 0 1 +(TE) Extensions (te) ( (T (TE (TE) BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 11 10 ()",, 5 6 0 0 0 0 1 +DOI 10.17487/RFC3630, doi D DO DOI DOI BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 0 1 0 0 0 0 0 0 11 10 ./,, 4 5 0 0 0 0 1 +<https://www.rfc-editor.org/info/rfc3630>. <https://www.rfc-editor.org/info/rfc3630>. <https://www.rfc-editor.org/info/rfc3630>. < <h <ht <htt BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 1 11 10 ://.-.//. 9 6 0 0 0 0 1 +Kompella & kompella K Ko Kom Komp BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 11 no 0 9 0 0 1 0 0 +Expires April expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 11 , 1 10 0 0 0 0 0 +[Page 14] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 0 - 1 10 0 0 1 0 1 +Resilient MPLS resilient R Re Res Resi BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 0 no 0 10 0 0 1 0 1 +October 2019 october O Oc Oct Octo BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 11 0 no 0 6 0 0 0 0 1 +[RFC5036] Andersson, [rfc5036] [ [R [RF [RFC BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 0 [],.,.,,.,.,.,., 16 10 0 0 0 0 1 +"LDP Specification", "ldp " "L "LD "LDP BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 11 0 "",,./, 7 8 0 0 0 0 1 +October 2007, october O Oc Oct Octo BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 11 0 ,://.-.//. 10 8 0 0 0 0 1 +[RFC5305] Li, [rfc5305] [ [R [RF [RFC BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 2 [],..,"- 8 10 0 0 0 0 1 +Engineering", RFC engineering", E En Eng Engi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 2 ",,./, 6 9 0 0 0 0 1 +2008, <https://www.rfc-editor.org/info/rfc5305>. 2008, 2 20 200 2008 BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 1 0 0 0 11 2 ,://.-.//. 10 8 0 0 0 0 1 +[RFC8402] Filsfils, [rfc8402] [ [R [RF [RFC BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 4 [],.,.,,.,.,,., 15 10 0 0 0 0 1 +Decraene, B., decraene, D De Dec Decr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 4 ,.,,.,.," 9 8 0 0 0 0 1 +Routing Architecture", routing R Ro Rou Rout BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 11 4 ",,./, 6 9 0 0 0 0 1 +July 2018, july J Ju Jul July BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 11 4 ,://.-.//. 10 8 0 0 0 0 1 +Authors' Addresses authors' A Au Aut Auth BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 7 ' 1 10 0 0 0 0 1 +Kireeti Kompella kireeti K Ki Kir Kire BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 8 no 0 7 0 0 0 0 1 +Juniper Networks, juniper J Ju Jun Juni BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 8 ,. 2 10 0 0 0 0 1 +1133 Innovation 1133 1 11 113 1133 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS ALLDIGIT 0 0 0 0 1 0 0 0 11 8 no 0 8 0 0 0 0 1 +Sunnyvale, CA sunnyvale, S Su Sun Sunn BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 8 , 1 8 0 0 0 0 1 +USA USA usa U US USA USA BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 11 8 no 0 1 0 0 0 0 1 +Email: kireeti.kompella@gmail.com email: E Em Ema Emai BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 8 :.. 3 10 0 0 0 0 1 +Luis M. luis L Lu Lui Luis BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 1 0 0 0 0 0 0 11 9 . 1 6 0 0 0 0 1 +Telefonica Telefonica telefonica T Te Tel Tele BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 9 no 0 4 0 0 0 0 1 +Ronda de ronda R Ro Ron Rond BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 1 0 0 0 0 0 0 11 9 no 0 9 0 0 0 0 1 +Sur-3 building, sur-3 S Su Sur Sur- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 9 -, 2 10 0 0 0 0 1 +Madrid 28050 madrid M Ma Mad Madr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 1 0 0 0 0 0 0 11 9 no 0 5 0 0 0 0 1 +Spain Spain spain S Sp Spa Spai BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 1 0 0 0 0 0 0 11 9 no 0 2 0 0 0 0 1 +Email: luismiguel.contrerasmurillo@telefonica.com email: E Em Ema Emai BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 10 :.. 3 10 0 0 0 0 1 +URI: URI: uri: U UR URI URI: BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 11 10 : 1 1 0 0 0 0 1 +http://people.tid.es/LuisM.Contreras/ http://people.tid.es/LuisM.Contreras/ http://people.tid.es/luism.contreras/ h ht htt http BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 1 11 10 ://.././ 8 7 0 0 0 0 1 +Kompella & kompella K Ko Kom Komp BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 11 no 0 9 0 0 1 0 0 +Expires April expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 11 , 1 10 0 0 0 0 0 +[Page 15] [page [ [P [Pa [Pag BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 11 [] 2 4 0 0 0 0 0 + diff --git a/grobid-trainer/resources/dataset/segmentation/sdo/ietf/corpus/raw/ietf-rfc7654.txt.segmentation b/grobid-trainer/resources/dataset/segmentation/sdo/ietf/corpus/raw/ietf-rfc7654.txt.segmentation new file mode 100644 index 0000000000..7e82c2dc01 --- /dev/null +++ b/grobid-trainer/resources/dataset/segmentation/sdo/ietf/corpus/raw/ietf-rfc7654.txt.segmentation @@ -0,0 +1,680 @@ +Internet Engineering internet I In Int Inte BLOCKSTART PAGESTART NEWFONT HIGHERFONT 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 () 2 10 0 0 0 0 1 +S. Banks s. S S. S. S. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 . 1 3 0 0 0 0 1 +Request for request R Re Req Requ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 : 1 10 0 0 0 0 1 +VSS Monitoring vss V VS VSS VSS BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 no 0 5 0 0 0 0 1 +Category: Informational category: C Ca Cat Cate BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 : 1 8 0 0 0 0 1 +F. Calabria f. F F. F. F. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 . 1 4 0 0 0 0 1 +ISSN: 2070-1721 issn: I IS ISS ISSN BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 :- 2 5 0 0 0 0 1 +Cisco Systems cisco C Ci Cis Cisc BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 1 0 0 0 0 0 0 0 0 no 0 5 0 0 0 0 1 +G. Czirjak g. G G. G. G. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 . 1 4 0 0 0 0 1 +R. Machat r. R R. R. R. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 . 1 3 0 0 0 0 1 +Juniper Networks juniper J Ju Jun Juni BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 no 0 6 0 0 0 0 1 +October 2015 october O Oc Oct Octo BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 0 0 no 0 4 0 0 0 0 1 +Benchmarking Methodology benchmarking B Be Ben Benc BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 1 -() 3 10 0 0 0 0 1 +Abstract Abstract abstract A Ab Abs Abst BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 2 no 0 10 0 0 0 0 1 +Modern forwarding modern M Mo Mod Mode BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 2 -- 2 10 0 0 0 0 1 +plane disruptions plane p pl pla plan BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 2 no 0 9 0 0 0 0 1 +implementing a implementing i im imp impl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 2 - 1 9 0 0 0 0 1 +Upgrade (ISSU). upgrade U Up Upg Upgr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 2 (). 3 8 0 0 0 0 1 +methodologies and methodologies m me met meth BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 2 no 0 9 0 0 0 0 1 +behavior of behavior b be beh beha BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 2 (),. 4 9 0 0 0 0 1 +Status of status S St Sta Stat BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 5 no 0 10 0 0 0 0 1 +This document this T Th Thi This BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 5 ; 1 10 0 0 0 0 1 +published for published p pu pub publ BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 5 . 1 5 0 0 0 0 1 +This document this T Th Thi This BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 6 no 0 9 0 0 0 0 1 +(IETF). It (ietf). ( (I (IE (IET BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 6 ().. 4 9 0 0 0 0 1 +received public received r re rec rece BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 6 no 0 10 0 0 0 0 1 +Internet Engineering internet I In Int Inte BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 6 (). 3 9 0 0 0 0 1 +approved by approved a ap app appr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 6 no 0 9 0 0 0 0 1 +Standard; see standard; S St Sta Stan BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 6 ;. 2 5 0 0 0 0 1 +Information about information I In Inf Info BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 9 ,, 2 10 0 0 0 0 1 +and how and a an and and BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 9 no 0 7 0 0 0 0 1 +http://www.rfc-editor.org/info/rfc7654. http://www.rfc-editor.org/info/rfc7654. http://www.rfc-editor.org/info/rfc7654. h ht htt http BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 1 0 9 ://.-.//. 9 5 0 0 0 0 1 +Banks, et banks, B Ba Ban Bank BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 11 ,. 2 10 0 0 1 1 0 +Informational Informational informational I In Inf Info BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 11 no 0 10 0 0 0 0 0 +[Page 1] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 11 [] 2 6 0 0 0 0 0 +RFC 7654 rfc R RF RFC RFC BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 no 0 10 0 0 0 0 0 +Benchmarking Software benchmarking B Be Ben Benc BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 no 0 10 0 0 1 1 0 +October 2015 october O Oc Oct Octo BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 0 0 no 0 4 0 0 0 0 0 +Copyright Notice copyright C Co Cop Copy BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 no 0 10 0 0 0 0 1 +Copyright (c) copyright C Co Cop Copy BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 () 2 10 0 0 0 0 1 +document authors. document d do doc docu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 .. 2 6 0 0 0 0 1 +This document this T Th Thi This BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 ' 1 8 0 0 0 0 1 +Provisions Relating provisions P Pr Pro Prov BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 no 0 5 0 0 0 0 1 +(http://trustee.ietf.org/license-info) in (http://trustee.ietf.org/license-info) ( (h (ht (htt BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 1 0 0 (://../-) 9 9 0 0 0 0 1 +publication of publication p pu pub publ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 . 1 8 0 0 0 0 1 +carefully, as carefully, c ca car care BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 , 1 10 0 0 0 0 1 +to this to t to to to BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 . 1 9 0 0 0 0 1 +include Simplified include i in inc incl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 . 1 9 0 0 0 0 1 +the Trust the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 no 0 9 0 0 0 0 1 +described in described d de des desc BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 . 1 5 0 0 0 0 1 +Table of table T Ta Tab Tabl BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 1 no 0 10 0 0 0 0 1 +1. Introduction 1. 1 1. 1. 1. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 1 ..................................................... 53 10 0 0 0 0 1 +2. Conventions 2. 2 2. 2. 2. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 1 ................................ 32 10 0 0 0 0 1 +3. Generic 3. 3 3. 3. 3. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 1 .,........................... 29 10 0 0 0 0 1 +3.1. Software 3.1. 3 3. 3.1 3.1. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 1 ............................................ 44 9 0 0 0 0 1 +3.2. Software 3.2. 3 3. 3.2 3.2. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 1 ............................................. 45 9 0 0 0 0 1 +3.3. Upgrade 3.3. 3 3. 3.3 3.3. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 1 .................................................. 50 9 0 0 0 0 1 +3.4. Upgrade 3.4. 3 3. 3.4 3.4. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 1 ........................................... 43 9 0 0 0 0 1 +4. Test 4. 4 4. 4. 4. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 1 ................................................. 49 10 0 0 0 0 1 +4.1. Test 4.1. 4 4. 4.1 4.1. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 1 ................................................ 48 9 0 0 0 0 1 +4.2. Load 4.2. 4 4. 4.2 4.2. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 1 ................................................... 51 9 0 0 0 0 1 +5. ISSU 5. 5 5. 5. 5. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 1 ............................................ 44 10 0 0 0 0 1 +5.1. Pre-ISSU 5.1. 5 5. 5.1 5.1. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 1 ..-......................... 28 9 0 0 0 0 1 +5.2. Software 5.2. 5 5. 5.2 5.2. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 1 ............................................. 45 9 0 0 0 0 1 +5.3. Upgrade 5.3. 5 5. 5.3 5.3. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 1 ................................................. 49 9 0 0 0 0 1 +5.4. Post-ISSU 5.4. 5 5. 5.4 5.4. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 1 ..-.................................... 39 9 0 0 0 0 1 +5.5. ISSU 5.5. 5 5. 5.5 5.5. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 1 ................................. 33 9 0 0 0 0 1 +6. ISSU 6. 6 6. 6. 6. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 1 ......................................... 41 10 0 0 0 0 1 +7. Final 7. 7 7. 7. 7. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 1 .:................... 21 10 0 0 0 0 1 +7.1. Data 7.1. 7 7. 7.1 7.1. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 1 .............................. 30 9 0 0 0 0 1 +8. Security 8. 8 8. 8. 8. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 1 ......................................... 41 10 0 0 0 0 1 +9. References 9. 9 9. 9. 9. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 1 ...................................................... 54 10 0 0 0 0 1 +9.1. Normative 9.1. 9 9. 9.1 9.1. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 1 ........................................ 40 9 0 0 0 0 1 +9.2. Informative 9.2. 9 9. 9.2 9.2. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 1 ...................................... 38 9 0 0 0 0 1 +Acknowledgments ...................................................16 acknowledgments A Ac Ack Ackn BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 1 ................................................... 51 10 0 0 0 0 1 +Authors' Addresses authors' A Au Aut Auth BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 1 '................................................ 49 10 0 0 0 0 1 +Banks, et banks, B Ba Ban Bank BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 11 ,. 2 10 0 0 1 0 0 +Informational Informational informational I In Inf Info BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 1 11 no 0 10 0 0 0 0 0 +[Page 2] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 11 [] 2 6 0 0 0 0 0 +RFC 7654 rfc R RF RFC RFC BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 1 0 no 0 10 0 0 0 0 0 +Benchmarking Software benchmarking B Be Ben Benc BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 1 0 no 0 10 0 0 1 0 0 +October 2015 october O Oc Oct Octo BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 1 0 no 0 4 0 0 0 0 0 +1. Introduction 1. 1 1. 1. 1. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 0 . 1 10 0 0 0 0 1 +As required as A As As As BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 0 (), 3 9 0 0 0 0 1 +functionality has functionality f fu fun func BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 0 no 0 9 0 0 0 0 1 +upgrade or upgrade u up upg upgr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 0 no 0 10 0 0 0 0 1 +of eliminating of o of of of BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 0 / 1 9 0 0 0 0 1 +service. However, service. s se ser serv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 0 ., 2 9 0 0 0 0 1 +complete elimination complete c co com comp BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 0 , 1 9 0 0 0 0 1 +service degradation service s se ser serv BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 0 . 1 6 0 0 0 0 1 +The ISSU the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 2 no 0 10 0 0 0 0 1 +the entire the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 2 no 0 9 0 0 0 0 1 +sense, such sense, s se sen sens BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 2 ,. 2 9 0 0 0 0 1 +described herein described d de des desc BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 2 , 1 9 0 0 0 0 1 +supported by supported s su sup supp BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 2 . 1 6 0 0 0 0 1 +In support in I In In In BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 2 4 , 1 10 0 0 0 0 1 +operation can operation o op ope oper BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 4 : 1 6 0 0 0 0 1 +-The software -the - -T -Th -The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 4 - 1 10 0 0 0 0 1 +successive version successive s su suc succ BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 4 . 1 5 0 0 0 0 1 +-There are -there - -T -Th -The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 5 --. 3 10 0 0 0 0 1 +That is, that T Th Tha That BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 5 ,/ 2 9 0 0 0 0 1 +device remains device d de dev devi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 5 "".,, 5 9 0 0 0 0 1 +service providers service s se ser serv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 5 no 0 8 0 0 0 0 1 +maintenance window maintenance m ma mai main BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 5 () 2 9 0 0 0 0 1 +any risk. any a an any any BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 5 . 1 1 0 0 0 0 1 +-Interruptions to -interruptions - -I -In -Int BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 6 -. 2 10 0 0 0 0 1 +-The total -the - -T -Th -The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 7 -, 2 9 0 0 0 0 1 +reduce potential reduce r re red redu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 7 (.., 4 8 0 0 0 0 1 +failure event failure f fa fai fail BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 7 no 0 10 0 0 0 0 1 +redundancy). redundancy). redundancy). r re red redu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 7 ). 2 1 0 0 0 0 1 +This document this T Th Thi This BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 8 no 0 10 0 0 0 0 1 +forwarding device's forwarding f fo for forw BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 8 ', 2 8 0 0 0 0 1 +perspective of perspective p pe per pers BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 8 . 1 7 0 0 0 0 1 +Different hardware different D Di Dif Diff BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 9 , 1 10 0 0 0 0 1 +but a but b bu but but BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 9 no 0 9 0 0 0 0 1 +ISSU consists issu I IS ISS ISSU BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 2 9 () 2 9 0 0 0 0 1 +operate in operate o op ope oper BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 9 , 1 9 0 0 0 0 1 +engines (line engines e en eng engi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 9 (), 3 9 0 0 0 0 1 +fabric cards fabric f fa fab fabr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 9 . 1 8 0 0 0 0 1 +preclude the preclude p pr pre prec BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 9 no 0 9 0 0 0 0 1 +functions through functions f fu fun func BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 9 , 1 9 0 0 0 0 1 +Banks, et banks, B Ba Ban Bank BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 11 ,. 2 10 0 0 1 0 0 +Informational Informational informational I In Inf Info BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 2 11 no 0 10 0 0 0 0 0 +[Page 3] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 11 [] 2 6 0 0 0 0 0 +RFC 7654 rfc R RF RFC RFC BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 2 0 no 0 10 0 0 0 0 0 +Benchmarking Software benchmarking B Be Ben Benc BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 2 0 no 0 10 0 0 1 0 0 +October 2015 october O Oc Oct Octo BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 2 0 no 0 4 0 0 0 0 0 +which may which w wh whi whic BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 0 no 0 10 0 0 0 0 1 +device. As device. d de dev devi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 0 ., 2 9 0 0 0 0 1 +functions can functions f fu fun func BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 0 . 1 8 0 0 0 0 1 +The concept the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 1 - 1 9 0 0 0 0 1 +by the by b by by by BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 1 ,- 2 10 0 0 0 0 1 +specific details specific s sp spe spec BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 1 (..,) 5 10 0 0 0 0 1 +scope of scope s sc sco scop BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 1 . 1 4 0 0 0 0 1 +Since most since S Si Sin Sinc BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 2 ,, 2 10 0 0 0 0 1 +do consist do d do do do BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 2 -- 2 9 0 0 0 0 1 +data-plane functionality, data-plane d da dat data BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 2 -, 2 9 0 0 0 0 1 +that would that t th tha that BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 2 . 1 8 0 0 0 0 1 +anticipated that anticipated a an ant anti BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 2 no 0 9 0 0 0 0 1 +readily extended readily r re rea read BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 2 . 1 9 0 0 0 0 1 +2. Conventions 2. 2 2. 2. 2. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 3 3 . 1 10 0 0 0 0 1 +The key the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 4 "","","","","", 15 9 0 0 0 0 1 +"SHOULD", "SHOULD "should", " "S "SH "SHO BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 3 4 "","","","","" 14 10 0 0 0 0 1 +document are document d do doc docu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 4 []. 3 9 0 0 0 0 1 +In this in I In In In BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 3 5 , 1 10 0 0 0 0 1 +only when only o on onl only BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 5 . 1 10 0 0 0 0 1 +interpreted as interpreted i in int inte BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 5 . 1 8 0 0 0 0 1 +3. Generic 3. 3 3. 3. 3. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 3 6 ., 2 10 0 0 0 0 1 +ISSU may issu I IS ISS ISSU BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 3 6 no 0 9 0 0 0 0 1 +planned change planned p pl pla plan BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 6 . 1 9 0 0 0 0 1 +to the to t to to to BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 6 ,, 2 9 0 0 0 0 1 +firmware logic firmware f fi fir firm BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 6 (.., 4 9 0 0 0 0 1 +Programmable Logic programmable P Pr Pro Prog BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 3 6 ()- 3 9 0 0 0 0 1 +(FPGA)). The (fpga)). ( (F (FP (FPG BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 3 6 ()). 4 8 0 0 0 0 1 +actions with actions a ac act acti BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 6 no 0 10 0 0 0 0 1 +device in device d de dev devi BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 6 . 1 2 0 0 0 0 1 +ISSU may issu I IS ISS ISSU BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 3 8 no 0 10 0 0 0 0 1 +or activated or o or or or BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 8 no 0 10 0 0 0 0 1 +even on even e ev eve even BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 8 ., 2 9 0 0 0 0 1 +will focus will w wi wil will BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 3 8 no 0 9 0 0 0 0 1 +user intervention. user u us use user BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 3 8 . 1 2 0 0 0 0 1 +The ISSU the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 10 no 0 9 0 0 0 0 1 +activities, as activities, a ac act acti BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 10 ,., 3 9 0 0 0 0 1 +operator must operator o op ope oper BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 3 10 no 0 10 0 0 0 0 1 +(defined further (defined ( (d (de (def BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 10 ()., 4 9 0 0 0 0 1 +implementation may implementation i im imp impl BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 10 - 1 9 0 0 0 0 1 +Banks, et banks, B Ba Ban Bank BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 11 ,. 2 10 0 0 1 0 0 +Informational Informational informational I In Inf Info BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 3 11 no 0 10 0 0 0 0 0 +[Page 4] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 11 [] 2 6 0 0 0 0 0 +RFC 7654 rfc R RF RFC RFC BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 3 0 no 0 10 0 0 0 0 0 +Benchmarking Software benchmarking B Be Ben Benc BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 3 0 no 0 10 0 0 1 0 0 +October 2015 october O Oc Oct Octo BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 3 0 no 0 4 0 0 0 0 0 +ISSU at issu I IS ISS ISSU BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 3 0 . 1 9 0 0 0 0 1 +to ISSU to t to to to BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 0 ( 1 9 0 0 0 0 1 +example, ISSU example, e ex exa exam BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 0 , 1 9 0 0 0 0 1 +(BFD) [RFC5880] (bfd) ( (B (BF (BFD BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 3 0 ()[]). 6 9 0 0 0 0 1 +operator to operator o op ope oper BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 3 0 no 0 9 0 0 0 0 1 +provide the provide p pr pro prov BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 0 . 1 9 0 0 0 0 1 +orchestrated test orchestrated o or orc orch BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 0 , 1 10 0 0 0 0 1 +and other and a an and and BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 0 no 0 10 0 0 0 0 1 +to the to t to to to BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 0 . 1 9 0 0 0 0 1 +analysis of analysis a an ana anal BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 0 no 0 9 0 0 0 0 1 +ISSU process issu I IS ISS ISSU BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 3 0 no 0 8 0 0 0 0 1 +quantify any quantify q qu qua quan BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 0 (-- 3 9 0 0 0 0 1 +perspective) allowing perspective) p pe per pers BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 0 ) 1 9 0 0 0 0 1 +with greater with w wi wit with BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 0 . 1 3 0 0 0 0 1 +3.1. Software 3.1. 3 3. 3.1 3.1. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 3 4 .. 2 10 0 0 0 0 1 +In this in I In In In BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 3 4 , 1 10 0 0 0 0 1 +to the to t to to to BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 4 . 1 9 0 0 0 0 1 +of software of o of of of BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 4 no 0 9 0 0 0 0 1 +the upgrade the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 4 ,. 2 8 0 0 0 0 1 +separation allows separation s se sep sepa BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 4 no 0 10 0 0 0 0 1 +outside of outside o ou out outs BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 4 ; 1 9 0 0 0 0 1 +new code new n ne new new BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 4 no 0 8 0 0 0 0 1 +operations. In operations. o op ope oper BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 4 . 1 9 0 0 0 0 1 +of the of o of of of BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 4 ,; 2 9 0 0 0 0 1 +downloading software downloading d do dow down BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 4 no 0 9 0 0 0 0 1 +are often are a ar are are BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 4 . 1 8 0 0 0 0 1 +verification may verification v ve ver veri BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 3 4 , 1 9 0 0 0 0 1 +verify the verify v ve ver veri BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 4 no 0 9 0 0 0 0 1 +pertinent checks. pertinent p pe per pert BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 4 ., 2 8 0 0 0 0 1 +mechanisms may mechanisms m me mec mech BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 4 )() 3 9 0 0 0 0 1 +meet a meet m me mee meet BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 4 () 2 9 0 0 0 0 1 +hardware or hardware h ha har hard BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 4 no 0 9 0 0 0 0 1 +or even or o or or or BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 4 )"" 3 9 0 0 0 0 1 +software. software. software. s so sof soft BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 4 . 1 1 0 0 0 0 1 +Where such where W Wh Whe Wher BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 10 , 1 10 0 0 0 0 1 +be verified, be b be be be BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 10 ,, 2 9 0 0 0 0 1 +issues in issues i is iss issu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 10 . 1 9 0 0 0 0 1 +verification (ensuring verification v ve ver veri BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 4 10 () 2 9 0 0 0 0 1 +well as well w we wel well BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 10 ( 1 10 0 0 0 0 1 +mechanisms would mechanisms m me mec mech BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 10 ). 2 5 0 0 0 0 1 +Banks, et banks, B Ba Ban Bank BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 11 ,. 2 10 0 0 1 0 0 +Informational Informational informational I In Inf Info BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 4 11 no 0 10 0 0 0 0 0 +[Page 5] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 11 [] 2 6 0 0 0 0 0 +RFC 7654 rfc R RF RFC RFC BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 4 0 no 0 10 0 0 0 0 0 +Benchmarking Software benchmarking B Be Ben Benc BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 4 0 no 0 10 0 0 1 0 0 +October 2015 october O Oc Oct Octo BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 4 0 no 0 4 0 0 0 0 0 +3.2. Software 3.2. 3 3. 3.2 3.2. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 4 0 .. 2 10 0 0 0 0 1 +In this in I In In In BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 4 0 , 1 10 0 0 0 0 1 +pertinent components pertinent p pe per pert BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 0 ( 1 9 0 0 0 0 1 +in standby in i in in in BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 4 0 ). 2 8 0 0 0 0 1 +performed by performed p pe per perf BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 0 , 1 9 0 0 0 0 1 +process itself, process p pr pro proc BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 0 , 1 9 0 0 0 0 1 +well as well w we wel well BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 0 . 1 8 0 0 0 0 1 +implementation, these implementation, i im imp impl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 0 , 1 9 0 0 0 0 1 +downloaded module(s) downloaded d do dow down BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 0 () 2 9 0 0 0 0 1 +hardware or hardware h ha har hard BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 0 . 1 9 0 0 0 0 1 +Where such where W Wh Whe Wher BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 0 , 1 9 0 0 0 0 1 +be verified, be b be be be BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 0 ,( 2 8 0 0 0 0 1 +operational issues operational o op ope oper BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 0 )., 3 9 0 0 0 0 1 +these checks these t th the thes BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 0 no 0 9 0 0 0 0 1 +included in included i in inc incl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 0 . 1 9 0 0 0 0 1 +to the to t to to to BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 0 ,, 2 9 0 0 0 0 1 +DUT begins dut D DU DUT DUT BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 4 0 . 1 9 0 0 0 0 1 +implementation, it implementation, i im imp impl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 0 , 1 9 0 0 0 0 1 +the DUT the t th the the BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 0 ,. 2 8 0 0 0 0 1 +3.3. Upgrade 3.3. 3 3. 3.3 3.3. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 4 5 .. 2 10 0 0 0 0 1 +In this in I In In In BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 4 6 ,, 2 9 0 0 0 0 1 +now upgraded now n no now now BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 6 ., 2 9 0 0 0 0 1 +"Upgrade Run" "upgrade " "U "Up "Upg BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 6 "" 2 10 0 0 0 0 1 +and state and a an and and BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 6 (,,) 4 9 0 0 0 0 1 +migrated to migrated m mi mig migr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 6 "",/ 4 10 0 0 0 0 1 +the standards the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 6 , 1 8 0 0 0 0 1 +appropriate pieces appropriate a ap app appr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 6 . 1 9 0 0 0 0 1 +outage(s) on outage(s) o ou out outa BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 6 () 2 9 0 0 0 0 1 +observed. This observed. o ob obs obse BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 6 ., 2 9 0 0 0 0 1 +plane should plane p pl pla plan BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 6 no 0 9 0 0 0 0 1 +plane should plane p pl pla plan BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 6 . 1 4 0 0 0 0 1 +If any if I If If If BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 9 -- 2 10 0 0 0 0 1 +stage, they stage, s st sta stag BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 9 ,. 2 9 0 0 0 0 1 +For some for F Fo For For BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 10 ,,. 3 10 0 0 0 0 1 +and above, and a an and and BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 10 ,. 2 9 0 0 0 0 1 +that case, that t th tha that BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 10 , 1 9 0 0 0 0 1 +need to need n ne nee need BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 10 . 1 4 0 0 0 0 1 +Banks, et banks, B Ba Ban Bank BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 11 ,. 2 10 0 0 1 0 0 +Informational Informational informational I In Inf Info BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 5 11 no 0 10 0 0 0 0 0 +[Page 6] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 11 [] 2 6 0 0 0 0 0 +RFC 7654 rfc R RF RFC RFC BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 5 0 no 0 10 0 0 0 0 0 +Benchmarking Software benchmarking B Be Ben Benc BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 5 0 no 0 10 0 0 1 0 0 +October 2015 october O Oc Oct Octo BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 5 0 no 0 4 0 0 0 0 0 +3.4. Upgrade 3.4. 3 3. 3.4 3.4. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 0 .. 2 10 0 0 0 0 1 +In this in I In In In BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 5 0 , 1 10 0 0 0 0 1 +physical nodes physical p ph phy phys BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 0 ( 1 9 0 0 0 0 1 +as applicable). as a as as as BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 0 )., 3 9 0 0 0 0 1 +the operator, the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 0 ,,..,- 6 9 0 0 0 0 1 +oriented operation, oriented o or ori orie BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 0 ,. 2 4 0 0 0 0 1 +4. Test 4. 4 4. 4. 4. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 1 . 1 10 0 0 0 0 1 +As stated as A As As As BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 2 [], 3 10 0 0 0 0 1 +Isolated Test isolated I Is Iso Isol BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 2 (). 3 4 0 0 0 0 1 +The reporting the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 2 no 0 9 0 0 0 0 1 +considerations from considerations c co con cons BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 2 []. 3 9 0 0 0 0 1 +perform multiple perform p pe per perf BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 2 . 1 9 0 0 0 0 1 +reported in reported r re rep repo BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 2 no 0 10 0 0 0 0 1 +ISSU impact issu I IS ISS ISSU BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 5 2 . 1 2 0 0 0 0 1 +4.1. Test 4.1. 4 4. 4.1 4.1. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 3 .. 2 10 0 0 0 0 1 +The hardware the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 4 () 2 9 0 0 0 0 1 +identical to identical i id ide iden BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 4 no 0 8 0 0 0 0 1 +production in production p pr pro prod BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 5 4 . 1 9 0 0 0 0 1 +include the include i in inc incl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 4 ,,, 3 9 0 0 0 0 1 +software release, software s so sof soft BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 4 ,, 2 9 0 0 0 0 1 +hardware in hardware h ha har hard BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 4 -, 2 10 0 0 0 0 1 +line cards line l li lin line BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 4 (,,,,.). 8 8 0 0 0 0 1 +For the for F Fo For For BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 6 , 1 9 0 0 0 0 1 +may be may m ma may may BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 1 1 0 0 1 0 0 5 6 ."" 3 9 0 0 0 0 1 +existing production existing e ex exi exis BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 6 --, 3 9 0 0 0 0 1 +emulate all emulate e em emu emul BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 6 , 1 10 0 0 0 0 1 +if appropriate, if i if if if BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 6 ,-, 3 9 0 0 0 0 1 +well as well w we wel well BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 6 --/., 5 9 0 0 0 0 1 +design a design d de des desi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 6 no 0 9 0 0 0 0 1 +deploy a deploy d de dep depl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 6 / 1 9 0 0 0 0 1 +devices, where devices, d de dev devi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 6 ,., 3 9 0 0 0 0 1 +impact of impact i im imp impa BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 6 , 1 8 0 0 0 0 1 +topologies to topologies t to top topo BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 6 ,. 2 9 0 0 0 0 1 +such, this such, s su suc such BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 6 ,() 3 9 0 0 0 0 1 +advised for advised a ad adv advi BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 6 . 1 4 0 0 0 0 1 +The second, the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 10 , 1 9 0 0 0 0 1 +endpoints are endpoints e en end endp BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 10 ""., 4 9 0 0 0 0 1 +control-plane information control-plane c co con cont BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 10 -( 2 9 0 0 0 0 1 +interfaces), and interfaces), i in int inte BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 10 ),- 3 10 0 0 0 0 1 +is applied. is i is is is BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 10 ., 2 9 0 0 0 0 1 +Banks, et banks, B Ba Ban Bank BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 11 ,. 2 10 0 0 1 0 0 +Informational Informational informational I In Inf Info BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 6 11 no 0 10 0 0 0 0 0 +[Page 7] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 11 [] 2 6 0 0 0 0 0 +RFC 7654 rfc R RF RFC RFC BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 6 0 no 0 10 0 0 0 0 0 +Benchmarking Software benchmarking B Be Ben Benc BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 6 0 no 0 10 0 0 1 0 0 +October 2015 october O Oc Oct Octo BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 6 0 no 0 4 0 0 0 0 0 +understand that understand u un und unde BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 0 no 0 10 0 0 0 0 1 +to that to t to to to BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 0 . 1 9 0 0 0 0 1 +is, control-plane is, i is is, is, BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 0 ,- 2 8 0 0 0 0 1 +methodology. Consequently, methodology. m me met meth BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 0 .,, 3 9 0 0 0 0 1 +with at with w wi wit with BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 0 no 0 10 0 0 0 0 1 +understand the understand u un und unde BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 0 . 1 10 0 0 0 0 1 +4.2. Load 4.2. 4 4. 4.2 4.2. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 1 .. 2 10 0 0 0 0 1 +In consideration in I In In In BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 6 2 , 1 9 0 0 0 0 1 +developed to developed d de dev deve BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 2 . 1 9 0 0 0 0 1 +This applied this T Th Thi This BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 2 no 0 10 0 0 0 0 1 +granular, repeatable granular, g gr gra gran BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 2 , 1 9 0 0 0 0 1 +traffic. Sufficient traffic. t tr tra traf BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 2 .() 3 9 0 0 0 0 1 +timing extrapolations timing t ti tim timi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 2 , 1 9 0 0 0 0 1 +e.g., 100 e.g., e e. e.g e.g. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 2 ..,. 4 9 0 0 0 0 1 +streams rather streams s st str stre BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 2 . 1 9 0 0 0 0 1 +The traffic the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 4 no 0 9 0 0 0 0 1 +and destination and a an and and BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 4 ,( 2 9 0 0 0 0 1 +Information Base) information I In Inf Info BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 4 ). 2 8 0 0 0 0 1 +environment includes environment e en env envi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 6 4 (,,), 5 10 0 0 0 0 1 +is critical is i is is is BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 4 . 1 6 0 0 0 0 1 +For mixed for F Fo For For BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 6 (..,), 6 10 0 0 0 0 1 +be distributed be b be be be BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 6 . 1 9 0 0 0 0 1 +should approximate should s sh sho shou BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 6 . 1 9 0 0 0 0 1 +cases, the cases, c ca cas case BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 6 , 1 8 0 0 0 0 1 +included in included i in inc incl BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 6 . 1 3 0 0 0 0 1 +The feature, the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 7 ,, 2 9 0 0 0 0 1 +should be should s sh sho shou BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 7 . 1 9 0 0 0 0 1 +from the from f fr fro from BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 7 no 0 9 0 0 0 0 1 +operator (for operator o op ope oper BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 6 7 (, 2 9 0 0 0 0 1 +test bed test t te tes test BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 7 )., 3 9 0 0 0 0 1 +of any of o of of of BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 7 , 1 8 0 0 0 0 1 +differences must differences d di dif diff BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 7 . 1 9 0 0 0 0 1 +recommended that recommended r re rec reco BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 7 (), 3 9 0 0 0 0 1 +preferably similar preferably p pr pre pref BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 7 . 1 9 0 0 0 0 1 +for monitoring for f fo for for BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 7 , 1 9 0 0 0 0 1 +supporting the supporting s su sup supp BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 7 no 0 8 0 0 0 0 1 +detecting interference detecting d de det dete BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 7 -() 3 9 0 0 0 0 1 +result of result r re res resu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 7 . 1 9 0 0 0 0 1 +exercise be exercise e ex exe exer BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 7 , 1 10 0 0 0 0 1 +all possible, all a al all all BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 7 , 1 9 0 0 0 0 1 +impairs execution impairs i im imp impa BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 7 . 1 5 0 0 0 0 1 +Banks, et banks, B Ba Ban Bank BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 11 ,. 2 10 0 0 1 0 0 +Informational Informational informational I In Inf Info BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 6 11 no 0 10 0 0 0 0 0 +[Page 8] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 11 [] 2 6 0 0 0 0 0 +RFC 7654 rfc R RF RFC RFC BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 6 0 no 0 10 0 0 0 0 0 +Benchmarking Software benchmarking B Be Ben Benc BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 6 0 no 0 10 0 0 1 0 0 +October 2015 october O Oc Oct Octo BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 6 0 no 0 4 0 0 0 0 0 +All in all A Al All All BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 0 , 1 10 0 0 0 0 1 +network environment network n ne net netw BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 7 0 no 0 9 0 0 0 0 1 +maximize the maximize m ma max maxi BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 0 . 1 7 0 0 0 0 1 +5. ISSU 5. 5 5. 5. 5. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 1 . 1 10 0 0 0 0 1 +As previously as A As As As BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 1 ,, 2 10 0 0 0 0 1 +ISSU process issu I IS ISS ISSU BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 7 1 . 1 8 0 0 0 0 1 +methodology assumes methodology m me met meth BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 1 no 0 8 0 0 0 0 1 +constructed per constructed c co con cons BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 1 . 1 9 0 0 0 0 1 +applied for applied a ap app appl BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 1 . 1 6 0 0 0 0 1 +5.1. Pre-ISSU 5.1. 5 5. 5.1 5.1. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 3 ..- 3 10 0 0 0 0 1 +The steps the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 3 . 1 10 0 0 0 0 1 +1. Verify 1. 1 1. 1. 1. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 4 . 1 10 0 0 0 0 1 +to complete to t to to to BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 4 (..,). 6 8 0 0 0 0 1 +2. Verify 2. 2 2. 2. 2. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 5 . 1 10 0 0 0 0 1 +as expected as a as as as BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 5 (..,,). 7 7 0 0 0 0 1 +3. Verify 3. 3 3. 3. 3. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 5 .,(- 4 10 0 0 0 0 1 +Stop Routing), stop S St Sto Stop BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 5 ),"";, 6 8 0 0 0 0 1 +between RPs between b be bet betw BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 5 , 1 9 0 0 0 0 1 +necessary. necessary. necessary. n ne nec nece BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 5 . 1 1 0 0 0 0 1 +4. Gather 4. 4 4. 4. 4. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 7 . 1 10 0 0 0 0 1 +applicable components. applicable a ap app appl BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 7 . 1 3 0 0 0 0 1 +5. Verify 5. 5 5. 5. 5. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 8 .""(, 5 10 0 0 0 0 1 +no critical no n no no no BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 8 no 0 8 0 0 0 0 1 +performed). performed). performed). p pe per perf BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 7 8 ). 2 1 0 0 0 0 1 +6. Note 6. 6 6. 6. 6. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 9 . 1 10 0 0 0 0 1 +deem applicable deem d de dee deem BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 9 . 1 8 0 0 0 0 1 +5.2. Software 5.2. 5 5. 5.2 5.2. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 9 .. 2 10 0 0 0 0 1 +The steps the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 9 . 1 10 0 0 0 0 1 +1. Establish 1. 1 1. 1. 1. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 10 . 1 10 0 0 0 0 1 +within the within w wi wit with BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 10 ., 2 9 0 0 0 0 1 +levels of levels l le lev leve BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 10 no 0 9 0 0 0 0 1 +the test the t th the the BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 10 . 1 3 0 0 0 0 1 +Banks, et banks, B Ba Ban Bank BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 11 ,. 2 10 0 0 1 0 0 +Informational Informational informational I In Inf Info BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 7 11 no 0 10 0 0 0 0 0 +[Page 9] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 7 11 [] 2 6 0 0 0 0 0 +RFC 7654 rfc R RF RFC RFC BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 7 0 no 0 10 0 0 0 0 0 +Benchmarking Software benchmarking B Be Ben Benc BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 7 0 no 0 10 0 0 1 0 0 +October 2015 october O Oc Oct Octo BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 7 0 no 0 4 0 0 0 0 0 +2. Clear, 2. 2 2. 2. 2. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 0 .,. 3 10 0 0 0 0 1 +If possible, if I If If If BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 0 ,. 2 9 0 0 0 0 1 +If the if I If If If BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 0 , 1 8 0 0 0 0 1 +appropriate polling appropriate a ap app appr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 0 , 1 9 0 0 0 0 1 +established, and established, e es est esta BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 0 ,. 2 7 0 0 0 0 1 +3. Apply 3. 3 3. 3. 3. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 1 . 1 10 0 0 0 0 1 +developed for developed d de dev deve BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 1 . 1 4 0 0 0 0 1 +4. Document 4. 4 4. 4. 4. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 2 . 1 10 0 0 0 0 1 +data supporting data d da dat data BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 2 ( 1 8 0 0 0 0 1 +characteristics of characteristics c ch cha char BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 2 ,..,, 5 9 0 0 0 0 1 +traffic volumes, traffic t tr tra traf BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 2 ,). 3 6 0 0 0 0 1 +5. Note 5. 5 5. 5. 5. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 3 .() 3 9 0 0 0 0 1 +utilizing the utilizing u ut uti util BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 3 no 0 9 0 0 0 0 1 +production (e.g., production p pr pro prod BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 7 3 (..,,,,., 9 10 0 0 0 0 1 +direct install direct d di dir dire BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 3 ). 2 9 0 0 0 0 1 +order to order o or ord orde BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 3 no 0 10 0 0 0 0 1 +lack of lack l la lac lack BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 3 -, 2 9 0 0 0 0 1 +network NTP network n ne net netw BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 7 3 . 1 5 0 0 0 0 1 +6. Take 6. 6 6. 6. 6. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 5 .- 2 10 0 0 0 0 1 +(CLI) prompts (cli) ( (C (CL (CLI BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 7 5 ().(.) 6 9 0 0 0 0 1 +Respond to respond R Re Res Resp BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 5 . 1 7 0 0 0 0 1 +7. Monitor 7. 7 7. 7. 7. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 6 . 1 10 0 0 0 0 1 +software level. software s so sof soft BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 6 . 1 9 0 0 0 0 1 +code, note code, c co cod code BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 6 ,. 2 10 0 0 0 0 1 +be recorded be b be be be BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 6 "". 3 3 0 0 0 0 1 +8. Review 8. 8 8. 8. 8. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 7 ., 2 10 0 0 0 0 1 +protocols have protocols p pr pro prot BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 7 ,. 2 8 0 0 0 0 1 +Verify that verify V Ve Ver Veri BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 7 no 0 9 0 0 0 0 1 +unexpected behavior. unexpected u un une unex BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 7 . 1 3 0 0 0 0 1 +5.3. Upgrade 5.3. 5 5. 5.3 5.3. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 9 .. 2 10 0 0 0 0 1 +The following the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 9 no 0 10 0 0 0 0 1 +are discretely are a ar are are BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 9 ., 2 9 0 0 0 0 1 +timer and timer t ti tim time BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 9 . 1 9 0 0 0 0 1 +1. Note 1. 1 1. 1. 1. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 10 .. 2 10 0 0 0 0 1 +2. Monitor 2. 2 2. 2. 2. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 10 . 1 10 0 0 0 0 1 +initializes with initializes i in ini init BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 10 no 0 9 0 0 0 0 1 +DUT. At dut. D DU DUT DUT. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 10 ., 2 9 0 0 0 0 1 +of control-plane of o of of of BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 10 -,, 3 9 0 0 0 0 1 +Banks, et banks, B Ba Ban Bank BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 11 ,. 2 10 0 0 1 0 0 +Informational Informational informational I In Inf Info BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 8 11 no 0 10 0 0 0 0 0 +[Page 10] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 11 [] 2 7 0 0 0 0 0 +RFC 7654 rfc R RF RFC RFC BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 0 no 0 10 0 0 0 0 0 +Benchmarking Software benchmarking B Be Ben Benc BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 8 0 no 0 10 0 0 1 0 0 +October 2015 october O Oc Oct Octo BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 8 0 no 0 4 0 0 0 0 0 +behavior. Once behavior. b be beh beha BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 0 . 1 9 0 0 0 0 1 +returned to returned r re ret retu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 0 , 1 10 0 0 0 0 1 +the duration the t th the the BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 0 "". 3 5 0 0 0 0 1 +3. Review 3. 3 3. 3. 3. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 1 . 1 10 0 0 0 0 1 +behavior that behavior b be beh beha BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 1 no 0 8 0 0 0 0 1 +(line card (line ( (l (li (lin BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 1 (,-,.). 7 8 0 0 0 0 1 +traffic generators traffic t tr tra traf BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 1 no 0 9 0 0 0 0 1 +interval. If interval. i in int inte BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 1 ., 2 8 0 0 0 0 1 +number of number n nu num numb BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 1 "", 3 8 0 0 0 0 1 +"Total Packet "total " "T "To "Tot BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 1 "". 3 8 0 0 0 0 1 +duration, note duration, d du dur dura BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 1 ,"".(, 6 9 0 0 0 0 1 +be calculated be b be be be BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 1 (/)*. 5 8 0 0 0 0 1 +Offered Load offered O Of Off Offe BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 1 ; 1 9 0 0 0 0 1 +milliseconds.) milliseconds.) milliseconds.) m mi mil mill BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 1 .) 2 2 0 0 0 0 1 +4. Verify 4. 4 4. 4. 4. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 5 . 1 10 0 0 0 0 1 +DUT and dut D DU DUT DUT BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 5 . 1 9 0 0 0 0 1 +memory statistics memory m me mem memo BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 5 , 1 9 0 0 0 0 1 +and ensure and a an and and BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 5 no 0 9 0 0 0 0 1 +(previously baselined) (previously ( (p (pr (pre BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 5 (). 3 4 0 0 0 0 1 +5.4. Post-ISSU 5.4. 5 5. 5.4 5.4. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 6 ..- 3 10 0 0 0 0 1 +The following the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 6 - 1 10 0 0 0 0 1 +are not are a ar are are BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 6 , 1 10 0 0 0 0 1 +execution in execution e ex exe exec BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 6 . 1 7 0 0 0 0 1 +1. Configuration 1. 1 1. 1. 1. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 7 . 1 10 0 0 0 0 1 +Examine the examine E Ex Exa Exam BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 8 - 1 10 0 0 0 0 1 +have occurred have h ha hav have BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 8 no 0 10 0 0 0 0 1 +in the in i in in in BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 8 8 . 1 6 0 0 0 0 1 +2. Exhaustive 2. 2 2. 2. 2. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 9 .- 2 10 0 0 0 0 1 +Review the review R Re Rev Revi BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 9 () 2 10 0 0 0 0 1 +to assess to t to to to BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 9 no 0 10 0 0 0 0 1 +the forwarding the t th the the BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 9 . 1 3 0 0 0 0 1 +3. Verify 3. 3 3. 3. 3. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 10 . 1 10 0 0 0 0 1 +the control the t th the the BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 10 . 1 7 0 0 0 0 1 +4. Verify 4. 4 4. 4. 4. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 10 .-() 4 10 0 0 0 0 1 +detected. detected. detected. d de det dete BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 10 . 1 1 0 0 0 0 1 +5. Verify 5. 5 5. 5. 5. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 11 .. 2 10 0 0 0 0 1 +Banks, et banks, B Ba Ban Bank BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 11 ,. 2 10 0 0 1 0 0 +Informational Informational informational I In Inf Info BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 9 11 no 0 10 0 0 0 0 0 +[Page 11] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 11 [] 2 7 0 0 0 0 0 +RFC 7654 rfc R RF RFC RFC BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 0 no 0 10 0 0 0 0 0 +Benchmarking Software benchmarking B Be Ben Benc BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 9 0 no 0 10 0 0 1 0 0 +October 2015 october O Oc Oct Octo BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 9 0 no 0 4 0 0 0 0 0 +6. Document 6. 6 6. 6. 6. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 0 . 1 10 0 0 0 0 1 +upon the upon u up upo upon BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 0 . 1 7 0 0 0 0 1 +5.5. ISSU 5.5. 5 5. 5.5 5.5. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 0 .. 2 10 0 0 0 0 1 +As an as A As As As BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 1 , 1 9 0 0 0 0 1 +test while test t te tes test BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 1 no 0 10 0 0 0 0 1 +or all or o or or or BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 1 . 1 7 0 0 0 0 1 +One approach one O On One One BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 2 no 0 10 0 0 0 0 1 +from the from f fr fro from BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 2 no 0 9 0 0 0 0 1 +routes to routes r ro rou rout BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 2 ''''., 6 9 0 0 0 0 1 +the operator the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 2 no 0 9 0 0 0 0 1 +to flap. to t to to to BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 2 ., 2 9 0 0 0 0 1 +BGP routes bgp B BG BGP BGP BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 2 . 1 9 0 0 0 0 1 +tester may tester t te tes test BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 9 2 no 0 10 0 0 0 0 1 +ISSU process issu I IS ISS ISSU BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 2 ,,. 3 9 0 0 0 0 1 +important to important i im imp impo BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 2 , 1 9 0 0 0 0 1 +for stress for f fo for for BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 2 ,() 3 9 0 0 0 0 1 +specifically leveraged specifically s sp spe spec BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 2 (). 3 9 0 0 0 0 1 +Furthermore, there furthermore, F Fu Fur Furt BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 2 ,'-'- 5 9 0 0 0 0 1 +protocol adjacency protocol p pr pro prot BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 2 no 0 9 0 0 0 0 1 +may adversely may m ma may may BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 1 1 0 0 1 0 0 9 2 no 0 8 0 0 0 0 1 +exercise. For exercise. e ex exe exer BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 2 ., 2 9 0 0 0 0 1 +recomputation of recomputation r re rec reco BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 2 no 0 9 0 0 0 0 1 +the perceived the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 2 ., 2 9 0 0 0 0 1 +events are events e ev eve even BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 9 2 , 1 9 0 0 0 0 1 +avoid the avoid a av avo avoi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 2 no 0 9 0 0 0 0 1 +harness. harness. harness. h ha har harn BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 2 . 1 1 0 0 0 0 1 +6. ISSU 6. 6 6. 6. 6. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 7 . 1 10 0 0 0 0 1 +Where a where W Wh Whe Wher BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 7 , 1 9 0 0 0 0 1 +aborted for aborted a ab abo abor BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 7 ., 2 10 0 0 0 0 1 +behavior may behavior b be beh beha BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 7 no 0 9 0 0 0 0 1 +aborted. While aborted. a ab abo abor BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 7 ., 2 8 0 0 0 0 1 +recommendation, if recommendation, r re rec reco BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 7 ," 2 9 0 0 0 0 1 +Download" or download" D Do Dow Down BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 9 7 """, 4 9 0 0 0 0 1 +device functionality device d de dev devi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 7 ., 2 10 0 0 0 0 1 +is aborted is i is is is BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 7 """", 5 9 0 0 0 0 1 +system may system s sy sys syst BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 7 , 1 9 0 0 0 0 1 +and, as and, a an and and, BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 7 ,,. 3 9 0 0 0 0 1 +support is support s su sup supp BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 9 7 ,/ 2 9 0 0 0 0 1 +verified, and verified, v ve ver veri BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 7 ,,, 3 10 0 0 0 0 1 +procedures provided procedures p pr pro proc BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 7 . 1 3 0 0 0 0 1 +Banks, et banks, B Ba Ban Bank BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 11 ,. 2 10 0 0 1 0 0 +Informational Informational informational I In Inf Info BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 9 11 no 0 10 0 0 0 0 0 +[Page 12] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 11 [] 2 7 0 0 0 0 0 +RFC 7654 rfc R RF RFC RFC BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 0 no 0 10 0 0 0 0 0 +Benchmarking Software benchmarking B Be Ben Benc BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 10 0 no 0 10 0 0 1 0 0 +October 2015 october O Oc Oct Octo BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 10 0 no 0 4 0 0 0 0 0 +7. Final 7. 7 7. 7. 7. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 0 .: 2 10 0 0 0 0 1 +All ISSU all A Al All All BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 0 no 0 8 0 0 0 0 1 +describing the describing d de des desc BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 0 "" 2 10 0 0 0 0 1 +loss and loss l lo los loss BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 0 , 1 10 0 0 0 0 1 +determined per determined d de det dete BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 0 . 1 10 0 0 0 0 1 +be the be b be be be BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 0 . 1 5 0 0 0 0 1 +However, the however, H Ho How Howe BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 3 , 1 10 0 0 0 0 1 +in support in i in in in BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 10 3 ,,, 3 9 0 0 0 0 1 +reporting points reporting r re rep repo BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 10 3 . 1 4 0 0 0 0 1 +Software download software S So Sof Soft BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 5 / 1 10 0 0 0 0 1 +T1 T1 t1 T T1 T1 T1 BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 5 no 0 0 0 0 0 0 1 +Upgrade/Run Upgrade/Run upgrade/run U Up Upg Upgr BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 10 5 / 1 10 0 0 0 0 1 +T2 T2 t2 T T2 T2 T2 BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 5 no 0 2 0 0 0 0 1 +ISSU Traffic issu I IS ISS ISSU BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 5 () 2 10 0 0 0 0 1 +TPL_frames TPL_frames tpl_frames T TP TPL TPL_ BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 10 5 no 0 2 0 0 0 0 1 +ISSU Traffic issu I IS ISS ISSU BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 6 () 2 10 0 0 0 0 1 +TPL_time TPL_time tpl_time T TP TPL TPL_ BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 10 6 no 0 2 0 0 0 0 1 +ISSU Housekeeping issu I IS ISS ISSU BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 6 no 0 10 0 0 0 0 1 +T3 T3 t3 T T3 T3 T3 BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 6 no 0 1 0 0 0 0 1 +(Time for (time ( (T (Ti (Tim BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 6 (- 2 10 0 0 0 0 1 +restored) restored) restored) r re res rest BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 6 ) 1 1 0 0 0 0 1 +Total ISSU total T To Tot Tota BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 7 no 0 10 0 0 0 0 1 +T4 (sum t4 T T4 T4 T4 BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 7 () 2 7 0 0 0 0 1 +The results the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 8 : 1 10 0 0 0 0 1 +-DUT hardware -dut - -D -DU -DUT BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 8 - 1 10 0 0 0 0 1 +-Test Topology -test - -T -Te -Tes BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 9 -( 2 10 0 0 0 0 1 +ISSU operation) issu I IS ISS ISSU BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 9 ) 1 2 0 0 0 0 1 +-Load Model -load - -L -Lo -Loa BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 9 - 1 10 0 0 0 0 1 +from the from f fr fro from BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 9 no 0 4 0 0 0 0 1 +-Time Results -time - -T -Ti -Tim BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 10 - 1 10 0 0 0 0 1 +-Anomalies Observed -anomalies - -A -An -Ano BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 10 - 1 10 0 0 0 0 1 +-Anomalies Observed -anomalies - -A -An -Ano BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 11 -- 2 10 0 0 0 0 1 +Banks, et banks, B Ba Ban Bank BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 11 ,. 2 10 0 0 1 0 0 +Informational Informational informational I In Inf Info BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 10 11 no 0 10 0 0 0 0 0 +[Page 13] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 11 [] 2 7 0 0 0 0 0 +RFC 7654 rfc R RF RFC RFC BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 0 no 0 10 0 0 0 0 0 +Benchmarking Software benchmarking B Be Ben Benc BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 10 0 no 0 10 0 0 1 0 0 +October 2015 october O Oc Oct Octo BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 10 0 no 0 4 0 0 0 0 0 +It is it I It It It BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 0 no 0 10 0 0 0 0 1 +outlined below: outlined o ou out outl BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 0 : 1 2 0 0 0 0 1 +Parameter Parameter parameter P Pa Par Para BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 0 no 0 1 0 0 0 0 1 +Units or units U Un Uni Unit BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 0 no 0 2 0 0 0 0 1 +--------------------------------------------------------------- --------------------------------------------------------------- --------------------------------------------------------------- - -- --- ---- BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 0 --------------------------------------------------------------- 63 10 0 0 0 0 1 +Traffic Load traffic T Tr Tra Traf BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 2 no 0 3 0 0 0 0 1 +Frames per frames F Fr Fra Fram BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 2 no 0 10 0 0 0 0 1 +Disruption (average) disruption D Di Dis Disr BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 2 () 2 10 0 0 0 0 1 +Frames Frames frames F Fr Fra Fram BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 2 no 0 3 0 0 0 0 1 +Impact Time impact I Im Imp Impa BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 2 () 2 10 0 0 0 0 1 +Milliseconds Milliseconds milliseconds M Mi Mil Mill BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 2 no 0 5 0 0 0 0 1 +Number of number N Nu Num Numb BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 2 no 0 10 0 0 0 0 1 +Integer count integer I In Int Inte BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 2 no 0 8 0 0 0 0 1 +Protocols Protocols protocols P Pr Pro Prot BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 3 no 0 4 0 0 0 0 1 +IPv4, IPv6, ipv4, I IP IPv IPv4 BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 3 ,,,. 4 10 0 0 0 0 1 +Frame Size frame F Fr Fra Fram BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 10 3 no 0 10 0 0 0 0 1 +Octets Octets octets O Oc Oct Octe BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 10 3 no 0 6 0 0 0 0 1 +Port Media port P Po Por Port BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 3 no 0 3 0 0 0 0 1 +Ethernet, Gigabit ethernet, E Et Eth Ethe BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 10 3 ,(), 4 10 0 0 0 0 1 +Packet over packet P Pa Pac Pack BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 3 (),. 4 8 0 0 0 0 1 +Port Speed port P Po Por Port BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 4 no 0 3 0 0 0 0 1 +10 Gbps, 10 1 10 10 10 BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS ALLDIGIT 0 0 0 0 0 0 0 0 10 4 ,,,. 4 10 0 0 0 0 1 +Interface Encaps interface I In Int Inte BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 4 no 0 4 0 0 0 0 1 +Ethernet, Ethernet ethernet, E Et Eth Ethe BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 10 4 ,,, 3 7 0 0 0 0 1 +High-Level Data high-level H Hi Hig High BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 4 -(),. 5 10 0 0 0 0 1 +Number of number N Nu Num Numb BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 5 no 0 10 0 0 0 0 1 +Integer count integer I In Int Inte BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 5 no 0 7 0 0 0 0 1 +flapped (ON flapped f fl fla flap BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 5 () 2 5 0 0 0 0 1 +(Optional) # (optional) ( (O (Op (Opt BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 5 ()/(.) 6 10 0 0 0 0 1 +flapped (OFF flapped f fl fla flap BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 5 () 2 5 0 0 0 0 1 +(Optional) # (optional) ( (O (Op (Opt BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 5 ()/(.) 6 10 0 0 0 0 1 +Document any document D Do Doc Docu BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 6 no 0 9 0 0 0 0 1 +upgrade has upgrade u up upg upgr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 6 . 1 9 0 0 0 0 1 +changes in changes c ch cha chan BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 10 6 , 1 9 0 0 0 0 1 +aberrant changes aberrant a ab abe aber BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 6 ., 2 9 0 0 0 0 1 +any unexpected any a an any any BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 6 no 0 8 0 0 0 0 1 +determination made determination d de det dete BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 6 ( 1 10 0 0 0 0 1 +variances or variances v va var vari BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 6 no 0 9 0 0 0 0 1 +mechanisms). mechanisms). mechanisms). m me mec mech BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 6 ). 2 1 0 0 0 0 1 +7.1. Data 7.1. 7 7. 7.1 7.1. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 9 .. 2 10 0 0 0 0 1 +When a when W Wh Whe When BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 9 ,' 2 9 0 0 0 0 1 +the DUT's the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 9 ',, 3 9 0 0 0 0 1 +interface statistics, interface i in int inte BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 9 ,,.,. 5 9 0 0 0 0 1 +such, one such, s su suc such BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 9 ,', 3 9 0 0 0 0 1 +rather, should rather, r ra rat rath BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 9 , 1 10 0 0 0 0 1 +Banks, et banks, B Ba Ban Bank BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 11 ,. 2 10 0 0 1 0 0 +Informational Informational informational I In Inf Info BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 11 no 0 10 0 0 0 0 0 +[Page 14] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 11 [] 2 7 0 0 0 0 0 +RFC 7654 rfc R RF RFC RFC BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 11 0 no 0 10 0 0 0 0 0 +Benchmarking Software benchmarking B Be Ben Benc BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 0 no 0 10 0 0 1 0 0 +October 2015 october O Oc Oct Octo BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 11 0 no 0 4 0 0 0 0 0 +for reporting for f fo for for BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 0 . 1 10 0 0 0 0 1 +testing or testing t te tes test BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 11 0 , 1 9 0 0 0 0 1 +collected from collected c co col coll BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 0 , 1 8 0 0 0 0 1 +equipment, outside equipment, e eq equ equi BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 0 ,. 2 5 0 0 0 0 1 +8. Security 8. 8 8. 8. 8. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 2 . 1 10 0 0 0 0 1 +All BMWG all A Al All All BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 2 no 0 10 0 0 0 0 1 +Environment (ITE), environment E En Env Envi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 11 2 (), 3 8 0 0 0 0 1 +production networks production p pr pro prod BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 11 2 . 1 6 0 0 0 0 1 +All benchmarking all A Al All All BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 3 no 0 7 0 0 0 0 1 +characterization using characterization c ch cha char BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 3 no 0 10 0 0 0 0 1 +with dedicated with w wi wit with BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 3 []. 3 9 0 0 0 0 1 +The benchmarking the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 4 no 0 10 0 0 0 0 1 +and MUST and a an and and BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 4 no 0 9 0 0 0 0 1 +traffic into traffic t tr tra traf BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 4 no 0 9 0 0 0 0 1 +management network. management m ma man mana BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 11 4 . 1 2 0 0 0 0 1 +Further, benchmarking further, F Fu Fur Furt BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 5 ,"-", 5 9 0 0 0 0 1 +solely on solely s so sol sole BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 5 / 1 10 0 0 0 0 1 +System Under system S Sy Sys Syst BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 5 (/). 4 4 0 0 0 0 1 +Special capabilities special S Sp Spe Spec BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 6 / 1 10 0 0 0 0 1 +benchmarking purposes. benchmarking b be ben benc BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 6 . 1 9 0 0 0 0 1 +from the from f fr fro from BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 6 / 1 9 0 0 0 0 1 +networks. networks. networks. n ne net netw BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 6 . 1 1 0 0 0 0 1 +9. References 9. 9 9. 9. 9. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 8 . 1 10 0 0 0 0 1 +9.1. Normative 9.1. 9 9. 9.1 9.1. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 8 .. 2 10 0 0 0 0 1 +[RFC2119] Bradner, [rfc2119] [ [R [RF [RFC BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 1 0 0 0 11 8 [],.," 6 10 0 0 0 0 1 +Requirement Levels", requirement R Re Req Requ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 8 ",,, 4 6 0 0 0 0 1 +DOI 10.17487/RFC2119, doi D DO DOI DOI BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 0 1 0 0 0 0 0 0 11 8 ./,, 4 5 0 0 0 0 1 +<http://www.rfc-editor.org/info/rfc2119>. <http://www.rfc-editor.org/info/rfc2119>. <http://www.rfc-editor.org/info/rfc2119>. < <h <ht <htt BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS CONTAINSDIGITS 0 0 0 0 1 0 0 1 11 8 ://.-.//. 9 6 0 0 0 0 1 +[RFC2544] Bradner, [rfc2544] [ [R [RF [RFC BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 1 0 0 0 11 10 [],..," 7 10 0 0 0 0 1 +Network Interconnect network N Ne Net Netw BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 11 10 ",, 3 6 0 0 0 0 1 +DOI 10.17487/RFC2544, doi D DO DOI DOI BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 0 1 0 0 0 0 0 0 11 10 ./,, 4 5 0 0 0 0 1 +<http://www.rfc-editor.org/info/rfc2544>. <http://www.rfc-editor.org/info/rfc2544>. <http://www.rfc-editor.org/info/rfc2544>. < <h <ht <htt BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS CONTAINSDIGITS 0 0 0 0 1 0 0 1 11 10 ://.-.//. 9 6 0 0 0 0 1 +Banks, et banks, B Ba Ban Bank BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 11 ,. 2 10 0 0 1 0 0 +Informational Informational informational I In Inf Info BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 11 no 0 10 0 0 0 0 0 +[Page 15] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 11 [] 2 7 0 0 0 0 0 +RFC 7654 rfc R RF RFC RFC BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 11 0 no 0 10 0 0 0 0 0 +Benchmarking Software benchmarking B Be Ben Benc BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 0 no 0 10 0 0 1 0 0 +October 2015 october O Oc Oct Octo BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 11 0 no 0 4 0 0 0 0 0 +9.2. Informative 9.2. 9 9. 9.2 9.2. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 0 .. 2 10 0 0 0 0 1 +[RFC5880] Katz, [rfc5880] [ [R [RF [RFC BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 1 [],..," 7 10 0 0 0 0 1 +(BFD)", RFC (bfd)", ( (B (BF (BFD BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 11 1 ()",,./,, 9 7 0 0 0 0 1 +<http://www.rfc-editor.org/info/rfc5880>. <http://www.rfc-editor.org/info/rfc5880>. <http://www.rfc-editor.org/info/rfc5880>. < <h <ht <htt BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 1 11 1 ://.-.//. 9 6 0 0 0 0 1 +[RFC6815] Bradner, [rfc6815] [ [R [RF [RFC BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 3 [],.,,.,,.,., 13 10 0 0 0 0 1 +"Applicability Statement "applicability " "A "Ap "App BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 3 ": 2 9 0 0 0 0 1 +Networks Considered networks N Ne Net Netw BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 11 3 ",, 3 6 0 0 0 0 1 +DOI 10.17487/RFC6815, doi D DO DOI DOI BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 0 1 0 0 0 0 0 0 11 3 ./,, 4 5 0 0 0 0 1 +<http://www.rfc-editor.org/info/rfc6815>. <http://www.rfc-editor.org/info/rfc6815>. <http://www.rfc-editor.org/info/rfc6815>. < <h <ht <htt BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 1 11 3 ://.-.//. 9 6 0 0 0 0 1 +Acknowledgments Acknowledgments acknowledgments A Ac Ack Ackn BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 7 no 0 10 0 0 0 0 1 +The authors the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 7 no 0 10 0 0 0 0 1 +feedback. feedback. feedback. f fe fee feed BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 7 . 1 1 0 0 0 0 1 +Authors' Addresses authors' A Au Aut Auth BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 8 ' 1 10 0 0 0 0 1 +Sarah Banks sarah S Sa Sar Sara BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 1 0 0 0 0 0 0 11 8 no 0 4 0 0 0 0 1 +VSS Monitoring vss V VS VSS VSS BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 11 8 no 0 5 0 0 0 0 1 +Email: sbanks@encrypted.net email: E Em Ema Emai BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 8 :. 2 10 0 0 0 0 1 +Fernando Calabria fernando F Fe Fer Fern BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 1 0 0 0 0 0 0 11 9 no 0 6 0 0 0 0 1 +Cisco Systems cisco C Ci Cis Cisc BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 1 0 0 0 0 0 0 11 9 no 0 5 0 0 0 0 1 +Email: fcalabri@cisco.com email: E Em Ema Emai BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 9 :. 2 10 0 0 0 0 1 +Gery Czirjak gery G Ge Ger Gery BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 9 no 0 4 0 0 0 0 1 +Juniper Networks juniper J Ju Jun Juni BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 9 no 0 6 0 0 0 0 1 +Email: gczirjak@juniper.net email: E Em Ema Emai BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 9 :. 2 10 0 0 0 0 1 +Ramdas Machat ramdas R Ra Ram Ramd BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 10 no 0 5 0 0 0 0 1 +Juniper Networks juniper J Ju Jun Juni BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 10 no 0 6 0 0 0 0 1 +Email: rmachat@juniper.net email: E Em Ema Emai BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 10 :. 2 10 0 0 0 0 1 +Banks, et banks, B Ba Ban Bank BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 11 ,. 2 10 0 0 1 0 0 +Informational Informational informational I In Inf Info BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 11 no 0 10 0 0 0 0 0 +[Page 16] [page [ [P [Pa [Pag BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 11 [] 2 7 0 0 0 0 0 + diff --git a/grobid-trainer/resources/dataset/segmentation/sdo/ietf/corpus/tei/XP015133673.training.segmentation.tei.xml b/grobid-trainer/resources/dataset/segmentation/sdo/ietf/corpus/tei/XP015133673.training.segmentation.tei.xml new file mode 100644 index 0000000000..76fd7cbee6 --- /dev/null +++ b/grobid-trainer/resources/dataset/segmentation/sdo/ietf/corpus/tei/XP015133673.training.segmentation.tei.xml @@ -0,0 +1,323 @@ +<?xml version="1.0" ?> +<tei xml:space="preserve"> + <teiHeader> + <fileDesc xml:id="0"/> + </teiHeader> + <text xml:lang="en"> + <front>server date 20190710; downloaded by EPO on 20190711 <lb/>Internet Research Task Force (IRTF) <lb/>M. Mosko <lb/>Request for Comments: 8569 <lb/>PARC, Inc. <lb/>Category: Experimental <lb/>I. Solis <lb/>ISSN: 2070-1721 <lb/>LinkedIn <lb/>C. Wood <lb/>University of California Irvine <lb/>July 2019 <lb/>Content-Centric Networking (CCNx) Semantics <lb/>Abstract <lb/>This document describes the core concepts of the Content-Centric <lb/>Networking (CCNx) architecture and presents a network protocol based <lb/>on two messages: Interests and Content Objects. It specifies the set <lb/>of mandatory and optional fields within those messages and describes <lb/>their behavior and interpretation. This architecture and protocol <lb/>specification is independent of a specific wire encoding. <lb/>The protocol also uses a control message called an Interest Return, <lb/>whereby one system can return an Interest message to the previous hop <lb/>due to an error condition. This indicates to the previous hop that <lb/>the current system will not respond to the Interest. <lb/>This document is a product of the Information-Centric Networking <lb/>Research Group (ICNRG). The document received wide review among <lb/>ICNRG participants. Two full implementations are in active use and <lb/>have informed the technical maturity of the protocol specification. <lb/>Mosko, et al. <lb/>Experimental <lb/>[Page 1] <lb/>RFC 8569 <lb/>CCNx Semantics <lb/>July 2019 <lb/>Status of This Memo <lb/>This document is not an Internet Standards Track specification; it is <lb/>published for examination, experimental implementation, and <lb/>evaluation. <lb/>This document defines an Experimental Protocol for the Internet <lb/>community. This document is a product of the Internet Research Task <lb/>Force (IRTF). The IRTF publishes the results of Internet-related <lb/>research and development activities. These results might not be <lb/>suitable for deployment. This RFC represents the consensus of the <lb/>Information-Centric Networking Research Group of the Internet <lb/>Research Task Force (IRTF). Documents approved for publication by <lb/>the IRSG are not candidates for any level of Internet Standard; see <lb/>Section 2 of RFC 7841. <lb/>Information about the current status of this document, any errata, <lb/>and how to provide feedback on it may be obtained at <lb/>https://www.rfc-editor.org/info/rfc8569. <lb/>Copyright Notice <lb/>Copyright (c) 2019 IETF Trust and the persons identified as the <lb/>document authors. All rights reserved. <lb/>This document is subject to BCP 78 and the IETF Trust's Legal <lb/>Provisions Relating to IETF Documents <lb/>(https://trustee.ietf.org/license-info) in effect on the date of <lb/>publication of this document. Please review these documents <lb/>carefully, as they describe your rights and restrictions with respect <lb/>to this document. <lb/></front> + + <note place="footnote">Mosko, et al. <lb/>Experimental <lb/></note> + + <page>[Page 2] <lb/></page> + + <note place="headnote">RFC 8569 <lb/>CCNx Semantics <lb/>July 2019 <lb/></note> + + <div type="toc">Table of Contents <lb/>1. Introduction . . . . . . . . . . . . . . . . . . . . . . . . <lb/>4 <lb/>1.1. Requirements Language . . . . . . . . . . . . . . . . . . <lb/>5 <lb/>1.2. Architecture . . . . . . . . . . . . . . . . . . . . . . <lb/>5 <lb/>1.3. Protocol Overview . . . . . . . . . . . . . . . . . . . . <lb/>6 <lb/>2. Protocol . . . . . . . . . . . . . . . . . . . . . . . . . . 10 <lb/>2.1. Message Grammar . . . . . . . . . . . . . . . . . . . . . 10 <lb/>2.2. Consumer Behavior . . . . . . . . . . . . . . . . . . . . 14 <lb/>2.3. Publisher Behavior . . . . . . . . . . . . . . . . . . . 15 <lb/>2.4. Forwarder Behavior . . . . . . . . . . . . . . . . . . . 16 <lb/>2.4.1. Interest HopLimit . . . . . . . . . . . . . . . . . . 16 <lb/>2.4.2. Interest Aggregation . . . . . . . . . . . . . . . . 17 <lb/>2.4.3. Content Store Behavior . . . . . . . . . . . . . . . 19 <lb/>2.4.4. Interest Pipeline . . . . . . . . . . . . . . . . . . 19 <lb/>2.4.5. Content Object Pipeline . . . . . . . . . . . . . . . 20 <lb/>3. Names . . . . . . . . . . . . . . . . . . . . . . . . . . . . 21 <lb/>3.1. Name Examples . . . . . . . . . . . . . . . . . . . . . . 23 <lb/>3.2. Interest Payload ID . . . . . . . . . . . . . . . . . . . 23 <lb/>4. Cache Control . . . . . . . . . . . . . . . . . . . . . . . . 23 <lb/>5. Content Object Hash . . . . . . . . . . . . . . . . . . . . . 24 <lb/>6. Link . . . . . . . . . . . . . . . . . . . . . . . . . . . . 24 <lb/>7. Hashes . . . . . . . . . . . . . . . . . . . . . . . . . . . 25 <lb/>8. Validation . . . . . . . . . . . . . . . . . . . . . . . . . 25 <lb/>8.1. Validation Algorithm . . . . . . . . . . . . . . . . . . 25 <lb/>8.2. Message Integrity Codes . . . . . . . . . . . . . . . . . 26 <lb/>8.3. Message Authentication Codes . . . . . . . . . . . . . . 26 <lb/>8.4. Signature . . . . . . . . . . . . . . . . . . . . . . . . 26 <lb/>9. Interest to Content Object Matching . . . . . . . . . . . . . 28 <lb/>10. Interest Return . . . . . . . . . . . . . . . . . . . . . . . 29 <lb/>10.1. Message Format . . . . . . . . . . . . . . . . . . . . . 30 <lb/>10.2. ReturnCode Types . . . . . . . . . . . . . . . . . . . . 31 <lb/>10.3. Interest Return Protocol . . . . . . . . . . . . . . . . 32 <lb/>10.3.1. No Route . . . . . . . . . . . . . . . . . . . . . . 32 <lb/>10.3.2. HopLimit Exceeded . . . . . . . . . . . . . . . . . 33 <lb/>10.3.3. Interest MTU Too Large . . . . . . . . . . . . . . . 33 <lb/>10.3.4. No Resources . . . . . . . . . . . . . . . . . . . . 33 <lb/>10.3.5. Path Error . . . . . . . . . . . . . . . . . . . . . 33 <lb/>10.3.6. Prohibited . . . . . . . . . . . . . . . . . . . . . 33 <lb/>10.3.7. Congestion . . . . . . . . . . . . . . . . . . . . . 34 <lb/>10.3.8. Unsupported Content Object Hash Algorithm . . . . . 34 <lb/>10.3.9. Malformed Interest . . . . . . . . . . . . . . . . . 34 <lb/>11. IANA Considerations . . . . . . . . . . . . . . . . . . . . . 34 <lb/>12. Security Considerations . . . . . . . . . . . . . . . . . . . 34 <lb/>13. References . . . . . . . . . . . . . . . . . . . . . . . . . 37 <lb/>13.1. Normative References . . . . . . . . . . . . . . . . . . 37 <lb/>13.2. Informative References . . . . . . . . . . . . . . . . . 37 <lb/>Authors' Addresses . . . . . . . . . . . . . . . . . . . . . . . 40 <lb/></div> + + <note place="footnote">Mosko, et al. <lb/>Experimental <lb/></note> + + <page>[Page 3] <lb/></page> + + <note place="headnote">RFC 8569 <lb/>CCNx Semantics <lb/>July 2019 <lb/></note> + + <body>1. Introduction <lb/>This document describes the principles of the CCNx architecture. It <lb/>describes a network protocol that uses a hierarchical name to forward <lb/>requests and to match responses to requests. It does not use <lb/>endpoint addresses, such as Internet Protocol. Restrictions in a <lb/>request can limit the response by the public key of the response's <lb/>signer or the cryptographic hash of the response. Every CCNx <lb/>forwarder along the path does the name matching and restriction <lb/>checking. The CCNx protocol fits within the broader framework of <lb/>Information-Centric Networking (ICN) protocols [RFC7927]. This <lb/>document concerns the semantics of the protocol and is not dependent <lb/>on a specific wire encoding. The CCNx Messages [RFC8609] document <lb/>describes a type-length-value (TLV) wire-protocol encoding. This <lb/>section introduces the main concepts of CCNx, which are further <lb/>elaborated in the remainder of the document. <lb/>The CCNx protocol derives from the early ICN work by Jacobson, et al. <lb/>[nnc]. Jacobson's version of CCNx is known as the 0.x version ("CCNx <lb/>0.x"), and the present work is known as the 1.0 version ("CCNx 1.0"). <lb/>There are two active implementations of CCNx 1.0. The most complete <lb/>implementation is Community ICN (CICN) [cicn], a Linux Foundation <lb/>project hosted at fd.io. Another active implementation is CCN-lite <lb/>[ccn-lite], with support for Internet of Things (IoT) systems and the <lb/>RIOT operating system. CCNx 0.x formed the basis of the Named Data <lb/>Networking (NDN) [ndn] university project. <lb/>The current CCNx 1.0 specification diverges from CCNx 0.x in a few <lb/>significant areas. The most pronounced behavioral difference between <lb/>CCNx 0.x and CCNx 1.0 is that CCNx 1.0 has a simpler response <lb/>processing behavior. In both versions, a forwarder uses a <lb/>hierarchical longest prefix match of a request name against the <lb/>forwarding information base (FIB) to send the request through the <lb/>network to a system that can issue a response. A forwarder must then <lb/>match a response's name to a request's name to determine the reverse <lb/>path and deliver the response to the requester. In CCNx 0.x, the <lb/>Interest name may be a hierarchical prefix of the response name, <lb/>which allows a form of Layer 3 (L3) content discovery. In CCNx 1.0, <lb/>a response's name must exactly equal a request's name. Content <lb/>discovery is performed by a higher-layer protocol. <lb/>The selector protocol "CCNx Selectors" [selectors] is an example of <lb/>using a higher-layer protocol on top of the CCNx 1.0 L3 to perform <lb/>content discovery. The selector protocol uses a method similar to <lb/>the original CCNx 0.x techniques without requiring partial name <lb/>matching of a response to a request in the forwarder. <lb/></body> + + <note place="footnote">Mosko, et al. <lb/>Experimental <lb/></note> + + <page>[Page 4] <lb/></page> + + <note place="headnote">RFC 8569 <lb/>CCNx Semantics <lb/>July 2019 <lb/></note> + + <body>This document represents the consensus of the Information-Centric <lb/>Networking Research Group (ICNRG). It is the first ICN protocol from <lb/>the RG, created from the early CCNx protocol [nnc] with significant <lb/>revision and input from the ICN community and RG members. This <lb/>document has received critical reading by several members of the ICN <lb/>community and the RG. The authors and RG chairs approve of the <lb/>contents. This document is sponsored under the IRTF, is not issued <lb/>by the IETF, and is not an IETF standard. This is an experimental <lb/>protocol and may not be suitable for any specific application. The <lb/>specification may change in the future. <lb/>1.1. Requirements Language <lb/>The key words "MUST", "MUST NOT", "REQUIRED", "SHALL", "SHALL NOT", <lb/>"SHOULD", "SHOULD NOT", "RECOMMENDED", "NOT RECOMMENDED", "MAY", and <lb/>"OPTIONAL" in this document are to be interpreted as described in <lb/>BCP 14 [RFC2119] [RFC8174] when, and only when, they appear in all <lb/>capitals, as shown here. <lb/>1.2. Architecture <lb/>We describe the architecture of the network in which CCNx operates <lb/>and introduce certain terminology from [terminology]. The detailed <lb/>behavior of each component and message grammar is in Section 2. <lb/>A producer (also called a "publisher") is an endpoint that <lb/>encapsulates content in Content Objects for transport in the CCNx <lb/>network. A producer has a public/private keypair and signs (directly <lb/>or indirectly) the Content Objects. Usually, the producer's KeyId <lb/>(hash of the public key) is well known or may be derived from the <lb/>producer's namespace via standard means. <lb/>A producer operates within one or more namespaces. A namespace is a <lb/>name prefix that is represented in the forwarding information base <lb/>(FIB). This allows a request to reach the producer and fetch a <lb/>response (if one exists). <lb/>The FIB is a table that tells a forwarder where to send a request. <lb/>It may point to a local application, a local cache or Content Store, <lb/>or to a remote system. If there is no matching entry in the FIB, a <lb/>forwarder cannot process a request. The detailed rules on name <lb/>matching to the FIB are given in Section 2.4.4. An endpoint has a <lb/>FIB, though it may be a simple default route. An intermediate system <lb/>(i.e., a router) typically has a much larger FIB. A core CCNx <lb/>forwarder, for example, would know all the global routes. <lb/></body> + + <note place="footnote">Mosko, et al. <lb/>Experimental <lb/></note> + + <page>[Page 5] <lb/></page> + + <note place="headnote">RFC 8569 <lb/>CCNx Semantics <lb/>July 2019 <lb/></note> + + <body>A consumer is an endpoint that requests a name. It is beyond the <lb/>scope of this document to describe how a consumer learns of a name or <lb/>publisher KeyId; higher-layer protocols built on top of CCNx handle <lb/>those tasks, such as search engines or lookup services or well-known <lb/>names. The consumer constructs a request, called an Interest, and <lb/>forwards it via the endpoint's FIB. The consumer should get back <lb/>either a response (called a Content Object) that matches the Interest <lb/>or a control message (called an Interest Return) that indicates the <lb/>network cannot handle the request. <lb/>There are three ways to detect errors in Interest handling. An <lb/>Interest Return is a network control message that indicates a low-<lb/>level error like "no route" or "out of resources". If an Interest <lb/>arrives at a producer, but the producer does not have the requested <lb/>content, the producer should send an application-specific error <lb/>message (e.g., a "not found" message). Finally, a consumer may not <lb/>receive anything; in which case, it should timeout and, depending on <lb/>the application, retry the request or return an error to the <lb/>application. <lb/>1.3. Protocol Overview <lb/>The goal of CCNx is to name content and retrieve the content from the <lb/>network without binding it to a specific network endpoint. A routing <lb/>system (specified separately) populates the FIB tables at each CCNx <lb/>router with hierarchical name prefixes that point towards the content <lb/>producers under that prefix. A request finds matching content along <lb/>those paths, in which case a response carries the data, or, if no <lb/>match is found, a control message indicates the failure. A request <lb/>may further refine acceptable responses with a restriction on the <lb/>response's signer and the cryptographic hash of the response. The <lb/>details of these restrictions are described below. <lb/>The CCNx name is a hierarchical series of name segments. Each name <lb/>segment has a type and zero or more bytes. Matching two names is <lb/>done as a binary comparison of the type and value, and is done <lb/>segment by segment. The human-readable form is defined under a URI <lb/>scheme "ccnx:" [ccnx-uri], though the canonical encoding of a name is <lb/>a series of pairs (type, octet string). There is no requirement that <lb/>any name segment be human readable or UTF-8. The first few segments <lb/>in a name will be matched against the FIB, and a routing protocol may <lb/>put its own restrictions on the routable name components (e.g., a <lb/>maximum length or character-encoding rules). In principle, name <lb/>segments and names have unbounded length, though in practice they are <lb/>limited by the wire encoding and practical considerations imposed by <lb/>a routing protocol. Note that in CCNx, name segments use binary <lb/>comparison, whereas in a URI, the authority uses a case-insensitive <lb/>hostname (due to DNS). <lb/></body> + + <note place="footnote">Mosko, et al. <lb/>Experimental <lb/></note> + + <page>[Page 6] <lb/></page> + + <note place="headnote">RFC 8569 <lb/>CCNx Semantics <lb/>July 2019 <lb/></note> + + <body>The CCNx name, as used by the forwarder, is purposefully left as a <lb/>general octet-encoded type and value without any requirements on <lb/>human readability and character encoding. The reason for this is <lb/>that we are concerned with how a forwarder processes names. We <lb/>expect that applications, routing protocols, or other higher layers <lb/>will apply their own conventions and restrictions on the allowed name <lb/>segment types and name segment values. <lb/>CCNx is a request and response protocol that fetches chunks of data <lb/>using a name. The integrity of each chunk may be directly asserted <lb/>through a digital signature or Message Authentication Code (MAC), or, <lb/>alternatively, indirectly via hash chains. Chunks may also carry <lb/>weaker Message Integrity Codes (MICs) or no integrity protection <lb/>mechanism at all. Because provenance information is carried with <lb/>each chunk (or larger indirectly protected block), we no longer need <lb/>to rely on host identities, such as those derived from TLS <lb/>certificates, to ascertain the chunk legitimacy. Therefore, data <lb/>integrity is a core feature of CCNx; it does not rely on the data <lb/>transmission channel. There are several options for data <lb/>confidentiality, discussed later. <lb/>This document only defines the general properties of CCNx names. In <lb/>some isolated environments, CCNx users may be able to use any name <lb/>they choose and either inject that name (or prefix) into a routing <lb/>protocol or use other information foraging techniques. In the <lb/>Internet environment, there will be policies around the formats of <lb/>names and assignments of names to publishers, though those are not <lb/>specified here. <lb/>The key concept of CCNx is that a subjective name is <lb/>cryptographically bound to a fixed payload. These publisher-<lb/>generated bindings can therefore be cryptographically verified. A <lb/>named payload is thus the tuple {{Name, ExtraFields, Payload, <lb/>ValidationAlgorithm}, ValidationPayload}, where all fields in the <lb/>inner tuple are covered by the validation payload (e.g., signature). <lb/>Consumers of this data can check the binding integrity by recomputing <lb/>the same cryptographic hash and verifying the digital signature in <lb/>ValidationPayload. <lb/>In addition to digital signatures (e.g., RSA), CCNx also supports <lb/>message authentication codes (e.g., Hashed Message Authentication <lb/>Code (HMAC)) and message integrity codes (e.g., Cyclic Redundancy <lb/>Checks (CRC)). To maintain the cryptographic binding, there should <lb/>be at least one object with a signature or authentication code, but <lb/>not all objects require it. For example, a first object with a <lb/>signature could refer to other objects via a hash chain, a Merkle <lb/>tree, or a signed manifest. The later objects may not have any <lb/></body> + + <note place="footnote">Mosko, et al. <lb/>Experimental <lb/></note> + + <page>[Page 7] <lb/></page> + + <note place="headnote">RFC 8569 <lb/>CCNx Semantics <lb/>July 2019 <lb/></note> + + <body>validation and rely purely on the references. The use of an <lb/>integrity code (e.g., CRC) is intended for detecting accidental <lb/>corruption in an Interest. <lb/>CCNx specifies a network protocol around Interests (request messages) <lb/>and Content Objects (response messages) to move named payloads. An <lb/>Interest includes the Name field, which identifies the desired <lb/>response, and optional matching restrictions. Restrictions limit the <lb/>possible matching Content Objects. Two restrictions exist: the Key <lb/>ID restriction (KeyIdRestr) and Content Object Hash restriction <lb/>(ContentObjectHashRestr). The first restriction on the KeyId limits <lb/>responses to those signed with a ValidationAlgorithm KeyId field <lb/>equal to the restriction. The second is the Content Object Hash <lb/>restriction, which limits the response to one where the cryptographic <lb/>hash of the entire named payload is equal to the restriction. <lb/>Section 9 fully explains how these restrictions limit matching of a <lb/>Content Object to an Interest. <lb/>The hierarchy of a CCNx name is used for routing via the longest <lb/>matching prefix in a forwarder. The longest matching prefix is <lb/>computed name segment by name segment in the hierarchical name, where <lb/>each name segment must be exactly equal to match. There is no <lb/>requirement that the prefix be globally routable. Within a <lb/>deployment, any local routing may be used, even one that only uses a <lb/>single flat (nonhierarchical) name segment. <lb/>Another concept of CCNx is that there should be flow balance between <lb/>Interest messages and Content Object messages. At the network level, <lb/>an Interest traveling along a single path should elicit no more than <lb/>one Content Object response. If some node sends the Interest along <lb/>more than one path, that node should consolidate the responses such <lb/>that only one Content Object flows back towards the requester. If an <lb/>Interest is sent broadcast or multicast on a multiple-access media, <lb/>the sender should be prepared for multiple responses unless some <lb/>other media-dependent mechanism like gossip suppression or leader <lb/>election is used. <lb/>As an Interest travels the forward path following the FIB, it <lb/>establishes state at each forwarder such that a Content Object <lb/>response can trace its way back to the original requester(s) without <lb/>the requester needing to include a routable return address. We use <lb/>the notional Pending Interest Table (PIT) as a method to store state <lb/>that facilitates the return of a Content Object. <lb/>The notional PIT stores the last hop of an Interest plus its Name <lb/>field and optional restrictions. This is the data required to match <lb/>a Content Object to an Interest (see Section 9). When a Content <lb/></body> + + <note place="footnote">Mosko, et al. <lb/>Experimental <lb/></note> + + <page>[Page 8] <lb/></page> + + <note place="headnote">RFC 8569 <lb/>CCNx Semantics <lb/>July 2019 <lb/></note> + + <body>Object arrives, it must be matched against the PIT to determine which <lb/>entries it satisfies. For each such entry, at most one copy of the <lb/>Content Object is sent to each listed last hop in the PIT entries. <lb/>An actual PIT is not mandated by this specification. An <lb/>implementation may use any technique that gives the same external <lb/>behavior. There are, for example, research papers that use <lb/>techniques like label switching in some parts of the network to <lb/>reduce the per-node state incurred by the PIT [dart]. Some <lb/>implementations store the PIT state in the FIB, so there is not a <lb/>second table. <lb/>If multiple Interests with the same {Name, [KeyIdRestr], <lb/>[ContentObjectHashRestr]} tuple arrive at a node before a Content <lb/>Object matching the first Interest comes back, they are grouped in <lb/>the same PIT entry and their last hops are aggregated (see <lb/>Section 2.4.2). Thus, one Content Object might satisfy multiple <lb/>pending Interests in a PIT. <lb/>In CCNx, higher-layer protocols are often called "name-based <lb/>protocols" because they operate on the CCNx name. For example, a <lb/>versioning protocol might append additional name segments to convey <lb/>state about the version of payload. A content discovery protocol <lb/>might append certain protocol-specific name segments to a prefix to <lb/>discover content under that prefix. Many such protocols may exist <lb/>and apply their own rules to names. They may be layered with each <lb/>protocol encapsulating (to the left) a higher layer's name prefix. <lb/>This document also describes a control message called an Interest <lb/>Return. A network element may return an Interest message to a <lb/>previous hop if there is an error processing the Interest. The <lb/>returned Interest may be further processed at the previous hop or <lb/>returned towards the Interest origin. When a node returns an <lb/>Interest, it indicates that the previous hop should not expect a <lb/>response from that node for the Interest, i.e., there is no PIT entry <lb/>left at the returning node for a Content Object to follow. <lb/>There are multiple ways to describe larger objects in CCNx. <lb/>Aggregating L3 Content Objects into larger objects is beyond the <lb/>scope of this document. One proposed method, File-Like ICN <lb/>Collection (FLIC) [flic], uses a manifest to enumerate the pieces of <lb/>a larger object. Manifests are, themselves, Content Objects. <lb/>Another option is to use a convention in the Content Object name, as <lb/>in the CCNx Chunking [chunking] protocol where a large object is <lb/>broken into small chunks and each chunk receives a special name <lb/>component indicating its serial order. <lb/></body> + + <note place="footnote">Mosko, et al. <lb/>Experimental <lb/></note> + + <page>[Page 9] <lb/></page> + + <note place="headnote">RFC 8569 <lb/>CCNx Semantics <lb/>July 2019 <lb/></note> + + <body>At the semantic level, described in this document, we do not address <lb/>fragmentation. One experimental fragmentation protocol, BeginEnd <lb/>Fragments [befrags], uses a multipoint PPP-style technique for use <lb/>over L2 interfaces with the specification for CCNx Messages [RFC8609] <lb/>in TLV wire encoding. <lb/>With these concepts, the remainder of the document specifies the <lb/>behavior of a forwarder in processing Interest, Content Object, and <lb/>Interest Return messages. <lb/>2. Protocol <lb/>This section defines the grammar of a CCNx Message (Interest, Content <lb/>Object, or Interest Return). It then presents typical behaviors for <lb/>a consumer, a publisher, and a forwarder. In the forwarder section, <lb/>there are detailed descriptions about how to handle the forwarder-<lb/>specific topics, such as HopLimit and Content Store, along with <lb/>detailed processing pipelines for Interest and Content Object <lb/>messages. <lb/>2.1. Message Grammar <lb/>The CCNx Message ABNF [RFC5234] grammar is shown in Figure 1. The <lb/>grammar does not include any encoding delimiters, such as TLVs. <lb/>Specific wire encodings are given in a separate document. If a <lb/>Validation section exists, the Validation Algorithm covers from the <lb/>Body (BodyName or BodyOptName) through the end of the ValidationAlg <lb/>section. The InterestLifetime, CacheTime, and Return Code fields <lb/>exist outside of the validation envelope and may be modified. <lb/>HashType, PayloadType, and Private Enterprise Number (PEN) need to <lb/>correspond to IANA values registered in the "CCNx Hash Function <lb/>Types" and "CCNx Payload Types" registries [ccnx-registry], as well <lb/>as the "Private Enterprise Numbers" registry [eprise-numbers], <lb/>respectively. <lb/>The various fields, in alphabetical order, are defined as: <lb/>AbsTime: Absolute times are conveyed as the 64-bit UTC time in <lb/>milliseconds since the epoch (standard POSIX time). <lb/>CacheTime: The absolute time after which the publisher believes <lb/>there is low value in caching the Content Object. This is a <lb/>recommendation to caches (see Section 4). <lb/>Cert: Some applications may wish to embed an X.509 certificate to <lb/>both validate the signature and provide a trust anchor. The Cert <lb/>is a DER-encoded X.509 certificate. <lb/></body> + + <note place="footnote">Mosko, et al. <lb/>Experimental <lb/></note> + + <page>[Page 10] <lb/></page> + + <note place="headnote">RFC 8569 <lb/>CCNx Semantics <lb/>July 2019 <lb/></note> + + <body>ConObjField: These are optional fields that may appear in a Content <lb/>Object. <lb/>ConObjHash: The value of the Content Object Hash, which is the <lb/>SHA256-32 over the message from the beginning of the body to the <lb/>end of the message. Note that this coverage area is different <lb/>from the ValidationAlg. This value SHOULD NOT be trusted across <lb/>domains (see Section 5). <lb/>ContentObjectHashRestr: The Content Object Hash restriction. A <lb/>Content Object must hash to the same value as the restriction <lb/>using the same HashType. The ContentObjectHashRestr MUST use <lb/>SHA256-32. <lb/>ExpiryTime: An absolute time after which the Content Object should <lb/>be considered expired (see Section 4). <lb/>Hash: Hash values carried in a Message carry a HashType to identify <lb/>the algorithm used to generate the hash followed by the hash <lb/>value. This form is to allow hash agility. Some fields may <lb/>mandate a specific HashType. <lb/>HashType: The algorithm used to calculate a hash, which must <lb/>correspond to one of the IANA "CCNx Hash Function Types" <lb/>[ccnx-registry]. <lb/>HopLimit: Interest messages may loop if there are loops in the <lb/>forwarding plane. To eventually terminate loops, each Interest <lb/>carries a HopLimit that is decremented after each hop and no <lb/>longer forwarded when it reaches zero. See Section 2.4. <lb/>InterestField: These are optional fields that may appear in an <lb/>Interest message. <lb/>KeyId: An identifier for the key used in the ValidationAlg. See <lb/>Validation (Section 8) for a description of how it is used for <lb/>MACs and signatures. <lb/>KeyIdRestr: The KeyId Restriction. A Content Object must have a <lb/>KeyId with the same value as the restriction. <lb/>KeyLink: A Link (see Section 6) that names how to retrieve the key <lb/>used to verify the ValidationPayload (see Section 8). <lb/>Lifetime: The approximate time during which a requester is willing <lb/>to wait for a response, usually measured in seconds. It is not <lb/>strongly related to the network round-trip time, though it must <lb/>necessarily be larger. <lb/></body> + + <note place="footnote">Mosko, et al. <lb/>Experimental <lb/></note> + + <page>[Page 11] <lb/></page> + + <note place="headnote">RFC 8569 <lb/>CCNx Semantics <lb/>July 2019 <lb/></note> + + <body>Name: A name is made up of a nonempty first segment followed by zero <lb/>or more additional segments, which may be of 0 length. Name <lb/>segments are opaque octet strings and are thus case sensitive if <lb/>encoding UTF-8. An Interest MUST have a Name. A Content Object <lb/>MAY have a Name (see Section 9). The segments of a name are said <lb/>to be complete if its segments uniquely identify a single Content <lb/>Object. A name is exact if its segments are complete. An <lb/>Interest carrying a full name is one that specifies an exact name <lb/>and the Content Object Hash restriction of the corresponding <lb/>Content Object. <lb/>Payload: The message's data, as defined by PayloadType. <lb/>PayloadType: The format of the Payload field. If missing, assume <lb/>Data type (T_PAYLOADTYPE_DATA) [ccnx-registry]. Data type means <lb/>the payload is opaque application bytes. Key type <lb/>(T_PAYLOADTYPE_KEY [ccnx-registry]) means the payload is a DER-<lb/>encoded public key or X.509 certificate. Link type <lb/>(T_PAYLOADTYPE_LINK [ccnx-registry]) means it is one or more Links <lb/>(see Section 6). <lb/>PublicKey: Some applications may wish to embed the public key used <lb/>to verify the signature within the message itself. The PublickKey <lb/>is DER encoded. <lb/>RelTime: A relative time, measured in milliseconds. <lb/>ReturnCode: States the reason an Interest message is being returned <lb/>to the previous hop (see Section 10.2). <lb/>SigTime: The absolute time (UTC milliseconds) when the signature was <lb/>generated. The signature time only applies to the validation <lb/>algorithm; it does not necessarily represent when the validated <lb/>message was created. <lb/>Vendor: Vendor-specific opaque data. The Vendor data includes the <lb/>IANA Private Enterprise Numbers [eprise-numbers], followed by <lb/>vendor-specific information. CCNx allows vendor-specific data in <lb/>most locations of the grammar. <lb/>Message <lb/>= Interest / ContentObject / InterestReturn <lb/>Interest <lb/>= IntHdr BodyName [Validation] <lb/>IntHdr <lb/>= HopLimit [Lifetime] *Vendor <lb/>ContentObject = ConObjHdr BodyOptName [Validation] <lb/>ConObjHdr <lb/>= [CacheTime / ConObjHash] *Vendor <lb/>InterestReturn= ReturnCode Interest <lb/>BodyName <lb/>= Name Common <lb/>BodyOptName <lb/>= [Name] Common <lb/></body> + + <note place="footnote">Mosko, et al. <lb/>Experimental <lb/></note> + + <page>[Page 12] <lb/></page> + + <note place="headnote">RFC 8569 <lb/>CCNx Semantics <lb/>July 2019 <lb/></note> + + <body>Common <lb/>= *Field [Payload] <lb/>Validation <lb/>= ValidationAlg ValidationPayload <lb/>Name <lb/>= FirstSegment *Segment <lb/>FirstSegment = 1*OCTET / Vendor <lb/>Segment <lb/>= *OCTET / Vendor <lb/>ValidationAlg = (RSA-SHA256 / EC-SECP-256K1 / EC-SECP-384R1 / <lb/>HMAC-SHA256 / CRC32C) *Vendor <lb/>ValidationPayload = 1*OCTET <lb/>PublicAlg <lb/>= KeyId [SigTime] [KeyLink] [PublicKey] [Cert] <lb/>RSA-SHA256 <lb/>= PublicAlg <lb/>EC-SECP-256K1 = PublicAlg <lb/>EC-SECP-384R1 = PublicAlg <lb/>HMAC-SHA256 <lb/>= KeyId [SigTime] [KeyLink] <lb/>CRC32C <lb/>= [SigTime] <lb/>AbsTime <lb/>= 8OCTET ; 64-bit UTC msec since epoch <lb/>CacheTime <lb/>= AbsTime <lb/>ConObjField <lb/>= ExpiryTime / PayloadType <lb/>ConObjHash <lb/>= Hash <lb/>ExpiryTime <lb/>= AbsTime <lb/>Field <lb/>= InterestField / ConObjField / Vendor <lb/>Hash <lb/>= HashType 1*OCTET <lb/>HashType <lb/>= 2OCTET ; IANA "CCNx Hash Function Types" <lb/>HopLimit <lb/>= OCTET <lb/>InterestField = KeyIdRestr / ContentObjectHashRestr <lb/>KeyId <lb/>= Hash <lb/>KeyIdRestr <lb/>= Hash <lb/>KeyLink <lb/>= Link <lb/>Lifetime <lb/>= RelTime <lb/>Link <lb/>= Name [KeyIdRestr] [ContentObjectHashRestr] <lb/>ContentObjectHashRestr = Hash <lb/>Payload <lb/>= *OCTET <lb/>PayloadType <lb/>= OCTET ; IANA "CCNx Payload Types" <lb/>PublicKey <lb/>= *OCTET ; DER-encoded public key <lb/>Cert <lb/>= *OCTET ; DER-encoded X.509 Certificate <lb/>RelTime <lb/>= 1*OCTET ; msec <lb/>ReturnCode <lb/>= OCTET ; see Section 10.2 <lb/>SigTime <lb/>= AbsTime <lb/>Vendor <lb/>= PEN *OCTET <lb/>PEN <lb/>= 1*OCTET ; IANA "Private Enterprise Number" <lb/>Figure 1: CCNx Message ABNF Grammar <lb/></body> + + <note place="footnote">Mosko, et al. <lb/>Experimental <lb/></note> + + <page>[Page 13] <lb/></page> + + <note place="headnote">RFC 8569 <lb/>CCNx Semantics <lb/>July 2019 <lb/></note> + + <body>2.2. Consumer Behavior <lb/>To request a piece of content for a given {Name, [KeyIdRest], <lb/>[ContentObjectHashRestr]} tuple, a consumer creates an Interest <lb/>message with those values. It MAY add a validation section, <lb/>typically only a CRC32C. A consumer MAY put a Payload field in an <lb/>Interest to send additional data to the producer beyond what is in <lb/>the name. The name is used for routing and may be remembered at each <lb/>hop in the notional PIT to facilitate returning a Content Object; <lb/>storing large amounts of state in the name could lead to high memory <lb/>requirements. Because the payload is not considered when forwarding <lb/>an Interest or matching a Content Object to an Interest, a consumer <lb/>SHOULD put an Interest Payload ID (see Section 3.2) as part of the <lb/>name to allow a forwarder to match Interests to Content Objects and <lb/>avoid aggregating Interests with different payloads. Similarly, if a <lb/>consumer uses a MAC or a signature, it SHOULD also include a unique <lb/>segment as part of the name to prevent the Interest from being <lb/>aggregated with other Interests or satisfied by a Content Object that <lb/>has no relation to the validation. <lb/>The consumer SHOULD specify an InterestLifetime, which is the length <lb/>of time the consumer is willing to wait for a response. The <lb/>InterestLifetime is an application-scale time, not a network round-<lb/>trip time (see Section 2.4.2). If not present, the InterestLifetime <lb/>will use a default value (2 seconds). <lb/>The consumer SHOULD set the Interest HopLimit to a reasonable value <lb/>or use the default 255. If the consumer knows the distances to the <lb/>producer via routing, it SHOULD use that value. <lb/>A consumer hands off the Interest to its first forwarder, which will <lb/>then forward the Interest over the network to a publisher (or <lb/>replica) that may satisfy it based on the name (see Section 2.4). <lb/>Interest messages are unreliable. A consumer SHOULD run a transport <lb/>protocol that will retry the Interest if it goes unanswered, up to <lb/>the InterestLifetime. No transport protocol is specified in this <lb/>document. <lb/>The network MAY send to the consumer an Interest Return message that <lb/>indicates the network cannot fulfill the Interest. The ReturnCode <lb/>specifies the reason for the failure, such as no route or congestion. <lb/>Depending on the ReturnCode, the consumer MAY retry the Interest or <lb/>MAY return an error to the requesting application. <lb/></body> + + <note place="footnote">Mosko, et al. <lb/>Experimental <lb/></note> + + <page>[Page 14] <lb/></page> + + <note place="headnote">RFC 8569 <lb/>CCNx Semantics <lb/>July 2019 <lb/></note> + + <body>If the content was found and returned by the first forwarder, the <lb/>consumer will receive a Content Object. The consumer uses the <lb/>following set of checks to validate a received Content Object: <lb/>o The consumer MUST ensure the Content Object is properly formatted. <lb/>o The consumer MUST verify that the returned Content Object matches <lb/>one or more pending Interests as per Section 9. <lb/>o If the Content Object is signed, the consumer SHOULD <lb/>cryptographically verify the signature as per Section 8. If it <lb/>does not have the corresponding key, it SHOULD fetch the key, such <lb/>as from a key resolution service or via the KeyLink. <lb/>o If the signature has a SigTime, the consumer MAY use that in <lb/>considering if the signature is valid. For example, if the <lb/>consumer is asking for dynamically generated content, it should <lb/>expect the SigTime not to be before the time the Interest was <lb/>generated. <lb/>o If the Content Object is signed, the consumer SHOULD assert the <lb/>trustworthiness of the signing key to the namespace. Such an <lb/>assertion is beyond the scope of this document, though one may use <lb/>traditional PKI methods, a trusted key resolution service, or <lb/>methods like [trust]. <lb/>o The consumer MAY cache the Content Object for future use, up to <lb/>the ExpiryTime if present. <lb/>o The consumer MAY accept a Content Object off the wire that is <lb/>expired. A packet Content Object may expire while in flight; <lb/>there is no requirement that forwarders drop expired packets in <lb/>flight. The only requirement is that Content Stores, caches, or <lb/>producers MUST NOT respond with an expired Content Object. <lb/>2.3. Publisher Behavior <lb/>This document does not specify the method by which names populate a <lb/>FIB table at forwarders (see Section 2.4). A publisher is either <lb/>configured with one or more name prefixes under which it may create <lb/>content or it chooses its name prefixes and informs the routing layer <lb/>to advertise those prefixes. <lb/>When a publisher receives an Interest, it SHOULD: <lb/>o Verify that the Interest is part of the publisher's namespace(s). <lb/></body> + + <note place="footnote">Mosko, et al. <lb/>Experimental <lb/></note> + + <page>[Page 15] <lb/></page> + + <note place="headnote">RFC 8569 <lb/>CCNx Semantics <lb/>July 2019 <lb/></note> + + <body>o If the Interest has a Validation section, verify it as per <lb/>Section 8. Usually an Interest will only have a CRC32C, unless <lb/>the publisher application specifically accommodates other <lb/>validations. The publisher MAY choose to drop Interests that <lb/>carry a Validation section if the publisher application does not <lb/>expect those signatures, as this could be a form of computational <lb/>denial of service. If the signature requires a key that the <lb/>publisher does not have, it is NOT RECOMMENDED that the publisher <lb/>fetch the key over the network unless it is part of the <lb/>application's expected behavior. <lb/>o Retrieve or generate the requested Content Object and return it to <lb/>the Interest's previous hop. If the requested content cannot be <lb/>returned, the publisher SHOULD reply with an Interest Return or a <lb/>Content Object with application payload that says the content is <lb/>not available; this Content Object should have a short ExpiryTime <lb/>in the future or not be cacheable (i.e., an expiry time of 0). <lb/>2.4. Forwarder Behavior <lb/>A forwarder routes Interest messages based on a Forwarding <lb/>Information Base (FIB), returns Content Objects that match Interests <lb/>to the Interest's previous hop, and processes Interest Return control <lb/>messages. It may also keep a cache of Content Objects in the <lb/>notional Content Store table. This document does not specify the <lb/>internal behavior of a forwarder, only these and other external <lb/>behaviors. <lb/>In this document, we will use two processing pipelines: one for <lb/>Interests and one for Content Objects. Interest processing is made <lb/>up of checking for duplicate Interests in the PIT (see <lb/>Section 2.4.2), checking for a cached Content Object in the Content <lb/>Store (see Section 2.4.3), and forwarding an Interest via the FIB. <lb/>Content Store processing is made up of checking for matching <lb/>Interests in the PIT and forwarding to those previous hops. <lb/>2.4.1. Interest HopLimit <lb/>Interest looping is not prevented in CCNx. An Interest traversing <lb/>loops is eventually discarded using the hop-limit field of the <lb/>Interest, which is decremented at each hop traversed by the Interest. <lb/>A loop may also terminate because the Interest is aggregated with its <lb/>previous PIT entry along the loop. In this case, the Content Object <lb/>will be sent back along the loop and eventually return to a node that <lb/>already forwarded the content, so it will likely not have a PIT entry <lb/>anymore. When the content reaches a node without a PIT entry, it <lb/></body> + + <note place="footnote">Mosko, et al. <lb/>Experimental <lb/></note> + + <page>[Page 16] <lb/></page> + + <note place="headnote">RFC 8569 <lb/>CCNx Semantics <lb/>July 2019 <lb/></note> + + <body>will be discarded. It may be that a new Interest or another looped <lb/>Interest will return to that same node, in which case the node will <lb/>return a cached response to make a new PIT entry, as below. <lb/>The HopLimit is the last resort method to stop Interest loops where a <lb/>Content Object chases an Interest around a loop and where the <lb/>intermediate nodes, for whatever reason, no longer have a PIT entry <lb/>and do not cache the Content Object. <lb/>Every Interest MUST carry a HopLimit. An Interest received from a <lb/>local application MAY have a 0 HopLimit, which restricts the Interest <lb/>to other local sources. <lb/>When an Interest is received from another forwarder, the HopLimit <lb/>MUST be positive, otherwise the forwarder will discard the Interest. <lb/>A forwarder MUST decrement the HopLimit of an Interest by at least 1 <lb/>before it is forwarded. <lb/>If the decremented HopLimit equals 0, the Interest MUST NOT be <lb/>forwarded to another forwarder; it MAY be sent to a local publisher <lb/>application or serviced from a local Content Store. <lb/>A RECOMMENDED HopLimit-processing pipeline is below: <lb/>o If Interest received from a remote system: <lb/>* If received HopLimit is 0, optionally send Interest Return <lb/>(HopLimit Exceeded), and discard Interest. <lb/>* Otherwise, decrement the HopLimit by 1. <lb/>o Process as per Content Store and Aggregation rules. <lb/>o If the Interest will be forwarded: <lb/>* If the (potentially decremented) HopLimit is 0, restrict <lb/>forwarding to the local system. <lb/>* Otherwise, forward as desired to local or remote systems. <lb/>2.4.2. Interest Aggregation <lb/>Interest aggregation is when a forwarder receives an Interest message <lb/>that could be satisfied by the response to another Interest message <lb/>already forwarded by the node, so the forwarder suppresses forwarding <lb/>the new Interest; it only records the additional previous hop so a <lb/>Content Object sent in response to the first Interest will satisfy <lb/>both Interests. <lb/></body> + + <note place="footnote">Mosko, et al. <lb/>Experimental <lb/></note> + + <page>[Page 17] <lb/></page> + + <note place="headnote">RFC 8569 <lb/>CCNx Semantics <lb/>July 2019 <lb/></note> + + <body>CCNx uses an Interest aggregation rule that assumes the <lb/>InterestLifetime is akin to a subscription time and is not a network <lb/>round-trip time. Some previous aggregation rules assumed the <lb/>lifetime was a round-trip time, but this leads to problems of <lb/>expiring an Interest before a response comes if the RTT is estimated <lb/>too short or interfering with an Automatic Repeat reQuest (ARQ) <lb/>scheme that wants to retransmit an Interest but a prior Interest <lb/>overestimated the RTT. <lb/>A forwarder MAY implement an Interest aggregation scheme. If it does <lb/>not, then it will forward all Interest messages. This does not imply <lb/>that multiple, possibly identical, Content Objects will come back. A <lb/>forwarder MUST still satisfy all pending Interests, so one Content <lb/>Object could satisfy multiple similar Interests, even if the <lb/>forwarder did not suppress duplicate Interest messages. <lb/>A RECOMMENDED Interest aggregation scheme is: <lb/>o Two Interests are considered "similar" if they have the same Name, <lb/>KeyIdRestr, and ContentObjectHashRestr, where a missing optional <lb/>field in one must be missing in the other. <lb/>o Let the notional value InterestExpiry (a local value at the <lb/>forwarder) be equal to the receive time plus the InterestLifetime <lb/>(or a platform-dependent default value if not present). <lb/>o An Interest record (PIT entry) is considered invalid if its <lb/>InterestExpiry time is in the past. <lb/>o The first reception of an Interest MUST be forwarded. <lb/>o A second or later reception of an Interest similar to a valid <lb/>pending Interest from the same previous hop MUST be forwarded. We <lb/>consider these a retransmission request. <lb/>o A second or later reception of an Interest similar to a valid <lb/>pending Interest from a new previous hop MAY be aggregated (not <lb/>forwarded). If this Interest has a larger HopLimit than the <lb/>pending Interest, it MUST be forwarded. <lb/>o Aggregating an Interest MUST extend the InterestExpiry time of the <lb/>Interest record. An implementation MAY keep a single <lb/>InterestExpiry time for all previous hops or MAY keep the <lb/>InterestExpiry time per previous hop. In the first case, the <lb/>forwarder might send a Content Object down a path that is no <lb/>longer waiting for it, in which case the previous hop (next hop of <lb/>the Content Object) would drop it. <lb/></body> + + <note place="footnote">Mosko, et al. <lb/>Experimental <lb/></note> + + <page>[Page 18] <lb/></page> + + <note place="headnote">RFC 8569 <lb/>CCNx Semantics <lb/>July 2019 <lb/></note> + + <body>2.4.3. Content Store Behavior <lb/>The Content Store is a special cache that is an integral part of a <lb/>CCNx forwarder. It is an optional component. It serves to repair <lb/>lost packets and handle flash requests for popular content. It could <lb/>be prepopulated or use opportunistic caching. Because the Content <lb/>Store could serve to amplify an attack via cache poisoning, there are <lb/>special rules about how a Content Store behaves. <lb/>1. A forwarder MAY implement a Content Store. If it does, the <lb/>Content Store matches a Content Object to an Interest via the <lb/>normal matching rules (see Section 9). <lb/>2. If an Interest has a KeyId restriction, then the Content Store <lb/>MUST NOT reply unless it knows the signature on the matching <lb/>Content Object is correct. It may do this by external knowledge <lb/>(i.e., in a managed network or system with prepopulated caches) <lb/>or by having the public key and cryptographically verifying the <lb/>signature. A Content Store is NOT REQUIRED to verify signatures; <lb/>if it does not, then it treats these cases like a cache miss. <lb/>3. If a Content Store chooses to verify signatures, then it MAY do <lb/>so as follows. If the public key is provided in the Content <lb/>Object itself (i.e., in the PublicKey field) or in the Interest, <lb/>the Content Store MUST verify that the public key's hash is equal <lb/>to the KeyId and that it verifies the signature (see <lb/>Section 8.4). A Content Store MAY verify the digital signature <lb/>of a Content Object before it is cached, but it is not required <lb/>to do so. A Content Store SHOULD NOT fetch keys over the <lb/>network. If it cannot or has not yet verified the signature, it <lb/>should treat the Interest as a cache miss. <lb/>4. If an Interest has a Content Object Hash restriction, then the <lb/>Content Store MUST NOT reply unless it knows the matching Content <lb/>Object has the correct hash. If it cannot verify the hash, then <lb/>it should treat the Interest as a cache miss. <lb/>5. It must obey the cache control directives (see Section 4). <lb/>2.4.4. Interest Pipeline <lb/>1. Perform the HopLimit check (see Section 2.4.1). <lb/>2. If the Interest carries a validation, such as a MIC or a <lb/>signature with an embedded public key or certificate, a forwarder <lb/>MAY validate the Interest as per Section 8. A forwarder SHOULD <lb/>NOT fetch keys via a KeyLink. If the forwarder drops an Interest <lb/></body> + + <note place="footnote">Mosko, et al. <lb/>Experimental <lb/></note> + + <page>[Page 19] <lb/></page> + + <note place="headnote">RFC 8569 <lb/>CCNx Semantics <lb/>July 2019 <lb/></note> + + <body>due to failed validation, it MAY send an Interest Return <lb/>(Section 10.3.9). <lb/>3. Determine if the Interest can be aggregated as per Section 2.4.2. <lb/>If it can be, aggregate and do not forward the Interest. <lb/>4. If forwarding the Interest, check for a hit in the Content Store <lb/>as per Section 2.4.3. If a matching Content Object is found, <lb/>return it to the Interest's previous hop. This injects the <lb/>Content Store as per Section 2.4.5. <lb/>5. Look up the Interest in the FIB. Longest Prefix Match (LPM) is <lb/>performed name segment by name segment (not byte or bit). It <lb/>SHOULD exclude the Interest's previous hop. If a match is found, <lb/>forward the Interest. If no match is found or the forwarder <lb/>chooses not to forward due to a local condition (e.g., <lb/>congestion), it SHOULD send an Interest Return message as per <lb/>Section 10. <lb/>2.4.5. Content Object Pipeline <lb/>1. It is RECOMMENDED that a forwarder that receives a Content Object <lb/>check that the Content Object came from an expected previous hop. <lb/>An expected previous hop is one pointed to by the FIB or one <lb/>recorded in the PIT as having had a matching Interest sent that <lb/>way. <lb/>2. A Content Object MUST be matched to all pending Interests that <lb/>satisfy the matching rules (see Section 9). Each satisfied <lb/>pending Interest MUST then be removed from the set of pending <lb/>Interests. <lb/>3. A forwarder SHOULD NOT send more than one copy of the received <lb/>Content Object to the same Interest previous hop. It may happen, <lb/>for example, that two Interests ask for the same Content Object <lb/>in different ways (e.g., by name and by name and KeyId), and that <lb/>they both come from the same previous hop. It is normal to send <lb/>the same Content Object multiple times on the same interface, <lb/>such as Ethernet, if it is going to different previous hops. <lb/>4. A Content Object SHOULD only be put in the Content Store if it <lb/>satisfied an Interest (and passed rule #1 above). This is to <lb/>reduce the chances of cache poisoning. <lb/></body> + + <note place="footnote">Mosko, et al. <lb/>Experimental <lb/></note> + + <page>[Page 20] <lb/></page> + + <note place="headnote">RFC 8569 <lb/>CCNx Semantics <lb/>July 2019 <lb/></note> + + <body>3. Names <lb/>A CCNx name is a composition of name segments. Each name segment <lb/>carries a label identifying the purpose of the name segment, and a <lb/>value. For example, some name segments are general names and some <lb/>serve specific purposes such as carrying version information or the <lb/>sequencing of many chunks of a large object into smaller, signed <lb/>Content Objects. <lb/>There are three different types of names in CCNx: prefix, exact, and <lb/>full names. A prefix name is simply a name that does not uniquely <lb/>identify a single Content Object, but rather a namespace or prefix of <lb/>an existing Content Object name. An exact name is one that uniquely <lb/>identifies the name of a Content Object. A full name is one that is <lb/>exact and is accompanied by an explicit or implicit ConObjHash. The <lb/>ConObjHash is explicit in an Interest and implicit in a Content <lb/>Object. <lb/>Note that a forwarder does not need to know any semantics about a <lb/>name. It only needs to be able to match a prefix to forward <lb/>Interests and match an exact or full name to forward Content Objects. <lb/>It is not sensitive to the name segment types. <lb/>The name segment labels specified in this document are given in <lb/>Table 1. Name Segment is a general name segment, typically occurring <lb/>in the routable prefix and user-specified content name. Interest <lb/>Payload ID is a name segment to identify the Interest's payload. <lb/>Application Components are a set of name segment types reserved for <lb/>application use. <lb/></body> + + <note place="footnote">Mosko, et al. <lb/>Experimental <lb/></note> + + <page>[Page 21] <lb/></page> + + <note place="headnote">RFC 8569 <lb/>CCNx Semantics <lb/>July 2019 <lb/></note> + + <body>+-------------+-----------------------------------------------------+ <lb/>| <lb/>Type <lb/>| Description <lb/>| <lb/>+-------------+-----------------------------------------------------+ <lb/>| <lb/>Name <lb/>| A generic name segment that includes arbitrary <lb/>| <lb/>| <lb/>Segment <lb/>| octets. <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| <lb/>Interest | An octet string that identifies the payload carried | <lb/>| Payload ID | in an Interest. As an example, the Payload ID <lb/>| <lb/>| <lb/>| might be a hash of the Interest Payload. This <lb/>| <lb/>| <lb/>| provides a way to differentiate between Interests <lb/>| <lb/>| <lb/>| based on the payload solely through a name segment | <lb/>| <lb/>| without having to include all the extra bytes of <lb/>| <lb/>| <lb/>| the payload itself. <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| Application | An application-specific payload in a name segment. | <lb/>| Components | An application may apply its own semantics to these | <lb/>| <lb/>| components. A good practice is to identify the <lb/>| <lb/>| <lb/>| application in a name segment prior to the <lb/>| <lb/>| <lb/>| application component segments. <lb/>| <lb/>+-------------+-----------------------------------------------------+ <lb/>Table 1: CCNx Name Segment Types <lb/>At the lowest level, a forwarder does not need to understand the <lb/>semantics of name segments; it need only identify name segment <lb/>boundaries and be able to compare two name segments (both label and <lb/>value) for equality. The forwarder matches names segment by segment <lb/>against its forwarding table to determine a next hop. <lb/></body> + + <note place="footnote">Mosko, et al. <lb/>Experimental <lb/></note> + + <page>[Page 22] <lb/></page> + + <note place="headnote">RFC 8569 <lb/>CCNx Semantics <lb/>July 2019 <lb/></note> + + <body>3.1. Name Examples <lb/>This section uses the CCNx URI [ccnx-uri] representation of CCNx <lb/>names. Note that as per the message grammar, an Interest must have a <lb/>Name with at least one name segment that must have at least 1 octet <lb/>of value. A Content Object must have a similar name or no name at <lb/>all. The FIB, on the other hand, could have 0-length names (a <lb/>default route), or a first name segment with no value, or a regular <lb/>name. <lb/>+--------------------------+----------------------------------------+ <lb/>| <lb/>Name <lb/>| Description <lb/>| <lb/>+--------------------------+----------------------------------------+ <lb/>| <lb/>ccnx:/ <lb/>| A 0-length name, corresponds to a <lb/>| <lb/>| <lb/>| default route. <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| <lb/>ccnx:/NAME= <lb/>| A name with 1 segment of 0 length, <lb/>| <lb/>| <lb/>| distinct from ccnx:/. <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| ccnx:/NAME=foo/APP:0=bar | A 2-segment name, where the first <lb/>| <lb/>| <lb/>| segment is of type NAME and the second | <lb/>| <lb/>| segment is of type APP:0. <lb/>| <lb/>+--------------------------+----------------------------------------+ <lb/>Table 2: CCNx Name Examples <lb/>3.2. Interest Payload ID <lb/>An Interest may also have a Payload field that carries state about <lb/>the Interest but is not used to match a Content Object. If an <lb/>Interest contains a payload, the Interest name should contain an <lb/>Interest Payload ID (IPID). The IPID allows a PIT entry to correctly <lb/>multiplex Content Objects in response to a specific Interest with a <lb/>specific payload ID. The IPID could be derived from a hash of the <lb/>payload or could be a Globally Unique Identifier (GUID) or a nonce. <lb/>An optional Metadata field defines the IPID field so other systems <lb/>can verify the IPID, such as when it is derived from a hash of the <lb/>payload. No system is required to verify the IPID. <lb/>4. Cache Control <lb/>CCNx supports two fields that affect cache control. These determine <lb/>how a cache or Content Store handles a Content Object. They are not <lb/>used in the fast path; they are only used to determine if a Content <lb/>Object can be injected onto the fast path in response to an Interest. <lb/>The ExpiryTime is a field that exists within the signature envelope <lb/>of a Validation Algorithm. It is the UTC time in milliseconds after <lb/></body> + + <note place="footnote">Mosko, et al. <lb/>Experimental <lb/></note> + + <page>[Page 23] <lb/></page> + + <note place="headnote">RFC 8569 <lb/>CCNx Semantics <lb/>July 2019 <lb/></note> + + <body>which the Content Object is considered expired and MUST no longer be <lb/>used to respond to an Interest from a cache. Stale content MAY be <lb/>flushed from the cache. <lb/>The Recommended Cache Time (RCT) is a field that exists outside the <lb/>signature envelope. It is the UTC time in milliseconds after which <lb/>the publisher considers the Content Object to be of low value to <lb/>cache. A cache SHOULD discard it after the RCT, though it MAY keep <lb/>it and still respond with it. A cache MAY also discard the Content <lb/>Object before the RCT time; there is no contractual obligation to <lb/>remember anything. <lb/>This formulation allows a producer to create a Content Object with a <lb/>long ExpiryTime but short RCT and keep republishing the same signed <lb/>Content Object over and over again by extending the RCT. This allows <lb/>a form of "phone home" where the publisher wants to periodically see <lb/>that the content is being used. <lb/>5. Content Object Hash <lb/>CCNx allows an Interest to restrict a response to a specific hash. <lb/>The hash covers the Content Object message body and the validation <lb/>sections, if present. Thus, if a Content Object is signed, its hash <lb/>includes that signature value. The hash does not include the fixed <lb/>or hop-by-hop headers of a Content Object. Because it is part of the <lb/>matching rules (see Section 9), the hash is used at every hop. <lb/>There are two options for matching the Content Object Hash <lb/>restriction in an Interest. First, a forwarder could compute for <lb/>itself the hash value and compare it to the restriction. This is an <lb/>expensive operation. The second option is for a border device to <lb/>compute the hash once and place the value in a header (ConObjHash) <lb/>that is carried through the network. The second option, of course, <lb/>removes any security properties from matching the hash, so it SHOULD <lb/>only be used within a trusted domain. The header SHOULD be removed <lb/>when crossing a trust boundary. <lb/>6. Link <lb/>A Link is the tuple {Name, [KeyIdRestr], [ContentObjectHashRestr]}. <lb/>The information in a Link comprises the fields of an Interest that <lb/>would retrieve the Link target. A Content Object with PayloadType of <lb/>"Link" is an object whose payload is one or more Links. This tuple <lb/>may be used as a KeyLink to identify a specific object with the <lb/>certificate-wrapped key. It is RECOMMENDED to include at least one <lb/>of either KeyId restriction or Content Object Hash restriction. If <lb/>neither restriction is present, then any Content Object with a <lb/>matching name from any publisher could be returned. <lb/></body> + + <note place="footnote">Mosko, et al. <lb/>Experimental <lb/></note> + + <page>[Page 24] <lb/></page> + + <note place="headnote">RFC 8569 <lb/>CCNx Semantics <lb/>July 2019 <lb/></note> + + <body>7. Hashes <lb/>Several protocol fields use cryptographic hash functions, which must <lb/>be secure against attack and collisions. Because these hash <lb/>functions change over time, with better ones appearing and old ones <lb/>falling victim to attacks, it is important that a CCNx protocol <lb/>implementation supports hash agility. <lb/>In this document, we suggest certain hashes (e.g., SHA-256), but a <lb/>specific implementation may use what it deems best. The normative <lb/>CCNx Messages [RFC8609] specification should be taken as the <lb/>definition of acceptable hash functions and uses. <lb/>8. Validation <lb/>8.1. Validation Algorithm <lb/>The Validator consists of a ValidationAlgorithm that specifies how to <lb/>verify the message and a ValidationPayload containing the validation <lb/>output, e.g., the digital signature or MAC. The ValidationAlgorithm <lb/>section defines the type of algorithm to use and includes any <lb/>necessary additional information. The validation is calculated from <lb/>the beginning of the CCNx Message through the end of the <lb/>ValidationAlgorithm section (i.e., up to but not including the <lb/>validation payload). We refer to this as the validation region. The <lb/>ValidationPayload is the integrity value bytes, such as a MAC or <lb/>signature. <lb/>The CCNx Message Grammar (Section 2.1) shows the allowed validation <lb/>algorithms and their structure. In the case of a Vendor algorithm, <lb/>the vendor may use any desired structure. A Validator can only be <lb/>applied to an Interest or a Content Object, not an Interest Return. <lb/>An Interest inside an Interest Return would still have the original <lb/>validator, if any. <lb/>The grammar allows multiple Vendor extensions to the validation <lb/>algorithm. It is up to the vendor to describe the validation region <lb/>for each extension. A vendor may, for example, use a regular <lb/>signature in the validation algorithm, then append a proprietary MIC <lb/>to allow for in-network error checking without using expensive <lb/>signature verification. As part of this specification, we do not <lb/>allow for multiple Validation Algorithm blocks apart from these <lb/>vendor methods. <lb/></body> + + <note place="footnote">Mosko, et al. <lb/>Experimental <lb/></note> + + <page>[Page 25] <lb/></page> + + <note place="headnote">RFC 8569 <lb/>CCNx Semantics <lb/>July 2019 <lb/></note> + + <body>8.2. Message Integrity Codes <lb/>If the validation algorithm is CRC32C, then the validation payload is <lb/>the output of the CRC over the validation region. This validation <lb/>algorithm allows for an optional signature time (SigTime) to <lb/>timestamp when the message was validated (calling it a "signature" <lb/>time is a slight misnomer, but we reuse the same field for this <lb/>purpose between MICs, MACs, and signatures). <lb/>MICs are usually used with an Interest to avoid accidental in-network <lb/>corruption. They are usually not used on Content Objects because the <lb/>objects are either signed or linked to by hash chains, so the CRC32C <lb/>is redundant. <lb/>8.3. Message Authentication Codes <lb/>If the validation algorithm is HMAC-SHA256, then the validation <lb/>payload is the output of the HMAC over the validation region. The <lb/>validation algorithm requires a KeyId and allows for a signature time <lb/>(SigTime) and KeyLink. <lb/>The KeyId field identifies the shared secret used between two parties <lb/>to authenticate messages. These secrets SHOULD be derived from a key <lb/>exchange protocol such as [ccnx-ke]. The KeyId, for a shared secret, <lb/>SHOULD be an opaque identifier not derived from the actual key; an <lb/>integer counter, for example, is a good choice. <lb/>The signature time is the timestamp when the authentication code was <lb/>computed and added to the messages. <lb/>The KeyLink field in a MAC indicates how to negotiate keys and should <lb/>point towards the key exchange endpoint. The use of a key <lb/>negotiation algorithm is beyond the scope of this specification, and <lb/>a key negotiation algorithm is not required to use this field. <lb/>8.4. Signature <lb/>Signature-validation algorithms use public key cryptographic <lb/>algorithms such as RSA and the Elliptic Curve Digital Signature <lb/>Algorithm (ECDSA). This specification and the corresponding wire <lb/>encoding [RFC8609] only support three specific signature algorithms: <lb/>RSA-SHA256, EC-SECP-256K1, and EC-SECP-384R1. Other algorithms may <lb/>be added in through other documents or by using experimental or <lb/>vendor-validation algorithm types. <lb/></body> + + <note place="footnote">Mosko, et al. <lb/>Experimental <lb/></note> + + <page>[Page 26] <lb/></page> + + <note place="headnote">RFC 8569 <lb/>CCNx Semantics <lb/>July 2019 <lb/></note> + + <body>A signature that is public key based requires a KeyId field and may <lb/>optionally carry a signature time, an embedded public key, an <lb/>embedded certificate, and a KeyLink. The signature time behaves as <lb/>normal to timestamp when the signature was created. We describe the <lb/>use and relationship of the other fields here. <lb/>It is not common to use embedded certificates, as they can be very <lb/>large and may have validity periods different than the validated <lb/>data. The preferred method is to use a KeyLink to the validating <lb/>certificate. <lb/>The KeyId field in the ValidationAlgorithm identifies the public key <lb/>used to verify the signature. It is similar to a Subject Key <lb/>Identifier from X.509 (Section 4.2.1.2 of [RFC5280]). We define the <lb/>KeyId to be a cryptographic hash of the public key in DER form. All <lb/>implementations MUST support the SHA-256 digest as the KeyId hash. <lb/>The use of other algorithms for the KeyId is allowed, and it will not <lb/>cause problems at a forwarder because the forwarder only matches the <lb/>digest algorithm and digest output and does not compute the digest <lb/>(see Section 9). It may cause issues with a Content Store, which <lb/>needs to verify the KeyId and PublicKey match (see Section 2.4.3); <lb/>though in this case, it only causes a cache miss and the Interest <lb/>would still be forwarded to the publisher. As long as the publisher <lb/>and consumers support the hash, data will validate. <lb/>As per Section 9, a forwarder only matches the KeyId to a KeyId <lb/>restriction. It does not need to look at the other fields such as <lb/>the public key, certificate, or KeyLink. <lb/>If a message carries multiples of the KeyId, public key, certificate, <lb/>or KeyLink, an endpoint (consumer, cache, or Content Store) MUST <lb/>ensure that any fields it uses are consistent. The KeyId MUST be the <lb/>corresponding hash of the embedded public key or certificate public <lb/>key. The hash function to use is the KeyId's HashType. If there is <lb/>both an embedded public key and a certificate, the public keys MUST <lb/>be the same. <lb/>A message SHOULD NOT have both a PublicKey and a KeyLink to a public <lb/>key, as that is redundant. It MAY have a PublicKey and a KeyLink to <lb/>a certificate. <lb/>A KeyLink in a first Content Object may point to a second Content <lb/>Object with a DER-encoded public key in the PublicKey field and an <lb/>optional DER-encoded X.509 certificate in the payload. The second <lb/>Content Object's KeyId MUST equal the first object's KeyId. The <lb/>second object's PublicKey field MUST be the public key corresponding <lb/>to the KeyId. That key must validate both the first and second <lb/></body> + + <note place="footnote">Mosko, et al. <lb/>Experimental <lb/></note> + + <page>[Page 27] <lb/></page> + + <note place="headnote">RFC 8569 <lb/>CCNx Semantics <lb/>July 2019 <lb/></note> + + <body>object's signature. A DER-encoded X.509 certificate may be included <lb/>in the second object's payload and its embedded public key MUST match <lb/>the PublicKey. It must be issued by a trusted authority, preferably <lb/>specifying the valid namespace of the key in the distinguished name. <lb/>The second object MUST NOT have a KeyLink; we do not allow for <lb/>recursive key lookup. <lb/>9. Interest to Content Object Matching <lb/>A Content Object satisfies an Interest if and only if (a) the Content <lb/>Object name, if present, exactly matches the Interest name, (b) the <lb/>ValidationAlgorithm KeyId of the Content Object exactly equals the <lb/>Interest KeyId restriction, if present, and (c) the computed Content <lb/>Object Hash exactly equals the Interest Content Object Hash <lb/>restriction, if present. <lb/>The KeyId and KeyIdRestr use the Hash format (see Section 2.1). The <lb/>Hash format has an embedded HashType followed by the hash value. <lb/>When comparing a KeyId and KeyIdRestr, one compares both the HashType <lb/>and the value. <lb/>The matching rules are given by this predicate, which, if it <lb/>evaluates true, means the Content Object matches the Interest. Ni = <lb/>Name in the Interest (may not be empty), Ki = KeyIdRestr in the <lb/>Interest (may be empty), and Hi = ContentObjectHashRestr in the <lb/>Interest (may be empty). Likewise, No, Ko, and Ho are those <lb/>properties in the Content Object, where No and Ko may be empty; Ho <lb/>always exists (it is an intrinsic property of the Content Object). <lb/>For binary relations, we use "&" for AND and "|" for OR. We use "E" <lb/>for the EXISTS (not empty) operator and "!" for the NOT EXISTS <lb/>operator. <lb/>As a special case, if the Content Object Hash restriction in the <lb/>Interest specifies an unsupported hash algorithm, then no Content <lb/>Object can match the Interest, so the system should drop the Interest <lb/>and MAY send an Interest Return to the previous hop. In this case, <lb/>the predicate below will never get executed because the Interest is <lb/>never forwarded. If the system is using the optional behavior of <lb/>having a different system calculate the hash for it, then the system <lb/>may assume all hash functions are supported and leave it to the other <lb/>system to accept or reject the Interest. <lb/>(!No | (Ni=No)) & (!Ki | (Ki=Ko)) & (!Hi | (Hi=Ho)) & (E No | E Hi) <lb/>As one can see, there are two types of attributes one can match. The <lb/>first term depends on the existence of the attribute in the Content <lb/>Object while the next two terms depend on the existence of the <lb/>attribute in the Interest. The last term is the "Nameless Object" <lb/></body> + + <note place="footnote">Mosko, et al. <lb/>Experimental <lb/></note> + + <page>[Page 28] <lb/></page> + + <note place="headnote">RFC 8569 <lb/>CCNx Semantics <lb/>July 2019 <lb/></note> + + <body>restriction that states that if a Content Object does not have a <lb/>Name, then it must match the Interest on at least the Hash <lb/>restriction. <lb/>If a Content Object does not carry the Content Object Hash as an <lb/>expressed field, it must be calculated in network to match against. <lb/>It is sufficient within an autonomous system to calculate a Content <lb/>Object Hash at a border router and carry it via trusted means within <lb/>the autonomous system. If a Content Object ValidationAlgorithm does <lb/>not have a KeyId, then the Content Object cannot match an Interest <lb/>with a KeyId restriction. <lb/>10. Interest Return <lb/>This section describes the process whereby a network element may <lb/>return an Interest message to a previous hop if there is an error <lb/>processing the Interest. The returned Interest may be further <lb/>processed at the previous hop or returned towards the Interest <lb/>origin. When a node returns an Interest, it indicates that the <lb/>previous hop should not expect a response from that node for the <lb/>Interest, i.e., there is no PIT entry left at the returning node. <lb/>The returned message maintains compatibility with the existing TLV <lb/>packet format (a fixed header, optional hop-by-hop headers, and the <lb/>CCNx Message body). The returned Interest packet is modified in only <lb/>two ways: <lb/>o The PacketType is set to Interest Return to indicate a Feedback <lb/>message. <lb/>o The ReturnCode is set to the appropriate value to signal the <lb/>reason for the return. <lb/>The specific encodings of the Interest Return are specified in <lb/>[RFC8609]. <lb/>A forwarder is not required to send any Interest Return messages. <lb/>A forwarder is not required to process any received Interest Return <lb/>message. If a forwarder does not process Interest Return messages, <lb/>it SHOULD silently drop them. <lb/>The Interest Return message does not apply to a Content Object or any <lb/>other message type. <lb/></body> + + <note place="footnote">Mosko, et al. <lb/>Experimental <lb/></note> + + <page>[Page 29] <lb/></page> + + <note place="headnote">RFC 8569 <lb/>CCNx Semantics <lb/>July 2019 <lb/></note> + + <body>An Interest Return message is a 1-hop message between peers. It is <lb/>not propagated multiple hops via the FIB. An intermediate node that <lb/>receives an Interest Return may take corrective actions or may <lb/>propagate its own Interest Return to previous hops as indicated in <lb/>the reverse path of a PIT entry. <lb/>10.1. Message Format <lb/>The Interest Return message looks exactly like the original Interest <lb/>message with the exception of the two modifications mentioned above. <lb/>The PacketType is set to indicate the message is an Interest Return, <lb/>and the reserved byte in the Interest header is used as a Return <lb/>Code. The numeric values for the PacketType and ReturnCodes are in <lb/>[RFC8609]. <lb/></body> + + <note place="footnote">Mosko, et al. <lb/>Experimental <lb/></note> + + <page>[Page 30] <lb/></page> + + <note place="headnote">RFC 8569 <lb/>CCNx Semantics <lb/>July 2019 <lb/></note> + + <body>10.2. ReturnCode Types <lb/>This section defines the Interest Return ReturnCode introduced in <lb/>this RFC. The numeric values used in the packet are defined in <lb/>[RFC8609]. <lb/>+----------------------+--------------------------------------------+ <lb/>| Name <lb/>| Description <lb/>| <lb/>+----------------------+--------------------------------------------+ <lb/>| No Route (Section <lb/>| The returning forwarder has no route to <lb/>| <lb/>| 10.3.1) <lb/>| the Interest name. <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| HopLimit Exceeded <lb/>| The HopLimit has decremented to 0 and <lb/>| <lb/>| (Section 10.3.2) <lb/>| needs to forward the packet. <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| Interest MTU too <lb/>| The Interest's MTU does not conform to the | <lb/>| large (Section <lb/>| required minimum and would require <lb/>| <lb/>| 10.3.3) <lb/>| fragmentation. <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| No Resources <lb/>| The node does not have the resources to <lb/>| <lb/>| (Section 10.3.4) <lb/>| process the Interest. <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| Path error (Section | There was a transmission error when <lb/>| <lb/>| 10.3.5) <lb/>| forwarding the Interest along a route (a <lb/>| <lb/>| <lb/>| transient error). <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| Prohibited (Section | An administrative setting prohibits <lb/>| <lb/>| 10.3.6) <lb/>| processing this Interest. <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| Congestion (Section | The Interest was dropped due to congestion | <lb/>| 10.3.7) <lb/>| (a transient error). <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| Unsupported Content | The Interest was dropped because it <lb/>| <lb/>| Object Hash <lb/>| requested a Content Object Hash <lb/>| <lb/>| Algorithm (Section <lb/>| restriction using a hash algorithm that <lb/>| <lb/>| 10.3.8) <lb/>| cannot be computed. <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| Malformed Interest <lb/>| The Interest was dropped because it did <lb/>| <lb/>| (Section 10.3.9) <lb/>| not correctly parse. <lb/>| <lb/>+----------------------+--------------------------------------------+ <lb/>Table 3: Interest Return Reason Codes <lb/></body> + + <note place="footnote">Mosko, et al. <lb/>Experimental <lb/></note> + + <page>[Page 31] <lb/></page> + + <note place="headnote">RFC 8569 <lb/>CCNx Semantics <lb/>July 2019 <lb/></note> + + <body>10.3. Interest Return Protocol <lb/>This section describes the forwarder behavior for the various Reason <lb/>codes for Interest Return. A forwarder is not required to generate <lb/>any of the codes, but if it does, it MUST conform to this <lb/>specification. <lb/>If a forwarder receives an Interest Return, it SHOULD take these <lb/>standard corrective actions. A forwarder is allowed to ignore <lb/>Interest Return messages, in which case its PIT entry would go <lb/>through normal timeout processes. <lb/>o Verify that the Interest Return came from a next hop to which it <lb/>actually sent the Interest. <lb/>o If a PIT entry for the corresponding Interest does not exist, the <lb/>forwarder should ignore the Interest Return. <lb/>o If a PIT entry for the corresponding Interest does exist, the <lb/>forwarder MAY do one of the following: <lb/>* Try a different forwarding path, if one exists, and discard the <lb/>Interest Return, or <lb/>* Clear the PIT state and send an Interest Return along the <lb/>reverse path. <lb/>If a forwarder tries alternate routes, it MUST ensure that it does <lb/>not use the same path multiple times. For example, it could keep <lb/>track of which next hops it has tried and not reuse them. <lb/>If a forwarder tries an alternate route, it may receive a second <lb/>Interest Return, possibly of a different type than the first Interest <lb/>Return. For example, node A sends an Interest to node B, which sends <lb/>a No Route return. Node A then tries node C, which sends a <lb/>Prohibited Interest Return. Node A should choose what it thinks is <lb/>the appropriate code to send back to its previous hop. <lb/>If a forwarder tries an alternate route, it should decrement the <lb/>Interest Lifetime to account for the time spent thus far processing <lb/>the Interest. <lb/>10.3.1. No Route <lb/>If a forwarder receives an Interest for which it has no route, or for <lb/>which the only route is back towards the system that sent the <lb/>Interest, the forwarder SHOULD generate a "No Route" Interest Return <lb/>message. <lb/></body> + + <note place="footnote">Mosko, et al. <lb/>Experimental <lb/></note> + + <page>[Page 32] <lb/></page> + + <note place="headnote">RFC 8569 <lb/>CCNx Semantics <lb/>July 2019 <lb/></note> + + <body>How a forwarder manages the FIB table when it receives a No Route <lb/>message is implementation dependent. In general, receiving a No <lb/>Route Interest Return should not cause a forwarder to remove a route. <lb/>The dynamic routing protocol that installed the route should correct <lb/>the route, or the administrator who created a static route should <lb/>correct the configuration. A forwarder could suppress using that <lb/>next hop for some period of time. <lb/>10.3.2. HopLimit Exceeded <lb/>A forwarder MAY choose to send HopLimit Exceeded messages when it <lb/>receives an Interest that must be forwarded off system and the <lb/>HopLimit is 0. <lb/>10.3.3. Interest MTU Too Large <lb/>If a forwarder receives an Interest whose MTU exceeds the prescribed <lb/>minimum, it MAY send an "Interest MTU Too Large" message, or it may <lb/>silently discard the Interest. <lb/>If a forwarder receives an "Interest MTU Too Large" response, it <lb/>SHOULD NOT try alternate paths. It SHOULD propagate the Interest <lb/>Return to its previous hops. <lb/>10.3.4. No Resources <lb/>If a forwarder receives an Interest and it cannot process the <lb/>Interest due to lack of resources, it MAY send an Interest Return. A <lb/>lack of resources could mean the PIT is too large or that there is <lb/>some other capacity limit. <lb/>10.3.5. Path Error <lb/>If a forwarder detects an error forwarding an Interest, such as over <lb/>a reliable link, it MAY send a Path-Error Interest Return indicating <lb/>that it was not able to send or repair a forwarding error. <lb/>10.3.6. Prohibited <lb/>A forwarder may have administrative policies, such as access control <lb/>lists (ACLs), that prohibit receiving or forwarding an Interest. If <lb/>a forwarder discards an Interest due to a policy, it MAY send a <lb/>Prohibited Interest Return to the previous hop. For example, if <lb/>there is an ACL that says "/example/private" can only come from <lb/>interface e0, but the forwarder receives one from e1, the forwarder <lb/>must have a way to return the Interest with an explanation. <lb/></body> + + <note place="footnote">Mosko, et al. <lb/>Experimental <lb/></note> + + <page>[Page 33] <lb/></page> + + <note place="headnote">RFC 8569 <lb/>CCNx Semantics <lb/>July 2019 <lb/></note> + + <body>10.3.7. Congestion <lb/>If a forwarder discards an Interest due to congestion, it MAY send a <lb/>Congestion Interest Return to the previous hop. <lb/>10.3.8. Unsupported Content Object Hash Algorithm <lb/>If a Content Object Hash restriction specifies a hash algorithm the <lb/>forwarder cannot verify, the Interest should not be accepted and the <lb/>forwarder MAY send an Interest Return to the previous hop. <lb/>10.3.9. Malformed Interest <lb/>If a forwarder detects a structural or syntactical error in an <lb/>Interest, it SHOULD drop the Interest and MAY send an Interest Return <lb/>to the previous hop. This does not imply that any router must <lb/>validate the entire structure of an Interest. <lb/>11. IANA Considerations <lb/>This document has no IANA actions. <lb/>12. Security Considerations <lb/>The CCNx protocol is an L3 network protocol, which may also operate <lb/>as an overlay using other transports such as UDP or other tunnels. <lb/>It includes intrinsic support for message authentication via a <lb/>signature (e.g., RSA or elliptic curve) or message authentication <lb/>code (e.g., HMAC). In lieu of an authenticator, it may instead use a <lb/>message integrity check (e.g., SHA or CRC). CCNx does not specify an <lb/>encryption envelope; that function is left to a high-layer protocol <lb/>(e.g., [esic]). <lb/>The CCNx message format includes the ability to attach MICs (e.g., <lb/>CRC32C), MACs (e.g., HMAC), and signatures (e.g., RSA or ECDSA) to <lb/>all packet types. This does not mean that it is a good idea to use <lb/>an arbitrary ValidationAlgorithm, nor to include computationally <lb/>expensive algorithms in Interest packets, as that could lead to <lb/>computational DoS attacks. Applications should use an explicit <lb/>protocol to guide their use of packet signatures. As a general <lb/>guideline, an application might use a MIC on an Interest to detect <lb/>unintentionally corrupted packets. If one wishes to secure an <lb/>Interest, one should consider using an encrypted wrapper and a <lb/>protocol that prevents replay attacks, especially if the Interest is <lb/>being used as an actuator. Simply using an authentication code or <lb/>signature does not make an Interest secure. There are several <lb/>examples in the literature on how to secure ICN-style messaging <lb/>[mobile] [ace]. <lb/></body> + + <note place="footnote">Mosko, et al. <lb/>Experimental <lb/></note> + + <page>[Page 34] <lb/></page> + + <note place="headnote">RFC 8569 <lb/>CCNx Semantics <lb/>July 2019 <lb/></note> + + <body>As an L3 protocol, this document does not describe how one arrives at <lb/>keys or how one trusts keys. The CCNx Content Object may include a <lb/>public key or certificate embedded in the object or may use the <lb/>KeyLink field to point to a public key or certificate that <lb/>authenticates the message. One key-exchange specification is CCNxKE <lb/>[ccnx-ke] [mobile], which is similar to the TLS 1.3 key exchange <lb/>except it is over the CCNx L3 messages. Trust is beyond the scope of <lb/>an L3 protocol and left to applications or application frameworks. <lb/>The combination of an ephemeral key exchange (e.g., CCNxKE [ccnx-ke]) <lb/>and an encapsulating encryption (e.g., [esic]) provides the <lb/>equivalent of a TLS tunnel. Intermediate nodes may forward the <lb/>Interests and Content Objects but have no visibility inside. It also <lb/>completely hides the internal names in those used by the encryption <lb/>layer. This type of tunneling encryption is useful for content that <lb/>has little or no cacheability, as it can only be used by someone with <lb/>the ephemeral key. Short-term caching may help with lossy links or <lb/>mobility, but long-term caching is usually not of interest. <lb/>Broadcast encryption or proxy re-encryption may be useful for content <lb/>with multiple uses over time or many consumers. There is currently <lb/>no recommendation for this form of encryption. <lb/>The specific encoding of messages will have security implications. <lb/>[RFC8609] uses a type-length-value (TLV) encoding. We chose to <lb/>compromise between extensibility and unambiguous encodings of types <lb/>and lengths. Some TLV encodings use variable-length "T" and <lb/>variable-length "L" fields to accommodate a wide gamut of values <lb/>while trying to be byte efficient. Our TLV encoding uses a fixed-<lb/>length 2-byte "T" and 2-byte "L". Using a fixed-length "T" and "L" <lb/>field solves two problems. The first is aliases. If one is able to <lb/>encode the same value, such as %x02 and %x0002, in different byte <lb/>lengths, then one must decide if they mean the same thing, if they <lb/>are different, or if one is illegal. If they are different, then one <lb/>must always compare on the buffers, not the integer equivalents. If <lb/>one is illegal, then one must validate the TLV encoding, every field <lb/>of every packet at every hop. If they are the same, then one has the <lb/>second problem: how to specify packet filters. For example, if a <lb/>name has 6 name components, then there are 7 T's and 7 L's, each of <lb/>which might have up to 4 representations of the same value. That <lb/>would be 14 fields with 4 encodings each, or 1001 combinations. It <lb/>also means that one cannot compare, for example, a name via a memory <lb/>function as one needs to consider that any embedded "T" or "L" might <lb/>have a different format. <lb/>The Interest Return message has no authenticator from the previous <lb/>hop. Therefore, the payload of the Interest Return should only be <lb/>used locally to match an Interest. A node should never forward that <lb/></body> + + <note place="footnote">Mosko, et al. <lb/>Experimental <lb/></note> + + <page>[Page 35] <lb/></page> + + <note place="headnote">RFC 8569 <lb/>CCNx Semantics <lb/>July 2019 <lb/></note> + + <body>Interest Payload as an Interest. It should also verify that it sent <lb/>the Interest in the Interest Return to that node and not allow anyone <lb/>to negate Interest messages. <lb/>Caching nodes must take caution when processing Content Objects. It <lb/>is essential that the Content Store obey the rules outlined in <lb/>Section 2.4.3 to avoid certain types of attacks. CCNx 1.0 has no <lb/>mechanism to work around an undesired result from the network (there <lb/>are no "excludes"), so if a cache becomes poisoned with bad content, <lb/>it might cause problems retrieving content. There are three types of <lb/>access to content from a Content Store: unrestricted, signature <lb/>restricted, and hash restricted. If an Interest has no restrictions, <lb/>then the requester is not particular about what they get back, so any <lb/>matching cached object is OK. In the hash-restricted case, the <lb/>requester is very specific about what they want and the Content Store <lb/>(and every forward hop) can easily verify that the content matches <lb/>the request. In the signature-restricted case (often used for <lb/>initial manifest discovery), the requester only knows the KeyId that <lb/>signed the content. It is this case that requires the closest <lb/>attention in the Content Store to avoid amplifying bad data. The <lb/>Content Store must only respond with a Content Object if it can <lb/>verify the signature; this means either the Content Object carries <lb/>the public key inside it or the Interest carries the public key in <lb/>addition to the KeyId. If that is not the case, then the Content <lb/>Store should treat the Interest as a cache miss and let an endpoint <lb/>respond. <lb/>A user-level cache could perform full signature verification by <lb/>fetching a public key or certificate according to the KeyLink. That <lb/>is not, however, a burden we wish to impose on the forwarder. A <lb/>user-level cache could also rely on out-of-band attestation, such as <lb/>the cache operator only inserting content that it knows has the <lb/>correct signature. <lb/>The CCNx grammar allows for hash-algorithm agility via the HashType. <lb/>It specifies a short list of acceptable hash algorithms that should <lb/>be implemented at each forwarder. Some hash values only apply to end <lb/>systems, so updating the hash algorithm does not affect forwarders; <lb/>they would simply match the buffer that includes the type-length-hash <lb/>buffer. Some fields, such as the ConObjHash, must be verified at <lb/>each hop, so a forwarder (or related system) must know the hash <lb/>algorithm; it could cause backward compatibility problems if the hash <lb/>type is updated. [RFC8609] is the authoritative source for per-<lb/>field-allowed hash types in that encoding. <lb/>A CCNx name uses binary matching whereas a URI uses a case-<lb/>insensitive hostname. Some systems may also use case-insensitive <lb/>matching of the URI path to a resource. An implication of this is <lb/></body> + + <note place="footnote">Mosko, et al. <lb/>Experimental <lb/></note> + + <page>[Page 36] <lb/></page> + + <note place="headnote">RFC 8569 <lb/>CCNx Semantics <lb/>July 2019 <lb/></note> + + <body>that human-entered CCNx names will likely have case or non-ASCII <lb/>symbol mismatches unless one uses a consistent URI normalization to <lb/>the CCNx name. It also means that an entity that registers a CCNx <lb/>routable prefix, say "ccnx:/example.com", would need separate <lb/>registrations for simple variations like "ccnx:/Example.com". Unless <lb/>this is addressed in URI normalization and routing protocol <lb/>conventions, there could be phishing attacks. <lb/>For a more general introduction to ICN-related security concerns and <lb/>approaches, see [RFC7927] and [RFC7945]. <lb/></body> + + <listBibl>13. References <lb/>13.1. Normative References <lb/>[RFC2119] Bradner, S., "Key words for use in RFCs to Indicate <lb/>Requirement Levels", BCP 14, RFC 2119, <lb/>DOI 10.17487/RFC2119, March 1997, <lb/><https://www.rfc-editor.org/info/rfc2119>. <lb/>[RFC8174] Leiba, B., "Ambiguity of Uppercase vs Lowercase in RFC <lb/>2119 Key Words", BCP 14, RFC 8174, DOI 10.17487/RFC8174, <lb/>May 2017, <https://www.rfc-editor.org/info/rfc8174>. <lb/>13.2. Informative References <lb/>[ace] <lb/>Shang, W., Yu, Y., Liang, T., Zhang, B., and L. Zhang, <lb/>"NDN-ACE: Access Control for Constrained Environments over <lb/>Named Data Networking", NDN Technical Report NDN-0036, <lb/>December 2015, <http://new.named-data.net/ <lb/>wp-content/uploads/2015/12/ndn-0036-1-ndn-ace.pdf>. <lb/>[befrags] Mosko, M. and C. Tschudin, "ICN "Begin-End" Hop by Hop <lb/>Fragmentation", Work in Progress, draft-mosko-icnrg-<lb/>beginendfragment-02, December 2016. <lb/>[ccn-lite] Tschudin, C., et al., "CCN-lite", University of Basel, <lb/>2011-2019, <http://ccn-lite.net>. <lb/>[ccnx-ke] Mosko, M., Uzun, E., and C. Wood, "CCNx Key Exchange <lb/>Protocol Version 1.0", Work in Progress, draft-wood-icnrg-<lb/>ccnxkeyexchange-02, March 2017. <lb/>[ccnx-registry] <lb/>IANA, "Content-Centric Networking (CCNx)", <lb/><https://www.iana.org/assignments/ccnx>. <lb/></listBibl> + + <note place="footnote">Mosko, et al. <lb/>Experimental <lb/></note> + + <page>[Page 37] <lb/></page> + + <note place="headnote">RFC 8569 <lb/>CCNx Semantics <lb/>July 2019 <lb/></note> + + <listBibl>[ccnx-uri] Mosko, M. and C. Wood, "The CCNx URI Scheme", Work in <lb/>Progress, draft-mosko-icnrg-ccnxurischeme-01, April 2016. <lb/>[chunking] Mosko, M., "CCNx Content Object Chunking", Work in <lb/>Progress, draft-mosko-icnrg-ccnxchunking-02, June 2016. <lb/>[cicn] <lb/>FD.io, "Community ICN (CICN)", February 2017, <lb/><https://wiki.fd.io/index.php?title=Cicn&oldid=7191>. <lb/>[dart] <lb/>Garcia-Luna-Aceves, J. and M. Mirzazad-Barijough, "A <lb/>Light-Weight Forwarding Plane for Content-Centric <lb/>Networks", International Conference on Computing, <lb/>Networking, and Communications (ICNC), <lb/>DOI 10.1109/ICCNC.2016.7440637, February 2016, <lb/><https://arxiv.org/pdf/1603.06044.pdf>. <lb/>[eprise-numbers] <lb/>IANA, "IANA Private Enterprise Numbers", <lb/><https://www.iana.org/assignments/enterprise-numbers>. <lb/>[esic] <lb/>Mosko, M. and C. Wood, "Encrypted Sessions In CCNx <lb/>(ESIC)", Work in Progress, draft-wood-icnrg-esic-01, <lb/>September 2017. <lb/>[flic] <lb/>Tschudin, C. and C. Wood, "File-Like ICN Collection <lb/>(FLIC)", Work in Progress, draft-tschudin-icnrg-flic-03, <lb/>March 2017. <lb/>[mobile] <lb/>Mosko, M., Uzun, E., and C. Wood, "Mobile Sessions in <lb/>Content-Centric Networks", IFIP Networking Conference <lb/>(IFIP Networking) and Workshops, <lb/>DOI 10.23919/IFIPNetworking.2017.8264861, June 2017, <lb/><https://dl.ifip.org/db/conf/networking/ <lb/>networking2017/1570334964.pdf>. <lb/>[ndn] <lb/>UCLA, "Named Data Networking", 2019, <lb/><https://www.named-data.net>. <lb/>[nnc] <lb/>Jacobson, V., Smetters, D., Thornton, J., Plass, M., <lb/>Briggs, N., and R. Braynard, "Networking Named Content", <lb/>Proceedings of the 5th International Conference on <lb/>Emerging Networking Experiments and Technologies, <lb/>DOI 10.1145/1658939.1658941, December 2009, <lb/><https://dx.doi.org/10.1145/1658939.1658941>. <lb/></listBibl> + + <note place="footnote">Mosko, et al. <lb/>Experimental <lb/></note> + + <page>[Page 38] <lb/></page> + + <note place="headnote">RFC 8569 <lb/>CCNx Semantics <lb/>July 2019 <lb/></note> + + <listBibl>[RFC5234] Crocker, D., Ed. and P. Overell, "Augmented BNF for Syntax <lb/>Specifications: ABNF", STD 68, RFC 5234, <lb/>DOI 10.17487/RFC5234, January 2008, <lb/><https://www.rfc-editor.org/info/rfc5234>. <lb/>[RFC5280] Cooper, D., Santesson, S., Farrell, S., Boeyen, S., <lb/>Housley, R., and W. Polk, "Internet X.509 Public Key <lb/>Infrastructure Certificate and Certificate Revocation List <lb/>(CRL) Profile", RFC 5280, DOI 10.17487/RFC5280, May 2008, <lb/><https://www.rfc-editor.org/info/rfc5280>. <lb/>[RFC7927] Kutscher, D., Ed., Eum, S., Pentikousis, K., Psaras, I., <lb/>Corujo, D., Saucez, D., Schmidt, T., and M. Waehlisch, <lb/>"Information-Centric Networking (ICN) Research <lb/>Challenges", RFC 7927, DOI 10.17487/RFC7927, July 2016, <lb/><https://www.rfc-editor.org/info/rfc7927>. <lb/>[RFC7945] Pentikousis, K., Ed., Ohlman, B., Davies, E., Spirou, S., <lb/>and G. Boggia, "Information-Centric Networking: Evaluation <lb/>and Security Considerations", RFC 7945, <lb/>DOI 10.17487/RFC7945, September 2016, <lb/><https://www.rfc-editor.org/info/rfc7945>. <lb/>[RFC8609] Mosko, M., Solis, I., and C. Wood, "Content-Centric <lb/>Networking (CCNx) Messages in TLV Format", RFC 8609, <lb/>DOI 10.17487/RFC8609, July 2019, <lb/><https://www.rfc-editor.org/info/rfc8609>. <lb/>[selectors] <lb/>Mosko, M., "CCNx Selector Based Discovery", Work in <lb/>Progress, draft-mosko-icnrg-selectors-01, May 2019. <lb/>[terminology] <lb/>Wissingh, B., Wood, C., Afanasyev, A., Zhang, L., Oran, <lb/>D., and C. Tschudin, "Information-Centric Networking <lb/>(ICN): CCN and NDN Terminology", Work in Progress, <lb/>draft-irtf-icnrg-terminology-04, June 2019. <lb/>[trust] <lb/>Tschudin, C., Uzun, E., and C. Wood, "Trust in <lb/>Information-Centric Networking: From Theory to Practice", <lb/>25th International Conference on Computer Communication <lb/>and Networks (ICCCN), DOI 10.1109/ICCCN.2016.7568589, <lb/>August 2016, <https://doi.org/10.1109/ICCCN.2016.7568589>. <lb/></listBibl> + + <note place="footnote">Mosko, et al. <lb/>Experimental <lb/></note> + + <page>[Page 39] <lb/></page> + + <note place="headnote">RFC 8569 <lb/>CCNx Semantics <lb/>July 2019 <lb/></note> + + Authors' Addresses <lb/> + + <front>Marc Mosko <lb/>PARC, Inc. <lb/>Palo Alto, California 94304 <lb/>United States of America <lb/>Phone: +01 650-812-4405 <lb/>Email: marc.mosko@parc.com <lb/>Ignacio Solis <lb/>LinkedIn <lb/>Mountain View, California 94043 <lb/>United States of America <lb/>Email: nsolis@linkedin.com <lb/>Christopher A. Wood <lb/>University of California Irvine <lb/>Irvine, California 92697 <lb/>United States of America <lb/>Phone: +01 315-806-5939 <lb/>Email: woodc1@uci.edu <lb/></front> + + <note place="footnote">Mosko, et al. <lb/>Experimental <lb/></note> + + <page>[Page 40] </page> + + + </text> +</tei> diff --git a/grobid-trainer/resources/dataset/segmentation/sdo/ietf/corpus/tei/XP015133674.training.segmentation.tei.xml b/grobid-trainer/resources/dataset/segmentation/sdo/ietf/corpus/tei/XP015133674.training.segmentation.tei.xml new file mode 100644 index 0000000000..539c0785c4 --- /dev/null +++ b/grobid-trainer/resources/dataset/segmentation/sdo/ietf/corpus/tei/XP015133674.training.segmentation.tei.xml @@ -0,0 +1,35 @@ +<?xml version="1.0" ?> +<tei xml:space="preserve"> + <teiHeader> + <fileDesc xml:id="0"/> + </teiHeader> + <text xml:lang="en"> + <front>server date 20190710; downloaded by EPO on 20190711 <lb/>Internet Engineering Task Force (IETF) <lb/>J. Arkko <lb/>Request for Comments: 8602 <lb/>Ericsson <lb/>Updates: 3219 <lb/>T. Hardie <lb/>Category: Standards Track <lb/>July 2019 <lb/>ISSN: 2070-1721 <lb/>Update to the Telephony Routing over IP (TRIP) IANA Registry Rules <lb/>regarding Postal Addresses <lb/>Abstract <lb/>This memo updates the IANA registry rules for the Telephony Routing <lb/>over IP (TRIP) protocol, by no longer requiring that postal addresses <lb/> be included in contact information. <lb/>This memo updates RFC 3219. <lb/>Status of This Memo <lb/>This is an Internet Standards Track document. <lb/>This document is a product of the Internet Engineering Task Force <lb/>(IETF). It represents the consensus of the IETF community. It has <lb/>received public review and has been approved for publication by the <lb/>Internet Engineering Steering Group (IESG). Further information on <lb/>Internet Standards is available in Section 2 of RFC 7841. <lb/>Information about the current status of this document, any errata, <lb/>and how to provide feedback on it may be obtained at <lb/>https://www.rfc-editor.org/info/rfc8602. <lb/>Copyright Notice <lb/>Copyright (c) 2019 IETF Trust and the persons identified as the <lb/>document authors. All rights reserved. <lb/>This document is subject to BCP 78 and the IETF Trust's Legal <lb/>Provisions Relating to IETF Documents <lb/>(https://trustee.ietf.org/license-info) in effect on the date of <lb/>publication of this document. Please review these documents <lb/>carefully, as they describe your rights and restrictions with respect <lb/>to this document. Code Components extracted from this document must <lb/>include Simplified BSD License text as described in Section 4.e of <lb/>the Trust Legal Provisions and are provided without warranty as <lb/>described in the Simplified BSD License. <lb/></front> + + <note place="footnote">Arkko & Hardie <lb/>Standards Track <lb/></note> + + <page>[Page 1] <lb/></page> + + <note place="headnote">RFC 8602 <lb/>TRIP Registry Update <lb/>July 2019 <lb/></note> + + <body>Table of Contents <lb/>1. Introduction . . . . . . . . . . . . . . . . . . . . . . . . <lb/>2 <lb/>2. IANA Considerations . . . . . . . . . . . . . . . . . . . . . <lb/>2 <lb/>3. Security Considerations . . . . . . . . . . . . . . . . . . . <lb/>2 <lb/>4. Normative References . . . . . . . . . . . . . . . . . . . . <lb/>2 <lb/>Acknowledgements . . . . . . . . . . . . . . . . . . . . . . . . <lb/>3 <lb/>Authors' Addresses . . . . . . . . . . . . . . . . . . . . . . . <lb/>3 <lb/>1. Introduction <lb/>This memo updates the IANA registry rules for the Telephony Routing <lb/>over IP (TRIP) protocol, by no longer requiring that postal addresses <lb/>be included in contact information. No use for the addresses is <lb/>identified, and omitting this information provides a privacy benefit. <lb/>This memo updates RFC 3219. <lb/>2. IANA Considerations <lb/>This memo updates the registration rules [RFC8126] for TRIP <lb/>Attributes ([RFC3219], Section 13.2) and TRIP IP Telephony <lb/>Administrative Domain (ITAD) Numbers ([RFC3219], Section 13.5) as <lb/>follows. <lb/>The IETF no longer requires IANA to collect postal address <lb/>information when adding TRIP registry entries. Additionally, IANA <lb/>has removed previously collected postal addresses from the <lb/>registries. <lb/>3. Security Considerations <lb/>No security impacts of this change have been identified. <lb/>4. Normative References <lb/>[RFC3219] Rosenberg, J., Salama, H., and M. Squire, "Telephony <lb/>Routing over IP (TRIP)", RFC 3219, DOI 10.17487/RFC3219, <lb/>January 2002, <https://www.rfc-editor.org/info/rfc3219>. <lb/>[RFC8126] Cotton, M., Leiba, B., and T. Narten, "Guidelines for <lb/>Writing an IANA Considerations Section in RFCs", BCP 26, <lb/>RFC 8126, DOI 10.17487/RFC8126, June 2017, <lb/><https://www.rfc-editor.org/info/rfc8126>. <lb/></body> + + <note place="footnote">Arkko & Hardie <lb/>Standards Track <lb/></note> + + <page>[Page 2] <lb/></page> + + <note place="headnote">RFC 8602 <lb/>TRIP Registry Update <lb/>July 2019 <lb/></note> + + <div type="acknowledgement">Acknowledgements <lb/>The authors would like to thank Michelle Cotton, Alissa Cooper, and <lb/>Jonathan Rosenberg for interesting discussions in this problem space. <lb/>The authors would also like to thank Carlos Pignataro, Russ Housley, <lb/>Abdussalam Baryun, and Paul Wouters for feedback. <lb/></div> + + Authors' Addresses <lb/> + + <front>Jari Arkko <lb/>Ericsson <lb/>Kauniainen 02700 <lb/>Finland <lb/>Email: jari.arkko@piuha.net <lb/>Ted Hardie <lb/>Email: ted.ietf@gmail.com <lb/></front> + + <note place="footnote">Arkko & Hardie <lb/>Standards Track <lb/></note> + + <page>[Page 3] </page> + + + </text> +</tei> diff --git a/grobid-trainer/resources/dataset/segmentation/sdo/ietf/corpus/tei/XP015133675.training.segmentation.tei.xml b/grobid-trainer/resources/dataset/segmentation/sdo/ietf/corpus/tei/XP015133675.training.segmentation.tei.xml new file mode 100644 index 0000000000..f3f91a67d3 --- /dev/null +++ b/grobid-trainer/resources/dataset/segmentation/sdo/ietf/corpus/tei/XP015133675.training.segmentation.tei.xml @@ -0,0 +1,378 @@ +<?xml version="1.0" ?> +<tei xml:space="preserve"> + <teiHeader> + <fileDesc xml:id="0"/> + </teiHeader> + <text xml:lang="en"> + <front>server date 20190710; downloaded by EPO on 20190711 <lb/>Internet Research Task Force (IRTF) <lb/>M. Mosko <lb/>Request for Comments: 8609 <lb/>PARC, Inc. <lb/>Category: Experimental <lb/>I. Solis <lb/>ISSN: 2070-1721 <lb/>LinkedIn <lb/>C. Wood <lb/>University of California Irvine <lb/>July 2019 <lb/>Content-Centric Networking (CCNx) Messages in TLV Format <lb/>Abstract <lb/>Content-Centric Networking (CCNx) is a network protocol that uses a <lb/>hierarchical name to forward requests and to match responses to <lb/>requests. This document specifies the encoding of CCNx messages in a <lb/>TLV packet format, including the TLV types used by each message <lb/>element and the encoding of each value. The semantics of CCNx <lb/>messages follow the encoding-independent CCNx Semantics <lb/>specification. <lb/>This document is a product of the Information Centric Networking <lb/>research group (ICNRG). The document received wide review among <lb/>ICNRG participants and has two full implementations currently in <lb/>active use, which have informed the technical maturity of the <lb/>protocol specification. <lb/>Status of This Memo <lb/>This document is not an Internet Standards Track specification; it is <lb/>published for examination, experimental implementation, and <lb/>evaluation. <lb/>This document defines an Experimental Protocol for the Internet <lb/>community. This document is a product of the Internet Research Task <lb/>Force (IRTF). The IRTF publishes the results of Internet-related <lb/>research and development activities. These results might not be <lb/>suitable for deployment. This RFC represents the consensus of the <lb/>Information-Centric Networking Research Group of the Internet <lb/>Research Task Force (IRTF). Documents approved for publication by <lb/>the IRSG are not candidates for any level of Internet Standard; see <lb/>Section 2 of RFC 7841. <lb/>Information about the current status of this document, any errata, <lb/>and how to provide feedback on it may be obtained at <lb/>https://www.rfc-editor.org/info/rfc8609. <lb/>Mosko, et al. <lb/>Experimental <lb/>[Page 1] <lb/>RFC 8609 <lb/>CCNx TLV <lb/>July 2019 <lb/>Copyright Notice <lb/>Copyright (c) 2019 IETF Trust and the persons identified as the <lb/>document authors. All rights reserved. <lb/>This document is subject to BCP 78 and the IETF Trust's Legal <lb/>Provisions Relating to IETF Documents <lb/>(https://trustee.ietf.org/license-info) in effect on the date of <lb/>publication of this document. Please review these documents <lb/>carefully, as they describe your rights and restrictions with respect <lb/>to this document. <lb/></front> + + <div type="toc">Table of Contents <lb/>1. Introduction . . . . . . . . . . . . . . . . . . . . . . . . <lb/>3 <lb/>1.1. Requirements Language . . . . . . . . . . . . . . . . . . <lb/>5 <lb/>2. Definitions . . . . . . . . . . . . . . . . . . . . . . . . . <lb/>5 <lb/>3. Type-Length-Value (TLV) Packets . . . . . . . . . . . . . . . <lb/>5 <lb/>3.1. Overall Packet Format . . . . . . . . . . . . . . . . . . <lb/>7 <lb/>3.2. Fixed Headers . . . . . . . . . . . . . . . . . . . . . . <lb/>8 <lb/>3.2.1. Interest Fixed Header . . . . . . . . . . . . . . . . <lb/>9 <lb/>3.2.1.1. Interest HopLimit . . . . . . . . . . . . . . . . <lb/>9 <lb/>3.2.2. Content Object Fixed Header . . . . . . . . . . . . . <lb/>9 <lb/>3.2.3. Interest Return Fixed Header . . . . . . . . . . . . 10 <lb/>3.2.3.1. Interest Return HopLimit . . . . . . . . . . . . 10 <lb/>3.2.3.2. Interest Return Flags . . . . . . . . . . . . . . 10 <lb/>3.2.3.3. Return Code . . . . . . . . . . . . . . . . . . . 10 <lb/>3.3. Global Formats . . . . . . . . . . . . . . . . . . . . . 11 <lb/>3.3.1. Pad . . . . . . . . . . . . . . . . . . . . . . . . . 11 <lb/>3.3.2. Organization-Specific TLVs . . . . . . . . . . . . . 12 <lb/>3.3.3. Hash Format . . . . . . . . . . . . . . . . . . . . . 12 <lb/>3.3.4. Link . . . . . . . . . . . . . . . . . . . . . . . . 13 <lb/>3.4. Hop-by-Hop TLV Headers . . . . . . . . . . . . . . . . . 14 <lb/>3.4.1. Interest Lifetime . . . . . . . . . . . . . . . . . . 14 <lb/>3.4.2. Recommended Cache Time . . . . . . . . . . . . . . . 15 <lb/>3.4.3. Message Hash . . . . . . . . . . . . . . . . . . . . 16 <lb/>3.5. Top-Level Types . . . . . . . . . . . . . . . . . . . . . 17 <lb/>3.6. CCNx Message TLV . . . . . . . . . . . . . . . . . . . . 18 <lb/>3.6.1. Name . . . . . . . . . . . . . . . . . . . . . . . . 19 <lb/>3.6.1.1. Name Segments . . . . . . . . . . . . . . . . . . 20 <lb/>3.6.1.2. Interest Payload ID . . . . . . . . . . . . . . . 20 <lb/>3.6.2. Message TLVs . . . . . . . . . . . . . . . . . . . . 21 <lb/>3.6.2.1. Interest Message TLVs . . . . . . . . . . . . . . 21 <lb/>3.6.2.2. Content Object Message TLVs . . . . . . . . . . . 23 <lb/>3.6.3. Payload . . . . . . . . . . . . . . . . . . . . . . . 25 <lb/>3.6.4. Validation . . . . . . . . . . . . . . . . . . . . . 25 <lb/>3.6.4.1. Validation Algorithm . . . . . . . . . . . . . . 25 <lb/>3.6.4.2. Validation Payload . . . . . . . . . . . . . . . 32 <lb/></div> + + <note place="footnote">Mosko, et al. <lb/>Experimental <lb/></note> + + <page>[Page 2] <lb/></page> + + <note place="headnote">RFC 8609 <lb/>CCNx TLV <lb/>July 2019 <lb/></note> + + <div type="toc">4. IANA Considerations . . . . . . . . . . . . . . . . . . . . . 33 <lb/>4.1. Packet Type Registry . . . . . . . . . . . . . . . . . . 33 <lb/>4.2. Interest Return Code Registry . . . . . . . . . . . . . . 34 <lb/>4.3. Hop-by-Hop Type Registry . . . . . . . . . . . . . . . . 35 <lb/>4.4. Top-Level Type Registry . . . . . . . . . . . . . . . . . 36 <lb/>4.5. Name Segment Type Registry . . . . . . . . . . . . . . . 37 <lb/>4.6. Message Type Registry . . . . . . . . . . . . . . . . . . 37 <lb/>4.7. Payload Type Registry . . . . . . . . . . . . . . . . . . 38 <lb/>4.8. Validation Algorithm Type Registry . . . . . . . . . . . 39 <lb/>4.9. Validation-Dependent Data Type Registry . . . . . . . . . 40 <lb/>4.10. Hash Function Type Registry . . . . . . . . . . . . . . . 40 <lb/>5. Security Considerations . . . . . . . . . . . . . . . . . . . 41 <lb/>6. References . . . . . . . . . . . . . . . . . . . . . . . . . 44 <lb/>6.1. Normative References . . . . . . . . . . . . . . . . . . 44 <lb/>6.2. Informative References . . . . . . . . . . . . . . . . . 44 <lb/>Authors' Addresses . . . . . . . . . . . . . . . . . . . . . . . 46 <lb/></div> + + <body>1. Introduction <lb/>This document specifies a Type-Length-Value (TLV) packet format and <lb/> + the TLV type and value encodings for CCNx messages. A full <lb/>description of the CCNx network protocol, providing an encoding-free <lb/>description of CCNx messages and message elements, may be found in <lb/>[RFC8569]. CCNx is a network protocol that uses a hierarchical name <lb/>to forward requests and to match responses to requests. It does not <lb/>use endpoint addresses; the Internet Protocol does. Restrictions in <lb/>a request can limit the response by the public key of the response's <lb/>signer or the cryptographic hash of the response. Every CCNx <lb/>forwarder along the path does the name matching and restriction <lb/>checking. The CCNx protocol fits within the broader framework of <lb/>Information-Centric Networking (ICN) protocols [RFC7927]. <lb/>This document describes a TLV scheme using a fixed 2-byte T and a <lb/>fixed 2-byte L field. The rational for this choice is described in <lb/>Section 5. Briefly, this choice avoids multiple encodings of the <lb/>same value (aliases) and reduces the work of a validator to ensure <lb/>compliance. Unlike some uses of TLV in networking, each network hop <lb/>must evaluate the encoding, so even small validation latencies at <lb/>each hop could add up to a large overall forwarding delay. For very <lb/>small packets or low-throughput links, where the extra bytes may <lb/>become a concern, one may use a TLV compression protocol, for <lb/>example, [compress] and [CCNxz]. <lb/>This document uses the terms CCNx Packet, CCNx Message, and CCNx <lb/>Message TLV. A CCNx Packet refers to the entire Layer 3 datagram as <lb/>specified in Section 3.1. A CCNx Message is the ABNF token defined <lb/>in the CCNx Semantics document [RFC8569]. A CCNx Message TLV refers <lb/>to the encoding of a CCNx Message as specified in Section 3.6. <lb/></body> + + <note place="footnote">Mosko, et al. <lb/>Experimental <lb/></note> + + <page>[Page 3] <lb/></page> + + <note place="headnote">RFC 8609 <lb/>CCNx TLV <lb/>July 2019 <lb/></note> + + <body>This document specifies: <lb/>o the CCNx Packet format, <lb/>o the CCNx Message TLV format, <lb/>o the TLV types used by CCNx messages, <lb/>o the encoding of values for each type, <lb/>o top-level types that exist at the outermost containment, <lb/>o Interest TLVs that exist within Interest containment, and <lb/>o Content Object TLVs that exist within Content Object containment. <lb/>This document is supplemented by these documents: <lb/>o [RFC8569], which covers message semantics and the protocol <lb/>operation regarding Interest and Content Object, including the <lb/>Interest Return protocol. <lb/>o [CCNxURI], which covers the CCNx URI notation. <lb/>The type values in Section 4 conform to the IANA-assigned numbers for <lb/>the CCNx protocol. This document uses the symbolic names defined in <lb/>that section. All TLV type values are relative to their parent <lb/>containers. For example, each level of a nested TLV structure might <lb/>define a "type = 1" with a completely different meaning. <lb/>Packets are represented as 32-bit wide words using ASCII art. Due to <lb/>the nested levels of TLV encoding and the presence of optional fields <lb/>and variable sizes, there is no concise way to represent all <lb/>possibilities. We use the convention that ASCII art fields enclosed <lb/>by vertical bars "|" represent exact bit widths. Fields with a <lb/>forward slash "/" are variable bit widths, which we typically pad out <lb/>to word alignment for picture readability. <lb/>The document represents the consensus of the ICN RG. It is the first <lb/>ICN protocol from the RG, created from the early CCNx protocol [nnc] <lb/>with significant revision and input from the ICN community and RG <lb/>members. The document has received critical reading by several <lb/>members of the ICN community and the RG. The authors and RG chairs <lb/>approve of the contents. The document is sponsored under the IRTF <lb/>and is not issued by the IETF and is not an IETF standard. This is <lb/>an experimental protocol and may not be suitable for any specific <lb/>application and the specification may change in the future. <lb/></body> + + <note place="footnote">Mosko, et al. <lb/>Experimental <lb/></note> + + <page>[Page 4] <lb/></page> + + <note place="headnote">RFC 8609 <lb/>CCNx TLV <lb/>July 2019 <lb/></note> + + <body>1.1. Requirements Language <lb/>The key words "MUST", "MUST NOT", "REQUIRED", "SHALL", "SHALL NOT", <lb/>"SHOULD", "SHOULD NOT", "RECOMMENDED", "NOT RECOMMENDED", "MAY", and <lb/>"OPTIONAL" in this document are to be interpreted as described in <lb/>BCP 14 [RFC2119] [RFC8174] when, and only when, they appear in all <lb/>capitals, as shown here. <lb/>2. Definitions <lb/>These definitions summarize items defined in [RFC8569]. This <lb/>document defines their encodings. <lb/>o Name: A hierarchically structured variable-length identifier. It <lb/>is an ordered list of path segments, which are variable-length <lb/>octet strings. In human-readable form, it is represented in URI <lb/>format as "ccnx:/path/part". There is no host or query string. <lb/>See [CCNxURI] for complete details. <lb/>o Interest: A message requesting a Content Object with a matching <lb/>Name and other optional selectors to choose from multiple objects <lb/>with the same Name. Any Content Object with a Name and attributes <lb/>that matches the Name and optional selectors of the Interest is <lb/>said to satisfy the Interest. <lb/>o Content Object: A data object sent in response to an Interest <lb/>request. It has an optional Name and a content payload that are <lb/>bound together via cryptographic means. <lb/>3. Type-Length-Value (TLV) Packets <lb/>We use 16-bit Type and 16-bit Length fields to encode TLV-based <lb/>packets. This provides 65,536 different possible types and value <lb/>field lengths of up to 64 KiB. With 65,536 possible types at each <lb/>level of TLV encoding, there should be sufficient space for basic <lb/>protocol types, while also allowing ample room for experimentation, <lb/>application use, vendor extensions, and growth. This encoding does <lb/>not allow for jumbo packets beyond 64 KiB total length. If used on a <lb/>media that allows for jumbo frames, we suggest defining a media <lb/>adaptation envelope that allows for multiple smaller frames. <lb/></body> + + <note place="footnote">Mosko, et al. <lb/>Experimental <lb/></note> + + <page>[Page 5] <lb/></page> + + <note place="headnote">RFC 8609 <lb/>CCNx TLV <lb/>July 2019 <lb/></note> + + <body>+--------+------------------+---------------------------------------+ <lb/>| Abbrev | <lb/>Name <lb/>| Description <lb/>| <lb/>+--------+------------------+---------------------------------------+ <lb/>| T_ORG | Vendor Specific | Information specific to a vendor <lb/>| <lb/>| <lb/>| <lb/>Information <lb/>| implementation (Section 3.3.2). <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| T_PAD | <lb/>Padding <lb/>| Adds padding to a field (Section <lb/>| <lb/>| <lb/>| <lb/>| 3.3.1). <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| n/a <lb/>| <lb/>Experimental <lb/>| Experimental use. <lb/>| <lb/>+--------+------------------+---------------------------------------+ <lb/>Table 1: Reserved TLV Types <lb/>There are several global TLV definitions that we reserve at all <lb/>hierarchical contexts. The TLV types in the range 0x1000 -0x1FFF <lb/>are Reserved for Experimental Use. The TLV type T_ORG is also <lb/>Reserved for Vendor Extensions (see Section 3.3.2). The TLV type <lb/>T_PAD is used to optionally pad a field out to some desired <lb/>alignment. <lb/>1 <lb/>2 <lb/>3 <lb/>0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 <lb/>+---------------+---------------+---------------+---------------+ <lb/>| <lb/>Type <lb/>| <lb/>Length <lb/>| <lb/>+---------------+---------------+---------------+---------------+ <lb/>Figure 1: Type and Length encoding <lb/>The Length field contains the length of the Value field in octets. <lb/>It does not include the length of the Type and Length fields. The <lb/>Length MAY be zero. <lb/>TLV structures are nestable, allowing the Value field of one TLV <lb/>structure to contain additional TLV structures. The enclosing TLV <lb/>structure is called the container of the enclosed TLV. <lb/>Type values are context dependent. Within a TLV container, one may <lb/>reuse previous type values for new context-dependent purposes. <lb/></body> + + <note place="footnote">Mosko, et al. <lb/>Experimental <lb/></note> + + <page>[Page 6] <lb/></page> + + <note place="headnote">RFC 8609 <lb/>CCNx TLV <lb/>July 2019 <lb/></note> + + <body>3.1. Overall Packet Format <lb/>Each CCNx Packet includes the 8-byte fixed header, described below, <lb/>followed by a set of TLV fields. These fields are optional hop-by-<lb/>hop headers and the Packet Payload. <lb/>1 <lb/>2 <lb/>3 <lb/>0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 <lb/>+---------------+---------------+---------------+---------------+ <lb/>| <lb/>Version <lb/>| PacketType <lb/>| <lb/>PacketLength <lb/>| <lb/>+---------------+---------------+---------------+---------------+ <lb/>| <lb/>PacketType-specific fields <lb/>| HeaderLength | <lb/>+---------------+---------------+---------------+---------------+ <lb/>/ Optional hop-by-hop header TLVs <lb/>/ <lb/>+---------------+---------------+---------------+---------------+ <lb/>/ PacketPayload TLVs <lb/>/ <lb/>+---------------+---------------+---------------+---------------+ <lb/>Figure 2: Overall Packet Format <lb/>The PacketPayload of a CCNx Packet is the protocol message itself. <lb/>The Content Object Hash is computed over the PacketPayload only, <lb/>excluding the fixed and hop-by-hop headers, as those might change <lb/>from hop to hop. Signed information or similarity hashes should not <lb/>include any of the fixed or hop-by-hop headers. The PacketPayload <lb/>should be self-sufficient in the event that the fixed and hop-by-hop <lb/>headers are removed. See Message Hash (Section 3.4.3). <lb/>Following the CCNx Message TLV, the PacketPayload may include <lb/>optional Validation TLVs. <lb/>1 <lb/>2 <lb/>3 <lb/>0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 <lb/>+---------------+---------------+---------------+---------------+ <lb/>| CCNx Message TLV <lb/>/ <lb/>+---------------+---------------+---------------+---------------+ <lb/>/ Optional CCNx ValidationAlgorithm TLV <lb/>/ <lb/>+---------------+---------------+---------------+---------------+ <lb/>/ Optional CCNx ValidationPayload TLV (ValidationAlg required) / <lb/>+---------------+---------------+---------------+---------------+ <lb/>Figure 3: PacketPayload TLVs <lb/>After discarding the fixed and hop-by-hop headers, the remaining <lb/>PacketPayload should be a valid protocol message. Therefore, the <lb/>PacketPayload always begins with 4 bytes of type-length that <lb/>specifies the protocol message (whether it is an Interest, Content <lb/>Object, or other message type) and its total length. The embedding <lb/></body> + + <note place="footnote">Mosko, et al. <lb/>Experimental <lb/></note> + + <page>[Page 7] <lb/></page> + + <note place="headnote">RFC 8609 <lb/>CCNx TLV <lb/>July 2019 <lb/></note> + + <body>of a self-sufficient protocol data unit inside the fixed and hop-by-<lb/>hop headers allows a network stack to discard the headers and operate <lb/>only on the embedded message. It also decouples the PacketType field <lb/>--which specifies how to forward the packet --from the <lb/>PacketPayload. <lb/>The range of bytes protected by the Validation includes the CCNx <lb/>Message TLV and the ValidationAlgorithm TLV. <lb/>The ContentObjectHash begins with the CCNx Message TLV and ends at <lb/>the tail of the CCNx Packet. <lb/>3.2. Fixed Headers <lb/>In Figure 2, the fixed header fields are: <lb/>o Version: defines the version of the packet, which MUST be 1. <lb/>o HeaderLength: The length of the fixed header (8 bytes) and hop-by-<lb/>hop headers. The minimum value MUST be 8. <lb/>o PacketType: describes forwarder actions to take on the packet. <lb/>o PacketLength: Total octets of packet including all headers (fixed <lb/>header plus hop-by-hop headers) and protocol message. <lb/>o PacketType-specific Fields: specific PacketTypes define the use of <lb/>these bits. <lb/>The PacketType field indicates how the forwarder should process the <lb/>packet. A Request Packet (Interest) has PacketType PT_INTEREST, a <lb/>Response (Content Object) has PacketType PT_CONTENT, and an Interest <lb/>Return has PacketType PT_RETURN. <lb/>HeaderLength is the number of octets from the start of the CCNx <lb/>Packet (Version) to the end of the hop-by-hop headers. PacketLength <lb/>is the number of octets from the start of the packet to the end of <lb/>the packet. Both lengths have a minimum value of 8 (the fixed header <lb/>itself). <lb/>The PacketType-specific fields are reserved bits whose use depends on <lb/>the PacketType. They are used for network-level signaling. <lb/></body> + + <note place="footnote">Mosko, et al. <lb/>Experimental <lb/></note> + + <page>[Page 8] <lb/></page> + + <note place="headnote">RFC 8609 <lb/>CCNx TLV <lb/>July 2019 <lb/></note> + + <body>3.2.1. Interest Fixed Header <lb/>If the PacketType is PT_INTEREST, it indicates that the packet should <lb/>be forwarded following the Interest pipeline in Section 2.4.4 of <lb/>[RFC8569]. For this type of packet, the Fixed Header includes a <lb/>field for a HopLimit as well as Reserved and Flags fields. The <lb/>Reserved field MUST be set to 0 in an Interest. There are currently <lb/>no flags defined, so the Flags field MUST be set to 0. <lb/>1 <lb/>2 <lb/>3 <lb/>0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 <lb/>+---------------+---------------+---------------+---------------+ <lb/>| <lb/>Version <lb/>| PT_INTEREST | <lb/>PacketLength <lb/>| <lb/>+---------------+---------------+---------------+---------------+ <lb/>| <lb/>HopLimit <lb/>| <lb/>Reserved <lb/>| <lb/>Flags <lb/>| HeaderLength | <lb/>+---------------+---------------+---------------+---------------+ <lb/>Figure 4: Interest Header <lb/>3.2.1.1. Interest HopLimit <lb/>For an Interest message, the HopLimit is a counter that is <lb/>decremented with each hop. It limits the distance an Interest may <lb/>travel on the network. The node originating the Interest MAY put in <lb/>any value up to the maximum of 255. Each node that receives an <lb/>Interest with a HopLimit decrements the value upon reception. If the <lb/>value is 0 after the decrement, the Interest MUST NOT be forwarded <lb/>off the node. <lb/>It is an error to receive an Interest from a remote node with the <lb/>HopLimit field set to 0. <lb/>3.2.2. Content Object Fixed Header <lb/>If the PacketType is PT_CONTENT, it indicates that the packet should <lb/>be forwarded following the Content Object pipeline in Section 2.4.4 <lb/>of [RFC8569]. A Content Object defines a Flags field; however, there <lb/>are currently no flags defined, so the Flags field must be set to 0. <lb/>1 <lb/>2 <lb/>3 <lb/>0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 <lb/>+---------------+---------------+---------------+---------------+ <lb/>| <lb/>Version <lb/>| PT_CONTENT <lb/>| <lb/>PacketLength <lb/>| <lb/>+---------------+---------------+---------------+---------------+ <lb/>| <lb/>Reserved <lb/>| <lb/>Flags <lb/>| HeaderLength | <lb/>+---------------+---------------+---------------+---------------+ <lb/>Figure 5: Content Object Header <lb/></body> + + <note place="footnote">Mosko, et al. <lb/>Experimental <lb/></note> + + <page>[Page 9] <lb/></page> + + <note place="headnote">RFC 8609 <lb/>CCNx TLV <lb/>July 2019 <lb/></note> + + <body>3.2.3. Interest Return Fixed Header <lb/>If the PacketType is PT_RETURN, it indicates that the packet should <lb/>be processed following the Interest Return rules in Section 10 of <lb/>[RFC8569]. The only difference between this Interest Return message <lb/>and the original Interest is that the PacketType is changed to <lb/>PT_RETURN and a ReturnCode is put into the ReturnCode field. All <lb/>other fields are unchanged from the Interest packet. The purpose of <lb/>this encoding is to prevent packet length changes so no additional <lb/>bytes are needed to return an Interest to the previous hop. <lb/>1 <lb/>2 <lb/>3 <lb/>0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 <lb/>+---------------+---------------+---------------+---------------+ <lb/>| <lb/>Version <lb/>| <lb/>PT_RETURN <lb/>| <lb/>PacketLength <lb/>| <lb/>+---------------+---------------+---------------+---------------+ <lb/>| <lb/>HopLimit <lb/>| ReturnCode <lb/>| <lb/>Flags <lb/>| HeaderLength | <lb/>+---------------+---------------+---------------+---------------+ <lb/>Figure 6: Interest Return Header <lb/>3.2.3.1. Interest Return HopLimit <lb/>This is the original Interest's HopLimit, as received before <lb/>decrement at the node sending the Interest Return. <lb/>3.2.3.2. Interest Return Flags <lb/>These are the original Flags as set in the Interest. <lb/>3.2.3.3. Return Code <lb/>This section maps the Return Code name [RFC8569] to the TLV symbolic <lb/>name. Section 4.2 maps the symbolic names to numeric values. This <lb/>field is set by the node creating the Interest Return. <lb/>A return code of "0" MUST NOT be used, as it indicates that the <lb/>returning system did not modify the Return Code field. <lb/></body> + + <note place="footnote">Mosko, et al. <lb/>Experimental <lb/></note> + + <page>[Page 10] <lb/></page> + + <note place="headnote">RFC 8609 <lb/>CCNx TLV <lb/>July 2019 <lb/></note> + + <body>+-------------------------------------+-----------------------------+ <lb/>| <lb/>Return Type <lb/>| Name in RFC 8569 <lb/>| <lb/>+-------------------------------------+-----------------------------+ <lb/>| <lb/>T_RETURN_NO_ROUTE <lb/>| No Route <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| <lb/>T_RETURN_LIMIT_EXCEEDED <lb/>| Hop Limit Exceeded <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| <lb/>T_RETURN_NO_RESOURCES <lb/>| No Resources <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| <lb/>T_RETURN_PATH_ERROR <lb/>| Path Error <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| <lb/>T_RETURN_PROHIBITED <lb/>| Prohibited <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| <lb/>T_RETURN_CONGESTED <lb/>| Congested <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| <lb/>T_RETURN_MTU_TOO_LARGE <lb/>| MTU too large <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| T_RETURN_UNSUPPORTED_HASH_RESTRICTI | Unsupported ContentObjectHa | <lb/>| <lb/>ON <lb/>| shRestriction <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| <lb/>T_RETURN_MALFORMED_INTEREST <lb/>| Malformed Interest <lb/>| <lb/>+-------------------------------------+-----------------------------+ <lb/>Table 2: Return Codes <lb/>3.3. Global Formats <lb/>This section defines global formats that may be nested within other <lb/>TLVs. <lb/>3.3.1. Pad <lb/>The pad type may be used by sources that prefer word-aligned data. <lb/>Padding 4-byte words, for example, would use a 1-byte, 2-byte, and <lb/>3-byte Length. Padding 8-byte words would use a (0, 1, 2, 3, 5, 6, <lb/>7)-byte Length. <lb/>One MUST NOT pad inside a Name. Apart from that, a pad MAY be <lb/>inserted after any other TLV in the CCNx Message TLV or in the <lb/>ValidationAlgorithm TLV. In the remainder of this document, we will <lb/>not show optional Pad TLVs. <lb/></body> + + <note place="footnote">Mosko, et al. <lb/>Experimental <lb/></note> + + <page>[Page 11] <lb/></page> + + <note place="headnote">RFC 8609 <lb/>CCNx TLV <lb/>July 2019 <lb/></note> + + <body>1 <lb/>2 <lb/>3 <lb/>0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 <lb/>+---------------+---------------+---------------+---------------+ <lb/>| <lb/>T_PAD <lb/>| <lb/>Length <lb/>| <lb/>+---------------+---------------+---------------+---------------+ <lb/>/ <lb/>variable-length pad MUST be zeros <lb/>/ <lb/>+---------------+---------------+---------------+---------------+ <lb/>Figure 7: Pad Encoding <lb/>3.3.2. Organization-Specific TLVs <lb/>Organization-specific TLVs (also known as Vendor TLVs) MUST use the <lb/>T_ORG type. The Length field is the length of the organization-<lb/>specific information plus 3. The Value begins with the 3 byte <lb/>organization number derived from the network byte order encoding of <lb/>the IANA "Private Enterprise Numbers" registry [IANA-PEN], followed <lb/>by the organization-specific information. <lb/>A T_ORG MAY be used as a path segment in a Name. It is treated like <lb/>any other path segment. <lb/>1 <lb/>2 <lb/>3 <lb/>0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 <lb/>+---------------+---------------+---------------+---------------+ <lb/>| <lb/>T_ORG <lb/>| <lb/>Length (3+value length) <lb/>| <lb/>+---------------+---------------+---------------+---------------+ <lb/>| <lb/>PEN[0] <lb/>| <lb/>PEN[1] <lb/>| <lb/>PEN[2] <lb/>| <lb/>/ <lb/>+---------------+---------------+---------------+ <lb/>+ <lb/>/ <lb/>Vendor Specific Value <lb/>/ <lb/>+---------------+---------------+---------------+---------------+ <lb/>Figure 8: Organization-Specific TLVs <lb/>3.3.3. Hash Format <lb/>Hash values are used in several fields throughout a packet. This TLV <lb/>encoding is commonly embedded inside those fields to specify the <lb/>specific hash function used and its value. Note that the reserved <lb/>TLV types are also reserved here for user-defined experimental <lb/>functions. <lb/>The LENGTH field of the hash value MUST be less than or equal to the <lb/>hash function length. If the LENGTH is less than the full length, it <lb/>is taken as the left LENGTH bytes of the hash function output. Only <lb/>specified truncations are allowed, not arbitrary truncations. <lb/></body> + + <note place="footnote">Mosko, et al. <lb/>Experimental <lb/></note> + + <page>[Page 12] <lb/></page> + + <note place="headnote">RFC 8609 <lb/>CCNx TLV <lb/>July 2019 <lb/></note> + + <body>This nested format is used because it allows binary comparison of <lb/>hash values for certain fields without a router needing to understand <lb/>a new hash function. For example, the KeyIdRestriction is bit-wise <lb/>compared between an Interest's KeyIdRestriction field and a <lb/>ContentObject's KeyId field. This format means the outer field <lb/>values do not change with differing hash functions so a router can <lb/>still identify those fields and do a binary comparison of the hash <lb/>TLV without need to understand the specific hash used. An <lb/>alternative approach, such as using T_KEYID_SHA512-256, would require <lb/>each router keeps an up-to-date parser and supporting user-defined <lb/>hash functions here would explode the parsing state-space. <lb/>A CCNx entity MUST support the hash type T_SHA-256. An entity MAY <lb/>support the remaining hash types. <lb/>+-----------+------------------------+ <lb/>| <lb/>Abbrev | <lb/>Lengths (octets) <lb/>| <lb/>+-----------+------------------------+ <lb/>| T_SHA-256 | <lb/>32 <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| T_SHA-512 | <lb/>64, 32 <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| <lb/>n/a <lb/>| Experimental TLV types | <lb/>+-----------+------------------------+ <lb/>Table 3: CCNx Hash Functions <lb/>1 <lb/>2 <lb/>3 <lb/>0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 <lb/>+---------------+---------------+---------------+---------------+ <lb/>| <lb/>T_FOO <lb/>| <lb/>36 <lb/>| <lb/>+---------------+---------------+---------------+---------------+ <lb/>| <lb/>T_SHA512 <lb/>| <lb/>32 <lb/>| <lb/>+---------------+---------------+---------------+---------------+ <lb/>/ <lb/>32-byte hash value <lb/>/ <lb/>+---------------+---------------+---------------+---------------+ <lb/>Figure 9: Example nesting inside type T_FOO <lb/>3.3.4. Link <lb/>A Link is the tuple: {Name, [KeyIdRestr], [ContentObjectHashRestr]}. <lb/>It is a general encoding that is used in both the payload of a <lb/>Content Object with PayloadType = "Link" and in a Content Object's <lb/>KeyLink field. A Link is essentially the body of an Interest. <lb/></body> + + <note place="footnote">Mosko, et al. <lb/>Experimental <lb/></note> + + <page>[Page 13] <lb/></page> + + <note place="headnote">RFC 8609 <lb/>CCNx TLV <lb/>July 2019 <lb/></note> + + <body>1 <lb/>2 <lb/>3 <lb/>0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 <lb/>+---------------+---------------+---------------+---------------+ <lb/>/ Mandatory CCNx Name <lb/>/ <lb/>+---------------+---------------+---------------+---------------+ <lb/>/ Optional KeyIdRestriction <lb/>/ <lb/>+---------------+---------------+---------------+---------------+ <lb/>/ Optional ContentObjectHashRestriction <lb/>/ <lb/>+---------------+---------------+---------------+---------------+ <lb/>Figure 10: Link Encoding <lb/>3.4. Hop-by-Hop TLV Headers <lb/>Hop-by-hop TLV headers are unordered and meaning MUST NOT be attached <lb/>to their ordering. Three hop-by-hop headers are described in this <lb/>document: <lb/>+-------------+--------------------+--------------------------------+ <lb/>| <lb/>Abbrev <lb/>| <lb/>Name <lb/>| Description <lb/>| <lb/>+-------------+--------------------+--------------------------------+ <lb/>| T_INTLIFE | Interest Lifetime | The time an Interest should <lb/>| <lb/>| <lb/>| (Section 3.4.1) <lb/>| stay pending at an <lb/>| <lb/>| <lb/>| <lb/>| intermediate node. <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| T_CACHETIME | Recommended Cache | The Recommended Cache Time for | <lb/>| <lb/>| <lb/>Time (Section <lb/>| Content Objects. <lb/>| <lb/>| <lb/>| <lb/>3.4.2) <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| T_MSGHASH | <lb/>Message Hash <lb/>| A cryptographic hash (Section | <lb/>| <lb/>| (Section 3.4.3) <lb/>| 3.3.3). <lb/>| <lb/>+-------------+--------------------+--------------------------------+ <lb/>Table 4: Hop-by-Hop Header Types <lb/>Additional hop-by-hop headers are defined in higher level <lb/>specifications such as the fragmentation specification. <lb/>3.4.1. Interest Lifetime <lb/>The Interest Lifetime is the time that an Interest should stay <lb/>pending at an intermediate node. It is expressed in milliseconds as <lb/>an unsigned integer in network byte order. <lb/>A value of 0 (encoded as 1 byte 0x00) indicates the Interest does not <lb/>elicit a Content Object response. It should still be forwarded, but <lb/>no reply is expected and a forwarder could skip creating a PIT entry. <lb/></body> + + <note place="footnote">Mosko, et al. <lb/>Experimental <lb/></note> + + <page>[Page 14] <lb/></page> + + <note place="headnote">RFC 8609 <lb/>CCNx TLV <lb/>July 2019 <lb/></note> + + <body>1 <lb/>2 <lb/>3 <lb/>0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 <lb/>+---------------+---------------+---------------+---------------+ <lb/>| <lb/>T_INTLIFE <lb/>| <lb/>Length <lb/>| <lb/>+---------------+---------------+---------------+---------------+ <lb/>/ <lb/>/ <lb/>/ <lb/>Lifetime (Length octets) <lb/>/ <lb/>/ <lb/>/ <lb/>+---------------+---------------+---------------+---------------+ <lb/>Figure 11: Interest Lifetime Encoding <lb/>3.4.2. Recommended Cache Time <lb/>The Recommended Cache Time (RCT) is a measure of the useful lifetime <lb/>of a Content Object as assigned by a content producer or upstream <lb/>node. It serves as a guideline to the Content Store cache in <lb/>determining how long to keep the Content Object. It is a <lb/>recommendation only and may be ignored by the cache. This is in <lb/>contrast to the ExpiryTime (described in Section 3.6.2.2.2) which <lb/>takes precedence over the RCT and must be obeyed. <lb/>Because the Recommended Cache Time is an optional hop-by-hop header <lb/>and not a part of the signed message, a content producer may re-issue <lb/>a previously signed Content Object with an updated RCT without <lb/>needing to re-sign the message. There is little ill effect from an <lb/>attacker changing the RCT as the RCT serves as a guideline only. <lb/>The Recommended Cache Time (a millisecond timestamp) is an unsigned <lb/>integer in network byte order that indicates the time when the <lb/>payload expires (as the number of milliseconds since the epoch in <lb/>UTC). It is a 64-bit field. <lb/>1 <lb/>2 <lb/>3 <lb/>0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 <lb/>+---------------+---------------+---------------+---------------+ <lb/>| <lb/>T_CACHETIME <lb/>| <lb/>8 <lb/>| <lb/>+---------------+---------------+---------------+---------------+ <lb/>/ <lb/>/ <lb/>/ <lb/>Recommended Cache Time <lb/>/ <lb/>/ <lb/>/ <lb/>+---------------+---------------+---------------+---------------+ <lb/>Figure 12: Recommended Cache Time Encoding <lb/></body> + + <note place="footnote">Mosko, et al. <lb/>Experimental <lb/></note> + + <page>[Page 15] <lb/></page> + + <note place="headnote">RFC 8609 <lb/>CCNx TLV <lb/>July 2019 <lb/></note> + + <body>3.4.3. Message Hash <lb/>Within a trusted domain, an operator may calculate the message hash <lb/>at a border device and insert that value into the hop-by-hop headers <lb/>of a message. An egress device should remove the value. This <lb/>permits intermediate devices within that trusted domain to match <lb/>against a ContentObjectHashRestriction without calculating it at <lb/>every hop. <lb/>The message hash is a cryptographic hash from the start of the CCNx <lb/>Message TLV to the end of the packet. It is used to match against <lb/>the ContentObjectHashRestriction (Section 3.6.2.1.2). The Message <lb/>Hash may be of longer length than an Interest's restriction, in which <lb/>case the device should use the left bytes of the Message Hash to <lb/>check against the Interest's value. <lb/>The Message Hash may only carry one hash type and there may only be <lb/>one Message Hash header. <lb/>The Message Hash header is unprotected, so this header is only of <lb/>practical use within a trusted domain, such as an operator's <lb/>autonomous system. <lb/>1 <lb/>2 <lb/>3 <lb/>0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 <lb/>+---------------+---------------+---------------+---------------+ <lb/>| <lb/>T_MSGHASH <lb/>| <lb/>(length + 4) <lb/>| <lb/>+---------------+---------------+---------------+---------------+ <lb/>| <lb/>hash type <lb/>| <lb/>length <lb/>| <lb/>+---------------+---------------+---------------+---------------+ <lb/>/ <lb/>hash value <lb/>/ <lb/>+---------------+---------------+---------------+---------------+ <lb/>Figure 13: Message Hash Header <lb/></body> + + <note place="footnote">Mosko, et al. <lb/>Experimental <lb/></note> + + <page>[Page 16] <lb/></page> + + <note place="headnote">RFC 8609 <lb/>CCNx TLV <lb/>July 2019 <lb/></note> + + <body>3.5. Top-Level Types <lb/>The top-level TLV types listed below exist at the outermost level of <lb/>a CCNx Message TLV. <lb/>+----------------------+------------+-------------------------------+ <lb/>| <lb/>Abbrev <lb/>| <lb/>Name <lb/>| Description <lb/>| <lb/>+----------------------+------------+-------------------------------+ <lb/>| <lb/>T_INTEREST <lb/>| Interest | An Interest MessageType. <lb/>| <lb/>| <lb/>| (Section | <lb/>| <lb/>| <lb/>| <lb/>3.6) <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| <lb/>T_OBJECT <lb/>| Content <lb/>| A Content Object MessageType | <lb/>| <lb/>| <lb/>Object <lb/>| <lb/>| <lb/>| <lb/>| (Section | <lb/>| <lb/>| <lb/>| <lb/>3.6) <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| <lb/>T_VALIDATION_ALG <lb/>| Validation | The method of message <lb/>| <lb/>| <lb/>| Algorithm | verification such as a <lb/>| <lb/>| <lb/>| (Section | Message Integrity Check <lb/>| <lb/>| <lb/>| 3.6.4.1) | (MIC), Message Authentication | <lb/>| <lb/>| <lb/>| Code (MAC), or cryptographic | <lb/>| <lb/>| <lb/>| signature. <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| T_VALIDATION_PAYLOAD | Validation | The validation output, such <lb/>| <lb/>| <lb/>| Payload <lb/>| as the CRC32C code or the RSA | <lb/>| <lb/>| (Section | signature. <lb/>| <lb/>| <lb/>| 3.6.4.2) | <lb/>| <lb/>+----------------------+------------+-------------------------------+ <lb/>Table 5: CCNx Top Level Types <lb/></body> + + <note place="footnote">Mosko, et al. <lb/>Experimental <lb/></note> + + <page>[Page 17] <lb/></page> + + <note place="headnote">RFC 8609 <lb/>CCNx TLV <lb/>July 2019 <lb/></note> + + <body>3.6. CCNx Message TLV <lb/>This is the format for the CCNx Message itself. The CCNx Message TLV <lb/>is the portion of the CCNx Packet between the hop-by-hop headers and <lb/>the Validation TLVs. The figure below is an expansion of the "CCNx <lb/>Message TLV" depicted in the beginning of Section 3. The CCNx <lb/>Message TLV begins with MessageType and runs through the optional <lb/>Payload. The same general format is used for both Interest and <lb/>Content Object messages which are differentiated by the MessageType <lb/>field. The first enclosed TLV of a CCNx Message TLV is always the <lb/>Name TLV, if present. This is followed by an optional Message TLVs <lb/>and an optional Payload TLV. <lb/>1 <lb/>2 <lb/>3 <lb/>0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 <lb/>+---------------+---------------+---------------+---------------+ <lb/>| <lb/>MessageType <lb/>| <lb/>MessageLength <lb/>| <lb/>+---------------+---------------+---------------+---------------+ <lb/>/ Name TLV <lb/>(Type = T_NAME) <lb/>/ <lb/>+---------------+---------------+---------------+---------------+ <lb/>/ Optional Message TLVs <lb/>(Various Types) <lb/>/ <lb/>+---------------+---------------+---------------+---------------+ <lb/>/ Optional Payload TLV (Type = T_PAYLOAD) <lb/>/ <lb/>+---------------+---------------+---------------+---------------+ <lb/>Figure 14: CCNx Message TLV Encoding <lb/>+-----------+---------------+---------------------------------------+ <lb/>| <lb/>Abbrev | <lb/>Name <lb/>| Description <lb/>| <lb/>+-----------+---------------+---------------------------------------+ <lb/>| <lb/>T_NAME | Name (Section | The CCNx Name requested in an <lb/>| <lb/>| <lb/>| <lb/>3.6.1) <lb/>| Interest or published in a Content <lb/>| <lb/>| <lb/>| <lb/>| Object. <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| T_PAYLOAD | <lb/>Payload <lb/>| The message payload. <lb/>| <lb/>| <lb/>| <lb/>(Section <lb/>| <lb/>| <lb/>| <lb/>| <lb/>3.6.3) <lb/>| <lb/>| <lb/>+-----------+---------------+---------------------------------------+ <lb/>Table 6: CCNx Message TLV Types <lb/></body> + + <note place="footnote">Mosko, et al. <lb/>Experimental <lb/></note> + + <page>[Page 18] <lb/></page> + + <note place="headnote">RFC 8609 <lb/>CCNx TLV <lb/>July 2019 <lb/></note> + + <body>3.6.1. Name <lb/>A Name is a TLV encoded sequence of segments. The table below lists <lb/>the type values appropriate for these name segments. A Name MUST NOT <lb/>include Pad TLVs. <lb/>As described in CCNx Semantics [RFC8569], using the CCNx URI <lb/>[CCNxURI] notation, a T_NAME with zero length corresponds to "ccnx:/" <lb/>(the default route). The message grammar does not allow the first <lb/>name segment to have zero length in a CCNx Message TLV Name. In the <lb/>TLV encoding, "ccnx:/" corresponds to T_NAME with zero length. <lb/>1 <lb/>2 <lb/>3 <lb/>0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 <lb/>+---------------+---------------+---------------+---------------+ <lb/>| <lb/>T_NAME <lb/>| <lb/>Length <lb/>| <lb/>+---------------+---------------+---------------+---------------+ <lb/>/ Name segment TLVs <lb/>/ <lb/>+---------------+---------------+---------------+---------------+ <lb/>Figure 15: Name Encoding <lb/>+---------------+-------------+-------------------------------------+ <lb/>| Symbolic Name | <lb/>Name <lb/>| Description <lb/>| <lb/>+---------------+-------------+-------------------------------------+ <lb/>| T_NAMESEGMENT | <lb/>Name <lb/>| A generic name segment. <lb/>| <lb/>| <lb/>| <lb/>segment <lb/>| <lb/>| <lb/>| <lb/>| <lb/>(Section | <lb/>| <lb/>| <lb/>| <lb/>3.6.1.1) | <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| <lb/>T_IPID <lb/>| <lb/>Interest | An identifier that represents the <lb/>| <lb/>| <lb/>| Payload ID | Interest Payload field. As an <lb/>| <lb/>| <lb/>| <lb/>(Section | example, the Payload ID might be a | <lb/>| <lb/>| <lb/>3.6.1.2) | hash of the Interest Payload. This | <lb/>| <lb/>| <lb/>| provides a way to differentiate <lb/>| <lb/>| <lb/>| <lb/>| between Interests based on their <lb/>| <lb/>| <lb/>| <lb/>| payloads without having to parse <lb/>| <lb/>| <lb/>| <lb/>| all the bytes of the payload <lb/>| <lb/>| <lb/>| <lb/>| itself, and instead using only this | <lb/>| <lb/>| <lb/>| Payload ID name segment. <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| <lb/>T_APP:00 -| Application | Application-specific payload in a <lb/>| <lb/>| <lb/>T_APP:4096 | Components | name segment. An application may <lb/>| <lb/>| <lb/>| <lb/>(Section | apply its own semantics to the 4096 | <lb/>| <lb/>| <lb/>3.6.1.1) | reserved types. <lb/>| <lb/>+---------------+-------------+-------------------------------------+ <lb/>Table 7: CCNx Name Types <lb/></body> + + <note place="footnote">Mosko, et al. <lb/>Experimental <lb/></note> + + <page>[Page 19] <lb/></page> + + <note place="headnote">RFC 8609 <lb/>CCNx TLV <lb/>July 2019 <lb/></note> + + <body>3.6.1.1. Name Segments <lb/>4096 special application payload name segments are allocated. These <lb/>have application semantics applied to them. A good convention is to <lb/>put the application's identity in the name prior to using these name <lb/>segments. <lb/>For example, a name like "ccnx:/foo/bar/hi" would be encoded as: <lb/>1 <lb/>2 <lb/>3 <lb/>0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 <lb/>+---------------+---------------+---------------+---------------+ <lb/>| <lb/>(T_NAME) <lb/>| <lb/>0x14 (20) <lb/>| <lb/>+---------------+---------------+---------------+---------------+ <lb/>| <lb/>(T_NAME_SEGMENT) <lb/>| <lb/>0x03 (3) <lb/>| <lb/>+---------------+---------------+---------------+---------------+ <lb/>| <lb/>f <lb/>o <lb/>o <lb/>|(T_NAME_SEGMENT) <lb/>+---------------+---------------+---------------+---------------+ <lb/>| <lb/>| <lb/>0x03 (3) <lb/>| <lb/>b <lb/>| <lb/>+---------------+---------------+---------------+---------------+ <lb/>| <lb/>a <lb/>r <lb/>| <lb/>(T_NAME_SEGMENT) <lb/>| <lb/>+---------------+---------------+---------------+---------------+ <lb/>| <lb/>0x02 (2) <lb/>| <lb/>h <lb/>| <lb/>i <lb/>| <lb/>+---------------+---------------+---------------+---------------+ <lb/>Figure 16: Name Encoding Example <lb/>3.6.1.2. Interest Payload ID <lb/>The InterestPayloadID is a name segment created by the origin of an <lb/>Interest to represent the Interest Payload. This allows the proper <lb/>multiplexing of Interests based on their name if they have different <lb/>payloads. A common representation is to use a hash of the Interest <lb/>Payload as the InterestPayloadID. <lb/>As part of the Value of the TLV, the InterestPayloadID contains a <lb/>one-octet identifier of the method used to create the <lb/>InterestPayloadID followed by a variable-length octet string. An <lb/>implementation is not required to implement any of the methods to <lb/>receive an Interest; the InterestPayloadID may be treated only as an <lb/>opaque octet string for the purposes of multiplexing Interests with <lb/>different payloads. Only a device creating an InterestPayloadID name <lb/>segment or a device verifying such a segment needs to implement the <lb/>algorithms. <lb/>It uses the encoding of hash values specified in Section 3.3.3. <lb/></body> + + <note place="footnote">Mosko, et al. <lb/>Experimental <lb/></note> + + <page>[Page 20] <lb/></page> + + <note place="headnote">RFC 8609 <lb/>CCNx TLV <lb/>July 2019 <lb/></note> + + <body>In normal operations, we recommend displaying the InterestPayloadID <lb/>as an opaque octet string in a CCNx URI, as this is the common <lb/>denominator for implementation parsing. <lb/>The InterestPayloadID, even if it is a hash, should not convey any <lb/>security context. If a system requires confirmation that a specific <lb/>entity created the InterestPayload, it should use a cryptographic <lb/>signature on the Interest via the ValidationAlgorithm and <lb/>ValidationPayload or use its own methods inside the Interest Payload. <lb/>3.6.2. Message TLVs <lb/>Each message type (Interest or Content Object) is associated with a <lb/>set of optional Message TLVs. Additional specification documents may <lb/>extend the types associated with each. <lb/>3.6.2.1. Interest Message TLVs <lb/>There are two Message TLVs currently associated with an Interest <lb/>message: the KeyIdRestriction selector and the ContentObjectHashRestr <lb/>selector are used to narrow the universe of acceptable Content <lb/>Objects that would satisfy the Interest. <lb/>1 <lb/>2 <lb/>3 <lb/>0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 <lb/>+---------------+---------------+---------------+---------------+ <lb/>| <lb/>MessageType <lb/>| <lb/>MessageLength <lb/>| <lb/>+---------------+---------------+---------------+---------------+ <lb/>| Name TLV <lb/>| <lb/>+---------------+---------------+---------------+---------------+ <lb/>/ Optional KeyIdRestriction TLV <lb/>/ <lb/>+---------------------------------------------------------------+ <lb/>/ Optional ContentObjectHashRestriction TLV <lb/>/ <lb/>+---------------------------------------------------------------+ <lb/>Figure 17: Interest Message TLVs <lb/></body> + + <note place="footnote">Mosko, et al. <lb/>Experimental <lb/></note> + + <page>[Page 21] <lb/></page> + + <note place="headnote">RFC 8609 <lb/>CCNx TLV <lb/>July 2019 <lb/></note> + + <body>+----------------+------------------------------+-------------------+ <lb/>| <lb/>Abbrev <lb/>| <lb/>Name <lb/>| Description <lb/>| <lb/>+----------------+------------------------------+-------------------+ <lb/>| T_KEYIDRESTR | KeyIdRestriction (Section <lb/>| A representation | <lb/>| <lb/>| <lb/>3.6.2.1.1) <lb/>| (as per Section <lb/>| <lb/>| <lb/>| <lb/>| 3.3.3) of the <lb/>| <lb/>| <lb/>| <lb/>| KeyId <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| T_OBJHASHRESTR | ContentObjectHashRestriction | A representation | <lb/>| <lb/>| <lb/>(Section 3.6.2.1.2) <lb/>| (as per Section <lb/>| <lb/>| <lb/>| <lb/>| 3.3.3) of the <lb/>| <lb/>| <lb/>| <lb/>| hash of the <lb/>| <lb/>| <lb/>| <lb/>| specific Content | <lb/>| <lb/>| <lb/>| Object that would | <lb/>| <lb/>| <lb/>| satisfy the <lb/>| <lb/>| <lb/>| <lb/>| Interest. <lb/>| <lb/>+----------------+------------------------------+-------------------+ <lb/>Table 8: CCNx Interest Message TLV Types <lb/>3.6.2.1.1. KeyIdRestriction <lb/>An Interest MAY include a KeyIdRestriction selector. This ensures <lb/>that only Content Objects with matching KeyIds will satisfy the <lb/>Interest. See Section 3.6.4.1.4.1 for the format of a KeyId. <lb/>3.6.2.1.2. ContentObjectHashRestriction <lb/>An Interest MAY contain a ContentObjectHashRestriction selector. <lb/>This is the hash of the Content Object --the self-certifying name <lb/>restriction that must be verified in the network, if an Interest <lb/>carried this restriction (see Message Hash (Section 3.4.3)). The <lb/>LENGTH MUST be from one of the allowed values for that hash (see <lb/>Section 3.3.3). <lb/>The ContentObjectHashRestriction SHOULD be of type T_SHA-256 and of <lb/>length 32 bytes. <lb/></body> + + <note place="footnote">Mosko, et al. <lb/>Experimental <lb/></note> + + <page>[Page 22] <lb/></page> + + <note place="headnote">RFC 8609 <lb/>CCNx TLV <lb/>July 2019 <lb/></note> + + <body>1 <lb/>2 <lb/>3 <lb/>0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 <lb/>+---------------+---------------+---------------+---------------+ <lb/>| <lb/>T_OBJHASHRESTR <lb/>| <lb/>(LENGTH+4) <lb/>| <lb/>+---------------+---------------+---------------+---------------+ <lb/>| <lb/>hash type <lb/>| <lb/>LENGTH <lb/>| <lb/>+---------------+---------------+---------------+---------------+ <lb/>/ <lb/>LENGTH octets of hash <lb/>/ <lb/>+---------------+---------------+---------------+---------------+ <lb/>Figure 18: ContentObjectHashRestriction Encoding <lb/>3.6.2.2. Content Object Message TLVs <lb/>The following message TLVs are currently defined for Content Objects: <lb/>PayloadType (optional) and ExpiryTime (optional). <lb/>1 <lb/>2 <lb/>3 <lb/>0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 <lb/>+---------------+---------------+---------------+---------------+ <lb/>| <lb/>MessageType <lb/>| <lb/>MessageLength <lb/>| <lb/>+---------------+---------------+---------------+---------------+ <lb/>| Name TLV <lb/>| <lb/>+---------------+---------------+---------------+---------------+ <lb/>/ Optional PayloadType TLV <lb/>/ <lb/>+---------------------------------------------------------------+ <lb/>/ Optional ExpiryTime TLV <lb/>/ <lb/>+---------------------------------------------------------------+ <lb/>Figure 19: Content Object Message TLVs <lb/>+-------------+-------------+---------------------------------------+ <lb/>| <lb/>Abbrev <lb/>| <lb/>Name <lb/>| Description <lb/>| <lb/>+-------------+-------------+---------------------------------------+ <lb/>| T_PAYLDTYPE | PayloadType | Indicates the type of Payload <lb/>| <lb/>| <lb/>| <lb/>(Section | contents. <lb/>| <lb/>| <lb/>| 3.6.2.2.1) | <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| <lb/>T_EXPIRY | ExpiryTime | The time at which the Payload <lb/>| <lb/>| <lb/>| <lb/>(Section | expires, as expressed in the number <lb/>| <lb/>| <lb/>| 3.6.2.2.2) | of milliseconds since the epoch in <lb/>| <lb/>| <lb/>| <lb/>| UTC. If missing, Content Object may | <lb/>| <lb/>| <lb/>| be used as long as desired. <lb/>| <lb/>+-------------+-------------+---------------------------------------+ <lb/>Table 9: CCNx Content Object Message TLV Types <lb/></body> + + <note place="footnote">Mosko, et al. <lb/>Experimental <lb/></note> + + <page>[Page 23] <lb/></page> + + <note place="headnote">RFC 8609 <lb/>CCNx TLV <lb/>July 2019 <lb/></note> + + <body>3.6.2.2.1. PayloadType <lb/>The PayloadType is an octet representing the general type of the <lb/>Payload TLV. <lb/>o T_PAYLOADTYPE_DATA: Data (possibly encrypted) <lb/>o T_PAYLOADTYPE_KEY: Key <lb/>o T_PAYLOADTYPE_LINK: Link <lb/>The Data type indicates that the Payload of the ContentObject is <lb/>opaque application bytes. The Key type indicates that the Payload is <lb/>a DER-encoded public key. The Link type indicates that the Payload <lb/>is one or more Links (Section 3.3.4). If this field is missing, a <lb/>Data type is assumed. <lb/>1 <lb/>2 <lb/>3 <lb/>0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 <lb/>+---------------+---------------+---------------+---------------+ <lb/>| <lb/>T_PAYLDTYPE <lb/>| <lb/>1 <lb/>| <lb/>+---------------+---------------+---------------+---------------+ <lb/>| PayloadType | <lb/>+---------------+ <lb/>Figure 20: PayloadType Encoding <lb/>3.6.2.2.2. ExpiryTime <lb/>The ExpiryTime is the time at which the Payload expires, as expressed <lb/>by a timestamp containing the number of milliseconds since the epoch <lb/>in UTC. It is a network byte order unsigned integer in a 64-bit <lb/>field. A cache or end system should not respond with a Content <lb/>Object past its ExpiryTime. Routers forwarding a Content Object do <lb/>not need to check the ExpiryTime. If the ExpiryTime field is <lb/>missing, the Content Object has no expressed expiration, and a cache <lb/>or end system may use the Content Object for as long as desired. <lb/>1 <lb/>2 <lb/>3 <lb/>0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 <lb/>+---------------+---------------+---------------+---------------+ <lb/>| <lb/>T_EXPIRY <lb/>| <lb/>8 <lb/>| <lb/>+---------------+---------------+---------------+---------------+ <lb/>/ <lb/>ExpiryTime <lb/>/ <lb/>/ <lb/>/ <lb/>+---------------+---------------+---------------+---------------+ <lb/>Figure 21: ExpiryTime encoding <lb/></body> + + <note place="footnote">Mosko, et al. <lb/>Experimental <lb/></note> + + <page>[Page 24] <lb/></page> + + <note place="headnote">RFC 8609 <lb/>CCNx TLV <lb/>July 2019 <lb/></note> + + <body>3.6.3. Payload <lb/>The Payload TLV contains the content of the packet. It MAY be of <lb/>zero length. If a packet does not have any payload, this field <lb/>SHOULD be omitted, rather than being of zero length. <lb/>1 <lb/>2 <lb/>3 <lb/>0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 <lb/>+---------------+---------------+---------------+---------------+ <lb/>| <lb/>T_PAYLOAD <lb/>| <lb/>Length <lb/>| <lb/>+---------------+---------------+---------------+---------------+ <lb/>/ <lb/>Payload Contents <lb/>/ <lb/>+---------------+---------------+---------------+---------------+ <lb/>Figure 22: Payload Encoding <lb/>3.6.4. Validation <lb/>Both Interests and Content Objects have the option to include <lb/>information about how to validate the CCNx Message. This information <lb/>is contained in two TLVs: the ValidationAlgorithm TLV and the <lb/>ValidationPayload TLV. The ValidationAlgorithm TLV specifies the <lb/>mechanism to be used to verify the CCNx Message. Examples include <lb/>verification with a Message Integrity Check (MIC), a Message <lb/>Authentication Code (MAC), or a cryptographic signature. The <lb/>ValidationPayload TLV contains the validation output, such as the <lb/>CRC32C code or the RSA signature. <lb/>An Interest would most likely only use a MIC type of validation --a <lb/>CRC, checksum, or digest. <lb/>3.6.4.1. Validation Algorithm <lb/>The ValidationAlgorithm is a set of nested TLVs containing all of the <lb/>information needed to verify the message. The outermost container <lb/>has type = T_VALIDATION_ALG. The first nested TLV defines the <lb/>specific type of validation to be performed on the message. The type <lb/>is identified with the "ValidationType" as shown in the figure below <lb/>and elaborated in the table below. Nested within that container are <lb/>the TLVs for any ValidationType-dependent data --for example, a Key <lb/>Id, Key Locator, etc. <lb/>Complete examples of several types may be found in Section 3.6.4.1.5. <lb/></body> + + <note place="footnote">Mosko, et al. <lb/>Experimental <lb/></note> + + <page>[Page 25] <lb/></page> + + <note place="headnote">RFC 8609 <lb/>CCNx TLV <lb/>July 2019 <lb/></note> + + <body>1 <lb/>2 <lb/>3 <lb/>0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 <lb/>+---------------+---------------+---------------+---------------+ <lb/>| <lb/>T_VALIDATION_ALG <lb/>| <lb/>ValidationAlgLength <lb/>| <lb/>+---------------+---------------+---------------+---------------+ <lb/>| <lb/>ValidationType <lb/>| <lb/>Length <lb/>| <lb/>+---------------+---------------+---------------+---------------+ <lb/>/ ValidationType-dependent data <lb/>/ <lb/>+---------------+---------------+---------------+---------------+ <lb/>Figure 23: Validation Algorithm Encoding <lb/>+-----------------+---------------+---------------------------------+ <lb/>| <lb/>Abbrev <lb/>| <lb/>Name <lb/>| Description <lb/>| <lb/>+-----------------+---------------+---------------------------------+ <lb/>| <lb/>T_CRC32C <lb/>| <lb/>CRC32C <lb/>| Castagnoli CRC32 (iSCSI, ext4, | <lb/>| <lb/>| <lb/>(Section <lb/>| etc.) with normal form <lb/>| <lb/>| <lb/>| <lb/>3.6.4.1.1) | polynomial 0x1EDC6F41. <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| T_HMAC-SHA256 | HMAC-SHA256 | HMAC (RFC 2104) using SHA256 <lb/>| <lb/>| <lb/>| <lb/>(Section <lb/>| hash. <lb/>| <lb/>| <lb/>| <lb/>3.6.4.1.2) | <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| <lb/>T_RSA-SHA256 | <lb/>RSA-SHA256 | RSA public-key signature using | <lb/>| <lb/>| <lb/>(Section <lb/>| SHA256 digest. <lb/>| <lb/>| <lb/>| <lb/>3.6.4.1.3) | <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| T_EC-SECP-256K1 | <lb/>SECP-256K1 | Elliptic Curve signature with <lb/>| <lb/>| <lb/>| <lb/>(Section <lb/>| SECP-256K1 parameters (see <lb/>| <lb/>| <lb/>| <lb/>3.6.4.1.3) | [ECC]). <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| T_EC-SECP-384R1 | <lb/>SECP-384R1 | Elliptic Curve signature with <lb/>| <lb/>| <lb/>| <lb/>(Section <lb/>| SECP-384R1 parameters (see <lb/>| <lb/>| <lb/>| <lb/>3.6.4.1.3) | [ECC]). <lb/>| <lb/>+-----------------+---------------+---------------------------------+ <lb/>Table 10: CCNx Validation Types <lb/>3.6.4.1.1. Message Integrity Checks <lb/>MICs do not require additional data in order to perform the <lb/>verification. An example is CRC32C that has a zero-length value. <lb/></body> + + <note place="footnote">Mosko, et al. <lb/>Experimental <lb/></note> + + <page>[Page 26] <lb/></page> + + <note place="headnote">RFC 8609 <lb/>CCNx TLV <lb/>July 2019 <lb/></note> + + <body>3.6.4.1.2. Message Authentication Codes <lb/>MACs are useful for communication between two trusting parties who <lb/>have already shared secret keys. An example is the HMAC algorithm. <lb/>A MAC uses the KeyId field to identify which shared secret is in use. <lb/>The meaning of the KeyId is specific to the two parties involved and <lb/>could be simply an integer to enumerate keys. If a new MAC requires <lb/>an additional field, such as an Initialization Vector, that field <lb/>would need to be defined as part of the updated specification. <lb/>3.6.4.1.3. Signature <lb/>Signature type Validators specify a digest mechanism and a signing <lb/>algorithm to verify the message. Examples include an RSA signature <lb/>on a SHA256 digest, an Elliptic Curve signature with SECP-256K1 <lb/>parameters, etc. These Validators require a KeyId and a mechanism <lb/>for locating the publisher's public key (a KeyLocator) --and <lb/>optionally a PublicKey or Certificate or KeyLink. <lb/>3.6.4.1.4. Validation-Dependent Data <lb/>Different Validation Algorithms require access to different pieces of <lb/>data contained in the ValidationAlgorithm TLV. As described above, <lb/>Key Ids, Key Locators, Public Keys, Certificates, Links, and Key <lb/>Names all play a role in different Validation Algorithms. Any number <lb/>of Validation-Dependent Data containers can be present in a <lb/>Validation Algorithm TLV. <lb/></body> + + <note place="footnote">Mosko, et al. <lb/>Experimental <lb/></note> + + <page>[Page 27] <lb/></page> + + <note place="headnote">RFC 8609 <lb/>CCNx TLV <lb/>July 2019 <lb/></note> + + <body>Below is a table of CCNx ValidationType-dependent data types: <lb/>+-------------+-----------------+-----------------------------------+ <lb/>| <lb/>Abbrev <lb/>| <lb/>Name <lb/>| Description <lb/>| <lb/>+-------------+-----------------+-----------------------------------+ <lb/>| <lb/>T_KEYID <lb/>| <lb/>SignerKeyId <lb/>| An identifier of the shared <lb/>| <lb/>| <lb/>| <lb/>(Section <lb/>| secret or public key associated <lb/>| <lb/>| <lb/>| <lb/>3.6.4.1.4.1) | with a MAC or Signature. <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| T_PUBLICKEY | <lb/>Public Key <lb/>| DER-encoded public key. <lb/>| <lb/>| <lb/>| <lb/>(Section <lb/>| <lb/>| <lb/>| <lb/>| <lb/>3.6.4.1.4.2) | <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| <lb/>T_CERT <lb/>| <lb/>Certificate <lb/>| DER-encoded X.509 certificate. <lb/>| <lb/>| <lb/>| <lb/>(Section <lb/>| <lb/>| <lb/>| <lb/>| <lb/>3.6.4.1.4.3) | <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| T_KEYLINK | <lb/>KeyLink <lb/>| A CCNx Link object. <lb/>| <lb/>| <lb/>| <lb/>(Section <lb/>| <lb/>| <lb/>| <lb/>| <lb/>3.6.4.1.4.4) | <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| T_SIGTIME | SignatureTime | A millisecond timestamp <lb/>| <lb/>| <lb/>| <lb/>(Section <lb/>| indicating the time when the <lb/>| <lb/>| <lb/>| <lb/>3.6.4.1.4.5) | signature was created. <lb/>| <lb/>+-------------+-----------------+-----------------------------------+ <lb/>Table 11: CCNx Validation-Dependent Data Types <lb/>3.6.4.1.4.1. KeyId <lb/>The KeyId for a signature is the publisher key identifier. It is <lb/>similar to a Subject Key Identifier from X.509 (see Section 4.2.1.2 <lb/>of [RFC5280]). It should be derived from the key used to sign, such <lb/>as from the SHA-256 hash of the key. It applies to both public and <lb/>private key systems and to symmetric key systems. <lb/>The KeyId is represented using the hash format in Section 3.3.3. If <lb/>an application protocol uses a non-hash identifier, it should use one <lb/>of the reserved values. <lb/></body> + + <note place="footnote">Mosko, et al. <lb/>Experimental <lb/></note> + + <page>[Page 28] <lb/></page> + + <note place="headnote">RFC 8609 <lb/>CCNx TLV <lb/>July 2019 <lb/></note> + + <body>1 <lb/>2 <lb/>3 <lb/>0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 <lb/>+---------------+---------------+---------------+---------------+ <lb/>| <lb/>T_KEYID <lb/>| <lb/>LENGTH+4 <lb/>| <lb/>+---------------+---------------+---------------+---------------+ <lb/>| <lb/><hash type> <lb/>| <lb/>LENGTH <lb/>| <lb/>+---------------+---------------+---------------+---------------+ <lb/>/ <lb/>LENGTH octets of hash <lb/>/ <lb/>+---------------+---------------+---------------+---------------+ <lb/>Figure 24: KeyId Encoding <lb/>3.6.4.1.4.2. Public Key <lb/>A Public Key is a DER-encoded Subject Public Key Info block, as in an <lb/>X.509 certificate. <lb/>1 <lb/>2 <lb/>3 <lb/>0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 <lb/>+---------------+---------------+---------------+---------------+ <lb/>| <lb/>T_PUBLICKEY <lb/>| <lb/>Length <lb/>| <lb/>+---------------+---------------+---------------+---------------+ <lb/>/ <lb/>Public Key (DER-encoded SPKI) <lb/>/ <lb/>+---------------+---------------+---------------+---------------+ <lb/>Figure 25: Public Key Encoding <lb/>3.6.4.1.4.3. Certificate <lb/>A Certificate is a DER-encoded X.509 certificate. The KeyId <lb/>(Section 3.6.4.1.4.1) is derived from this encoding. <lb/>1 <lb/>2 <lb/>3 <lb/>0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 <lb/>+---------------+---------------+---------------+---------------+ <lb/>| <lb/>T_CERT <lb/>| <lb/>Length <lb/>| <lb/>+---------------+---------------+---------------+---------------+ <lb/>/ <lb/>Certificate (DER-encoded X.509) <lb/>/ <lb/>+---------------+---------------+---------------+---------------+ <lb/>Figure 26: Certificate Encoding <lb/></body> + + <note place="footnote">Mosko, et al. <lb/>Experimental <lb/></note> + + <page>[Page 29] <lb/></page> + + <note place="headnote">RFC 8609 <lb/>CCNx TLV <lb/>July 2019 <lb/></note> + + <body>3.6.4.1.4.4. KeyLink <lb/>A KeyLink type KeyLocator is a Link. <lb/>The KeyLink ContentObjectHashRestr, if included, is the digest of the <lb/>Content Object identified by KeyLink, not the digest of the public <lb/>key. Likewise, the KeyIdRestr of the KeyLink is the KeyId of the <lb/>ContentObject, not necessarily of the wrapped key. <lb/>1 <lb/>2 <lb/>3 <lb/>0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 <lb/>+---------------+---------------+-------------------------------+ <lb/>| <lb/>T_KEYLINK <lb/>| <lb/>Length <lb/>| <lb/>+---------------+---------------+-------------------------------+ <lb/>/ Link <lb/>/ <lb/>+---------------------------------------------------------------+ <lb/>Figure 27: KeyLink Encoding <lb/>3.6.4.1.4.5. SignatureTime <lb/>The SignatureTime is a millisecond timestamp indicating the time at <lb/>which a signature was created. The signer sets this field to the <lb/>current time when creating a signature. A verifier may use this time <lb/>to determine whether or not the signature was created during the <lb/>validity period of a key, or if it occurred in a reasonable sequence <lb/>with other associated signatures. The SignatureTime is unrelated to <lb/>any time associated with the actual CCNx Message, which could have <lb/>been created long before the signature. The default behavior is to <lb/>always include a SignatureTime when creating an authenticated message <lb/>(e.g., HMAC or RSA). <lb/>SignatureTime is an unsigned integer in network byte order that <lb/>indicates when the signature was created (as the number of <lb/>milliseconds since the epoch in UTC). It is a fixed 64-bit field. <lb/>1 <lb/>2 <lb/>3 <lb/>0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 <lb/>+---------------+---------------+-------------------------------+ <lb/>| <lb/>T_SIGTIME <lb/>| <lb/>8 <lb/>| <lb/>+---------------+---------------+-------------------------------+ <lb/>/ <lb/>SignatureTime <lb/>/ <lb/>+---------------------------------------------------------------+ <lb/>Figure 28: SignatureTime Encoding <lb/></body> + + <note place="footnote">Mosko, et al. <lb/>Experimental <lb/></note> + + <page>[Page 30] <lb/></page> + + <note place="headnote">RFC 8609 <lb/>CCNx TLV <lb/>July 2019 <lb/></note> + + <body>3.6.4.1.5. Validation Examples <lb/>As an example of a MIC-type validation, the encoding for CRC32C <lb/>validation would be: <lb/>1 <lb/>2 <lb/>3 <lb/>0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 <lb/>+---------------+---------------+---------------+---------------+ <lb/>| <lb/>T_VALIDATION_ALG <lb/>| <lb/>4 <lb/>| <lb/>+---------------+---------------+---------------+---------------+ <lb/>| <lb/>T_CRC32C <lb/>| <lb/>0 <lb/>| <lb/>+---------------+---------------+---------------+---------------+ <lb/>Figure 29: CRC32C Encoding Example <lb/>As an example of a MAC-type validation, the encoding for an HMAC <lb/>using a SHA256 hash would be: <lb/>1 <lb/>2 <lb/>3 <lb/>0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 <lb/>+---------------+---------------+---------------+---------------+ <lb/>| <lb/>T_VALIDATION_ALG <lb/>| <lb/>40 <lb/>| <lb/>+---------------+---------------+---------------+---------------+ <lb/>| <lb/>T_HMAC-SHA256 <lb/>| <lb/>36 <lb/>| <lb/>+---------------+---------------+---------------+---------------+ <lb/>| <lb/>T_KEYID <lb/>| <lb/>32 <lb/>| <lb/>+---------------+---------------+---------------+---------------+ <lb/>/ <lb/>KeyId <lb/>/ <lb/>/---------------+---------------+-------------------------------+ <lb/>Figure 30: HMAC-SHA256 Encoding Example <lb/></body> + + <note place="footnote">Mosko, et al. <lb/>Experimental <lb/></note> + + <page>[Page 31] <lb/></page> + + <note place="headnote">RFC 8609 <lb/>CCNx TLV <lb/>July 2019 <lb/></note> + + <body>As an example of a Signature-type validation, the encoding for an RSA <lb/>public-key signature using a SHA256 digest and Public Key would be: <lb/>1 <lb/>2 <lb/>3 <lb/>0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 <lb/>+---------------+---------------+---------------+---------------+ <lb/>| <lb/>T_VALIDATION_ALG <lb/>| <lb/>44 octets + Variable Length | <lb/>+---------------+---------------+---------------+---------------+ <lb/>| <lb/>T_RSA-SHA256 <lb/>| <lb/>40 octets + Variable Length | <lb/>+---------------+---------------+---------------+---------------+ <lb/>| <lb/>T_KEYID <lb/>| <lb/>32 <lb/>| <lb/>+---------------+---------------+---------------+---------------+ <lb/>/ <lb/>KeyId <lb/>/ <lb/>/---------------+---------------+-------------------------------+ <lb/>| <lb/>T_PUBLICKEY <lb/>| Variable Length (~160 octets)| <lb/>+---------------+---------------+---------------+---------------+ <lb/>/ <lb/>Public Key (DER-encoded SPKI) <lb/>/ <lb/>+---------------+---------------+---------------+---------------+ <lb/>Figure 31: RSA-SHA256 Encoding Example <lb/>3.6.4.2. Validation Payload <lb/>1 <lb/>2 <lb/>3 <lb/>0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 <lb/>+---------------+---------------+---------------+---------------+ <lb/>| <lb/>T_VALIDATION_PAYLOAD <lb/>| ValidationPayloadLength <lb/>| <lb/>+---------------+---------------+---------------+---------------+ <lb/>/ Type-dependent data <lb/>/ <lb/>+---------------+---------------+---------------+---------------+ <lb/>Figure 32: Validation Payload Encoding <lb/>The ValidationPayload contains the validation output, such as the <lb/>CRC32C code or the RSA signature. <lb/></body> + + <note place="footnote">Mosko, et al. <lb/>Experimental <lb/></note> + + <page>[Page 32] <lb/></page> + + <note place="headnote">RFC 8609 <lb/>CCNx TLV <lb/>July 2019 <lb/></note> + + <body>4. IANA Considerations <lb/>This section details each kind of CCNx protocol value that can be <lb/>registered. Each type registry can be updated by incrementally <lb/>expanding the type space, i.e., by allocating and reserving new <lb/>types. As per [RFC8126], this section details the creation of the <lb/>"Content-Centric Networking (CCNx)" registry and several <lb/>subregistries. <lb/>4.1. Packet Type Registry <lb/>IANA has created the "CCNx Packet Types" registry and allocated the <lb/>packet types described below. The registration procedure is RFC <lb/>Required. The Type value is 1 octet. The range is 0x00-0xFF. <lb/>+------+-------------+----------------------------------+ <lb/>| Type | <lb/>Name <lb/>| <lb/>Reference <lb/>| <lb/>+------+-------------+----------------------------------+ <lb/>| 0x00 | PT_INTEREST | Fixed Header Types (Section 3.2) | <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| 0x01 | PT_CONTENT | Fixed Header Types (Section 3.2) | <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| 0x02 | PT_RETURN | Fixed Header Types (Section 3.2) | <lb/>+------+-------------+----------------------------------+ <lb/>Packet Types <lb/></body> + + <note place="footnote">Mosko, et al. <lb/>Experimental <lb/></note> + + <page>[Page 33] <lb/></page> + + <note place="headnote">RFC 8609 <lb/>CCNx TLV <lb/>July 2019 <lb/></note> + + <body>4.2. Interest Return Code Registry <lb/>IANA has created the "CCNx Interest Return Code Types" registry and <lb/>allocated the Interest Return code types described below. The <lb/>registration procedure is Specification Required. The Type value is <lb/>1 octet. The range is 0x00-0xFF. <lb/>+------+---------------------------------------+--------------------+ <lb/>| Type | <lb/>Name <lb/>| <lb/>Reference <lb/>| <lb/>+------+---------------------------------------+--------------------+ <lb/>| 0x00 | <lb/>Reserved <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| 0x01 | <lb/>T_RETURN_NO_ROUTE <lb/>| Fixed Header Types | <lb/>| <lb/>| <lb/>| (Section 3.2.3.3) | <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| 0x02 | <lb/>T_RETURN_LIMIT_EXCEEDED <lb/>| Fixed Header Types | <lb/>| <lb/>| <lb/>| (Section 3.2.3.3) | <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| 0x03 | <lb/>T_RETURN_NO_RESOURCES <lb/>| Fixed Header Types | <lb/>| <lb/>| <lb/>| (Section 3.2.3.3) | <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| 0x04 | <lb/>T_RETURN_PATH_ERROR <lb/>| Fixed Header Types | <lb/>| <lb/>| <lb/>| (Section 3.2.3.3) | <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| 0x05 | <lb/>T_RETURN_PROHIBITED <lb/>| Fixed Header Types | <lb/>| <lb/>| <lb/>| (Section 3.2.3.3) | <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| 0x06 | <lb/>T_RETURN_CONGESTED <lb/>| Fixed Header Types | <lb/>| <lb/>| <lb/>| (Section 3.2.3.3) | <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| 0x07 | <lb/>T_RETURN_MTU_TOO_LARGE <lb/>| Fixed Header Types | <lb/>| <lb/>| <lb/>| (Section 3.2.3.3) | <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| 0x08 | T_RETURN_UNSUPPORTED_HASH_RESTRICTION | Fixed Header Types | <lb/>| <lb/>| <lb/>| (Section 3.2.3.3) | <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| 0x09 | <lb/>T_RETURN_MALFORMED_INTEREST <lb/>| Fixed Header Types | <lb/>| <lb/>| <lb/>| (Section 3.2.3.3) | <lb/>+------+---------------------------------------+--------------------+ <lb/>CCNx Interest Return Types <lb/></body> + + <note place="footnote">Mosko, et al. <lb/>Experimental <lb/></note> + + <page>[Page 34] <lb/></page> + + <note place="headnote">RFC 8609 <lb/>CCNx TLV <lb/>July 2019 <lb/></note> + + <body>4.3. Hop-by-Hop Type Registry <lb/>IANA has created the "CCNx Hop-by-Hop Types" registry and allocated <lb/>the hop-by-hop types described below. The registration procedure is <lb/>RFC Required. The Type value is 2 octets. The range is <lb/>0x0000-0xFFFF. <lb/>+---------------+-------------+-------------------------------------+ <lb/>| <lb/>Type <lb/>| <lb/>Name <lb/>| <lb/>Reference <lb/>| <lb/>+---------------+-------------+-------------------------------------+ <lb/>| <lb/>0x0000 <lb/>| <lb/>Reserved | <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| <lb/>0x0001 <lb/>| T_INTLIFE | <lb/>Hop-by-hop TLV headers (Section <lb/>| <lb/>| <lb/>| <lb/>| <lb/>3.4) <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| <lb/>0x0002 <lb/>| T_CACHETIME | <lb/>Hop-by-hop TLV headers (Section <lb/>| <lb/>| <lb/>| <lb/>| <lb/>3.4) <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| <lb/>0x0003 <lb/>| T_MSGHASH | <lb/>Hop-by-hop TLV headers (Section <lb/>| <lb/>| <lb/>| <lb/>| <lb/>3.4) <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| <lb/>0x0004 -<lb/>| <lb/>Reserved | <lb/>| <lb/>| <lb/>0x0007 <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| <lb/>0x0FFE <lb/>| <lb/>T_PAD <lb/>| <lb/>Pad (Section 3.3.1) <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| <lb/>0x0FFF <lb/>| <lb/>T_ORG <lb/>| Organization-Specific TLVs (Section | <lb/>| <lb/>| <lb/>| <lb/>3.3.2) <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| 0x1000-0x1FFF | <lb/>Reserved | <lb/>Experimental Use (Section 3) <lb/>| <lb/>+---------------+-------------+-------------------------------------+ <lb/>CCNx Hop-by-Hop Types <lb/></body> + + <note place="footnote">Mosko, et al. <lb/>Experimental <lb/></note> + + <page>[Page 35] <lb/></page> + + <note place="headnote">RFC 8609 <lb/>CCNx TLV <lb/>July 2019 <lb/></note> + + <body>4.4. Top-Level Type Registry <lb/>IANA has created the "CCNx Top-Level Types" registry and allocated <lb/>the top-level types described below. The registration procedure is <lb/>RFC Required. The Type value is 2 octets. The range is <lb/>0x0000-0xFFFF. <lb/>+--------+----------------------+-------------------------------+ <lb/>| Type | <lb/>Name <lb/>| <lb/>Reference <lb/>| <lb/>+--------+----------------------+-------------------------------+ <lb/>| 0x0000 | <lb/>Reserved <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| 0x0001 | <lb/>T_INTEREST <lb/>| Top-Level Types (Section 3.5) | <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| 0x0002 | <lb/>T_OBJECT <lb/>| Top-Level Types (Section 3.5) | <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| 0x0003 | <lb/>T_VALIDATION_ALG <lb/>| Top-Level Types (Section 3.5) | <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| 0x0004 | T_VALIDATION_PAYLOAD | Top-Level Types (Section 3.5) | <lb/>+--------+----------------------+-------------------------------+ <lb/>CCNx Top-Level Types <lb/></body> + + <note place="footnote">Mosko, et al. <lb/>Experimental <lb/></note> + + <page>[Page 36] <lb/></page> + + <note place="headnote">RFC 8609 <lb/>CCNx TLV <lb/>July 2019 <lb/></note> + + <body>4.5. Name Segment Type Registry <lb/>IANA has created the "CCNx Name Segment Types" registry and allocated <lb/>the name segment types described below. The registration procedure <lb/>is Specification Required. The Type value is 2 octets. The range is <lb/>0x0000-0xFFFF. <lb/>+--------------+------------------+---------------------------------+ <lb/>| <lb/>Type <lb/>| <lb/>Name <lb/>| <lb/>Reference <lb/>| <lb/>+--------------+------------------+---------------------------------+ <lb/>| <lb/>0x0000 <lb/>| <lb/>Reserved <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| <lb/>0x0001 <lb/>| T_NAMESEGMENT <lb/>| <lb/>Name (Section 3.6.1) <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| <lb/>0x0002 <lb/>| <lb/>T_IPID <lb/>| <lb/>Name (Section 3.6.1) <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| <lb/>0x0010 -<lb/>| <lb/>Reserved <lb/>| <lb/>RFC 8609 <lb/>| <lb/>| <lb/>0x0013 <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| <lb/>0x0FFF <lb/>| <lb/>T_ORG <lb/>| <lb/>Organization-Specific TLVs <lb/>| <lb/>| <lb/>| <lb/>| <lb/>(Section 3.3.2) <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| <lb/>0x1000 -<lb/>| <lb/>T_APP:00 -<lb/>| Application Components (Section | <lb/>| <lb/>0x1FFF <lb/>| <lb/>T_APP:4096 <lb/>| <lb/>3.6.1) <lb/>| <lb/>+--------------+------------------+---------------------------------+ <lb/>CCNx Name Segment Types <lb/>4.6. Message Type Registry <lb/>IANA has created the "CCNx Message Types" registry and registered the <lb/>message segment types described below. The registration procedure is <lb/>RFC Required. The Type value is 2 octets. The range is <lb/>0x0000-0xFFFF. <lb/></body> + + <note place="footnote">Mosko, et al. <lb/>Experimental <lb/></note> + + <page>[Page 37] <lb/></page> + + <note place="headnote">RFC 8609 <lb/>CCNx TLV <lb/>July 2019 <lb/></note> + + <body>+---------------+----------------+----------------------------------+ <lb/>| <lb/>Type <lb/>| <lb/>Name <lb/>| <lb/>Reference <lb/>| <lb/>+---------------+----------------+----------------------------------+ <lb/>| <lb/>0x0000 <lb/>| <lb/>T_NAME <lb/>| <lb/>Message Types (Section 3.6) <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| <lb/>0x0001 <lb/>| <lb/>T_PAYLOAD <lb/>| <lb/>Message Types (Section 3.6) <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| <lb/>0x0002 <lb/>| T_KEYIDRESTR | <lb/>Message Types (Section 3.6) <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| <lb/>0x0003 <lb/>| T_OBJHASHRESTR | <lb/>Message Types (Section 3.6) <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| <lb/>0x0005 <lb/>| T_PAYLDTYPE <lb/>| <lb/>Content Object Message Types <lb/>| <lb/>| <lb/>| <lb/>| <lb/>(Section 3.6.2.2) <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| <lb/>0x0006 <lb/>| <lb/>T_EXPIRY <lb/>| <lb/>Content Object Message Types <lb/>| <lb/>| <lb/>| <lb/>| <lb/>(Section 3.6.2.2) <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| <lb/>0x0007 -<lb/>| <lb/>Reserved <lb/>| <lb/>RFC 8609 <lb/>| <lb/>| <lb/>0x000C <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| <lb/>0x0FFE <lb/>| <lb/>T_PAD <lb/>| <lb/>Pad (Section 3.3.1) <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| <lb/>0x0FFF <lb/>| <lb/>T_ORG <lb/>| <lb/>Organization-Specific TLVs <lb/>| <lb/>| <lb/>| <lb/>| <lb/>(Section 3.3.2) <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| 0x1000-0x1FFF | <lb/>Reserved <lb/>| <lb/>Experimental Use (Section 3) <lb/>| <lb/>+---------------+----------------+----------------------------------+ <lb/>CCNx Message Types <lb/>4.7. Payload Type Registry <lb/>IANA has created the "CCNx Payload Types" registry and allocated the <lb/>payload types described below. The registration procedure is <lb/>Specification Required. The Type value is 1 octet. The range is <lb/>0x00-0xFF. <lb/>+------+--------------------+-----------------------------------+ <lb/>| Type | <lb/>Name <lb/>| <lb/>Reference <lb/>| <lb/>+------+--------------------+-----------------------------------+ <lb/>| 0x00 | T_PAYLOADTYPE_DATA | Payload Types (Section 3.6.2.2.1) | <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| 0x01 | T_PAYLOADTYPE_KEY | Payload Types (Section 3.6.2.2.1) | <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| 0x02 | T_PAYLOADTYPE_LINK | Payload Types (Section 3.6.2.2.1) | <lb/>+------+--------------------+-----------------------------------+ <lb/>CCNx Payload Types <lb/></body> + + <note place="footnote">Mosko, et al. <lb/>Experimental <lb/></note> + + <page>[Page 38] <lb/></page> + + <note place="headnote">RFC 8609 <lb/>CCNx TLV <lb/>July 2019 <lb/></note> + + <body>4.8. Validation Algorithm Type Registry <lb/>IANA has created the "CCNx Validation Algorithm Types" registry and <lb/>allocated the validation algorithm types described below. The <lb/>registration procedure is Specification Required. The Type value is <lb/>2 octets. The range is 0x0000-0xFFFF. <lb/>+---------------+-----------------+---------------------------------+ <lb/>| <lb/>Type <lb/>| <lb/>Name <lb/>| <lb/>Reference <lb/>| <lb/>+---------------+-----------------+---------------------------------+ <lb/>| <lb/>0x0000 <lb/>| <lb/>Reserved <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| <lb/>0x0002 <lb/>| <lb/>T_CRC32C <lb/>| Validation Algorithm (Section | <lb/>| <lb/>| <lb/>| <lb/>3.6.4.1) <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| <lb/>0x0004 <lb/>| T_HMAC-SHA256 | Validation Algorithm (Section | <lb/>| <lb/>| <lb/>| <lb/>3.6.4.1) <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| <lb/>0x0005 <lb/>| <lb/>T_RSA-SHA256 | Validation Algorithm (Section | <lb/>| <lb/>| <lb/>| <lb/>3.6.4.1) <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| <lb/>0x0006 <lb/>| T_EC-SECP-256K1 | Validation Algorithm (Section | <lb/>| <lb/>| <lb/>| <lb/>3.6.4.1) <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| <lb/>0x0007 <lb/>| T_EC-SECP-384R1 | Validation Algorithm (Section | <lb/>| <lb/>| <lb/>| <lb/>3.6.4.1) <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| <lb/>0x0FFE <lb/>| <lb/>T_PAD <lb/>| <lb/>Pad (Section 3.3.1) <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| <lb/>0x0FFF <lb/>| <lb/>T_ORG <lb/>| <lb/>Organization-Specific TLVs <lb/>| <lb/>| <lb/>| <lb/>| <lb/>(Section 3.3.2) <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| 0x1000-0x1FFF | <lb/>Reserved <lb/>| <lb/>Experimental Use (Section 3) | <lb/>+---------------+-----------------+---------------------------------+ <lb/>CCNx Validation Algorithm Types <lb/></body> + + <note place="footnote">Mosko, et al. <lb/>Experimental <lb/></note> + + <page>[Page 39] <lb/></page> + + <note place="headnote">RFC 8609 <lb/>CCNx TLV <lb/>July 2019 <lb/></note> + + <body>4.9. Validation-Dependent Data Type Registry <lb/>IANA has created the "CCNx Validation-Dependent Data Types" registry <lb/>and allocated the validation-dependent data types described below. <lb/>The registration procedure is RFC Required. The Type value is 2 <lb/>octets. The range is 0x0000-0xFFFF. <lb/>+---------------+----------------+----------------------------------+ <lb/>| <lb/>Type <lb/>| <lb/>Name <lb/>| <lb/>Reference <lb/>| <lb/>+---------------+----------------+----------------------------------+ <lb/>| <lb/>0x0000 <lb/>| <lb/>Reserved <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| <lb/>0x0009 <lb/>| <lb/>T_KEYID <lb/>| <lb/>Validation-Dependent Data <lb/>| <lb/>| <lb/>| <lb/>| <lb/>(Section 3.6.4.1.4) <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| <lb/>0x000A <lb/>| T_PUBLICKEYLOC | <lb/>Validation-Dependent Data <lb/>| <lb/>| <lb/>| <lb/>| <lb/>(Section 3.6.4.1.4) <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| <lb/>0x000B <lb/>| T_PUBLICKEY <lb/>| <lb/>Validation-Dependent Data <lb/>| <lb/>| <lb/>| <lb/>| <lb/>(Section 3.6.4.1.4) <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| <lb/>0x000C <lb/>| <lb/>T_CERT <lb/>| <lb/>Validation-Dependent Data <lb/>| <lb/>| <lb/>| <lb/>| <lb/>(Section 3.6.4.1.4) <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| <lb/>0x000D <lb/>| <lb/>T_LINK <lb/>| <lb/>Validation-Dependent Data <lb/>| <lb/>| <lb/>| <lb/>| <lb/>(Section 3.6.4.1.4) <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| <lb/>0x000E <lb/>| <lb/>T_KEYLINK <lb/>| <lb/>Validation-Dependent Data <lb/>| <lb/>| <lb/>| <lb/>| <lb/>(Section 3.6.4.1.4) <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| <lb/>0x000F <lb/>| <lb/>T_SIGTIME <lb/>| <lb/>Validation-Dependent Data <lb/>| <lb/>| <lb/>| <lb/>| <lb/>(Section 3.6.4.1.4) <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| <lb/>0x0FFF <lb/>| <lb/>T_ORG <lb/>| <lb/>Organization-Specific TLVs <lb/>| <lb/>| <lb/>| <lb/>| <lb/>(Section 3.3.2) <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| 0x1000-0x1FFF | <lb/>Reserved <lb/>| <lb/>Experimental Use (Section 3) <lb/>| <lb/>+---------------+----------------+----------------------------------+ <lb/>CCNx Validation-Dependent Data Types <lb/>4.10. Hash Function Type Registry <lb/>IANA has created the "CCNx Hash Function Types" registry and <lb/>allocated the hash function types described below. The registration <lb/>procedure is Specification Required. The Type value is 2 octets. <lb/>The range is 0x0000-0xFFFF. <lb/></body> + + <note place="footnote">Mosko, et al. <lb/>Experimental <lb/></note> + + <page>[Page 40] <lb/></page> + + <note place="headnote">RFC 8609 <lb/>CCNx TLV <lb/>July 2019 <lb/></note> + + <body>+---------------+-----------+---------------------------------------+ <lb/>| <lb/>Type <lb/>| <lb/>Name <lb/>| <lb/>Reference <lb/>| <lb/>+---------------+-----------+---------------------------------------+ <lb/>| <lb/>0x0000 <lb/>| Reserved | <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| <lb/>0x0001 <lb/>| T_SHA-256 | <lb/>Hash Format (Section 3.3.3) <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| <lb/>0x0002 <lb/>| T_SHA-512 | <lb/>Hash Format (Section 3.3.3) <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| <lb/>0x0FFF <lb/>| <lb/>T_ORG <lb/>| Organization-Specific TLVs (Section | <lb/>| <lb/>| <lb/>| <lb/>3.3.2) <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| 0x1000-0x1FFF | Reserved | <lb/>Experimental Use (Section 3) <lb/>| <lb/>+---------------+-----------+---------------------------------------+ <lb/>CCNx Hash Function Types <lb/>5. Security Considerations <lb/>The CCNx protocol is a Layer 3 network protocol, which may also <lb/>operate as an overlay using other transports such as UDP or other <lb/>tunnels. It includes intrinsic support for message authentication <lb/>via a signature (e.g., RSA or elliptic curve) or Message <lb/>Authentication Code (e.g., HMAC). In lieu of an authenticator, it <lb/>may instead use a Message Integrity Check (e.g., SHA or CRC). CCNx <lb/>does not specify an encryption envelope; that function is left to a <lb/>high-layer protocol (e.g., Encrypted Sessions in CCNx [esic]). <lb/>The CCNx Packet format includes the ability to attach MICs (e.g., <lb/>SHA-256 or CRC), MACs (e.g., HMAC), and Signatures (e.g., RSA or <lb/>ECDSA) to all packet types. Because Interest packets can be sent at <lb/>will, an application should carefully select when to use a given <lb/>ValidationAlgorithm in an Interest to avoid DoS attacks. MICs, for <lb/>example, are inexpensive and could be used as desired, whereas MACs <lb/>and Signatures are more expensive and their inappropriate use could <lb/>open a computational DoS attack surface. Applications should use an <lb/>explicit protocol to guide their use of packet signatures. As a <lb/>general guideline, an application might use a MIC on an Interest to <lb/>detect unintentionally corrupted packets. If one wishes to secure an <lb/>Interest, one should consider using an encrypted wrapper and a <lb/>protocol that prevents replay attacks, especially if the Interest is <lb/>being used as an actuator. Simply using an authentication code or <lb/>signature does not make an Interest secure. There are several <lb/>examples in the literature on how to secure ICN-style messaging <lb/>[mobile] [ace]. <lb/></body> + + <note place="footnote">Mosko, et al. <lb/>Experimental <lb/></note> + + <page>[Page 41] <lb/></page> + + <note place="headnote">RFC 8609 <lb/>CCNx TLV <lb/>July 2019 <lb/></note> + + <body>As a Layer 3 protocol, this document does not describe how one <lb/>arrives at keys or how one trusts keys. The CCNx content object may <lb/>include a public key embedded in the object or may use the <lb/>PublicKeyLocator field to point to a public key (or public-key <lb/>certificate) that authenticates the message. One key exchange <lb/>specification is CCNxKE [ccnxke] [mobile], which is similar to the <lb/>TLS 1.3 key exchange except it is over the CCNx Layer 3 messages. <lb/>Trust is beyond the scope of a Layer 3 protocol and is left to <lb/>applications or application frameworks. <lb/>The combination of an ephemeral key exchange (e.g., CCNxKE [ccnxke]) <lb/>and an encapsulating encryption (e.g., [esic]) provides the <lb/>equivalent of a TLS tunnel. Intermediate nodes may forward the <lb/>Interests and Content Objects but have no visibility inside. It also <lb/>completely hides the internal names in those used by the encryption <lb/>layer. This type of tunneling encryption is useful for content that <lb/>has little or no cacheability, as it can only be used by someone with <lb/>the ephemeral key. Short-term caching may help with lossy links or <lb/>mobility, but long-term caching is usually not of interest. <lb/>Broadcast encryption or proxy re-encryption may be useful for content <lb/>with multiple uses over time or many consumers. There is currently <lb/>no recommendation for this form of encryption. <lb/>The specific encoding of messages will have security implications. <lb/>This document uses a Type-Length-Value (TLV) encoding. We chose to <lb/>compromise between extensibility and unambiguous encodings of types <lb/>and lengths. Some TLV encodings use variable-length T and variable-<lb/>length L fields to accommodate a wide gamut of values while trying to <lb/>be byte efficient. Our TLV encoding uses a fixed length 2-byte T and <lb/>2-byte L. Using fixed-length T and L fields solves two problems. <lb/>The first is aliases. If one is able to encode the same value, such <lb/>as 0x02 and 0x0002, in different byte lengths, then one must decide <lb/>if they mean the same thing, if they are different, or if one is <lb/>illegal. If they are different, then one must always compare on the <lb/>buffers not the integer equivalents. If one is illegal, then one <lb/>must validate the TLV encoding --every field of every packet at <lb/>every hop. If they are the same, then one has the second problem: <lb/>how to specify packet filters. For example, if a name has 6 name <lb/>components, then there are 7 T fields and 7 L fields, each of which <lb/>might have up to 4 representations of the same value. That would be <lb/>14 fields with 4 encodings each, or 1001 combinations. It also means <lb/>that one cannot compare, for example, a name via a memory function, <lb/>as one needs to consider that any embedded T or L might have a <lb/>different format. <lb/></body> + + <note place="footnote">Mosko, et al. <lb/>Experimental <lb/></note> + + <page>[Page 42] <lb/></page> + + <note place="headnote">RFC 8609 <lb/>CCNx TLV <lb/>July 2019 <lb/></note> + + <body>The Interest Return message has no authenticator from the previous <lb/>hop. Therefore, the payload of the Interest Return should only be <lb/>used locally to match an Interest. A node should never forward that <lb/>Interest payload as an Interest. It should also verify that it sent <lb/>the Interest in the Interest Return to that node and not allow anyone <lb/>to negate Interest messages. <lb/>Caching nodes must take caution when processing content objects. It <lb/>is essential that the Content Store obey the rules outlined in <lb/>[RFC8569] to avoid certain types of attacks. CCNx 1.0 has no <lb/>mechanism to work around an undesired result from the network (there <lb/>are no "excludes"), so if a cache becomes poisoned with bad content <lb/>it might cause problems retrieving content. There are three types of <lb/>access to content from a Content Store: unrestricted, signature <lb/>restricted, and hash restricted. If an Interest has no restrictions, <lb/>then the requester is not particular about what they get back, so any <lb/>matching cached object is OK. In the hash restricted case, the <lb/>requester is very specific about what they want, and the Content <lb/>Store (and every forward hop) can easily verify that the content <lb/>matches the request. In the signature restricted case (which is <lb/>often used for initial manifest discovery), the requester only knows <lb/>the KeyId that signed the content. This case requires the closest <lb/>attention in the Content Store to avoid amplifying bad data. The <lb/>Content Store must only respond with a content object if it can <lb/>verify the signature --this means either the content object carries <lb/>the public key inside it or the Interest carries the public key in <lb/>addition to the KeyId. If that is not the case, then the Content <lb/>Store should treat the Interest as a cache miss and let an endpoint <lb/>respond. <lb/>A user-level cache could perform full signature verification by <lb/>fetching a public key according to the PublicKeyLocator. However, <lb/>that is not a burden we wish to impose on the forwarder. A user-<lb/>level cache could also rely on out-of-band attestation, such as the <lb/>cache operator only inserting content that it knows has the correct <lb/>signature. <lb/>The CCNx grammar allows for hash algorithm agility via the HashType. <lb/>It specifies a short list of acceptable hash algorithms that should <lb/>be implemented at each forwarder. Some hash values only apply to end <lb/>systems, so updating the hash algorithm does not affect forwarders --<lb/>they would simply match the buffer that includes the type-length-hash <lb/>buffer. Some fields, such as the ConObjHash, must be verified at <lb/>each hop, so a forwarder (or related system) must know the hash <lb/>algorithm, and it could cause backward compatibility problems if the <lb/>hash type is updated. <lb/></body> + + <note place="footnote">Mosko, et al. <lb/>Experimental <lb/></note> + + <page>[Page 43] <lb/></page> + + <note place="headnote">RFC 8609 <lb/>CCNx TLV <lb/>July 2019 <lb/></note> + + <body>A CCNx name uses binary matching, whereas a URI uses a case-<lb/>insensitive hostname. Some systems may also use case-insensitive <lb/>matching of the URI path to a resource. An implication of this is <lb/>that human-entered CCNx names will likely have case or non-ASCII <lb/>symbol mismatches unless one uses a consistent URI normalization for <lb/>the CCNx name. It also means that an entity that registers a CCNx-<lb/>routable prefix --say, "ccnx:/example.com" --would need separate <lb/>registrations for simple variations like "ccnx:/Example.com". Unless <lb/>this is addressed in URI normalization and routing protocol <lb/>conventions, there could be phishing attacks. <lb/>For a more general introduction to ICN-related security concerns and <lb/>approaches, see [RFC7927] and [RFC7945]. <lb/></body> + + <listBibl>6. References <lb/>6.1. Normative References <lb/>[RFC2119] Bradner, S., "Key words for use in RFCs to Indicate <lb/>Requirement Levels", BCP 14, RFC 2119, <lb/>DOI 10.17487/RFC2119, March 1997, <lb/><https://www.rfc-editor.org/info/rfc2119>. <lb/>[RFC8174] Leiba, B., "Ambiguity of Uppercase vs Lowercase in RFC <lb/>2119 Key Words", BCP 14, RFC 8174, DOI 10.17487/RFC8174, <lb/>May 2017, <https://www.rfc-editor.org/info/rfc8174>. <lb/>6.2. Informative References <lb/>[ace] <lb/>Shang, W., Yu, Y., Liang, T., Zhang, B., and L. Zhang, <lb/>"NDN-ACE: Access control for constrained environments over <lb/>named data networking", NDN Technical Report NDN-0036, <lb/>2015, <http://new.named-data.net/wp-content/uploads/2015/ <lb/>12/ndn-0036-1-ndn-ace.pdf>. <lb/>[ccnxke] <lb/>Mosko, M., Uzun, E., and C. Wood, "CCNx Key Exchange <lb/>Protocol Version 1.0", Work in Progress, draft-wood-icnrg-<lb/>ccnxkeyexchange-02, March 2017. <lb/>[CCNxURI] Mosko, M. and C. Wood, "The CCNx URI Scheme", Work in <lb/>Progress, draft-mosko-icnrg-ccnxurischeme-01, April 2016. <lb/>[CCNxz] <lb/>Mosko, M., "CCNxz TLV Header Compression Experimental <lb/>Code", commit f1093a2, March 2018, <lb/><https://github.com/PARC/CCNxz>. <lb/></listBibl> + + <note place="footnote">Mosko, et al. <lb/>Experimental <lb/></note> + + <page>[Page 44] <lb/></page> + + <note place="headnote">RFC 8609 <lb/>CCNx TLV <lb/>July 2019 <lb/></note> + + <listBibl>[compress] Mosko, M., "Header Compression for TLV-based Packets", <lb/>ICNRG Interim Meeting, 2016, <lb/><https://datatracker.ietf.org/meeting/interim-2016-icnrg-<lb/>02/materials/slides-interim-2016-icnrg-2-7>. <lb/>[ECC] <lb/>Certicom Research, "SEC 2: Recommended Elliptic Curve <lb/>Domain Parameters", 2010, <lb/><http://www.secg.org/sec2-v2.pdf>. <lb/>[esic] <lb/>Mosko, M. and C. Wood, "Encrypted Sessions In CCNx <lb/>(ESIC)", Work in Progress, draft-wood-icnrg-esic-01, <lb/>September 2017. <lb/>[IANA-PEN] IANA, "Private Enterprise Numbers", <lb/><http://www.iana.org/assignments/enterprise-numbers>. <lb/>[mobile] <lb/>Mosko, M., Uzun, E., and C. Wood, "Mobile Sessions in <lb/>Content-Centric Networks", IFIP Networking, 2017, <lb/><http://dl.ifip.org/db/conf/networking/ <lb/>networking2017/1570334964.pdf>. <lb/>[nnc] <lb/>Jacobson, V., Smetters, D., Thornton, J., Plass, M., <lb/>Briggs, N., and R. Braynard, "Networking Named Content", <lb/>Proceedings of the 5th international conference on <lb/>Emerging networking experiments and technologies (CoNEXT <lb/>'09), 2009, <http://dx.doi.org/10.1145/1658939.1658941>. <lb/>[RFC5280] Cooper, D., Santesson, S., Farrell, S., Boeyen, S., <lb/>Housley, R., and W. Polk, "Internet X.509 Public Key <lb/>Infrastructure Certificate and Certificate Revocation List <lb/>(CRL) Profile", RFC 5280, DOI 10.17487/RFC5280, May 2008, <lb/><https://www.rfc-editor.org/info/rfc5280>. <lb/>[RFC7927] Kutscher, D., Ed., Eum, S., Pentikousis, K., Psaras, I., <lb/>Corujo, D., Saucez, D., Schmidt, T., and M. Waehlisch, <lb/>"Information-Centric Networking (ICN) Research <lb/>Challenges", RFC 7927, DOI 10.17487/RFC7927, July 2016, <lb/><https://www.rfc-editor.org/info/rfc7927>. <lb/>[RFC7945] Pentikousis, K., Ed., Ohlman, B., Davies, E., Spirou, S., <lb/>and G. Boggia, "Information-Centric Networking: Evaluation <lb/>and Security Considerations", RFC 7945, <lb/>DOI 10.17487/RFC7945, September 2016, <lb/><https://www.rfc-editor.org/info/rfc7945>. <lb/></listBibl> + + <note place="footnote">Mosko, et al. <lb/>Experimental <lb/></note> + + <page>[Page 45] <lb/></page> + + <note place="headnote">RFC 8609 <lb/>CCNx TLV <lb/>July 2019 <lb/></note> + + <listBibl>[RFC8126] Cotton, M., Leiba, B., and T. Narten, "Guidelines for <lb/>Writing an IANA Considerations Section in RFCs", BCP 26, <lb/>RFC 8126, DOI 10.17487/RFC8126, June 2017, <lb/><https://www.rfc-editor.org/info/rfc8126>. <lb/>[RFC8569] Mosko, M., Solis, I., and C. Wood, "Content-Centric <lb/>Networking (CCNx) Semantics", RFC 8569, <lb/>DOI 10.17487/RFC8569, July 2019, <lb/><https://www.rfc-editor.org/info/rfc8569>. <lb/></listBibl> + + Authors' Addresses <lb/> + + <front>Marc Mosko <lb/>PARC, Inc. <lb/>Palo Alto, California 94304 <lb/>United States of America <lb/>Phone: +01 650-812-4405 <lb/>Email: mmosko@parc.com <lb/>Ignacio Solis <lb/>LinkedIn <lb/>Mountain View, California 94043 <lb/>United States of America <lb/>Email: nsolis@linkedin.com <lb/>Christopher A. Wood <lb/>University of California, Irvine <lb/>Irvine, California 92697 <lb/>United States of America <lb/>Phone: +01 315-806-5939 <lb/>Email: woodc1@uci.edu <lb/></front> + + <note place="footnote">Mosko, et al. <lb/>Experimental <lb/></note> + + <page>[Page 46] </page> + + + </text> +</tei> diff --git a/grobid-trainer/resources/dataset/segmentation/sdo/ietf/corpus/tei/XP015133676.training.segmentation.tei.xml b/grobid-trainer/resources/dataset/segmentation/sdo/ietf/corpus/tei/XP015133676.training.segmentation.tei.xml new file mode 100644 index 0000000000..acb41507fc --- /dev/null +++ b/grobid-trainer/resources/dataset/segmentation/sdo/ietf/corpus/tei/XP015133676.training.segmentation.tei.xml @@ -0,0 +1,757 @@ +<?xml version="1.0" ?> +<tei xml:space="preserve"> + <teiHeader> + <fileDesc xml:id="0"/> + </teiHeader> + <text xml:lang="en"> + <front>server date 20190710; downloaded by EPO on 20190711 <lb/>Internet Engineering Task Force (IETF) <lb/>G. Selander <lb/>Request for Comments: 8613 <lb/>J. Mattsson <lb/>Updates: 7252 <lb/>F. Palombini <lb/>Category: Standards Track <lb/>Ericsson AB <lb/>ISSN: 2070-1721 <lb/>L. Seitz <lb/>RISE <lb/>July 2019 <lb/>Object Security for Constrained RESTful Environments (OSCORE) <lb/>Abstract <lb/>This document defines Object Security for Constrained RESTful <lb/>Environments (OSCORE), a method for application-layer protection of <lb/>the Constrained Application Protocol (CoAP), using CBOR Object <lb/>Signing and Encryption (COSE). OSCORE provides end-to-end protection <lb/>between endpoints communicating using CoAP or CoAP-mappable HTTP. <lb/>OSCORE is designed for constrained nodes and networks supporting a <lb/>range of proxy operations, including translation between different <lb/>transport protocols. <lb/>Although an optional functionality of CoAP, OSCORE alters CoAP <lb/>options processing and IANA registration. Therefore, this document <lb/>updates RFC 7252. <lb/>Status of This Memo <lb/>This is an Internet Standards Track document. <lb/>This document is a product of the Internet Engineering Task Force <lb/>(IETF). It represents the consensus of the IETF community. It has <lb/>received public review and has been approved for publication by the <lb/>Internet Engineering Steering Group (IESG). Further information on <lb/>Internet Standards is available in Section 2 of RFC 7841. <lb/>Information about the current status of this document, any errata, <lb/>and how to provide feedback on it may be obtained at <lb/>https://www.rfc-editor.org/info/rfc8613. <lb/>Selander, et al. <lb/>Standards Track <lb/>[Page 1] <lb/>RFC 8613 <lb/>OSCORE <lb/>July 2019 <lb/>Copyright Notice <lb/>Copyright (c) 2019 IETF Trust and the persons identified as the <lb/>document authors. All rights reserved. <lb/>This document is subject to BCP 78 and the IETF Trust's Legal <lb/>Provisions Relating to IETF Documents <lb/>(https://trustee.ietf.org/license-info) in effect on the date of <lb/>publication of this document. Please review these documents <lb/>carefully, as they describe your rights and restrictions with respect <lb/>to this document. Code Components extracted from this document must <lb/>include Simplified BSD License text as described in Section 4.e of <lb/>the Trust Legal Provisions and are provided without warranty as <lb/>described in the Simplified BSD License. <lb/></front> + + <note place="footnote">Selander, et al. <lb/>Standards Track <lb/></note> + + <page>[Page 2] <lb/></page> + + <note place="headnote">RFC 8613 <lb/>OSCORE <lb/>July 2019 <lb/></note> + + <div type="toc">Table of Contents <lb/>1. Introduction . . . . . . . . . . . . . . . . . . . . . . . . <lb/>5 <lb/>1.1. Terminology . . . . . . . . . . . . . . . . . . . . . . . <lb/>7 <lb/>2. The OSCORE Option . . . . . . . . . . . . . . . . . . . . . . <lb/>8 <lb/>3. The Security Context . . . . . . . . . . . . . . . . . . . . <lb/>8 <lb/>3.1. Security Context Definition . . . . . . . . . . . . . . . <lb/>9 <lb/>3.2. Establishment of Security Context Parameters . . . . . . 11 <lb/>3.3. Requirements on the Security Context Parameters . . . . . 14 <lb/>4. Protected Message Fields . . . . . . . . . . . . . . . . . . 15 <lb/>4.1. CoAP Options . . . . . . . . . . . . . . . . . . . . . . 16 <lb/>4.2. CoAP Header Fields and Payload . . . . . . . . . . . . . 24 <lb/>4.3. Signaling Messages . . . . . . . . . . . . . . . . . . . 25 <lb/>5. The COSE Object . . . . . . . . . . . . . . . . . . . . . . . 26 <lb/>5.1. ID Context and 'kid context' . . . . . . . . . . . . . . 27 <lb/>5.2. AEAD Nonce . . . . . . . . . . . . . . . . . . . . . . . 28 <lb/>5.3. Plaintext . . . . . . . . . . . . . . . . . . . . . . . . 29 <lb/>5.4. Additional Authenticated Data . . . . . . . . . . . . . . 30 <lb/>6. OSCORE Header Compression . . . . . . . . . . . . . . . . . . 31 <lb/>6.1. Encoding of the OSCORE Option Value . . . . . . . . . . . 32 <lb/>6.2. Encoding of the OSCORE Payload . . . . . . . . . . . . . 33 <lb/>6.3. Examples of Compressed COSE Objects . . . . . . . . . . . 33 <lb/>7. Message Binding, Sequence Numbers, Freshness, and Replay <lb/>Protection . . . . . . . . . . . . . . . . . . . . . . . . . 36 <lb/>7.1. Message Binding . . . . . . . . . . . . . . . . . . . . . 36 <lb/>7.2. Sequence Numbers . . . . . . . . . . . . . . . . . . . . 36 <lb/>7.3. Freshness . . . . . . . . . . . . . . . . . . . . . . . . 36 <lb/>7.4. Replay Protection . . . . . . . . . . . . . . . . . . . . 37 <lb/>7.5. Losing Part of the Context State . . . . . . . . . . . . 38 <lb/>8. Processing . . . . . . . . . . . . . . . . . . . . . . . . . 39 <lb/>8.1. Protecting the Request . . . . . . . . . . . . . . . . . 39 <lb/>8.2. Verifying the Request . . . . . . . . . . . . . . . . . . 40 <lb/>8.3. Protecting the Response . . . . . . . . . . . . . . . . . 41 <lb/>8.4. Verifying the Response . . . . . . . . . . . . . . . . . 43 <lb/>9. Web Linking . . . . . . . . . . . . . . . . . . . . . . . . . 44 <lb/>10. CoAP-to-CoAP Forwarding Proxy . . . . . . . . . . . . . . . . 45 <lb/>11. HTTP Operations . . . . . . . . . . . . . . . . . . . . . . . 46 <lb/>11.1. The HTTP OSCORE Header Field . . . . . . . . . . . . . . 46 <lb/>11.2. CoAP-to-HTTP Mapping . . . . . . . . . . . . . . . . . . 47 <lb/>11.3. HTTP-to-CoAP Mapping . . . . . . . . . . . . . . . . . . 48 <lb/>11.4. HTTP Endpoints . . . . . . . . . . . . . . . . . . . . . 48 <lb/>11.5. Example: HTTP Client and CoAP Server . . . . . . . . . . 48 <lb/>11.6. Example: CoAP Client and HTTP Server . . . . . . . . . . 50 <lb/>12. Security Considerations . . . . . . . . . . . . . . . . . . . 51 <lb/>12.1. End-to-end Protection . . . . . . . . . . . . . . . . . 51 <lb/>12.2. Security Context Establishment . . . . . . . . . . . . . 52 <lb/>12.3. Master Secret . . . . . . . . . . . . . . . . . . . . . 52 <lb/>12.4. Replay Protection . . . . . . . . . . . . . . . . . . . 53 <lb/></div> + + <note place="footnote">Selander, et al. <lb/>Standards Track <lb/></note> + + <page>[Page 3] <lb/></page> + + <note place="headnote">RFC 8613 <lb/>OSCORE <lb/>July 2019 <lb/></note> + + <div type="toc">12.5. Client Aliveness . . . . . . . . . . . . . . . . . . . . 53 <lb/>12.6. Cryptographic Considerations . . . . . . . . . . . . . . 53 <lb/>12.7. Message Segmentation . . . . . . . . . . . . . . . . . . 54 <lb/>12.8. Privacy Considerations . . . . . . . . . . . . . . . . . 54 <lb/>13. IANA Considerations . . . . . . . . . . . . . . . . . . . . . 55 <lb/>13.1. COSE Header Parameters Registry . . . . . . . . . . . . 55 <lb/>13.2. CoAP Option Numbers Registry . . . . . . . . . . . . . . 55 <lb/>13.3. CoAP Signaling Option Numbers Registry . . . . . . . . . 56 <lb/>13.4. Header Field Registrations . . . . . . . . . . . . . . . 57 <lb/>13.5. Media Type Registration . . . . . . . . . . . . . . . . 57 <lb/>13.6. CoAP Content-Formats Registry . . . . . . . . . . . . . 58 <lb/>13.7. OSCORE Flag Bits Registry . . . . . . . . . . . . . . . 58 <lb/>13.8. Expert Review Instructions . . . . . . . . . . . . . . . 59 <lb/>14. References . . . . . . . . . . . . . . . . . . . . . . . . . 60 <lb/>14.1. Normative References . . . . . . . . . . . . . . . . . . 60 <lb/>14.2. Informative References . . . . . . . . . . . . . . . . . 62 <lb/>Appendix A. Scenario Examples . . . . . . . . . . . . . . . . . 65 <lb/>A.1. Secure Access to Sensor . . . . . . . . . . . . . . . . . 65 <lb/>A.2. Secure Subscribe to Sensor . . . . . . . . . . . . . . . 66 <lb/>Appendix B. Deployment Examples . . . . . . . . . . . . . . . . 68 <lb/>B.1. Security Context Derived Once . . . . . . . . . . . . . . 68 <lb/>B.2. Security Context Derived Multiple Times . . . . . . . . . 70 <lb/>Appendix C. Test Vectors . . . . . . . . . . . . . . . . . . . . 75 <lb/>C.1. Test Vector 1: Key Derivation with Master Salt . . . . . 75 <lb/>C.2. Test Vector 2: Key Derivation without Master Salt . . . . 77 <lb/>C.3. Test Vector 3: Key Derivation with ID Context . . . . . . 78 <lb/>C.4. Test Vector 4: OSCORE Request, Client . . . . . . . . . . 80 <lb/>C.5. Test Vector 5: OSCORE Request, Client . . . . . . . . . . 81 <lb/>C.6. Test Vector 6: OSCORE Request, Client . . . . . . . . . . 82 <lb/>C.7. Test Vector 7: OSCORE Response, Server . . . . . . . . . 84 <lb/>C.8. Test Vector 8: OSCORE Response with Partial IV, Server . 85 <lb/>Appendix D. Overview of Security Properties . . . . . . . . . . 86 <lb/>D.1. Threat Model . . . . . . . . . . . . . . . . . . . . . . 86 <lb/>D.2. Supporting Proxy Operations . . . . . . . . . . . . . . . 87 <lb/>D.3. Protected Message Fields . . . . . . . . . . . . . . . . 87 <lb/>D.4. Uniqueness of (key, nonce) . . . . . . . . . . . . . . . 88 <lb/>D.5. Unprotected Message Fields . . . . . . . . . . . . . . . 89 <lb/>Appendix E. CDDL Summary . . . . . . . . . . . . . . . . . . . . 93 <lb/>Acknowledgments . . . . . . . . . . . . . . . . . . . . . . . . . 94 <lb/>Authors' Addresses . . . . . . . . . . . . . . . . . . . . . . . 94 <lb/></div> + + <note place="footnote">Selander, et al. <lb/>Standards Track <lb/></note> + + <page>[Page 4] <lb/></page> + + <note place="headnote">RFC 8613 <lb/>OSCORE <lb/>July 2019 <lb/></note> + + <body>1. Introduction <lb/>The Constrained Application Protocol (CoAP) [RFC7252] is a web <lb/>transfer protocol designed for constrained nodes and networks <lb/>[RFC7228]; CoAP may be mapped from HTTP [RFC8075]. CoAP specifies <lb/>the use of proxies for scalability and efficiency and references DTLS <lb/>[RFC6347] for security. CoAP-to-CoAP, HTTP-to-CoAP, and CoAP-to-HTTP <lb/>proxies require DTLS or TLS [RFC8446] to be terminated at the proxy. <lb/>Therefore, the proxy not only has access to the data required for <lb/>performing the intended proxy functionality, but is also able to <lb/>eavesdrop on, or manipulate any part of, the message payload and <lb/>metadata in transit between the endpoints. The proxy can also <lb/>inject, delete, or reorder packets since they are no longer protected <lb/>by (D)TLS. <lb/>This document defines the Object Security for Constrained RESTful <lb/>Environments (OSCORE) security protocol, protecting CoAP and CoAP-<lb/>mappable HTTP requests and responses end-to-end across intermediary <lb/>nodes such as CoAP forward proxies and cross-protocol translators <lb/>including HTTP-to-CoAP proxies [RFC8075]. In addition to the core <lb/>CoAP features defined in [RFC7252], OSCORE supports the Observe <lb/>[RFC7641], Block-wise [RFC7959], and No-Response [RFC7967] options, <lb/>as well as the PATCH and FETCH methods [RFC8132]. An analysis of <lb/>end-to-end security for CoAP messages through some types of <lb/>intermediary nodes is performed in [CoAP-E2E-Sec]. OSCORE <lb/>essentially protects the RESTful interactions: the request method, <lb/>the requested resource, the message payload, etc. (see Section 4), <lb/>where "RESTful" refers to the Representational State Transfer (REST) <lb/>Architecture [REST]. OSCORE protects neither the CoAP messaging <lb/>layer nor the CoAP Token, which may change between the endpoints; <lb/>therefore, those are processed as defined in [RFC7252]. <lb/>Additionally, since the message formats for CoAP over unreliable <lb/>transport [RFC7252] and for CoAP over reliable transport [RFC8323] <lb/>differ only in terms of CoAP messaging layer, OSCORE can be applied <lb/>to both unreliable and reliable transports (see Figure 1). <lb/>OSCORE works in very constrained nodes and networks, thanks to its <lb/>small message size and the restricted code and memory requirements in <lb/>addition to what is required by CoAP. Examples of the use of OSCORE <lb/>are given in Appendix A. OSCORE may be used over any underlying <lb/>layer, such as UDP or TCP, and with non-IP transports (e.g., <lb/>[CoAP-802.15.4]). OSCORE may also be used in different ways with <lb/>HTTP. OSCORE messages may be transported in HTTP, and OSCORE may <lb/>also be used to protect CoAP-mappable HTTP messages, as described <lb/>below. <lb/></body> + + <note place="footnote">Selander, et al. <lb/>Standards Track <lb/></note> + + <page>[Page 5] <lb/></page> + + <note place="headnote">RFC 8613 <lb/>OSCORE <lb/>July 2019 <lb/></note> + + <body>+-----------------------------------+ <lb/>| <lb/>Application <lb/>| <lb/>+-----------------------------------+ <lb/>+-----------------------------------+ \ <lb/>| Requests / Responses / Signaling | | <lb/>|-----------------------------------| | <lb/>| <lb/>OSCORE <lb/>| | CoAP <lb/>|-----------------------------------| | <lb/>| Messaging Layer / Message Framing | | <lb/>+-----------------------------------+ / <lb/>+-----------------------------------+ <lb/>| <lb/>UDP / TCP / ... <lb/>| <lb/>+-----------------------------------+ <lb/>Figure 1: Abstract Layering of CoAP with OSCORE <lb/>OSCORE is designed to protect as much information as possible while <lb/>still allowing CoAP proxy operations (Section 10). It works with <lb/>existing CoAP-to-CoAP forward proxies [RFC7252], but an OSCORE-aware <lb/>proxy will be more efficient. HTTP-to-CoAP proxies [RFC8075] and <lb/>CoAP-to-HTTP proxies can also be used with OSCORE, as specified in <lb/>Section 11. OSCORE may be used together with TLS or DTLS over one or <lb/>more hops in the end-to-end path, e.g., transported with HTTPS in one <lb/>hop and with plain CoAP in another hop. The use of OSCORE does not <lb/>affect the URI scheme; therefore, OSCORE can be used with any URI <lb/>scheme defined for CoAP or HTTP. The application decides the <lb/>conditions for which OSCORE is required. <lb/>OSCORE uses pre-shared keys that may have been established out-of-<lb/>band or with a key establishment protocol (see Section 3.2). The <lb/>technical solution builds on CBOR Object Signing and Encryption <lb/>(COSE) [RFC8152], providing end-to-end encryption, integrity, replay <lb/>protection, and binding of response to request. A compressed version <lb/>of COSE is used, as specified in Section 6. The use of OSCORE is <lb/>signaled in CoAP with a new option (Section 2), and in HTTP with a <lb/>new header field (Section 11.1) and content type (Section 13.5). The <lb/>solution transforms a CoAP/HTTP message into an "OSCORE message" <lb/>before sending, and vice versa after receiving. The OSCORE message <lb/>is a CoAP/HTTP message related to the original message in the <lb/>following way: the original CoAP/HTTP message is translated to CoAP <lb/>(if not already in CoAP) and protected in a COSE object. The <lb/>encrypted message fields of this COSE object are transported in the <lb/>CoAP payload/HTTP body of the OSCORE message, and the OSCORE option/ <lb/>header field is included in the message. A sketch of an exchange of <lb/>OSCORE messages, in the case of the original message being CoAP, is <lb/>provided in Figure 2. The use of OSCORE with HTTP is detailed in <lb/>Section 11. <lb/></body> + + <note place="footnote">Selander, et al. <lb/>Standards Track <lb/></note> + + <page>[Page 6] <lb/></page> + + <note place="headnote">RFC 8613 <lb/>OSCORE <lb/>July 2019 <lb/></note> + + <body>Client <lb/>Server <lb/>| <lb/>OSCORE request -POST example.com: <lb/>| <lb/>| <lb/>Header, Token, <lb/>| <lb/>| <lb/>Options: OSCORE, ..., <lb/>| <lb/>| <lb/>Payload: COSE ciphertext <lb/>| <lb/>+--------------------------------------------->| <lb/>| <lb/>| <lb/>|<---------------------------------------------+ <lb/>| <lb/>OSCORE response -2.04 (Changed): <lb/>| <lb/>| <lb/>Header, Token, <lb/>| <lb/>| <lb/>Options: OSCORE, ..., <lb/>| <lb/>| <lb/>Payload: COSE ciphertext <lb/>| <lb/>| <lb/>| <lb/>Figure 2: Sketch of CoAP with OSCORE <lb/>An implementation supporting this specification MAY implement only <lb/>the client part, MAY implement only the server part, or MAY implement <lb/>only one of the proxy parts. <lb/>1.1. Terminology <lb/>The key words "MUST", "MUST NOT", "REQUIRED", "SHALL", "SHALL NOT", <lb/>"SHOULD", "SHOULD NOT", "RECOMMENDED", "NOT RECOMMENDED", "MAY", and <lb/>"OPTIONAL" in this document are to be interpreted as described in <lb/>BCP 14 [RFC2119] [RFC8174] when, and only when, they appear in all <lb/>capitals, as shown here. <lb/>Readers are expected to be familiar with the terms and concepts <lb/>described in CoAP [RFC7252], COSE [RFC8152], Concise Binary Object <lb/>Representation (CBOR) [RFC7049], Concise Data Definition Language <lb/>(CDDL) [RFC8610] as summarized in Appendix E, and constrained <lb/>environments [RFC7228]. Additional optional features include Observe <lb/>[RFC7641], Block-wise [RFC7959], No-Response [RFC7967] and CoAP over <lb/>reliable transport [RFC8323]. <lb/>The term "hop" is used to denote a particular leg in the end-to-end <lb/>path. The concept "hop-by-hop" (as in "hop-by-hop encryption" or <lb/>"hop-by-hop fragmentation") opposed to "end-to-end", is used in this <lb/>document to indicate that the messages are processed accordingly in <lb/>the intermediaries, rather than just forwarded to the next node. <lb/>The term "stop processing" is used throughout the document to denote <lb/>that the message is not passed up to the CoAP request/response layer <lb/>(see Figure 1). <lb/></body> + + <note place="footnote">Selander, et al. <lb/>Standards Track <lb/></note> + + <page>[Page 7] <lb/></page> + + <note place="headnote">RFC 8613 <lb/>OSCORE <lb/>July 2019 <lb/></note> + + <body>The terms Common Context, Sender Context, Recipient Context, Master <lb/>Secret, Master Salt, Sender ID, Sender Key, Recipient ID, Recipient <lb/>Key, ID Context, and Common IV are defined in Section 3.1. <lb/>2. The OSCORE Option <lb/>The OSCORE option defined in this section (see Figure 3, which <lb/>extends "Table 4: Options" of [RFC7252]) indicates that the CoAP <lb/>message is an OSCORE message and that it contains a compressed COSE <lb/>object (see Sections 5 and 6). The OSCORE option is critical, safe <lb/>to forward, part of the cache key, and not repeatable. <lb/>+------+---+---+---+---+----------------+--------+--------+---------+ <lb/>| No. | C | U | N | R | Name <lb/>| Format | Length | Default | <lb/>+------+---+---+---+---+----------------+--------+--------+---------+ <lb/>| <lb/>9 | x | <lb/>| <lb/>| <lb/>| OSCORE <lb/>| (*) <lb/>| 0-255 | (none) | <lb/>+------+---+---+---+---+----------------+--------+--------+---------+ <lb/>C = Critical, <lb/>U = Unsafe, <lb/>N = NoCacheKey, <lb/>R = Repeatable <lb/>(*) See below. <lb/>Figure 3: The OSCORE Option <lb/>The OSCORE option includes the OSCORE flag bits (Section 6), the <lb/>Sender Sequence Number, the Sender ID, and the ID Context when these <lb/>fields are present (Section 3). The detailed format and length is <lb/>specified in Section 6. If the OSCORE flag bits are all zero (0x00), <lb/>the option value SHALL be empty (Option Length = 0). An endpoint <lb/>receiving a CoAP message without payload that also contains an OSCORE <lb/>option SHALL treat it as malformed and reject it. <lb/>A successful response to a request with the OSCORE option SHALL <lb/>contain the OSCORE option. Whether error responses contain the <lb/>OSCORE option depends on the error type (see Section 8). <lb/>For CoAP proxy operations, see Section 10. <lb/>3. The Security Context <lb/>OSCORE requires that client and server establish a shared security <lb/>context used to process the COSE objects. OSCORE uses COSE with an <lb/>Authenticated Encryption with Associated Data (AEAD, [RFC5116]) <lb/>algorithm for protecting message data between a client and a server. <lb/>In this section, we define the security context and how it is derived <lb/>in client and server based on a shared secret and a key derivation <lb/>function. <lb/></body> + + <note place="footnote">Selander, et al. <lb/>Standards Track <lb/></note> + + <page>[Page 8] <lb/></page> + + <note place="headnote">RFC 8613 <lb/>OSCORE <lb/>July 2019 <lb/></note> + + <body>3.1. Security Context Definition <lb/>The security context is the set of information elements necessary to <lb/>carry out the cryptographic operations in OSCORE. For each endpoint, <lb/>the security context is composed of a "Common Context", a "Sender <lb/>Context", and a "Recipient Context". <lb/>The endpoints protect messages to send using the Sender Context and <lb/>verify messages received using the Recipient Context; both contexts <lb/>being derived from the Common Context and other data. Clients and <lb/>servers need to be able to retrieve the correct security context to <lb/>use. <lb/>An endpoint uses its Sender ID (SID) to derive its Sender Context; <lb/>the other endpoint uses the same ID, now called Recipient ID (RID), <lb/>to derive its Recipient Context. In communication between two <lb/>endpoints, the Sender Context of one endpoint matches the Recipient <lb/>Context of the other endpoint, and vice versa. Thus, the two <lb/>security contexts identified by the same IDs in the two endpoints are <lb/>not the same, but they are partly mirrored. Retrieval and use of the <lb/>security context are shown in Figure 4. <lb/>.---------------------. <lb/>.---------------------. <lb/>| <lb/>Common Context <lb/>| = | <lb/>Common Context <lb/>| <lb/>+---------------------+ <lb/>+---------------------+ <lb/>| <lb/>Sender Context <lb/>| = | Recipient Context | <lb/>+---------------------+ <lb/>+---------------------+ <lb/>| Recipient Context | = | <lb/>Sender Context <lb/>| <lb/>'---------------------' <lb/>'---------------------' <lb/>Client <lb/>Server <lb/>| <lb/>| <lb/>Retrieve context for | OSCORE request: <lb/>| <lb/>target resource <lb/>| <lb/>Token = Token1, <lb/>| <lb/>Protect request with | <lb/>kid = SID, ... <lb/>| <lb/>Sender Context <lb/>+---------------------->| Retrieve context with <lb/>| <lb/>| RID = kid <lb/>| <lb/>| Verify request with <lb/>| <lb/>| Recipient Context <lb/>| OSCORE response: <lb/>| Protect response with <lb/>| <lb/>Token = Token1, ... | Sender Context <lb/>Retrieve context with |<----------------------+ <lb/>Token = Token1 <lb/>| <lb/>| <lb/>Verify request with <lb/>| <lb/>| <lb/>Recipient Context <lb/>| <lb/>| <lb/>Figure 4: Retrieval and Use of the Security Context <lb/></body> + + <note place="footnote">Selander, et al. <lb/>Standards Track <lb/></note> + + <page>[Page 9] <lb/></page> + + <note place="headnote">RFC 8613 <lb/>OSCORE <lb/>July 2019 <lb/></note> + + <body>The Common Context contains the following parameters: <lb/>o AEAD Algorithm. The COSE AEAD algorithm to use for encryption. <lb/>o HKDF Algorithm. An HMAC-based key derivation function (HKDF, <lb/>[RFC5869]) used to derive the Sender Key, Recipient Key, and <lb/>Common IV. <lb/>o Master Secret. Variable length, random byte string (see <lb/>Section 12.3) used to derive AEAD keys and Common IV. <lb/>o Master Salt. Optional variable-length byte string containing the <lb/>salt used to derive AEAD keys and Common IV. <lb/>o ID Context. Optional variable-length byte string providing <lb/>additional information to identify the Common Context and to <lb/>derive AEAD keys and Common IV. The use of ID Context is <lb/>described in Section 5.1. <lb/>o Common IV. Byte string derived from the Master Secret, Master <lb/>Salt, and ID Context. Used to generate the AEAD nonce (see <lb/>Section 5.2). Same length as the nonce of the AEAD Algorithm. <lb/>The Sender Context contains the following parameters: <lb/>o Sender ID. Byte string used to identify the Sender Context, to <lb/>derive AEAD keys and Common IV, and to contribute to the <lb/>uniqueness of AEAD nonces. Maximum length is determined by the <lb/>AEAD Algorithm. <lb/>o Sender Key. Byte string containing the symmetric AEAD key to <lb/>protect messages to send. Derived from Common Context and Sender <lb/>ID. Length is determined by the AEAD Algorithm. <lb/>o Sender Sequence Number. Non-negative integer used by the sender <lb/>to enumerate requests and certain responses, e.g., Observe <lb/>notifications. Used as "Partial IV" [RFC8152] to generate unique <lb/>AEAD nonces. Maximum value is determined by the AEAD Algorithm. <lb/>Initialization is described in Section 3.2.2. <lb/>The Recipient Context contains the following parameters: <lb/>o Recipient ID. Byte string used to identify the Recipient Context, <lb/>to derive AEAD keys and Common IV, and to contribute to the <lb/>uniqueness of AEAD nonces. Maximum length is determined by the <lb/>AEAD Algorithm. <lb/></body> + + <note place="footnote">Selander, et al. <lb/>Standards Track <lb/></note> + + <page>[Page 10] <lb/></page> + + <note place="headnote">RFC 8613 <lb/>OSCORE <lb/>July 2019 <lb/></note> + + <body>o Recipient Key. Byte string containing the symmetric AEAD key to <lb/>verify messages received. Derived from Common Context and <lb/>Recipient ID. Length is determined by the AEAD Algorithm. <lb/>o Replay Window (Server only). The replay window used to verify <lb/>requests received. Replay protection is described in Section 7.4 <lb/>and Section 3.2.2. <lb/>All parameters except Sender Sequence Number and Replay Window are <lb/>immutable once the security context is established. An endpoint may <lb/>free up memory by not storing the Common IV, Sender Key, and <lb/>Recipient Key, deriving them when needed. Alternatively, an endpoint <lb/>may free up memory by not storing the Master Secret and Master Salt <lb/>after the other parameters have been derived. <lb/>Endpoints MAY operate as both client and server and use the same <lb/>security context for those roles. Independent of being client or <lb/>server, the endpoint protects messages to send using its Sender <lb/>Context, and verifies messages received using its Recipient Context. <lb/>The endpoints MUST NOT change the Sender/Recipient ID when changing <lb/>roles. In other words, changing the roles does not change the set of <lb/>AEAD keys to be used. <lb/>3.2. Establishment of Security Context Parameters <lb/>Each endpoint derives the parameters in the security context from a <lb/>small set of input parameters. The following input parameters SHALL <lb/>be preestablished: <lb/>o Master Secret <lb/>o Sender ID <lb/>o Recipient ID <lb/>The following input parameters MAY be preestablished. In case any of <lb/>these parameters is not preestablished, the default value indicated <lb/>below is used: <lb/>o AEAD Algorithm <lb/>* Default is AES-CCM-16-64-128 (COSE algorithm encoding: 10) <lb/>o Master Salt <lb/>* Default is the empty byte string <lb/></body> + + <note place="footnote">Selander, et al. <lb/>Standards Track <lb/></note> + + <page>[Page 11] <lb/></page> + + <note place="headnote">RFC 8613 <lb/>OSCORE <lb/>July 2019 <lb/></note> + + <body>o HKDF Algorithm <lb/>* Default is HKDF SHA-256 <lb/>o Replay Window <lb/>* The default mechanism is an anti-replay sliding window (see <lb/>Section 4.1.2.6 of [RFC6347] with a window size of 32 <lb/>All input parameters need to be known and agreed on by both <lb/>endpoints, but the Replay Window may be different in the two <lb/>endpoints. The way the input parameters are preestablished is <lb/>application specific. Considerations of security context <lb/>establishment are given in Section 12.2 and examples of deploying <lb/>OSCORE in Appendix B. <lb/>3.2.1. Derivation of Sender Key, Recipient Key, and Common IV <lb/>The HKDF MUST be one of the HMAC-based HKDF [RFC5869] algorithms <lb/>defined for COSE [RFC8152]. HKDF SHA-256 is mandatory to implement. <lb/>The security context parameters Sender Key, Recipient Key, and Common <lb/>IV SHALL be derived from the input parameters using the HKDF, which <lb/>consists of the composition of the HKDF-Extract and HKDF-Expand steps <lb/>[RFC5869]: <lb/>output parameter = HKDF(salt, IKM, info, L) <lb/>where: <lb/>o salt is the Master Salt as defined above <lb/>o IKM is the Master Secret as defined above <lb/>o info is the serialization of a CBOR array consisting of (the <lb/>notation follows [RFC8610] as summarized in Appendix E): <lb/>info = [ <lb/>id : bstr, <lb/>id_context : bstr / nil, <lb/>alg_aead : int / tstr, <lb/>type : tstr, <lb/>L : uint, <lb/>] <lb/></body> + + <note place="footnote">Selander, et al. <lb/>Standards Track <lb/></note> + + <page>[Page 12] <lb/></page> + + <note place="headnote">RFC 8613 <lb/>OSCORE <lb/>July 2019 <lb/></note> + + <body>where: <lb/>o id is the Sender ID or Recipient ID when deriving Sender Key and <lb/>Recipient Key, respectively, and the empty byte string when <lb/>deriving the Common IV. <lb/>o id_context is the ID Context, or nil if ID Context is not <lb/>provided. <lb/>o alg_aead is the AEAD Algorithm, encoded as defined in [RFC8152]. <lb/>o type is "Key" or "IV". The label is an ASCII string and does not <lb/>include a trailing NUL byte. <lb/>o L is the size of the key/nonce for the AEAD Algorithm used, in <lb/>bytes. <lb/>For example, if the algorithm AES-CCM-16-64-128 (see Section 10.2 in <lb/>[RFC8152]) is used, the integer value for alg_aead is 10, the value <lb/>for L is 16 for keys and 13 for the Common IV. Assuming use of the <lb/>default algorithms HKDF SHA-256 and AES-CCM-16-64-128, the extract <lb/>phase of HKDF produces a pseudorandom key (PRK) as follows: <lb/>PRK = HMAC-SHA-256(Master Salt, Master Secret) <lb/>and as L is smaller than the hash function output size, the expand <lb/>phase of HKDF consists of a single HMAC invocation; therefore, the <lb/>Sender Key, Recipient Key, and Common IV are the first 16 or 13 bytes <lb/>of <lb/>output parameter = HMAC-SHA-256(PRK, info || 0x01) <lb/>where different values of info are used for each derived parameter <lb/>and where || denotes byte string concatenation. <lb/>Note that [RFC5869] specifies that if the salt is not provided, it is <lb/>set to a string of zeros. For implementation purposes, not providing <lb/>the salt is the same as setting the salt to the empty byte string. <lb/>OSCORE sets the salt default value to empty byte string, which is <lb/>converted to a string of zeroes (see Section 2.2 of [RFC5869]). <lb/></body> + + <note place="footnote">Selander, et al. <lb/>Standards Track <lb/></note> + + <page>[Page 13] <lb/></page> + + <note place="headnote">RFC 8613 <lb/>OSCORE <lb/>July 2019 <lb/></note> + + <body>3.2.2. Initial Sequence Numbers and Replay Window <lb/>The Sender Sequence Number is initialized to 0. <lb/>The supported types of replay protection and replay window size is <lb/>application specific and depends on how OSCORE is transported (see <lb/>Section 7.4). The default mechanism is the anti-replay window of <lb/>received messages used by IPsec AH/ESP and DTLS (see Section 4.1.2.6 <lb/>of [RFC6347]) with a window size of 32. <lb/>3.3. Requirements on the Security Context Parameters <lb/>To ensure unique Sender Keys, the quartet (Master Secret, Master <lb/>Salt, ID Context, Sender ID) MUST be unique, i.e., the pair (ID <lb/>Context, Sender ID) SHALL be unique in the set of all security <lb/>contexts using the same Master Secret and Master Salt. This means <lb/>that Sender ID SHALL be unique in the set of all security contexts <lb/>using the same Master Secret, Master Salt, and ID Context; such a <lb/>requirement guarantees unique (key, nonce) pairs for the AEAD. <lb/>Different methods can be used to assign Sender IDs: a protocol that <lb/>allows the parties to negotiate locally unique identifiers, a trusted <lb/>third party (e.g., [ACE-OAuth]), or the identifiers can be assigned <lb/>out-of-band. The Sender IDs can be very short (note that the empty <lb/>string is a legitimate value). The maximum length of Sender ID in <lb/>bytes equals the length of the AEAD nonce minus 6, see Section 5.2. <lb/>For AES-CCM-16-64-128 the maximum length of Sender ID is 7 bytes. <lb/>To simplify retrieval of the right Recipient Context, the Recipient <lb/>ID SHOULD be unique in the sets of all Recipient Contexts used by an <lb/>endpoint. If an endpoint has the same Recipient ID with different <lb/>Recipient Contexts, i.e., the Recipient Contexts are derived from <lb/>different Common Contexts, then the endpoint may need to try multiple <lb/>times before verifying the right security context associated to the <lb/>Recipient ID. <lb/>The ID Context is used to distinguish between security contexts. The <lb/>methods used for assigning Sender ID can also be used for assigning <lb/>the ID Context. Additionally, the ID Context can be used to <lb/>introduce randomness into new Sender and Recipient Contexts (see <lb/>Appendix B.2). ID Context can be arbitrarily long. <lb/></body> + + <note place="footnote">Selander, et al. <lb/>Standards Track <lb/></note> + + <page>[Page 14] <lb/></page> + + <note place="headnote">RFC 8613 <lb/>OSCORE <lb/>July 2019 <lb/></note> + + <body>4. Protected Message Fields <lb/>OSCORE transforms a CoAP message (which may have been generated from <lb/>an HTTP message) into an OSCORE message, and vice versa. OSCORE <lb/>protects as much of the original message as possible while still <lb/>allowing certain proxy operations (see Sections 10 and 11). This <lb/>section defines how OSCORE protects the message fields and transfers <lb/>them end-to-end between client and server (in any direction). <lb/>The remainder of this section and later sections focus on the <lb/>behavior in terms of CoAP messages. If HTTP is used for a particular <lb/>hop in the end-to-end path, then this section applies to the <lb/>conceptual CoAP message that is mappable to/from the original HTTP <lb/>message as discussed in Section 11. That is, an HTTP message is <lb/>conceptually transformed to a CoAP message and then to an OSCORE <lb/>message, and similarly in the reverse direction. An actual <lb/>implementation might translate directly from HTTP to OSCORE without <lb/>the intervening CoAP representation. <lb/>Protection of signaling messages (Section 5 of [RFC8323]) is <lb/>specified in Section 4.3. The other parts of this section target <lb/>request/response messages. <lb/>Message fields of the CoAP message may be protected end-to-end <lb/>between CoAP client and CoAP server in different ways: <lb/>o Class E: encrypted and integrity protected, <lb/>o Class I: integrity protected only, or <lb/>o Class U: unprotected. <lb/>The sending endpoint SHALL transfer Class E message fields in the <lb/>ciphertext of the COSE object in the OSCORE message. The sending <lb/>endpoint SHALL include Class I message fields in the AAD of the AEAD <lb/>algorithm, allowing the receiving endpoint to detect if the value has <lb/>changed in transfer. Class U message fields SHALL NOT be protected <lb/>in transfer. Class I and Class U message field values are <lb/>transferred in the header or options part of the OSCORE message, <lb/>which is visible to proxies. <lb/>Message fields not visible to proxies, i.e., transported in the <lb/>ciphertext of the COSE object, are called "Inner" (Class E). Message <lb/>fields transferred in the header or options part of the OSCORE <lb/>message, which is visible to proxies, are called "Outer" (Class I or <lb/>Class U). There are currently no Class I options defined. <lb/></body> + + <note place="footnote">Selander, et al. <lb/>Standards Track <lb/></note> + + <page>[Page 15] <lb/></page> + + <note place="headnote">RFC 8613 <lb/>OSCORE <lb/>July 2019 <lb/></note> + + <body>An OSCORE message may contain both an Inner and an Outer instance of <lb/>a certain CoAP message field. Inner message fields are intended for <lb/>the receiving endpoint, whereas Outer message fields are used to <lb/>enable proxy operations. <lb/>4.1. CoAP Options <lb/>A summary of how options are protected is shown in Figure 5. Note <lb/>that some options may have both Inner and Outer message fields, which <lb/>are protected accordingly. Certain options require special <lb/>processing as is described in Section 4.1.3. <lb/>Options that are unknown or for which OSCORE processing is not <lb/>defined SHALL be processed as Class E (and no special processing). <lb/>Specifications of new CoAP options SHOULD define how they are <lb/>processed with OSCORE. A new COAP option SHOULD be of Class E unless <lb/>it requires proxy processing. If a new CoAP option is of class U, <lb/>the potential issues with the option being unprotected SHOULD be <lb/>documented (see Appendix D.5). <lb/>4.1.1. Inner Options <lb/>Inner option message fields (Class E) are used to communicate <lb/>directly with the other endpoint. <lb/>The sending endpoint SHALL write the Inner option message fields <lb/>present in the original CoAP message into the plaintext of the COSE <lb/>object (Section 5.3) and then remove the Inner option message fields <lb/>from the OSCORE message. <lb/>The processing of Inner option message fields by the receiving <lb/>endpoint is specified in Sections 8.2 and 8.4. <lb/></body> + + <note place="footnote">Selander, et al. <lb/>Standards Track <lb/></note> + + <page>[Page 16] <lb/></page> + + <note place="headnote">RFC 8613 <lb/>OSCORE <lb/>July 2019 <lb/></note> + + <body>+------+-----------------+---+---+ <lb/>| No. | Name <lb/>| E | U | <lb/>+------+-----------------+---+---+ <lb/>| <lb/>1 | If-Match <lb/>| x | <lb/>| <lb/>| <lb/>3 | Uri-Host <lb/>| <lb/>| x | <lb/>| <lb/>4 | ETag <lb/>| x | <lb/>| <lb/>| <lb/>5 | If-None-Match <lb/>| x | <lb/>| <lb/>| <lb/>6 | Observe <lb/>| x | x | <lb/>| <lb/>7 | Uri-Port <lb/>| <lb/>| x | <lb/>| <lb/>8 | Location-Path <lb/>| x | <lb/>| <lb/>| <lb/>9 | OSCORE <lb/>| <lb/>| x | <lb/>| 11 | Uri-Path <lb/>| x | <lb/>| <lb/>| 12 | Content-Format | x | <lb/>| <lb/>| 14 | Max-Age <lb/>| x | x | <lb/>| 15 | Uri-Query <lb/>| x | <lb/>| <lb/>| 17 | Accept <lb/>| x | <lb/>| <lb/>| 20 | Location-Query | x | <lb/>| <lb/>| 23 | Block2 <lb/>| x | x | <lb/>| 27 | Block1 <lb/>| x | x | <lb/>| 28 | Size2 <lb/>| x | x | <lb/>| 35 | Proxy-Uri <lb/>| <lb/>| x | <lb/>| 39 | Proxy-Scheme <lb/>| <lb/>| x | <lb/>| 60 | Size1 <lb/>| x | x | <lb/>| 258 | No-Response <lb/>| x | x | <lb/>+------+-----------------+---+---+ <lb/>E = Encrypt and Integrity Protect (Inner) <lb/>U = Unprotected (Outer) <lb/>Figure 5: Protection of CoAP Options <lb/>4.1.2. Outer Options <lb/>Outer option message fields (Class U or I) are used to support proxy <lb/>operations, see Appendix D.2. <lb/>The sending endpoint SHALL include the Outer option message field <lb/>present in the original message in the options part of the OSCORE <lb/>message. All Outer option message fields, including the OSCORE <lb/>option, SHALL be encoded as described in Section 3.1 of [RFC7252], <lb/>where the delta is the difference from the previously included <lb/>instance of Outer option message field. <lb/>The processing of Outer options by the receiving endpoint is <lb/>specified in Sections 8.2 and 8.4. <lb/></body> + + <note place="footnote">Selander, et al. <lb/>Standards Track <lb/></note> + + <page>[Page 17] <lb/></page> + + <note place="headnote">RFC 8613 <lb/>OSCORE <lb/>July 2019 <lb/></note> + + <body>A procedure for integrity-protection-only of Class I option message <lb/>fields is specified in Section 5.4. Specifications that introduce <lb/>repeatable Class I options MUST specify that proxies MUST NOT change <lb/>the order of the instances of such an option in the CoAP message. <lb/>Note: There are currently no Class I option message fields defined. <lb/>4.1.3. Special Options <lb/>Some options require special processing as specified in this section. <lb/>4.1.3.1. Max-Age <lb/>An Inner Max-Age message field is used to indicate the maximum time a <lb/>response may be cached by the client (as defined in [RFC7252]), end-<lb/>to-end from the server to the client, taking into account that the <lb/>option is not accessible to proxies. The Inner Max-Age SHALL be <lb/>processed by OSCORE as a normal Inner option, specified in <lb/>Section 4.1.1. <lb/>An Outer Max-Age message field is used to avoid unnecessary caching <lb/>of error responses caused by OSCORE processing at OSCORE-unaware <lb/>intermediary nodes. A server MAY set a Class U Max-Age message field <lb/>with value zero to such error responses, described in Sections 7.4, <lb/>8.2, and 8.4, since these error responses are cacheable, but <lb/>subsequent OSCORE requests would never create a hit in the <lb/>intermediary node caching it. Setting the Outer Max-Age to zero <lb/>relieves the intermediary from uselessly caching responses. <lb/>Successful OSCORE responses do not need to include an Outer Max-Age <lb/>option. Except when the Observe option (see Section 4.1.3.5) is <lb/>used, responses appear to the OSCORE-unaware intermediary as 2.04 <lb/>(Changed) responses, which are non-cacheable (see Section 4.2). For <lb/>Observe responses, which are cacheable, an Outer Max-Age option with <lb/>value 0 may be used to avoid unnecessary proxy caching. <lb/>The Outer Max-Age message field is processed according to <lb/>Section 4.1.2. <lb/>4.1.3.2. Uri-Host and Uri-Port <lb/>When the Uri-Host and Uri-Port are set to their default values (see <lb/>Section 5.10.1 [RFC7252]), they are omitted from the message <lb/>(Section 5.4.4 of [RFC7252]), which is favorable both for overhead <lb/>and privacy. <lb/>In order to support forward proxy operations, Proxy-Scheme, Uri-Host, <lb/>and Uri-Port need to be Class U. For the use of Proxy-Uri, see <lb/>Section 4.1.3.3. <lb/></body> + + <note place="footnote">Selander, et al. <lb/>Standards Track <lb/></note> + + <page>[Page 18] <lb/></page> + + <note place="headnote">RFC 8613 <lb/>OSCORE <lb/>July 2019 <lb/></note> + + <body>Manipulation of unprotected message fields (including Uri-Host, Uri-<lb/>Port, destination IP/port or request scheme) MUST NOT lead to an <lb/>OSCORE message becoming verified by an unintended server. Different <lb/>servers SHALL have different security contexts. <lb/>4.1.3.3. Proxy-Uri <lb/>When Proxy-Uri is present, the client SHALL first decompose the <lb/>Proxy-Uri value of the original CoAP message into the Proxy-Scheme, <lb/>Uri-Host, Uri-Port, Uri-Path, and Uri-Query options according to <lb/>Section 6.4 of [RFC7252]. <lb/>Uri-Path and Uri-Query are Class E options and SHALL be protected and <lb/>processed as Inner options (Section 4.1.1). <lb/>The Proxy-Uri option of the OSCORE message SHALL be set to the <lb/>composition of Proxy-Scheme, Uri-Host, and Uri-Port options as <lb/>specified in Section 6.5 of [RFC7252] and processed as an Outer <lb/>option of Class U (Section 4.1.2). <lb/>Note that replacing the Proxy-Uri value with the Proxy-Scheme and <lb/>Uri-* options works by design for all CoAP URIs (see Section 6 of <lb/>[RFC7252]). OSCORE-aware HTTP servers should not use the userinfo <lb/>component of the HTTP URI (as defined in Section 3.2.1 of [RFC3986]), <lb/>so that this type of replacement is possible in the presence of CoAP-<lb/>to-HTTP proxies (see Section 11.2). In future specifications of <lb/>cross-protocol proxying behavior using different URI structures, it <lb/>is expected that the authors will create Uri-* options that allow <lb/>decomposing the Proxy-Uri, and specifying the OSCORE processing. <lb/>An example of how Proxy-Uri is processed is given here. Assume that <lb/>the original CoAP message contains: <lb/>o Proxy-Uri = "coap://example.com/resource?q=1" <lb/>During OSCORE processing, Proxy-Uri is split into: <lb/>o Proxy-Scheme = "coap" <lb/>o Uri-Host = "example.com" <lb/>o Uri-Port = "5683" (default) <lb/>o Uri-Path = "resource" <lb/>o Uri-Query = "q=1" <lb/></body> + + <note place="footnote">Selander, et al. <lb/>Standards Track <lb/></note> + + <page>[Page 19] <lb/></page> + + <note place="headnote">RFC 8613 <lb/>OSCORE <lb/>July 2019 <lb/></note> + + <body>Uri-Path and Uri-Query follow the processing defined in <lb/>Section 4.1.1; thus, they are encrypted and transported in the COSE <lb/>object: <lb/>o Uri-Path = "resource" <lb/>o Uri-Query = "q=1" <lb/>The remaining options are composed into the Proxy-Uri included in the <lb/>options part of the OSCORE message, which has value: <lb/>o Proxy-Uri = "coap://example.com" <lb/>See Sections 6.1 and 12.6 of [RFC7252] for more details. <lb/>4.1.3.4. The Block Options <lb/>Block-wise [RFC7959] is an optional feature. An implementation MAY <lb/>support CoAP [RFC7252] and the OSCORE option without supporting <lb/>block-wise transfers. The Block options (Block1, Block2, Size1, <lb/>Size2), when Inner message fields, provide secure message <lb/>segmentation such that each segment can be verified. The Block <lb/>options, when Outer message fields, enable hop-by-hop fragmentation <lb/>of the OSCORE message. Inner and Outer block processing may have <lb/>different performance properties depending on the underlying <lb/>transport. The end-to-end integrity of the message can be verified <lb/>both in case of Inner and Outer Block-wise transfers, provided all <lb/>blocks are received. <lb/>4.1.3.4.1. Inner Block Options <lb/>The sending CoAP endpoint MAY fragment a CoAP message as defined in <lb/>[RFC7959] before the message is processed by OSCORE. In this case, <lb/>the Block options SHALL be processed by OSCORE as normal Inner <lb/>options (Section 4.1.1). The receiving CoAP endpoint SHALL process <lb/>the OSCORE message before processing Block-wise as defined in <lb/>[RFC7959]. <lb/>4.1.3.4.2. Outer Block Options <lb/>Proxies MAY fragment an OSCORE message using [RFC7959] by introducing <lb/>Block option message fields that are Outer (Section 4.1.2). Note <lb/>that the Outer Block options are neither encrypted nor integrity <lb/>protected. As a consequence, a proxy can maliciously inject block <lb/>fragments indefinitely, since the receiving endpoint needs to receive <lb/>the last block (see [RFC7959]) to be able to compose the OSCORE <lb/>message and verify its integrity. Therefore, applications supporting <lb/>OSCORE and [RFC7959] MUST specify a security policy defining a <lb/></body> + + <note place="footnote">Selander, et al. <lb/>Standards Track <lb/></note> + + <page>[Page 20] <lb/></page> + + <note place="headnote">RFC 8613 <lb/>OSCORE <lb/>July 2019 <lb/></note> + + <body>maximum unfragmented message size (MAX_UNFRAGMENTED_SIZE) considering <lb/>the maximum size of message that can be handled by the endpoints. <lb/>Messages exceeding this size SHOULD be fragmented by the sending <lb/>endpoint using Inner Block options (Section 4.1.3.4.1). <lb/>An endpoint receiving an OSCORE message with an Outer Block option <lb/>SHALL first process this option according to [RFC7959], until all <lb/>blocks of the OSCORE message have been received or the cumulated <lb/>message size of the blocks exceeds MAX_UNFRAGMENTED_SIZE. In the <lb/>former case, the processing of the OSCORE message continues as <lb/>defined in this document. In the latter case, the message SHALL be <lb/>discarded. <lb/>Because of encryption of Uri-Path and Uri-Query, messages to the same <lb/>server may, from the point of view of a proxy, look like they also <lb/>target the same resource. A proxy SHOULD mitigate a potential mix-up <lb/>of blocks from concurrent requests to the same server, for example, <lb/>using the Request-Tag processing specified in Section 3.3.2 of <lb/>[CoAP-ECHO-REQ-TAG]. <lb/>4.1.3.5. Observe <lb/>Observe [RFC7641] is an optional feature. An implementation MAY <lb/>support CoAP [RFC7252] and the OSCORE option without supporting <lb/>[RFC7641], in which case the Observe-related processing can be <lb/>omitted. <lb/>The support for Observe [RFC7641] with OSCORE targets the <lb/>requirements on forwarding of Section 2.2.1 of [CoAP-E2E-Sec], i.e., <lb/>that observations go through intermediary nodes, as illustrated in <lb/>Figure 8 of [RFC7641]. <lb/>Inner Observe SHALL be used to protect the value of the Observe <lb/>option between the endpoints. Outer Observe SHALL be used to support <lb/>forwarding by intermediary nodes. <lb/>The server SHALL include a new Partial IV (see Section 5) in <lb/>responses (with or without the Observe option) to Observe <lb/>registrations, except for the first response where Partial IV MAY be <lb/>omitted. <lb/>For cancellations, Section 3.6 of [RFC7641] specifies that all <lb/>options MUST be identical to those in the registration request except <lb/>for the Observe option and the set of ETag options. For OSCORE <lb/>messages, this matching is to be done to the options in the decrypted <lb/>message. <lb/></body> + + <note place="footnote">Selander, et al. <lb/>Standards Track <lb/></note> + + <page>[Page 21] <lb/></page> + + <note place="headnote">RFC 8613 <lb/>OSCORE <lb/>July 2019 <lb/></note> + + <body>[RFC7252] does not specify how the server should act upon receiving <lb/>the same Token in different requests. When using OSCORE, the server <lb/>SHOULD NOT remove an active observation just because it receives a <lb/>request with the same Token. <lb/>Since POST with the Observe option is not defined, for messages with <lb/>the Observe option, the Outer Code MUST be set to 0.05 (FETCH) for <lb/>requests and to 2.05 (Content) for responses (see Section 4.2). <lb/>4.1.3.5.1. Registrations and Cancellations <lb/>The Inner and Outer Observe options in the request MUST contain the <lb/>Observe value of the original CoAP request; 0 (registration) or 1 <lb/>(cancellation). <lb/>Every time a client issues a new request with the Observe option, a <lb/>new Partial IV MUST be used (see Section 5), and so the payload and <lb/>OSCORE option are changed. The server uses the Partial IV of the new <lb/>request as the 'request_piv' of all associated notifications (see <lb/>Section 5.4). <lb/>Intermediaries are not assumed to have access to the OSCORE security <lb/>context used by the endpoints; thus, they cannot make requests or <lb/>transform responses with the OSCORE option that pass verification (at <lb/>the receiving endpoint) as having come from the other endpoint. This <lb/>has the following consequences and limitations for Observe <lb/>operations. <lb/>o An intermediary node removing the Outer Observe 0 option does not <lb/>change the registration request to a request without the Observe <lb/>option (see Section 2 of [RFC7641]). Instead other means for <lb/>cancellation may be used as described in Section 3.6 of [RFC7641]. <lb/>o An intermediary node is not able to transform a normal response <lb/>into an OSCORE-protected Observe notification (see Figure 7 of <lb/>[RFC7641]) that verifies as coming from the server. <lb/>o An intermediary node is not able to initiate an OSCORE protected <lb/>Observe registration (Observe option with value 0) that verifies <lb/>as coming from the client. An OSCORE-aware intermediary SHALL NOT <lb/>initiate registrations of observations (see Section 10). If an <lb/>OSCORE-unaware proxy resends an old registration message from a <lb/>client, the replay protection mechanism in the server will be <lb/>triggered. To prevent this from resulting in the OSCORE-unaware <lb/>proxy canceling the registration, a server MAY respond to a <lb/>replayed registration request with a replay of a cached <lb/>notification. Alternatively, the server MAY send a new <lb/>notification. <lb/></body> + + <note place="footnote">Selander, et al. <lb/>Standards Track <lb/></note> + + <page>[Page 22] <lb/></page> + + <note place="headnote">RFC 8613 <lb/>OSCORE <lb/>July 2019 <lb/></note> + + <body>o An intermediary node is not able to initiate an OSCORE-protected <lb/>Observe cancellation (Observe option with value 1) that verifies <lb/>as coming from the client. An application MAY decide to allow <lb/>intermediaries to cancel Observe registrations, e.g., to send the <lb/>Observe option with value 1 (see Section 3.6 of [RFC7641]); <lb/>however, that can also be done with other methods, e.g., by <lb/>sending a RST message. This is out of scope for this <lb/>specification. <lb/>4.1.3.5.2. Notifications <lb/>If the server accepts an Observe registration, a Partial IV MUST be <lb/>included in all notifications (both successful and error), except for <lb/>the first one where the Partial IV MAY be omitted. To protect <lb/>against replay, the client SHALL maintain a Notification Number for <lb/>each Observation it registers. The Notification Number is a non-<lb/>negative integer containing the largest Partial IV of the received <lb/>notifications for the associated Observe registration. Further <lb/>details of replay protection of notifications are specified in <lb/>Section 7.4.1. <lb/>For notifications, the Inner Observe option value MUST be empty (see <lb/>Section 3.2 of [RFC7252]). The Outer Observe option in a <lb/>notification is needed for intermediary nodes to allow multiple <lb/>responses to one request, and it MAY be set to the value of the <lb/>Observe option in the original CoAP message. The client performs <lb/>ordering of notifications and replay protection by comparing their <lb/>Partial IVs and SHALL ignore the Outer Observe option value. <lb/>If the client receives a response to an Observe request without an <lb/>Inner Observe option, then it verifies the response as a non-Observe <lb/>response, as specified in Section 8.4. If the client receives a <lb/>response to a non-Observe request with an Inner Observe option, then <lb/>it stops processing the message, as specified in Section 8.4. <lb/>A client MUST consider the notification with the highest Partial IV <lb/>as the freshest, regardless of the order of arrival. In order to <lb/>support existing Observe implementations, the OSCORE client <lb/>implementation MAY set the Observe option value to the three least <lb/>significant bytes of the Partial IV. Implementations need to make <lb/>sure that the notification without Partial IV is considered the <lb/>oldest. <lb/></body> + + <note place="footnote">Selander, et al. <lb/>Standards Track <lb/></note> + + <page>[Page 23] <lb/></page> + + <note place="headnote">RFC 8613 <lb/>OSCORE <lb/>July 2019 <lb/></note> + + <body>4.1.3.6. No-Response <lb/>No-Response [RFC7967] is an optional feature used by the client to <lb/>communicate its disinterest in certain classes of responses to a <lb/>particular request. An implementation MAY support [RFC7252] and the <lb/>OSCORE option without supporting [RFC7967]. <lb/>If used, No-Response MUST be Inner. The Inner No-Response SHALL be <lb/>processed by OSCORE as specified in Section 4.1.1. The Outer option <lb/>SHOULD NOT be present. The server SHALL ignore the Outer No-Response <lb/>option. The client MAY set the Outer No-Response value to 26 <lb/>(suppress all known codes) if the Inner value is set to 26. The <lb/>client MUST be prepared to receive and discard 5.04 (Gateway Timeout) <lb/>error messages from intermediaries potentially resulting from <lb/>destination time out due to no response. <lb/>4.1.3.7. OSCORE <lb/>The OSCORE option is only defined to be present in OSCORE messages as <lb/>an indication that OSCORE processing has been performed. The content <lb/>in the OSCORE option is neither encrypted nor integrity protected as <lb/>a whole, but some part of the content of this option is protected <lb/>(see Section 5.4). Nested use of OSCORE is not supported: If OSCORE <lb/>processing detects an OSCORE option in the original CoAP message, <lb/>then processing SHALL be stopped. <lb/>4.2. CoAP Header Fields and Payload <lb/>A summary of how the CoAP header fields and payload are protected is <lb/>shown in Figure 6, including fields specific to CoAP over UDP and <lb/>CoAP over TCP (marked accordingly in the table). <lb/>+------------------+---+---+ <lb/>| Field <lb/>| E | U | <lb/>+------------------+---+---+ <lb/>| Version (UDP) <lb/>| <lb/>| x | <lb/>| Type (UDP) <lb/>| <lb/>| x | <lb/>| Length (TCP) <lb/>| <lb/>| x | <lb/>| Token Length <lb/>| <lb/>| x | <lb/>| Code <lb/>| x | <lb/>| <lb/>| Message ID (UDP) | <lb/>| x | <lb/>| Token <lb/>| <lb/>| x | <lb/>| Payload <lb/>| x | <lb/>| <lb/>+------------------+---+---+ <lb/>E = Encrypt and Integrity Protect (Inner) <lb/>U = Unprotected (Outer) <lb/>Figure 6: Protection of CoAP Header Fields and Payload <lb/></body> + + <note place="footnote">Selander, et al. <lb/>Standards Track <lb/></note> + + <page>[Page 24] <lb/></page> + + <note place="headnote">RFC 8613 <lb/>OSCORE <lb/>July 2019 <lb/></note> + + <body>Most CoAP header fields (i.e., the message fields in the fixed 4-byte <lb/>header) are required to be read and/or changed by CoAP proxies; thus, <lb/>they cannot, in general, be protected end-to-end from one endpoint to <lb/>the other. As mentioned in Section 1, OSCORE protects the CoAP <lb/>request/response layer only and not the CoAP messaging layer <lb/>(Section 2 of [RFC7252]), so fields such as Type and Message ID are <lb/>not protected with OSCORE. <lb/>The CoAP header field Code is protected by OSCORE. Code SHALL be <lb/>encrypted and integrity protected (Class E) to prevent an <lb/>intermediary from eavesdropping on or manipulating it (e.g., changing <lb/>from GET to DELETE). <lb/>The sending endpoint SHALL write the Code of the original CoAP <lb/>message into the plaintext of the COSE object (see Section 5.3). <lb/>After that, the sending endpoint writes an Outer Code to the OSCORE <lb/>message. With one exception (see Section 4.1.3.5), the Outer Code <lb/>SHALL be set to 0.02 (POST) for requests and to 2.04 (Changed) for <lb/>responses. The receiving endpoint SHALL discard the Outer Code in <lb/>the OSCORE message and write the Code of the COSE object plaintext <lb/>(Section 5.3) into the decrypted CoAP message. <lb/>The other currently defined CoAP header fields are Unprotected (Class <lb/>U). The sending endpoint SHALL write all other header fields of the <lb/>original message into the header of the OSCORE message. The <lb/>receiving endpoint SHALL write the header fields from the received <lb/>OSCORE message into the header of the decrypted CoAP message. <lb/>The CoAP Payload, if present in the original CoAP message, SHALL be <lb/>encrypted and integrity protected; thus, it is an Inner message <lb/>field. The sending endpoint writes the payload of the original CoAP <lb/>message into the plaintext (Section 5.3) input to the COSE object. <lb/>The receiving endpoint verifies and decrypts the COSE object, and it <lb/>recreates the payload of the original CoAP message. <lb/>4.3. Signaling Messages <lb/>Signaling messages (CoAP Code 7.00-7.31) were introduced to exchange <lb/>information related to an underlying transport connection in the <lb/>specific case of CoAP over reliable transports [RFC8323]. <lb/>OSCORE MAY be used to protect signaling if the endpoints for OSCORE <lb/>coincide with the endpoints for the signaling message. If OSCORE is <lb/>used to protect signaling then: <lb/>o To comply with [RFC8323], an initial empty Capabilities and <lb/>Settings Message (CSM) SHALL be sent. The subsequent signaling <lb/>message SHALL be protected. <lb/></body> + + <note place="footnote">Selander, et al. <lb/>Standards Track <lb/></note> + + <page>[Page 25] <lb/></page> + + <note place="headnote">RFC 8613 <lb/>OSCORE <lb/>July 2019 <lb/></note> + + <body>o Signaling messages SHALL be protected as CoAP request messages, <lb/>except in the case in which the signaling message is a response to <lb/>a previous signaling message; then it SHALL be protected as a CoAP <lb/>response message. For example, 7.02 (Ping) is protected as a CoAP <lb/>request and 7.03 (Pong) as a CoAP response. <lb/>o The Outer Code for signaling messages SHALL be set to 0.02 (POST), <lb/>unless it is a response to a previous signaling message, in which <lb/>case it SHALL be set to 2.04 (Changed). <lb/>o All signaling options, except the OSCORE option, SHALL be Inner <lb/>(Class E). <lb/>NOTE: Option numbers for signaling messages are specific to the CoAP <lb/>Code (see Section 5.2 of [RFC8323]). <lb/>If OSCORE is not used to protect signaling, Signaling messages SHALL <lb/>be unaltered by OSCORE. <lb/>5. The COSE Object <lb/>This section defines how to use COSE [RFC8152] to wrap and protect <lb/>data in the original message. OSCORE uses the untagged COSE_Encrypt0 <lb/>structure (see Section 5.2 of [RFC8152]) with an AEAD algorithm. The <lb/>AEAD key lengths, AEAD nonce length, and maximum Sender Sequence <lb/>Number are algorithm dependent. <lb/>The AEAD algorithm AES-CCM-16-64-128 defined in Section 10.2 of <lb/>[RFC8152] is mandatory to implement. For AES-CCM-16-64-128, the <lb/>length of Sender Key and Recipient Key is 128 bits; the length of <lb/>AEAD nonce and Common IV is 13 bytes. The maximum Sender Sequence <lb/>Number is specified in Section 12. <lb/>As specified in [RFC5116], plaintext denotes the data that is to be <lb/>encrypted and integrity protected, and Additional Authenticated Data <lb/>(AAD) denotes the data that is to be integrity protected only. <lb/>The COSE object SHALL be a COSE_Encrypt0 object with fields defined <lb/>as follows: <lb/>o The 'protected' field is empty. <lb/>o The 'unprotected' field includes: <lb/>* The 'Partial IV' parameter. The value is set to the Sender <lb/>Sequence Number. All leading bytes of value zero SHALL be <lb/>removed when encoding the Partial IV, except in the case of <lb/>Partial IV value 0, which is encoded to the byte string 0x00. <lb/></body> + + <note place="footnote">Selander, et al. <lb/>Standards Track <lb/></note> + + <page>[Page 26] <lb/></page> + + <note place="headnote">RFC 8613 <lb/>OSCORE <lb/>July 2019 <lb/></note> + + <body>This parameter SHALL be present in requests and will not <lb/>typically be present in responses (for two exceptions, see <lb/>Observe notifications (Section 4.1.3.5.2) and Replay Window <lb/>synchronization (Appendix B.1.2)). <lb/>* The 'kid' parameter. The value is set to the Sender ID. This <lb/>parameter SHALL be present in requests and will not typically <lb/>be present in responses. An example where the Sender ID is <lb/>included in a response is the extension of OSCORE to group <lb/>communication [Group-OSCORE]. <lb/>* Optionally, a 'kid context' parameter (see Section 5.1). This <lb/>parameter MAY be present in requests and, if so, MUST contain <lb/>an ID Context (see Section 3.1). This parameter SHOULD NOT be <lb/>present in responses: an example of how 'kid context' can be <lb/>used in responses is given in Appendix B.2. If 'kid context' <lb/>is present in the request, then the server SHALL use a security <lb/>context with that ID Context when verifying the request. <lb/>o The 'ciphertext' field is computed from the secret key (Sender Key <lb/>or Recipient Key), AEAD nonce (see Section 5.2), plaintext (see <lb/>Section 5.3), and the AAD (see Section 5.4) following Section 5.2 <lb/>of [RFC8152]. <lb/>The encryption process is described in Section 5.3 of [RFC8152]. <lb/>5.1. ID Context and 'kid context' <lb/>For certain use cases, e.g., deployments where the same Sender ID is <lb/>used with multiple contexts, it is possible (and sometimes necessary, <lb/>see Section 3.3) for the client to use an ID Context to distinguish <lb/>the security contexts (see Section 3.1). For example: <lb/>o If the client has a unique identifier in some namespace, then that <lb/>identifier can be used as ID Context. <lb/>o The ID Context may be used to add randomness into new Sender and <lb/>Recipient Contexts, see Appendix B.2. <lb/>o In the case of group communication [Group-OSCORE], a group <lb/>identifier is used as ID Context to enable different security <lb/>contexts for a server belonging to multiple groups. <lb/>The Sender ID and ID Context are used to establish the necessary <lb/>input parameters and in the derivation of the security context (see <lb/>Section 3.2). <lb/></body> + + <note place="footnote">Selander, et al. <lb/>Standards Track <lb/></note> + + <page>[Page 27] <lb/></page> + + <note place="headnote">RFC 8613 <lb/>OSCORE <lb/>July 2019 <lb/></note> + + <body>While the 'kid' parameter is used to transport the Sender ID, the new <lb/>COSE header parameter 'kid context' is used to transport the ID <lb/>Context in requests, see Figure 7. <lb/>+----------+--------+------------+----------------+-----------------+ <lb/>| <lb/>Name <lb/>| Label | Value Type | Value Registry | <lb/>Description <lb/>| <lb/>+----------+--------+------------+----------------+-----------------+ <lb/>| <lb/>kid <lb/>| <lb/>10 | bstr <lb/>| <lb/>| Identifies the | <lb/>| context | <lb/>| <lb/>| <lb/>| context for the | <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| key identifier | <lb/>+----------+--------+------------+----------------+-----------------+ <lb/>Figure 7: Common Header Parameter 'kid context' for the COSE Object <lb/>If ID Context is non-empty and the client sends a request without <lb/>'kid context' resulting in an error indicating that the server could <lb/>not find the security context, then the client could include the ID <lb/>Context in the 'kid context' when making another request. Note that <lb/>since the error is unprotected, it may have been spoofed and the real <lb/>response blocked by an on-path attacker. <lb/>5.2. AEAD Nonce <lb/>The high-level design of the AEAD nonce follows Section 4.4 of <lb/>[IV-GEN]. The detailed construction of the AEAD nonce is presented <lb/>here (see Figure 8): <lb/>1. left-pad the Partial IV (PIV) with zeroes to exactly 5 bytes, <lb/>2. left-pad the Sender ID of the endpoint that generated the Partial <lb/>IV (ID_PIV) with zeroes to exactly nonce length minus 6 bytes, <lb/>3. concatenate the size of the ID_PIV (a single byte S) with the <lb/>padded ID_PIV and the padded PIV, <lb/>4. and then XOR with the Common IV. <lb/>Note that in this specification, only AEAD algorithms that use nonces <lb/>equal or greater than 7 bytes are supported. The nonce construction <lb/>with S, ID_PIV, and PIV together with endpoint-unique IDs and <lb/>encryption keys makes it easy to verify that the nonces used with a <lb/>specific key will be unique, see Appendix D.4. <lb/>If the Partial IV is not present in a response, the nonce from the <lb/>request is used. For responses that are not notifications (i.e., <lb/>when there is a single response to a request), the request and the <lb/>response should typically use the same nonce to reduce message <lb/>overhead. Both alternatives provide all the required security <lb/></body> + + <note place="footnote">Selander, et al. <lb/>Standards Track <lb/></note> + + <page>[Page 28] <lb/></page> + + <note place="headnote">RFC 8613 <lb/>OSCORE <lb/>July 2019 <lb/></note> + + <body>properties, see Section 7.4 and Appendix D.4. Another non-Observe <lb/>scenario where a Partial IV is included in a response is when the <lb/>server is unable to perform replay protection, see Appendix B.1.2. <lb/>For processing instructions see Section 8. <lb/><-nonce length minus 6 B -> <--5 bytes --> <lb/>+---+-------------------+--------+---------+-----+ <lb/>| S | <lb/>padding <lb/>| ID_PIV | padding | PIV |----+ <lb/>+---+-------------------+--------+---------+-----+ <lb/>| <lb/>| <lb/><----------------nonce length ----------------> <lb/>| <lb/>+------------------------------------------------+ <lb/>| <lb/>| <lb/>Common IV <lb/>|->(XOR) <lb/>+------------------------------------------------+ <lb/>| <lb/>| <lb/><----------------nonce length ----------------> <lb/>| <lb/>+------------------------------------------------+ <lb/>| <lb/>| <lb/>Nonce <lb/>|<---+ <lb/>+------------------------------------------------+ <lb/>Figure 8: AEAD Nonce Formation <lb/>5.3. Plaintext <lb/>The plaintext is formatted as a CoAP message with a subset of the <lb/>header (see Figure 9) consisting of: <lb/>o the Code of the original CoAP message as defined in Section 3 of <lb/>[RFC7252]; and <lb/>o all Inner option message fields (see Section 4.1.1) present in the <lb/>original CoAP message (see Section 4.1). The options are encoded <lb/>as described in Section 3.1 of [RFC7252], where the delta is the <lb/>difference from the previously included instance of Class E <lb/>option; and <lb/>o the Payload of original CoAP message, if present, and in that case <lb/>prefixed by the one-byte Payload Marker (0xff). <lb/>NOTE: The plaintext contains all CoAP data that needs to be encrypted <lb/>end-to-end between the endpoints. <lb/></body> + + <note place="footnote">Selander, et al. <lb/>Standards Track <lb/></note> + + <page>[Page 29] <lb/></page> + + <note place="headnote">RFC 8613 <lb/>OSCORE <lb/>July 2019 <lb/></note> + + <body>0 <lb/>1 <lb/>2 <lb/>3 <lb/>0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 <lb/>+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ <lb/>| <lb/>Code <lb/>| <lb/>Class E options (if any) ... <lb/>+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ <lb/>|1 1 1 1 1 1 1 1| <lb/>Payload (if any) ... <lb/>+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ <lb/>(only if there is payload) <lb/>Figure 9: Plaintext <lb/>5.4. Additional Authenticated Data <lb/>The external_aad SHALL be a CBOR array wrapped in a bstr object as <lb/>defined below, following the notation of [RFC8610] as summarized in <lb/>Appendix E: <lb/>external_aad = bstr .cbor aad_array <lb/>aad_array = [ <lb/>oscore_version : uint, <lb/>algorithms : [ alg_aead : int / tstr ], <lb/>request_kid : bstr, <lb/>request_piv : bstr, <lb/>options : bstr, <lb/>] <lb/>where: <lb/>o oscore_version: contains the OSCORE version number. <lb/>Implementations of this specification MUST set this field to 1. <lb/>Other values are reserved for future versions. <lb/>o algorithms: contains (for extensibility) an array of algorithms, <lb/>according to this specification only containing alg_aead. <lb/>o alg_aead: contains the AEAD Algorithm from the security context <lb/>used for the exchange (see Section 3.1). <lb/>o request_kid: contains the value of the 'kid' in the COSE object of <lb/>the request (see Section 5). <lb/>o request_piv: contains the value of the 'Partial IV' in the COSE <lb/>object of the request (see Section 5). <lb/></body> + + <note place="footnote">Selander, et al. <lb/>Standards Track <lb/></note> + + <page>[Page 30] <lb/></page> + + <note place="headnote">RFC 8613 <lb/>OSCORE <lb/>July 2019 <lb/></note> + + <body>o options: contains the Class I options (see Section 4.1.2) present <lb/>in the original CoAP message encoded as described in Section 3.1 <lb/>of [RFC7252], where the delta is the difference from the <lb/>previously included instance of class I option. <lb/>The oscore_version and algorithms parameters are established out-of-<lb/>band; thus, they are not transported in OSCORE, but the external_aad <lb/>allows to verify that they are the same in both endpoints. <lb/>NOTE: The format of the external_aad is, for simplicity, the same for <lb/>requests and responses, although some parameters, e.g., request_kid, <lb/>need not be integrity protected in all requests. <lb/>The AAD is composed from the external_aad as described in Section 5.3 <lb/>of [RFC8152] (the notation follows [RFC8610] as summarized in <lb/>Appendix E): <lb/>AAD = Enc_structure = [ "Encrypt0", h'', external_aad ] <lb/>The following is an example of AAD constructed using AEAD Algorithm = <lb/>AES-CCM-16-64-128 (10), request_kid = 0x00, request_piv = 0x25 and no <lb/>Class I options: <lb/>o oscore_version: 0x01 (1 byte) <lb/>o algorithms: 0x810a (2 bytes) <lb/>o request_kid: 0x00 (1 byte) <lb/>o request_piv: 0x25 (1 byte) <lb/>o options: 0x (0 bytes) <lb/>o aad_array: 0x8501810a4100412540 (9 bytes) <lb/>o external_aad: 0x498501810a4100412540 (10 bytes) <lb/>o AAD: 0x8368456e63727970743040498501810a4100412540 (21 bytes) <lb/>Note that the AAD consists of a fixed string of 11 bytes concatenated <lb/>with the external_aad. <lb/>6. OSCORE Header Compression <lb/>The Concise Binary Object Representation (CBOR) [RFC7049] combines <lb/>very small message sizes with extensibility. The CBOR Object Signing <lb/>and Encryption (COSE) [RFC8152] uses CBOR to create compact encoding <lb/>of signed and encrypted data. However, COSE is constructed to <lb/></body> + + <note place="footnote">Selander, et al. <lb/>Standards Track <lb/></note> + + <page>[Page 31] <lb/></page> + + <note place="headnote">RFC 8613 <lb/>OSCORE <lb/>July 2019 <lb/></note> + + <body>support a large number of different stateless use cases and is not <lb/>fully optimized for use as a stateful security protocol, leading to a <lb/>larger than necessary message expansion. In this section, we define <lb/>a stateless header compression mechanism, simply removing redundant <lb/>information from the COSE objects, which significantly reduces the <lb/>per-packet overhead. The result of applying this mechanism to a COSE <lb/>object is called the "compressed COSE object". <lb/>The COSE_Encrypt0 object used in OSCORE is transported in the OSCORE <lb/>option and in the Payload. The Payload contains the ciphertext of <lb/>the COSE object. The headers of the COSE object are compactly <lb/>encoded as described in the next section. <lb/>6.1. Encoding of the OSCORE Option Value <lb/>The value of the OSCORE option SHALL contain the OSCORE flag bits, <lb/>the 'Partial IV' parameter, the 'kid context' parameter (length and <lb/>value), and the 'kid' parameter as follows: <lb/>0 1 2 3 4 5 6 7 <-------------n bytes --------------> <lb/>+-+-+-+-+-+-+-+-+--------------------------------------<lb/>|0 0 0|h|k| n | <lb/>Partial IV (if any) ... <lb/>+-+-+-+-+-+-+-+-+--------------------------------------<lb/><-1 byte -> <-----s bytes ------> <lb/>+------------+----------------------+------------------+ <lb/>| s (if any) | kid context (if any) | kid (if any) ... | <lb/>+------------+----------------------+------------------+ <lb/>Figure 10: The OSCORE Option Value <lb/>o The first byte, containing the OSCORE flag bits, encodes the <lb/>following set of bits and the length of the 'Partial IV' <lb/>parameter: <lb/>* The three least significant bits encode the Partial IV length <lb/>n. If n = 0, then the Partial IV is not present in the <lb/>compressed COSE object. The values n = 6 and n = 7 are <lb/>reserved. <lb/>* The fourth least significant bit is the 'kid' flag, k. It is <lb/>set to 1 if 'kid' is present in the compressed COSE object. <lb/>* The fifth least significant bit is the 'kid context' flag, h. <lb/>It is set to 1 if the compressed COSE object contains a 'kid <lb/>context' (see Section 5.1). <lb/></body> + + <note place="footnote">Selander, et al. <lb/>Standards Track <lb/></note> + + <page>[Page 32] <lb/></page> + + <note place="headnote">RFC 8613 <lb/>OSCORE <lb/>July 2019 <lb/></note> + + <body>* The sixth-to-eighth least significant bits are reserved for <lb/>future use. These bits SHALL be set to zero when not in use. <lb/>According to this specification, if any of these bits are set <lb/>to 1, the message is considered to be malformed and <lb/>decompression fails as specified in item 2 of Section 8.2. <lb/>The flag bits are registered in the "OSCORE Flag Bits" registry <lb/>specified in Section 13.7. <lb/>o The following n bytes encode the value of the Partial IV, if the <lb/>Partial IV is present (n > 0). <lb/>o The following 1 byte encodes the length s of the 'kid context' <lb/>(Section 5.1), if the 'kid context' flag is set (h = 1). <lb/>o The following s bytes encode the 'kid context', if the 'kid <lb/>context' flag is set (h = 1). <lb/>o The remaining bytes encode the value of the 'kid', if the 'kid' is <lb/>present (k = 1). <lb/>Note that the 'kid' MUST be the last field of the OSCORE option <lb/>value, even in the case in which reserved bits are used and <lb/>additional fields are added to it. <lb/>The length of the OSCORE option thus depends on the presence and <lb/>length of Partial IV, 'kid context', 'kid', as specified in this <lb/>section, and on the presence and length of additional parameters, as <lb/>defined in the future documents registering those parameters. <lb/>6.2. Encoding of the OSCORE Payload <lb/>The payload of the OSCORE message SHALL encode the ciphertext of the <lb/>COSE object. <lb/>6.3. Examples of Compressed COSE Objects <lb/>This section covers a list of OSCORE Header Compression examples for <lb/>requests and responses. The examples assume the COSE_Encrypt0 object <lb/>is set (which means the CoAP message and cryptographic material is <lb/>known). Note that the full CoAP unprotected message, as well as the <lb/>full security context, is not reported in the examples, but only the <lb/>input necessary to the compression mechanism, i.e., the COSE_Encrypt0 <lb/>object. The output is the compressed COSE object as defined in <lb/>Section 6, divided into two parts, since the object is transported in <lb/>two CoAP fields: the OSCORE option and payload. <lb/></body> + + <note place="footnote">Selander, et al. <lb/>Standards Track <lb/></note> + + <page>[Page 33] <lb/></page> + + <note place="headnote">RFC 8613 <lb/>OSCORE <lb/>July 2019 <lb/></note> + + <body>1. Request with ciphertext = 0xaea0155667924dff8a24e4cb35b9, kid = <lb/>0x25, and Partial IV = 0x05 <lb/>Before compression (24 bytes): <lb/>[ <lb/>h'', <lb/>{ 4:h'25', 6:h'05' }, <lb/>h'aea0155667924dff8a24e4cb35b9', <lb/>] <lb/>After compression (17 bytes): <lb/>Flag byte: 0b00001001 = 0x09 (1 byte) <lb/>Option Value: 0x090525 (3 bytes) <lb/>Payload: 0xaea0155667924dff8a24e4cb35b9 (14 bytes) <lb/>2. Request with ciphertext = 0xaea0155667924dff8a24e4cb35b9, kid = <lb/>empty string, and Partial IV = 0x00 <lb/>Before compression (23 bytes): <lb/>[ <lb/>h'', <lb/>{ 4:h'', 6:h'00' }, <lb/>h'aea0155667924dff8a24e4cb35b9', <lb/>] <lb/>After compression (16 bytes): <lb/>Flag byte: 0b00001001 = 0x09 (1 byte) <lb/>Option Value: 0x0900 (2 bytes) <lb/>Payload: 0xaea0155667924dff8a24e4cb35b9 (14 bytes) <lb/>3. Request with ciphertext = 0xaea0155667924dff8a24e4cb35b9, kid = <lb/>empty string, Partial IV = 0x05, and kid context = 0x44616c656b <lb/>Before compression (30 bytes): <lb/>[ <lb/>h'', <lb/>{ 4:h'', 6:h'05', 10:h'44616c656b' }, <lb/>h'aea0155667924dff8a24e4cb35b9', <lb/>] <lb/></body> + + <note place="footnote">Selander, et al. <lb/>Standards Track <lb/></note> + + <page>[Page 34] <lb/></page> + + <note place="headnote">RFC 8613 <lb/>OSCORE <lb/>July 2019 <lb/></note> + + <body>After compression (22 bytes): <lb/>Flag byte: 0b00011001 = 0x19 (1 byte) <lb/>Option Value: 0x19050544616c656b (8 bytes) <lb/>Payload: 0xae a0155667924dff8a24e4cb35b9 (14 bytes) <lb/>4. Response with ciphertext = 0xaea0155667924dff8a24e4cb35b9 and no <lb/>Partial IV <lb/>Before compression (18 bytes): <lb/>[ <lb/>h'', <lb/>{}, <lb/>h'aea0155667924dff8a24e4cb35b9', <lb/>] <lb/>After compression (14 bytes): <lb/>Flag byte: 0b00000000 = 0x00 (1 byte) <lb/>Option Value: 0x (0 bytes) <lb/>Payload: 0xaea0155667924dff8a24e4cb35b9 (14 bytes) <lb/>5. Response with ciphertext = 0xaea0155667924dff8a24e4cb35b9 and <lb/>Partial IV = 0x07 <lb/>Before compression (21 bytes): <lb/>[ <lb/>h'', <lb/>{ 6:h'07' }, <lb/>h'aea0155667924dff8a24e4cb35b9', <lb/>] <lb/>After compression (16 bytes): <lb/>Flag byte: 0b00000001 = 0x01 (1 byte) <lb/>Option Value: 0x0107 (2 bytes) <lb/>Payload: 0xaea0155667924dff8a24e4cb35b9 (14 bytes) <lb/></body> + + <note place="footnote">Selander, et al. <lb/>Standards Track <lb/></note> + + <page>[Page 35] <lb/></page> + + <note place="headnote">RFC 8613 <lb/>OSCORE <lb/>July 2019 <lb/></note> + + <body>7. Message Binding, Sequence Numbers, Freshness, and Replay Protection <lb/>7.1. Message Binding <lb/>In order to prevent response delay and mismatch attacks <lb/>[CoAP-Actuators] from on-path attackers and compromised <lb/>intermediaries, OSCORE binds responses to the requests by including <lb/>the 'kid' and Partial IV of the request in the AAD of the response. <lb/>Therefore, the server needs to store the 'kid' and Partial IV of the <lb/>request until all responses have been sent. <lb/>7.2. Sequence Numbers <lb/>An AEAD nonce MUST NOT be used more than once per AEAD key. The <lb/>uniqueness of (key, nonce) pairs is shown in Appendix D.4, and in <lb/>particular depends on a correct usage of Partial IVs (which encode <lb/>the Sender Sequence Numbers, see Section 5). If messages are <lb/>processed concurrently, the operation of reading and increasing the <lb/>Sender Sequence Number MUST be atomic. <lb/>7.2.1. Maximum Sequence Number <lb/>The maximum Sender Sequence Number is algorithm dependent (see <lb/>Section 12) and SHALL be less than 2^40. If the Sender Sequence <lb/>Number exceeds the maximum, the endpoint MUST NOT process any more <lb/>messages with the given Sender Context. If necessary, the endpoint <lb/>SHOULD acquire a new security context before this happens. The <lb/>latter is out of scope of this document. <lb/>7.3. Freshness <lb/>For requests, OSCORE provides only the guarantee that the request is <lb/>not older than the security context. For applications having <lb/>stronger demands on request freshness (e.g., control of actuators), <lb/>OSCORE needs to be augmented with mechanisms providing freshness (for <lb/>example, as specified in [CoAP-ECHO-REQ-TAG]). <lb/>Assuming an honest server (see Appendix D), the message binding <lb/>guarantees that a response is not older than its request. For <lb/>responses that are not notifications (i.e., when there is a single <lb/>response to a request), this gives absolute freshness. For <lb/>notifications, the absolute freshness gets weaker with time, and it <lb/>is RECOMMENDED that the client regularly re-register the observation. <lb/>Note that the message binding does not guarantee that a misbehaving <lb/>server created the response before receiving the request, i.e., it <lb/>does not verify server aliveness. <lb/></body> + + <note place="footnote">Selander, et al. <lb/>Standards Track <lb/></note> + + <page>[Page 36] <lb/></page> + + <note place="headnote">RFC 8613 <lb/>OSCORE <lb/>July 2019 <lb/></note> + + <body>For requests and notifications, OSCORE also provides relative <lb/>freshness in the sense that the received Partial IV allows a <lb/>recipient to determine the relative order of requests or responses. <lb/>7.4. Replay Protection <lb/>In order to protect from replay of requests, the server's Recipient <lb/>Context includes a Replay Window. A server SHALL verify that the <lb/>Sender Sequence Number received in the 'Partial IV' parameter of the <lb/>COSE object (see Section 6.1) has not been received before. If this <lb/>verification fails, the server SHALL stop processing the message, and <lb/>it MAY optionally respond with a 4.01 (Unauthorized) error message. <lb/>Also, the server MAY set an Outer Max-Age option with value zero to <lb/>inform any intermediary that the response is not to be cached. The <lb/>diagnostic payload MAY contain the string "Replay detected". The <lb/>size and type of the Replay Window depends on the use case and the <lb/>protocol with which the OSCORE message is transported. In case of <lb/>reliable and ordered transport from endpoint to endpoint, e.g., TCP, <lb/>the server MAY just store the last received Partial IV and require <lb/>that newly received Partial IVs equal the last received Partial IV + <lb/>1. However, in the case of mixed reliable and unreliable transports <lb/>and where messages may be lost, such a replay mechanism may be too <lb/>restrictive and the default replay window may be more suitable (see <lb/>Section 3.2.2). <lb/>Responses (with or without Partial IV) are protected against replay <lb/>as they are bound to the request and the fact that only a single <lb/>response is accepted. In this case the Partial IV is not used for <lb/>replay protection of responses. <lb/>The operation of validating the Partial IV and updating the replay <lb/>protection MUST be atomic. <lb/>7.4.1. Replay Protection of Notifications <lb/>The following applies additionally when the Observe option is <lb/>supported. <lb/>The Notification Number (see Section 4.1.3.5.2) is initialized to the <lb/>Partial IV of the first successfully verified notification in <lb/>response to the registration request. A client MUST only accept at <lb/>most one Observe notification without Partial IV, and treat it as the <lb/>oldest notification received. A client receiving a notification <lb/>containing a Partial IV SHALL compare the Partial IV with the <lb/>Notification Number associated to that Observe registration. The <lb/>client MUST stop processing notifications with a Partial IV that has <lb/></body> + + <note place="footnote">Selander, et al. <lb/>Standards Track <lb/></note> + + <page>[Page 37] <lb/></page> + + <note place="headnote">RFC 8613 <lb/>OSCORE <lb/>July 2019 <lb/></note> + + <body>been previously received. Applications MAY decide that a client only <lb/>processes notifications that have a greater Partial IV than the <lb/>Notification Number. <lb/>If the verification of the response succeeds, and the received <lb/>Partial IV was greater than the Notification Number, then the client <lb/>SHALL overwrite the corresponding Notification Number with the <lb/>received Partial IV. <lb/>7.5. Losing Part of the Context State <lb/>To prevent reuse of an AEAD nonce with the same AEAD key or the <lb/>acceptance of replayed messages, an endpoint needs to handle the <lb/>situation of losing rapidly changing parts of the context, such as <lb/>the Sender Sequence Number and Replay Window. These are typically <lb/>stored in RAM and therefore lost in the case of, e.g., an unplanned <lb/>reboot. There are different alternatives to recover, for example: <lb/>1. The endpoints can reuse an existing Security Context after <lb/>updating the mutable parts of the security context (Sender <lb/>Sequence Number and Replay Window). This requires that the <lb/>mutable parts of the security context are available throughout <lb/>the lifetime of the device or that the device can establish a <lb/>fresh security context after loss of mutable security context <lb/>data. Examples are given based on careful use of nonvolatile <lb/>memory, see Appendix B.1.1 and the use of the Echo option, see <lb/>Appendix B.1.2. If an endpoint makes use of a partial security <lb/>context stored in nonvolatile memory, it MUST NOT reuse a <lb/>previous Sender Sequence Number and MUST NOT accept previously <lb/>received messages. <lb/>2. The endpoints can reuse an existing shared Master Secret and <lb/>derive new Sender and Recipient Contexts, see Appendix B.2 for an <lb/>example. This typically requires a good source of randomness. <lb/>3. The endpoints can use a trusted third-party-assisted key <lb/>establishment protocol such as [OSCORE-PROFILE]. This requires <lb/>the execution of a three-party protocol and may require a good <lb/>source of randomness. <lb/>4. The endpoints can run a key exchange protocol providing forward <lb/>secrecy resulting in a fresh Master Secret, from which an <lb/>entirely new Security Context is derived. This requires a good <lb/>source of randomness, and additionally, the transmission and <lb/>processing of the protocol may have a non-negligible cost, e.g., <lb/>in terms of power consumption. <lb/></body> + + <note place="footnote">Selander, et al. <lb/>Standards Track <lb/></note> + + <page>[Page 38] <lb/></page> + + <note place="headnote">RFC 8613 <lb/>OSCORE <lb/>July 2019 <lb/></note> + + <body>The endpoints need to be configured with information about which <lb/>method is used. The choice of method may depend on capabilities of <lb/>the devices deployed and the solution architecture. Using a key <lb/>exchange protocol is necessary for deployments that require forward <lb/>secrecy. <lb/>8. Processing <lb/>This section describes the OSCORE message processing. Additional <lb/>processing for Observe or Block-wise are described in subsections. <lb/>Note that, analogously to [RFC7252] where the Token and source/ <lb/>destination pair are used to match a response with a request, both <lb/>endpoints MUST keep the association (Token, {Security Context, <lb/>Partial IV of the request}), in order to be able to find the Security <lb/>Context and compute the AAD to protect or verify the response. The <lb/>association MAY be forgotten after it has been used to successfully <lb/>protect or verify the response, with the exception of Observe <lb/>processing, where the association MUST be kept as long as the <lb/>Observation is active. <lb/>The processing of the Sender Sequence Number follows the procedure <lb/>described in Section 3 of [IV-GEN]. <lb/>8.1. Protecting the Request <lb/>Given a CoAP request, the client SHALL perform the following steps to <lb/>create an OSCORE request: <lb/>1. Retrieve the Sender Context associated with the target resource. <lb/>2. Compose the AAD and the plaintext, as described in Sections 5.3 <lb/>and 5.4. <lb/>3. Encode the Partial IV (Sender Sequence Number in network byte <lb/>order) and increment the Sender Sequence Number by one. Compute <lb/>the AEAD nonce from the Sender ID, Common IV, and Partial IV as <lb/>described in Section 5.2. <lb/>4. Encrypt the COSE object using the Sender Key. Compress the COSE <lb/>object as specified in Section 6. <lb/>5. Format the OSCORE message according to Section 4. The OSCORE <lb/>option is added (see Section 4.1.2). <lb/></body> + + <note place="footnote">Selander, et al. <lb/>Standards Track <lb/></note> + + <page>[Page 39] <lb/></page> + + <note place="headnote">RFC 8613 <lb/>OSCORE <lb/>July 2019 <lb/></note> + + <body>8.2. Verifying the Request <lb/>A server receiving a request containing the OSCORE option SHALL <lb/>perform the following steps: <lb/>1. Discard Code and all Class E options (marked in Figure 5 with 'x' <lb/>in column E) present in the received message. For example, an <lb/>If-Match Outer option is discarded, but an Uri-Host Outer option <lb/>is not discarded. <lb/>2. Decompress the COSE object (Section 6) and retrieve the Recipient <lb/>Context associated with the Recipient ID in the 'kid' parameter, <lb/>additionally using the 'kid context', if present. Note that the <lb/>Recipient Context MAY be retrieved by deriving a new security <lb/>context, e.g. as described in Appendix B.2. If either the <lb/>decompression or the COSE message fails to decode, or the server <lb/>fails to retrieve a Recipient Context with Recipient ID <lb/>corresponding to the 'kid' parameter received, then the server <lb/>SHALL stop processing the request. <lb/>* If either the decompression or the COSE message fails to <lb/>decode, the server MAY respond with a 4.02 (Bad Option) error <lb/>message. The server MAY set an Outer Max-Age option with <lb/>value zero. The diagnostic payload MAY contain the string <lb/>"Failed to decode COSE". <lb/>* If the server fails to retrieve a Recipient Context with <lb/>Recipient ID corresponding to the 'kid' parameter received, <lb/>the server MAY respond with a 4.01 (Unauthorized) error <lb/>message. The server MAY set an Outer Max-Age option with <lb/>value zero. The diagnostic payload MAY contain the string <lb/>"Security context not found". <lb/>3. Verify that the Partial IV has not been received before using the <lb/>Replay Window, as described in Section 7.4. <lb/>4. Compose the AAD, as described in Section 5.4. <lb/>5. Compute the AEAD nonce from the Recipient ID, Common IV, and the <lb/>Partial IV, received in the COSE object. <lb/></body> + + <note place="footnote">Selander, et al. <lb/>Standards Track <lb/></note> + + <page>[Page 40] <lb/></page> + + <note place="headnote">RFC 8613 <lb/>OSCORE <lb/>July 2019 <lb/></note> + + <body>6. Decrypt the COSE object using the Recipient Key, as per <lb/>Section 5.3 of [RFC8152]. (The decrypt operation includes the <lb/>verification of the integrity.) <lb/>* If decryption fails, the server MUST stop processing the <lb/>request and MAY respond with a 4.00 (Bad Request) error <lb/>message. The server MAY set an Outer Max-Age option with <lb/>value zero. The diagnostic payload MAY contain the string <lb/>"Decryption failed". <lb/>* If decryption succeeds, update the Replay Window, as described <lb/>in Section 7. <lb/>7. Add decrypted Code, options, and payload to the decrypted <lb/>request. The OSCORE option is removed. <lb/>8. The decrypted CoAP request is processed according to [RFC7252]. <lb/>8.2.1. Supporting Block-wise <lb/>If Block-wise is supported, insert the following step before any <lb/>other: <lb/>A. If Block-wise is present in the request, then process the Outer <lb/>Block options according to [RFC7959], until all blocks of the request <lb/>have been received (see Section 4.1.3.4). <lb/>8.3. Protecting the Response <lb/>If a CoAP response is generated in response to an OSCORE request, the <lb/>server SHALL perform the following steps to create an OSCORE <lb/>response. Note that CoAP error responses derived from CoAP <lb/>processing (step 8 in Section 8.2) are protected, as well as <lb/>successful CoAP responses, while the OSCORE errors (steps 2, 3, and 6 <lb/>in Section 8.2) do not follow the processing below but are sent as <lb/>simple CoAP responses, without OSCORE processing. <lb/>1. Retrieve the Sender Context in the Security Context associated <lb/>with the Token. <lb/>2. Compose the AAD and the plaintext, as described in Sections 5.3 <lb/>and 5.4. <lb/>3. Compute the AEAD nonce as described in Section 5.2: <lb/>* Either use the AEAD nonce from the request, or <lb/></body> + + <note place="footnote">Selander, et al. <lb/>Standards Track <lb/></note> + + <page>[Page 41] <lb/></page> + + <note place="headnote">RFC 8613 <lb/>OSCORE <lb/>July 2019 <lb/></note> + + <body>* Encode the Partial IV (Sender Sequence Number in network byte <lb/>order) and increment the Sender Sequence Number by one. <lb/>Compute the AEAD nonce from the Sender ID, Common IV, and <lb/>Partial IV. <lb/>4. Encrypt the COSE object using the Sender Key. Compress the COSE <lb/>object as specified in Section 6. If the AEAD nonce was <lb/>constructed from a new Partial IV, this Partial IV MUST be <lb/>included in the message. If the AEAD nonce from the request was <lb/>used, the Partial IV MUST NOT be included in the message. <lb/>5. Format the OSCORE message according to Section 4. The OSCORE <lb/>option is added (see Section 4.1.2). <lb/>8.3.1. Supporting Observe <lb/>If Observe is supported, insert the following step between steps 2 <lb/>and 3 of Section 8.3: <lb/>A. If the response is an Observe notification: <lb/>o If the response is the first notification: <lb/>* compute the AEAD nonce as described in Section 5.2: <lb/>+ Either use the AEAD nonce from the request, or <lb/>+ Encode the Partial IV (Sender Sequence Number in network <lb/>byte order) and increment the Sender Sequence Number by one. <lb/>Compute the AEAD nonce from the Sender ID, Common IV, and <lb/>Partial IV. <lb/>Then, go to 4. <lb/>o If the response is not the first notification: <lb/>* encode the Partial IV (Sender Sequence Number in network byte <lb/>order) and increment the Sender Sequence Number by one. <lb/>Compute the AEAD nonce from the Sender ID, Common IV, and <lb/>Partial IV, then go to 4. <lb/></body> + + <note place="footnote">Selander, et al. <lb/>Standards Track <lb/></note> + + <page>[Page 42] <lb/></page> + + <note place="headnote">RFC 8613 <lb/>OSCORE <lb/>July 2019 <lb/></note> + + <body>8.4. Verifying the Response <lb/>A client receiving a response containing the OSCORE option SHALL <lb/>perform the following steps: <lb/>1. Discard Code and all Class E options (marked in Figure 5 with 'x' <lb/>in column E) present in the received message. For example, ETag <lb/>Outer option is discarded, as well as Max-Age Outer option. <lb/>2. Retrieve the Recipient Context in the Security Context associated <lb/>with the Token. Decompress the COSE object (Section 6). If <lb/>either the decompression or the COSE message fails to decode, <lb/>then go to 8. <lb/>3. Compose the AAD, as described in Section 5.4. <lb/>4. Compute the AEAD nonce <lb/>* If the Partial IV is not present in the response, the AEAD <lb/>nonce from the request is used. <lb/>* If the Partial IV is present in the response, compute the AEAD <lb/>nonce from the Recipient ID, Common IV, and the Partial IV, <lb/>received in the COSE object. <lb/>5. Decrypt the COSE object using the Recipient Key, as per <lb/>Section 5.3 of [RFC8152]. (The decrypt operation includes the <lb/>verification of the integrity.) If decryption fails, then go to <lb/>8. <lb/>6. Add decrypted Code, options and payload to the decrypted request. <lb/>The OSCORE option is removed. <lb/>7. The decrypted CoAP response is processed according to [RFC7252]. <lb/>8. In case any of the previous erroneous conditions apply: the <lb/>client SHALL stop processing the response. <lb/>8.4.1. Supporting Block-wise <lb/>If Block-wise is supported, insert the following step before any <lb/>other: <lb/>A. If Block-wise is present in the response, then process the Outer <lb/>Block options according to [RFC7959], until all blocks of the <lb/>response have been received (see Section 4.1.3.4). <lb/></body> + + <note place="footnote">Selander, et al. <lb/>Standards Track <lb/></note> + + <page>[Page 43] <lb/></page> + + <note place="headnote">RFC 8613 <lb/>OSCORE <lb/>July 2019 <lb/></note> + + <body>8.4.2. Supporting Observe <lb/>If Observe is supported: <lb/>Insert the following step between step 5 and step 6: <lb/>A. If the request was an Observe registration, then: <lb/>o If the Partial IV is not present in the response, and the Inner <lb/>Observe option is present, and the AEAD nonce from the request was <lb/>already used once, then go to 8. <lb/>o If the Partial IV is present in the response and the Inner Observe <lb/>option is present, then follow the processing described in <lb/>Section 4.1.3.5.2 and Section 7.4.1, then: <lb/>* initialize the Notification Number (if first successfully <lb/>verified notification), or <lb/>* overwrite the Notification Number (if the received Partial IV <lb/>was greater than the Notification Number). <lb/>Replace step 8 of Section 8.4 with: <lb/>B. In case any of the previous erroneous conditions apply: the <lb/>client SHALL stop processing the response. An error condition <lb/>occurring while processing a response to an observation request does <lb/>not cancel the observation. A client MUST NOT react to failure by <lb/>re-registering the observation immediately. <lb/>9. Web Linking <lb/>The use of OSCORE MAY be indicated by a target "osc" attribute in a <lb/>web link [RFC8288] to a resource, e.g., using a link-format document <lb/>[RFC6690] if the resource is accessible over CoAP. <lb/>The "osc" attribute is a hint indicating that the destination of that <lb/>link is only accessible using OSCORE, and unprotected access to it is <lb/>not supported. Note that this is simply a hint, it does not include <lb/>any security context material or any other information required to <lb/>run OSCORE. <lb/>A value MUST NOT be given for the "osc" attribute; any present value <lb/>MUST be ignored by parsers. The "osc" attribute MUST NOT appear more <lb/>than once in a given link-value; occurrences after the first MUST be <lb/>ignored by parsers. <lb/></body> + + <note place="footnote">Selander, et al. <lb/>Standards Track <lb/></note> + + <page>[Page 44] <lb/></page> + + <note place="headnote">RFC 8613 <lb/>OSCORE <lb/>July 2019 <lb/></note> + + <body>The example in Figure 11 shows a use of the "osc" attribute: the <lb/>client does resource discovery on a server and gets back a list of <lb/>resources, one of which includes the "osc" attribute indicating that <lb/>the resource is protected with OSCORE. The link-format notation (see <lb/>Section 5 of [RFC6690]) is used. <lb/>REQ: GET /.well-known/core <lb/>RES: 2.05 Content <lb/></sensors/temp>;osc, <lb/></sensors/light>;if="sensor" <lb/>Figure 11: The Web Link <lb/>10. CoAP-to-CoAP Forwarding Proxy <lb/>CoAP is designed for proxy operations (see Section 5.7 of [RFC7252]). <lb/>OSCORE is designed to work with OSCORE-unaware CoAP proxies. <lb/>Security requirements for forwarding are listed in Section 2.2.1 of <lb/>[CoAP-E2E-Sec]. Proxy processing of the (Outer) Proxy-Uri option <lb/>works as defined in [RFC7252]. Proxy processing of the (Outer) Block <lb/>options works as defined in [RFC7959]. <lb/>However, not all CoAP proxy operations are useful: <lb/>o Since a CoAP response is only applicable to the original CoAP <lb/>request, caching is in general not useful. In support of existing <lb/>proxies, OSCORE uses the Outer Max-Age option, see <lb/>Section 4.1.3.1. <lb/>o Proxy processing of the (Outer) Observe option as defined in <lb/>[RFC7641] is specified in Section 4.1.3.5. <lb/>Optionally, a CoAP proxy MAY detect OSCORE and act accordingly. An <lb/>OSCORE-aware CoAP proxy: <lb/>o SHALL bypass caching for the request if the OSCORE option is <lb/>present. <lb/>o SHOULD avoid caching responses to requests with an OSCORE option. <lb/>In the case of Observe (see Section 4.1.3.5), the OSCORE-aware CoAP <lb/>proxy: <lb/>o SHALL NOT initiate an Observe registration. <lb/></body> + + <note place="footnote">Selander, et al. <lb/>Standards Track <lb/></note> + + <page>[Page 45] <lb/></page> + + <note place="headnote">RFC 8613 <lb/>OSCORE <lb/>July 2019 <lb/></note> + + <body>o MAY verify the order of notifications using Partial IV rather than <lb/>the Observe option. <lb/>11. HTTP Operations <lb/>The CoAP request/response model may be mapped to HTTP and vice versa <lb/>as described in Section 10 of [RFC7252]. The HTTP-CoAP mapping is <lb/>further detailed in [RFC8075]. This section defines the components <lb/>needed to map and transport OSCORE messages over HTTP hops. By <lb/>mapping between HTTP and CoAP and by using cross-protocol proxies, <lb/>OSCORE may be used end-to-end between, e.g., an HTTP client and a <lb/>CoAP server. Examples are provided in Sections 11.5 and 11.6. <lb/>11.1. The HTTP OSCORE Header Field <lb/>The HTTP OSCORE header field (see Section 13.4) is used for carrying <lb/>the content of the CoAP OSCORE option when transporting OSCORE <lb/>messages over HTTP hops. <lb/>The HTTP OSCORE header field is only used in POST requests and <lb/>responses with HTTP Status Code 200 (OK). When used, the HTTP header <lb/>field Content-Type is set to 'application/oscore' (see Section 13.5) <lb/>indicating that the HTTP body of this message contains the OSCORE <lb/>payload (see Section 6.2). No additional semantics are provided by <lb/>other message fields. <lb/>Using the Augmented Backus-Naur Form (ABNF) notation of [RFC5234], <lb/>including the following core ABNF syntax rules defined by that <lb/>specification: ALPHA (letters) and DIGIT (decimal digits), the HTTP <lb/>OSCORE header field value is as follows. <lb/>base64url-char = ALPHA / DIGIT / "-" / "_" <lb/>OSCORE = 2*base64url-char <lb/>The HTTP OSCORE header field is not appropriate to list in the <lb/>Connection header field (see Section 6.1 of [RFC7230]) since it is <lb/>not hop-by-hop. OSCORE messages are generally not useful when served <lb/>from cache (i.e., they will generally be marked Cache-Control: no-<lb/>cache) and so interaction with Vary is not relevant (Section 7.1.4 of <lb/>[RFC7231]). Since the HTTP OSCORE header field is critical for <lb/>message processing, moving it from headers to trailers renders the <lb/>message unusable in case trailers are ignored (see Section 4.1 of <lb/>[RFC7230]). <lb/></body> + + <note place="footnote">Selander, et al. <lb/>Standards Track <lb/></note> + + <page>[Page 46] <lb/></page> + + <note place="headnote">RFC 8613 <lb/>OSCORE <lb/>July 2019 <lb/></note> + + <body>In general, intermediaries are not allowed to insert, delete, or <lb/>modify the OSCORE header. In general, changes to the HTTP OSCORE <lb/>header field will violate the integrity of the OSCORE message <lb/>resulting in an error. For the same reason the HTTP OSCORE header <lb/>field is generally not preserved across redirects. <lb/>Since redirects are not defined in the mappings between HTTP and CoAP <lb/>([RFC8075] [RFC7252]), a number of conditions need to be fulfilled <lb/>for redirects to work. For CoAP-client-to-HTTP-server redirects, <lb/>such conditions include: <lb/>o the CoAP-to-HTTP proxy follows the redirect, instead of the CoAP <lb/>client as in the HTTP case. <lb/>o the CoAP-to-HTTP proxy copies the HTTP OSCORE header field and <lb/>body to the new request. <lb/>o the target of the redirect has the necessary OSCORE security <lb/>context required to decrypt and verify the message. <lb/>Since OSCORE requires the HTTP body to be preserved across redirects, <lb/>the HTTP server is RECOMMENDED to reply with 307 (Temporary Redirect) <lb/>or 308 (Permanent Redirect) instead of 301 (Moved Permanently) or 302 <lb/>(Found). <lb/>For the case of HTTP-client-to-CoAP-server redirects, although <lb/>redirect is not defined for CoAP servers [RFC7252], an HTTP client <lb/>receiving a redirect should generate a new OSCORE request for the <lb/>server it was redirected to. <lb/>11.2. CoAP-to-HTTP Mapping <lb/>Section 10.1 of [RFC7252] describes the fundamentals of the CoAP-to-<lb/>HTTP cross-protocol mapping process. The additional rules for OSCORE <lb/>messages are as follows: <lb/>o The HTTP OSCORE header field value is set to: <lb/>* AA if the CoAP OSCORE option is empty; otherwise, <lb/>* the value of the CoAP OSCORE option (Section 6.1) in base64url <lb/>(Section 5 of [RFC4648]) encoding without padding. <lb/>Implementation notes for this encoding are given in Appendix C <lb/>of [RFC7515]. <lb/>o The HTTP Content-Type is set to 'application/oscore' (see <lb/>Section 13.5), independent of CoAP Content-Format. <lb/></body> + + <note place="footnote">Selander, et al. <lb/>Standards Track <lb/></note> + + <page>[Page 47] <lb/></page> + + <note place="headnote">RFC 8613 <lb/>OSCORE <lb/>July 2019 <lb/></note> + + <body>11.3. HTTP-to-CoAP Mapping <lb/>Section 10.2 of [RFC7252] and [RFC8075] specify the behavior of an <lb/>HTTP-to-CoAP proxy. The additional rules for HTTP messages with the <lb/>OSCORE header field are as follows. <lb/>o The CoAP OSCORE option is set as follows: <lb/>* empty if the value of the HTTP OSCORE header field is a single <lb/>zero byte (0x00) represented by AA; otherwise, <lb/>* the value of the HTTP OSCORE header field decoded from <lb/>base64url (Section 5 of [RFC4648]) without padding. <lb/>Implementation notes for this encoding are given in Appendix C <lb/>of [RFC7515]. <lb/>o The CoAP Content-Format option is omitted, the content format for <lb/>OSCORE (Section 13.6) MUST NOT be used. <lb/>11.4. HTTP Endpoints <lb/>Restricted to subsets of HTTP and CoAP supporting a bijective <lb/>mapping, OSCORE can be originated or terminated in HTTP endpoints. <lb/>The sending HTTP endpoint uses [RFC8075] to translate the HTTP <lb/>message into a CoAP message. The CoAP message is then processed with <lb/>OSCORE as defined in this document. The OSCORE message is then <lb/>mapped to HTTP as described in Section 11.2 and sent in compliance <lb/>with the rules in Section 11.1. <lb/>The receiving HTTP endpoint maps the HTTP message to a CoAP message <lb/>using [RFC8075] and Section 11.3. The resulting OSCORE message is <lb/>processed as defined in this document. If successful, the plaintext <lb/>CoAP message is translated to HTTP for normal processing in the <lb/>endpoint. <lb/>11.5. Example: HTTP Client and CoAP Server <lb/>This section gives an example of what a request and a response <lb/>between an HTTP client and a CoAP server could look like. The <lb/>example is not a test vector but intended as an illustration of how <lb/>the message fields are translated in the different steps. <lb/>Mapping and notation here is based on "Simple Form" (Section 5.4.1 of <lb/>[RFC8075]). <lb/></body> + + <note place="footnote">Selander, et al. <lb/>Standards Track <lb/></note> + + <page>[Page 48] <lb/></page> + + <note place="headnote">RFC 8613 <lb/>OSCORE <lb/>July 2019 <lb/></note> + + <body>[HTTP request --Before client object security processing] <lb/>GET http://proxy.url/hc/?target_uri=coap://server.url/orders <lb/>HTTP/1.1 <lb/>[HTTP request --HTTP Client to Proxy] <lb/>POST http://proxy.url/hc/?target_uri=coap://server.url/ HTTP/1.1 <lb/>Content-Type: application/oscore <lb/>OSCORE: CSU <lb/>Body: 09 07 01 13 61 f7 0f d2 97 b1 [binary] <lb/>[CoAP request --Proxy to CoAP Server] <lb/>POST coap://server.url/ <lb/>OSCORE: 09 25 <lb/>Payload: 09 07 01 13 61 f7 0f d2 97 b1 [binary] <lb/>[CoAP request --After server object security processing] <lb/>GET coap://server.url/orders <lb/>[CoAP response --Before server object security processing] <lb/>2.05 Content <lb/>Content-Format: 0 <lb/>Payload: Exterminate! Exterminate! <lb/>[CoAP response --CoAP Server to Proxy] <lb/>2.04 Changed <lb/>OSCORE: [empty] <lb/>Payload: 00 31 d1 fc f6 70 fb 0c 1d d5 ... [binary] <lb/>[HTTP response --Proxy to HTTP Client] <lb/>HTTP/1.1 200 OK <lb/>Content-Type: application/oscore <lb/>OSCORE: AA <lb/>Body: 00 31 d1 fc f6 70 fb 0c 1d d5 ... [binary] <lb/>[HTTP response --After client object security processing] <lb/>HTTP/1.1 200 OK <lb/>Content-Type: text/plain <lb/>Body: Exterminate! Exterminate! <lb/></body> + + <note place="footnote">Selander, et al. <lb/>Standards Track <lb/></note> + + <page>[Page 49] <lb/></page> + + <note place="headnote">RFC 8613 <lb/>OSCORE <lb/>July 2019 <lb/></note> + + <body>Note that the HTTP Status Code 200 (OK) in the next-to-last message <lb/>is the mapping of CoAP Code 2.04 (Changed), whereas the HTTP Status <lb/>Code 200 (OK) in the last message is the mapping of the CoAP Code <lb/>2.05 (Content), which was encrypted within the compressed COSE object <lb/>carried in the Body of the HTTP response. <lb/>11.6. Example: CoAP Client and HTTP Server <lb/>This section gives an example of what a request and a response <lb/>between a CoAP client and an HTTP server could look like. The <lb/>example is not a test vector but intended as an illustration of how <lb/>the message fields are translated in the different steps. <lb/>[CoAP request --Before client object security processing] <lb/>GET coap://proxy.url/ <lb/>Proxy-Uri=http://server.url/orders <lb/>[CoAP request --CoAP Client to Proxy] <lb/>POST coap://proxy.url/ <lb/>Proxy-Uri=http://server.url/ <lb/>OSCORE: 09 25 <lb/>Payload: 09 07 01 13 61 f7 0f d2 97 b1 [binary] <lb/>[HTTP request --Proxy to HTTP Server] <lb/>POST http://server.url/ HTTP/1.1 <lb/>Content-Type: application/oscore <lb/>OSCORE: CSU <lb/>Body: 09 07 01 13 61 f7 0f d2 97 b1 [binary] <lb/>[HTTP request --After server object security processing] <lb/>GET http://server.url/orders HTTP/1.1 <lb/>[HTTP response --Before server object security processing] <lb/>HTTP/1.1 200 OK <lb/>Content-Type: text/plain <lb/>Body: Exterminate! Exterminate! <lb/>[HTTP response --HTTP Server to Proxy] <lb/>HTTP/1.1 200 OK <lb/>Content-Type: application/oscore <lb/>OSCORE: AA <lb/>Body: 00 31 d1 fc f6 70 fb 0c 1d d5 ... [binary] <lb/></body> + + <note place="footnote">Selander, et al. <lb/>Standards Track <lb/></note> + + <page>[Page 50] <lb/></page> + + <note place="headnote">RFC 8613 <lb/>OSCORE <lb/>July 2019 <lb/></note> + + <body>[CoAP response --Proxy to CoAP Client] <lb/>2.04 Changed <lb/>OSCORE: [empty] <lb/>Payload: 00 31 d1 fc f6 70 fb 0c 1d d5 ... [binary] <lb/>[CoAP response --After client object security processing] <lb/>2.05 Content <lb/>Content-Format: 0 <lb/>Payload: Exterminate! Exterminate! <lb/>Note that the HTTP Code 2.04 (Changed) in the next-to-last message is <lb/>the mapping of HTTP Status Code 200 (OK), whereas the CoAP Code 2.05 <lb/>(Content) in the last message is the value that was encrypted within <lb/>the compressed COSE object carried in the Body of the HTTP response. <lb/>12. Security Considerations <lb/>An overview of the security properties is given in Appendix D. <lb/>12.1. End-to-end Protection <lb/>In scenarios with intermediary nodes such as proxies or gateways, <lb/>transport layer security such as (D)TLS only protects data hop-by-<lb/>hop. As a consequence, the intermediary nodes can read and modify <lb/>any information. The trust model where all intermediary nodes are <lb/>considered trustworthy is problematic, not only from a privacy <lb/>perspective, but also from a security perspective, as the <lb/>intermediaries are free to delete resources on sensors and falsify <lb/>commands to actuators (such as "unlock door", "start fire alarm", <lb/>"raise bridge"). Even in the rare cases where all the owners of the <lb/>intermediary nodes are fully trusted, attacks and data breaches make <lb/>such an architecture brittle. <lb/>(D)TLS protects hop-by-hop the entire message. OSCORE protects end-<lb/>to-end all information that is not required for proxy operations (see <lb/>Section 4). (D)TLS and OSCORE can be combined, thereby enabling end-<lb/>to-end security of the message payload, in combination with hop-by-<lb/>hop protection of the entire message, during transport between <lb/>endpoint and intermediary node. In particular, when OSCORE is used <lb/>with HTTP, the additional TLS protection of HTTP hops is RECOMMENDED, <lb/>e.g., between an HTTP endpoint and a proxy translating between HTTP <lb/>and CoAP. <lb/></body> + + <note place="footnote">Selander, et al. <lb/>Standards Track <lb/></note> + + <page>[Page 51] <lb/></page> + + <note place="headnote">RFC 8613 <lb/>OSCORE <lb/>July 2019 <lb/></note> + + <body>Applications need to consider that certain message fields and <lb/>messages types are not protected end-to-end and may be spoofed or <lb/>manipulated. The consequences of unprotected message fields are <lb/>analyzed in Appendix D.5. <lb/>12.2. Security Context Establishment <lb/>The use of COSE_Encrypt0 and AEAD to protect messages as specified in <lb/>this document requires an established security context. The method <lb/>to establish the security context described in Section 3.2 is based <lb/>on a common Master Secret and unique Sender IDs. The necessary input <lb/>parameters may be preestablished or obtained using a key <lb/>establishment protocol augmented with establishment of Sender/ <lb/>Recipient ID, such as a key exchange protocol or the OSCORE profile <lb/>of the Authentication and Authorization for Constrained Environments <lb/>(ACE) framework [OSCORE-PROFILE]. Such a procedure must ensure that <lb/>the requirements of the security context parameters for the intended <lb/>use are complied with (see Section 3.3) even in error situations. <lb/>While recipient IDs are allowed to coincide between different <lb/>security contexts (see Section 3.3), this may cause a server to <lb/>process multiple verifications before finding the right security <lb/>context or rejecting a message. Considerations for deploying OSCORE <lb/>with a fixed Master Secret are given in Appendix B. <lb/>12.3. Master Secret <lb/>OSCORE uses HKDF [RFC5869] and the established input parameters to <lb/>derive the security context. The required properties of the security <lb/>context parameters are discussed in Section 3.3; in this section, we <lb/>focus on the Master Secret. In this specification, HKDF denotes the <lb/>composition of the expand and extract functions as defined in <lb/>[RFC5869] and the Master Secret is used as Input Keying Material <lb/>(IKM). <lb/>Informally, HKDF takes as source an IKM containing some good amount <lb/>of randomness but not necessarily distributed uniformly (or for which <lb/>an attacker has some partial knowledge) and derive from it one or <lb/>more cryptographically strong secret keys [RFC5869]. <lb/>Therefore, the main requirement for the OSCORE Master Secret, in <lb/>addition to being secret, is that it have a good amount of <lb/>randomness. The selected key establishment schemes must ensure that <lb/>the necessary properties for the Master Secret are fulfilled. For <lb/>pre-shared key deployments and key transport solutions such as <lb/>[OSCORE-PROFILE], the Master Secret can be generated offline using a <lb/>good random number generator. Randomness requirements for security <lb/>are described in [RFC4086]. <lb/></body> + + <note place="footnote">Selander, et al. <lb/>Standards Track <lb/></note> + + <page>[Page 52] <lb/></page> + + <note place="headnote">RFC 8613 <lb/>OSCORE <lb/>July 2019 <lb/></note> + + <body>12.4. Replay Protection <lb/>Replay attacks need to be considered in different parts of the <lb/>implementation. Most AEAD algorithms require a unique nonce for each <lb/>message, for which the Sender Sequence Numbers in the COSE message <lb/>field 'Partial IV' is used. If the recipient accepts any sequence <lb/>number larger than the one previously received, then the problem of <lb/>sequence number synchronization is avoided. With reliable transport, <lb/>it may be defined that only messages with sequence numbers that are <lb/>equal to the previous sequence number + 1 are accepted. An adversary <lb/>may try to induce a device reboot for the purpose of replaying a <lb/>message (see Section 7.5). <lb/>Note that sharing a security context between servers may open up for <lb/>replay attacks, for example, if the Replay Windows are not <lb/>synchronized. <lb/>12.5. Client Aliveness <lb/>A verified OSCORE request enables the server to verify the identity <lb/>of the entity who generated the message. However, it does not verify <lb/>that the client is currently involved in the communication, since the <lb/>message may be a delayed delivery of a previously generated request, <lb/>which now reaches the server. To verify the aliveness of the client <lb/>the server may use the Echo option in the response to a request from <lb/>the client (see [CoAP-ECHO-REQ-TAG]). <lb/>12.6. Cryptographic Considerations <lb/>The maximum Sender Sequence Number is dependent on the AEAD <lb/>algorithm. The maximum Sender Sequence Number is 2^40 -1, or any <lb/>algorithm-specific lower limit, after which a new security context <lb/>must be generated. The mechanism to build the AEAD nonce <lb/>(Section 5.2) assumes that the nonce is at least 56 bits, and the <lb/>Partial IV is at most 40 bits. The mandatory-to-implement AEAD <lb/>algorithm AES-CCM-16-64-128 is selected for compatibility with CCM*. <lb/>AEAD algorithms that require unpredictable nonces are not supported. <lb/>In order to prevent cryptanalysis when the same plaintext is <lb/>repeatedly encrypted by many different users with distinct AEAD keys, <lb/>the AEAD nonce is formed by mixing the sequence number with a secret <lb/>per-context initialization vector (Common IV) derived along with the <lb/>keys (see Section 3.1 of [RFC8152]), and by using a Master Salt in <lb/>the key derivation (see [MF00] for an overview). The Master Secret, <lb/>Sender Key, Recipient Key, and Common IV must be secret, the rest of <lb/>the parameters may be public. The Master Secret must have a good <lb/>amount of randomness (see Section 12.3). <lb/></body> + + <note place="footnote">Selander, et al. <lb/>Standards Track <lb/></note> + + <page>[Page 53] <lb/></page> + + <note place="headnote">RFC 8613 <lb/>OSCORE <lb/>July 2019 <lb/></note> + + <body>The ID Context, Sender ID, and Partial IV are always at least <lb/>implicitly integrity protected, as manipulation leads to the wrong <lb/>nonce or key being used and therefore results in decryption failure. <lb/>12.7. Message Segmentation <lb/>The Inner Block options enable the sender to split large messages <lb/>into OSCORE-protected blocks such that the receiving endpoint can <lb/>verify blocks before having received the complete message. The Outer <lb/>Block options allow for arbitrary proxy fragmentation operations that <lb/>cannot be verified by the endpoints but that can, by policy, be <lb/>restricted in size since the Inner Block options allow for secure <lb/>fragmentation of very large messages. A maximum message size (above <lb/>which the sending endpoint fragments the message and the receiving <lb/>endpoint discards the message, if complying to the policy) may be <lb/>obtained as part of normal resource discovery. <lb/>12.8. Privacy Considerations <lb/>Privacy threats executed through intermediary nodes are considerably <lb/>reduced by means of OSCORE. End-to-end integrity protection and <lb/>encryption of the message payload and all options that are not used <lb/>for proxy operations provide mitigation against attacks on sensor and <lb/>actuator communication, which may have a direct impact on the <lb/>personal sphere. <lb/>The unprotected options (Figure 5) may reveal privacy-sensitive <lb/>information, see Appendix D.5. CoAP headers sent in plaintext allow, <lb/>for example, matching of CON and ACK (CoAP Message Identifier), <lb/>matching of request and responses (Token) and traffic analysis. <lb/>OSCORE does not provide protection for HTTP header fields that are <lb/>not both CoAP-mappable and Class E. The HTTP message fields that are <lb/>visible to on-path entities are only used for the purpose of <lb/>transporting the OSCORE message, whereas the application-layer <lb/>message is encoded in CoAP and encrypted. <lb/>COSE message fields, i.e., the OSCORE option, may reveal information <lb/>about the communicating endpoints. For example, 'kid' and 'kid <lb/>context', which are intended to help the server find the right <lb/>context, may reveal information about the client. Tracking 'kid' and <lb/>'kid context' to one server may be used for correlating requests from <lb/>one client. <lb/>Unprotected error messages reveal information about the security <lb/>state in the communication between the endpoints. Unprotected <lb/>signaling messages reveal information about the reliable transport <lb/></body> + + <note place="footnote">Selander, et al. <lb/>Standards Track <lb/></note> + + <page>[Page 54] <lb/></page> + + <note place="headnote">RFC 8613 <lb/>OSCORE <lb/>July 2019 <lb/></note> + + <body>used on a leg of the path. Using the mechanisms described in <lb/>Section 7.5 may reveal when a device goes through a reboot. This can <lb/>be mitigated by the device storing the precise state of Sender <lb/>Sequence Number and Replay Window on a clean shutdown. <lb/>The length of message fields can reveal information about the <lb/>message. Applications may use a padding scheme to protect against <lb/>traffic analysis. <lb/>13. IANA Considerations <lb/>13.1. COSE Header Parameters Registry <lb/>The 'kid context' parameter has been added to the "COSE Header <lb/>Parameters" registry: <lb/>o Name: kid context <lb/>o Label: 10 <lb/>o Value Type: bstr <lb/>o Value Registry: <lb/>o Description: Identifies the context for the key identifier <lb/>o Reference: Section 5.1 of this document <lb/>13.2. CoAP Option Numbers Registry <lb/>The OSCORE option has been added to the "CoAP Option Numbers" <lb/>registry: <lb/>+--------+-----------------+-------------------+ <lb/>| Number | Name <lb/>| Reference <lb/>| <lb/>+--------+-----------------+-------------------+ <lb/>| <lb/>9 | OSCORE <lb/>| [RFC8613] <lb/>| <lb/>+--------+-----------------+-------------------+ <lb/></body> + + <note place="footnote">Selander, et al. <lb/>Standards Track <lb/></note> + + <page>[Page 55] <lb/></page> + + <note place="headnote">RFC 8613 <lb/>OSCORE <lb/>July 2019 <lb/></note> + + <body>Furthermore, the following existing entries in the "CoAP Option <lb/>Numbers" registry have been updated with a reference to the document <lb/>specifying OSCORE processing of that option: <lb/>+--------+-----------------+-------------------------------+ <lb/>| Number | Name <lb/>| <lb/>Reference <lb/>| <lb/>+--------+-----------------+-------------------------------+ <lb/>| <lb/>1 <lb/>| If-Match <lb/>| [RFC7252] [RFC8613] <lb/>| <lb/>| <lb/>3 <lb/>| Uri-Host <lb/>| [RFC7252] [RFC8613] <lb/>| <lb/>| <lb/>4 <lb/>| ETag <lb/>| [RFC7252] [RFC8613] <lb/>| <lb/>| <lb/>5 <lb/>| If-None-Match <lb/>| [RFC7252] [RFC8613] <lb/>| <lb/>| <lb/>6 <lb/>| Observe <lb/>| [RFC7641] [RFC8613] <lb/>| <lb/>| <lb/>7 <lb/>| Uri-Port <lb/>| [RFC7252] [RFC8613] <lb/>| <lb/>| <lb/>8 <lb/>| Location-Path <lb/>| [RFC7252] [RFC8613] <lb/>| <lb/>| 11 <lb/>| Uri-Path <lb/>| [RFC7252] [RFC8613] <lb/>| <lb/>| 12 <lb/>| Content-Format | [RFC7252] [RFC8613] <lb/>| <lb/>| 14 <lb/>| Max-Age <lb/>| [RFC7252] [RFC8613] <lb/>| <lb/>| 15 <lb/>| Uri-Query <lb/>| [RFC7252] [RFC8613] <lb/>| <lb/>| 17 <lb/>| Accept <lb/>| [RFC7252] [RFC8613] <lb/>| <lb/>| 20 <lb/>| Location-Query | [RFC7252] [RFC8613] <lb/>| <lb/>| 23 <lb/>| Block2 <lb/>| [RFC7959] [RFC8323] [RFC8613] | <lb/>| 27 <lb/>| Block1 <lb/>| [RFC7959] [RFC8323] [RFC8613] | <lb/>| 28 <lb/>| Size2 <lb/>| [RFC7959] [RFC8613] <lb/>| <lb/>| 35 <lb/>| Proxy-Uri <lb/>| [RFC7252] [RFC8613] <lb/>| <lb/>| 39 <lb/>| Proxy-Scheme <lb/>| [RFC7252] [RFC8613] <lb/>| <lb/>| 60 <lb/>| Size1 <lb/>| [RFC7252] [RFC8613] <lb/>| <lb/>| 258 <lb/>| No-Response <lb/>| [RFC7967] [RFC8613] <lb/>| <lb/>+--------+-----------------+-------------------------------+ <lb/>Future additions to the "CoAP Option Numbers" registry need to <lb/>provide a reference to the document where the OSCORE processing of <lb/>that CoAP Option is defined. <lb/>13.3. CoAP Signaling Option Numbers Registry <lb/>The OSCORE option has been added to the "CoAP Signaling Option <lb/>Numbers" registry: <lb/>+------------+--------+---------------------+-------------------+ <lb/>| Applies to | Number | Name <lb/>| Reference <lb/>| <lb/>+------------+--------+---------------------+-------------------+ <lb/>| 7.xx (all) | <lb/>9 | OSCORE <lb/>| [RFC8613] <lb/>| <lb/>+------------+--------+---------------------+-------------------+ <lb/></body> + + <note place="footnote">Selander, et al. <lb/>Standards Track <lb/></note> + + <page>[Page 56] <lb/></page> + + <note place="headnote">RFC 8613 <lb/>OSCORE <lb/>July 2019 <lb/></note> + + <body>13.4. Header Field Registrations <lb/>The HTTP OSCORE header field has been added to the "Message Headers" <lb/>registry: <lb/>+-------------------+----------+----------+---------------------+ <lb/>| Header Field Name | Protocol | Status <lb/>| Reference <lb/>| <lb/>+-------------------+----------+----------+---------------------+ <lb/>| OSCORE <lb/>| http <lb/>| standard | [RFC8613], <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| Section 11.1 <lb/>| <lb/>+-------------------+----------+----------+---------------------+ <lb/>13.5. Media Type Registration <lb/>This section registers the 'application/oscore' media type in the <lb/>"Media Types" registry. This media type is used to indicate that the <lb/>content is an OSCORE message. The OSCORE body cannot be understood <lb/>without the OSCORE header field value and the security context. <lb/>Type name: application <lb/>Subtype name: oscore <lb/>Required parameters: N/A <lb/>Optional parameters: N/A <lb/>Encoding considerations: binary <lb/>Security considerations: See the Security Considerations section <lb/>of [RFC8613]. <lb/>Interoperability considerations: N/A <lb/>Published specification: [RFC8613] <lb/>Applications that use this media type: IoT applications sending <lb/>security content over HTTP(S) transports. <lb/>Fragment identifier considerations: N/A <lb/>Additional information: <lb/>* Deprecated alias names for this type: N/A <lb/>* Magic number(s): N/A <lb/>* File extension(s): N/A <lb/>* Macintosh file type code(s): N/A <lb/></body> + + <note place="footnote">Selander, et al. <lb/>Standards Track <lb/></note> + + <page>[Page 57] <lb/></page> + + <note place="headnote">RFC 8613 <lb/>OSCORE <lb/>July 2019 <lb/></note> + + <body>Person & email address to contact for further information: <lb/>IESG <iesg@ietf.org> <lb/>Intended usage: COMMON <lb/>Restrictions on usage: N/A <lb/>Author: Goeran Selander <goran.selander@ericsson.com> <lb/>Change Controller: IESG <lb/>Provisional registration? No <lb/>13.6. CoAP Content-Formats Registry <lb/>This section registers the media type 'application/oscore' media type <lb/>in the "CoAP Content-Formats" registry. This Content-Format for the <lb/>OSCORE payload is defined for potential future use cases and SHALL <lb/>NOT be used in the OSCORE message. The OSCORE payload cannot be <lb/>understood without the OSCORE option value and the security context. <lb/>+----------------------+----------+----------+-------------------+ <lb/>| Media Type <lb/>| Encoding | <lb/>ID <lb/>| <lb/>Reference <lb/>| <lb/>+----------------------+----------+----------+-------------------+ <lb/>| application/oscore <lb/>| <lb/>| 10001 <lb/>| [RFC8613] <lb/>| <lb/>+----------------------+----------+----------+-------------------+ <lb/>13.7. OSCORE Flag Bits Registry <lb/>This document defines a subregistry for the OSCORE flag bits within <lb/>the "CoRE Parameters" registry. The name of the subregistry is <lb/>"OSCORE Flag Bits". The registry has been created with the Expert <lb/>Review policy [RFC8126]. Guidelines for the experts are provided in <lb/>Section 13.8. <lb/>The columns of the registry are as follows: <lb/>o Bit Position: This indicates the position of the bit in the set of <lb/>OSCORE flag bits, starting at 0 for the most significant bit. The <lb/>bit position must be an integer or a range of integers, in the <lb/>range 0 to 63. <lb/>o Name: The name is present to make it easier to refer to and <lb/>discuss the registration entry. The value is not used in the <lb/>protocol. Names are to be unique in the table. <lb/>o Description: This contains a brief description of the use of the <lb/>bit. <lb/></body> + + <note place="footnote">Selander, et al. <lb/>Standards Track <lb/></note> + + <page>[Page 58] <lb/></page> + + <note place="headnote">RFC 8613 <lb/>OSCORE <lb/>July 2019 <lb/></note> + + <body>o Reference: This contains a pointer to the specification defining <lb/>the entry. <lb/>The initial contents of the registry are in the table below. The <lb/>reference column for all rows is this document. The entries with Bit <lb/>Position of 0 and 1 are marked as 'Reserved'. The entry with Bit <lb/>Position of 1 will be specified in a future document and will be used <lb/>to expand the space for the OSCORE flag bits in Section 6.1, so that <lb/>entries 8-63 of the registry are defined. <lb/>+--------------+-------------+-----------------------------+-----------+ <lb/>| Bit Position | Name <lb/>| Description <lb/>| Reference | <lb/>+--------------+-------------+-----------------------------+-----------+ <lb/>| <lb/>0 <lb/>| Reserved <lb/>| <lb/>| <lb/>| <lb/>+--------------+-------------+-----------------------------+-----------+ <lb/>| <lb/>1 <lb/>| Reserved <lb/>| <lb/>| <lb/>| <lb/>+--------------+-------------+-----------------------------+-----------+ <lb/>| <lb/>2 <lb/>| Unassigned | <lb/>| <lb/>| <lb/>+--------------+-------------+-----------------------------+-----------+ <lb/>| <lb/>3 <lb/>| Kid Context | Set to 1 if kid context <lb/>| [RFC8613] | <lb/>| <lb/>| Flag <lb/>| is present in the <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| compressed COSE object <lb/>| <lb/>| <lb/>+--------------+-------------+-----------------------------+-----------+ <lb/>| <lb/>4 <lb/>| Kid Flag <lb/>| Set to 1 if kid is present | [RFC8613] | <lb/>| <lb/>| <lb/>| in the compressed COSE <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| object <lb/>| <lb/>| <lb/>+--------------+-------------+-----------------------------+-----------+ <lb/>| <lb/>5-7 <lb/>| Partial IV | Encodes the Partial IV <lb/>| [RFC8613] | <lb/>| <lb/>| Length <lb/>| length; can have value <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| 0 to 5 <lb/>| <lb/>| <lb/>+--------------+-------------+-----------------------------+-----------+ <lb/>| <lb/>8-63 <lb/>| Unassigned | <lb/>| <lb/>| <lb/>+--------------+-------------+-----------------------------+-----------+ <lb/>13.8. Expert Review Instructions <lb/>The expert reviewers for the registry defined in this document are <lb/>expected to ensure that the usage solves a valid use case that could <lb/>not be solved better in a different way, that it is not going to <lb/>duplicate one that is already registered, and that the registered <lb/>point is likely to be used in deployments. They are furthermore <lb/>expected to check the clarity of purpose and use of the requested <lb/>code points. Experts should take into account the expected usage of <lb/>entries when approving point assignment, and the length of the <lb/>encoded value should be weighed against the number of code points <lb/>left that encode to that size and the size of device it will be used <lb/></body> + + <note place="footnote">Selander, et al. <lb/>Standards Track <lb/></note> + + <page>[Page 59] <lb/></page> + + <note place="headnote">RFC 8613 <lb/>OSCORE <lb/>July 2019 <lb/></note> + + <body>on. Experts should block registration for entries 8-63 until these <lb/>points are defined (i.e., until the mechanism for the OSCORE flag <lb/>bits expansion via bit 1 is specified). <lb/></body> + + <listBibl>14. References <lb/>14.1. Normative References <lb/>[RFC2119] Bradner, S., "Key words for use in RFCs to Indicate <lb/>Requirement Levels", BCP 14, RFC 2119, <lb/>DOI 10.17487/RFC2119, March 1997, <lb/><https://www.rfc-editor.org/info/rfc2119>. <lb/>[RFC4086] Eastlake 3rd, D., Schiller, J., and S. Crocker, <lb/>"Randomness Requirements for Security", BCP 106, RFC 4086, <lb/>DOI 10.17487/RFC4086, June 2005, <lb/><https://www.rfc-editor.org/info/rfc4086>. <lb/>[RFC4648] Josefsson, S., "The Base16, Base32, and Base64 Data <lb/>Encodings", RFC 4648, DOI 10.17487/RFC4648, October 2006, <lb/><https://www.rfc-editor.org/info/rfc4648>. <lb/>[RFC5234] Crocker, D., Ed. and P. Overell, "Augmented BNF for Syntax <lb/>Specifications: ABNF", STD 68, RFC 5234, <lb/>DOI 10.17487/RFC5234, January 2008, <lb/><https://www.rfc-editor.org/info/rfc5234>. <lb/>[RFC6347] Rescorla, E. and N. Modadugu, "Datagram Transport Layer <lb/>Security Version 1.2", RFC 6347, DOI 10.17487/RFC6347, <lb/>January 2012, <https://www.rfc-editor.org/info/rfc6347>. <lb/>[RFC7049] Bormann, C. and P. Hoffman, "Concise Binary Object <lb/>Representation (CBOR)", RFC 7049, DOI 10.17487/RFC7049, <lb/>October 2013, <https://www.rfc-editor.org/info/rfc7049>. <lb/>[RFC7230] Fielding, R., Ed. and J. Reschke, Ed., "Hypertext Transfer <lb/>Protocol (HTTP/1.1): Message Syntax and Routing", <lb/>RFC 7230, DOI 10.17487/RFC7230, June 2014, <lb/><https://www.rfc-editor.org/info/rfc7230>. <lb/>[RFC7231] Fielding, R., Ed. and J. Reschke, Ed., "Hypertext Transfer <lb/>Protocol (HTTP/1.1): Semantics and Content", RFC 7231, <lb/>DOI 10.17487/RFC7231, June 2014, <lb/><https://www.rfc-editor.org/info/rfc7231>. <lb/></listBibl> + + <note place="footnote">Selander, et al. <lb/>Standards Track <lb/></note> + + <page>[Page 60] <lb/></page> + + <note place="headnote">RFC 8613 <lb/>OSCORE <lb/>July 2019 <lb/></note> + + <listBibl>[RFC7252] Shelby, Z., Hartke, K., and C. Bormann, "The Constrained <lb/>Application Protocol (CoAP)", RFC 7252, <lb/>DOI 10.17487/RFC7252, June 2014, <lb/><https://www.rfc-editor.org/info/rfc7252>. <lb/>[RFC7641] Hartke, K., "Observing Resources in the Constrained <lb/>Application Protocol (CoAP)", RFC 7641, <lb/>DOI 10.17487/RFC7641, September 2015, <lb/><https://www.rfc-editor.org/info/rfc7641>. <lb/>[RFC7959] Bormann, C. and Z. Shelby, Ed., "Block-Wise Transfers in <lb/>the Constrained Application Protocol (CoAP)", RFC 7959, <lb/>DOI 10.17487/RFC7959, August 2016, <lb/><https://www.rfc-editor.org/info/rfc7959>. <lb/>[RFC8075] Castellani, A., Loreto, S., Rahman, A., Fossati, T., and <lb/>E. Dijk, "Guidelines for Mapping Implementations: HTTP to <lb/>the Constrained Application Protocol (CoAP)", RFC 8075, <lb/>DOI 10.17487/RFC8075, February 2017, <lb/><https://www.rfc-editor.org/info/rfc8075>. <lb/>[RFC8132] van der Stok, P., Bormann, C., and A. Sehgal, "PATCH and <lb/>FETCH Methods for the Constrained Application Protocol <lb/>(CoAP)", RFC 8132, DOI 10.17487/RFC8132, April 2017, <lb/><https://www.rfc-editor.org/info/rfc8132>. <lb/>[RFC8152] Schaad, J., "CBOR Object Signing and Encryption (COSE)", <lb/>RFC 8152, DOI 10.17487/RFC8152, July 2017, <lb/><https://www.rfc-editor.org/info/rfc8152>. <lb/>[RFC8174] Leiba, B., "Ambiguity of Uppercase vs Lowercase in RFC <lb/>2119 Key Words", BCP 14, RFC 8174, DOI 10.17487/RFC8174, <lb/>May 2017, <https://www.rfc-editor.org/info/rfc8174>. <lb/>[RFC8288] Nottingham, M., "Web Linking", RFC 8288, <lb/>DOI 10.17487/RFC8288, October 2017, <lb/><https://www.rfc-editor.org/info/rfc8288>. <lb/>[RFC8323] Bormann, C., Lemay, S., Tschofenig, H., Hartke, K., <lb/>Silverajan, B., and B. Raymor, Ed., "CoAP (Constrained <lb/>Application Protocol) over TCP, TLS, and WebSockets", <lb/>RFC 8323, DOI 10.17487/RFC8323, February 2018, <lb/><https://www.rfc-editor.org/info/rfc8323>. <lb/>[RFC8446] Rescorla, E., "The Transport Layer Security (TLS) Protocol <lb/>Version 1.3", RFC 8446, DOI 10.17487/RFC8446, August 2018, <lb/><https://www.rfc-editor.org/info/rfc8446>. <lb/></listBibl> + + <note place="footnote">Selander, et al. <lb/>Standards Track <lb/></note> + + <page>[Page 61] <lb/></page> + + <note place="headnote">RFC 8613 <lb/>OSCORE <lb/>July 2019 <lb/></note> + + <body>[RFC8610] Birkholz, H., Vigano, C., and C. Bormann, "Concise Data <lb/>Definition Language (CDDL): A Notational Convention to <lb/>Express Concise Binary Object Representation (CBOR) and <lb/>JSON Data Structures", RFC 8610, DOI 10.17487/RFC8610, <lb/>June 2019, <https://www.rfc-editor.org/info/rfc8610>. <lb/>14.2. Informative References <lb/>[ACE-OAuth] <lb/>Seitz, L., Selander, G., Wahlstroem, E., Erdtman, S., and <lb/>H. Tschofenig, "Authentication and Authorization for <lb/>Constrained Environments (ACE) using the OAuth 2.0 <lb/>Framework (ACE-OAuth)", Work in Progress, draft-ietf-ace-<lb/>oauth-authz-24, March 2019. <lb/>[CoAP-802.15.4] <lb/>Bormann, C., "Constrained Application Protocol (CoAP) over <lb/>IEEE 802.15.4 Information Element for IETF", Work in <lb/>Progress, draft-bormann-6lo-coap-802-15-ie-00, April 2016. <lb/>[CoAP-Actuators] <lb/>Mattsson, J., Fornehed, J., Selander, G., Palombini, F., <lb/>and C. Amsuess, "Controlling Actuators with CoAP", Work in <lb/>Progress, draft-mattsson-core-coap-actuators-06, September <lb/>2018. <lb/>[CoAP-E2E-Sec] <lb/>Selander, G., Palombini, F., and K. Hartke, "Requirements <lb/>for CoAP End-To-End Security", Work in Progress, draft-<lb/>hartke-core-e2e-security-reqs-03, July 2017. <lb/>[CoAP-ECHO-REQ-TAG] <lb/>Amsuess, C., Mattsson, J., and G. Selander, "CoAP: Echo, <lb/>Request-Tag, and Token Processing", Work in Progress, <lb/>draft-ietf-core-echo-request-tag-04, March 2019. <lb/>[Group-OSCORE] <lb/>Tiloca, M., Selander, G., Palombini, F., and J. Park, <lb/>"Group OSCORE -Secure Group Communication for CoAP", Work <lb/>in Progress, draft-ietf-core-oscore-groupcomm-04, March <lb/>2019. <lb/>[IV-GEN] <lb/>McGrew, D., "Generation of Deterministic Initialization <lb/>Vectors (IVs) and Nonces", Work in Progress, draft-mcgrew-<lb/>iv-gen-03, October 2013. <lb/></body> + + <note place="footnote">Selander, et al. <lb/>Standards Track <lb/></note> + + <page>[Page 62] <lb/></page> + + <note place="headnote">RFC 8613 <lb/>OSCORE <lb/>July 2019 <lb/></note> + + <listBibl>[MF00] <lb/>McGrew, D. and S. Fluhrer, "Attacks on Additive Encryption <lb/>of Redundant Plaintext and Implications on Internet <lb/>Security", Proceedings of the Seventh Annual Workshop on <lb/>Selected Areas in Cryptography (SAC 2000) Springer-<lb/>Verlag., pp. 14-28, 2000. <lb/>[OSCORE-PROFILE] <lb/>Palombini, F., Seitz, L., Selander, G., and M. Gunnarsson, <lb/>"OSCORE profile of the Authentication and Authorization <lb/>for Constrained Environments Framework", Work in <lb/>Progress, draft-ietf-ace-oscore-profile-07, February 2019. <lb/>[REST] <lb/>Fielding, R., "Architectural Styles and the Design of <lb/>Network-based Software Architectures", Ph.D. <lb/>Dissertation, University of California, Irvine, 2010. <lb/>[RFC3552] Rescorla, E. and B. Korver, "Guidelines for Writing RFC <lb/>Text on Security Considerations", BCP 72, RFC 3552, <lb/>DOI 10.17487/RFC3552, July 2003, <lb/><https://www.rfc-editor.org/info/rfc3552>. <lb/>[RFC3986] Berners-Lee, T., Fielding, R., and L. Masinter, "Uniform <lb/>Resource Identifier (URI): Generic Syntax", STD 66, <lb/>RFC 3986, DOI 10.17487/RFC3986, January 2005, <lb/><https://www.rfc-editor.org/info/rfc3986>. <lb/>[RFC5116] McGrew, D., "An Interface and Algorithms for Authenticated <lb/>Encryption", RFC 5116, DOI 10.17487/RFC5116, January 2008, <lb/><https://www.rfc-editor.org/info/rfc5116>. <lb/>[RFC5869] Krawczyk, H. and P. Eronen, "HMAC-based Extract-and-Expand <lb/>Key Derivation Function (HKDF)", RFC 5869, <lb/>DOI 10.17487/RFC5869, May 2010, <lb/><https://www.rfc-editor.org/info/rfc5869>. <lb/>[RFC6690] Shelby, Z., "Constrained RESTful Environments (CoRE) Link <lb/>Format", RFC 6690, DOI 10.17487/RFC6690, August 2012, <lb/><https://www.rfc-editor.org/info/rfc6690>. <lb/>[RFC7228] Bormann, C., Ersue, M., and A. Keranen, "Terminology for <lb/>Constrained-Node Networks", RFC 7228, <lb/>DOI 10.17487/RFC7228, May 2014, <lb/><https://www.rfc-editor.org/info/rfc7228>. <lb/>[RFC7515] Jones, M., Bradley, J., and N. Sakimura, "JSON Web <lb/>Signature (JWS)", RFC 7515, DOI 10.17487/RFC7515, May <lb/>2015, <https://www.rfc-editor.org/info/rfc7515>. <lb/></listBibl> + + <note place="footnote">Selander, et al. <lb/>Standards Track <lb/></note> + + <page>[Page 63] <lb/></page> + + <note place="headnote">RFC 8613 <lb/>OSCORE <lb/>July 2019 <lb/></note> + + <body>[RFC7967] Bhattacharyya, A., Bandyopadhyay, S., Pal, A., and T. <lb/>Bose, "Constrained Application Protocol (CoAP) Option for <lb/>No Server Response", RFC 7967, DOI 10.17487/RFC7967, <lb/>August 2016, <https://www.rfc-editor.org/info/rfc7967>. <lb/>[RFC8126] Cotton, M., Leiba, B., and T. Narten, "Guidelines for <lb/>Writing an IANA Considerations Section in RFCs", BCP 26, <lb/>RFC 8126, DOI 10.17487/RFC8126, June 2017, <lb/><https://www.rfc-editor.org/info/rfc8126>. <lb/></body> + + <note place="footnote">Selander, et al. <lb/>Standards Track <lb/></note> + + <page>[Page 64] <lb/></page> + + <note place="headnote">RFC 8613 <lb/>OSCORE <lb/>July 2019 <lb/></note> + + <body>Appendix A. Scenario Examples <lb/>This section gives examples of OSCORE, targeting scenarios in <lb/>Section 2.2.1.1 of [CoAP-E2E-Sec]. The message exchanges are made, <lb/>based on the assumption that there is a security context established <lb/>between client and server. For simplicity, these examples only <lb/>indicate the content of the messages without going into detail of the <lb/>(compressed) COSE message format. <lb/>A.1. Secure Access to Sensor <lb/>This example illustrates a client requesting the alarm status from a <lb/>server. <lb/>Client Proxy Server <lb/>| <lb/>| <lb/>| <lb/>+------>| <lb/>| <lb/>Code: 0.02 (POST) <lb/>| POST | <lb/>| <lb/>Token: 0x8c <lb/>| <lb/>| <lb/>| <lb/>OSCORE: [kid:5f, Partial IV:42] <lb/>| <lb/>| <lb/>| <lb/>Payload: {Code:0.01, <lb/>| <lb/>| <lb/>| <lb/>Uri-Path:"alarm_status"} <lb/>| <lb/>| <lb/>| <lb/>| <lb/>+------>| <lb/>Code: 0.02 (POST) <lb/>| <lb/>| POST | <lb/>Token: 0x7b <lb/>| <lb/>| <lb/>| <lb/>OSCORE: [kid:5f, Partial IV:42] <lb/>| <lb/>| <lb/>| <lb/>Payload: {Code:0.01, <lb/>| <lb/>| <lb/>| <lb/>Uri-Path:"alarm_status"} <lb/>| <lb/>| <lb/>| <lb/>| <lb/>|<------+ <lb/>Code: 2.04 (Changed) <lb/>| <lb/>| 2.04 | <lb/>Token: 0x7b <lb/>| <lb/>| <lb/>| <lb/>OSCORE: -<lb/>| <lb/>| <lb/>| <lb/>Payload: {Code:2.05, "0"} <lb/>| <lb/>| <lb/>| <lb/>|<------+ <lb/>| <lb/>Code: 2.04 (Changed) <lb/>| 2.04 | <lb/>| <lb/>Token: 0x8c <lb/>| <lb/>| <lb/>| <lb/>OSCORE: -<lb/>| <lb/>| <lb/>| <lb/>Payload: {Code:2.05, "0"} <lb/>| <lb/>| <lb/>| <lb/>Square brackets [ ... ] indicate content of compressed COSE object. <lb/>Curly brackets { ... } indicate encrypted data. <lb/>Figure 12: Secure Access to Sensor <lb/>The CoAP request/response Codes are encrypted by OSCORE and only <lb/>dummy Codes (POST/Changed) are visible in the header of the OSCORE <lb/>message. The option Uri-Path ("alarm_status") and payload ("0") are <lb/>encrypted. <lb/></body> + + <note place="footnote">Selander, et al. <lb/>Standards Track <lb/></note> + + <page>[Page 65] <lb/></page> + + <note place="headnote">RFC 8613 <lb/>OSCORE <lb/>July 2019 <lb/></note> + + <body>The COSE header of the request contains an identifier (5f), <lb/>indicating which security context was used to protect the message and <lb/>a Partial IV (42). <lb/>The server verifies the request as specified in Section 8.2. The <lb/>client verifies the response as specified in Section 8.4. <lb/>A.2. Secure Subscribe to Sensor <lb/>This example illustrates a client requesting subscription to a blood <lb/>sugar measurement resource (GET /glucose), first receiving the value <lb/>220 mg/dl and then a second value 180 mg/dl. <lb/>Client Proxy Server <lb/>| <lb/>| <lb/>| <lb/>+------>| <lb/>| <lb/>Code: 0.05 (FETCH) <lb/>| FETCH | <lb/>| <lb/>Token: 0x83 <lb/>| <lb/>| <lb/>| <lb/>Observe: 0 <lb/>| <lb/>| <lb/>| <lb/>OSCORE: [kid:ca, Partial IV:15] <lb/>| <lb/>| <lb/>| <lb/>Payload: {Code:0.01, <lb/>| <lb/>| <lb/>| <lb/>Observe:0, <lb/>| <lb/>| <lb/>| <lb/>Uri-Path:"glucose"} <lb/>| <lb/>| <lb/>| <lb/>| <lb/>+------>| <lb/>Code: 0.05 (FETCH) <lb/>| <lb/>| FETCH | <lb/>Token: 0xbe <lb/>| <lb/>| <lb/>| <lb/>Observe: 0 <lb/>| <lb/>| <lb/>| <lb/>OSCORE: [kid:ca, Partial IV:15] <lb/>| <lb/>| <lb/>| <lb/>Payload: {Code:0.01, <lb/>| <lb/>| <lb/>| <lb/>Observe:0, <lb/>| <lb/>| <lb/>| <lb/>Uri-Path:"glucose"} <lb/>| <lb/>| <lb/>| <lb/>| <lb/>|<------+ <lb/>Code: 2.05 (Content) <lb/>| <lb/>| 2.05 | <lb/>Token: 0xbe <lb/>| <lb/>| <lb/>| <lb/>Observe: 7 <lb/>| <lb/>| <lb/>| <lb/>OSCORE: -<lb/>| <lb/>| <lb/>| <lb/>Payload: {Code:2.05, <lb/>| <lb/>| <lb/>| <lb/>Observe:-, <lb/>| <lb/>| <lb/>| <lb/>Content-Format:0, "220"} <lb/>| <lb/>| <lb/>| <lb/>|<------+ <lb/>| <lb/>Code: 2.05 (Content) <lb/>| 2.05 | <lb/>| <lb/>Token: 0x83 <lb/>| <lb/>| <lb/>| <lb/>Observe: 7 <lb/>| <lb/>| <lb/>| <lb/>OSCORE: -<lb/>| <lb/>| <lb/>| <lb/>Payload: {Code:2.05, <lb/>| <lb/>| <lb/>| <lb/>Observe:-, <lb/>| <lb/>| <lb/>| <lb/>Content-Format:0, "220"} <lb/>... <lb/>... <lb/>... <lb/>| <lb/>| <lb/>| <lb/></body> + + <note place="footnote">Selander, et al. <lb/>Standards Track <lb/></note> + + <page>[Page 66] <lb/></page> + + <note place="headnote">RFC 8613 <lb/>OSCORE <lb/>July 2019 <lb/></note> + + <body>| <lb/>|<------+ <lb/>Code: 2.05 (Content) <lb/>| <lb/>| 2.05 | <lb/>Token: 0xbe <lb/>| <lb/>| <lb/>| <lb/>Observe: 8 <lb/>| <lb/>| <lb/>| <lb/>OSCORE: [Partial IV:36] <lb/>| <lb/>| <lb/>| <lb/>Payload: {Code:2.05, <lb/>| <lb/>| <lb/>| <lb/>Observe:-, <lb/>| <lb/>| <lb/>| <lb/>Content-Format:0, "180"} <lb/>| <lb/>| <lb/>| <lb/>|<------+ <lb/>| <lb/>Code: 2.05 (Content) <lb/>| 2.05 | <lb/>| <lb/>Token: 0x83 <lb/>| <lb/>| <lb/>| <lb/>Observe: 8 <lb/>| <lb/>| <lb/>| <lb/>OSCORE: [Partial IV:36] <lb/>| <lb/>| <lb/>| <lb/>Payload: {Code:2.05, <lb/>| <lb/>| <lb/>| <lb/>Observe:-, <lb/>| <lb/>| <lb/>| <lb/>Content-Format:0, "180"} <lb/>| <lb/>| <lb/>| <lb/>Square brackets [ ... ] indicate content of compressed COSE object <lb/>header. Curly brackets { ... } indicate encrypted data. <lb/>Figure 13: Secure Subscribe to Sensor <lb/>The dummy Codes (FETCH/Content) are used to allow forwarding of <lb/>Observe messages. The options Content-Format (0) and the payload <lb/>("220" and "180") are encrypted. <lb/>The COSE header of the request contains an identifier (ca), <lb/>indicating the security context used to protect the message and a <lb/>Partial IV (15). The COSE header of the second response contains the <lb/>Partial IV (36). The first response uses the Partial IV of the <lb/>request. <lb/>The server verifies that the Partial IV has not been received before. <lb/>The client verifies that the responses are bound to the request and <lb/>that the Partial IVs are greater than any Partial IV previously <lb/>received in a response bound to the request, except for the <lb/>notification without Partial IV, which is considered the oldest. <lb/></body> + + <note place="footnote">Selander, et al. <lb/>Standards Track <lb/></note> + + <page>[Page 67] <lb/></page> + + <note place="headnote">RFC 8613 <lb/>OSCORE <lb/>July 2019 <lb/></note> + + <body>Appendix B. Deployment Examples <lb/>For many Internet of Things (IoT) deployments, a 128-bit uniformly <lb/>random Master Key is sufficient for encrypting all data exchanged <lb/>with the IoT device throughout its lifetime. Two examples are given <lb/>in this section. In the first example, the security context is only <lb/>derived once from the Master Secret. In the second example, security <lb/>contexts are derived multiple times using random inputs. <lb/>B.1. Security Context Derived Once <lb/>An application that only derives the security context once needs to <lb/>handle the loss of mutable security context parameters, e.g., due to <lb/>reboot. <lb/>B.1.1. Sender Sequence Number <lb/>In order to handle loss of Sender Sequence Numbers, the device may <lb/>implement procedures for writing to nonvolatile memory during normal <lb/>operations and updating the security context after reboot, provided <lb/>that the procedures comply with the requirements on the security <lb/>context parameters (Section 3.3). This section gives an example of <lb/>such a procedure. <lb/>There are known issues related to writing to nonvolatile memory. For <lb/>example, flash drives may have a limited number of erase operations <lb/>during its lifetime. Also, the time for a write operation to <lb/>nonvolatile memory to be completed may be unpredictable, e.g., due to <lb/>caching, which could result in important security context data not <lb/>being stored at the time when the device reboots. <lb/>However, many devices have predictable limits for writing to <lb/>nonvolatile memory, are physically limited to only send a small <lb/>amount of messages per minute, and may have no good source of <lb/>randomness. <lb/>To prevent reuse of Sender Sequence Number, an endpoint may perform <lb/>the following procedure during normal operations: <lb/>o Before using a Sender Sequence Number that is evenly divisible by <lb/>K, where K is a positive integer, store the Sender Sequence Number <lb/>(SSN1) in nonvolatile memory. After booting, the endpoint <lb/>initiates the new Sender Sequence Number (SSN2) to the value <lb/>stored in persistent memory plus K plus F: SSN2 = SSN1 + K + F, <lb/>where F is a positive integer. <lb/></body> + + <note place="footnote">Selander, et al. <lb/>Standards Track <lb/></note> + + <page>[Page 68] <lb/></page> + + <note place="headnote">RFC 8613 <lb/>OSCORE <lb/>July 2019 <lb/></note> + + <body>* Writing to nonvolatile memory can be costly; the value K gives <lb/>a trade-off between frequency of storage operations and <lb/>efficient use of Sender Sequence Numbers. <lb/>* Writing to nonvolatile memory may be subject to delays, or <lb/>failure; F MUST be set so that the last Sender Sequence Number <lb/>used before reboot is never larger than SSN2. <lb/>If F cannot be set so SSN2 is always larger than the last Sender <lb/>Sequence Number used before reboot, the method described in this <lb/>section MUST NOT be used. <lb/>B.1.2. Replay Window <lb/>In case of loss of security context on the server, to prevent <lb/>accepting replay of previously received requests, the server may <lb/>perform the following procedure after booting: <lb/>o The server updates its Sender Sequence Number as specified in <lb/>Appendix B.1.1 to be used as Partial IV in the response containing <lb/>the Echo option (next bullet). <lb/>o For each stored security context, the first time after booting, <lb/>the server receives an OSCORE request, the server responds with an <lb/>OSCORE protected 4.01 (Unauthorized), containing only the Echo <lb/>option [CoAP-ECHO-REQ-TAG] and no diagnostic payload. The server <lb/>MUST use its Partial IV when generating the AEAD nonce and MUST <lb/>include the Partial IV in the response (see Section 5). If the <lb/>server with use of the Echo option can verify a second OSCORE <lb/>request as fresh, then the Partial IV of the second request is set <lb/>as the lower limit of the Replay Window of that security context. <lb/>B.1.3. Notifications <lb/>To prevent the acceptance of replay of previously received <lb/>notifications, the client may perform the following procedure after <lb/>booting: <lb/>o The client forgets about earlier registrations and removes all <lb/>Notification Numbers. The client then registers again using the <lb/>Observe option. <lb/></body> + + <note place="footnote">Selander, et al. <lb/>Standards Track <lb/></note> + + <page>[Page 69] <lb/></page> + + <note place="headnote">RFC 8613 <lb/>OSCORE <lb/>July 2019 <lb/></note> + + <body>B.2. Security Context Derived Multiple Times <lb/>An application that does not require forward secrecy may allow <lb/>multiple security contexts to be derived from one Master Secret. The <lb/>requirements on the security context parameters MUST be fulfilled <lb/>(Section 3.3) even if the client or server is rebooted, <lb/>recommissioned, or in error cases. <lb/>This section gives an example of a protocol that adds randomness to <lb/>the ID Context parameter and uses that together with input parameters <lb/>preestablished between client and server, in particular Master <lb/>Secret, Master Salt, and Sender/Recipient ID (see Section 3.2), to <lb/>derive new security contexts. The random input is transported <lb/>between client and server in the 'kid context' parameter. This <lb/>protocol MUST NOT be used unless both endpoints have good sources of <lb/>randomness. <lb/>During normal requests, the ID Context of an established security <lb/>context may be sent in the 'kid context', which, together with 'kid', <lb/>facilitates for the server to locate a security context. <lb/>Alternatively, the 'kid context' may be omitted since the ID Context <lb/>is expected to be known to both client and server; see Section 5.1. <lb/>The protocol described in this section may only be needed when the <lb/>mutable part of security context is lost in the client or server, <lb/>e.g., when the endpoint has rebooted. The protocol may additionally <lb/>be used whenever the client and server need to derive a new security <lb/>context. For example, if a device is provisioned with one fixed set <lb/>of input parameters (including Master Secret, Sender and Recipient <lb/>Identifiers), then a randomized ID Context ensures that the security <lb/>context is different for each deployment. <lb/>Note that the server needs to be configured to run this protocol when <lb/>it is not able to retrieve an existing security context, instead of <lb/>stopping processing the message as described in step 2 of <lb/>Section 8.2. <lb/>The protocol is described below with reference to Figure 14. The <lb/>client or the server may initiate the protocol, in the latter case <lb/>step 1 is omitted. <lb/></body> + + <note place="footnote">Selander, et al. <lb/>Standards Track <lb/></note> + + <page>[Page 70] <lb/></page> + + <note place="headnote">RFC 8613 <lb/>OSCORE <lb/>July 2019 <lb/></note> + + <body>Client <lb/>Server <lb/>| <lb/>| <lb/>1. Protect with <lb/>| <lb/>request #1 <lb/>| <lb/>ID Context = ID1 <lb/>|--------------------->| 2. Verify with <lb/>| kid_context = ID1 <lb/>| <lb/>ID Context = ID1 <lb/>| <lb/>| <lb/>| <lb/>response #1 <lb/>| <lb/>Protect with <lb/>3. Verify with <lb/>|<---------------------| <lb/>ID Context = R2||ID1 <lb/>ID Context = R2||ID1 | <lb/>kid_context = R2 <lb/>| <lb/>| <lb/>| <lb/>Protect with <lb/>| <lb/>request #2 <lb/>| <lb/>ID Context = R2||R3 |--------------------->| 4. Verify with <lb/>| kid_context = R2||R3 | <lb/>ID Context = R2||R3 <lb/>| <lb/>| <lb/>| <lb/>response #2 <lb/>| <lb/>Protect with <lb/>5. Verify with <lb/>|<---------------------| <lb/>ID Context = R2||R3 <lb/>ID Context = R2||R3 | <lb/>| <lb/>Figure 14: Protocol for Establishing a New Security Context <lb/>1. (Optional) If the client does not have a valid security context <lb/>with the server, e.g., because of reboot or because this is the <lb/>first time it contacts the server, then it generates a random <lb/>string R1 and uses this as ID Context together with the input <lb/>parameters shared with the server to derive a first security <lb/>context. The client sends an OSCORE request to the server <lb/>protected with the first security context, containing R1 wrapped <lb/>in a CBOR bstr as 'kid context'. The request may target a <lb/>special resource used for updating security contexts. <lb/>2. The server receives an OSCORE request for which it does not have <lb/>a valid security context, either because the client has generated <lb/>a new security context ID1 = R1 or because the server has lost <lb/>part of its security context, e.g., ID Context, Sender Sequence <lb/>Number or Replay Window. If the server is able to verify the <lb/>request (see Section 8.2) with the new derived first security <lb/>context using the received ID1 (transported in 'kid context') as <lb/>ID Context and the input parameters associated to the received <lb/>'kid', then the server generates a random string R2 and derives a <lb/>second security context with ID Context = ID2 = R2 || ID1. The <lb/>server sends a 4.01 (Unauthorized) response protected with the <lb/>second security context, containing R2 wrapped in a CBOR bstr as <lb/>'kid context', and caches R2. R2 MUST NOT be reused as that may <lb/>lead to reuse of key and nonce in response #1. Note that the <lb/>server may receive several requests #1 associated with one <lb/>security context, leading to multiple parallel protocol runs. <lb/>Multiple instances of R2 may need to be cached until one of the <lb/>protocol runs is completed, see Appendix B.2.1. <lb/></body> + + <note place="footnote">Selander, et al. <lb/>Standards Track <lb/></note> + + <page>[Page 71] <lb/></page> + + <note place="headnote">RFC 8613 <lb/>OSCORE <lb/>July 2019 <lb/></note> + + <body>3. The client receives a response with 'kid context' containing a <lb/>CBOR bstr wrapping R2 to an OSCORE request it made with ID <lb/>Context = ID1. The client derives a second security context <lb/>using ID Context = ID2 = R2 || ID1. If the client can verify the <lb/>response (see Section 8.4) using the second security context, <lb/>then the client makes a request protected with a third security <lb/>context derived from ID Context = ID3 = R2 || R3, where R3 is a <lb/>random byte string generated by the client. The request includes <lb/>R2 || R3 wrapped in a CBOR bstr as 'kid context'. <lb/>4. If the server receives a request with 'kid context' containing a <lb/>CBOR bstr wrapping ID3, where the first part of ID3 is identical <lb/>to an R2 sent in a previous response #1, which it has not <lb/>received before, then the server derives a third security context <lb/>with ID Context = ID3. The server MUST NOT accept replayed <lb/>request #2 messages. If the server can verify the request (see <lb/>Section 8.2) with the third security context, then the server <lb/>marks the third security context to be used with this client and <lb/>removes all instances of R2 associated to this security context <lb/>from the cache. This security context replaces the previous <lb/>security context with the client, and the first and the second <lb/>security contexts are deleted. The server responds using the <lb/>same security context as in the request. <lb/>5. If the client receives a response to the request with the third <lb/>security context and the response verifies (see Section 8.4), <lb/>then the client marks the third security context to be used with <lb/>this server. This security context replaces the previous <lb/>security context with the server, and the first and second <lb/>security contexts are deleted. <lb/>If verification fails in any step, the endpoint stops processing that <lb/>message. <lb/>The length of the nonces R1, R2, and R3 is application specific. The <lb/>application needs to set the length of each nonce such that the <lb/>probability of its value being repeated is negligible; typically, at <lb/>least 8 bytes long. Since R2 may be generated as the result of a <lb/>replayed request #1, the probability for collision of R2s is impacted <lb/>by the birthday paradox. For example, setting the length of R2 to 8 <lb/>bytes results in an average collision after 2^32 response #1 <lb/>messages, which should not be an issue for a constrained server <lb/>handling on the order of one request per second. <lb/></body> + + <note place="footnote">Selander, et al. <lb/>Standards Track <lb/></note> + + <page>[Page 72] <lb/></page> + + <note place="headnote">RFC 8613 <lb/>OSCORE <lb/>July 2019 <lb/></note> + + <body>Request #2 can be an ordinary request. The server performs the <lb/>action of the request and sends response #2 after having successfully <lb/>completed the operations related to the security context in step 4. <lb/>The client acts on response #2 after having successfully completed <lb/>step 5. <lb/>When sending request #2, the client is assured that the Sender Key <lb/>(derived with the random value R3) has never been used before. When <lb/>receiving response #2, the client is assured that the response <lb/>(protected with a key derived from the random value R3 and the Master <lb/>Secret) was created by the server in response to request #2. <lb/>Similarly, when receiving request #2, the server is assured that the <lb/>request (protected with a key derived from the random value R2 and <lb/>the Master Secret) was created by the client in response to response <lb/>#1. When sending response #2, the server is assured that the Sender <lb/>Key (derived with the random value R2) has never been used before. <lb/>Implementation and denial-of-service considerations are made in <lb/>Appendix B.2.1 and Appendix B.2.2. <lb/>B.2.1. Implementation Considerations <lb/>This section add some implementation considerations to the protocol <lb/>described in the previous section. <lb/>The server may only have space for a few security contexts or only be <lb/>able to handle a few protocol runs in parallel. The server may <lb/>legitimately receive multiple request #1 messages using the same <lb/>immutable security context, e.g., because of packet loss. Replays of <lb/>old request #1 messages could be difficult for the server to <lb/>distinguish from legitimate. The server needs to handle the case <lb/>when the maximum number of cached R2s is reached. If the server <lb/>receives a request #1 and is not capable of executing it then it may <lb/>respond with an unprotected 5.03 (Service Unavailable) error message. <lb/>The server may clear up state from protocol runs that never complete, <lb/>e.g., set a timer when caching R2, and remove R2 and the associated <lb/>security contexts from the cache at timeout. Additionally, state <lb/>information can be flushed at reboot. <lb/>As an alternative to caching R2, the server could generate R2 in such <lb/>a way that it can be sent (in response #1) and verified (at reception <lb/>of request #2) as the value of R2 it had generated. Such a procedure <lb/>MUST NOT lead to the server accepting replayed request #2 messages. <lb/>One construction described in the following is based on using a <lb/>secret random HMAC key K_HMAC per set of immutable security context <lb/>parameters associated with a client. This construction allows the <lb/></body> + + <note place="footnote">Selander, et al. <lb/>Standards Track <lb/></note> + + <page>[Page 73] <lb/></page> + + <note place="headnote">RFC 8613 <lb/>OSCORE <lb/>July 2019 <lb/></note> + + <body>server to handle verification of R2 in response #2 at the cost of <lb/>storing the K_HMAC keys and a slightly larger message overhead in <lb/>response #1. Steps below refer to modifications to Appendix B.2: <lb/>o In step 2, R2 is generated in the following way. First, the <lb/>server generates a random K_HMAC (unless it already has one <lb/>associated with the security context), then it sets R2 = S2 || <lb/>HMAC(K_HMAC, S2) where S2 is a random byte string, and the HMAC is <lb/>truncated to 8 bytes. K_HMAC may have an expiration time, after <lb/>which it is erased. Note that neither R2, S2, nor the derived <lb/>first and second security contexts need to be cached. <lb/>o In step 4, instead of verifying that R2 coincides with a cached <lb/>value, the server looks up the associated K_HMAC and verifies the <lb/>truncated HMAC, and the processing continues accordingly depending <lb/>on verification success or failure. K_HMAC is used until a run of <lb/>the protocol is completed (after verification of request #2), or <lb/>until it expires (whatever comes first), after which K_HMAC is <lb/>erased. (The latter corresponds to removing the cached values of <lb/>R2 in step 4 of Appendix B.2 and makes the server reject replays <lb/>of request #2.) <lb/>The length of S2 is application specific and the probability for <lb/>collision of S2s is impacted by the birthday paradox. For example, <lb/>setting the length of S2 to 8 bytes results in an average collision <lb/>after 2^32 response #1 messages, which should not be an issue for a <lb/>constrained server handling on the order of one request per second. <lb/>Two endpoints sharing a security context may accidentally initiate <lb/>two instances of the protocol at the same time, each in the role of <lb/>client, e.g., after a power outage affecting both endpoints. Such a <lb/>race condition could potentially lead to both protocols failing, and <lb/>both endpoints repeatedly reinitiating the protocol without <lb/>converging. Both endpoints can detect this situation, and it can be <lb/>handled in different ways. The requests could potentially be more <lb/>spread out in time, for example, by only initiating this protocol <lb/>when the endpoint actually needs to make a request, potentially <lb/>adding a random delay before requests immediately after reboot or if <lb/>such parallel protocol runs are detected. <lb/>B.2.2. Attack Considerations <lb/>An on-path attacker may inject a message causing the endpoint to <lb/>process verification of the message. A message crafted without <lb/>access to the Master Secret will fail to verify. <lb/></body> + + <note place="footnote">Selander, et al. <lb/>Standards Track <lb/></note> + + <page>[Page 74] <lb/></page> + + <note place="headnote">RFC 8613 <lb/>OSCORE <lb/>July 2019 <lb/></note> + + <body>Replaying an old request with a value of 'kid_context' that the <lb/>server does not recognize could trigger the protocol. This causes <lb/>the server to generate the first and second security context and send <lb/>a response. But if the client did not expect a response, it will be <lb/>discarded. This may still result in a denial-of-service attack <lb/>against the server, e.g., because of not being able to manage the <lb/>state associated with many parallel protocol runs, and it may prevent <lb/>legitimate client requests. Implementation alternatives with less <lb/>data caching per request #1 message are favorable in this respect; <lb/>see Appendix B.2.1. <lb/>Replaying response #1 in response to some request other than request <lb/>#1 will fail to verify, since response #1 is associated to request <lb/>#1, through the dependencies of ID Contexts and the Partial IV of <lb/>request #1 included in the external_aad of response #1. <lb/>If request #2 has already been well received, then the server has a <lb/>valid security context, so a replay of request #2 is handled by the <lb/>normal replay protection mechanism. Similarly, if response #2 has <lb/>already been received, a replay of response #2 to some other request <lb/>from the client will fail by the normal verification of binding of <lb/>response to request. <lb/>Appendix C. Test Vectors <lb/>This appendix includes the test vectors for different examples of <lb/>CoAP messages using OSCORE. Given a set of inputs, OSCORE defines <lb/>how to set up the Security Context in both the client and the server. <lb/>Note that in Appendix C.4 and all following test vectors the Token <lb/>and the Message ID of the OSCORE-protected CoAP messages are set to <lb/>the same value of the unprotected CoAP message to help the reader <lb/>with comparisons. <lb/>C.1. Test Vector 1: Key Derivation with Master Salt <lb/>In this test vector, a Master Salt of 8 bytes is used. The default <lb/>values are used for AEAD Algorithm and HKDF. <lb/>C.1.1. Client <lb/>Inputs: <lb/>o Master Secret: 0x0102030405060708090a0b0c0d0e0f10 (16 bytes) <lb/>o Master Salt: 0x9e7ca92223786340 (8 bytes) <lb/>o Sender ID: 0x (0 byte) <lb/></body> + + <note place="footnote">Selander, et al. <lb/>Standards Track <lb/></note> + + <page>[Page 75] <lb/></page> + + <note place="headnote">RFC 8613 <lb/>OSCORE <lb/>July 2019 <lb/></note> + + <body>o Recipient ID: 0x01 (1 byte) <lb/>From the previous parameters, <lb/>o info (for Sender Key): 0x8540f60a634b657910 (9 bytes) <lb/>o info (for Recipient Key): 0x854101f60a634b657910 (10 bytes) <lb/>o info (for Common IV): 0x8540f60a6249560d (8 bytes) <lb/>Outputs: <lb/>o Sender Key: 0xf0910ed7295e6ad4b54fc793154302ff (16 bytes) <lb/>o Recipient Key: 0xffb14e093c94c9cac9471648b4f98710 (16 bytes) <lb/>o Common IV: 0x4622d4dd6d944168eefb54987c (13 bytes) <lb/>From the previous parameters and a Partial IV equal to 0 (both for <lb/>sender and recipient): <lb/>o sender nonce: 0x4622d4dd6d944168eefb54987c (13 bytes) <lb/>o recipient nonce: 0x4722d4dd6d944169eefb54987c (13 bytes) <lb/>C.1.2. Server <lb/>Inputs: <lb/>o Master Secret: 0x0102030405060708090a0b0c0d0e0f10 (16 bytes) <lb/>o Master Salt: 0x9e7ca92223786340 (8 bytes) <lb/>o Sender ID: 0x01 (1 byte) <lb/>o Recipient ID: 0x (0 byte) <lb/>From the previous parameters, <lb/>o info (for Sender Key): 0x854101f60a634b657910 (10 bytes) <lb/>o info (for Recipient Key): 0x8540f60a634b657910 (9 bytes) <lb/>o info (for Common IV): 0x8540f60a6249560d (8 bytes) <lb/>Outputs: <lb/>o Sender Key: 0xffb14e093c94c9cac9471648b4f98710 (16 bytes) <lb/></body> + + <note place="footnote">Selander, et al. <lb/>Standards Track <lb/></note> + + <page>[Page 76] <lb/></page> + + <note place="headnote">RFC 8613 <lb/>OSCORE <lb/>July 2019 <lb/></note> + + <body>o Recipient Key: 0xf0910ed7295e6ad4b54fc793154302ff (16 bytes) <lb/>o Common IV: 0x4622d4dd6d944168eefb54987c (13 bytes) <lb/>From the previous parameters and a Partial IV equal to 0 (both for <lb/>sender and recipient): <lb/>o sender nonce: 0x4722d4dd6d944169eefb54987c (13 bytes) <lb/>o recipient nonce: 0x4622d4dd6d944168eefb54987c (13 bytes) <lb/>C.2. Test Vector 2: Key Derivation without Master Salt <lb/>In this test vector, the default values are used for AEAD Algorithm, <lb/>HKDF, and Master Salt. <lb/>C.2.1. Client <lb/>Inputs: <lb/>o Master Secret: 0x0102030405060708090a0b0c0d0e0f10 (16 bytes) <lb/>o Sender ID: 0x00 (1 byte) <lb/>o Recipient ID: 0x01 (1 byte) <lb/>From the previous parameters, <lb/>o info (for Sender Key): 0x854100f60a634b657910 (10 bytes) <lb/>o info (for Recipient Key): 0x854101f60a634b657910 (10 bytes) <lb/>o info (for Common IV): 0x8540f60a6249560d (8 bytes) <lb/>Outputs: <lb/>o Sender Key: 0x321b26943253c7ffb6003b0b64d74041 (16 bytes) <lb/>o Recipient Key: 0xe57b5635815177cd679ab4bcec9d7dda (16 bytes) <lb/>o Common IV: 0xbe35ae297d2dace910c52e99f9 (13 bytes) <lb/>From the previous parameters and a Partial IV equal to 0 (both for <lb/>sender and recipient): <lb/>o sender nonce: 0xbf35ae297d2dace910c52e99f9 (13 bytes) <lb/>o recipient nonce: 0xbf35ae297d2dace810c52e99f9 (13 bytes) <lb/></body> + + <note place="footnote">Selander, et al. <lb/>Standards Track <lb/></note> + + <page>[Page 77] <lb/></page> + + <note place="headnote">RFC 8613 <lb/>OSCORE <lb/>July 2019 <lb/></note> + + <body>C.2.2. Server <lb/>Inputs: <lb/>o Master Secret: 0x0102030405060708090a0b0c0d0e0f10 (16 bytes) <lb/>o Sender ID: 0x01 (1 byte) <lb/>o Recipient ID: 0x00 (1 byte) <lb/>From the previous parameters, <lb/>o info (for Sender Key): 0x854101f60a634b657910 (10 bytes) <lb/>o info (for Recipient Key): 0x854100f60a634b657910 (10 bytes) <lb/>o info (for Common IV): 0x8540f60a6249560d (8 bytes) <lb/>Outputs: <lb/>o Sender Key: 0xe57b5635815177cd679ab4bcec9d7dda (16 bytes) <lb/>o Recipient Key: 0x321b26943253c7ffb6003b0b64d74041 (16 bytes) <lb/>o Common IV: 0xbe35ae297d2dace910c52e99f9 (13 bytes) <lb/>From the previous parameters and a Partial IV equal to 0 (both for <lb/>sender and recipient): <lb/>o sender nonce: 0xbf35ae297d2dace810c52e99f9 (13 bytes) <lb/>o recipient nonce: 0xbf35ae297d2dace910c52e99f9 (13 bytes) <lb/>C.3. Test Vector 3: Key Derivation with ID Context <lb/>In this test vector, a Master Salt of 8 bytes and an ID Context of 8 <lb/>bytes are used. The default values are used for AEAD Algorithm and <lb/>HKDF. <lb/>C.3.1. Client <lb/>Inputs: <lb/>o Master Secret: 0x0102030405060708090a0b0c0d0e0f10 (16 bytes) <lb/>o Master Salt: 0x9e7ca92223786340 (8 bytes) <lb/>o Sender ID: 0x (0 byte) <lb/></body> + + <note place="footnote">Selander, et al. <lb/>Standards Track <lb/></note> + + <page>[Page 78] <lb/></page> + + <note place="headnote">RFC 8613 <lb/>OSCORE <lb/>July 2019 <lb/></note> + + <body>o Recipient ID: 0x01 (1 byte) <lb/>o ID Context: 0x37cbf3210017a2d3 (8 bytes) <lb/>From the previous parameters, <lb/>o info (for Sender Key): 0x85404837cbf3210017a2d30a634b657910 (17 <lb/>bytes) <lb/>o info (for Recipient Key): 0x8541014837cbf3210017a2d30a634b657910 <lb/>(18 bytes) <lb/>o info (for Common IV): 0x85404837cbf3210017a2d30a6249560d (16 <lb/>bytes) <lb/>Outputs: <lb/>o Sender Key: 0xaf2a1300a5e95788b356336eeecd2b92 (16 bytes) <lb/>o Recipient Key: 0xe39a0c7c77b43f03b4b39ab9a268699f (16 bytes) <lb/>o Common IV: 0x2ca58fb85ff1b81c0b7181b85e (13 bytes) <lb/>From the previous parameters and a Partial IV equal to 0 (both for <lb/>sender and recipient): <lb/>o sender nonce: 0x2ca58fb85ff1b81c0b7181b85e (13 bytes) <lb/>o recipient nonce: 0x2da58fb85ff1b81d0b7181b85e (13 bytes) <lb/>C.3.2. Server <lb/>Inputs: <lb/>o Master Secret: 0x0102030405060708090a0b0c0d0e0f10 (16 bytes) <lb/>o Master Salt: 0x9e7ca92223786340 (8 bytes) <lb/>o Sender ID: 0x01 (1 byte) <lb/>o Recipient ID: 0x (0 byte) <lb/>o ID Context: 0x37cbf3210017a2d3 (8 bytes) <lb/>From the previous parameters, <lb/>o info (for Sender Key): 0x8541014837cbf3210017a2d30a634b657910 (18 <lb/>bytes) <lb/></body> + + <note place="footnote">Selander, et al. <lb/>Standards Track <lb/></note> + + <page>[Page 79] <lb/></page> + + <note place="headnote">RFC 8613 <lb/>OSCORE <lb/>July 2019 <lb/></note> + + <body>o info (for Recipient Key): 0x85404837cbf3210017a2d30a634b657910 (17 <lb/>bytes) <lb/>o info (for Common IV): 0x85404837cbf3210017a2d30a6249560d (16 <lb/>bytes) <lb/>Outputs: <lb/>o Sender Key: 0xe39a0c7c77b43f03b4b39ab9a268699f (16 bytes) <lb/>o Recipient Key: 0xaf2a1300a5e95788b356336eeecd2b92 (16 bytes) <lb/>o Common IV: 0x2ca58fb85ff1b81c0b7181b85e (13 bytes) <lb/>From the previous parameters and a Partial IV equal to 0 (both for <lb/>sender and recipient): <lb/>o sender nonce: 0x2da58fb85ff1b81d0b7181b85e (13 bytes) <lb/>o recipient nonce: 0x2ca58fb85ff1b81c0b7181b85e (13 bytes) <lb/>C.4. Test Vector 4: OSCORE Request, Client <lb/>This section contains a test vector for an OSCORE-protected CoAP GET <lb/>request using the security context derived in Appendix C.1. The <lb/>unprotected request only contains the Uri-Path and Uri-Host options. <lb/>Unprotected CoAP request: <lb/>0x44015d1f00003974396c6f63616c686f737483747631 (22 bytes) <lb/>Common Context: <lb/>o AEAD Algorithm: 10 (AES-CCM-16-64-128) <lb/>o Key Derivation Function: HKDF SHA-256 <lb/>o Common IV: 0x4622d4dd6d944168eefb54987c (13 bytes) <lb/>Sender Context: <lb/>o Sender ID: 0x (0 byte) <lb/>o Sender Key: 0xf0910ed7295e6ad4b54fc793154302ff (16 bytes) <lb/>o Sender Sequence Number: 20 <lb/></body> + + <note place="footnote">Selander, et al. <lb/>Standards Track <lb/></note> + + <page>[Page 80] <lb/></page> + + <note place="headnote">RFC 8613 <lb/>OSCORE <lb/>July 2019 <lb/></note> + + <body>The following COSE and cryptographic parameters are derived: <lb/>o Partial IV: 0x14 (1 byte) <lb/>o kid: 0x (0 byte) <lb/>o aad_array: 0x8501810a40411440 (8 bytes) <lb/>o AAD: 0x8368456e63727970743040488501810a40411440 (20 bytes) <lb/>o plaintext: 0x01b3747631 (5 bytes) <lb/>o encryption key: 0xf0910ed7295e6ad4b54fc793154302ff (16 bytes) <lb/>o nonce: 0x4622d4dd6d944168eefb549868 (13 bytes) <lb/>From the previous parameter, the following is derived: <lb/>o OSCORE option value: 0x0914 (2 bytes) <lb/>o ciphertext: 0x612f1092f1776f1c1668b3825e (13 bytes) <lb/>From there: <lb/>o Protected CoAP request (OSCORE message): 0x44025d1f00003974396c6f6 <lb/>3616c686f7374620914ff612f1092f1776f1c1668b3825e (35 bytes) <lb/>C.5. Test Vector 5: OSCORE Request, Client <lb/>This section contains a test vector for an OSCORE-protected CoAP GET <lb/>request using the security context derived in Appendix C.2. The <lb/>unprotected request only contains the Uri-Path and Uri-Host options. <lb/>Unprotected CoAP request: <lb/>0x440171c30000b932396c6f63616c686f737483747631 (22 bytes) <lb/>Common Context: <lb/>o AEAD Algorithm: 10 (AES-CCM-16-64-128) <lb/>o Key Derivation Function: HKDF SHA-256 <lb/>o Common IV: 0xbe35ae297d2dace910c52e99f9 (13 bytes) <lb/>Sender Context: <lb/>o Sender ID: 0x00 (1 bytes) <lb/></body> + + <note place="footnote">Selander, et al. <lb/>Standards Track <lb/></note> + + <page>[Page 81] <lb/></page> + + <note place="headnote">RFC 8613 <lb/>OSCORE <lb/>July 2019 <lb/></note> + + <body>o Sender Key: 0x321b26943253c7ffb6003b0b64d74041 (16 bytes) <lb/>o Sender Sequence Number: 20 <lb/>The following COSE and cryptographic parameters are derived: <lb/>o Partial IV: 0x14 (1 byte) <lb/>o kid: 0x00 (1 byte) <lb/>o aad_array: 0x8501810a4100411440 (9 bytes) <lb/>o AAD: 0x8368456e63727970743040498501810a4100411440 (21 bytes) <lb/>o plaintext: 0x01b3747631 (5 bytes) <lb/>o encryption key: 0x321b26943253c7ffb6003b0b64d74041 (16 bytes) <lb/>o nonce: 0xbf35ae297d2dace910c52e99ed (13 bytes) <lb/>From the previous parameter, the following is derived: <lb/>o OSCORE option value: 0x091400 (3 bytes) <lb/>o ciphertext: 0x4ed339a5a379b0b8bc731fffb0 (13 bytes) <lb/>From there: <lb/>o Protected CoAP request (OSCORE message): 0x440271c30000b932396c6f6 <lb/>3616c686f737463091400ff4ed339a5a379b0b8bc731fffb0 (36 bytes) <lb/>C.6. Test Vector 6: OSCORE Request, Client <lb/>This section contains a test vector for an OSCORE-protected CoAP GET <lb/>request for an application that sets the ID Context and requires it <lb/>to be sent in the request, so 'kid context' is present in the <lb/>protected message. This test vector uses the security context <lb/>derived in Appendix C.3. The unprotected request only contains the <lb/>Uri-Path and Uri-Host options. <lb/>Unprotected CoAP request: <lb/>0x44012f8eef9bbf7a396c6f63616c686f737483747631 (22 bytes) <lb/>Common Context: <lb/>o AEAD Algorithm: 10 (AES-CCM-16-64-128) <lb/>o Key Derivation Function: HKDF SHA-256 <lb/></body> + + <note place="footnote">Selander, et al. <lb/>Standards Track <lb/></note> + + <page>[Page 82] <lb/></page> + + <note place="headnote">RFC 8613 <lb/>OSCORE <lb/>July 2019 <lb/></note> + + <body>o Common IV: 0x2ca58fb85ff1b81c0b7181b85e (13 bytes) <lb/>o ID Context: 0x37cbf3210017a2d3 (8 bytes) <lb/>Sender Context: <lb/>o Sender ID: 0x (0 bytes) <lb/>o Sender Key: 0xaf2a1300a5e95788b356336eeecd2b92 (16 bytes) <lb/>o Sender Sequence Number: 20 <lb/>The following COSE and cryptographic parameters are derived: <lb/>o Partial IV: 0x14 (1 byte) <lb/>o kid: 0x (0 byte) <lb/>o kid context: 0x37cbf3210017a2d3 (8 bytes) <lb/>o aad_array: 0x8501810a40411440 (8 bytes) <lb/>o AAD: 0x8368456e63727970743040488501810a40411440 (20 bytes) <lb/>o plaintext: 0x01b3747631 (5 bytes) <lb/>o encryption key: 0xaf2a1300a5e95788b356336eeecd2b92 (16 bytes) <lb/>o nonce: 0x2ca58fb85ff1b81c0b7181b84a (13 bytes) <lb/>From the previous parameter, the following is derived: <lb/>o OSCORE option value: 0x19140837cbf3210017a2d3 (11 bytes) <lb/>o ciphertext: 0x72cd7273fd331ac45cffbe55c3 (13 bytes) <lb/>From there: <lb/>o Protected CoAP request (OSCORE message): <lb/>0x44022f8eef9bbf7a396c6f63616c686f73746b19140837cbf3210017a2d3ff <lb/>72cd7273fd331ac45cffbe55c3 (44 bytes) <lb/></body> + + <note place="footnote">Selander, et al. <lb/>Standards Track <lb/></note> + + <page>[Page 83] <lb/></page> + + <note place="headnote">RFC 8613 <lb/>OSCORE <lb/>July 2019 <lb/></note> + + <body>C.7. Test Vector 7: OSCORE Response, Server <lb/>This section contains a test vector for an OSCORE-protected 2.05 <lb/>(Content) response to the request in Appendix C.4. The unprotected <lb/>response has payload "Hello World!" and no options. The protected <lb/>response does not contain a 'kid' nor a Partial IV. Note that some <lb/>parameters are derived from the request. <lb/>Unprotected CoAP response: <lb/>0x64455d1f00003974ff48656c6c6f20576f726c6421 (21 bytes) <lb/>Common Context: <lb/>o AEAD Algorithm: 10 (AES-CCM-16-64-128) <lb/>o Key Derivation Function: HKDF SHA-256 <lb/>o Common IV: 0x4622d4dd6d944168eefb54987c (13 bytes) <lb/>Sender Context: <lb/>o Sender ID: 0x01 (1 byte) <lb/>o Sender Key: 0xffb14e093c94c9cac9471648b4f98710 (16 bytes) <lb/>o Sender Sequence Number: 0 <lb/>The following COSE and cryptographic parameters are derived: <lb/>o aad_array: 0x8501810a40411440 (8 bytes) <lb/>o AAD: 0x8368456e63727970743040488501810a40411440 (20 bytes) <lb/>o plaintext: 0x45ff48656c6c6f20576f726c6421 (14 bytes) <lb/>o encryption key: 0xffb14e093c94c9cac9471648b4f98710 (16 bytes) <lb/>o nonce: 0x4622d4dd6d944168eefb549868 (13 bytes) <lb/>From the previous parameter, the following is derived: <lb/>o OSCORE option value: 0x (0 bytes) <lb/>o ciphertext: 0xdbaad1e9a7e7b2a813d3c31524378303cdafae119106 (22 <lb/>bytes) <lb/></body> + + <note place="footnote">Selander, et al. <lb/>Standards Track <lb/></note> + + <page>[Page 84] <lb/></page> + + <note place="headnote">RFC 8613 <lb/>OSCORE <lb/>July 2019 <lb/></note> + + <body>From there: <lb/>o Protected CoAP response (OSCORE message): <lb/>0x64445d1f0000397490ffdbaad1e9a7e7b2a813d3c31524378303cdafae119106 <lb/>(32 bytes) <lb/>C.8. Test Vector 8: OSCORE Response with Partial IV, Server <lb/>This section contains a test vector for an OSCORE protected 2.05 <lb/>(Content) response to the request in Appendix C.4. The unprotected <lb/>response has payload "Hello World!" and no options. The protected <lb/>response does not contain a 'kid', but contains a Partial IV. Note <lb/>that some parameters are derived from the request. <lb/>Unprotected CoAP response: <lb/>0x64455d1f00003974ff48656c6c6f20576f726c6421 (21 bytes) <lb/>Common Context: <lb/>o AEAD Algorithm: 10 (AES-CCM-16-64-128) <lb/>o Key Derivation Function: HKDF SHA-256 <lb/>o Common IV: 0x4622d4dd6d944168eefb54987c (13 bytes) <lb/>Sender Context: <lb/>o Sender ID: 0x01 (1 byte) <lb/>o Sender Key: 0xffb14e093c94c9cac9471648b4f98710 (16 bytes) <lb/>o Sender Sequence Number: 0 <lb/>The following COSE and cryptographic parameters are derived: <lb/>o Partial IV: 0x00 (1 byte) <lb/>o aad_array: 0x8501810a40411440 (8 bytes) <lb/>o AAD: 0x8368456e63727970743040488501810a40411440 (20 bytes) <lb/>o plaintext: 0x45ff48656c6c6f20576f726c6421 (14 bytes) <lb/>o encryption key: 0xffb14e093c94c9cac9471648b4f98710 (16 bytes) <lb/>o nonce: 0x4722d4dd6d944169eefb54987c (13 bytes) <lb/></body> + + <note place="footnote">Selander, et al. <lb/>Standards Track <lb/></note> + + <page>[Page 85] <lb/></page> + + <note place="headnote">RFC 8613 <lb/>OSCORE <lb/>July 2019 <lb/></note> + + <body>From the previous parameter, the following is derived: <lb/>o OSCORE option value: 0x0100 (2 bytes) <lb/>o ciphertext: 0x4d4c13669384b67354b2b6175ff4b8658c666a6cf88e (22 <lb/>bytes) <lb/>From there: <lb/>o Protected CoAP response (OSCORE message): 0x64445d1f00003974920100 <lb/>ff4d4c13669384b67354b2b6175ff4b8658c666a6cf88e (34 bytes) <lb/>Appendix D. Overview of Security Properties <lb/>D.1. Threat Model <lb/>This section describes the threat model using the terms of [RFC3552]. <lb/>It is assumed that the endpoints running OSCORE have not themselves <lb/>been compromised. The attacker is assumed to have control of the <lb/>CoAP channel over which the endpoints communicate, including <lb/>intermediary nodes. The attacker is capable of launching any passive <lb/>or active on-path or off-path attacks; including eavesdropping, <lb/>traffic analysis, spoofing, insertion, modification, deletion, delay, <lb/>replay, man-in-the-middle, and denial-of-service attacks. This means <lb/>that the attacker can read any CoAP message on the network and <lb/>undetectably remove, change, or inject forged messages onto the wire. <lb/>OSCORE targets the protection of the CoAP request/response layer <lb/>(Section 2 of [RFC7252]) between the endpoints, including the CoAP <lb/>Payload, Code, Uri-Path/Uri-Query, and the other Class E option <lb/>instances (Section 4.1). <lb/>OSCORE does not protect the CoAP messaging layer (Section 2 of <lb/>[RFC7252]) or other lower layers involved in routing and transporting <lb/>the CoAP requests and responses. <lb/>Additionally, OSCORE does not protect Class U option instances <lb/>(Section 4.1), as these are used to support CoAP forward proxy <lb/>operations (see Section 5.7.2 of [RFC7252]). The supported proxies <lb/>(forwarding, cross-protocol, e.g., CoAP to CoAP-mappable protocols <lb/>such as HTTP) must be able to change certain Class U options (by <lb/>instruction from the Client), resulting in the CoAP request being <lb/>redirected to the server. Changes caused by the proxy may result in <lb/>the request not reaching the server or reaching the wrong server. <lb/>For cross-protocol proxies, mappings are done on the Outer part of <lb/></body> + + <note place="footnote">Selander, et al. <lb/>Standards Track <lb/></note> + + <page>[Page 86] <lb/></page> + + <note place="headnote">RFC 8613 <lb/>OSCORE <lb/>July 2019 <lb/></note> + + <body>the message so these protocols are essentially used as transport. <lb/>Manipulation of these options may thus impact whether the protected <lb/>message reaches or does not reach the destination endpoint. <lb/>Attacks on unprotected CoAP message fields generally causes denial-<lb/>of-service attacks which are out of scope of this document, more <lb/>details are given in Appendix D.5. <lb/>Attacks against the CoAP request-response layer are in scope. OSCORE <lb/>is intended to protect against eavesdropping, spoofing, insertion, <lb/>modification, deletion, replay, and man-in-the middle attacks. <lb/>OSCORE is susceptible to traffic analysis as discussed later in <lb/>Appendix D. <lb/>D.2. Supporting Proxy Operations <lb/>CoAP is designed to work with intermediaries reading and/or changing <lb/>CoAP message fields to perform supporting operations in constrained <lb/>environments, e.g., forwarding and cross-protocol translations. <lb/>Securing CoAP on the transport layer protects the entire message <lb/>between the endpoints, in which case CoAP proxy operations are not <lb/>possible. In order to enable proxy operations, security on the <lb/>transport layer needs to be terminated at the proxy; in which case, <lb/>the CoAP message in its entirety is unprotected in the proxy. <lb/>Requirements for CoAP end-to-end security are specified in <lb/>[CoAP-E2E-Sec], in particular, forwarding is detailed in <lb/>Section 2.2.1. The client and server are assumed to be honest, while <lb/>proxies and gateways are only trusted to perform their intended <lb/>operations. <lb/>By working at the CoAP layer, OSCORE enables different CoAP message <lb/>fields to be protected differently, which allows message fields <lb/>required for proxy operations to be available to the proxy while <lb/>message fields intended for the other endpoint remain protected. In <lb/>the remainder of this section, we analyze how OSCORE protects the <lb/>protected message fields and the consequences of message fields <lb/>intended for proxy operation being unprotected. <lb/>D.3. Protected Message Fields <lb/>Protected message fields are included in the plaintext (Section 5.3) <lb/>and the AAD (Section 5.4) of the COSE_Encrypt0 object and encrypted <lb/>using an AEAD algorithm. <lb/></body> + + <note place="footnote">Selander, et al. <lb/>Standards Track <lb/></note> + + <page>[Page 87] <lb/></page> + + <note place="headnote">RFC 8613 <lb/>OSCORE <lb/>July 2019 <lb/></note> + + <body>OSCORE depends on a preestablished random Master Secret <lb/>(Section 12.3) used to derive encryption keys, and a construction for <lb/>making (key, nonce) pairs unique (Appendix D.4). Assuming this is <lb/>true, and the keys are used for no more data than indicated in <lb/>Section 7.2.1, OSCORE should provide the following guarantees: <lb/>o Confidentiality: An attacker should not be able to determine the <lb/>plaintext contents of a given OSCORE message or determine that <lb/>different plaintexts are related (Section 5.3). <lb/>o Integrity: An attacker should not be able to craft a new OSCORE <lb/>message with protected message fields different from an existing <lb/>OSCORE message that will be accepted by the receiver. <lb/>o Request-response binding: An attacker should not be able to make a <lb/>client match a response to the wrong request. <lb/>o Non-replayability: An attacker should not be able to cause the <lb/>receiver to accept a message that it has previously received and <lb/>accepted. <lb/>In the above, the attacker is anyone except the endpoints, e.g., a <lb/>compromised intermediary. Informally, OSCORE provides these <lb/>properties by AEAD-protecting the plaintext with a strong key and <lb/>uniqueness of (key, nonce) pairs. AEAD encryption [RFC5116] provides <lb/>confidentiality and integrity for the data. Response-request binding <lb/>is provided by including the 'kid' and Partial IV of the request in <lb/>the AAD of the response. Non-replayability of requests and <lb/>notifications is provided by using unique (key, nonce) pairs and a <lb/>replay protection mechanism (application dependent, see Section 7.4). <lb/>OSCORE is susceptible to a variety of traffic analysis attacks based <lb/>on observing the length and timing of encrypted packets. OSCORE does <lb/>not provide any specific defenses against this form of attack, but <lb/>the application may use a padding mechanism to prevent an attacker <lb/>from directly determining the length of the padding. However, <lb/>information about padding may still be revealed by side-channel <lb/>attacks observing differences in timing. <lb/>D.4. Uniqueness of (key, nonce) <lb/>In this section, we show that (key, nonce) pairs are unique as long <lb/>as the requirements in Sections 3.3 and 7.2.1 are followed. <lb/>Fix a Common Context (Section 3.1) and an endpoint, called the <lb/>encrypting endpoint. An endpoint may alternate between client and <lb/>server roles, but each endpoint always encrypts with the Sender Key <lb/>of its Sender Context. Sender Keys are (stochastically) unique since <lb/></body> + + <note place="footnote">Selander, et al. <lb/>Standards Track <lb/></note> + + <page>[Page 88] <lb/></page> + + <note place="headnote">RFC 8613 <lb/>OSCORE <lb/>July 2019 <lb/></note> + + <body>they are derived with HKDF using unique Sender IDs, so messages <lb/>encrypted by different endpoints use different keys. It remains to <lb/>be proven that the nonces used by the fixed endpoint are unique. <lb/>Since the Common IV is fixed, the nonces are determined by PIV, where <lb/>PIV takes the value of the Partial IV of the request or of the <lb/>response, and by the Sender ID of the endpoint generating that <lb/>Partial IV (ID_PIV). The nonce construction (Section 5.2) with the <lb/>size of the ID_PIV (S) creates unique nonces for different (ID_PIV, <lb/>PIV) pairs. There are two cases: <lb/>A. For requests, and responses with Partial IV (e.g., Observe <lb/>notifications): <lb/>o ID_PIV = Sender ID of the encrypting endpoint <lb/>o PIV = current Partial IV of the encrypting endpoint <lb/>Since the encrypting endpoint steps the Partial IV for each use, the <lb/>nonces used in case A are all unique as long as the number of <lb/>encrypted messages is kept within the required range (Section 7.2.1). <lb/>B. For responses without Partial IV (e.g., single response to a <lb/>request): <lb/>o ID_PIV = Sender ID of the endpoint generating the request <lb/>o PIV = Partial IV of the request <lb/>Since the Sender IDs are unique, ID_PIV is different from the Sender <lb/>ID of the encrypting endpoint. Therefore, the nonces in case B are <lb/>different compared to nonces in case A, where the encrypting endpoint <lb/>generated the Partial IV. Since the Partial IV of the request is <lb/>verified for replay (Section 7.4) associated to this Recipient <lb/>Context, PIV is unique for this ID_PIV, which makes all nonces in <lb/>case B distinct. <lb/>D.5. Unprotected Message Fields <lb/>This section analyzes attacks on message fields that are not <lb/>protected by OSCORE according to the threat model Appendix D.1. <lb/>D.5.1. CoAP Header Fields <lb/>o Version. The CoAP version [RFC7252] is not expected to be <lb/>sensitive to disclosure. Currently, there is only one CoAP <lb/>version defined. A change of this parameter is potentially a <lb/></body> + + <note place="footnote">Selander, et al. <lb/>Standards Track <lb/></note> + + <page>[Page 89] <lb/></page> + + <note place="headnote">RFC 8613 <lb/>OSCORE <lb/>July 2019 <lb/></note> + + <body>denial-of-service attack. Future versions of CoAP need to analyze <lb/>attacks to OSCORE-protected messages due to an adversary changing <lb/>the CoAP version. <lb/>o Token/Token Length. The Token field is a client-local identifier <lb/>for differentiating between concurrent requests [RFC7252]. CoAP <lb/>proxies are allowed to read and change Token and Token Length <lb/>between hops. An eavesdropper reading the Token can match <lb/>requests to responses that can be used in traffic analysis. In <lb/>particular, this is true for notifications, where multiple <lb/>responses are matched to one request. Modifications of Token and <lb/>Token Length by an on-path attacker may become a denial-of-service <lb/>attack, since it may prevent the client to identify to which <lb/>request the response belongs or to find the correct information to <lb/>verify integrity of the response. <lb/>o Code. The Outer CoAP Code of an OSCORE message is POST or FETCH <lb/>for requests with corresponding response codes. An endpoint <lb/>receiving the message discards the Outer CoAP Code and uses the <lb/>Inner CoAP Code instead (see Section 4.2). Hence, modifications <lb/>from attackers to the Outer Code do not impact the receiving <lb/>endpoint. However, changing the Outer Code from FETCH to a Code <lb/>value for a method that does not work with Observe (such as POST) <lb/>may, depending on proxy implementation since Observe is undefined <lb/>for several Codes, cause the proxy to not forward notifications, <lb/>which is a denial-of-service attack. The use of FETCH rather than <lb/>POST reveals no more than what is revealed by the presence of the <lb/>Outer Observe option. <lb/>o Type/Message ID. The Type/Message ID fields [RFC7252] reveal <lb/>information about the UDP transport binding, e.g., an eavesdropper <lb/>reading the Type or Message ID gain information about how UDP <lb/>messages are related to each other. CoAP proxies are allowed to <lb/>change Type and Message ID. These message fields are not present <lb/>in CoAP over TCP [RFC8323] and do not impact the request/response <lb/>message. A change of these fields in a UDP hop is a denial-of-<lb/>service attack. By sending an ACK, an attacker can make the <lb/>endpoint believe that it does not need to retransmit the previous <lb/>message. By sending a RST, an attacker may be able to cancel an <lb/>observation. By changing a NON to a CON, the attacker can cause <lb/>the receiving endpoint to ACK messages for which no ACK was <lb/>requested. <lb/>o Length. This field contains the length of the message [RFC8323], <lb/>which may be used for traffic analysis. This message field is not <lb/>present in CoAP over UDP and does not impact the request/response <lb/>message. A change of Length is a denial-of-service attack similar <lb/>to changing TCP header fields. <lb/></body> + + <note place="footnote">Selander, et al. <lb/>Standards Track <lb/></note> + + <page>[Page 90] <lb/></page> + + <note place="headnote">RFC 8613 <lb/>OSCORE <lb/>July 2019 <lb/></note> + + <body>D.5.2. CoAP Options <lb/>o Max-Age. The Outer Max-Age is set to zero to avoid unnecessary <lb/>caching of OSCORE error responses. Changing this value thus may <lb/>cause unnecessary caching. No additional information is carried <lb/>with this option. <lb/>o Proxy-Uri/Proxy-Scheme. These options are used in CoAP forward <lb/>proxy deployments. With OSCORE, the Proxy-Uri option does not <lb/>contain the Uri-Path/Uri-Query parts of the URI. The other parts <lb/>of Proxy-Uri cannot be protected because forward proxies need to <lb/>change them in order to perform their functions. The server can <lb/>verify what scheme is used in the last hop, but not what was <lb/>requested by the client or what was used in previous hops. <lb/>o Uri-Host/Uri-Port. In forward proxy deployments, the Uri-Host/ <lb/>Uri-Port may be changed by an adversary, and the application needs <lb/>to handle the consequences of that (see Section 4.1.3.2). The <lb/>Uri-Host may either be omitted, reveal information equivalent to <lb/>that of the IP address, or reveal more privacy-sensitive <lb/>information, which is discouraged. <lb/>o Observe. The Outer Observe option is intended for a proxy to <lb/>support forwarding of Observe messages, but it is ignored by the <lb/>endpoints since the Inner Observe option determines the processing <lb/>in the endpoints. Since the Partial IV provides absolute ordering <lb/>of notifications, it is not possible for an intermediary to spoof <lb/>reordering (see Section 4.1.3.5). The absence of Partial IV, <lb/>since only allowed for the first notification, does not prevent <lb/>correct ordering of notifications. The size and distributions of <lb/>notifications over time may reveal information about the content <lb/>or nature of the notifications. Cancellations (Section 4.1.3.5.1) <lb/>are not bound to the corresponding registrations in the same way <lb/>responses are bound to requests in OSCORE (see Appendix D.3). <lb/>However, that does not make attacks based on mismatched <lb/>cancellations possible, since for cancellations to be accepted, <lb/>all options in the decrypted message except for ETag options MUST <lb/>be the same (see Section 4.1.3.5). <lb/>o Block1/Block2/Size1/Size2. The Outer Block options enable <lb/>fragmentation of OSCORE messages in addition to segmentation <lb/>performed by the Inner Block options. The presence of these <lb/>options indicates a large message being sent, and the message size <lb/>can be estimated and used for traffic analysis. Manipulating <lb/>these options is a potential denial-of-service attack, e.g., <lb/>injection of alleged Block fragments. The specification of a <lb/></body> + + <note place="footnote">Selander, et al. <lb/>Standards Track <lb/></note> + + <page>[Page 91] <lb/></page> + + <note place="headnote">RFC 8613 <lb/>OSCORE <lb/>July 2019 <lb/></note> + + <body>maximum size of message, MAX_UNFRAGMENTED_SIZE <lb/>(Section 4.1.3.4.2), above which messages will be dropped, is <lb/>intended as one measure to mitigate this kind of attack. <lb/>o No-Response. The Outer No-Response option is used to support <lb/>proxy functionality, specifically to avoid error transmissions <lb/>from proxies to clients, and to avoid bandwidth reduction to <lb/>servers by proxies applying congestion control when not receiving <lb/>responses. Modifying or introducing this option is a potential <lb/>denial-of-service attack against the proxy operations, but since <lb/>the option has an Inner value, its use can be securely agreed upon <lb/>between the endpoints. The presence of this option is not <lb/>expected to reveal any sensitive information about the message <lb/>exchange. <lb/>o OSCORE. The OSCORE option contains information about the <lb/>compressed COSE header. Changing this field may cause OSCORE <lb/>verification to fail. <lb/>D.5.3. Error and Signaling Messages <lb/>Error messages occurring during CoAP processing are protected end-to-<lb/>end. Error messages occurring during OSCORE processing are not <lb/>always possible to protect, e.g., if the receiving endpoint cannot <lb/>locate the right security context. For this setting, unprotected <lb/>error messages are allowed as specified to prevent extensive <lb/>retransmissions. Those error messages can be spoofed or manipulated, <lb/>which is a potential denial-of-service attack. <lb/>This document specifies OPTIONAL error codes and specific diagnostic <lb/>payloads for OSCORE processing error messages. Such messages might <lb/>reveal information about how many and which security contexts exist <lb/>on the server. Servers MAY want to omit the diagnostic payload of <lb/>error messages, use the same error code for all errors, or avoid <lb/>responding altogether in case of OSCORE processing errors, if that is <lb/>a security concern for the application. Moreover, clients MUST NOT <lb/>rely on the error code or the diagnostic payload to trigger specific <lb/>actions, as these errors are unprotected and can be spoofed or <lb/>manipulated. <lb/>Signaling messages used in CoAP over TCP [RFC8323] are intended to be <lb/>hop-by-hop; spoofing signaling messages can be used as a denial-of-<lb/>service attack of a TCP connection. <lb/></body> + + <note place="footnote">Selander, et al. <lb/>Standards Track <lb/></note> + + <page>[Page 92] <lb/></page> + + <note place="headnote">RFC 8613 <lb/>OSCORE <lb/>July 2019 <lb/></note> + + <body>D.5.4. HTTP Message Fields <lb/>In contrast to CoAP, where OSCORE does not protect header fields to <lb/>enable CoAP-CoAP proxy operations, the use of OSCORE with HTTP is <lb/>restricted to transporting a protected CoAP message over an HTTP hop. <lb/>Any unprotected HTTP message fields may reveal information about the <lb/>transport of the OSCORE message and enable various denial-of-service <lb/>attacks. It is RECOMMENDED to additionally use TLS [RFC8446] for <lb/>HTTP hops, which enables encryption and integrity protection of <lb/>headers, but still leaves some information for traffic analysis. <lb/>Appendix E. CDDL Summary <lb/>Data structure definitions in the present specification employ the <lb/>CDDL language for conciseness and precision [RFC8610]. This appendix <lb/>summarizes the small subset of CDDL that is used in the present <lb/>specification. <lb/>Within the subset being used here, a CDDL rule is of the form "name = <lb/>type", where "name" is the name given to the "type". A "type" can be <lb/>one of: <lb/>o a reference to another named type, by giving its name. The <lb/>predefined named types used in the present specification are as <lb/>follows: "uint", an unsigned integer (as represented in CBOR by <lb/>major type 0); "int", an unsigned or negative integer (as <lb/>represented in CBOR by major type 0 or 1); "bstr", a byte string <lb/>(as represented in CBOR by major type 2); "tstr", a text string <lb/>(as represented in CBOR by major type 3); <lb/>o a choice between two types, by giving both types separated by a <lb/>"/"; <lb/>o an array type (as represented in CBOR by major type 4), where the <lb/>sequence of elements of the array is described by giving a <lb/>sequence of entries separated by commas ",", and this sequence is <lb/>enclosed by square brackets "[" and "]". Arrays described by an <lb/>array description contain elements that correspond one-to-one to <lb/>the sequence of entries given. Each entry of an array description <lb/>is of the form "name : type", where "name" is the name given to <lb/>the entry and "type" is the type of the array element <lb/>corresponding to this entry. <lb/></body> + + <note place="footnote">Selander, et al. <lb/>Standards Track <lb/></note> + + <page>[Page 93] <lb/></page> + + <note place="headnote">RFC 8613 <lb/>OSCORE <lb/>July 2019 <lb/></note> + + <div type="acknowledgement">Acknowledgments <lb/>The following individuals provided input to this document: Christian <lb/>Amsuess, Tobias Andersson, Carsten Bormann, Joakim Brorsson, Ben <lb/>Campbell, Esko Dijk, Jaro Fietz, Thomas Fossati, Martin Gunnarsson, <lb/>Klaus Hartke, Rikard Hoeglund, Mirja Kuehlewind, Kathleen Moriarty, <lb/>Eric Rescorla, Michael Richardson, Adam Roach, Jim Schaad, Peter van <lb/>der Stok, Dave Thaler, Martin Thomson, Marco Tiloca, William Vignat, <lb/>and Malisa Vucinic. <lb/>Ludwig Seitz and Goeran Selander worked on this document as part of <lb/>the CelticPlus project CyberWI, with funding from Vinnova. Ludwig <lb/>Seitz had additional funding from the SSF project SEC4Factory under <lb/>the grant RIT17-0032. <lb/></div> + + Authors' Addresses <lb/> + + <front>Goeran Selander <lb/>Ericsson AB <lb/>Email: goran.selander@ericsson.com <lb/>John Mattsson <lb/>Ericsson AB <lb/>Email: john.mattsson@ericsson.com <lb/>Francesca Palombini <lb/>Ericsson AB <lb/>Email: francesca.palombini@ericsson.com <lb/>Ludwig Seitz <lb/>RISE <lb/>Email: ludwig.seitz@ri.se <lb/></front> + + <note place="footnote">Selander, et al. <lb/>Standards Track <lb/></note> + + <page>[Page 94] </page> + + + </text> +</tei> diff --git a/grobid-trainer/resources/dataset/segmentation/sdo/ietf/corpus/tei/XP015133683.training.segmentation.tei.xml b/grobid-trainer/resources/dataset/segmentation/sdo/ietf/corpus/tei/XP015133683.training.segmentation.tei.xml new file mode 100644 index 0000000000..8b99e09804 --- /dev/null +++ b/grobid-trainer/resources/dataset/segmentation/sdo/ietf/corpus/tei/XP015133683.training.segmentation.tei.xml @@ -0,0 +1,89 @@ +<?xml version="1.0" ?> +<tei xml:space="preserve"> + <teiHeader> + <fileDesc xml:id="0"/> + </teiHeader> + <text xml:lang="en"> + <front>server date 20190720; downloaded by EPO on 20190722 <lb/>Internet Engineering Task Force (IETF) <lb/>E. Wilde <lb/>Request for Comments: 8631 <lb/>July 2019 <lb/>Category: Informational <lb/>ISSN: 2070-1721 <lb/>Link Relation Types for Web Services <lb/>Abstract <lb/>Many resources provided on the Web are part of sets of resources that <lb/>are provided in a context that is managed by one particular service <lb/>provider. Often, these sets of resources are referred to as "Web <lb/>services" or "Web APIs". This specification defines link relations <lb/>that represent relationships from Web services or APIs to resources <lb/>that provide documentation, descriptions, metadata, or status <lb/>information for these resources. Documentation is primarily intended <lb/>for human consumers, whereas descriptions are primarily intended for <lb/>automated consumers. Metadata provides information about a service's <lb/>context. This specification also defines a link relation to identify <lb/>status resources that are used to represent information about service <lb/>status. <lb/>Status of This Memo <lb/>This document is not an Internet Standards Track specification; it is <lb/>published for informational purposes. <lb/>This document is a product of the Internet Engineering Task Force <lb/>(IETF). It represents the consensus of the IETF community. It has <lb/>received public review and has been approved for publication by the <lb/>Internet Engineering Steering Group (IESG). Not all documents <lb/>approved by the IESG are candidates for any level of Internet <lb/>Standard; see Section 2 of RFC 7841. <lb/>Information about the current status of this document, any errata, <lb/>and how to provide feedback on it may be obtained at <lb/>https://www.rfc-editor.org/info/rfc8631. <lb/>Wilde <lb/>Informational <lb/>[Page 1] <lb/>RFC 8631 <lb/>Link Relation Types for Web Services <lb/>July 2019 <lb/> Copyright Notice <lb/>Copyright (c) 2019 IETF Trust and the persons identified as the <lb/>document authors. All rights reserved. <lb/>This document is subject to BCP 78 and the IETF Trust's Legal <lb/>Provisions Relating to IETF Documents <lb/>(https://trustee.ietf.org/license-info) in effect on the date of <lb/>publication of this document. Please review these documents <lb/>carefully, as they describe your rights and restrictions with respect <lb/>to this document. Code Components extracted from this document must <lb/>include Simplified BSD License text as described in Section 4.e of <lb/>the Trust Legal Provisions and are provided without warranty as <lb/>described in the Simplified BSD License. <lb/></front> + + <div type="toc">Table of Contents <lb/>1. Introduction . . . . . . . . . . . . . . . . . . . . . . . . <lb/>2 <lb/>2. Terminology . . . . . . . . . . . . . . . . . . . . . . . . . <lb/>4 <lb/>3. Web Services . . . . . . . . . . . . . . . . . . . . . . . . <lb/>4 <lb/>3.1. Documenting Web Services . . . . . . . . . . . . . . . . <lb/>5 <lb/>3.2. Describing Web Services . . . . . . . . . . . . . . . . . <lb/>5 <lb/>3.3. Unified Documentation/Description . . . . . . . . . . . . <lb/>5 <lb/>4. Link Relations for Web Services . . . . . . . . . . . . . . . <lb/>5 <lb/>4.1. The service-doc Link Relation Type . . . . . . . . . . . <lb/>6 <lb/>4.2. The service-desc Link Relation Type . . . . . . . . . . . <lb/>6 <lb/>4.3. The service-meta Link Relation Type . . . . . . . . . . . <lb/>6 <lb/>5. Web Service Status Resources . . . . . . . . . . . . . . . . <lb/>7 <lb/>6. IANA Considerations . . . . . . . . . . . . . . . . . . . . . <lb/>7 <lb/>6.1. Link Relation Type: service-doc . . . . . . . . . . . . . <lb/>7 <lb/>6.2. Link Relation Type: service-desc . . . . . . . . . . . . <lb/>7 <lb/>6.3. Link Relation Type: service-meta . . . . . . . . . . . . <lb/>8 <lb/>6.4. Link Relation Type: status . . . . . . . . . . . . . . . <lb/>8 <lb/>7. Security Considerations . . . . . . . . . . . . . . . . . . . <lb/>8 <lb/>8. References . . . . . . . . . . . . . . . . . . . . . . . . . <lb/>9 <lb/>8.1. Normative References . . . . . . . . . . . . . . . . . . <lb/>9 <lb/>8.2. Informative References . . . . . . . . . . . . . . . . . <lb/>9 <lb/>Acknowledgements . . . . . . . . . . . . . . . . . . . . . . . . <lb/>9 <lb/>Author's Address . . . . . . . . . . . . . . . . . . . . . . . . <lb/>9 <lb/></div> + + <note place="footnote">Wilde <lb/>Informational <lb/></note> + + <page>[Page 2] <lb/></page> + + <note place="headnote">RFC 8631 <lb/>Link Relation Types for Web Services <lb/>July 2019 <lb/></note> + + <body>1. Introduction <lb/>One of the defining aspects of the Web is that it is possible to <lb/>interact with Web resources without any prior knowledge of the <lb/>specifics of the resource. Following the practices described in Web <lb/>architecture [W3C.REC-webarch-20041215] by using URIs, HTTP, and <lb/>media types, the Web's uniform interface allows interactions with <lb/>resources without the more complex binding procedures often necessary <lb/>with other approaches. <lb/>Many resources on the Web are provided as part of a set of resources <lb/>that are referred to as a "Web service" or a "Web API". In many <lb/>cases, these services or APIs are defined and managed as a whole, and <lb/>it may be desirable for clients to be able to discover this service <lb/>information. <lb/>Service information that provides information on how to use service <lb/>resources can be broadly separated into two categories: One category <lb/>primarily targets human users and often uses generic representations <lb/>for human readable documents, such as HTML or PDF. The other <lb/>category is structured information that follows a more formalized <lb/>description model and is primarily intended for consumption by <lb/>machines --for example, tools and code libraries. <lb/>In the context of this memo, the human-oriented variant is referred <lb/>to as "documentation", and the machine-oriented variant is referred <lb/>to as "description". <lb/>These two categories are not necessarily mutually exclusive, as <lb/>representations have been proposed that are intended for both human <lb/>consumption and interpretation by machine clients. In addition, a <lb/>typical pattern for service documentation/descriptions is that there <lb/>is human-oriented, high-level documentation that is intended to put a <lb/>service in context and explain the general model, which is <lb/>complemented by machine-level descriptions that are intended as <lb/>detailed technical descriptions of the service. These two resources <lb/>could be interlinked, but since they are intended for different <lb/>audiences, it can make sense to provide entry points for both of <lb/>them. <lb/>In addition, while both documentation and descriptions may be <lb/>provided as part of a Web service, there may be other information as <lb/>well. Generally speaking, a Web service may have any metadata/ <lb/>resources associated with it (with documentation and descriptions <lb/>being two specific kinds of resources). If there is a way in which <lb/>all of these metadata/resources can be represented, then it should be <lb/>possible to find such a resource that provides access to general Web <lb/>service metadata. <lb/></body> + + <note place="footnote">Wilde <lb/>Informational <lb/></note> + + <page>[Page 3] <lb/></page> + + <note place="headnote">RFC 8631 <lb/>Link Relation Types for Web Services <lb/>July 2019 <lb/></note> + + <body>In addition to these resources about mostly static aspects of a Web <lb/>service, this memo also defines a link relation that allows providers <lb/>of a Web service to link to a resource that represents status <lb/>information about the service. This information often represents <lb/>operational information that allows service consumers to retrieve <lb/>information about "service health" and related issues. <lb/>This memo places no constraints on the specific representations used <lb/>for all of these resources. It simply allows providers of a Web <lb/>service to make the documentation, descriptions, metadata, and status <lb/>of their services discoverable and defines link relations that serve <lb/>that purpose. <lb/>2. Terminology <lb/>The key words "MUST", "MUST NOT", "REQUIRED", "SHALL", "SHALL NOT", <lb/>"SHOULD", "SHOULD NOT", "RECOMMENDED", "NOT RECOMMENDED", "MAY", and <lb/>"OPTIONAL" in this document are to be interpreted as described in <lb/>BCP 14 [RFC2119] [RFC8174] when, and only when, they appear in all <lb/>capitals, as shown here. <lb/>3. Web Services <lb/>"Web Services" or "Web APIs" (sometimes also referred to as "HTTP <lb/>API" or "REST API") expose information and services on the Web. <lb/>Following the principles of Web architecture <lb/>[W3C.REC-webarch-20041215], they expose URI-identified resources, <lb/>which are then accessed and transferred using a specific <lb/>representation. Many services use representations that contain <lb/>links, and these links are often typed links. <lb/>Using typed links, resources can identify relationship types to other <lb/>resources. RFC 8288 [RFC8288] establishes a framework of registered <lb/>link relation types, which are identified by simple strings and <lb/>registered in an IANA registry. Any resource that supports typed <lb/>links according to RFC 8288 can then use these identifiers to <lb/>represent resource relationships on the Web without having to <lb/>reinvent registered relation types. <lb/>In recent years, Web services, as well as their documentation and <lb/>description languages, have gained popularity due to the general <lb/>popularity of the Web as a platform for providing information and <lb/>services. However, the design of documentation and description <lb/>languages varies according to a number of factors, such as the <lb/>general application domain, the preferred application data model, and <lb/>the preferred approach for exposing services. <lb/></body> + + <note place="footnote">Wilde <lb/>Informational <lb/></note> + + <page>[Page 4] <lb/></page> + + <note place="headnote">RFC 8631 <lb/>Link Relation Types for Web Services <lb/>July 2019 <lb/></note> + + <body>This specification allows service providers to use a unified method <lb/>to link to service documentation and/or descriptions. This link <lb/>should not make any assumptions about the provided type of <lb/>documentation and/or descriptions, so service providers can choose <lb/>those that best fit their services and needs. <lb/>This specification also allows service providers to link to general <lb/>service metadata. One part of the metadata may have links to <lb/>documentation and/or description as well as other information about a <lb/>service, such as deployment or operational information. <lb/>3.1. Documenting Web Services <lb/>In the context of this specification, "documentation" refers to <lb/>information that is primarily intended for human consumption. <lb/>Typical representations of this kind of documentation are HTML and <lb/>PDF. <lb/>Documentation is often structured, but its structure depends on the <lb/>structure of the service in question as well as the specific way in <lb/>which the authors choose to present it. <lb/>3.2. Describing Web Services <lb/>In the context of this specification, "description" refers to <lb/>information that is primarily intended for machine consumption. <lb/>Typical representations are dictated by the technology underlying the <lb/>service itself, which means that description formats in today's <lb/>technology landscape are based on XML, JSON, Resource Description <lb/>Framework (RDF), and a variety of other structured data models. In <lb/>each of those technologies, there may be a variety of languages <lb/>defined to serve the same general purpose of describing a Web <lb/>service. <lb/>Descriptions are always structured, but the structuring principles <lb/>depend on the nature of the described service. For example, one of <lb/>the earlier service description approaches, the Web Services <lb/>Description Language (WSDL), uses "operations" as its core concept, <lb/>which are essentially identical to function calls because the <lb/>underlying model is based on the Remote Procedure Call (RPC) model. <lb/>Other description languages for non-RPC approaches to services will <lb/>use different structuring approaches, such as structuring service <lb/>descriptions by URIs and/or URI patterns. <lb/></body> + + <note place="footnote">Wilde <lb/>Informational <lb/></note> + + <page>[Page 5] <lb/></page> + + <note place="headnote">RFC 8631 <lb/>Link Relation Types for Web Services <lb/>July 2019 <lb/></note> + + <body>3.3. Unified Documentation/Description <lb/>If service providers use an approach where there is no distinction <lb/>between service documentation (Section 3.1) and service description <lb/>(Section 3.2), then they may not feel the need to use two separate <lb/>links. In such a case, an alternative approach is to use the <lb/>previously defined "service" link relation type [RFC5023], which does <lb/>not indicate whether it links to documentation or description and <lb/>thus may be a better fit if no such differentiation is required. <lb/>4. Link Relations for Web Services <lb/>In order to allow Web services to represent the relation of <lb/>individual resources to service documentation/description and <lb/>metadata, this specification introduces and registers three new link <lb/>relation types. <lb/>4.1. The service-doc Link Relation Type <lb/>The "service-doc" link relation type is used to represent the fact <lb/>that a resource or a set of resources is documented at a specific <lb/>URI. The target resource is expected to provide documentation that <lb/>is primarily intended for human consumption. <lb/>4.2. The service-desc Link Relation Type <lb/>The "service-desc" link relation type is used to represent the fact <lb/>that a resource or a set of resources is described at a specific URI. <lb/>The target resource is expected to provide a service description that <lb/>is primarily intended for machine consumption. In many cases, it is <lb/>provided in a representation that is consumed by tools, code <lb/>libraries, or similar components. <lb/>4.3. The service-meta Link Relation Type <lb/>The "service-meta" link relation type is used to link to available <lb/>metadata for the service context of a resource. Service metadata is <lb/>any kind of data that may be of interest to existing or potential <lb/>service users, with documentation/description being only two possible <lb/>facets of service metadata. The target resource is expected to <lb/>provide a representation that is primarily intended for machine <lb/>consumption. In many cases, it is provided in a representation that <lb/>is consumed by tools, code libraries, or similar components. <lb/>Since service metadata can have many different purposes and use many <lb/>different representations, it may make sense for representations <lb/>using the "service-meta" link relation to offer additional hints <lb/>about the specific kind or format of metadata that is being linked. <lb/></body> + + <note place="footnote">Wilde <lb/>Informational <lb/></note> + + <page>[Page 6] <lb/></page> + + <note place="headnote">RFC 8631 <lb/>Link Relation Types for Web Services <lb/>July 2019 <lb/></note> + + <body>This definition of the "service-meta" link relation makes no specific <lb/>assumptions about how these link hints will be represented, and the <lb/>specific mechanism will depend on the context where the "service-<lb/>meta" link relation is being used. <lb/>One example is that a "service-desc" link may identify an OpenAPI <lb/>description, which is supposed to be the machine-readable description <lb/>of a Web API. A "service-meta" link may identify a resource that <lb/>contains additional metadata about the Web API, such as labels that <lb/>classify the API according to a labeling scheme and a privacy policy <lb/>that makes statements about how the Web API manages personally <lb/>identifiable information. <lb/>5. Web Service Status Resources <lb/>Web services providing access to one or more resources often are <lb/>hosted and operated in an environment for which status information <lb/>may be available. This information may be as simple as confirming <lb/>that a service is operational, or it may provide additional <lb/>information about different aspects of a service and/or a history of <lb/>status information, possibly listing incidents and their resolution. <lb/>The "status" link relation type can be used to link to such a status <lb/>resource, allowing service consumers to retrieve information about a <lb/>Web service's status. Such a link may not be available for and from <lb/>all resources provided by a Web service --only from key resources <lb/>such as a Web service's metadata resource and/or a service's home <lb/>resource (i.e., a resource analogous to the home page of a Web site). <lb/>This memo does not restrict the representation of a status resource <lb/>in any way. It may be primarily focused on human or machine <lb/>consumption or a combination of both. It may be a simple "traffic <lb/>light" indicator for service health or a more sophisticated <lb/>representation conveying more detailed information, such as service <lb/>subsystems and/or a status history. <lb/></body> + + <note place="footnote">Wilde <lb/>Informational <lb/></note> + + <page>[Page 7] <lb/></page> + + <note place="headnote">RFC 8631 <lb/>Link Relation Types for Web Services <lb/>July 2019 <lb/></note> + + <body>6. IANA Considerations <lb/>The link relation types below have been registered by IANA per <lb/>Section 4.2 of RFC 8288 [RFC8288]. <lb/>6.1. Link Relation Type: service-doc <lb/>Relation Name: service-doc <lb/>Description: Identifies service documentation for the context that <lb/>is primarily intended for human consumption. <lb/>Reference: RFC 8631 <lb/>6.2. Link Relation Type: service-desc <lb/>Relation Name: service-desc <lb/>Description: Identifies service description for the context that is <lb/>primarily intended for consumption by machines. <lb/>Reference: RFC 8631 <lb/>6.3. Link Relation Type: service-meta <lb/>Relation Name: service-meta <lb/>Description: Identifies general metadata for the context that is <lb/>primarily intended for consumption by machines. <lb/>Reference: RFC 8631 <lb/>6.4. Link Relation Type: status <lb/>Relation Name: status <lb/>Description: Identifies a resource that represents the context's <lb/>status. <lb/>Reference: RFC 8631 <lb/></body> + + <note place="footnote">Wilde <lb/>Informational <lb/></note> + + <page>[Page 8] <lb/></page> + + <note place="headnote">RFC 8631 <lb/>Link Relation Types for Web Services <lb/>July 2019 <lb/></note> + + <body>7. Security Considerations <lb/>Web service providers should be aware that service descriptions and <lb/>documentation may be used by attackers to gain additional information <lb/>about a service (particularly its implementation) and to test for <lb/>known security issues. It may thus be advisable to restrict service <lb/>descriptions and documentation to aspects of a service that are <lb/>necessary and to exclude any details that are not necessary for using <lb/>the service. <lb/>Another potential security issue for Web service providers is that <lb/>publishing service descriptions and documentation may generally allow <lb/>clients (both malicious and otherwise) more automated and systematic <lb/>access to a service. It may therefore be possible that more of a <lb/>service's potential vulnerabilities are made easier to find and <lb/>exploit or simply that a service might receive more load because it <lb/>is accessed by automated clients. <lb/>Web service consumers should be aware that service descriptions and <lb/>documentation can be out of sync or simply incorrect. Blindly <lb/>trusting service descriptions and documentation (particularly when <lb/>descriptions are retrieved and interpreted programmatically) is not a <lb/>safe practice. Web service consumers SHOULD always assume that <lb/>service descriptions and documentation may be incorrect and SHOULD <lb/>therefore be prepared to handle errors at runtime. <lb/></body> + + <listBibl>8. References <lb/>8.1. Normative References <lb/>[RFC2119] Bradner, S., "Key words for use in RFCs to Indicate <lb/>Requirement Levels", BCP 14, RFC 2119, <lb/>DOI 10.17487/RFC2119, March 1997, <lb/><https://www.rfc-editor.org/info/rfc2119>. <lb/>[RFC8174] Leiba, B., "Ambiguity of Uppercase vs Lowercase in RFC <lb/>2119 Key Words", BCP 14, RFC 8174, DOI 10.17487/RFC8174, <lb/>May 2017, <https://www.rfc-editor.org/info/rfc8174>. <lb/>[RFC8288] Nottingham, M., "Web Linking", RFC 8288, <lb/>DOI 10.17487/RFC8288, October 2017, <lb/><https://www.rfc-editor.org/info/rfc8288>. <lb/></listBibl> + + <note place="footnote">Wilde <lb/>Informational <lb/></note> + + <page>[Page 9] <lb/></page> + + <note place="headnote">RFC 8631 <lb/>Link Relation Types for Web Services <lb/>July 2019 <lb/></note> + + <listBibl>8.2. Informative References <lb/>[RFC5023] Gregorio, J., Ed. and B. de hOra, Ed., "The Atom <lb/>Publishing Protocol", RFC 5023, DOI 10.17487/RFC5023, <lb/>October 2007, <https://www.rfc-editor.org/info/rfc5023>. <lb/>[W3C.REC-webarch-20041215] <lb/>Jacobs, I. and N. Walsh, "Architecture of the World Wide <lb/>Web, Volume One", World Wide Web Consortium <lb/>Recommendation REC-webarch-20041215, December 2004, <lb/><http://www.w3.org/TR/2004/REC-webarch-20041215>. <lb/></listBibl> + + <div type="acknowledgement">Acknowledgements <lb/>Thanks to Mike Amundsen, Ben Campbell, Alissa Cooper, Oliver Gierke, <lb/>Benjamin Kaduk, Sebastien Lambla, Darrell Miller, and Adam Roach for <lb/>their comments and suggestions. <lb/></div> + + Author's Address <lb/> + + <front>Erik Wilde <lb/>Email: erik.wilde@dret.net <lb/>URI: <lb/>http://dret.net/netdret/ <lb/></front> + + <note place="footnote">Wilde <lb/>Informational <lb/></note> + + <page>[Page 10] </page> + + + </text> +</tei> diff --git a/grobid-trainer/resources/dataset/segmentation/sdo/ietf/corpus/tei/XP015133848.training.segmentation.tei.xml b/grobid-trainer/resources/dataset/segmentation/sdo/ietf/corpus/tei/XP015133848.training.segmentation.tei.xml new file mode 100644 index 0000000000..d3d3833ff4 --- /dev/null +++ b/grobid-trainer/resources/dataset/segmentation/sdo/ietf/corpus/tei/XP015133848.training.segmentation.tei.xml @@ -0,0 +1,341 @@ +<?xml version="1.0" ?> +<tei xml:space="preserve"> + <teiHeader> + <fileDesc xml:id="0"/> + </teiHeader> + <text xml:lang="en"> + <front>server date 20190705; downloaded by EPO on 20190707 <lb/>Network Working Group <lb/>S. Previdi <lb/>Internet-Draft <lb/>Individual <lb/>Intended status: Standards Track <lb/>C. Filsfils <lb/>Expires: January 6, 2020 <lb/>Cisco Systems, Inc. <lb/>P. Mattes <lb/>Microsoft <lb/>E. Rosen <lb/>Juniper Networks <lb/>D. Jain <lb/>S. Lin <lb/>Google <lb/>July 5, 2019 <lb/>Advertising Segment Routing Policies in BGP <lb/>draft-ietf-idr-segment-routing-te-policy-07 <lb/>Abstract <lb/>This document defines a new BGP SAFI with a new NLRI in order to <lb/>advertise a candidate path of a Segment Routing Policy (SR Policy). <lb/>An SR Policy is a set of candidate paths, each consisting of one or <lb/>more segment lists. The headend of an SR Policy may learn multiple <lb/>candidate paths for an SR Policy. Candidate paths may be learned via <lb/>a number of different mechanisms, e.g., CLI, NetConf, PCEP, or BGP. <lb/>This document specifies the way in which BGP may be used to <lb/>distribute candidate paths. New sub-TLVs for the Tunnel <lb/>Encapsulation Attribute are defined. <lb/>Status of This Memo <lb/>This Internet-Draft is submitted in full conformance with the <lb/>provisions of BCP 78 and BCP 79. <lb/>Internet-Drafts are working documents of the Internet Engineering <lb/>Task Force (IETF). Note that other groups may also distribute <lb/>working documents as Internet-Drafts. The list of current Internet-<lb/>Drafts is at https://datatracker.ietf.org/drafts/current/. <lb/>Internet-Drafts are draft documents valid for a maximum of six months <lb/>and may be updated, replaced, or obsoleted by other documents at any <lb/>time. It is inappropriate to use Internet-Drafts as reference <lb/>material or to cite them other than as "work in progress." <lb/>This Internet-Draft will expire on January 6, 2020. <lb/>Previdi, et al. <lb/>Expires January 6, 2020 <lb/>[Page 1] <lb/>Internet-Draft <lb/>Segment Routing Policies in BGP <lb/>July 2019 <lb/>Copyright Notice <lb/>Copyright (c) 2019 IETF Trust and the persons identified as the <lb/>document authors. All rights reserved. <lb/>This document is subject to BCP 78 and the IETF Trust's Legal <lb/>Provisions Relating to IETF Documents <lb/>(https://trustee.ietf.org/license-info) in effect on the date of <lb/>publication of this document. Please review these documents <lb/>carefully, as they describe your rights and restrictions with respect <lb/>to this document. Code Components extracted from this document must <lb/>include Simplified BSD License text as described in Section 4.e of <lb/>the Trust Legal Provisions and are provided without warranty as <lb/>described in the Simplified BSD License. <lb/></front> + + <div type="toc">Table of Contents <lb/>1. Introduction . . . . . . . . . . . . . . . . . . . . . . . . <lb/>3 <lb/>1.1. Requirements Language . . . . . . . . . . . . . . . . . . <lb/>5 <lb/>2. SR Policy Encoding . . . . . . . . . . . . . . . . . . . . . <lb/>5 <lb/>2.1. SR Policy SAFI and NLRI . . . . . . . . . . . . . . . . . <lb/>5 <lb/>2.2. SR Policy and Tunnel Encapsulation Attribute . . . . . . <lb/>7 <lb/>2.3. Remote Endpoint and Color . . . . . . . . . . . . . . . . <lb/>8 <lb/>2.4. SR Policy Sub-TLVs . . . . . . . . . . . . . . . . . . . <lb/>9 <lb/>2.4.1. Preference Sub-TLV . . . . . . . . . . . . . . . . . <lb/>9 <lb/>2.4.2. Binding SID Sub-TLV . . . . . . . . . . . . . . . . . 10 <lb/>2.4.3. Segment List Sub-TLV . . . . . . . . . . . . . . . . 11 <lb/>2.4.4. Explicit NULL Label Policy Sub-TLV . . . . . . . . . 27 <lb/>2.4.5. Policy Priority Sub-TLV . . . . . . . . . . . . . . . 29 <lb/>2.4.6. Policy Name Sub-TLV . . . . . . . . . . . . . . . . . 29 <lb/>3. Extended Color Community . . . . . . . . . . . . . . . . . . 30 <lb/>4. SR Policy Operations . . . . . . . . . . . . . . . . . . . . 31 <lb/>4.1. Configuration and Advertisement of SR Policies . . . . . 31 <lb/>4.2. Reception of an SR Policy NLRI . . . . . . . . . . . . . 31 <lb/>4.2.1. Acceptance of an SR Policy NLRI . . . . . . . . . . . 31 <lb/>4.2.2. Usable SR Policy NLRI . . . . . . . . . . . . . . . . 32 <lb/>4.2.3. Passing a usable SR Policy NLRI to the SRPM . . . . . 32 <lb/>4.2.4. Propagation of an SR Policy . . . . . . . . . . . . . 33 <lb/>4.3. Flowspec and SR Policies . . . . . . . . . . . . . . . . 33 <lb/>5. Contributors . . . . . . . . . . . . . . . . . . . . . . . . 33 <lb/>6. Acknowledgments . . . . . . . . . . . . . . . . . . . . . . . 34 <lb/>7. Implementation Status . . . . . . . . . . . . . . . . . . . . 34 <lb/>8. IANA Considerations . . . . . . . . . . . . . . . . . . . . . 35 <lb/>8.1. Existing Registry: Subsequent Address Family Identifiers <lb/>(SAFI) Parameters . . . . . . . . . . . . . . . . . . . . 36 <lb/>8.2. Existing Registry: BGP Tunnel Encapsulation Attribute <lb/>Tunnel Types . . . . . . . . . . . . . . . . . . . . . . 36 <lb/>8.3. Existing Registry: BGP Tunnel Encapsulation Attribute <lb/></div> + + <note place="footnote">Previdi, et al. <lb/>Expires January 6, 2020 <lb/></note> + + <page>[Page 2] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>Segment Routing Policies in BGP <lb/>July 2019 <lb/></note> + + <div type="toc">sub-TLVs . . . . . . . . . . . . . . . . . . . . . . . . 36 <lb/>8.4. New Registry: SR Policy List Sub-TLVs . . . . . . . . . . 36 <lb/>8.5. New Registry: SR Policy Binding SID Flags . . . . . . . . 37 <lb/>8.6. New Registry: SR Policy Segment Flags . . . . . . . . . . 37 <lb/>9. Security Considerations . . . . . . . . . . . . . . . . . . . 38 <lb/>10. References . . . . . . . . . . . . . . . . . . . . . . . . . 38 <lb/>10.1. Normative References . . . . . . . . . . . . . . . . . . 38 <lb/>10.2. Informational References . . . . . . . . . . . . . . . . 39 <lb/>Authors' Addresses . . . . . . . . . . . . . . . . . . . . . . . 40 <lb/></div> + + <body>1. Introduction <lb/>Segment Routing (SR) allows a headend node to steer a packet flow <lb/>along any path. Intermediate per-flow states are eliminated thanks <lb/>to source routing [I-D.ietf-spring-segment-routing]. <lb/>The headend node is said to steer a flow into a Segment Routing <lb/>Policy (SR Policy). <lb/>The header of a packet steered in an SR Policy is augmented with the <lb/>ordered list of segments associated with that SR Policy. <lb/>[I-D.ietf-spring-segment-routing-policy] details the concepts of SR <lb/>Policy and steering into an SR Policy. These apply equally to the <lb/>MPLS and SRv6 instantiations of segment routing. <lb/>[I-D.filsfils-spring-sr-policy-considerations] describes some of the <lb/>implementation aspects of the SR Policy Headend Architecture and <lb/>introduces the notion of an SR Policy Module (SRPM) that performs the <lb/>functionality as highlighted in section 2 of <lb/>[I-D.ietf-spring-segment-routing-policy]: <lb/>o The SRPM may learn multiple candidate paths for an SR Policy via <lb/>various mechanisms (CLI, NetConf, PCEP or BGP). <lb/>o The SRPM selects the best candidate path for the SR Policy. <lb/>o The SRPM binds a BSID to the selected candidate path of the SR <lb/>Policy. <lb/>o The SRPM installs the selected candidate path and its BSID in the <lb/>forwarding plane. <lb/>This document specifies the way to use BGP to distribute one or more <lb/>of the candidate paths of an SR Policy to the headend of that policy. <lb/>The document identifies the functionality that resides in the BGP <lb/>process and for the functionality which is outside the scope of BGP <lb/></body> + + <note place="footnote">Previdi, et al. <lb/>Expires January 6, 2020 <lb/></note> + + <page>[Page 3] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>Segment Routing Policies in BGP <lb/>July 2019 <lb/></note> + + <body>and lies within SRPM on the headend node, it refers to such, as <lb/>appropriate. <lb/>This document specifies a way of representing SR Policies and their <lb/>candidate paths in BGP UPDATE messages. BGP can then be used to <lb/>propagate the SR Policies and candidate paths. The usual BGP rules <lb/>for BGP propagation and "bestpath selection" are used. At the <lb/>headend of a specific policy, this will result in one or more <lb/>candidate paths being installed into the "BGP table". These paths <lb/>are then passed to the SRPM. The SRPM may compare them to candidate <lb/>paths learned via other mechanisms, and will choose one or more paths <lb/>to be installed in the data plane. BGP itself does not install SR <lb/>Policy candidate paths into the data plane. <lb/>This document defines a new BGP address family (SAFI). In UPDATE <lb/>messages of that address family, the NLRI identifies an SR Policy, <lb/>and the attributes encode the segment lists and other details of that <lb/>SR Policy. <lb/>While for simplicity we may write that BGP advertises an SR Policy, <lb/>it has to be understood that BGP advertises a candidate path of an SR <lb/>policy and that this SR Policy might have several other candidate <lb/>paths provided via BGP (via an NLRI with a different distinguisher as <lb/>defined in this document), PCEP, NETCONF or local policy <lb/>configuration. <lb/>Typically, a controller defines the set of policies and advertise <lb/>them to policy head-end routers (typically ingress routers). The <lb/>policy advertisement uses BGP extensions defined in this document. <lb/>The policy advertisement is, in most but not all of the cases, <lb/>tailored for a specific policy head-end. In this case the <lb/>advertisement may sent on a BGP session to that head-end and not <lb/>propagated any further. <lb/>Alternatively, a router (i.e., a BGP egress router) advertises SR <lb/>Policies representing paths to itself. In this case, it is possible <lb/>to send the policy to each head-end over a BGP session to that head-<lb/>end, without requiring any further propagation of the policy. <lb/>An SR Policy intended only for the receiver will, in most cases, not <lb/>traverse any Route Reflector (RR, [RFC4456]). <lb/>In some situations, it is undesirable for a controller or BGP egress <lb/>router to have a BGP session to each policy head-end. In these <lb/>situations, BGP Route Reflectors may be used to propagate the <lb/>advertisements, or it may be necessary for the advertisement to <lb/>propagate through a sequence of one or more ASes. To make this <lb/>possible, an attribute needs to be attached to the advertisement that <lb/></body> + + <note place="footnote">Previdi, et al. <lb/>Expires January 6, 2020 <lb/></note> + + <page>[Page 4] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>Segment Routing Policies in BGP <lb/>July 2019 <lb/></note> + + <body>enables a BGP speaker to determine whether it is intended to be a <lb/>head-end for the advertised policy. This is done by attaching one or <lb/>more Route Target Extended Communities to the advertisement <lb/>([RFC4360]). <lb/>The BGP extensions for the advertisement of SR Policies include <lb/>following components: <lb/>o A new Subsequent Address Family Identifier (SAFI) whose NLRI <lb/>identifies an SR Policy. <lb/>o A new Tunnel Type identifier for SR Policy, and a set of sub-TLVs <lb/>to be inserted into the Tunnel Encapsulation Attribute (as defined <lb/>in [I-D.ietf-idr-tunnel-encaps]) specifying segment lists of the <lb/>SR Policy, as well as other information about the SR Policy. <lb/>o One or more IPv4 address format route-target extended community <lb/>([RFC4360]) attached to the SR Policy advertisement and that <lb/>indicates the intended head-end of such SR Policy advertisement. <lb/>o The Color Extended Community (as defined in <lb/>[I-D.ietf-idr-tunnel-encaps]) and used in order to steer traffic <lb/>into an SR Policy, as described in section 8.4 in <lb/>[I-D.ietf-spring-segment-routing-policy]. This document <lb/>(Section 3) modifies the format of the Color Extended Community by <lb/>using the two leftmost bits of the RESERVED field. <lb/>1.1. Requirements Language <lb/>The key words "MUST", "MUST NOT", "REQUIRED", "SHALL", "SHALL NOT", <lb/>"SHOULD", "SHOULD NOT", "RECOMMENDED", "MAY", and "OPTIONAL" in this <lb/>document are to be interpreted as described in RFC 2119 [RFC2119]. <lb/>2. SR Policy Encoding <lb/>2.1. SR Policy SAFI and NLRI <lb/>A new SAFI is defined: the SR Policy SAFI, (codepoint 73 assigned by <lb/>IANA (see Section 8) from the "Subsequent Address Family Identifiers <lb/>(SAFI) Parameters" registry). <lb/>The SR Policy SAFI uses a new NLRI defined as follows: <lb/></body> + + <note place="footnote">Previdi, et al. <lb/>Expires January 6, 2020 <lb/></note> + + <page>[Page 5] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>Segment Routing Policies in BGP <lb/>July 2019 <lb/></note> + + <body>+------------------+ <lb/>| NLRI Length <lb/>| 1 octet <lb/>+------------------+ <lb/>| Distinguisher <lb/>| 4 octets <lb/>+------------------+ <lb/>| Policy Color <lb/>| 4 octets <lb/>+------------------+ <lb/>| Endpoint <lb/>| 4 or 16 octets <lb/>+------------------+ <lb/>where: <lb/>o NLRI Length: 1 octet of length expressed in bits as defined in <lb/>[RFC4760]. <lb/>o Distinguisher: 4-octet value uniquely identifying the policy in <lb/>the context of <color, endpoint> tuple. The distinguisher has no <lb/>semantic value and is solely used by the SR Policy originator to <lb/>make unique (from an NLRI perspective) multiple occurrences of the <lb/>same SR Policy. <lb/>o Policy Color: 4-octet value identifying (with the endpoint) the <lb/>policy. The color is used to match the color of the destination <lb/>prefixes to steer traffic into the SR Policy <lb/>[I-D.ietf-spring-segment-routing-policy]. <lb/>o Endpoint: identifies the endpoint of a policy. The Endpoint may <lb/>represent a single node or a set of nodes (e.g., an anycast <lb/>address). The Endpoint is an IPv4 (4-octet) address or an IPv6 <lb/>(16-octet) address according to the AFI of the NLRI. <lb/>The color and endpoint are used to automate the steering of BGP <lb/>Payload prefixes on SR Policy as described in <lb/>[I-D.ietf-spring-segment-routing-policy]. <lb/>The NLRI containing the SR Policy is carried in a BGP UPDATE message <lb/>[RFC4271] using BGP multiprotocol extensions [RFC4760] with an AFI of <lb/>1 or 2 (IPv4 or IPv6) and with a SAFI of 73 (assigned by IANA from <lb/>the "Subsequent Address Family Identifiers (SAFI) Parameters" <lb/>registry). <lb/>An update message that carries the MP_REACH_NLRI or MP_UNREACH_NLRI <lb/>attribute with the SR Policy SAFI MUST also carry the BGP mandatory <lb/>attributes. In addition, the BGP update message MAY also contain any <lb/>of the BGP optional attributes. <lb/>The next-hop network address field in SR Policy SAFI (73) updates may <lb/>be either a 4 octet IPv4 address or a 16 octet IPv6 address, <lb/></body> + + <note place="footnote">Previdi, et al. <lb/>Expires January 6, 2020 <lb/></note> + + <page>[Page 6] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>Segment Routing Policies in BGP <lb/>July 2019 <lb/></note> + + <body>independent of the SR Policy AFI. The length field of the next-hop <lb/>address specifies the next-hop address family. If the next-hop <lb/>length is 4, then the next-hop is an IPv4 address; if the next-hop <lb/>length is 16, then it is a global IPv6 address; and if the next-hop <lb/>length is 32, then it has a global IPv6 address followed by a link-<lb/>local IPv6 address. The setting of the next-hop field and its <lb/>attendant processing is governed by standard BGP procedures as <lb/>described in section 3 in [RFC4760]. <lb/>It is important to note that any BGP speaker receiving a BGP message <lb/>with an SR Policy NLRI, will process it only if the NLRI is among the <lb/>best paths as per the BGP best path selection algorithm. In other <lb/>words, this document does not modify the BGP propagation or bestpath <lb/>selection rules. <lb/>It has to be noted that if several candidate paths of the same SR <lb/>Policy (endpoint, color) are signaled via BGP to a head-end, it is <lb/>recommended that each NLRI use a different distinguisher. If BGP has <lb/>installed into the BGP table two advertisements whose respective <lb/>NLRIs have the same color and endpoint, but different distinguishers, <lb/>both advertisements are passed to the SRPM as different candidate <lb/>paths. In addition, the originator information corresponding to the <lb/>each candidate path, as described in section 2.4 in <lb/>[I-D.ietf-spring-segment-routing-policy], is passed to the SRPM. <lb/>2.2. SR Policy and Tunnel Encapsulation Attribute <lb/>The content of the SR Policy is encoded in the Tunnel Encapsulation <lb/>Attribute originally defined in [I-D.ietf-idr-tunnel-encaps] using a <lb/>new Tunnel-Type TLV (codepoint is 15, assigned by IANA (see <lb/>Section 8) from the "BGP Tunnel Encapsulation Attribute Tunnel Types" <lb/>registry). <lb/>The SR Policy Encoding structure is as follows: <lb/></body> + + <note place="footnote">Previdi, et al. <lb/>Expires January 6, 2020 <lb/></note> + + <page>[Page 7] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>Segment Routing Policies in BGP <lb/>July 2019 <lb/></note> + + <body>SR Policy SAFI NLRI: <Distinguisher, Policy-Color, Endpoint> <lb/>Attributes: <lb/>Tunnel Encaps Attribute (23) <lb/>Tunnel Type: SR Policy <lb/>Binding SID <lb/>Preference <lb/>Priority <lb/>Policy Name <lb/>Explicit NULL Label Policy (ENLP) <lb/>Segment List <lb/>Weight <lb/>Segment <lb/>Segment <lb/>... <lb/>... <lb/>where: <lb/>o SR Policy SAFI NLRI is defined in Section 2.1. <lb/>o Tunnel Encapsulation Attribute is defined in <lb/>[I-D.ietf-idr-tunnel-encaps]. <lb/>o Tunnel-Type is set to 15 (assigned by IANA from the "BGP Tunnel <lb/>Encapsulation Attribute Tunnel Types" registry). <lb/>o Preference, Binding SID, Priority, Policy Name, ENLP, Segment-<lb/>List, Weight and Segment sub-TLVs are defined in this document. <lb/>o Additional sub-TLVs may be defined in the future. <lb/>A Tunnel Encapsulation Attribute MUST NOT contain more than one TLV <lb/>of type "SR Policy". If more than one TLV of type "SR Policy" <lb/>appears, the update is considered malformed and the "treat-as-<lb/>withdraw" strategy of [RFC7606] is applied. <lb/>Multiple occurrences of "Segment List" MAY be encoded within the same <lb/>SR Policy. <lb/>Multiple occurrences of "Segment" MAY be encoded within the same <lb/>Segment List. <lb/>2.3. Remote Endpoint and Color <lb/>The Remote Endpoint and Color sub-TLVs, as defined in <lb/>[I-D.ietf-idr-tunnel-encaps], MAY also be present in the SR Policy <lb/>encodings. <lb/></body> + + <note place="footnote">Previdi, et al. <lb/>Expires January 6, 2020 <lb/></note> + + <page>[Page 8] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>Segment Routing Policies in BGP <lb/>July 2019 <lb/></note> + + <body>The Remote Endpoint and Color Sub-TLVs are not used for SR Policy <lb/>encodings and therefore their value is irrelevant in the context of <lb/>the SR Policy SAFI NLRI. If present, the Remote Endpoint sub-TLV and <lb/>the Color sub-TLV MUST be ignored by the BGP speaker. <lb/>2.4. SR Policy Sub-TLVs <lb/>This section defines the SR Policy sub-TLVs. <lb/>Preference, Binding SID, Segment-List, Priority, Policy Name and <lb/>Explicit NULL Label Policy sub-TLVs are assigned from the "BGP Tunnel <lb/>Encapsulation Attribute Sub-TLVs" registry. <lb/>Weight and Segment sub-TLVs are assigned from a new registry defined <lb/>in this document and called: "SR Policy List Sub-TLVs". See <lb/>Section 8 for the details of the registry. <lb/>2.4.1. Preference Sub-TLV <lb/>The Preference sub-TLV does not have any effect on the BGP bestpath <lb/>selection or propagation procedures. The contents of this sub-TLV <lb/>are used by the SRPM as described in section 2.7 in <lb/>[I-D.ietf-spring-segment-routing-policy]. <lb/>The Preference sub-TLV is optional and it MUST NOT appear more than <lb/>once in the SR Policy. If the Preference sub-TLV appears more than <lb/>once, the update is considered malformed and the "treat-as-withdraw" <lb/>strategy of [RFC7606] is applied. <lb/>The Preference sub-TLV has following format: <lb/>0 <lb/>1 <lb/>2 <lb/>3 <lb/>0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 <lb/>+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ <lb/>| <lb/>Type <lb/>| <lb/>Length <lb/>| <lb/>Flags <lb/>| <lb/>RESERVED <lb/>| <lb/>+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ <lb/>| <lb/>Preference (4 octets) <lb/>| <lb/>+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ <lb/>where: <lb/>o Type: 12 <lb/>o Length: 6. <lb/>o Flags: 1 octet of flags. None are defined at this stage. Flags <lb/>SHOULD be set to zero on transmission and MUST be ignored on <lb/>receipt. <lb/></body> + + <note place="footnote">Previdi, et al. <lb/>Expires January 6, 2020 <lb/></note> + + <page>[Page 9] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>Segment Routing Policies in BGP <lb/>July 2019 <lb/></note> + + <body>o RESERVED: 1 octet of reserved bits. SHOULD be unset on <lb/>transmission and MUST be ignored on receipt. <lb/>o Preference: a 4-octet value. <lb/>2.4.2. Binding SID Sub-TLV <lb/>The Binding SID sub-TLV is not used by BGP. The contents of this <lb/>sub-TLV are used by the SRPM as described in section 6 in <lb/>[I-D.ietf-spring-segment-routing-policy]. <lb/>The Binding SID sub-TLV is optional and it MUST NOT appear more than <lb/>once in the SR Policy. If the Binding SID sub-TLV appears more than <lb/>once, the update is considered malformed and the "treat-as-withdraw" <lb/>strategy of [RFC7606] is applied. <lb/>The Binding SID sub-TLV has the following format: <lb/>0 <lb/>1 <lb/>2 <lb/>3 <lb/>0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 <lb/>+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ <lb/>| <lb/>Type <lb/>| <lb/>Length <lb/>| <lb/>Flags <lb/>| <lb/>RESERVED <lb/>| <lb/>+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ <lb/>| <lb/>Binding SID (variable, optional) <lb/>| <lb/>+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ <lb/>where: <lb/>o Type: 13 <lb/>o Length: specifies the length of the value field not including Type <lb/>and Length fields. Can be 2 or 6 or 18. <lb/>o Flags: 1 octet of flags. Following flags are defined (to be <lb/>assigned by IANA from the registry "SR Policy Binding SID Flags" <lb/>defined in this document Section 8.5): <lb/>0 1 2 3 4 5 6 7 <lb/>+-+-+-+-+-+-+-+-+ <lb/>|S|I| <lb/>| <lb/>+-+-+-+-+-+-+-+-+ <lb/>where: <lb/>* S-Flag: This flag encodes the "Specified-BSID-only" behavior. <lb/>It is used by SRPM as described in section 6.2.3 in <lb/>[I-D.ietf-spring-segment-routing-policy]. <lb/></body> + + <note place="footnote">Previdi, et al. <lb/>Expires January 6, 2020 <lb/></note> + + <page>[Page 10] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>Segment Routing Policies in BGP <lb/>July 2019 <lb/></note> + + <body>* I-Flag: This flag encodes the "Drop Upon Invalid" behavior. It <lb/>is used by SRPM as described in section 8.2 in <lb/>[I-D.ietf-spring-segment-routing-policy]. <lb/>* Unused bits in the Flag octet SHOULD be set to zero upon <lb/>transmission and MUST be ignored upon receipt. <lb/>o RESERVED: 1 octet of reserved bits. SHOULD be unset on <lb/>transmission and MUST be ignored on receipt. <lb/>o Binding SID: if length is 2, then no Binding SID is present. <lb/>o If length is 6 then the Binding SID contains a 4-octet SID. Below <lb/>format is used to encode the SID. TC, S, TTL(Total of 12bits) are <lb/>RESERVED and SHOULD be set to Zero and MUST be ignored. <lb/>0 <lb/>1 <lb/>2 <lb/>3 <lb/>0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 <lb/>+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ <lb/>| <lb/>Label <lb/>| TC |S| <lb/>TTL <lb/>| <lb/>+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ <lb/>If length is 18 then the Binding SID contains a 16-octet IPv6 SID. <lb/>2.4.3. Segment List Sub-TLV <lb/>The Segment List sub-TLV encodes a single explicit path towards the <lb/>endpoint as described in section 5.1 in <lb/>[I-D.ietf-spring-segment-routing-policy]. The Segment List sub-TLV <lb/>includes the elements of the paths (i.e., segments) as well as an <lb/>optional Weight sub-TLV. <lb/>The Segment List sub-TLV may exceed 255 bytes length due to large <lb/>number of segments. Therefore a 2-octet length is required. <lb/>According to [I-D.ietf-idr-tunnel-encaps], the first bit of the sub-<lb/>TLV codepoint defines the size of the length field. Therefore, for <lb/>the Segment List sub-TLV a code point of 128 (or higher) is used. <lb/>See Section 8 for details of codepoints allocation. <lb/>The Segment List sub-TLV is optional and MAY appear multiple times in <lb/>the SR Policy. The ordering of Segment List sub-TLVs, each sub-TLV <lb/>encoding a Segment List, does not matter. <lb/>The Segment List sub-TLV contains zero or more Segment sub-TLVs and <lb/>MAY contain a Weight sub-TLV. <lb/>The Segment List sub-TLV has the following format: <lb/></body> + + <note place="footnote">Previdi, et al. <lb/>Expires January 6, 2020 <lb/></note> + + <page>[Page 11] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>Segment Routing Policies in BGP <lb/>July 2019 <lb/></note> + + <body>0 <lb/>1 <lb/>2 <lb/>3 <lb/>0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 <lb/>+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ <lb/>| <lb/>Type <lb/>| <lb/>Length <lb/>| <lb/>RESERVED <lb/>| <lb/>+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ <lb/>// <lb/>sub-TLVs <lb/>// <lb/>+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ <lb/>where: <lb/>o Type: 128. <lb/>o Length: the total length (not including the Type and Length <lb/>fields) of the sub-TLVs encoded within the Segment List sub-TLV. <lb/>o RESERVED: 1 octet of reserved bits. SHOULD be unset on <lb/>transmission and MUST be ignored on receipt. <lb/>o sub-TLVs: <lb/>* An optional single Weight sub-TLV. <lb/>* Zero or more Segment sub-TLVs. <lb/>Validation of an explicit path encoded by the Segment List sub-TLV is <lb/>completely within the scope of SRPM as described in section 5 in <lb/>[I-D.ietf-spring-segment-routing-policy]. <lb/>2.4.3.1. Weight Sub-TLV <lb/>The Weight sub-TLV specifies the weight associated to a given segment <lb/>list. The contents of this sub-TLV are used only by the SRPM as <lb/>described in section 2.11 in <lb/>[I-D.ietf-spring-segment-routing-policy]. <lb/>The Weight sub-TLV is optional and it MUST NOT appear more than once <lb/>inside the Segment List sub-TLV. If the Weight sub-TLV appears more <lb/>than once, the update is considered malformed and the "treat-as-<lb/>withdraw" strategy of [RFC7606] is applied. <lb/>The Weight sub-TLV has the following format: <lb/></body> + + <note place="footnote">Previdi, et al. <lb/>Expires January 6, 2020 <lb/></note> + + <page>[Page 12] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>Segment Routing Policies in BGP <lb/>July 2019 <lb/></note> + + <body>0 <lb/>1 <lb/>2 <lb/>3 <lb/>0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 <lb/>+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ <lb/>| <lb/>Type <lb/>| <lb/>Length <lb/>| <lb/>Flags <lb/>| <lb/>RESERVED <lb/>| <lb/>+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ <lb/>| <lb/>Weight <lb/>| <lb/>+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ <lb/>where: <lb/>Type: 9 (to be assigned by IANA from the registry "SR Policy List <lb/>Sub-TLVs" defined in this document). <lb/>Length: 6. <lb/>Flags: 1 octet of flags. None are defined at this stage. Flags <lb/>SHOULD be set to zero on transmission and MUST be ignored on receipt. <lb/>RESERVED: 1 octet of reserved bits. SHOULD be unset on transmission <lb/>and MUST be ignored on receipt. <lb/>2.4.3.2. Segment Sub-TLV <lb/>The Segment sub-TLV describes a single segment in a segment list <lb/>(i.e., a single element of the explicit path). Multiple Segment sub-<lb/>TLVs constitute an explicit path of the SR Policy. <lb/>The Segment sub-TLV is optional and MAY appear multiple times in the <lb/>Segment List sub-TLV. <lb/>The Segment sub-TLV does not have any effect on the BGP bestpath <lb/>selection or propagation procedures. The contents of this sub-TLV <lb/>are used only by the SRPM as described in section 4 in <lb/>[I-D.ietf-spring-segment-routing-policy]. <lb/>[I-D.ietf-spring-segment-routing-policy] defines several types of <lb/>Segments: <lb/></body> + + <note place="footnote">Previdi, et al. <lb/>Expires January 6, 2020 <lb/></note> + + <page>[Page 13] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>Segment Routing Policies in BGP <lb/>July 2019 <lb/></note> + + <body>Type 1: SID only, in the form of MPLS Label <lb/>Type 2: SID only, in the form of IPv6 address <lb/>Type 3: IPv4 Node Address with optional SID <lb/>Type 4: IPv6 Node Address with optional SID for SR MPLS <lb/>Type 5: IPv4 Address + index with optional SID <lb/>Type 6: IPv4 Local and Remote addresses with optional SID <lb/>Type 7: IPv6 Address + index for local and remote pair with optional SID for SR MPLS <lb/>Type 8: IPv6 Local and Remote addresses with optional SID for SR MPLS <lb/>Type 9: IPv6 Node Address with optional SID for SRv6 <lb/>Type 10: IPv6 Address + index for local and remote pair with optional SID for SRv6 <lb/>Type 11: IPv6 Local and Remote addresses for SRv6 <lb/>2.4.3.2.1. Type 1: SID only, in the form of MPLS Label <lb/>The Type-1 Segment Sub-TLV encodes a single SID in the form of an <lb/>MPLS label. The format is as follows: <lb/>0 <lb/>1 <lb/>2 <lb/>3 <lb/>0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 <lb/>+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ <lb/>| <lb/>Type <lb/>| <lb/>Length <lb/>| <lb/>Flags <lb/>| <lb/>RESERVED <lb/>| <lb/>+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ <lb/>| <lb/>Label <lb/>| TC |S| <lb/>TTL <lb/>| <lb/>+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ <lb/>where: <lb/>o Type: 1 (to be assigned by IANA from the registry "SR Policy List <lb/>Sub-TLVs" defined in this document). <lb/>o Length is 6. <lb/>o Flags: 1 octet of flags as defined in Section 2.4.3.2.12. <lb/>o RESERVED: 1 octet of reserved bits. SHOULD be unset on <lb/>transmission and MUST be ignored on receipt. <lb/>o Label: 20 bits of label value. <lb/>o TC: 3 bits of traffic class. <lb/>o S: 1 bit of bottom-of-stack. <lb/>o TTL: 1 octet of TTL. <lb/>The following applies to the Type-1 Segment sub-TLV: <lb/></body> + + <note place="footnote">Previdi, et al. <lb/>Expires January 6, 2020 <lb/></note> + + <page>[Page 14] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>Segment Routing Policies in BGP <lb/>July 2019 <lb/></note> + + <body>o The S bit SHOULD be zero upon transmission, and MUST be ignored <lb/>upon reception. <lb/>o If the originator wants the receiver to choose the TC value, it <lb/>sets the TC field to zero. <lb/>o If the originator wants the receiver to choose the TTL value, it <lb/>sets the TTL field to 255. <lb/>o If the originator wants to recommend a value for these fields, it <lb/>puts those values in the TC and/or TTL fields. <lb/>o The receiver MAY override the originator's values for these <lb/>fields. This would be determined by local policy at the receiver. <lb/>One possible policy would be to override the fields only if the <lb/>fields have the default values specified above. <lb/>2.4.3.2.2. Type 2: SID only, in the form of IPv6 address <lb/>The Type-2 Segment Sub-TLV encodes a single SRv6 SID in the form of <lb/>an IPv6 address. The format is as follows: <lb/>0 <lb/>1 <lb/>2 <lb/>3 <lb/>0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 <lb/>+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ <lb/>| <lb/>Type <lb/>| <lb/>Length <lb/>| <lb/>Flags <lb/>| <lb/>RESERVED <lb/>| <lb/>+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ <lb/>// <lb/>SRv6 SID (16 octets) <lb/>// <lb/>+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ <lb/>where: <lb/>o Type: 2 (to be assigned by IANA from the registry "SR Policy List <lb/>Sub-TLVs" defined in this document). <lb/>o Length is 18. <lb/>o Flags: 1 octet of flags as defined in Section 2.4.3.2.12. <lb/>o RESERVED: 1 octet of reserved bits. SHOULD be unset on <lb/>transmission and MUST be ignored on receipt. <lb/>o SRv6 SID: 16 octets of IPv6 address. <lb/>The IPv6 Segment Identifier (SRv6 SID) is defined in <lb/>[I-D.ietf-6man-segment-routing-header]. <lb/></body> + + <note place="footnote">Previdi, et al. <lb/>Expires January 6, 2020 <lb/></note> + + <page>[Page 15] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>Segment Routing Policies in BGP <lb/>July 2019 <lb/></note> + + <body>2.4.3.2.3. Type 3: IPv4 Node Address with optional SID <lb/>The Type-3 Segment Sub-TLV encodes an IPv4 node address, SR Algorithm <lb/>and an optional SID in the form of an MPLS label. The format is as <lb/>follows: <lb/>0 <lb/>1 <lb/>2 <lb/>3 <lb/>0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 <lb/>+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ <lb/>| <lb/>Type <lb/>| <lb/>Length <lb/>| <lb/>Flags <lb/>| SR Algorithm | <lb/>+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ <lb/>| <lb/>IPv4 Node Address (4 octets) <lb/>| <lb/>+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ <lb/>| <lb/>SID (optional, 4 octets) <lb/>| <lb/>+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ <lb/>where: <lb/>o Type: 3 (to be assigned by IANA from the registry "SR Policy List <lb/>Sub-TLVs" defined in this document). <lb/>o Length is 6 or 10. <lb/>o Flags: 1 octet of flags as defined in Section 2.4.3.2.12. <lb/>o SR Algorithm: 1 octet specifying SR Algorithm as described in <lb/>section 3.1.1 in [I-D.ietf-spring-segment-routing], when A-Flag as <lb/>defined in Section 2.4.3.2.12 is present. SR Algorithm is used by <lb/>SRPM as described in section 4 in <lb/>[I-D.ietf-spring-segment-routing-policy]. When A-Flag is not <lb/>encoded, this field SHOULD be unset on transmission and MUST be <lb/>ignored on receipt. <lb/>o IPv4 Node Address: a 4 octet IPv4 address representing a node. <lb/>o SID: 4 octet MPLS label. <lb/>The following applies to the Type-3 Segment sub-TLV: <lb/>o The IPv4 Node Address MUST be present. <lb/>o The SID is optional and specifies a 4 octet MPLS SID containing <lb/>label, TC, S and TTL as defined in Section 2.4.3.2.1. <lb/>o If length is 6, then only the IPv4 Node Address is present. <lb/>o If length is 10, then the IPv4 Node Address and the MPLS SID are <lb/>present. <lb/></body> + + <note place="footnote">Previdi, et al. <lb/>Expires January 6, 2020 <lb/></note> + + <page>[Page 16] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>Segment Routing Policies in BGP <lb/>July 2019 <lb/></note> + + <body>2.4.3.2.4. Type 4: IPv6 Node Address with optional SID for SR MPLS <lb/>The Type-4 Segment Sub-TLV encodes an IPv6 node address, SR Algorithm <lb/>and an optional SID in the form of an MPLS label. The format is as <lb/>follows: <lb/>0 <lb/>1 <lb/>2 <lb/>3 <lb/>0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 <lb/>+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ <lb/>| <lb/>Type <lb/>| <lb/>Length <lb/>| <lb/>Flags <lb/>| SR Algorithm | <lb/>+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ <lb/>// <lb/>IPv6 Node Address (16 octets) <lb/>// <lb/>+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ <lb/>| <lb/>SID (optional, 4 octets) <lb/>| <lb/>+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ <lb/>where: <lb/>o Type: 4 (to be assigned by IANA from the registry "SR Policy List <lb/>Sub-TLVs" defined in this document). <lb/>o Length is 18 or 22. <lb/>o Flags: 1 octet of flags as defined in Section 2.4.3.2.12. <lb/>o SR Algorithm: 1 octet specifying SR Algorithm as described in <lb/>section 3.1.1 in [I-D.ietf-spring-segment-routing], when A-Flag as <lb/>defined in Section 2.4.3.2.12 is present. SR Algorithm is used by <lb/>SRPM as described in section 4 in <lb/>[I-D.ietf-spring-segment-routing-policy]. When A-Flag is not <lb/>encoded, this field SHOULD be unset on transmission and MUST be <lb/>ignored on receipt. <lb/>o IPv6 Node Address: a 16 octet IPv6 address representing a node. <lb/>o SID: 4 octet MPLS label. <lb/>The following applies to the Type-4 Segment sub-TLV: <lb/>o The IPv6 Node Address MUST be present. <lb/>o The SID is optional and specifies a 4 octet MPLS SID containing <lb/>label, TC, S and TTL as defined in Section 2.4.3.2.1. <lb/>o If length is 18, then only the IPv6 Node Address is present. <lb/>o If length is 22, then the IPv6 Node Address and the MPLS SID are <lb/>present. <lb/></body> + + <note place="footnote">Previdi, et al. <lb/>Expires January 6, 2020 <lb/></note> + + <page>[Page 17] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>Segment Routing Policies in BGP <lb/>July 2019 <lb/></note> + + <body>2.4.3.2.5. Type 5: IPv4 Address + Local Interface ID with optional SID <lb/>The Type-5 Segment Sub-TLV encodes an IPv4 node address, a local <lb/>interface Identifier (Local Interface ID) and an optional SID in the <lb/>form of an MPLS label. The format is as follows: <lb/>0 <lb/>1 <lb/>2 <lb/>3 <lb/>0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 <lb/>+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ <lb/>| <lb/>Type <lb/>| <lb/>Length <lb/>| <lb/>Flags <lb/>| <lb/>RESERVED <lb/>| <lb/>+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ <lb/>| <lb/>Local Interface ID (4 octets) <lb/>| <lb/>+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ <lb/>| <lb/>IPv4 Node Address (4 octets) <lb/>| <lb/>+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ <lb/>| <lb/>SID (optional, 4 octets) <lb/>| <lb/>+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ <lb/>where: <lb/>o Type: 5 (to be assigned by IANA from the registry "SR Policy List <lb/>Sub-TLVs" defined in this document). <lb/>o Length is 10 or 14. <lb/>o Flags: 1 octet of flags as defined in Section 2.4.3.2.12. <lb/>o RESERVED: 1 octet of reserved bits. SHOULD be unset on <lb/>transmission and MUST be ignored on receipt. <lb/>o Local Interface ID: 4 octets of interface index as defined in <lb/>[I-D.ietf-pce-segment-routing]. <lb/>o IPv4 Node Address: a 4 octet IPv4 address representing a node. <lb/>o SID: 4 octet MPLS label. <lb/>The following applies to the Type-5 Segment sub-TLV: <lb/>o The IPv4 Node Address MUST be present. <lb/>o The Local Interface ID MUST be present. <lb/>o The SID is optional and specifies a 4 octet MPLS SID containing <lb/>label, TC, S and TTL as defined in Section 2.4.3.2.1. <lb/>o If length is 10, then the IPv4 Node Address and Local Interface ID <lb/>are present. <lb/></body> + + <note place="footnote">Previdi, et al. <lb/>Expires January 6, 2020 <lb/></note> + + <page>[Page 18] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>Segment Routing Policies in BGP <lb/>July 2019 <lb/></note> + + <body>o If length is 14, then the IPv4 Node Address, the Local Interface <lb/>ID and the MPLS SID are present. <lb/>2.4.3.2.6. Type 6: IPv4 Local and Remote addresses with optional SID <lb/>The Type-6 Segment Sub-TLV encodes an adjacency local address, an <lb/>adjacency remote address and an optional SID in the form of an MPLS <lb/>label. The format is as follows: <lb/>0 <lb/>1 <lb/>2 <lb/>3 <lb/>0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 <lb/>+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ <lb/>| <lb/>Type <lb/>| <lb/>Length <lb/>| <lb/>Flags <lb/>| <lb/>RESERVED <lb/>| <lb/>+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ <lb/>| <lb/>Local IPv4 Address (4 octets) <lb/>| <lb/>+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ <lb/>| <lb/>Remote IPv4 Address (4 octets) <lb/>| <lb/>+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ <lb/>| <lb/>SID (optional, 4 octets) <lb/>| <lb/>+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ <lb/>where: <lb/>o Type: 6 (to be assigned by IANA from the registry "SR Policy List <lb/>Sub-TLVs" defined in this document). <lb/>o Length is 10 or 14. <lb/>o Flags: 1 octet of flags as defined in Section 2.4.3.2.12. <lb/>o RESERVED: 1 octet of reserved bits. SHOULD be unset on <lb/>transmission and MUST be ignored on receipt. <lb/>o Local IPv4 Address: a 4 octet IPv4 address. <lb/>o Remote IPv4 Address: a 4 octet IPv4 address. <lb/>o SID: 4 octet MPLS label. <lb/>The following applies to the Type-6 Segment sub-TLV: <lb/>o The Local IPv4 Address MUST be present and represents an adjacency <lb/>local address. <lb/>o The Remote IPv4 Address MUST be present and represents the remote <lb/>end of the adjacency. <lb/></body> + + <note place="footnote">Previdi, et al. <lb/>Expires January 6, 2020 <lb/></note> + + <page>[Page 19] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>Segment Routing Policies in BGP <lb/>July 2019 <lb/></note> + + <body>o The SID is optional and specifies a 4 octet MPLS SID containing <lb/>label, TC, S and TTL as defined in Section 2.4.3.2.1. <lb/>o If length is 10, then only the IPv4 Local and Remote addresses are <lb/>present. <lb/>o If length is 14, then the IPv4 Local address, IPv4 Remote address <lb/>and the MPLS SID are present. <lb/>2.4.3.2.7. Type 7: IPv6 Address + Interface ID for local and remote <lb/>pair with optional SID for SR MPLS <lb/>The Type-7 Segment Sub-TLV encodes an IPv6 Link Local adjacency with <lb/>IPv6 local node address, a local interface identifier (Local <lb/>Interface ID), IPv6 remote node address , a remote interface <lb/>identifier (Remote Interface ID) and an optional SID in the form of <lb/>an MPLS label. The format is as follows: <lb/>0 <lb/>1 <lb/>2 <lb/>3 <lb/>0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 <lb/>+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ <lb/>| <lb/>Type <lb/>| <lb/>Length <lb/>| <lb/>Flags <lb/>| <lb/>RESERVED <lb/>| <lb/>+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ <lb/>| <lb/>Local Interface ID (4 octets) <lb/>| <lb/>+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ <lb/>// <lb/>IPv6 Local Node Address (16 octets) <lb/>// <lb/>+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ <lb/>| <lb/>Remote Interface ID (4 octets) <lb/>| <lb/>+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ <lb/>// <lb/>IPv6 Remote Node Address (16 octets) <lb/>// <lb/>+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ <lb/>| <lb/>SID (optional, 4 octets) <lb/>| <lb/>+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ <lb/>where: <lb/>o Type: 7 (to be assigned by IANA from the registry "SR Policy List <lb/>Sub-TLVs" defined in this document). <lb/>o Length is 22, 26, 42 or 46. <lb/>o Flags: 1 octet of flags as defined in Section 2.4.3.2.12. <lb/>o RESERVED: 1 octet of reserved bits. SHOULD be unset on <lb/>transmission and MUST be ignored on receipt. <lb/>o Local Interface ID: 4 octets of interface index as defined in <lb/>[I-D.ietf-pce-segment-routing]. <lb/></body> + + <note place="footnote">Previdi, et al. <lb/>Expires January 6, 2020 <lb/></note> + + <page>[Page 20] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>Segment Routing Policies in BGP <lb/>July 2019 <lb/></note> + + <body>o IPv6 Local Node Address: a 16 octet IPv6 address. <lb/>o Remote Interface ID: 4 octets of interface index as defined in <lb/>[I-D.ietf-pce-segment-routing]. <lb/>o IPv6 Remote Node Address: a 16 octet IPv6 address. <lb/>o SID: 4 octet MPLS label. <lb/>The following applies to the Type-7 Segment sub-TLV: <lb/>o The Local Interface ID and IPv6 Local Node Address MUST be <lb/>present. <lb/>o The Remote Interface ID and Remote Node Address pair is optional. <lb/>If Remote Interface ID is present, the Remote Node Address MUST be <lb/>present as well. Similarly, if Remote Node Address is present, <lb/>the Remote Interface ID MUST be present as well. <lb/>o The SID is optional and specifies a 4 octet MPLS SID containing <lb/>label, TC, S and TTL as defined in Section 2.4.3.2.1. <lb/>o If length is 22, then the Local Interface ID and the Local IPv6 <lb/>Address are present. <lb/>o If length is 26, then the Local Interface ID, Local IPv6 Address <lb/>and the MPLS SID are present. <lb/>o If length is 42, then the Local Interface ID, Local IPv6 Node <lb/>Address, Remote Interface ID, and the Remote IPv6 Node Address are <lb/>present. <lb/>o If length is 46, then the Local Interface ID, Local IPv6 Node <lb/>Address, Remote Interface ID, Remote IPv6 Node Address and the <lb/>MPLS SID are present. <lb/>2.4.3.2.8. Type 8: IPv6 Local and Remote addresses with optional SID <lb/>for SR MPLS <lb/>The Type-8 Segment Sub-TLV encodes an adjacency local address, an <lb/>adjacency remote address and an optional SID in the form of an MPLS <lb/>label. The format is as follows: <lb/></body> + + <note place="footnote">Previdi, et al. <lb/>Expires January 6, 2020 <lb/></note> + + <page>[Page 21] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>Segment Routing Policies in BGP <lb/>July 2019 <lb/></note> + + <body>0 <lb/>1 <lb/>2 <lb/>3 <lb/>0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 <lb/>+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ <lb/>| <lb/>Type <lb/>| <lb/>Length <lb/>| <lb/>Flags <lb/>| <lb/>RESERVED <lb/>| <lb/>+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ <lb/>// <lb/>Local IPv6 Address (16 octets) <lb/>// <lb/>+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ <lb/>// <lb/>Remote IPv6 Address (16 octets) <lb/>// <lb/>+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ <lb/>| <lb/>SID (optional, 4 octets) <lb/>| <lb/>+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ <lb/>where: <lb/>o Type: 8 (to be assigned by IANA from the registry "SR Policy List <lb/>Sub-TLVs" defined in this document). <lb/>o Length is 34 or 38. <lb/>o Flags: 1 octet of flags as defined in Section 2.4.3.2.12. <lb/>o RESERVED: 1 octet of reserved bits. SHOULD be unset on <lb/>transmission and MUST be ignored on receipt. <lb/>o Local IPv6 Address: a 16 octet IPv6 address. <lb/>o Remote IPv6 Address: a 16 octet IPv6 address. <lb/>o SID: 4 octet MPLS label. <lb/>The following applies to the Type-8 Segment sub-TLV: <lb/>o The Local IPv6 Address MUST be present and represents an adjacency <lb/>local address. <lb/>o The Remote IPv6 Address MUST be present and represents the remote <lb/>end of the adjacency. <lb/>o The SID is optional and specifies a 4 octet MPLS SID containing <lb/>label, TC, S and TTL as defined in Section 2.4.3.2.1. <lb/>o If length is 34, then only the IPv6 Local and Remote addresses are <lb/>present. <lb/>o If length is 38, then IPv6 Local and Remote addresses and the MPLS <lb/>SID are present. <lb/></body> + + <note place="footnote">Previdi, et al. <lb/>Expires January 6, 2020 <lb/></note> + + <page>[Page 22] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>Segment Routing Policies in BGP <lb/>July 2019 <lb/></note> + + <body>2.4.3.2.9. Type 9: IPv6 Node Address with optional SRv6 SID <lb/>The Type-9 Segment Sub-TLV encodes an IPv6 node address, SR Algorithm <lb/>and an optional SID in the form of an IPv6 address. The format is as <lb/>follows: <lb/>0 <lb/>1 <lb/>2 <lb/>3 <lb/>0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 <lb/>+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ <lb/>| <lb/>Type <lb/>| <lb/>Length <lb/>| <lb/>Flags <lb/>| SR Algorithm | <lb/>+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ <lb/>// <lb/>IPv6 Node Address (16 octets) <lb/>// <lb/>+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ <lb/>// <lb/>SID (optional, 16 octets) <lb/>// <lb/>+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ <lb/>where: <lb/>o Type: 10 (to be assigned by IANA from the registry "SR Policy List <lb/>Sub-TLVs" defined in this document). <lb/>o Length is 18 or 34. <lb/>o Flags: 1 octet of flags as defined in Section 2.4.3.2.12. <lb/>o SR Algorithm: 1 octet specifying SR Algorithm as described in <lb/>section 3.1.1 in [I-D.ietf-spring-segment-routing], when A-Flag as <lb/>defined in Section 2.4.3.2.12 is present. SR Algorithm is used by <lb/>SRPM as described in section 4 in <lb/>[I-D.ietf-spring-segment-routing-policy]. When A-Flag is not <lb/>encoded, this field SHOULD be unset on transmission and MUST be <lb/>ignored on receipt. <lb/>o IPv6 Node Address: a 16 octet IPv6 address. <lb/>o SID: 16 octet IPv6 address. <lb/>The following applies to the Type-9 Segment sub-TLV: <lb/>o The IPv6 Node Address MUST be present. <lb/>o The SID is optional and specifies an SRv6 SID in the form of 16 <lb/>octet IPv6 address. <lb/>o If length is 18, then only the IPv6 Node Address is present. <lb/>o If length is 34, then the IPv6 Node Address and the SRv6 SID are <lb/>present. <lb/></body> + + <note place="footnote">Previdi, et al. <lb/>Expires January 6, 2020 <lb/></note> + + <page>[Page 23] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>Segment Routing Policies in BGP <lb/>July 2019 <lb/></note> + + <body>2.4.3.2.10. Type 10: IPv6 Address + Interface ID for local and remote <lb/>pair for SRv6 with optional SID <lb/>The Type-10 Segment Sub-TLV encodes an IPv6 Link Local adjacency with <lb/>local node address, a local interface identifier (Local Interface <lb/>ID), remote IPv6 node address , a remote interface identifier (Remote <lb/>Interface ID) and an optional SID in the form of an IPv6 address. <lb/>The format is as follows: <lb/>0 <lb/>1 <lb/>2 <lb/>3 <lb/>0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 <lb/>+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ <lb/>| <lb/>Type <lb/>| <lb/>Length <lb/>| <lb/>Flags <lb/>| <lb/>RESERVED <lb/>| <lb/>+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ <lb/>| <lb/>Local Interface ID (4 octets) <lb/>| <lb/>+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ <lb/>// <lb/>IPv6 Local Node Address (16 octets) <lb/>// <lb/>+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ <lb/>| <lb/>Remote Interface ID (4 octets) <lb/>| <lb/>+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ <lb/>// <lb/>IPv6 Remote Node Address (16 octets) <lb/>// <lb/>+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ <lb/>// <lb/>SID (optional, 16 octets) <lb/>// <lb/>+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ <lb/>where: <lb/>o Type: 11 (to be assigned by IANA from the registry "SR Policy List <lb/>Sub-TLVs" defined in this document). <lb/>o Length is 22, 38, 42 or 58. <lb/>o Flags: 1 octet of flags as defined in Section 2.4.3.2.12. <lb/>o RESERVED: 1 octet of reserved bits. SHOULD be unset on <lb/>transmission and MUST be ignored on receipt. <lb/>o Local Interface ID: 4 octets of interface index as defined in <lb/>[I-D.ietf-pce-segment-routing]. <lb/>o IPv6 Local Node Address: a 16 octet IPv6 address. <lb/>o Remote Interface ID: 4 octets of interface index as defined in <lb/>[I-D.ietf-pce-segment-routing]. <lb/>o IPv6 Remote Node Address: a 16 octet IPv6 address. <lb/>o SID: 16 octet IPv6 address. <lb/></body> + + <note place="footnote">Previdi, et al. <lb/>Expires January 6, 2020 <lb/></note> + + <page>[Page 24] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>Segment Routing Policies in BGP <lb/>July 2019 <lb/></note> + + <body>The following applies to the Type-10 Segment sub-TLV: <lb/>o The Local Interface ID and the Local IPv6 Node Addresses MUST be <lb/>present. <lb/>o The Remote Interface ID and Remote Node Address pair is optional. <lb/>If Remote Interface ID is present, the Remote Node Address MUST be <lb/>present as well. Similarly, if Remote Node Address is present, <lb/>the Remote Interface ID MUST be present as well. <lb/>o The SID is optional and specifies an SRv6 SID in the form of 16 <lb/>octet IPv6 address. <lb/>o If length is 22, then the Local Interface ID, Local IPv6 Node <lb/>Address, are present. <lb/>o If length is 38, then the Local Interface ID, Local IPv6 Node <lb/>Address and the SRv6 SID are present. <lb/>o If length is 42, then the Local Interface ID, Local IPv6 Node <lb/>Address, Remote Interface ID, and the Remote IPv6 Node Address are <lb/>present. <lb/>o If length is 58, then the Local Interface ID, Local IPv6 Node <lb/>Address, Remote Interface ID, Remote IPv6 Node Address and the <lb/>SRv6 SID are present. <lb/>2.4.3.2.11. Type 11: IPv6 Local and Remote addresses for SRv6 with <lb/>optional SID <lb/>The Type-11 Segment Sub-TLV encodes an adjacency local address, an <lb/>adjacency remote address and an optional SID in the form of IPv6 <lb/>address. The format is as follows: <lb/>0 <lb/>1 <lb/>2 <lb/>3 <lb/>0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 <lb/>+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ <lb/>| <lb/>Type <lb/>| <lb/>Length <lb/>| <lb/>Flags <lb/>| <lb/>RESERVED <lb/>| <lb/>+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ <lb/>// <lb/>Local IPv6 Address (16 octets) <lb/>// <lb/>+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ <lb/>// <lb/>Remote IPv6 Address (16 octets) <lb/>// <lb/>+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ <lb/>// <lb/>SID (optional, 16 octets) <lb/>// <lb/>+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ <lb/>where: <lb/></body> + + <note place="footnote">Previdi, et al. <lb/>Expires January 6, 2020 <lb/></note> + + <page>[Page 25] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>Segment Routing Policies in BGP <lb/>July 2019 <lb/></note> + + <body>o Type: 12 (to be assigned by IANA from the registry "SR Policy List <lb/>Sub-TLVs" defined in this document). <lb/>o Length is 34 or 50. <lb/>o Flags: 1 octet of flags as defined in Section 2.4.3.2.12. <lb/>o RESERVED: 1 octet of reserved bits. SHOULD be unset on <lb/>transmission and MUST be ignored on receipt. <lb/>o Local IPv6 Address: a 16 octet IPv6 address. <lb/>o Remote IPv6 Address: a 16 octet IPv6 address. <lb/>o SID: 16 octet IPv6 address. <lb/>The following applies to the Type-11 Segment sub-TLV: <lb/>o The Local IPv6 Node Address MUST be present. <lb/>o The Remote IPv6 Node Address MUST be present. <lb/>o The SID is optional and specifies an SRv6 SID in the form of 16 <lb/>octet IPv6 address. <lb/>o If length is 34, then the Local IPv6 Node Address and the Remote <lb/>IPv6 Node Address are present. <lb/>o If length is 50, then the Local IPv6 Node Address, the Remote IPv6 <lb/>Node Address and the SRv6 SID are present. <lb/>2.4.3.2.12. Segment Flags <lb/>The Segment Types described above MAY contain following flags in the <lb/>"Flags" field (codes to be assigned by IANA from the registry "SR <lb/>Policy Segment Flags" defined in this document Section 8.6): <lb/>0 1 2 3 4 5 6 7 <lb/>+-+-+-+-+-+-+-+-+ <lb/>|V|A| <lb/>| <lb/>+-+-+-+-+-+-+-+-+ <lb/>where: <lb/>V-Flag: This flag is used by SRPM for the purpose of "SID <lb/>verification" as described in Section 5.1 in <lb/>[I-D.ietf-spring-segment-routing-policy]. <lb/></body> + + <note place="footnote">Previdi, et al. <lb/>Expires January 6, 2020 <lb/></note> + + <page>[Page 26] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>Segment Routing Policies in BGP <lb/>July 2019 <lb/></note> + + <body>A-Flag: This flag indicates the presence of SR Algorithm id in the <lb/>"SR Algorithm" field applicable to various Segment Types. SR <lb/>Algorithm is used by SRPM as described in section 4 in <lb/>[I-D.ietf-spring-segment-routing-policy]. <lb/>Unused bits in the Flag octet SHOULD be set to zero upon <lb/>transmission and MUST be ignored upon receipt. <lb/>The following applies to the Segment Flags: <lb/>o V-Flag is applicable to all Segment Types. <lb/>o A-Flag is applicable to Segment Types 3, 4 and 9. If A-Flag <lb/>appears with any other Segment Type, it MUST be ignored. <lb/>2.4.4. Explicit NULL Label Policy Sub-TLV <lb/>In order to steer an unlabeled IP packet into an SR policy, it is <lb/>necessary to create a label stack for that packet, and to push one or <lb/>more labels onto that stack. <lb/>The Explicit NULL Label Policy (ENLP) sub-TLV is used to indicate <lb/>whether an Explicit NULL Label [RFC3032] must be pushed on an <lb/>unlabeled IP packet before any other labels. <lb/>If an ENLP Sub-TLV is not present, the decision of whether to push an <lb/>Explicit NULL label on a given packet is a matter of local <lb/>configuration. <lb/>The ENLP sub-TLV is optional and it MUST NOT appear more than once in <lb/>the SR Policy. If the ENLP sub-TLV appears more than once, the <lb/>update is considered malformed and the "treat-as-withdraw" strategy <lb/>of [RFC7606] is applied. <lb/>The contents of this sub-TLV are used by the SRPM as described in <lb/>section 4.1 in [I-D.ietf-spring-segment-routing-policy]. <lb/>0 <lb/>1 <lb/>2 <lb/>3 <lb/>0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 <lb/>+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ <lb/>| <lb/>Type <lb/>| <lb/>Length <lb/>| <lb/>Flags <lb/>| <lb/>RESERVED <lb/>| <lb/>+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ <lb/>| <lb/>ENLP <lb/>| <lb/>+-+-+-+-+-+-+-+-+ <lb/>Where: <lb/></body> + + <note place="footnote">Previdi, et al. <lb/>Expires January 6, 2020 <lb/></note> + + <page>[Page 27] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>Segment Routing Policies in BGP <lb/>July 2019 <lb/></note> + + <body>Type: TBD1 (to be assigned by IANA from the registry "BGP Tunnel <lb/>Encapsulation Attribute sub-TLVs" defined in this document <lb/>Section 8.3). <lb/>Length: 3. <lb/>Flags: 1 octet of flags. None are defined at this stage. Flags <lb/>SHOULD be set to zero on transmission and MUST be ignored on <lb/>receipt. <lb/>RESERVED: 1 octet of reserved bits. SHOULD be unset on <lb/>transmission and MUST be ignored on receipt. <lb/>ENLP(Explicit NULL Label Policy): Indicates whether Explicit NULL <lb/>labels are to be pushed on unlabeled IP packets that are being <lb/>steered into a given SR policy. This field has one of the <lb/>following 4 values: <lb/>0: Reserved. <lb/>1: Push an IPv4 Explicit NULL label on an unlabeled IPv4 <lb/>packet, but do not push an IPv6 Explicit NULL label on an <lb/>unlabeled IPv6 packet. <lb/>2: Push an IPv6 Explicit NULL label on an unlabeled IPv6 <lb/>packet, but do not push an IPv4 Explicit NULL label on an <lb/>unlabeled IPv4 packet. <lb/>3: Push an IPv4 Explicit NULL label on an unlabeled IPv4 <lb/>packet, and push an IPv6 Explicit NULL label on an unlabeled <lb/>IPv6 packet. <lb/>4: Do not push an Explicit NULL label. <lb/>5 -255: Reserved. <lb/>The ENLP reserved values may be used for future extensions and <lb/>implementations SHOULD ignore the ENLP Sub-TLV with these values. <lb/>The policy signaled in this Sub-TLV MAY be overridden by local <lb/>configuration. The section 4.1 of <lb/>[I-D.ietf-spring-segment-routing-policy] draft describes the <lb/>behavior on the headend for handling of explicit null label. <lb/></body> + + <note place="footnote">Previdi, et al. <lb/>Expires January 6, 2020 <lb/></note> + + <page>[Page 28] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>Segment Routing Policies in BGP <lb/>July 2019 <lb/></note> + + <body>2.4.5. Policy Priority Sub-TLV <lb/>An operator MAY set the Policy Priority sub-TLV to indicate the order <lb/>in which the SR policies are re-computed upon topological change. <lb/>The Priority sub-TLV does not have any effect on the BGP bestpath <lb/>selection or propagation procedures. The contents of this sub-TLV <lb/>are used by the SRPM as described in section 2.11 in <lb/>[I-D.ietf-spring-segment-routing-policy]. <lb/>The Priority sub-TLV is optional and it MUST NOT appear more than <lb/>once in the SR Policy TLV. If the Priority sub-TLV appears more than <lb/>once, the update is considered malformed and the "treat-as-withdraw" <lb/>strategy of [RFC7606] is applied. <lb/>The Priority sub-TLV has following format: <lb/>0 <lb/>1 <lb/>2 <lb/>3 <lb/>0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 <lb/>+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ <lb/>| <lb/>Type <lb/>| <lb/>Length <lb/>| Priority <lb/>| <lb/>RESERVED <lb/>| <lb/>+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ <lb/>Where: <lb/>Type: TBD2 (to be assigned by IANA from the registry "BGP Tunnel <lb/>Encapsulation Attribute sub-TLVs" defined in this document <lb/>Section 8.3). <lb/>Length: 2. <lb/>Priority: a 1-octet value. <lb/>RESERVED: 1 octet of reserved bits. SHOULD be unset on <lb/>transmission and MUST be ignored on receipt. <lb/>2.4.6. Policy Name Sub-TLV <lb/>An operator MAY set the Policy Name sub-TLV to attach a symbolic name <lb/>to the SR Policy candidate path. <lb/>Usage of Policy Name sub-TLV is described in section 2 in <lb/>[I-D.ietf-spring-segment-routing-policy]. <lb/>The Policy Name sub-TLV may exceed 255 bytes length due to long <lb/>policy name. Therefore a 2-octet length is required. According to <lb/>[I-D.ietf-idr-tunnel-encaps], the first bit of the sub-TLV codepoint <lb/>defines the size of the length field. Therefore, for the Policy Name <lb/></body> + + <note place="footnote">Previdi, et al. <lb/>Expires January 6, 2020 <lb/></note> + + <page>[Page 29] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>Segment Routing Policies in BGP <lb/>July 2019 <lb/></note> + + <body>sub-TLV a code point of 128 (or higher) is used. See Section 8 for <lb/>details of codepoints allocation. <lb/>The Policy Name sub-TLV is optional and it MUST NOT appear more than <lb/>once in the SR Policy TLV. If the Policy Name sub-TLV appears more <lb/>than once, the update is considered malformed and the "treat-as-<lb/>withdraw" strategy of [RFC7606] is applied. <lb/>The Policy Name sub-TLV has following format: <lb/>0 <lb/>1 <lb/>2 <lb/>3 <lb/>0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 <lb/>+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ <lb/>| <lb/>Type <lb/>| <lb/>Length <lb/>| <lb/>RESERVED <lb/>| <lb/>+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ <lb/>// <lb/>Policy Name <lb/>// <lb/>+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ <lb/>Where: <lb/>Type: TBD3 (to be assigned by IANA from the registry "BGP Tunnel <lb/>Encapsulation Attribute sub-TLVs" defined in this document <lb/>Section 8.3). <lb/>Length: Variable. <lb/>RESERVED: 1 octet of reserved bits. SHOULD be unset on <lb/>transmission and MUST be ignored on receipt. <lb/>Policy Name: Symbolic name for the policy. It SHOULD be a string <lb/>of printable ASCII characters, without a NULL terminator. <lb/>3. Extended Color Community <lb/>The Color Extended Community as defined in <lb/>[I-D.ietf-idr-tunnel-encaps] is used to steer traffic into a policy. <lb/>When the Color Extended Community is used for the purpose of steering <lb/>the traffic into an SR Policy, the RESERVED field (as defined in <lb/>[I-D.ietf-idr-tunnel-encaps] is changed as follows: <lb/>1 <lb/>0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 <lb/>+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ <lb/>|C O| <lb/>RESERVED <lb/>| <lb/>+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ <lb/></body> + + <note place="footnote">Previdi, et al. <lb/>Expires January 6, 2020 <lb/></note> + + <page>[Page 30] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>Segment Routing Policies in BGP <lb/>July 2019 <lb/></note> + + <body>where CO bits are defined as the "Color-Only" bits. <lb/>[I-D.ietf-spring-segment-routing-policy] defines the influence of <lb/>these bits on the automated steering of BGP Payload traffic onto SR <lb/>Policies. <lb/>4. SR Policy Operations <lb/>As described in this document, the consumer of an SR Policy NLRI is <lb/>not the BGP process. The BGP process is in charge of the origination <lb/>and propagation of the SR Policy NLRI but its installation and use is <lb/>outside the scope of BGP. The details of SR Policy installation and <lb/>use can be referred from [I-D.ietf-spring-segment-routing-policy]. <lb/>4.1. Configuration and Advertisement of SR Policies <lb/>Typically, but not limited to, an SR Policy is configured into a <lb/>controller. <lb/>Multiple SR Policy NLRIs may be present with the same <color, <lb/>endpoint> tuple but with different content when these SR policies are <lb/>intended to different head-ends. <lb/>The distinguisher of each SR Policy NLRI prevents undesired BGP route <lb/>selection among these SR Policy NLRIs and allow their propagation <lb/>across route reflectors [RFC4456]. <lb/>Moreover, one or more route-target SHOULD be attached to the <lb/>advertisement, where each route-target identifies one or more <lb/>intended head-ends for the advertised SR policy. <lb/>If no route-target is attached to the SR Policy NLRI, then it is <lb/>assumed that the originator sends the SR Policy update directly <lb/>(e.g., through a BGP session) to the intended receiver. In such <lb/>case, the NO_ADVERTISE community MUST be attached to the SR Policy <lb/>update. <lb/>4.2. Reception of an SR Policy NLRI <lb/>On reception of an SR Policy NLRI, a BGP speaker MUST determine if <lb/>it's first acceptable, then it determines if it is usable. <lb/>4.2.1. Acceptance of an SR Policy NLRI <lb/>When a BGP speaker receives an SR Policy NLRI from a neighbor it has <lb/>to determine if it's acceptable. The following applies: <lb/>o The SR Policy NLRI MUST include a distinguisher, color and <lb/>endpoint field which implies that the length of the NLRI MUST be <lb/></body> + + <note place="footnote">Previdi, et al. <lb/>Expires January 6, 2020 <lb/></note> + + <page>[Page 31] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>Segment Routing Policies in BGP <lb/>July 2019 <lb/></note> + + <body>either 12 or 24 octets (depending on the address family of the <lb/>endpoint). <lb/>o The SR Policy update MUST have either the NO_ADVERTISE community <lb/>or at least one route-target extended community in IPv4-address <lb/>format. If a router supporting this document receives an SR <lb/>policy update with no route-target extended communities and no <lb/>NO_ADVERTISE community, the update MUST NOT be sent to the SRPM. <lb/>Furthermore, it SHOULD be considered to be malformed, and the <lb/>"treat-as-withdraw" strategy of [RFC7606] is applied. <lb/>o The Tunnel Encapsulation Attribute MUST be attached to the BGP <lb/>Update and MUST have a Tunnel Type TLV set to SR Policy ( <lb/>codepoint is 15, assigned by IANA (see Section 8) from the "BGP <lb/>Tunnel Encapsulation Attribute Tunnel Types" registry). <lb/>A router that receives an SR Policy update that is not valid <lb/>according to these criteria MUST treat the update as malformed. The <lb/>route MUST NOT be passed to the SRPM, and the "treat-as-withdraw" <lb/>strategy of [RFC7606] is applied. <lb/>A unacceptable SR Policy update that has a valid NLRI portion with <lb/>invalid attribute portion MUST be considered as a withdraw of the SR <lb/>Policy. <lb/>4.2.2. Usable SR Policy NLRI <lb/>If one or more route-targets are present, then at least one route-<lb/>target MUST match one of the BGP Identifiers of the receiver in order <lb/>for the update to be considered usable. The BGP Identifier is <lb/>defined in [RFC4271] as a 4 octet IPv4 address. Therefore the route-<lb/>target extended community MUST be of the same format. <lb/>If one or more route-targets are present and no one matches any of <lb/>the local BGP Identifiers, then, while the SR Policy NLRI is <lb/>acceptable, it is not usable on the receiver node. It has to be <lb/>noted that if the receiver has been explicitly configured to do so, <lb/>it MAY propagate the SR Policy NLRI to its neighbors as defined in <lb/>Section 4.2.4. <lb/>The SR Policy candidate paths encoded by the usable SR Policy NLRIs <lb/>are sent to the SRPM. <lb/>4.2.3. Passing a usable SR Policy NLRI to the SRPM <lb/>Once BGP has determined that the SR Policy NLRI is usable, BGP passes <lb/>the SR Policy candidate path to the SRPM. Note that, along with the <lb/>candidate path details, BGP also passes the originator information <lb/></body> + + <note place="footnote">Previdi, et al. <lb/>Expires January 6, 2020 <lb/></note> + + <page>[Page 32] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>Segment Routing Policies in BGP <lb/>July 2019 <lb/></note> + + <body>for breaking ties in the path-selection process as described in <lb/>section 2.4 in [I-D.ietf-spring-segment-routing-policy]. <lb/>The SRPM applies the rules defined in section 2 in <lb/>[I-D.ietf-spring-segment-routing-policy] to determine whether the SR <lb/>Policy candidate path is valid and to select the best candidate path <lb/>among the valid SR Policy candidate paths. <lb/>4.2.4. Propagation of an SR Policy <lb/>By default, a BGP node receiving an SR Policy NLRI MUST NOT propagate <lb/>it to any EBGP neighbor. <lb/>However, a node MAY be explicitly configured to advertise a received <lb/>SR Policy NLRI to neighbors according to normal BGP rules (i.e., EBGP <lb/>propagation by an ASBR or iBGP propagation by a Route-Reflector). <lb/>SR Policy NLRIs that have been determined acceptable and valid can be <lb/>propagated, even the ones that are not usable. <lb/>Only SR Policy NLRIs that do not have the NO_ADVERTISE community <lb/>attached to them can be propagated. <lb/>4.3. Flowspec and SR Policies <lb/>The SR Policy can be carried in context of a Flowspec NLRI <lb/>([RFC5575]). In this case, when the redirect to IP next-hop is <lb/>specified as in [I-D.ietf-idr-flowspec-redirect-ip], the tunnel to <lb/>the next-hop is specified by the segment list in the Segment List <lb/>sub-TLVs. The Segment List (e.g., label stack or IPv6 segment list) <lb/>is imposed to flows matching the criteria in the Flowspec route to <lb/>steer them towards the next-hop as specified in the SR Policy SAFI <lb/>NLRI. <lb/>5. Contributors <lb/>Kausik Majumdar <lb/>Cisco Systems <lb/>US <lb/>Email: kmajumda@cisco.com <lb/>Zafar Ali <lb/>Cisco Systems <lb/>US <lb/>Email: zali@cisco.com <lb/></body> + + <note place="footnote">Previdi, et al. <lb/>Expires January 6, 2020 <lb/></note> + + <page>[Page 33] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>Segment Routing Policies in BGP <lb/>July 2019 <lb/></note> + + <body>Arjun Sreekantiah <lb/>Cisco Systems <lb/>US <lb/>Email: asreekan@cisco.com <lb/>Acee Lindem <lb/>Cisco Systems <lb/>US <lb/>Email: acee@cisco.com <lb/>Siva Sivabalan <lb/>Cisco Systems <lb/>US <lb/>Email: msiva@cisco.com <lb/>Imtiyaz Mohammad <lb/>Arista Networks <lb/>India <lb/>Email: imtiyaz@arista.com <lb/>Gaurav Dawra <lb/>Cisco Systems <lb/>US <lb/>Email: gdawra.ietf@gmail.com <lb/></body> + + <div type="acknowledgement">6. Acknowledgments <lb/>The authors of this document would like to thank Shyam Sethuram, John <lb/>Scudder, Przemyslaw Krol, Alex Bogdanov, Nandan Saha and Ketan <lb/>Talaulikar for their comments and review of this document. <lb/></div> + + <body>7. Implementation Status<lb/> Note to RFC Editor: Please remove this section prior to publication,<lb/> as well as the reference to RFC 7942.<lb/> This section records the status of known implementations of the<lb/> protocol defined by this specification at the time of posting of this<lb/> Internet-Draft, and is based on a proposal described in [RFC7942].<lb/> The description of implementations in this section is intended to<lb/> assist the IETF in its decision processes in progressing drafts to<lb/> RFCs. Please note that the listing of any individual implementation<lb/> here does not imply endorsement by the IETF. Furthermore, no effort <lb/> </body> + + <note place="footnote">Previdi, et al. <lb/>Expires January 6, 2020 <lb/></note> + + <page>[Page 34] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>Segment Routing Policies in BGP <lb/>July 2019 <lb/></note> + + <body>has been spent to verify the information presented here that was <lb/>supplied by IETF contributors. This is not intended as, and must not <lb/>be construed to be, a catalog of available implementations or their <lb/>features. Readers are advised to note that other implementations may <lb/>exist. <lb/>According to [RFC7942], "this will allow reviewers and working groups <lb/>to assign due consideration to documents that have the benefit of <lb/>running code, which may serve as evidence of valuable experimentation <lb/>and feedback that have made the implemented protocols more mature. <lb/>It is up to the individual working groups to use this information as <lb/>they see fit". <lb/>Several early implementations exist and will be reported in detail in <lb/>a forthcoming version of this document. For purposes of early <lb/>interoperability testing, when no FCFS code point was available, <lb/>implementations have made use of the following values: <lb/>o Preference sub-TLV: 12 <lb/>o Binding SID sub-TLV: 13 <lb/>o Segment List sub-TLV: 128 <lb/>When IANA-assigned values are available, implementations will be <lb/>updated to use them. <lb/>8. IANA Considerations <lb/>This document defines new Sub-TLVs in following existing registries: <lb/>o Subsequent Address Family Identifiers (SAFI) Parameters <lb/>o BGP Tunnel Encapsulation Attribute Tunnel Types <lb/>o BGP Tunnel Encapsulation Attribute sub-TLVs <lb/>This document also defines following new registries: <lb/>o SR Policy List Sub-TLVs <lb/>o SR Policy Binding SID Flags <lb/>o SR Policy Segment Flags <lb/></body> + + <note place="footnote">Previdi, et al. <lb/>Expires January 6, 2020 <lb/></note> + + <page>[Page 35] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>Segment Routing Policies in BGP <lb/>July 2019 <lb/></note> + + <body>8.1. Existing Registry: Subsequent Address Family Identifiers (SAFI)<lb/> Parameters<lb/> This document defines a new SAFI in the registry "Subsequent Address<lb/> Family Identifiers (SAFI) Parameters" that has been assigned by IANA:<lb/> Codepoint<lb/> Description<lb/> Reference<lb/> -----------------------------------------------<lb/> 73<lb/> SR Policy SAFI<lb/> This document<lb/> 8.2. Existing Registry: BGP Tunnel Encapsulation Attribute Tunnel Types<lb/> This document defines a new Tunnel-Type in the registry "BGP Tunnel<lb/> Encapsulation Attribute Tunnel Types" that has been assigned by IANA:<lb/> Codepoint<lb/> Description<lb/> Reference<lb/> --------------------------------------------------<lb/> 15 SR Policy Type<lb/> This document<lb/> 8.3. Existing Registry: BGP Tunnel Encapsulation Attribute sub-TLVs<lb/> This document defines new sub-TLVs in the registry "BGP Tunnel<lb/> Encapsulation Attribute sub-TLVs" to be assigned by IANA:<lb/> Codepoint<lb/> Description<lb/> Reference<lb/> ------------------------------------------------------<lb/> 12<lb/> Preference sub-TLV<lb/> This document<lb/> 13<lb/> Binding SID sub-TLV<lb/> This document<lb/> 128<lb/> Segment List sub-TLV<lb/> This document<lb/> TBD1<lb/> ENLP sub-TLV<lb/> This document<lb/> TBD2<lb/> Priority sub-TLV<lb/> This document<lb/> TBD3<lb/> Policy Name sub-TLV<lb/> This document<lb/> 8.4. New Registry: SR Policy List Sub-TLVs<lb/> This document defines a new registry called "SR Policy List Sub-<lb/> TLVs". The allocation policy of this registry is "First Come First<lb/> Served (FCFS)" according to [RFC8126].<lb/> Following Sub-TLV codepoints are defined:<lb/></body> + + <note place="footnote">Previdi, et al. <lb/>Expires January 6, 2020 <lb/></note> + + <page>[Page 36] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>Segment Routing Policies in BGP <lb/>July 2019 <lb/></note> + + <body>Value <lb/>Description <lb/>Reference <lb/>---------------------------------------------------------------------------------<lb/>1 <lb/>MPLS SID sub-TLV <lb/>This document <lb/>2 <lb/>SRv6 SID sub-TLV <lb/>This document <lb/>3 <lb/>IPv4 Node and SID sub-TLV <lb/>This document <lb/>4 <lb/>IPv6 Node and SID for SR-MPLS sub-TLV <lb/>This document <lb/>5 <lb/>IPv4 Node, index and SID sub-TLV <lb/>This document <lb/>6 <lb/>IPv4 Local/Remote addresses and SID sub-TLV This document <lb/>7 <lb/>IPv6 Node, index for remote and local pair This document <lb/>and SID for SR-MPLS sub-TLV <lb/>8 <lb/>IPv6 Local/Remote addresses and SID sub-TLV This document <lb/>9 <lb/>Weight sub-TLV <lb/>This document <lb/>10 <lb/>IPv6 Node and SID for SRv6 sub-TLV <lb/>This document <lb/>11 <lb/>IPv6 Node, index for remote and local pair This document <lb/>and SID for SRv6 sub-TLV <lb/>12 <lb/>IPv6 Local/Remote addresses and SID for <lb/>This document <lb/>SRv6 sub-TLV <lb/>8.5. New Registry: SR Policy Binding SID Flags <lb/>This document defines a new registry called "SR Policy Binding SID <lb/>Flags". The allocation policy of this registry is "First Come First <lb/>Served (FCFS)" according to [RFC8126]. <lb/>Following Flags are defined: <lb/>Bit <lb/>Description <lb/>Reference <lb/>---------------------------------------------------------------------------------<lb/>0 <lb/>Specified-BSID-Only Flag (S-Flag) <lb/>This document <lb/>1 <lb/>Drop Upon Invalid Flag (I-Flag) <lb/>This document <lb/>2-7 <lb/>Unassigned <lb/>8.6. New Registry: SR Policy Segment Flags <lb/>This document defines a new registry called "SR Policy Segment <lb/>Flags". The allocation policy of this registry is "First Come First <lb/>Served (FCFS)" according to [RFC8126]. <lb/>Following Flags are defined: <lb/>Bit <lb/>Description <lb/>Reference <lb/>---------------------------------------------------------------------------------<lb/>0 <lb/>Segment Verification Flag (V-Flag) <lb/>This document <lb/>1 <lb/>SR Algorithm Flag (A-Flag) <lb/>This document <lb/>2-7 <lb/>Unassigned <lb/></body> + + <note place="footnote">Previdi, et al. <lb/>Expires January 6, 2020 <lb/></note> + + <page>[Page 37] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>Segment Routing Policies in BGP <lb/>July 2019 <lb/></note> + + <body>9. Security Considerations <lb/>TBD. <lb/></body> + + <listBibl>10. References <lb/>10.1. Normative References <lb/>[I-D.ietf-idr-tunnel-encaps] <lb/>Patel, K., Velde, G., Ramachandra, S., and E. Rosen, "The <lb/>BGP Tunnel Encapsulation Attribute", draft-ietf-idr-<lb/>tunnel-encaps-12 (work in progress), May 2019. <lb/>[I-D.ietf-pce-segment-routing] <lb/>Sivabalan, S., Filsfils, C., Tantsura, J., Henderickx, W., <lb/>and J. Hardwick, "PCEP Extensions for Segment Routing", <lb/>draft-ietf-pce-segment-routing-16 (work in progress), <lb/>March 2019. <lb/>[I-D.ietf-spring-segment-routing] <lb/>Filsfils, C., Previdi, S., Ginsberg, L., Decraene, B., <lb/>Litkowski, S., and R. Shakir, "Segment Routing <lb/>Architecture", draft-ietf-spring-segment-routing-15 (work <lb/>in progress), January 2018. <lb/>[I-D.ietf-spring-segment-routing-policy] <lb/>Filsfils, C., Sivabalan, S., daniel.voyer@bell.ca, d., <lb/>bogdanov@google.com, b., and P. Mattes, "Segment Routing <lb/>Policy Architecture", draft-ietf-spring-segment-routing-<lb/>policy-03 (work in progress), May 2019. <lb/>[RFC2119] Bradner, S., "Key words for use in RFCs to Indicate <lb/>Requirement Levels", BCP 14, RFC 2119, <lb/>DOI 10.17487/RFC2119, March 1997, <lb/><https://www.rfc-editor.org/info/rfc2119>. <lb/>[RFC3032] Rosen, E., Tappan, D., Fedorkow, G., Rekhter, Y., <lb/>Farinacci, D., Li, T., and A. Conta, "MPLS Label Stack <lb/>Encoding", RFC 3032, DOI 10.17487/RFC3032, January 2001, <lb/><https://www.rfc-editor.org/info/rfc3032>. <lb/>[RFC4271] Rekhter, Y., Ed., Li, T., Ed., and S. Hares, Ed., "A <lb/>Border Gateway Protocol 4 (BGP-4)", RFC 4271, <lb/>DOI 10.17487/RFC4271, January 2006, <lb/><https://www.rfc-editor.org/info/rfc4271>. <lb/></listBibl> + + <note place="footnote">Previdi, et al. <lb/>Expires January 6, 2020 <lb/></note> + + <page>[Page 38] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>Segment Routing Policies in BGP <lb/>July 2019 <lb/></note> + + <listBibl>[RFC4360] Sangli, S., Tappan, D., and Y. Rekhter, "BGP Extended <lb/>Communities Attribute", RFC 4360, DOI 10.17487/RFC4360, <lb/>February 2006, <https://www.rfc-editor.org/info/rfc4360>. <lb/>[RFC4760] Bates, T., Chandra, R., Katz, D., and Y. Rekhter, <lb/>"Multiprotocol Extensions for BGP-4", RFC 4760, <lb/>DOI 10.17487/RFC4760, January 2007, <lb/><https://www.rfc-editor.org/info/rfc4760>. <lb/>[RFC5575] Marques, P., Sheth, N., Raszuk, R., Greene, B., Mauch, J., <lb/>and D. McPherson, "Dissemination of Flow Specification <lb/>Rules", RFC 5575, DOI 10.17487/RFC5575, August 2009, <lb/><https://www.rfc-editor.org/info/rfc5575>. <lb/>[RFC7606] Chen, E., Ed., Scudder, J., Ed., Mohapatra, P., and K. <lb/>Patel, "Revised Error Handling for BGP UPDATE Messages", <lb/>RFC 7606, DOI 10.17487/RFC7606, August 2015, <lb/><https://www.rfc-editor.org/info/rfc7606>. <lb/>[RFC8126] Cotton, M., Leiba, B., and T. Narten, "Guidelines for <lb/>Writing an IANA Considerations Section in RFCs", BCP 26, <lb/>RFC 8126, DOI 10.17487/RFC8126, June 2017, <lb/><https://www.rfc-editor.org/info/rfc8126>. <lb/>10.2. Informational References <lb/>[I-D.filsfils-spring-sr-policy-considerations] <lb/>Filsfils, C., Talaulikar, K., Krol, P., Horneffer, M., and <lb/>P. Mattes, "SR Policy Implementation and Deployment <lb/>Considerations", draft-filsfils-spring-sr-policy-<lb/>considerations-03 (work in progress), April 2019. <lb/>[I-D.ietf-6man-segment-routing-header] <lb/>Filsfils, C., Dukes, D., Previdi, S., Leddy, J., <lb/>Matsushima, S., and d. daniel.voyer@bell.ca, "IPv6 Segment <lb/>Routing Header (SRH)", draft-ietf-6man-segment-routing-<lb/>header-21 (work in progress), June 2019. <lb/>[I-D.ietf-idr-flowspec-redirect-ip] <lb/>Uttaro, J., Haas, J., Texier, M., Andy, A., Ray, S., <lb/>Simpson, A., and W. Henderickx, "BGP Flow-Spec Redirect to <lb/>IP Action", draft-ietf-idr-flowspec-redirect-ip-02 (work <lb/>in progress), February 2015. <lb/>[RFC4456] Bates, T., Chen, E., and R. Chandra, "BGP Route <lb/>Reflection: An Alternative to Full Mesh Internal BGP <lb/>(IBGP)", RFC 4456, DOI 10.17487/RFC4456, April 2006, <lb/><https://www.rfc-editor.org/info/rfc4456>. <lb/></listBibl> + + <note place="footnote">Previdi, et al. <lb/>Expires January 6, 2020 <lb/></note> + + <page>[Page 39] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>Segment Routing Policies in BGP <lb/>July 2019 <lb/></note> + + <listBibl>[RFC7942] Sheffer, Y. and A. Farrel, "Improving Awareness of Running <lb/>Code: The Implementation Status Section", BCP 205, <lb/>RFC 7942, DOI 10.17487/RFC7942, July 2016, <lb/><https://www.rfc-editor.org/info/rfc7942>. <lb/></listBibl> + + Authors' Addresses <lb/> + + <front>Stefano Previdi <lb/>Individual <lb/>IT <lb/>Email: stefano@previdi.net <lb/>Clarence Filsfils <lb/>Cisco Systems, Inc. <lb/>Brussels <lb/>BE <lb/>Email: cfilsfil@cisco.com <lb/>Paul Mattes <lb/>Microsoft <lb/>One Microsoft Way <lb/>Redmond, WA 98052 <lb/>USA <lb/>Email: pamattes@microsoft.com <lb/>Eric Rosen <lb/>Juniper Networks <lb/>10 Technology Park Drive <lb/>Westford, MA 01886 <lb/>US <lb/>Email: erosen@juniper.net <lb/>Dhanendra Jain <lb/>Google <lb/>Email: dhanendra.ietf@gmail.com <lb/></front> + + <note place="footnote">Previdi, et al. <lb/>Expires January 6, 2020 <lb/></note> + + <page>[Page 40] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>Segment Routing Policies in BGP <lb/>July 2019 <lb/></note> + + <front>Steven Lin <lb/>Google <lb/>Email: stevenlin@google.com <lb/></front> + + <note place="footnote">Previdi, et al. <lb/>Expires January 6, 2020 <lb/></note> + + <page>[Page 41] </page> + + + </text> +</tei> diff --git a/grobid-trainer/resources/dataset/segmentation/sdo/ietf/corpus/tei/XP015134132.training.segmentation.tei.xml b/grobid-trainer/resources/dataset/segmentation/sdo/ietf/corpus/tei/XP015134132.training.segmentation.tei.xml new file mode 100644 index 0000000000..704f337549 --- /dev/null +++ b/grobid-trainer/resources/dataset/segmentation/sdo/ietf/corpus/tei/XP015134132.training.segmentation.tei.xml @@ -0,0 +1,79 @@ +<?xml version="1.0" ?> +<tei xml:space="preserve"> + <teiHeader> + <fileDesc xml:id="0"/> + </teiHeader> + <text xml:lang="en"> + <front>server date 20190708; downloaded by EPO on 20190710 <lb/>Network Working Group <lb/>I. Learmonth <lb/>Internet-Draft <lb/>Tor Project <lb/>Intended status: Informational <lb/>July 8, 2019 <lb/>Expires: January 9, 2020 <lb/>Guidelines for Performing Safe Measurement on the Internet <lb/>draft-irtf-pearg-safe-internet-measurement-01 <lb/>Abstract <lb/>Researchers from industry and academia often use Internet <lb/>measurements as part of their work. While these measurements can <lb/>give insight into the functioning and usage of the Internet, they can <lb/>come at the cost of user privacy. This document describes guidelines <lb/>for ensuring that such measurements can be carried out safely. <lb/>Note <lb/>Comments are solicited and should be addressed to the research <lb/>group's mailing list at pearg@irtf.org and/or the author(s). <lb/>The sources for this draft are at: <lb/>https://github.com/irl/draft-safe-internet-measurement <lb/>Status of This Memo <lb/>This Internet-Draft is submitted in full conformance with the <lb/>provisions of BCP 78 and BCP 79. <lb/>Internet-Drafts are working documents of the Internet Engineering <lb/>Task Force (IETF). Note that other groups may also distribute <lb/>working documents as Internet-Drafts. The list of current Internet-<lb/>Drafts is at https://datatracker.ietf.org/drafts/current/. <lb/>Internet-Drafts are draft documents valid for a maximum of six months <lb/>and may be updated, replaced, or obsoleted by other documents at any <lb/>time. It is inappropriate to use Internet-Drafts as reference <lb/>material or to cite them other than as "work in progress." <lb/>This Internet-Draft will expire on January 9, 2020. <lb/>Copyright Notice <lb/>Copyright (c) 2019 IETF Trust and the persons identified as the <lb/>document authors. All rights reserved. <lb/>Learmonth <lb/>Expires January 9, 2020 <lb/>[Page 1] <lb/>Internet-Draft <lb/>Safe Internet Measurement <lb/>July 2019 <lb/>This document is subject to BCP 78 and the IETF Trust's Legal <lb/>Provisions Relating to IETF Documents <lb/>(https://trustee.ietf.org/license-info) in effect on the date of <lb/>publication of this document. Please review these documents <lb/>carefully, as they describe your rights and restrictions with respect <lb/>to this document. <lb/></front> + + <body>1. Introduction <lb/>Performing research using the Internet, as opposed to an isolated <lb/>testbed or simulation platform, means that experiments co-exist in a <lb/>space with other users. This document outlines guidelines for <lb/>academic and industry researchers that might use the Internet as part <lb/>of scientific experimentation to mitigate risks to the safety of <lb/>other users. <lb/>1.1. Scope of this document <lb/>Following the guidelines contained within this document is not a <lb/>substitute for any institutional ethics review process, although <lb/>these guidelines could help to inform that process. Similarly, these <lb/>guidelines are not legal advice and local laws must also be <lb/>considered before starting any experiment that could have adverse <lb/>impacts on user safety. <lb/>1.2. Active and passive measurements <lb/>Internet measurement studies can be broadly categorized into two <lb/>groups: active measurements and passive measurements. Active <lb/>measurements generate traffic. Performance measurements such as TCP <lb/>throughput testing [RFC6349] or functional measurements such as the <lb/>feature-dependent connectivity failure tests performed by <lb/>[PATHspider] both fall into this category. Performing passive <lb/>measurements requires existing traffic. <lb/>Both active and passive measurements carry risk. A poorly considered <lb/>active measurement could result in an inadvertent denial-of-service <lb/>attack, while passive measurements could result in serious violations <lb/>of user privacy. <lb/>The type of measurement is not truly binary and many studies will <lb/>include both active and passive components. Each of the <lb/>considerations in this document must be carefully considered for <lb/>their applicability regardless of the type of measurement. <lb/></body> + + <note place="footnote">Learmonth <lb/>Expires January 9, 2020 <lb/></note> + + <page>[Page 2] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>Safe Internet Measurement <lb/>July 2019 <lb/></note> + + <body>2. Consent <lb/>In an ideal world, informed consent would be collected from all users <lb/>that may be placed at risk, no matter how small a risk, by an <lb/>experiment. In cases where it is practical to do so, this should be <lb/>done. <lb/>2.1. Informed Consent <lb/>For consent to be informed, all possible risks must be presented to <lb/>the users. The considerations in this document can be used to <lb/>provide a starting point although other risks may be present <lb/>depending on the nature of the measurements to be performed. <lb/>2.2. Informed Consent: Case Study <lb/>A researcher would like to use volunteer owned mobile devices to <lb/>collect information about local Internet censorship. Connections <lb/>will be made from the volunteer's device towards known or suspected <lb/>blocked webpages. <lb/>This experiment can carry substantial risk for the user depending on <lb/>the circumstances, from disciplinary action from their employer to <lb/>arrest or imprisonment. Fully informed consent ensures that any risk <lb/>that is being taken has been carefully considered by the volunteer <lb/>before proceeding. <lb/>2.3. Proxy Consent <lb/>In cases where it is not practical to collect informed consent from <lb/>all users of a shared network, it may be possible to obtain proxy <lb/>consent. Proxy consent may be given by a network operator or <lb/>employer that would be more familiar with the expectations of users <lb/>of a network than the researcher. <lb/>In some cases, a network operator or employer may have terms of <lb/>service that specifically allow for giving consent to 3rd parties to <lb/>perform certain experiments. <lb/>2.4. Proxy Consent: Case Study <lb/>A researcher would like to perform a packet capture to determine the <lb/>TCP options and their values used by all client devices on an <lb/>corporate wireless network. <lb/>The employer may already have terms of service laid out that allow <lb/>them to provide proxy consent for this experiment on behalf of the <lb/>employees (the users of the network). The purpose of the experiment <lb/></body> + + <note place="footnote">Learmonth <lb/>Expires January 9, 2020 <lb/></note> + + <page>[Page 3] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>Safe Internet Measurement <lb/>July 2019 <lb/></note> + + <body>may affect whether or not they are able to provide this consent. For <lb/>example, to perform engineering work on the network then it may be <lb/>allowed, whereas academic research may not be covered. <lb/>2.5. Implied Consent <lb/>In larger scale measurements, even proxy consent collection may not <lb/>be practical. In this case, implied consent may be presumed from <lb/>users for some measurements. Consider that users of a network will <lb/>have certain expectations of privacy and those expectations may not <lb/>align with the privacy guarantees offered by the technologies they <lb/>are using. As a thought experiment, consider how users might respond <lb/>if asked for their informed consent for the measurements you'd like <lb/>to perform. <lb/>Implied consent should not be considered sufficient for any <lb/>experiment that may collect sensitive or personally identifying <lb/>information. If practical, attempt to obtain informed consent or <lb/>proxy consent from a sample of users to better understand the <lb/>expectations of other users. <lb/>2.6. Implied Consent: Case Study 1 <lb/>A researcher would like to run a measurement campaign to determine <lb/>the maximum supported TLS version on popular web servers. <lb/>The operator of a web server that is exposed to the Internet hosting <lb/>a popular website would have the expectation that it may be included <lb/>in surveys that look at supported protocols or extensions but would <lb/>not expect that attempts be made to degrade the service with large <lb/>numbers of simultaneous connections. <lb/>2.7. Implied Consent: Case Study 2 <lb/>A researcher would like to perform A/B testing for protocol feature <lb/>and how it affects web performance. They have created two versions <lb/>of their software and have instrumented both to report telemetry <lb/>back. These updates will be pushed to users at random by the <lb/>software's auto-update framework. The telemetry consists only of <lb/>performance metrics and does not contain any personally identifying <lb/>or sensitive information. <lb/>As users expect to receive automatic updates, the effect of changing <lb/>the behaviour of the software is already expected by the user. If <lb/>users have already been informed that data will be reported back to <lb/>the developers of the software, then again the addition of new <lb/>metrics would be expected. There are risks in pushing any new <lb/></body> + + <note place="footnote">Learmonth <lb/>Expires January 9, 2020 <lb/></note> + + <page>[Page 4] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>Safe Internet Measurement <lb/>July 2019 <lb/></note> + + <body>software update, and the A/B testing technique can reduce the number <lb/>of users that may be adversely affected by a bad update. <lb/>The reduced impact should not be used as an excuse for pushing higher <lb/>risk updates, only updates that could be considered appropriate to <lb/>push to all users should be A/B tested. Likewise, not pushing the <lb/>new behaviour to any user should be considered appropriate if some <lb/>users are to remain with the old behavior. <lb/>In the event that something does go wrong with the update, it should <lb/>be easy for a user to discover that they have been part of an <lb/>experiment and roll back the change, allowing for explicit refusal of <lb/>consent to override the presumed implied consent. <lb/>3. Safety Considerations <lb/>3.1. Isolate risk with a dedicated testbed <lb/>Wherever possible, use a testbed. An isolated network means that <lb/>there are no other users sharing the infrastructure you are using for <lb/>your experiments. <lb/>When measuring performance, competing traffic can have negative <lb/>effects on the performance of your test traffic and so the testbed <lb/>approach can also produce more accurate and repeatable results than <lb/>experiments using the public Internet. <lb/>WAN link conditions can be emulated through artificial delays and/or <lb/>packet loss using a tool like [netem]. Competing traffic can also be <lb/>emulated using traffic generators. <lb/>3.2. Be respectful of other's infrastructure <lb/>If your experiment is designed to trigger a response from <lb/>infrastructure that is not your own, consider what the negative <lb/>consequences of that may be. At the very least your experiment will <lb/>consume bandwidth that may have to be paid for. <lb/>In more extreme circumstances, you could cause traffic to be <lb/>generated that causes legal trouble for the owner of that <lb/>infrastructure. The Internet is a global network crossing many legal <lb/>jurisdictions and so what may be legal for you is not necessarily <lb/>legal for everyone. <lb/>If you are sending a lot of traffic quickly, or otherwise generally <lb/>deviate from typical client behaviour, a network may identify this as <lb/>an attack which means that you will not be collecting results that <lb/>are representative of what a typical client would see. <lb/></body> + + <note place="footnote">Learmonth <lb/>Expires January 9, 2020 <lb/></note> + + <page>[Page 5] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>Safe Internet Measurement <lb/>July 2019 <lb/></note> + + <body>3.2.1. Maintain a "Do Not Scan" list <lb/>When performing active measurements on a shared network, maintain a <lb/>list of hosts that you will never scan regardless of whether they <lb/>appear in your target lists. When developing tools for performing <lb/>active measurement, or traffic generation for use in a larger <lb/>measurement system, ensure that the tool will support the use of a <lb/>"Do Not Scan" list. <lb/>If complaints are made that request you do not generate traffic <lb/>towards a host or network, you must add that host or network to your <lb/>"Do Not Scan" list, even if no explanation is given or the request is <lb/>automated. <lb/>You may ask the requester for their reasoning if it would be useful <lb/>to your experiment. This can also be an opportunity to explain your <lb/>research and offer to share any results that may be of interest. If <lb/>you plan to share the reasoning when publishing your measurement <lb/>results, e.g. in an academic paper, you must seek consent for this <lb/>from the requester. <lb/>Be aware that in publishing your measurement results, it may be <lb/>possible to infer your "Do Not Scan" list from those results. For <lb/>example, if you measured a well-known list of popular websites then <lb/>it would be possible to correlate the results with that list to <lb/>determine which are missing. <lb/>3.3. Data Minimization <lb/>When collecting, using, disclosing, and storing data from a <lb/>measurement, use only the minimal data necessary to perform a task. <lb/>Reducing the amount of data reduces the amount of data that can be <lb/>misused or leaked. <lb/>When deciding on the data to collect, assume that any data collected <lb/>might be disclosed. There are many ways that this could happen, <lb/>through operation security mistakes or compulsion by a judicial <lb/>system. <lb/>When directly instrumenting a protocol to provide metrics to a <lb/>passive observer, see section 6.1 of RFC6973 [RFC6973] for data <lb/>minimalization considerations specific to this use case. <lb/>3.3.1. Discarding Data <lb/>XXX: Discard data that is not required to perform the task. <lb/></body> + + <note place="footnote">Learmonth <lb/>Expires January 9, 2020 <lb/></note> + + <page>[Page 6] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>Safe Internet Measurement <lb/>July 2019 <lb/></note> + + <body>When performing active measurements be sure to only capture traffic <lb/>that you have generated. Traffic may be identified by IP ranges or <lb/>by some token that is unlikely to be used by other users. <lb/>Again, this can help to improve the accuracy and repeatability of <lb/>your experiment. [RFC2544], for performance benchmarking, requires <lb/>that any frames received that were not part of the test traffic are <lb/>discarded and not counted in the results. <lb/>3.3.2. Masking Data <lb/>XXX: Mask data that is not required to perform the task. <lb/>Particularly useful for content of traffic to indicate that either a <lb/>particular class of content existed or did not exist, or the length <lb/>of the content, but not recording the content itself. Can also <lb/>replace content with tokens, or encrypt. <lb/>3.3.3. Reduce Accuracy <lb/>XXX: Binning, categorizing, geoip, noise. <lb/>3.3.4. Data Aggregation <lb/>When collecting data, consider if the granularity can be limited by <lb/>using bins or adding noise. XXX: Differential privacy. <lb/>XXX: Do this at the source, definitely do it before you write to <lb/>disk. <lb/>[Tor.2017-04-001] presents a case-study on the in-memory statistics <lb/>in the software used by the Tor network, as an example. <lb/>4. Risk Analysis <lb/>The benefits should outweigh the risks. Consider auxiliary data <lb/>(e.g. third-party data sets) when assessing the risks. <lb/>5. Security Considerations <lb/>Take reasonable security precautions, e.g. about who has access to <lb/>your data sets or experimental systems. <lb/>6. IANA Considerations <lb/>This document has no actions for IANA. <lb/></body> + + <note place="footnote">Learmonth <lb/>Expires January 9, 2020 <lb/></note> + + <page>[Page 7] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>Safe Internet Measurement <lb/>July 2019 <lb/></note> + + <div type="acknowledgement">7. Acknowledgements <lb/>Many of these considerations are based on those from the <lb/>[TorSafetyBoard] adapted and generalised to be applied to Internet <lb/>research. <lb/>Other considerations are taken from the Menlo Report [MenloReport] <lb/>and its companion document [MenloReportCompanion]. <lb/></div> + + <listBibl>8. Informative References <lb/>[MenloReport] <lb/>Dittrich, D. and E. Kenneally, "The Menlo Report: Ethical <lb/>Principles Guiding Information and Communication <lb/>Technology Research", August 2012, <lb/><https://www.caida.org/publications/papers/2012/ <lb/>menlo_report_actual_formatted/>. <lb/>[MenloReportCompanion] <lb/>Bailey, M., Dittrich, D., and E. Kenneally, "Applying <lb/>Ethical Principles to Information and Communication <lb/>Technology Research", October 2013, <lb/><https://www.impactcybertrust.org/link_docs/ <lb/>Menlo-Report-Companion.pdf>. <lb/>[netem] <lb/>Stephen, H., "Network emulation with NetEm", April 2005. <lb/>[PATHspider] <lb/>Learmonth, I., Trammell, B., Kuehlewind, M., and G. <lb/>Fairhurst, "PATHspider: A tool for active measurement of <lb/>path transparency", DOI 10.1145/2959424.2959441, July <lb/>2016, <lb/><https://dl.acm.org/citation.cfm?doid=2959424.2959441>. <lb/>[RFC2544] Bradner, S. and J. McQuaid, "Benchmarking Methodology for <lb/>Network Interconnect Devices", RFC 2544, <lb/>DOI 10.17487/RFC2544, March 1999, <lb/><https://www.rfc-editor.org/info/rfc2544>. <lb/>[RFC6349] Constantine, B., Forget, G., Geib, R., and R. Schrage, <lb/>"Framework for TCP Throughput Testing", RFC 6349, <lb/>DOI 10.17487/RFC6349, August 2011, <lb/><https://www.rfc-editor.org/info/rfc6349>. <lb/>[RFC6973] Cooper, A., Tschofenig, H., Aboba, B., Peterson, J., <lb/>Morris, J., Hansen, M., and R. Smith, "Privacy <lb/>Considerations for Internet Protocols", RFC 6973, July <lb/>2013, <https://www.rfc-editor.org/info/rfc6937>. <lb/></listBibl> + + <note place="footnote">Learmonth <lb/>Expires January 9, 2020 <lb/></note> + + <page>[Page 8] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>Safe Internet Measurement <lb/>July 2019 <lb/></note> + + <listBibl>[Tor.2017-04-001] <lb/>Herm, K., "Privacy analysis of Tor's in-memory <lb/>statistics", Tor Tech Report 2017-04-001, April 2017, <lb/><https://research.torproject.org/techreports/ <lb/>privacy-in-memory-2017-04-28.pdf>. <lb/>[TorSafetyBoard] <lb/>Tor Project, "Tor Research Safety Board", <lb/><https://research.torproject.org/safetyboard/>. <lb/></listBibl> + + Authors' Addresses <lb/> + + <front>Iain R. Learmonth <lb/>Tor Project <lb/>Email: irl@torproject.org <lb/></front> + + <note place="footnote">Learmonth <lb/>Expires January 9, 2020 <lb/></note> + + <page>[Page 9] </page> + + + </text> +</tei> diff --git a/grobid-trainer/resources/dataset/segmentation/sdo/ietf/corpus/tei/XP015134172.training.segmentation.tei.xml b/grobid-trainer/resources/dataset/segmentation/sdo/ietf/corpus/tei/XP015134172.training.segmentation.tei.xml new file mode 100644 index 0000000000..75bb6019e7 --- /dev/null +++ b/grobid-trainer/resources/dataset/segmentation/sdo/ietf/corpus/tei/XP015134172.training.segmentation.tei.xml @@ -0,0 +1,73 @@ +<?xml version="1.0" ?> +<tei xml:space="preserve"> + <teiHeader> + <fileDesc xml:id="0"/> + </teiHeader> + <text xml:lang="en"> + <front>server date 20190708; downloaded by EPO on 20190710 <lb/>Network Working Group <lb/>B. Liu <lb/>Internet-Draft <lb/>Huawei Technologies <lb/>Intended status: Standards Track <lb/>July 8, 2019 <lb/>Expires: January 9, 2020 <lb/>Instant Congestion Assessment Network (iCAN) for Data Plane Traffic <lb/>Engineering <lb/>draft-liu-ican-00 <lb/>Abstract <lb/> iCAN (instant Congestion Assessment Network) is a set of mechanisms <lb/>running directly on network nodes: <lb/>o To adjust the flows paths based on real-time measurement of the <lb/>candidate paths. <lb/>o The measurement is to reflect the congestion situation of each <lb/>path, so that the ingress nodes could decide which flows need to <lb/>be switched from a path to another. <lb/>This is something that current SDN and TE technologies can hardly <lb/>achieve: <lb/>o SDN Controller is slow and far from the data plane, it is neither <lb/>able to assess the real-time congestion situation of each path, <lb/>nor able to assure the data plane always go as expected <lb/>(especially in SRv6 scenarios). However, iCAN can work with SDN <lb/>perfectly: controller planning multi-path transmission, and iCAN <lb/>does the flow optimization automatically. <lb/>o Traditional TE is not able to adjust the flow paths in real-time. <lb/>Status of This Memo <lb/>This Internet-Draft is submitted in full conformance with the <lb/>provisions of BCP 78 and BCP 79. <lb/>Internet-Drafts are working documents of the Internet Engineering <lb/>Task Force (IETF). Note that other groups may also distribute <lb/>working documents as Internet-Drafts. The list of current Internet-<lb/>Drafts is at https://datatracker.ietf.org/drafts/current/. <lb/>Internet-Drafts are draft documents valid for a maximum of six months <lb/>and may be updated, replaced, or obsoleted by other documents at any <lb/>time. It is inappropriate to use Internet-Drafts as reference <lb/>material or to cite them other than as "work in progress." <lb/> Liu <lb/>Expires January 9, 2020 <lb/> [Page 1] <lb/> Internet-Draft <lb/>iCAN <lb/>July 2019 <lb/> This Internet-Draft will expire on January 9, 2020. <lb/>Copyright Notice <lb/>Copyright (c) 2019 IETF Trust and the persons identified as the <lb/>document authors. All rights reserved. <lb/>This document is subject to BCP 78 and the IETF Trust's Legal <lb/>Provisions Relating to IETF Documents <lb/>(https://trustee.ietf.org/license-info) in effect on the date of <lb/>publication of this document. Please review these documents <lb/>carefully, as they describe your rights and restrictions with respect <lb/>to this document. Code Components extracted from this document must <lb/>include Simplified BSD License text as described in Section 4.e of <lb/>the Trust Legal Provisions and are provided without warranty as <lb/>described in the Simplified BSD License. <lb/></front> + + <div type="toc">Table of Contents <lb/>1. Introduction . . . . . . . . . . . . . . . . . . . . . . . . <lb/>2 <lb/>2. iCAN Architecture and Key Technical Requirements . . . . . . <lb/>3 <lb/>2.1. Architecture . . . . . . . . . . . . . . . . . . . . . . <lb/>3 <lb/>2.2. Key technical requirements . . . . . . . . . . . . . . . <lb/>5 <lb/>2.2.1. Path quality assessment . . . . . . . . . . . . . . . <lb/>5 <lb/>2.2.2. Recognition and statistic of flows in devices . . . . <lb/>5 <lb/>2.2.3. Flow switching between paths . . . . . . . . . . . . <lb/>5 <lb/>3. Use Cases of iCAN . . . . . . . . . . . . . . . . . . . . . . <lb/>6 <lb/>3.1. Network load balancing . . . . . . . . . . . . . . . . . <lb/>6 <lb/>3.2. SLA assurance . . . . . . . . . . . . . . . . . . . . . . <lb/>6 <lb/>3.3. Fine-Granularity reliability . . . . . . . . . . . . . . <lb/>6 <lb/>4. Implementation Scenarios . . . . . . . . . . . . . . . . . . <lb/>6 <lb/>4.1. iCAN with SRv6 . . . . . . . . . . . . . . . . . . . . . <lb/>6 <lb/>4.2. iCAN with VxLAN . . . . . . . . . . . . . . . . . . . . . <lb/>7 <lb/>4.3. iCAN with MPLS/MPLS-TE . . . . . . . . . . . . . . . . . <lb/>7 <lb/>5. Standardization Requirements . . . . . . . . . . . . . . . . <lb/>7 <lb/>6. Security Considerations . . . . . . . . . . . . . . . . . . . <lb/>7 <lb/>7. IANA Considerations . . . . . . . . . . . . . . . . . . . . . <lb/>7 <lb/>8. Acknowledgements . . . . . . . . . . . . . . . . . . . . . . <lb/>7 <lb/>9. References . . . . . . . . . . . . . . . . . . . . . . . . . <lb/>8 <lb/>9.1. Normative References . . . . . . . . . . . . . . . . . . <lb/>8 <lb/>9.2. Informative References . . . . . . . . . . . . . . . . . <lb/>8 <lb/>Author's Address . . . . . . . . . . . . . . . . . . . . . . . . <lb/>8 <lb/></div> + + <body>1. Introduction <lb/>Traditional IP routing is shortest path based on static metrics, <lb/>which can fulfil basic requirement of connectivity. MPLS-TE brings <lb/>the capability of utilizing non-shortest paths, thus traffic dispatch <lb/></body> + + <note place="footnote">Liu <lb/>Expires January 9, 2020 <lb/></note> + + <page>[Page 2] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>iCAN <lb/>July 2019 <lb/></note> + + <body>is doable; however, MPLS-TE in only a complementary mechanism because <lb/>of the scalability issue. Segment routing provides even more <lb/>flexibility that paths could be easily programmed; and along with the <lb/>controller, it could be scaled. <lb/>However, the above mentioned mechanism all run in the control plane, <lb/>which implies that they are not able to sense the data plane <lb/>situation in real-time, thus they are mostly for relative static <lb/>planning/controlling (minuets, hours or even day-level) of network <lb/>traffic and not able to adapt to the microscopic traffic change in <lb/>real-time (e.g. mili-second level). So, in real bearer networks <lb/>(metro, backbones etc.), it is always underload so that the redundant <lb/>resources could tolerant the traffic burst, results in a significant <lb/>waste of network resources. <lb/>This draft proposes the iCAN (Instant Congestion Assessment Network) <lb/>architecture to achieve autonomous adapt to traffic changes in real-<lb/>time in terms of switching flows between multiple forwarding paths. <lb/>iCAN includes following things: <lb/>o A mechanism between ingress and egress nodes to assess the path <lb/>congestion situation in RTT level speed, to recognize which paths <lb/>are underload and which are heavy loaded. <lb/>o Recognizing big flows and small flows in the device, in real time <lb/>o Ingress node dispatches flows to multiple paths, to make load <lb/>balance, or to guarantee SLA for specific flows <lb/>This draft also discusses use cases and implementation scenarios of <lb/>iCAN. <lb/>2. iCAN Architecture and Key Technical Requirements <lb/>2.1. Architecture <lb/></body> + + <note place="footnote">Liu <lb/>Expires January 9, 2020 <lb/></note> + + <page>[Page 3] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>iCAN <lb/>July 2019 <lb/></note> + + <body>+-----------+ <lb/>| <lb/>| <lb/>| Controller| <lb/>| <lb/>| <lb/>+-----------+ <lb/>| <lb/>0.Multi-path | <lb/>Planning | <lb/>| <lb/>| <lb/>v <lb/>+-----------+ --------Path 1------------+----------+ <lb/>Imcoming Flows | Ingress |3.Flow swithing between paths | Egress <lb/>| <lb/>--------------> | Router <lb/>| --------Path N------------| Router <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| <lb/>+-/------\--+ <--------------------------> +----------+ <lb/>/ <lb/>\ <lb/>1.Path Quality Assessment <lb/>/ 2. Flow \ (simultaneusly on multiple paths) <lb/>/ recognition <lb/>/ <lb/>\ <lb/>As above figure shows, there are 3 entities: <lb/>1. Controller <lb/>-Responsible for planning multiple paths for a set of flows <lb/>that could be aggregated to a pair of Ingress/Egress routers. <lb/>-After delivering the planned paths to the ingress router, the <lb/>controller would need nothing to do. <lb/>2. Ingress router: <lb/>-Serves as a local "controller" for the iCAN system. <lb/>-Responsible for triggering the path congestion assessment, <lb/>which is coordinated with the egress router through a <lb/>measurement protocol. <lb/>-After getting the assessment results, the ingress router would <lb/>calculate which flows need to be switched to a different path, <lb/>in order to make the paths load balanced or to assure the <lb/>transport quality of a certain of important flows. <lb/>-In order to do the path switching calculation, the ingress <lb/>router needs to recognize the TopN flow passing by it, since <lb/>switching the big flows would make the most effort. <lb/></body> + + <note place="footnote">Liu <lb/>Expires January 9, 2020 <lb/></note> + + <page>[Page 4] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>iCAN <lb/>July 2019 <lb/></note> + + <body>3. Egress router: <lb/>-Only needs to coordinate with the ingress router to do the <lb/>path assessment. <lb/>2.2. Key technical requirements <lb/>2.2.1. Path quality assessment <lb/>o Req-1: the assessment MUST reflex the congestion status of the <lb/>paths. (Note: a candidate congestion metric is proposed as: <lb/>[I-D.dang-ippm-congestion].) <lb/>o Req-2: the assessment SHOULD be done within a RTT timeslot. Since <lb/>iCAN is to adapt the traffic change in real-time, the assessment <lb/>needs to be done very fast. <lb/>o Req-3: the assessment MUST be done for multiple paths between the <lb/>same ingress/egress routes simultaneously. (Note: a candidate <lb/>congestion metric is proposed as: <lb/>[I-D.dang-ippm-multiple-path-measurement].) <lb/>2.2.2. Recognition and statistic of flows in devices <lb/>o Req-1: the device SHOULD be able to recognize TopN big flows <lb/>within a timeslot. <lb/>o Req-2: the device MAY need to statistic all flows' amount within a <lb/>timeslot. <lb/>2.2.3. Flow switching between paths <lb/>o Req-1: the device SHOULD be able to recognize flow let. The flow <lb/>switching is done from the next flow let. <lb/>o Req-2: the device MAY need to actively generate gap to <lb/>artificially create flow let. If the flow needs to be switched <lb/>immediately, then the device would need to make the gap, to avoid <lb/>out-of-order packets arriving to the destination through multiple <lb/>paths. <lb/>o Req-3: the device SHOULD avoid oscillation of frequently switching <lb/>flows from one to another. <lb/>o Req-4: multiple ingress devices SHOULD be able to coordinate so <lb/>that they won't switch flows to the shared path at the same time, <lb/>to avoid potential congestion in the shared path. <lb/></body> + + <note place="footnote">Liu <lb/>Expires January 9, 2020 <lb/></note> + + <page>[Page 5] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>iCAN <lb/>July 2019 <lb/></note> + + <body>3. Use Cases of iCAN <lb/>3.1. Network load balancing <lb/>Background problem: traffic is not balanced in current metro network. <lb/>While some links are heavily loaded, others might be still lightly <lb/>loaded: unbalance could lows down the service quality (e.g. SLA <lb/>could not be guaranteed in the heavily loaded links/paths); unbalance <lb/>could lows down the network utilization ratio (normally with 30%, <lb/>e.g. a 100G physical capacity network can only bear at most 30G <lb/>traffic, a huge waste of network infrastructure). <lb/>iCAN could be used for load balance among the multiple paths between <lb/>a pair of ingress/egress nodes. Once the network is balanced, the <lb/>real throughput of the network could be elevated significantly. <lb/>3.2. SLA assurance <lb/>Since iCAN could switch flow in real-time, it can guarantee a set of <lb/>important flows. Once the path which carries the important flows is <lb/>to be congested, the other flows could be switched to alternative <lb/>paths, and the important flows would stablely running in the original <lb/>path. <lb/>(More content TBD) <lb/>3.3. Fine-Granularity reliability <lb/>Traditional reliability protocols such as BFD, can only assess the <lb/>link on or off. With the path congestion assessment ability, iCAN <lb/>could also asses the quality degradation. <lb/>(More content TBD) <lb/>4. Implementation Scenarios <lb/>4.1. iCAN with SRv6 <lb/>-SR Multiple Explicit Paths <lb/>For example, there are 3 paths between the ingress and egress <lb/>nodes, and the multi-path is defined as a SR-List containing <lb/>LSP1/2/3. <lb/>The probe message detects the congestion status of the three SR-<lb/>list paths. The edge device adjusts the load balancing between <lb/>the three paths according to the congestion status of the three <lb/></body> + + <note place="footnote">Liu <lb/>Expires January 9, 2020 <lb/></note> + + <page>[Page 6] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>iCAN <lb/>July 2019 <lb/></note> + + <body>SR-lists, and switch the flows from the path with a high <lb/>congestion to the path with a low congestion. <lb/>-SR Multiple Explicit+Loose Paths <lb/>In loose path scenario, there needs to be an additional approach <lb/>to probe the specific paths of a SR tunnel. After that, <lb/>operations on the probed paths are the same as explicit path <lb/>scenario. <lb/>4.2. iCAN with VxLAN <lb/>TBD. <lb/>4.3. iCAN with MPLS/MPLS-TE <lb/>TBD. <lb/>5. Standardization Requirements <lb/>1. Multi-path Planning (North Interface between Controller and <lb/>devices) <lb/>2. Path Congestion Assesment (Horizontal Interface between devices), <lb/>mostly regarding to Req-1&2&3 described in Section 2.2.1 . <lb/>3. Flow Switching Negotiation (Horizontal Interface between <lb/>devices), mostly regarding to Req-3&4 described in Section 2.2.3 <lb/>. <lb/>(More content TBD.) <lb/>6. Security Considerations <lb/>TBD. <lb/>7. IANA Considerations <lb/>TBD. <lb/></body> + + <div type="acknowledgement">8. Acknowledgements <lb/>Very valuable comments were from Shunsuke Homma, Mikael Abrahamsson <lb/>and Bruno Decraene. <lb/>A commercial router hardware based prototype had been implemented to <lb/>prove the machinisms discussed in the document are workable. <lb/></div> + + <note place="footnote">Liu <lb/>Expires January 9, 2020 <lb/></note> + + <page>[Page 7] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>iCAN <lb/>July 2019 <lb/></note> + + <listBibl>9. References <lb/>9.1. Normative References <lb/>[RFC2119] Bradner, S., "Key words for use in RFCs to Indicate <lb/>Requirement Levels", BCP 14, RFC 2119, <lb/>DOI 10.17487/RFC2119, March 1997, <lb/><https://www.rfc-editor.org/info/rfc2119>. <lb/>[RFC2629] Rose, M., "Writing I-Ds and RFCs using XML", RFC 2629, <lb/>DOI 10.17487/RFC2629, June 1999, <lb/><https://www.rfc-editor.org/info/rfc2629>. <lb/>9.2. Informative References <lb/>[I-D.dang-ippm-congestion] <lb/>Dang, J. and J. Wang, "A One-Path Congestion Metric for <lb/>IPPM", draft-dang-ippm-congestion-01 (work in progress), <lb/>March 2019. <lb/>[I-D.dang-ippm-multiple-path-measurement] <lb/>Dang, J. and J. Wang, "A Multi-Path Concurrent Measurement <lb/>Protocol for IPPM", draft-dang-ippm-multiple-path-<lb/>measurement-01 (work in progress), March 2019. <lb/></listBibl> + + Author's Address <lb/> + + <front>Bing Liu <lb/>Huawei Technologies <lb/>Q14, Huawei Campus <lb/>No.156 Beiqing Road <lb/>Hai-Dian District, Beijing 100095 <lb/>P.R. China <lb/>Email: leo.liubing@huawei.com <lb/></front> + + <note place="footnote">Liu <lb/>Expires January 9, 2020 <lb/></note> + + <page>[Page 8] </page> + + + </text> +</tei> diff --git a/grobid-trainer/resources/dataset/segmentation/sdo/ietf/corpus/tei/XP015134323.training.segmentation.tei.xml b/grobid-trainer/resources/dataset/segmentation/sdo/ietf/corpus/tei/XP015134323.training.segmentation.tei.xml new file mode 100644 index 0000000000..038f2797bf --- /dev/null +++ b/grobid-trainer/resources/dataset/segmentation/sdo/ietf/corpus/tei/XP015134323.training.segmentation.tei.xml @@ -0,0 +1,187 @@ +<?xml version="1.0" ?> +<tei xml:space="preserve"> + <teiHeader> + <fileDesc xml:id="0"/> + </teiHeader> + <text xml:lang="en"> + <front>server date 20190709; downloaded by EPO on 20190710 <lb/>Benchmarking Working Group <lb/>M. Konstantynowicz, Ed. <lb/>Internet-Draft <lb/>V. Polak, Ed. <lb/>Intended status: Informational <lb/>Cisco Systems <lb/>Expires: January 9, 2020 <lb/>July 08, 2019 <lb/>Probabilistic Loss Ratio Search for Packet Throughput (PLRsearch) <lb/>draft-vpolak-bmwg-plrsearch-02 <lb/>Abstract <lb/>This document addresses challenges while applying methodologies <lb/>described in [RFC2544] to benchmarking software based NFV (Network <lb/>Function Virtualization) data planes over an extended period of time, <lb/>sometimes referred to as "soak testing". Packet throughput search <lb/>approach proposed by this document assumes that system under test is <lb/>probabilistic in nature, and not deterministic. <lb/>Status of This Memo <lb/>This Internet-Draft is submitted in full conformance with the <lb/>provisions of BCP 78 and BCP 79. <lb/>Internet-Drafts are working documents of the Internet Engineering <lb/>Task Force (IETF). Note that other groups may also distribute <lb/>working documents as Internet-Drafts. The list of current Internet-<lb/>Drafts is at https://datatracker.ietf.org/drafts/current/. <lb/>Internet-Drafts are draft documents valid for a maximum of six months <lb/>and may be updated, replaced, or obsoleted by other documents at any <lb/>time. It is inappropriate to use Internet-Drafts as reference <lb/>material or to cite them other than as "work in progress." <lb/>This Internet-Draft will expire on January 9, 2020. <lb/>Copyright Notice <lb/>Copyright (c) 2019 IETF Trust and the persons identified as the <lb/>document authors. All rights reserved. <lb/>This document is subject to BCP 78 and the IETF Trust's Legal <lb/>Provisions Relating to IETF Documents <lb/>(https://trustee.ietf.org/license-info) in effect on the date of <lb/>publication of this document. Please review these documents <lb/>carefully, as they describe your rights and restrictions with respect <lb/>to this document. Code Components extracted from this document must <lb/>include Simplified BSD License text as described in Section 4.e of <lb/>Konstantynowicz & Polak Expires January 9, 2020 <lb/>[Page 1] <lb/>Internet-DraProbabilistic Loss Ratio Search for Packet Throug July 2019 <lb/>the Trust Legal Provisions and are provided without warranty as <lb/>described in the Simplified BSD License. <lb/></front> + + <div type="toc">Table of Contents <lb/>1. Motivation . . . . . . . . . . . . . . . . . . . . . . . . . <lb/>3 <lb/>2. Relation To RFC2544 . . . . . . . . . . . . . . . . . . . . . <lb/>4 <lb/>3. Terms And Assumptions . . . . . . . . . . . . . . . . . . . . <lb/>4 <lb/>3.1. Device Under Test . . . . . . . . . . . . . . . . . . . . <lb/>4 <lb/>3.2. System Under Test . . . . . . . . . . . . . . . . . . . . <lb/>4 <lb/>3.3. SUT Configuration . . . . . . . . . . . . . . . . . . . . <lb/>4 <lb/>3.4. SUT Setup . . . . . . . . . . . . . . . . . . . . . . . . <lb/>4 <lb/>3.5. Network Traffic . . . . . . . . . . . . . . . . . . . . . <lb/>5 <lb/>3.6. Packet . . . . . . . . . . . . . . . . . . . . . . . . . <lb/>5 <lb/>3.6.1. Packet Offered . . . . . . . . . . . . . . . . . . . <lb/>5 <lb/>3.6.2. Packet Received . . . . . . . . . . . . . . . . . . . <lb/>5 <lb/>3.6.3. Packet Lost . . . . . . . . . . . . . . . . . . . . . <lb/>5 <lb/>3.6.4. Other Packets . . . . . . . . . . . . . . . . . . . . <lb/>5 <lb/>3.7. Traffic Profile . . . . . . . . . . . . . . . . . . . . . <lb/>6 <lb/>3.8. Traffic Generator . . . . . . . . . . . . . . . . . . . . <lb/>6 <lb/>3.9. Offered Load . . . . . . . . . . . . . . . . . . . . . . <lb/>6 <lb/>3.10. Trial Measurement . . . . . . . . . . . . . . . . . . . . <lb/>6 <lb/>3.11. Trial Duration . . . . . . . . . . . . . . . . . . . . . <lb/>7 <lb/>3.12. Packet Loss . . . . . . . . . . . . . . . . . . . . . . . <lb/>7 <lb/>3.12.1. Loss Count . . . . . . . . . . . . . . . . . . . . . <lb/>7 <lb/>3.12.2. Loss Rate . . . . . . . . . . . . . . . . . . . . . <lb/>7 <lb/>3.12.3. Loss Ratio . . . . . . . . . . . . . . . . . . . . . <lb/>7 <lb/>3.13. Trial Order Independent System . . . . . . . . . . . . . <lb/>7 <lb/>3.14. Trial Measurement Result Distribution . . . . . . . . . . <lb/>8 <lb/>3.15. Average Loss Ratio . . . . . . . . . . . . . . . . . . . <lb/>8 <lb/>3.16. Duration Independent System . . . . . . . . . . . . . . . <lb/>8 <lb/>3.17. Load Regions . . . . . . . . . . . . . . . . . . . . . . <lb/>9 <lb/>3.17.1. Zero Loss Region . . . . . . . . . . . . . . . . . . <lb/>9 <lb/>3.17.2. Guaranteed Loss Region . . . . . . . . . . . . . . . <lb/>9 <lb/>3.17.3. Non-Deterministic Region . . . . . . . . . . . . . . <lb/>9 <lb/>3.17.4. Normal Region Ordering . . . . . . . . . . . . . . . <lb/>9 <lb/>3.18. Deterministic System . . . . . . . . . . . . . . . . . . 10 <lb/>3.19. Througphput . . . . . . . . . . . . . . . . . . . . . . . 10 <lb/>3.20. Deterministic Search . . . . . . . . . . . . . . . . . . 10 <lb/>3.21. Probabilistic Search . . . . . . . . . . . . . . . . . . 10 <lb/>3.22. Loss Ratio Function . . . . . . . . . . . . . . . . . . . 11 <lb/>3.23. Target Loss Ratio . . . . . . . . . . . . . . . . . . . . 11 <lb/>3.24. Critical Load . . . . . . . . . . . . . . . . . . . . . . 11 <lb/>3.25. Critical Load Estimate . . . . . . . . . . . . . . . . . 11 <lb/>3.26. Fitting Function . . . . . . . . . . . . . . . . . . . . 11 <lb/>3.27. Shape of Fitting Function . . . . . . . . . . . . . . . . 11 <lb/>3.28. Parameter Space . . . . . . . . . . . . . . . . . . . . . 12 <lb/>4. Abstract Algorithm . . . . . . . . . . . . . . . . . . . . . 12 <lb/></div> + + <note place="footnote">Konstantynowicz & Polak Expires January 9, 2020 <lb/></note> + + <page>[Page 2] <lb/></page> + + <note place="headnote">Internet-DraProbabilistic Loss Ratio Search for Packet Throug July 2019 <lb/></note> + + <div type="toc">4.1. High level description . . . . . . . . . . . . . . . . . 12 <lb/>4.2. Main Ideas . . . . . . . . . . . . . . . . . . . . . . . 12 <lb/>4.2.1. Trial Durations . . . . . . . . . . . . . . . . . . . 13 <lb/>4.2.2. Target Loss Ratio . . . . . . . . . . . . . . . . . . 13 <lb/>4.3. PLRsearch Building Blocks . . . . . . . . . . . . . . . . 13 <lb/>4.3.1. Bayesian Inference . . . . . . . . . . . . . . . . . 13 <lb/>4.3.2. Iterative Search . . . . . . . . . . . . . . . . . . 14 <lb/>4.3.3. Fitting Functions . . . . . . . . . . . . . . . . . . 14 <lb/>4.3.4. Measurement Impact . . . . . . . . . . . . . . . . . 14 <lb/>4.3.5. Fitting Function Coefficients Distribution . . . . . 15 <lb/>4.3.6. Exit Condition . . . . . . . . . . . . . . . . . . . 15 <lb/>4.3.7. Integration . . . . . . . . . . . . . . . . . . . . . 15 <lb/>4.3.8. Optimizations . . . . . . . . . . . . . . . . . . . . 15 <lb/>4.3.9. Offered Load Selection . . . . . . . . . . . . . . . 16 <lb/>4.3.10. Trend Analysis . . . . . . . . . . . . . . . . . . . 16 <lb/>5. Sample Implementation Specifics: FD.io CSIT . . . . . . . . . 16 <lb/>5.1. Measurement Delay . . . . . . . . . . . . . . . . . . . . 16 <lb/>5.2. Rounding Errors and Underflows . . . . . . . . . . . . . 17 <lb/>5.3. Fitting Functions . . . . . . . . . . . . . . . . . . . . 17 <lb/>5.3.1. Stretch Function . . . . . . . . . . . . . . . . . . 18 <lb/>5.3.2. Erf Function . . . . . . . . . . . . . . . . . . . . 18 <lb/>5.4. Prior Distributions . . . . . . . . . . . . . . . . . . . 19 <lb/>5.5. Integrator . . . . . . . . . . . . . . . . . . . . . . . 19 <lb/>5.6. Offered Load Selection . . . . . . . . . . . . . . . . . 20 <lb/>6. IANA Considerations . . . . . . . . . . . . . . . . . . . . . 20 <lb/>7. Security Considerations . . . . . . . . . . . . . . . . . . . 20 <lb/>8. Acknowledgements . . . . . . . . . . . . . . . . . . . . . . 21 <lb/>9. References . . . . . . . . . . . . . . . . . . . . . . . . . 21 <lb/>9.1. Normative References . . . . . . . . . . . . . . . . . . 21 <lb/>9.2. Informative References . . . . . . . . . . . . . . . . . 21 <lb/>Authors' Addresses . . . . . . . . . . . . . . . . . . . . . . . 21 <lb/></div> + + <body>1. Motivation <lb/>Network providers are interested in throughput a system can sustain. <lb/>[RFC2544] assumes loss ratio is given by a deterministic function of <lb/>offered load. But NFV software systems are not deterministic enough. <lb/>This makes deterministic algorithms (such as Binary Search per <lb/>[RFC2544] and [draft-vpolak-mkonstan-bmwg-mlrsearch] with single <lb/>trial) to return results, which when repeated show relatively high <lb/>standard deviation, thus making it harder to tell what "the <lb/>throughput" actually is. <lb/>We need another algorithm, which takes this indeterminism into <lb/>account. <lb/></body> + + <note place="footnote">Konstantynowicz & Polak Expires January 9, 2020 <lb/></note> + + <page>[Page 3] <lb/></page> + + <note place="headnote">Internet-DraProbabilistic Loss Ratio Search for Packet Throug July 2019 <lb/></note> + + <body>2. Relation To RFC2544 <lb/>The aim of this document is to become an extension of [RFC2544] <lb/>suitable for benchmarking networking setups such as software based <lb/>NFV systems. <lb/>3. Terms And Assumptions <lb/>3.1. Device Under Test <lb/>In software networking, "device" denotes a specific piece of software <lb/>tasked with packet processing. Such device is surrounded with other <lb/>software components (such as operating system kernel). It is not <lb/>possible to run devices without also running the other components, <lb/>and hardware resources are shared between both. <lb/>For purposes of testing, the whole set of hardware and software <lb/>components is called "system under test" (SUT). As SUT is the part <lb/>of the whole test setup performance of which can be measured by <lb/>[RFC2544] methods, this document uses SUT instead of [RFC2544] DUT. <lb/>Device under test (DUT) can be re-introduced when analysing test <lb/>results using whitebox techniques, but that is outside the scope of <lb/>this document. <lb/>3.2. System Under Test <lb/>System under test (SUT) is a part of the whole test setup whose <lb/>performance is to be benchmarked. The complete methodology contains <lb/>other parts, whose performance is either already established, or not <lb/>affecting the benchmarking result. <lb/>3.3. SUT Configuration <lb/>Usually, system under test allows different configurations, affecting <lb/>its performance. The rest of this document assumes a single <lb/>configuration has been chosen. <lb/>3.4. SUT Setup <lb/>Similarly to [RFC2544], it is assumed that the system under test has <lb/>been updated with all the packet forwarding information it needs, <lb/>before the trial measurements (see below) start. <lb/></body> + + <note place="footnote">Konstantynowicz & Polak Expires January 9, 2020 <lb/></note> + + <page>[Page 4] <lb/></page> + + <note place="headnote">Internet-DraProbabilistic Loss Ratio Search for Packet Throug July 2019 <lb/></note> + + <body>3.5. Network Traffic <lb/>Network traffic is a type of interaction between system under test <lb/>and the rest of the system (traffic generator), used to gather <lb/>information about the system under test performance. PLRsearch is <lb/>applicable only to areas where network traffic consists of packets. <lb/>3.6. Packet <lb/>Unit of interaction between traffic generator and the system under <lb/>test. Term "packet" is used also as an abstraction of Ethernet <lb/>frames. <lb/>3.6.1. Packet Offered <lb/>Packet can be offered, which means it is sent from traffic generator <lb/>to the system under test. <lb/>Each offered packet is assumed to become received or lost in a short <lb/>time. <lb/>3.6.2. Packet Received <lb/>Packet can be received, which means the traffic generator verifies it <lb/>has been processed. Typically, when it is succesfully sent from the <lb/>system under test to traffic generator. <lb/>It is assumed that each received packet has been caused by an offered <lb/>packet, so the number of packets received cannot be larger than the <lb/>number of packets offered. <lb/>3.6.3. Packet Lost <lb/>Packet can be lost, which means sent but not received in a timely <lb/>manner. <lb/>It is assumed that each lost packet has been caused by an offered <lb/>packet, so the number of packets lost cannot be larger than the <lb/>number of packets offered. <lb/>Usually, the number of packets lost is computed as the number of <lb/>packets offered, minus the number of packets received. <lb/>3.6.4. Other Packets <lb/>PLRsearch is not considering other packet behaviors known from <lb/>networking (duplicated, reordered, greatly delayed), assuming the <lb/></body> + + <note place="footnote">Konstantynowicz & Polak Expires January 9, 2020 <lb/></note> + + <page>[Page 5] <lb/></page> + + <note place="headnote">Internet-DraProbabilistic Loss Ratio Search for Packet Throug July 2019 <lb/></note> + + <body>test specification reclassifies those behaviors to fit into the first <lb/>three categories. <lb/>3.7. Traffic Profile <lb/>Usually, the performance of the system under test depends on a "type" <lb/>of a particular packet (for example size), and "composition" if the <lb/>network traffic consists of a mixture of different packet types. <lb/>Also, some systems under test contain multiple "ports" packets can be <lb/>offered to and received from. <lb/>All such qualities together (but not including properties of trial <lb/>measurements) are called traffic profile. <lb/>Similarly to system under test configuration, this document assumes <lb/>only one traffic profile has been chosen for a particular test. <lb/>3.8. Traffic Generator <lb/>Traffic generator is the part of the whole test setup, distinct from <lb/>the system under test, responsible both for offering packets in a <lb/>highly predictable manner (so the number of packets offered is <lb/>known), and for counting received packets in a precise enough way (to <lb/>distinguish lost packets from tolerably delayed packets). <lb/>Traffic generator must offer only packets compatible with the traffic <lb/>profile, and only count similarly compatible packets as received. <lb/>Criteria defining which received packets are compatible are left for <lb/>test specification to decide. <lb/>3.9. Offered Load <lb/>Offered load is an aggregate rate (measured in packets per second) of <lb/>network traffic offered to the system under test, the rate is kept <lb/>constant for the duration of trial measurement. <lb/>3.10. Trial Measurement <lb/>Trial measurement is a process of stressing (previously setup) system <lb/>under test by offering traffic of a particular offered load, for a <lb/>particular duration. <lb/>After that, the system has a short time to become idle, while the <lb/>traffic generator decides how many packets were lost. <lb/></body> + + <note place="footnote">Konstantynowicz & Polak Expires January 9, 2020 <lb/></note> + + <page>[Page 6] <lb/></page> + + <note place="headnote">Internet-DraProbabilistic Loss Ratio Search for Packet Throug July 2019 <lb/></note> + + <body>After that, another trial measurement (possibly with different <lb/>offered load and duration) can be immediately performed. Traffic <lb/>generator should ignore received packets caused by packets offered in <lb/>previous trial measurements. <lb/>3.11. Trial Duration <lb/>Duration for which the traffic generator was offering packets at <lb/>constant offered load. <lb/>In theory, care has to be taken to ensure the offered load and trial <lb/>duration predict integer number of packets to offer, and that the <lb/>traffic generator really sends appropriate number of packets within <lb/>precisely enough timed duration. In practice, such consideration do <lb/>not change PLRsearch result in any significant way. <lb/>3.12. Packet Loss <lb/>Packet loss is any quantity describing a result of trial measurement. <lb/>It can be loss count, loss rate or loss ratio. Packet loss is zero <lb/>(or non-zero) if either of the three quantities are zero (or non-<lb/>zero, respecively). <lb/>3.12.1. Loss Count <lb/>Number of packets lost (or delayed too much) at a trial measurement <lb/>by the system under test as determined by packet generator. Measured <lb/>in packets. <lb/>3.12.2. Loss Rate <lb/>Loss rate is computed as loss count divided by trial duration. <lb/>Measured in packets per second. <lb/>3.12.3. Loss Ratio <lb/>Loss ratio is computed as loss count divided by number of packets <lb/>offered. Measured as a real (in practice rational) number between <lb/>zero or one (including). <lb/>3.13. Trial Order Independent System <lb/>Trial order independent system is a system under test, proven (or <lb/>just assumed) to produce trial measurement results that display trial <lb/>order independence. <lb/></body> + + <note place="footnote">Konstantynowicz & Polak Expires January 9, 2020 <lb/></note> + + <page>[Page 7] <lb/></page> + + <note place="headnote">Internet-DraProbabilistic Loss Ratio Search for Packet Throug July 2019 <lb/></note> + + <body>That means when a pair of consequent trial measurements are <lb/>performed, the probability to observe a pair of specific results is <lb/>the same, as the probability to observe the reversed pair of results <lb/>whe performing the reversed pair of consequent measurements. <lb/>PLRsearch assumes the system under test is trial order independent. <lb/>In practice, most system under test are not entirely trial order <lb/>independent, but it is not easy to devise an algorithm taking that <lb/>into account. <lb/>3.14. Trial Measurement Result Distribution <lb/>When a trial order independent system is subjected to repeated trial <lb/>measurements of constant duration and offered load, Law of Large <lb/>Numbers implies the observed loss count frequencies will converge to <lb/>a specific probability distribution over possible loss counts. <lb/>This probability distribution is called trial measurement result <lb/>distribution, and it depends on all properties fixed when defining <lb/>it. That includes the system under test, its chosen configuration, <lb/>the chosen traffic profile, the offered load and the trial duration. <lb/>As the system is trial order independent, trial measurement result <lb/>distribution does not depend on results of few initial trial <lb/>measurements, of any offered load or (finite) duration. <lb/>3.15. Average Loss Ratio <lb/>Probability distribution over some (finite) set of states enables <lb/>computation of probability-weighted average of any quantity evaluated <lb/>on the states (called the expected value of the quantity). <lb/>Average loss ratio is simply the expected value of loss ratio for a <lb/>given trial measurement result distribution. <lb/>3.16. Duration Independent System <lb/>Duration independent system is a trial order independent system, <lb/>whose trial measurement result distribution is proven (or just <lb/>assumed) to display practical independence from trial duration. See <lb/>definition of trial duration for discussion on practical versus <lb/>theoretical. <lb/>The only requirement is for average loss ratio to be independent of <lb/>trial duration. <lb/></body> + + <note place="footnote">Konstantynowicz & Polak Expires January 9, 2020 <lb/></note> + + <page>[Page 8] <lb/></page> + + <note place="headnote">Internet-DraProbabilistic Loss Ratio Search for Packet Throug July 2019 <lb/></note> + + <body>In theory, that would necessitate each trial measurement result <lb/>distribution to be a binomial distribution. In practice, more <lb/>distributions are allowed. <lb/>PLRsearch assumes the system under test is duration independent, at <lb/>least for trial durations typically chosen for trial measurements <lb/>initiated by PLRsearch. <lb/>3.17. Load Regions <lb/>For a duration independent system, trial measurement result <lb/>distribution depends only on offered load. <lb/>It is convenient to name some areas of offered load space by possible <lb/>trial results. <lb/>3.17.1. Zero Loss Region <lb/>A particular offered load value is said to belong to zero loss <lb/>region, if the probability of seeing non-zero loss trial measurement <lb/>result is exactly zero, or at least practically indistinguishable <lb/>from zero. <lb/>3.17.2. Guaranteed Loss Region <lb/>A particular offered load value is said to belong to guaranteed loss <lb/>region, if the probability of seeing zero loss trial measurement <lb/>result (for non-negligible count of packets offered) is exactly zero, <lb/>or at least practically indistinguishable from zero. <lb/>3.17.3. Non-Deterministic Region <lb/>A particular offered load value is said to belong to non-<lb/>deterministic region, if the probability of seeing zero loss trial <lb/>measurement result (for non-negligible count of packets offered) is <lb/>practically distinguishable from both zero and one. <lb/>3.17.4. Normal Region Ordering <lb/>Although theoretically the three regions can be arbitrary sets, this <lb/>document assumes they are intervals, where zero loss region contains <lb/>values smaller than non-deterministic region, which in turn contains <lb/>values smaller than guaranteed loss region. <lb/></body> + + <note place="footnote">Konstantynowicz & Polak Expires January 9, 2020 <lb/></note> + + <page>[Page 9] <lb/></page> + + <note place="headnote">Internet-DraProbabilistic Loss Ratio Search for Packet Throug July 2019 <lb/></note> + + <body>3.18. Deterministic System <lb/>A hypothetical duration independent system with normal region <lb/>ordering, whose non-deterministic region is extremely narrow (only <lb/>present due to "practical distinguishibility" and cases when the <lb/>expected number of packets offered is not and integer). <lb/>A duration independent system which is not deterministic is called <lb/>non-deterministic system. <lb/>3.19. Througphput <lb/>Throughput is the highest offered load provably causing zero packet <lb/>loss for trial measurements of duration at least 60 seconds. <lb/>For duration independent systems with normal region ordering, the <lb/>throughput is the highest value within the zero loss region. <lb/>3.20. Deterministic Search <lb/>Any algorithm that assumes each measurement is a proof of the offered <lb/>load belonging to zero loss region (or not) is called deterministic <lb/>search. <lb/>This definition includes algorithms based on "composite measurements" <lb/>which perform multiple trial measurements, somehow re-classifying <lb/>results pointing at non-deterministic region. <lb/>Binary Search is an example of deterministic search. <lb/>Single run of a deterministic search launched against a deterministic <lb/>system is guaranteed to find the throughput with any prescribed <lb/>precision (not better than non-deterministic region width). <lb/>Multiple runs of a deterministic search launched against a non-<lb/>deterministic system can return varied results within non-<lb/>deterministic region. The exact distribution of deterministic search <lb/>results depends on the algorithm used. <lb/>3.21. Probabilistic Search <lb/>Any algorithm which performs probabilistic computations based on <lb/>observed results of trial measurements, and which does not assume <lb/>that non-deterministic region is practically absent, is called <lb/>probabilistic search. <lb/>A probabilistic search algorithm, which would assume that non-<lb/>deterministic region is practically absent, does not really need to <lb/></body> + + <note place="footnote">Konstantynowicz & Polak Expires January 9, 2020 <lb/></note> + + <page>[Page 10] <lb/></page> + + <note place="headnote">Internet-DraProbabilistic Loss Ratio Search for Packet Throug July 2019 <lb/></note> + + <body>perform probabilistic computations, so it would become a <lb/>deterministic search. <lb/>While probabilistic search for estimating throughput is possible, it <lb/>would need a careful model for boundary between zero loss region and <lb/>non-deterministic region, and it would need a lot of measurements of <lb/>almost surely zero loss to reach good precision. <lb/>3.22. Loss Ratio Function <lb/>For any duration independent system, the average loss ratio depends <lb/>only on offered load (for a particular test setup). <lb/>Loss ratio function is the name used for the function mapping offered <lb/>load to average loss ratio. <lb/>This function is initially unknown. <lb/>3.23. Target Loss Ratio <lb/>Input parameter of PLRsearch. The average loss ratio the output of <lb/>PLRsearch aims to achieve. <lb/>3.24. Critical Load <lb/>Aggregate rate of network traffic, which would lead to average loss <lb/>ratio exactly matching target loss ratio, if used as the offered load <lb/>for infinite many trial measurement. <lb/>3.25. Critical Load Estimate <lb/>Any quantitative description of the possible critical load PLRsearch <lb/>is able to give after observing finite amount of trial measurements. <lb/>3.26. Fitting Function <lb/>Any function PLRsearch uses internally instead of the unknown loss <lb/>ratio function. Typically chosen from small set of formulas (shapes) <lb/>with few parameters to tweak. <lb/>3.27. Shape of Fitting Function <lb/>Any formula with few undetermined parameters. <lb/></body> + + <note place="footnote">Konstantynowicz & Polak Expires January 9, 2020 <lb/></note> + + <page>[Page 11] <lb/></page> + + <note place="headnote">Internet-DraProbabilistic Loss Ratio Search for Packet Throug July 2019 <lb/></note> + + <body>3.28. Parameter Space <lb/>A subset of Real Coordinate Space. A point of parameter space is a <lb/>vector of real numbers. Fitting function is defined by shape (a <lb/>formula with parameters) and point of parameter space (specifying <lb/>values for the parameters). <lb/>4. Abstract Algorithm <lb/>4.1. High level description <lb/>PLRsearch accepts some input arguments, then iteratively performs <lb/>trial measurements at varying offered loads (and durations), and <lb/>returns some estimates of critical load. <lb/>PLRsearch input arguments form three groups. <lb/>First group has a single argument: measurer. This is a callback <lb/>(function) accepting offered load and duration, and returning the <lb/>measured loss count. <lb/>Second group consists of load related arguments required for measurer <lb/>to work correctly, typically minimal and maximal load to offer. <lb/>Also, target loss ratio (if not hardcoded) is a required argument. <lb/>Third group consists of time related arguments. Typically the <lb/>duration for the first trial measurement, duration increment per <lb/>subsequent trial measurement, and total time for search. Some <lb/>PLRsearch implementation may use estimation accuracy parameters as an <lb/>exit condition instead of total search time. <lb/>The returned quantities should describe the final (or best) estimate <lb/>of critical load. Implementers can chose any description that suits <lb/>their users, typically it is average and standard deviation, or lower <lb/>and upper boundary. <lb/>4.2. Main Ideas <lb/>The search tries to perform measurements at offered load close to the <lb/>critical load, because measurement results at offered loads far from <lb/>the critical load give less information on precise location of the <lb/>critical load. As virtually every trial measurement result alters <lb/>the estimate of the critical load, offered loads vary as they <lb/>approach the critical load. <lb/>The only quantity of trial measurement result affecting the <lb/>computation is loss count. No latency (or other information) is <lb/>taken into account. <lb/></body> + + <note place="footnote">Konstantynowicz & Polak Expires January 9, 2020 <lb/></note> + + <page>[Page 12] <lb/></page> + + <note place="headnote">Internet-DraProbabilistic Loss Ratio Search for Packet Throug July 2019 <lb/></note> + + <body>PLRsearch uses Bayesian Inference, computed using numerical <lb/>integration, which takes long time to get reliable enough results. <lb/>Therefore it takes some time before the most recent measurement <lb/>result starts affecting subsequent offered loads and critical rate <lb/>estimates. <lb/>During the search, PLRsearch spawns few processes that perform <lb/>numerical computations, the main process is calling the measurer to <lb/>perform trial measurements, without any significant delays between <lb/>them. The durations of the trial measurements are increasing <lb/>linearly, as higher number of trial measurement results take longer <lb/>to process. <lb/>4.2.1. Trial Durations <lb/>[RFC2544] motivates the usage of at least 60 second duration by the <lb/>idea of the system under test slowly running out of resources (such <lb/>as memory buffers). <lb/>Practical results when measuring NFV software systems show that <lb/>relative change of trial duration has negligible effects on average <lb/>loss ratio, compared to relative change in offered load. <lb/>While the standard deviation of loss ratio usually shows some effects <lb/>of trial duration, they are hard to model. So PLRsearch assumes SUT <lb/>is duration independent, and chooses trial durations only based on <lb/>numeric integration requirements. <lb/>4.2.2. Target Loss Ratio <lb/>(TODO: Link to why we think 1e-7 is acceptable loss ratio.) <lb/>4.3. PLRsearch Building Blocks <lb/>Here we define notions used by PLRsearch which are not applicable to <lb/>other search methods, nor probabilistic systems under test in <lb/>general. <lb/>4.3.1. Bayesian Inference <lb/>PLRsearch uses a fixed set of fitting function shapes, and uses <lb/>Bayesian inference to track posterior distribution on each fitting <lb/>function parameter space. <lb/>Specifically, the few parameters describing a fitting function become <lb/>the model space. Given a prior over the model space, and trial <lb/>duration results, a posterior distribution is computed, together with <lb/>quantities describing the critical load estimate. <lb/></body> + + <note place="footnote">Konstantynowicz & Polak Expires January 9, 2020 <lb/></note> + + <page>[Page 13] <lb/></page> + + <note place="headnote">Internet-DraProbabilistic Loss Ratio Search for Packet Throug July 2019 <lb/></note> + + <body>Likelihood of a particular loss count is computed using Poisson <lb/>distribution of average loss rate given by the fitting function (at <lb/>specific point of parameter space). <lb/>Side note: Binomial Distribution is a better fit compared to Poisson <lb/>distribution (acknowledging that the number of packets lost cannot be <lb/>higher than the number of packets offered), but the difference tends <lb/>to be relevant only in high loss region. Using Poisson distribution <lb/>lowers the impact of measurements in high loss region, thus helping <lb/>the algorithm to converge towards critical load faster. <lb/>4.3.2. Iterative Search <lb/>The idea PLRsearch is to iterate trial measurements, using Bayesian <lb/>inference to compute both the current estimate of the critical load <lb/>and the next offered load to measure at. <lb/>The required numerical computations are done in parallel with the <lb/>trial measurements. <lb/>This means the result of measurement "n" comes as an (additional) <lb/>input to the computation running in parallel with measurement "n+1", <lb/>and the outputs of the computation are used for determining the <lb/>offered load for measurement "n+2". <lb/>Other schemes are possible, aimed to increase the number of <lb/>measurements (by decreasing their duration), which would have even <lb/>higher number of measurements run before a result of a measurement <lb/>affects offered load. <lb/>4.3.3. Fitting Functions <lb/>To make the space of possible loss ratio functions more tractable the <lb/>algorithm uses only few fitting function shapes for its predicitons. <lb/>As the search algorithm needs to evaluate the function also far away <lb/>from the critical load, the fitting function have to be reasonably <lb/>behaved for every positive offered load, specifically cannot cannot <lb/>predict non-positive packet loss ratio. <lb/>4.3.4. Measurement Impact <lb/>Results from trials far from the critical load are likely to affect <lb/>the critical load estimate negatively, as the fitting functions do <lb/>not need to be good approximations there. This is true mainly for <lb/>guaranteed loss region, as in zero loss region even badly behaved <lb/>fitting function predicts loss count to be "almost zero", so seeing a <lb/>measurement confirming the loss has been zero indeed has small <lb/>impact. <lb/></body> + + <note place="footnote">Konstantynowicz & Polak Expires January 9, 2020 <lb/></note> + + <page>[Page 14] <lb/></page> + + <note place="headnote">Internet-DraProbabilistic Loss Ratio Search for Packet Throug July 2019 <lb/></note> + + <body>Discarding some results, or "suppressing" their impact with ad-hoc <lb/>methods (other than using Poisson distribution instead of binomial) <lb/>is not used, as such methods tend to make the overall search <lb/>unstable. We rely on most of measurements being done (eventually) <lb/>near the critical load, and overweighting far-off measurements <lb/>(eventually) for well-behaved fitting functions. <lb/>4.3.5. Fitting Function Coefficients Distribution <lb/>To accomodate systems with different behaviours, a fitting function <lb/>is expected to have few numeric parameters affecting its shape <lb/>(mainly affecting the linear approximation in the critical region). <lb/>The general search algorithm can use whatever increasing fitting <lb/>function, some specific functions are described later. <lb/>It is up to implementer to chose a fitting function and prior <lb/>distribution of its parameters. The rest of this document assumes <lb/>each parameter is independently and uniformly distributed over a <lb/>common interval. Implementers are to add non-linear transformations <lb/>into their fitting functions if their prior is different. <lb/>4.3.6. Exit Condition <lb/>Exit condition for the search is either the standard deviation of the <lb/>critical load estimate becoming small enough (or similar), or overal <lb/>search time becoming long enough. <lb/>The algorithm should report both average and standard deviation for <lb/>its critical load posterior. <lb/>4.3.7. Integration <lb/>The posterior distributions for fitting function parameters are not <lb/>be integrable in general. <lb/>The search algorithm utilises the fact that trial measurement takes <lb/>some time, so this time can be used for numeric integration (using <lb/>suitable method, such as Monte Carlo) to achieve sufficient <lb/>precision. <lb/>4.3.8. Optimizations <lb/>After enough trials, the posterior distribution will be concentrated <lb/>in a narrow area of the parameter space. The integration method <lb/>should take advantage of that. <lb/></body> + + <note place="footnote">Konstantynowicz & Polak Expires January 9, 2020 <lb/></note> + + <page>[Page 15] <lb/></page> + + <note place="headnote">Internet-DraProbabilistic Loss Ratio Search for Packet Throug July 2019 <lb/></note> + + <body>Even in the concentrated area, the likelihood can be quite small, so <lb/>the integration algorithm should avoid underflow errors by some <lb/>means, for example by tracking the logarithm of the likelihood. <lb/>4.3.9. Offered Load Selection <lb/>The simplest rule is to set offered load for next trial measurememnt <lb/>equal to the current average (both over posterio and over fitting <lb/>function shapes) of the critical load estimate. <lb/>Contrary to critical load estimate computation, heuristic algorithms <lb/>affecting offered load selection do not introduce instability, and <lb/>can help with convergence speed. <lb/>4.3.10. Trend Analysis <lb/>If the reported averages follow a trend (maybe without reaching <lb/>equilibrium), average and standard deviation COULD refer to the <lb/>equilibrium estimates based on the trend, not to immediate posterior <lb/>values. <lb/>But such post-processing is discouraged, unless a clear reason for <lb/>the trend is known. Frequently, presence of such a trend is a sign <lb/>of some of PLRsearch assumption being violated (usually trial order <lb/>independence or duration independence). <lb/>It is RECOMMENDED to report any trend quantification together with <lb/>direct critical load estimate, so users can draw their own <lb/>conclusion. Alternatively, trend analysis may be a part of exit <lb/>conditions, requiring longer searches for systems displaying trends. <lb/>5. Sample Implementation Specifics: FD.io CSIT <lb/>The search receives min_rate and max_rate values, to avoid <lb/>measurements at offered loads not supporeted by the traffic <lb/>generator. <lb/>The implemented tests cases use bidirectional traffic. The algorithm <lb/>stores each rate as bidirectional rate (internally, the algorithm is <lb/>agnostic to flows and directions, it only cares about overall counts <lb/>of packets sent and packets lost), but debug output from traffic <lb/>generator lists unidirectional values. <lb/>5.1. Measurement Delay <lb/>In a sample implemenation in FD.io CSIT project, there is roughly 0.5 <lb/>second delay between trials due to restrictons imposed by packet <lb/>traffic generator in use (T-Rex). <lb/></body> + + <note place="footnote">Konstantynowicz & Polak Expires January 9, 2020 <lb/></note> + + <page>[Page 16] <lb/></page> + + <note place="headnote">Internet-DraProbabilistic Loss Ratio Search for Packet Throug July 2019 <lb/></note> + + <body>As measurements results come in, posterior distribution computation <lb/>takes more time (per sample), although there is a considerable <lb/>constant part (mostly for inverting the fitting functions). <lb/>Also, the integrator needs a fair amount of samples to reach the <lb/>region the posterior distribution is concentrated at. <lb/>And of course, speed of the integrator depends on computing power of <lb/>the CPUs the algorithm is able to use. <lb/>All those timing related effects are addressed by arithmetically <lb/>increasing trial durations with configurable coefficients (currently <lb/>5.1 seconds for the first trial, each subsequent trial being 0.1 <lb/>second longer). <lb/>5.2. Rounding Errors and Underflows <lb/>In order to avoid them, the current implementation tracks natural <lb/>logarithm (instead of the original quantity) for any quantity which <lb/>is never negative. Logarithm of zero is minus infinity (not <lb/>supported by Python), so special value "None" is used instead. <lb/>Specific functions for frequent operations (such as "logarithm of sum <lb/>of exponentials") are defined to handle None correctly. <lb/>5.3. Fitting Functions <lb/>Current implementation uses two fitting functions. In general, their <lb/>estimates for critical rate differ, which adds a simple source of <lb/>systematic error, on top of posterior dispersion reported by <lb/>integrator. Otherwise the reported stdev of critical rate estimate <lb/>is unrealistically low. <lb/>Both functions are not only increasing, but also convex (meaning the <lb/>rate of increase is also increasing). <lb/>As Primitive Function to any positive function is an increasing <lb/>function, and Primitive Function to any increasing function is convex <lb/>function; both fitting functions were constructed as double Primitive <lb/>Function to a positive function (even though the intermediate <lb/>increasing function is easier to describe). <lb/>As not any function is integrable, some more realistic functions <lb/>(especially with respect to behavior at very small offered loads) are <lb/>not easily available. <lb/>Both fitting functions have a "central point" and a "spread", varied <lb/>by simply shifting and scaling (in x-axis, the offered load <lb/>direction) the function to be doubly integrated. Scaling in y-axis <lb/></body> + + <note place="footnote">Konstantynowicz & Polak Expires January 9, 2020 <lb/></note> + + <page>[Page 17] <lb/></page> + + <note place="headnote">Internet-DraProbabilistic Loss Ratio Search for Packet Throug July 2019 <lb/></note> + + <body>(the loss rate direction) is fixed by the requirement of transfer <lb/>rate staying nearly constant in very high offered loads. <lb/>In both fitting functions (as they are a double Primitive Function to <lb/>a symmetric function), the "central point" turns out to be equal to <lb/>the aforementioned limiting transfer rate, so the fitting function <lb/>parameter is named "mrr", the same quantity CSIT Maximum Receive Rate <lb/>tests are designed to measure. <lb/>Both fitting functions return logarithm of loss rate, to avoid <lb/>rounding errors and underflows. Parameters and offered load are not <lb/>given as logarithms, as they are not expected to be extreme, and the <lb/>formulas are simpler that way. <lb/>Both fitting functions have several mathematically equivalent <lb/>formulas, each can lead to an overflow or underflow in different <lb/>places. Overflows can be eliminated by using different exact <lb/>formulas for different argument ranges. Underflows can be avoided by <lb/>using approximate formulas in affected argument ranges, such ranges <lb/>have their own formulas to compute. At the end, both fitting <lb/>function implementations contain multiple "if" branches, <lb/>discontinuities are a possibility at range boundaries. <lb/>5.3.1. Stretch Function <lb/>The original function (before applying logarithm) is Primitive <lb/>Function to Logistic Function. The name "stretch" is used for <lb/>related a function in context of neural networks with sigmoid <lb/>activation function. <lb/>Formula for stretch fitting function: average loss rate (r) computed <lb/>from offered load (b), mrr parameter (m) and spread parameter (a), <lb/>given as InputForm of Wolfram language: <lb/>r = (a*(1 + E^(m/a))*Log[(E^(b/a) + E^(m/a))/(1 + E^(m/a))])/E^(m/a) <lb/>5.3.2. Erf Function <lb/>The original function is double Primitive Function to Gaussian <lb/>Function. The name "erf" comes from error function, the first <lb/>primitive to Gaussian. <lb/>Formula for erf fitting function: average loss rate (r) computed from <lb/>offered load (b), mrr parameter (m) and spread parameter (a), given <lb/>as InputForm of Wolfram language: <lb/>r = ((a*(E^(-((b -m)^2/a^2)) -E^(-(m^2/a^2))))/Sqrt[Pi] + m*Erfc[m/a] <lb/>+ (b -m)*Erfc[(-b + m)/a])/(1 + Erf[m/a]) <lb/></body> + + <note place="footnote">Konstantynowicz & Polak Expires January 9, 2020 <lb/></note> + + <page>[Page 18] <lb/></page> + + <note place="headnote">Internet-DraProbabilistic Loss Ratio Search for Packet Throug July 2019 <lb/></note> + + <body>>5.4. Prior Distributions <lb/>The numeric integrator expects all the parameters to be distributed <lb/>(independently and) uniformly on an interval (-1, 1). <lb/>As both "mrr" and "spread" parameters are positive and not <lb/>dimensionless, a transformation is needed. Dimentionality is <lb/>inherited from max_rate value. <lb/>The "mrr" parameter follows a Lomax Distribution with alpha equal to <lb/>one, but shifted so that mrr is always greater than 1 packet per <lb/>second. <lb/>The "stretch" parameter is generated simply as the "mrr" value raised <lb/>to a random power between zero and one; thus it follows a Reciprocal <lb/>Distribution. <lb/>5.5. Integrator <lb/>After few measurements, the posterior distribution of fitting <lb/>function arguments gets quite concentrated into a small area. The <lb/>integrator is using Monte Carlo with Importance Sampling where the <lb/>biased distribution is Bivariate Gaussian distribution, with <lb/>deliberately larger variance. If the generated sample falls outside <lb/>(-1, 1) interval, another sample is generated. <lb/>The the center and the covariance matrix for the biased distribution <lb/>is based on the first and second moments of samples seen so far <lb/>(within the computation), with the following additional features <lb/>designed to avoid hyper-focused distributions. <lb/>Each computation starts with the biased distribution inherited from <lb/>the previous computation (zero point and unit covariance matrix is <lb/>used in the first computation), but the overal weight of the data is <lb/>set to the weight of the first sample of the computation. Also, the <lb/>center is set to the first sample point. When additional samples <lb/>come, their weight (including the importance correction) is compared <lb/>to the weight of data seen so far (within the computation). If the <lb/>new sample is more than one e-fold more impactful, both weight values <lb/>(for data so far and for the new sample) are set to (geometric) <lb/>average if the two weights. Finally, the actual sample generator <lb/>uses covariance matrix scaled up by a configurable factor (8.0 by <lb/>default). <lb/>This combination showed the best behavior, as the integrator usually <lb/>follows two phases. First phase (where inherited biased distribution <lb/>or single big sasmples are dominating) is mainly important for <lb/>locating the new area the posterior distribution is concentrated at. <lb/></body> + + <note place="footnote">Konstantynowicz & Polak Expires January 9, 2020 <lb/></note> + + <page>[Page 19] <lb/></page> + + <note place="headnote">Internet-DraProbabilistic Loss Ratio Search for Packet Throug July 2019 <lb/></note> + + <body>The second phase (dominated by whole sample population) is actually <lb/>relevant for the critical rate estimation. <lb/>5.6. Offered Load Selection <lb/>First two measurements are hardcoded to happen at the middle of rate <lb/>interval and at max_rate. Next two measurements follow MRR-like <lb/>logic, offered load is decreased so that it would reach target loss <lb/>ratio if offered load decrease lead to equal decrease of loss rate. <lb/>Basis for offered load for next trial measurements is the integrated <lb/>average of current critical rate estimate, averaged over fitting <lb/>function. <lb/>There is one workaround implemented, aimed at reducing the number of <lb/>consequent zero loss measurements. The workaround first stores every <lb/>measurement result which loss ratio was the targed loss ratio or <lb/>higher. Sorted list (called lossy loads) of such results is <lb/>maintained. <lb/>When a sequence of one or more zero loss measurement results is <lb/>encountered, a smallest of lossy loads is drained from the list. If <lb/>the estimate average is smaller than the drained value, a weighted <lb/>average of this estimate and the drained value is used as the next <lb/>offered load. The weight of the drained value doubles with each <lb/>additional consecutive zero loss results. <lb/>This behavior helps the algorithm with convergence speed, as it does <lb/>not need so many zero loss result to get near critical load. Using <lb/>the smallest (not drained yet) of lossy loads makes it sure the new <lb/>offered load is unlikely to result in big loss region. Draining even <lb/>if the estimate is large enough helps to discard early measurements <lb/>when loss hapened at too low offered load. Current implementation <lb/>adds 4 copies of lossy loads and drains 3 of them, which leads to <lb/>fairly stable behavior even for somewhat inconsistent SUTs. <lb/>6. IANA Considerations <lb/>No requests of IANA. <lb/>7. Security Considerations <lb/>Benchmarking activities as described in this memo are limited to <lb/>technology characterization of a DUT/SUT using controlled stimuli in <lb/>a laboratory environment, with dedicated address space and the <lb/>constraints specified in the sections above. <lb/></body> + + <note place="footnote">Konstantynowicz & Polak Expires January 9, 2020 <lb/></note> + + <page>[Page 20] <lb/></page> + + <note place="headnote">Internet-DraProbabilistic Loss Ratio Search for Packet Throug July 2019 <lb/></note> + + <body>The benchmarking network topology will be an independent test setup <lb/> and MUST NOT be connected to devices that may forward the test <lb/>traffic into a production network or misroute traffic to the test <lb/>management network. <lb/>Further, benchmarking is performed on a "black-box" basis, relying <lb/>solely on measurements observable external to the DUT/SUT. <lb/>Special capabilities SHOULD NOT exist in the DUT/SUT specifically for <lb/>benchmarking purposes. Any implications for network security arising <lb/>from the DUT/SUT SHOULD be identical in the lab and in production <lb/>networks. <lb/></body> + + <div type="acknowledgement">8. Acknowledgements <lb/>.. <lb/></div> + + <listBibl>9. References <lb/>9.1. Normative References <lb/>[RFC2544] Bradner, S. and J. McQuaid, "Benchmarking Methodology for <lb/>Network Interconnect Devices", RFC 2544, <lb/>DOI 10.17487/RFC2544, March 1999, <lb/><https://www.rfc-editor.org/info/rfc2544>. <lb/>[RFC8174] Leiba, B., "Ambiguity of Uppercase vs Lowercase in RFC <lb/>2119 Key Words", BCP 14, RFC 8174, DOI 10.17487/RFC8174, <lb/>May 2017, <https://www.rfc-editor.org/info/rfc8174>. <lb/>9.2. Informative References <lb/>[draft-vpolak-mkonstan-bmwg-mlrsearch] <lb/>"Multiple Loss Ratio Search for Packet Throughput <lb/>(MLRsearch)", July 2019, <https://tools.ietf.org/html/ <lb/>draft-vpolak-mkonstan-bmwg-mlrsearch>. <lb/></listBibl> + + Authors' Addresses <lb/> + + <front>Maciek Konstantynowicz (editor) <lb/>Cisco Systems <lb/>Email: mkonstan@cisco.com <lb/></front> + + <note place="footnote">Konstantynowicz & Polak Expires January 9, 2020 <lb/></note> + + <page>[Page 21] <lb/></page> + + <note place="headnote">Internet-DraProbabilistic Loss Ratio Search for Packet Throug July 2019 <lb/></note> + + <front>Vratko Polak (editor) <lb/>Cisco Systems <lb/> Email: vrpolak@cisco.com <lb/></front> + + <note place="footnote">Konstantynowicz & Polak Expires January 9, 2020 <lb/></note> + + <page>[Page 22] </page> + + + </text> +</tei> diff --git a/grobid-trainer/resources/dataset/segmentation/sdo/ietf/corpus/tei/XP015134608.training.segmentation.tei.xml b/grobid-trainer/resources/dataset/segmentation/sdo/ietf/corpus/tei/XP015134608.training.segmentation.tei.xml new file mode 100644 index 0000000000..35983159df --- /dev/null +++ b/grobid-trainer/resources/dataset/segmentation/sdo/ietf/corpus/tei/XP015134608.training.segmentation.tei.xml @@ -0,0 +1,5304 @@ +<?xml version="1.0" ?> +<tei xml:space="preserve"> + <teiHeader> + <fileDesc xml:id="0"/> + </teiHeader> + <text xml:lang="en"> + <front>server date 20190804; downloaded by EPO on 20190805 <lb/>NFSv4 <lb/>D. Noveck, Ed. <lb/>Internet-Draft <lb/>NetApp <lb/>Obsoletes: 5661 (if approved) <lb/>C. Lever <lb/>Intended status: Standards Track <lb/>ORACLE <lb/>Expires: February 5, 2020 <lb/>August 4, 2019 <lb/>Network File System (NFS) Version 4 Minor Version 1 Protocol <lb/>draft-ietf-nfsv4-rfc5661sesqui-msns-01 <lb/>Abstract <lb/>This document describes the Network File System (NFS) version 4 minor <lb/>version 1, including features retained from the base protocol (NFS <lb/>version 4 minor version 0, which is specified in RFC 7530) and <lb/>protocol extensions made subsequently. The later minor version has <lb/>no dependencies on NFS version 4 minor version 0, and is considered a <lb/>separate protocol. <lb/>This document obsoletes RFC5661. It substantialy revises the <lb/>treatment of features relating to multi-server namesapce superseding <lb/>the description of those features appearing in RFC5661. <lb/>Status of This Memo <lb/>This Internet-Draft is submitted in full conformance with the <lb/>provisions of BCP 78 and BCP 79. <lb/>Internet-Drafts are working documents of the Internet Engineering <lb/>Task Force (IETF). Note that other groups may also distribute <lb/>working documents as Internet-Drafts. The list of current Internet-<lb/>Drafts is at https://datatracker.ietf.org/drafts/current/. <lb/>Internet-Drafts are draft documents valid for a maximum of six months <lb/>and may be updated, replaced, or obsoleted by other documents at any <lb/>time. It is inappropriate to use Internet-Drafts as reference <lb/>material or to cite them other than as "work in progress." <lb/>This Internet-Draft will expire on February 5, 2020. <lb/>Copyright Notice <lb/>Copyright (c) 2019 IETF Trust and the persons identified as the <lb/>document authors. All rights reserved. <lb/>This document is subject to BCP 78 and the IETF Trust's Legal <lb/>Provisions Relating to IETF Documents <lb/>(https://trustee.ietf.org/license-info) in effect on the date of <lb/>Noveck & Lever <lb/>Expires February 5, 2020 <lb/>[Page 1] <lb/>Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/>publication of this document. Please review these documents <lb/>carefully, as they describe your rights and restrictions with respect <lb/>to this document. Code Components extracted from this document must <lb/>include Simplified BSD License text as described in Section 4.e of <lb/>the Trust Legal Provisions and are provided without warranty as <lb/>described in the Simplified BSD License. <lb/>This document may contain material from IETF Documents or IETF <lb/>Contributions published or made publicly available before November <lb/>10, 2008. The person(s) controlling the copyright in some of this <lb/>material may not have granted the IETF Trust the right to allow <lb/>modifications of such material outside the IETF Standards Process. <lb/>Without obtaining an adequate license from the person(s) controlling <lb/>the copyright in such materials, this document may not be modified <lb/>outside the IETF Standards Process, and derivative works of it may <lb/>not be created outside the IETF Standards Process, except to format <lb/>it for publication as an RFC or to translate it into languages other <lb/>than English. <lb/></front> + + <div type="toc">Table of Contents <lb/>1. Introduction . . . . . . . . . . . . . . . . . . . . . . . . <lb/>7 <lb/>1.1. Introduction to this Update . . . . . . . . . . . . . . . <lb/>7 <lb/>1.2. The NFS Version 4 Minor Version 1 Protocol . . . . . . . <lb/>8 <lb/>1.3. Requirements Language . . . . . . . . . . . . . . . . . . <lb/>9 <lb/>1.4. Scope of This Document . . . . . . . . . . . . . . . . . <lb/>9 <lb/>1.5. NFSv4 Goals . . . . . . . . . . . . . . . . . . . . . . . <lb/>9 <lb/>1.6. NFSv4.1 Goals . . . . . . . . . . . . . . . . . . . . . . 10 <lb/>1.7. General Definitions . . . . . . . . . . . . . . . . . . . 10 <lb/>1.8. Overview of NFSv4.1 Features . . . . . . . . . . . . . . 13 <lb/>1.9. Differences from NFSv4.0 . . . . . . . . . . . . . . . . 17 <lb/>2. Core Infrastructure . . . . . . . . . . . . . . . . . . . . . 18 <lb/>2.1. Introduction . . . . . . . . . . . . . . . . . . . . . . 18 <lb/>2.2. RPC and XDR . . . . . . . . . . . . . . . . . . . . . . . 18 <lb/>2.3. COMPOUND and CB_COMPOUND . . . . . . . . . . . . . . . . 22 <lb/>2.4. Client Identifiers and Client Owners . . . . . . . . . . 22 <lb/>2.5. Server Owners . . . . . . . . . . . . . . . . . . . . . . 28 <lb/>2.6. Security Service Negotiation . . . . . . . . . . . . . . 29 <lb/>2.7. Minor Versioning . . . . . . . . . . . . . . . . . . . . 34 <lb/>2.8. Non-RPC-Based Security Services . . . . . . . . . . . . . 36 <lb/>2.9. Transport Layers . . . . . . . . . . . . . . . . . . . . 37 <lb/>2.10. Session . . . . . . . . . . . . . . . . . . . . . . . . . 40 <lb/>3. Protocol Constants and Data Types . . . . . . . . . . . . . . 86 <lb/>3.1. Basic Constants . . . . . . . . . . . . . . . . . . . . . 86 <lb/>3.2. Basic Data Types . . . . . . . . . . . . . . . . . . . . 87 <lb/>3.3. Structured Data Types . . . . . . . . . . . . . . . . . . 89 <lb/>4. Filehandles . . . . . . . . . . . . . . . . . . . . . . . . . 97 <lb/>4.1. Obtaining the First Filehandle . . . . . . . . . . . . . 98 <lb/></div> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 2] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <div type="toc">4.2. Filehandle Types . . . . . . . . . . . . . . . . . . . . 99 <lb/>4.3. One Method of Constructing a Volatile Filehandle . . . . 101 <lb/>4.4. Client Recovery from Filehandle Expiration . . . . . . . 102 <lb/>5. File Attributes . . . . . . . . . . . . . . . . . . . . . . . 103 <lb/>5.1. REQUIRED Attributes . . . . . . . . . . . . . . . . . . . 104 <lb/>5.2. RECOMMENDED Attributes . . . . . . . . . . . . . . . . . 104 <lb/>5.3. Named Attributes . . . . . . . . . . . . . . . . . . . . 105 <lb/>5.4. Classification of Attributes . . . . . . . . . . . . . . 106 <lb/>5.5. Set-Only and Get-Only Attributes . . . . . . . . . . . . 107 <lb/>5.6. REQUIRED Attributes -List and Definition References . . 107 <lb/>5.7. RECOMMENDED Attributes -List and Definition References . 108 <lb/>5.8. Attribute <lb/>Definitions . . . . . . . . . . . . . . 110 <lb/>5.9. Interpreting owner and owner_group . . . . . . . . . . . 119 <lb/>5.10. Character Case Attributes . . . . . . . . . . . . . . . . 121 <lb/>5.11. Directory Notification Attributes . . . . . . . . . . . . 121 <lb/>5.12. pNFS Attribute Definitions . . . . . . . . . . . . . . . 122 <lb/>5.13. Retention Attributes . . . . . . . . . . . . . . . . . . 123 <lb/>6. Access Control Attributes . . . . . . . . . . . . . . . . . . 126 <lb/>6.1. Goals . . . . . . . . . . . . . . . . . . . . . . . . . . 126 <lb/>6.2. File Attributes Discussion . . . . . . . . . . . . . . . 127 <lb/>6.3. Common Methods . . . . . . . . . . . . . . . . . . . . . 144 <lb/>6.4. Requirements . . . . . . . . . . . . . . . . . . . . . . 146 <lb/>7. Single-Server Namespace . . . . . . . . . . . . . . . . . . . 153 <lb/>7.1. Server Exports . . . . . . . . . . . . . . . . . . . . . 153 <lb/>7.2. Browsing Exports . . . . . . . . . . . . . . . . . . . . 153 <lb/>7.3. Server Pseudo File System . . . . . . . . . . . . . . . . 154 <lb/>7.4. Multiple Roots . . . . . . . . . . . . . . . . . . . . . 154 <lb/>7.5. Filehandle Volatility . . . . . . . . . . . . . . . . . . 155 <lb/>7.6. Exported Root . . . . . . . . . . . . . . . . . . . . . . 155 <lb/>7.7. Mount Point Crossing . . . . . . . . . . . . . . . . . . 155 <lb/>7.8. Security Policy and Namespace Presentation . . . . . . . 156 <lb/>8. State Management . . . . . . . . . . . . . . . . . . . . . . 157 <lb/>8.1. Client and Session ID . . . . . . . . . . . . . . . . . . 158 <lb/>8.2. Stateid Definition . . . . . . . . . . . . . . . . . . . 158 <lb/>8.3. Lease Renewal . . . . . . . . . . . . . . . . . . . . . . 167 <lb/>8.4. Crash Recovery . . . . . . . . . . . . . . . . . . . . . 169 <lb/>8.5. Server Revocation of Locks . . . . . . . . . . . . . . . 180 <lb/>8.6. Short and Long Leases . . . . . . . . . . . . . . . . . . 181 <lb/>8.7. Clocks, Propagation Delay, and Calculating Lease <lb/>Expiration . . . . . . . . . . . . . . . . . . . . . . . 182 <lb/>8.8. Obsolete Locking Infrastructure from NFSv4.0 . . . . . . 182 <lb/>9. File Locking and Share Reservations . . . . . . . . . . . . . 183 <lb/>9.1. Opens and Byte-Range Locks . . . . . . . . . . . . . . . 183 <lb/>9.2. Lock Ranges . . . . . . . . . . . . . . . . . . . . . . . 187 <lb/>9.3. Upgrading and Downgrading Locks . . . . . . . . . . . . . 188 <lb/>9.4. Stateid Seqid Values and Byte-Range Locks . . . . . . . . 188 <lb/>9.5. Issues with Multiple Open-Owners . . . . . . . . . . . . 188 <lb/>9.6. Blocking Locks . . . . . . . . . . . . . . . . . . . . . 189 <lb/></div> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 3] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <div type="toc">9.7. Share Reservations . . . . . . . . . . . . . . . . . . . 190 <lb/>9.8. OPEN/CLOSE Operations . . . . . . . . . . . . . . . . . . 191 <lb/>9.9. Open Upgrade and Downgrade . . . . . . . . . . . . . . . 192 <lb/>9.10. Parallel OPENs . . . . . . . . . . . . . . . . . . . . . 193 <lb/>9.11. Reclaim of Open and Byte-Range Locks . . . . . . . . . . 193 <lb/>10. Client-Side Caching . . . . . . . . . . . . . . . . . . . . . 194 <lb/>10.1. Performance Challenges for Client-Side Caching . . . . . 194 <lb/>10.2. Delegation and Callbacks . . . . . . . . . . . . . . . . 195 <lb/>10.3. Data Caching . . . . . . . . . . . . . . . . . . . . . . 200 <lb/>10.4. Open Delegation . . . . . . . . . . . . . . . . . . . . 204 <lb/>10.5. Data Caching and Revocation . . . . . . . . . . . . . . 215 <lb/>10.6. Attribute Caching . . . . . . . . . . . . . . . . . . . 217 <lb/>10.7. Data and Metadata Caching and Memory Mapped Files . . . 219 <lb/>10.8. Name and Directory Caching without Directory Delegations 221 <lb/>10.9. Directory Delegations . . . . . . . . . . . . . . . . . 223 <lb/>11. Multi-Server Namespace . . . . . . . . . . . . . . . . . . . 227 <lb/>11.1. Terminology . . . . . . . . . . . . . . . . . . . . . . 227 <lb/>11.2. File System Location Attributes . . . . . . . . . . . . 230 <lb/>11.3. File System Presence or Absence . . . . . . . . . . . . 231 <lb/>11.4. Getting Attributes for an Absent File System . . . . . . 232 <lb/>11.5. Uses of File System Location Information . . . . . . . . 234 <lb/>11.6. Users and Groups in a Multi-server Namespace . . . . . . 242 <lb/>11.7. Additional Client-Side Considerations . . . . . . . . . 243 <lb/>11.8. Overview of File Access Transitions . . . . . . . . . . 244 <lb/>11.9. Effecting Network Endpoint Transitions . . . . . . . . . 244 <lb/>11.10. Effecting File System Transitions . . . . . . . . . . . 245 <lb/>11.11. Transferring State upon Migration . . . . . . . . . . . 253 <lb/>11.12. Client Responsibilities when Access is Transitioned . . 255 <lb/>11.13. Server Responsibilities Upon Migration . . . . . . . . . 264 <lb/>11.14. Effecting File System Referrals . . . . . . . . . . . . 270 <lb/>11.15. The Attribute fs_locations . . . . . . . . . . . . . . . 277 <lb/>11.16. The Attribute fs_locations_info . . . . . . . . . . . . 280 <lb/>11.17. The Attribute fs_status . . . . . . . . . . . . . . . . 293 <lb/>12. Parallel NFS (pNFS) . . . . . . . . . . . . . . . . . . . . . 297 <lb/>12.1. Introduction . . . . . . . . . . . . . . . . . . . . . . 297 <lb/>12.2. pNFS Definitions . . . . . . . . . . . . . . . . . . . . 298 <lb/>12.3. pNFS Operations . . . . . . . . . . . . . . . . . . . . 304 <lb/>12.4. pNFS Attributes . . . . . . . . . . . . . . . . . . . . 305 <lb/>12.5. Layout Semantics . . . . . . . . . . . . . . . . . . . . 305 <lb/>12.6. pNFS Mechanics . . . . . . . . . . . . . . . . . . . . . 320 <lb/>12.7. Recovery . . . . . . . . . . . . . . . . . . . . . . . . 322 <lb/>12.8. Metadata and Storage Device Roles . . . . . . . . . . . 327 <lb/>12.9. Security Considerations for pNFS . . . . . . . . . . . . 327 <lb/>13. NFSv4.1 as a Storage Protocol in pNFS: the File Layout Type . 329 <lb/>13.1. Client ID and Session Considerations . . . . . . . . . . 329 <lb/>13.2. File Layout Definitions . . . . . . . . . . . . . . . . 332 <lb/>13.3. File Layout Data Types . . . . . . . . . . . . . . . . . 332 <lb/>13.4. Interpreting the File Layout . . . . . . . . . . . . . . 336 <lb/></div> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 4] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <div type="toc">13.5. Data Server Multipathing . . . . . . . . . . . . . . . . 344 <lb/>13.6. Operations Sent to NFSv4.1 Data Servers . . . . . . . . 345 <lb/>13.7. COMMIT through Metadata Server . . . . . . . . . . . . . 347 <lb/>13.8. The Layout Iomode . . . . . . . . . . . . . . . . . . . 348 <lb/>13.9. Metadata and Data Server State Coordination . . . . . . 349 <lb/>13.10. Data Server Component File Size . . . . . . . . . . . . 352 <lb/>13.11. Layout Revocation and Fencing . . . . . . . . . . . . . 352 <lb/>13.12. Security Considerations for the File Layout Type . . . . 353 <lb/>14. Internationalization . . . . . . . . . . . . . . . . . . . . 354 <lb/>14.1. Stringprep Profile for the utf8str_cs Type . . . . . . . 355 <lb/>14.2. Stringprep Profile for the utf8str_cis Type . . . . . . 357 <lb/>14.3. Stringprep Profile for the utf8str_mixed Type . . . . . 358 <lb/>14.4. UTF-8 Capabilities . . . . . . . . . . . . . . . . . . . 360 <lb/>14.5. UTF-8 Related Errors . . . . . . . . . . . . . . . . . . 360 <lb/>15. Error Values . . . . . . . . . . . . . . . . . . . . . . . . 361 <lb/>15.1. Error Definitions . . . . . . . . . . . . . . . . . . . 361 <lb/>15.2. Operations and Their Valid Errors . . . . . . . . . . . 380 <lb/>15.3. Callback Operations and Their Valid Errors . . . . . . . 396 <lb/>15.4. Errors and the Operations That Use Them . . . . . . . . 399 <lb/>16. NFSv4.1 Procedures . . . . . . . . . . . . . . . . . . . . . 414 <lb/>16.1. Procedure 0: NULL -No Operation . . . . . . . . . . . . 414 <lb/>16.2. Procedure 1: COMPOUND -Compound Operations . . . . . . 414 <lb/>17. Operations: REQUIRED, RECOMMENDED, or OPTIONAL . . . . . . . 426 <lb/>18. NFSv4.1 Operations . . . . . . . . . . . . . . . . . . . . . 429 <lb/>18.1. Operation 3: ACCESS -Check Access Rights . . . . . . . 429 <lb/>18.2. Operation 4: CLOSE -Close File . . . . . . . . . . . . 435 <lb/>18.3. Operation 5: COMMIT -Commit Cached Data . . . . . . . . 436 <lb/>18.4. Operation 6: CREATE -Create a Non-Regular File Object . 439 <lb/>18.5. Operation 7: DELEGPURGE -Purge Delegations Awaiting <lb/>Recovery . . . . . . . . . . . . . . . . . . . . . . . . 442 <lb/>18.6. Operation 8: DELEGRETURN -Return Delegation . . . . . . 443 <lb/>18.7. Operation 9: GETATTR -Get Attributes . . . . . . . . . 443 <lb/>18.8. Operation 10: GETFH -Get Current Filehandle . . . . . . 445 <lb/>18.9. Operation 11: LINK -Create Link to a File . . . . . . . 446 <lb/>18.10. Operation 12: LOCK -Create Lock . . . . . . . . . . . . 449 <lb/>18.11. Operation 13: LOCKT -Test for Lock . . . . . . . . . . 454 <lb/>18.12. Operation 14: LOCKU -Unlock File . . . . . . . . . . . 455 <lb/>18.13. Operation 15: LOOKUP -Lookup Filename . . . . . . . . . 457 <lb/>18.14. Operation 16: LOOKUPP -Lookup Parent Directory . . . . 459 <lb/>18.15. Operation 17: NVERIFY -Verify Difference in Attributes 460 <lb/>18.16. Operation 18: OPEN -Open a Regular File . . . . . . . . 461 <lb/>18.17. Operation 19: OPENATTR -Open Named Attribute Directory 481 <lb/>18.18. Operation 21: OPEN_DOWNGRADE -Reduce Open File Access . 483 <lb/>18.19. Operation 22: PUTFH -Set Current Filehandle . . . . . . 484 <lb/>18.20. Operation 23: PUTPUBFH -Set <lb/>Public Filehandle . . . . 485 <lb/>18.21. Operation 24: PUTROOTFH -Set Root Filehandle . . . . . 487 <lb/>18.22. Operation 25: READ -Read from File . . . . . . . . . . 488 <lb/>18.23. Operation 26: READDIR -Read Directory . . . . . . . . . 490 <lb/></div> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 5] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <div type="toc">18.24. Operation 27: READLINK -Read Symbolic Link . . . . . . 494 <lb/>18.25. Operation 28: REMOVE -Remove File System Object . . . . 495 <lb/>18.26. Operation 29: RENAME -Rename Directory Entry . . . . . 498 <lb/>18.27. Operation 31: RESTOREFH -Restore Saved Filehandle . . . 501 <lb/>18.28. Operation 32: SAVEFH -Save Current Filehandle . . . . . 502 <lb/>18.29. Operation 33: SECINFO -Obtain Available Security . . . 503 <lb/>18.30. Operation 34: SETATTR -Set Attributes . . . . . . . . . 507 <lb/>18.31. Operation 37: VERIFY -Verify Same Attributes . . . . . 510 <lb/>18.32. Operation 38: WRITE -Write to File . . . . . . . . . . 511 <lb/>18.33. Operation 40: BACKCHANNEL_CTL -Backchannel Control . . 516 <lb/>18.34. Operation 41: BIND_CONN_TO_SESSION -Associate <lb/>Connection with Session . . . . . . . . . . . . . . . . 517 <lb/>18.35. Operation 42: EXCHANGE_ID -Instantiate Client ID . . . 520 <lb/>18.36. Operation 43: CREATE_SESSION -Create New Session and <lb/>Confirm Client ID . . . . . . . . . . . . . . . . . . . 538 <lb/>18.37. Operation 44: DESTROY_SESSION -Destroy a Session . . . 549 <lb/>18.38. Operation 45: FREE_STATEID -Free Stateid with No Locks 550 <lb/>18.39. Operation 46: GET_DIR_DELEGATION -Get a Directory <lb/>Delegation . . . . . . . . . . . . . . . . . . . . . . . 551 <lb/>18.40. Operation 47: GETDEVICEINFO -Get Device Information . . 555 <lb/>18.41. Operation 48: GETDEVICELIST -Get All Device Mappings <lb/>for a File System . . . . . . . . . . . . . . . . . . . 558 <lb/>18.42. Operation 49: LAYOUTCOMMIT -Commit Writes Made Using a <lb/>Layout . . . . . . . . . . . . . . . . . . . . . . . . . 560 <lb/>18.43. Operation 50: LAYOUTGET -Get Layout Information . . . . 564 <lb/>18.44. Operation 51: LAYOUTRETURN -Release Layout Information 573 <lb/>18.45. Operation 52: SECINFO_NO_NAME -Get Security on Unnamed <lb/>Object . . . . . . . . . . . . . . . . . . . . . . . . . 578 <lb/>18.46. Operation 53: SEQUENCE -Supply Per-Procedure Sequencing <lb/>and Control . . . . . . . . . . . . . . . . . . . . . . 579 <lb/>18.47. Operation 54: SET_SSV -Update SSV for a Client ID . . . 585 <lb/>18.48. Operation 55: TEST_STATEID -Test Stateids for Validity 587 <lb/>18.49. Operation 56: WANT_DELEGATION -Request Delegation . . . 589 <lb/>18.50. Operation 57: DESTROY_CLIENTID -Destroy a Client ID . . 593 <lb/>18.51. Operation 58: RECLAIM_COMPLETE -Indicates Reclaims <lb/>Finished . . . . . . . . . . . . . . . . . . . . . . . . 594 <lb/>18.52. Operation 10044: ILLEGAL -Illegal Operation . . . . . . 597 <lb/>19. NFSv4.1 Callback Procedures . . . . . . . . . . . . . . . . . 598 <lb/>19.1. Procedure 0: CB_NULL -No Operation . . . . . . . . . . 598 <lb/>19.2. Procedure 1: CB_COMPOUND -Compound Operations . . . . . 598 <lb/>20. NFSv4.1 Callback Operations . . . . . . . . . . . . . . . . . 603 <lb/>20.1. Operation 3: CB_GETATTR -Get Attributes . . . . . . . . 603 <lb/>20.2. Operation 4: CB_RECALL -Recall a Delegation . . . . . . 604 <lb/>20.3. Operation 5: CB_LAYOUTRECALL -Recall Layout from Client 605 <lb/>20.4. Operation 6: CB_NOTIFY -Notify Client of Directory <lb/>Changes . . . . . . . . . . . . . . . . . . . . . . . . 608 <lb/>20.5. Operation 7: CB_PUSH_DELEG -Offer Previously Requested <lb/>Delegation to Client . . . . . . . . . . . . . . . . . . 612 <lb/></div> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 6] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <div type="toc">20.6. Operation 8: CB_RECALL_ANY -Keep Any N Recallable <lb/>Objects . . . . . . . . . . . . . . . . . . . . . . . . 613 <lb/>20.7. Operation 9: CB_RECALLABLE_OBJ_AVAIL -Signal Resources <lb/>for Recallable Objects . . . . . . . . . . . . . . . . . 616 <lb/>20.8. Operation 10: CB_RECALL_SLOT -Change Flow Control <lb/>Limits . . . . . . . . . . . . . . . . . . . . . . . . . 617 <lb/>20.9. Operation 11: CB_SEQUENCE -Supply Backchannel <lb/>Sequencing and Control . . . . . . . . . . . . . . . . . 618 <lb/>20.10. Operation 12: CB_WANTS_CANCELLED -Cancel Pending <lb/>Delegation Wants . . . . . . . . . . . . . . . . . . . . 621 <lb/>20.11. Operation 13: CB_NOTIFY_LOCK -Notify Client of Possible <lb/>Lock Availability . . . . . . . . . . . . . . . . . . . 622 <lb/>20.12. Operation 14: CB_NOTIFY_DEVICEID -Notify Client of <lb/>Device ID Changes . . . . . . . . . . . . . . . . . . . 623 <lb/>20.13. Operation 10044: CB_ILLEGAL -Illegal Callback Operation 625 <lb/>21. Security Considerations . . . . . . . . . . . . . . . . . . . 626 <lb/>22. IANA Considerations . . . . . . . . . . . . . . . . . . . . . 630 <lb/>22.1. IANA Actions Neeeded . . . . . . . . . . . . . . . . . . 630 <lb/>22.2. Named Attribute Definitions . . . . . . . . . . . . . . 630 <lb/>22.3. Device ID Notifications . . . . . . . . . . . . . . . . 631 <lb/>22.4. Object Recall Types . . . . . . . . . . . . . . . . . . 633 <lb/>22.5. Layout Types . . . . . . . . . . . . . . . . . . . . . . 635 <lb/>22.6. Path Variable Definitions . . . . . . . . . . . . . . . 637 <lb/>23. References . . . . . . . . . . . . . . . . . . . . . . . . . 641 <lb/>23.1. Normative References . . . . . . . . . . . . . . . . . . 641 <lb/>23.2. Informative References . . . . . . . . . . . . . . . . . 644 <lb/>Appendix A. Need for this Update . . . . . . . . . . . . . . . . 647 <lb/>Appendix B. Changes in this Update . . . . . . . . . . . . . . . 649 <lb/>B.1. Revisions Made to Section 11 of [RFC5661] . . . . . . . . 649 <lb/>B.2. Revisions Made to Operations in [RFC5661] . . . . . . . . 652 <lb/>B.3. Revisions Made to Error Definitions in [RFC5661] . . . . 655 <lb/>B.4. Other Revisions Made to [RFC5661] . . . . . . . . . . . . 655 <lb/>Appendix C. Security Issues that Need to be Addressed . . . . . 656 <lb/>Appendix D. Acknowledgments . . . . . . . . . . . . . . . . . . 658 <lb/>Authors' Addresses . . . . . . . . . . . . . . . . . . . . . . . 661 <lb/></div> + + <body>1. Introduction <lb/>1.1. Introduction to this Update <lb/>The revised description of the NFS version 4 minor version 1 <lb/>(NFSv4.1) protocol presented in this update is necessary to enable <lb/>full use of trunking in connection with multi-server namespace <lb/>features and to enable the use of transparent state migration in <lb/>connection with NFSv4.1. See Appendix A for a discussion of the need <lb/>for this modified treatment and Appendix B for a description of the <lb/>specific changes made to arrive at the current text. <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 7] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>This document is in the form of a complete updated description of the <lb/>protocol, rather than a series of updated sections. However, it is <lb/>not, as the term has generally been used with regard to NFSv4 minor <lb/>versions, a "bis document", which contains a full description of the <lb/>protocol, with no documents updating it. Production of such a <lb/>document would require completion of the work items listed below. <lb/>This would include work with regard to documents which curently <lb/>update RFC5661 [60], which will also update this document. In <lb/>addition, it is believed that there are areas for which the <lb/>description in RFC5661 [60] is either incorrect or inadequate. <lb/>o Work would have to be done with regard to RFC8178 [61] with which <lb/>RFC5661 [60] is curretly inconsistent, in order to arrive at a <lb/>situation in which there would be no need for RFC8178 to update <lb/>the NFSv4.1 specfication. <lb/>o Work would have to be done with regard to RFC8434 [64] which <lb/>curently updates RFC5661 [60]. When that work is done and the <lb/>resulting document approved, the new NFSv4.1 specfication will <lb/>obsolete RFC8434 as well as RFC5661. <lb/>o There is a need for a new approach to the description of <lb/>internationalization since the current internationalization <lb/>section (Section 14) has never been implemented and does not meet <lb/>the needs of the NFSv4 protocol. Possible solutions are to create <lb/>a new internationalization section modeled on that in [62] or to <lb/>create a new document describing internationalization for all <lb/>NFSv4 minor versions and reference that document in the RFCs <lb/>defining both NFSv4.0 and NFSv4.1. <lb/>o There is a need for a revised treatment of security of in NFSv4.1. <lb/>The issues with the existing treatment are discussed in <lb/>Appendix C. <lb/>Until the above work is done, there will not be a full, correct <lb/>description of the NFSv41 protocol in a single document and any full <lb/>description would involves documents updating the specification, just <lb/>as RFC8434 [64] and RFC8178 [61] do today. <lb/>1.2. The NFS Version 4 Minor Version 1 Protocol <lb/>The NFS version 4 minor version 1 (NFSv4.1) protocol is the second <lb/>minor version of the NFS version 4 (NFSv4) protocol. The first minor <lb/>version, NFSv4.0, is now described in RFC7530 [62]. It generally <lb/>follows the guidelines for minor versioning that are listed in <lb/>Section 10 of RFC 3530. However, it diverges from guidelines 11 ("a <lb/>client and server that support minor version X must support minor <lb/>versions 0 through X-1") and 12 ("no new features may be introduced <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 8] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>as mandatory in a minor version"). These divergences are due to the <lb/>introduction of the sessions model for managing non-idempotent <lb/>operations and the RECLAIM_COMPLETE operation. These two new <lb/>features are infrastructural in nature and simplify implementation of <lb/>existing and other new features. Making them anything but REQUIRED <lb/>would add undue complexity to protocol definition and implementation. <lb/>NFSv4.1 accordingly updates the minor versioning guidelines <lb/>(Section 2.7). <lb/>As a minor version, NFSv4.1 is consistent with the overall goals for <lb/>NFSv4, but extends the protocol so as to better meet those goals, <lb/>based on experiences with NFSv4.0. In addition, NFSv4.1 has adopted <lb/>some additional goals, which motivate some of the major extensions in <lb/>NFSv4.1. <lb/>1.3. Requirements Language <lb/>The key words "MUST", "MUST NOT", "REQUIRED", "SHALL", "SHALL NOT", <lb/>"SHOULD", "SHOULD NOT", "RECOMMENDED", "MAY", and "OPTIONAL" in this <lb/>document are to be interpreted as described in RFC 2119 [1]. <lb/>1.4. Scope of This Document <lb/>This document describes the NFSv4.1 protocol. With respect to <lb/>NFSv4.0, this document does not: <lb/>o describe the NFSv4.0 protocol, except where needed to contrast <lb/>with NFSv4.1. <lb/>o modify the specification of the NFSv4.0 protocol. <lb/>o clarify the NFSv4.0 protocol. <lb/>1.5. NFSv4 Goals <lb/>The NFSv4 protocol is a further revision of the NFS protocol defined <lb/>already by NFSv3 [34]. It retains the essential characteristics of <lb/>previous versions: easy recovery; independence of transport <lb/>protocols, operating systems, and file systems; simplicity; and good <lb/>performance. NFSv4 has the following goals: <lb/>o Improved access and good performance on the Internet <lb/>The protocol is designed to transit firewalls easily, perform well <lb/>where latency is high and bandwidth is low, and scale to very <lb/>large numbers of clients per server. <lb/>o Strong security with negotiation built into the protocol <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 9] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>The protocol builds on the work of the ONCRPC working group in <lb/>supporting the RPCSEC_GSS protocol. Additionally, the NFSv4.1 <lb/>protocol provides a mechanism to allow clients and servers the <lb/>ability to negotiate security and require clients and servers to <lb/>support a minimal set of security schemes. <lb/>o Good cross-platform interoperability <lb/>The protocol features a file system model that provides a useful, <lb/>common set of features that does not unduly favor one file system <lb/>or operating system over another. <lb/>o Designed for protocol extensions <lb/>The protocol is designed to accept standard extensions within a <lb/>framework that enables and encourages backward compatibility. <lb/>1.6. NFSv4.1 Goals <lb/>NFSv4.1 has the following goals, within the framework established by <lb/>the overall NFSv4 goals. <lb/>o To correct significant structural weaknesses and oversights <lb/>discovered in the base protocol. <lb/>o To add clarity and specificity to areas left unaddressed or not <lb/>addressed in sufficient detail in the base protocol. However, as <lb/>stated in Section 1.4, it is not a goal to clarify the NFSv4.0 <lb/>protocol in the NFSv4.1 specification. <lb/>o To add specific features based on experience with the existing <lb/>protocol and recent industry developments. <lb/>o To provide protocol support to take advantage of clustered server <lb/>deployments including the ability to provide scalable parallel <lb/>access to files distributed among multiple servers. <lb/>1.7. General Definitions <lb/>The following definitions provide an appropriate context for the <lb/>reader. <lb/>Byte: In this document, a byte is an octet, i.e., a datum exactly 8 <lb/>bits in length. <lb/>Client: The client is the entity that accesses the NFS server's <lb/>resources. The client may be an application that contains the <lb/>logic to access the NFS server directly. The client may also be <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 10] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>the traditional operating system client that provides remote file <lb/>system services for a set of applications. <lb/>A client is uniquely identified by a client owner. <lb/>With reference to byte-range locking, the client is also the <lb/>entity that maintains a set of locks on behalf of one or more <lb/>applications. This client is responsible for crash or failure <lb/>recovery for those locks it manages. <lb/>Note that multiple clients may share the same transport and <lb/>connection and multiple clients may exist on the same network <lb/>node. <lb/>Client ID: The client ID is a 64-bit quantity used as a unique, <lb/>short-hand reference to a client-supplied verifier and client <lb/>owner. The server is responsible for supplying the client ID. <lb/>Client Owner: The client owner is a unique string, opaque to the <lb/>server, that identifies a client. Multiple network connections <lb/>and source network addresses originating from those connections <lb/>may share a client owner. The server is expected to treat <lb/>requests from connections with the same client owner as coming <lb/>from the same client. <lb/>File System: The file system is the collection of objects on a <lb/>server (as identified by the major identifier of a server owner, <lb/>which is defined later in this section) that share the same fsid <lb/>attribute (see Section 5.8.1.9). <lb/>Lease: A lease is an interval of time defined by the server for <lb/>which the client is irrevocably granted locks. At the end of a <lb/>lease period, locks may be revoked if the lease has not been <lb/>extended. A lock must be revoked if a conflicting lock has been <lb/>granted after the lease interval. <lb/>A server grants a client a single lease for all state. <lb/>Lock: The term "lock" is used to refer to byte-range (in UNIX <lb/>environments, also known as record) locks, share reservations, <lb/>delegations, or layouts unless specifically stated otherwise. <lb/>Secret State Verifier (SSV): The SSV is a unique secret key shared <lb/>between a client and server. The SSV serves as the secret key for <lb/>an internal (that is, internal to NFSv4.1) Generic Security <lb/>Services (GSS) mechanism (the SSV GSS mechanism; see <lb/>Section 2.10.9). The SSV GSS mechanism uses the SSV to compute <lb/>message integrity code (MIC) and Wrap tokens. See <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 11] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>Section 2.10.8.3 for more details on how NFSv4.1 uses the SSV and <lb/>the SSV GSS mechanism. <lb/>Server: The Server is the entity responsible for coordinating client <lb/>access to a set of file systems and is identified by a server <lb/>owner. A server can span multiple network addresses. <lb/>Server Owner: The server owner identifies the server to the client. <lb/>The server owner consists of a major identifier and a minor <lb/>identifier. When the client has two connections each to a peer <lb/>with the same major identifier, the client assumes that both peers <lb/>are the same server (the server namespace is the same via each <lb/>connection) and that lock state is sharable across both <lb/>connections. When each peer has both the same major and minor <lb/>identifiers, the client assumes that each connection might be <lb/>associable with the same session. <lb/>Stable Storage: Stable storage is storage from which data stored by <lb/>an NFSv4.1 server can be recovered without data loss from multiple <lb/>power failures (including cascading power failures, that is, <lb/>several power failures in quick succession), operating system <lb/>failures, and/or hardware failure of components other than the <lb/>storage medium itself (such as disk, nonvolatile RAM, flash <lb/>memory, etc.). <lb/>Some examples of stable storage that are allowable for an NFS <lb/>server include: <lb/>1. Media commit of data; that is, the modified data has been <lb/>successfully written to the disk media, for example, the disk <lb/>platter. <lb/>2. An immediate reply disk drive with battery-backed, on-drive <lb/>intermediate storage or uninterruptible power system (UPS). <lb/>3. Server commit of data with battery-backed intermediate storage <lb/>and recovery software. <lb/>4. Cache commit with uninterruptible power system (UPS) and <lb/>recovery software. <lb/>Stateid: A stateid is a 128-bit quantity returned by a server that <lb/>uniquely defines the open and locking states provided by the <lb/>server for a specific open-owner or lock-owner/open-owner pair for <lb/>a specific file and type of lock. <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 12] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>Verifier: A verifier is a 64-bit quantity generated by the client <lb/>that the server can use to determine if the client has restarted <lb/>and lost all previous lock state. <lb/>1.8. Overview of NFSv4.1 Features <lb/>The major features of the NFSv4.1 protocol will be reviewed in brief. <lb/>This will be done to provide an appropriate context for both the <lb/>reader who is familiar with the previous versions of the NFS protocol <lb/>and the reader who is new to the NFS protocols. For the reader new <lb/>to the NFS protocols, there is still a set of fundamental knowledge <lb/>that is expected. The reader should be familiar with the External <lb/>Data Representation (XDR) and Remote Procedure Call (RPC) protocols <lb/>as described in [2] and [3]. A basic knowledge of file systems and <lb/>distributed file systems is expected as well. <lb/>In general, this specification of NFSv4.1 will not distinguish those <lb/>features added in minor version 1 from those present in the base <lb/>protocol but will treat NFSv4.1 as a unified whole. See Section 1.9 <lb/>for a summary of the differences between NFSv4.0 and NFSv4.1. <lb/>1.8.1. RPC and Security <lb/>As with previous versions of NFS, the External Data Representation <lb/>(XDR) and Remote Procedure Call (RPC) mechanisms used for the NFSv4.1 <lb/>protocol are those defined in [2] and [3]. To meet end-to-end <lb/>security requirements, the RPCSEC_GSS framework [4] is used to extend <lb/>the basic RPC security. With the use of RPCSEC_GSS, various <lb/>mechanisms can be provided to offer authentication, integrity, and <lb/>privacy to the NFSv4 protocol. Kerberos V5 is used as described in <lb/>[5] to provide one security framework. With the use of RPCSEC_GSS, <lb/>other mechanisms may also be specified and used for NFSv4.1 security. <lb/>To enable in-band security negotiation, the NFSv4.1 protocol has <lb/>operations that provide the client a method of querying the server <lb/>about its policies regarding which security mechanisms must be used <lb/>for access to the server's file system resources. With this, the <lb/>client can securely match the security mechanism that meets the <lb/>policies specified at both the client and server. <lb/>NFSv4.1 introduces parallel access (see Section 1.8.2.2), which is <lb/>called pNFS. The security framework described in this section is <lb/>significantly modified by the introduction of pNFS (see <lb/>Section 12.9), because data access is sometimes not over RPC. The <lb/>level of significance varies with the storage protocol (see <lb/>Section 12.2.5) and can be as low as zero impact (see Section 13.12). <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 13] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>1.8.2. Protocol Structure <lb/>1.8.2.1. Core Protocol <lb/>Unlike NFSv3, which used a series of ancillary protocols (e.g., NLM, <lb/>NSM (Network Status Monitor), MOUNT), within all minor versions of <lb/>NFSv4 a single RPC protocol is used to make requests to the server. <lb/>Facilities that had been separate protocols, such as locking, are now <lb/>integrated within a single unified protocol. <lb/>1.8.2.2. Parallel Access <lb/>Minor version 1 supports high-performance data access to a clustered <lb/>server implementation by enabling a separation of metadata access and <lb/>data access, with the latter done to multiple servers in parallel. <lb/>Such parallel data access is controlled by recallable objects known <lb/>as "layouts", which are integrated into the protocol locking model. <lb/>Clients direct requests for data access to a set of data servers <lb/>specified by the layout via a data storage protocol which may be <lb/>NFSv4.1 or may be another protocol. <lb/>Because the protocols used for parallel data access are not <lb/>necessarily RPC-based, the RPC-based security model (Section 1.8.1) <lb/>is obviously impacted (see Section 12.9). The degree of impact <lb/>varies with the storage protocol (see Section 12.2.5) used for data <lb/>access, and can be as low as zero (see Section 13.12). <lb/>1.8.3. File System Model <lb/>The general file system model used for the NFSv4.1 protocol is the <lb/>same as previous versions. The server file system is hierarchical <lb/>with the regular files contained within being treated as opaque byte <lb/>streams. In a slight departure, file and directory names are encoded <lb/>with UTF-8 to deal with the basics of internationalization. <lb/>The NFSv4.1 protocol does not require a separate protocol to provide <lb/>for the initial mapping between path name and filehandle. All file <lb/>systems exported by a server are presented as a tree so that all file <lb/>systems are reachable from a special per-server global root <lb/>filehandle. This allows LOOKUP operations to be used to perform <lb/>functions previously provided by the MOUNT protocol. The server <lb/>provides any necessary pseudo file systems to bridge any gaps that <lb/>arise due to unexported gaps between exported file systems. <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 14] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>1.8.3.1. Filehandles <lb/>As in previous versions of the NFS protocol, opaque filehandles are <lb/>used to identify individual files and directories. Lookup-type and <lb/>create operations translate file and directory names to filehandles, <lb/>which are then used to identify objects in subsequent operations. <lb/>The NFSv4.1 protocol provides support for persistent filehandles, <lb/>guaranteed to be valid for the lifetime of the file system object <lb/>designated. In addition, it provides support to servers to provide <lb/>filehandles with more limited validity guarantees, called volatile <lb/>filehandles. <lb/>1.8.3.2. File Attributes <lb/>The NFSv4.1 protocol has a rich and extensible file object attribute <lb/>structure, which is divided into REQUIRED, RECOMMENDED, and named <lb/>attributes (see Section 5). <lb/>Several (but not all) of the REQUIRED attributes are derived from the <lb/>attributes of NFSv3 (see the definition of the fattr3 data type in <lb/>[34]). An example of a REQUIRED attribute is the file object's type <lb/>(Section 5.8.1.2) so that regular files can be distinguished from <lb/>directories (also known as folders in some operating environments) <lb/>and other types of objects. REQUIRED attributes are discussed in <lb/>Section 5.1. <lb/>An example of three RECOMMENDED attributes are acl, sacl, and dacl. <lb/>These attributes define an Access Control List (ACL) on a file object <lb/>(Section 6). An ACL provides directory and file access control <lb/>beyond the model used in NFSv3. The ACL definition allows for <lb/>specification of specific sets of permissions for individual users <lb/>and groups. In addition, ACL inheritance allows propagation of <lb/>access permissions and restrictions down a directory tree as file <lb/>system objects are created. RECOMMENDED attributes are discussed in <lb/>Section 5.2. <lb/>A named attribute is an opaque byte stream that is associated with a <lb/>directory or file and referred to by a string name. Named attributes <lb/>are meant to be used by client applications as a method to associate <lb/>application-specific data with a regular file or directory. NFSv4.1 <lb/>modifies named attributes relative to NFSv4.0 by tightening the <lb/>allowed operations in order to prevent the development of non-<lb/>interoperable implementations. Named attributes are discussed in <lb/>Section 5.3. <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 15] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>1.8.3.3. Multi-Server Namespace <lb/>NFSv4.1 contains a number of features to allow implementation of <lb/>namespaces that cross server boundaries and that allow and facilitate <lb/>a non-disruptive transfer of support for individual file systems <lb/>between servers. They are all based upon attributes that allow one <lb/>file system to specify alternate, additional, and new location <lb/>information that specifies how the client may access that file <lb/>system. <lb/>These attributes can be used to provide for individual active file <lb/>systems: <lb/>o Alternate network addresses to access the current file system <lb/>instance. <lb/>o The locations of alternate file system instances or replicas to be <lb/>used in the event that the current file system instance becomes <lb/>unavailable. <lb/>These file system location attributes may be used together with the <lb/>concept of absent file systems, in which a position in the server <lb/>namespace is associated with locations on other servers without there <lb/>being any corresponding file system instance on the current server. <lb/>For example, <lb/>o These attributes may be used with absent file systems to implement <lb/>referrals whereby one server may direct the client to a file <lb/>system provided by another server. This allows extensive multi-<lb/>server namespaces to be constructed. <lb/>o These attributes may be provided when a previously present file <lb/>system becomes absent. This allows non-disruptive migration of <lb/>file systems to alternate servers. <lb/>1.8.4. Locking Facilities <lb/>As mentioned previously, NFSv4.1 is a single protocol that includes <lb/>locking facilities. These locking facilities include support for <lb/>many types of locks including a number of sorts of recallable locks. <lb/>Recallable locks such as delegations allow the client to be assured <lb/>that certain events will not occur so long as that lock is held. <lb/>When circumstances change, the lock is recalled via a callback <lb/>request. The assurances provided by delegations allow more extensive <lb/>caching to be done safely when circumstances allow it. <lb/>The types of locks are: <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 16] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>o Share reservations as established by OPEN operations. <lb/>o Byte-range locks. <lb/>o File delegations, which are recallable locks that assure the <lb/>holder that inconsistent opens and file changes cannot occur so <lb/>long as the delegation is held. <lb/>o Directory delegations, which are recallable locks that assure the <lb/>holder that inconsistent directory modifications cannot occur so <lb/>long as the delegation is held. <lb/>o Layouts, which are recallable objects that assure the holder that <lb/>direct access to the file data may be performed directly by the <lb/>client and that no change to the data's location that is <lb/>inconsistent with that access may be made so long as the layout is <lb/>held. <lb/>All locks for a given client are tied together under a single client-<lb/>wide lease. All requests made on sessions associated with the client <lb/>renew that lease. When the client's lease is not promptly renewed, <lb/>the client's locks are subject to revocation. In the event of server <lb/>restart, clients have the opportunity to safely reclaim their locks <lb/>within a special grace period. <lb/>1.9. Differences from NFSv4.0 <lb/>The following summarizes the major differences between minor version <lb/>1 and the base protocol: <lb/>o Implementation of the sessions model (Section 2.10). <lb/>o Parallel access to data (Section 12). <lb/>o Addition of the RECLAIM_COMPLETE operation to better structure the <lb/>lock reclamation process (Section 18.51). <lb/>o Enhanced delegation support as follows. <lb/>* Delegations on directories and other file types in addition to <lb/>regular files (Section 18.39, Section 18.49). <lb/>* Operations to optimize acquisition of recalled or denied <lb/>delegations (Section 18.49, Section 20.5, Section 20.7). <lb/>* Notifications of changes to files and directories <lb/>(Section 18.39, Section 20.4). <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 17] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>* A method to allow a server to indicate that it is recalling one <lb/>or more delegations for resource management reasons, and thus a <lb/>method to allow the client to pick which delegations to return <lb/>(Section 20.6). <lb/>o Attributes can be set atomically during exclusive file create via <lb/>the OPEN operation (see the new EXCLUSIVE4_1 creation method in <lb/>Section 18.16). <lb/>o Open files can be preserved if removed and the hard link count <lb/>("hard link" is defined in an Open Group [6] standard) goes to <lb/>zero, thus obviating the need for clients to rename deleted files <lb/>to partially hidden names --colloquially called "silly rename" <lb/>(see the new OPEN4_RESULT_PRESERVE_UNLINKED reply flag in <lb/>Section 18.16). <lb/>o Improved compatibility with Microsoft Windows for Access Control <lb/>Lists (Section 6.2.3, Section 6.2.2, Section 6.4.3.2). <lb/>o Data retention (Section 5.13). <lb/>o Identification of the implementation of the NFS client and server <lb/>(Section 18.35). <lb/>o Support for notification of the availability of byte-range locks <lb/>(see the new OPEN4_RESULT_MAY_NOTIFY_LOCK reply flag in <lb/>Section 18.16 and see Section 20.11). <lb/>o In NFSv4.1, LIPKEY and SPKM-3 are not required security mechanisms <lb/>[35]. <lb/>2. Core Infrastructure <lb/>2.1. Introduction <lb/>NFSv4.1 relies on core infrastructure common to nearly every <lb/>operation. This core infrastructure is described in the remainder of <lb/>this section. <lb/>2.2. RPC and XDR <lb/>The NFSv4.1 protocol is a Remote Procedure Call (RPC) application <lb/>that uses RPC version 2 and the corresponding eXternal Data <lb/>Representation (XDR) as defined in [3] and [2]. <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 18] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>2.2.1. RPC-Based Security <lb/>Previous NFS versions have been thought of as having a host-based <lb/>authentication model, where the NFS server authenticates the NFS <lb/>client, and trusts the client to authenticate all users. Actually, <lb/>NFS has always depended on RPC for authentication. One of the first <lb/>forms of RPC authentication, AUTH_SYS, had no strong authentication <lb/>and required a host-based authentication approach. NFSv4.1 also <lb/>depends on RPC for basic security services and mandates RPC support <lb/>for a user-based authentication model. The user-based authentication <lb/>model has user principals authenticated by a server, and in turn the <lb/>server authenticated by user principals. RPC provides some basic <lb/>security services that are used by NFSv4.1. <lb/>2.2.1.1. RPC Security Flavors <lb/>As described in Section 7.2 ("Authentication") of [3], RPC security <lb/>is encapsulated in the RPC header, via a security or authentication <lb/>flavor, and information specific to the specified security flavor. <lb/>Every RPC header conveys information used to identify and <lb/>authenticate a client and server. As discussed in Section 2.2.1.1.1, <lb/>some security flavors provide additional security services. <lb/>NFSv4.1 clients and servers MUST implement RPCSEC_GSS. (This <lb/>requirement to implement is not a requirement to use.) Other <lb/>flavors, such as AUTH_NONE and AUTH_SYS, MAY be implemented as well. <lb/>2.2.1.1.1. RPCSEC_GSS and Security Services <lb/>RPCSEC_GSS [4] uses the functionality of GSS-API [7]. This allows <lb/>for the use of various security mechanisms by the RPC layer without <lb/>the additional implementation overhead of adding RPC security <lb/>flavors. <lb/>2.2.1.1.1.1. Identification, Authentication, Integrity, Privacy <lb/>Via the GSS-API, RPCSEC_GSS can be used to identify and authenticate <lb/>users on clients to servers, and servers to users. It can also <lb/>perform integrity checking on the entire RPC message, including the <lb/>RPC header, and on the arguments or results. Finally, privacy, <lb/>usually via encryption, is a service available with RPCSEC_GSS. <lb/>Privacy is performed on the arguments and results. Note that if <lb/>privacy is selected, integrity, authentication, and identification <lb/>are enabled. If privacy is not selected, but integrity is selected, <lb/>authentication and identification are enabled. If integrity and <lb/>privacy are not selected, but authentication is enabled, <lb/>identification is enabled. RPCSEC_GSS does not provide <lb/>identification as a separate service. <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 19] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>Although GSS-API has an authentication service distinct from its <lb/>privacy and integrity services, GSS-API's authentication service is <lb/>not used for RPCSEC_GSS's authentication service. Instead, each RPC <lb/>request and response header is integrity protected with the GSS-API <lb/>integrity service, and this allows RPCSEC_GSS to offer per-RPC <lb/>authentication and identity. See [4] for more information. <lb/>NFSv4.1 client and servers MUST support RPCSEC_GSS's integrity and <lb/>authentication service. NFSv4.1 servers MUST support RPCSEC_GSS's <lb/>privacy service. NFSv4.1 clients SHOULD support RPCSEC_GSS's privacy <lb/>service. <lb/>2.2.1.1.1.2. Security Mechanisms for NFSv4.1 <lb/>RPCSEC_GSS, via GSS-API, normalizes access to mechanisms that provide <lb/>security services. Therefore, NFSv4.1 clients and servers MUST <lb/>support the Kerberos V5 security mechanism. <lb/>The use of RPCSEC_GSS requires selection of mechanism, quality of <lb/>protection (QOP), and service (authentication, integrity, privacy). <lb/>For the mandated security mechanisms, NFSv4.1 specifies that a QOP of <lb/>zero is used, leaving it up to the mechanism or the mechanism's <lb/>configuration to map QOP zero to an appropriate level of protection. <lb/>Each mandated mechanism specifies a minimum set of cryptographic <lb/>algorithms for implementing integrity and privacy. NFSv4.1 clients <lb/>and servers MUST be implemented on operating environments that comply <lb/>with the REQUIRED cryptographic algorithms of each REQUIRED <lb/>mechanism. <lb/>2.2.1.1.1.2.1. Kerberos V5 <lb/>The Kerberos V5 GSS-API mechanism as described in [5] MUST be <lb/>implemented with the RPCSEC_GSS services as specified in the <lb/>following table: <lb/>column descriptions: <lb/>1 == number of pseudo flavor <lb/>2 == name of pseudo flavor <lb/>3 == mechanism's OID <lb/>4 == RPCSEC_GSS service <lb/>5 == NFSv4.1 clients MUST support <lb/>6 == NFSv4.1 servers MUST support <lb/>1 <lb/>2 <lb/>3 <lb/>4 <lb/>5 <lb/>6 <lb/>------------------------------------------------------------------<lb/>390003 krb5 <lb/>1.2.840.113554.1.2.2 rpc_gss_svc_none <lb/>yes yes <lb/>390004 krb5i <lb/>1.2.840.113554.1.2.2 rpc_gss_svc_integrity yes yes <lb/>390005 krb5p <lb/>1.2.840.113554.1.2.2 rpc_gss_svc_privacy <lb/>no yes <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 20] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>Note that the number and name of the pseudo flavor are presented here <lb/>as a mapping aid to the implementor. Because the NFSv4.1 protocol <lb/>includes a method to negotiate security and it understands the GSS-<lb/>API mechanism, the pseudo flavor is not needed. The pseudo flavor is <lb/>needed for the NFSv3 since the security negotiation is done via the <lb/>MOUNT protocol as described in [36]. <lb/>At the time NFSv4.1 was specified, the Advanced Encryption Standard <lb/>(AES) with HMAC-SHA1 was a REQUIRED algorithm set for Kerberos V5. <lb/>In contrast, when NFSv4.0 was specified, weaker algorithm sets were <lb/>REQUIRED for Kerberos V5, and were REQUIRED in the NFSv4.0 <lb/>specification, because the Kerberos V5 specification at the time did <lb/>not specify stronger algorithms. The NFSv4.1 specification does not <lb/>specify REQUIRED algorithms for Kerberos V5, and instead, the <lb/>implementor is expected to track the evolution of the Kerberos V5 <lb/>standard if and when stronger algorithms are specified. <lb/>2.2.1.1.1.2.1.1. Security Considerations for Cryptographic Algorithms <lb/>in Kerberos V5 <lb/>When deploying NFSv4.1, the strength of the security achieved depends <lb/>on the existing Kerberos V5 infrastructure. The algorithms of <lb/>Kerberos V5 are not directly exposed to or selectable by the client <lb/>or server, so there is some due diligence required by the user of <lb/>NFSv4.1 to ensure that security is acceptable where needed. <lb/>2.2.1.1.1.3. GSS Server Principal <lb/>Regardless of what security mechanism under RPCSEC_GSS is being used, <lb/>the NFS server MUST identify itself in GSS-API via a <lb/>GSS_C_NT_HOSTBASED_SERVICE name type. GSS_C_NT_HOSTBASED_SERVICE <lb/>names are of the form: <lb/>service@hostname <lb/>For NFS, the "service" element is <lb/>nfs <lb/>Implementations of security mechanisms will convert nfs@hostname to <lb/>various different forms. For Kerberos V5, the following form is <lb/>RECOMMENDED: <lb/>nfs/hostname <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 21] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>2.3. COMPOUND and CB_COMPOUND <lb/>A significant departure from the versions of the NFS protocol before <lb/>NFSv4 is the introduction of the COMPOUND procedure. For the NFSv4 <lb/>protocol, in all minor versions, there are exactly two RPC <lb/>procedures, NULL and COMPOUND. The COMPOUND procedure is defined as <lb/>a series of individual operations and these operations perform the <lb/>sorts of functions performed by traditional NFS procedures. <lb/>The operations combined within a COMPOUND request are evaluated in <lb/>order by the server, without any atomicity guarantees. A limited set <lb/>of facilities exist to pass results from one operation to another. <lb/>Once an operation returns a failing result, the evaluation ends and <lb/>the results of all evaluated operations are returned to the client. <lb/>With the use of the COMPOUND procedure, the client is able to build <lb/>simple or complex requests. These COMPOUND requests allow for a <lb/>reduction in the number of RPCs needed for logical file system <lb/>operations. For example, multi-component look up requests can be <lb/>constructed by combining multiple LOOKUP operations. Those can be <lb/>further combined with operations such as GETATTR, READDIR, or OPEN <lb/>plus READ to do more complicated sets of operation without incurring <lb/>additional latency. <lb/>NFSv4.1 also contains a considerable set of callback operations in <lb/>which the server makes an RPC directed at the client. Callback RPCs <lb/>have a similar structure to that of the normal server requests. In <lb/>all minor versions of the NFSv4 protocol, there are two callback RPC <lb/>procedures: CB_NULL and CB_COMPOUND. The CB_COMPOUND procedure is <lb/>defined in an analogous fashion to that of COMPOUND with its own set <lb/>of callback operations. <lb/>The addition of new server and callback operations within the <lb/>COMPOUND and CB_COMPOUND request framework provides a means of <lb/>extending the protocol in subsequent minor versions. <lb/>Except for a small number of operations needed for session creation, <lb/>server requests and callback requests are performed within the <lb/>context of a session. Sessions provide a client context for every <lb/>request and support robust reply protection for non-idempotent <lb/>requests. <lb/>2.4. Client Identifiers and Client Owners <lb/>For each operation that obtains or depends on locking state, the <lb/>specific client needs to be identifiable by the server. <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 22] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>Each distinct client instance is represented by a client ID. A <lb/>client ID is a 64-bit identifier representing a specific client at a <lb/>given time. The client ID is changed whenever the client re-<lb/>initializes, and may change when the server re-initializes. Client <lb/>IDs are used to support lock identification and crash recovery. <lb/>During steady state operation, the client ID associated with each <lb/>operation is derived from the session (see Section 2.10) on which the <lb/>operation is sent. A session is associated with a client ID when the <lb/>session is created. <lb/>Unlike NFSv4.0, the only NFSv4.1 operations possible before a client <lb/>ID is established are those needed to establish the client ID. <lb/>A sequence of an EXCHANGE_ID operation followed by a CREATE_SESSION <lb/>operation using that client ID (eir_clientid as returned from <lb/>EXCHANGE_ID) is required to establish and confirm the client ID on <lb/>the server. Establishment of identification by a new incarnation of <lb/>the client also has the effect of immediately releasing any locking <lb/>state that a previous incarnation of that same client might have had <lb/>on the server. Such released state would include all byte-range <lb/>lock, share reservation, layout state, and --where the server <lb/>supports neither the CLAIM_DELEGATE_PREV nor CLAIM_DELEG_CUR_FH claim <lb/>types --all delegation state associated with the same client with <lb/>the same identity. For discussion of delegation state recovery, see <lb/>Section 10.2.1. For discussion of layout state recovery, see <lb/>Section 12.7.1. <lb/>Releasing such state requires that the server be able to determine <lb/>that one client instance is the successor of another. Where this <lb/>cannot be done, for any of a number of reasons, the locking state <lb/>will remain for a time subject to lease expiration (see Section 8.3) <lb/>and the new client will need to wait for such state to be removed, if <lb/>it makes conflicting lock requests. <lb/>Client identification is encapsulated in the following client owner <lb/>data type: <lb/>struct client_owner4 { <lb/>verifier4 <lb/>co_verifier; <lb/>opaque <lb/>co_ownerid<NFS4_OPAQUE_LIMIT>; <lb/>}; <lb/>The first field, co_verifier, is a client incarnation verifier. The <lb/>server will start the process of canceling the client's leased state <lb/>if co_verifier is different than what the server has previously <lb/>recorded for the identified client (as specified in the co_ownerid <lb/>field). <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 23] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>The second field, co_ownerid, is a variable length string that <lb/>uniquely defines the client so that subsequent instances of the same <lb/>client bear the same co_ownerid with a different verifier. <lb/>There are several considerations for how the client generates the <lb/>co_ownerid string: <lb/>o The string should be unique so that multiple clients do not <lb/>present the same string. The consequences of two clients <lb/>presenting the same string range from one client getting an error <lb/>to one client having its leased state abruptly and unexpectedly <lb/>cancelled. <lb/>o The string should be selected so that subsequent incarnations <lb/>(e.g., restarts) of the same client cause the client to present <lb/>the same string. The implementor is cautioned from an approach <lb/>that requires the string to be recorded in a local file because <lb/>this precludes the use of the implementation in an environment <lb/>where there is no local disk and all file access is from an <lb/>NFSv4.1 server. <lb/>o The string should be the same for each server network address that <lb/>the client accesses. This way, if a server has multiple <lb/>interfaces, the client can trunk traffic over multiple network <lb/>paths as described in Section 2.10.5. (Note: the precise opposite <lb/>was advised in the NFSv4.0 specification [33].) <lb/>o The algorithm for generating the string should not assume that the <lb/>client's network address will not change, unless the client <lb/>implementation knows it is using statically assigned network <lb/>addresses. This includes changes between client incarnations and <lb/>even changes while the client is still running in its current <lb/>incarnation. Thus, with dynamic address assignment, if the client <lb/>includes just the client's network address in the co_ownerid <lb/>string, there is a real risk that after the client gives up the <lb/>network address, another client, using a similar algorithm for <lb/>generating the co_ownerid string, would generate a conflicting <lb/>co_ownerid string. <lb/>Given the above considerations, an example of a well-generated <lb/>co_ownerid string is one that includes: <lb/>o If applicable, the client's statically assigned network address. <lb/>o Additional information that tends to be unique, such as one or <lb/>more of: <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 24] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>* The client machine's serial number (for privacy reasons, it is <lb/>best to perform some one-way function on the serial number). <lb/>* A Media Access Control (MAC) address (again, a one-way function <lb/>should be performed). <lb/>* The timestamp of when the NFSv4.1 software was first installed <lb/>on the client (though this is subject to the previously <lb/>mentioned caution about using information that is stored in a <lb/>file, because the file might only be accessible over NFSv4.1). <lb/>* A true random number. However, since this number ought to be <lb/>the same between client incarnations, this shares the same <lb/>problem as that of using the timestamp of the software <lb/>installation. <lb/>o For a user-level NFSv4.1 client, it should contain additional <lb/>information to distinguish the client from other user-level <lb/>clients running on the same host, such as a process identifier or <lb/>other unique sequence. <lb/>The client ID is assigned by the server (the eir_clientid result from <lb/>EXCHANGE_ID) and should be chosen so that it will not conflict with a <lb/>client ID previously assigned by the server. This applies across <lb/>server restarts. <lb/>In the event of a server restart, a client may find out that its <lb/>current client ID is no longer valid when it receives an <lb/>NFS4ERR_STALE_CLIENTID error. The precise circumstances depend on <lb/>the characteristics of the sessions involved, specifically whether <lb/>the session is persistent (see Section 2.10.6.5), but in each case <lb/>the client will receive this error when it attempts to establish a <lb/>new session with the existing client ID and receives the error <lb/>NFS4ERR_STALE_CLIENTID, indicating that a new client ID needs to be <lb/>obtained via EXCHANGE_ID and the new session established with that <lb/>client ID. <lb/>When a session is not persistent, the client will find out that it <lb/>needs to create a new session as a result of getting an <lb/>NFS4ERR_BADSESSION, since the session in question was lost as part of <lb/>a server restart. When the existing client ID is presented to a <lb/>server as part of creating a session and that client ID is not <lb/>recognized, as would happen after a server restart, the server will <lb/>reject the request with the error NFS4ERR_STALE_CLIENTID. <lb/>In the case of the session being persistent, the client will re-<lb/>establish communication using the existing session after the restart. <lb/>This session will be associated with the existing client ID but may <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 25] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>only be used to retransmit operations that the client previously <lb/>transmitted and did not see replies to. Replies to operations that <lb/>the server previously performed will come from the reply cache; <lb/>otherwise, NFS4ERR_DEADSESSION will be returned. Hence, such a <lb/>session is referred to as "dead". In this situation, in order to <lb/>perform new operations, the client needs to establish a new session. <lb/>If an attempt is made to establish this new session with the existing <lb/>client ID, the server will reject the request with <lb/>NFS4ERR_STALE_CLIENTID. <lb/>When NFS4ERR_STALE_CLIENTID is received in either of these <lb/>situations, the client needs to obtain a new client ID by use of the <lb/>EXCHANGE_ID operation, then use that client ID as the basis of a new <lb/>session, and then proceed to any other necessary recovery for the <lb/>server restart case (see Section 8.4.2). <lb/>See the descriptions of EXCHANGE_ID (Section 18.35) and <lb/>CREATE_SESSION (Section 18.36) for a complete specification of these <lb/>operations. <lb/>2.4.1. Upgrade from NFSv4.0 to NFSv4.1 <lb/>To facilitate upgrade from NFSv4.0 to NFSv4.1, a server may compare a <lb/>value of data type client_owner4 in an EXCHANGE_ID with a value of <lb/>data type nfs_client_id4 that was established using the SETCLIENTID <lb/>operation of NFSv4.0. A server that does so will allow an upgraded <lb/>client to avoid waiting until the lease (i.e., the lease established <lb/>by the NFSv4.0 instance client) expires. This requires that the <lb/>value of data type client_owner4 be constructed the same way as the <lb/>value of data type nfs_client_id4. If the latter's contents included <lb/>the server's network address (per the recommendations of the NFSv4.0 <lb/>specification [33]), and the NFSv4.1 client does not wish to use a <lb/>client ID that prevents trunking, it should send two EXCHANGE_ID <lb/>operations. The first EXCHANGE_ID will have a client_owner4 equal to <lb/>the nfs_client_id4. This will clear the state created by the NFSv4.0 <lb/>client. The second EXCHANGE_ID will not have the server's network <lb/>address. The state created for the second EXCHANGE_ID will not have <lb/>to wait for lease expiration, because there will be no state to <lb/>expire. <lb/>2.4.2. Server Release of Client ID <lb/>NFSv4.1 introduces a new operation called DESTROY_CLIENTID <lb/>(Section 18.50), which the client SHOULD use to destroy a client ID <lb/>it no longer needs. This permits graceful, bilateral release of a <lb/>client ID. The operation cannot be used if there are sessions <lb/>associated with the client ID, or state with an unexpired lease. <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 26] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>If the server determines that the client holds no associated state <lb/>for its client ID (associated state includes unrevoked sessions, <lb/>opens, locks, delegations, layouts, and wants), the server MAY choose <lb/>to unilaterally release the client ID in order to conserve resources. <lb/>If the client contacts the server after this release, the server MUST <lb/>ensure that the client receives the appropriate error so that it will <lb/>use the EXCHANGE_ID/CREATE_SESSION sequence to establish a new client <lb/>ID. The server ought to be very hesitant to release a client ID <lb/>since the resulting work on the client to recover from such an event <lb/>will be the same burden as if the server had failed and restarted. <lb/>Typically, a server would not release a client ID unless there had <lb/>been no activity from that client for many minutes. As long as there <lb/>are sessions, opens, locks, delegations, layouts, or wants, the <lb/>server MUST NOT release the client ID. See Section 2.10.13.1.4 for <lb/>discussion on releasing inactive sessions. <lb/>2.4.3. Resolving Client Owner Conflicts <lb/>When the server gets an EXCHANGE_ID for a client owner that currently <lb/>has no state, or that has state but the lease has expired, the server <lb/>MUST allow the EXCHANGE_ID and confirm the new client ID if followed <lb/>by the appropriate CREATE_SESSION. <lb/>When the server gets an EXCHANGE_ID for a new incarnation of a client <lb/>owner that currently has an old incarnation with state and an <lb/>unexpired lease, the server is allowed to dispose of the state of the <lb/>previous incarnation of the client owner if one of the following is <lb/>true: <lb/>o The principal that created the client ID for the client owner is <lb/>the same as the principal that is sending the EXCHANGE_ID <lb/>operation. Note that if the client ID was created with <lb/>SP4_MACH_CRED state protection (Section 18.35), the principal MUST <lb/>be based on RPCSEC_GSS authentication, the RPCSEC_GSS service used <lb/>MUST be integrity or privacy, and the same GSS mechanism and <lb/>principal MUST be used as that used when the client ID was <lb/>created. <lb/>o The client ID was established with SP4_SSV protection <lb/>(Section 18.35, Section 2.10.8.3) and the client sends the <lb/>EXCHANGE_ID with the security flavor set to RPCSEC_GSS using the <lb/>GSS SSV mechanism (Section 2.10.9). <lb/>o The client ID was established with SP4_SSV protection, and under <lb/>the conditions described herein, the EXCHANGE_ID was sent with <lb/>SP4_MACH_CRED state protection. Because the SSV might not persist <lb/>across client and server restart, and because the first time a <lb/>client sends EXCHANGE_ID to a server it does not have an SSV, the <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 27] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>client MAY send the subsequent EXCHANGE_ID without an SSV <lb/>RPCSEC_GSS handle. Instead, as with SP4_MACH_CRED protection, the <lb/>principal MUST be based on RPCSEC_GSS authentication, the <lb/>RPCSEC_GSS service used MUST be integrity or privacy, and the same <lb/>GSS mechanism and principal MUST be used as that used when the <lb/>client ID was created. <lb/>If none of the above situations apply, the server MUST return <lb/>NFS4ERR_CLID_INUSE. <lb/>If the server accepts the principal and co_ownerid as matching that <lb/>which created the client ID, and the co_verifier in the EXCHANGE_ID <lb/>differs from the co_verifier used when the client ID was created, <lb/>then after the server receives a CREATE_SESSION that confirms the <lb/>client ID, the server deletes state. If the co_verifier values are <lb/>the same (e.g., the client either is updating properties of the <lb/>client ID (Section 18.35) or is attempting trunking (Section 2.10.5), <lb/>the server MUST NOT delete state. <lb/>2.5. Server Owners <lb/>The server owner is similar to a client owner (Section 2.4), but <lb/>unlike the client owner, there is no shorthand server ID. The server <lb/>owner is defined in the following data type: <lb/>struct server_owner4 { <lb/>uint64_t <lb/>so_minor_id; <lb/>opaque <lb/>so_major_id<NFS4_OPAQUE_LIMIT>; <lb/>}; <lb/>The server owner is returned from EXCHANGE_ID. When the so_major_id <lb/>fields are the same in two EXCHANGE_ID results, the connections that <lb/>each EXCHANGE_ID were sent over can be assumed to address the same <lb/>server (as defined in Section 1.7). If the so_minor_id fields are <lb/>also the same, then not only do both connections connect to the same <lb/>server, but the session can be shared across both connections. The <lb/>reader is cautioned that multiple servers may deliberately or <lb/>accidentally claim to have the same so_major_id or so_major_id/ <lb/>so_minor_id; the reader should examine Sections 2.10.5 and 18.35 in <lb/>order to avoid acting on falsely matching server owner values. <lb/>The considerations for generating a so_major_id are similar to that <lb/>for generating a co_ownerid string (see Section 2.4). The <lb/>consequences of two servers generating conflicting so_major_id values <lb/>are less dire than they are for co_ownerid conflicts because the <lb/>client can use RPCSEC_GSS to compare the authenticity of each server <lb/>(see Section 2.10.5). <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 28] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>2.6. Security Service Negotiation <lb/>With the NFSv4.1 server potentially offering multiple security <lb/>mechanisms, the client needs a method to determine or negotiate which <lb/>mechanism is to be used for its communication with the server. The <lb/>NFS server may have multiple points within its file system namespace <lb/>that are available for use by NFS clients. These points can be <lb/>considered security policy boundaries, and, in some NFS <lb/>implementations, are tied to NFS export points. In turn, the NFS <lb/>server may be configured such that each of these security policy <lb/>boundaries may have different or multiple security mechanisms in use. <lb/>The security negotiation between client and server SHOULD be done <lb/>with a secure channel to eliminate the possibility of a third party <lb/>intercepting the negotiation sequence and forcing the client and <lb/>server to choose a lower level of security than required or desired. <lb/>See Section 21 for further discussion. <lb/>2.6.1. NFSv4.1 Security Tuples <lb/>An NFS server can assign one or more "security tuples" to each <lb/>security policy boundary in its namespace. Each security tuple <lb/>consists of a security flavor (see Section 2.2.1.1) and, if the <lb/>flavor is RPCSEC_GSS, a GSS-API mechanism Object Identifier (OID), a <lb/>GSS-API quality of protection, and an RPCSEC_GSS service. <lb/>2.6.2. SECINFO and SECINFO_NO_NAME <lb/>The SECINFO and SECINFO_NO_NAME operations allow the client to <lb/>determine, on a per-filehandle basis, what security tuple is to be <lb/>used for server access. In general, the client will not have to use <lb/>either operation except during initial communication with the server <lb/>or when the client crosses security policy boundaries at the server. <lb/>However, the server's policies may also change at any time and force <lb/>the client to negotiate a new security tuple. <lb/>Where the use of different security tuples would affect the type of <lb/>access that would be allowed if a request was sent over the same <lb/>connection used for the SECINFO or SECINFO_NO_NAME operation (e.g., <lb/>read-only vs. read-write) access, security tuples that allow greater <lb/>access should be presented first. Where the general level of access <lb/>is the same and different security flavors limit the range of <lb/>principals whose privileges are recognized (e.g., allowing or <lb/>disallowing root access), flavors supporting the greatest range of <lb/>principals should be listed first. <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 29] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>2.6.3. Security Error <lb/>Based on the assumption that each NFSv4.1 client and server MUST <lb/>support a minimum set of security (i.e., Kerberos V5 under <lb/>RPCSEC_GSS), the NFS client will initiate file access to the server <lb/>with one of the minimal security tuples. During communication with <lb/>the server, the client may receive an NFS error of NFS4ERR_WRONGSEC. <lb/>This error allows the server to notify the client that the security <lb/>tuple currently being used contravenes the server's security policy. <lb/>The client is then responsible for determining (see Section 2.6.3.1) <lb/>what security tuples are available at the server and choosing one <lb/>that is appropriate for the client. <lb/>2.6.3.1. Using NFS4ERR_WRONGSEC, SECINFO, and SECINFO_NO_NAME <lb/>This section explains the mechanics of NFSv4.1 security negotiation. <lb/>2.6.3.1.1. Put Filehandle Operations <lb/>The term "put filehandle operation" refers to PUTROOTFH, PUTPUBFH, <lb/>PUTFH, and RESTOREFH. Each of the subsections herein describes how <lb/>the server handles a subseries of operations that starts with a put <lb/>filehandle operation. <lb/>2.6.3.1.1.1. Put Filehandle Operation + SAVEFH <lb/>The client is saving a filehandle for a future RESTOREFH, LINK, or <lb/>RENAME. SAVEFH MUST NOT return NFS4ERR_WRONGSEC. To determine <lb/>whether or not the put filehandle operation returns NFS4ERR_WRONGSEC, <lb/>the server implementation pretends SAVEFH is not in the series of <lb/>operations and examines which of the situations described in the <lb/>other subsections of Section 2.6.3.1.1 apply. <lb/>2.6.3.1.1.2. Two or More Put Filehandle Operations <lb/>For a series of N put filehandle operations, the server MUST NOT <lb/>return NFS4ERR_WRONGSEC to the first N-1 put filehandle operations. <lb/>The Nth put filehandle operation is handled as if it is the first in <lb/>a subseries of operations. For example, if the server received a <lb/>COMPOUND request with this series of operations --PUTFH, PUTROOTFH, <lb/>LOOKUP --then the PUTFH operation is ignored for NFS4ERR_WRONGSEC <lb/>purposes, and the PUTROOTFH, LOOKUP subseries is processed as <lb/>according to Section 2.6.3.1.1.3. <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 30] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>2.6.3.1.1.3. Put Filehandle Operation + LOOKUP (or OPEN of an Existing <lb/>Name) <lb/>This situation also applies to a put filehandle operation followed by <lb/>a LOOKUP or an OPEN operation that specifies an existing component <lb/>name. <lb/>In this situation, the client is potentially crossing a security <lb/>policy boundary, and the set of security tuples the parent directory <lb/>supports may differ from those of the child. The server <lb/>implementation may decide whether to impose any restrictions on <lb/>security policy administration. There are at least three approaches <lb/>(sec_policy_child is the tuple set of the child export, <lb/>sec_policy_parent is that of the parent). <lb/>(a) sec_policy_child <= sec_policy_parent (<= for subset). This <lb/>means that the set of security tuples specified on the security <lb/>policy of a child directory is always a subset of its parent <lb/>directory. <lb/>(b) sec_policy_child ^ sec_policy_parent != {} (^ for intersection, <lb/>{} for the empty set). This means that the set of security <lb/>tuples specified on the security policy of a child directory <lb/>always has a non-empty intersection with that of the parent. <lb/>(c) sec_policy_child ^ sec_policy_parent == {}. This means that the <lb/>set of security tuples specified on the security policy of a <lb/>child directory may not intersect with that of the parent. In <lb/>other words, there are no restrictions on how the system <lb/>administrator may set up these tuples. <lb/>In order for a server to support approaches (b) (for the case when a <lb/>client chooses a flavor that is not a member of sec_policy_parent) <lb/>and (c), the put filehandle operation cannot return NFS4ERR_WRONGSEC <lb/>when there is a security tuple mismatch. Instead, it should be <lb/>returned from the LOOKUP (or OPEN by existing component name) that <lb/>follows. <lb/>Since the above guideline does not contradict approach (a), it should <lb/>be followed in general. Even if approach (a) is implemented, it is <lb/>possible for the security tuple used to be acceptable for the target <lb/>of LOOKUP but not for the filehandles used in the put filehandle <lb/>operation. The put filehandle operation could be a PUTROOTFH or <lb/>PUTPUBFH, where the client cannot know the security tuples for the <lb/>root or public filehandle. Or the security policy for the filehandle <lb/>used by the put filehandle operation could have changed since the <lb/>time the filehandle was obtained. <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 31] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>Therefore, an NFSv4.1 server MUST NOT return NFS4ERR_WRONGSEC in <lb/>response to the put filehandle operation if the operation is <lb/>immediately followed by a LOOKUP or an OPEN by component name. <lb/>2.6.3.1.1.4. Put Filehandle Operation + LOOKUPP <lb/>Since SECINFO only works its way down, there is no way LOOKUPP can <lb/>return NFS4ERR_WRONGSEC without SECINFO_NO_NAME. SECINFO_NO_NAME <lb/>solves this issue via style SECINFO_STYLE4_PARENT, which works in the <lb/>opposite direction as SECINFO. As with Section 2.6.3.1.1.3, a put <lb/>filehandle operation that is followed by a LOOKUPP MUST NOT return <lb/>NFS4ERR_WRONGSEC. If the server does not support SECINFO_NO_NAME, <lb/>the client's only recourse is to send the put filehandle operation, <lb/>LOOKUPP, GETFH sequence of operations with every security tuple it <lb/>supports. <lb/>Regardless of whether SECINFO_NO_NAME is supported, an NFSv4.1 server <lb/>MUST NOT return NFS4ERR_WRONGSEC in response to a put filehandle <lb/>operation if the operation is immediately followed by a LOOKUPP. <lb/>2.6.3.1.1.5. Put Filehandle Operation + SECINFO/SECINFO_NO_NAME <lb/>A security-sensitive client is allowed to choose a strong security <lb/>tuple when querying a server to determine a file object's permitted <lb/>security tuples. The security tuple chosen by the client does not <lb/>have to be included in the tuple list of the security policy of <lb/>either the parent directory indicated in the put filehandle operation <lb/>or the child file object indicated in SECINFO (or any parent <lb/>directory indicated in SECINFO_NO_NAME). Of course, the server has <lb/>to be configured for whatever security tuple the client selects; <lb/>otherwise, the request will fail at the RPC layer with an appropriate <lb/>authentication error. <lb/>In theory, there is no connection between the security flavor used by <lb/>SECINFO or SECINFO_NO_NAME and those supported by the security <lb/>policy. But in practice, the client may start looking for strong <lb/>flavors from those supported by the security policy, followed by <lb/>those in the REQUIRED set. <lb/>The NFSv4.1 server MUST NOT return NFS4ERR_WRONGSEC to a put <lb/>filehandle operation that is immediately followed by SECINFO or <lb/>SECINFO_NO_NAME. The NFSv4.1 server MUST NOT return NFS4ERR_WRONGSEC <lb/>from SECINFO or SECINFO_NO_NAME. <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 32] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>2.6.3.1.1.6. Put Filehandle Operation + Nothing <lb/>The NFSv4.1 server MUST NOT return NFS4ERR_WRONGSEC. <lb/>2.6.3.1.1.7. Put Filehandle Operation + Anything Else <lb/>"Anything Else" includes OPEN by filehandle. <lb/>The security policy enforcement applies to the filehandle specified <lb/>in the put filehandle operation. Therefore, the put filehandle <lb/>operation MUST return NFS4ERR_WRONGSEC when there is a security tuple <lb/>mismatch. This avoids the complexity of adding NFS4ERR_WRONGSEC as <lb/>an allowable error to every other operation. <lb/>A COMPOUND containing the series put filehandle operation + <lb/>SECINFO_NO_NAME (style SECINFO_STYLE4_CURRENT_FH) is an efficient way <lb/>for the client to recover from NFS4ERR_WRONGSEC. <lb/>The NFSv4.1 server MUST NOT return NFS4ERR_WRONGSEC to any operation <lb/>other than a put filehandle operation, LOOKUP, LOOKUPP, and OPEN (by <lb/>component name). <lb/>2.6.3.1.1.8. Operations after SECINFO and SECINFO_NO_NAME <lb/>Suppose a client sends a COMPOUND procedure containing the series <lb/>SEQUENCE, PUTFH, SECINFO_NONAME, READ, and suppose the security tuple <lb/>used does not match that required for the target file. By rule (see <lb/>Section 2.6.3.1.1.5), neither PUTFH nor SECINFO_NO_NAME can return <lb/>NFS4ERR_WRONGSEC. By rule (see Section 2.6.3.1.1.7), READ cannot <lb/>return NFS4ERR_WRONGSEC. The issue is resolved by the fact that <lb/>SECINFO and SECINFO_NO_NAME consume the current filehandle (note that <lb/>this is a change from NFSv4.0). This leaves no current filehandle <lb/>for READ to use, and READ returns NFS4ERR_NOFILEHANDLE. <lb/>2.6.3.1.2. LINK and RENAME <lb/>The LINK and RENAME operations use both the current and saved <lb/>filehandles. Technically, the server MAY return NFS4ERR_WRONGSEC <lb/>from LINK or RENAME if the security policy of the saved filehandle <lb/>rejects the security flavor used in the COMPOUND request's <lb/>credentials. If the server does so, then if there is no intersection <lb/>between the security policies of saved and current filehandles, this <lb/>means that it will be impossible for the client to perform the <lb/>intended LINK or RENAME operation. <lb/>For example, suppose the client sends this COMPOUND request: <lb/>SEQUENCE, PUTFH bFH, SAVEFH, PUTFH aFH, RENAME "c" "d", where <lb/>filehandles bFH and aFH refer to different directories. Suppose no <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 33] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>common security tuple exists between the security policies of aFH and <lb/>bFH. If the client sends the request using credentials acceptable to <lb/>bFH's security policy but not aFH's policy, then the PUTFH aFH <lb/>operation will fail with NFS4ERR_WRONGSEC. After a SECINFO_NO_NAME <lb/>request, the client sends SEQUENCE, PUTFH bFH, SAVEFH, PUTFH aFH, <lb/>RENAME "c" "d", using credentials acceptable to aFH's security policy <lb/>but not bFH's policy. The server returns NFS4ERR_WRONGSEC on the <lb/>RENAME operation. <lb/>To prevent a client from an endless sequence of a request containing <lb/>LINK or RENAME, followed by a request containing SECINFO_NO_NAME or <lb/>SECINFO, the server MUST detect when the security policies of the <lb/>current and saved filehandles have no mutually acceptable security <lb/>tuple, and MUST NOT return NFS4ERR_WRONGSEC from LINK or RENAME in <lb/>that situation. Instead the server MUST do one of two things: <lb/>o The server can return NFS4ERR_XDEV. <lb/>o The server can allow the security policy of the current filehandle <lb/>to override that of the saved filehandle, and so return NFS4_OK. <lb/>2.7. Minor Versioning <lb/>To address the requirement of an NFS protocol that can evolve as the <lb/>need arises, the NFSv4.1 protocol contains the rules and framework to <lb/>allow for future minor changes or versioning. <lb/></body> + + <body>The base assumption with respect to minor versioning is that any <lb/>future accepted minor version will be documented in one or more <lb/>Standards Track RFCs. Minor version 0 of the NFSv4 protocol is <lb/>represented by [33], and minor version 1 is represented by this RFC. <lb/>The COMPOUND and CB_COMPOUND procedures support the encoding of the <lb/>minor version being requested by the client. <lb/>The following items represent the basic rules for the development of <lb/>minor versions. Note that a future minor version may modify or add <lb/>to the following rules as part of the minor version definition. <lb/>1. <lb/>Procedures are not added or deleted. <lb/>To maintain the general RPC model, NFSv4 minor versions will not <lb/>add to or delete procedures from the NFS program. <lb/>2. <lb/>Minor versions may add operations to the COMPOUND and <lb/>CB_COMPOUND procedures. <lb/>The addition of operations to the COMPOUND and CB_COMPOUND <lb/>procedures does not affect the RPC model. <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 34] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>* Minor versions may append attributes to the bitmap4 that <lb/>represents sets of attributes and to the fattr4 that <lb/>represents sets of attribute values. <lb/>This allows for the expansion of the attribute model to allow <lb/>for future growth or adaptation. <lb/>* Minor version X must append any new attributes after the last <lb/>documented attribute. <lb/>Since attribute results are specified as an opaque array of <lb/>per-attribute, XDR-encoded results, the complexity of adding <lb/>new attributes in the midst of the current definitions would <lb/>be too burdensome. <lb/>3. <lb/>Minor versions must not modify the structure of an existing <lb/>operation's arguments or results. <lb/>Again, the complexity of handling multiple structure definitions <lb/>for a single operation is too burdensome. New operations should <lb/>be added instead of modifying existing structures for a minor <lb/>version. <lb/>This rule does not preclude the following adaptations in a minor <lb/>version: <lb/>* adding bits to flag fields, such as new attributes to <lb/>GETATTR's bitmap4 data type, and providing corresponding <lb/>variants of opaque arrays, such as a notify4 used together <lb/>with such bitmaps <lb/>* adding bits to existing attributes like ACLs that have flag <lb/>words <lb/>* extending enumerated types (including NFS4ERR_*) with new <lb/>values <lb/>* adding cases to a switched union <lb/>4. <lb/>Minor versions must not modify the structure of existing <lb/>attributes. <lb/>5. <lb/>Minor versions must not delete operations. <lb/>This prevents the potential reuse of a particular operation <lb/>"slot" in a future minor version. <lb/>6. <lb/>Minor versions must not delete attributes. <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 35] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>7. <lb/>Minor versions must not delete flag bits or enumeration values. <lb/>8. <lb/>Minor versions may declare an operation MUST NOT be implemented. <lb/>Specifying that an operation MUST NOT be implemented is <lb/>equivalent to obsoleting an operation. For the client, it means <lb/>that the operation MUST NOT be sent to the server. For the <lb/>server, an NFS error can be returned as opposed to "dropping" <lb/>the request as an XDR decode error. This approach allows for <lb/>the obsolescence of an operation while maintaining its structure <lb/>so that a future minor version can reintroduce the operation. <lb/>1. Minor versions may declare that an attribute MUST NOT be <lb/>implemented. <lb/>2. Minor versions may declare that a flag bit or enumeration <lb/>value MUST NOT be implemented. <lb/>9. <lb/>Minor versions may downgrade features from REQUIRED to <lb/>RECOMMENDED, or RECOMMENDED to OPTIONAL. <lb/>10. Minor versions may upgrade features from OPTIONAL to <lb/>RECOMMENDED, or RECOMMENDED to REQUIRED. <lb/>11. A client and server that support minor version X SHOULD support <lb/>minor versions zero through X-1 as well. <lb/>12. Except for infrastructural changes, a minor version must not <lb/>introduce REQUIRED new features. <lb/>This rule allows for the introduction of new functionality and <lb/>forces the use of implementation experience before designating a <lb/>feature as REQUIRED. On the other hand, some classes of <lb/>features are infrastructural and have broad effects. Allowing <lb/>infrastructural features to be RECOMMENDED or OPTIONAL <lb/>complicates implementation of the minor version. <lb/>13. A client MUST NOT attempt to use a stateid, filehandle, or <lb/>similar returned object from the COMPOUND procedure with minor <lb/>version X for another COMPOUND procedure with minor version Y, <lb/>where X != Y. <lb/>2.8. Non-RPC-Based Security Services <lb/>As described in Section 2.2.1.1.1.1, NFSv4.1 relies on RPC for <lb/>identification, authentication, integrity, and privacy. NFSv4.1 <lb/>itself provides or enables additional security services as described <lb/>in the next several subsections. <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 36] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>2.8.1. Authorization <lb/>Authorization to access a file object via an NFSv4.1 operation is <lb/>ultimately determined by the NFSv4.1 server. A client can <lb/>predetermine its access to a file object via the OPEN (Section 18.16) <lb/>and the ACCESS (Section 18.1) operations. <lb/>Principals with appropriate access rights can modify the <lb/>authorization on a file object via the SETATTR (Section 18.30) <lb/>operation. Attributes that affect access rights include mode, owner, <lb/>owner_group, acl, dacl, and sacl. See Section 5. <lb/>2.8.2. Auditing <lb/>NFSv4.1 provides auditing on a per-file object basis, via the acl and <lb/>sacl attributes as described in Section 6. It is outside the scope <lb/>of this specification to specify audit log formats or management <lb/>policies. <lb/>2.8.3. Intrusion Detection <lb/>NFSv4.1 provides alarm control on a per-file object basis, via the <lb/>acl and sacl attributes as described in Section 6. Alarms may serve <lb/>as the basis for intrusion detection. It is outside the scope of <lb/>this specification to specify heuristics for detecting intrusion via <lb/>alarms. <lb/>2.9. Transport Layers <lb/>2.9.1. REQUIRED and RECOMMENDED Properties of Transports <lb/>NFSv4.1 works over Remote Direct Memory Access (RDMA) and non-RDMA-<lb/>based transports with the following attributes: <lb/>o The transport supports reliable delivery of data, which NFSv4.1 <lb/>requires but neither NFSv4.1 nor RPC has facilities for ensuring <lb/>[37]. <lb/>o The transport delivers data in the order it was sent. Ordered <lb/>delivery simplifies detection of transmit errors, and simplifies <lb/>the sending of arbitrary sized requests and responses via the <lb/>record marking protocol [3]. <lb/>Where an NFSv4.1 implementation supports operation over the IP <lb/>network protocol, any transport used between NFS and IP MUST be among <lb/>the IETF-approved congestion control transport protocols. At the <lb/>time this document was written, the only two transports that had the <lb/>above attributes were TCP and the Stream Control Transmission <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 37] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>Protocol (SCTP). To enhance the possibilities for interoperability, <lb/>an NFSv4.1 implementation MUST support operation over the TCP <lb/>transport protocol. <lb/>Even if NFSv4.1 is used over a non-IP network protocol, it is <lb/>RECOMMENDED that the transport support congestion control. <lb/>It is permissible for a connectionless transport to be used under <lb/>NFSv4.1; however, reliable and in-order delivery of data combined <lb/>with congestion control by the connectionless transport is REQUIRED. <lb/>As a consequence, UDP by itself MUST NOT be used as an NFSv4.1 <lb/>transport. NFSv4.1 assumes that a client transport address and <lb/>server transport address used to send data over a transport together <lb/>constitute a connection, even if the underlying transport eschews the <lb/>concept of a connection. <lb/>2.9.2. Client and Server Transport Behavior <lb/>If a connection-oriented transport (e.g., TCP) is used, the client <lb/>and server SHOULD use long-lived connections for at least three <lb/>reasons: <lb/>1. This will prevent the weakening of the transport's congestion <lb/>control mechanisms via short-lived connections. <lb/>2. This will improve performance for the WAN environment by <lb/>eliminating the need for connection setup handshakes. <lb/>3. The NFSv4.1 callback model differs from NFSv4.0, and requires the <lb/>client and server to maintain a client-created backchannel (see <lb/>Section 2.10.3.1) for the server to use. <lb/>In order to reduce congestion, if a connection-oriented transport is <lb/>used, and the request is not the NULL procedure: <lb/>o A requester MUST NOT retry a request unless the connection the <lb/>request was sent over was lost before the reply was received. <lb/>o A replier MUST NOT silently drop a request, even if the request is <lb/>a retry. (The silent drop behavior of RPCSEC_GSS [4] does not <lb/>apply because this behavior happens at the RPCSEC_GSS layer, a <lb/>lower layer in the request processing.) Instead, the replier <lb/>SHOULD return an appropriate error (see Section 2.10.6.1), or it <lb/>MAY disconnect the connection. <lb/>When sending a reply, the replier MUST send the reply to the same <lb/>full network address (e.g., if using an IP-based transport, the <lb/>source port of the requester is part of the full network address) <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 38] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>from which the requester sent the request. If using a connection-<lb/>oriented transport, replies MUST be sent on the same connection from <lb/>which the request was received. <lb/>If a connection is dropped after the replier receives the request but <lb/>before the replier sends the reply, the replier might have a pending <lb/>reply. If a connection is established with the same source and <lb/>destination full network address as the dropped connection, then the <lb/>replier MUST NOT send the reply until the requester retries the <lb/>request. The reason for this prohibition is that the requester MAY <lb/>retry a request over a different connection (provided that connection <lb/>is associated with the original request's session). <lb/>When using RDMA transports, there are other reasons for not <lb/>tolerating retries over the same connection: <lb/>o RDMA transports use "credits" to enforce flow control, where a <lb/>credit is a right to a peer to transmit a message. If one peer <lb/>were to retransmit a request (or reply), it would consume an <lb/>additional credit. If the replier retransmitted a reply, it would <lb/>certainly result in an RDMA connection loss, since the requester <lb/>would typically only post a single receive buffer for each <lb/>request. If the requester retransmitted a request, the additional <lb/>credit consumed on the server might lead to RDMA connection <lb/>failure unless the client accounted for it and decreased its <lb/>available credit, leading to wasted resources. <lb/>o RDMA credits present a new issue to the reply cache in NFSv4.1. <lb/>The reply cache may be used when a connection within a session is <lb/>lost, such as after the client reconnects. Credit information is <lb/>a dynamic property of the RDMA connection, and stale values must <lb/>not be replayed from the cache. This implies that the reply cache <lb/>contents must not be blindly used when replies are sent from it, <lb/>and credit information appropriate to the channel must be <lb/>refreshed by the RPC layer. <lb/>In addition, as described in Section 2.10.6.2, while a session is <lb/>active, the NFSv4.1 requester MUST NOT stop waiting for a reply. <lb/>2.9.3. Ports <lb/>Historically, NFSv3 servers have listened over TCP port 2049. The <lb/>registered port 2049 [38] for the NFS protocol should be the default <lb/>configuration. NFSv4.1 clients SHOULD NOT use the RPC binding <lb/>protocols as described in [39]. <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 39] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>2.10. Session <lb/>NFSv4.1 clients and servers MUST support and MUST use the session <lb/>feature as described in this section. <lb/>2.10.1. Motivation and Overview <lb/>Previous versions and minor versions of NFS have suffered from the <lb/>following: <lb/>o Lack of support for Exactly Once Semantics (EOS). This includes <lb/>lack of support for EOS through server failure and recovery. <lb/>o Limited callback support, including no support for sending <lb/>callbacks through firewalls, and races between replies to normal <lb/>requests and callbacks. <lb/>o Limited trunking over multiple network paths. <lb/>o Requiring machine credentials for fully secure operation. <lb/>Through the introduction of a session, NFSv4.1 addresses the above <lb/>shortfalls with practical solutions: <lb/>o EOS is enabled by a reply cache with a bounded size, making it <lb/>feasible to keep the cache in persistent storage and enable EOS <lb/>through server failure and recovery. One reason that previous <lb/>revisions of NFS did not support EOS was because some EOS <lb/>approaches often limited parallelism. As will be explained in <lb/>Section 2.10.6, NFSv4.1 supports both EOS and unlimited <lb/>parallelism. <lb/>o The NFSv4.1 client (defined in Section 1.7, Paragraph 2) creates <lb/>transport connections and provides them to the server to use for <lb/>sending callback requests, thus solving the firewall issue <lb/>(Section 18.34). Races between responses from client requests and <lb/>callbacks caused by the requests are detected via the session's <lb/>sequencing properties that are a consequence of EOS <lb/>(Section 2.10.6.3). <lb/>o The NFSv4.1 client can associate an arbitrary number of <lb/>connections with the session, and thus provide trunking <lb/>(Section 2.10.5). <lb/>o The NFSv4.1 client and server produces a session key independent <lb/>of client and server machine credentials which can be used to <lb/>compute a digest for protecting critical session management <lb/>operations (Section 2.10.8.3). <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 40] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>o The NFSv4.1 client can also create secure RPCSEC_GSS contexts for <lb/>use by the session's backchannel that do not require the server to <lb/>authenticate to a client machine principal (Section 2.10.8.2). <lb/>A session is a dynamically created, long-lived server object created <lb/>by a client and used over time from one or more transport <lb/>connections. Its function is to maintain the server's state relative <lb/>to the connection(s) belonging to a client instance. This state is <lb/>entirely independent of the connection itself, and indeed the state <lb/>exists whether or not the connection exists. A client may have one <lb/>or more sessions associated with it so that client-associated state <lb/>may be accessed using any of the sessions associated with that <lb/>client's client ID, when connections are associated with those <lb/>sessions. When no connections are associated with any of a client <lb/>ID's sessions for an extended time, such objects as locks, opens, <lb/>delegations, layouts, etc. are subject to expiration. The session <lb/>serves as an object representing a means of access by a client to the <lb/>associated client state on the server, independent of the physical <lb/>means of access to that state. <lb/>A single client may create multiple sessions. A single session MUST <lb/>NOT serve multiple clients. <lb/>2.10.2. NFSv4 Integration <lb/>Sessions are part of NFSv4.1 and not NFSv4.0. Normally, a major <lb/>infrastructure change such as sessions would require a new major <lb/>version number to an Open Network Computing (ONC) RPC program like <lb/>NFS. However, because NFSv4 encapsulates its functionality in a <lb/>single procedure, COMPOUND, and because COMPOUND can support an <lb/>arbitrary number of operations, sessions have been added to NFSv4.1 <lb/>with little difficulty. COMPOUND includes a minor version number <lb/>field, and for NFSv4.1 this minor version is set to 1. When the <lb/>NFSv4 server processes a COMPOUND with the minor version set to 1, it <lb/>expects a different set of operations than it does for NFSv4.0. <lb/>NFSv4.1 defines the SEQUENCE operation, which is required for every <lb/>COMPOUND that operates over an established session, with the <lb/>exception of some session administration operations, such as <lb/>DESTROY_SESSION (Section 18.37). <lb/>2.10.2.1. SEQUENCE and CB_SEQUENCE <lb/>In NFSv4.1, when the SEQUENCE operation is present, it MUST be the <lb/>first operation in the COMPOUND procedure. The primary purpose of <lb/>SEQUENCE is to carry the session identifier. The session identifier <lb/>associates all other operations in the COMPOUND procedure with a <lb/>particular session. SEQUENCE also contains required information for <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 41] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>maintaining EOS (see Section 2.10.6). Session-enabled NFSv4.1 <lb/>COMPOUND requests thus have the form: <lb/>+-----+--------------+-----------+------------+-----------+----<lb/>| tag | minorversion | numops <lb/>|SEQUENCE op | op + args | ... <lb/>| <lb/>| <lb/>(== 1) <lb/>| (limited) | + args <lb/>| <lb/>| <lb/>+-----+--------------+-----------+------------+-----------+----<lb/>and the replies have the form: <lb/>+------------+-----+--------+-------------------------------+--// <lb/>|last status | tag | numres |status + SEQUENCE op + results | // <lb/>+------------+-----+--------+-------------------------------+--// <lb/>//-----------------------+----<lb/>// status + op + results | ... <lb/>//-----------------------+----<lb/>A CB_COMPOUND procedure request and reply has a similar form to <lb/>COMPOUND, but instead of a SEQUENCE operation, there is a CB_SEQUENCE <lb/>operation. CB_COMPOUND also has an additional field called <lb/>"callback_ident", which is superfluous in NFSv4.1 and MUST be ignored <lb/>by the client. CB_SEQUENCE has the same information as SEQUENCE, and <lb/>also includes other information needed to resolve callback races <lb/>(Section 2.10.6.3). <lb/>2.10.2.2. Client ID and Session Association <lb/>Each client ID (Section 2.4) can have zero or more active sessions. <lb/>A client ID and associated session are required to perform file <lb/>access in NFSv4.1. Each time a session is used (whether by a client <lb/>sending a request to the server or the client replying to a callback <lb/>request from the server), the state leased to its associated client <lb/>ID is automatically renewed. <lb/>State (which can consist of share reservations, locks, delegations, <lb/>and layouts (Section 1.8.4)) is tied to the client ID. Client state <lb/>is not tied to any individual session. Successive state changing <lb/>operations from a given state owner MAY go over different sessions, <lb/>provided the session is associated with the same client ID. A <lb/>callback MAY arrive over a different session than that of the request <lb/>that originally acquired the state pertaining to the callback. For <lb/>example, if session A is used to acquire a delegation, a request to <lb/>recall the delegation MAY arrive over session B if both sessions are <lb/>associated with the same client ID. Sections 2.10.8.1 and 2.10.8.2 <lb/>discuss the security considerations around callbacks. <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 42] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>2.10.3. Channels <lb/>A channel is not a connection. A channel represents the direction <lb/>ONC RPC requests are sent. <lb/>Each session has one or two channels: the fore channel and the <lb/>backchannel. Because there are at most two channels per session, and <lb/>because each channel has a distinct purpose, channels are not <lb/>assigned identifiers. <lb/>The fore channel is used for ordinary requests from the client to the <lb/>server, and carries COMPOUND requests and responses. A session <lb/>always has a fore channel. <lb/>The backchannel is used for callback requests from server to client, <lb/>and carries CB_COMPOUND requests and responses. Whether or not there <lb/>is a backchannel is a decision made by the client; however, many <lb/>features of NFSv4.1 require a backchannel. NFSv4.1 servers MUST <lb/>support backchannels. <lb/>Each session has resources for each channel, including separate reply <lb/>caches (see Section 2.10.6.1). Note that even the backchannel <lb/>requires a reply cache (or, at least, a slot table in order to detect <lb/>retries) because some callback operations are nonidempotent. <lb/>2.10.3.1. Association of Connections, Channels, and Sessions <lb/>Each channel is associated with zero or more transport connections <lb/>(whether of the same transport protocol or different transport <lb/>protocols). A connection can be associated with one channel or both <lb/>channels of a session; the client and server negotiate whether a <lb/>connection will carry traffic for one channel or both channels via <lb/>the CREATE_SESSION (Section 18.36) and the BIND_CONN_TO_SESSION <lb/>(Section 18.34) operations. When a session is created via <lb/>CREATE_SESSION, the connection that transported the CREATE_SESSION <lb/>request is automatically associated with the fore channel, and <lb/>optionally the backchannel. If the client specifies no state <lb/>protection (Section 18.35) when the session is created, then when <lb/>SEQUENCE is transmitted on a different connection, the connection is <lb/>automatically associated with the fore channel of the session <lb/>specified in the SEQUENCE operation. <lb/>A connection's association with a session is not exclusive. A <lb/>connection associated with the channel(s) of one session may be <lb/>simultaneously associated with the channel(s) of other sessions <lb/>including sessions associated with other client IDs. <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 43] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>It is permissible for connections of multiple transport types to be <lb/>associated with the same channel. For example, both TCP and RDMA <lb/>connections can be associated with the fore channel. In the event an <lb/>RDMA and non-RDMA connection are associated with the same channel, <lb/>the maximum number of slots SHOULD be at least one more than the <lb/>total number of RDMA credits (Section 2.10.6.1). This way, if all <lb/>RDMA credits are used, the non-RDMA connection can have at least one <lb/>outstanding request. If a server supports multiple transport types, <lb/>it MUST allow a client to associate connections from each transport <lb/>to a channel. <lb/>It is permissible for a connection of one type of transport to be <lb/>associated with the fore channel, and a connection of a different <lb/>type to be associated with the backchannel. <lb/>2.10.4. Server Scope <lb/>Servers each specify a server scope value in the form of an opaque <lb/>string eir_server_scope returned as part of the results of an <lb/>EXCHANGE_ID operation. The purpose of the server scope is to allow a <lb/>group of servers to indicate to clients that a set of servers sharing <lb/>the same server scope value has arranged to use compatible values of <lb/>otherwise opaque identifiers. Thus, the identifiers generated by two <lb/>servers within that set can be assumed compatible so that, in some <lb/>cases, identifiers generated by one server in that set may be <lb/>presented to another server of the same scope. <lb/>The use of such compatible values does not imply that a value <lb/>generated by one server will always be accepted by another. In most <lb/>cases, it will not. However, a server will not accept a value <lb/>generated by another inadvertently. When it does accept it, it will <lb/>be because it is recognized as valid and carrying the same meaning as <lb/>on another server of the same scope. <lb/>When servers are of the same server scope, this compatibility of <lb/>values applies to the following identifiers: <lb/>o Filehandle values. A filehandle value accepted by two servers of <lb/>the same server scope denotes the same object. A WRITE operation <lb/>sent to one server is reflected immediately in a READ sent to the <lb/>other. <lb/>o Server owner values. When the server scope values are the same, <lb/>server owner value may be validly compared. In cases where the <lb/>server scope values are different, server owner values are treated <lb/>as different even if they contain identical strings of bytes. <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 44] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>The coordination among servers required to provide such compatibility <lb/>can be quite minimal, and limited to a simple partition of the ID <lb/>space. The recognition of common values requires additional <lb/>implementation, but this can be tailored to the specific situations <lb/>in which that recognition is desired. <lb/>Clients will have occasion to compare the server scope values of <lb/>multiple servers under a number of circumstances, each of which will <lb/>be discussed under the appropriate functional section: <lb/>o When server owner values received in response to EXCHANGE_ID <lb/>operations sent to multiple network addresses are compared for the <lb/>purpose of determining the validity of various forms of trunking, <lb/>as described in Section 11.5.2. . <lb/>o When network or server reconfiguration causes the same network <lb/>address to possibly be directed to different servers, with the <lb/>necessity for the client to determine when lock reclaim should be <lb/>attempted, as described in Section 8.4.2.1. <lb/>When two replies from EXCHANGE_ID, each from two different server <lb/>network addresses, have the same server scope, there are a number of <lb/>ways a client can validate that the common server scope is due to two <lb/>servers cooperating in a group. <lb/>o If both EXCHANGE_ID requests were sent with RPCSEC_GSS ([4], [9], <lb/>[27]) authentication and the server principal is the same for both <lb/>targets, the equality of server scope is validated. It is <lb/>RECOMMENDED that two servers intending to share the same server <lb/>scope and server_owner major_id also share the same principal <lb/>name. In some cases, this simplifies the client's task of <lb/>validating server scope. <lb/>o The client may accept the appearance of the second server in the <lb/>fs_locations or fs_locations_info attribute for a relevant file <lb/>system. For example, if there is a migration event for a <lb/>particular file system or there are locks to be reclaimed on a <lb/>particular file system, the attributes for that particular file <lb/>system may be used. The client sends the GETATTR request to the <lb/>first server for the fs_locations or fs_locations_info attribute <lb/>with RPCSEC_GSS authentication. It may need to do this in advance <lb/>of the need to verify the common server scope. If the client <lb/>successfully authenticates the reply to GETATTR, and the GETATTR <lb/>request and reply containing the fs_locations or fs_locations_info <lb/>attribute refers to the second server, then the equality of server <lb/>scope is supported. A client may choose to limit the use of this <lb/>form of support to information relevant to the specific file <lb/>system involved (e.g. a file system being migrated). <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 45] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>2.10.5. Trunking <lb/>Trunking is the use of multiple connections between a client and <lb/>server in order to increase the speed of data transfer. NFSv4.1 <lb/>supports two types of trunking: session trunking and client ID <lb/>trunking. <lb/>In the context of a single server network address, it can be assumed <lb/>that all connections are accessing the same server and NFSv4.1 <lb/>servers MUST support both forms of trunking. When multiple <lb/>connections use a set of network addresses accessing the same server, <lb/>the server MUST support both forms of trunking. NFSv4.1 servers in a <lb/>clustered configuration MAY allow network addresses for different <lb/>servers to use client ID trunking. <lb/>Clients may use either form of trunking as long as they do not, when <lb/>trunking between different server network addresses, violate the <lb/>servers' mandates as to the kinds of trunking to be allowed (see <lb/>below). With regard to callback channels, the client MUST allow the <lb/>server to choose among all callback channels valid for a given client <lb/>ID and MUST support trunking when the connections supporting the <lb/>backchannel allow session or client ID trunking to be used for <lb/>callbacks. <lb/>Session trunking is essentially the association of multiple <lb/>connections, each with potentially different target and/or source <lb/>network addresses, to the same session. When the target network <lb/>addresses (server addresses) of the two connections are the same, the <lb/>server MUST support such session trunking. When the target network <lb/>addresses are different, the server MAY indicate such support using <lb/>the data returned by the EXCHANGE_ID operation (see below). <lb/>Client ID trunking is the association of multiple sessions to the <lb/>same client ID. Servers MUST support client ID trunking for two <lb/>target network addresses whenever they allow session trunking for <lb/>those same two network addresses. In addition, a server MAY, by <lb/>presenting the same major server owner ID (Section 2.5) and server <lb/>scope (Section 2.10.4), allow an additional case of client ID <lb/>trunking. When two servers return the same major server owner and <lb/>server scope, it means that the two servers are cooperating on <lb/>locking state management, which is a prerequisite for client ID <lb/>trunking. <lb/>Distinguishing when the client is allowed to use session and client <lb/>ID trunking requires understanding how the results of the EXCHANGE_ID <lb/>(Section 18.35) operation identify a server. Suppose a client sends <lb/>EXCHANGE_IDs over two different connections, each with a possibly <lb/>different target network address, but each EXCHANGE_ID operation has <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 46] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>the same value in the eia_clientowner field. If the same NFSv4.1 <lb/>server is listening over each connection, then each EXCHANGE_ID <lb/>result MUST return the same values of eir_clientid, <lb/>eir_server_owner.so_major_id, and eir_server_scope. The client can <lb/>then treat each connection as referring to the same server (subject <lb/>to verification; see Section 2.10.5.1 below), and it can use each <lb/>connection to trunk requests and replies. The client's choice is <lb/>whether session trunking or client ID trunking applies. <lb/>Session Trunking. If the eia_clientowner argument is the same in two <lb/>different EXCHANGE_ID requests, and the eir_clientid, <lb/>eir_server_owner.so_major_id, eir_server_owner.so_minor_id, and <lb/>eir_server_scope results match in both EXCHANGE_ID results, then <lb/>the client is permitted to perform session trunking. If the <lb/>client has no session mapping to the tuple of eir_clientid, <lb/>eir_server_owner.so_major_id, eir_server_scope, and <lb/>eir_server_owner.so_minor_id, then it creates the session via a <lb/>CREATE_SESSION operation over one of the connections, which <lb/>associates the connection to the session. If there is a session <lb/>for the tuple, the client can send BIND_CONN_TO_SESSION to <lb/>associate the connection to the session. <lb/>Of course, if the client does not desire to use session trunking, <lb/>it is not required to do so. It can invoke CREATE_SESSION on the <lb/>connection. This will result in client ID trunking as described <lb/>below. It can also decide to drop the connection if it does not <lb/>choose to use trunking. <lb/>Client ID Trunking. If the eia_clientowner argument is the same in <lb/>two different EXCHANGE_ID requests, and the eir_clientid, <lb/>eir_server_owner.so_major_id, and eir_server_scope results match <lb/>in both EXCHANGE_ID results, then the client is permitted to <lb/>perform client ID trunking (regardless of whether the <lb/>eir_server_owner.so_minor_id results match). The client can <lb/>associate each connection with different sessions, where each <lb/>session is associated with the same server. <lb/>The client completes the act of client ID trunking by invoking <lb/>CREATE_SESSION on each connection, using the same client ID that <lb/>was returned in eir_clientid. These invocations create two <lb/>sessions and also associate each connection with its respective <lb/>session. The client is free to decline to use client ID trunking <lb/>by simply dropping the connection at this point. <lb/>When doing client ID trunking, locking state is shared across <lb/>sessions associated with that same client ID. This requires the <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 47] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>server to coordinate state across sessions and the client to be <lb/>able to associate the same locking state with multiple sessions. <lb/>It is always possible that, as a result of various sorts of <lb/>reconfiguration events, eir_server_scope and eir_server_owner values <lb/>may be different on subsequent EXCHANGE_ID requests made to the same <lb/>network address. <lb/>In most cases such reconfiguration events will be disruptive and <lb/>indicate that an IP address formerly connected to one server is now <lb/>connected to an entirely different one. <lb/>Some guidelines on client handling of such situations follow: <lb/>o When eir_server_scope changes, the client has no assurance that <lb/>any id's it obtained previously (e.g. file handles, state ids, <lb/>client ids) can be validly used on the new server, and, even if <lb/>the new server accepts them, there is no assurance that this is <lb/>not due to accident. Thus, it is best to treat all such state as <lb/>lost/stale although a client may assume that the probability of <lb/>inadvertent acceptance is low and treat this situation as within <lb/>the next case. <lb/>o When eir_server_scope remains the same and <lb/>eir_server_owner.so_major_id changes, the client can use the <lb/>filehandles it has, consider its locking state lost, and attempt <lb/>to reclaim or otherwise re-obtain its locks. It may find that its <lb/>file handle IS now stale but if NFS4ERR_STALE is not received, it <lb/>can proceed to reclaim or otherwise re-obtain its open locking <lb/>state. <lb/>o When eir_server_scope and eir_server_owner.so_major_id remain the <lb/>same, the client has to use the now-current values of <lb/>eir_server_owner.so_minor_id in deciding on appropriate forms of <lb/>trunking. This may result in connections being dropped or new <lb/>sessions being created. <lb/>2.10.5.1. Verifying Claims of Matching Server Identity <lb/>When the server responds using two different connections claim <lb/>matching or partially matching eir_server_owner, eir_server_scope, <lb/>and eir_clientid values, the client does not have to trust the <lb/>servers' claims. The client may verify these claims before trunking <lb/>traffic in the following ways: <lb/>o For session trunking, clients SHOULD reliably verify if <lb/>connections between different network paths are in fact associated <lb/>with the same NFSv4.1 server and usable on the same session, and <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 48] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>servers MUST allow clients to perform reliable verification. When <lb/>a client ID is created, the client SHOULD specify that <lb/>BIND_CONN_TO_SESSION is to be verified according to the SP4_SSV or <lb/>SP4_MACH_CRED (Section 18.35) state protection options. For <lb/>SP4_SSV, reliable verification depends on a shared secret (the <lb/>SSV) that is established via the SET_SSV (see Section 18.47) <lb/>operation. <lb/>When a new connection is associated with the session (via the <lb/>BIND_CONN_TO_SESSION operation, see Section 18.34), if the client <lb/>specified SP4_SSV state protection for the BIND_CONN_TO_SESSION <lb/>operation, the client MUST send the BIND_CONN_TO_SESSION with <lb/>RPCSEC_GSS protection, using integrity or privacy, and an <lb/>RPCSEC_GSS handle created with the GSS SSV mechanism (see <lb/>Section 2.10.9). <lb/>If the client mistakenly tries to associate a connection to a <lb/>session of a wrong server, the server will either reject the <lb/>attempt because it is not aware of the session identifier of the <lb/>BIND_CONN_TO_SESSION arguments, or it will reject the attempt <lb/>because the RPCSEC_GSS authentication fails. Even if the server <lb/>mistakenly or maliciously accepts the connection association <lb/>attempt, the RPCSEC_GSS verifier it computes in the response will <lb/>not be verified by the client, so the client will know it cannot <lb/>use the connection for trunking the specified session. <lb/>If the client specified SP4_MACH_CRED state protection, the <lb/>BIND_CONN_TO_SESSION operation will use RPCSEC_GSS integrity or <lb/>privacy, using the same credential that was used when the client <lb/>ID was created. Mutual authentication via RPCSEC_GSS assures the <lb/>client that the connection is associated with the correct session <lb/>of the correct server. <lb/>o For client ID trunking, the client has at least two options for <lb/>verifying that the same client ID obtained from two different <lb/>EXCHANGE_ID operations came from the same server. The first <lb/>option is to use RPCSEC_GSS authentication when sending each <lb/>EXCHANGE_ID operation. Each time an EXCHANGE_ID is sent with <lb/>RPCSEC_GSS authentication, the client notes the principal name of <lb/>the GSS target. If the EXCHANGE_ID results indicate that client <lb/>ID trunking is possible, and the GSS targets' principal names are <lb/>the same, the servers are the same and client ID trunking is <lb/>allowed. <lb/>The second option for verification is to use SP4_SSV protection. <lb/>When the client sends EXCHANGE_ID, it specifies SP4_SSV <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 49] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>protection. The first EXCHANGE_ID the client sends always has to <lb/>be confirmed by a CREATE_SESSION call. The client then sends <lb/>SET_SSV. Later, the client sends EXCHANGE_ID to a second <lb/>destination network address different from the one the first <lb/>EXCHANGE_ID was sent to. The client checks that each EXCHANGE_ID <lb/>reply has the same eir_clientid, eir_server_owner.so_major_id, and <lb/>eir_server_scope. If so, the client verifies the claim by sending <lb/>a CREATE_SESSION operation to the second destination address, <lb/>protected with RPCSEC_GSS integrity using an RPCSEC_GSS handle <lb/>returned by the second EXCHANGE_ID. If the server accepts the <lb/>CREATE_SESSION request, and if the client verifies the RPCSEC_GSS <lb/>verifier and integrity codes, then the client has proof the second <lb/>server knows the SSV, and thus the two servers are cooperating for <lb/>the purposes of specifying server scope and client ID trunking. <lb/>2.10.6. Exactly Once Semantics <lb/>Via the session, NFSv4.1 offers exactly once semantics (EOS) for <lb/>requests sent over a channel. EOS is supported on both the fore <lb/>channel and backchannel. <lb/>Each COMPOUND or CB_COMPOUND request that is sent with a leading <lb/>SEQUENCE or CB_SEQUENCE operation MUST be executed by the receiver <lb/>exactly once. This requirement holds regardless of whether the <lb/>request is sent with reply caching specified (see <lb/>Section 2.10.6.1.3). The requirement holds even if the requester is <lb/>sending the request over a session created between a pNFS data client <lb/>and pNFS data server. To understand the rationale for this <lb/>requirement, divide the requests into three classifications: <lb/>o Non-idempotent requests. <lb/>o Idempotent modifying requests. <lb/>o Idempotent non-modifying requests. <lb/>An example of a non-idempotent request is RENAME. Obviously, if a <lb/>replier executes the same RENAME request twice, and the first <lb/>execution succeeds, the re-execution will fail. If the replier <lb/>returns the result from the re-execution, this result is incorrect. <lb/>Therefore, EOS is required for non-idempotent requests. <lb/>An example of an idempotent modifying request is a COMPOUND request <lb/>containing a WRITE operation. Repeated execution of the same WRITE <lb/>has the same effect as execution of that WRITE a single time. <lb/>Nevertheless, enforcing EOS for WRITEs and other idempotent modifying <lb/>requests is necessary to avoid data corruption. <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 50] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>Suppose a client sends WRITE A to a noncompliant server that does not <lb/>enforce EOS, and receives no response, perhaps due to a network <lb/>partition. The client reconnects to the server and re-sends WRITE A. <lb/>Now, the server has outstanding two instances of A. The server can <lb/>be in a situation in which it executes and replies to the retry of A, <lb/>while the first A is still waiting in the server's internal I/O <lb/>system for some resource. Upon receiving the reply to the second <lb/>attempt of WRITE A, the client believes its WRITE is done so it is <lb/>free to send WRITE B, which overlaps the byte-range of A. When the <lb/>original A is dispatched from the server's I/O system and executed <lb/>(thus the second time A will have been written), then what has been <lb/>written by B can be overwritten and thus corrupted. <lb/>An example of an idempotent non-modifying request is a COMPOUND <lb/>containing SEQUENCE, PUTFH, READLINK, and nothing else. The re-<lb/>execution of such a request will not cause data corruption or produce <lb/>an incorrect result. Nonetheless, to keep the implementation simple, <lb/>the replier MUST enforce EOS for all requests, whether or not <lb/>idempotent and non-modifying. <lb/>Note that true and complete EOS is not possible unless the server <lb/>persists the reply cache in stable storage, and unless the server is <lb/>somehow implemented to never require a restart (indeed, if such a <lb/>server exists, the distinction between a reply cache kept in stable <lb/>storage versus one that is not is one without meaning). See <lb/>Section 2.10.6.5 for a discussion of persistence in the reply cache. <lb/>Regardless, even if the server does not persist the reply cache, EOS <lb/>improves robustness and correctness over previous versions of NFS <lb/>because the legacy duplicate request/reply caches were based on the <lb/>ONC RPC transaction identifier (XID). Section 2.10.6.1 explains the <lb/>shortcomings of the XID as a basis for a reply cache and describes <lb/>how NFSv4.1 sessions improve upon the XID. <lb/>2.10.6.1. Slot Identifiers and Reply Cache <lb/>The RPC layer provides a transaction ID (XID), which, while required <lb/>to be unique, is not convenient for tracking requests for two <lb/>reasons. First, the XID is only meaningful to the requester; it <lb/>cannot be interpreted by the replier except to test for equality with <lb/>previously sent requests. When consulting an RPC-based duplicate <lb/>request cache, the opaqueness of the XID requires a computationally <lb/>expensive look up (often via a hash that includes XID and source <lb/>address). NFSv4.1 requests use a non-opaque slot ID, which is an <lb/>index into a slot table, which is far more efficient. Second, <lb/>because RPC requests can be executed by the replier in any order, <lb/>there is no bound on the number of requests that may be outstanding <lb/>at any time. To achieve perfect EOS, using ONC RPC would require <lb/>storing all replies in the reply cache. XIDs are 32 bits; storing <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 51] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>over four billion (2^32) replies in the reply cache is not practical. <lb/>In practice, previous versions of NFS have chosen to store a fixed <lb/>number of replies in the cache, and to use a least recently used <lb/>(LRU) approach to replacing cache entries with new entries when the <lb/>cache is full. In NFSv4.1, the number of outstanding requests is <lb/>bounded by the size of the slot table, and a sequence ID per slot is <lb/>used to tell the replier when it is safe to delete a cached reply. <lb/>In the NFSv4.1 reply cache, when the requester sends a new request, <lb/>it selects a slot ID in the range 0..N, where N is the replier's <lb/>current maximum slot ID granted to the requester on the session over <lb/>which the request is to be sent. The value of N starts out as equal <lb/>to ca_maxrequests -1 (Section 18.36), but can be adjusted by the <lb/>response to SEQUENCE or CB_SEQUENCE as described later in this <lb/>section. The slot ID must be unused by any of the requests that the <lb/>requester has already active on the session. "Unused" here means the <lb/>requester has no outstanding request for that slot ID. <lb/>A slot contains a sequence ID and the cached reply corresponding to <lb/>the request sent with that sequence ID. The sequence ID is a 32-bit <lb/>unsigned value, and is therefore in the range 0..0xFFFFFFFF (2^32 -<lb/>1). The first time a slot is used, the requester MUST specify a <lb/>sequence ID of one (Section 18.36). Each time a slot is reused, the <lb/>request MUST specify a sequence ID that is one greater than that of <lb/>the previous request on the slot. If the previous sequence ID was <lb/>0xFFFFFFFF, then the next request for the slot MUST have the sequence <lb/>ID set to zero (i.e., (2^32 -1) + 1 mod 2^32). <lb/>The sequence ID accompanies the slot ID in each request. It is for <lb/>the critical check at the replier: it used to efficiently determine <lb/>whether a request using a certain slot ID is a retransmit or a new, <lb/>never-before-seen request. It is not feasible for the requester to <lb/>assert that it is retransmitting to implement this, because for any <lb/>given request the requester cannot know whether the replier has seen <lb/>it unless the replier actually replies. Of course, if the requester <lb/>has seen the reply, the requester would not retransmit. <lb/>The replier compares each received request's sequence ID with the <lb/>last one previously received for that slot ID, to see if the new <lb/>request is: <lb/>o A new request, in which the sequence ID is one greater than that <lb/>previously seen in the slot (accounting for sequence wraparound). <lb/>The replier proceeds to execute the new request, and the replier <lb/>MUST increase the slot's sequence ID by one. <lb/>o A retransmitted request, in which the sequence ID is equal to that <lb/>currently recorded in the slot. If the original request has <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 52] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>executed to completion, the replier returns the cached reply. See <lb/>Section 2.10.6.2 for direction on how the replier deals with <lb/>retries of requests that are still in progress. <lb/>o A misordered retry, in which the sequence ID is less than <lb/>(accounting for sequence wraparound) that previously seen in the <lb/>slot. The replier MUST return NFS4ERR_SEQ_MISORDERED (as the <lb/>result from SEQUENCE or CB_SEQUENCE). <lb/>o A misordered new request, in which the sequence ID is two or more <lb/>than (accounting for sequence wraparound) that previously seen in <lb/>the slot. Note that because the sequence ID MUST wrap around to <lb/>zero once it reaches 0xFFFFFFFF, a misordered new request and a <lb/>misordered retry cannot be distinguished. Thus, the replier MUST <lb/>return NFS4ERR_SEQ_MISORDERED (as the result from SEQUENCE or <lb/>CB_SEQUENCE). <lb/>Unlike the XID, the slot ID is always within a specific range; this <lb/>has two implications. The first implication is that for a given <lb/>session, the replier need only cache the results of a limited number <lb/>of COMPOUND requests. The second implication derives from the first, <lb/>which is that unlike XID-indexed reply caches (also known as <lb/>duplicate request caches -DRCs), the slot ID-based reply cache <lb/>cannot be overflowed. Through use of the sequence ID to identify <lb/>retransmitted requests, the replier does not need to actually cache <lb/>the request itself, reducing the storage requirements of the reply <lb/>cache further. These facilities make it practical to maintain all <lb/>the required entries for an effective reply cache. <lb/>The slot ID, sequence ID, and session ID therefore take over the <lb/>traditional role of the XID and source network address in the <lb/>replier's reply cache implementation. This approach is considerably <lb/>more portable and completely robust --it is not subject to the <lb/>reassignment of ports as clients reconnect over IP networks. In <lb/>addition, the RPC XID is not used in the reply cache, enhancing <lb/>robustness of the cache in the face of any rapid reuse of XIDs by the <lb/>requester. While the replier does not care about the XID for the <lb/>purposes of reply cache management (but the replier MUST return the <lb/>same XID that was in the request), nonetheless there are <lb/>considerations for the XID in NFSv4.1 that are the same as all other <lb/>previous versions of NFS. The RPC XID remains in each message and <lb/>needs to be formulated in NFSv4.1 requests as in any other ONC RPC <lb/>request. The reasons include: <lb/>o The RPC layer retains its existing semantics and implementation. <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 53] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>o The requester and replier must be able to interoperate at the RPC <lb/>layer, prior to the NFSv4.1 decoding of the SEQUENCE or <lb/>CB_SEQUENCE operation. <lb/>o If an operation is being used that does not start with SEQUENCE or <lb/>CB_SEQUENCE (e.g., BIND_CONN_TO_SESSION), then the RPC XID is <lb/>needed for correct operation to match the reply to the request. <lb/>o The SEQUENCE or CB_SEQUENCE operation may generate an error. If <lb/>so, the embedded slot ID, sequence ID, and session ID (if present) <lb/>in the request will not be in the reply, and the requester has <lb/>only the XID to match the reply to the request. <lb/>Given that well-formulated XIDs continue to be required, this begs <lb/>the question: why do SEQUENCE and CB_SEQUENCE replies have a session <lb/>ID, slot ID, and sequence ID? Having the session ID in the reply <lb/>means that the requester does not have to use the XID to look up the <lb/>session ID, which would be necessary if the connection were <lb/>associated with multiple sessions. Having the slot ID and sequence <lb/>ID in the reply means that the requester does not have to use the XID <lb/>to look up the slot ID and sequence ID. Furthermore, since the XID <lb/>is only 32 bits, it is too small to guarantee the re-association of a <lb/>reply with its request [40]; having session ID, slot ID, and sequence <lb/>ID in the reply allows the client to validate that the reply in fact <lb/>belongs to the matched request. <lb/>The SEQUENCE (and CB_SEQUENCE) operation also carries a <lb/>"highest_slotid" value, which carries additional requester slot usage <lb/>information. The requester MUST always indicate the slot ID <lb/>representing the outstanding request with the highest-numbered slot <lb/>value. The requester should in all cases provide the most <lb/>conservative value possible, although it can be increased somewhat <lb/>above the actual instantaneous usage to maintain some minimum or <lb/>optimal level. This provides a way for the requester to yield unused <lb/>request slots back to the replier, which in turn can use the <lb/>information to reallocate resources. <lb/>The replier responds with both a new target highest_slotid and an <lb/>enforced highest_slotid, described as follows: <lb/>o The target highest_slotid is an indication to the requester of the <lb/>highest_slotid the replier wishes the requester to be using. This <lb/>permits the replier to withdraw (or add) resources from a <lb/>requester that has been found to not be using them, in order to <lb/>more fairly share resources among a varying level of demand from <lb/>other requesters. The requester must always comply with the <lb/>replier's value updates, since they indicate newly established <lb/>hard limits on the requester's access to session resources. <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 54] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>However, because of request pipelining, the requester may have <lb/>active requests in flight reflecting prior values; therefore, the <lb/>replier must not immediately require the requester to comply. <lb/>o The enforced highest_slotid indicates the highest slot ID the <lb/>requester is permitted to use on a subsequent SEQUENCE or <lb/>CB_SEQUENCE operation. The replier's enforced highest_slotid <lb/>SHOULD be no less than the highest_slotid the requester indicated <lb/>in the SEQUENCE or CB_SEQUENCE arguments. <lb/>A requester can be intransigent with respect to lowering its <lb/>highest_slotid argument to a Sequence operation, i.e. the <lb/>requester continues to ignore the target highest_slotid in the <lb/>response to a Sequence operation, and continues to set its <lb/>highest_slotid argument to be higher than the target <lb/>highest_slotid. This can be considered particularly egregious <lb/>behavior when the replier knows there are no outstanding requests <lb/>with slot IDs higher than its target highest_slotid. When faced <lb/>with such intransigence, the replier is free to take more forceful <lb/>action, and MAY reply with a new enforced highest_slotid that is <lb/>less than its previous enforced highest_slotid. Thereafter, if <lb/>the requester continues to send requests with a highest_slotid <lb/>that is greater than the replier's new enforced highest_slotid, <lb/>the server MAY return NFS4ERR_BAD_HIGH_SLOT, unless the slot ID in <lb/>the request is greater than the new enforced highest_slotid and <lb/>the request is a retry. <lb/>The replier SHOULD retain the slots it wants to retire until the <lb/>requester sends a request with a highest_slotid less than or equal <lb/>to the replier's new enforced highest_slotid. <lb/>The requester can also be intransigent with respect to sending <lb/>non-retry requests that have a slot ID that exceeds the replier's <lb/>highest_slotid. Once the replier has forcibly lowered the <lb/>enforced highest_slotid, the requester is only allowed to send <lb/>retries on slots that exceed the replier's highest_slotid. If a <lb/>request is received with a slot ID that is higher than the new <lb/>enforced highest_slotid, and the sequence ID is one higher than <lb/>what is in the slot's reply cache, then the server can both retire <lb/>the slot and return NFS4ERR_BADSLOT (however, the server MUST NOT <lb/>do one and not the other). The reason it is safe to retire the <lb/>slot is because by using the next sequence ID, the requester is <lb/>indicating it has received the previous reply for the slot. <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 55] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>o The requester SHOULD use the lowest available slot when sending a <lb/>new request. This way, the replier may be able to retire slot <lb/>entries faster. However, where the replier is actively adjusting <lb/>its granted highest_slotid, it will not be able to use only the <lb/>receipt of the slot ID and highest_slotid in the request. Neither <lb/>the slot ID nor the highest_slotid used in a request may reflect <lb/>the replier's current idea of the requester's session limit, <lb/>because the request may have been sent from the requester before <lb/>the update was received. Therefore, in the downward adjustment <lb/>case, the replier may have to retain a number of reply cache <lb/>entries at least as large as the old value of maximum requests <lb/>outstanding, until it can infer that the requester has seen a <lb/>reply containing the new granted highest_slotid. The replier can <lb/>infer that the requester has seen such a reply when it receives a <lb/>new request with the same slot ID as the request replied to and <lb/>the next higher sequence ID. <lb/>2.10.6.1.1. Caching of SEQUENCE and CB_SEQUENCE Replies <lb/>When a SEQUENCE or CB_SEQUENCE operation is successfully executed, <lb/>its reply MUST always be cached. Specifically, session ID, sequence <lb/>ID, and slot ID MUST be cached in the reply cache. The reply from <lb/>SEQUENCE also includes the highest slot ID, target highest slot ID, <lb/>and status flags. Instead of caching these values, the server MAY <lb/>re-compute the values from the current state of the fore channel, <lb/>session, and/or client ID as appropriate. Similarly, the reply from <lb/>CB_SEQUENCE includes a highest slot ID and target highest slot ID. <lb/>The client MAY re-compute the values from the current state of the <lb/>session as appropriate. <lb/>Regardless of whether or not a replier is re-computing highest slot <lb/>ID, target slot ID, and status on replies to retries, the requester <lb/>MUST NOT assume that the values are being re-computed whenever it <lb/>receives a reply after a retry is sent, since it has no way of <lb/>knowing whether the reply it has received was sent by the replier in <lb/>response to the retry or is a delayed response to the original <lb/>request. Therefore, it may be the case that highest slot ID, target <lb/>slot ID, or status bits may reflect the state of affairs when the <lb/>request was first executed. Although acting based on such delayed <lb/>information is valid, it may cause the receiver of the reply to do <lb/>unneeded work. Requesters MAY choose to send additional requests to <lb/>get the current state of affairs or use the state of affairs reported <lb/>by subsequent requests, in preference to acting immediately on data <lb/>that might be out of date. <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 56] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>2.10.6.1.2. Errors from SEQUENCE and CB_SEQUENCE <lb/>Any time SEQUENCE or CB_SEQUENCE returns an error, the sequence ID of <lb/>the slot MUST NOT change. The replier MUST NOT modify the reply <lb/>cache entry for the slot whenever an error is returned from SEQUENCE <lb/>or CB_SEQUENCE. <lb/>2.10.6.1.3. Optional Reply Caching <lb/>On a per-request basis, the requester can choose to direct the <lb/>replier to cache the reply to all operations after the first <lb/>operation (SEQUENCE or CB_SEQUENCE) via the sa_cachethis or <lb/>csa_cachethis fields of the arguments to SEQUENCE or CB_SEQUENCE. <lb/>The reason it would not direct the replier to cache the entire reply <lb/>is that the request is composed of all idempotent operations [37]. <lb/>Caching the reply may offer little benefit. If the reply is too <lb/>large (see Section 2.10.6.4), it may not be cacheable anyway. Even <lb/>if the reply to idempotent request is small enough to cache, <lb/>unnecessarily caching the reply slows down the server and increases <lb/>RPC latency. <lb/>Whether or not the requester requests the reply to be cached has no <lb/>effect on the slot processing. If the results of SEQUENCE or <lb/>CB_SEQUENCE are NFS4_OK, then the slot's sequence ID MUST be <lb/>incremented by one. If a requester does not direct the replier to <lb/>cache the reply, the replier MUST do one of following: <lb/>o The replier can cache the entire original reply. Even though <lb/>sa_cachethis or csa_cachethis is FALSE, the replier is always free <lb/>to cache. It may choose this approach in order to simplify <lb/>implementation. <lb/>o The replier enters into its reply cache a reply consisting of the <lb/>original results to the SEQUENCE or CB_SEQUENCE operation, and <lb/>with the next operation in COMPOUND or CB_COMPOUND having the <lb/>error NFS4ERR_RETRY_UNCACHED_REP. Thus, if the requester later <lb/>retries the request, it will get NFS4ERR_RETRY_UNCACHED_REP. If a <lb/>replier receives a retried Sequence operation where the reply to <lb/>the COMPOUND or CB_COMPOUND was not cached, then the replier, <lb/>* MAY return NFS4ERR_RETRY_UNCACHED_REP in reply to a Sequence <lb/>operation if the Sequence operation is not the first operation <lb/>(granted, a requester that does so is in violation of the <lb/>NFSv4.1 protocol). <lb/>* MUST NOT return NFS4ERR_RETRY_UNCACHED_REP in reply to a <lb/>Sequence operation if the Sequence operation is the first <lb/>operation. <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 57] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>o If the second operation is an illegal operation, or an operation <lb/>that was legal in a previous minor version of NFSv4 and MUST NOT <lb/>be supported in the current minor version (e.g., SETCLIENTID), the <lb/>replier MUST NOT ever return NFS4ERR_RETRY_UNCACHED_REP. Instead <lb/>the replier MUST return NFS4ERR_OP_ILLEGAL or NFS4ERR_BADXDR or <lb/>NFS4ERR_NOTSUPP as appropriate. <lb/>o If the second operation can result in another error status, the <lb/>replier MAY return a status other than NFS4ERR_RETRY_UNCACHED_REP, <lb/>provided the operation is not executed in such a way that the <lb/>state of the replier is changed. Examples of such an error status <lb/>include: NFS4ERR_NOTSUPP returned for an operation that is legal <lb/>but not REQUIRED in the current minor versions, and thus not <lb/>supported by the replier; NFS4ERR_SEQUENCE_POS; and <lb/>NFS4ERR_REQ_TOO_BIG. <lb/>The discussion above assumes that the retried request matches the <lb/>original one. Section 2.10.6.1.3.1 discusses what the replier might <lb/>do, and MUST do when original and retried requests do not match. <lb/>Since the replier may only cache a small amount of the information <lb/>that would be required to determine whether this is a case of a false <lb/>retry, the replier may send to the client any of the following <lb/>responses: <lb/>o The cached reply to the original request (if the replier has <lb/>cached it in its entirety and the users of the original request <lb/>and retry match). <lb/>o A reply that consists only of the Sequence operation with the <lb/>error NFS4ERR_FALSE_RETRY. <lb/>o A reply consisting of the response to Sequence with the status <lb/>NFS4_OK, together with the second operation as it appeared in the <lb/>retried request with an error of NFS4ERR_RETRY_UNCACHED_REP or <lb/>other error as described above. <lb/>o A reply that consists of the response to Sequence with the status <lb/>NFS4_OK, together with the second operation as it appeared in the <lb/>original request with an error of NFS4ERR_RETRY_UNCACHED_REP or <lb/>other error as described above. <lb/>2.10.6.1.3.1. False Retry <lb/>If a requester sent a Sequence operation with a slot ID and sequence <lb/>ID that are in the reply cache but the replier detected that the <lb/>retried request is not the same as the original request, including a <lb/>retry that has different operations or different arguments in the <lb/>operations from the original and a retry that uses a different <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 58] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>principal in the RPC request's credential field that translates to a <lb/>different user, then this is a false retry. When the replier detects <lb/>a false retry, it is permitted (but not always obligated) to return <lb/>NFS4ERR_FALSE_RETRY in response to the Sequence operation when it <lb/>detects a false retry. <lb/>Translations of particularly privileged user values to other users <lb/>due to the lack of appropriately secure credentials, as configured on <lb/>the replier, should be applied before determining whether the users <lb/>are the same or different. If the replier determines the users are <lb/>different between the original request and a retry, then the replier <lb/>MUST return NFS4ERR_FALSE_RETRY. <lb/>If an operation of the retry is an illegal operation, or an operation <lb/>that was legal in a previous minor version of NFSv4 and MUST NOT be <lb/>supported in the current minor version (e.g., SETCLIENTID), the <lb/>replier MAY return NFS4ERR_FALSE_RETRY (and MUST do so if the users <lb/>of the original request and retry differ). Otherwise, the replier <lb/>MAY return NFS4ERR_OP_ILLEGAL or NFS4ERR_BADXDR or NFS4ERR_NOTSUPP as <lb/>appropriate. Note that the handling is in contrast for how the <lb/>replier deals with retries requests with no cached reply. The <lb/>difference is due to NFS4ERR_FALSE_RETRY being a valid error for only <lb/>Sequence operations, whereas NFS4ERR_RETRY_UNCACHED_REP is a valid <lb/>error for all operations except illegal operations and operations <lb/>that MUST NOT be supported in the current minor version of NFSv4. <lb/>2.10.6.2. Retry and Replay of Reply <lb/>A requester MUST NOT retry a request, unless the connection it used <lb/>to send the request disconnects. The requester can then reconnect <lb/>and re-send the request, or it can re-send the request over a <lb/>different connection that is associated with the same session. <lb/>If the requester is a server wanting to re-send a callback operation <lb/>over the backchannel of a session, the requester of course cannot <lb/>reconnect because only the client can associate connections with the <lb/>backchannel. The server can re-send the request over another <lb/>connection that is bound to the same session's backchannel. If there <lb/>is no such connection, the server MUST indicate that the session has <lb/>no backchannel by setting the SEQ4_STATUS_CB_PATH_DOWN_SESSION flag <lb/>bit in the response to the next SEQUENCE operation from the client. <lb/>The client MUST then associate a connection with the session (or <lb/>destroy the session). <lb/>Note that it is not fatal for a requester to retry without a <lb/>disconnect between the request and retry. However, the retry does <lb/>consume resources, especially with RDMA, where each request, retry or <lb/>not, consumes a credit. Retries for no reason, especially retries <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 59] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>sent shortly after the previous attempt, are a poor use of network <lb/>bandwidth and defeat the purpose of a transport's inherent congestion <lb/>control system. <lb/>A requester MUST wait for a reply to a request before using the slot <lb/>for another request. If it does not wait for a reply, then the <lb/>requester does not know what sequence ID to use for the slot on its <lb/>next request. For example, suppose a requester sends a request with <lb/>sequence ID 1, and does not wait for the response. The next time it <lb/>uses the slot, it sends the new request with sequence ID 2. If the <lb/>replier has not seen the request with sequence ID 1, then the replier <lb/>is not expecting sequence ID 2, and rejects the requester's new <lb/>request with NFS4ERR_SEQ_MISORDERED (as the result from SEQUENCE or <lb/>CB_SEQUENCE). <lb/>RDMA fabrics do not guarantee that the memory handles (Steering Tags) <lb/>within each RPC/RDMA "chunk" [31] are valid on a scope outside that <lb/>of a single connection. Therefore, handles used by the direct <lb/>operations become invalid after connection loss. The server must <lb/>ensure that any RDMA operations that must be replayed from the reply <lb/>cache use the newly provided handle(s) from the most recent request. <lb/>A retry might be sent while the original request is still in progress <lb/>on the replier. The replier SHOULD deal with the issue by returning <lb/>NFS4ERR_DELAY as the reply to SEQUENCE or CB_SEQUENCE operation, but <lb/>implementations MAY return NFS4ERR_MISORDERED. Since errors from <lb/>SEQUENCE and CB_SEQUENCE are never recorded in the reply cache, this <lb/>approach allows the results of the execution of the original request <lb/>to be properly recorded in the reply cache (assuming that the <lb/>requester specified the reply to be cached). <lb/>2.10.6.3. Resolving Server Callback Races <lb/>It is possible for server callbacks to arrive at the client before <lb/>the reply from related fore channel operations. For example, a <lb/>client may have been granted a delegation to a file it has opened, <lb/>but the reply to the OPEN (informing the client of the granting of <lb/>the delegation) may be delayed in the network. If a conflicting <lb/>operation arrives at the server, it will recall the delegation using <lb/>the backchannel, which may be on a different transport connection, <lb/>perhaps even a different network, or even a different session <lb/>associated with the same client ID. <lb/>The presence of a session between the client and server alleviates <lb/>this issue. When a session is in place, each client request is <lb/>uniquely identified by its { session ID, slot ID, sequence ID } <lb/>triple. By the rules under which slot entries (reply cache entries) <lb/>are retired, the server has knowledge whether the client has "seen" <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 60] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>each of the server's replies. The server can therefore provide <lb/>sufficient information to the client to allow it to disambiguate <lb/>between an erroneous or conflicting callback race condition. <lb/>For each client operation that might result in some sort of server <lb/>callback, the server SHOULD "remember" the { session ID, slot ID, <lb/>sequence ID } triple of the client request until the slot ID <lb/>retirement rules allow the server to determine that the client has, <lb/>in fact, seen the server's reply. Until the time the { session ID, <lb/>slot ID, sequence ID } request triple can be retired, any recalls of <lb/>the associated object MUST carry an array of these referring <lb/>identifiers (in the CB_SEQUENCE operation's arguments), for the <lb/>benefit of the client. After this time, it is not necessary for the <lb/>server to provide this information in related callbacks, since it is <lb/>certain that a race condition can no longer occur. <lb/>The CB_SEQUENCE operation that begins each server callback carries a <lb/>list of "referring" { session ID, slot ID, sequence ID } triples. If <lb/>the client finds the request corresponding to the referring session <lb/>ID, slot ID, and sequence ID to be currently outstanding (i.e., the <lb/>server's reply has not been seen by the client), it can determine <lb/>that the callback has raced the reply, and act accordingly. If the <lb/>client does not find the request corresponding to the referring <lb/>triple to be outstanding (including the case of a session ID <lb/>referring to a destroyed session), then there is no race with respect <lb/>to this triple. The server SHOULD limit the referring triples to <lb/>requests that refer to just those that apply to the objects referred <lb/>to in the CB_COMPOUND procedure. <lb/>The client must not simply wait forever for the expected server reply <lb/>to arrive before responding to the CB_COMPOUND that won the race, <lb/>because it is possible that it will be delayed indefinitely. The <lb/>client should assume the likely case that the reply will arrive <lb/>within the average round-trip time for COMPOUND requests to the <lb/>server, and wait that period of time. If that period of time <lb/>expires, it can respond to the CB_COMPOUND with NFS4ERR_DELAY. There <lb/>are other scenarios under which callbacks may race replies. Among <lb/>them are pNFS layout recalls as described in Section 12.5.5.2. <lb/>2.10.6.4. COMPOUND and CB_COMPOUND Construction Issues <lb/>Very large requests and replies may pose both buffer management <lb/>issues (especially with RDMA) and reply cache issues. When the <lb/>session is created (Section 18.36), for each channel (fore and back), <lb/>the client and server negotiate the maximum-sized request they will <lb/>send or process (ca_maxrequestsize), the maximum-sized reply they <lb/>will return or process (ca_maxresponsesize), and the maximum-sized <lb/>reply they will store in the reply cache (ca_maxresponsesize_cached). <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 61] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>If a request exceeds ca_maxrequestsize, the reply will have the <lb/>status NFS4ERR_REQ_TOO_BIG. A replier MAY return NFS4ERR_REQ_TOO_BIG <lb/>as the status for the first operation (SEQUENCE or CB_SEQUENCE) in <lb/>the request (which means that no operations in the request executed <lb/>and that the state of the slot in the reply cache is unchanged), or <lb/>it MAY opt to return it on a subsequent operation in the same <lb/>COMPOUND or CB_COMPOUND request (which means that at least one <lb/>operation did execute and that the state of the slot in the reply <lb/>cache does change). The replier SHOULD set NFS4ERR_REQ_TOO_BIG on <lb/>the operation that exceeds ca_maxrequestsize. <lb/>If a reply exceeds ca_maxresponsesize, the reply will have the status <lb/>NFS4ERR_REP_TOO_BIG. A replier MAY return NFS4ERR_REP_TOO_BIG as the <lb/>status for the first operation (SEQUENCE or CB_SEQUENCE) in the <lb/>request, or it MAY opt to return it on a subsequent operation (in the <lb/>same COMPOUND or CB_COMPOUND reply). A replier MAY return <lb/>NFS4ERR_REP_TOO_BIG in the reply to SEQUENCE or CB_SEQUENCE, even if <lb/>the response would still exceed ca_maxresponsesize. <lb/>If sa_cachethis or csa_cachethis is TRUE, then the replier MUST cache <lb/>a reply except if an error is returned by the SEQUENCE or CB_SEQUENCE <lb/>operation (see Section 2.10.6.1.2). If the reply exceeds <lb/>ca_maxresponsesize_cached (and sa_cachethis or csa_cachethis is <lb/>TRUE), then the server MUST return NFS4ERR_REP_TOO_BIG_TO_CACHE. <lb/>Even if NFS4ERR_REP_TOO_BIG_TO_CACHE (or any other error for that <lb/>matter) is returned on an operation other than the first operation <lb/>(SEQUENCE or CB_SEQUENCE), then the reply MUST be cached if <lb/>sa_cachethis or csa_cachethis is TRUE. For example, if a COMPOUND <lb/>has eleven operations, including SEQUENCE, the fifth operation is a <lb/>RENAME, and the tenth operation is a READ for one million bytes, the <lb/>server may return NFS4ERR_REP_TOO_BIG_TO_CACHE on the tenth <lb/>operation. Since the server executed several operations, especially <lb/>the non-idempotent RENAME, the client's request to cache the reply <lb/>needs to be honored in order for the correct operation of exactly <lb/>once semantics. If the client retries the request, the server will <lb/>have cached a reply that contains results for ten of the eleven <lb/>requested operations, with the tenth operation having a status of <lb/>NFS4ERR_REP_TOO_BIG_TO_CACHE. <lb/>A client needs to take care that when sending operations that change <lb/>the current filehandle (except for PUTFH, PUTPUBFH, PUTROOTFH, and <lb/>RESTOREFH), it not exceed the maximum reply buffer before the GETFH <lb/>operation. Otherwise, the client will have to retry the operation <lb/>that changed the current filehandle, in order to obtain the desired <lb/>filehandle. For the OPEN operation (see Section 18.16), retry is not <lb/>always available as an option. The following guidelines for the <lb/>handling of filehandle-changing operations are advised: <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 62] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>o Within the same COMPOUND procedure, a client SHOULD send GETFH <lb/>immediately after a current filehandle-changing operation. A <lb/>client MUST send GETFH after a current filehandle-changing <lb/>operation that is also non-idempotent (e.g., the OPEN operation), <lb/>unless the operation is RESTOREFH. RESTOREFH is an exception, <lb/>because even though it is non-idempotent, the filehandle RESTOREFH <lb/>produced originated from an operation that is either idempotent <lb/>(e.g., PUTFH, LOOKUP), or non-idempotent (e.g., OPEN, CREATE). If <lb/>the origin is non-idempotent, then because the client MUST send <lb/>GETFH after the origin operation, the client can recover if <lb/>RESTOREFH returns an error. <lb/>o A server MAY return NFS4ERR_REP_TOO_BIG or <lb/>NFS4ERR_REP_TOO_BIG_TO_CACHE (if sa_cachethis is TRUE) on a <lb/>filehandle-changing operation if the reply would be too large on <lb/>the next operation. <lb/>o A server SHOULD return NFS4ERR_REP_TOO_BIG or <lb/>NFS4ERR_REP_TOO_BIG_TO_CACHE (if sa_cachethis is TRUE) on a <lb/>filehandle-changing, non-idempotent operation if the reply would <lb/>be too large on the next operation, especially if the operation is <lb/>OPEN. <lb/>o A server MAY return NFS4ERR_UNSAFE_COMPOUND to a non-idempotent <lb/>current filehandle-changing operation, if it looks at the next <lb/>operation (in the same COMPOUND procedure) and finds it is not <lb/>GETFH. The server SHOULD do this if it is unable to determine in <lb/>advance whether the total response size would exceed <lb/>ca_maxresponsesize_cached or ca_maxresponsesize. <lb/>2.10.6.5. Persistence <lb/>Since the reply cache is bounded, it is practical for the reply cache <lb/>to persist across server restarts. The replier MUST persist the <lb/>following information if it agreed to persist the session (when the <lb/>session was created; see Section 18.36): <lb/>o The session ID. <lb/>o The slot table including the sequence ID and cached reply for each <lb/>slot. <lb/>The above are sufficient for a replier to provide EOS semantics for <lb/>any requests that were sent and executed before the server restarted. <lb/>If the replier is a client, then there is no need for it to persist <lb/>any more information, unless the client will be persisting all other <lb/>state across client restart, in which case, the server will never see <lb/>any NFSv4.1-level protocol manifestation of a client restart. If the <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 63] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>replier is a server, with just the slot table and session ID <lb/>persisting, any requests the client retries after the server restart <lb/>will return the results that are cached in the reply cache, and any <lb/>new requests (i.e., the sequence ID is one greater than the slot's <lb/>sequence ID) MUST be rejected with NFS4ERR_DEADSESSION (returned by <lb/>SEQUENCE). Such a session is considered dead. A server MAY re-<lb/>animate a session after a server restart so that the session will <lb/>accept new requests as well as retries. To re-animate a session, the <lb/>server needs to persist additional information through server <lb/>restart: <lb/>o The client ID. This is a prerequisite to let the client create <lb/>more sessions associated with the same client ID as the re-<lb/>animated session. <lb/>o The client ID's sequence ID that is used for creating sessions <lb/>(see Sections 18.35 and 18.36). This is a prerequisite to let the <lb/>client create more sessions. <lb/>o The principal that created the client ID. This allows the server <lb/>to authenticate the client when it sends EXCHANGE_ID. <lb/>o The SSV, if SP4_SSV state protection was specified when the client <lb/>ID was created (see Section 18.35). This lets the client create <lb/>new sessions, and associate connections with the new and existing <lb/>sessions. <lb/>o The properties of the client ID as defined in Section 18.35. <lb/>A persistent reply cache places certain demands on the server. The <lb/>execution of the sequence of operations (starting with SEQUENCE) and <lb/>placement of its results in the persistent cache MUST be atomic. If <lb/>a client retries a sequence of operations that was previously <lb/>executed on the server, the only acceptable outcomes are either the <lb/>original cached reply or an indication that the client ID or session <lb/>has been lost (indicating a catastrophic loss of the reply cache or a <lb/>session that has been deleted because the client failed to use the <lb/>session for an extended period of time). <lb/>A server could fail and restart in the middle of a COMPOUND procedure <lb/>that contains one or more non-idempotent or idempotent-but-modifying <lb/>operations. This creates an even higher challenge for atomic <lb/>execution and placement of results in the reply cache. One way to <lb/>view the problem is as a single transaction consisting of each <lb/>operation in the COMPOUND followed by storing the result in <lb/>persistent storage, then finally a transaction commit. If there is a <lb/>failure before the transaction is committed, then the server rolls <lb/>back the transaction. If the server itself fails, then when it <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 64] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>restarts, its recovery logic could roll back the transaction before <lb/>starting the NFSv4.1 server. <lb/>While the description of the implementation for atomic execution of <lb/>the request and caching of the reply is beyond the scope of this <lb/>document, an example implementation for NFSv2 [41] is described in <lb/>[42]. <lb/>2.10.7. RDMA Considerations <lb/>A complete discussion of the operation of RPC-based protocols over <lb/>RDMA transports is in [31]. A discussion of the operation of NFSv4, <lb/>including NFSv4.1, over RDMA is in [32]. Where RDMA is considered, <lb/>this specification assumes the use of such a layering; it addresses <lb/>only the upper-layer issues relevant to making best use of RPC/RDMA. <lb/>2.10.7.1. RDMA Connection Resources <lb/>RDMA requires its consumers to register memory and post buffers of a <lb/>specific size and number for receive operations. <lb/>Registration of memory can be a relatively high-overhead operation, <lb/>since it requires pinning of buffers, assignment of attributes (e.g., <lb/>readable/writable), and initialization of hardware translation. <lb/>Preregistration is desirable to reduce overhead. These registrations <lb/>are specific to hardware interfaces and even to RDMA connection <lb/>endpoints; therefore, negotiation of their limits is desirable to <lb/>manage resources effectively. <lb/>Following basic registration, these buffers must be posted by the RPC <lb/>layer to handle receives. These buffers remain in use by the RPC/ <lb/>NFSv4.1 implementation; the size and number of them must be known to <lb/>the remote peer in order to avoid RDMA errors that would cause a <lb/>fatal error on the RDMA connection. <lb/>NFSv4.1 manages slots as resources on a per-session basis (see <lb/>Section 2.10), while RDMA connections manage credits on a per-<lb/>connection basis. This means that in order for a peer to send data <lb/>over RDMA to a remote buffer, it has to have both an NFSv4.1 slot and <lb/>an RDMA credit. If multiple RDMA connections are associated with a <lb/>session, then if the total number of credits across all RDMA <lb/>connections associated with the session is X, and the number of slots <lb/>in the session is Y, then the maximum number of outstanding requests <lb/>is the lesser of X and Y. <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 65] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>2.10.7.2. Flow Control <lb/>Previous versions of NFS do not provide flow control; instead, they <lb/>rely on the windowing provided by transports like TCP to throttle <lb/>requests. This does not work with RDMA, which provides no operation <lb/>flow control and will terminate a connection in error when limits are <lb/>exceeded. Limits such as maximum number of requests outstanding are <lb/>therefore negotiated when a session is created (see the <lb/>ca_maxrequests field in Section 18.36). These limits then provide <lb/>the maxima within which each connection associated with the session's <lb/>channel(s) must remain. RDMA connections are managed within these <lb/>limits as described in Section 3.3 of [31]; if there are multiple <lb/>RDMA connections, then the maximum number of requests for a channel <lb/>will be divided among the RDMA connections. Put a different way, the <lb/>onus is on the replier to ensure that the total number of RDMA <lb/>credits across all connections associated with the replier's channel <lb/>does exceed the channel's maximum number of outstanding requests. <lb/>The limits may also be modified dynamically at the replier's choosing <lb/>by manipulating certain parameters present in each NFSv4.1 reply. In <lb/>addition, the CB_RECALL_SLOT callback operation (see Section 20.8) <lb/>can be sent by a server to a client to return RDMA credits to the <lb/>server, thereby lowering the maximum number of requests a client can <lb/>have outstanding to the server. <lb/>2.10.7.3. Padding <lb/>Header padding is requested by each peer at session initiation (see <lb/>the ca_headerpadsize argument to CREATE_SESSION in Section 18.36), <lb/>and subsequently used by the RPC RDMA layer, as described in [31]. <lb/>Zero padding is permitted. <lb/>Padding leverages the useful property that RDMA preserve alignment of <lb/>data, even when they are placed into anonymous (untagged) buffers. <lb/>If requested, client inline writes will insert appropriate pad bytes <lb/>within the request header to align the data payload on the specified <lb/>boundary. The client is encouraged to add sufficient padding (up to <lb/>the negotiated size) so that the "data" field of the WRITE operation <lb/>is aligned. Most servers can make good use of such padding, which <lb/>allows them to chain receive buffers in such a way that any data <lb/>carried by client requests will be placed into appropriate buffers at <lb/>the server, ready for file system processing. The receiver's RPC <lb/>layer encounters no overhead from skipping over pad bytes, and the <lb/>RDMA layer's high performance makes the insertion and transmission of <lb/>padding on the sender a significant optimization. In this way, the <lb/>need for servers to perform RDMA Read to satisfy all but the largest <lb/>client writes is obviated. An added benefit is the reduction of <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 66] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>message round trips on the network --a potentially good trade, where <lb/>latency is present. <lb/>The value to choose for padding is subject to a number of criteria. <lb/>A primary source of variable-length data in the RPC header is the <lb/>authentication information, the form of which is client-determined, <lb/>possibly in response to server specification. The contents of <lb/>COMPOUNDs, sizes of strings such as those passed to RENAME, etc. all <lb/>go into the determination of a maximal NFSv4.1 request size and <lb/>therefore minimal buffer size. The client must select its offered <lb/>value carefully, so as to avoid overburdening the server, and vice <lb/>versa. The benefit of an appropriate padding value is higher <lb/>performance. <lb/>Sender gather: <lb/>|RPC Request|Pad bytes|Length| -> |User data...| <lb/>\------+----------------------/ <lb/>\ <lb/>\ <lb/>\ <lb/>\ <lb/>Receiver scatter: <lb/>\-----------+-... <lb/>/-----+----------------\ <lb/>\ <lb/>\ <lb/>|RPC Request|Pad|Length| <lb/>-> |FS buffer|->|FS buffer|->... <lb/>In the above case, the server may recycle unused buffers to the next <lb/>posted receive if unused by the actual received request, or may pass <lb/>the now-complete buffers by reference for normal write processing. <lb/>For a server that can make use of it, this removes any need for data <lb/>copies of incoming data, without resorting to complicated end-to-end <lb/>buffer advertisement and management. This includes most kernel-based <lb/>and integrated server designs, among many others. The client may <lb/>perform similar optimizations, if desired. <lb/>2.10.7.4. Dual RDMA and Non-RDMA Transports <lb/>Some RDMA transports (e.g., RFC 5040 [8]) permit a "streaming" (non-<lb/>RDMA) phase, where ordinary traffic might flow before "stepping up" <lb/>to RDMA mode, commencing RDMA traffic. Some RDMA transports start <lb/>connections always in RDMA mode. NFSv4.1 allows, but does not <lb/>assume, a streaming phase before RDMA mode. When a connection is <lb/>associated with a session, the client and server negotiate whether <lb/>the connection is used in RDMA or non-RDMA mode (see Sections 18.36 <lb/>and 18.34). <lb/>2.10.8. Session Security <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 67] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>2.10.8.1. Session Callback Security <lb/>Via session/connection association, NFSv4.1 improves security over <lb/>that provided by NFSv4.0 for the backchannel. The connection is <lb/>client-initiated (see Section 18.34) and subject to the same firewall <lb/>and routing checks as the fore channel. At the client's option (see <lb/>Section 18.35), connection association is fully authenticated before <lb/>being activated (see Section 18.34). Traffic from the server over <lb/>the backchannel is authenticated exactly as the client specifies (see <lb/>Section 2.10.8.2). <lb/>2.10.8.2. Backchannel RPC Security <lb/>When the NFSv4.1 client establishes the backchannel, it informs the <lb/>server of the security flavors and principals to use when sending <lb/>requests. If the security flavor is RPCSEC_GSS, the client expresses <lb/>the principal in the form of an established RPCSEC_GSS context. The <lb/>server is free to use any of the flavor/principal combinations the <lb/>client offers, but it MUST NOT use unoffered combinations. This way, <lb/>the client need not provide a target GSS principal for the <lb/>backchannel as it did with NFSv4.0, nor does the server have to <lb/>implement an RPCSEC_GSS initiator as it did with NFSv4.0 [33]. <lb/>The CREATE_SESSION (Section 18.36) and BACKCHANNEL_CTL <lb/>(Section 18.33) operations allow the client to specify flavor/ <lb/>principal combinations. <lb/>Also note that the SP4_SSV state protection mode (see Sections 18.35 <lb/>and 2.10.8.3) has the side benefit of providing SSV-derived <lb/>RPCSEC_GSS contexts (Section 2.10.9). <lb/>2.10.8.3. Protection from Unauthorized State Changes <lb/>As described to this point in the specification, the state model of <lb/>NFSv4.1 is vulnerable to an attacker that sends a SEQUENCE operation <lb/>with a forged session ID and with a slot ID that it expects the <lb/>legitimate client to use next. When the legitimate client uses the <lb/>slot ID with the same sequence number, the server returns the <lb/>attacker's result from the reply cache, which disrupts the legitimate <lb/>client and thus denies service to it. Similarly, an attacker could <lb/>send a CREATE_SESSION with a forged client ID to create a new session <lb/>associated with the client ID. The attacker could send requests <lb/>using the new session that change locking state, such as LOCKU <lb/>operations to release locks the legitimate client has acquired. <lb/>Setting a security policy on the file that requires RPCSEC_GSS <lb/>credentials when manipulating the file's state is one potential work <lb/>around, but has the disadvantage of preventing a legitimate client <lb/>from releasing state when RPCSEC_GSS is required to do so, but a GSS <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 68] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>context cannot be obtained (possibly because the user has logged off <lb/>the client). <lb/>NFSv4.1 provides three options to a client for state protection, <lb/>which are specified when a client creates a client ID via EXCHANGE_ID <lb/>(Section 18.35). <lb/>The first (SP4_NONE) is to simply waive state protection. <lb/>The other two options (SP4_MACH_CRED and SP4_SSV) share several <lb/>traits: <lb/>o An RPCSEC_GSS-based credential is used to authenticate client ID <lb/>and session maintenance operations, including creating and <lb/>destroying a session, associating a connection with the session, <lb/>and destroying the client ID. <lb/>o Because RPCSEC_GSS is used to authenticate client ID and session <lb/>maintenance, the attacker cannot associate a rogue connection with <lb/>a legitimate session, or associate a rogue session with a <lb/>legitimate client ID in order to maliciously alter the client ID's <lb/>lock state via CLOSE, LOCKU, DELEGRETURN, LAYOUTRETURN, etc. <lb/>o In cases where the server's security policies on a portion of its <lb/>namespace require RPCSEC_GSS authentication, a client may have to <lb/>use an RPCSEC_GSS credential to remove per-file state (e.g., <lb/>LOCKU, CLOSE, etc.). The server may require that the principal <lb/>that removes the state match certain criteria (e.g., the principal <lb/>might have to be the same as the one that acquired the state). <lb/>However, the client might not have an RPCSEC_GSS context for such <lb/>a principal, and might not be able to create such a context <lb/>(perhaps because the user has logged off). When the client <lb/>establishes SP4_MACH_CRED or SP4_SSV protection, it can specify a <lb/>list of operations that the server MUST allow using the machine <lb/>credential (if SP4_MACH_CRED is used) or the SSV credential (if <lb/>SP4_SSV is used). <lb/>The SP4_MACH_CRED state protection option uses a machine credential <lb/>where the principal that creates the client ID MUST also be the <lb/>principal that performs client ID and session maintenance operations. <lb/>The security of the machine credential state protection approach <lb/>depends entirely on safe guarding the per-machine credential. <lb/>Assuming a proper safeguard using the per-machine credential for <lb/>operations like CREATE_SESSION, BIND_CONN_TO_SESSION, <lb/>DESTROY_SESSION, and DESTROY_CLIENTID will prevent an attacker from <lb/>associating a rogue connection with a session, or associating a rogue <lb/>session with a client ID. <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 69] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>There are at least three scenarios for the SP4_MACH_CRED option: <lb/>1. The system administrator configures a unique, permanent per-<lb/>machine credential for one of the mandated GSS mechanisms (e.g., <lb/>if Kerberos V5 is used, a "keytab" containing a principal derived <lb/>from a client host name could be used). <lb/>2. The client is used by a single user, and so the client ID and its <lb/>sessions are used by just that user. If the user's credential <lb/>expires, then session and client ID maintenance cannot occur, but <lb/>since the client has a single user, only that user is <lb/>inconvenienced. <lb/>3. The physical client has multiple users, but the client <lb/>implementation has a unique client ID for each user. This is <lb/>effectively the same as the second scenario, but a disadvantage <lb/>is that each user needs to be allocated at least one session <lb/>each, so the approach suffers from lack of economy. <lb/>The SP4_SSV protection option uses the SSV (Section 1.7), via <lb/>RPCSEC_GSS and the SSV GSS mechanism (Section 2.10.9), to protect <lb/>state from attack. The SP4_SSV protection option is intended for the <lb/>situation comprised of a client that has multiple active users and a <lb/>system administrator who wants to avoid the burden of installing a <lb/>permanent machine credential on each client. The SSV is established <lb/>and updated on the server via SET_SSV (see Section 18.47). To <lb/>prevent eavesdropping, a client SHOULD send SET_SSV via RPCSEC_GSS <lb/>with the privacy service. Several aspects of the SSV make it <lb/>intractable for an attacker to guess the SSV, and thus associate <lb/>rogue connections with a session, and rogue sessions with a client <lb/>ID: <lb/>o The arguments to and results of SET_SSV include digests of the old <lb/>and new SSV, respectively. <lb/>o Because the initial value of the SSV is zero, therefore known, the <lb/>client that opts for SP4_SSV protection and opts to apply SP4_SSV <lb/>protection to BIND_CONN_TO_SESSION and CREATE_SESSION MUST send at <lb/>least one SET_SSV operation before the first BIND_CONN_TO_SESSION <lb/>operation or before the second CREATE_SESSION operation on a <lb/>client ID. If it does not, the SSV mechanism will not generate <lb/>tokens (Section 2.10.9). A client SHOULD send SET_SSV as soon as <lb/>a session is created. <lb/>o A SET_SSV request does not replace the SSV with the argument to <lb/>SET_SSV. Instead, the current SSV on the server is logically <lb/>exclusive ORed (XORed) with the argument to SET_SSV. Each time a <lb/>new principal uses a client ID for the first time, the client <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 70] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>SHOULD send a SET_SSV with that principal's RPCSEC_GSS <lb/>credentials, with RPCSEC_GSS service set to RPC_GSS_SVC_PRIVACY. <lb/>Here are the types of attacks that can be attempted by an attacker <lb/>named Eve on a victim named Bob, and how SP4_SSV protection foils <lb/>each attack: <lb/>o Suppose Eve is the first user to log into a legitimate client. <lb/>Eve's use of an NFSv4.1 file system will cause the legitimate <lb/>client to create a client ID with SP4_SSV protection, specifying <lb/>that the BIND_CONN_TO_SESSION operation MUST use the SSV <lb/>credential. Eve's use of the file system also causes an SSV to be <lb/>created. The SET_SSV operation that creates the SSV will be <lb/>protected by the RPCSEC_GSS context created by the legitimate <lb/>client, which uses Eve's GSS principal and credentials. Eve can <lb/>eavesdrop on the network while her RPCSEC_GSS context is created <lb/>and the SET_SSV using her context is sent. Even if the legitimate <lb/>client sends the SET_SSV with RPC_GSS_SVC_PRIVACY, because Eve <lb/>knows her own credentials, she can decrypt the SSV. Eve can <lb/>compute an RPCSEC_GSS credential that BIND_CONN_TO_SESSION will <lb/>accept, and so associate a new connection with the legitimate <lb/>session. Eve can change the slot ID and sequence state of a <lb/>legitimate session, and/or the SSV state, in such a way that when <lb/>Bob accesses the server via the same legitimate client, the <lb/>legitimate client will be unable to use the session. <lb/>The client's only recourse is to create a new client ID for Bob to <lb/>use, and establish a new SSV for the client ID. The client will <lb/>be unable to delete the old client ID, and will let the lease on <lb/>the old client ID expire. <lb/>Once the legitimate client establishes an SSV over the new session <lb/>using Bob's RPCSEC_GSS context, Eve can use the new session via <lb/>the legitimate client, but she cannot disrupt Bob. Moreover, <lb/>because the client SHOULD have modified the SSV due to Eve using <lb/>the new session, Bob cannot get revenge on Eve by associating a <lb/>rogue connection with the session. <lb/>The question is how did the legitimate client detect that Eve has <lb/>hijacked the old session? When the client detects that a new <lb/>principal, Bob, wants to use the session, it SHOULD have sent a <lb/>SET_SSV, which leads to the following sub-scenarios: <lb/>* Let us suppose that from the rogue connection, Eve sent a <lb/>SET_SSV with the same slot ID and sequence ID that the <lb/>legitimate client later uses. The server will assume the <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 71] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>SET_SSV sent with Bob's credentials is a retry, and return to <lb/>the legitimate client the reply it sent Eve. However, unless <lb/>Eve can correctly guess the SSV the legitimate client will use, <lb/>the digest verification checks in the SET_SSV response will <lb/>fail. That is an indication to the client that the session has <lb/>apparently been hijacked. <lb/>* Alternatively, Eve sent a SET_SSV with a different slot ID than <lb/>the legitimate client uses for its SET_SSV. Then the digest <lb/>verification of the SET_SSV sent with Bob's credentials fails <lb/>on the server, and the error returned to the client makes it <lb/>apparent that the session has been hijacked. <lb/>* Alternatively, Eve sent an operation other than SET_SSV, but <lb/>with the same slot ID and sequence that the legitimate client <lb/>uses for its SET_SSV. The server returns to the legitimate <lb/>client the response it sent Eve. The client sees that the <lb/>response is not at all what it expects. The client assumes <lb/>either session hijacking or a server bug, and either way <lb/>destroys the old session. <lb/>o Eve associates a rogue connection with the session as above, and <lb/>then destroys the session. Again, Bob goes to use the server from <lb/>the legitimate client, which sends a SET_SSV using Bob's <lb/>credentials. The client receives an error that indicates that the <lb/>session does not exist. When the client tries to create a new <lb/>session, this will fail because the SSV it has does not match that <lb/>which the server has, and now the client knows the session was <lb/>hijacked. The legitimate client establishes a new client ID. <lb/>o If Eve creates a connection before the legitimate client <lb/>establishes an SSV, because the initial value of the SSV is zero <lb/>and therefore known, Eve can send a SET_SSV that will pass the <lb/>digest verification check. However, because the new connection <lb/>has not been associated with the session, the SET_SSV is rejected <lb/>for that reason. <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 72] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>In summary, an attacker's disruption of state when SP4_SSV protection <lb/>is in use is limited to the formative period of a client ID, its <lb/>first session, and the establishment of the SSV. Once a non-<lb/>malicious user uses the client ID, the client quickly detects any <lb/>hijack and rectifies the situation. Once a non-malicious user <lb/>successfully modifies the SSV, the attacker cannot use NFSv4.1 <lb/>operations to disrupt the non-malicious user. <lb/>Note that neither the SP4_MACH_CRED nor SP4_SSV protection approaches <lb/>prevent hijacking of a transport connection that has previously been <lb/>associated with a session. If the goal of a counter-threat strategy <lb/>is to prevent connection hijacking, the use of IPsec is RECOMMENDED. <lb/>If a connection hijack occurs, the hijacker could in theory change <lb/>locking state and negatively impact the service to legitimate <lb/>clients. However, if the server is configured to require the use of <lb/>RPCSEC_GSS with integrity or privacy on the affected file objects, <lb/>and if EXCHGID4_FLAG_BIND_PRINC_STATEID capability (Section 18.35) is <lb/>in force, this will thwart unauthorized attempts to change locking <lb/>state. <lb/>2.10.9. The Secret State Verifier (SSV) GSS Mechanism <lb/>The SSV provides the secret key for a GSS mechanism internal to <lb/>NFSv4.1 that NFSv4.1 uses for state protection. Contexts for this <lb/>mechanism are not established via the RPCSEC_GSS protocol. Instead, <lb/>the contexts are automatically created when EXCHANGE_ID specifies <lb/>SP4_SSV protection. The only tokens defined are the PerMsgToken <lb/>(emitted by GSS_GetMIC) and the SealedMessage token (emitted by <lb/>GSS_Wrap). <lb/>The mechanism OID for the SSV mechanism is <lb/>iso.org.dod.internet.private.enterprise.Michael Eisler.nfs.ssv_mech <lb/>(1.3.6.1.4.1.28882.1.1). While the SSV mechanism does not define any <lb/>initial context tokens, the OID can be used to let servers indicate <lb/>that the SSV mechanism is acceptable whenever the client sends a <lb/>SECINFO or SECINFO_NO_NAME operation (see Section 2.6). <lb/>The SSV mechanism defines four subkeys derived from the SSV value. <lb/>Each time SET_SSV is invoked, the subkeys are recalculated by the <lb/>client and server. The calculation of each of the four subkeys <lb/>depends on each of the four respective ssv_subkey4 enumerated values. <lb/>The calculation uses the HMAC [59] algorithm, using the current SSV <lb/>as the key, the one-way hash algorithm as negotiated by EXCHANGE_ID, <lb/>and the input text as represented by the XDR encoded enumeration <lb/>value for that subkey of data type ssv_subkey4. If the length of the <lb/>output of the HMAC algorithm exceeds the length of key of the <lb/>encryption algorithm (which is also negotiated by EXCHANGE_ID), then <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 73] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>the subkey MUST be truncated from the HMAC output, i.e., if the <lb/>subkey is of N bytes long, then the first N bytes of the HMAC output <lb/>MUST be used for the subkey. The specification of EXCHANGE_ID states <lb/>that the length of the output of the HMAC algorithm MUST NOT be less <lb/>than the length of subkey needed for the encryption algorithm (see <lb/>Section 18.35). <lb/>/* Input for computing subkeys */ <lb/>enum ssv_subkey4 { <lb/>SSV4_SUBKEY_MIC_I2T <lb/>= 1, <lb/>SSV4_SUBKEY_MIC_T2I <lb/>= 2, <lb/>SSV4_SUBKEY_SEAL_I2T <lb/>= 3, <lb/>SSV4_SUBKEY_SEAL_T2I <lb/>= 4 <lb/>}; <lb/>The subkey derived from SSV4_SUBKEY_MIC_I2T is used for calculating <lb/>message integrity codes (MICs) that originate from the NFSv4.1 <lb/>client, whether as part of a request over the fore channel or a <lb/>response over the backchannel. The subkey derived from <lb/>SSV4_SUBKEY_MIC_T2I is used for MICs originating from the NFSv4.1 <lb/>server. The subkey derived from SSV4_SUBKEY_SEAL_I2T is used for <lb/>encryption text originating from the NFSv4.1 client, and the subkey <lb/>derived from SSV4_SUBKEY_SEAL_T2I is used for encryption text <lb/>originating from the NFSv4.1 server. <lb/>The PerMsgToken description is based on an XDR definition: <lb/>/* Input for computing smt_hmac */ <lb/>struct ssv_mic_plain_tkn4 { <lb/>uint32_t <lb/>smpt_ssv_seq; <lb/>opaque <lb/>smpt_orig_plain<>; <lb/>}; <lb/>/* SSV GSS PerMsgToken token */ <lb/>struct ssv_mic_tkn4 { <lb/>uint32_t <lb/>smt_ssv_seq; <lb/>opaque <lb/>smt_hmac<>; <lb/>}; <lb/>The field smt_hmac is an HMAC calculated by using the subkey derived <lb/>from SSV4_SUBKEY_MIC_I2T or SSV4_SUBKEY_MIC_T2I as the key, the one-<lb/>way hash algorithm as negotiated by EXCHANGE_ID, and the input text <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 74] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>as represented by data of type ssv_mic_plain_tkn4. The field <lb/>smpt_ssv_seq is the same as smt_ssv_seq. The field smpt_orig_plain <lb/>is the "message" input passed to GSS_GetMIC() (see Section 2.3.1 of <lb/>[7]). The caller of GSS_GetMIC() provides a pointer to a buffer <lb/>containing the plain text. The SSV mechanism's entry point for <lb/>GSS_GetMIC() encodes this into an opaque array, and the encoding will <lb/>include an initial four-byte length, plus any necessary padding. <lb/>Prepended to this will be the XDR encoded value of smpt_ssv_seq, thus <lb/>making up an XDR encoding of a value of data type ssv_mic_plain_tkn4, <lb/>which in turn is the input into the HMAC. <lb/>The token emitted by GSS_GetMIC() is XDR encoded and of XDR data type <lb/>ssv_mic_tkn4. The field smt_ssv_seq comes from the SSV sequence <lb/>number, which is equal to one after SET_SSV (Section 18.47) is called <lb/>the first time on a client ID. Thereafter, the SSV sequence number <lb/>is incremented on each SET_SSV. Thus, smt_ssv_seq represents the <lb/>version of the SSV at the time GSS_GetMIC() was called. As noted in <lb/>Section 18.35, the client and server can maintain multiple concurrent <lb/>versions of the SSV. This allows the SSV to be changed without <lb/>serializing all RPC calls that use the SSV mechanism with SET_SSV <lb/>operations. Once the HMAC is calculated, it is XDR encoded into <lb/>smt_hmac, which will include an initial four-byte length, and any <lb/>necessary padding. Prepended to this will be the XDR encoded value <lb/>of smt_ssv_seq. <lb/>The SealedMessage description is based on an XDR definition: <lb/>/* Input for computing ssct_encr_data and ssct_hmac */ <lb/>struct ssv_seal_plain_tkn4 { <lb/>opaque <lb/>sspt_confounder<>; <lb/>uint32_t <lb/>sspt_ssv_seq; <lb/>opaque <lb/>sspt_orig_plain<>; <lb/>opaque <lb/>sspt_pad<>; <lb/>}; <lb/>/* SSV GSS SealedMessage token */ <lb/>struct ssv_seal_cipher_tkn4 { <lb/>uint32_t <lb/>ssct_ssv_seq; <lb/>opaque <lb/>ssct_iv<>; <lb/>opaque <lb/>ssct_encr_data<>; <lb/>opaque <lb/>ssct_hmac<>; <lb/>}; <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 75] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>The token emitted by GSS_Wrap() is XDR encoded and of XDR data type <lb/>ssv_seal_cipher_tkn4. <lb/>The ssct_ssv_seq field has the same meaning as smt_ssv_seq. <lb/>The ssct_encr_data field is the result of encrypting a value of the <lb/>XDR encoded data type ssv_seal_plain_tkn4. The encryption key is the <lb/>subkey derived from SSV4_SUBKEY_SEAL_I2T or SSV4_SUBKEY_SEAL_T2I, and <lb/>the encryption algorithm is that negotiated by EXCHANGE_ID. <lb/>The ssct_iv field is the initialization vector (IV) for the <lb/>encryption algorithm (if applicable) and is sent in clear text. The <lb/>content and size of the IV MUST comply with the specification of the <lb/>encryption algorithm. For example, the id-aes256-CBC algorithm MUST <lb/>use a 16-byte initialization vector (IV), which MUST be unpredictable <lb/>for each instance of a value of data type ssv_seal_plain_tkn4 that is <lb/>encrypted with a particular SSV key. <lb/>The ssct_hmac field is the result of computing an HMAC using the <lb/>value of the XDR encoded data type ssv_seal_plain_tkn4 as the input <lb/>text. The key is the subkey derived from SSV4_SUBKEY_MIC_I2T or <lb/>SSV4_SUBKEY_MIC_T2I, and the one-way hash algorithm is that <lb/>negotiated by EXCHANGE_ID. <lb/>The sspt_confounder field is a random value. <lb/>The sspt_ssv_seq field is the same as ssvt_ssv_seq. <lb/>The field sspt_orig_plain field is the original plaintext and is the <lb/>"input_message" input passed to GSS_Wrap() (see Section 2.3.3 of <lb/>[7]). As with the handling of the plaintext by the SSV mechanism's <lb/>GSS_GetMIC() entry point, the entry point for GSS_Wrap() expects a <lb/>pointer to the plaintext, and will XDR encode an opaque array into <lb/>sspt_orig_plain representing the plain text, along with the other <lb/>fields of an instance of data type ssv_seal_plain_tkn4. <lb/>The sspt_pad field is present to support encryption algorithms that <lb/>require inputs to be in fixed-sized blocks. The content of sspt_pad <lb/>is zero filled except for the length. Beware that the XDR encoding <lb/>of ssv_seal_plain_tkn4 contains three variable-length arrays, and so <lb/>each array consumes four bytes for an array length, and each array <lb/>that follows the length is always padded to a multiple of four bytes <lb/>per the XDR standard. <lb/>For example, suppose the encryption algorithm uses 16-byte blocks, <lb/>and the sspt_confounder is three bytes long, and the sspt_orig_plain <lb/>field is 15 bytes long. The XDR encoding of sspt_confounder uses <lb/>eight bytes (4 + 3 + 1 byte pad), the XDR encoding of sspt_ssv_seq <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 76] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>uses four bytes, the XDR encoding of sspt_orig_plain uses 20 bytes (4 <lb/>+ 15 + 1 byte pad), and the smallest XDR encoding of the sspt_pad <lb/>field is four bytes. This totals 36 bytes. The next multiple of 16 <lb/>is 48; thus, the length field of sspt_pad needs to be set to 12 <lb/>bytes, or a total encoding of 16 bytes. The total number of XDR <lb/>encoded bytes is thus 8 + 4 + 20 + 16 = 48. <lb/>GSS_Wrap() emits a token that is an XDR encoding of a value of data <lb/>type ssv_seal_cipher_tkn4. Note that regardless of whether or not <lb/>the caller of GSS_Wrap() requests confidentiality, the token always <lb/>has confidentiality. This is because the SSV mechanism is for <lb/>RPCSEC_GSS, and RPCSEC_GSS never produces GSS_wrap() tokens without <lb/>confidentiality. <lb/>There is one SSV per client ID. There is a single GSS context for a <lb/>client ID / SSV pair. All SSV mechanism RPCSEC_GSS handles of a <lb/>client ID / SSV pair share the same GSS context. SSV GSS contexts do <lb/>not expire except when the SSV is destroyed (causes would include the <lb/>client ID being destroyed or a server restart). Since one purpose of <lb/>context expiration is to replace keys that have been in use for "too <lb/>long", hence vulnerable to compromise by brute force or accident, the <lb/>client can replace the SSV key by sending periodic SET_SSV <lb/>operations, which is done by cycling through different users' <lb/>RPCSEC_GSS credentials. This way, the SSV is replaced without <lb/>destroying the SSV's GSS contexts. <lb/>SSV RPCSEC_GSS handles can be expired or deleted by the server at any <lb/>time, and the EXCHANGE_ID operation can be used to create more SSV <lb/>RPCSEC_GSS handles. Expiration of SSV RPCSEC_GSS handles does not <lb/>imply that the SSV or its GSS context has expired. <lb/>The client MUST establish an SSV via SET_SSV before the SSV GSS <lb/>context can be used to emit tokens from GSS_Wrap() and GSS_GetMIC(). <lb/>If SET_SSV has not been successfully called, attempts to emit tokens <lb/>MUST fail. <lb/>The SSV mechanism does not support replay detection and sequencing in <lb/>its tokens because RPCSEC_GSS does not use those features (See <lb/>Section 5.2.2, "Context Creation Requests", in [4]). However, <lb/>Section 2.10.10 discusses special considerations for the SSV <lb/>mechanism when used with RPCSEC_GSS. <lb/>2.10.10. Security Considerations for RPCSEC_GSS When Using the SSV <lb/>Mechanism <lb/>When a client ID is created with SP4_SSV state protection (see <lb/>Section 18.35), the client is permitted to associate multiple <lb/>RPCSEC_GSS handles with the single SSV GSS context (see <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 77] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>Section 2.10.9). Because of the way RPCSEC_GSS (both version 1 and <lb/>version 2, see [4] and [9]) calculate the verifier of the reply, <lb/>special care must be taken by the implementation of the NFSv4.1 <lb/>client to prevent attacks by a man-in-the-middle. The verifier of an <lb/>RPCSEC_GSS reply is the output of GSS_GetMIC() applied to the input <lb/>value of the seq_num field of the RPCSEC_GSS credential (data type <lb/>rpc_gss_cred_ver_1_t) (see Section 5.3.3.2 of [4]). If multiple <lb/>RPCSEC_GSS handles share the same GSS context, then if one handle is <lb/>used to send a request with the same seq_num value as another handle, <lb/>an attacker could block the reply, and replace it with the verifier <lb/>used for the other handle. <lb/>There are multiple ways to prevent the attack on the SSV RPCSEC_GSS <lb/>verifier in the reply. The simplest is believed to be as follows. <lb/>o Each time one or more new SSV RPCSEC_GSS handles are created via <lb/>EXCHANGE_ID, the client SHOULD send a SET_SSV operation to modify <lb/>the SSV. By changing the SSV, the new handles will not result in <lb/>the re-use of an SSV RPCSEC_GSS verifier in a reply. <lb/>o When a requester decides to use N SSV RPCSEC_GSS handles, it <lb/>SHOULD assign a unique and non-overlapping range of seq_nums to <lb/>each SSV RPCSEC_GSS handle. The size of each range SHOULD be <lb/>equal to MAXSEQ / N (see Section 5 of [4] for the definition of <lb/>MAXSEQ). When an SSV RPCSEC_GSS handle reaches its maximum, it <lb/>SHOULD force the replier to destroy the handle by sending a NULL <lb/>RPC request with seq_num set to MAXSEQ + 1 (see Section 5.3.3.3 of <lb/>[4]). <lb/>o When the requester wants to increase or decrease N, it SHOULD <lb/>force the replier to destroy all N handles by sending a NULL RPC <lb/>request on each handle with seq_num set to MAXSEQ + 1. If the <lb/>requester is the client, it SHOULD send a SET_SSV operation before <lb/>using new handles. If the requester is the server, then the <lb/>client SHOULD send a SET_SSV operation when it detects that the <lb/>server has forced it to destroy a backchannel's SSV RPCSEC_GSS <lb/>handle. By sending a SET_SSV operation, the SSV will change, and <lb/>so the attacker will be unavailable to successfully replay a <lb/>previous verifier in a reply to the requester. <lb/>Note that if the replier carefully creates the SSV RPCSEC_GSS <lb/>handles, the related risk of a man-in-the-middle splicing a forged <lb/>SSV RPCSEC_GSS credential with a verifier for another handle does not <lb/>exist. This is because the verifier in an RPCSEC_GSS request is <lb/>computed from input that includes both the RPCSEC_GSS handle and <lb/>seq_num (see Section 5.3.1 of [4]). Provided the replier takes care <lb/>to avoid re-using the value of an RPCSEC_GSS handle that it creates, <lb/>such as by including a generation number in the handle, the man-in-<lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 78] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>the-middle will not be able to successfully replay a previous <lb/>verifier in the request to a replier. <lb/>2.10.11. Session Mechanics -Steady State <lb/>2.10.11.1. Obligations of the Server <lb/>The server has the primary obligation to monitor the state of <lb/>backchannel resources that the client has created for the server <lb/>(RPCSEC_GSS contexts and backchannel connections). If these <lb/>resources vanish, the server takes action as specified in <lb/>Section 2.10.13.2. <lb/>2.10.11.2. Obligations of the Client <lb/>The client SHOULD honor the following obligations in order to utilize <lb/>the session: <lb/>o Keep a necessary session from going idle on the server. A client <lb/>that requires a session but nonetheless is not sending operations <lb/>risks having the session be destroyed by the server. This is <lb/>because sessions consume resources, and resource limitations may <lb/>force the server to cull an inactive session. A server MAY <lb/>consider a session to be inactive if the client has not used the <lb/>session before the session inactivity timer (Section 2.10.12) has <lb/>expired. <lb/>o Destroy the session when not needed. If a client has multiple <lb/>sessions, one of which has no requests waiting for replies, and <lb/>has been idle for some period of time, it SHOULD destroy the <lb/>session. <lb/>o Maintain GSS contexts and RPCSEC_GSS handles for the backchannel. <lb/>If the client requires the server to use the RPCSEC_GSS security <lb/>flavor for callbacks, then it needs to be sure the RPCSEC_GSS <lb/>handles and/or their GSS contexts that are handed to the server <lb/>via BACKCHANNEL_CTL or CREATE_SESSION are unexpired. <lb/>o Preserve a connection for a backchannel. The server requires a <lb/>backchannel in order to gracefully recall recallable state or <lb/>notify the client of certain events. Note that if the connection <lb/>is not being used for the fore channel, there is no way for the <lb/>client to tell if the connection is still alive (e.g., the server <lb/>restarted without sending a disconnect). The onus is on the <lb/>server, not the client, to determine if the backchannel's <lb/>connection is alive, and to indicate in the response to a SEQUENCE <lb/>operation when the last connection associated with a session's <lb/>backchannel has disconnected. <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 79] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>2.10.11.3. Steps the Client Takes to Establish a Session <lb/>If the client does not have a client ID, the client sends EXCHANGE_ID <lb/>to establish a client ID. If it opts for SP4_MACH_CRED or SP4_SSV <lb/>protection, in the spo_must_enforce list of operations, it SHOULD at <lb/>minimum specify CREATE_SESSION, DESTROY_SESSION, <lb/>BIND_CONN_TO_SESSION, BACKCHANNEL_CTL, and DESTROY_CLIENTID. If it <lb/>opts for SP4_SSV protection, the client needs to ask for SSV-based <lb/>RPCSEC_GSS handles. <lb/>The client uses the client ID to send a CREATE_SESSION on a <lb/>connection to the server. The results of CREATE_SESSION indicate <lb/>whether or not the server will persist the session reply cache <lb/>through a server that has restarted, and the client notes this for <lb/>future reference. <lb/>If the client specified SP4_SSV state protection when the client ID <lb/>was created, then it SHOULD send SET_SSV in the first COMPOUND after <lb/>the session is created. Each time a new principal goes to use the <lb/>client ID, it SHOULD send a SET_SSV again. <lb/>If the client wants to use delegations, layouts, directory <lb/>notifications, or any other state that requires a backchannel, then <lb/>it needs to add a connection to the backchannel if CREATE_SESSION did <lb/>not already do so. The client creates a connection, and calls <lb/>BIND_CONN_TO_SESSION to associate the connection with the session and <lb/>the session's backchannel. If CREATE_SESSION did not already do so, <lb/>the client MUST tell the server what security is required in order <lb/>for the client to accept callbacks. The client does this via <lb/>BACKCHANNEL_CTL. If the client selected SP4_MACH_CRED or SP4_SSV <lb/>protection when it called EXCHANGE_ID, then the client SHOULD specify <lb/>that the backchannel use RPCSEC_GSS contexts for security. <lb/>If the client wants to use additional connections for the <lb/>backchannel, then it needs to call BIND_CONN_TO_SESSION on each <lb/>connection it wants to use with the session. If the client wants to <lb/>use additional connections for the fore channel, then it needs to <lb/>call BIND_CONN_TO_SESSION if it specified SP4_SSV or SP4_MACH_CRED <lb/>state protection when the client ID was created. <lb/>At this point, the session has reached steady state. <lb/>2.10.12. Session Inactivity Timer <lb/>The server MAY maintain a session inactivity timer for each session. <lb/>If the session inactivity timer expires, then the server MAY destroy <lb/>the session. To avoid losing a session due to inactivity, the client <lb/>MUST renew the session inactivity timer. The length of session <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 80] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>inactivity timer MUST NOT be less than the lease_time attribute <lb/>(Section 5.8.1.11). As with lease renewal (Section 8.3), when the <lb/>server receives a SEQUENCE operation, it resets the session <lb/>inactivity timer, and MUST NOT allow the timer to expire while the <lb/>rest of the operations in the COMPOUND procedure's request are still <lb/>executing. Once the last operation has finished, the server MUST set <lb/>the session inactivity timer to expire no sooner than the sum of the <lb/>current time and the value of the lease_time attribute. <lb/>2.10.13. Session Mechanics -Recovery <lb/>2.10.13.1. Events Requiring Client Action <lb/>The following events require client action to recover. <lb/>2.10.13.1.1. RPCSEC_GSS Context Loss by Callback Path <lb/>If all RPCSEC_GSS handles granted by the client to the server for <lb/>callback use have expired, the client MUST establish a new handle via <lb/>BACKCHANNEL_CTL. The sr_status_flags field of the SEQUENCE results <lb/>indicates when callback handles are nearly expired, or fully expired <lb/>(see Section 18.46.3). <lb/>2.10.13.1.2. Connection Loss <lb/>If the client loses the last connection of the session and wants to <lb/>retain the session, then it needs to create a new connection, and if, <lb/>when the client ID was created, BIND_CONN_TO_SESSION was specified in <lb/>the spo_must_enforce list, the client MUST use BIND_CONN_TO_SESSION <lb/>to associate the connection with the session. <lb/>If there was a request outstanding at the time of connection loss, <lb/>then if the client wants to continue to use the session, it MUST <lb/>retry the request, as described in Section 2.10.6.2. Note that it is <lb/>not necessary to retry requests over a connection with the same <lb/>source network address or the same destination network address as the <lb/>lost connection. As long as the session ID, slot ID, and sequence ID <lb/>in the retry match that of the original request, the server will <lb/>recognize the request as a retry if it executed the request prior to <lb/>disconnect. <lb/>If the connection that was lost was the last one associated with the <lb/>backchannel, and the client wants to retain the backchannel and/or <lb/>prevent revocation of recallable state, the client needs to <lb/>reconnect, and if it does, it MUST associate the connection to the <lb/>session and backchannel via BIND_CONN_TO_SESSION. The server SHOULD <lb/>indicate when it has no callback connection via the sr_status_flags <lb/>result from SEQUENCE. <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 81] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>2.10.13.1.3. Backchannel GSS Context Loss <lb/>Via the sr_status_flags result of the SEQUENCE operation or other <lb/>means, the client will learn if some or all of the RPCSEC_GSS <lb/>contexts it assigned to the backchannel have been lost. If the <lb/>client wants to retain the backchannel and/or not put recallable <lb/>state subject to revocation, the client needs to use BACKCHANNEL_CTL <lb/>to assign new contexts. <lb/>2.10.13.1.4. Loss of Session <lb/>The replier might lose a record of the session. Causes include: <lb/>o Replier failure and restart. <lb/>o A catastrophe that causes the reply cache to be corrupted or lost <lb/>on the media on which it was stored. This applies even if the <lb/>replier indicated in the CREATE_SESSION results that it would <lb/>persist the cache. <lb/>o The server purges the session of a client that has been inactive <lb/>for a very extended period of time. <lb/>o As a result of configuration changes among a set of clustered <lb/>servers, a network address previously connected to one server <lb/>becomes connected to a different server that has no knowledge of <lb/>the session in question. Such a configuration change will <lb/>generally only happen when the original server ceases to function <lb/>for a time. <lb/>Loss of reply cache is equivalent to loss of session. The replier <lb/>indicates loss of session to the requester by returning <lb/>NFS4ERR_BADSESSION on the next operation that uses the session ID <lb/>that refers to the lost session. <lb/>After an event like a server restart, the client may have lost its <lb/>connections. The client assumes for the moment that the session has <lb/>not been lost. It reconnects, and if it specified connection <lb/>association enforcement when the session was created, it invokes <lb/>BIND_CONN_TO_SESSION using the session ID. Otherwise, it invokes <lb/>SEQUENCE. If BIND_CONN_TO_SESSION or SEQUENCE returns <lb/>NFS4ERR_BADSESSION, the client knows the session is not available to <lb/>it when communicating with that network address. If the connection <lb/>survives session loss, then the next SEQUENCE operation the client <lb/>sends over the connection will get back NFS4ERR_BADSESSION. The <lb/>client again knows the session was lost. <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 82] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>Here is one suggested algorithm for the client when it gets <lb/>NFS4ERR_BADSESSION. It is not obligatory in that, if a client does <lb/>not want to take advantage of such features as trunking, it may omit <lb/>parts of it. However, it is a useful example that draws attention to <lb/>various possible recovery issues: <lb/>1. If the client has other connections to other server network <lb/>addresses associated with the same session, attempt a COMPOUND <lb/>with a single operation, SEQUENCE, on each of the other <lb/>connections. <lb/>2. If the attempts succeed, the session is still alive, and this is <lb/>a strong indicator that the server's network address has moved. <lb/>The client might send an EXCHANGE_ID on the connection that <lb/>returned NFS4ERR_BADSESSION to see if there are opportunities for <lb/>client ID trunking (i.e., the same client ID and so_major are <lb/>returned). The client might use DNS to see if the moved network <lb/>address was replaced with another, so that the performance and <lb/>availability benefits of session trunking can continue. <lb/>3. If the SEQUENCE requests fail with NFS4ERR_BADSESSION, then the <lb/>session no longer exists on any of the server network addresses <lb/>for which the client has connections associated with that session <lb/>ID. It is possible the session is still alive and available on <lb/>other network addresses. The client sends an EXCHANGE_ID on all <lb/>the connections to see if the server owner is still listening on <lb/>those network addresses. If the same server owner is returned <lb/>but a new client ID is returned, this is a strong indicator of a <lb/>server restart. If both the same server owner and same client ID <lb/>are returned, then this is a strong indication that the server <lb/>did delete the session, and the client will need to send a <lb/>CREATE_SESSION if it has no other sessions for that client ID. <lb/>If a different server owner is returned, the client can use DNS <lb/>to find other network addresses. If it does not, or if DNS does <lb/>not find any other addresses for the server, then the client will <lb/>be unable to provide NFSv4.1 service, and fatal errors should be <lb/>returned to processes that were using the server. If the client <lb/>is using a "mount" paradigm, unmounting the server is advised. <lb/>4. If the client knows of no other connections associated with the <lb/>session ID and server network addresses that are, or have been, <lb/>associated with the session ID, then the client can use DNS to <lb/>find other network addresses. If it does not, or if DNS does not <lb/>find any other addresses for the server, then the client will be <lb/>unable to provide NFSv4.1 service, and fatal errors should be <lb/>returned to processes that were using the server. If the client <lb/>is using a "mount" paradigm, unmounting the server is advised. <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 83] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>If there is a reconfiguration event that results in the same network <lb/>address being assigned to servers where the eir_server_scope value is <lb/>different, it cannot be guaranteed that a session ID generated by the <lb/>first will be recognized as invalid by the first. Therefore, in <lb/>managing server reconfigurations among servers with different server <lb/>scope values, it is necessary to make sure that all clients have <lb/>disconnected from the first server before effecting the <lb/>reconfiguration. Nonetheless, clients should not assume that servers <lb/>will always adhere to this requirement; clients MUST be prepared to <lb/>deal with unexpected effects of server reconfigurations. Even where <lb/>a session ID is inappropriately recognized as valid, it is likely <lb/>either that the connection will not be recognized as valid or that a <lb/>sequence value for a slot will not be correct. Therefore, when a <lb/>client receives results indicating such unexpected errors, the use of <lb/>EXCHANGE_ID to determine the current server configuration is <lb/>RECOMMENDED. <lb/>A variation on the above is that after a server's network address <lb/>moves, there is no NFSv4.1 server listening, e.g., no listener on <lb/>port 2049. In this example, one of the following occur: the NFSv4 <lb/>server returns NFS4ERR_MINOR_VERS_MISMATCH, the NFS server returns a <lb/>PROG_MISMATCH error, the RPC listener on 2049 returns PROG_UNVAIL, or <lb/>attempts to reconnect to the network address timeout. These SHOULD <lb/>be treated as equivalent to SEQUENCE returning NFS4ERR_BADSESSION for <lb/>these purposes. <lb/>When the client detects session loss, it needs to call CREATE_SESSION <lb/>to recover. Any non-idempotent operations that were in progress <lb/>might have been performed on the server at the time of session loss. <lb/>The client has no general way to recover from this. <lb/>Note that loss of session does not imply loss of byte-range lock, <lb/>open, delegation, or layout state because locks, opens, delegations, <lb/>and layouts are tied to the client ID and depend on the client ID, <lb/>not the session. Nor does loss of byte-range lock, open, delegation, <lb/>or layout state imply loss of session state, because the session <lb/>depends on the client ID; loss of client ID however does imply loss <lb/>of session, byte-range lock, open, delegation, and layout state. See <lb/>Section 8.4.2. A session can survive a server restart, but lock <lb/>recovery may still be needed. <lb/>It is possible that CREATE_SESSION will fail with <lb/>NFS4ERR_STALE_CLIENTID (e.g., the server restarts and does not <lb/>preserve client ID state). If so, the client needs to call <lb/>EXCHANGE_ID, followed by CREATE_SESSION. <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 84] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>2.10.13.2. Events Requiring Server Action <lb/>The following events require server action to recover. <lb/>2.10.13.2.1. Client Crash and Restart <lb/>As described in Section 18.35, a restarted client sends EXCHANGE_ID <lb/>in such a way that it causes the server to delete any sessions it <lb/>had. <lb/>2.10.13.2.2. Client Crash with No Restart <lb/>If a client crashes and never comes back, it will never send <lb/>EXCHANGE_ID with its old client owner. Thus, the server has session <lb/>state that will never be used again. After an extended period of <lb/>time, and if the server has resource constraints, it MAY destroy the <lb/>old session as well as locking state. <lb/>2.10.13.2.3. Extended Network Partition <lb/>To the server, the extended network partition may be no different <lb/>from a client crash with no restart (see Section 2.10.13.2.2). <lb/>Unless the server can discern that there is a network partition, it <lb/>is free to treat the situation as if the client has crashed <lb/>permanently. <lb/>2.10.13.2.4. Backchannel Connection Loss <lb/>If there were callback requests outstanding at the time of a <lb/>connection loss, then the server MUST retry the requests, as <lb/>described in Section 2.10.6.2. Note that it is not necessary to <lb/>retry requests over a connection with the same source network address <lb/>or the same destination network address as the lost connection. As <lb/>long as the session ID, slot ID, and sequence ID in the retry match <lb/>that of the original request, the callback target will recognize the <lb/>request as a retry even if it did see the request prior to <lb/>disconnect. <lb/>If the connection lost is the last one associated with the <lb/>backchannel, then the server MUST indicate that in the <lb/>sr_status_flags field of every SEQUENCE reply until the backchannel <lb/>is re-established. There are two situations, each of which uses <lb/>different status flags: no connectivity for the session's backchannel <lb/>and no connectivity for any session backchannel of the client. See <lb/>Section 18.46 for a description of the appropriate flags in <lb/>sr_status_flags. <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 85] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>2.10.13.2.5. GSS Context Loss <lb/>The server SHOULD monitor when the number of RPCSEC_GSS handles <lb/>assigned to the backchannel reaches one, and when that one handle is <lb/>near expiry (i.e., between one and two periods of lease time), and <lb/>indicate so in the sr_status_flags field of all SEQUENCE replies. <lb/>The server MUST indicate when all of the backchannel's assigned <lb/>RPCSEC_GSS handles have expired via the sr_status_flags field of all <lb/>SEQUENCE replies. <lb/>2.10.14. Parallel NFS and Sessions <lb/>A client and server can potentially be a non-pNFS implementation, a <lb/>metadata server implementation, a data server implementation, or two <lb/>or three types of implementations. The EXCHGID4_FLAG_USE_NON_PNFS, <lb/>EXCHGID4_FLAG_USE_PNFS_MDS, and EXCHGID4_FLAG_USE_PNFS_DS flags (not <lb/>mutually exclusive) are passed in the EXCHANGE_ID arguments and <lb/>results to allow the client to indicate how it wants to use sessions <lb/>created under the client ID, and to allow the server to indicate how <lb/>it will allow the sessions to be used. See Section 13.1 for pNFS <lb/>sessions considerations. <lb/>3. Protocol Constants and Data Types <lb/>The syntax and semantics to describe the data types of the NFSv4.1 <lb/>protocol are defined in the XDR RFC 4506 [2] and RPC RFC 5531 [3] <lb/>documents. The next sections build upon the XDR data types to define <lb/>constants, types, and structures specific to this protocol. The full <lb/>list of XDR data types is in [10]. <lb/>3.1. Basic Constants <lb/>const NFS4_FHSIZE <lb/>= 128; <lb/>const NFS4_VERIFIER_SIZE <lb/>= 8; <lb/>const NFS4_OPAQUE_LIMIT <lb/>= 1024; <lb/>const NFS4_SESSIONID_SIZE <lb/>= 16; <lb/>const NFS4_INT64_MAX <lb/>= 0x7fffffffffffffff; <lb/>const NFS4_UINT64_MAX <lb/>= 0xffffffffffffffff; <lb/>const NFS4_INT32_MAX <lb/>= 0x7fffffff; <lb/>const NFS4_UINT32_MAX <lb/>= 0xffffffff; <lb/>const NFS4_MAXFILELEN <lb/>= 0xffffffffffffffff; <lb/>const NFS4_MAXFILEOFF <lb/>= 0xfffffffffffffffe; <lb/>Except where noted, all these constants are defined in bytes. <lb/>o NFS4_FHSIZE is the maximum size of a filehandle. <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 86] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>o NFS4_VERIFIER_SIZE is the fixed size of a verifier. <lb/>o NFS4_OPAQUE_LIMIT is the maximum size of certain opaque <lb/>information. <lb/>o NFS4_SESSIONID_SIZE is the fixed size of a session identifier. <lb/>o NFS4_INT64_MAX is the maximum value of a signed 64-bit integer. <lb/>o NFS4_UINT64_MAX is the maximum value of an unsigned 64-bit <lb/>integer. <lb/>o NFS4_INT32_MAX is the maximum value of a signed 32-bit integer. <lb/>o NFS4_UINT32_MAX is the maximum value of an unsigned 32-bit <lb/>integer. <lb/>o NFS4_MAXFILELEN is the maximum length of a regular file. <lb/>o NFS4_MAXFILEOFF is the maximum offset into a regular file. <lb/>3.2. Basic Data Types <lb/>These are the base NFSv4.1 data types. <lb/>+---------------+---------------------------------------------------+ <lb/>| Data Type <lb/>| Definition <lb/>| <lb/>+---------------+---------------------------------------------------+ <lb/>| int32_t <lb/>| typedef int int32_t; <lb/>| <lb/>| uint32_t <lb/>| typedef unsigned int uint32_t; <lb/>| <lb/>| int64_t <lb/>| typedef hyper int64_t; <lb/>| <lb/>| uint64_t <lb/>| typedef unsigned hyper uint64_t; <lb/>| <lb/>| attrlist4 <lb/>| typedef opaque attrlist4<>; <lb/>| <lb/>| <lb/>| Used for file/directory attributes. <lb/>| <lb/>| bitmap4 <lb/>| typedef uint32_t bitmap4<>; <lb/>| <lb/>| <lb/>| Used in attribute array encoding. <lb/>| <lb/>| changeid4 <lb/>| typedef uint64_t changeid4; <lb/>| <lb/>| <lb/>| Used in the definition of change_info4. <lb/>| <lb/>| clientid4 <lb/>| typedef uint64_t clientid4; <lb/>| <lb/>| <lb/>| Shorthand reference to client identification. <lb/>| <lb/>| count4 <lb/>| typedef uint32_t count4; <lb/>| <lb/>| <lb/>| Various count parameters (READ, WRITE, COMMIT). <lb/>| <lb/>| length4 <lb/>| typedef uint64_t length4; <lb/>| <lb/>| <lb/>| The length of a byte-range within a file. <lb/>| <lb/>| mode4 <lb/>| typedef uint32_t mode4; <lb/>| <lb/>| <lb/>| Mode attribute data type. <lb/>| <lb/>| nfs_cookie4 <lb/>| typedef uint64_t nfs_cookie4; <lb/>| <lb/>| <lb/>| Opaque cookie value for READDIR. <lb/>| <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 87] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>| nfs_fh4 <lb/>| typedef opaque nfs_fh4<NFS4_FHSIZE>; <lb/>| <lb/>| <lb/>| Filehandle definition. <lb/>| <lb/>| nfs_ftype4 <lb/>| enum nfs_ftype4; <lb/>| <lb/>| <lb/>| Various defined file types. <lb/>| <lb/>| nfsstat4 <lb/>| enum nfsstat4; <lb/>| <lb/>| <lb/>| Return value for operations. <lb/>| <lb/>| offset4 <lb/>| typedef uint64_t offset4; <lb/>| <lb/>| <lb/>| Various offset designations (READ, WRITE, LOCK, <lb/>| <lb/>| <lb/>| COMMIT). <lb/>| <lb/>| qop4 <lb/>| typedef uint32_t qop4; <lb/>| <lb/>| <lb/>| Quality of protection designation in SECINFO. <lb/>| <lb/>| sec_oid4 <lb/>| typedef opaque sec_oid4<>; <lb/>| <lb/>| <lb/>| Security Object Identifier. The sec_oid4 data <lb/>| <lb/>| <lb/>| type is not really opaque. Instead, it contains | <lb/>| <lb/>| an ASN.1 OBJECT IDENTIFIER as used by GSS-API in | <lb/>| <lb/>| the mech_type argument to GSS_Init_sec_context. <lb/>| <lb/>| <lb/>| See [7] for details. <lb/>| <lb/>| sequenceid4 <lb/>| typedef uint32_t sequenceid4; <lb/>| <lb/>| <lb/>| Sequence number used for various session <lb/>| <lb/>| <lb/>| operations (EXCHANGE_ID, CREATE_SESSION, <lb/>| <lb/>| <lb/>| SEQUENCE, CB_SEQUENCE). <lb/>| <lb/>| seqid4 <lb/>| typedef uint32_t seqid4; <lb/>| <lb/>| <lb/>| Sequence identifier used for locking. <lb/>| <lb/>| sessionid4 <lb/>| typedef opaque sessionid4[NFS4_SESSIONID_SIZE]; <lb/>| <lb/>| <lb/>| Session identifier. <lb/>| <lb/>| slotid4 <lb/>| typedef uint32_t slotid4; <lb/>| <lb/>| <lb/>| Sequencing artifact for various session <lb/>| <lb/>| <lb/>| operations (SEQUENCE, CB_SEQUENCE). <lb/>| <lb/>| utf8string <lb/>| typedef opaque utf8string<>; <lb/>| <lb/>| <lb/>| UTF-8 encoding for strings. <lb/>| <lb/>| utf8str_cis <lb/>| typedef utf8string utf8str_cis; <lb/>| <lb/>| <lb/>| Case-insensitive UTF-8 string. <lb/>| <lb/>| utf8str_cs <lb/>| typedef utf8string utf8str_cs; <lb/>| <lb/>| <lb/>| Case-sensitive UTF-8 string. <lb/>| <lb/>| utf8str_mixed | typedef utf8string utf8str_mixed; <lb/>| <lb/>| <lb/>| UTF-8 strings with a case-sensitive prefix and a | <lb/>| <lb/>| case-insensitive suffix. <lb/>| <lb/>| component4 <lb/>| typedef utf8str_cs component4; <lb/>| <lb/>| <lb/>| Represents pathname components. <lb/>| <lb/>| linktext4 <lb/>| typedef utf8str_cs linktext4; <lb/>| <lb/>| <lb/>| Symbolic link contents ("symbolic link" is <lb/>| <lb/>| <lb/>| defined in an Open Group [11] standard). <lb/>| <lb/>| pathname4 <lb/>| typedef component4 pathname4<>; <lb/>| <lb/>| <lb/>| Represents pathname for fs_locations. <lb/>| <lb/>| verifier4 <lb/>| typedef opaque verifier4[NFS4_VERIFIER_SIZE]; <lb/>| <lb/>| <lb/>| Verifier used for various operations (COMMIT, <lb/>| <lb/>| <lb/>| CREATE, EXCHANGE_ID, OPEN, READDIR, WRITE) <lb/>| <lb/>| <lb/>| NFS4_VERIFIER_SIZE is defined as 8. <lb/>| <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 88] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>+---------------+---------------------------------------------------+ <lb/>End of Base Data Types <lb/>Table 1 <lb/>3.3. Structured Data Types <lb/>3.3.1. nfstime4 <lb/>struct nfstime4 { <lb/>int64_t <lb/>seconds; <lb/>uint32_t <lb/>nseconds; <lb/>}; <lb/>The nfstime4 data type gives the number of seconds and nanoseconds <lb/>since midnight or zero hour January 1, 1970 Coordinated Universal <lb/>Time (UTC). Values greater than zero for the seconds field denote <lb/>dates after the zero hour January 1, 1970. Values less than zero for <lb/>the seconds field denote dates before the zero hour January 1, 1970. <lb/>In both cases, the nseconds field is to be added to the seconds field <lb/>for the final time representation. For example, if the time to be <lb/>represented is one-half second before zero hour January 1, 1970, the <lb/>seconds field would have a value of negative one (-1) and the <lb/>nseconds field would have a value of one-half second (500000000). <lb/>Values greater than 999,999,999 for nseconds are invalid. <lb/>This data type is used to pass time and date information. A server <lb/>converts to and from its local representation of time when processing <lb/>time values, preserving as much accuracy as possible. If the <lb/>precision of timestamps stored for a file system object is less than <lb/>defined, loss of precision can occur. An adjunct time maintenance <lb/>protocol is RECOMMENDED to reduce client and server time skew. <lb/>3.3.2. time_how4 <lb/>enum time_how4 { <lb/>SET_TO_SERVER_TIME4 = 0, <lb/>SET_TO_CLIENT_TIME4 = 1 <lb/>}; <lb/>3.3.3. settime4 <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 89] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>union settime4 switch (time_how4 set_it) { <lb/>case SET_TO_CLIENT_TIME4: <lb/>nfstime4 <lb/>time; <lb/>default: <lb/>void; <lb/>}; <lb/>The time_how4 and settime4 data types are used for setting timestamps <lb/>in file object attributes. If set_it is SET_TO_SERVER_TIME4, then <lb/>the server uses its local representation of time for the time value. <lb/>3.3.4. specdata4 <lb/>struct specdata4 { <lb/>uint32_t specdata1; /* major device number */ <lb/>uint32_t specdata2; /* minor device number */ <lb/>}; <lb/>This data type represents the device numbers for the device file <lb/>types NF4CHR and NF4BLK. <lb/>3.3.5. fsid4 <lb/>struct fsid4 { <lb/>uint64_t <lb/>major; <lb/>uint64_t <lb/>minor; <lb/>}; <lb/>3.3.6. change_policy4 <lb/>struct change_policy4 { <lb/>uint64_t <lb/>cp_major; <lb/>uint64_t <lb/>cp_minor; <lb/>}; <lb/>The change_policy4 data type is used for the change_policy <lb/>RECOMMENDED attribute. It provides change sequencing indication <lb/>analogous to the change attribute. To enable the server to present a <lb/>value valid across server re-initialization without requiring <lb/>persistent storage, two 64-bit quantities are used, allowing one to <lb/>be a server instance ID and the second to be incremented non-<lb/>persistently, within a given server instance. <lb/>3.3.7. fattr4 <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 90] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>struct fattr4 { <lb/>bitmap4 <lb/>attrmask; <lb/>attrlist4 <lb/>attr_vals; <lb/>}; <lb/>The fattr4 data type is used to represent file and directory <lb/>attributes. <lb/>The bitmap is a counted array of 32-bit integers used to contain bit <lb/>values. The position of the integer in the array that contains bit n <lb/>can be computed from the expression (n / 32), and its bit within that <lb/>integer is (n mod 32). <lb/>0 <lb/>1 <lb/>+-----------+-----------+-----------+--<lb/>| count <lb/>| 31 .. 0 | 63 .. 32 | <lb/>+-----------+-----------+-----------+--<lb/>3.3.8. change_info4 <lb/>struct change_info4 { <lb/>bool <lb/>atomic; <lb/>changeid4 <lb/>before; <lb/>changeid4 <lb/>after; <lb/>}; <lb/>This data type is used with the CREATE, LINK, OPEN, REMOVE, and <lb/>RENAME operations to let the client know the value of the change <lb/>attribute for the directory in which the target file system object <lb/>resides. <lb/>3.3.9. netaddr4 <lb/>struct netaddr4 { <lb/>/* see struct rpcb in RFC 1833 */ <lb/>string na_r_netid<>; /* network id */ <lb/>string na_r_addr<>; /* universal address */ <lb/>}; <lb/>The netaddr4 data type is used to identify network transport <lb/>endpoints. The r_netid and r_addr fields respectively contain a <lb/>netid and uaddr. The netid and uaddr concepts are defined in [12]. <lb/>The netid and uaddr formats for TCP over IPv4 and TCP over IPv6 are <lb/>defined in [12], specifically Tables 2 and 3 and Sections 5.2.3.3 and <lb/>5.2.3.4. <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 91] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>3.3.10. state_owner4 <lb/>struct state_owner4 { <lb/>clientid4 <lb/>clientid; <lb/>opaque <lb/>owner<NFS4_OPAQUE_LIMIT>; <lb/>}; <lb/>typedef state_owner4 open_owner4; <lb/>typedef state_owner4 lock_owner4; <lb/>The state_owner4 data type is the base type for the open_owner4 <lb/>(Section 3.3.10.1) and lock_owner4 (Section 3.3.10.2). <lb/>3.3.10.1. open_owner4 <lb/>This data type is used to identify the owner of OPEN state. <lb/>3.3.10.2. lock_owner4 <lb/>This structure is used to identify the owner of byte-range locking <lb/>state. <lb/>3.3.11. open_to_lock_owner4 <lb/>struct open_to_lock_owner4 { <lb/>seqid4 <lb/>open_seqid; <lb/>stateid4 <lb/>open_stateid; <lb/>seqid4 <lb/>lock_seqid; <lb/>lock_owner4 <lb/>lock_owner; <lb/>}; <lb/>This data type is used for the first LOCK operation done for an <lb/>open_owner4. It provides both the open_stateid and lock_owner, such <lb/>that the transition is made from a valid open_stateid sequence to <lb/>that of the new lock_stateid sequence. Using this mechanism avoids <lb/>the confirmation of the lock_owner/lock_seqid pair since it is tied <lb/>to established state in the form of the open_stateid/open_seqid. <lb/>3.3.12. stateid4 <lb/>struct stateid4 { <lb/>uint32_t <lb/>seqid; <lb/>opaque <lb/>other[12]; <lb/>}; <lb/>This data type is used for the various state sharing mechanisms <lb/>between the client and server. The client never modifies a value of <lb/>data type stateid. The starting value of the "seqid" field is <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 92] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>undefined. The server is required to increment the "seqid" field by <lb/>one at each transition of the stateid. This is important since the <lb/>client will inspect the seqid in OPEN stateids to determine the order <lb/>of OPEN processing done by the server. <lb/>3.3.13. layouttype4 <lb/>enum layouttype4 { <lb/>LAYOUT4_NFSV4_1_FILES <lb/>= 0x1, <lb/>LAYOUT4_OSD2_OBJECTS <lb/>= 0x2, <lb/>LAYOUT4_BLOCK_VOLUME <lb/>= 0x3 <lb/>}; <lb/>This data type indicates what type of layout is being used. The file <lb/>server advertises the layout types it supports through the <lb/>fs_layout_type file system attribute (Section 5.12.1). A client asks <lb/>for layouts of a particular type in LAYOUTGET, and processes those <lb/>layouts in its layout-type-specific logic. <lb/>The layouttype4 data type is 32 bits in length. The range <lb/>represented by the layout type is split into three parts. Type 0x0 <lb/>is reserved. Types within the range 0x00000001-0x7FFFFFFF are <lb/>globally unique and are assigned according to the description in <lb/>Section 22.5; they are maintained by IANA. Types within the range <lb/>0x80000000-0xFFFFFFFF are site specific and for private use only. <lb/>The LAYOUT4_NFSV4_1_FILES enumeration specifies that the NFSv4.1 file <lb/>layout type, as defined in Section 13, is to be used. The <lb/>LAYOUT4_OSD2_OBJECTS enumeration specifies that the object layout, as <lb/>defined in [43], is to be used. Similarly, the LAYOUT4_BLOCK_VOLUME <lb/>enumeration specifies that the block/volume layout, as defined in <lb/>[44], is to be used. <lb/>3.3.14. deviceid4 <lb/>const NFS4_DEVICEID4_SIZE = 16; <lb/>typedef opaque deviceid4[NFS4_DEVICEID4_SIZE]; <lb/>Layout information includes device IDs that specify a storage device <lb/>through a compact handle. Addressing and type information is <lb/>obtained with the GETDEVICEINFO operation. Device IDs are not <lb/>guaranteed to be valid across metadata server restarts. A device ID <lb/>is unique per client ID and layout type. See Section 12.2.10 for <lb/>more details. <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 93] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>3.3.15. device_addr4 <lb/>struct device_addr4 { <lb/>layouttype4 <lb/>da_layout_type; <lb/>opaque <lb/>da_addr_body<>; <lb/>}; <lb/>The device address is used to set up a communication channel with the <lb/>storage device. Different layout types will require different data <lb/>types to define how they communicate with storage devices. The <lb/>opaque da_addr_body field is interpreted based on the specified <lb/>da_layout_type field. <lb/>This document defines the device address for the NFSv4.1 file layout <lb/>(see Section 13.3), which identifies a storage device by network IP <lb/>address and port number. This is sufficient for the clients to <lb/>communicate with the NFSv4.1 storage devices, and may be sufficient <lb/>for other layout types as well. Device types for object-based <lb/>storage devices and block storage devices (e.g., Small Computer <lb/>System Interface (SCSI) volume labels) are defined by their <lb/>respective layout specifications. <lb/>3.3.16. layout_content4 <lb/>struct layout_content4 { <lb/>layouttype4 loc_type; <lb/>opaque <lb/>loc_body<>; <lb/>}; <lb/>The loc_body field is interpreted based on the layout type <lb/>(loc_type). This document defines the loc_body for the NFSv4.1 file <lb/>layout type; see Section 13.3 for its definition. <lb/>3.3.17. layout4 <lb/>struct layout4 { <lb/>offset4 <lb/>lo_offset; <lb/>length4 <lb/>lo_length; <lb/>layoutiomode4 <lb/>lo_iomode; <lb/>layout_content4 <lb/>lo_content; <lb/>}; <lb/>The layout4 data type defines a layout for a file. The layout type <lb/>specific data is opaque within lo_content. Since layouts are sub-<lb/>dividable, the offset and length together with the file's filehandle, <lb/>the client ID, iomode, and layout type identify the layout. <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 94] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>3.3.18. layoutupdate4 <lb/>struct layoutupdate4 { <lb/>layouttype4 <lb/>lou_type; <lb/>opaque <lb/>lou_body<>; <lb/>}; <lb/>The layoutupdate4 data type is used by the client to return updated <lb/>layout information to the metadata server via the LAYOUTCOMMIT <lb/>(Section 18.42) operation. This data type provides a channel to pass <lb/>layout type specific information (in field lou_body) back to the <lb/>metadata server. For example, for the block/volume layout type, this <lb/>could include the list of reserved blocks that were written. The <lb/>contents of the opaque lou_body argument are determined by the layout <lb/>type. The NFSv4.1 file-based layout does not use this data type; if <lb/>lou_type is LAYOUT4_NFSV4_1_FILES, the lou_body field MUST have a <lb/>zero length. <lb/>3.3.19. layouthint4 <lb/>struct layouthint4 { <lb/>layouttype4 <lb/>loh_type; <lb/>opaque <lb/>loh_body<>; <lb/>}; <lb/>The layouthint4 data type is used by the client to pass in a hint <lb/>about the type of layout it would like created for a particular file. <lb/>It is the data type specified by the layout_hint attribute described <lb/>in Section 5.12.4. The metadata server may ignore the hint or may <lb/>selectively ignore fields within the hint. This hint should be <lb/>provided at create time as part of the initial attributes within <lb/>OPEN. The loh_body field is specific to the type of layout <lb/>(loh_type). The NFSv4.1 file-based layout uses the <lb/>nfsv4_1_file_layouthint4 data type as defined in Section 13.3. <lb/>3.3.20. layoutiomode4 <lb/>enum layoutiomode4 { <lb/>LAYOUTIOMODE4_READ <lb/>= 1, <lb/>LAYOUTIOMODE4_RW <lb/>= 2, <lb/>LAYOUTIOMODE4_ANY <lb/>= 3 <lb/>}; <lb/>The iomode specifies whether the client intends to just read or both <lb/>read and write the data represented by the layout. While the <lb/>LAYOUTIOMODE4_ANY iomode MUST NOT be used in the arguments to the <lb/>LAYOUTGET operation, it MAY be used in the arguments to the <lb/>LAYOUTRETURN and CB_LAYOUTRECALL operations. The LAYOUTIOMODE4_ANY <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 95] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>iomode specifies that layouts pertaining to both LAYOUTIOMODE4_READ <lb/>and LAYOUTIOMODE4_RW iomodes are being returned or recalled, <lb/>respectively. The metadata server's use of the iomode may depend on <lb/>the layout type being used. The storage devices MAY validate I/O <lb/>accesses against the iomode and reject invalid accesses. <lb/>3.3.21. nfs_impl_id4 <lb/>struct nfs_impl_id4 { <lb/>utf8str_cis <lb/>nii_domain; <lb/>utf8str_cs <lb/>nii_name; <lb/>nfstime4 <lb/>nii_date; <lb/>}; <lb/>This data type is used to identify client and server implementation <lb/>details. The nii_domain field is the DNS domain name with which the <lb/>implementor is associated. The nii_name field is the product name of <lb/>the implementation and is completely free form. It is RECOMMENDED <lb/>that the nii_name be used to distinguish machine architecture, <lb/>machine platforms, revisions, versions, and patch levels. The <lb/>nii_date field is the timestamp of when the software instance was <lb/>published or built. <lb/>3.3.22. threshold_item4 <lb/>struct threshold_item4 { <lb/>layouttype4 <lb/>thi_layout_type; <lb/>bitmap4 <lb/>thi_hintset; <lb/>opaque <lb/>thi_hintlist<>; <lb/>}; <lb/>This data type contains a list of hints specific to a layout type for <lb/>helping the client determine when it should send I/O directly through <lb/>the metadata server versus the storage devices. The data type <lb/>consists of the layout type (thi_layout_type), a bitmap (thi_hintset) <lb/>describing the set of hints supported by the server (they may differ <lb/>based on the layout type), and a list of hints (thi_hintlist) whose <lb/>content is determined by the hintset bitmap. See the mdsthreshold <lb/>attribute for more details. <lb/>The thi_hintset field is a bitmap of the following values: <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 96] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>+-------------------------+---+---------+---------------------------+ <lb/>| name <lb/>| # | Data <lb/>| Description <lb/>| <lb/>| <lb/>| <lb/>| Type <lb/>| <lb/>| <lb/>+-------------------------+---+---------+---------------------------+ <lb/>| threshold4_read_size <lb/>| 0 | length4 | If a file's length is <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| less than the value of <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| threshold4_read_size, <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| then it is RECOMMENDED <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| that the client read from | <lb/>| <lb/>| <lb/>| <lb/>| the file via the MDS and | <lb/>| <lb/>| <lb/>| <lb/>| not a storage device. <lb/>| <lb/>| threshold4_write_size <lb/>| 1 | length4 | If a file's length is <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| less than the value of <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| threshold4_write_size, <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| then it is RECOMMENDED <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| that the client write to | <lb/>| <lb/>| <lb/>| <lb/>| the file via the MDS and | <lb/>| <lb/>| <lb/>| <lb/>| not a storage device. <lb/>| <lb/>| threshold4_read_iosize | 2 | length4 | For read I/O sizes below | <lb/>| <lb/>| <lb/>| <lb/>| this threshold, it is <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| RECOMMENDED to read data | <lb/>| <lb/>| <lb/>| <lb/>| through the MDS. <lb/>| <lb/>| threshold4_write_iosize | 3 | length4 | For write I/O sizes below | <lb/>| <lb/>| <lb/>| <lb/>| this threshold, it is <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| RECOMMENDED to write data | <lb/>| <lb/>| <lb/>| <lb/>| through the MDS. <lb/>| <lb/>+-------------------------+---+---------+---------------------------+ <lb/>3.3.23. mdsthreshold4 <lb/>struct mdsthreshold4 { <lb/>threshold_item4 mth_hints<>; <lb/>}; <lb/>This data type holds an array of elements of data type <lb/>threshold_item4, each of which is valid for a particular layout type. <lb/>An array is necessary because a server can support multiple layout <lb/>types for a single file. <lb/>4. Filehandles <lb/>The filehandle in the NFS protocol is a per-server unique identifier <lb/>for a file system object. The contents of the filehandle are opaque <lb/>to the client. Therefore, the server is responsible for translating <lb/>the filehandle to an internal representation of the file system <lb/>object. <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 97] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>4.1. Obtaining the First Filehandle <lb/>The operations of the NFS protocol are defined in terms of one or <lb/>more filehandles. Therefore, the client needs a filehandle to <lb/>initiate communication with the server. With the NFSv3 protocol (RFC <lb/>1813 [34]), there exists an ancillary protocol to obtain this first <lb/>filehandle. The MOUNT protocol, RPC program number 100005, provides <lb/>the mechanism of translating a string-based file system pathname to a <lb/>filehandle, which can then be used by the NFS protocols. <lb/>The MOUNT protocol has deficiencies in the area of security and use <lb/>via firewalls. This is one reason that the use of the public <lb/>filehandle was introduced in RFC 2054 [45] and RFC 2055 [46]. With <lb/>the use of the public filehandle in combination with the LOOKUP <lb/>operation in the NFSv3 protocol, it has been demonstrated that the <lb/>MOUNT protocol is unnecessary for viable interaction between NFS <lb/>client and server. <lb/>Therefore, the NFSv4.1 protocol will not use an ancillary protocol <lb/>for translation from string-based pathnames to a filehandle. Two <lb/>special filehandles will be used as starting points for the NFS <lb/>client. <lb/>4.1.1. Root Filehandle <lb/>The first of the special filehandles is the ROOT filehandle. The <lb/>ROOT filehandle is the "conceptual" root of the file system namespace <lb/>at the NFS server. The client uses or starts with the ROOT <lb/>filehandle by employing the PUTROOTFH operation. The PUTROOTFH <lb/>operation instructs the server to set the "current" filehandle to the <lb/>ROOT of the server's file tree. Once this PUTROOTFH operation is <lb/>used, the client can then traverse the entirety of the server's file <lb/>tree with the LOOKUP operation. A complete discussion of the server <lb/>namespace is in Section 7. <lb/>4.1.2. Public Filehandle <lb/>The second special filehandle is the PUBLIC filehandle. Unlike the <lb/>ROOT filehandle, the PUBLIC filehandle may be bound or represent an <lb/>arbitrary file system object at the server. The server is <lb/>responsible for this binding. It may be that the PUBLIC filehandle <lb/>and the ROOT filehandle refer to the same file system object. <lb/>However, it is up to the administrative software at the server and <lb/>the policies of the server administrator to define the binding of the <lb/>PUBLIC filehandle and server file system object. The client may not <lb/>make any assumptions about this binding. The client uses the PUBLIC <lb/>filehandle via the PUTPUBFH operation. <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 98] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>4.2. Filehandle Types <lb/>In the NFSv3 protocol, there was one type of filehandle with a single <lb/>set of semantics. This type of filehandle is termed "persistent" in <lb/>NFSv4.1. The semantics of a persistent filehandle remain the same as <lb/>before. A new type of filehandle introduced in NFSv4.1 is the <lb/>"volatile" filehandle, which attempts to accommodate certain server <lb/>environments. <lb/>The volatile filehandle type was introduced to address server <lb/>functionality or implementation issues that make correct <lb/>implementation of a persistent filehandle infeasible. Some server <lb/>environments do not provide a file-system-level invariant that can be <lb/>used to construct a persistent filehandle. The underlying server <lb/>file system may not provide the invariant or the server's file system <lb/>programming interfaces may not provide access to the needed <lb/>invariant. Volatile filehandles may ease the implementation of <lb/>server functionality such as hierarchical storage management or file <lb/>system reorganization or migration. However, the volatile filehandle <lb/>increases the implementation burden for the client. <lb/>Since the client will need to handle persistent and volatile <lb/>filehandles differently, a file attribute is defined that may be used <lb/>by the client to determine the filehandle types being returned by the <lb/>server. <lb/>4.2.1. General Properties of a Filehandle <lb/>The filehandle contains all the information the server needs to <lb/>distinguish an individual file. To the client, the filehandle is <lb/>opaque. The client stores filehandles for use in a later request and <lb/>can compare two filehandles from the same server for equality by <lb/>doing a byte-by-byte comparison. However, the client MUST NOT <lb/>otherwise interpret the contents of filehandles. If two filehandles <lb/>from the same server are equal, they MUST refer to the same file. <lb/>Servers SHOULD try to maintain a one-to-one correspondence between <lb/>filehandles and files, but this is not required. Clients MUST use <lb/>filehandle comparisons only to improve performance, not for correct <lb/>behavior. All clients need to be prepared for situations in which it <lb/>cannot be determined whether two filehandles denote the same object <lb/>and in such cases, avoid making invalid assumptions that might cause <lb/>incorrect behavior. Further discussion of filehandle and attribute <lb/>comparison in the context of data caching is presented in <lb/>Section 10.3.4. <lb/>As an example, in the case that two different pathnames when <lb/>traversed at the server terminate at the same file system object, the <lb/>server SHOULD return the same filehandle for each path. This can <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 99] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>occur if a hard link (see [6]) is used to create two file names that <lb/>refer to the same underlying file object and associated data. For <lb/>example, if paths /a/b/c and /a/d/c refer to the same file, the <lb/>server SHOULD return the same filehandle for both pathnames' <lb/>traversals. <lb/>4.2.2. Persistent Filehandle <lb/>A persistent filehandle is defined as having a fixed value for the <lb/>lifetime of the file system object to which it refers. Once the <lb/>server creates the filehandle for a file system object, the server <lb/>MUST accept the same filehandle for the object for the lifetime of <lb/>the object. If the server restarts, the NFS server MUST honor the <lb/>same filehandle value as it did in the server's previous <lb/>instantiation. Similarly, if the file system is migrated, the new <lb/>NFS server MUST honor the same filehandle as the old NFS server. <lb/>The persistent filehandle will be become stale or invalid when the <lb/>file system object is removed. When the server is presented with a <lb/>persistent filehandle that refers to a deleted object, it MUST return <lb/>an error of NFS4ERR_STALE. A filehandle may become stale when the <lb/>file system containing the object is no longer available. The file <lb/>system may become unavailable if it exists on removable media and the <lb/>media is no longer available at the server or the file system in <lb/>whole has been destroyed or the file system has simply been removed <lb/>from the server's namespace (i.e., unmounted in a UNIX environment). <lb/>4.2.3. Volatile Filehandle <lb/>A volatile filehandle does not share the same longevity <lb/>characteristics of a persistent filehandle. The server may determine <lb/>that a volatile filehandle is no longer valid at many different <lb/>points in time. If the server can definitively determine that a <lb/>volatile filehandle refers to an object that has been removed, the <lb/>server should return NFS4ERR_STALE to the client (as is the case for <lb/>persistent filehandles). In all other cases where the server <lb/>determines that a volatile filehandle can no longer be used, it <lb/>should return an error of NFS4ERR_FHEXPIRED. <lb/>The REQUIRED attribute "fh_expire_type" is used by the client to <lb/>determine what type of filehandle the server is providing for a <lb/>particular file system. This attribute is a bitmask with the <lb/>following values: <lb/>FH4_PERSISTENT The value of FH4_PERSISTENT is used to indicate a <lb/>persistent filehandle, which is valid until the object is removed <lb/>from the file system. The server will not return <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 100] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>NFS4ERR_FHEXPIRED for this filehandle. FH4_PERSISTENT is defined <lb/>as a value in which none of the bits specified below are set. <lb/>FH4_VOLATILE_ANY The filehandle may expire at any time, except as <lb/>specifically excluded (i.e., FH4_NO_EXPIRE_WITH_OPEN). <lb/>FH4_NOEXPIRE_WITH_OPEN May only be set when FH4_VOLATILE_ANY is set. <lb/>If this bit is set, then the meaning of FH4_VOLATILE_ANY is <lb/>qualified to exclude any expiration of the filehandle when it is <lb/>open. <lb/>FH4_VOL_MIGRATION The filehandle will expire as a result of a file <lb/>system transition (migration or replication), in those cases in <lb/>which the continuity of filehandle use is not specified by handle <lb/>class information within the fs_locations_info attribute. When <lb/>this bit is set, clients without access to fs_locations_info <lb/>information should assume that filehandles will expire on file <lb/>system transitions. <lb/>FH4_VOL_RENAME The filehandle will expire during rename. This <lb/>includes a rename by the requesting client or a rename by any <lb/>other client. If FH4_VOL_ANY is set, FH4_VOL_RENAME is redundant. <lb/>Servers that provide volatile filehandles that can expire while open <lb/>require special care as regards handling of RENAMEs and REMOVEs. <lb/>This situation can arise if FH4_VOL_MIGRATION or FH4_VOL_RENAME is <lb/>set, if FH4_VOLATILE_ANY is set and FH4_NOEXPIRE_WITH_OPEN is not <lb/>set, or if a non-read-only file system has a transition target in a <lb/>different handle class. In these cases, the server should deny a <lb/>RENAME or REMOVE that would affect an OPEN file of any of the <lb/>components leading to the OPEN file. In addition, the server should <lb/>deny all RENAME or REMOVE requests during the grace period, in order <lb/>to make sure that reclaims of files where filehandles may have <lb/>expired do not do a reclaim for the wrong file. <lb/>Volatile filehandles are especially suitable for implementation of <lb/>the pseudo file systems used to bridge exports. See Section 7.5 for <lb/>a discussion of this. <lb/>4.3. One Method of Constructing a Volatile Filehandle <lb/>A volatile filehandle, while opaque to the client, could contain: <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 101] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>[volatile bit = 1 | server boot time | slot | generation number] <lb/>o slot is an index in the server volatile filehandle table <lb/>o generation number is the generation number for the table entry/ <lb/>slot <lb/>When the client presents a volatile filehandle, the server makes the <lb/>following checks, which assume that the check for the volatile bit <lb/>has passed. If the server boot time is less than the current server <lb/>boot time, return NFS4ERR_FHEXPIRED. If slot is out of range, return <lb/>NFS4ERR_BADHANDLE. If the generation number does not match, return <lb/>NFS4ERR_FHEXPIRED. <lb/>When the server restarts, the table is gone (it is volatile). <lb/>If the volatile bit is 0, then it is a persistent filehandle with a <lb/>different structure following it. <lb/>4.4. Client Recovery from Filehandle Expiration <lb/>If possible, the client SHOULD recover from the receipt of an <lb/>NFS4ERR_FHEXPIRED error. The client must take on additional <lb/>responsibility so that it may prepare itself to recover from the <lb/>expiration of a volatile filehandle. If the server returns <lb/>persistent filehandles, the client does not need these additional <lb/>steps. <lb/>For volatile filehandles, most commonly the client will need to store <lb/>the component names leading up to and including the file system <lb/>object in question. With these names, the client should be able to <lb/>recover by finding a filehandle in the namespace that is still <lb/>available or by starting at the root of the server's file system <lb/>namespace. <lb/>If the expired filehandle refers to an object that has been removed <lb/>from the file system, obviously the client will not be able to <lb/>recover from the expired filehandle. <lb/>It is also possible that the expired filehandle refers to a file that <lb/>has been renamed. If the file was renamed by another client, again <lb/>it is possible that the original client will not be able to recover. <lb/>However, in the case that the client itself is renaming the file and <lb/>the file is open, it is possible that the client may be able to <lb/>recover. The client can determine the new pathname based on the <lb/>processing of the rename request. The client can then regenerate the <lb/>new filehandle based on the new pathname. The client could also use <lb/>the COMPOUND procedure to construct a series of operations like: <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 102] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>RENAME A B <lb/>LOOKUP B <lb/>GETFH <lb/>Note that the COMPOUND procedure does not provide atomicity. This <lb/>example only reduces the overhead of recovering from an expired <lb/>filehandle. <lb/>5. File Attributes <lb/>To meet the requirements of extensibility and increased <lb/>interoperability with non-UNIX platforms, attributes need to be <lb/>handled in a flexible manner. The NFSv3 fattr3 structure contains a <lb/>fixed list of attributes that not all clients and servers are able to <lb/>support or care about. The fattr3 structure cannot be extended as <lb/>new needs arise and it provides no way to indicate non-support. With <lb/>the NFSv4.1 protocol, the client is able to query what attributes the <lb/>server supports and construct requests with only those supported <lb/>attributes (or a subset thereof). <lb/>To this end, attributes are divided into three groups: REQUIRED, <lb/>RECOMMENDED, and named. Both REQUIRED and RECOMMENDED attributes are <lb/>supported in the NFSv4.1 protocol by a specific and well-defined <lb/>encoding and are identified by number. They are requested by setting <lb/>a bit in the bit vector sent in the GETATTR request; the server <lb/>response includes a bit vector to list what attributes were returned <lb/>in the response. New REQUIRED or RECOMMENDED attributes may be added <lb/>to the NFSv4 protocol as part of a new minor version by publishing a <lb/>Standards Track RFC that allocates a new attribute number value and <lb/>defines the encoding for the attribute. See Section 2.7 for further <lb/>discussion. <lb/>Named attributes are accessed by the new OPENATTR operation, which <lb/>accesses a hidden directory of attributes associated with a file <lb/>system object. OPENATTR takes a filehandle for the object and <lb/>returns the filehandle for the attribute hierarchy. The filehandle <lb/>for the named attributes is a directory object accessible by LOOKUP <lb/>or READDIR and contains files whose names represent the named <lb/>attributes and whose data bytes are the value of the attribute. For <lb/>example: <lb/>+----------+-----------+---------------------------------+ <lb/>| LOOKUP <lb/>| "foo" <lb/>| ; look up file <lb/>| <lb/>| GETATTR | attrbits | <lb/>| <lb/>| OPENATTR | <lb/>| ; access foo's named attributes | <lb/>| LOOKUP <lb/>| "x11icon" | ; look up specific attribute <lb/>| <lb/>| READ <lb/>| 0,4096 <lb/>| ; read stream of bytes <lb/>| <lb/>+----------+-----------+---------------------------------+ <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 103] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>Named attributes are intended for data needed by applications rather <lb/>than by an NFS client implementation. NFS implementors are strongly <lb/>encouraged to define their new attributes as RECOMMENDED attributes <lb/>by bringing them to the IETF Standards Track process. <lb/>The set of attributes that are classified as REQUIRED is deliberately <lb/>small since servers need to do whatever it takes to support them. A <lb/>server should support as many of the RECOMMENDED attributes as <lb/>possible but, by their definition, the server is not required to <lb/>support all of them. Attributes are deemed REQUIRED if the data is <lb/>both needed by a large number of clients and is not otherwise <lb/>reasonably computable by the client when support is not provided on <lb/>the server. <lb/>Note that the hidden directory returned by OPENATTR is a convenience <lb/>for protocol processing. The client should not make any assumptions <lb/>about the server's implementation of named attributes and whether or <lb/>not the underlying file system at the server has a named attribute <lb/>directory. Therefore, operations such as SETATTR and GETATTR on the <lb/>named attribute directory are undefined. <lb/>5.1. REQUIRED Attributes <lb/>These MUST be supported by every NFSv4.1 client and server in order <lb/>to ensure a minimum level of interoperability. The server MUST store <lb/>and return these attributes, and the client MUST be able to function <lb/>with an attribute set limited to these attributes. With just the <lb/>REQUIRED attributes some client functionality may be impaired or <lb/>limited in some ways. A client may ask for any of these attributes <lb/>to be returned by setting a bit in the GETATTR request, and the <lb/>server MUST return their value. <lb/>5.2. RECOMMENDED Attributes <lb/>These attributes are understood well enough to warrant support in the <lb/>NFSv4.1 protocol. However, they may not be supported on all clients <lb/>and servers. A client may ask for any of these attributes to be <lb/>returned by setting a bit in the GETATTR request but must handle the <lb/>case where the server does not return them. A client MAY ask for the <lb/>set of attributes the server supports and SHOULD NOT request <lb/>attributes the server does not support. A server should be tolerant <lb/>of requests for unsupported attributes and simply not return them <lb/>rather than considering the request an error. It is expected that <lb/>servers will support all attributes they comfortably can and only <lb/>fail to support attributes that are difficult to support in their <lb/>operating environments. A server should provide attributes whenever <lb/>they don't have to "tell lies" to the client. For example, a file <lb/>modification time should be either an accurate time or should not be <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 104] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>supported by the server. At times this will be difficult for <lb/>clients, but a client is better positioned to decide whether and how <lb/>to fabricate or construct an attribute or whether to do without the <lb/>attribute. <lb/>5.3. Named Attributes <lb/>These attributes are not supported by direct encoding in the NFSv4 <lb/>protocol but are accessed by string names rather than numbers and <lb/>correspond to an uninterpreted stream of bytes that are stored with <lb/>the file system object. The namespace for these attributes may be <lb/>accessed by using the OPENATTR operation. The OPENATTR operation <lb/>returns a filehandle for a virtual "named attribute directory", and <lb/>further perusal and modification of the namespace may be done using <lb/>operations that work on more typical directories. In particular, <lb/>READDIR may be used to get a list of such named attributes, and <lb/>LOOKUP and OPEN may select a particular attribute. Creation of a new <lb/>named attribute may be the result of an OPEN specifying file <lb/>creation. <lb/>Once an OPEN is done, named attributes may be examined and changed by <lb/>normal READ and WRITE operations using the filehandles and stateids <lb/>returned by OPEN. <lb/>Named attributes and the named attribute directory may have their own <lb/>(non-named) attributes. Each of these objects MUST have all of the <lb/>REQUIRED attributes and may have additional RECOMMENDED attributes. <lb/>However, the set of attributes for named attributes and the named <lb/>attribute directory need not be, and typically will not be, as large <lb/>as that for other objects in that file system. <lb/>Named attributes and the named attribute directory might be the <lb/>target of delegations (in the case of the named attribute directory, <lb/>these will be directory delegations). However, since granting <lb/>delegations is at the server's discretion, a server need not support <lb/>delegations on named attributes or the named attribute directory. <lb/>It is RECOMMENDED that servers support arbitrary named attributes. A <lb/>client should not depend on the ability to store any named attributes <lb/>in the server's file system. If a server does support named <lb/>attributes, a client that is also able to handle them should be able <lb/>to copy a file's data and metadata with complete transparency from <lb/>one location to another; this would imply that names allowed for <lb/>regular directory entries are valid for named attribute names as <lb/>well. <lb/>In NFSv4.1, the structure of named attribute directories is <lb/>restricted in a number of ways, in order to prevent the development <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 105] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>of non-interoperable implementations in which some servers support a <lb/>fully general hierarchical directory structure for named attributes <lb/>while others support a limited but adequate structure for named <lb/>attributes. In such an environment, clients or applications might <lb/>come to depend on non-portable extensions. The restrictions are: <lb/>o CREATE is not allowed in a named attribute directory. Thus, such <lb/>objects as symbolic links and special files are not allowed to be <lb/>named attributes. Further, directories may not be created in a <lb/>named attribute directory, so no hierarchical structure of named <lb/>attributes for a single object is allowed. <lb/>o If OPENATTR is done on a named attribute directory or on a named <lb/>attribute, the server MUST return NFS4ERR_WRONG_TYPE. <lb/>o Doing a RENAME of a named attribute to a different named attribute <lb/>directory or to an ordinary (i.e., non-named-attribute) directory <lb/>is not allowed. <lb/>o Creating hard links between named attribute directories or between <lb/>named attribute directories and ordinary directories is not <lb/>allowed. <lb/>Names of attributes will not be controlled by this document or other <lb/>IETF Standards Track documents. See Section 22.2 for further <lb/>discussion. <lb/>5.4. Classification of Attributes <lb/>Each of the REQUIRED and RECOMMENDED attributes can be classified in <lb/>one of three categories: per server (i.e., the value of the attribute <lb/>will be the same for all file objects that share the same server <lb/>owner; see Section 2.5 for a definition of server owner), per file <lb/>system (i.e., the value of the attribute will be the same for some or <lb/>all file objects that share the same fsid attribute (Section 5.8.1.9) <lb/>and server owner), or per file system object. Note that it is <lb/>possible that some per file system attributes may vary within the <lb/>file system, depending on the value of the "homogeneous" <lb/>(Section 5.8.2.16) attribute. Note that the attributes <lb/>time_access_set and time_modify_set are not listed in this section <lb/>because they are write-only attributes corresponding to time_access <lb/>and time_modify, and are used in a special instance of SETATTR. <lb/>o The per-server attribute is: <lb/>lease_time <lb/>o The per-file system attributes are: <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 106] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>supported_attrs, suppattr_exclcreat, fh_expire_type, <lb/>link_support, symlink_support, unique_handles, aclsupport, <lb/>cansettime, case_insensitive, case_preserving, <lb/>chown_restricted, files_avail, files_free, files_total, <lb/>fs_locations, homogeneous, maxfilesize, maxname, maxread, <lb/>maxwrite, no_trunc, space_avail, space_free, space_total, <lb/>time_delta, change_policy, fs_status, fs_layout_type, <lb/>fs_locations_info, fs_charset_cap <lb/>o The per-file system object attributes are: <lb/>type, change, size, named_attr, fsid, rdattr_error, filehandle, <lb/>acl, archive, fileid, hidden, maxlink, mimetype, mode, <lb/>numlinks, owner, owner_group, rawdev, space_used, system, <lb/>time_access, time_backup, time_create, time_metadata, <lb/>time_modify, mounted_on_fileid, dir_notif_delay, <lb/>dirent_notif_delay, dacl, sacl, layout_type, layout_hint, <lb/>layout_blksize, layout_alignment, mdsthreshold, retention_get, <lb/>retention_set, retentevt_get, retentevt_set, retention_hold, <lb/>mode_set_masked <lb/>For quota_avail_hard, quota_avail_soft, and quota_used, see their <lb/>definitions below for the appropriate classification. <lb/>5.5. Set-Only and Get-Only Attributes <lb/>Some REQUIRED and RECOMMENDED attributes are set-only; i.e., they can <lb/>be set via SETATTR but not retrieved via GETATTR. Similarly, some <lb/>REQUIRED and RECOMMENDED attributes are get-only; i.e., they can be <lb/>retrieved via GETATTR but not set via SETATTR. If a client attempts <lb/>to set a get-only attribute or get a set-only attributes, the server <lb/>MUST return NFS4ERR_INVAL. <lb/>5.6. REQUIRED Attributes -List and Definition References <lb/>The list of REQUIRED attributes appears in Table 2. The meaning of <lb/>the columns of the table are: <lb/>o Name: The name of the attribute. <lb/>o Id: The number assigned to the attribute. In the event of <lb/>conflicts between the assigned number and [10], the latter is <lb/>likely authoritative, but should be resolved with Errata to this <lb/>document and/or [10]. See [47] for the Errata process. <lb/>o Data Type: The XDR data type of the attribute. <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 107] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>o Acc: Access allowed to the attribute. R means read-only (GETATTR <lb/>may retrieve, SETATTR may not set). W means write-only (SETATTR <lb/>may set, GETATTR may not retrieve). R W means read/write (GETATTR <lb/>may retrieve, SETATTR may set). <lb/>o Defined in: The section of this specification that describes the <lb/>attribute. <lb/>+--------------------+----+------------+-----+-------------------+ <lb/>| Name <lb/>| Id | Data Type | Acc | Defined in: <lb/>| <lb/>+--------------------+----+------------+-----+-------------------+ <lb/>| supported_attrs <lb/>| 0 | bitmap4 <lb/>| R <lb/>| Section 5.8.1.1 <lb/>| <lb/>| type <lb/>| 1 | nfs_ftype4 | R <lb/>| Section 5.8.1.2 <lb/>| <lb/>| fh_expire_type <lb/>| 2 | uint32_t <lb/>| R <lb/>| Section 5.8.1.3 <lb/>| <lb/>| change <lb/>| 3 | uint64_t <lb/>| R <lb/>| Section 5.8.1.4 <lb/>| <lb/>| size <lb/>| 4 | uint64_t <lb/>| R W | Section 5.8.1.5 <lb/>| <lb/>| link_support <lb/>| 5 | bool <lb/>| R <lb/>| Section 5.8.1.6 <lb/>| <lb/>| symlink_support <lb/>| 6 | bool <lb/>| R <lb/>| Section 5.8.1.7 <lb/>| <lb/>| named_attr <lb/>| 7 | bool <lb/>| R <lb/>| Section 5.8.1.8 <lb/>| <lb/>| fsid <lb/>| 8 | fsid4 <lb/>| R <lb/>| Section 5.8.1.9 <lb/>| <lb/>| unique_handles <lb/>| 9 | bool <lb/>| R <lb/>| Section 5.8.1.10 | <lb/>| lease_time <lb/>| 10 | nfs_lease4 | R <lb/>| Section 5.8.1.11 | <lb/>| rdattr_error <lb/>| 11 | enum <lb/>| R <lb/>| Section 5.8.1.12 | <lb/>| filehandle <lb/>| 19 | nfs_fh4 <lb/>| R <lb/>| Section 5.8.1.13 | <lb/>| suppattr_exclcreat | 75 | bitmap4 <lb/>| R <lb/>| Section 5.8.1.14 | <lb/>+--------------------+----+------------+-----+-------------------+ <lb/>Table 2 <lb/>5.7. RECOMMENDED Attributes -List and Definition References <lb/>The RECOMMENDED attributes are defined in Table 3. The meanings of <lb/>the column headers are the same as Table 2; see Section 5.6 for the <lb/>meanings. <lb/>+--------------------+----+----------------+-----+------------------+ <lb/>| Name <lb/>| Id | Data Type <lb/>| Acc | Defined in: <lb/>| <lb/>+--------------------+----+----------------+-----+------------------+ <lb/>| acl <lb/>| 12 | nfsace4<> <lb/>| R W | Section 6.2.1 <lb/>| <lb/>| aclsupport <lb/>| 13 | uint32_t <lb/>| R <lb/>| Section 6.2.1.2 | <lb/>| archive <lb/>| 14 | bool <lb/>| R W | Section 5.8.2.1 | <lb/>| cansettime <lb/>| 15 | bool <lb/>| R <lb/>| Section 5.8.2.2 | <lb/>| case_insensitive <lb/>| 16 | bool <lb/>| R <lb/>| Section 5.8.2.3 | <lb/>| case_preserving <lb/>| 17 | bool <lb/>| R <lb/>| Section 5.8.2.4 | <lb/>| change_policy <lb/>| 60 | chg_policy4 <lb/>| R <lb/>| Section 5.8.2.5 | <lb/>| chown_restricted <lb/>| 18 | bool <lb/>| R <lb/>| Section 5.8.2.6 | <lb/>| dacl <lb/>| 58 | nfsacl41 <lb/>| R W | Section 6.2.2 <lb/>| <lb/>| dir_notif_delay <lb/>| 56 | nfstime4 <lb/>| R <lb/>| Section 5.11.1 <lb/>| <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 108] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>| dirent_notif_delay | 57 | nfstime4 <lb/>| R <lb/>| Section 5.11.2 <lb/>| <lb/>| fileid <lb/>| 20 | uint64_t <lb/>| R <lb/>| Section 5.8.2.7 | <lb/>| files_avail <lb/>| 21 | uint64_t <lb/>| R <lb/>| Section 5.8.2.8 | <lb/>| files_free <lb/>| 22 | uint64_t <lb/>| R <lb/>| Section 5.8.2.9 | <lb/>| files_total <lb/>| 23 | uint64_t <lb/>| R <lb/>| Section 5.8.2.10 | <lb/>| fs_charset_cap <lb/>| 76 | uint32_t <lb/>| R <lb/>| Section 5.8.2.11 | <lb/>| fs_layout_type <lb/>| 62 | layouttype4<> | R <lb/>| Section 5.12.1 <lb/>| <lb/>| fs_locations <lb/>| 24 | fs_locations <lb/>| R <lb/>| Section 5.8.2.12 | <lb/>| fs_locations_info | 67 | * <lb/>| R <lb/>| Section 5.8.2.13 | <lb/>| fs_status <lb/>| 61 | fs4_status <lb/>| R <lb/>| Section 5.8.2.14 | <lb/>| hidden <lb/>| 25 | bool <lb/>| R W | Section 5.8.2.15 | <lb/>| homogeneous <lb/>| 26 | bool <lb/>| R <lb/>| Section 5.8.2.16 | <lb/>| layout_alignment <lb/>| 66 | uint32_t <lb/>| R <lb/>| Section 5.12.2 <lb/>| <lb/>| layout_blksize <lb/>| 65 | uint32_t <lb/>| R <lb/>| Section 5.12.3 <lb/>| <lb/>| layout_hint <lb/>| 63 | layouthint4 <lb/>| W <lb/>| Section 5.12.4 <lb/>| <lb/>| layout_type <lb/>| 64 | layouttype4<> | R <lb/>| Section 5.12.5 <lb/>| <lb/>| maxfilesize <lb/>| 27 | uint64_t <lb/>| R <lb/>| Section 5.8.2.17 | <lb/>| maxlink <lb/>| 28 | uint32_t <lb/>| R <lb/>| Section 5.8.2.18 | <lb/>| maxname <lb/>| 29 | uint32_t <lb/>| R <lb/>| Section 5.8.2.19 | <lb/>| maxread <lb/>| 30 | uint64_t <lb/>| R <lb/>| Section 5.8.2.20 | <lb/>| maxwrite <lb/>| 31 | uint64_t <lb/>| R <lb/>| Section 5.8.2.21 | <lb/>| mdsthreshold <lb/>| 68 | mdsthreshold4 | R <lb/>| Section 5.12.6 <lb/>| <lb/>| mimetype <lb/>| 32 | utf8str_cs <lb/>| R W | Section 5.8.2.22 | <lb/>| mode <lb/>| 33 | mode4 <lb/>| R W | Section 6.2.4 <lb/>| <lb/>| mode_set_masked <lb/>| 74 | mode_masked4 <lb/>| W <lb/>| Section 6.2.5 <lb/>| <lb/>| mounted_on_fileid | 55 | uint64_t <lb/>| R <lb/>| Section 5.8.2.23 | <lb/>| no_trunc <lb/>| 34 | bool <lb/>| R <lb/>| Section 5.8.2.24 | <lb/>| numlinks <lb/>| 35 | uint32_t <lb/>| R <lb/>| Section 5.8.2.25 | <lb/>| owner <lb/>| 36 | utf8str_mixed | R W | Section 5.8.2.26 | <lb/>| owner_group <lb/>| 37 | utf8str_mixed | R W | Section 5.8.2.27 | <lb/>| quota_avail_hard <lb/>| 38 | uint64_t <lb/>| R <lb/>| Section 5.8.2.28 | <lb/>| quota_avail_soft <lb/>| 39 | uint64_t <lb/>| R <lb/>| Section 5.8.2.29 | <lb/>| quota_used <lb/>| 40 | uint64_t <lb/>| R <lb/>| Section 5.8.2.30 | <lb/>| rawdev <lb/>| 41 | specdata4 <lb/>| R <lb/>| Section 5.8.2.31 | <lb/>| retentevt_get <lb/>| 71 | retention_get4 | R <lb/>| Section 5.13.3 <lb/>| <lb/>| retentevt_set <lb/>| 72 | retention_set4 | W <lb/>| Section 5.13.4 <lb/>| <lb/>| retention_get <lb/>| 69 | retention_get4 | R <lb/>| Section 5.13.1 <lb/>| <lb/>| retention_hold <lb/>| 73 | uint64_t <lb/>| R W | Section 5.13.5 <lb/>| <lb/>| retention_set <lb/>| 70 | retention_set4 | W <lb/>| Section 5.13.2 <lb/>| <lb/>| sacl <lb/>| 59 | nfsacl41 <lb/>| R W | Section 6.2.3 <lb/>| <lb/>| space_avail <lb/>| 42 | uint64_t <lb/>| R <lb/>| Section 5.8.2.32 | <lb/>| space_free <lb/>| 43 | uint64_t <lb/>| R <lb/>| Section 5.8.2.33 | <lb/>| space_total <lb/>| 44 | uint64_t <lb/>| R <lb/>| Section 5.8.2.34 | <lb/>| space_used <lb/>| 45 | uint64_t <lb/>| R <lb/>| Section 5.8.2.35 | <lb/>| system <lb/>| 46 | bool <lb/>| R W | Section 5.8.2.36 | <lb/>| time_access <lb/>| 47 | nfstime4 <lb/>| R <lb/>| Section 5.8.2.37 | <lb/>| time_access_set <lb/>| 48 | settime4 <lb/>| W <lb/>| Section 5.8.2.38 | <lb/>| time_backup <lb/>| 49 | nfstime4 <lb/>| R W | Section 5.8.2.39 | <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 109] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>| time_create <lb/>| 50 | nfstime4 <lb/>| R W | Section 5.8.2.40 | <lb/>| time_delta <lb/>| 51 | nfstime4 <lb/>| R <lb/>| Section 5.8.2.41 | <lb/>| time_metadata <lb/>| 52 | nfstime4 <lb/>| R <lb/>| Section 5.8.2.42 | <lb/>| time_modify <lb/>| 53 | nfstime4 <lb/>| R <lb/>| Section 5.8.2.43 | <lb/>| time_modify_set <lb/>| 54 | settime4 <lb/>| W <lb/>| Section 5.8.2.44 | <lb/>+--------------------+----+----------------+-----+------------------+ <lb/>Table 3 <lb/>* fs_locations_info4 <lb/>5.8. Attribute Definitions <lb/>5.8.1. Definitions of REQUIRED Attributes <lb/>5.8.1.1. Attribute 0: supported_attrs <lb/>The bit vector that would retrieve all REQUIRED and RECOMMENDED <lb/>attributes that are supported for this object. The scope of this <lb/>attribute applies to all objects with a matching fsid. <lb/>5.8.1.2. Attribute 1: type <lb/>Designates the type of an object in terms of one of a number of <lb/>special constants: <lb/>o NF4REG designates a regular file. <lb/>o NF4DIR designates a directory. <lb/>o NF4BLK designates a block device special file. <lb/>o NF4CHR designates a character device special file. <lb/>o NF4LNK designates a symbolic link. <lb/>o NF4SOCK designates a named socket special file. <lb/>o NF4FIFO designates a fifo special file. <lb/>o NF4ATTRDIR designates a named attribute directory. <lb/>o NF4NAMEDATTR designates a named attribute. <lb/>Within the explanatory text and operation descriptions, the following <lb/>phrases will be used with the meanings given below: <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 110] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>o The phrase "is a directory" means that the object's type attribute <lb/>is NF4DIR or NF4ATTRDIR. <lb/>o The phrase "is a special file" means that the object's type <lb/>attribute is NF4BLK, NF4CHR, NF4SOCK, or NF4FIFO. <lb/>o The phrases "is an ordinary file" and "is a regular file" mean <lb/>that the object's type attribute is NF4REG or NF4NAMEDATTR. <lb/>5.8.1.3. Attribute 2: fh_expire_type <lb/>Server uses this to specify filehandle expiration behavior to the <lb/>client. See Section 4 for additional description. <lb/>5.8.1.4. Attribute 3: change <lb/>A value created by the server that the client can use to determine if <lb/>file data, directory contents, or attributes of the object have been <lb/>modified. The server may return the object's time_metadata attribute <lb/>for this attribute's value, but only if the file system object cannot <lb/>be updated more frequently than the resolution of time_metadata. <lb/>5.8.1.5. Attribute 4: size <lb/>The size of the object in bytes. <lb/>5.8.1.6. Attribute 5: link_support <lb/>TRUE, if the object's file system supports hard links. <lb/>5.8.1.7. Attribute 6: symlink_support <lb/>TRUE, if the object's file system supports symbolic links. <lb/>5.8.1.8. Attribute 7: named_attr <lb/>TRUE, if this object has named attributes. In other words, object <lb/>has a non-empty named attribute directory. <lb/>5.8.1.9. Attribute 8: fsid <lb/>Unique file system identifier for the file system holding this <lb/>object. The fsid attribute has major and minor components, each of <lb/>which are of data type uint64_t. <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 111] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>5.8.1.10. Attribute 9: unique_handles <lb/>TRUE, if two distinct filehandles are guaranteed to refer to two <lb/>different file system objects. <lb/>5.8.1.11. Attribute 10: lease_time <lb/>Duration of the lease at server in seconds. <lb/>5.8.1.12. Attribute 11: rdattr_error <lb/>Error returned from an attempt to retrieve attributes during a <lb/>READDIR operation. <lb/>5.8.1.13. Attribute 19: filehandle <lb/>The filehandle of this object (primarily for READDIR requests). <lb/>5.8.1.14. Attribute 75: suppattr_exclcreat <lb/>The bit vector that would set all REQUIRED and RECOMMENDED attributes <lb/>that are supported by the EXCLUSIVE4_1 method of file creation via <lb/>the OPEN operation. The scope of this attribute applies to all <lb/>objects with a matching fsid. <lb/>5.8.2. Definitions of Uncategorized RECOMMENDED Attributes <lb/>The definitions of most of the RECOMMENDED attributes follow. <lb/>Collections that share a common category are defined in other <lb/>sections. <lb/>5.8.2.1. Attribute 14: archive <lb/>TRUE, if this file has been archived since the time of last <lb/>modification (deprecated in favor of time_backup). <lb/>5.8.2.2. Attribute 15: cansettime <lb/>TRUE, if the server is able to change the times for a file system <lb/>object as specified in a SETATTR operation. <lb/>5.8.2.3. Attribute 16: case_insensitive <lb/>TRUE, if file name comparisons on this file system are case <lb/>insensitive. <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 112] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>5.8.2.4. Attribute 17: case_preserving <lb/>TRUE, if file name case on this file system is preserved. <lb/>5.8.2.5. Attribute 60: change_policy <lb/>A value created by the server that the client can use to determine if <lb/>some server policy related to the current file system has been <lb/>subject to change. If the value remains the same, then the client <lb/>can be sure that the values of the attributes related to fs location <lb/>and the fss_type field of the fs_status attribute have not changed. <lb/>On the other hand, a change in this value does necessarily imply a <lb/>change in policy. It is up to the client to interrogate the server <lb/>to determine if some policy relevant to it has changed. See <lb/>Section 3.3.6 for details. <lb/>This attribute MUST change when the value returned by the <lb/>fs_locations or fs_locations_info attribute changes, when a file <lb/>system goes from read-only to writable or vice versa, or when the <lb/>allowable set of security flavors for the file system or any part <lb/>thereof is changed. <lb/>5.8.2.6. Attribute 18: chown_restricted <lb/>If TRUE, the server will reject any request to change either the <lb/>owner or the group associated with a file if the caller is not a <lb/>privileged user (for example, "root" in UNIX operating environments <lb/>or, in Windows 2000, the "Take Ownership" privilege). <lb/>5.8.2.7. Attribute 20: fileid <lb/>A number uniquely identifying the file within the file system. <lb/>5.8.2.8. Attribute 21: files_avail <lb/>File slots available to this user on the file system containing this <lb/>object --this should be the smallest relevant limit. <lb/>5.8.2.9. Attribute 22: files_free <lb/>Free file slots on the file system containing this object --this <lb/>should be the smallest relevant limit. <lb/>5.8.2.10. Attribute 23: files_total <lb/>Total file slots on the file system containing this object. <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 113] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>5.8.2.11. Attribute 76: fs_charset_cap <lb/>Character set capabilities for this file system. See Section 14.4. <lb/>5.8.2.12. Attribute 24: fs_locations <lb/>Locations where this file system may be found. If the server returns <lb/>NFS4ERR_MOVED as an error, this attribute MUST be supported. See <lb/>Section 11.15 for more details. <lb/>5.8.2.13. Attribute 67: fs_locations_info <lb/>Full function file system location. See Section 11.16.2 for more <lb/>details. <lb/>5.8.2.14. Attribute 61: fs_status <lb/>Generic file system type information. See Section 11.17 for more <lb/>details. <lb/>5.8.2.15. Attribute 25: hidden <lb/>TRUE, if the file is considered hidden with respect to the Windows <lb/>API. <lb/>5.8.2.16. Attribute 26: homogeneous <lb/>TRUE, if this object's file system is homogeneous; i.e., all objects <lb/>in the file system (all objects on the server with the same fsid) <lb/>have common values for all per-file-system attributes. <lb/>5.8.2.17. Attribute 27: maxfilesize <lb/>Maximum supported file size for the file system of this object. <lb/>5.8.2.18. Attribute 28: maxlink <lb/>Maximum number of links for this object. <lb/>5.8.2.19. Attribute 29: maxname <lb/>Maximum file name size supported for this object. <lb/>5.8.2.20. Attribute 30: maxread <lb/>Maximum amount of data the READ operation will return for this <lb/>object. <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 114] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>5.8.2.21. Attribute 31: maxwrite <lb/>Maximum amount of data the WRITE operation will accept for this <lb/>object. This attribute SHOULD be supported if the file is writable. <lb/>Lack of this attribute can lead to the client either wasting <lb/>bandwidth or not receiving the best performance. <lb/>5.8.2.22. Attribute 32: mimetype <lb/>MIME body type/subtype of this object. <lb/>5.8.2.23. Attribute 55: mounted_on_fileid <lb/>Like fileid, but if the target filehandle is the root of a file <lb/>system, this attribute represents the fileid of the underlying <lb/>directory. <lb/>UNIX-based operating environments connect a file system into the <lb/>namespace by connecting (mounting) the file system onto the existing <lb/>file object (the mount point, usually a directory) of an existing <lb/>file system. When the mount point's parent directory is read via an <lb/>API like readdir(), the return results are directory entries, each <lb/>with a component name and a fileid. The fileid of the mount point's <lb/>directory entry will be different from the fileid that the stat() <lb/>system call returns. The stat() system call is returning the fileid <lb/>of the root of the mounted file system, whereas readdir() is <lb/>returning the fileid that stat() would have returned before any file <lb/>systems were mounted on the mount point. <lb/>Unlike NFSv3, NFSv4.1 allows a client's LOOKUP request to cross other <lb/>file systems. The client detects the file system crossing whenever <lb/>the filehandle argument of LOOKUP has an fsid attribute different <lb/>from that of the filehandle returned by LOOKUP. A UNIX-based client <lb/>will consider this a "mount point crossing". UNIX has a legacy <lb/>scheme for allowing a process to determine its current working <lb/>directory. This relies on readdir() of a mount point's parent and <lb/>stat() of the mount point returning fileids as previously described. <lb/>The mounted_on_fileid attribute corresponds to the fileid that <lb/>readdir() would have returned as described previously. <lb/>While the NFSv4.1 client could simply fabricate a fileid <lb/>corresponding to what mounted_on_fileid provides (and if the server <lb/>does not support mounted_on_fileid, the client has no choice), there <lb/>is a risk that the client will generate a fileid that conflicts with <lb/>one that is already assigned to another object in the file system. <lb/>Instead, if the server can provide the mounted_on_fileid, the <lb/>potential for client operational problems in this area is eliminated. <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 115] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>If the server detects that there is no mounted point at the target <lb/>file object, then the value for mounted_on_fileid that it returns is <lb/>the same as that of the fileid attribute. <lb/>The mounted_on_fileid attribute is RECOMMENDED, so the server SHOULD <lb/>provide it if possible, and for a UNIX-based server, this is <lb/>straightforward. Usually, mounted_on_fileid will be requested during <lb/>a READDIR operation, in which case it is trivial (at least for UNIX-<lb/>based servers) to return mounted_on_fileid since it is equal to the <lb/>fileid of a directory entry returned by readdir(). If <lb/>mounted_on_fileid is requested in a GETATTR operation, the server <lb/>should obey an invariant that has it returning a value that is equal <lb/>to the file object's entry in the object's parent directory, i.e., <lb/>what readdir() would have returned. Some operating environments <lb/>allow a series of two or more file systems to be mounted onto a <lb/>single mount point. In this case, for the server to obey the <lb/>aforementioned invariant, it will need to find the base mount point, <lb/>and not the intermediate mount points. <lb/>5.8.2.24. Attribute 34: no_trunc <lb/>If this attribute is TRUE, then if the client uses a file name longer <lb/>than name_max, an error will be returned instead of the name being <lb/>truncated. <lb/>5.8.2.25. Attribute 35: numlinks <lb/>Number of hard links to this object. <lb/>5.8.2.26. Attribute 36: owner <lb/>The string name of the owner of this object. <lb/>5.8.2.27. Attribute 37: owner_group <lb/>The string name of the group ownership of this object. <lb/>5.8.2.28. Attribute 38: quota_avail_hard <lb/>The value in bytes that represents the amount of additional disk <lb/>space beyond the current allocation that can be allocated to this <lb/>file or directory before further allocations will be refused. It is <lb/>understood that this space may be consumed by allocations to other <lb/>files or directories. <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 116] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>5.8.2.29. Attribute 39: quota_avail_soft <lb/>The value in bytes that represents the amount of additional disk <lb/>space that can be allocated to this file or directory before the user <lb/>may reasonably be warned. It is understood that this space may be <lb/>consumed by allocations to other files or directories though there is <lb/>a rule as to which other files or directories. <lb/>5.8.2.30. Attribute 40: quota_used <lb/>The value in bytes that represents the amount of disk space used by <lb/>this file or directory and possibly a number of other similar files <lb/>or directories, where the set of "similar" meets at least the <lb/>criterion that allocating space to any file or directory in the set <lb/>will reduce the "quota_avail_hard" of every other file or directory <lb/>in the set. <lb/>Note that there may be a number of distinct but overlapping sets of <lb/>files or directories for which a quota_used value is maintained, <lb/>e.g., "all files with a given owner", "all files with a given group <lb/>owner", etc. The server is at liberty to choose any of those sets <lb/>when providing the content of the quota_used attribute, but should do <lb/>so in a repeatable way. The rule may be configured per file system <lb/>or may be "choose the set with the smallest quota". <lb/>5.8.2.31. Attribute 41: rawdev <lb/>Raw device number of file of type NF4BLK or NF4CHR. The device <lb/>number is split into major and minor numbers. If the file's type <lb/>attribute is not NF4BLK or NF4CHR, the value returned SHOULD NOT be <lb/>considered useful. <lb/>5.8.2.32. Attribute 42: space_avail <lb/>Disk space in bytes available to this user on the file system <lb/>containing this object --this should be the smallest relevant limit. <lb/>5.8.2.33. Attribute 43: space_free <lb/>Free disk space in bytes on the file system containing this object --<lb/>this should be the smallest relevant limit. <lb/>5.8.2.34. Attribute 44: space_total <lb/>Total disk space in bytes on the file system containing this object. <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 117] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>5.8.2.35. Attribute 45: space_used <lb/>Number of file system bytes allocated to this object. <lb/>5.8.2.36. Attribute 46: system <lb/>This attribute is TRUE if this file is a "system" file with respect <lb/>to the Windows operating environment. <lb/>5.8.2.37. Attribute 47: time_access <lb/>The time_access attribute represents the time of last access to the <lb/>object by a READ operation sent to the server. The notion of what is <lb/>an "access" depends on the server's operating environment and/or the <lb/>server's file system semantics. For example, for servers obeying <lb/>Portable Operating System Interface (POSIX) semantics, time_access <lb/>would be updated only by the READ and READDIR operations and not any <lb/>of the operations that modify the content of the object [13], [14], <lb/>[15]. Of course, setting the corresponding time_access_set attribute <lb/>is another way to modify the time_access attribute. <lb/>Whenever the file object resides on a writable file system, the <lb/>server should make its best efforts to record time_access into stable <lb/>storage. However, to mitigate the performance effects of doing so, <lb/>and most especially whenever the server is satisfying the read of the <lb/>object's content from its cache, the server MAY cache access time <lb/>updates and lazily write them to stable storage. It is also <lb/>acceptable to give administrators of the server the option to disable <lb/>time_access updates. <lb/>5.8.2.38. Attribute 48: time_access_set <lb/>Sets the time of last access to the object. SETATTR use only. <lb/>5.8.2.39. Attribute 49: time_backup <lb/>The time of last backup of the object. <lb/>5.8.2.40. Attribute 50: time_create <lb/>The time of creation of the object. This attribute does not have any <lb/>relation to the traditional UNIX file attribute "ctime" or "change <lb/>time". <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 118] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>5.8.2.41. Attribute 51: time_delta <lb/>Smallest useful server time granularity. <lb/>5.8.2.42. Attribute 52: time_metadata <lb/>The time of last metadata modification of the object. <lb/>5.8.2.43. Attribute 53: time_modify <lb/>The time of last modification to the object. <lb/>5.8.2.44. Attribute 54: time_modify_set <lb/>Sets the time of last modification to the object. SETATTR use only. <lb/>5.9. Interpreting owner and owner_group <lb/>The RECOMMENDED attributes "owner" and "owner_group" (and also users <lb/>and groups within the "acl" attribute) are represented in terms of a <lb/>UTF-8 string. To avoid a representation that is tied to a particular <lb/>underlying implementation at the client or server, the use of the <lb/>UTF-8 string has been chosen. Note that Section 6.1 of RFC 2624 [48] <lb/>provides additional rationale. It is expected that the client and <lb/>server will have their own local representation of owner and <lb/>owner_group that is used for local storage or presentation to the end <lb/>user. Therefore, it is expected that when these attributes are <lb/>transferred between the client and server, the local representation <lb/>is translated to a syntax of the form "user@dns_domain". This will <lb/>allow for a client and server that do not use the same local <lb/>representation the ability to translate to a common syntax that can <lb/>be interpreted by both. <lb/>Similarly, security principals may be represented in different ways <lb/>by different security mechanisms. Servers normally translate these <lb/>representations into a common format, generally that used by local <lb/>storage, to serve as a means of identifying the users corresponding <lb/>to these security principals. When these local identifiers are <lb/>translated to the form of the owner attribute, associated with files <lb/>created by such principals, they identify, in a common format, the <lb/>users associated with each corresponding set of security principals. <lb/>The translation used to interpret owner and group strings is not <lb/>specified as part of the protocol. This allows various solutions to <lb/>be employed. For example, a local translation table may be consulted <lb/>that maps a numeric identifier to the user@dns_domain syntax. A name <lb/>service may also be used to accomplish the translation. A server may <lb/>provide a more general service, not limited by any particular <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 119] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>translation (which would only translate a limited set of possible <lb/>strings) by storing the owner and owner_group attributes in local <lb/>storage without any translation or it may augment a translation <lb/>method by storing the entire string for attributes for which no <lb/>translation is available while using the local representation for <lb/>those cases in which a translation is available. <lb/>Servers that do not provide support for all possible values of the <lb/>owner and owner_group attributes SHOULD return an error <lb/>(NFS4ERR_BADOWNER) when a string is presented that has no <lb/>translation, as the value to be set for a SETATTR of the owner, <lb/>owner_group, or acl attributes. When a server does accept an owner <lb/>or owner_group value as valid on a SETATTR (and similarly for the <lb/>owner and group strings in an acl), it is promising to return that <lb/>same string when a corresponding GETATTR is done. Configuration <lb/>changes (including changes from the mapping of the string to the <lb/>local representation) and ill-constructed name translations (those <lb/>that contain aliasing) may make that promise impossible to honor. <lb/>Servers should make appropriate efforts to avoid a situation in which <lb/>these attributes have their values changed when no real change to <lb/>ownership has occurred. <lb/>The "dns_domain" portion of the owner string is meant to be a DNS <lb/>domain name, for example, user@example.org. Servers should accept as <lb/>valid a set of users for at least one domain. A server may treat <lb/>other domains as having no valid translations. A more general <lb/>service is provided when a server is capable of accepting users for <lb/>multiple domains, or for all domains, subject to security <lb/>constraints. <lb/>In the case where there is no translation available to the client or <lb/>server, the attribute value will be constructed without the "@". <lb/>Therefore, the absence of the @ from the owner or owner_group <lb/>attribute signifies that no translation was available at the sender <lb/>and that the receiver of the attribute should not use that string as <lb/>a basis for translation into its own internal format. Even though <lb/>the attribute value cannot be translated, it may still be useful. In <lb/>the case of a client, the attribute string may be used for local <lb/>display of ownership. <lb/>To provide a greater degree of compatibility with NFSv3, which <lb/>identified users and groups by 32-bit unsigned user identifiers and <lb/>group identifiers, owner and group strings that consist of decimal <lb/>numeric values with no leading zeros can be given a special <lb/>interpretation by clients and servers that choose to provide such <lb/>support. The receiver may treat such a user or group string as <lb/>representing the same user as would be represented by an NFSv3 uid or <lb/>gid having the corresponding numeric value. A server is not <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 120] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>obligated to accept such a string, but may return an NFS4ERR_BADOWNER <lb/>instead. To avoid this mechanism being used to subvert user and <lb/>group translation, so that a client might pass all of the owners and <lb/>groups in numeric form, a server SHOULD return an NFS4ERR_BADOWNER <lb/>error when there is a valid translation for the user or owner <lb/>designated in this way. In that case, the client must use the <lb/>appropriate name@domain string and not the special form for <lb/>compatibility. <lb/>The owner string "nobody" may be used to designate an anonymous user, <lb/>which will be associated with a file created by a security principal <lb/>that cannot be mapped through normal means to the owner attribute. <lb/>Users and implementations of NFSv4.1 SHOULD NOT use "nobody" to <lb/>designate a real user whose access is not anonymous. <lb/>5.10. Character Case Attributes <lb/>With respect to the case_insensitive and case_preserving attributes, <lb/>each UCS-4 character (which UTF-8 encodes) can be mapped according to <lb/>Appendix B.2 of RFC 3454 [16]. For general character handling and <lb/>internationalization issues, see Section 14. <lb/>5.11. Directory Notification Attributes <lb/>As described in Section 18.39, the client can request a minimum delay <lb/>for notifications of changes to attributes, but the server is free to <lb/>ignore what the client requests. The client can determine in advance <lb/>what notification delays the server will accept by sending a GETATTR <lb/>operation for either or both of two directory notification <lb/>attributes. When the client calls the GET_DIR_DELEGATION operation <lb/>and asks for attribute change notifications, it should request <lb/>notification delays that are no less than the values in the server-<lb/>provided attributes. <lb/>5.11.1. Attribute 56: dir_notif_delay <lb/>The dir_notif_delay attribute is the minimum number of seconds the <lb/>server will delay before notifying the client of a change to the <lb/>directory's attributes. <lb/>5.11.2. Attribute 57: dirent_notif_delay <lb/>The dirent_notif_delay attribute is the minimum number of seconds the <lb/>server will delay before notifying the client of a change to a file <lb/>object that has an entry in the directory. <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 121] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>5.12. pNFS Attribute Definitions <lb/>5.12.1. Attribute 62: fs_layout_type <lb/>The fs_layout_type attribute (see Section 3.3.13) applies to a file <lb/>system and indicates what layout types are supported by the file <lb/>system. When the client encounters a new fsid, the client SHOULD <lb/>obtain the value for the fs_layout_type attribute associated with the <lb/>new file system. This attribute is used by the client to determine <lb/>if the layout types supported by the server match any of the client's <lb/>supported layout types. <lb/>5.12.2. Attribute 66: layout_alignment <lb/>When a client holds layouts on files of a file system, the <lb/>layout_alignment attribute indicates the preferred alignment for I/O <lb/>to files on that file system. Where possible, the client should send <lb/>READ and WRITE operations with offsets that are whole multiples of <lb/>the layout_alignment attribute. <lb/>5.12.3. Attribute 65: layout_blksize <lb/>When a client holds layouts on files of a file system, the <lb/>layout_blksize attribute indicates the preferred block size for I/O <lb/>to files on that file system. Where possible, the client should send <lb/>READ operations with a count argument that is a whole multiple of <lb/>layout_blksize, and WRITE operations with a data argument of size <lb/>that is a whole multiple of layout_blksize. <lb/>5.12.4. Attribute 63: layout_hint <lb/>The layout_hint attribute (see Section 3.3.19) may be set on newly <lb/>created files to influence the metadata server's choice for the <lb/>file's layout. If possible, this attribute is one of those set in <lb/>the initial attributes within the OPEN operation. The metadata <lb/>server may choose to ignore this attribute. The layout_hint <lb/>attribute is a subset of the layout structure returned by LAYOUTGET. <lb/>For example, instead of specifying particular devices, this would be <lb/>used to suggest the stripe width of a file. The server <lb/>implementation determines which fields within the layout will be <lb/>used. <lb/>5.12.5. Attribute 64: layout_type <lb/>This attribute lists the layout type(s) available for a file. The <lb/>value returned by the server is for informational purposes only. The <lb/>client will use the LAYOUTGET operation to obtain the information <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 122] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>needed in order to perform I/O, for example, the specific device <lb/>information for the file and its layout. <lb/>5.12.6. Attribute 68: mdsthreshold <lb/>This attribute is a server-provided hint used to communicate to the <lb/>client when it is more efficient to send READ and WRITE operations to <lb/>the metadata server or the data server. The two types of thresholds <lb/>described are file size thresholds and I/O size thresholds. If a <lb/>file's size is smaller than the file size threshold, data accesses <lb/>SHOULD be sent to the metadata server. If an I/O request has a <lb/>length that is below the I/O size threshold, the I/O SHOULD be sent <lb/>to the metadata server. Each threshold type is specified separately <lb/>for read and write. <lb/>The server MAY provide both types of thresholds for a file. If both <lb/>file size and I/O size are provided, the client SHOULD reach or <lb/>exceed both thresholds before sending its read or write requests to <lb/>the data server. Alternatively, if only one of the specified <lb/>thresholds is reached or exceeded, the I/O requests are sent to the <lb/>metadata server. <lb/>For each threshold type, a value of zero indicates no READ or WRITE <lb/>should be sent to the metadata server, while a value of all ones <lb/>indicates that all READs or WRITEs should be sent to the metadata <lb/>server. <lb/>The attribute is available on a per-filehandle basis. If the current <lb/>filehandle refers to a non-pNFS file or directory, the metadata <lb/>server should return an attribute that is representative of the <lb/>filehandle's file system. It is suggested that this attribute is <lb/>queried as part of the OPEN operation. Due to dynamic system <lb/>changes, the client should not assume that the attribute will remain <lb/>constant for any specific time period; thus, it should be <lb/>periodically refreshed. <lb/>5.13. Retention Attributes <lb/>Retention is a concept whereby a file object can be placed in an <lb/>immutable, undeletable, unrenamable state for a fixed or infinite <lb/>duration of time. Once in this "retained" state, the file cannot be <lb/>moved out of the state until the duration of retention has been <lb/>reached. <lb/>When retention is enabled, retention MUST extend to the data of the <lb/>file, and the name of file. The server MAY extend retention to any <lb/>other property of the file, including any subset of REQUIRED, <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 123] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>RECOMMENDED, and named attributes, with the exceptions noted in this <lb/>section. <lb/>Servers MAY support or not support retention on any file object type. <lb/>The five retention attributes are explained in the next subsections. <lb/>5.13.1. Attribute 69: retention_get <lb/>If retention is enabled for the associated file, this attribute's <lb/>value represents the retention begin time of the file object. This <lb/>attribute's value is only readable with the GETATTR operation and <lb/>MUST NOT be modified by the SETATTR operation (Section 5.5). The <lb/>value of the attribute consists of: <lb/>const RET4_DURATION_INFINITE <lb/>= 0xffffffffffffffff; <lb/>struct retention_get4 { <lb/>uint64_t <lb/>rg_duration; <lb/>nfstime4 <lb/>rg_begin_time<1>; <lb/>}; <lb/>The field rg_duration is the duration in seconds indicating how long <lb/>the file will be retained once retention is enabled. The field <lb/>rg_begin_time is an array of up to one absolute time value. If the <lb/>array is zero length, no beginning retention time has been <lb/>established, and retention is not enabled. If rg_duration is equal <lb/>to RET4_DURATION_INFINITE, the file, once retention is enabled, will <lb/>be retained for an infinite duration. <lb/>If (as soon as) rg_duration is zero, then rg_begin_time will be of <lb/>zero length, and again, retention is not (no longer) enabled. <lb/>5.13.2. Attribute 70: retention_set <lb/>This attribute is used to set the retention duration and optionally <lb/>enable retention for the associated file object. This attribute is <lb/>only modifiable via the SETATTR operation and MUST NOT be retrieved <lb/>by the GETATTR operation (Section 5.5). This attribute corresponds <lb/>to retention_get. The value of the attribute consists of: <lb/>struct retention_set4 { <lb/>bool <lb/>rs_enable; <lb/>uint64_t <lb/>rs_duration<1>; <lb/>}; <lb/>If the client sets rs_enable to TRUE, then it is enabling retention <lb/>on the file object with the begin time of retention starting from the <lb/>server's current time and date. The duration of the retention can <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 124] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>also be provided if the rs_duration array is of length one. The <lb/>duration is the time in seconds from the begin time of retention, and <lb/>if set to RET4_DURATION_INFINITE, the file is to be retained forever. <lb/>If retention is enabled, with no duration specified in either this <lb/>SETATTR or a previous SETATTR, the duration defaults to zero seconds. <lb/>The server MAY restrict the enabling of retention or the duration of <lb/>retention on the basis of the ACE4_WRITE_RETENTION ACL permission. <lb/>The enabling of retention MUST NOT prevent the enabling of event-<lb/>based retention or the modification of the retention_hold attribute. <lb/>The following rules apply to both the retention_set and retentevt_set <lb/>attributes. <lb/>o As long as retention is not enabled, the client is permitted to <lb/>decrease the duration. <lb/>o The duration can always be set to an equal or higher value, even <lb/>if retention is enabled. Note that once retention is enabled, the <lb/>actual duration (as returned by the retention_get or retentevt_get <lb/>attributes; see Section 5.13.1 or Section 5.13.3) is constantly <lb/>counting down to zero (one unit per second), unless the duration <lb/>was set to RET4_DURATION_INFINITE. Thus, it will not be possible <lb/>for the client to precisely extend the duration on a file that has <lb/>retention enabled. <lb/>o While retention is enabled, attempts to disable retention or <lb/>decrease the retention's duration MUST fail with the error <lb/>NFS4ERR_INVAL. <lb/>o If the principal attempting to change retention_set or <lb/>retentevt_set does not have ACE4_WRITE_RETENTION permissions, the <lb/>attempt MUST fail with NFS4ERR_ACCESS. <lb/>5.13.3. Attribute 71: retentevt_get <lb/>Gets the event-based retention duration, and if enabled, the event-<lb/>based retention begin time of the file object. This attribute is <lb/>like retention_get, but refers to event-based retention. The event <lb/>that triggers event-based retention is not defined by the NFSv4.1 <lb/>specification. <lb/>5.13.4. Attribute 72: retentevt_set <lb/>Sets the event-based retention duration, and optionally enables <lb/>event-based retention on the file object. This attribute corresponds <lb/>to retentevt_get and is like retention_set, but refers to event-based <lb/>retention. When event-based retention is set, the file MUST be <lb/>retained even if non-event-based retention has been set, and the <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 125] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>duration of non-event-based retention has been reached. Conversely, <lb/>when non-event-based retention has been set, the file MUST be <lb/>retained even if event-based retention has been set, and the duration <lb/>of event-based retention has been reached. The server MAY restrict <lb/>the enabling of event-based retention or the duration of event-based <lb/>retention on the basis of the ACE4_WRITE_RETENTION ACL permission. <lb/>The enabling of event-based retention MUST NOT prevent the enabling <lb/>of non-event-based retention or the modification of the <lb/>retention_hold attribute. <lb/>5.13.5. Attribute 73: retention_hold <lb/>Gets or sets administrative retention holds, one hold per bit <lb/>position. <lb/>This attribute allows one to 64 administrative holds, one hold per <lb/>bit on the attribute. If retention_hold is not zero, then the file <lb/>MUST NOT be deleted, renamed, or modified, even if the duration on <lb/>enabled event or non-event-based retention has been reached. The <lb/>server MAY restrict the modification of retention_hold on the basis <lb/>of the ACE4_WRITE_RETENTION_HOLD ACL permission. The enabling of <lb/>administration retention holds does not prevent the enabling of <lb/>event-based or non-event-based retention. <lb/>If the principal attempting to change retention_hold does not have <lb/>ACE4_WRITE_RETENTION_HOLD permissions, the attempt MUST fail with <lb/>NFS4ERR_ACCESS. <lb/>6. Access Control Attributes <lb/>Access Control Lists (ACLs) are file attributes that specify fine-<lb/>grained access control. This section covers the "acl", "dacl", <lb/>"sacl", "aclsupport", "mode", and "mode_set_masked" file attributes <lb/>and their interactions. Note that file attributes may apply to any <lb/>file system object. <lb/>6.1. Goals <lb/>ACLs and modes represent two well-established models for specifying <lb/>permissions. This section specifies requirements that attempt to <lb/>meet the following goals: <lb/>o If a server supports the mode attribute, it should provide <lb/>reasonable semantics to clients that only set and retrieve the <lb/>mode attribute. <lb/>o If a server supports ACL attributes, it should provide reasonable <lb/>semantics to clients that only set and retrieve those attributes. <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 126] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>o On servers that support the mode attribute, if ACL attributes have <lb/>never been set on an object, via inheritance or explicitly, the <lb/>behavior should be traditional UNIX-like behavior. <lb/>o On servers that support the mode attribute, if the ACL attributes <lb/>have been previously set on an object, either explicitly or via <lb/>inheritance: <lb/>* Setting only the mode attribute should effectively control the <lb/>traditional UNIX-like permissions of read, write, and execute <lb/>on owner, owner_group, and other. <lb/>* Setting only the mode attribute should provide reasonable <lb/>security. For example, setting a mode of 000 should be enough <lb/>to ensure that future OPEN operations for <lb/>OPEN4_SHARE_ACCESS_READ or OPEN4_SHARE_ACCESS_WRITE by any <lb/>principal fail, regardless of a previously existing or <lb/>inherited ACL. <lb/>o NFSv4.1 may introduce different semantics relating to the mode and <lb/>ACL attributes, but it does not render invalid any previously <lb/>existing implementations. Additionally, this section provides <lb/>clarifications based on previous implementations and discussions <lb/>around them. <lb/>o On servers that support both the mode and the acl or dacl <lb/>attributes, the server must keep the two consistent with each <lb/>other. The value of the mode attribute (with the exception of the <lb/>three high-order bits described in Section 6.2.4) must be <lb/>determined entirely by the value of the ACL, so that use of the <lb/>mode is never required for anything other than setting the three <lb/>high-order bits. See Section 6.4.1 for exact requirements. <lb/>o When a mode attribute is set on an object, the ACL attributes may <lb/>need to be modified in order to not conflict with the new mode. <lb/>In such cases, it is desirable that the ACL keep as much <lb/>information as possible. This includes information about <lb/>inheritance, AUDIT and ALARM ACEs, and permissions granted and <lb/>denied that do not conflict with the new mode. <lb/>6.2. File Attributes Discussion <lb/>6.2.1. Attribute 12: acl <lb/>The NFSv4.1 ACL attribute contains an array of Access Control Entries <lb/>(ACEs) that are associated with the file system object. Although the <lb/>client can set and get the acl attribute, the server is responsible <lb/>for using the ACL to perform access control. The client can use the <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 127] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>OPEN or ACCESS operations to check access without modifying or <lb/>reading data or metadata. <lb/>The NFS ACE structure is defined as follows: <lb/>typedef uint32_t <lb/>acetype4; <lb/>typedef uint32_t aceflag4; <lb/>typedef uint32_t <lb/>acemask4; <lb/>struct nfsace4 { <lb/>acetype4 <lb/>type; <lb/>aceflag4 <lb/>flag; <lb/>acemask4 <lb/>access_mask; <lb/>utf8str_mixed <lb/>who; <lb/>}; <lb/>To determine if a request succeeds, the server processes each nfsace4 <lb/>entry in order. Only ACEs that have a "who" that matches the <lb/>requester are considered. Each ACE is processed until all of the <lb/>bits of the requester's access have been ALLOWED. Once a bit (see <lb/>below) has been ALLOWED by an ACCESS_ALLOWED_ACE, it is no longer <lb/>considered in the processing of later ACEs. If an ACCESS_DENIED_ACE <lb/>is encountered where the requester's access still has unALLOWED bits <lb/>in common with the "access_mask" of the ACE, the request is denied. <lb/>When the ACL is fully processed, if there are bits in the requester's <lb/>mask that have not been ALLOWED or DENIED, access is denied. <lb/>Unlike the ALLOW and DENY ACE types, the ALARM and AUDIT ACE types do <lb/>not affect a requester's access, and instead are for triggering <lb/>events as a result of a requester's access attempt. Therefore, AUDIT <lb/>and ALARM ACEs are processed only after processing ALLOW and DENY <lb/>ACEs. <lb/>The NFSv4.1 ACL model is quite rich. Some server platforms may <lb/>provide access-control functionality that goes beyond the UNIX-style <lb/>mode attribute, but that is not as rich as the NFS ACL model. So <lb/>that users can take advantage of this more limited functionality, the <lb/>server may support the acl attributes by mapping between its ACL <lb/>model and the NFSv4.1 ACL model. Servers must ensure that the ACL <lb/>they actually store or enforce is at least as strict as the NFSv4 ACL <lb/>that was set. It is tempting to accomplish this by rejecting any ACL <lb/>that falls outside the small set that can be represented accurately. <lb/>However, such an approach can render ACLs unusable without special <lb/>client-side knowledge of the server's mapping, which defeats the <lb/>purpose of having a common NFSv4 ACL protocol. Therefore, servers <lb/>should accept every ACL that they can without compromising security. <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 128] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>To help accomplish this, servers may make a special exception, in the <lb/>case of unsupported permission bits, to the rule that bits not <lb/>ALLOWED or DENIED by an ACL must be denied. For example, a UNIX-<lb/>style server might choose to silently allow read attribute <lb/>permissions even though an ACL does not explicitly allow those <lb/>permissions. (An ACL that explicitly denies permission to read <lb/>attributes should still be rejected.) <lb/>The situation is complicated by the fact that a server may have <lb/>multiple modules that enforce ACLs. For example, the enforcement for <lb/>NFSv4.1 access may be different from, but not weaker than, the <lb/>enforcement for local access, and both may be different from the <lb/>enforcement for access through other protocols such as SMB (Server <lb/>Message Block). So it may be useful for a server to accept an ACL <lb/>even if not all of its modules are able to support it. <lb/>The guiding principle with regard to NFSv4 access is that the server <lb/>must not accept ACLs that appear to make access to the file more <lb/>restrictive than it really is. <lb/>6.2.1.1. ACE Type <lb/>The constants used for the type field (acetype4) are as follows: <lb/>const ACE4_ACCESS_ALLOWED_ACE_TYPE <lb/>= 0x00000000; <lb/>const ACE4_ACCESS_DENIED_ACE_TYPE <lb/>= 0x00000001; <lb/>const ACE4_SYSTEM_AUDIT_ACE_TYPE <lb/>= 0x00000002; <lb/>const ACE4_SYSTEM_ALARM_ACE_TYPE <lb/>= 0x00000003; <lb/>Only the ALLOWED and DENIED bits may be used in the dacl attribute, <lb/>and only the AUDIT and ALARM bits may be used in the sacl attribute. <lb/>All four are permitted in the acl attribute. <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 129] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>+------------------------------+--------------+---------------------+ <lb/>| Value <lb/>| Abbreviation | Description <lb/>| <lb/>+------------------------------+--------------+---------------------+ <lb/>| ACE4_ACCESS_ALLOWED_ACE_TYPE | ALLOW <lb/>| Explicitly grants <lb/>| <lb/>| <lb/>| <lb/>| the access defined | <lb/>| <lb/>| <lb/>| in acemask4 to the | <lb/>| <lb/>| <lb/>| file or directory. | <lb/>| ACE4_ACCESS_DENIED_ACE_TYPE | DENY <lb/>| Explicitly denies <lb/>| <lb/>| <lb/>| <lb/>| the access defined | <lb/>| <lb/>| <lb/>| in acemask4 to the | <lb/>| <lb/>| <lb/>| file or directory. | <lb/>| ACE4_SYSTEM_AUDIT_ACE_TYPE <lb/>| AUDIT <lb/>| Log (in a system-<lb/>| <lb/>| <lb/>| <lb/>| dependent way) any | <lb/>| <lb/>| <lb/>| access attempt to a | <lb/>| <lb/>| <lb/>| file or directory <lb/>| <lb/>| <lb/>| <lb/>| that uses any of <lb/>| <lb/>| <lb/>| <lb/>| the access methods | <lb/>| <lb/>| <lb/>| specified in <lb/>| <lb/>| <lb/>| <lb/>| acemask4. <lb/>| <lb/>| ACE4_SYSTEM_ALARM_ACE_TYPE <lb/>| ALARM <lb/>| Generate an alarm <lb/>| <lb/>| <lb/>| <lb/>| (in a system-<lb/>| <lb/>| <lb/>| <lb/>| dependent way) when | <lb/>| <lb/>| <lb/>| any access attempt | <lb/>| <lb/>| <lb/>| is made to a file <lb/>| <lb/>| <lb/>| <lb/>| or directory for <lb/>| <lb/>| <lb/>| <lb/>| the access methods | <lb/>| <lb/>| <lb/>| specified in <lb/>| <lb/>| <lb/>| <lb/>| acemask4. <lb/>| <lb/>+------------------------------+--------------+---------------------+ <lb/>The "Abbreviation" column denotes how the types will be referred to <lb/>throughout the rest of this section. <lb/>6.2.1.2. Attribute 13: aclsupport <lb/>A server need not support all of the above ACE types. This attribute <lb/>indicates which ACE types are supported for the current file system. <lb/>The bitmask constants used to represent the above definitions within <lb/>the aclsupport attribute are as follows: <lb/>const ACL4_SUPPORT_ALLOW_ACL <lb/>= 0x00000001; <lb/>const ACL4_SUPPORT_DENY_ACL <lb/>= 0x00000002; <lb/>const ACL4_SUPPORT_AUDIT_ACL <lb/>= 0x00000004; <lb/>const ACL4_SUPPORT_ALARM_ACL <lb/>= 0x00000008; <lb/>Servers that support either the ALLOW or DENY ACE type SHOULD support <lb/>both ALLOW and DENY ACE types. <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 130] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>Clients should not attempt to set an ACE unless the server claims <lb/>support for that ACE type. If the server receives a request to set <lb/>an ACE that it cannot store, it MUST reject the request with <lb/>NFS4ERR_ATTRNOTSUPP. If the server receives a request to set an ACE <lb/>that it can store but cannot enforce, the server SHOULD reject the <lb/>request with NFS4ERR_ATTRNOTSUPP. <lb/>Support for any of the ACL attributes is optional (albeit <lb/>RECOMMENDED). However, a server that supports either of the new ACL <lb/>attributes (dacl or sacl) MUST allow use of the new ACL attributes to <lb/>access all of the ACE types that it supports. In other words, if <lb/>such a server supports ALLOW or DENY ACEs, then it MUST support the <lb/>dacl attribute, and if it supports AUDIT or ALARM ACEs, then it MUST <lb/>support the sacl attribute. <lb/>6.2.1.3. ACE Access Mask <lb/>The bitmask constants used for the access mask field are as follows: <lb/>const ACE4_READ_DATA <lb/>= 0x00000001; <lb/>const ACE4_LIST_DIRECTORY <lb/>= 0x00000001; <lb/>const ACE4_WRITE_DATA <lb/>= 0x00000002; <lb/>const ACE4_ADD_FILE <lb/>= 0x00000002; <lb/>const ACE4_APPEND_DATA <lb/>= 0x00000004; <lb/>const ACE4_ADD_SUBDIRECTORY <lb/>= 0x00000004; <lb/>const ACE4_READ_NAMED_ATTRS <lb/>= 0x00000008; <lb/>const ACE4_WRITE_NAMED_ATTRS <lb/>= 0x00000010; <lb/>const ACE4_EXECUTE <lb/>= 0x00000020; <lb/>const ACE4_DELETE_CHILD <lb/>= 0x00000040; <lb/>const ACE4_READ_ATTRIBUTES <lb/>= 0x00000080; <lb/>const ACE4_WRITE_ATTRIBUTES <lb/>= 0x00000100; <lb/>const ACE4_WRITE_RETENTION <lb/>= 0x00000200; <lb/>const ACE4_WRITE_RETENTION_HOLD = 0x00000400; <lb/>const ACE4_DELETE <lb/>= 0x00010000; <lb/>const ACE4_READ_ACL <lb/>= 0x00020000; <lb/>const ACE4_WRITE_ACL <lb/>= 0x00040000; <lb/>const ACE4_WRITE_OWNER <lb/>= 0x00080000; <lb/>const ACE4_SYNCHRONIZE <lb/>= 0x00100000; <lb/>Note that some masks have coincident values, for example, <lb/>ACE4_READ_DATA and ACE4_LIST_DIRECTORY. The mask entries <lb/>ACE4_LIST_DIRECTORY, ACE4_ADD_FILE, and ACE4_ADD_SUBDIRECTORY are <lb/>intended to be used with directory objects, while ACE4_READ_DATA, <lb/>ACE4_WRITE_DATA, and ACE4_APPEND_DATA are intended to be used with <lb/>non-directory objects. <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 131] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>6.2.1.3.1. Discussion of Mask Attributes <lb/>ACE4_READ_DATA <lb/>Operation(s) affected: <lb/>READ <lb/>OPEN <lb/>Discussion: <lb/>Permission to read the data of the file. <lb/>Servers SHOULD allow a user the ability to read the data of the <lb/>file when only the ACE4_EXECUTE access mask bit is allowed. <lb/>ACE4_LIST_DIRECTORY <lb/>Operation(s) affected: <lb/>READDIR <lb/>Discussion: <lb/>Permission to list the contents of a directory. <lb/>ACE4_WRITE_DATA <lb/>Operation(s) affected: <lb/>WRITE <lb/>OPEN <lb/>SETATTR of size <lb/>Discussion: <lb/>Permission to modify a file's data. <lb/>ACE4_ADD_FILE <lb/>Operation(s) affected: <lb/>CREATE <lb/>LINK <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 132] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>OPEN <lb/>RENAME <lb/>Discussion: <lb/>Permission to add a new file in a directory. The CREATE <lb/>operation is affected when nfs_ftype4 is NF4LNK, NF4BLK, <lb/>NF4CHR, NF4SOCK, or NF4FIFO. (NF4DIR is not listed because it <lb/>is covered by ACE4_ADD_SUBDIRECTORY.) OPEN is affected when <lb/>used to create a regular file. LINK and RENAME are always <lb/>affected. <lb/>ACE4_APPEND_DATA <lb/>Operation(s) affected: <lb/>WRITE <lb/>OPEN <lb/>SETATTR of size <lb/>Discussion: <lb/>The ability to modify a file's data, but only starting at EOF. <lb/>This allows for the notion of append-only files, by allowing <lb/>ACE4_APPEND_DATA and denying ACE4_WRITE_DATA to the same user <lb/>or group. If a file has an ACL such as the one described above <lb/>and a WRITE request is made for somewhere other than EOF, the <lb/>server SHOULD return NFS4ERR_ACCESS. <lb/>ACE4_ADD_SUBDIRECTORY <lb/>Operation(s) affected: <lb/>CREATE <lb/>RENAME <lb/>Discussion: <lb/>Permission to create a subdirectory in a directory. The CREATE <lb/>operation is affected when nfs_ftype4 is NF4DIR. The RENAME <lb/>operation is always affected. <lb/>ACE4_READ_NAMED_ATTRS <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 133] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>Operation(s) affected: <lb/>OPENATTR <lb/>Discussion: <lb/>Permission to read the named attributes of a file or to look up <lb/>the named attribute directory. OPENATTR is affected when it is <lb/>not used to create a named attribute directory. This is when <lb/>1) createdir is TRUE, but a named attribute directory already <lb/>exists, or 2) createdir is FALSE. <lb/>ACE4_WRITE_NAMED_ATTRS <lb/>Operation(s) affected: <lb/>OPENATTR <lb/>Discussion: <lb/>Permission to write the named attributes of a file or to create <lb/>a named attribute directory. OPENATTR is affected when it is <lb/>used to create a named attribute directory. This is when <lb/>createdir is TRUE and no named attribute directory exists. The <lb/>ability to check whether or not a named attribute directory <lb/>exists depends on the ability to look it up; therefore, users <lb/>also need the ACE4_READ_NAMED_ATTRS permission in order to <lb/>create a named attribute directory. <lb/>ACE4_EXECUTE <lb/>Operation(s) affected: <lb/>READ <lb/>OPEN <lb/>REMOVE <lb/>RENAME <lb/>LINK <lb/>CREATE <lb/>Discussion: <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 134] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>Permission to execute a file. <lb/>Servers SHOULD allow a user the ability to read the data of the <lb/>file when only the ACE4_EXECUTE access mask bit is allowed. <lb/>This is because there is no way to execute a file without <lb/>reading the contents. Though a server may treat ACE4_EXECUTE <lb/>and ACE4_READ_DATA bits identically when deciding to permit a <lb/>READ operation, it SHOULD still allow the two bits to be set <lb/>independently in ACLs, and MUST distinguish between them when <lb/>replying to ACCESS operations. In particular, servers SHOULD <lb/>NOT silently turn on one of the two bits when the other is set, <lb/>as that would make it impossible for the client to correctly <lb/>enforce the distinction between read and execute permissions. <lb/>As an example, following a SETATTR of the following ACL: <lb/>nfsuser:ACE4_EXECUTE:ALLOW <lb/>A subsequent GETATTR of ACL for that file SHOULD return: <lb/>nfsuser:ACE4_EXECUTE:ALLOW <lb/>Rather than: <lb/>nfsuser:ACE4_EXECUTE/ACE4_READ_DATA:ALLOW <lb/>ACE4_EXECUTE <lb/>Operation(s) affected: <lb/>LOOKUP <lb/>Discussion: <lb/>Permission to traverse/search a directory. <lb/>ACE4_DELETE_CHILD <lb/>Operation(s) affected: <lb/>REMOVE <lb/>RENAME <lb/>Discussion: <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 135] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>Permission to delete a file or directory within a directory. <lb/>See Section 6.2.1.3.2 for information on ACE4_DELETE and <lb/>ACE4_DELETE_CHILD interact. <lb/>ACE4_READ_ATTRIBUTES <lb/>Operation(s) affected: <lb/>GETATTR of file system object attributes <lb/>VERIFY <lb/>NVERIFY <lb/>READDIR <lb/>Discussion: <lb/>The ability to read basic attributes (non-ACLs) of a file. On <lb/>a UNIX system, basic attributes can be thought of as the stat-<lb/>level attributes. Allowing this access mask bit would mean <lb/>that the entity can execute "ls -l" and stat. If a READDIR <lb/>operation requests attributes, this mask must be allowed for <lb/>the READDIR to succeed. <lb/>ACE4_WRITE_ATTRIBUTES <lb/>Operation(s) affected: <lb/>SETATTR of time_access_set, time_backup, <lb/>time_create, time_modify_set, mimetype, hidden, system <lb/>Discussion: <lb/>Permission to change the times associated with a file or <lb/>directory to an arbitrary value. Also permission to change the <lb/>mimetype, hidden, and system attributes. A user having <lb/>ACE4_WRITE_DATA or ACE4_WRITE_ATTRIBUTES will be allowed to set <lb/>the times associated with a file to the current server time. <lb/>ACE4_WRITE_RETENTION <lb/>Operation(s) affected: <lb/>SETATTR of retention_set, retentevt_set. <lb/>Discussion: <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 136] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>Permission to modify the durations of event and non-event-based <lb/>retention. Also permission to enable event and non-event-based <lb/>retention. A server MAY behave such that setting <lb/>ACE4_WRITE_ATTRIBUTES allows ACE4_WRITE_RETENTION. <lb/>ACE4_WRITE_RETENTION_HOLD <lb/>Operation(s) affected: <lb/>SETATTR of retention_hold. <lb/>Discussion: <lb/>Permission to modify the administration retention holds. A <lb/>server MAY map ACE4_WRITE_ATTRIBUTES to <lb/>ACE_WRITE_RETENTION_HOLD. <lb/>ACE4_DELETE <lb/>Operation(s) affected: <lb/>REMOVE <lb/>Discussion: <lb/>Permission to delete the file or directory. See <lb/>Section 6.2.1.3.2 for information on ACE4_DELETE and <lb/>ACE4_DELETE_CHILD interact. <lb/>ACE4_READ_ACL <lb/>Operation(s) affected: <lb/>GETATTR of acl, dacl, or sacl <lb/>NVERIFY <lb/>VERIFY <lb/>Discussion: <lb/>Permission to read the ACL. <lb/>ACE4_WRITE_ACL <lb/>Operation(s) affected: <lb/>SETATTR of acl and mode <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 137] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>Discussion: <lb/>Permission to write the acl and mode attributes. <lb/>ACE4_WRITE_OWNER <lb/>Operation(s) affected: <lb/>SETATTR of owner and owner_group <lb/>Discussion: <lb/>Permission to write the owner and owner_group attributes. On <lb/>UNIX systems, this is the ability to execute chown() and <lb/>chgrp(). <lb/>ACE4_SYNCHRONIZE <lb/>Operation(s) affected: <lb/>NONE <lb/>Discussion: <lb/>Permission to use the file object as a synchronization <lb/>primitive for interprocess communication. This permission is <lb/>not enforced or interpreted by the NFSv4.1 server on behalf of <lb/>the client. <lb/>Typically, the ACE4_SYNCHRONIZE permission is only meaningful <lb/>on local file systems, i.e., file systems not accessed via <lb/>NFSv4.1. The reason that the permission bit exists is that <lb/>some operating environments, such as Windows, use <lb/>ACE4_SYNCHRONIZE. <lb/>For example, if a client copies a file that has <lb/>ACE4_SYNCHRONIZE set from a local file system to an NFSv4.1 <lb/>server, and then later copies the file from the NFSv4.1 server <lb/>to a local file system, it is likely that if ACE4_SYNCHRONIZE <lb/>was set in the original file, the client will want it set in <lb/>the second copy. The first copy will not have the permission <lb/>set unless the NFSv4.1 server has the means to set the <lb/>ACE4_SYNCHRONIZE bit. The second copy will not have the <lb/>permission set unless the NFSv4.1 server has the means to <lb/>retrieve the ACE4_SYNCHRONIZE bit. <lb/>Server implementations need not provide the granularity of control <lb/>that is implied by this list of masks. For example, POSIX-based <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 138] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>systems might not distinguish ACE4_APPEND_DATA (the ability to append <lb/>to a file) from ACE4_WRITE_DATA (the ability to modify existing <lb/>contents); both masks would be tied to a single "write" permission <lb/>[17]. When such a server returns attributes to the client, it would <lb/>show both ACE4_APPEND_DATA and ACE4_WRITE_DATA if and only if the <lb/>write permission is enabled. <lb/>If a server receives a SETATTR request that it cannot accurately <lb/>implement, it should err in the direction of more restricted access, <lb/>except in the previously discussed cases of execute and read. For <lb/>example, suppose a server cannot distinguish overwriting data from <lb/>appending new data, as described in the previous paragraph. If a <lb/>client submits an ALLOW ACE where ACE4_APPEND_DATA is set but <lb/>ACE4_WRITE_DATA is not (or vice versa), the server should either turn <lb/>off ACE4_APPEND_DATA or reject the request with NFS4ERR_ATTRNOTSUPP. <lb/>6.2.1.3.2. ACE4_DELETE vs. ACE4_DELETE_CHILD <lb/>Two access mask bits govern the ability to delete a directory entry: <lb/>ACE4_DELETE on the object itself (the "target") and ACE4_DELETE_CHILD <lb/>on the containing directory (the "parent"). <lb/>Many systems also take the "sticky bit" (MODE4_SVTX) on a directory <lb/>to allow unlink only to a user that owns either the target or the <lb/>parent; on some such systems the decision also depends on whether the <lb/>target is writable. <lb/>Servers SHOULD allow unlink if either ACE4_DELETE is permitted on the <lb/>target, or ACE4_DELETE_CHILD is permitted on the parent. (Note that <lb/>this is true even if the parent or target explicitly denies one of <lb/>these permissions.) <lb/>If the ACLs in question neither explicitly ALLOW nor DENY either of <lb/>the above, and if MODE4_SVTX is not set on the parent, then the <lb/>server SHOULD allow the removal if and only if ACE4_ADD_FILE is <lb/>permitted. In the case where MODE4_SVTX is set, the server may also <lb/>require the remover to own either the parent or the target, or may <lb/>require the target to be writable. <lb/>This allows servers to support something close to traditional UNIX-<lb/>like semantics, with ACE4_ADD_FILE taking the place of the write bit. <lb/>6.2.1.4. ACE flag <lb/>The bitmask constants used for the flag field are as follows: <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 139] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>const ACE4_FILE_INHERIT_ACE <lb/>= 0x00000001; <lb/>const ACE4_DIRECTORY_INHERIT_ACE <lb/>= 0x00000002; <lb/>const ACE4_NO_PROPAGATE_INHERIT_ACE <lb/>= 0x00000004; <lb/>const ACE4_INHERIT_ONLY_ACE <lb/>= 0x00000008; <lb/>const ACE4_SUCCESSFUL_ACCESS_ACE_FLAG <lb/>= 0x00000010; <lb/>const ACE4_FAILED_ACCESS_ACE_FLAG <lb/>= 0x00000020; <lb/>const ACE4_IDENTIFIER_GROUP <lb/>= 0x00000040; <lb/>const ACE4_INHERITED_ACE <lb/>= 0x00000080; <lb/>A server need not support any of these flags. If the server supports <lb/>flags that are similar to, but not exactly the same as, these flags, <lb/>the implementation may define a mapping between the protocol-defined <lb/>flags and the implementation-defined flags. <lb/>For example, suppose a client tries to set an ACE with <lb/>ACE4_FILE_INHERIT_ACE set but not ACE4_DIRECTORY_INHERIT_ACE. If the <lb/>server does not support any form of ACL inheritance, the server <lb/>should reject the request with NFS4ERR_ATTRNOTSUPP. If the server <lb/>supports a single "inherit ACE" flag that applies to both files and <lb/>directories, the server may reject the request (i.e., requiring the <lb/>client to set both the file and directory inheritance flags). The <lb/>server may also accept the request and silently turn on the <lb/>ACE4_DIRECTORY_INHERIT_ACE flag. <lb/>6.2.1.4.1. Discussion of Flag Bits <lb/>ACE4_FILE_INHERIT_ACE <lb/>Any non-directory file in any sub-directory will get this ACE <lb/>inherited. <lb/>ACE4_DIRECTORY_INHERIT_ACE <lb/>Can be placed on a directory and indicates that this ACE should be <lb/>added to each new directory created. <lb/>If this flag is set in an ACE in an ACL attribute to be set on a <lb/>non-directory file system object, the operation attempting to set <lb/>the ACL SHOULD fail with NFS4ERR_ATTRNOTSUPP. <lb/>ACE4_NO_PROPAGATE_INHERIT_ACE <lb/>Can be placed on a directory. This flag tells the server that <lb/>inheritance of this ACE should stop at newly created child <lb/>directories. <lb/>ACE4_INHERIT_ONLY_ACE <lb/>Can be placed on a directory but does not apply to the directory; <lb/>ALLOW and DENY ACEs with this bit set do not affect access to the <lb/>directory, and AUDIT and ALARM ACEs with this bit set do not <lb/>trigger log or alarm events. Such ACEs only take effect once they <lb/>are applied (with this bit cleared) to newly created files and <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 140] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>directories as specified by the ACE4_FILE_INHERIT_ACE and <lb/>ACE4_DIRECTORY_INHERIT_ACE flags. <lb/>If this flag is present on an ACE, but neither <lb/>ACE4_DIRECTORY_INHERIT_ACE nor ACE4_FILE_INHERIT_ACE is present, <lb/>then an operation attempting to set such an attribute SHOULD fail <lb/>with NFS4ERR_ATTRNOTSUPP. <lb/>ACE4_SUCCESSFUL_ACCESS_ACE_FLAG <lb/>ACE4_FAILED_ACCESS_ACE_FLAG <lb/>The ACE4_SUCCESSFUL_ACCESS_ACE_FLAG (SUCCESS) and <lb/>ACE4_FAILED_ACCESS_ACE_FLAG (FAILED) flag bits may be set only on <lb/>ACE4_SYSTEM_AUDIT_ACE_TYPE (AUDIT) and ACE4_SYSTEM_ALARM_ACE_TYPE <lb/>(ALARM) ACE types. If during the processing of the file's ACL, <lb/>the server encounters an AUDIT or ALARM ACE that matches the <lb/>principal attempting the OPEN, the server notes that fact, and the <lb/>presence, if any, of the SUCCESS and FAILED flags encountered in <lb/>the AUDIT or ALARM ACE. Once the server completes the ACL <lb/>processing, it then notes if the operation succeeded or failed. <lb/>If the operation succeeded, and if the SUCCESS flag was set for a <lb/>matching AUDIT or ALARM ACE, then the appropriate AUDIT or ALARM <lb/>event occurs. If the operation failed, and if the FAILED flag was <lb/>set for the matching AUDIT or ALARM ACE, then the appropriate <lb/>AUDIT or ALARM event occurs. Either or both of the SUCCESS or <lb/>FAILED can be set, but if neither is set, the AUDIT or ALARM ACE <lb/>is not useful. <lb/>The previously described processing applies to ACCESS operations <lb/>even when they return NFS4_OK. For the purposes of AUDIT and <lb/>ALARM, we consider an ACCESS operation to be a "failure" if it <lb/>fails to return a bit that was requested and supported. <lb/>ACE4_IDENTIFIER_GROUP <lb/>Indicates that the "who" refers to a GROUP as defined under UNIX <lb/>or a GROUP ACCOUNT as defined under Windows. Clients and servers <lb/>MUST ignore the ACE4_IDENTIFIER_GROUP flag on ACEs with a who <lb/>value equal to one of the special identifiers outlined in <lb/>Section 6.2.1.5. <lb/>ACE4_INHERITED_ACE <lb/>Indicates that this ACE is inherited from a parent directory. A <lb/>server that supports automatic inheritance will place this flag on <lb/>any ACEs inherited from the parent directory when creating a new <lb/>object. Client applications will use this to perform automatic <lb/>inheritance. Clients and servers MUST clear this bit in the acl <lb/>attribute; it may only be used in the dacl and sacl attributes. <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 141] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>6.2.1.5. ACE Who <lb/>The "who" field of an ACE is an identifier that specifies the <lb/>principal or principals to whom the ACE applies. It may refer to a <lb/>user or a group, with the flag bit ACE4_IDENTIFIER_GROUP specifying <lb/>which. <lb/>There are several special identifiers that need to be understood <lb/>universally, rather than in the context of a particular DNS domain. <lb/>Some of these identifiers cannot be understood when an NFS client <lb/>accesses the server, but have meaning when a local process accesses <lb/>the file. The ability to display and modify these permissions is <lb/>permitted over NFS, even if none of the access methods on the server <lb/>understands the identifiers. <lb/>+---------------+---------------------------------------------------+ <lb/>| Who <lb/>| Description <lb/>| <lb/>+---------------+---------------------------------------------------+ <lb/>| OWNER <lb/>| The owner of the file. <lb/>| <lb/>| GROUP <lb/>| The group associated with the file. <lb/>| <lb/>| EVERYONE <lb/>| The world, including the owner and owning group. | <lb/>| INTERACTIVE <lb/>| Accessed from an interactive terminal. <lb/>| <lb/>| NETWORK <lb/>| Accessed via the network. <lb/>| <lb/>| DIALUP <lb/>| Accessed as a dialup user to the server. <lb/>| <lb/>| BATCH <lb/>| Accessed from a batch job. <lb/>| <lb/>| ANONYMOUS <lb/>| Accessed without any authentication. <lb/>| <lb/>| AUTHENTICATED | Any authenticated user (opposite of ANONYMOUS). <lb/>| <lb/>| SERVICE <lb/>| Access from a system service. <lb/>| <lb/>+---------------+---------------------------------------------------+ <lb/>Table 4 <lb/>To avoid conflict, these special identifiers are distinguished by an <lb/>appended "@" and should appear in the form "xxxx@" (with no domain <lb/>name after the "@"), for example, ANONYMOUS@. <lb/>The ACE4_IDENTIFIER_GROUP flag MUST be ignored on entries with these <lb/>special identifiers. When encoding entries with these special <lb/>identifiers, the ACE4_IDENTIFIER_GROUP flag SHOULD be set to zero. <lb/>6.2.1.5.1. Discussion of EVERYONE@ <lb/>It is important to note that "EVERYONE@" is not equivalent to the <lb/>UNIX "other" entity. This is because, by definition, UNIX "other" <lb/>does not include the owner or owning group of a file. "EVERYONE@" <lb/>means literally everyone, including the owner or owning group. <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 142] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>6.2.2. Attribute 58: dacl <lb/>The dacl attribute is like the acl attribute, but dacl allows just <lb/>ALLOW and DENY ACEs. The dacl attribute supports automatic <lb/>inheritance (see Section 6.4.3.2). <lb/>6.2.3. Attribute 59: sacl <lb/>The sacl attribute is like the acl attribute, but sacl allows just <lb/>AUDIT and ALARM ACEs. The sacl attribute supports automatic <lb/>inheritance (see Section 6.4.3.2). <lb/>6.2.4. Attribute 33: mode <lb/>The NFSv4.1 mode attribute is based on the UNIX mode bits. The <lb/>following bits are defined: <lb/>const MODE4_SUID = 0x800; /* set user id on execution */ <lb/>const MODE4_SGID = 0x400; /* set group id on execution */ <lb/>const MODE4_SVTX = 0x200; /* save text even after use */ <lb/>const MODE4_RUSR = 0x100; /* read permission: owner */ <lb/>const MODE4_WUSR = 0x080; /* write permission: owner */ <lb/>const MODE4_XUSR = 0x040; /* execute permission: owner */ <lb/>const MODE4_RGRP = 0x020; /* read permission: group */ <lb/>const MODE4_WGRP = 0x010; /* write permission: group */ <lb/>const MODE4_XGRP = 0x008; /* execute permission: group */ <lb/>const MODE4_ROTH = 0x004; /* read permission: other */ <lb/>const MODE4_WOTH = 0x002; /* write permission: other */ <lb/>const MODE4_XOTH = 0x001; /* execute permission: other */ <lb/>Bits MODE4_RUSR, MODE4_WUSR, and MODE4_XUSR apply to the principal <lb/>identified in the owner attribute. Bits MODE4_RGRP, MODE4_WGRP, and <lb/>MODE4_XGRP apply to principals identified in the owner_group <lb/>attribute but who are not identified in the owner attribute. Bits <lb/>MODE4_ROTH, MODE4_WOTH, and MODE4_XOTH apply to any principal that <lb/>does not match that in the owner attribute and does not have a group <lb/>matching that of the owner_group attribute. <lb/>Bits within a mode other than those specified above are not defined <lb/>by this protocol. A server MUST NOT return bits other than those <lb/>defined above in a GETATTR or READDIR operation, and it MUST return <lb/>NFS4ERR_INVAL if bits other than those defined above are set in a <lb/>SETATTR, CREATE, OPEN, VERIFY, or NVERIFY operation. <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 143] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>6.2.5. Attribute 74: mode_set_masked <lb/>The mode_set_masked attribute is a write-only attribute that allows <lb/>individual bits in the mode attribute to be set or reset, without <lb/>changing others. It allows, for example, the bits MODE4_SUID, <lb/>MODE4_SGID, and MODE4_SVTX to be modified while leaving unmodified <lb/>any of the nine low-order mode bits devoted to permissions. <lb/>In such instances that the nine low-order bits are left unmodified, <lb/>then neither the acl nor the dacl attribute should be automatically <lb/>modified as discussed in Section 6.4.1. <lb/>The mode_set_masked attribute consists of two words, each in the form <lb/>of a mode4. The first consists of the value to be applied to the <lb/>current mode value and the second is a mask. Only bits set to one in <lb/>the mask word are changed (set or reset) in the file's mode. All <lb/>other bits in the mode remain unchanged. Bits in the first word that <lb/>correspond to bits that are zero in the mask are ignored, except that <lb/>undefined bits are checked for validity and can result in <lb/>NFS4ERR_INVAL as described below. <lb/>The mode_set_masked attribute is only valid in a SETATTR operation. <lb/>If it is used in a CREATE or OPEN operation, the server MUST return <lb/>NFS4ERR_INVAL. <lb/>Bits not defined as valid in the mode attribute are not valid in <lb/>either word of the mode_set_masked attribute. The server MUST return <lb/>NFS4ERR_INVAL if any such bits are set to one in a SETATTR. If the <lb/>mode and mode_set_masked attributes are both specified in the same <lb/>SETATTR, the server MUST also return NFS4ERR_INVAL. <lb/>6.3. Common Methods <lb/>The requirements in this section will be referred to in future <lb/>sections, especially Section 6.4. <lb/>6.3.1. Interpreting an ACL <lb/>6.3.1.1. Server Considerations <lb/>The server uses the algorithm described in Section 6.2.1 to determine <lb/>whether an ACL allows access to an object. However, the ACL might <lb/>not be the sole determiner of access. For example: <lb/>o In the case of a file system exported as read-only, the server may <lb/>deny write access even though an object's ACL grants it. <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 144] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>o Server implementations MAY grant ACE4_WRITE_ACL and ACE4_READ_ACL <lb/>permissions to prevent a situation from arising in which there is <lb/>no valid way to ever modify the ACL. <lb/>o All servers will allow a user the ability to read the data of the <lb/>file when only the execute permission is granted (i.e., if the ACL <lb/>denies the user the ACE4_READ_DATA access and allows the user <lb/>ACE4_EXECUTE, the server will allow the user to read the data of <lb/>the file). <lb/>o Many servers have the notion of owner-override in which the owner <lb/>of the object is allowed to override accesses that are denied by <lb/>the ACL. This may be helpful, for example, to allow users <lb/>continued access to open files on which the permissions have <lb/>changed. <lb/>o Many servers have the notion of a "superuser" that has privileges <lb/>beyond an ordinary user. The superuser may be able to read or <lb/>write data or metadata in ways that would not be permitted by the <lb/>ACL. <lb/>o A retention attribute might also block access otherwise allowed by <lb/>ACLs (see Section 5.13). <lb/>6.3.1.2. Client Considerations <lb/>Clients SHOULD NOT do their own access checks based on their <lb/>interpretation of the ACL, but rather use the OPEN and ACCESS <lb/>operations to do access checks. This allows the client to act on the <lb/>results of having the server determine whether or not access should <lb/>be granted based on its interpretation of the ACL. <lb/>Clients must be aware of situations in which an object's ACL will <lb/>define a certain access even though the server will not enforce it. <lb/>In general, but especially in these situations, the client needs to <lb/>do its part in the enforcement of access as defined by the ACL. To <lb/>do this, the client MAY send the appropriate ACCESS operation prior <lb/>to servicing the request of the user or application in order to <lb/>determine whether the user or application should be granted the <lb/>access requested. For examples in which the ACL may define accesses <lb/>that the server doesn't enforce, see Section 6.3.1.1. <lb/>6.3.2. Computing a Mode Attribute from an ACL <lb/>The following method can be used to calculate the MODE4_R*, MODE4_W*, <lb/>and MODE4_X* bits of a mode attribute, based upon an ACL. <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 145] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>First, for each of the special identifiers OWNER@, GROUP@, and <lb/>EVERYONE@, evaluate the ACL in order, considering only ALLOW and DENY <lb/>ACEs for the identifier EVERYONE@ and for the identifier under <lb/>consideration. The result of the evaluation will be an NFSv4 ACL <lb/>mask showing exactly which bits are permitted to that identifier. <lb/>Then translate the calculated mask for OWNER@, GROUP@, and EVERYONE@ <lb/>into mode bits for, respectively, the user, group, and other, as <lb/>follows: <lb/>1. Set the read bit (MODE4_RUSR, MODE4_RGRP, or MODE4_ROTH) if and <lb/>only if ACE4_READ_DATA is set in the corresponding mask. <lb/>2. Set the write bit (MODE4_WUSR, MODE4_WGRP, or MODE4_WOTH) if and <lb/>only if ACE4_WRITE_DATA and ACE4_APPEND_DATA are both set in the <lb/>corresponding mask. <lb/>3. Set the execute bit (MODE4_XUSR, MODE4_XGRP, or MODE4_XOTH), if <lb/>and only if ACE4_EXECUTE is set in the corresponding mask. <lb/>6.3.2.1. Discussion <lb/>Some server implementations also add bits permitted to named users <lb/>and groups to the group bits (MODE4_RGRP, MODE4_WGRP, and <lb/>MODE4_XGRP). <lb/>Implementations are discouraged from doing this, because it has been <lb/>found to cause confusion for users who see members of a file's group <lb/>denied access that the mode bits appear to allow. (The presence of <lb/>DENY ACEs may also lead to such behavior, but DENY ACEs are expected <lb/>to be more rarely used.) <lb/>The same user confusion seen when fetching the mode also results if <lb/>setting the mode does not effectively control permissions for the <lb/>owner, group, and other users; this motivates some of the <lb/>requirements that follow. <lb/>6.4. Requirements <lb/>The server that supports both mode and ACL must take care to <lb/>synchronize the MODE4_*USR, MODE4_*GRP, and MODE4_*OTH bits with the <lb/>ACEs that have respective who fields of "OWNER@", "GROUP@", and <lb/>"EVERYONE@". This way, the client can see if semantically equivalent <lb/>access permissions exist whether the client asks for the owner, <lb/>owner_group, and mode attributes or for just the ACL. <lb/>In this section, much is made of the methods in Section 6.3.2. Many <lb/>requirements refer to this section. But note that the methods have <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 146] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>behaviors specified with "SHOULD". This is intentional, to avoid <lb/>invalidating existing implementations that compute the mode according <lb/>to the withdrawn POSIX ACL draft (1003.1e draft 17), rather than by <lb/>actual permissions on owner, group, and other. <lb/>6.4.1. Setting the Mode and/or ACL Attributes <lb/>In the case where a server supports the sacl or dacl attribute, in <lb/>addition to the acl attribute, the server MUST fail a request to set <lb/>the acl attribute simultaneously with a dacl or sacl attribute. The <lb/>error to be given is NFS4ERR_ATTRNOTSUPP. <lb/>6.4.1.1. Setting Mode and not ACL <lb/>When any of the nine low-order mode bits are subject to change, <lb/>either because the mode attribute was set or because the <lb/>mode_set_masked attribute was set and the mask included one or more <lb/>bits from the nine low-order mode bits, and no ACL attribute is <lb/>explicitly set, the acl and dacl attributes must be modified in <lb/>accordance with the updated value of those bits. This must happen <lb/>even if the value of the low-order bits is the same after the mode is <lb/>set as before. <lb/>Note that any AUDIT or ALARM ACEs (hence any ACEs in the sacl <lb/>attribute) are unaffected by changes to the mode. <lb/>In cases in which the permissions bits are subject to change, the acl <lb/>and dacl attributes MUST be modified such that the mode computed via <lb/>the method in Section 6.3.2 yields the low-order nine bits (MODE4_R*, <lb/>MODE4_W*, MODE4_X*) of the mode attribute as modified by the <lb/>attribute change. The ACL attributes SHOULD also be modified such <lb/>that: <lb/>1. If MODE4_RGRP is not set, entities explicitly listed in the ACL <lb/>other than OWNER@ and EVERYONE@ SHOULD NOT be granted <lb/>ACE4_READ_DATA. <lb/>2. If MODE4_WGRP is not set, entities explicitly listed in the ACL <lb/>other than OWNER@ and EVERYONE@ SHOULD NOT be granted <lb/>ACE4_WRITE_DATA or ACE4_APPEND_DATA. <lb/>3. If MODE4_XGRP is not set, entities explicitly listed in the ACL <lb/>other than OWNER@ and EVERYONE@ SHOULD NOT be granted <lb/>ACE4_EXECUTE. <lb/>Access mask bits other than those listed above, appearing in ALLOW <lb/>ACEs, MAY also be disabled. <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 147] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>Note that ACEs with the flag ACE4_INHERIT_ONLY_ACE set do not affect <lb/>the permissions of the ACL itself, nor do ACEs of the type AUDIT and <lb/>ALARM. As such, it is desirable to leave these ACEs unmodified when <lb/>modifying the ACL attributes. <lb/>Also note that the requirement may be met by discarding the acl and <lb/>dacl, in favor of an ACL that represents the mode and only the mode. <lb/>This is permitted, but it is preferable for a server to preserve as <lb/>much of the ACL as possible without violating the above requirements. <lb/>Discarding the ACL makes it effectively impossible for a file created <lb/>with a mode attribute to inherit an ACL (see Section 6.4.3). <lb/>6.4.1.2. Setting ACL and Not Mode <lb/>When setting the acl or dacl and not setting the mode or <lb/>mode_set_masked attributes, the permission bits of the mode need to <lb/>be derived from the ACL. In this case, the ACL attribute SHOULD be <lb/>set as given. The nine low-order bits of the mode attribute <lb/>(MODE4_R*, MODE4_W*, MODE4_X*) MUST be modified to match the result <lb/>of the method in Section 6.3.2. The three high-order bits of the <lb/>mode (MODE4_SUID, MODE4_SGID, MODE4_SVTX) SHOULD remain unchanged. <lb/>6.4.1.3. Setting Both ACL and Mode <lb/>When setting both the mode (includes use of either the mode attribute <lb/>or the mode_set_masked attribute) and the acl or dacl attributes in <lb/>the same operation, the attributes MUST be applied in this order: <lb/>mode (or mode_set_masked), then ACL. The mode-related attribute is <lb/>set as given, then the ACL attribute is set as given, possibly <lb/>changing the final mode, as described above in Section 6.4.1.2. <lb/>6.4.2. Retrieving the Mode and/or ACL Attributes <lb/>This section applies only to servers that support both the mode and <lb/>ACL attributes. <lb/>Some server implementations may have a concept of "objects without <lb/>ACLs", meaning that all permissions are granted and denied according <lb/>to the mode attribute and that no ACL attribute is stored for that <lb/>object. If an ACL attribute is requested of such a server, the <lb/>server SHOULD return an ACL that does not conflict with the mode; <lb/>that is to say, the ACL returned SHOULD represent the nine low-order <lb/>bits of the mode attribute (MODE4_R*, MODE4_W*, MODE4_X*) as <lb/>described in Section 6.3.2. <lb/>For other server implementations, the ACL attribute is always present <lb/>for every object. Such servers SHOULD store at least the three high-<lb/>order bits of the mode attribute (MODE4_SUID, MODE4_SGID, <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 148] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>MODE4_SVTX). The server SHOULD return a mode attribute if one is <lb/>requested, and the low-order nine bits of the mode (MODE4_R*, <lb/>MODE4_W*, MODE4_X*) MUST match the result of applying the method in <lb/>Section 6.3.2 to the ACL attribute. <lb/>6.4.3. Creating New Objects <lb/>If a server supports any ACL attributes, it may use the ACL <lb/>attributes on the parent directory to compute an initial ACL <lb/>attribute for a newly created object. This will be referred to as <lb/>the inherited ACL within this section. The act of adding one or more <lb/>ACEs to the inherited ACL that are based upon ACEs in the parent <lb/>directory's ACL will be referred to as inheriting an ACE within this <lb/>section. <lb/>Implementors should standardize what the behavior of CREATE and OPEN <lb/>must be depending on the presence or absence of the mode and ACL <lb/>attributes. <lb/>1. If just the mode is given in the call: <lb/>In this case, inheritance SHOULD take place, but the mode MUST be <lb/>applied to the inherited ACL as described in Section 6.4.1.1, <lb/>thereby modifying the ACL. <lb/>2. If just the ACL is given in the call: <lb/>In this case, inheritance SHOULD NOT take place, and the ACL as <lb/>defined in the CREATE or OPEN will be set without modification, <lb/>and the mode modified as in Section 6.4.1.2. <lb/>3. If both mode and ACL are given in the call: <lb/>In this case, inheritance SHOULD NOT take place, and both <lb/>attributes will be set as described in Section 6.4.1.3. <lb/>4. If neither mode nor ACL is given in the call: <lb/>In the case where an object is being created without any initial <lb/>attributes at all, e.g., an OPEN operation with an opentype4 of <lb/>OPEN4_CREATE and a createmode4 of EXCLUSIVE4, inheritance SHOULD <lb/>NOT take place (note that EXCLUSIVE4_1 is a better choice of <lb/>createmode4, since it does permit initial attributes). Instead, <lb/>the server SHOULD set permissions to deny all access to the newly <lb/>created object. It is expected that the appropriate client will <lb/>set the desired attributes in a subsequent SETATTR operation, and <lb/>the server SHOULD allow that operation to succeed, regardless of <lb/>what permissions the object is created with. For example, an <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 149] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>empty ACL denies all permissions, but the server should allow the <lb/>owner's SETATTR to succeed even though WRITE_ACL is implicitly <lb/>denied. <lb/>In other cases, inheritance SHOULD take place, and no <lb/>modifications to the ACL will happen. The mode attribute, if <lb/>supported, MUST be as computed in Section 6.3.2, with the <lb/>MODE4_SUID, MODE4_SGID, and MODE4_SVTX bits clear. If no <lb/>inheritable ACEs exist on the parent directory, the rules for <lb/>creating acl, dacl, or sacl attributes are implementation <lb/>defined. If either the dacl or sacl attribute is supported, then <lb/>the ACL4_DEFAULTED flag SHOULD be set on the newly created <lb/>attributes. <lb/>6.4.3.1. The Inherited ACL <lb/>If the object being created is not a directory, the inherited ACL <lb/>SHOULD NOT inherit ACEs from the parent directory ACL unless the <lb/>ACE4_FILE_INHERIT_FLAG is set. <lb/>If the object being created is a directory, the inherited ACL should <lb/>inherit all inheritable ACEs from the parent directory, that is, <lb/>those that have the ACE4_FILE_INHERIT_ACE or <lb/>ACE4_DIRECTORY_INHERIT_ACE flag set. If the inheritable ACE has <lb/>ACE4_FILE_INHERIT_ACE set but ACE4_DIRECTORY_INHERIT_ACE is clear, <lb/>the inherited ACE on the newly created directory MUST have the <lb/>ACE4_INHERIT_ONLY_ACE flag set to prevent the directory from being <lb/>affected by ACEs meant for non-directories. <lb/>When a new directory is created, the server MAY split any inherited <lb/>ACE that is both inheritable and effective (in other words, that has <lb/>neither ACE4_INHERIT_ONLY_ACE nor ACE4_NO_PROPAGATE_INHERIT_ACE set), <lb/>into two ACEs, one with no inheritance flags and one with <lb/>ACE4_INHERIT_ONLY_ACE set. (In the case of a dacl or sacl attribute, <lb/>both of those ACEs SHOULD also have the ACE4_INHERITED_ACE flag set.) <lb/>This makes it simpler to modify the effective permissions on the <lb/>directory without modifying the ACE that is to be inherited to the <lb/>new directory's children. <lb/>6.4.3.2. Automatic Inheritance <lb/>The acl attribute consists only of an array of ACEs, but the sacl <lb/>(Section 6.2.3) and dacl (Section 6.2.2) attributes also include an <lb/>additional flag field. <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 150] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>struct nfsacl41 { <lb/>aclflag4 <lb/>na41_flag; <lb/>nfsace4 <lb/>na41_aces<>; <lb/>}; <lb/>The flag field applies to the entire sacl or dacl; three flag values <lb/>are defined: <lb/>const ACL4_AUTO_INHERIT <lb/>= 0x00000001; <lb/>const ACL4_PROTECTED <lb/>= 0x00000002; <lb/>const ACL4_DEFAULTED <lb/>= 0x00000004; <lb/>and all other bits must be cleared. The ACE4_INHERITED_ACE flag may <lb/>be set in the ACEs of the sacl or dacl (whereas it must always be <lb/>cleared in the acl). <lb/>Together these features allow a server to support automatic <lb/>inheritance, which we now explain in more detail. <lb/>Inheritable ACEs are normally inherited by child objects only at the <lb/>time that the child objects are created; later modifications to <lb/>inheritable ACEs do not result in modifications to inherited ACEs on <lb/>descendants. <lb/>However, the dacl and sacl provide an OPTIONAL mechanism that allows <lb/>a client application to propagate changes to inheritable ACEs to an <lb/>entire directory hierarchy. <lb/>A server that supports this performs inheritance at object creation <lb/>time in the normal way, and SHOULD set the ACE4_INHERITED_ACE flag on <lb/>any inherited ACEs as they are added to the new object. <lb/>A client application such as an ACL editor may then propagate changes <lb/>to inheritable ACEs on a directory by recursively traversing that <lb/>directory's descendants and modifying each ACL encountered to remove <lb/>any ACEs with the ACE4_INHERITED_ACE flag and to replace them by the <lb/>new inheritable ACEs (also with the ACE4_INHERITED_ACE flag set). It <lb/>uses the existing ACE inheritance flags in the obvious way to decide <lb/>which ACEs to propagate. (Note that it may encounter further <lb/>inheritable ACEs when descending the directory hierarchy and that <lb/>those will also need to be taken into account when propagating <lb/>inheritable ACEs to further descendants.) <lb/>The reach of this propagation may be limited in two ways: first, <lb/>automatic inheritance is not performed from any directory ACL that <lb/>has the ACL4_AUTO_INHERIT flag cleared; and second, automatic <lb/>inheritance stops wherever an ACL with the ACL4_PROTECTED flag is <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 151] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>set, preventing modification of that ACL and also (if the ACL is set <lb/>on a directory) of the ACL on any of the object's descendants. <lb/>This propagation is performed independently for the sacl and the dacl <lb/>attributes; thus, the ACL4_AUTO_INHERIT and ACL4_PROTECTED flags may <lb/>be independently set for the sacl and the dacl, and propagation of <lb/>one type of acl may continue down a hierarchy even where propagation <lb/>of the other acl has stopped. <lb/>New objects should be created with a dacl and a sacl that both have <lb/>the ACL4_PROTECTED flag cleared and the ACL4_AUTO_INHERIT flag set to <lb/>the same value as that on, respectively, the sacl or dacl of the <lb/>parent object. <lb/>Both the dacl and sacl attributes are RECOMMENDED, and a server may <lb/>support one without supporting the other. <lb/>A server that supports both the old acl attribute and one or both of <lb/>the new dacl or sacl attributes must do so in such a way as to keep <lb/>all three attributes consistent with each other. Thus, the ACEs <lb/>reported in the acl attribute should be the union of the ACEs <lb/>reported in the dacl and sacl attributes, except that the <lb/>ACE4_INHERITED_ACE flag must be cleared from the ACEs in the acl. <lb/>And of course a client that queries only the acl will be unable to <lb/>determine the values of the sacl or dacl flag fields. <lb/>When a client performs a SETATTR for the acl attribute, the server <lb/>SHOULD set the ACL4_PROTECTED flag to true on both the sacl and the <lb/>dacl. By using the acl attribute, as opposed to the dacl or sacl <lb/>attributes, the client signals that it may not understand automatic <lb/>inheritance, and thus cannot be trusted to set an ACL for which <lb/>automatic inheritance would make sense. <lb/>When a client application queries an ACL, modifies it, and sets it <lb/>again, it should leave any ACEs marked with ACE4_INHERITED_ACE <lb/>unchanged, in their original order, at the end of the ACL. If the <lb/>application is unable to do this, it should set the ACL4_PROTECTED <lb/>flag. This behavior is not enforced by servers, but violations of <lb/>this rule may lead to unexpected results when applications perform <lb/>automatic inheritance. <lb/>If a server also supports the mode attribute, it SHOULD set the mode <lb/>in such a way that leaves inherited ACEs unchanged, in their original <lb/>order, at the end of the ACL. If it is unable to do so, it SHOULD <lb/>set the ACL4_PROTECTED flag on the file's dacl. <lb/>Finally, in the case where the request that creates a new file or <lb/>directory does not also set permissions for that file or directory, <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 152] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>and there are also no ACEs to inherit from the parent's directory, <lb/>then the server's choice of ACL for the new object is implementation-<lb/>dependent. In this case, the server SHOULD set the ACL4_DEFAULTED <lb/>flag on the ACL it chooses for the new object. An application <lb/>performing automatic inheritance takes the ACL4_DEFAULTED flag as a <lb/>sign that the ACL should be completely replaced by one generated <lb/>using the automatic inheritance rules. <lb/>7. Single-Server Namespace <lb/>This section describes the NFSv4 single-server namespace. Single-<lb/>server namespaces may be presented directly to clients, or they may <lb/>be used as a basis to form larger multi-server namespaces (e.g., <lb/>site-wide or organization-wide) to be presented to clients, as <lb/>described in Section 11. <lb/>7.1. Server Exports <lb/>On a UNIX server, the namespace describes all the files reachable by <lb/>pathnames under the root directory or "/". On a Windows server, the <lb/>namespace constitutes all the files on disks named by mapped disk <lb/>letters. NFS server administrators rarely make the entire server's <lb/>file system namespace available to NFS clients. More often, portions <lb/>of the namespace are made available via an "export" feature. In <lb/>previous versions of the NFS protocol, the root filehandle for each <lb/>export is obtained through the MOUNT protocol; the client sent a <lb/>string that identified the export name within the namespace and the <lb/>server returned the root filehandle for that export. The MOUNT <lb/>protocol also provided an EXPORTS procedure that enumerated the <lb/>server's exports. <lb/>7.2. Browsing Exports <lb/>The NFSv4.1 protocol provides a root filehandle that clients can use <lb/>to obtain filehandles for the exports of a particular server, via a <lb/>series of LOOKUP operations within a COMPOUND, to traverse a path. A <lb/>common user experience is to use a graphical user interface (perhaps <lb/>a file "Open" dialog window) to find a file via progressive browsing <lb/>through a directory tree. The client must be able to move from one <lb/>export to another export via single-component, progressive LOOKUP <lb/>operations. <lb/>This style of browsing is not well supported by the NFSv3 protocol. <lb/>In NFSv3, the client expects all LOOKUP operations to remain within a <lb/>single server file system. For example, the device attribute will <lb/>not change. This prevents a client from taking namespace paths that <lb/>span exports. <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 153] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>In the case of NFSv3, an automounter on the client can obtain a <lb/>snapshot of the server's namespace using the EXPORTS procedure of the <lb/>MOUNT protocol. If it understands the server's pathname syntax, it <lb/>can create an image of the server's namespace on the client. The <lb/>parts of the namespace that are not exported by the server are filled <lb/>in with directories that might be constructed similarly to an NFSv4.1 <lb/>"pseudo file system" (see Section 7.3) that allows the user to browse <lb/>from one mounted file system to another. There is a drawback to this <lb/>representation of the server's namespace on the client: it is static. <lb/>If the server administrator adds a new export, the client will be <lb/>unaware of it. <lb/>7.3. Server Pseudo File System <lb/>NFSv4.1 servers avoid this namespace inconsistency by presenting all <lb/>the exports for a given server within the framework of a single <lb/>namespace for that server. An NFSv4.1 client uses LOOKUP and READDIR <lb/>operations to browse seamlessly from one export to another. <lb/>Where there are portions of the server namespace that are not <lb/>exported, clients require some way of traversing those portions to <lb/>reach actual exported file systems. A technique that servers may use <lb/>to provide for this is to bridge the unexported portion of the <lb/>namespace via a "pseudo file system" that provides a view of exported <lb/>directories only. A pseudo file system has a unique fsid and behaves <lb/>like a normal, read-only file system. <lb/>Based on the construction of the server's namespace, it is possible <lb/>that multiple pseudo file systems may exist. For example, <lb/>/a <lb/>pseudo file system <lb/>/a/b <lb/>real file system <lb/>/a/b/c <lb/>pseudo file system <lb/>/a/b/c/d <lb/>real file system <lb/>Each of the pseudo file systems is considered a separate entity and <lb/>therefore MUST have its own fsid, unique among all the fsids for that <lb/>server. <lb/>7.4. Multiple Roots <lb/>Certain operating environments are sometimes described as having <lb/>"multiple roots". In such environments, individual file systems are <lb/>commonly represented by disk or volume names. NFSv4 servers for <lb/>these platforms can construct a pseudo file system above these root <lb/>names so that disk letters or volume names are simply directory names <lb/>in the pseudo root. <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 154] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>7.5. Filehandle Volatility <lb/>The nature of the server's pseudo file system is that it is a logical <lb/>representation of file system(s) available from the server. <lb/>Therefore, the pseudo file system is most likely constructed <lb/>dynamically when the server is first instantiated. It is expected <lb/>that the pseudo file system may not have an on-disk counterpart from <lb/>which persistent filehandles could be constructed. Even though it is <lb/>preferable that the server provide persistent filehandles for the <lb/>pseudo file system, the NFS client should expect that pseudo file <lb/>system filehandles are volatile. This can be confirmed by checking <lb/>the associated "fh_expire_type" attribute for those filehandles in <lb/>question. If the filehandles are volatile, the NFS client must be <lb/>prepared to recover a filehandle value (e.g., with a series of LOOKUP <lb/>operations) when receiving an error of NFS4ERR_FHEXPIRED. <lb/>Because it is quite likely that servers will implement pseudo file <lb/>systems using volatile filehandles, clients need to be prepared for <lb/>them, rather than assuming that all filehandles will be persistent. <lb/>7.6. Exported Root <lb/>If the server's root file system is exported, one might conclude that <lb/>a pseudo file system is unneeded. This is not necessarily so. <lb/>Assume the following file systems on a server: <lb/>/ <lb/>fs1 (exported) <lb/>/a <lb/>fs2 (not exported) <lb/>/a/b <lb/>fs3 (exported) <lb/>Because fs2 is not exported, fs3 cannot be reached with simple <lb/>LOOKUPs. The server must bridge the gap with a pseudo file system. <lb/>7.7. Mount Point Crossing <lb/>The server file system environment may be constructed in such a way <lb/>that one file system contains a directory that is 'covered' or <lb/>mounted upon by a second file system. For example: <lb/>/a/b <lb/>(file system 1) <lb/>/a/b/c/d <lb/>(file system 2) <lb/>The pseudo file system for this server may be constructed to look <lb/>like: <lb/>/ <lb/>(place holder/not exported) <lb/>/a/b <lb/>(file system 1) <lb/>/a/b/c/d <lb/>(file system 2) <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 155] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>It is the server's responsibility to present the pseudo file system <lb/>that is complete to the client. If the client sends a LOOKUP request <lb/>for the path /a/b/c/d, the server's response is the filehandle of the <lb/>root of the file system /a/b/c/d. In previous versions of the NFS <lb/>protocol, the server would respond with the filehandle of directory <lb/>/a/b/c/d within the file system /a/b. <lb/>The NFS client will be able to determine if it crosses a server mount <lb/>point by a change in the value of the "fsid" attribute. <lb/>7.8. Security Policy and Namespace Presentation <lb/>Because NFSv4 clients possess the ability to change the security <lb/>mechanisms used, after determining what is allowed, by using SECINFO <lb/>and SECINFO_NONAME, the server SHOULD NOT present a different view of <lb/>the namespace based on the security mechanism being used by a client. <lb/>Instead, it should present a consistent view and return <lb/>NFS4ERR_WRONGSEC if an attempt is made to access data with an <lb/>inappropriate security mechanism. <lb/>If security considerations make it necessary to hide the existence of <lb/>a particular file system, as opposed to all of the data within it, <lb/>the server can apply the security policy of a shared resource in the <lb/>server's namespace to components of the resource's ancestors. For <lb/>example: <lb/>/ <lb/>(place holder/not exported) <lb/>/a/b <lb/>(file system 1) <lb/>/a/b/MySecretProject <lb/>(file system 2) <lb/>The /a/b/MySecretProject directory is a real file system and is the <lb/>shared resource. Suppose the security policy for /a/b/ <lb/>MySecretProject is Kerberos with integrity and it is desired to limit <lb/>knowledge of the existence of this file system. In this case, the <lb/>server should apply the same security policy to /a/b. This allows <lb/>for knowledge of the existence of a file system to be secured when <lb/>desirable. <lb/>For the case of the use of multiple, disjoint security mechanisms in <lb/>the server's resources, applying that sort of policy would result in <lb/>the higher-level file system not being accessible using any security <lb/>flavor. Therefore, that sort of configuration is not compatible with <lb/>hiding the existence (as opposed to the contents) from clients using <lb/>multiple disjoint sets of security flavors. <lb/>In other circumstances, a desirable policy is for the security of a <lb/>particular object in the server's namespace to include the union of <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 156] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>all security mechanisms of all direct descendants. A common and <lb/>convenient practice, unless strong security requirements dictate <lb/>otherwise, is to make the entire the pseudo file system accessible by <lb/>all of the valid security mechanisms. <lb/>Where there is concern about the security of data on the network, <lb/>clients should use strong security mechanisms to access the pseudo <lb/>file system in order to prevent man-in-the-middle attacks. <lb/>8. State Management <lb/>Integrating locking into the NFS protocol necessarily causes it to be <lb/>stateful. With the inclusion of such features as share reservations, <lb/>file and directory delegations, recallable layouts, and support for <lb/>mandatory byte-range locking, the protocol becomes substantially more <lb/>dependent on proper management of state than the traditional <lb/>combination of NFS and NLM (Network Lock Manager) [49]. These <lb/>features include expanded locking facilities, which provide some <lb/>measure of inter-client exclusion, but the state also offers features <lb/>not readily providable using a stateless model. There are three <lb/>components to making this state manageable: <lb/>o clear division between client and server <lb/>o ability to reliably detect inconsistency in state between client <lb/>and server <lb/>o simple and robust recovery mechanisms <lb/>In this model, the server owns the state information. The client <lb/>requests changes in locks and the server responds with the changes <lb/>made. Non-client-initiated changes in locking state are infrequent. <lb/>The client receives prompt notification of such changes and can <lb/>adjust its view of the locking state to reflect the server's changes. <lb/>Individual pieces of state created by the server and passed to the <lb/>client at its request are represented by 128-bit stateids. These <lb/>stateids may represent a particular open file, a set of byte-range <lb/>locks held by a particular owner, or a recallable delegation of <lb/>privileges to access a file in particular ways or at a particular <lb/>location. <lb/>In all cases, there is a transition from the most general information <lb/>that represents a client as a whole to the eventual lightweight <lb/>stateid used for most client and server locking interactions. The <lb/>details of this transition will vary with the type of object but it <lb/>always starts with a client ID. <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 157] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>8.1. Client and Session ID <lb/>A client must establish a client ID (see Section 2.4) and then one or <lb/>more sessionids (see Section 2.10) before performing any operations <lb/>to open, byte-range lock, delegate, or obtain a layout for a file <lb/>object. Each session ID is associated with a specific client ID, and <lb/>thus serves as a shorthand reference to an NFSv4.1 client. <lb/>For some types of locking interactions, the client will represent <lb/>some number of internal locking entities called "owners", which <lb/>normally correspond to processes internal to the client. For other <lb/>types of locking-related objects, such as delegations and layouts, no <lb/>such intermediate entities are provided for, and the locking-related <lb/>objects are considered to be transferred directly between the server <lb/>and a unitary client. <lb/>8.2. Stateid Definition <lb/>When the server grants a lock of any type (including opens, byte-<lb/>range locks, delegations, and layouts), it responds with a unique <lb/>stateid that represents a set of locks (often a single lock) for the <lb/>same file, of the same type, and sharing the same ownership <lb/>characteristics. Thus, opens of the same file by different open-<lb/>owners each have an identifying stateid. Similarly, each set of <lb/>byte-range locks on a file owned by a specific lock-owner has its own <lb/>identifying stateid. Delegations and layouts also have associated <lb/>stateids by which they may be referenced. The stateid is used as a <lb/>shorthand reference to a lock or set of locks, and given a stateid, <lb/>the server can determine the associated state-owner or state-owners <lb/>(in the case of an open-owner/lock-owner pair) and the associated <lb/>filehandle. When stateids are used, the current filehandle must be <lb/>the one associated with that stateid. <lb/>All stateids associated with a given client ID are associated with a <lb/>common lease that represents the claim of those stateids and the <lb/>objects they represent to be maintained by the server. See <lb/>Section 8.3 for a discussion of the lease. <lb/>The server may assign stateids independently for different clients. <lb/>A stateid with the same bit pattern for one client may designate an <lb/>entirely different set of locks for a different client. The stateid <lb/>is always interpreted with respect to the client ID associated with <lb/>the current session. Stateids apply to all sessions associated with <lb/>the given client ID, and the client may use a stateid obtained from <lb/>one session on another session associated with the same client ID. <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 158] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>8.2.1. Stateid Types <lb/>With the exception of special stateids (see Section 8.2.3), each <lb/>stateid represents locking objects of one of a set of types defined <lb/>by the NFSv4.1 protocol. Note that in all these cases, where we <lb/>speak of guarantee, it is understood there are situations such as a <lb/>client restart, or lock revocation, that allow the guarantee to be <lb/>voided. <lb/>o Stateids may represent opens of files. <lb/>Each stateid in this case represents the OPEN state for a given <lb/>client ID/open-owner/filehandle triple. Such stateids are subject <lb/>to change (with consequent incrementing of the stateid's seqid) in <lb/>response to OPENs that result in upgrade and OPEN_DOWNGRADE <lb/>operations. <lb/>o Stateids may represent sets of byte-range locks. <lb/>All locks held on a particular file by a particular owner and <lb/>gotten under the aegis of a particular open file are associated <lb/>with a single stateid with the seqid being incremented whenever <lb/>LOCK and LOCKU operations affect that set of locks. <lb/>o Stateids may represent file delegations, which are recallable <lb/>guarantees by the server to the client that other clients will not <lb/>reference or modify a particular file, until the delegation is <lb/>returned. In NFSv4.1, file delegations may be obtained on both <lb/>regular and non-regular files. <lb/>A stateid represents a single delegation held by a client for a <lb/>particular filehandle. <lb/>o Stateids may represent directory delegations, which are recallable <lb/>guarantees by the server to the client that other clients will not <lb/>modify the directory, until the delegation is returned. <lb/>A stateid represents a single delegation held by a client for a <lb/>particular directory filehandle. <lb/>o Stateids may represent layouts, which are recallable guarantees by <lb/>the server to the client that particular files may be accessed via <lb/>an alternate data access protocol at specific locations. Such <lb/>access is limited to particular sets of byte-ranges and may <lb/>proceed until those byte-ranges are reduced or the layout is <lb/>returned. <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 159] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>A stateid represents the set of all layouts held by a particular <lb/>client for a particular filehandle with a given layout type. The <lb/>seqid is updated as the layouts of that set of byte-ranges change, <lb/>via layout stateid changing operations such as LAYOUTGET and <lb/>LAYOUTRETURN. <lb/>8.2.2. Stateid Structure <lb/>Stateids are divided into two fields, a 96-bit "other" field <lb/>identifying the specific set of locks and a 32-bit "seqid" sequence <lb/>value. Except in the case of special stateids (see Section 8.2.3), a <lb/>particular value of the "other" field denotes a set of locks of the <lb/>same type (for example, byte-range locks, opens, delegations, or <lb/>layouts), for a specific file or directory, and sharing the same <lb/>ownership characteristics. The seqid designates a specific instance <lb/>of such a set of locks, and is incremented to indicate changes in <lb/>such a set of locks, either by the addition or deletion of locks from <lb/>the set, a change in the byte-range they apply to, or an upgrade or <lb/>downgrade in the type of one or more locks. <lb/>When such a set of locks is first created, the server returns a <lb/>stateid with seqid value of one. On subsequent operations that <lb/>modify the set of locks, the server is required to increment the <lb/>"seqid" field by one whenever it returns a stateid for the same <lb/>state-owner/file/type combination and there is some change in the set <lb/>of locks actually designated. In this case, the server will return a <lb/>stateid with an "other" field the same as previously used for that <lb/>state-owner/file/type combination, with an incremented "seqid" field. <lb/>This pattern continues until the seqid is incremented past <lb/>NFS4_UINT32_MAX, and one (not zero) is the next seqid value. <lb/>The purpose of the incrementing of the seqid is to allow the server <lb/>to communicate to the client the order in which operations that <lb/>modified locking state associated with a stateid have been processed <lb/>and to make it possible for the client to send requests that are <lb/>conditional on the set of locks not having changed since the stateid <lb/>in question was returned. <lb/>Except for layout stateids (Section 12.5.3), when a client sends a <lb/>stateid to the server, it has two choices with regard to the seqid <lb/>sent. It may set the seqid to zero to indicate to the server that it <lb/>wishes the most up-to-date seqid for that stateid's "other" field to <lb/>be used. This would be the common choice in the case of a stateid <lb/>sent with a READ or WRITE operation. It also may set a non-zero <lb/>value, in which case the server checks if that seqid is the correct <lb/>one. In that case, the server is required to return <lb/>NFS4ERR_OLD_STATEID if the seqid is lower than the most current value <lb/>and NFS4ERR_BAD_STATEID if the seqid is greater than the most current <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 160] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>value. This would be the common choice in the case of stateids sent <lb/>with a CLOSE or OPEN_DOWNGRADE. Because OPENs may be sent in <lb/>parallel for the same owner, a client might close a file without <lb/>knowing that an OPEN upgrade had been done by the server, changing <lb/>the lock in question. If CLOSE were sent with a zero seqid, the OPEN <lb/>upgrade would be cancelled before the client even received an <lb/>indication that an upgrade had happened. <lb/>When a stateid is sent by the server to the client as part of a <lb/>callback operation, it is not subject to checking for a current seqid <lb/>and returning NFS4ERR_OLD_STATEID. This is because the client is not <lb/>in a position to know the most up-to-date seqid and thus cannot <lb/>verify it. Unless specially noted, the seqid value for a stateid <lb/>sent by the server to the client as part of a callback is required to <lb/>be zero with NFS4ERR_BAD_STATEID returned if it is not. <lb/>In making comparisons between seqids, both by the client in <lb/>determining the order of operations and by the server in determining <lb/>whether the NFS4ERR_OLD_STATEID is to be returned, the possibility of <lb/>the seqid being swapped around past the NFS4_UINT32_MAX value needs <lb/>to be taken into account. When two seqid values are being compared, <lb/>the total count of slots for all sessions associated with the current <lb/>client is used to do this. When one seqid value is less than this <lb/>total slot count and another seqid value is greater than <lb/>NFS4_UINT32_MAX minus the total slot count, the former is to be <lb/>treated as lower than the latter, despite the fact that it is <lb/>numerically greater. <lb/>8.2.3. Special Stateids <lb/>Stateid values whose "other" field is either all zeros or all ones <lb/>are reserved. They may not be assigned by the server but have <lb/>special meanings defined by the protocol. The particular meaning <lb/>depends on whether the "other" field is all zeros or all ones and the <lb/>specific value of the "seqid" field. <lb/>The following combinations of "other" and "seqid" are defined in <lb/>NFSv4.1: <lb/>o When "other" and "seqid" are both zero, the stateid is treated as <lb/>a special anonymous stateid, which can be used in READ, WRITE, and <lb/>SETATTR requests to indicate the absence of any OPEN state <lb/>associated with the request. When an anonymous stateid value is <lb/>used and an existing open denies the form of access requested, <lb/>then access will be denied to the request. This stateid MUST NOT <lb/>be used on operations to data servers (Section 13.6). <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 161] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>o When "other" and "seqid" are both all ones, the stateid is a <lb/>special READ bypass stateid. When this value is used in WRITE or <lb/>SETATTR, it is treated like the anonymous value. When used in <lb/>READ, the server MAY grant access, even if access would normally <lb/>be denied to READ operations. This stateid MUST NOT be used on <lb/>operations to data servers. <lb/>o When "other" is zero and "seqid" is one, the stateid represents <lb/>the current stateid, which is whatever value is the last stateid <lb/>returned by an operation within the COMPOUND. In the case of an <lb/>OPEN, the stateid returned for the open file and not the <lb/>delegation is used. The stateid passed to the operation in place <lb/>of the special value has its "seqid" value set to zero, except <lb/>when the current stateid is used by the operation CLOSE or <lb/>OPEN_DOWNGRADE. If there is no operation in the COMPOUND that has <lb/>returned a stateid value, the server MUST return the error <lb/>NFS4ERR_BAD_STATEID. As illustrated in Figure 6, if the value of <lb/>a current stateid is a special stateid and the stateid of an <lb/>operation's arguments has "other" set to zero and "seqid" set to <lb/>one, then the server MUST return the error NFS4ERR_BAD_STATEID. <lb/>o When "other" is zero and "seqid" is NFS4_UINT32_MAX, the stateid <lb/>represents a reserved stateid value defined to be invalid. When <lb/>this stateid is used, the server MUST return the error <lb/>NFS4ERR_BAD_STATEID. <lb/>If a stateid value is used that has all zeros or all ones in the <lb/>"other" field but does not match one of the cases above, the server <lb/>MUST return the error NFS4ERR_BAD_STATEID. <lb/>Special stateids, unlike other stateids, are not associated with <lb/>individual client IDs or filehandles and can be used with all valid <lb/>client IDs and filehandles. In the case of a special stateid <lb/>designating the current stateid, the current stateid value <lb/>substituted for the special stateid is associated with a particular <lb/>client ID and filehandle, and so, if it is used where the current <lb/>filehandle does not match that associated with the current stateid, <lb/>the operation to which the stateid is passed will return <lb/>NFS4ERR_BAD_STATEID. <lb/>8.2.4. Stateid Lifetime and Validation <lb/>Stateids must remain valid until either a client restart or a server <lb/>restart or until the client returns all of the locks associated with <lb/>the stateid by means of an operation such as CLOSE or DELEGRETURN. <lb/>If the locks are lost due to revocation, as long as the client ID is <lb/>valid, the stateid remains a valid designation of that revoked state <lb/>until the client frees it by using FREE_STATEID. Stateids associated <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 162] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>with byte-range locks are an exception. They remain valid even if a <lb/>LOCKU frees all remaining locks, so long as the open file with which <lb/>they are associated remains open, unless the client frees the <lb/>stateids via the FREE_STATEID operation. <lb/>It should be noted that there are situations in which the client's <lb/>locks become invalid, without the client requesting they be returned. <lb/>These include lease expiration and a number of forms of lock <lb/>revocation within the lease period. It is important to note that in <lb/>these situations, the stateid remains valid and the client can use it <lb/>to determine the disposition of the associated lost locks. <lb/>An "other" value must never be reused for a different purpose (i.e., <lb/>different filehandle, owner, or type of locks) within the context of <lb/>a single client ID. A server may retain the "other" value for the <lb/>same purpose beyond the point where it may otherwise be freed, but if <lb/>it does so, it must maintain "seqid" continuity with previous values. <lb/>One mechanism that may be used to satisfy the requirement that the <lb/>server recognize invalid and out-of-date stateids is for the server <lb/>to divide the "other" field of the stateid into two fields. <lb/>o an index into a table of locking-state structures. <lb/>o a generation number that is incremented on each allocation of a <lb/>table entry for a particular use. <lb/>And then store in each table entry, <lb/>o the client ID with which the stateid is associated. <lb/>o the current generation number for the (at most one) valid stateid <lb/>sharing this index value. <lb/>o the filehandle of the file on which the locks are taken. <lb/>o an indication of the type of stateid (open, byte-range lock, file <lb/>delegation, directory delegation, layout). <lb/>o the last "seqid" value returned corresponding to the current <lb/>"other" value. <lb/>o an indication of the current status of the locks associated with <lb/>this stateid, in particular, whether these have been revoked and <lb/>if so, for what reason. <lb/>With this information, an incoming stateid can be validated and the <lb/>appropriate error returned when necessary. Special and non-special <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 163] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>stateids are handled separately. (See Section 8.2.3 for a discussion <lb/>of special stateids.) <lb/>Note that stateids are implicitly qualified by the current client ID, <lb/>as derived from the client ID associated with the current session. <lb/>Note, however, that the semantics of the session will prevent <lb/>stateids associated with a previous client or server instance from <lb/>being analyzed by this procedure. <lb/>If server restart has resulted in an invalid client ID or a session <lb/>ID that is invalid, SEQUENCE will return an error and the operation <lb/>that takes a stateid as an argument will never be processed. <lb/>If there has been a server restart where there is a persistent <lb/>session and all leased state has been lost, then the session in <lb/>question will, although valid, be marked as dead, and any operation <lb/>not satisfied by means of the reply cache will receive the error <lb/>NFS4ERR_DEADSESSION, and thus not be processed as indicated below. <lb/>When a stateid is being tested and the "other" field is all zeros or <lb/>all ones, a check that the "other" and "seqid" fields match a defined <lb/>combination for a special stateid is done and the results determined <lb/>as follows: <lb/>o If the "other" and "seqid" fields do not match a defined <lb/>combination associated with a special stateid, the error <lb/>NFS4ERR_BAD_STATEID is returned. <lb/>o If the special stateid is one designating the current stateid and <lb/>there is a current stateid, then the current stateid is <lb/>substituted for the special stateid and the checks appropriate to <lb/>non-special stateids are performed. <lb/>o If the combination is valid in general but is not appropriate to <lb/>the context in which the stateid is used (e.g., an all-zero <lb/>stateid is used when an OPEN stateid is required in a LOCK <lb/>operation), the error NFS4ERR_BAD_STATEID is also returned. <lb/>o Otherwise, the check is completed and the special stateid is <lb/>accepted as valid. <lb/>When a stateid is being tested, and the "other" field is neither all <lb/>zeros nor all ones, the following procedure could be used to validate <lb/>an incoming stateid and return an appropriate error, when necessary, <lb/>assuming that the "other" field would be divided into a table index <lb/>and an entry generation. <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 164] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>o If the table index field is outside the range of the associated <lb/>table, return NFS4ERR_BAD_STATEID. <lb/>o If the selected table entry is of a different generation than that <lb/>specified in the incoming stateid, return NFS4ERR_BAD_STATEID. <lb/>o If the selected table entry does not match the current filehandle, <lb/>return NFS4ERR_BAD_STATEID. <lb/>o If the client ID in the table entry does not match the client ID <lb/>associated with the current session, return NFS4ERR_BAD_STATEID. <lb/>o If the stateid represents revoked state, then return <lb/>NFS4ERR_EXPIRED, NFS4ERR_ADMIN_REVOKED, or NFS4ERR_DELEG_REVOKED, <lb/>as appropriate. <lb/>o If the stateid type is not valid for the context in which the <lb/>stateid appears, return NFS4ERR_BAD_STATEID. Note that a stateid <lb/>may be valid in general, as would be reported by the TEST_STATEID <lb/>operation, but be invalid for a particular operation, as, for <lb/>example, when a stateid that doesn't represent byte-range locks is <lb/>passed to the non-from_open case of LOCK or to LOCKU, or when a <lb/>stateid that does not represent an open is passed to CLOSE or <lb/>OPEN_DOWNGRADE. In such cases, the server MUST return <lb/>NFS4ERR_BAD_STATEID. <lb/>o If the "seqid" field is not zero and it is greater than the <lb/>current sequence value corresponding to the current "other" field, <lb/>return NFS4ERR_BAD_STATEID. <lb/>o If the "seqid" field is not zero and it is less than the current <lb/>sequence value corresponding to the current "other" field, return <lb/>NFS4ERR_OLD_STATEID. <lb/>o Otherwise, the stateid is valid and the table entry should contain <lb/>any additional information about the type of stateid and <lb/>information associated with that particular type of stateid, such <lb/>as the associated set of locks, e.g., open-owner and lock-owner <lb/>information, as well as information on the specific locks, e.g., <lb/>open modes and byte-ranges. <lb/>8.2.5. Stateid Use for I/O Operations <lb/>Clients performing I/O operations need to select an appropriate <lb/>stateid based on the locks (including opens and delegations) held by <lb/>the client and the various types of state-owners sending the I/O <lb/>requests. SETATTR operations that change the file size are treated <lb/>like I/O operations in this regard. <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 165] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>The following rules, applied in order of decreasing priority, govern <lb/>the selection of the appropriate stateid. In following these rules, <lb/>the client will only consider locks of which it has actually received <lb/>notification by an appropriate operation response or callback. Note <lb/>that the rules are slightly different in the case of I/O to data <lb/>servers when file layouts are being used (see Section 13.9.1). <lb/>o If the client holds a delegation for the file in question, the <lb/>delegation stateid SHOULD be used. <lb/>o Otherwise, if the entity corresponding to the lock-owner (e.g., a <lb/>process) sending the I/O has a byte-range lock stateid for the <lb/>associated open file, then the byte-range lock stateid for that <lb/>lock-owner and open file SHOULD be used. <lb/>o If there is no byte-range lock stateid, then the OPEN stateid for <lb/>the open file in question SHOULD be used. <lb/>o Finally, if none of the above apply, then a special stateid SHOULD <lb/>be used. <lb/>Ignoring these rules may result in situations in which the server <lb/>does not have information necessary to properly process the request. <lb/>For example, when mandatory byte-range locks are in effect, if the <lb/>stateid does not indicate the proper lock-owner, via a lock stateid, <lb/>a request might be avoidably rejected. <lb/>The server however should not try to enforce these ordering rules and <lb/>should use whatever information is available to properly process I/O <lb/>requests. In particular, when a client has a delegation for a given <lb/>file, it SHOULD take note of this fact in processing a request, even <lb/>if it is sent with a special stateid. <lb/>8.2.6. Stateid Use for SETATTR Operations <lb/>Because each operation is associated with a session ID and from that <lb/>the clientid can be determined, operations do not need to include a <lb/>stateid for the server to be able to determine whether they should <lb/>cause a delegation to be recalled or are to be treated as done within <lb/>the scope of the delegation. <lb/>In the case of SETATTR operations, a stateid is present. In cases <lb/>other than those that set the file size, the client may send either a <lb/>special stateid or, when a delegation is held for the file in <lb/>question, a delegation stateid. While the server SHOULD validate the <lb/>stateid and may use the stateid to optimize the determination as to <lb/>whether a delegation is held, it SHOULD note the presence of a <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 166] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>delegation even when a special stateid is sent, and MUST accept a <lb/>valid delegation stateid when sent. <lb/>8.3. Lease Renewal <lb/>Each client/server pair, as represented by a client ID, has a single <lb/>lease. The purpose of the lease is to allow the client to indicate <lb/>to the server, in a low-overhead way, that it is active, and thus <lb/>that the server is to retain the client's locks. This arrangement <lb/>allows the server to remove stale locking-related objects that are <lb/>held by a client that has crashed or is otherwise unreachable, once <lb/>the relevant lease expires. This in turn allows other clients to <lb/>obtain conflicting locks without being delayed indefinitely by <lb/>inactive or unreachable clients. It is not a mechanism for cache <lb/>consistency and lease renewals may not be denied if the lease <lb/>interval has not expired. <lb/>Since each session is associated with a specific client (identified <lb/>by the client's client ID), any operation sent on that session is an <lb/>indication that the associated client is reachable. When a request <lb/>is sent for a given session, successful execution of a SEQUENCE <lb/>operation (or successful retrieval of the result of SEQUENCE from the <lb/>reply cache) on an unexpired lease will result in the lease being <lb/>implicitly renewed, for the standard renewal period (equal to the <lb/>lease_time attribute). <lb/>If the client ID's lease has not expired when the server receives a <lb/>SEQUENCE operation, then the server MUST renew the lease. If the <lb/>client ID's lease has expired when the server receives a SEQUENCE <lb/>operation, the server MAY renew the lease; this depends on whether <lb/>any state was revoked as a result of the client's failure to renew <lb/>the lease before expiration. <lb/>Absent other activity that would renew the lease, a COMPOUND <lb/>consisting of a single SEQUENCE operation will suffice. The client <lb/>should also take communication-related delays into account and take <lb/>steps to ensure that the renewal messages actually reach the server <lb/>in good time. For example: <lb/>o When trunking is in effect, the client should consider sending <lb/>multiple requests on different connections, in order to ensure <lb/>that renewal occurs, even in the event of blockage in the path <lb/>used for one of those connections. <lb/>o Transport retransmission delays might become so large as to <lb/>approach or exceed the length of the lease period. This may be <lb/>particularly likely when the server is unresponsive due to a <lb/>restart; see Section 8.4.2.1. If the client implementation is not <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 167] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>careful, transport retransmission delays can result in the client <lb/>failing to detect a server restart before the grace period ends. <lb/>The scenario is that the client is using a transport with <lb/>exponential backoff, such that the maximum retransmission timeout <lb/>exceeds both the grace period and the lease_time attribute. A <lb/>network partition causes the client's connection's retransmission <lb/>interval to back off, and even after the partition heals, the next <lb/>transport-level retransmission is sent after the server has <lb/>restarted and its grace period ends. <lb/>The client MUST either recover from the ensuing NFS4ERR_NO_GRACE <lb/>errors or it MUST ensure that, despite transport-level <lb/>retransmission intervals that exceed the lease_time, a SEQUENCE <lb/>operation is sent that renews the lease before expiration. The <lb/>client can achieve this by associating a new connection with the <lb/>session, and sending a SEQUENCE operation on it. However, if the <lb/>attempt to establish a new connection is delayed for some reason <lb/>(e.g., exponential backoff of the connection establishment <lb/>packets), the client will have to abort the connection <lb/>establishment attempt before the lease expires, and attempt to <lb/>reconnect. <lb/>If the server renews the lease upon receiving a SEQUENCE operation, <lb/>the server MUST NOT allow the lease to expire while the rest of the <lb/>operations in the COMPOUND procedure's request are still executing. <lb/>Once the last operation has finished, and the response to COMPOUND <lb/>has been sent, the server MUST set the lease to expire no sooner than <lb/>the sum of current time and the value of the lease_time attribute. <lb/>A client ID's lease can expire when it has been at least the lease <lb/>interval (lease_time) since the last lease-renewing SEQUENCE <lb/>operation was sent on any of the client ID's sessions and there are <lb/>no active COMPOUND operations on any such sessions. <lb/>Because the SEQUENCE operation is the basic mechanism to renew a <lb/>lease, and because it must be done at least once for each lease <lb/>period, it is the natural mechanism whereby the server will inform <lb/>the client of changes in the lease status that the client needs to be <lb/>informed of. The client should inspect the status flags <lb/>(sr_status_flags) returned by sequence and take the appropriate <lb/>action (see Section 18.46.3 for details). <lb/>o The status bits SEQ4_STATUS_CB_PATH_DOWN and <lb/>SEQ4_STATUS_CB_PATH_DOWN_SESSION indicate problems with the <lb/>backchannel that the client may need to address in order to <lb/>receive callback requests. <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 168] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>o The status bits SEQ4_STATUS_CB_GSS_CONTEXTS_EXPIRING and <lb/>SEQ4_STATUS_CB_GSS_CONTEXTS_EXPIRED indicate problems with GSS <lb/>contexts or RPCSEC_GSS handles for the backchannel that the client <lb/>might have to address in order to allow callback requests to be <lb/>sent. <lb/>o The status bits SEQ4_STATUS_EXPIRED_ALL_STATE_REVOKED, <lb/>SEQ4_STATUS_EXPIRED_SOME_STATE_REVOKED, <lb/>SEQ4_STATUS_ADMIN_STATE_REVOKED, and <lb/>SEQ4_STATUS_RECALLABLE_STATE_REVOKED notify the client of lock <lb/>revocation events. When these bits are set, the client should use <lb/>TEST_STATEID to find what stateids have been revoked and use <lb/>FREE_STATEID to acknowledge loss of the associated state. <lb/>o The status bit SEQ4_STATUS_LEASE_MOVE indicates that <lb/>responsibility for lease renewal has been transferred to one or <lb/>more new servers. <lb/>o The status bit SEQ4_STATUS_RESTART_RECLAIM_NEEDED indicates that <lb/>due to server restart the client must reclaim locking state. <lb/>o The status bit SEQ4_STATUS_BACKCHANNEL_FAULT indicates that the <lb/>server has encountered an unrecoverable fault with the backchannel <lb/>(e.g., it has lost track of a sequence ID for a slot in the <lb/>backchannel). <lb/>8.4. Crash Recovery <lb/>A critical requirement in crash recovery is that both the client and <lb/>the server know when the other has failed. Additionally, it is <lb/>required that a client sees a consistent view of data across server <lb/>restarts. All READ and WRITE operations that may have been queued <lb/>within the client or network buffers must wait until the client has <lb/>successfully recovered the locks protecting the READ and WRITE <lb/>operations. Any that reach the server before the server can safely <lb/>determine that the client has recovered enough locking state to be <lb/>sure that such operations can be safely processed must be rejected. <lb/>This will happen because either: <lb/>o The state presented is no longer valid since it is associated with <lb/>a now invalid client ID. In this case, the client will receive <lb/>either an NFS4ERR_BADSESSION or NFS4ERR_DEADSESSION error, and any <lb/>attempt to attach a new session to that invalid client ID will <lb/>result in an NFS4ERR_STALE_CLIENTID error. <lb/>o Subsequent recovery of locks may make execution of the operation <lb/>inappropriate (NFS4ERR_GRACE). <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 169] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>8.4.1. Client Failure and Recovery <lb/>In the event that a client fails, the server may release the client's <lb/>locks when the associated lease has expired. Conflicting locks from <lb/>another client may only be granted after this lease expiration. As <lb/>discussed in Section 8.3, when a client has not failed and re-<lb/>establishes its lease before expiration occurs, requests for <lb/>conflicting locks will not be granted. <lb/>To minimize client delay upon restart, lock requests are associated <lb/>with an instance of the client by a client-supplied verifier. This <lb/>verifier is part of the client_owner4 sent in the initial EXCHANGE_ID <lb/>call made by the client. The server returns a client ID as a result <lb/>of the EXCHANGE_ID operation. The client then confirms the use of <lb/>the client ID by establishing a session associated with that client <lb/>ID (see Section 18.36.3 for a description of how this is done). All <lb/>locks, including opens, byte-range locks, delegations, and layouts <lb/>obtained by sessions using that client ID, are associated with that <lb/>client ID. <lb/>Since the verifier will be changed by the client upon each <lb/>initialization, the server can compare a new verifier to the verifier <lb/>associated with currently held locks and determine that they do not <lb/>match. This signifies the client's new instantiation and subsequent <lb/>loss (upon confirmation of the new client ID) of locking state. As a <lb/>result, the server is free to release all locks held that are <lb/>associated with the old client ID that was derived from the old <lb/>verifier. At this point, conflicting locks from other clients, kept <lb/>waiting while the lease had not yet expired, can be granted. In <lb/>addition, all stateids associated with the old client ID can also be <lb/>freed, as they are no longer reference-able. <lb/>Note that the verifier must have the same uniqueness properties as <lb/>the verifier for the COMMIT operation. <lb/>8.4.2. Server Failure and Recovery <lb/>If the server loses locking state (usually as a result of a restart), <lb/>it must allow clients time to discover this fact and re-establish the <lb/>lost locking state. The client must be able to re-establish the <lb/>locking state without having the server deny valid requests because <lb/>the server has granted conflicting access to another client. <lb/>Likewise, if there is a possibility that clients have not yet re-<lb/>established their locking state for a file and that such locking <lb/>state might make it invalid to perform READ or WRITE operations. For <lb/>example, if mandatory locks are a possibility, the server must <lb/>disallow READ and WRITE operations for that file. <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 170] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>A client can determine that loss of locking state has occurred via <lb/>several methods. <lb/>1. When a SEQUENCE (most common) or other operation returns <lb/>NFS4ERR_BADSESSION, this may mean that the session has been <lb/>destroyed but the client ID is still valid. The client sends a <lb/>CREATE_SESSION request with the client ID to re-establish the <lb/>session. If CREATE_SESSION fails with NFS4ERR_STALE_CLIENTID, <lb/>the client must establish a new client ID (see Section 8.1) and <lb/>re-establish its lock state with the new client ID, after the <lb/>CREATE_SESSION operation succeeds (see Section 8.4.2.1). <lb/>2. When a SEQUENCE (most common) or other operation on a persistent <lb/>session returns NFS4ERR_DEADSESSION, this indicates that a <lb/>session is no longer usable for new, i.e., not satisfied from the <lb/>reply cache, operations. Once all pending operations are <lb/>determined to be either performed before the retry or not <lb/>performed, the client sends a CREATE_SESSION request with the <lb/>client ID to re-establish the session. If CREATE_SESSION fails <lb/>with NFS4ERR_STALE_CLIENTID, the client must establish a new <lb/>client ID (see Section 8.1) and re-establish its lock state after <lb/>the CREATE_SESSION, with the new client ID, succeeds <lb/>(Section 8.4.2.1). <lb/>3. When an operation, neither SEQUENCE nor preceded by SEQUENCE (for <lb/>example, CREATE_SESSION, DESTROY_SESSION), returns <lb/>NFS4ERR_STALE_CLIENTID, the client MUST establish a new client ID <lb/>(Section 8.1) and re-establish its lock state (Section 8.4.2.1). <lb/>8.4.2.1. State Reclaim <lb/>When state information and the associated locks are lost as a result <lb/>of a server restart, the protocol must provide a way to cause that <lb/>state to be re-established. The approach used is to define, for most <lb/>types of locking state (layouts are an exception), a request whose <lb/>function is to allow the client to re-establish on the server a lock <lb/>first obtained from a previous instance. Generally, these requests <lb/>are variants of the requests normally used to create locks of that <lb/>type and are referred to as "reclaim-type" requests, and the process <lb/>of re-establishing such locks is referred to as "reclaiming" them. <lb/>Because each client must have an opportunity to reclaim all of the <lb/>locks that it has without the possibility that some other client will <lb/>be granted a conflicting lock, a "grace period" is devoted to the <lb/>reclaim process. During this period, requests creating client IDs <lb/>and sessions are handled normally, but locking requests are subject <lb/>to special restrictions. Only reclaim-type locking requests are <lb/>allowed, unless the server can reliably determine (through state <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 171] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>persistently maintained across restart instances) that granting any <lb/>such lock cannot possibly conflict with a subsequent reclaim. When a <lb/>request is made to obtain a new lock (i.e., not a reclaim-type <lb/>request) during the grace period and such a determination cannot be <lb/>made, the server must return the error NFS4ERR_GRACE. <lb/>Once a session is established using the new client ID, the client <lb/>will use reclaim-type locking requests (e.g., LOCK operations with <lb/>reclaim set to TRUE and OPEN operations with a claim type of <lb/>CLAIM_PREVIOUS; see Section 9.11) to re-establish its locking state. <lb/>Once this is done, or if there is no such locking state to reclaim, <lb/>the client sends a global RECLAIM_COMPLETE operation, i.e., one with <lb/>the rca_one_fs argument set to FALSE, to indicate that it has <lb/>reclaimed all of the locking state that it will reclaim. Once a <lb/>client sends such a RECLAIM_COMPLETE operation, it may attempt non-<lb/>reclaim locking operations, although it might get an NFS4ERR_GRACE <lb/>status result from each such operation until the period of special <lb/>handling is over. See Section 11.10.9 for a discussion of the <lb/>analogous handling lock reclamation in the case of file systems <lb/>transitioning from server to server. <lb/>During the grace period, the server must reject READ and WRITE <lb/>operations and non-reclaim locking requests (i.e., other LOCK and <lb/>OPEN operations) with an error of NFS4ERR_GRACE, unless it can <lb/>guarantee that these may be done safely, as described below. <lb/>The grace period may last until all clients that are known to <lb/>possibly have had locks have done a global RECLAIM_COMPLETE <lb/>operation, indicating that they have finished reclaiming the locks <lb/>they held before the server restart. This means that a client that <lb/>has done a RECLAIM_COMPLETE must be prepared to receive an <lb/>NFS4ERR_GRACE when attempting to acquire new locks. In order for the <lb/>server to know that all clients with possible prior lock state have <lb/>done a RECLAIM_COMPLETE, the server must maintain in stable storage a <lb/>list clients that may have such locks. The server may also terminate <lb/>the grace period before all clients have done a global <lb/>RECLAIM_COMPLETE. The server SHOULD NOT terminate the grace period <lb/>before a time equal to the lease period in order to give clients an <lb/>opportunity to find out about the server restart, as a result of <lb/>sending requests on associated sessions with a frequency governed by <lb/>the lease time. Note that when a client does not send such requests <lb/>(or they are sent by the client but not received by the server), it <lb/>is possible for the grace period to expire before the client finds <lb/>out that the server restart has occurred. <lb/>Some additional time in order to allow a client to establish a new <lb/>client ID and session and to effect lock reclaims may be added to the <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 172] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>lease time. Note that analogous rules apply to file system-specific <lb/>grace periods discussed in Section 11.10.9. <lb/>If the server can reliably determine that granting a non-reclaim <lb/>request will not conflict with reclamation of locks by other clients, <lb/>the NFS4ERR_GRACE error does not have to be returned even within the <lb/>grace period, although NFS4ERR_GRACE must always be returned to <lb/>clients attempting a non-reclaim lock request before doing their own <lb/>global RECLAIM_COMPLETE. For the server to be able to service READ <lb/>and WRITE operations during the grace period, it must again be able <lb/>to guarantee that no possible conflict could arise between a <lb/>potential reclaim locking request and the READ or WRITE operation. <lb/>If the server is unable to offer that guarantee, the NFS4ERR_GRACE <lb/>error must be returned to the client. <lb/>For a server to provide simple, valid handling during the grace <lb/>period, the easiest method is to simply reject all non-reclaim <lb/>locking requests and READ and WRITE operations by returning the <lb/>NFS4ERR_GRACE error. However, a server may keep information about <lb/>granted locks in stable storage. With this information, the server <lb/>could determine if a locking, READ or WRITE operation can be safely <lb/>processed. <lb/>For example, if the server maintained on stable storage summary <lb/>information on whether mandatory locks exist, either mandatory byte-<lb/>range locks, or share reservations specifying deny modes, many <lb/>requests could be allowed during the grace period. If it is known <lb/>that no such share reservations exist, OPEN request that do not <lb/>specify deny modes may be safely granted. If, in addition, it is <lb/>known that no mandatory byte-range locks exist, either through <lb/>information stored on stable storage or simply because the server <lb/>does not support such locks, READ and WRITE operations may be safely <lb/>processed during the grace period. Another important case is where <lb/>it is known that no mandatory byte-range locks exist, either because <lb/>the server does not provide support for them or because their absence <lb/>is known from persistently recorded data. In this case, READ and <lb/>WRITE operations specifying stateids derived from reclaim-type <lb/>operations may be validly processed during the grace period because <lb/>of the fact that the valid reclaim ensures that no lock subsequently <lb/>granted can prevent the I/O. <lb/>To reiterate, for a server that allows non-reclaim lock and I/O <lb/>requests to be processed during the grace period, it MUST determine <lb/>that no lock subsequently reclaimed will be rejected and that no lock <lb/>subsequently reclaimed would have prevented any I/O operation <lb/>processed during the grace period. <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 173] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>Clients should be prepared for the return of NFS4ERR_GRACE errors for <lb/>non-reclaim lock and I/O requests. In this case, the client should <lb/>employ a retry mechanism for the request. A delay (on the order of <lb/>several seconds) between retries should be used to avoid overwhelming <lb/>the server. Further discussion of the general issue is included in <lb/>[50]. The client must account for the server that can perform I/O <lb/>and non-reclaim locking requests within the grace period as well as <lb/>those that cannot do so. <lb/>A reclaim-type locking request outside the server's grace period can <lb/>only succeed if the server can guarantee that no conflicting lock or <lb/>I/O request has been granted since restart. <lb/>A server may, upon restart, establish a new value for the lease <lb/>period. Therefore, clients should, once a new client ID is <lb/>established, refetch the lease_time attribute and use it as the basis <lb/>for lease renewal for the lease associated with that server. <lb/>However, the server must establish, for this restart event, a grace <lb/>period at least as long as the lease period for the previous server <lb/>instantiation. This allows the client state obtained during the <lb/>previous server instance to be reliably re-established. <lb/>The possibility exists that, because of server configuration events, <lb/>the client will be communicating with a server different than the one <lb/>on which the locks were obtained, as shown by the combination of <lb/>eir_server_scope and eir_server_owner. This leads to the issue of if <lb/>and when the client should attempt to reclaim locks previously <lb/>obtained on what is being reported as a different server. The rules <lb/>to resolve this question are as follows: <lb/>o If the server scope is different, the client should not attempt to <lb/>reclaim locks. In this situation, no lock reclaim is possible. <lb/>Any attempt to re-obtain the locks with non-reclaim operations is <lb/>problematic since there is no guarantee that the existing <lb/>filehandles will be recognized by the new server, or that if <lb/>recognized, they denote the same objects. It is best to treat the <lb/>locks as having been revoked by the reconfiguration event. <lb/>o If the server scope is the same, the client should attempt to <lb/>reclaim locks, even if the eir_server_owner value is different. <lb/>In this situation, it is the responsibility of the server to <lb/>return NFS4ERR_NO_GRACE if it cannot provide correct support for <lb/>lock reclaim operations, including the prevention of edge <lb/>conditions. <lb/>The eir_server_owner field is not used in making this determination. <lb/>Its function is to specify trunking possibilities for the client (see <lb/>Section 2.10.5) and not to control lock reclaim. <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 174] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>8.4.2.1.1. Security Considerations for State Reclaim <lb/>During the grace period, a client can reclaim state that it believes <lb/>or asserts it had before the server restarted. Unless the server <lb/>maintained a complete record of all the state the client had, the <lb/>server has little choice but to trust the client. (Of course, if the <lb/>server maintained a complete record, then it would not have to force <lb/>the client to reclaim state after server restart.) While the server <lb/>has to trust the client to tell the truth, such trust does not have <lb/>any negative consequences for security. The fundamental rule for the <lb/>server when processing reclaim requests is that it MUST NOT grant the <lb/>reclaim if an equivalent non-reclaim request would not be granted <lb/>during steady state due to access control or access conflict issues. <lb/>For example, an OPEN request during a reclaim will be refused with <lb/>NFS4ERR_ACCESS if the principal making the request does not have <lb/>access to open the file according to the discretionary ACL <lb/>(Section 6.2.2) on the file. <lb/>Nonetheless, it is possible that a client operating in error or <lb/>maliciously could, during reclaim, prevent another client from <lb/>reclaiming access to state. For example, an attacker could send an <lb/>OPEN reclaim operation with a deny mode that prevents another client <lb/>from reclaiming the OPEN state it had before the server restarted. <lb/>The attacker could perform the same denial of service during steady <lb/>state prior to server restart, as long as the attacker had <lb/>permissions. Given that the attack vectors are equivalent, the grace <lb/>period does not offer any additional opportunity for denial of <lb/>service, and any concerns about this attack vector, whether during <lb/>grace or steady state, are addressed the same way: use RPCSEC_GSS for <lb/>authentication and limit access to the file only to principals that <lb/>the owner of the file trusts. <lb/>Note that if prior to restart the server had client IDs with the <lb/>EXCHGID4_FLAG_BIND_PRINC_STATEID (Section 18.35) capability set, then <lb/>the server SHOULD record in stable storage the client owner and the <lb/>principal that established the client ID via EXCHANGE_ID. If the <lb/>server does not, then there is a risk a client will be unable to <lb/>reclaim state if it does not have a credential for a principal that <lb/>was originally authorized to establish the state. <lb/>8.4.3. Network Partitions and Recovery <lb/>If the duration of a network partition is greater than the lease <lb/>period provided by the server, the server will not have received a <lb/>lease renewal from the client. If this occurs, the server may free <lb/>all locks held for the client or it may allow the lock state to <lb/>remain for a considerable period, subject to the constraint that if a <lb/>request for a conflicting lock is made, locks associated with an <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 175] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>expired lease do not prevent such a conflicting lock from being <lb/>granted but MUST be revoked as necessary so as to avoid interfering <lb/>with such conflicting requests. <lb/>If the server chooses to delay freeing of lock state until there is a <lb/>conflict, it may either free all of the client's locks once there is <lb/>a conflict or it may only revoke the minimum set of locks necessary <lb/>to allow conflicting requests. When it adopts the finer-grained <lb/>approach, it must revoke all locks associated with a given stateid, <lb/>even if the conflict is with only a subset of locks. <lb/>When the server chooses to free all of a client's lock state, either <lb/>immediately upon lease expiration or as a result of the first attempt <lb/>to obtain a conflicting a lock, the server may report the loss of <lb/>lock state in a number of ways. <lb/>The server may choose to invalidate the session and the associated <lb/>client ID. In this case, once the client can communicate with the <lb/>server, it will receive an NFS4ERR_BADSESSION error. Upon attempting <lb/>to create a new session, it would get an NFS4ERR_STALE_CLIENTID. <lb/>Upon creating the new client ID and new session, the client will <lb/>attempt to reclaim locks. Normally, the server will not allow the <lb/>client to reclaim locks, because the server will not be in its <lb/>recovery grace period. <lb/>Another possibility is for the server to maintain the session and <lb/>client ID but for all stateids held by the client to become invalid <lb/>or stale. Once the client can reach the server after such a network <lb/>partition, the status returned by the SEQUENCE operation will <lb/>indicate a loss of locking state; i.e., the flag <lb/>SEQ4_STATUS_EXPIRED_ALL_STATE_REVOKED will be set in sr_status_flags. <lb/>In addition, all I/O submitted by the client with the now invalid <lb/>stateids will fail with the server returning the error <lb/>NFS4ERR_EXPIRED. Once the client learns of the loss of locking <lb/>state, it will suitably notify the applications that held the <lb/>invalidated locks. The client should then take action to free <lb/>invalidated stateids, either by establishing a new client ID using a <lb/>new verifier or by doing a FREE_STATEID operation to release each of <lb/>the invalidated stateids. <lb/>When the server adopts a finer-grained approach to revocation of <lb/>locks when a client's lease has expired, only a subset of stateids <lb/>will normally become invalid during a network partition. When the <lb/>client can communicate with the server after such a network partition <lb/>heals, the status returned by the SEQUENCE operation will indicate a <lb/>partial loss of locking state <lb/>(SEQ4_STATUS_EXPIRED_SOME_STATE_REVOKED). In addition, operations, <lb/>including I/O submitted by the client, with the now invalid stateids <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 176] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>will fail with the server returning the error NFS4ERR_EXPIRED. Once <lb/>the client learns of the loss of locking state, it will use the <lb/>TEST_STATEID operation on all of its stateids to determine which <lb/>locks have been lost and then suitably notify the applications that <lb/>held the invalidated locks. The client can then release the <lb/>invalidated locking state and acknowledge the revocation of the <lb/>associated locks by doing a FREE_STATEID operation on each of the <lb/>invalidated stateids. <lb/>When a network partition is combined with a server restart, there are <lb/>edge conditions that place requirements on the server in order to <lb/>avoid silent data corruption following the server restart. Two of <lb/>these edge conditions are known, and are discussed below. <lb/>The first edge condition arises as a result of the scenarios such as <lb/>the following: <lb/>1. Client A acquires a lock. <lb/>2. Client A and server experience mutual network partition, such <lb/>that client A is unable to renew its lease. <lb/>3. Client A's lease expires, and the server releases the lock. <lb/>4. Client B acquires a lock that would have conflicted with that of <lb/>client A. <lb/>5. Client B releases its lock. <lb/>6. Server restarts. <lb/>7. Network partition between client A and server heals. <lb/>8. Client A connects to a new server instance and finds out about <lb/>server restart. <lb/>9. Client A reclaims its lock within the server's grace period. <lb/>Thus, at the final step, the server has erroneously granted client <lb/>A's lock reclaim. If client B modified the object the lock was <lb/>protecting, client A will experience object corruption. <lb/>The second known edge condition arises in situations such as the <lb/>following: <lb/>1. <lb/>Client A acquires one or more locks. <lb/>2. <lb/>Server restarts. <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 177] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>3. <lb/>Client A and server experience mutual network partition, such <lb/>that client A is unable to reclaim all of its locks within the <lb/>grace period. <lb/>4. <lb/>Server's reclaim grace period ends. Client A has either no <lb/>locks or an incomplete set of locks known to the server. <lb/>5. <lb/>Client B acquires a lock that would have conflicted with a lock <lb/>of client A that was not reclaimed. <lb/>6. <lb/>Client B releases the lock. <lb/>7. <lb/>Server restarts a second time. <lb/>8. <lb/>Network partition between client A and server heals. <lb/>9. <lb/>Client A connects to new server instance and finds out about <lb/>server restart. <lb/>10. Client A reclaims its lock within the server's grace period. <lb/>As with the first edge condition, the final step of the scenario of <lb/>the second edge condition has the server erroneously granting client <lb/>A's lock reclaim. <lb/>Solving the first and second edge conditions requires either that the <lb/>server always assumes after it restarts that some edge condition <lb/>occurs, and thus returns NFS4ERR_NO_GRACE for all reclaim attempts, <lb/>or that the server record some information in stable storage. The <lb/>amount of information the server records in stable storage is in <lb/>inverse proportion to how harsh the server intends to be whenever <lb/>edge conditions arise. The server that is completely tolerant of all <lb/>edge conditions will record in stable storage every lock that is <lb/>acquired, removing the lock record from stable storage only when the <lb/>lock is released. For the two edge conditions discussed above, the <lb/>harshest a server can be, and still support a grace period for <lb/>reclaims, requires that the server record in stable storage some <lb/>minimal information. For example, a server implementation could, for <lb/>each client, save in stable storage a record containing: <lb/>o the co_ownerid field from the client_owner4 presented in the <lb/>EXCHANGE_ID operation. <lb/>o a boolean that indicates if the client's lease expired or if there <lb/>was administrative intervention (see Section 8.5) to revoke a <lb/>byte-range lock, share reservation, or delegation and there has <lb/>been no acknowledgment, via FREE_STATEID, of such revocation. <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 178] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>o a boolean that indicates whether the client may have locks that it <lb/>believes to be reclaimable in situations in which the grace period <lb/>was terminated, making the server's view of lock reclaimability <lb/>suspect. The server will set this for any client record in stable <lb/>storage where the client has not done a suitable RECLAIM_COMPLETE <lb/>(global or file system-specific depending on the target of the <lb/>lock request) before it grants any new (i.e., not reclaimed) lock <lb/>to any client. <lb/>Assuming the above record keeping, for the first edge condition, <lb/>after the server restarts, the record that client A's lease expired <lb/>means that another client could have acquired a conflicting byte-<lb/>range lock, share reservation, or delegation. Hence, the server must <lb/>reject a reclaim from client A with the error NFS4ERR_NO_GRACE. <lb/>For the second edge condition, after the server restarts for a second <lb/>time, the indication that the client had not completed its reclaims <lb/>at the time at which the grace period ended means that the server <lb/>must reject a reclaim from client A with the error NFS4ERR_NO_GRACE. <lb/>When either edge condition occurs, the client's attempt to reclaim <lb/>locks will result in the error NFS4ERR_NO_GRACE. When this is <lb/>received, or after the client restarts with no lock state, the client <lb/>will send a global RECLAIM_COMPLETE. When the RECLAIM_COMPLETE is <lb/>received, the server and client are again in agreement regarding <lb/>reclaimable locks and both booleans in persistent storage can be <lb/>reset, to be set again only when there is a subsequent event that <lb/>causes lock reclaim operations to be questionable. <lb/>Regardless of the level and approach to record keeping, the server <lb/>MUST implement one of the following strategies (which apply to <lb/>reclaims of share reservations, byte-range locks, and delegations): <lb/>1. Reject all reclaims with NFS4ERR_NO_GRACE. This is extremely <lb/>unforgiving, but necessary if the server does not record lock <lb/>state in stable storage. <lb/>2. Record sufficient state in stable storage such that all known <lb/>edge conditions involving server restart, including the two noted <lb/>in this section, are detected. It is acceptable to erroneously <lb/>recognize an edge condition and not allow a reclaim, when, with <lb/>sufficient knowledge, it would be allowed. The error the server <lb/>would return in this case is NFS4ERR_NO_GRACE. Note that it is <lb/>not known if there are other edge conditions. <lb/>In the event that, after a server restart, the server determines <lb/>there is unrecoverable damage or corruption to the information in <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 179] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>stable storage, then for all clients and/or locks that may be <lb/>affected, the server MUST return NFS4ERR_NO_GRACE. <lb/>A mandate for the client's handling of the NFS4ERR_NO_GRACE error is <lb/>outside the scope of this specification, since the strategies for <lb/>such handling are very dependent on the client's operating <lb/>environment. However, one potential approach is described below. <lb/>When the client receives NFS4ERR_NO_GRACE, it could examine the <lb/>change attribute of the objects for which the client is trying to <lb/>reclaim state, and use that to determine whether to re-establish the <lb/>state via normal OPEN or LOCK operations. This is acceptable <lb/>provided that the client's operating environment allows it. In other <lb/>words, the client implementor is advised to document for his users <lb/>the behavior. The client could also inform the application that its <lb/>byte-range lock or share reservations (whether or not they were <lb/>delegated) have been lost, such as via a UNIX signal, a Graphical <lb/>User Interface (GUI) pop-up window, etc. See Section 10.5 for a <lb/>discussion of what the client should do for dealing with unreclaimed <lb/>delegations on client state. <lb/>For further discussion of revocation of locks, see Section 8.5. <lb/>8.5. Server Revocation of Locks <lb/>At any point, the server can revoke locks held by a client, and the <lb/>client must be prepared for this event. When the client detects that <lb/>its locks have been or may have been revoked, the client is <lb/>responsible for validating the state information between itself and <lb/>the server. Validating locking state for the client means that it <lb/>must verify or reclaim state for each lock currently held. <lb/>The first occasion of lock revocation is upon server restart. Note <lb/>that this includes situations in which sessions are persistent and <lb/>locking state is lost. In this class of instances, the client will <lb/>receive an error (NFS4ERR_STALE_CLIENTID) on an operation that takes <lb/>client ID, usually as part of recovery in response to a problem with <lb/>the current session), and the client will proceed with normal crash <lb/>recovery as described in the Section 8.4.2.1. <lb/>The second occasion of lock revocation is the inability to renew the <lb/>lease before expiration, as discussed in Section 8.4.3. While this <lb/>is considered a rare or unusual event, the client must be prepared to <lb/>recover. The server is responsible for determining the precise <lb/>consequences of the lease expiration, informing the client of the <lb/>scope of the lock revocation decided upon. The client then uses the <lb/>status information provided by the server in the SEQUENCE results <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 180] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>(field sr_status_flags, see Section 18.46.3) to synchronize its <lb/>locking state with that of the server, in order to recover. <lb/>The third occasion of lock revocation can occur as a result of <lb/>revocation of locks within the lease period, either because of <lb/>administrative intervention or because a recallable lock (a <lb/>delegation or layout) was not returned within the lease period after <lb/>having been recalled. While these are considered rare events, they <lb/>are possible, and the client must be prepared to deal with them. <lb/>When either of these events occurs, the client finds out about the <lb/>situation through the status returned by the SEQUENCE operation. Any <lb/>use of stateids associated with locks revoked during the lease period <lb/>will receive the error NFS4ERR_ADMIN_REVOKED or <lb/>NFS4ERR_DELEG_REVOKED, as appropriate. <lb/>In all situations in which a subset of locking state may have been <lb/>revoked, which include all cases in which locking state is revoked <lb/>within the lease period, it is up to the client to determine which <lb/>locks have been revoked and which have not. It does this by using <lb/>the TEST_STATEID operation on the appropriate set of stateids. Once <lb/>the set of revoked locks has been determined, the applications can be <lb/>notified, and the invalidated stateids can be freed and lock <lb/>revocation acknowledged by using FREE_STATEID. <lb/>8.6. Short and Long Leases <lb/>When determining the time period for the server lease, the usual <lb/>lease tradeoffs apply. A short lease is good for fast server <lb/>recovery at a cost of increased operations to effect lease renewal <lb/>(when there are no other operations during the period to effect lease <lb/>renewal as a side effect). A long lease is certainly kinder and <lb/>gentler to servers trying to handle very large numbers of clients. <lb/>The number of extra requests to effect lock renewal drops in inverse <lb/>proportion to the lease time. The disadvantages of a long lease <lb/>include the possibility of slower recovery after certain failures. <lb/>After server failure, a longer grace period may be required when some <lb/>clients do not promptly reclaim their locks and do a global <lb/>RECLAIM_COMPLETE. In the event of client failure, the longer period <lb/>for a lease to expire will force conflicting requests to wait longer. <lb/>A long lease is practical if the server can store lease state in <lb/>stable storage. Upon recovery, the server can reconstruct the lease <lb/>state from its stable storage and continue operation with its <lb/>clients. <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 181] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>8.7. Clocks, Propagation Delay, and Calculating Lease Expiration <lb/>To avoid the need for synchronized clocks, lease times are granted by <lb/>the server as a time delta. However, there is a requirement that the <lb/>client and server clocks do not drift excessively over the duration <lb/>of the lease. There is also the issue of propagation delay across <lb/>the network, which could easily be several hundred milliseconds, as <lb/>well as the possibility that requests will be lost and need to be <lb/>retransmitted. <lb/>To take propagation delay into account, the client should subtract it <lb/>from lease times (e.g., if the client estimates the one-way <lb/>propagation delay as 200 milliseconds, then it can assume that the <lb/>lease is already 200 milliseconds old when it gets it). In addition, <lb/>it will take another 200 milliseconds to get a response back to the <lb/>server. So the client must send a lease renewal or write data back <lb/>to the server at least 400 milliseconds before the lease would <lb/>expire. If the propagation delay varies over the life of the lease <lb/>(e.g., the client is on a mobile host), the client will need to <lb/>continuously subtract the increase in propagation delay from the <lb/>lease times. <lb/>The server's lease period configuration should take into account the <lb/>network distance of the clients that will be accessing the server's <lb/>resources. It is expected that the lease period will take into <lb/>account the network propagation delays and other network delay <lb/>factors for the client population. Since the protocol does not allow <lb/>for an automatic method to determine an appropriate lease period, the <lb/>server's administrator may have to tune the lease period. <lb/>8.8. Obsolete Locking Infrastructure from NFSv4.0 <lb/>There are a number of operations and fields within existing <lb/>operations that no longer have a function in NFSv4.1. In one way or <lb/>another, these changes are all due to the implementation of sessions <lb/>that provide client context and exactly once semantics as a base <lb/>feature of the protocol, separate from locking itself. <lb/>The following NFSv4.0 operations MUST NOT be implemented in NFSv4.1. <lb/>The server MUST return NFS4ERR_NOTSUPP if these operations are found <lb/>in an NFSv4.1 COMPOUND. <lb/>o SETCLIENTID since its function has been replaced by EXCHANGE_ID. <lb/>o SETCLIENTID_CONFIRM since client ID confirmation now happens by <lb/>means of CREATE_SESSION. <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 182] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>o OPEN_CONFIRM because state-owner-based seqids have been replaced <lb/>by the sequence ID in the SEQUENCE operation. <lb/>o RELEASE_LOCKOWNER because lock-owners with no associated locks do <lb/>not have any sequence-related state and so can be deleted by the <lb/>server at will. <lb/>o RENEW because every SEQUENCE operation for a session causes lease <lb/>renewal, making a separate operation superfluous. <lb/>Also, there are a number of fields, present in existing operations, <lb/>related to locking that have no use in minor version 1. They were <lb/>used in minor version 0 to perform functions now provided in a <lb/>different fashion. <lb/>o Sequence ids used to sequence requests for a given state-owner and <lb/>to provide retry protection, now provided via sessions. <lb/>o Client IDs used to identify the client associated with a given <lb/>request. Client identification is now available using the client <lb/>ID associated with the current session, without needing an <lb/>explicit client ID field. <lb/>Such vestigial fields in existing operations have no function in <lb/>NFSv4.1 and are ignored by the server. Note that client IDs in <lb/>operations new to NFSv4.1 (such as CREATE_SESSION and <lb/>DESTROY_CLIENTID) are not ignored. <lb/>9. File Locking and Share Reservations <lb/>To support Win32 share reservations, it is necessary to provide <lb/>operations that atomically open or create files. Having a separate <lb/>share/unshare operation would not allow correct implementation of the <lb/>Win32 OpenFile API. In order to correctly implement share semantics, <lb/>the previous NFS protocol mechanisms used when a file is opened or <lb/>created (LOOKUP, CREATE, ACCESS) need to be replaced. The NFSv4.1 <lb/>protocol defines an OPEN operation that is capable of atomically <lb/>looking up, creating, and locking a file on the server. <lb/>9.1. Opens and Byte-Range Locks <lb/>It is assumed that manipulating a byte-range lock is rare when <lb/>compared to READ and WRITE operations. It is also assumed that <lb/>server restarts and network partitions are relatively rare. <lb/>Therefore, it is important that the READ and WRITE operations have a <lb/>lightweight mechanism to indicate if they possess a held lock. A <lb/>LOCK operation contains the heavyweight information required to <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 183] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>establish a byte-range lock and uniquely define the owner of the <lb/>lock. <lb/>9.1.1. State-Owner Definition <lb/>When opening a file or requesting a byte-range lock, the client must <lb/>specify an identifier that represents the owner of the requested <lb/>lock. This identifier is in the form of a state-owner, represented <lb/>in the protocol by a state_owner4, a variable-length opaque array <lb/>that, when concatenated with the current client ID, uniquely defines <lb/>the owner of a lock managed by the client. This may be a thread ID, <lb/>process ID, or other unique value. <lb/>Owners of opens and owners of byte-range locks are separate entities <lb/>and remain separate even if the same opaque arrays are used to <lb/>designate owners of each. The protocol distinguishes between open-<lb/>owners (represented by open_owner4 structures) and lock-owners <lb/>(represented by lock_owner4 structures). <lb/>Each open is associated with a specific open-owner while each byte-<lb/>range lock is associated with a lock-owner and an open-owner, the <lb/>latter being the open-owner associated with the open file under which <lb/>the LOCK operation was done. Delegations and layouts, on the other <lb/>hand, are not associated with a specific owner but are associated <lb/>with the client as a whole (identified by a client ID). <lb/>9.1.2. Use of the Stateid and Locking <lb/>All READ, WRITE, and SETATTR operations contain a stateid. For the <lb/>purposes of this section, SETATTR operations that change the size <lb/>attribute of a file are treated as if they are writing the area <lb/>between the old and new sizes (i.e., the byte-range truncated or <lb/>added to the file by means of the SETATTR), even where SETATTR is not <lb/>explicitly mentioned in the text. The stateid passed to one of these <lb/>operations must be one that represents an open, a set of byte-range <lb/>locks, or a delegation, or it may be a special stateid representing <lb/>anonymous access or the special bypass stateid. <lb/>If the state-owner performs a READ or WRITE operation in a situation <lb/>in which it has established a byte-range lock or share reservation on <lb/>the server (any OPEN constitutes a share reservation), the stateid <lb/>(previously returned by the server) must be used to indicate what <lb/>locks, including both byte-range locks and share reservations, are <lb/>held by the state-owner. If no state is established by the client, <lb/>either a byte-range lock or a share reservation, a special stateid <lb/>for anonymous state (zero as the value for "other" and "seqid") is <lb/>used. (See Section 8.2.3 for a description of 'special' stateids in <lb/>general.) Regardless of whether a stateid for anonymous state or a <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 184] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>stateid returned by the server is used, if there is a conflicting <lb/>share reservation or mandatory byte-range lock held on the file, the <lb/>server MUST refuse to service the READ or WRITE operation. <lb/>Share reservations are established by OPEN operations and by their <lb/>nature are mandatory in that when the OPEN denies READ or WRITE <lb/>operations, that denial results in such operations being rejected <lb/>with error NFS4ERR_LOCKED. Byte-range locks may be implemented by <lb/>the server as either mandatory or advisory, or the choice of <lb/>mandatory or advisory behavior may be determined by the server on the <lb/>basis of the file being accessed (for example, some UNIX-based <lb/>servers support a "mandatory lock bit" on the mode attribute such <lb/>that if set, byte-range locks are required on the file before I/O is <lb/>possible). When byte-range locks are advisory, they only prevent the <lb/>granting of conflicting lock requests and have no effect on READs or <lb/>WRITEs. Mandatory byte-range locks, however, prevent conflicting I/O <lb/>operations. When they are attempted, they are rejected with <lb/>NFS4ERR_LOCKED. When the client gets NFS4ERR_LOCKED on a file for <lb/>which it knows it has the proper share reservation, it will need to <lb/>send a LOCK operation on the byte-range of the file that includes the <lb/>byte-range the I/O was to be performed on, with an appropriate <lb/>locktype field of the LOCK operation's arguments (i.e., READ*_LT for <lb/>a READ operation, WRITE*_LT for a WRITE operation). <lb/>Note that for UNIX environments that support mandatory byte-range <lb/>locking, the distinction between advisory and mandatory locking is <lb/>subtle. In fact, advisory and mandatory byte-range locks are exactly <lb/>the same as far as the APIs and requirements on implementation. If <lb/>the mandatory lock attribute is set on the file, the server checks to <lb/>see if the lock-owner has an appropriate shared (READ_LT) or <lb/>exclusive (WRITE_LT) byte-range lock on the byte-range it wishes to <lb/>READ from or WRITE to. If there is no appropriate lock, the server <lb/>checks if there is a conflicting lock (which can be done by <lb/>attempting to acquire the conflicting lock on behalf of the lock-<lb/>owner, and if successful, release the lock after the READ or WRITE <lb/>operation is done), and if there is, the server returns <lb/>NFS4ERR_LOCKED. <lb/>For Windows environments, byte-range locks are always mandatory, so <lb/>the server always checks for byte-range locks during I/O requests. <lb/>Thus, the LOCK operation does not need to distinguish between <lb/>advisory and mandatory byte-range locks. It is the server's <lb/>processing of the READ and WRITE operations that introduces the <lb/>distinction. <lb/>Every stateid that is validly passed to READ, WRITE, or SETATTR, with <lb/>the exception of special stateid values, defines an access mode for <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 185] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>the file (i.e., OPEN4_SHARE_ACCESS_READ, OPEN4_SHARE_ACCESS_WRITE, or <lb/>OPEN4_SHARE_ACCESS_BOTH). <lb/>o For stateids associated with opens, this is the mode defined by <lb/>the original OPEN that caused the allocation of the OPEN stateid <lb/>and as modified by subsequent OPENs and OPEN_DOWNGRADEs for the <lb/>same open-owner/file pair. <lb/>o For stateids returned by byte-range LOCK operations, the <lb/>appropriate mode is the access mode for the OPEN stateid <lb/>associated with the lock set represented by the stateid. <lb/>o For delegation stateids, the access mode is based on the type of <lb/>delegation. <lb/>When a READ, WRITE, or SETATTR (that specifies the size attribute) <lb/>operation is done, the operation is subject to checking against the <lb/>access mode to verify that the operation is appropriate given the <lb/>stateid with which the operation is associated. <lb/>In the case of WRITE-type operations (i.e., WRITEs and SETATTRs that <lb/>set size), the server MUST verify that the access mode allows writing <lb/>and MUST return an NFS4ERR_OPENMODE error if it does not. In the <lb/>case of READ, the server may perform the corresponding check on the <lb/>access mode, or it may choose to allow READ on OPENs for <lb/>OPEN4_SHARE_ACCESS_WRITE, to accommodate clients whose WRITE <lb/>implementation may unavoidably do reads (e.g., due to buffer cache <lb/>constraints). However, even if READs are allowed in these <lb/>circumstances, the server MUST still check for locks that conflict <lb/>with the READ (e.g., another OPEN specified OPEN4_SHARE_DENY_READ or <lb/>OPEN4_SHARE_DENY_BOTH). Note that a server that does enforce the <lb/>access mode check on READs need not explicitly check for conflicting <lb/>share reservations since the existence of OPEN for <lb/>OPEN4_SHARE_ACCESS_READ guarantees that no conflicting share <lb/>reservation can exist. <lb/>The READ bypass special stateid (all bits of "other" and "seqid" set <lb/>to one) indicates a desire to bypass locking checks. The server MAY <lb/>allow READ operations to bypass locking checks at the server, when <lb/>this special stateid is used. However, WRITE operations with this <lb/>special stateid value MUST NOT bypass locking checks and are treated <lb/>exactly the same as if a special stateid for anonymous state were <lb/>used. <lb/>A lock may not be granted while a READ or WRITE operation using one <lb/>of the special stateids is being performed and the scope of the lock <lb/>to be granted would conflict with the READ or WRITE operation. This <lb/>can occur when: <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 186] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>o A mandatory byte-range lock is requested with a byte-range that <lb/>conflicts with the byte-range of the READ or WRITE operation. For <lb/>the purposes of this paragraph, a conflict occurs when a shared <lb/>lock is requested and a WRITE operation is being performed, or an <lb/>exclusive lock is requested and either a READ or a WRITE operation <lb/>is being performed. <lb/>o A share reservation is requested that denies reading and/or <lb/>writing and the corresponding operation is being performed. <lb/>o A delegation is to be granted and the delegation type would <lb/>prevent the I/O operation, i.e., READ and WRITE conflict with an <lb/>OPEN_DELEGATE_WRITE delegation and WRITE conflicts with an <lb/>OPEN_DELEGATE_READ delegation. <lb/>When a client holds a delegation, it needs to ensure that the stateid <lb/>sent conveys the association of operation with the delegation, to <lb/>avoid the delegation from being avoidably recalled. When the <lb/>delegation stateid, a stateid open associated with that delegation, <lb/>or a stateid representing byte-range locks derived from such an open <lb/>is used, the server knows that the READ, WRITE, or SETATTR does not <lb/>conflict with the delegation but is sent under the aegis of the <lb/>delegation. Even though it is possible for the server to determine <lb/>from the client ID (via the session ID) that the client does in fact <lb/>have a delegation, the server is not obliged to check this, so using <lb/>a special stateid can result in avoidable recall of the delegation. <lb/>9.2. Lock Ranges <lb/>The protocol allows a lock-owner to request a lock with a byte-range <lb/>and then either upgrade, downgrade, or unlock a sub-range of the <lb/>initial lock, or a byte-range that overlaps --fully or partially --<lb/>either with that initial lock or a combination of a set of existing <lb/>locks for the same lock-owner. It is expected that this will be an <lb/>uncommon type of request. In any case, servers or server file <lb/>systems may not be able to support sub-range lock semantics. In the <lb/>event that a server receives a locking request that represents a sub-<lb/>range of current locking state for the lock-owner, the server is <lb/>allowed to return the error NFS4ERR_LOCK_RANGE to signify that it <lb/>does not support sub-range lock operations. Therefore, the client <lb/>should be prepared to receive this error and, if appropriate, report <lb/>the error to the requesting application. <lb/>The client is discouraged from combining multiple independent locking <lb/>ranges that happen to be adjacent into a single request since the <lb/>server may not support sub-range requests for reasons related to the <lb/>recovery of byte-range locking state in the event of server failure. <lb/>As discussed in Section 8.4.2, the server may employ certain <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 187] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>optimizations during recovery that work effectively only when the <lb/>client's behavior during lock recovery is similar to the client's <lb/>locking behavior prior to server failure. <lb/>9.3. Upgrading and Downgrading Locks <lb/>If a client has a WRITE_LT lock on a byte-range, it can request an <lb/>atomic downgrade of the lock to a READ_LT lock via the LOCK <lb/>operation, by setting the type to READ_LT. If the server supports <lb/>atomic downgrade, the request will succeed. If not, it will return <lb/>NFS4ERR_LOCK_NOTSUPP. The client should be prepared to receive this <lb/>error and, if appropriate, report the error to the requesting <lb/>application. <lb/>If a client has a READ_LT lock on a byte-range, it can request an <lb/>atomic upgrade of the lock to a WRITE_LT lock via the LOCK operation <lb/>by setting the type to WRITE_LT or WRITEW_LT. If the server does not <lb/>support atomic upgrade, it will return NFS4ERR_LOCK_NOTSUPP. If the <lb/>upgrade can be achieved without an existing conflict, the request <lb/>will succeed. Otherwise, the server will return either <lb/>NFS4ERR_DENIED or NFS4ERR_DEADLOCK. The error NFS4ERR_DEADLOCK is <lb/>returned if the client sent the LOCK operation with the type set to <lb/>WRITEW_LT and the server has detected a deadlock. The client should <lb/>be prepared to receive such errors and, if appropriate, report the <lb/>error to the requesting application. <lb/>9.4. Stateid Seqid Values and Byte-Range Locks <lb/>When a LOCK or LOCKU operation is performed, the stateid returned has <lb/>the same "other" value as the argument's stateid, and a "seqid" value <lb/>that is incremented (relative to the argument's stateid) to reflect <lb/>the occurrence of the LOCK or LOCKU operation. The server MUST <lb/>increment the value of the "seqid" field whenever there is any change <lb/>to the locking status of any byte offset as described by any of the <lb/>locks covered by the stateid. A change in locking status includes a <lb/>change from locked to unlocked or the reverse or a change from being <lb/>locked for READ_LT to being locked for WRITE_LT or the reverse. <lb/>When there is no such change, as, for example, when a range already <lb/>locked for WRITE_LT is locked again for WRITE_LT, the server MAY <lb/>increment the "seqid" value. <lb/>9.5. Issues with Multiple Open-Owners <lb/>When the same file is opened by multiple open-owners, a client will <lb/>have multiple OPEN stateids for that file, each associated with a <lb/>different open-owner. In that case, there can be multiple LOCK and <lb/>LOCKU requests for the same lock-owner sent using the different OPEN <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 188] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>stateids, and so a situation may arise in which there are multiple <lb/>stateids, each representing byte-range locks on the same file and <lb/>held by the same lock-owner but each associated with a different <lb/>open-owner. <lb/>In such a situation, the locking status of each byte (i.e., whether <lb/>it is locked, the READ_LT or WRITE_LT type of the lock, and the lock-<lb/>owner holding the lock) MUST reflect the last LOCK or LOCKU operation <lb/>done for the lock-owner in question, independent of the stateid <lb/>through which the request was sent. <lb/>When a byte is locked by the lock-owner in question, the open-owner <lb/>to which that byte-range lock is assigned SHOULD be that of the open-<lb/>owner associated with the stateid through which the last LOCK of that <lb/>byte was done. When there is a change in the open-owner associated <lb/>with locks for the stateid through which a LOCK or LOCKU was done, <lb/>the "seqid" field of the stateid MUST be incremented, even if the <lb/>locking, in terms of lock-owners has not changed. When there is a <lb/>change to the set of locked bytes associated with a different stateid <lb/>for the same lock-owner, i.e., associated with a different open-<lb/>owner, the "seqid" value for that stateid MUST NOT be incremented. <lb/>9.6. Blocking Locks <lb/>Some clients require the support of blocking locks. While NFSv4.1 <lb/>provides a callback when a previously unavailable lock becomes <lb/>available, this is an OPTIONAL feature and clients cannot depend on <lb/>its presence. Clients need to be prepared to continually poll for <lb/>the lock. This presents a fairness problem. Two of the lock types, <lb/>READW_LT and WRITEW_LT, are used to indicate to the server that the <lb/>client is requesting a blocking lock. When the callback is not used, <lb/>the server should maintain an ordered list of pending blocking locks. <lb/>When the conflicting lock is released, the server may wait for the <lb/>period of time equal to lease_time for the first waiting client to <lb/>re-request the lock. After the lease period expires, the next <lb/>waiting client request is allowed the lock. Clients are required to <lb/>poll at an interval sufficiently small that it is likely to acquire <lb/>the lock in a timely manner. The server is not required to maintain <lb/>a list of pending blocked locks as it is used to increase fairness <lb/>and not correct operation. Because of the unordered nature of crash <lb/>recovery, storing of lock state to stable storage would be required <lb/>to guarantee ordered granting of blocking locks. <lb/>Servers may also note the lock types and delay returning denial of <lb/>the request to allow extra time for a conflicting lock to be <lb/>released, allowing a successful return. In this way, clients can <lb/>avoid the burden of needless frequent polling for blocking locks. <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 189] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>The server should take care in the length of delay in the event the <lb/>client retransmits the request. <lb/>If a server receives a blocking LOCK operation, denies it, and then <lb/>later receives a nonblocking request for the same lock, which is also <lb/>denied, then it should remove the lock in question from its list of <lb/>pending blocking locks. Clients should use such a nonblocking <lb/>request to indicate to the server that this is the last time they <lb/>intend to poll for the lock, as may happen when the process <lb/>requesting the lock is interrupted. This is a courtesy to the <lb/>server, to prevent it from unnecessarily waiting a lease period <lb/>before granting other LOCK operations. However, clients are not <lb/>required to perform this courtesy, and servers must not depend on <lb/>them doing so. Also, clients must be prepared for the possibility <lb/>that this final locking request will be accepted. <lb/>When a server indicates, via the flag OPEN4_RESULT_MAY_NOTIFY_LOCK, <lb/>that CB_NOTIFY_LOCK callbacks might be done for the current open <lb/>file, the client should take notice of this, but, since this is a <lb/>hint, cannot rely on a CB_NOTIFY_LOCK always being done. A client <lb/>may reasonably reduce the frequency with which it polls for a denied <lb/>lock, since the greater latency that might occur is likely to be <lb/>eliminated given a prompt callback, but it still needs to poll. When <lb/>it receives a CB_NOTIFY_LOCK, it should promptly try to obtain the <lb/>lock, but it should be aware that other clients may be polling and <lb/>that the server is under no obligation to reserve the lock for that <lb/>particular client. <lb/>9.7. Share Reservations <lb/>A share reservation is a mechanism to control access to a file. It <lb/>is a separate and independent mechanism from byte-range locking. <lb/>When a client opens a file, it sends an OPEN operation to the server <lb/>specifying the type of access required (READ, WRITE, or BOTH) and the <lb/>type of access to deny others (OPEN4_SHARE_DENY_NONE, <lb/>OPEN4_SHARE_DENY_READ, OPEN4_SHARE_DENY_WRITE, or <lb/>OPEN4_SHARE_DENY_BOTH). If the OPEN fails, the client will fail the <lb/>application's open request. <lb/>Pseudo-code definition of the semantics: <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 190] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>if (request.access == 0) { <lb/>return (NFS4ERR_INVAL) <lb/>} else { <lb/>if ((request.access & file_state.deny)) || <lb/>(request.deny & file_state.access)) { <lb/>return (NFS4ERR_SHARE_DENIED) <lb/>} <lb/>return (NFS4ERR_OK); <lb/>When doing this checking of share reservations on OPEN, the current <lb/>file_state used in the algorithm includes bits that reflect all <lb/>current opens, including those for the open-owner making the new OPEN <lb/>request. <lb/>The constants used for the OPEN and OPEN_DOWNGRADE operations for the <lb/>access and deny fields are as follows: <lb/>const OPEN4_SHARE_ACCESS_READ <lb/>= 0x00000001; <lb/>const OPEN4_SHARE_ACCESS_WRITE = 0x00000002; <lb/>const OPEN4_SHARE_ACCESS_BOTH <lb/>= 0x00000003; <lb/>const OPEN4_SHARE_DENY_NONE <lb/>= 0x00000000; <lb/>const OPEN4_SHARE_DENY_READ <lb/>= 0x00000001; <lb/>const OPEN4_SHARE_DENY_WRITE <lb/>= 0x00000002; <lb/>const OPEN4_SHARE_DENY_BOTH <lb/>= 0x00000003; <lb/>9.8. OPEN/CLOSE Operations <lb/>To provide correct share semantics, a client MUST use the OPEN <lb/>operation to obtain the initial filehandle and indicate the desired <lb/>access and what access, if any, to deny. Even if the client intends <lb/>to use a special stateid for anonymous state or READ bypass, it must <lb/>still obtain the filehandle for the regular file with the OPEN <lb/>operation so the appropriate share semantics can be applied. Clients <lb/>that do not have a deny mode built into their programming interfaces <lb/>for opening a file should request a deny mode of <lb/>OPEN4_SHARE_DENY_NONE. <lb/>The OPEN operation with the CREATE flag also subsumes the CREATE <lb/>operation for regular files as used in previous versions of the NFS <lb/>protocol. This allows a create with a share to be done atomically. <lb/>The CLOSE operation removes all share reservations held by the open-<lb/>owner on that file. If byte-range locks are held, the client SHOULD <lb/>release all locks before sending a CLOSE operation. The server MAY <lb/>free all outstanding locks on CLOSE, but some servers may not support <lb/>the CLOSE of a file that still has byte-range locks held. The server <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 191] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>MUST return failure, NFS4ERR_LOCKS_HELD, if any locks would exist <lb/>after the CLOSE. <lb/>The LOOKUP operation will return a filehandle without establishing <lb/>any lock state on the server. Without a valid stateid, the server <lb/>will assume that the client has the least access. For example, if <lb/>one client opened a file with OPEN4_SHARE_DENY_BOTH and another <lb/>client accesses the file via a filehandle obtained through LOOKUP, <lb/>the second client could only read the file using the special read <lb/>bypass stateid. The second client could not WRITE the file at all <lb/>because it would not have a valid stateid from OPEN and the special <lb/>anonymous stateid would not be allowed access. <lb/>9.9. Open Upgrade and Downgrade <lb/>When an OPEN is done for a file and the open-owner for which the OPEN <lb/>is being done already has the file open, the result is to upgrade the <lb/>open file status maintained on the server to include the access and <lb/>deny bits specified by the new OPEN as well as those for the existing <lb/>OPEN. The result is that there is one open file, as far as the <lb/>protocol is concerned, and it includes the union of the access and <lb/>deny bits for all of the OPEN requests completed. The OPEN is <lb/>represented by a single stateid whose "other" value matches that of <lb/>the original open, and whose "seqid" value is incremented to reflect <lb/>the occurrence of the upgrade. The increment is required in cases in <lb/>which the "upgrade" results in no change to the open mode (e.g., an <lb/>OPEN is done for read when the existing open file is opened for <lb/>OPEN4_SHARE_ACCESS_BOTH). Only a single CLOSE will be done to reset <lb/>the effects of both OPENs. The client may use the stateid returned <lb/>by the OPEN effecting the upgrade or with a stateid sharing the same <lb/>"other" field and a seqid of zero, although care needs to be taken as <lb/>far as upgrades that happen while the CLOSE is pending. Note that <lb/>the client, when sending the OPEN, may not know that the same file is <lb/>in fact being opened. The above only applies if both OPENs result in <lb/>the OPENed object being designated by the same filehandle. <lb/>When the server chooses to export multiple filehandles corresponding <lb/>to the same file object and returns different filehandles on two <lb/>different OPENs of the same file object, the server MUST NOT "OR" <lb/>together the access and deny bits and coalesce the two open files. <lb/>Instead, the server must maintain separate OPENs with separate <lb/>stateids and will require separate CLOSEs to free them. <lb/>When multiple open files on the client are merged into a single OPEN <lb/>file object on the server, the close of one of the open files (on the <lb/>client) may necessitate change of the access and deny status of the <lb/>open file on the server. This is because the union of the access and <lb/>deny bits for the remaining opens may be smaller (i.e., a proper <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 192] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>subset) than previously. The OPEN_DOWNGRADE operation is used to <lb/>make the necessary change and the client should use it to update the <lb/>server so that share reservation requests by other clients are <lb/>handled properly. The stateid returned has the same "other" field as <lb/>that passed to the server. The "seqid" value in the returned stateid <lb/>MUST be incremented, even in situations in which there is no change <lb/>to the access and deny bits for the file. <lb/>9.10. Parallel OPENs <lb/>Unlike the case of NFSv4.0, in which OPEN operations for the same <lb/>open-owner are inherently serialized because of the owner-based <lb/>seqid, multiple OPENs for the same open-owner may be done in <lb/>parallel. When clients do this, they may encounter situations in <lb/>which, because of the existence of hard links, two OPEN operations <lb/>may turn out to open the same file, with a later OPEN performed being <lb/>an upgrade of the first, with this fact only visible to the client <lb/>once the operations complete. <lb/>In this situation, clients may determine the order in which the OPENs <lb/>were performed by examining the stateids returned by the OPENs. <lb/>Stateids that share a common value of the "other" field can be <lb/>recognized as having opened the same file, with the order of the <lb/>operations determinable from the order of the "seqid" fields, mod any <lb/>possible wraparound of the 32-bit field. <lb/>When the possibility exists that the client will send multiple OPENs <lb/>for the same open-owner in parallel, it may be the case that an open <lb/>upgrade may happen without the client knowing beforehand that this <lb/>could happen. Because of this possibility, CLOSEs and <lb/>OPEN_DOWNGRADEs should generally be sent with a non-zero seqid in the <lb/>stateid, to avoid the possibility that the status change associated <lb/>with an open upgrade is not inadvertently lost. <lb/>9.11. Reclaim of Open and Byte-Range Locks <lb/>Special forms of the LOCK and OPEN operations are provided when it is <lb/>necessary to re-establish byte-range locks or opens after a server <lb/>failure. <lb/>o To reclaim existing opens, an OPEN operation is performed using a <lb/>CLAIM_PREVIOUS. Because the client, in this type of situation, <lb/>will have already opened the file and have the filehandle of the <lb/>target file, this operation requires that the current filehandle <lb/>be the target file, rather than a directory, and no file name is <lb/>specified. <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 193] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>o To reclaim byte-range locks, a LOCK operation with the reclaim <lb/>parameter set to true is used. <lb/>Reclaims of opens associated with delegations are discussed in <lb/>Section 10.2.1. <lb/>10. Client-Side Caching <lb/>Client-side caching of data, of file attributes, and of file names is <lb/>essential to providing good performance with the NFS protocol. <lb/>Providing distributed cache coherence is a difficult problem, and <lb/>previous versions of the NFS protocol have not attempted it. <lb/>Instead, several NFS client implementation techniques have been used <lb/>to reduce the problems that a lack of coherence poses for users. <lb/>These techniques have not been clearly defined by earlier protocol <lb/>specifications, and it is often unclear what is valid or invalid <lb/>client behavior. <lb/>The NFSv4.1 protocol uses many techniques similar to those that have <lb/>been used in previous protocol versions. The NFSv4.1 protocol does <lb/>not provide distributed cache coherence. However, it defines a more <lb/>limited set of caching guarantees to allow locks and share <lb/>reservations to be used without destructive interference from client-<lb/>side caching. <lb/>In addition, the NFSv4.1 protocol introduces a delegation mechanism, <lb/>which allows many decisions normally made by the server to be made <lb/>locally by clients. This mechanism provides efficient support of the <lb/>common cases where sharing is infrequent or where sharing is read-<lb/>only. <lb/>10.1. Performance Challenges for Client-Side Caching <lb/>Caching techniques used in previous versions of the NFS protocol have <lb/>been successful in providing good performance. However, several <lb/>scalability challenges can arise when those techniques are used with <lb/>very large numbers of clients. This is particularly true when <lb/>clients are geographically distributed, which classically increases <lb/>the latency for cache revalidation requests. <lb/>The previous versions of the NFS protocol repeat their file data <lb/>cache validation requests at the time the file is opened. This <lb/>behavior can have serious performance drawbacks. A common case is <lb/>one in which a file is only accessed by a single client. Therefore, <lb/>sharing is infrequent. <lb/>In this case, repeated references to the server to find that no <lb/>conflicts exist are expensive. A better option with regards to <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 194] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>performance is to allow a client that repeatedly opens a file to do <lb/>so without reference to the server. This is done until potentially <lb/>conflicting operations from another client actually occur. <lb/>A similar situation arises in connection with byte-range locking. <lb/>Sending LOCK and LOCKU operations as well as the READ and WRITE <lb/>operations necessary to make data caching consistent with the locking <lb/>semantics (see Section 10.3.2) can severely limit performance. When <lb/>locking is used to provide protection against infrequent conflicts, a <lb/>large penalty is incurred. This penalty may discourage the use of <lb/>byte-range locking by applications. <lb/>The NFSv4.1 protocol provides more aggressive caching strategies with <lb/>the following design goals: <lb/>o Compatibility with a large range of server semantics. <lb/>o Providing the same caching benefits as previous versions of the <lb/>NFS protocol when unable to support the more aggressive model. <lb/>o Requirements for aggressive caching are organized so that a large <lb/>portion of the benefit can be obtained even when not all of the <lb/>requirements can be met. <lb/>The appropriate requirements for the server are discussed in later <lb/>sections in which specific forms of caching are covered (see <lb/>Section 10.4). <lb/>10.2. Delegation and Callbacks <lb/>Recallable delegation of server responsibilities for a file to a <lb/>client improves performance by avoiding repeated requests to the <lb/>server in the absence of inter-client conflict. With the use of a <lb/>"callback" RPC from server to client, a server recalls delegated <lb/>responsibilities when another client engages in sharing of a <lb/>delegated file. <lb/>A delegation is passed from the server to the client, specifying the <lb/>object of the delegation and the type of delegation. There are <lb/>different types of delegations, but each type contains a stateid to <lb/>be used to represent the delegation when performing operations that <lb/>depend on the delegation. This stateid is similar to those <lb/>associated with locks and share reservations but differs in that the <lb/>stateid for a delegation is associated with a client ID and may be <lb/>used on behalf of all the open-owners for the given client. A <lb/>delegation is made to the client as a whole and not to any specific <lb/>process or thread of control within it. <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 195] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>The backchannel is established by CREATE_SESSION and <lb/>BIND_CONN_TO_SESSION, and the client is required to maintain it. <lb/>Because the backchannel may be down, even temporarily, correct <lb/>protocol operation does not depend on them. Preliminary testing of <lb/>backchannel functionality by means of a CB_COMPOUND procedure with a <lb/>single operation, CB_SEQUENCE, can be used to check the continuity of <lb/>the backchannel. A server avoids delegating responsibilities until <lb/>it has determined that the backchannel exists. Because the granting <lb/>of a delegation is always conditional upon the absence of conflicting <lb/>access, clients MUST NOT assume that a delegation will be granted and <lb/>they MUST always be prepared for OPENs, WANT_DELEGATIONs, and <lb/>GET_DIR_DELEGATIONs to be processed without any delegations being <lb/>granted. <lb/>Unlike locks, an operation by a second client to a delegated file <lb/>will cause the server to recall a delegation through a callback. For <lb/>individual operations, we will describe, under IMPLEMENTATION, when <lb/>such operations are required to effect a recall. A number of points <lb/>should be noted, however. <lb/>o The server is free to recall a delegation whenever it feels it is <lb/>desirable and may do so even if no operations requiring recall are <lb/>being done. <lb/>o Operations done outside the NFSv4.1 protocol, due to, for example, <lb/>access by other protocols, or by local access, also need to result <lb/>in delegation recall when they make analogous changes to file <lb/>system data. What is crucial is if the change would invalidate <lb/>the guarantees provided by the delegation. When this is possible, <lb/>the delegation needs to be recalled and MUST be returned or <lb/>revoked before allowing the operation to proceed. <lb/>o The semantics of the file system are crucial in defining when <lb/>delegation recall is required. If a particular change within a <lb/>specific implementation causes change to a file attribute, then <lb/>delegation recall is required, whether that operation has been <lb/>specifically listed as requiring delegation recall. Again, what <lb/>is critical is whether the guarantees provided by the delegation <lb/>are being invalidated. <lb/>Despite those caveats, the implementation sections for a number of <lb/>operations describe situations in which delegation recall would be <lb/>required under some common circumstances: <lb/>o For GETATTR, see Section 18.7.4. <lb/>o For OPEN, see Section 18.16.4. <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 196] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>o For READ, see Section 18.22.4. <lb/>o For REMOVE, see Section 18.25.4. <lb/>o For RENAME, see Section 18.26.4. <lb/>o For SETATTR, see Section 18.30.4. <lb/>o For WRITE, see Section 18.32.4. <lb/>On recall, the client holding the delegation needs to flush modified <lb/>state (such as modified data) to the server and return the <lb/>delegation. The conflicting request will not be acted on until the <lb/>recall is complete. The recall is considered complete when the <lb/>client returns the delegation or the server times its wait for the <lb/>delegation to be returned and revokes the delegation as a result of <lb/>the timeout. In the interim, the server will either delay responding <lb/>to conflicting requests or respond to them with NFS4ERR_DELAY. <lb/>Following the resolution of the recall, the server has the <lb/>information necessary to grant or deny the second client's request. <lb/>At the time the client receives a delegation recall, it may have <lb/>substantial state that needs to be flushed to the server. Therefore, <lb/>the server should allow sufficient time for the delegation to be <lb/>returned since it may involve numerous RPCs to the server. If the <lb/>server is able to determine that the client is diligently flushing <lb/>state to the server as a result of the recall, the server may extend <lb/>the usual time allowed for a recall. However, the time allowed for <lb/>recall completion should not be unbounded. <lb/>An example of this is when responsibility to mediate opens on a given <lb/>file is delegated to a client (see Section 10.4). The server will <lb/>not know what opens are in effect on the client. Without this <lb/>knowledge, the server will be unable to determine if the access and <lb/>deny states for the file allow any particular open until the <lb/>delegation for the file has been returned. <lb/>A client failure or a network partition can result in failure to <lb/>respond to a recall callback. In this case, the server will revoke <lb/>the delegation, which in turn will render useless any modified state <lb/>still on the client. <lb/>10.2.1. Delegation Recovery <lb/>There are three situations that delegation recovery needs to deal <lb/>with: <lb/>o client restart <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 197] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>o server restart <lb/>o network partition (full or backchannel-only) <lb/>In the event the client restarts, the failure to renew the lease will <lb/>result in the revocation of byte-range locks and share reservations. <lb/>Delegations, however, may be treated a bit differently. <lb/>There will be situations in which delegations will need to be re-<lb/>established after a client restarts. The reason for this is that the <lb/>client may have file data stored locally and this data was associated <lb/>with the previously held delegations. The client will need to re-<lb/>establish the appropriate file state on the server. <lb/>To allow for this type of client recovery, the server MAY extend the <lb/>period for delegation recovery beyond the typical lease expiration <lb/>period. This implies that requests from other clients that conflict <lb/>with these delegations will need to wait. Because the normal recall <lb/>process may require significant time for the client to flush changed <lb/>state to the server, other clients need be prepared for delays that <lb/>occur because of a conflicting delegation. This longer interval <lb/>would increase the window for clients to restart and consult stable <lb/>storage so that the delegations can be reclaimed. For OPEN <lb/>delegations, such delegations are reclaimed using OPEN with a claim <lb/>type of CLAIM_DELEGATE_PREV or CLAIM_DELEG_PREV_FH (see Sections 10.5 <lb/>and 18.16 for discussion of OPEN delegation and the details of OPEN, <lb/>respectively). <lb/>A server MAY support claim types of CLAIM_DELEGATE_PREV and <lb/>CLAIM_DELEG_PREV_FH, and if it does, it MUST NOT remove delegations <lb/>upon a CREATE_SESSION that confirm a client ID created by <lb/>EXCHANGE_ID. Instead, the server MUST, for a period of time no less <lb/>than that of the value of the lease_time attribute, maintain the <lb/>client's delegations to allow time for the client to send <lb/>CLAIM_DELEGATE_PREV and/or CLAIM_DELEG_PREV_FH requests. The server <lb/>that supports CLAIM_DELEGATE_PREV and/or CLAIM_DELEG_PREV_FH MUST <lb/>support the DELEGPURGE operation. <lb/>When the server restarts, delegations are reclaimed (using the OPEN <lb/>operation with CLAIM_PREVIOUS) in a similar fashion to byte-range <lb/>locks and share reservations. However, there is a slight semantic <lb/>difference. In the normal case, if the server decides that a <lb/>delegation should not be granted, it performs the requested action <lb/>(e.g., OPEN) without granting any delegation. For reclaim, the <lb/>server grants the delegation but a special designation is applied so <lb/>that the client treats the delegation as having been granted but <lb/>recalled by the server. Because of this, the client has the duty to <lb/>write all modified state to the server and then return the <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 198] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>delegation. This process of handling delegation reclaim reconciles <lb/>three principles of the NFSv4.1 protocol: <lb/>o Upon reclaim, a client reporting resources assigned to it by an <lb/>earlier server instance must be granted those resources. <lb/>o The server has unquestionable authority to determine whether <lb/>delegations are to be granted and, once granted, whether they are <lb/>to be continued. <lb/>o The use of callbacks should not be depended upon until the client <lb/>has proven its ability to receive them. <lb/>When a client needs to reclaim a delegation and there is no <lb/>associated open, the client may use the CLAIM_PREVIOUS variant of the <lb/>WANT_DELEGATION operation. However, since the server is not required <lb/>to support this operation, an alternative is to reclaim via a dummy <lb/>OPEN together with the delegation using an OPEN of type <lb/>CLAIM_PREVIOUS. The dummy open file can be released using a CLOSE to <lb/>re-establish the original state to be reclaimed, a delegation without <lb/>an associated open. <lb/>When a client has more than a single open associated with a <lb/>delegation, state for those additional opens can be established using <lb/>OPEN operations of type CLAIM_DELEGATE_CUR. When these are used to <lb/>establish opens associated with reclaimed delegations, the server <lb/>MUST allow them when made within the grace period. <lb/>When a network partition occurs, delegations are subject to freeing <lb/>by the server when the lease renewal period expires. This is similar <lb/>to the behavior for locks and share reservations. For delegations, <lb/>however, the server may extend the period in which conflicting <lb/>requests are held off. Eventually, the occurrence of a conflicting <lb/>request from another client will cause revocation of the delegation. <lb/>A loss of the backchannel (e.g., by later network configuration <lb/>change) will have the same effect. A recall request will fail and <lb/>revocation of the delegation will result. <lb/>A client normally finds out about revocation of a delegation when it <lb/>uses a stateid associated with a delegation and receives one of the <lb/>errors NFS4ERR_EXPIRED, NFS4ERR_ADMIN_REVOKED, or <lb/>NFS4ERR_DELEG_REVOKED. It also may find out about delegation <lb/>revocation after a client restart when it attempts to reclaim a <lb/>delegation and receives that same error. Note that in the case of a <lb/>revoked OPEN_DELEGATE_WRITE delegation, there are issues because data <lb/>may have been modified by the client whose delegation is revoked and <lb/>separately by other clients. See Section 10.5.1 for a discussion of <lb/>such issues. Note also that when delegations are revoked, <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 199] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>information about the revoked delegation will be written by the <lb/>server to stable storage (as described in Section 8.4.3). This is <lb/>done to deal with the case in which a server restarts after revoking <lb/>a delegation but before the client holding the revoked delegation is <lb/>notified about the revocation. <lb/>10.3. Data Caching <lb/>When applications share access to a set of files, they need to be <lb/>implemented so as to take account of the possibility of conflicting <lb/>access by another application. This is true whether the applications <lb/>in question execute on different clients or reside on the same <lb/>client. <lb/>Share reservations and byte-range locks are the facilities the <lb/>NFSv4.1 protocol provides to allow applications to coordinate access <lb/>by using mutual exclusion facilities. The NFSv4.1 protocol's data <lb/>caching must be implemented such that it does not invalidate the <lb/>assumptions on which those using these facilities depend. <lb/>10.3.1. Data Caching and OPENs <lb/>In order to avoid invalidating the sharing assumptions on which <lb/>applications rely, NFSv4.1 clients should not provide cached data to <lb/>applications or modify it on behalf of an application when it would <lb/>not be valid to obtain or modify that same data via a READ or WRITE <lb/>operation. <lb/>Furthermore, in the absence of an OPEN delegation (see Section 10.4), <lb/>two additional rules apply. Note that these rules are obeyed in <lb/>practice by many NFSv3 clients. <lb/>o First, cached data present on a client must be revalidated after <lb/>doing an OPEN. Revalidating means that the client fetches the <lb/>change attribute from the server, compares it with the cached <lb/>change attribute, and if different, declares the cached data (as <lb/>well as the cached attributes) as invalid. This is to ensure that <lb/>the data for the OPENed file is still correctly reflected in the <lb/>client's cache. This validation must be done at least when the <lb/>client's OPEN operation includes a deny of OPEN4_SHARE_DENY_WRITE <lb/>or OPEN4_SHARE_DENY_BOTH, thus terminating a period in which other <lb/>clients may have had the opportunity to open the file with <lb/>OPEN4_SHARE_ACCESS_WRITE/OPEN4_SHARE_ACCESS_BOTH access. Clients <lb/>may choose to do the revalidation more often (i.e., at OPENs <lb/>specifying a deny mode of OPEN4_SHARE_DENY_NONE) to parallel the <lb/>NFSv3 protocol's practice for the benefit of users assuming this <lb/>degree of cache revalidation. <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 200] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>Since the change attribute is updated for data and metadata <lb/>modifications, some client implementors may be tempted to use the <lb/>time_modify attribute and not the change attribute to validate <lb/>cached data, so that metadata changes do not spuriously invalidate <lb/>clean data. The implementor is cautioned in this approach. The <lb/>change attribute is guaranteed to change for each update to the <lb/>file, whereas time_modify is guaranteed to change only at the <lb/>granularity of the time_delta attribute. Use by the client's data <lb/>cache validation logic of time_modify and not change runs the risk <lb/>of the client incorrectly marking stale data as valid. Thus, any <lb/>cache validation approach by the client MUST include the use of <lb/>the change attribute. <lb/>o Second, modified data must be flushed to the server before closing <lb/>a file OPENed for OPEN4_SHARE_ACCESS_WRITE. This is complementary <lb/>to the first rule. If the data is not flushed at CLOSE, the <lb/>revalidation done after the client OPENs a file is unable to <lb/>achieve its purpose. The other aspect to flushing the data before <lb/>close is that the data must be committed to stable storage, at the <lb/>server, before the CLOSE operation is requested by the client. In <lb/>the case of a server restart and a CLOSEd file, it may not be <lb/>possible to retransmit the data to be written to the file, hence, <lb/>this requirement. <lb/>10.3.2. Data Caching and File Locking <lb/>For those applications that choose to use byte-range locking instead <lb/>of share reservations to exclude inconsistent file access, there is <lb/>an analogous set of constraints that apply to client-side data <lb/>caching. These rules are effective only if the byte-range locking is <lb/>used in a way that matches in an equivalent way the actual READ and <lb/>WRITE operations executed. This is as opposed to byte-range locking <lb/>that is based on pure convention. For example, it is possible to <lb/>manipulate a two-megabyte file by dividing the file into two one-<lb/>megabyte ranges and protecting access to the two byte-ranges by byte-<lb/>range locks on bytes zero and one. A WRITE_LT lock on byte zero of <lb/>the file would represent the right to perform READ and WRITE <lb/>operations on the first byte-range. A WRITE_LT lock on byte one of <lb/>the file would represent the right to perform READ and WRITE <lb/>operations on the second byte-range. As long as all applications <lb/>manipulating the file obey this convention, they will work on a local <lb/>file system. However, they may not work with the NFSv4.1 protocol <lb/>unless clients refrain from data caching. <lb/>The rules for data caching in the byte-range locking environment are: <lb/>o First, when a client obtains a byte-range lock for a particular <lb/>byte-range, the data cache corresponding to that byte-range (if <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 201] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>any cache data exists) must be revalidated. If the change <lb/>attribute indicates that the file may have been updated since the <lb/>cached data was obtained, the client must flush or invalidate the <lb/>cached data for the newly locked byte-range. A client might <lb/>choose to invalidate all of the non-modified cached data that it <lb/>has for the file, but the only requirement for correct operation <lb/>is to invalidate all of the data in the newly locked byte-range. <lb/>o Second, before releasing a WRITE_LT lock for a byte-range, all <lb/>modified data for that byte-range must be flushed to the server. <lb/>The modified data must also be written to stable storage. <lb/>Note that flushing data to the server and the invalidation of cached <lb/>data must reflect the actual byte-ranges locked or unlocked. <lb/>Rounding these up or down to reflect client cache block boundaries <lb/>will cause problems if not carefully done. For example, writing a <lb/>modified block when only half of that block is within an area being <lb/>unlocked may cause invalid modification to the byte-range outside the <lb/>unlocked area. This, in turn, may be part of a byte-range locked by <lb/>another client. Clients can avoid this situation by synchronously <lb/>performing portions of WRITE operations that overlap that portion <lb/>(initial or final) that is not a full block. Similarly, invalidating <lb/>a locked area that is not an integral number of full buffer blocks <lb/>would require the client to read one or two partial blocks from the <lb/>server if the revalidation procedure shows that the data that the <lb/>client possesses may not be valid. <lb/>The data that is written to the server as a prerequisite to the <lb/>unlocking of a byte-range must be written, at the server, to stable <lb/>storage. The client may accomplish this either with synchronous <lb/>writes or by following asynchronous writes with a COMMIT operation. <lb/>This is required because retransmission of the modified data after a <lb/>server restart might conflict with a lock held by another client. <lb/>A client implementation may choose to accommodate applications that <lb/>use byte-range locking in non-standard ways (e.g., using a byte-range <lb/>lock as a global semaphore) by flushing to the server more data upon <lb/>a LOCKU than is covered by the locked range. This may include <lb/>modified data within files other than the one for which the unlocks <lb/>are being done. In such cases, the client must not interfere with <lb/>applications whose READs and WRITEs are being done only within the <lb/>bounds of byte-range locks that the application holds. For example, <lb/>an application locks a single byte of a file and proceeds to write <lb/>that single byte. A client that chose to handle a LOCKU by flushing <lb/>all modified data to the server could validly write that single byte <lb/>in response to an unrelated LOCKU operation. However, it would not <lb/>be valid to write the entire block in which that single written byte <lb/>was located since it includes an area that is not locked and might be <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 202] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>locked by another client. Client implementations can avoid this <lb/>problem by dividing files with modified data into those for which all <lb/>modifications are done to areas covered by an appropriate byte-range <lb/>lock and those for which there are modifications not covered by a <lb/>byte-range lock. Any writes done for the former class of files must <lb/>not include areas not locked and thus not modified on the client. <lb/>10.3.3. Data Caching and Mandatory File Locking <lb/>Client-side data caching needs to respect mandatory byte-range <lb/>locking when it is in effect. The presence of mandatory byte-range <lb/>locking for a given file is indicated when the client gets back <lb/>NFS4ERR_LOCKED from a READ or WRITE operation on a file for which it <lb/>has an appropriate share reservation. When mandatory locking is in <lb/>effect for a file, the client must check for an appropriate byte-<lb/>range lock for data being read or written. If a byte-range lock <lb/>exists for the range being read or written, the client may satisfy <lb/>the request using the client's validated cache. If an appropriate <lb/>byte-range lock is not held for the range of the read or write, the <lb/>read or write request must not be satisfied by the client's cache and <lb/>the request must be sent to the server for processing. When a read <lb/>or write request partially overlaps a locked byte-range, the request <lb/>should be subdivided into multiple pieces with each byte-range <lb/>(locked or not) treated appropriately. <lb/>10.3.4. Data Caching and File Identity <lb/>When clients cache data, the file data needs to be organized <lb/>according to the file system object to which the data belongs. For <lb/>NFSv3 clients, the typical practice has been to assume for the <lb/>purpose of caching that distinct filehandles represent distinct file <lb/>system objects. The client then has the choice to organize and <lb/>maintain the data cache on this basis. <lb/>In the NFSv4.1 protocol, there is now the possibility to have <lb/>significant deviations from a "one filehandle per object" model <lb/>because a filehandle may be constructed on the basis of the object's <lb/>pathname. Therefore, clients need a reliable method to determine if <lb/>two filehandles designate the same file system object. If clients <lb/>were simply to assume that all distinct filehandles denote distinct <lb/>objects and proceed to do data caching on this basis, caching <lb/>inconsistencies would arise between the distinct client-side objects <lb/>that mapped to the same server-side object. <lb/>By providing a method to differentiate filehandles, the NFSv4.1 <lb/>protocol alleviates a potential functional regression in comparison <lb/>with the NFSv3 protocol. Without this method, caching <lb/>inconsistencies within the same client could occur, and this has not <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 203] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>been present in previous versions of the NFS protocol. Note that it <lb/>is possible to have such inconsistencies with applications executing <lb/>on multiple clients, but that is not the issue being addressed here. <lb/>For the purposes of data caching, the following steps allow an <lb/>NFSv4.1 client to determine whether two distinct filehandles denote <lb/>the same server-side object: <lb/>o If GETATTR directed to two filehandles returns different values of <lb/>the fsid attribute, then the filehandles represent distinct <lb/>objects. <lb/>o If GETATTR for any file with an fsid that matches the fsid of the <lb/>two filehandles in question returns a unique_handles attribute <lb/>with a value of TRUE, then the two objects are distinct. <lb/>o If GETATTR directed to the two filehandles does not return the <lb/>fileid attribute for both of the handles, then it cannot be <lb/>determined whether the two objects are the same. Therefore, <lb/>operations that depend on that knowledge (e.g., client-side data <lb/>caching) cannot be done reliably. Note that if GETATTR does not <lb/>return the fileid attribute for both filehandles, it will return <lb/>it for neither of the filehandles, since the fsid for both <lb/>filehandles is the same. <lb/>o If GETATTR directed to the two filehandles returns different <lb/>values for the fileid attribute, then they are distinct objects. <lb/>o Otherwise, they are the same object. <lb/>10.4. Open Delegation <lb/>When a file is being OPENed, the server may delegate further handling <lb/>of opens and closes for that file to the opening client. Any such <lb/>delegation is recallable since the circumstances that allowed for the <lb/>delegation are subject to change. In particular, if the server <lb/>receives a conflicting OPEN from another client, the server must <lb/>recall the delegation before deciding whether the OPEN from the other <lb/>client may be granted. Making a delegation is up to the server, and <lb/>clients should not assume that any particular OPEN either will or <lb/>will not result in an OPEN delegation. The following is a typical <lb/>set of conditions that servers might use in deciding whether an OPEN <lb/>should be delegated: <lb/>o The client must be able to respond to the server's callback <lb/>requests. If a backchannel has been established, the server will <lb/>send a CB_COMPOUND request, containing a single operation, <lb/>CB_SEQUENCE, for a test of backchannel availability. <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 204] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>o The client must have responded properly to previous recalls. <lb/>o There must be no current OPEN conflicting with the requested <lb/>delegation. <lb/>o There should be no current delegation that conflicts with the <lb/>delegation being requested. <lb/>o The probability of future conflicting open requests should be low <lb/>based on the recent history of the file. <lb/>o The existence of any server-specific semantics of OPEN/CLOSE that <lb/>would make the required handling incompatible with the prescribed <lb/>handling that the delegated client would apply (see below). <lb/>There are two types of OPEN delegations: OPEN_DELEGATE_READ and <lb/>OPEN_DELEGATE_WRITE. An OPEN_DELEGATE_READ delegation allows a <lb/>client to handle, on its own, requests to open a file for reading <lb/>that do not deny OPEN4_SHARE_ACCESS_READ access to others. Multiple <lb/>OPEN_DELEGATE_READ delegations may be outstanding simultaneously and <lb/>do not conflict. An OPEN_DELEGATE_WRITE delegation allows the client <lb/>to handle, on its own, all opens. Only OPEN_DELEGATE_WRITE <lb/>delegation may exist for a given file at a given time, and it is <lb/>inconsistent with any OPEN_DELEGATE_READ delegations. <lb/>When a client has an OPEN_DELEGATE_READ delegation, it is assured <lb/>that neither the contents, the attributes (with the exception of <lb/>time_access), nor the names of any links to the file will change <lb/>without its knowledge, so long as the delegation is held. When a <lb/>client has an OPEN_DELEGATE_WRITE delegation, it may modify the file <lb/>data locally since no other client will be accessing the file's data. <lb/>The client holding an OPEN_DELEGATE_WRITE delegation may only locally <lb/>affect file attributes that are intimately connected with the file <lb/>data: size, change, time_access, time_metadata, and time_modify. All <lb/>other attributes must be reflected on the server. <lb/>When a client has an OPEN delegation, it does not need to send OPENs <lb/>or CLOSEs to the server. Instead, the client may update the <lb/>appropriate status internally. For an OPEN_DELEGATE_READ delegation, <lb/>opens that cannot be handled locally (opens that are for <lb/>OPEN4_SHARE_ACCESS_WRITE/OPEN4_SHARE_ACCESS_BOTH or that deny <lb/>OPEN4_SHARE_ACCESS_READ access) must be sent to the server. <lb/>When an OPEN delegation is made, the reply to the OPEN contains an <lb/>OPEN delegation structure that specifies the following: <lb/>o the type of delegation (OPEN_DELEGATE_READ or <lb/>OPEN_DELEGATE_WRITE). <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 205] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>o space limitation information to control flushing of data on close <lb/>(OPEN_DELEGATE_WRITE delegation only; see Section 10.4.1) <lb/>o an nfsace4 specifying read and write permissions <lb/>o a stateid to represent the delegation <lb/>The delegation stateid is separate and distinct from the stateid for <lb/>the OPEN proper. The standard stateid, unlike the delegation <lb/>stateid, is associated with a particular lock-owner and will continue <lb/>to be valid after the delegation is recalled and the file remains <lb/>open. <lb/>When a request internal to the client is made to open a file and an <lb/>OPEN delegation is in effect, it will be accepted or rejected solely <lb/>on the basis of the following conditions. Any requirement for other <lb/>checks to be made by the delegate should result in the OPEN <lb/>delegation being denied so that the checks can be made by the server <lb/>itself. <lb/>o The access and deny bits for the request and the file as described <lb/>in Section 9.7. <lb/>o The read and write permissions as determined below. <lb/>The nfsace4 passed with delegation can be used to avoid frequent <lb/>ACCESS calls. The permission check should be as follows: <lb/>o If the nfsace4 indicates that the open may be done, then it should <lb/>be granted without reference to the server. <lb/>o If the nfsace4 indicates that the open may not be done, then an <lb/>ACCESS request must be sent to the server to obtain the definitive <lb/>answer. <lb/>The server may return an nfsace4 that is more restrictive than the <lb/>actual ACL of the file. This includes an nfsace4 that specifies <lb/>denial of all access. Note that some common practices such as <lb/>mapping the traditional user "root" to the user "nobody" (see <lb/>Section 5.9) may make it incorrect to return the actual ACL of the <lb/>file in the delegation response. <lb/>The use of a delegation together with various other forms of caching <lb/>creates the possibility that no server authentication and <lb/>authorization will ever be performed for a given user since all of <lb/>the user's requests might be satisfied locally. Where the client is <lb/>depending on the server for authentication and authorization, the <lb/>client should be sure authentication and authorization occurs for <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 206] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>each user by use of the ACCESS operation. This should be the case <lb/>even if an ACCESS operation would not be required otherwise. As <lb/>mentioned before, the server may enforce frequent authentication by <lb/>returning an nfsace4 denying all access with every OPEN delegation. <lb/>10.4.1. Open Delegation and Data Caching <lb/>An OPEN delegation allows much of the message overhead associated <lb/>with the opening and closing files to be eliminated. An open when an <lb/>OPEN delegation is in effect does not require that a validation <lb/>message be sent to the server. The continued endurance of the <lb/>"OPEN_DELEGATE_READ delegation" provides a guarantee that no OPEN for <lb/>OPEN4_SHARE_ACCESS_WRITE/OPEN4_SHARE_ACCESS_BOTH, and thus no write, <lb/>has occurred. Similarly, when closing a file opened for <lb/>OPEN4_SHARE_ACCESS_WRITE/OPEN4_SHARE_ACCESS_BOTH and if an <lb/>OPEN_DELEGATE_WRITE delegation is in effect, the data written does <lb/>not have to be written to the server until the OPEN delegation is <lb/>recalled. The continued endurance of the OPEN delegation provides a <lb/>guarantee that no open, and thus no READ or WRITE, has been done by <lb/>another client. <lb/>For the purposes of OPEN delegation, READs and WRITEs done without an <lb/>OPEN are treated as the functional equivalents of a corresponding <lb/>type of OPEN. Although a client SHOULD NOT use special stateids when <lb/>an open exists, delegation handling on the server can use the client <lb/>ID associated with the current session to determine if the operation <lb/>has been done by the holder of the delegation (in which case, no <lb/>recall is necessary) or by another client (in which case, the <lb/>delegation must be recalled and I/O not proceed until the delegation <lb/>is recalled or revoked). <lb/>With delegations, a client is able to avoid writing data to the <lb/>server when the CLOSE of a file is serviced. The file close system <lb/>call is the usual point at which the client is notified of a lack of <lb/>stable storage for the modified file data generated by the <lb/>application. At the close, file data is written to the server and, <lb/>through normal accounting, the server is able to determine if the <lb/>available file system space for the data has been exceeded (i.e., the <lb/>server returns NFS4ERR_NOSPC or NFS4ERR_DQUOT). This accounting <lb/>includes quotas. The introduction of delegations requires that an <lb/>alternative method be in place for the same type of communication to <lb/>occur between client and server. <lb/>In the delegation response, the server provides either the limit of <lb/>the size of the file or the number of modified blocks and associated <lb/>block size. The server must ensure that the client will be able to <lb/>write modified data to the server of a size equal to that provided in <lb/>the original delegation. The server must make this assurance for all <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 207] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>outstanding delegations. Therefore, the server must be careful in <lb/>its management of available space for new or modified data, taking <lb/>into account available file system space and any applicable quotas. <lb/>The server can recall delegations as a result of managing the <lb/>available file system space. The client should abide by the server's <lb/>state space limits for delegations. If the client exceeds the stated <lb/>limits for the delegation, the server's behavior is undefined. <lb/>Based on server conditions, quotas, or available file system space, <lb/>the server may grant OPEN_DELEGATE_WRITE delegations with very <lb/>restrictive space limitations. The limitations may be defined in a <lb/>way that will always force modified data to be flushed to the server <lb/>on close. <lb/>With respect to authentication, flushing modified data to the server <lb/>after a CLOSE has occurred may be problematic. For example, the user <lb/>of the application may have logged off the client, and unexpired <lb/>authentication credentials may not be present. In this case, the <lb/>client may need to take special care to ensure that local unexpired <lb/>credentials will in fact be available. This may be accomplished by <lb/>tracking the expiration time of credentials and flushing data well in <lb/>advance of their expiration or by making private copies of <lb/>credentials to assure their availability when needed. <lb/>10.4.2. Open Delegation and File Locks <lb/>When a client holds an OPEN_DELEGATE_WRITE delegation, lock <lb/>operations are performed locally. This includes those required for <lb/>mandatory byte-range locking. This can be done since the delegation <lb/>implies that there can be no conflicting locks. Similarly, all of <lb/>the revalidations that would normally be associated with obtaining <lb/>locks and the flushing of data associated with the releasing of locks <lb/>need not be done. <lb/>When a client holds an OPEN_DELEGATE_READ delegation, lock operations <lb/>are not performed locally. All lock operations, including those <lb/>requesting non-exclusive locks, are sent to the server for <lb/>resolution. <lb/>10.4.3. Handling of CB_GETATTR <lb/>The server needs to employ special handling for a GETATTR where the <lb/>target is a file that has an OPEN_DELEGATE_WRITE delegation in <lb/>effect. The reason for this is that the client holding the <lb/>OPEN_DELEGATE_WRITE delegation may have modified the data, and the <lb/>server needs to reflect this change to the second client that <lb/>submitted the GETATTR. Therefore, the client holding the <lb/>OPEN_DELEGATE_WRITE delegation needs to be interrogated. The server <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 208] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>will use the CB_GETATTR operation. The only attributes that the <lb/>server can reliably query via CB_GETATTR are size and change. <lb/>Since CB_GETATTR is being used to satisfy another client's GETATTR <lb/>request, the server only needs to know if the client holding the <lb/>delegation has a modified version of the file. If the client's copy <lb/>of the delegated file is not modified (data or size), the server can <lb/>satisfy the second client's GETATTR request from the attributes <lb/>stored locally at the server. If the file is modified, the server <lb/>only needs to know about this modified state. If the server <lb/>determines that the file is currently modified, it will respond to <lb/>the second client's GETATTR as if the file had been modified locally <lb/>at the server. <lb/>Since the form of the change attribute is determined by the server <lb/>and is opaque to the client, the client and server need to agree on a <lb/>method of communicating the modified state of the file. For the size <lb/>attribute, the client will report its current view of the file size. <lb/>For the change attribute, the handling is more involved. <lb/>For the client, the following steps will be taken when receiving an <lb/>OPEN_DELEGATE_WRITE delegation: <lb/>o The value of the change attribute will be obtained from the server <lb/>and cached. Let this value be represented by c. <lb/>o The client will create a value greater than c that will be used <lb/>for communicating that modified data is held at the client. Let <lb/>this value be represented by d. <lb/>o When the client is queried via CB_GETATTR for the change <lb/>attribute, it checks to see if it holds modified data. If the <lb/>file is modified, the value d is returned for the change attribute <lb/>value. If this file is not currently modified, the client returns <lb/>the value c for the change attribute. <lb/>For simplicity of implementation, the client MAY for each CB_GETATTR <lb/>return the same value d. This is true even if, between successive <lb/>CB_GETATTR operations, the client again modifies the file's data or <lb/>metadata in its cache. The client can return the same value because <lb/>the only requirement is that the client be able to indicate to the <lb/>server that the client holds modified data. Therefore, the value of <lb/>d may always be c + 1. <lb/>While the change attribute is opaque to the client in the sense that <lb/>it has no idea what units of time, if any, the server is counting <lb/>change with, it is not opaque in that the client has to treat it as <lb/>an unsigned integer, and the server has to be able to see the results <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 209] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>of the client's changes to that integer. Therefore, the server MUST <lb/>encode the change attribute in network order when sending it to the <lb/>client. The client MUST decode it from network order to its native <lb/>order when receiving it, and the client MUST encode it in network <lb/>order when sending it to the server. For this reason, change is <lb/>defined as an unsigned integer rather than an opaque array of bytes. <lb/>For the server, the following steps will be taken when providing an <lb/>OPEN_DELEGATE_WRITE delegation: <lb/>o Upon providing an OPEN_DELEGATE_WRITE delegation, the server will <lb/>cache a copy of the change attribute in the data structure it uses <lb/>to record the delegation. Let this value be represented by sc. <lb/>o When a second client sends a GETATTR operation on the same file to <lb/>the server, the server obtains the change attribute from the first <lb/>client. Let this value be cc. <lb/>o If the value cc is equal to sc, the file is not modified and the <lb/>server returns the current values for change, time_metadata, and <lb/>time_modify (for example) to the second client. <lb/>o If the value cc is NOT equal to sc, the file is currently modified <lb/>at the first client and most likely will be modified at the server <lb/>at a future time. The server then uses its current time to <lb/>construct attribute values for time_metadata and time_modify. A <lb/>new value of sc, which we will call nsc, is computed by the <lb/>server, such that nsc >= sc + 1. The server then returns the <lb/>constructed time_metadata, time_modify, and nsc values to the <lb/>requester. The server replaces sc in the delegation record with <lb/>nsc. To prevent the possibility of time_modify, time_metadata, <lb/>and change from appearing to go backward (which would happen if <lb/>the client holding the delegation fails to write its modified data <lb/>to the server before the delegation is revoked or returned), the <lb/>server SHOULD update the file's metadata record with the <lb/>constructed attribute values. For reasons of reasonable <lb/>performance, committing the constructed attribute values to stable <lb/>storage is OPTIONAL. <lb/>As discussed earlier in this section, the client MAY return the same <lb/>cc value on subsequent CB_GETATTR calls, even if the file was <lb/>modified in the client's cache yet again between successive <lb/>CB_GETATTR calls. Therefore, the server must assume that the file <lb/>has been modified yet again, and MUST take care to ensure that the <lb/>new nsc it constructs and returns is greater than the previous nsc it <lb/>returned. An example implementation's delegation record would <lb/>satisfy this mandate by including a boolean field (let us call it <lb/>"modified") that is set to FALSE when the delegation is granted, and <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 210] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>an sc value set at the time of grant to the change attribute value. <lb/>The modified field would be set to TRUE the first time cc != sc, and <lb/>would stay TRUE until the delegation is returned or revoked. The <lb/>processing for constructing nsc, time_modify, and time_metadata would <lb/>use this pseudo code: <lb/>if (!modified) { <lb/>do CB_GETATTR for change and size; <lb/>if (cc != sc) <lb/>modified = TRUE; <lb/>} else { <lb/>do CB_GETATTR for size; <lb/>} <lb/>if (modified) { <lb/>sc = sc + 1; <lb/>time_modify = time_metadata = current_time; <lb/>update sc, time_modify, time_metadata into file's metadata; <lb/>} <lb/>This would return to the client (that sent GETATTR) the attributes it <lb/>requested, but make sure size comes from what CB_GETATTR returned. <lb/>The server would not update the file's metadata with the client's <lb/>modified size. <lb/>In the case that the file attribute size is different than the <lb/>server's current value, the server treats this as a modification <lb/>regardless of the value of the change attribute retrieved via <lb/>CB_GETATTR and responds to the second client as in the last step. <lb/>This methodology resolves issues of clock differences between client <lb/>and server and other scenarios where the use of CB_GETATTR break <lb/>down. <lb/>It should be noted that the server is under no obligation to use <lb/>CB_GETATTR, and therefore the server MAY simply recall the delegation <lb/>to avoid its use. <lb/>10.4.4. Recall of Open Delegation <lb/>The following events necessitate recall of an OPEN delegation: <lb/>o potentially conflicting OPEN request (or a READ or WRITE operation <lb/>done with a special stateid) <lb/>o SETATTR sent by another client <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 211] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>o REMOVE request for the file <lb/>o RENAME request for the file as either the source or target of the <lb/>RENAME <lb/>Whether a RENAME of a directory in the path leading to the file <lb/>results in recall of an OPEN delegation depends on the semantics of <lb/>the server's file system. If that file system denies such RENAMEs <lb/>when a file is open, the recall must be performed to determine <lb/>whether the file in question is, in fact, open. <lb/>In addition to the situations above, the server may choose to recall <lb/>OPEN delegations at any time if resource constraints make it <lb/>advisable to do so. Clients should always be prepared for the <lb/>possibility of recall. <lb/>When a client receives a recall for an OPEN delegation, it needs to <lb/>update state on the server before returning the delegation. These <lb/>same updates must be done whenever a client chooses to return a <lb/>delegation voluntarily. The following items of state need to be <lb/>dealt with: <lb/>o If the file associated with the delegation is no longer open and <lb/>no previous CLOSE operation has been sent to the server, a CLOSE <lb/>operation must be sent to the server. <lb/>o If a file has other open references at the client, then OPEN <lb/>operations must be sent to the server. The appropriate stateids <lb/>will be provided by the server for subsequent use by the client <lb/>since the delegation stateid will no longer be valid. These OPEN <lb/>requests are done with the claim type of CLAIM_DELEGATE_CUR. This <lb/>will allow the presentation of the delegation stateid so that the <lb/>client can establish the appropriate rights to perform the OPEN. <lb/>(see Section 18.16, which describes the OPEN operation, for <lb/>details.) <lb/>o If there are granted byte-range locks, the corresponding LOCK <lb/>operations need to be performed. This applies to the <lb/>OPEN_DELEGATE_WRITE delegation case only. <lb/>o For an OPEN_DELEGATE_WRITE delegation, if at the time of recall <lb/>the file is not open for OPEN4_SHARE_ACCESS_WRITE/ <lb/>OPEN4_SHARE_ACCESS_BOTH, all modified data for the file must be <lb/>flushed to the server. If the delegation had not existed, the <lb/>client would have done this data flush before the CLOSE operation. <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 212] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>o For an OPEN_DELEGATE_WRITE delegation when a file is still open at <lb/>the time of recall, any modified data for the file needs to be <lb/>flushed to the server. <lb/>o With the OPEN_DELEGATE_WRITE delegation in place, it is possible <lb/>that the file was truncated during the duration of the delegation. <lb/>For example, the truncation could have occurred as a result of an <lb/>OPEN UNCHECKED with a size attribute value of zero. Therefore, if <lb/>a truncation of the file has occurred and this operation has not <lb/>been propagated to the server, the truncation must occur before <lb/>any modified data is written to the server. <lb/>In the case of OPEN_DELEGATE_WRITE delegation, byte-range locking <lb/>imposes some additional requirements. To precisely maintain the <lb/>associated invariant, it is required to flush any modified data in <lb/>any byte-range for which a WRITE_LT lock was released while the <lb/>OPEN_DELEGATE_WRITE delegation was in effect. However, because the <lb/>OPEN_DELEGATE_WRITE delegation implies no other locking by other <lb/>clients, a simpler implementation is to flush all modified data for <lb/>the file (as described just above) if any WRITE_LT lock has been <lb/>released while the OPEN_DELEGATE_WRITE delegation was in effect. <lb/>An implementation need not wait until delegation recall (or the <lb/>decision to voluntarily return a delegation) to perform any of the <lb/>above actions, if implementation considerations (e.g., resource <lb/>availability constraints) make that desirable. Generally, however, <lb/>the fact that the actual OPEN state of the file may continue to <lb/>change makes it not worthwhile to send information about opens and <lb/>closes to the server, except as part of delegation return. An <lb/>exception is when the client has no more internal opens of the file. <lb/>In this case, sending a CLOSE is useful because it reduces resource <lb/>utilization on the client and server. Regardless of the client's <lb/>choices on scheduling these actions, all must be performed before the <lb/>delegation is returned, including (when applicable) the close that <lb/>corresponds to the OPEN that resulted in the delegation. These <lb/>actions can be performed either in previous requests or in previous <lb/>operations in the same COMPOUND request. <lb/>10.4.5. Clients That Fail to Honor Delegation Recalls <lb/>A client may fail to respond to a recall for various reasons, such as <lb/>a failure of the backchannel from server to the client. The client <lb/>may be unaware of a failure in the backchannel. This lack of <lb/>awareness could result in the client finding out long after the <lb/>failure that its delegation has been revoked, and another client has <lb/>modified the data for which the client had a delegation. This is <lb/>especially a problem for the client that held an OPEN_DELEGATE_WRITE <lb/>delegation. <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 213] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>Status bits returned by SEQUENCE operations help to provide an <lb/>alternate way of informing the client of issues regarding the status <lb/>of the backchannel and of recalled delegations. When the backchannel <lb/>is not available, the server returns the status bit <lb/>SEQ4_STATUS_CB_PATH_DOWN on SEQUENCE operations. The client can <lb/>react by attempting to re-establish the backchannel and by returning <lb/>recallable objects if a backchannel cannot be successfully re-<lb/>established. <lb/>Whether the backchannel is functioning or not, it may be that the <lb/>recalled delegation is not returned. Note that the client's lease <lb/>might still be renewed, even though the recalled delegation is not <lb/>returned. In this situation, servers SHOULD revoke delegations that <lb/>are not returned in a period of time equal to the lease period. This <lb/>period of time should allow the client time to note the backchannel-<lb/>down status and re-establish the backchannel. <lb/>When delegations are revoked, the server will return with the <lb/>SEQ4_STATUS_RECALLABLE_STATE_REVOKED status bit set on subsequent <lb/>SEQUENCE operations. The client should note this and then use <lb/>TEST_STATEID to find which delegations have been revoked. <lb/>10.4.6. Delegation Revocation <lb/>At the point a delegation is revoked, if there are associated opens <lb/>on the client, these opens may or may not be revoked. If no byte-<lb/>range lock or open is granted that is inconsistent with the existing <lb/>open, the stateid for the open may remain valid and be disconnected <lb/>from the revoked delegation, just as would be the case if the <lb/>delegation were returned. <lb/>For example, if an OPEN for OPEN4_SHARE_ACCESS_BOTH with a deny of <lb/>OPEN4_SHARE_DENY_NONE is associated with the delegation, granting of <lb/>another such OPEN to a different client will revoke the delegation <lb/>but need not revoke the OPEN, since the two OPENs are consistent with <lb/>each other. On the other hand, if an OPEN denying write access is <lb/>granted, then the existing OPEN must be revoked. <lb/>When opens and/or locks are revoked, the applications holding these <lb/>opens or locks need to be notified. This notification usually occurs <lb/>by returning errors for READ/WRITE operations or when a close is <lb/>attempted for the open file. <lb/>If no opens exist for the file at the point the delegation is <lb/>revoked, then notification of the revocation is unnecessary. <lb/>However, if there is modified data present at the client for the <lb/>file, the user of the application should be notified. Unfortunately, <lb/>it may not be possible to notify the user since active applications <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 214] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>may not be present at the client. See Section 10.5.1 for additional <lb/>details. <lb/>10.4.7. Delegations via WANT_DELEGATION <lb/>In addition to providing delegations as part of the reply to OPEN <lb/>operations, servers MAY provide delegations separate from open, via <lb/>the OPTIONAL WANT_DELEGATION operation. This allows delegations to <lb/>be obtained in advance of an OPEN that might benefit from them, for <lb/>objects that are not a valid target of OPEN, or to deal with cases in <lb/>which a delegation has been recalled and the client wants to make an <lb/>attempt to re-establish it if the absence of use by other clients <lb/>allows that. <lb/>The WANT_DELEGATION operation may be performed on any type of file <lb/>object other than a directory. <lb/>When a delegation is obtained using WANT_DELEGATION, any open files <lb/>for the same filehandle held by that client are to be treated as <lb/>subordinate to the delegation, just as if they had been created using <lb/>an OPEN of type CLAIM_DELEGATE_CUR. They are otherwise unchanged as <lb/>to seqid, access and deny modes, and the relationship with byte-range <lb/>locks. Similarly, because existing byte-range locks are subordinate <lb/>to an open, those byte-range locks also become indirectly subordinate <lb/>to that new delegation. <lb/>The WANT_DELEGATION operation provides for delivery of delegations <lb/>via callbacks, when the delegations are not immediately available. <lb/>When a requested delegation is available, it is delivered to the <lb/>client via a CB_PUSH_DELEG operation. When this happens, open files <lb/>for the same filehandle become subordinate to the new delegation at <lb/>the point at which the delegation is delivered, just as if they had <lb/>been created using an OPEN of type CLAIM_DELEGATE_CUR. Similarly, <lb/>this occurs for existing byte-range locks subordinate to an open. <lb/>10.5. Data Caching and Revocation <lb/>When locks and delegations are revoked, the assumptions upon which <lb/>successful caching depends are no longer guaranteed. For any locks <lb/>or share reservations that have been revoked, the corresponding <lb/>state-owner needs to be notified. This notification includes <lb/>applications with a file open that has a corresponding delegation <lb/>that has been revoked. Cached data associated with the revocation <lb/>must be removed from the client. In the case of modified data <lb/>existing in the client's cache, that data must be removed from the <lb/>client without being written to the server. As mentioned, the <lb/>assumptions made by the client are no longer valid at the point when <lb/>a lock or delegation has been revoked. For example, another client <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 215] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>may have been granted a conflicting byte-range lock after the <lb/>revocation of the byte-range lock at the first client. Therefore, <lb/>the data within the lock range may have been modified by the other <lb/>client. Obviously, the first client is unable to guarantee to the <lb/>application what has occurred to the file in the case of revocation. <lb/>Notification to a state-owner will in many cases consist of simply <lb/>returning an error on the next and all subsequent READs/WRITEs to the <lb/>open file or on the close. Where the methods available to a client <lb/>make such notification impossible because errors for certain <lb/>operations may not be returned, more drastic action such as signals <lb/>or process termination may be appropriate. The justification here is <lb/>that an invariant on which an application depends may be violated. <lb/>Depending on how errors are typically treated for the client-<lb/>operating environment, further levels of notification including <lb/>logging, console messages, and GUI pop-ups may be appropriate. <lb/>10.5.1. Revocation Recovery for Write Open Delegation <lb/>Revocation recovery for an OPEN_DELEGATE_WRITE delegation poses the <lb/>special issue of modified data in the client cache while the file is <lb/>not open. In this situation, any client that does not flush modified <lb/>data to the server on each close must ensure that the user receives <lb/>appropriate notification of the failure as a result of the <lb/>revocation. Since such situations may require human action to <lb/>correct problems, notification schemes in which the appropriate user <lb/>or administrator is notified may be necessary. Logging and console <lb/>messages are typical examples. <lb/>If there is modified data on the client, it must not be flushed <lb/>normally to the server. A client may attempt to provide a copy of <lb/>the file data as modified during the delegation under a different <lb/>name in the file system namespace to ease recovery. Note that when <lb/>the client can determine that the file has not been modified by any <lb/>other client, or when the client has a complete cached copy of the <lb/>file in question, such a saved copy of the client's view of the file <lb/>may be of particular value for recovery. In another case, recovery <lb/>using a copy of the file based partially on the client's cached data <lb/>and partially on the server's copy as modified by other clients will <lb/>be anything but straightforward, so clients may avoid saving file <lb/>contents in these situations or specially mark the results to warn <lb/>users of possible problems. <lb/>Saving of such modified data in delegation revocation situations may <lb/>be limited to files of a certain size or might be used only when <lb/>sufficient disk space is available within the target file system. <lb/>Such saving may also be restricted to situations when the client has <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 216] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>sufficient buffering resources to keep the cached copy available <lb/>until it is properly stored to the target file system. <lb/>10.6. Attribute Caching <lb/>This section pertains to the caching of a file's attributes on a <lb/>client when that client does not hold a delegation on the file. <lb/>The attributes discussed in this section do not include named <lb/>attributes. Individual named attributes are analogous to files, and <lb/>caching of the data for these needs to be handled just as data <lb/>caching is for ordinary files. Similarly, LOOKUP results from an <lb/>OPENATTR directory (as well as the directory's contents) are to be <lb/>cached on the same basis as any other pathnames. <lb/>Clients may cache file attributes obtained from the server and use <lb/>them to avoid subsequent GETATTR requests. Such caching is write <lb/>through in that modification to file attributes is always done by <lb/>means of requests to the server and should not be done locally and <lb/>should not be cached. The exception to this are modifications to <lb/>attributes that are intimately connected with data caching. <lb/>Therefore, extending a file by writing data to the local data cache <lb/>is reflected immediately in the size as seen on the client without <lb/>this change being immediately reflected on the server. Normally, <lb/>such changes are not propagated directly to the server, but when the <lb/>modified data is flushed to the server, analogous attribute changes <lb/>are made on the server. When OPEN delegation is in effect, the <lb/>modified attributes may be returned to the server in reaction to a <lb/>CB_RECALL call. <lb/>The result of local caching of attributes is that the attribute <lb/>caches maintained on individual clients will not be coherent. <lb/>Changes made in one order on the server may be seen in a different <lb/>order on one client and in a third order on another client. <lb/>The typical file system application programming interfaces do not <lb/>provide means to atomically modify or interrogate attributes for <lb/>multiple files at the same time. The following rules provide an <lb/>environment where the potential incoherencies mentioned above can be <lb/>reasonably managed. These rules are derived from the practice of <lb/>previous NFS protocols. <lb/>o All attributes for a given file (per-fsid attributes excepted) are <lb/>cached as a unit at the client so that no non-serializability can <lb/>arise within the context of a single file. <lb/>o An upper time boundary is maintained on how long a client cache <lb/>entry can be kept without being refreshed from the server. <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 217] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>o When operations are performed that change attributes at the <lb/>server, the updated attribute set is requested as part of the <lb/>containing RPC. This includes directory operations that update <lb/>attributes indirectly. This is accomplished by following the <lb/>modifying operation with a GETATTR operation and then using the <lb/>results of the GETATTR to update the client's cached attributes. <lb/>Note that if the full set of attributes to be cached is requested by <lb/>READDIR, the results can be cached by the client on the same basis as <lb/>attributes obtained via GETATTR. <lb/>A client may validate its cached version of attributes for a file by <lb/>fetching both the change and time_access attributes and assuming that <lb/>if the change attribute has the same value as it did when the <lb/>attributes were cached, then no attributes other than time_access <lb/>have changed. The reason why time_access is also fetched is because <lb/>many servers operate in environments where the operation that updates <lb/>change does not update time_access. For example, POSIX file <lb/>semantics do not update access time when a file is modified by the <lb/>write system call [15]. Therefore, the client that wants a current <lb/>time_access value should fetch it with change during the attribute <lb/>cache validation processing and update its cached time_access. <lb/>The client may maintain a cache of modified attributes for those <lb/>attributes intimately connected with data of modified regular files <lb/>(size, time_modify, and change). Other than those three attributes, <lb/>the client MUST NOT maintain a cache of modified attributes. <lb/>Instead, attribute changes are immediately sent to the server. <lb/>In some operating environments, the equivalent to time_access is <lb/>expected to be implicitly updated by each read of the content of the <lb/>file object. If an NFS client is caching the content of a file <lb/>object, whether it is a regular file, directory, or symbolic link, <lb/>the client SHOULD NOT update the time_access attribute (via SETATTR <lb/>or a small READ or READDIR request) on the server with each read that <lb/>is satisfied from cache. The reason is that this can defeat the <lb/>performance benefits of caching content, especially since an explicit <lb/>SETATTR of time_access may alter the change attribute on the server. <lb/>If the change attribute changes, clients that are caching the content <lb/>will think the content has changed, and will re-read unmodified data <lb/>from the server. Nor is the client encouraged to maintain a modified <lb/>version of time_access in its cache, since the client either would <lb/>eventually have to write the access time to the server with bad <lb/>performance effects or never update the server's time_access, thereby <lb/>resulting in a situation where an application that caches access time <lb/>between a close and open of the same file observes the access time <lb/>oscillating between the past and present. The time_access attribute <lb/>always means the time of last access to a file by a read that was <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 218] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>satisfied by the server. This way clients will tend to see only <lb/>time_access changes that go forward in time. <lb/>10.7. Data and Metadata Caching and Memory Mapped Files <lb/>Some operating environments include the capability for an application <lb/>to map a file's content into the application's address space. Each <lb/>time the application accesses a memory location that corresponds to a <lb/>block that has not been loaded into the address space, a page fault <lb/>occurs and the file is read (or if the block does not exist in the <lb/>file, the block is allocated and then instantiated in the <lb/>application's address space). <lb/>As long as each memory-mapped access to the file requires a page <lb/>fault, the relevant attributes of the file that are used to detect <lb/>access and modification (time_access, time_metadata, time_modify, and <lb/>change) will be updated. However, in many operating environments, <lb/>when page faults are not required, these attributes will not be <lb/>updated on reads or updates to the file via memory access (regardless <lb/>of whether the file is local or is accessed remotely). A client or <lb/>server MAY fail to update attributes of a file that is being accessed <lb/>via memory-mapped I/O. This has several implications: <lb/>o If there is an application on the server that has memory mapped a <lb/>file that a client is also accessing, the client may not be able <lb/>to get a consistent value of the change attribute to determine <lb/>whether or not its cache is stale. A server that knows that the <lb/>file is memory-mapped could always pessimistically return updated <lb/>values for change so as to force the application to always get the <lb/>most up-to-date data and metadata for the file. However, due to <lb/>the negative performance implications of this, such behavior is <lb/>OPTIONAL. <lb/>o If the memory-mapped file is not being modified on the server, and <lb/>instead is just being read by an application via the memory-mapped <lb/>interface, the client will not see an updated time_access <lb/>attribute. However, in many operating environments, neither will <lb/>any process running on the server. Thus, NFS clients are at no <lb/>disadvantage with respect to local processes. <lb/>o If there is another client that is memory mapping the file, and if <lb/>that client is holding an OPEN_DELEGATE_WRITE delegation, the same <lb/>set of issues as discussed in the previous two bullet points <lb/>apply. So, when a server does a CB_GETATTR to a file that the <lb/>client has modified in its cache, the reply from CB_GETATTR will <lb/>not necessarily be accurate. As discussed earlier, the client's <lb/>obligation is to report that the file has been modified since the <lb/>delegation was granted, not whether it has been modified again <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 219] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>between successive CB_GETATTR calls, and the server MUST assume <lb/>that any file the client has modified in cache has been modified <lb/>again between successive CB_GETATTR calls. Depending on the <lb/>nature of the client's memory management system, this weak <lb/>obligation may not be possible. A client MAY return stale <lb/>information in CB_GETATTR whenever the file is memory-mapped. <lb/>o The mixture of memory mapping and byte-range locking on the same <lb/>file is problematic. Consider the following scenario, where a <lb/>page size on each client is 8192 bytes. <lb/>* Client A memory maps the first page (8192 bytes) of file X. <lb/>* Client B memory maps the first page (8192 bytes) of file X. <lb/>* Client A WRITE_LT locks the first 4096 bytes. <lb/>* Client B WRITE_LT locks the second 4096 bytes. <lb/>* Client A, via a STORE instruction, modifies part of its locked <lb/>byte-range. <lb/>* Simultaneous to client A, client B executes a STORE on part of <lb/>its locked byte-range. <lb/>Here the challenge is for each client to resynchronize to get a <lb/>correct view of the first page. In many operating environments, the <lb/>virtual memory management systems on each client only know a page is <lb/>modified, not that a subset of the page corresponding to the <lb/>respective lock byte-ranges has been modified. So it is not possible <lb/>for each client to do the right thing, which is to write to the <lb/>server only that portion of the page that is locked. For example, if <lb/>client A simply writes out the page, and then client B writes out the <lb/>page, client A's data is lost. <lb/>Moreover, if mandatory locking is enabled on the file, then we have a <lb/>different problem. When clients A and B execute the STORE <lb/>instructions, the resulting page faults require a byte-range lock on <lb/>the entire page. Each client then tries to extend their locked range <lb/>to the entire page, which results in a deadlock. Communicating the <lb/>NFS4ERR_DEADLOCK error to a STORE instruction is difficult at best. <lb/>If a client is locking the entire memory-mapped file, there is no <lb/>problem with advisory or mandatory byte-range locking, at least until <lb/>the client unlocks a byte-range in the middle of the file. <lb/>Given the above issues, the following are permitted: <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 220] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>o Clients and servers MAY deny memory mapping a file for which they <lb/>know there are byte-range locks. <lb/>o Clients and servers MAY deny a byte-range lock on a file they know <lb/>is memory-mapped. <lb/>o A client MAY deny memory mapping a file that it knows requires <lb/>mandatory locking for I/O. If mandatory locking is enabled after <lb/>the file is opened and mapped, the client MAY deny the application <lb/>further access to its mapped file. <lb/>10.8. Name and Directory Caching without Directory Delegations <lb/>The NFSv4.1 directory delegation facility (described in Section 10.9 <lb/>below) is OPTIONAL for servers to implement. Even where it is <lb/>implemented, it may not always be functional because of resource <lb/>availability issues or other constraints. Thus, it is important to <lb/>understand how name and directory caching are done in the absence of <lb/>directory delegations. These topics are discussed in the next two <lb/>subsections. <lb/>10.8.1. Name Caching <lb/>The results of LOOKUP and READDIR operations may be cached to avoid <lb/>the cost of subsequent LOOKUP operations. Just as in the case of <lb/>attribute caching, inconsistencies may arise among the various client <lb/>caches. To mitigate the effects of these inconsistencies and given <lb/>the context of typical file system APIs, an upper time boundary is <lb/>maintained for how long a client name cache entry can be kept without <lb/>verifying that the entry has not been made invalid by a directory <lb/>change operation performed by another client. <lb/>When a client is not making changes to a directory for which there <lb/>exist name cache entries, the client needs to periodically fetch <lb/>attributes for that directory to ensure that it is not being <lb/>modified. After determining that no modification has occurred, the <lb/>expiration time for the associated name cache entries may be updated <lb/>to be the current time plus the name cache staleness bound. <lb/>When a client is making changes to a given directory, it needs to <lb/>determine whether there have been changes made to the directory by <lb/>other clients. It does this by using the change attribute as <lb/>reported before and after the directory operation in the associated <lb/>change_info4 value returned for the operation. The server is able to <lb/>communicate to the client whether the change_info4 data is provided <lb/>atomically with respect to the directory operation. If the change <lb/>values are provided atomically, the client has a basis for <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 221] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>determining, given proper care, whether other clients are modifying <lb/>the directory in question. <lb/>The simplest way to enable the client to make this determination is <lb/>for the client to serialize all changes made to a specific directory. <lb/>When this is done, and the server provides before and after values of <lb/>the change attribute atomically, the client can simply compare the <lb/>after value of the change attribute from one operation on a directory <lb/>with the before value on the subsequent operation modifying that <lb/>directory. When these are equal, the client is assured that no other <lb/>client is modifying the directory in question. <lb/>When such serialization is not used, and there may be multiple <lb/>simultaneous outstanding operations modifying a single directory sent <lb/>from a single client, making this sort of determination can be more <lb/>complicated. If two such operations complete in a different order <lb/>than they were actually performed, that might give an appearance <lb/>consistent with modification being made by another client. Where <lb/>this appears to happen, the client needs to await the completion of <lb/>all such modifications that were started previously, to see if the <lb/>outstanding before and after change numbers can be sorted into a <lb/>chain such that the before value of one change number matches the <lb/>after value of a previous one, in a chain consistent with this client <lb/>being the only one modifying the directory. <lb/>In either of these cases, the client is able to determine whether the <lb/>directory is being modified by another client. If the comparison <lb/>indicates that the directory was updated by another client, the name <lb/>cache associated with the modified directory is purged from the <lb/>client. If the comparison indicates no modification, the name cache <lb/>can be updated on the client to reflect the directory operation and <lb/>the associated timeout can be extended. The post-operation change <lb/>value needs to be saved as the basis for future change_info4 <lb/>comparisons. <lb/>As demonstrated by the scenario above, name caching requires that the <lb/>client revalidate name cache data by inspecting the change attribute <lb/>of a directory at the point when the name cache item was cached. <lb/>This requires that the server update the change attribute for <lb/>directories when the contents of the corresponding directory is <lb/>modified. For a client to use the change_info4 information <lb/>appropriately and correctly, the server must report the pre-and <lb/>post-operation change attribute values atomically. When the server <lb/>is unable to report the before and after values atomically with <lb/>respect to the directory operation, the server must indicate that <lb/>fact in the change_info4 return value. When the information is not <lb/>atomically reported, the client should not assume that other clients <lb/>have not changed the directory. <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 222] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>10.8.2. Directory Caching <lb/>The results of READDIR operations may be used to avoid subsequent <lb/>READDIR operations. Just as in the cases of attribute and name <lb/>caching, inconsistencies may arise among the various client caches. <lb/>To mitigate the effects of these inconsistencies, and given the <lb/>context of typical file system APIs, the following rules should be <lb/>followed: <lb/>o Cached READDIR information for a directory that is not obtained in <lb/>a single READDIR operation must always be a consistent snapshot of <lb/>directory contents. This is determined by using a GETATTR before <lb/>the first READDIR and after the last READDIR that contributes to <lb/>the cache. <lb/>o An upper time boundary is maintained to indicate the length of <lb/>time a directory cache entry is considered valid before the client <lb/>must revalidate the cached information. <lb/>The revalidation technique parallels that discussed in the case of <lb/>name caching. When the client is not changing the directory in <lb/>question, checking the change attribute of the directory with GETATTR <lb/>is adequate. The lifetime of the cache entry can be extended at <lb/>these checkpoints. When a client is modifying the directory, the <lb/>client needs to use the change_info4 data to determine whether there <lb/>are other clients modifying the directory. If it is determined that <lb/>no other client modifications are occurring, the client may update <lb/>its directory cache to reflect its own changes. <lb/>As demonstrated previously, directory caching requires that the <lb/>client revalidate directory cache data by inspecting the change <lb/>attribute of a directory at the point when the directory was cached. <lb/>This requires that the server update the change attribute for <lb/>directories when the contents of the corresponding directory is <lb/>modified. For a client to use the change_info4 information <lb/>appropriately and correctly, the server must report the pre-and <lb/>post-operation change attribute values atomically. When the server <lb/>is unable to report the before and after values atomically with <lb/>respect to the directory operation, the server must indicate that <lb/>fact in the change_info4 return value. When the information is not <lb/>atomically reported, the client should not assume that other clients <lb/>have not changed the directory. <lb/>10.9. Directory Delegations <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 223] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>10.9.1. Introduction to Directory Delegations <lb/>Directory caching for the NFSv4.1 protocol, as previously described, <lb/>is similar to file caching in previous versions. Clients typically <lb/>cache directory information for a duration determined by the client. <lb/>At the end of a predefined timeout, the client will query the server <lb/>to see if the directory has been updated. By caching attributes, <lb/>clients reduce the number of GETATTR calls made to the server to <lb/>validate attributes. Furthermore, frequently accessed files and <lb/>directories, such as the current working directory, have their <lb/>attributes cached on the client so that some NFS operations can be <lb/>performed without having to make an RPC call. By caching name and <lb/>inode information about most recently looked up entries in a <lb/>Directory Name Lookup Cache (DNLC), clients do not need to send <lb/>LOOKUP calls to the server every time these files are accessed. <lb/>This caching approach works reasonably well at reducing network <lb/>traffic in many environments. However, it does not address <lb/>environments where there are numerous queries for files that do not <lb/>exist. In these cases of "misses", the client sends requests to the <lb/>server in order to provide reasonable application semantics and <lb/>promptly detect the creation of new directory entries. Examples of <lb/>high miss activity are compilation in software development <lb/>environments. The current behavior of NFS limits its potential <lb/>scalability and wide-area sharing effectiveness in these types of <lb/>environments. Other distributed stateful file system architectures <lb/>such as AFS and DFS have proven that adding state around directory <lb/>contents can greatly reduce network traffic in high-miss <lb/>environments. <lb/>Delegation of directory contents is an OPTIONAL feature of NFSv4.1. <lb/>Directory delegations provide similar traffic reduction benefits as <lb/>with file delegations. By allowing clients to cache directory <lb/>contents (in a read-only fashion) while being notified of changes, <lb/>the client can avoid making frequent requests to interrogate the <lb/>contents of slowly-changing directories, reducing network traffic and <lb/>improving client performance. It can also simplify the task of <lb/>determining whether other clients are making changes to the directory <lb/>when the client itself is making many changes to the directory and <lb/>changes are not serialized. <lb/>Directory delegations allow improved namespace cache consistency to <lb/>be achieved through delegations and synchronous recalls, in the <lb/>absence of notifications. In addition, if time-based consistency is <lb/>sufficient, asynchronous notifications can provide performance <lb/>benefits for the client, and possibly the server, under some common <lb/>operating conditions such as slowly-changing and/or very large <lb/>directories. <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 224] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>10.9.2. Directory Delegation Design <lb/>NFSv4.1 introduces the GET_DIR_DELEGATION (Section 18.39) operation <lb/>to allow the client to ask for a directory delegation. The <lb/>delegation covers directory attributes and all entries in the <lb/>directory. If either of these change, the delegation will be <lb/>recalled synchronously. The operation causing the recall will have <lb/>to wait before the recall is complete. Any changes to directory <lb/>entry attributes will not cause the delegation to be recalled. <lb/>In addition to asking for delegations, a client can also ask for <lb/>notifications for certain events. These events include changes to <lb/>the directory's attributes and/or its contents. If a client asks for <lb/>notification for a certain event, the server will notify the client <lb/>when that event occurs. This will not result in the delegation being <lb/>recalled for that client. The notifications are asynchronous and <lb/>provide a way of avoiding recalls in situations where a directory is <lb/>changing enough that the pure recall model may not be effective while <lb/>trying to allow the client to get substantial benefit. In the <lb/>absence of notifications, once the delegation is recalled the client <lb/>has to refresh its directory cache; this might not be very efficient <lb/>for very large directories. <lb/>The delegation is read-only and the client may not make changes to <lb/>the directory other than by performing NFSv4.1 operations that modify <lb/>the directory or the associated file attributes so that the server <lb/>has knowledge of these changes. In order to keep the client's <lb/>namespace synchronized with the server, the server will notify the <lb/>delegation-holding client (assuming it has requested notifications) <lb/>of the changes made as a result of that client's directory-modifying <lb/>operations. This is to avoid any need for that client to send <lb/>subsequent GETATTR or READDIR operations to the server. If a single <lb/>client is holding the delegation and that client makes any changes to <lb/>the directory (i.e., the changes are made via operations sent on a <lb/>session associated with the client ID holding the delegation), the <lb/>delegation will not be recalled. Multiple clients may hold a <lb/>delegation on the same directory, but if any such client modifies the <lb/>directory, the server MUST recall the delegation from the other <lb/>clients, unless those clients have made provisions to be notified of <lb/>that sort of modification. <lb/>Delegations can be recalled by the server at any time. Normally, the <lb/>server will recall the delegation when the directory changes in a way <lb/>that is not covered by the notification, or when the directory <lb/>changes and notifications have not been requested. If another client <lb/>removes the directory for which a delegation has been granted, the <lb/>server will recall the delegation. <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 225] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>10.9.3. Attributes in Support of Directory Notifications <lb/>See Section 5.11 for a description of the attributes associated with <lb/>directory notifications. <lb/>10.9.4. Directory Delegation Recall <lb/>The server will recall the directory delegation by sending a callback <lb/>to the client. It will use the same callback procedure as used for <lb/>recalling file delegations. The server will recall the delegation <lb/>when the directory changes in a way that is not covered by the <lb/>notification. However, the server need not recall the delegation if <lb/>attributes of an entry within the directory change. <lb/>If the server notices that handing out a delegation for a directory <lb/>is causing too many notifications to be sent out, it may decide to <lb/>not hand out delegations for that directory and/or recall those <lb/>already granted. If a client tries to remove the directory for which <lb/>a delegation has been granted, the server will recall all associated <lb/>delegations. <lb/>The implementation sections for a number of operations describe <lb/>situations in which notification or delegation recall would be <lb/>required under some common circumstances. In this regard, a similar <lb/>set of caveats to those listed in Section 10.2 apply. <lb/>o For CREATE, see Section 18.4.4. <lb/>o For LINK, see Section 18.9.4. <lb/>o For OPEN, see Section 18.16.4. <lb/>o For REMOVE, see Section 18.25.4. <lb/>o For RENAME, see Section 18.26.4. <lb/>o For SETATTR, see Section 18.30.4. <lb/>10.9.5. Directory Delegation Recovery <lb/>Recovery from client or server restart for state on regular files has <lb/>two main goals: avoiding the necessity of breaking application <lb/>guarantees with respect to locked files and delivery of updates <lb/>cached at the client. Neither of these goals applies to directories <lb/>protected by OPEN_DELEGATE_READ delegations and notifications. Thus, <lb/>no provision is made for reclaiming directory delegations in the <lb/>event of client or server restart. The client can simply establish a <lb/>directory delegation in the same fashion as was done initially. <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 226] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>11. Multi-Server Namespace <lb/>NFSv4.1 supports attributes that allow a namespace to extend beyond <lb/>the boundaries of a single server. It is desirable that clients and <lb/>servers support construction of such multi-server namespaces. Use of <lb/>such multi-server namespaces is OPTIONAL however, and for many <lb/>purposes, single-server namespaces are perfectly acceptable. Use of <lb/>multi-server namespaces can provide many advantages, by separating a <lb/>file system's logical position in a namespace from the (possibly <lb/>changing) logistical and administrative considerations that result in <lb/>particular file systems being located on particular servers via a <lb/>single network access paths known in advance or determined using DNS. <lb/>11.1. Terminology <lb/>In this section as a whole (i.e within Section 11), the phrase <lb/>"client ID" always refers to the 64-bit shorthand identifier assigned <lb/>by the server (a clientid4) and never to the structure which the <lb/>client uses to identify itself to the server (called an <lb/>nfs_client_id4 or client_owner in NFSv4.0 and NFSv4.1 respectively). <lb/>The opaque identifier within those structures is referred to as a <lb/>"client id string". <lb/>11.1.1. Terminology Related to Trunking <lb/>It is particularly important to clarify the distinction between <lb/>trunking detection and trunking discovery. The definitions we <lb/>present are applicable to all minor versions of NFSv4, but we will <lb/>focus on how these terms apply to NFS version 4.1. <lb/>o Trunking detection refers to ways of deciding whether two specific <lb/>network addresses are connected to the same NFSv4 server. The <lb/>means available to make this determination depends on the protocol <lb/>version, and, in some cases, on the client implementation. <lb/>In the case of NFS version 4.1 and later minor versions, the means <lb/>of trunking detection are as described in this document and are <lb/>available to every client. Two network addresses connected to the <lb/>same server are always server-trunkable but cannot necessarily be <lb/>used together to access a single session. <lb/>o Trunking discovery is a process by which a client using one <lb/>network address can obtain other addresses that are connected to <lb/>the same server. Typically, it builds on a trunking detection <lb/>facility by providing one or more methods by which candidate <lb/>addresses are made available to the client who can then use <lb/>trunking detection to appropriately filter them. <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 227] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>Despite the support for trunking detection there was no <lb/>description of trunking discovery provided in RFC5661 [60], making <lb/>it necessary to provide those means in this document. <lb/>The combination of a server network address and a particular <lb/>connection type to be used by a connection is referred to as a <lb/>"server endpoint". Although using different connection types may <lb/>result in different ports being used, the use of different ports by <lb/>multiple connections to the same network address is not the essence <lb/>of the distinction between the two endpoints used. <lb/>Two network addresses connected to the same server are said to be <lb/>server-trunkable. Two such addresses support the use of clientid ID <lb/>trunking, as described in Section 2.10.5. <lb/>Two network addresses connected to the same server such that those <lb/>addresses can be used to support a single common session are referred <lb/>to as session-trunkable. Note that two addresses may be server-<lb/>trunkable without being session-trunkable and that when two <lb/>connections of different connection types are made to the same <lb/>network address and are based on a single file system location entry <lb/>they are always session-trunkable, independent of the connection <lb/>type, as specified by Section 2.10.5, since their derivation from the <lb/>same file system location entry together with the identity of their <lb/>network addresses assures that both connections are to the same <lb/>server and will return server-owner information allowing session <lb/>trunking to be used. <lb/>11.1.2. Terminology Related to File System Location <lb/>Regarding terminology relating to the construction of multi-server <lb/>namespaces out of a set of local per-server namespaces: <lb/>o Each server has a set of exported file systems which may be <lb/>accessed by NFSv4 clients. Typically, this is done by assigning <lb/>each file system a name within the pseudo-fs associated with the <lb/>server, although the pseudo-fs may be dispensed with if there is <lb/>only a single exported file system. Each such file system is part <lb/>of the server's local namespace, and can be considered as a file <lb/>system instance within a larger multi-server namespace. <lb/>o The set of all exported file systems for a given server <lb/>constitutes that server's local namespace. <lb/>o In some cases, a server will have a namespace more extensive than <lb/>its local namespace by using features associated with attributes <lb/>that provide file system location information. These features, <lb/>which allow construction of a multi-server namespace are all <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 228] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>described in individual sections below and include referrals <lb/>(described in Section 11.5.6), migration (described in <lb/>Section 11.5.5), and replication (described in Section 11.5.4). <lb/>o A file system present in a server's pseudo-fs may have multiple <lb/>file system instances on different servers associated with it. <lb/>All such instances are considered replicas of one another. <lb/>o When a file system is present in a server's pseudo-fs, but there <lb/>is no corresponding local file system, it is said to be "absent". <lb/>In such cases, all associated instances will be accessed on other <lb/>servers. <lb/>Regarding terminology relating to attributes used in trunking <lb/>discovery and other multi-server namespace features: <lb/>o File system location attributes include the fs_locations and <lb/>fs_locations_info attributes. <lb/>o File system location entries provide the individual file system <lb/>locations within the file system location attributes. Each such <lb/>entry specifies a server, in the form of a host name or IP an <lb/>address, and an fs name, which designates the location of the file <lb/>system within the server's local namespace. A file system <lb/>location entry designates a set of server endpoints to which the <lb/>client may establish connections. There may be multiple endpoints <lb/>because a host name may map to multiple network addresses and <lb/>because multiple connection types may be used to communicate with <lb/>a single network address. However, all such endpoints MUST <lb/>provide a way of connecting to a single server. The exact form of <lb/>the location entry varies with the particular file system location <lb/>attribute used, as described in Section 11.2. <lb/>o File system location elements are derived from location entries <lb/>and each describes a particular network access path, consisting of <lb/>a network address and a location within the server's local <lb/>namespace. Such location elements need not appear within a file <lb/>system location attribute, but the existence of each location <lb/>element derives from a corresponding location entry. When a <lb/>location entry specifies an IP address there is only a single <lb/>corresponding location element. File system location entries that <lb/>contain a host name are resolved using DNS, and may result in one <lb/>or more location elements. All location elements consist of a <lb/>location address which is the IP address of an interface to a <lb/>server and an fs name which is the location of the file system <lb/>within the server's local namespace. The fs name can be empty if <lb/>the server has no pseudo-fs and only a single exported file system <lb/>at the root filehandle. <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 229] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>o Two file system location elements are said to be server-trunkable <lb/>if they specify the same fs name and the location addresses are <lb/>such that the location addresses are server-trunkable. When the <lb/>corresponding network paths are used, the client will always be <lb/>able to use client ID trunking, but will only be able to use <lb/>session trunking if the paths are also session-trunkable. <lb/>o Two file system location elements are said to be session-trunkable <lb/>if they specify the same fs name and the location addresses are <lb/>such that the location addresses are session-trunkable. When the <lb/>corresponding network paths are used, the client will be able to <lb/>able to use either client ID trunking or session trunking. <lb/>Discussion of the term "replica" is complicated by the fact that the <lb/>term was used in RFC5661 [60], with a meaning different from that in <lb/>this document. In short, in [60] each replica is identified by a <lb/>single network access path while, in the current document a set of <lb/>network access paths which have server-trunkable network addresses <lb/>and the same root-relative file system pathname is considered to be a <lb/>single replica with multiple network access paths. <lb/>Each set of server-trunkable location elements defines a set of <lb/>available network access paths to a particular file system. When <lb/>there are multiple such file systems, each of which contains the same <lb/>data, these file systems are considered replicas of one another. <lb/>Logically, such replication is symmetric, since the fs currently in <lb/>use and an alternate fs are replicas of each other. Often, in other <lb/>documents, the term "replica" is not applied to the fs currently in <lb/>use, despite the fact that the replication relation is inherently <lb/>symmetric. <lb/>11.2. File System Location Attributes <lb/>NFSv4.1 contains attributes that provide information about how (i.e., <lb/>at what network address and namespace position) a given file system <lb/>may be accessed. As a result, file systems in the namespace of one <lb/>server can be associated with one or more instances of that file <lb/>system on other servers. These attributes contain file system <lb/>location entries specifying a server address target (either as a DNS <lb/>name representing one or more IP addresses or as a specific IP <lb/>address) together with the pathname of that file system within the <lb/>associated single-server namespace. <lb/>The fs_locations_info RECOMMENDED attribute allows specification of <lb/>one or more file system instance locations where the data <lb/>corresponding to a given file system may be found. This attribute <lb/>provides to the client, in addition to specification of file system <lb/>instance locations, other helpful information such as: <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 230] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>o Information guiding choices among the various file system <lb/>instances provided (e.g., priority for use, writability, currency, <lb/>etc.). <lb/>o Information to help the client efficiently effect as seamless a <lb/>transition as possible among multiple file system instances, when <lb/>and if that should be necessary. <lb/>o Information helping to guide the selection of the appropriate <lb/>connection type to be used when establishing a connection. <lb/>Within the fs_locations_info attribute, each fs_locations_server4 <lb/>entry corresponds to a file system location entry with the fls_server <lb/>field designating the server, with the location pathname within the <lb/>server's pseudo-fs given by the fl_rootpath field of the encompassing <lb/>fs_locations_item4. <lb/>The fs_locations attribute defined in NFSv4.0 is also a part of <lb/>NFSv4.1. This attribute only allows specification of the file system <lb/>locations where the data corresponding to a given file system may be <lb/>found. Servers should make this attribute available whenever <lb/>fs_locations_info is supported, but client use of fs_locations_info <lb/>is preferable, as it provides more information. <lb/>Within the fs_location attribute, each fs_location4 contains a file <lb/>system location entry with the server field designating the server <lb/>and the rootpath field giving the location pathname within the <lb/>server's pseudo-fs. <lb/>11.3. File System Presence or Absence <lb/>A given location in an NFSv4.1 namespace (typically but not <lb/>necessarily a multi-server namespace) can have a number of file <lb/>system instance locations associated with it (via the fs_locations or <lb/>fs_locations_info attribute). There may also be an actual current <lb/>file system at that location, accessible via normal namespace <lb/>operations (e.g., LOOKUP). In this case, the file system is said to <lb/>be "present" at that position in the namespace, and clients will <lb/>typically use it, reserving use of additional locations specified via <lb/>the location-related attributes to situations in which the principal <lb/>location is no longer available. <lb/>When there is no actual file system at the namespace location in <lb/>question, the file system is said to be "absent". An absent file <lb/>system contains no files or directories other than the root. Any <lb/>reference to it, except to access a small set of attributes useful in <lb/>determining alternate locations, will result in an error, <lb/>NFS4ERR_MOVED. Note that if the server ever returns the error <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 231] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>NFS4ERR_MOVED, it MUST support the fs_locations attribute and SHOULD <lb/>support the fs_locations_info and fs_status attributes. <lb/>While the error name suggests that we have a case of a file system <lb/>that once was present, and has only become absent later, this is only <lb/>one possibility. A position in the namespace may be permanently <lb/>absent with the set of file system(s) designated by the location <lb/>attributes being the only realization. The name NFS4ERR_MOVED <lb/>reflects an earlier, more limited conception of its function, but <lb/>this error will be returned whenever the referenced file system is <lb/>absent, whether it has moved or not. <lb/>Except in the case of GETATTR-type operations (to be discussed <lb/>later), when the current filehandle at the start of an operation is <lb/>within an absent file system, that operation is not performed and the <lb/>error NFS4ERR_MOVED is returned, to indicate that the file system is <lb/>absent on the current server. <lb/>Because a GETFH cannot succeed if the current filehandle is within an <lb/>absent file system, filehandles within an absent file system cannot <lb/>be transferred to the client. When a client does have filehandles <lb/>within an absent file system, it is the result of obtaining them when <lb/>the file system was present, and having the file system become absent <lb/>subsequently. <lb/>It should be noted that because the check for the current filehandle <lb/>being within an absent file system happens at the start of every <lb/>operation, operations that change the current filehandle so that it <lb/>is within an absent file system will not result in an error. This <lb/>allows such combinations as PUTFH-GETATTR and LOOKUP-GETATTR to be <lb/>used to get attribute information, particularly location attribute <lb/>information, as discussed below. <lb/>The RECOMMENDED file system attribute fs_status can be used to <lb/>interrogate the present/absent status of a given file system. <lb/>11.4. Getting Attributes for an Absent File System <lb/>When a file system is absent, most attributes are not available, but <lb/>it is necessary to allow the client access to the small set of <lb/>attributes that are available, and most particularly those that give <lb/>information about the correct current locations for this file system: <lb/>fs_locations and fs_locations_info. <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 232] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>11.4.1. GETATTR within an Absent File System <lb/>As mentioned above, an exception is made for GETATTR in that <lb/>attributes may be obtained for a filehandle within an absent file <lb/>system. This exception only applies if the attribute mask contains <lb/>at least one attribute bit that indicates the client is interested in <lb/>a result regarding an absent file system: fs_locations, <lb/>fs_locations_info, or fs_status. If none of these attributes is <lb/>requested, GETATTR will result in an NFS4ERR_MOVED error. <lb/>When a GETATTR is done on an absent file system, the set of supported <lb/>attributes is very limited. Many attributes, including those that <lb/>are normally REQUIRED, will not be available on an absent file <lb/>system. In addition to the attributes mentioned above (fs_locations, <lb/>fs_locations_info, fs_status), the following attributes SHOULD be <lb/>available on absent file systems. In the case of RECOMMENDED <lb/>attributes, they should be available at least to the same degree that <lb/>they are available on present file systems. <lb/>change_policy: This attribute is useful for absent file systems and <lb/>can be helpful in summarizing to the client when any of the <lb/>location-related attributes change. <lb/>fsid: This attribute should be provided so that the client can <lb/>determine file system boundaries, including, in particular, the <lb/>boundary between present and absent file systems. This value must <lb/>be different from any other fsid on the current server and need <lb/>have no particular relationship to fsids on any particular <lb/>destination to which the client might be directed. <lb/>mounted_on_fileid: For objects at the top of an absent file system, <lb/>this attribute needs to be available. Since the fileid is within <lb/>the present parent file system, there should be no need to <lb/>reference the absent file system to provide this information. <lb/>Other attributes SHOULD NOT be made available for absent file <lb/>systems, even when it is possible to provide them. The server should <lb/>not assume that more information is always better and should avoid <lb/>gratuitously providing additional information. <lb/>When a GETATTR operation includes a bit mask for one of the <lb/>attributes fs_locations, fs_locations_info, or fs_status, but where <lb/>the bit mask includes attributes that are not supported, GETATTR will <lb/>not return an error, but will return the mask of the actual <lb/>attributes supported with the results. <lb/>Handling of VERIFY/NVERIFY is similar to GETATTR in that if the <lb/>attribute mask does not include fs_locations, fs_locations_info, or <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 233] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>fs_status, the error NFS4ERR_MOVED will result. It differs in that <lb/>any appearance in the attribute mask of an attribute not supported <lb/>for an absent file system (and note that this will include some <lb/>normally REQUIRED attributes) will also cause an NFS4ERR_MOVED <lb/>result. <lb/>11.4.2. READDIR and Absent File Systems <lb/>A READDIR performed when the current filehandle is within an absent <lb/>file system will result in an NFS4ERR_MOVED error, since, unlike the <lb/>case of GETATTR, no such exception is made for READDIR. <lb/>Attributes for an absent file system may be fetched via a READDIR for <lb/>a directory in a present file system, when that directory contains <lb/>the root directories of one or more absent file systems. In this <lb/>case, the handling is as follows: <lb/>o If the attribute set requested includes one of the attributes <lb/>fs_locations, fs_locations_info, or fs_status, then fetching of <lb/>attributes proceeds normally and no NFS4ERR_MOVED indication is <lb/>returned, even when the rdattr_error attribute is requested. <lb/>o If the attribute set requested does not include one of the <lb/>attributes fs_locations, fs_locations_info, or fs_status, then if <lb/>the rdattr_error attribute is requested, each directory entry for <lb/>the root of an absent file system will report NFS4ERR_MOVED as the <lb/>value of the rdattr_error attribute. <lb/>o If the attribute set requested does not include any of the <lb/>attributes fs_locations, fs_locations_info, fs_status, or <lb/>rdattr_error, then the occurrence of the root of an absent file <lb/>system within the directory will result in the READDIR failing <lb/>with an NFS4ERR_MOVED error. <lb/>o The unavailability of an attribute because of a file system's <lb/>absence, even one that is ordinarily REQUIRED, does not result in <lb/>any error indication. The set of attributes returned for the root <lb/>directory of the absent file system in that case is simply <lb/>restricted to those actually available. <lb/>11.5. Uses of File System Location Information <lb/>The file system location attributes (i.e. fs_locations and <lb/>fs_locations_info), together with the possibility of absent file <lb/>systems, provide a number of important facilities in providing <lb/>reliable, manageable, and scalable data access. <lb/>When a file system is present, these attributes can provide <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 234] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>o The locations of alternative replicas, to be used to access the <lb/>same data in the event of server failures, communications <lb/>problems, or other difficulties that make continued access to the <lb/>current replica impossible or otherwise impractical. Provision <lb/>and use of such alternate replicas is referred to as "replication" <lb/>and is discussed in Section 11.5.4 below. <lb/>o The network address(es) to be used to access the current file <lb/>system instance or replicas of it. Client use of this information <lb/>is discussed in Section 11.5.2 below. <lb/>Under some circumstances, multiple replicas may be used <lb/>simultaneously to provide higher-performance access to the file <lb/>system in question, although the lack of state sharing between <lb/>servers may be an impediment to such use. <lb/>When a file system is present and becomes absent, clients can be <lb/>given the opportunity to have continued access to their data, using a <lb/>different replica. In this case, a continued attempt to use the data <lb/>in the now-absent file system will result in an NFS4ERR_MOVED error <lb/>and, at that point, the successor replica or set of possible replica <lb/>choices can be fetched and used to continue access. Transfer of <lb/>access to the new replica location is referred to as "migration", and <lb/>is discussed in Section 11.5.4 below. <lb/>Where a file system had been absent, specification of file system <lb/>location provides a means by which file systems located on one server <lb/>can be associated with a namespace defined by another server, thus <lb/>allowing a general multi-server namespace facility. A designation of <lb/>such a remote instance, in place of a file system never previously <lb/>present, is called a "pure referral" and is discussed in <lb/>Section 11.5.6 below. <lb/>Because client support for attributes related to file system location <lb/>is OPTIONAL, a server may choose to take action to hide migration and <lb/>referral events from such clients, by acting as a proxy, for example. <lb/>The server can determine the presence of client support from the <lb/>arguments of the EXCHANGE_ID operation (see Section 18.35.3). <lb/>11.5.1. Combining Multiple Uses in a Single Attribute <lb/>A file system location attribute will sometimes contain information <lb/>relating to the location of multiple replicas which may be used in <lb/>different ways. <lb/>o File system location entries that relate to the file system <lb/>instance currently in use provide trunking information, allowing <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 235] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>the client to find additional network addresses by which the <lb/>instance may be accessed. <lb/>o File system location entries that provide information about <lb/>replicas to which access is to be transferred. <lb/>o Other file system location entries that relate to replicas that <lb/>are available to use in the event that access to the current <lb/>replica becomes unsatisfactory. <lb/>In order to simplify client handling and allow the best choice of <lb/>replicas to access, the server should adhere to the following <lb/>guidelines. <lb/>o All file system location entries that relate to a single file <lb/>system instance should be adjacent. <lb/>o File system location entries that relate to the instance currently <lb/>in use should appear first. <lb/>o File system location entries that relate to replica(s) to which <lb/>migration is occurring should appear before replicas which are <lb/>available for later use if the current replica should become <lb/>inaccessible. <lb/>11.5.2. File System Location Attributes and Trunking <lb/>Trunking is the use of multiple connections between a client and <lb/>server in order to increase the speed of data transfer. A client may <lb/>determine the set of network addresses to use to access a given file <lb/>system in a number of ways: <lb/>o When the name of the server is known to the client, it may use DNS <lb/>to obtain a set of network addresses to use in accessing the <lb/>server. <lb/>o The client may fetch the file system location attribute for the <lb/>file system. This will provide either the name of the server <lb/>(which can be turned into a set of network addresses using DNS), <lb/>or a set of server-trunkable location entries. Using the latter <lb/>alternative, the server can provide addresses it regards as <lb/>desirable to use to access the file system in question. <lb/>It should be noted that the client, when it fetches a location <lb/>attribute for a file system, may encounter multiple entries for a <lb/>number of reasons, so that, when determining trunking information, it <lb/>may have to bypass addresses not trunkable with one already known. <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 236] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>The server can provide location entries that include either names or <lb/>network addresses. It might use the latter form because of DNS-<lb/>related security concerns or because the set of addresses to be used <lb/>might require active management by the server. <lb/>Locations entries used to discover candidate addresses for use in <lb/>trunking are subject to change, as discussed in Section 11.5.7 below. <lb/>The client may respond to such changes by using additional addresses <lb/>once they are verified or by ceasing to use existing ones. The <lb/>server can force the client to cease using an address by returning <lb/>NFS4ERR_MOVED when that address is used to access a file system. <lb/>This allows a transfer of client access which is similar to <lb/>migration, although the same file system instance is accessed <lb/>throughout. <lb/>11.5.3. File System Location Attributes and Connection Type Selection <lb/>Because of the need to support multiple types of connections, clients <lb/>face the issue of determining the proper connection type to use when <lb/>establishing a connection to a given server network address. In some <lb/>cases, this issue can be addressed through the use of the connection <lb/>"step-up" facility described in Section 18.36. However, because <lb/>there are cases is which that facility is not available, the client <lb/>may have to choose a connection type with no possibility of changing <lb/>it within the scope of a single connection. <lb/>The two file system location attributes differ as to the information <lb/>made available in this regard. Fs_locations provides no information <lb/>to support connection type selection. As a result, clients <lb/>supporting multiple connection types would need to attempt to <lb/>establish connections using multiple connection types until the one <lb/>preferred by the client is successfully established. <lb/>Fs_locations_info includes a flag, FSLI4TF_RDMA, which, when set <lb/>indicates that RPC-over-RDMA support is available using the specified <lb/>location entry, by "stepping up" an existing TCP connection to <lb/>include support for RDMA operation. This flag makes it convenient <lb/>for a client wishing to use RDMA. When this flag is set, it can <lb/>establish a TCP connection and then convert that connection to use <lb/>RDMA by using the step-up facility. <lb/>Irrespective of the particular attribute used, when there is no <lb/>indication that a step-up operation can be performed, a client <lb/>supporting RDMA operation can establish a new RDMA connection and it <lb/>can be bound to the session already established by the TCP <lb/>connection, allowing the TCP connection to be dropped and the session <lb/>converted to further use in RDMA node. <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 237] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>11.5.4. File System Replication <lb/>The fs_locations and fs_locations_info attributes provide alternative <lb/>file system locations, to be used to access data in place of or in <lb/>addition to the current file system instance. On first access to a <lb/>file system, the client should obtain the set of alternate locations <lb/>by interrogating the fs_locations or fs_locations_info attribute, <lb/>with the latter being preferred. <lb/>In the event that the occurrence of server failures, communications <lb/>problems, or other difficulties make continued access to the current <lb/>file system impossible or otherwise impractical, the client can use <lb/>the alternate locations as a way to get continued access to its data. <lb/>The alternate locations may be physical replicas of the (typically <lb/>read-only) file system data, or they may provide for the use of <lb/>various forms of server clustering in which multiple servers provide <lb/>alternate ways of accessing the same physical file system. How these <lb/>different modes of file system transition are represented within the <lb/>fs_locations and fs_locations_info attributes and how the client <lb/>deals with file system transition issues will be discussed in detail <lb/>below. <lb/>11.5.5. File System Migration <lb/>When a file system is present and becomes absent, the NFSv4.1 <lb/>protocol provides a means by which clients can be given the <lb/>opportunity to have continued access to their data, using a different <lb/>replica. The location of this replica is specified by a file system <lb/>location attribute. The ensuing migration of access to another <lb/>replica includes the ability to retain locks across the transition, <lb/>either by using lock reclaim or by taking advantage of Transparent <lb/>State Migration. <lb/>Typically, a client will be accessing the file system in question, <lb/>get an NFS4ERR_MOVED error, and then use a file system location <lb/>attribute to determine the new location of the data. When <lb/>fs_locations_info is used, additional information will be available <lb/>that will define the nature of the client's handling of the <lb/>transition to a new server. <lb/>Such migration can be helpful in providing load balancing or general <lb/>resource reallocation. The protocol does not specify how the file <lb/>system will be moved between servers. It is anticipated that a <lb/>number of different server-to-server transfer mechanisms might be <lb/>used with the choice left to the server implementer. The NFSv4.1 <lb/>protocol specifies the method used to communicate the migration event <lb/>between client and server. <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 238] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>The new location may be, in the case of various forms of server <lb/>clustering, another server providing access to the same physical file <lb/>system. The client's responsibilities in dealing with this <lb/>transition will depend on whether migration has occurred and the <lb/>means the server has chosen to provide continuity of locking state. <lb/>These issues will be discussed in detail below. <lb/>Although a single successor location is typical, multiple locations <lb/>may be provided. When multiple locations are provided, the client <lb/>will typically use the first one provided. If that is inaccessible <lb/>for some reason, later ones can be used. In such cases the client <lb/>might consider that the transition to the new replica as a migration <lb/>event, even though some of the servers involved might not be aware of <lb/>the use of the server which was inaccessible. In such a case, a <lb/>client might lose access to locking state as a result of the access <lb/>transfer. <lb/>When an alternate location is designated as the target for migration, <lb/>it must designate the same data (with metadata being the same to the <lb/>degree indicated by the fs_locations_info attribute). Where file <lb/>systems are writable, a change made on the original file system must <lb/>be visible on all migration targets. Where a file system is not <lb/>writable but represents a read-only copy (possibly periodically <lb/>updated) of a writable file system, similar requirements apply to the <lb/>propagation of updates. Any change visible in the original file <lb/>system must already be effected on all migration targets, to avoid <lb/>any possibility that a client, in effecting a transition to the <lb/>migration target, will see any reversion in file system state. <lb/>11.5.6. Referrals <lb/>Referrals allow the server to associate a file system namespace entry <lb/>located on one server with a file system located on another server. <lb/>When this includes the use of pure referrals, servers are provided a <lb/>way of placing a file system in a location within the namespace <lb/>essentially without respect to its physical location on a particular <lb/>server. This allows a single server or a set of servers to present a <lb/>multi-server namespace that encompasses file systems located on a <lb/>wider range of servers. Some likely uses of this facility include <lb/>establishment of site-wide or organization-wide namespaces, with the <lb/>eventual possibility of combining such together into a truly global <lb/>namespace, such as the one provided by AFS (the Andrew File System) <lb/>[TBD: appropriate reference needed] <lb/>Referrals occur when a client determines, upon first referencing a <lb/>position in the current namespace, that it is part of a new file <lb/>system and that the file system is absent. When this occurs, <lb/>typically upon receiving the error NFS4ERR_MOVED, the actual location <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 239] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>or locations of the file system can be determined by fetching a <lb/>locations attribute. <lb/>The file system location attribute may designate a single file system <lb/>location or multiple file system locations, to be selected based on <lb/>the needs of the client. The server, in the fs_locations_info <lb/>attribute, may specify priorities to be associated with various file <lb/>system location choices. The server may assign different priorities <lb/>to different locations as reported to individual clients, in order to <lb/>adapt to client physical location or to effect load balancing. When <lb/>both read-only and read-write file systems are present, some of the <lb/>read-only locations might not be absolutely up-to-date (as they would <lb/>have to be in the case of replication and migration). Servers may <lb/>also specify file system locations that include client-substituted <lb/>variables so that different clients are referred to different file <lb/>systems (with different data contents) based on client attributes <lb/>such as CPU architecture. <lb/>When the fs_locations_info attribute is such that that there are <lb/>multiple possible targets listed, the relationships among them may be <lb/>important to the client in selecting which one to use. The same <lb/>rules specified in Section 11.5.5 below regarding multiple migration <lb/>targets apply to these multiple replicas as well. For example, the <lb/>client might prefer a writable target on a server that has additional <lb/>writable replicas to which it subsequently might switch. Note that, <lb/>as distinguished from the case of replication, there is no need to <lb/>deal with the case of propagation of updates made by the current <lb/>client, since the current client has not accessed the file system in <lb/>question. <lb/>Use of multi-server namespaces is enabled by NFSv4.1 but is not <lb/>required. The use of multi-server namespaces and their scope will <lb/>depend on the applications used and system administration <lb/>preferences. <lb/>Multi-server namespaces can be established by a single server <lb/>providing a large set of pure referrals to all of the included file <lb/>systems. Alternatively, a single multi-server namespace may be <lb/>administratively segmented with separate referral file systems (on <lb/>separate servers) for each separately administered portion of the <lb/>namespace. The top-level referral file system or any segment may use <lb/>replicated referral file systems for higher availability. <lb/>Generally, multi-server namespaces are for the most part uniform, in <lb/>that the same data made available to one client at a given location <lb/>in the namespace is made available to all clients at that namespace <lb/>location. However, there are facilities provided that allow <lb/>different clients to be directed to different sets of data, for <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 240] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>reasons such as enabling adaptation to such client characteristics as <lb/>CPU architecture. These facilities are described in Section 11.16.3. <lb/>Note that it is possible, when providing a uniform namespace, to <lb/>provide diffeent location entries to diffeent clients, in order to <lb/>provide each client with a copy of the data physically closest to it, <lb/>or otherwise optimize access (e.g. provide load balancing). <lb/>11.5.7. Changes in a File System Location Attribute <lb/>Although clients will typically fetch a file system location <lb/>attribute when first accessing a file system and when NFS4ERR_MOVED <lb/>is returned, a client can choose to fetch the attribute periodically, <lb/>in which case the value fetched may change over time. <lb/>For clients not prepared to access multiple replicas simultaneously <lb/>(see Section 11.10.1), the handling of the various cases of location <lb/>change are as follows: <lb/>o Changes in the list of replicas or in the network addresses <lb/>associated with replicas do not require immediate action. The <lb/>client will typically update its list of replicas to reflect the <lb/>new information. <lb/>o Additions to the list of network addresses for the current file <lb/>system instance need not be acted on promptly. However, to <lb/>prepare for the case in which a migration event occurs <lb/>subsequently, the client can choose to take note of the new <lb/>address and then use it whenever it needs to switch access to a <lb/>new replica. <lb/>o Deletions from the list of network addresses for the current file <lb/>system instance need not be acted on immediately, although the <lb/>client might need to be prepared for a shift in access whenever <lb/>the server indicates that a network access path is not usable to <lb/>access the current file system, by returning NFS4ERR_MOVED. <lb/>For clients that are prepared to access several replicas <lb/>simultaneously, the following additional cases need to be addressed. <lb/>As in the cases discussed above, changes in the set of replicas need <lb/>not be acted upon promptly, although the client has the option of <lb/>adjusting its access even in the absence of difficulties that would <lb/>lead to a new replica to be selected. <lb/>o When a new replica is added which may be accessed simultaneously <lb/>with one currently in use, the client is free to use the new <lb/>replica immediately. <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 241] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>o When a replica currently in use is deleted from the list, the <lb/>client need not cease using it immediately. However, since the <lb/>server may subsequently force such use to cease (by returning <lb/>NFS4ERR_MOVED), clients might decide to limit the need for later <lb/>state transfer. For example, new opens might be done on other <lb/>replicas, rather than on one not present in the list. <lb/>11.6. Users and Groups in a Multi-server Namespace <lb/>As in the case of a single-server environment (see Section 5.9, when <lb/>an owner or group name of the form "id@domain" is assigned to a file, <lb/>there is an implcit promise to return that same string when the <lb/>corresponding attribute is interrogated subsequently. In the case of <lb/>a multi-server namespace, that same promise applies even if server <lb/>boundaries have been crossed. Similarly, when the owner attribute of <lb/>a file is derived from the securiy principal which created the file, <lb/>that attribute should have the same value even if the interrogation <lb/>occurs on a different server from the file creation. <lb/>Similarly, the set of security principals recognized by all the <lb/>participating servers needs to be the same, with each such principal <lb/>having the same credentials, regardless of the particular server <lb/>being accessed. <lb/>In order to meet these requirements, those setting up multi-server <lb/>namespaces will need to limit the servers included so that: <lb/>o In all cases in which more than a single domain is supported, the <lb/>requirements stated in RFC8000 [30] are to be respected. <lb/>o All servers support a common set of domains which includes all of <lb/>the domains clients use and expect to see returned as the domain <lb/>portion of an owner or group in the form "id@domain". Note that <lb/>although this set most ofen consists of a single domain, it is <lb/>possible for mutiple domains to be supported. <lb/>o All servers, for each domain that they support, accept the same <lb/>set of user and group ids as valid. <lb/>o All servers recognize the same set of security principals, and <lb/>each principal, the same credential are required, independent of <lb/>the server being accessed. In addition, the group membership for <lb/>each such prinicipal is to be the same, independent of the server <lb/>accessed. <lb/>Note that there is no requirment that the users corresponding to <lb/>particular security principals have the same local representation on <lb/>each server, even though it is most often the case that this is so. <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 242] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>When AUTH_SYS is used, with or without the use of stringified owners <lb/>and groups, the following additional requirements must be met: <lb/>o Only a single NFSv4 domain can be supported. <lb/>o The "local" representation of all owners and groups must be the <lb/>same on all servers. The word "local" is used here since that is <lb/>the way that numeric user and group ids are described in <lb/>Section 5.9. However, when AUTH_SYS or stringified owners or <lb/>group are used, these identifiers are not truly local, since they <lb/>are known tothe clients as well as the server. <lb/>11.7. Additional Client-Side Considerations <lb/>When clients make use of servers that implement referrals, <lb/>replication, and migration, care should be taken that a user who <lb/>mounts a given file system that includes a referral or a relocated <lb/>file system continues to see a coherent picture of that user-side <lb/>file system despite the fact that it contains a number of server-side <lb/>file systems that may be on different servers. <lb/>One important issue is upward navigation from the root of a server-<lb/>side file system to its parent (specified as ".." in UNIX), in the <lb/>case in which it transitions to that file system as a result of <lb/>referral, migration, or a transition as a result of replication. <lb/>When the client is at such a point, and it needs to ascend to the <lb/>parent, it must go back to the parent as seen within the multi-server <lb/>namespace rather than sending a LOOKUPP operation to the server, <lb/>which would result in the parent within that server's single-server <lb/>namespace. In order to do this, the client needs to remember the <lb/>filehandles that represent such file system roots and use these <lb/>instead of sending a LOOKUPP operation to the current server. This <lb/>will allow the client to present to applications a consistent <lb/>namespace, where upward navigation and downward navigation are <lb/>consistent. <lb/>Another issue concerns refresh of referral locations. When referrals <lb/>are used extensively, they may change as server configurations <lb/>change. It is expected that clients will cache information related <lb/>to traversing referrals so that future client-side requests are <lb/>resolved locally without server communication. This is usually <lb/>rooted in client-side name look up caching. Clients should <lb/>periodically purge this data for referral points in order to detect <lb/>changes in location information. When the change_policy attribute <lb/>changes for directories that hold referral entries or for the <lb/>referral entries themselves, clients should consider any associated <lb/>cached referral information to be out of date. <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 243] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>11.8. Overview of File Access Transitions <lb/>File access transitions are of two types: <lb/>o Those that involve a transition from accessing the current replica <lb/>to another one in connection with either replication or migration. <lb/>How these are dealt with is discussed in Section 11.10. <lb/>o Those in which access to the current file system instance is <lb/>retained, while the network path used to access that instance is <lb/>changed. This case is discussed in Section 11.9. <lb/>11.9. Effecting Network Endpoint Transitions <lb/>The endpoints used to access a particular file system instance may <lb/>change in a number of ways, as listed below. In each of these cases, <lb/>the same fsid, filehandles, stateids, client IDs and sessions are <lb/>used to continue access, with a continuity of lock state. <lb/>o When use of a particular address is to cease and there is also one <lb/>currently in use which is server-trunkable with it, requests that <lb/>would have been issued on the address whose use is to be <lb/>discontinued can be issued on the remaining address(es). When an <lb/>address is not a session-trunkable one, the request might need to <lb/>be modified to reflect the fact that a different session will be <lb/>used. <lb/>o When use of a particular connection is to cease, as indicated by <lb/>receiving NFS4ERR_MOVED when using that connection but that <lb/>address is still indicated as accessible according to the <lb/>appropriate file system location entries, it is likely that <lb/>requests can be issued on a new connection of a different <lb/>connection type, once that connection is established. Since any <lb/>two server endpoints that share a network address are inherently <lb/>session-trunkable, the client can use BIND_CONN_TO_SESSION to <lb/>access the existing session using the new connection and proceed <lb/>to access the file system using the new connection. <lb/>o When there are no potential replacement addresses in use but there <lb/>are valid addresses session-trunkable with the one whose use is to <lb/>be discontinued, the client can use BIND_CONN_TO_SESSION to access <lb/>the existing session using the new address. Although the target <lb/>session will generally be accessible, there may be cases in which <lb/>that session is no longer accessible. In this case, the client <lb/>can create a new session to enable continued access to the <lb/>existing instance and provide for use of existing filehandles, <lb/>stateids, and client ids while providing continuity of locking <lb/>state. <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 244] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>o When there is no potential replacement address in use and there <lb/>are no valid addresses session-trunkable with the one whose use is <lb/>to be discontinued, other server-trunkable addresses may be used <lb/>to provide continued access. Although use of CREATE_SESSION is <lb/>available to provide continued access to the existing instance, <lb/>servers have the option of providing continued access to the <lb/>existing session through the new network access path in a fashion <lb/>similar to that provided by session migration (see Section 11.11). <lb/>To take advantage of this possibility, clients can perform an <lb/>initial BIND_CONN_TO_SESSION, as in the previous case, and use <lb/>CREATE_SESSION only if that fails. <lb/>11.10. Effecting File System Transitions <lb/>There are a range of situations in which there is a change to be <lb/>effected in the set of replicas used to access a particular file <lb/>system. Some of these may involve an expansion or contraction of the <lb/>set of replicas used as discussed in Section 11.10.1 below. <lb/>For reasons explained in that section, most transitions will involve <lb/>a transition from a single replica to a corresponding replacement <lb/>replica. When effecting replica transition, some types of sharing <lb/>between the replicas may affect handling of the transition as <lb/>described in Sections 11.10.2 through 11.10.8 below. The attribute <lb/>fs_locations_info provides helpful information to allow the client to <lb/>determine the degree of inter-replica sharing. <lb/>With regard to some types of state, the degree of continuity across <lb/>the transition depends on the occasion prompting the transition, with <lb/>transitions initiated by the servers (i.e. migration) offering much <lb/>more scope for a non-disruptive transition than cases in which the <lb/>client on its own shifts its access to another replica (i.e. <lb/>replication). This issue potentially applies to locking state and to <lb/>session state, which are dealt with below as follows: <lb/>o An introduction to the possible means of providing continuity in <lb/>these areas appears in Section 11.10.9 below. <lb/>o Transparent State Migration is introduced in Section 11.11. The <lb/>possible transfer of session state is addressed there as well. <lb/>o The client handling of transitions, including determining how to <lb/>deal with the various means that the server might take to supply <lb/>effective continuity of locking state is discussed in <lb/>Section 11.12. <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 245] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>o The servers' (source and destination) responsibilities in <lb/>effecting Transparent Migration of locking and session state are <lb/>discussed in Section 11.13. <lb/>11.10.1. File System Transitions and Simultaneous Access <lb/>The fs_locations_info attribute (described in Section 11.16) may <lb/>indicate that two replicas may be used simultaneously, (see <lb/>Section 11.7.2.1 of RFC5661 [60] for details). Although situations <lb/>in which multiple replicas may be accessed simultaneously are <lb/>somewhat similar to those in which a single replica is accessed by <lb/>multiple network addresses, there are important differences, since <lb/>locking state is not shared among multiple replicas. <lb/>Because of this difference in state handling, many clients will not <lb/>have the ability to take advantage of the fact that such replicas <lb/>represent the same data. Such clients will not be prepared to use <lb/>multiple replicas simultaneously but will access each file system <lb/>using only a single replica, although the replica selected might make <lb/>multiple server-trunkable addresses available. <lb/>Clients who are prepared to use multiple replicas simultaneously will <lb/>divide opens among replicas however they choose. Once that choice is <lb/>made, any subsequent transitions will treat the set of locking state <lb/>associated with each replica as a single entity. <lb/>For example, if one of the replicas become unavailable, access will <lb/>be transferred to a different replica, also capable of simultaneous <lb/>access with the one still in use. <lb/>When there is no such replica, the transition may be to the replica <lb/>already in use. At this point, the client has a choice between <lb/>merging the locking state for the two replicas under the aegis of the <lb/>sole replica in use or treating these separately, until another <lb/>replica capable of simultaneous access presents itself. <lb/>11.10.2. Filehandles and File System Transitions <lb/>There are a number of ways in which filehandles can be handled across <lb/>a file system transition. These can be divided into two broad <lb/>classes depending upon whether the two file systems across which the <lb/>transition happens share sufficient state to effect some sort of <lb/>continuity of file system handling. <lb/>When there is no such cooperation in filehandle assignment, the two <lb/>file systems are reported as being in different handle classes. In <lb/>this case, all filehandles are assumed to expire as part of the file <lb/>system transition. Note that this behavior does not depend on the <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 246] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>fh_expire_type attribute and supersedes the specification of the <lb/>FH4_VOL_MIGRATION bit, which only affects behavior when <lb/>fs_locations_info is not available. <lb/>When there is cooperation in filehandle assignment, the two file <lb/>systems are reported as being in the same handle classes. In this <lb/>case, persistent filehandles remain valid after the file system <lb/>transition, while volatile filehandles (excluding those that are only <lb/>volatile due to the FH4_VOL_MIGRATION bit) are subject to expiration <lb/>on the target server. <lb/>11.10.3. Fileids and File System Transitions <lb/>In NFSv4.0, the issue of continuity of fileids in the event of a file <lb/>system transition was not addressed. The general expectation had <lb/>been that in situations in which the two file system instances are <lb/>created by a single vendor using some sort of file system image copy, <lb/>fileids would be consistent across the transition, while in the <lb/>analogous multi-vendor transitions they would not. This poses <lb/>difficulties, especially for the client without special knowledge of <lb/>the transition mechanisms adopted by the server. Note that although <lb/>fileid is not a REQUIRED attribute, many servers support fileids and <lb/>many clients provide APIs that depend on fileids. <lb/>It is important to note that while clients themselves may have no <lb/>trouble with a fileid changing as a result of a file system <lb/>transition event, applications do typically have access to the fileid <lb/>(e.g., via stat). The result is that an application may work <lb/>perfectly well if there is no file system instance transition or if <lb/>any such transition is among instances created by a single vendor, <lb/>yet be unable to deal with the situation in which a multi-vendor <lb/>transition occurs at the wrong time. <lb/>Providing the same fileids in a multi-vendor (multiple server <lb/>vendors) environment has generally been held to be quite difficult. <lb/>While there is work to be done, it needs to be pointed out that this <lb/>difficulty is partly self-imposed. Servers have typically identified <lb/>fileid with inode number, i.e. with a quantity used to find the file <lb/>in question. This identification poses special difficulties for <lb/>migration of a file system between vendors where assigning the same <lb/>index to a given file may not be possible. Note here that a fileid <lb/>is not required to be useful to find the file in question, only that <lb/>it is unique within the given file system. Servers prepared to <lb/>accept a fileid as a single piece of metadata and store it apart from <lb/>the value used to index the file information can relatively easily <lb/>maintain a fileid value across a migration event, allowing a truly <lb/>transparent migration event. <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 247] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>In any case, where servers can provide continuity of fileids, they <lb/>should, and the client should be able to find out that such <lb/>continuity is available and take appropriate action. Information <lb/>about the continuity (or lack thereof) of fileids across a file <lb/>system transition is represented by specifying whether the file <lb/>systems in question are of the same fileid class. <lb/>Note that when consistent fileids do not exist across a transition <lb/>(either because there is no continuity of fileids or because fileid <lb/>is not a supported attribute on one of instances involved), and there <lb/>are no reliable filehandles across a transition event (either because <lb/>there is no filehandle continuity or because the filehandles are <lb/>volatile), the client is in a position where it cannot verify that <lb/>files it was accessing before the transition are the same objects. <lb/>It is forced to assume that no object has been renamed, and, unless <lb/>there are guarantees that provide this (e.g., the file system is <lb/>read-only), problems for applications may occur. Therefore, use of <lb/>such configurations should be limited to situations where the <lb/>problems that this may cause can be tolerated. <lb/>11.10.4. Fsids and File System Transitions <lb/>Since fsids are generally only unique on a per-server basis, it is <lb/>likely that they will change during a file system transition. <lb/>Clients should not make the fsids received from the server visible to <lb/>applications since they may not be globally unique, and because they <lb/>may change during a file system transition event. Applications are <lb/>best served if they are isolated from such transitions to the extent <lb/>possible. <lb/>Although normally a single source file system will transition to a <lb/>single target file system, there is a provision for splitting a <lb/>single source file system into multiple target file systems, by <lb/>specifying the FSLI4F_MULTI_FS flag. <lb/>11.10.4.1. File System Splitting <lb/>When a file system transition is made and the fs_locations_info <lb/>indicates that the file system in question might be split into <lb/>multiple file systems (via the FSLI4F_MULTI_FS flag), the client <lb/>SHOULD do GETATTRs to determine the fsid attribute on all known <lb/>objects within the file system undergoing transition to determine the <lb/>new file system boundaries. <lb/>Clients might choose to maintain the fsids passed to existing <lb/>applications by mapping all of the fsids for the descendant file <lb/>systems to the common fsid used for the original file system. <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 248] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>Splitting a file system can be done on a transition between file <lb/>systems of the same fileid class, since the fact that fileids are <lb/>unique within the source file system ensure they will be unique in <lb/>each of the target file systems. <lb/>11.10.5. The Change Attribute and File System Transitions <lb/>Since the change attribute is defined as a server-specific one, <lb/>change attributes fetched from one server are normally presumed to be <lb/>invalid on another server. Such a presumption is troublesome since <lb/>it would invalidate all cached change attributes, requiring <lb/>refetching. Even more disruptive, the absence of any assured <lb/>continuity for the change attribute means that even if the same value <lb/>is retrieved on refetch, no conclusions can be drawn as to whether <lb/>the object in question has changed. The identical change attribute <lb/>could be merely an artifact of a modified file with a different <lb/>change attribute construction algorithm, with that new algorithm just <lb/>happening to result in an identical change value. <lb/>When the two file systems have consistent change attribute formats, <lb/>and this fact is communicated to the client by reporting in the same <lb/>change class, the client may assume a continuity of change attribute <lb/>construction and handle this situation just as it would be handled <lb/>without any file system transition. <lb/>11.10.6. Write Verifiers and File System Transitions <lb/>In a file system transition, the two file systems might be clustered <lb/>in the handling of unstably written data. When this is the case, and <lb/>the two file systems belong to the same write-verifier class, write <lb/>verifiers returned from one system may be compared to those returned <lb/>by the other and superfluous writes avoided. <lb/>When two file systems belong to different write-verifier classes, any <lb/>verifier generated by one must not be compared to one provided by the <lb/>other. Instead, the two verifiers should be treated as not equal <lb/>even when the values are identical. <lb/>11.10.7. Readdir Cookies and Verifiers and File System Transitions <lb/>In a file system transition, the two file systems might be consistent <lb/>in their handling of READDIR cookies and verifiers. When this is the <lb/>case, and the two file systems belong to the same readdir class, <lb/>READDIR cookies and verifiers from one system may be recognized by <lb/>the other and READDIR operations started on one server may be validly <lb/>continued on the other, simply by presenting the cookie and verifier <lb/>returned by a READDIR operation done on the first file system to the <lb/>second. <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 249] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>When two file systems belong to different readdir classes, any <lb/>READDIR cookie and verifier generated by one is not valid on the <lb/>second, and must not be presented to that server by the client. The <lb/>client should act as if the verifier was rejected. <lb/>11.10.8. File System Data and File System Transitions <lb/>When multiple replicas exist and are used simultaneously or in <lb/>succession by a client, applications using them will normally expect <lb/>that they contain either the same data or data that is consistent <lb/>with the normal sorts of changes that are made by other clients <lb/>updating the data of the file system (with metadata being the same to <lb/>the degree indicated by the fs_locations_info attribute). However, <lb/>when multiple file systems are presented as replicas of one another, <lb/>the precise relationship between the data of one and the data of <lb/>another is not, as a general matter, specified by the NFSv4.1 <lb/>protocol. It is quite possible to present as replicas file systems <lb/>where the data of those file systems is sufficiently different that <lb/>some applications have problems dealing with the transition between <lb/>replicas. The namespace will typically be constructed so that <lb/>applications can choose an appropriate level of support, so that in <lb/>one position in the namespace a varied set of replicas will be <lb/>listed, while in another only those that are up-to-date may be <lb/>considered replicas. The protocol does define three special cases of <lb/>the relationship among replicas to be specified by the server and <lb/>relied upon by clients: <lb/>o When multiple replicas exist and are used simultaneously by a <lb/>client (see the FSLIB4_CLSIMUL definition within <lb/>fs_locations_info), they must designate the same data. Where file <lb/>systems are writable, a change made on one instance must be <lb/>visible on all instances, immediately upon the earlier of the <lb/>return of the modifying requester or the visibility of that change <lb/>on any of the associated replicas. This allows a client to use <lb/>these replicas simultaneously without any special adaptation to <lb/>the fact that there are multiple replicas, beyond adapting to the <lb/>fact that locks obtained on one replica are maintained separately <lb/>(i.e. under a different client ID). In this case, locks (whether <lb/>share reservations or byte-range locks) and delegations obtained <lb/>on one replica are immediately reflected on all replicas, in the <lb/>sense that access from all other servers is prevented regardless <lb/>of the replica used. However, because the servers are not <lb/>required to treat two associated client IDs as representing the <lb/>same client, it is best to access each file using only a single <lb/>client ID. <lb/>o When one replica is designated as the successor instance to <lb/>another existing instance after return NFS4ERR_MOVED (i.e., the <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 250] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>case of migration), the client may depend on the fact that all <lb/>changes written to stable storage on the original instance are <lb/>written to stable storage of the successor (uncommitted writes are <lb/>dealt with in Section 11.10.6 above). <lb/>o Where a file system is not writable but represents a read-only <lb/>copy (possibly periodically updated) of a writable file system, <lb/>clients have similar requirements with regard to the propagation <lb/>of updates. They may need a guarantee that any change visible on <lb/>the original file system instance must be immediately visible on <lb/>any replica before the client transitions access to that replica, <lb/>in order to avoid any possibility that a client, in effecting a <lb/>transition to a replica, will see any reversion in file system <lb/>state. The specific means of this guarantee varies based on the <lb/>value of the fss_type field that is reported as part of the <lb/>fs_status attribute (see Section 11.17). Since these file systems <lb/>are presumed to be unsuitable for simultaneous use, there is no <lb/>specification of how locking is handled; in general, locks <lb/>obtained on one file system will be separate from those on others. <lb/>Since these are expected to be read-only file systems, this is not <lb/>likely to pose an issue for clients or applications. <lb/>11.10.9. Lock State and File System Transitions <lb/>While accessing a file system, clients obtain locks enforced by the <lb/>server which may prevent actions by other clients that are <lb/>inconsistent with those locks. <lb/>When access is transferred between replicas, clients need to be <lb/>assured that the actions disallowed by holding these locks cannot <lb/>have occurred during the transition. This can be ensured by the <lb/>methods below. Unless at least one of these is implemented, clients <lb/>will not be assured of continuity of lock possession across a <lb/>migration event. <lb/>o Providing the client an opportunity to re-obtain his locks via a <lb/>per-fs grace period on the destination server. Because the lock <lb/>reclaim mechanism was originally defined to support server reboot, <lb/>it implicitly assumes that file handles will on reclaim will be <lb/>the same as those at open. In the case of migration, this <lb/>requires that source and destination servers use the same <lb/>filehandles, as evidenced by using the same server scope (see <lb/>Section 2.10.4) or by showing this agreement using <lb/>fs_locations_info (see Section 11.10.2 above). <lb/>o Locking state can be transferred as part of the transition by <lb/>providing Transparent State Migration as described in <lb/>Section 11.11. <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 251] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>Of these, Transparent State Migration provides the smoother <lb/>experience for clients in that there is no grace-period-based delay <lb/>before new locks can be obtained. However, it requires a greater <lb/>degree of inter-server co-ordination. In general, the servers taking <lb/>part in migration are free to provide either facility. However, when <lb/>the filehandles can differ across the migration event, Transparent <lb/>State Migration is the only available means of providing the needed <lb/>functionality. <lb/>It should be noted that these two methods are not mutually exclusive <lb/>and that a server might well provide both. In particular, if there <lb/>is some circumstance preventing a specific lock from being <lb/>transferred transparently, the destination server can allow it to be <lb/>reclaimed, by implementing a per-fs grace period for the migrated <lb/>file system. <lb/>11.10.9.1. Leases and File System Transitions <lb/>In the case of lease renewal, the client may not be submitting <lb/>requests for a file system that has been transferred to another <lb/>server. This can occur because of the lease renewal mechanism. The <lb/>client renews the lease associated with all file systems when <lb/>submitting a request on an associated session, regardless of the <lb/>specific file system being referenced. <lb/>In order for the client to schedule renewal of its lease where there <lb/>is locking state that may have been relocated to the new server, the <lb/>client must find out about lease relocation before that lease expire. <lb/>To accomplish this, the SEQUENCE operation will return the status bit <lb/>SEQ4_STATUS_LEASE_MOVED if responsibility for any of the renewed <lb/>locking state has been transferred to a new server. This will <lb/>continue until the client receives an NFS4ERR_MOVED error for each of <lb/>the file systems for which there has been locking state relocation. <lb/>When a client receives an SEQ4_STATUS_LEASE_MOVED indication from a <lb/>server, for each file system of the server for which the client has <lb/>locking state, the client should perform an operation. For <lb/>simplicity, the client may choose to reference all file systems, but <lb/>what is important is that it must reference all file systems for <lb/>which there was locking state where that state has moved. Once the <lb/>client receives an NFS4ERR_MOVED error for each such file system, the <lb/>server will clear the SEQ4_STATUS_LEASE_MOVED indication. The client <lb/>can terminate the process of checking file systems once this <lb/>indication is cleared (but only if the client has received a reply <lb/>for all outstanding SEQUENCE requests on all sessions it has with the <lb/>server), since there are no others for which locking state has moved. <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 252] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>A client may use GETATTR of the fs_status (or fs_locations_info) <lb/>attribute on all of the file systems to get absence indications in a <lb/>single (or a few) request(s), since absent file systems will not <lb/>cause an error in this context. However, it still must do an <lb/>operation that receives NFS4ERR_MOVED on each file system, in order <lb/>to clear the SEQ4_STATUS_LEASE_MOVED indication. <lb/>Once the set of file systems with transferred locking state has been <lb/>determined, the client can follow the normal process to obtain the <lb/>new server information (through the fs_locations and <lb/>fs_locations_info attributes) and perform renewal of that lease on <lb/>the new server, unless information in the fs_locations_info attribute <lb/>shows that no state could have been transferred. If the server has <lb/>not had state transferred to it transparently, the client will <lb/>receive NFS4ERR_STALE_CLIENTID from the new server, as described <lb/>above, and the client can then reclaim locks as is done in the event <lb/>of server failure. <lb/>11.10.9.2. Transitions and the Lease_time Attribute <lb/>In order that the client may appropriately manage its lease in the <lb/>case of a file system transition, the destination server must <lb/>establish proper values for the lease_time attribute. <lb/>When state is transferred transparently, that state should include <lb/>the correct value of the lease_time attribute. The lease_time <lb/>attribute on the destination server must never be less than that on <lb/>the source, since this would result in premature expiration of a <lb/>lease granted by the source server. Upon transitions in which state <lb/>is transferred transparently, the client is under no obligation to <lb/>refetch the lease_time attribute and may continue to use the value <lb/>previously fetched (on the source server). <lb/>If state has not been transferred transparently, either because the <lb/>associated servers are shown as having different eir_server_scope <lb/>strings or because the client ID is rejected when presented to the <lb/>new server, the client should fetch the value of lease_time on the <lb/>new (i.e., destination) server, and use it for subsequent locking <lb/>requests. However, the server must respect a grace period of at <lb/>least as long as the lease_time on the source server, in order to <lb/>ensure that clients have ample time to reclaim their lock before <lb/>potentially conflicting non-reclaimed locks are granted. <lb/>11.11. Transferring State upon Migration <lb/>When the transition is a result of a server-initiated decision to <lb/>transition access and the source and destination servers have <lb/>implemented appropriate co-operation, it is possible to: <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 253] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>o Transfer locking state from the source to the destination server, <lb/>in a fashion similar to that provided by Transparent State <lb/>Migration in NFSv4.0, as described in [63]. Server <lb/>responsibilities are described in Section 11.13.2. <lb/>o Transfer session state from the source to the destination server. <lb/>Server responsibilities in effecting such a transfer are described <lb/>in Section 11.13.3. <lb/>The means by which the client determines which of these transfer <lb/>events has occurred are described in Section 11.12. <lb/>11.11.1. Transparent State Migration and pNFS <lb/>When pNFS is involved, the protocol is capable of supporting: <lb/>o Migration of the Metadata Server (MDS), leaving the Data Servers <lb/>(DS's) in place. <lb/>o Migration of the file system as a whole, including the MDS and <lb/>associated DS's. <lb/>o Replacement of one DS by another. <lb/>o Migration of a pNFS file system to one in which pNFS is not used. <lb/>o Migration of a file system not using pNFS to one in which layouts <lb/>are available. <lb/>Note that migration per se is only involved in the transfer of the <lb/>MDS function. Although the servicing of a layout may be transferred <lb/>from one data server to another, this not done using the file system <lb/>location attributes. The MDS can effect such transfers by recalling/ <lb/>revoking existing layouts and granting new ones on a different data <lb/>server. <lb/>Migration of the MDS function is directly supported by Transparent <lb/>State Migration. Layout state will normally be transparently <lb/>transferred, just as other state is. As a result, Transparent State <lb/>Migration provides a framework in which, given appropriate inter-MDS <lb/>data transfer, one MDS can be substituted for another. <lb/>Migration of the file system function as a whole can be accomplished <lb/>by recalling all layouts as part of the initial phase of the <lb/>migration process. As a result, IO will be done through the MDS <lb/>during the migration process, and new layouts can be granted once the <lb/>client is interacting with the new MDS. An MDS can also effect this <lb/>sort of transition by revoking all layouts as part of Transparent <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 254] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>State Migration, as long as the client is notified about the loss of <lb/>locking state. <lb/>In order to allow migration to a file system on which pNFS is not <lb/>supported, clients need to be prepared for a situation in which <lb/>layouts are not available or supported on the destination file system <lb/>and so direct IO requests to the destination server, rather than <lb/>depending on layouts being available. <lb/>Replacement of one DS by another is not addressed by migration as <lb/>such but can be effected by an MDS recalling layouts for the DS to be <lb/>replaced and issuing new ones to be served by the successor DS. <lb/>Migration may transfer a file system from a server which does not <lb/>support pNFS to one which does. In order to properly adapt to this <lb/>situation, clients which support pNFS, but function adequately in its <lb/>absence should check for pNFS support when a file system is migrated <lb/>and be prepared to use pNFS when support is available on the <lb/>destination. <lb/>11.12. Client Responsibilities when Access is Transitioned <lb/>For a client to respond to an access transition, it must become aware <lb/>of it. The ways in which this can happen are discussed in <lb/>Section 11.12.1 which discusses indications that a specific file <lb/>system access path has transitioned as well as situations in which <lb/>additional activity is necessary to determine the set of file systems <lb/>that have been migrated. Section 11.12.2 goes on to complete the <lb/>discussion of how the set of migrated file systems might be <lb/>determined. Sections 11.12.3 through 11.12.5 discuss how the client <lb/>should deal with each transition it becomes aware of, either directly <lb/>or as a result of migration discovery. <lb/>The following terms are used to describe client activities: <lb/>o "Transition recovery" refers to the process of restoring access to <lb/>a file system on which NFS4ERR_MOVED was received. <lb/>o "Migration recovery" to that subset of transition recovery which <lb/>applies when the file system has migrated to a different replica. <lb/>o "Migration discovery" refers to the process of determining which <lb/>file system(s) have been migrated. It is necessary to avoid a <lb/>situation in which leases could expire when a file system is not <lb/>accessed for a long period of time, since a client unaware of the <lb/>migration might be referencing an unmigrated file system and not <lb/>renewing the lease associated with the migrated file system. <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 255] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>11.12.1. Client Transition Notifications <lb/>When there is a change in the network access path which a client is <lb/>to use to access a file system, there are a number of related status <lb/>indications with which clients need to deal: <lb/>o If an attempt is made to use or return a filehandle within a file <lb/>system that is no longer accessible at the address previously used <lb/>to access it, the error NFS4ERR_MOVED is returned. <lb/>Exceptions are made to allow such file handles to be used when <lb/>interrogating a file system location attribute. This enables a <lb/>client to determine a new replica's location or a new network <lb/>access path. <lb/>This condition continues on subsequent attempts to access the file <lb/>system in question. The only way the client can avoid the error <lb/>is to cease accessing the file system in question at its old <lb/>server location and access it instead using a different address at <lb/>which it is now available. <lb/>o Whenever a SEQUENCE operation is sent by a client to a server <lb/>which generated state held on that client which is associated with <lb/>a file system that is no longer accessible on the server at which <lb/>it was previously available, the response will contain a lease-<lb/>migrated indication, with the SEQ4_STATUS_LEASE_MOVED status bit <lb/>being set. <lb/>This condition continues until the client acknowledges the <lb/>notification by fetching a file system location attribute for the <lb/>file system whose network access path is being changed. When <lb/>there are multiple such file systems, a location attribute for <lb/>each such file system needs to be fetched. The location attribute <lb/>for all migrated file system needs to be fetched in order to clear <lb/>the condition. Even after the condition is cleared, the client <lb/>needs to respond by using the location information to access the <lb/>file system at its new location to ensure that leases are not <lb/>needlessly expired. <lb/>Unlike the case of NFSv4.0, in which the corresponding conditions are <lb/>both errors and thus mutually exclusive, in NFSv4.1 the client can, <lb/>and often will, receive both indications on the same request. As a <lb/>result, implementations need to address the question of how to co-<lb/>ordinate the necessary recovery actions when both indications arrive <lb/>in the response to the same request. It should be noted that when <lb/>processing an NFSv4 COMPOUND, the server will normally decide whether <lb/>SEQ4_STATUS_LEASE_MOVED is to be set before it determines which file <lb/>system will be referenced or whether NFS4ERR_MOVED is to be returned. <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 256] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>Since these indications are not mutually exclusive in NFSv4.1, the <lb/>following combinations are possible results when a COMPOUND is <lb/>issued: <lb/>o The COMPOUND status is NFS4ERR_MOVED and SEQ4_STATUS_LEASE_MOVED <lb/>is asserted. <lb/>In this case, transition recovery is required. While it is <lb/>possible that migration discovery is needed in addition, it is <lb/>likely that only the accessed file system has transitioned. In <lb/>any case, because addressing NFS4ERR_MOVED is necessary to allow <lb/>the rejected requests to be processed on the target, dealing with <lb/>it will typically have priority over migration discovery. <lb/>o The COMPOUND status is NFS4ERR_MOVED and SEQ4_STATUS_LEASE_MOVED <lb/>is clear. <lb/>In this case, transition recovery is also required. It is clear <lb/>that migration discovery is not needed to find file systems that <lb/>have been migrated other that the one returning NFS4ERR_MOVED. <lb/>Cases in which this result can arise include a referral or a <lb/>migration for which there is no associated locking state. This <lb/>can also arise in cases in which an access path transition other <lb/>than migration occurs within the same server. In such a case, <lb/>there is no need to set SEQ4_STATUS_LEASE_MOVED, since the lease <lb/>remains associated with the current server even though the access <lb/>path has changed. <lb/>o The COMPOUND status is not NFS4ERR_MOVED and <lb/>SEQ4_STATUS_LEASE_MOVED is asserted. <lb/>In this case, no transition recovery activity is required on the <lb/>file system(s) accessed by the request. However, to prevent <lb/>avoidable lease expiration, migration discovery needs to be done <lb/>o The COMPOUND status is not NFS4ERR_MOVED and <lb/>SEQ4_STATUS_LEASE_MOVED is clear. <lb/>In this case, neither transition-related activity nor migration <lb/>discovery is required. <lb/>Note that the specified actions only need to be taken if they are not <lb/>already going on. For example, when NFS4ERR_MOVED is received when <lb/>accessing a file system for which transition recovery already going <lb/>on, the client merely waits for that recovery to be completed while <lb/>the receipt of SEQ4_STATUS_LEASE_MOVED indication only needs to <lb/>initiate migration discovery for a server if such discovery is not <lb/>already underway for that server. <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 257] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>The fact that a lease-migrated condition does not result in an error <lb/>in NFSv4.1 has a number of important consequences. In addition to <lb/>the fact, discussed above, that the two indications are not mutually <lb/>exclusive, there are number of issues that are important in <lb/>considering implementation of migration discovery, as discussed in <lb/>Section 11.12.2. <lb/>Because of the absence of NFSV4ERR_LEASE_MOVED, it is possible for <lb/>file systems whose access path has not changed to be successfully <lb/>accessed on a given server even though recovery is necessary for <lb/>other file systems on the same server. As a result, access can go on <lb/>while, <lb/>o The migration discovery process is going on for that server. <lb/>o The transition recovery process is going on for on other file <lb/>systems connected to that server. <lb/>11.12.2. Performing Migration Discovery <lb/>Migration discovery can be performed in the same context as <lb/>transition recovery, allowing recovery for each migrated file system <lb/>to be invoked as it is discovered. Alternatively, it may be done in <lb/>a separate migration discovery thread, allowing migration discovery <lb/>to be done in parallel with one or more instances of transition <lb/>recovery. <lb/>In either case, because the lease-migrated indication does not result <lb/>in an error. other access to file systems on the server can proceed <lb/>normally, with the possibility that further such indications will be <lb/>received, raising the issue of how such indications are to be dealt <lb/>with. In general, <lb/>o No action needs to be taken for such indications received by the <lb/>those performing migration discovery, since continuation of that <lb/>work will address the issue. <lb/>o In other cases in which migration discovery is currently being <lb/>performed, nothing further needs to be done to respond to such <lb/>lease migration indications, as long as one can be certain that <lb/>the migration discovery process would deal with those indications. <lb/>See below for details. <lb/>o For such indications received in all other contexts, the <lb/>appropriate response is to initiate or otherwise provide for the <lb/>execution of migration discovery for file systems associated with <lb/>the server IP address returning the indication. <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 258] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>This leaves a potential difficulty in situations in which the <lb/>migration discovery process is near to completion but is still <lb/>operating. One should not ignore a LEASE_MOVED indication if the <lb/>migration discovery process is not able to respond to the discovery <lb/>of additional migrating file systems without additional aid. A <lb/>further complexity relevant in addressing such situations is that a <lb/>lease-migrated indication may reflect the server's state at the time <lb/>the SEQUENCE operation was processed, which may be different from <lb/>that in effect at the time the response is received. Because new <lb/>migration events may occur at any time, and because a LEASE_MOVED <lb/>indication may reflect the situation in effect a considerable time <lb/>before the indication is received, special care needs to be taken to <lb/>ensure that LEASE_MOVED indications are not inappropriately ignored. <lb/>A useful approach to this issue involves the use of separate <lb/>externally-visible migration discovery states for each server. <lb/>Separate values could represent the various possible states for the <lb/>migration discovery process for a server: <lb/>o non-operation, in which migration discovery is not being performed <lb/>o normal operation, in which there is an ongoing scan for migrated <lb/>file systems. <lb/>o completion/verification of migration discovery processing, in <lb/>which the possible completion of migration discovery processing <lb/>needs to be verified. <lb/>Given that framework, migration discovery processing would proceed as <lb/>follows. <lb/>o While in the normal-operation state, the thread performing <lb/>discovery would fetch, for successive file systems known to the <lb/>client on the server being worked on, a file system location <lb/>attribute plus the fs_status attribute. <lb/>o If the fs_status attribute indicates that the file system is a <lb/>migrated one (i.e. fss_absent is true and fss_type != <lb/>STATUS4_REFERRAL) and thus that it is likely that the fetch of the <lb/>file system location attribute has cleared one the file systems <lb/>contributing to the lease-migrated indication. <lb/>o In cases in which that happened, the thread cannot know whether <lb/>the lease-migrated indication has been cleared and so it enters <lb/>the completion/verification state and proceeds to issue a COMPOUND <lb/>to see if the LEASE_MOVED indication has been cleared. <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 259] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>o When the discovery process is in the completion/verification <lb/>state, if other requests get a lease-migrated indication they note <lb/>that it was received. Laater, the existence of such indications <lb/>is used when the request completes, as described below. <lb/>When the request used in the completion/verification state completes: <lb/>o If a lease-migrated indication is returned, the discovery <lb/>continues normally. Note that this is so even if all file systems <lb/>have traversed, since new migrations could have occurred while the <lb/>process was going on. <lb/>o Otherwise, if there is any record that other requests saw a lease-<lb/>migrated indication while the request was going on, that record is <lb/>cleared and the verification request retried. The discovery <lb/>process remains in completion/verification state. <lb/>o If there have been no lease-migrated indications, the work of <lb/>migration discovery is considered completed and it enters the non-<lb/>operating state. Once it enters this state, subsequent lease-<lb/>migrated indication will trigger a new migration discovery <lb/>process. <lb/>It should be noted that the process described above is not guaranteed <lb/>to terminate, as a long series of new migration events might <lb/>continually delay the clearing of the LEASE_MOVED indication. To <lb/>prevent unnecessary lease expiration, it is appropriate for clients <lb/>to use the discovery of migrations to effect lease renewal <lb/>immediately, rather than waiting for clearing of the LEASE_MOVED <lb/>indication when the complete set of migrations is available. <lb/>11.12.3. Overview of Client Response to NFS4ERR_MOVED <lb/>This section outlines a way in which a client that receives <lb/>NFS4ERR_MOVED can effect transition recovery by using a new server or <lb/>server endpoint if one is available. As part of that process, it <lb/>will determine: <lb/>o Whether the NFS4ERR_MOVED indicates migration has occurred, or <lb/>whether it indicates another sort of file system access transition <lb/>as discussed in Section 11.9 above. <lb/>o In the case of migration, whether Transparent State Migration has <lb/>occurred. <lb/>o Whether any state has been lost during the process of Transparent <lb/>State Migration. <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 260] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>o Whether sessions have been transferred as part of Transparent <lb/>State Migration. <lb/>During the first phase of this process, the client proceeds to <lb/>examine file system location entries to find the initial network <lb/>address it will use to continue access to the file system or its <lb/>replacement. For each location entry that the client examines, the <lb/>process consists of five steps: <lb/>1. Performing an EXCHANGE_ID directed at the location address. This <lb/>operation is used to register the client owner (in the form of a <lb/>client_owner4) with the server, to obtain a client ID to be use <lb/>subsequently to communicate with it, to obtain that client ID's <lb/>confirmation status, and to determine server_owner and scope for <lb/>the purpose of determining if the entry is trunkable with that <lb/>previously being used to access the file system (i.e. that it <lb/>represents another network access path to the same file system <lb/>and can share locking state with it). <lb/>2. Making an initial determination of whether migration has <lb/>occurred. The initial determination will be based on whether the <lb/>EXCHANGE_ID results indicate that the current location element is <lb/>server-trunkable with that used to access the file system when <lb/>access was terminated by receiving NFS4ERR_MOVED. If it is, then <lb/>migration has not occurred. In that case, the transition is <lb/>dealt with, at least initially, as one involving continued access <lb/>to the same file system on the same server through a new network <lb/>address. <lb/>3. Obtaining access to existing session state or creating new <lb/>sessions. How this is done depends on the initial determination <lb/>of whether migration has occurred and can be done as described in <lb/>Section 11.12.4 below in the case of migration or as described in <lb/>Section 11.12.5 below in the case of a network address transfer <lb/>without migration. <lb/>4. Verification of the trunking relationship assumed in step 2 as <lb/>discussed in Section 2.10.5.1. Although this step will generally <lb/>confirm the initial determination, it is possible for <lb/>verification to fail with the result that an initial <lb/>determination that a network address shift (without migration) <lb/>has occurred may be invalidated and migration determined to have <lb/>occurred. There is no need to redo step 3 above, since it will <lb/>be possible to continue use of the session established already. <lb/>5. Obtaining access to existing locking state and/or reobtaining it. <lb/>How this is done depends on the final determination of whether <lb/>migration has occurred and can be done as described below in <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 261] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>Section 11.12.4 in the case of migration or as described in <lb/>Section 11.12.5 in the case of a network address transfer without <lb/>migration. <lb/>Once the initial address has been determined, clients are free to <lb/>apply an abbreviated process to find additional addresses trunkable <lb/>with it (clients may seek session-trunkable or server-trunkable <lb/>addresses depending on whether they support clientid trunking). <lb/>During this later phase of the process, further location entries are <lb/>examined using the abbreviated procedure specified below: <lb/>A: Before the EXCHANGE_ID, the fs name of the location entry is <lb/>examined and if it does not match that currently being used, the <lb/>entry is ignored. otherwise, one proceeds as specified by step 1 <lb/>above. <lb/>B: In the case that the network address is session-trunkable with <lb/>one used previously a BIND_CONN_TO_SESSION is used to access that <lb/>session using the new network address. Otherwise, or if the bind <lb/>operation fails, a CREATE_SESSION is done. <lb/>C: The verification procedure referred to in step 4 above is used. <lb/>However, if it fails, the entry is ignored and the next available <lb/>entry is used. <lb/>11.12.4. Obtaining Access to Sessions and State after Migration <lb/>In the event that migration has occurred, migration recovery will <lb/>involve determining whether Transparent State Migration has occurred. <lb/>This decision is made based on the client ID returned by the <lb/>EXCHANGE_ID and the reported confirmation status. <lb/>o If the client ID is an unconfirmed client ID not previously known <lb/>to the client, then Transparent State Migration has not occurred. <lb/>o If the client ID is a confirmed client ID previously known to the <lb/>client, then any transferred state would have been merged with an <lb/>existing client ID representing the client to the destination <lb/>server. In this state merger case, Transparent State Migration <lb/>might or might not have occurred and a determination as to whether <lb/>it has occurred is deferred until sessions are established and the <lb/>client is ready to begin state recovery. <lb/>o If the client ID is a confirmed client ID not previously known to <lb/>the client, then the client can conclude that the client ID was <lb/>transferred as part of Transparent State Migration. In this <lb/>transferred client ID case, Transparent State Migration has <lb/>occurred although some state might have been lost. <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 262] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>Once the client ID has been obtained, it is necessary to obtain <lb/>access to sessions to continue communication with the new server. In <lb/>any of the cases in which Transparent State Migration has occurred, <lb/>it is possible that a session was transferred as well. To deal with <lb/>that possibility, clients can, after doing the EXCHANGE_ID, issue a <lb/>BIND_CONN_TO_SESSION to connect the transferred session to a <lb/>connection to the new server. If that fails, it is an indication <lb/>that the session was not transferred and that a new session needs to <lb/>be created to take its place. <lb/>In some situations, it is possible for a BIND_CONN_TO_SESSION to <lb/>succeed without session migration having occurred. If state merger <lb/>has taken place then the associated client ID may have already had a <lb/>set of existing sessions, with it being possible that the sessionid <lb/>of a given session is the same as one that might have been migrated. <lb/>In that event, a BIND_CONN_TO_SESSION might succeed, even though <lb/>there could have been no migration of the session with that <lb/>sessionid. In such cases, the client will receive sequence errors <lb/>when the slot sequence values used are not appropriate on the new <lb/>session. When this occurs, the client can create a new a session and <lb/>cease using the existing one. <lb/>Once the client has determined the initial migration status, and <lb/>determined that there was a shift to a new server, it needs to re-<lb/>establish its locking state, if possible. To enable this to happen <lb/>without loss of the guarantees normally provided by locking, the <lb/>destination server needs to implement a per-fs grace period in all <lb/>cases in which lock state was lost, including those in which <lb/>Transparent State Migration was not implemented. <lb/>Clients need to deal with the following cases: <lb/>o In the state merger case, it is possible that the server has not <lb/>attempted Transparent State Migration, in which case state may <lb/>have been lost without it being reflected in the SEQ4_STATUS bits. <lb/>To determine whether this has happened, the client can use <lb/>TEST_STATEID to check whether the stateids created on the source <lb/>server are still accessible on the destination server. Once a <lb/>single stateid is found to have been successfully transferred, the <lb/>client can conclude that Transparent State Migration was begun and <lb/>any failure to transport all of the stateids will be reflected in <lb/>the SEQ4_STATUS bits. Otherwise, Transparent State Migration has <lb/>not occurred. <lb/>o In a case in which Transparent State Migration has not occurred, <lb/>the client can use the per-fs grace period provided by the <lb/>destination server to reclaim locks that were held on the source <lb/>server. <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 263] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>o In a case in which Transparent State Migration has occurred, and <lb/>no lock state was lost (as shown by SEQ4_STATUS flags), no lock <lb/>reclaim is necessary. <lb/>o In a case in which Transparent State Migration has occurred, and <lb/>some lock state was lost (as shown by SEQ4_STATUS flags), existing <lb/>stateids need to be checked for validity using TEST_STATEID, and <lb/>reclaim used to re-establish any that were not transferred. <lb/>For all of the cases above, RECLAIM_COMPLETE with an rca_one_fs value <lb/>of TRUE needs to be done before normal use of the file system <lb/>including obtaining new locks for the file system. This applies even <lb/>if no locks were lost and there was no need for any to be reclaimed. <lb/>11.12.5. Obtaining Access to Sessions and State after Network Address <lb/>Transfer <lb/>The case in which there is a transfer to a new network address <lb/>without migration is similar to that described in Section 11.12.4 <lb/>above in that there is a need to obtain access to needed sessions and <lb/>locking state. However, the details are simpler and will vary <lb/>depending on the type of trunking between the address receiving <lb/>NFS4ERR_MOVED and that to which the transfer is to be made <lb/>To make a session available for use, a BIND_CONN_TO_SESSION should be <lb/>used to obtain access to the session previously in use. Only if this <lb/>fails, should a CREATE_SESSION be done. While this procedure mirrors <lb/>that in Section 11.12.4 above, there is an important difference in <lb/>that preservation of the session is not purely optional but depends <lb/>on the type of trunking. <lb/>Access to appropriate locking state will generally need no actions <lb/>beyond access to the session. However, the SEQ4_STATUS bits need to <lb/>be checked for lost locking state, including the need to reclaim <lb/>locks after a server reboot, since there is always a possibility of <lb/>locking state being lost. <lb/>11.13. Server Responsibilities Upon Migration <lb/>In the event of file system migration, when the client connects to <lb/>the destination server, that server needs to be able to provide the <lb/>client continued to access the files it had open on the source <lb/>server. There are two ways to provide this: <lb/>o By provision of an fs-specific grace period, allowing the client <lb/>the ability to reclaim its locks, in a fashion similar to what <lb/>would have been done in the case of recovery from a server <lb/>restart. See Section 11.13.1 for a more complete discussion. <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 264] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>o By implementing Transparent State Migration possibly in connection <lb/>with session migration, the server can provide the client <lb/>immediate access to the state built up on the source server, on <lb/>the destination. <lb/>These features are discussed separately in Sections 11.13.2 and <lb/>11.13.3, which discuss Transparent State Migration and session <lb/>migration respectively. <lb/>All the features described above can involve transfer of lock-related <lb/>information between source and destination servers. In some cases, <lb/>this transfer is a necessary part of the implementation while in <lb/>other cases it is a helpful implementation aid which servers might or <lb/>might not use. The sub-sections below discuss the information which <lb/>would be transferred but do not define the specifics of the transfer <lb/>protocol. This is left as an implementation choice although <lb/>standards in this area could be developed at a later time. <lb/>11.13.1. Server Responsibilities in Effecting State Reclaim after <lb/>Migration <lb/>In this case, destination server need have no knowledge of the locks <lb/>held on the source server, but relies on the clients to accurately <lb/>report (via reclaim operations) the locks previously held, not <lb/>allowing new locks to be granted on migrated file system until the <lb/>grace period expires. <lb/>During this grace period clients have the opportunity to use reclaim <lb/>operations to obtain locks for file system objects within the <lb/>migrated file system, in the same way that they do when recovering <lb/>from server restart, and the servers typically rely on clients to <lb/>accurately report their locks, although they have the option of <lb/>subjecting these requests to verification. If the clients only <lb/>reclaim locks held on the source server, no conflict can arise. Once <lb/>the client has reclaimed its locks, it indicates the completion of <lb/>lock reclamation by performing a RECLAIM_COMPLETE specifying <lb/>rca_one_fs as TRUE. <lb/>While it is not necessary for source and destination servers to co-<lb/>operate to transfer information about locks, implementations are <lb/>well-advised to consider transferring the following useful <lb/>information: <lb/>o If information about the set of clients that have locking state <lb/>for the transferred file system is made available, the destination <lb/>server will be able to terminate the grace period once all such <lb/>clients have reclaimed their locks, allowing normal locking <lb/>activity to resume earlier than it would have otherwise. <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 265] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>o Locking summary information for individual clients (at various <lb/>possible levels of detail) can detect some instances in which <lb/>clients do not accurately represent the locks held on the source <lb/>server. <lb/>11.13.2. Server Responsibilities in Effecting Transparent State <lb/>Migration <lb/>The basic responsibility of the source server in effecting <lb/>Transparent State Migration is to make available to the destination <lb/>server a description of each piece of locking state associated with <lb/>the file system being migrated. In addition to client id string and <lb/>verifier, the source server needs to provide, for each stateid: <lb/>o The stateid including the current sequence value. <lb/>o The associated client ID. <lb/>o The handle of the associated file. <lb/>o The type of the lock, such as open, byte-range lock, delegation, <lb/>or layout. <lb/>o For locks such as opens and byte-range locks, there will be <lb/>information about the owner(s) of the lock. <lb/>o For recallable/revocable lock types, the current recall status <lb/>needs to be included. <lb/>o For each lock type, there will be type-specific information, such <lb/>as share and deny modes for opens and type and byte ranges for <lb/>byte-range locks and layouts. <lb/>Such information will most probably be organized by client id string <lb/>on the destination server so that it can be used to provide <lb/>appropriate context to each client when it makes itself known to the <lb/>client. Issues connected with a client impersonating another by <lb/>presenting another client's id string are discussed in Section 21. <lb/>A further server responsibility concerns locks that are revoked or <lb/>otherwise lost during the process of file system migration. Because <lb/>locks that appear to be lost during the process of migration will be <lb/>reclaimed by the client, the servers have to take steps to ensure <lb/>that locks revoked soon before or soon after migration are not <lb/>inadvertently allowed to be reclaimed in situations in which the <lb/>continuity of lock possession cannot be assured. <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 266] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>o For locks lost on the source but whose loss has not yet been <lb/>acknowledged by the client (by using FREE_STATEID), the <lb/>destination must be aware of this loss so that it can deny a <lb/>request to reclaim them. <lb/>o For locks lost on the destination after the state transfer but <lb/>before the client's RECLAIM_COMPLTE is done, the destination <lb/>server should note these and not allow them to be reclaimed. <lb/>An additional responsibility of the cooperating servers concerns <lb/>situations in which a stateid cannot be transferred transparently <lb/>because it conflicts with an existing stateid held by the client and <lb/>associated with a different file system. In this case there are two <lb/>valid choices: <lb/>o Treat the transfer, as in NFSv4.0, as one without Transparent <lb/>State Migration. In this case, conflicting locks cannot be <lb/>granted until the client does a RECLAIM_COMPLETE, after reclaiming <lb/>the locks it had, with the exception of reclaims denied because <lb/>they were attempts to reclaim locks that had been lost. <lb/>o Implement Transparent State Migration, except for the lock with <lb/>the conflicting stateid. In this case, the client will be aware <lb/>of a lost lock (through the SEQ4_STATUS flags) and be allowed to <lb/>reclaim it. <lb/>When transferring state between the source and destination, the <lb/>issues discussed in Section 7.2 of [63] must still be attended to. <lb/>In this case, the use of NFS4ERR_DELAY may still necessary in <lb/>NFSv4.1, as it was in NFSv4.0, to prevent locking state changing <lb/>while it is being transferred. <lb/>There are a number of important differences in the NFS4.1 context: <lb/>o The absence of RELEASE_LOCKOWNER means that the one case in which <lb/>an operation could not be deferred by use of NFS4ERR_DELAY no <lb/>longer exists. <lb/>o Sequencing of operations is no longer done using owner-based <lb/>operation sequences numbers. Instead, sequencing is session-<lb/>based <lb/>As a result, when sessions are not transferred, the techniques <lb/>discussed in Section 7.2 of [63] are adequate and will not be further <lb/>discussed. <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 267] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>11.13.3. Server Responsibilities in Effecting Session Transfer <lb/>The basic responsibility of the source server in effecting session <lb/>transfer is to make available to the destination server a description <lb/>of the current state of each slot with the session, including: <lb/>o The last sequence value received for that slot. <lb/>o Whether there is cached reply data for the last request executed <lb/>and, if so, the cached reply. <lb/>When sessions are transferred, there are a number of issues that pose <lb/>challenges in terms of making the transferred state unmodifiable <lb/>during the period it is gathered up and transferred to the <lb/>destination server. <lb/>o A single session may be used to access multiple file systems, not <lb/>all of which are being transferred. <lb/>o Requests made on a session may, even if rejected, affect the state <lb/>of the session by advancing the sequence number associated with <lb/>the slot used. <lb/>As a result, when the file system state might otherwise be considered <lb/>unmodifiable, the client might have any number of in-flight requests, <lb/>each of which is capable of changing session state, which may be of a <lb/>number of types: <lb/>1. Those requests that were processed on the migrating file system, <lb/>before migration began. <lb/>2. Those requests which got the error NFS4ERR_DELAY because the file <lb/>system being accessed was in the process of being migrated. <lb/>3. Those requests which got the error NFS4ERR_MOVED because the file <lb/>system being accessed had been migrated. <lb/>4. Those requests that accessed the migrating file system, in order <lb/>to obtain location or status information. <lb/>5. Those requests that did not reference the migrating file system. <lb/>It should be noted that the history of any particular slot is likely <lb/>to include a number of these request classes. In the case in which a <lb/>session which is migrated is used by file systems other than the one <lb/>migrated, requests of class 5 may be common and be the last request <lb/>processed, for many slots. <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 268] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>Since session state can change even after the locking state has been <lb/>fixed as part of the migration process, the session state known to <lb/>the client could be different from that on the destination server, <lb/>which necessarily reflects the session state on the source server, at <lb/>an earlier time. In deciding how to deal with this situation, it is <lb/>helpful to distinguish between two sorts of behavioral consequences <lb/>of the choice of initial sequence ID values. <lb/>o The error NFS4ERR_SEQ_MISORDERED is returned when the sequence ID <lb/>in a request is neither equal to the last one seen for the current <lb/>slot nor the next greater one. <lb/>In view of the difficulty of arriving at a mutually acceptable <lb/>value for the correct last sequence value at the point of <lb/>migration, it may be necessary for the server to show some degree <lb/>of forbearance, when the sequence ID is one that would be <lb/>considered unacceptable if session migration were not involved. <lb/>o Returning the cached reply for a previously executed request when <lb/>the sequence ID in the request matches the last value recorded for <lb/>the slot. <lb/>In the cases in which an error is returned and there is no <lb/>possibility of any non-idempotent operation having been executed, <lb/>it may not be necessary to adhere to this as strictly as might be <lb/>proper if session migration were not involved. For example, the <lb/>fact that the error NFS4ERR_DELAY was returned may not assist the <lb/>client in any material way, while the fact that NFS4ERR_MOVED was <lb/>returned by the source server may not be relevant when the request <lb/>was reissued, directed to the destination server. <lb/>An important issue is that the specification needs to take note of <lb/>all potential COMPOUNDs, even if they might be unlikely in practice. <lb/>For example, a COMPOUND is allowed to access multiple file systems <lb/>and might perform non-idempotent operations in some of them before <lb/>accessing a file system being migrated. Also, a COMPOUND may return <lb/>considerable data in the response, before being rejected with <lb/>NFS4ERR_DELAY or NFS4ERR_MOVED, and may in addition be marked as <lb/>sa_cachethis. <lb/>To address these issues, a destination server MAY do any of the <lb/>following when implementing session transfer. <lb/>o Avoid enforcing any sequencing semantics for a particular slot <lb/>until the client has established the starting sequence for that <lb/>slot on the destination server. <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 269] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>o For each slot, avoid returning a cached reply returning <lb/>NFS4ERR_DELAY or NFS4ERR_MOVED until the client has established <lb/>the starting sequence for that slot on the destination server. <lb/>o Until the client has established the starting sequence for a <lb/>particular slot on the destination server, avoid reporting <lb/>NFS4ERR_SEQ_MISORDERED or return a cached reply returning <lb/>NFS4ERR_DELAY or NFS4ERR_MOVED, where the reply consists solely of <lb/>a series of operations where the response is NFS4_OK until the <lb/>final error. <lb/>Because of the considerations mentioned above, the destination server <lb/>can respond appropriately to SEQUENCE operations received from the <lb/>client by adopting the three policies listed below: <lb/>o Not responding with NFS4ERR_SEQ_MISORDERED for the initial request <lb/>on a slot within a transferred session, since the destination <lb/>server cannot be aware of requests made by the client after the <lb/>server handoff but before the client became aware of the shift. <lb/>o Replying as it would for a retry whenever the sequence matches <lb/>that transferred by the source server, even though this would not <lb/>provide retry handling for requests issued after the server <lb/>handoff, under the assumption that when such requests are issued <lb/>they will never be responded to in a state-changing fashion, <lb/>making retry support for them unnecessary. <lb/>o Once a non-retry SEQUENCE is received for a given slot, using that <lb/>as the basis for further sequence checking, with no further <lb/>reference to the sequence value transferred by the sour server. <lb/>11.14. Effecting File System Referrals <lb/>Referrals are effected when an absent file system is encountered and <lb/>one or more alternate locations are made available by the <lb/>fs_locations or fs_locations_info attributes. The client will <lb/>typically get an NFS4ERR_MOVED error, fetch the appropriate location <lb/>information, and proceed to access the file system on a different <lb/>server, even though it retains its logical position within the <lb/>original namespace. Referrals differ from migration events in that <lb/>they happen only when the client has not previously referenced the <lb/>file system in question (so there is nothing to transition). <lb/>Referrals can only come into effect when an absent file system is <lb/>encountered at its root. <lb/>The examples given in the sections below are somewhat artificial in <lb/>that an actual client will not typically do a multi-component look <lb/>up, but will have cached information regarding the upper levels of <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 270] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>the name hierarchy. However, these examples are chosen to make the <lb/>required behavior clear and easy to put within the scope of a small <lb/>number of requests, without getting a discussion of the details of <lb/>how specific clients might choose to cache things. <lb/>11.14.1. Referral Example (LOOKUP) <lb/>Let us suppose that the following COMPOUND is sent in an environment <lb/>in which /this/is/the/path is absent from the target server. This <lb/>may be for a number of reasons. It may be that the file system has <lb/>moved, or it may be that the target server is functioning mainly, or <lb/>solely, to refer clients to the servers on which various file systems <lb/>are located. <lb/>o PUTROOTFH <lb/>o LOOKUP "this" <lb/>o LOOKUP "is" <lb/>o LOOKUP "the" <lb/>o LOOKUP "path" <lb/>o GETFH <lb/>o GETATTR (fsid, fileid, size, time_modify) <lb/>Under the given circumstances, the following will be the result. <lb/>o PUTROOTFH --> NFS_OK. The current fh is now the root of the <lb/>pseudo-fs. <lb/>o LOOKUP "this" --> NFS_OK. The current fh is for /this and is <lb/>within the pseudo-fs. <lb/>o LOOKUP "is" --> NFS_OK. The current fh is for /this/is and is <lb/>within the pseudo-fs. <lb/>o LOOKUP "the" --> NFS_OK. The current fh is for /this/is/the and <lb/>is within the pseudo-fs. <lb/>o LOOKUP "path" --> NFS_OK. The current fh is for /this/is/the/path <lb/>and is within a new, absent file system, but ... the client will <lb/>never see the value of that fh. <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 271] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>o GETFH --> NFS4ERR_MOVED. Fails because current fh is in an absent <lb/>file system at the start of the operation, and the specification <lb/>makes no exception for GETFH. <lb/>o GETATTR (fsid, fileid, size, time_modify). Not executed because <lb/>the failure of the GETFH stops processing of the COMPOUND. <lb/>Given the failure of the GETFH, the client has the job of determining <lb/>the root of the absent file system and where to find that file <lb/>system, i.e., the server and path relative to that server's root fh. <lb/>Note that in this example, the client did not obtain filehandles and <lb/>attribute information (e.g., fsid) for the intermediate directories, <lb/>so that it would not be sure where the absent file system starts. It <lb/>could be the case, for example, that /this/is/the is the root of the <lb/>moved file system and that the reason that the look up of "path" <lb/>succeeded is that the file system was not absent on that operation <lb/>but was moved between the last LOOKUP and the GETFH (since COMPOUND <lb/>is not atomic). Even if we had the fsids for all of the intermediate <lb/>directories, we could have no way of knowing that /this/is/the/path <lb/>was the root of a new file system, since we don't yet have its fsid. <lb/>In order to get the necessary information, let us re-send the chain <lb/>of LOOKUPs with GETFHs and GETATTRs to at least get the fsids so we <lb/>can be sure where the appropriate file system boundaries are. The <lb/>client could choose to get fs_locations_info at the same time but in <lb/>most cases the client will have a good guess as to where file system <lb/>boundaries are (because of where NFS4ERR_MOVED was, and was not, <lb/>received) making fetching of fs_locations_info unnecessary. <lb/>OP01: PUTROOTFH --> NFS_OK <lb/>-Current fh is root of pseudo-fs. <lb/>OP02: GETATTR(fsid) --> NFS_OK <lb/>-Just for completeness. Normally, clients will know the fsid of <lb/>the pseudo-fs as soon as they establish communication with a <lb/>server. <lb/>OP03: LOOKUP "this" --> NFS_OK <lb/>OP04: GETATTR(fsid) --> NFS_OK <lb/>-Get current fsid to see where file system boundaries are. The <lb/>fsid will be that for the pseudo-fs in this example, so no <lb/>boundary. <lb/>OP05: GETFH --> NFS_OK <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 272] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>-Current fh is for /this and is within pseudo-fs. <lb/>OP06: LOOKUP "is" --> NFS_OK <lb/>-Current fh is for /this/is and is within pseudo-fs. <lb/>OP07: GETATTR(fsid) --> NFS_OK <lb/>-Get current fsid to see where file system boundaries are. The <lb/>fsid will be that for the pseudo-fs in this example, so no <lb/>boundary. <lb/>OP08: GETFH --> NFS_OK <lb/>-Current fh is for /this/is and is within pseudo-fs. <lb/>OP09: LOOKUP "the" --> NFS_OK <lb/>-Current fh is for /this/is/the and is within pseudo-fs. <lb/>OP10: GETATTR(fsid) --> NFS_OK <lb/>-Get current fsid to see where file system boundaries are. The <lb/>fsid will be that for the pseudo-fs in this example, so no <lb/>boundary. <lb/>OP11: GETFH --> NFS_OK <lb/>-Current fh is for /this/is/the and is within pseudo-fs. <lb/>OP12: LOOKUP "path" --> NFS_OK <lb/>-Current fh is for /this/is/the/path and is within a new, absent <lb/>file system, but ... <lb/>-The client will never see the value of that fh. <lb/>OP13: GETATTR(fsid, fs_locations_info) --> NFS_OK <lb/>-We are getting the fsid to know where the file system boundaries <lb/>are. In this operation, the fsid will be different than that of <lb/>the parent directory (which in turn was retrieved in OP10). Note <lb/>that the fsid we are given will not necessarily be preserved at <lb/>the new location. That fsid might be different, and in fact the <lb/>fsid we have for this file system might be a valid fsid of a <lb/>different file system on that new server. <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 273] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>-In this particular case, we are pretty sure anyway that what has <lb/>moved is /this/is/the/path rather than /this/is/the since we have <lb/>the fsid of the latter and it is that of the pseudo-fs, which <lb/>presumably cannot move. However, in other examples, we might not <lb/>have this kind of information to rely on (e.g., /this/is/the might <lb/>be a non-pseudo file system separate from /this/is/the/path), so <lb/>we need to have other reliable source information on the boundary <lb/>of the file system that is moved. If, for example, the file <lb/>system /this/is had moved, we would have a case of migration <lb/>rather than referral, and once the boundaries of the migrated file <lb/>system was clear we could fetch fs_locations_info. <lb/>-We are fetching fs_locations_info because the fact that we got an <lb/>NFS4ERR_MOVED at this point means that it is most likely that this <lb/>is a referral and we need the destination. Even if it is the case <lb/>that /this/is/the is a file system that has migrated, we will <lb/>still need the location information for that file system. <lb/>OP14: GETFH --> NFS4ERR_MOVED <lb/>-Fails because current fh is in an absent file system at the start <lb/>of the operation, and the specification makes no exception for <lb/>GETFH. Note that this means the server will never send the client <lb/>a filehandle from within an absent file system. <lb/>Given the above, the client knows where the root of the absent file <lb/>system is (/this/is/the/path) by noting where the change of fsid <lb/>occurred (between "the" and "path"). The fs_locations_info attribute <lb/>also gives the client the actual location of the absent file system, <lb/>so that the referral can proceed. The server gives the client the <lb/>bare minimum of information about the absent file system so that <lb/>there will be very little scope for problems of conflict between <lb/>information sent by the referring server and information of the file <lb/>system's home. No filehandles and very few attributes are present on <lb/>the referring server, and the client can treat those it receives as <lb/>transient information with the function of enabling the referral. <lb/>11.14.2. Referral Example (READDIR) <lb/>Another context in which a client may encounter referrals is when it <lb/>does a READDIR on a directory in which some of the sub-directories <lb/>are the roots of absent file systems. <lb/>Suppose such a directory is read as follows: <lb/>o PUTROOTFH <lb/>o LOOKUP "this" <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 274] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>o LOOKUP "is" <lb/>o LOOKUP "the" <lb/>o READDIR (fsid, size, time_modify, mounted_on_fileid) <lb/>In this case, because rdattr_error is not requested, <lb/>fs_locations_info is not requested, and some of the attributes cannot <lb/>be provided, the result will be an NFS4ERR_MOVED error on the <lb/>READDIR, with the detailed results as follows: <lb/>o PUTROOTFH --> NFS_OK. The current fh is at the root of the <lb/>pseudo-fs. <lb/>o LOOKUP "this" --> NFS_OK. The current fh is for /this and is <lb/>within the pseudo-fs. <lb/>o LOOKUP "is" --> NFS_OK. The current fh is for /this/is and is <lb/>within the pseudo-fs. <lb/>o LOOKUP "the" --> NFS_OK. The current fh is for /this/is/the and <lb/>is within the pseudo-fs. <lb/>o READDIR (fsid, size, time_modify, mounted_on_fileid) --> <lb/>NFS4ERR_MOVED. Note that the same error would have been returned <lb/>if /this/is/the had migrated, but it is returned because the <lb/>directory contains the root of an absent file system. <lb/>So now suppose that we re-send with rdattr_error: <lb/>o PUTROOTFH <lb/>o LOOKUP "this" <lb/>o LOOKUP "is" <lb/>o LOOKUP "the" <lb/>o READDIR (rdattr_error, fsid, size, time_modify, mounted_on_fileid) <lb/>The results will be: <lb/>o PUTROOTFH --> NFS_OK. The current fh is at the root of the <lb/>pseudo-fs. <lb/>o LOOKUP "this" --> NFS_OK. The current fh is for /this and is <lb/>within the pseudo-fs. <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 275] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>o LOOKUP "is" --> NFS_OK. The current fh is for /this/is and is <lb/>within the pseudo-fs. <lb/>o LOOKUP "the" --> NFS_OK. The current fh is for /this/is/the and <lb/>is within the pseudo-fs. <lb/>o READDIR (rdattr_error, fsid, size, time_modify, mounted_on_fileid) <lb/>--> NFS_OK. The attributes for directory entry with the component <lb/>named "path" will only contain rdattr_error with the value <lb/>NFS4ERR_MOVED, together with an fsid value and a value for <lb/>mounted_on_fileid. <lb/>Suppose we do another READDIR to get fs_locations_info (although we <lb/>could have used a GETATTR directly, as in Section 11.14.1). <lb/>o PUTROOTFH <lb/>o LOOKUP "this" <lb/>o LOOKUP "is" <lb/>o LOOKUP "the" <lb/>o READDIR (rdattr_error, fs_locations_info, mounted_on_fileid, fsid, <lb/>size, time_modify) <lb/>The results would be: <lb/>o PUTROOTFH --> NFS_OK. The current fh is at the root of the <lb/>pseudo-fs. <lb/>o LOOKUP "this" --> NFS_OK. The current fh is for /this and is <lb/>within the pseudo-fs. <lb/>o LOOKUP "is" --> NFS_OK. The current fh is for /this/is and is <lb/>within the pseudo-fs. <lb/>o LOOKUP "the" --> NFS_OK. The current fh is for /this/is/the and <lb/>is within the pseudo-fs. <lb/>o READDIR (rdattr_error, fs_locations_info, mounted_on_fileid, fsid, <lb/>size, time_modify) --> NFS_OK. The attributes will be as shown <lb/>below. <lb/>The attributes for the directory entry with the component named <lb/>"path" will only contain: <lb/>o rdattr_error (value: NFS_OK) <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 276] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>o fs_locations_info <lb/>o mounted_on_fileid (value: unique fileid within referring file <lb/>system) <lb/>o fsid (value: unique value within referring server) <lb/>The attributes for entry "path" will not contain size or time_modify <lb/>because these attributes are not available within an absent file <lb/>system. <lb/>11.15. The Attribute fs_locations <lb/>The fs_locations attribute is structured in the following way: <lb/>struct fs_location4 { <lb/>utf8str_cis <lb/>server<>; <lb/>pathname4 <lb/>rootpath; <lb/>}; <lb/>struct fs_locations4 { <lb/>pathname4 <lb/>fs_root; <lb/>fs_location4 <lb/>locations<>; <lb/>}; <lb/>The fs_location4 data type is used to represent the location of a <lb/>file system by providing a server name and the path to the root of <lb/>the file system within that server's namespace. When a set of <lb/>servers have corresponding file systems at the same path within their <lb/>namespaces, an array of server names may be provided. An entry in <lb/>the server array is a UTF-8 string and represents one of a <lb/>traditional DNS host name, IPv4 address, IPv6 address, or a zero-<lb/>length string. An IPv4 or IPv6 address is represented as a universal <lb/>address (see Section 3.3.9 and [12]), minus the netid, and either <lb/>with or without the trailing ".p1.p2" suffix that represents the port <lb/>number. If the suffix is omitted, then the default port, 2049, <lb/>SHOULD be assumed. A zero-length string SHOULD be used to indicate <lb/>the current address being used for the RPC call. It is not a <lb/>requirement that all servers that share the same rootpath be listed <lb/>in one fs_location4 instance. The array of server names is provided <lb/>for convenience. Servers that share the same rootpath may also be <lb/>listed in separate fs_location4 entries in the fs_locations <lb/>attribute. <lb/>The fs_locations4 data type and the fs_locations attribute each <lb/>contain an array of such locations. Since the namespace of each <lb/>server may be constructed differently, the "fs_root" field is <lb/>provided. The path represented by fs_root represents the location of <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 277] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>the file system in the current server's namespace, i.e., that of the <lb/>server from which the fs_locations attribute was obtained. The <lb/>fs_root path is meant to aid the client by clearly referencing the <lb/>root of the file system whose locations are being reported, no matter <lb/>what object within the current file system the current filehandle <lb/>designates. The fs_root is simply the pathname the client used to <lb/>reach the object on the current server (i.e., the object to which the <lb/>fs_locations attribute applies). <lb/>When the fs_locations attribute is interrogated and there are no <lb/>alternate file system locations, the server SHOULD return a zero-<lb/>length array of fs_location4 structures, together with a valid <lb/>fs_root. <lb/>As an example, suppose there is a replicated file system located at <lb/>two servers (servA and servB). At servA, the file system is located <lb/>at path /a/b/c. At, servB the file system is located at path /x/y/z. <lb/>If the client were to obtain the fs_locations value for the directory <lb/>at /a/b/c/d, it might not necessarily know that the file system's <lb/>root is located in servA's namespace at /a/b/c. When the client <lb/>switches to servB, it will need to determine that the directory it <lb/>first referenced at servA is now represented by the path /x/y/z/d on <lb/>servB. To facilitate this, the fs_locations attribute provided by <lb/>servA would have an fs_root value of /a/b/c and two entries in <lb/>fs_locations. One entry in fs_locations will be for itself (servA) <lb/>and the other will be for servB with a path of /x/y/z. With this <lb/>information, the client is able to substitute /x/y/z for the /a/b/c <lb/>at the beginning of its access path and construct /x/y/z/d to use for <lb/>the new server. <lb/>Note that there is no requirement that the number of components in <lb/>each rootpath be the same; there is no relation between the number of <lb/>components in rootpath or fs_root, and none of the components in a <lb/>rootpath and fs_root have to be the same. In the above example, we <lb/>could have had a third element in the locations array, with server <lb/>equal to "servC" and rootpath equal to "/I/II", and a fourth element <lb/>in locations with server equal to "servD" and rootpath equal to <lb/>"/aleph/beth/gimel/daleth/he". <lb/>The relationship between fs_root to a rootpath is that the client <lb/>replaces the pathname indicated in fs_root for the current server for <lb/>the substitute indicated in rootpath for the new server. <lb/>For an example of a referred or migrated file system, suppose there <lb/>is a file system located at serv1. At serv1, the file system is <lb/>located at /az/buky/vedi/glagoli. The client finds that object at <lb/>glagoli has migrated (or is a referral). The client gets the <lb/>fs_locations attribute, which contains an fs_root of /az/buky/vedi/ <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 278] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>glagoli, and one element in the locations array, with server equal to <lb/>serv2, and rootpath equal to /izhitsa/fita. The client replaces <lb/>/az/buky/vedi/glagoli with /izhitsa/fita, and uses the latter <lb/>pathname on serv2. <lb/>Thus, the server MUST return an fs_root that is equal to the path the <lb/>client used to reach the object to which the fs_locations attribute <lb/>applies. Otherwise, the client cannot determine the new path to use <lb/>on the new server. <lb/>Since the fs_locations attribute lacks information defining various <lb/>attributes of the various file system choices presented, it SHOULD <lb/>only be interrogated and used when fs_locations_info is not <lb/>available. When fs_locations is used, information about the specific <lb/>locations should be assumed based on the following rules. <lb/>The following rules are general and apply irrespective of the <lb/>context. <lb/>o All listed file system instances should be considered as of the <lb/>same handle class, if and only if, the current fh_expire_type <lb/>attribute does not include the FH4_VOL_MIGRATION bit. Note that <lb/>in the case of referral, filehandle issues do not apply since <lb/>there can be no filehandles known within the current file system, <lb/>nor is there any access to the fh_expire_type attribute on the <lb/>referring (absent) file system. <lb/>o All listed file system instances should be considered as of the <lb/>same fileid class if and only if the fh_expire_type attribute <lb/>indicates persistent filehandles and does not include the <lb/>FH4_VOL_MIGRATION bit. Note that in the case of referral, fileid <lb/>issues do not apply since there can be no fileids known within the <lb/>referring (absent) file system, nor is there any access to the <lb/>fh_expire_type attribute. <lb/>o All file system instances servers should be considered as of <lb/>different change classes. <lb/>For other class assignments, handling of file system transitions <lb/>depends on the reasons for the transition: <lb/>o When the transition is due to migration, that is, the client was <lb/>directed to a new file system after receiving an NFS4ERR_MOVED <lb/>error, the target should be treated as being of the same write-<lb/>verifier class as the source. <lb/>o When the transition is due to failover to another replica, that <lb/>is, the client selected another replica without receiving an <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 279] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>NFS4ERR_MOVED error, the target should be treated as being of a <lb/>different write-verifier class from the source. <lb/>The specific choices reflect typical implementation patterns for <lb/>failover and controlled migration, respectively. Since other choices <lb/>are possible and useful, this information is better obtained by using <lb/>fs_locations_info. When a server implementation needs to communicate <lb/>other choices, it MUST support the fs_locations_info attribute. <lb/>See Section 21 for a discussion on the recommendations for the <lb/>security flavor to be used by any GETATTR operation that requests the <lb/>"fs_locations" attribute. <lb/>11.16. The Attribute fs_locations_info <lb/>The fs_locations_info attribute is intended as a more functional <lb/>replacement for the fs_locations attribute which will continue to <lb/>exist and be supported. Clients can use it to get a more complete <lb/>set of data about alternative file system locations, including <lb/>additional network paths to access replicas in use and additional <lb/>replicas. When the server does not support fs_locations_info, <lb/>fs_locations can be used to get a subset of the data. A server that <lb/>supports fs_locations_info MUST support fs_locations as well. <lb/>There is additional data present in fs_locations_info, that is not <lb/>available in fs_locations: <lb/>o Attribute continuity information. This information will allow a <lb/>client to select a replica that meets the transparency <lb/>requirements of the applications accessing the data and to <lb/>leverage optimizations due to the server guarantees of attribute <lb/>continuity (e.g., if the change attribute of a file of the file <lb/>system is continuous between multiple replicas, the client does <lb/>not have to invalidate the file's cache when switching to a <lb/>different replica). <lb/>o File system identity information that indicates when multiple <lb/>replicas, from the client's point of view, correspond to the same <lb/>target file system, allowing them to be used interchangeably, <lb/>without disruption, as distinct synchronized replicas of the same <lb/>file data. <lb/>Note that having two replicas with common identity information is <lb/>distinct from the case of two (trunked) paths to the same replica. <lb/>o Information that will bear on the suitability of various replicas, <lb/>depending on the use that the client intends. For example, many <lb/>applications need an absolutely up-to-date copy (e.g., those that <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 280] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>write), while others may only need access to the most up-to-date <lb/>copy reasonably available. <lb/>o Server-derived preference information for replicas, which can be <lb/>used to implement load-balancing while giving the client the <lb/>entire file system list to be used in case the primary fails. <lb/>The fs_locations_info attribute is structured similarly to the <lb/>fs_locations attribute. A top-level structure (fs_locations_info4) <lb/>contains the entire attribute including the root pathname of the file <lb/>system and an array of lower-level structures that define replicas <lb/>that share a common rootpath on their respective servers. The lower-<lb/>level structure in turn (fs_locations_item4) contains a specific <lb/>pathname and information on one or more individual network access <lb/>paths. For that last lowest level, fs_locations_info has an <lb/>fs_locations_server4 structure that contains per-server-replica <lb/>information in addition to the file system location entry. This per-<lb/>server-replica information includes a nominally opaque array, <lb/>fls_info, within which specific pieces of information are located at <lb/>the specific indices listed below. <lb/>Two fs_location_server4 entries that are within different <lb/>fs_location_item4 structures are never trunkable, while two entries <lb/>within in the same fs_location_item4 structure might or might not be <lb/>trunkable. Two entries that are trunkable will have identical <lb/>identity information, although, as noted above, the converse is not <lb/>the case. <lb/>The attribute will always contain at least a single <lb/>fs_locations_server entry. Typically, there will be an entry with <lb/>the FS4LIGF_CUR_REQ flag set, although in the case of a referral <lb/>there will be no entry with that flag set. <lb/>It should be noted that fs_locations_info attributes returned by <lb/>servers for various replicas may differ for various reasons. One <lb/>server may know about a set of replicas that are not known to other <lb/>servers. Further, compatibility attributes may differ. Filehandles <lb/>might be of the same class going from replica A to replica B but not <lb/>going in the reverse direction. This might happen because the <lb/>filehandles are the same, but replica B's server implementation might <lb/>not have provision to note and report that equivalence. <lb/>The fs_locations_info attribute consists of a root pathname <lb/>(fli_fs_root, just like fs_root in the fs_locations attribute), <lb/>together with an array of fs_location_item4 structures. The <lb/>fs_location_item4 structures in turn consist of a root pathname <lb/>(fli_rootpath) together with an array (fli_entries) of elements of <lb/>data type fs_locations_server4, all defined as follows. <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 281] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>/* <lb/>* Defines an individual server access path <lb/>*/ <lb/>struct fs_locations_server4 { <lb/>int32_t <lb/>fls_currency; <lb/>opaque <lb/>fls_info<>; <lb/>utf8str_cis <lb/>fls_server; <lb/>}; <lb/>/* <lb/>* Byte indices of items within <lb/>* fls_info: flag fields, class numbers, <lb/>* bytes indicating ranks and orders. <lb/>*/ <lb/>const FSLI4BX_GFLAGS <lb/>= 0; <lb/>const FSLI4BX_TFLAGS <lb/>= 1; <lb/>const FSLI4BX_CLSIMUL <lb/>= 2; <lb/>const FSLI4BX_CLHANDLE <lb/>= 3; <lb/>const FSLI4BX_CLFILEID <lb/>= 4; <lb/>const FSLI4BX_CLWRITEVER <lb/>= 5; <lb/>const FSLI4BX_CLCHANGE <lb/>= 6; <lb/>const FSLI4BX_CLREADDIR <lb/>= 7; <lb/>const FSLI4BX_READRANK <lb/>= 8; <lb/>const FSLI4BX_WRITERANK <lb/>= 9; <lb/>const FSLI4BX_READORDER <lb/>= 10; <lb/>const FSLI4BX_WRITEORDER <lb/>= 11; <lb/>/* <lb/>* Bits defined within the general flag byte. <lb/>*/ <lb/>const FSLI4GF_WRITABLE <lb/>= 0x01; <lb/>const FSLI4GF_CUR_REQ <lb/>= 0x02; <lb/>const FSLI4GF_ABSENT <lb/>= 0x04; <lb/>const FSLI4GF_GOING <lb/>= 0x08; <lb/>const FSLI4GF_SPLIT <lb/>= 0x10; <lb/>/* <lb/>* Bits defined within the transport flag byte. <lb/>*/ <lb/>const FSLI4TF_RDMA <lb/>= 0x01; <lb/>/* <lb/>* Defines a set of replicas sharing <lb/>* a common value of the rootpath <lb/>* within the corresponding <lb/>* single-server namespaces. <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 282] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>*/ <lb/>struct fs_locations_item4 { <lb/>fs_locations_server4 <lb/>fli_entries<>; <lb/>pathname4 <lb/>fli_rootpath; <lb/>}; <lb/>/* <lb/>* Defines the overall structure of <lb/>* the fs_locations_info attribute. <lb/>*/ <lb/>struct fs_locations_info4 { <lb/>uint32_t <lb/>fli_flags; <lb/>int32_t <lb/>fli_valid_for; <lb/>pathname4 <lb/>fli_fs_root; <lb/>fs_locations_item4 <lb/>fli_items<>; <lb/>}; <lb/>/* <lb/>* Flag bits in fli_flags. <lb/>*/ <lb/>const FSLI4IF_VAR_SUB <lb/>= 0x00000001; <lb/>typedef fs_locations_info4 fattr4_fs_locations_info; <lb/>As noted above, the fs_locations_info attribute, when supported, may <lb/>be requested of absent file systems without causing NFS4ERR_MOVED to <lb/>be returned. It is generally expected that it will be available for <lb/>both present and absent file systems even if only a single <lb/>fs_locations_server4 entry is present, designating the current <lb/>(present) file system, or two fs_locations_server4 entries <lb/>designating the previous location of an absent file system (the one <lb/>just referenced) and its successor location. Servers are strongly <lb/>urged to support this attribute on all file systems if they support <lb/>it on any file system. <lb/>The data presented in the fs_locations_info attribute may be obtained <lb/>by the server in any number of ways, including specification by the <lb/>administrator or by current protocols for transferring data among <lb/>replicas and protocols not yet developed. NFSv4.1 only defines how <lb/>this information is presented by the server to the client. <lb/>11.16.1. The fs_locations_server4 Structure <lb/>The fs_locations_server4 structure consists of the following items in <lb/>addition to the fls_server field which specifies a network address or <lb/>set of addresses to be used to access the specified file system. <lb/>Note that both of these items (i.e., fls_currency and flinfo) specify <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 283] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>attributes of the file system replica and should not be different <lb/>when there are multiple fs_locations_server4 structures for the same <lb/>replica, each specifying a network path to the chosen replica. <lb/>When these values are different in two fs_locations_server4 <lb/>structures, a client has no basis for choosing one over the other and <lb/>is best off simply ignoring both entries, whether these entries apply <lb/>to migration replication or referral. When there are more than two <lb/>such entries, majority voting can be used to exclude a single <lb/>erroneous entry from consideration. In the case in which trunking <lb/>information is provided for a replica currently being accessed, the <lb/>additional trunked addresses can be ignored while access continues on <lb/>the address currently being used, even if the entry corresponding to <lb/>that path might be considered invalid. <lb/>o An indication of how up-to-date the file system is (fls_currency) <lb/>in seconds. This value is relative to the master copy. A <lb/>negative value indicates that the server is unable to give any <lb/>reasonably useful value here. A value of zero indicates that the <lb/>file system is the actual writable data or a reliably coherent and <lb/>fully up-to-date copy. Positive values indicate how out-of-date <lb/>this copy can normally be before it is considered for update. <lb/>Such a value is not a guarantee that such updates will always be <lb/>performed on the required schedule but instead serves as a hint <lb/>about how far the copy of the data would be expected to be behind <lb/>the most up-to-date copy. <lb/>o A counted array of one-byte values (fls_info) containing <lb/>information about the particular file system instance. This data <lb/>includes general flags, transport capability flags, file system <lb/>equivalence class information, and selection priority information. <lb/>The encoding will be discussed below. <lb/>o The server string (fls_server). For the case of the replica <lb/>currently being accessed (via GETATTR), a zero-length string MAY <lb/>be used to indicate the current address being used for the RPC <lb/>call. The fls_server field can also be an IPv4 or IPv6 address, <lb/>formatted the same way as an IPv4 or IPv6 address in the "server" <lb/>field of the fs_location4 data type (see Section 11.15). <lb/>With the exception of the transport-flag field (at offset <lb/>FSLI4BX_TFLAGS with the fls_info array), all of this data applies to <lb/>the replica specified by the entry, rather that the specific network <lb/>path used to access it. <lb/>Data within the fls_info array is in the form of 8-bit data items <lb/>with constants giving the offsets within the array of various values <lb/>describing this particular file system instance. This style of <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 284] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>definition was chosen, in preference to explicit XDR structure <lb/>definitions for these values, for a number of reasons. <lb/>o The kinds of data in the fls_info array, representing flags, file <lb/>system classes, and priorities among sets of file systems <lb/>representing the same data, are such that 8 bits provide a quite <lb/>acceptable range of values. Even where there might be more than <lb/>256 such file system instances, having more than 256 distinct <lb/>classes or priorities is unlikely. <lb/>o Explicit definition of the various specific data items within XDR <lb/>would limit expandability in that any extension within would <lb/>require yet another attribute, leading to specification and <lb/>implementation clumsiness. In the context of the NFSv4 extension <lb/>model in effect at the time fs_locations_info was designed (i.e. <lb/>that described in RFC5661 [60]), this would necessitate a new <lb/>minor version to effect any Standards Track extension to the data <lb/>in in fls_info. <lb/>The set of fls_info data is subject to expansion in a future minor <lb/>version, or in a Standards Track RFC, within the context of a single <lb/>minor version. The server SHOULD NOT send and the client MUST NOT <lb/>use indices within the fls_info array or flag bits that are not <lb/>defined in Standards Track RFCs. <lb/>In light of the new extension model defined in RFC8178 [61] and the <lb/>fact that the individual items within fls_info are not explicitly <lb/>referenced in the XDR, the following practices should be followed <lb/>when extending or otherwise changing the structure of the data <lb/>returned in fls_info within the scope of a single minor version. <lb/>o All extensions need to be described by Standards Track documents. <lb/>There is no need for such documents to be marked as updating <lb/>RFC5661 [60] or this document. <lb/>o It needs to be made clear whether the information in any added <lb/>data items applies to the replica specified by the entry or to the <lb/>specific network paths specified in the entry. <lb/>o There needs to be a reliable way defined to determine whether the <lb/>server is aware of the extension. This may be based on the length <lb/>field of the fls_info array, but it is more flexible to provide <lb/>fs-scope or server-scope attributes to indicate what extensions <lb/>are provided. <lb/>This encoding scheme can be adapted to the specification of multi-<lb/>byte numeric values, even though none are currently defined. If <lb/>extensions are made via Standards Track RFCs, multi-byte quantities <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 285] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>will be encoded as a range of bytes with a range of indices, with the <lb/>byte interpreted in big-endian byte order. Further, any such index <lb/>assignments will be constrained by the need for the relevant <lb/>quantities not to cross XDR word boundaries. <lb/>The fls_info array currently contains: <lb/>o Two 8-bit flag fields, one devoted to general file-system <lb/>characteristics and a second reserved for transport-related <lb/>capabilities. <lb/>o Six 8-bit class values that define various file system equivalence <lb/>classes as explained below. <lb/>o Four 8-bit priority values that govern file system selection as <lb/>explained below. <lb/>The general file system characteristics flag (at byte index <lb/>FSLI4BX_GFLAGS) has the following bits defined within it: <lb/>o FSLI4GF_WRITABLE indicates that this file system target is <lb/>writable, allowing it to be selected by clients that may need to <lb/>write on this file system. When the current file system instance <lb/>is writable and is defined as of the same simultaneous use class <lb/>(as specified by the value at index FSLI4BX_CLSIMUL) to which the <lb/>client was previously writing, then it must incorporate within its <lb/>data any committed write made on the source file system instance. <lb/>See Section 11.10.6, which discusses the write-verifier class. <lb/>While there is no harm in not setting this flag for a file system <lb/>that turns out to be writable, turning the flag on for a read-only <lb/>file system can cause problems for clients that select a migration <lb/>or replication target based on the flag and then find themselves <lb/>unable to write. <lb/>o FSLI4GF_CUR_REQ indicates that this replica is the one on which <lb/>the request is being made. Only a single server entry may have <lb/>this flag set and, in the case of a referral, no entry will have <lb/>it set. Note that this flag might be set even if the request was <lb/>made on a network access path different from any of those <lb/>specified in the current entry. <lb/>o FSLI4GF_ABSENT indicates that this entry corresponds to an absent <lb/>file system replica. It can only be set if FSLI4GF_CUR_REQ is <lb/>set. When both such bits are set, it indicates that a file system <lb/>instance is not usable but that the information in the entry can <lb/>be used to determine the sorts of continuity available when <lb/>switching from this replica to other possible replicas. Since <lb/>this bit can only be true if FSLI4GF_CUR_REQ is true, the value <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 286] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>could be determined using the fs_status attribute, but the <lb/>information is also made available here for the convenience of the <lb/>client. An entry with this bit, since it represents a true file <lb/>system (albeit absent), does not appear in the event of a <lb/>referral, but only when a file system has been accessed at this <lb/>location and has subsequently been migrated. <lb/>o FSLI4GF_GOING indicates that a replica, while still available, <lb/>should not be used further. The client, if using it, should make <lb/>an orderly transfer to another file system instance as <lb/>expeditiously as possible. It is expected that file systems going <lb/>out of service will be announced as FSLI4GF_GOING some time before <lb/>the actual loss of service. It is also expected that the <lb/>fli_valid_for value will be sufficiently small to allow clients to <lb/>detect and act on scheduled events, while large enough that the <lb/>cost of the requests to fetch the fs_locations_info values will <lb/>not be excessive. Values on the order of ten minutes seem <lb/>reasonable. <lb/>When this flag is seen as part of a transition into a new file <lb/>system, a client might choose to transfer immediately to another <lb/>replica, or it may reference the current file system and only <lb/>transition when a migration event occurs. Similarly, when this <lb/>flag appears as a replica in the referral, clients would likely <lb/>avoid being referred to this instance whenever there is another <lb/>choice. <lb/>This flag, like the other items within fls_info applies to the <lb/>replica, rather than to a particular path to that replica. When <lb/>it appears, a transition to a new replica rather than to a <lb/>different path to the same replica, is indicated. <lb/>o FSLI4GF_SPLIT indicates that when a transition occurs from the <lb/>current file system instance to this one, the replacement may <lb/>consist of multiple file systems. In this case, the client has to <lb/>be prepared for the possibility that objects on the same file <lb/>system before migration will be on different ones after. Note <lb/>that FSLI4GF_SPLIT is not incompatible with the file systems <lb/>belonging to the same fileid class since, if one has a set of <lb/>fileids that are unique within a file system, each subset assigned <lb/>to a smaller file system after migration would not have any <lb/>conflicts internal to that file system. <lb/>A client, in the case of a split file system, will interrogate <lb/>existing files with which it has continuing connection (it is free <lb/>to simply forget cached filehandles). If the client remembers the <lb/>directory filehandle associated with each open file, it may <lb/>proceed upward using LOOKUPP to find the new file system <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 287] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>boundaries. Note that in the event of a referral, there will not <lb/>be any such files and so these actions will not be performed. <lb/>Instead, a reference to a portion of the original file system now <lb/>split off into other file systems will encounter an fsid change <lb/>and possibly a further referral. <lb/>Once the client recognizes that one file system has been split <lb/>into two, it can prevent the disruption of running applications by <lb/>presenting the two file systems as a single one until a convenient <lb/>point to recognize the transition, such as a restart. This would <lb/>require a mapping from the server's fsids to fsids as seen by the <lb/>client, but this is already necessary for other reasons. As noted <lb/>above, existing fileids within the two descendant file systems <lb/>will not conflict. Providing non-conflicting fileids for newly <lb/>created files on the split file systems is the responsibility of <lb/>the server (or servers working in concert). The server can encode <lb/>filehandles such that filehandles generated before the split event <lb/>can be discerned from those generated after the split, allowing <lb/>the server to determine when the need for emulating two file <lb/>systems as one is over. <lb/>Although it is possible for this flag to be present in the event <lb/>of referral, it would generally be of little interest to the <lb/>client, since the client is not expected to have information <lb/>regarding the current contents of the absent file system. <lb/>The transport-flag field (at byte index FSLI4BX_TFLAGS) contains the <lb/>following bits related to the transport capabilities of the specific <lb/>network path(s) specified by the entry. <lb/>o FSLI4TF_RDMA indicates that any specified network paths provide <lb/>NFSv4.1 clients access using an RDMA-capable transport. <lb/>Attribute continuity and file system identity information are <lb/>expressed by defining equivalence relations on the sets of file <lb/>systems presented to the client. Each such relation is expressed as <lb/>a set of file system equivalence classes. For each relation, a file <lb/>system has an 8-bit class number. Two file systems belong to the <lb/>same class if both have identical non-zero class numbers. Zero is <lb/>treated as non-matching. Most often, the relevant question for the <lb/>client will be whether a given replica is identical to / continuous <lb/>with the current one in a given respect, but the information should <lb/>be available also as to whether two other replicas match in that <lb/>respect as well. <lb/>The following fields specify the file system's class numbers for the <lb/>equivalence relations used in determining the nature of file system <lb/>transitions. See Sections 11.8 through 11.13 and their various <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 288] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>subsections for details about how this information is to be used. <lb/>Servers may assign these values as they wish, so long as file system <lb/>instances that share the same value have the specified relationship <lb/>to one another; conversely, file systems that have the specified <lb/>relationship to one another share a common class value. As each <lb/>instance entry is added, the relationships of this instance to <lb/>previously entered instances can be consulted, and if one is found <lb/>that bears the specified relationship, that entry's class value can <lb/>be copied to the new entry. When no such previous entry exists, a <lb/>new value for that byte index (not previously used) can be selected, <lb/>most likely by incrementing the value of the last class value <lb/>assigned for that index. <lb/>o The field with byte index FSLI4BX_CLSIMUL defines the <lb/>simultaneous-use class for the file system. <lb/>o The field with byte index FSLI4BX_CLHANDLE defines the handle <lb/>class for the file system. <lb/>o The field with byte index FSLI4BX_CLFILEID defines the fileid <lb/>class for the file system. <lb/>o The field with byte index FSLI4BX_CLWRITEVER defines the write-<lb/>verifier class for the file system. <lb/>o The field with byte index FSLI4BX_CLCHANGE defines the change <lb/>class for the file system. <lb/>o The field with byte index FSLI4BX_CLREADDIR defines the readdir <lb/>class for the file system. <lb/>Server-specified preference information is also provided via 8-bit <lb/>values within the fls_info array. The values provide a rank and an <lb/>order (see below) to be used with separate values specifiable for the <lb/>cases of read-only and writable file systems. These values are <lb/>compared for different file systems to establish the server-specified <lb/>preference, with lower values indicating "more preferred". <lb/>Rank is used to express a strict server-imposed ordering on clients, <lb/>with lower values indicating "more preferred". Clients should <lb/>attempt to use all replicas with a given rank before they use one <lb/>with a higher rank. Only if all of those file systems are <lb/>unavailable should the client proceed to those of a higher rank. <lb/>Because specifying a rank will override client preferences, servers <lb/>should be conservative about using this mechanism, particularly when <lb/>the environment is one in which client communication characteristics <lb/>are neither tightly controlled nor visible to the server. <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 289] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>Within a rank, the order value is used to specify the server's <lb/>preference to guide the client's selection when the client's own <lb/>preferences are not controlling, with lower values of order <lb/>indicating "more preferred". If replicas are approximately equal in <lb/>all respects, clients should defer to the order specified by the <lb/>server. When clients look at server latency as part of their <lb/>selection, they are free to use this criterion, but it is suggested <lb/>that when latency differences are not significant, the server-<lb/>specified order should guide selection. <lb/>o The field at byte index FSLI4BX_READRANK gives the rank value to <lb/>be used for read-only access. <lb/>o The field at byte index FSLI4BX_READORDER gives the order value to <lb/>be used for read-only access. <lb/>o The field at byte index FSLI4BX_WRITERANK gives the rank value to <lb/>be used for writable access. <lb/>o The field at byte index FSLI4BX_WRITEORDER gives the order value <lb/>to be used for writable access. <lb/>Depending on the potential need for write access by a given client, <lb/>one of the pairs of rank and order values is used. The read rank and <lb/>order should only be used if the client knows that only reading will <lb/>ever be done or if it is prepared to switch to a different replica in <lb/>the event that any write access capability is required in the future. <lb/>11.16.2. The fs_locations_info4 Structure <lb/>The fs_locations_info4 structure, encoding the fs_locations_info <lb/>attribute, contains the following: <lb/>o The fli_flags field, which contains general flags that affect the <lb/>interpretation of this fs_locations_info4 structure and all <lb/>fs_locations_item4 structures within it. The only flag currently <lb/>defined is FSLI4IF_VAR_SUB. All bits in the fli_flags field that <lb/>are not defined should always be returned as zero. <lb/>o The fli_fs_root field, which contains the pathname of the root of <lb/>the current file system on the current server, just as it does in <lb/>the fs_locations4 structure. <lb/>o An array called fli_items of fs_locations4_item structures, which <lb/>contain information about replicas of the current file system. <lb/>Where the current file system is actually present, or has been <lb/>present, i.e., this is not a referral situation, one of the <lb/>fs_locations_item4 structures will contain an fs_locations_server4 <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 290] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>for the current server. This structure will have FSLI4GF_ABSENT <lb/>set if the current file system is absent, i.e., normal access to <lb/>it will return NFS4ERR_MOVED. <lb/>o The fli_valid_for field specifies a time in seconds for which it <lb/>is reasonable for a client to use the fs_locations_info attribute <lb/>without refetch. The fli_valid_for value does not provide a <lb/>guarantee of validity since servers can unexpectedly go out of <lb/>service or become inaccessible for any number of reasons. Clients <lb/>are well-advised to refetch this information for an actively <lb/>accessed file system at every fli_valid_for seconds. This is <lb/>particularly important when file system replicas may go out of <lb/>service in a controlled way using the FSLI4GF_GOING flag to <lb/>communicate an ongoing change. The server should set <lb/>fli_valid_for to a value that allows well-behaved clients to <lb/>notice the FSLI4GF_GOING flag and make an orderly switch before <lb/>the loss of service becomes effective. If this value is zero, <lb/>then no refetch interval is appropriate and the client need not <lb/>refetch this data on any particular schedule. In the event of a <lb/>transition to a new file system instance, a new value of the <lb/>fs_locations_info attribute will be fetched at the destination. <lb/>It is to be expected that this may have a different fli_valid_for <lb/>value, which the client should then use in the same fashion as the <lb/>previous value. Because a refetch of the attribute causes <lb/>information from all component entries to be refetched, the server <lb/>will typically provide a low value for this field if any of the <lb/>replicas are likely to go out of service in a short time frame. <lb/>Note that, because of the ability of the server to return <lb/>NFS4ERR_MOVED to trigger the use of different paths, when <lb/>alternate trunked paths are available, there is generally no need <lb/>to use low values of fli_valid_for in connection with the <lb/>management of alternate paths to the same replica. <lb/>The FSLI4IF_VAR_SUB flag within fli_flags controls whether variable <lb/>substitution is to be enabled. See Section 11.16.3 for an <lb/>explanation of variable substitution. <lb/>11.16.3. The fs_locations_item4 Structure <lb/>The fs_locations_item4 structure contains a pathname (in the field <lb/>fli_rootpath) that encodes the path of the target file system <lb/>replicas on the set of servers designated by the included <lb/>fs_locations_server4 entries. The precise manner in which this <lb/>target location is specified depends on the value of the <lb/>FSLI4IF_VAR_SUB flag within the associated fs_locations_info4 <lb/>structure. <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 291] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>If this flag is not set, then fli_rootpath simply designates the <lb/>location of the target file system within each server's single-server <lb/>namespace just as it does for the rootpath within the fs_location4 <lb/>structure. When this bit is set, however, component entries of a <lb/>certain form are subject to client-specific variable substitution so <lb/>as to allow a degree of namespace non-uniformity in order to <lb/>accommodate the selection of client-specific file system targets to <lb/>adapt to different client architectures or other characteristics. <lb/>When such substitution is in effect, a variable beginning with the <lb/>string "${" and ending with the string "}" and containing a colon is <lb/>to be replaced by the client-specific value associated with that <lb/>variable. The string "unknown" should be used by the client when it <lb/>has no value for such a variable. The pathname resulting from such <lb/>substitutions is used to designate the target file system, so that <lb/>different clients may have different file systems, corresponding to <lb/>that location in the multi-server namespace. <lb/>As mentioned above, such substituted pathname variables contain a <lb/>colon. The part before the colon is to be a DNS domain name, and the <lb/>part after is to be a case-insensitive alphanumeric string. <lb/>Where the domain is "ietf.org", only variable names defined in this <lb/>document or subsequent Standards Track RFCs are subject to such <lb/>substitution. Organizations are free to use their domain names to <lb/>create their own sets of client-specific variables, to be subject to <lb/>such substitution. In cases where such variables are intended to be <lb/>used more broadly than a single organization, publication of an <lb/>Informational RFC defining such variables is RECOMMENDED. <lb/>The variable ${ietf.org:CPU_ARCH} is used to denote that the CPU <lb/>architecture object files are compiled. This specification does not <lb/>limit the acceptable values (except that they must be valid UTF-8 <lb/>strings), but such values as "x86", "x86_64", and "sparc" would be <lb/>expected to be used in line with industry practice. <lb/>The variable ${ietf.org:OS_TYPE} is used to denote the operating <lb/>system, and thus the kernel and library APIs, for which code might be <lb/>compiled. This specification does not limit the acceptable values <lb/>(except that they must be valid UTF-8 strings), but such values as <lb/>"linux" and "freebsd" would be expected to be used in line with <lb/>industry practice. <lb/>The variable ${ietf.org:OS_VERSION} is used to denote the operating <lb/>system version, and thus the specific details of versioned <lb/>interfaces, for which code might be compiled. This specification <lb/>does not limit the acceptable values (except that they must be valid <lb/>UTF-8 strings). However, combinations of numbers and letters with <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 292] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>interspersed dots would be expected to be used in line with industry <lb/>practice, with the details of the version format depending on the <lb/>specific value of the variable ${ietf.org:OS_TYPE} with which it is <lb/>used. <lb/>Use of these variables could result in the direction of different <lb/>clients to different file systems on the same server, as appropriate <lb/>to particular clients. In cases in which the target file systems are <lb/>located on different servers, a single server could serve as a <lb/>referral point so that each valid combination of variable values <lb/>would designate a referral hosted on a single server, with the <lb/>targets of those referrals on a number of different servers. <lb/>Because namespace administration is affected by the values selected <lb/>to substitute for various variables, clients should provide <lb/>convenient means of determining what variable substitutions a client <lb/>will implement, as well as, where appropriate, providing means to <lb/>control the substitutions to be used. The exact means by which this <lb/>will be done is outside the scope of this specification. <lb/>Although variable substitution is most suitable for use in the <lb/>context of referrals, it may be used in the context of replication <lb/>and migration. If it is used in these contexts, the server must <lb/>ensure that no matter what values the client presents for the <lb/>substituted variables, the result is always a valid successor file <lb/>system instance to that from which a transition is occurring, i.e., <lb/>that the data is identical or represents a later image of a writable <lb/>file system. <lb/>Note that when fli_rootpath is a null pathname (that is, one with <lb/>zero components), the file system designated is at the root of the <lb/>specified server, whether or not the FSLI4IF_VAR_SUB flag within the <lb/>associated fs_locations_info4 structure is set. <lb/>11.17. The Attribute fs_status <lb/>In an environment in which multiple copies of the same basic set of <lb/>data are available, information regarding the particular source of <lb/>such data and the relationships among different copies can be very <lb/>helpful in providing consistent data to applications. <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 293] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>enum fs4_status_type { <lb/>STATUS4_FIXED = 1, <lb/>STATUS4_UPDATED = 2, <lb/>STATUS4_VERSIONED = 3, <lb/>STATUS4_WRITABLE = 4, <lb/>STATUS4_REFERRAL = 5 <lb/>}; <lb/>struct fs4_status { <lb/>bool <lb/>fss_absent; <lb/>fs4_status_type fss_type; <lb/>utf8str_cs <lb/>fss_source; <lb/>utf8str_cs <lb/>fss_current; <lb/>int32_t <lb/>fss_age; <lb/>nfstime4 <lb/>fss_version; <lb/>}; <lb/>The boolean fss_absent indicates whether the file system is currently <lb/>absent. This value will be set if the file system was previously <lb/>present and becomes absent, or if the file system has never been <lb/>present and the type is STATUS4_REFERRAL. When this boolean is set <lb/>and the type is not STATUS4_REFERRAL, the remaining information in <lb/>the fs4_status reflects that last valid when the file system was <lb/>present. <lb/>The fss_type field indicates the kind of file system image <lb/>represented. This is of particular importance when using the version <lb/>values to determine appropriate succession of file system images. <lb/>When fss_absent is set, and the file system was previously present, <lb/>the value of fss_type reflected is that when the file was last <lb/>present. Five values are distinguished: <lb/>o STATUS4_FIXED, which indicates a read-only image in the sense that <lb/>it will never change. The possibility is allowed that, as a <lb/>result of migration or switch to a different image, changed data <lb/>can be accessed, but within the confines of this instance, no <lb/>change is allowed. The client can use this fact to cache <lb/>aggressively. <lb/>o STATUS4_VERSIONED, which indicates that the image, like the <lb/>STATUS4_UPDATED case, is updated externally, but it provides a <lb/>guarantee that the server will carefully update an associated <lb/>version value so that the client can protect itself from a <lb/>situation in which it reads data from one version of the file <lb/>system and then later reads data from an earlier version of the <lb/>same file system. See below for a discussion of how this can be <lb/>done. <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 294] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>o STATUS4_UPDATED, which indicates an image that cannot be updated <lb/>by the user writing to it but that may be changed externally, <lb/>typically because it is a periodically updated copy of another <lb/>writable file system somewhere else. In this case, version <lb/>information is not provided, and the client does not have the <lb/>responsibility of making sure that this version only advances upon <lb/>a file system instance transition. In this case, it is the <lb/>responsibility of the server to make sure that the data presented <lb/>after a file system instance transition is a proper successor <lb/>image and includes all changes seen by the client and any change <lb/>made before all such changes. <lb/>o STATUS4_WRITABLE, which indicates that the file system is an <lb/>actual writable one. The client need not, of course, actually <lb/>write to the file system, but once it does, it should not accept a <lb/>transition to anything other than a writable instance of that same <lb/>file system. <lb/>o STATUS4_REFERRAL, which indicates that the file system in question <lb/>is absent and has never been present on this server. <lb/>Note that in the STATUS4_UPDATED and STATUS4_VERSIONED cases, the <lb/>server is responsible for the appropriate handling of locks that are <lb/>inconsistent with external changes to delegations. If a server gives <lb/>out delegations, they SHOULD be recalled before an inconsistent <lb/>change is made to the data, and MUST be revoked if this is not <lb/>possible. Similarly, if an OPEN is inconsistent with data that is <lb/>changed (the OPEN has OPEN4_SHARE_DENY_WRITE/OPEN4_SHARE_DENY_BOTH <lb/>and the data is changed), that OPEN SHOULD be considered <lb/>administratively revoked. <lb/>The opaque strings fss_source and fss_current provide a way of <lb/>presenting information about the source of the file system image <lb/>being present. It is not intended that the client do anything with <lb/>this information other than make it available to administrative <lb/>tools. It is intended that this information be helpful when <lb/>researching possible problems with a file system image that might <lb/>arise when it is unclear if the correct image is being accessed and, <lb/>if not, how that image came to be made. This kind of diagnostic <lb/>information will be helpful, if, as seems likely, copies of file <lb/>systems are made in many different ways (e.g., simple user-level <lb/>copies, file-system-level point-in-time copies, clones of the <lb/>underlying storage), under a variety of administrative arrangements. <lb/>In such environments, determining how a given set of data was <lb/>constructed can be very helpful in resolving problems. <lb/>The opaque string fss_source is used to indicate the source of a <lb/>given file system with the expectation that tools capable of creating <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 295] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>a file system image propagate this information, when possible. It is <lb/>understood that this may not always be possible since a user-level <lb/>copy may be thought of as creating a new data set and the tools used <lb/>may have no mechanism to propagate this data. When a file system is <lb/>initially created, it is desirable to associate with it data <lb/>regarding how the file system was created, where it was created, who <lb/>created it, etc. Making this information available in this attribute <lb/>in a human-readable string will be helpful for applications and <lb/>system administrators and will also serve to make it available when <lb/>the original file system is used to make subsequent copies. <lb/>The opaque string fss_current should provide whatever information is <lb/>available about the source of the current copy. Such information <lb/>includes the tool creating it, any relevant parameters to that tool, <lb/>the time at which the copy was done, the user making the change, the <lb/>server on which the change was made, etc. All information should be <lb/>in a human-readable string. <lb/>The field fss_age provides an indication of how out-of-date the file <lb/>system currently is with respect to its ultimate data source (in case <lb/>of cascading data updates). This complements the fls_currency field <lb/>of fs_locations_server4 (see Section 11.16) in the following way: the <lb/>information in fls_currency gives a bound for how out of date the <lb/>data in a file system might typically get, while the value in fss_age <lb/>gives a bound on how out-of-date that data actually is. Negative <lb/>values imply that no information is available. A zero means that <lb/>this data is known to be current. A positive value means that this <lb/>data is known to be no older than that number of seconds with respect <lb/>to the ultimate data source. Using this value, the client may be <lb/>able to decide that a data copy is too old, so that it may search for <lb/>a newer version to use. <lb/>The fss_version field provides a version identification, in the form <lb/>of a time value, such that successive versions always have later time <lb/>values. When the fs_type is anything other than STATUS4_VERSIONED, <lb/>the server may provide such a value, but there is no guarantee as to <lb/>its validity and clients will not use it except to provide additional <lb/>information to add to fss_source and fss_current. <lb/>When fss_type is STATUS4_VERSIONED, servers SHOULD provide a value of <lb/>fss_version that progresses monotonically whenever any new version of <lb/>the data is established. This allows the client, if reliable image <lb/>progression is important to it, to fetch this attribute as part of <lb/>each COMPOUND where data or metadata from the file system is used. <lb/>When it is important to the client to make sure that only valid <lb/>successor images are accepted, it must make sure that it does not <lb/>read data or metadata from the file system without updating its sense <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 296] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>of the current state of the image. This is to avoid the possibility <lb/>that the fs_status that the client holds will be one for an earlier <lb/>image, which would cause the client to accept a new file system <lb/>instance that is later than that but still earlier than the updated <lb/>data read by the client. <lb/>In order to accept valid images reliably, the client must do a <lb/>GETATTR of the fs_status attribute that follows any interrogation of <lb/>data or metadata within the file system in question. Often this is <lb/>most conveniently done by appending such a GETATTR after all other <lb/>operations that reference a given file system. When errors occur <lb/>between reading file system data and performing such a GETATTR, care <lb/>must be exercised to make sure that the data in question is not used <lb/>before obtaining the proper fs_status value. In this connection, <lb/>when an OPEN is done within such a versioned file system and the <lb/>associated GETATTR of fs_status is not successfully completed, the <lb/>open file in question must not be accessed until that fs_status is <lb/>fetched. <lb/>The procedure above will ensure that before using any data from the <lb/>file system the client has in hand a newly-fetched current version of <lb/>the file system image. Multiple values for multiple requests in <lb/>flight can be resolved by assembling them into the required partial <lb/>order (and the elements should form a total order within the partial <lb/>order) and using the last. The client may then, when switching among <lb/>file system instances, decline to use an instance that does not have <lb/>an fss_type of STATUS4_VERSIONED or whose fss_version field is <lb/>earlier than the last one obtained from the predecessor file system <lb/>instance. <lb/>12. Parallel NFS (pNFS) <lb/>12.1. Introduction <lb/>pNFS is an OPTIONAL feature within NFSv4.1; the pNFS feature set <lb/>allows direct client access to the storage devices containing file <lb/>data. When file data for a single NFSv4 server is stored on multiple <lb/>and/or higher-throughput storage devices (by comparison to the <lb/>server's throughput capability), the result can be significantly <lb/>better file access performance. The relationship among multiple <lb/>clients, a single server, and multiple storage devices for pNFS <lb/>(server and clients have access to all storage devices) is shown in <lb/>Figure 1. <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 297] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>+-----------+ <lb/>|+-----------+ <lb/>+-----------+ <lb/>||+-----------+ <lb/>| <lb/>| <lb/>||| <lb/>| <lb/>NFSv4.1 + pNFS <lb/>| <lb/>| <lb/>+|| Clients |<------------------------------>| <lb/>Server | <lb/>+| <lb/>| <lb/>| <lb/>| <lb/>+-----------+ <lb/>| <lb/>| <lb/>||| <lb/>+-----------+ <lb/>||| <lb/>| <lb/>||| <lb/>| <lb/>||| Storage <lb/>+-----------+ <lb/>| <lb/>||| Protocol <lb/>|+-----------+ <lb/>| <lb/>||+----------------||+-----------+ Control <lb/>| <lb/>|+-----------------||| <lb/>| <lb/>Protocol| <lb/>+------------------+|| Storage |------------+ <lb/>+| Devices | <lb/>+-----------+ <lb/>Figure 1 <lb/>In this model, the clients, server, and storage devices are <lb/>responsible for managing file access. This is in contrast to NFSv4 <lb/>without pNFS, where it is primarily the server's responsibility; some <lb/>of this responsibility may be delegated to the client under strictly <lb/>specified conditions. See Section 12.2.5 for a discussion of the <lb/>Storage Protocol. See Section 12.2.6 for a discussion of the Control <lb/>Protocol. <lb/>pNFS takes the form of OPTIONAL operations that manage protocol <lb/>objects called 'layouts' (Section 12.2.7) that contain a byte-range <lb/>and storage location information. The layout is managed in a similar <lb/>fashion as NFSv4.1 data delegations. For example, the layout is <lb/>leased, recallable, and revocable. However, layouts are distinct <lb/>abstractions and are manipulated with new operations. When a client <lb/>holds a layout, it is granted the ability to directly access the <lb/>byte-range at the storage location specified in the layout. <lb/>There are interactions between layouts and other NFSv4.1 abstractions <lb/>such as data delegations and byte-range locking. Delegation issues <lb/>are discussed in Section 12.5.5. Byte-range locking issues are <lb/>discussed in Sections 12.2.9 and 12.5.1. <lb/>12.2. pNFS Definitions <lb/>NFSv4.1's pNFS feature provides parallel data access to a file system <lb/>that stripes its content across multiple storage servers. The first <lb/>instantiation of pNFS, as part of NFSv4.1, separates the file system <lb/>protocol processing into two parts: metadata processing and data <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 298] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>processing. Data consist of the contents of regular files that are <lb/>striped across storage servers. Data striping occurs in at least two <lb/>ways: on a file-by-file basis and, within sufficiently large files, <lb/>on a block-by-block basis. In contrast, striped access to metadata <lb/>by pNFS clients is not provided in NFSv4.1, even though the file <lb/>system back end of a pNFS server might stripe metadata. Metadata <lb/>consist of everything else, including the contents of non-regular <lb/>files (e.g., directories); see Section 12.2.1. The metadata <lb/>functionality is implemented by an NFSv4.1 server that supports pNFS <lb/>and the operations described in Section 18; such a server is called a <lb/>metadata server (Section 12.2.2). <lb/>The data functionality is implemented by one or more storage devices, <lb/>each of which are accessed by the client via a storage protocol. A <lb/>subset (defined in Section 13.6) of NFSv4.1 is one such storage <lb/>protocol. New terms are introduced to the NFSv4.1 nomenclature and <lb/>existing terms are clarified to allow for the description of the pNFS <lb/>feature. <lb/>12.2.1. Metadata <lb/>Information about a file system object, such as its name, location <lb/>within the namespace, owner, ACL, and other attributes. Metadata may <lb/>also include storage location information, and this will vary based <lb/>on the underlying storage mechanism that is used. <lb/>12.2.2. Metadata Server <lb/>An NFSv4.1 server that supports the pNFS feature. A variety of <lb/>architectural choices exist for the metadata server and its use of <lb/>file system information held at the server. Some servers may contain <lb/>metadata only for file objects residing at the metadata server, while <lb/>the file data resides on associated storage devices. Other metadata <lb/>servers may hold both metadata and a varying degree of file data. <lb/>12.2.3. pNFS Client <lb/>An NFSv4.1 client that supports pNFS operations and supports at least <lb/>one storage protocol for performing I/O to storage devices. <lb/>12.2.4. Storage Device <lb/>A storage device stores a regular file's data, but leaves metadata <lb/>management to the metadata server. A storage device could be another <lb/>NFSv4.1 server, an object-based storage device (OSD), a block device <lb/>accessed over a System Area Network (SAN, e.g., either FiberChannel <lb/>or iSCSI SAN), or some other entity. <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 299] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>12.2.5. Storage Protocol <lb/>As noted in Figure 1, the storage protocol is the method used by the <lb/>client to store and retrieve data directly from the storage devices. <lb/>The NFSv4.1 pNFS feature has been structured to allow for a variety <lb/>of storage protocols to be defined and used. One example storage <lb/>protocol is NFSv4.1 itself (as documented in Section 13). Other <lb/>options for the storage protocol are described elsewhere and include: <lb/>o Block/volume protocols such as Internet SCSI (iSCSI) [51] and FCP <lb/>[52]. The block/volume protocol support can be independent of the <lb/>addressing structure of the block/volume protocol used, allowing <lb/>more than one protocol to access the same file data and enabling <lb/>extensibility to other block/volume protocols. See [44] for a <lb/>layout specification that allows pNFS to use block/volume storage <lb/>protocols. <lb/>o Object protocols such as OSD over iSCSI or Fibre Channel [53]. <lb/>See [43] for a layout specification that allows pNFS to use object <lb/>storage protocols. <lb/>It is possible that various storage protocols are available to both <lb/>client and server and it may be possible that a client and server do <lb/>not have a matching storage protocol available to them. Because of <lb/>this, the pNFS server MUST support normal NFSv4.1 access to any file <lb/>accessible by the pNFS feature; this will allow for continued <lb/>interoperability between an NFSv4.1 client and server. <lb/>12.2.6. Control Protocol <lb/>As noted in Figure 1, the control protocol is used by the exported <lb/>file system between the metadata server and storage devices. <lb/>Specification of such protocols is outside the scope of the NFSv4.1 <lb/>protocol. Such control protocols would be used to control activities <lb/>such as the allocation and deallocation of storage, the management of <lb/>state required by the storage devices to perform client access <lb/>control, and, depending on the storage protocol, the enforcement of <lb/>authentication and authorization so that restrictions that would be <lb/>enforced by the metadata server are also enforced by the storage <lb/>device. <lb/>A particular control protocol is not REQUIRED by NFSv4.1 but <lb/>requirements are placed on the control protocol for maintaining <lb/>attributes like modify time, the change attribute, and the end-of-<lb/>file (EOF) position. Note that if pNFS is layered over a clustered, <lb/>parallel file system (e.g., PVFS [54]), the mechanisms that enable <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 300] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>clustering and parallelism in that file system can be considered the <lb/>control protocol. <lb/>12.2.7. Layout Types <lb/>A layout describes the mapping of a file's data to the storage <lb/>devices that hold the data. A layout is said to belong to a specific <lb/>layout type (data type layouttype4, see Section 3.3.13). The layout <lb/>type allows for variants to handle different storage protocols, such <lb/>as those associated with block/volume [44], object [43], and file <lb/>(Section 13) layout types. A metadata server, along with its control <lb/>protocol, MUST support at least one layout type. A private sub-range <lb/>of the layout type namespace is also defined. Values from the <lb/>private layout type range MAY be used for internal testing or <lb/>experimentation (see Section 3.3.13). <lb/>As an example, the organization of the file layout type could be an <lb/>array of tuples (e.g., device ID, filehandle), along with a <lb/>definition of how the data is stored across the devices (e.g., <lb/>striping). A block/volume layout might be an array of tuples that <lb/>store <device ID, block number, block count> along with information <lb/>about block size and the associated file offset of the block number. <lb/>An object layout might be an array of tuples <device ID, object ID> <lb/>and an additional structure (i.e., the aggregation map) that defines <lb/>how the logical byte sequence of the file data is serialized into the <lb/>different objects. Note that the actual layouts are typically more <lb/>complex than these simple expository examples. <lb/>Requests for pNFS-related operations will often specify a layout <lb/>type. Examples of such operations are GETDEVICEINFO and LAYOUTGET. <lb/>The response for these operations will include structures such as a <lb/>device_addr4 or a layout4, each of which includes a layout type <lb/>within it. The layout type sent by the server MUST always be the <lb/>same one requested by the client. When a server sends a response <lb/>that includes a different layout type, the client SHOULD ignore the <lb/>response and behave as if the server had returned an error response. <lb/>12.2.8. Layout <lb/>A layout defines how a file's data is organized on one or more <lb/>storage devices. There are many potential layout types; each of the <lb/>layout types are differentiated by the storage protocol used to <lb/>access data and by the aggregation scheme that lays out the file data <lb/>on the underlying storage devices. A layout is precisely identified <lb/>by the tuple <client ID, filehandle, layout type, iomode, range>, <lb/>where filehandle refers to the filehandle of the file on the metadata <lb/>server. <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 301] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>It is important to define when layouts overlap and/or conflict with <lb/>each other. For two layouts with overlapping byte-ranges to actually <lb/>overlap each other, both layouts must be of the same layout type, <lb/>correspond to the same filehandle, and have the same iomode. Layouts <lb/>conflict when they overlap and differ in the content of the layout <lb/>(i.e., the storage device/file mapping parameters differ). Note that <lb/>differing iomodes do not lead to conflicting layouts. It is <lb/>permissible for layouts with different iomodes, pertaining to the <lb/>same byte-range, to be held by the same client. An example of this <lb/>would be copy-on-write functionality for a block/volume layout type. <lb/>12.2.9. Layout Iomode <lb/>The layout iomode (data type layoutiomode4, see Section 3.3.20) <lb/>indicates to the metadata server the client's intent to perform <lb/>either just READ operations or a mixture containing READ and WRITE <lb/>operations. For certain layout types, it is useful for a client to <lb/>specify this intent at the time it sends LAYOUTGET (Section 18.43). <lb/>For example, for block/volume-based protocols, block allocation could <lb/>occur when a LAYOUTIOMODE4_RW iomode is specified. A special <lb/>LAYOUTIOMODE4_ANY iomode is defined and can only be used for <lb/>LAYOUTRETURN and CB_LAYOUTRECALL, not for LAYOUTGET. It specifies <lb/>that layouts pertaining to both LAYOUTIOMODE4_READ and <lb/>LAYOUTIOMODE4_RW iomodes are being returned or recalled, <lb/>respectively. <lb/>A storage device may validate I/O with regard to the iomode; this is <lb/>dependent upon storage device implementation and layout type. Thus, <lb/>if the client's layout iomode is inconsistent with the I/O being <lb/>performed, the storage device may reject the client's I/O with an <lb/>error indicating that a new layout with the correct iomode should be <lb/>obtained via LAYOUTGET. For example, if a client gets a layout with <lb/>a LAYOUTIOMODE4_READ iomode and performs a WRITE to a storage device, <lb/>the storage device is allowed to reject that WRITE. <lb/>The use of the layout iomode does not conflict with OPEN share modes <lb/>or byte-range LOCK operations; open share mode and byte-range lock <lb/>conflicts are enforced as they are without the use of pNFS and are <lb/>logically separate from the pNFS layout level. Open share modes and <lb/>byte-range locks are the preferred method for restricting user access <lb/>to data files. For example, an OPEN of OPEN4_SHARE_ACCESS_WRITE does <lb/>not conflict with a LAYOUTGET containing an iomode of <lb/>LAYOUTIOMODE4_RW performed by another client. Applications that <lb/>depend on writing into the same file concurrently may use byte-range <lb/>locking to serialize their accesses. <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 302] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>12.2.10. Device IDs <lb/>The device ID (data type deviceid4, see Section 3.3.14) identifies a <lb/>group of storage devices. The scope of a device ID is the pair <lb/><client ID, layout type>. In practice, a significant amount of <lb/>information may be required to fully address a storage device. <lb/>Rather than embedding all such information in a layout, layouts embed <lb/>device IDs. The NFSv4.1 operation GETDEVICEINFO (Section 18.40) is <lb/>used to retrieve the complete address information (including all <lb/>device addresses for the device ID) regarding the storage device <lb/>according to its layout type and device ID. For example, the address <lb/>of an NFSv4.1 data server or of an object-based storage device could <lb/>be an IP address and port. The address of a block storage device <lb/>could be a volume label. <lb/>Clients cannot expect the mapping between a device ID and its storage <lb/>device address(es) to persist across metadata server restart. See <lb/>Section 12.7.4 for a description of how recovery works in that <lb/>situation. <lb/>A device ID lives as long as there is a layout referring to the <lb/>device ID. If there are no layouts referring to the device ID, the <lb/>server is free to delete the device ID any time. Once a device ID is <lb/>deleted by the server, the server MUST NOT reuse the device ID for <lb/>the same layout type and client ID again. This requirement is <lb/>feasible because the device ID is 16 bytes long, leaving sufficient <lb/>room to store a generation number if the server's implementation <lb/>requires most of the rest of the device ID's content to be reused. <lb/>This requirement is necessary because otherwise the race conditions <lb/>between asynchronous notification of device ID addition and deletion <lb/>would be too difficult to sort out. <lb/>Device ID to device address mappings are not leased, and can be <lb/>changed at any time. (Note that while device ID to device address <lb/>mappings are likely to change after the metadata server restarts, the <lb/>server is not required to change the mappings.) A server has two <lb/>choices for changing mappings. It can recall all layouts referring <lb/>to the device ID or it can use a notification mechanism. <lb/>The NFSv4.1 protocol has no optimal way to recall all layouts that <lb/>referred to a particular device ID (unless the server associates a <lb/>single device ID with a single fsid or a single client ID; in which <lb/>case, CB_LAYOUTRECALL has options for recalling all layouts <lb/>associated with the fsid, client ID pair, or just the client ID). <lb/>Via a notification mechanism (see Section 20.12), device ID to device <lb/>address mappings can change over the duration of server operation <lb/>without recalling or revoking the layouts that refer to device ID. <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 303] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>The notification mechanism can also delete a device ID, but only if <lb/>the client has no layouts referring to the device ID. A notification <lb/>of a change to a device ID to device address mapping will immediately <lb/>or eventually invalidate some or all of the device ID's mappings. <lb/>The server MUST support notifications and the client must request <lb/>them before they can be used. For further information about the <lb/>notification types Section 20.12. <lb/>12.3. pNFS Operations <lb/>NFSv4.1 has several operations that are needed for pNFS servers, <lb/>regardless of layout type or storage protocol. These operations are <lb/>all sent to a metadata server and summarized here. While pNFS is an <lb/>OPTIONAL feature, if pNFS is implemented, some operations are <lb/>REQUIRED in order to comply with pNFS. See Section 17. <lb/>These are the fore channel pNFS operations: <lb/>GETDEVICEINFO (Section 18.40), as noted previously <lb/>(Section 12.2.10), returns the mapping of device ID to storage <lb/>device address. <lb/>GETDEVICELIST (Section 18.41) allows clients to fetch all device IDs <lb/>for a specific file system. <lb/>LAYOUTGET (Section 18.43) is used by a client to get a layout for a <lb/>file. <lb/>LAYOUTCOMMIT (Section 18.42) is used to inform the metadata server <lb/>of the client's intent to commit data that has been written to the <lb/>storage device (the storage device as originally indicated in the <lb/>return value of LAYOUTGET). <lb/>LAYOUTRETURN (Section 18.44) is used to return layouts for a file, a <lb/>file system ID (FSID), or a client ID. <lb/>These are the backchannel pNFS operations: <lb/>CB_LAYOUTRECALL (Section 20.3) recalls a layout, all layouts <lb/>belonging to a file system, or all layouts belonging to a client <lb/>ID. <lb/>CB_RECALL_ANY (Section 20.6) tells a client that it needs to return <lb/>some number of recallable objects, including layouts, to the <lb/>metadata server. <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 304] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>CB_RECALLABLE_OBJ_AVAIL (Section 20.7) tells a client that a <lb/>recallable object that it was denied (in case of pNFS, a layout <lb/>denied by LAYOUTGET) due to resource exhaustion is now available. <lb/>CB_NOTIFY_DEVICEID (Section 20.12) notifies the client of changes to <lb/>device IDs. <lb/>12.4. pNFS Attributes <lb/>A number of attributes specific to pNFS are listed and described in <lb/>Section 5.12. <lb/>12.5. Layout Semantics <lb/>12.5.1. Guarantees Provided by Layouts <lb/>Layouts grant to the client the ability to access data located at a <lb/>storage device with the appropriate storage protocol. The client is <lb/>guaranteed the layout will be recalled when one of two things occur: <lb/>either a conflicting layout is requested or the state encapsulated by <lb/>the layout becomes invalid (this can happen when an event directly or <lb/>indirectly modifies the layout). When a layout is recalled and <lb/>returned by the client, the client continues with the ability to <lb/>access file data with normal NFSv4.1 operations through the metadata <lb/>server. Only the ability to access the storage devices is affected. <lb/>The requirement of NFSv4.1 that all user access rights MUST be <lb/>obtained through the appropriate OPEN, LOCK, and ACCESS operations is <lb/>not modified with the existence of layouts. Layouts are provided to <lb/>NFSv4.1 clients, and user access still follows the rules of the <lb/>protocol as if they did not exist. It is a requirement that for a <lb/>client to access a storage device, a layout must be held by the <lb/>client. If a storage device receives an I/O request for a byte-range <lb/>for which the client does not hold a layout, the storage device <lb/>SHOULD reject that I/O request. Note that the act of modifying a <lb/>file for which a layout is held does not necessarily conflict with <lb/>the holding of the layout that describes the file being modified. <lb/>Therefore, it is the requirement of the storage protocol or layout <lb/>type that determines the necessary behavior. For example, block/ <lb/>volume layout types require that the layout's iomode agree with the <lb/>type of I/O being performed. <lb/>Depending upon the layout type and storage protocol in use, storage <lb/>device access permissions may be granted by LAYOUTGET and may be <lb/>encoded within the type-specific layout. For an example of storage <lb/>device access permissions, see an object-based protocol such as [53]. <lb/>If access permissions are encoded within the layout, the metadata <lb/>server SHOULD recall the layout when those permissions become invalid <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 305] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>for any reason --for example, when a file becomes unwritable or <lb/>inaccessible to a client. Note, clients are still required to <lb/>perform the appropriate OPEN, LOCK, and ACCESS operations as <lb/>described above. The degree to which it is possible for the client <lb/>to circumvent these operations and the consequences of doing so must <lb/>be clearly specified by the individual layout type specifications. <lb/>In addition, these specifications must be clear about the <lb/>requirements and non-requirements for the checking performed by the <lb/>server. <lb/>In the presence of pNFS functionality, mandatory byte-range locks <lb/>MUST behave as they would without pNFS. Therefore, if mandatory file <lb/>locks and layouts are provided simultaneously, the storage device <lb/>MUST be able to enforce the mandatory byte-range locks. For example, <lb/>if one client obtains a mandatory byte-range lock and a second client <lb/>accesses the storage device, the storage device MUST appropriately <lb/>restrict I/O for the range of the mandatory byte-range lock. If the <lb/>storage device is incapable of providing this check in the presence <lb/>of mandatory byte-range locks, then the metadata server MUST NOT <lb/>grant layouts and mandatory byte-range locks simultaneously. <lb/>12.5.2. Getting a Layout <lb/>A client obtains a layout with the LAYOUTGET operation. The metadata <lb/>server will grant layouts of a particular type (e.g., block/volume, <lb/>object, or file). The client selects an appropriate layout type that <lb/>the server supports and the client is prepared to use. The layout <lb/>returned to the client might not exactly match the requested byte-<lb/>range as described in Section 18.43.3. As needed a client may send <lb/>multiple LAYOUTGET operations; these might result in multiple <lb/>overlapping, non-conflicting layouts (see Section 12.2.8). <lb/>In order to get a layout, the client must first have opened the file <lb/>via the OPEN operation. When a client has no layout on a file, it <lb/>MUST present an open stateid, a delegation stateid, or a byte-range <lb/>lock stateid in the loga_stateid argument. A successful LAYOUTGET <lb/>result includes a layout stateid. The first successful LAYOUTGET <lb/>processed by the server using a non-layout stateid as an argument <lb/>MUST have the "seqid" field of the layout stateid in the response set <lb/>to one. Thereafter, the client MUST use a layout stateid (see <lb/>Section 12.5.3) on future invocations of LAYOUTGET on the file, and <lb/>the "seqid" MUST NOT be set to zero. Once the layout has been <lb/>retrieved, it can be held across multiple OPEN and CLOSE sequences. <lb/>Therefore, a client may hold a layout for a file that is not <lb/>currently open by any user on the client. This allows for the <lb/>caching of layouts beyond CLOSE. <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 306] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>The storage protocol used by the client to access the data on the <lb/>storage device is determined by the layout's type. The client is <lb/>responsible for matching the layout type with an available method to <lb/>interpret and use the layout. The method for this layout type <lb/>selection is outside the scope of the pNFS functionality. <lb/>Although the metadata server is in control of the layout for a file, <lb/>the pNFS client can provide hints to the server when a file is opened <lb/>or created about the preferred layout type and aggregation schemes. <lb/>pNFS introduces a layout_hint attribute (Section 5.12.4) that the <lb/>client can set at file creation time to provide a hint to the server <lb/>for new files. Setting this attribute separately, after the file has <lb/>been created might make it difficult, or impossible, for the server <lb/>implementation to comply. <lb/>Because the EXCLUSIVE4 createmode4 does not allow the setting of <lb/>attributes at file creation time, NFSv4.1 introduces the EXCLUSIVE4_1 <lb/>createmode4, which does allow attributes to be set at file creation <lb/>time. In addition, if the session is created with persistent reply <lb/>caches, EXCLUSIVE4_1 is neither necessary nor allowed. Instead, <lb/>GUARDED4 both works better and is prescribed. Table 10 in <lb/>Section 18.16.3 summarizes how a client is allowed to send an <lb/>exclusive create. <lb/>12.5.3. Layout Stateid <lb/>As with all other stateids, the layout stateid consists of a "seqid" <lb/>and "other" field. Once a layout stateid is established, the "other" <lb/>field will stay constant unless the stateid is revoked or the client <lb/>returns all layouts on the file and the server disposes of the <lb/>stateid. The "seqid" field is initially set to one, and is never <lb/>zero on any NFSv4.1 operation that uses layout stateids, whether it <lb/>is a fore channel or backchannel operation. After the layout stateid <lb/>is established, the server increments by one the value of the "seqid" <lb/>in each subsequent LAYOUTGET and LAYOUTRETURN response, and in each <lb/>CB_LAYOUTRECALL request. <lb/>Given the design goal of pNFS to provide parallelism, the layout <lb/>stateid differs from other stateid types in that the client is <lb/>expected to send LAYOUTGET and LAYOUTRETURN operations in parallel. <lb/>The "seqid" value is used by the client to properly sort responses to <lb/>LAYOUTGET and LAYOUTRETURN. The "seqid" is also used to prevent race <lb/>conditions between LAYOUTGET and CB_LAYOUTRECALL. Given that the <lb/>processing rules differ from layout stateids and other stateid types, <lb/>only the pNFS sections of this document should be considered to <lb/>determine proper layout stateid handling. <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 307] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>Once the client receives a layout stateid, it MUST use the correct <lb/>"seqid" for subsequent LAYOUTGET or LAYOUTRETURN operations. The <lb/>correct "seqid" is defined as the highest "seqid" value from <lb/>responses of fully processed LAYOUTGET or LAYOUTRETURN operations or <lb/>arguments of a fully processed CB_LAYOUTRECALL operation. Since the <lb/>server is incrementing the "seqid" value on each layout operation, <lb/>the client may determine the order of operation processing by <lb/>inspecting the "seqid" value. In the case of overlapping layout <lb/>ranges, the ordering information will provide the client the <lb/>knowledge of which layout ranges are held. Note that overlapping <lb/>layout ranges may occur because of the client's specific requests or <lb/>because the server is allowed to expand the range of a requested <lb/>layout and notify the client in the LAYOUTRETURN results. Additional <lb/>layout stateid sequencing requirements are provided in <lb/>Section 12.5.5.2. <lb/>The client's receipt of a "seqid" is not sufficient for subsequent <lb/>use. The client must fully process the operations before the "seqid" <lb/>can be used. For LAYOUTGET results, if the client is not using the <lb/>forgetful model (Section 12.5.5.1), it MUST first update its record <lb/>of what ranges of the file's layout it has before using the seqid. <lb/>For LAYOUTRETURN results, the client MUST delete the range from its <lb/>record of what ranges of the file's layout it had before using the <lb/>seqid. For CB_LAYOUTRECALL arguments, the client MUST send a <lb/>response to the recall before using the seqid. The fundamental <lb/>requirement in client processing is that the "seqid" is used to <lb/>provide the order of processing. LAYOUTGET results may be processed <lb/>in parallel. LAYOUTRETURN results may be processed in parallel. <lb/>LAYOUTGET and LAYOUTRETURN responses may be processed in parallel as <lb/>long as the ranges do not overlap. CB_LAYOUTRECALL request <lb/>processing MUST be processed in "seqid" order at all times. <lb/>Once a client has no more layouts on a file, the layout stateid is no <lb/>longer valid and MUST NOT be used. Any attempt to use such a layout <lb/>stateid will result in NFS4ERR_BAD_STATEID. <lb/>12.5.4. Committing a Layout <lb/>Allowing for varying storage protocol capabilities, the pNFS protocol <lb/>does not require the metadata server and storage devices to have a <lb/>consistent view of file attributes and data location mappings. Data <lb/>location mapping refers to aspects such as which offsets store data <lb/>as opposed to storing holes (see Section 13.4.4 for a discussion). <lb/>Related issues arise for storage protocols where a layout may hold <lb/>provisionally allocated blocks where the allocation of those blocks <lb/>does not survive a complete restart of both the client and server. <lb/>Because of this inconsistency, it is necessary to resynchronize the <lb/>client with the metadata server and its storage devices and make any <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 308] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>potential changes available to other clients. This is accomplished <lb/>by use of the LAYOUTCOMMIT operation. <lb/>The LAYOUTCOMMIT operation is responsible for committing a modified <lb/>layout to the metadata server. The data should be written and <lb/>committed to the appropriate storage devices before the LAYOUTCOMMIT <lb/>occurs. The scope of the LAYOUTCOMMIT operation depends on the <lb/>storage protocol in use. It is important to note that the level of <lb/>synchronization is from the point of view of the client that sent the <lb/>LAYOUTCOMMIT. The updated state on the metadata server need only <lb/>reflect the state as of the client's last operation previous to the <lb/>LAYOUTCOMMIT. The metadata server is not REQUIRED to maintain a <lb/>global view that accounts for other clients' I/O that may have <lb/>occurred within the same time frame. <lb/>For block/volume-based layouts, LAYOUTCOMMIT may require updating the <lb/>block list that comprises the file and committing this layout to <lb/>stable storage. For file-based layouts, synchronization of <lb/>attributes between the metadata and storage devices, primarily the <lb/>size attribute, is required. <lb/>The control protocol is free to synchronize the attributes before it <lb/>receives a LAYOUTCOMMIT; however, upon successful completion of a <lb/>LAYOUTCOMMIT, state that exists on the metadata server that describes <lb/>the file MUST be synchronized with the state that exists on the <lb/>storage devices that comprise that file as of the client's last sent <lb/>operation. Thus, a client that queries the size of a file between a <lb/>WRITE to a storage device and the LAYOUTCOMMIT might observe a size <lb/>that does not reflect the actual data written. <lb/>The client MUST have a layout in order to send a LAYOUTCOMMIT <lb/>operation. <lb/>12.5.4.1. LAYOUTCOMMIT and change/time_modify <lb/>The change and time_modify attributes may be updated by the server <lb/>when the LAYOUTCOMMIT operation is processed. The reason for this is <lb/>that some layout types do not support the update of these attributes <lb/>when the storage devices process I/O operations. If a client has a <lb/>layout with the LAYOUTIOMODE4_RW iomode on the file, the client MAY <lb/>provide a suggested value to the server for time_modify within the <lb/>arguments to LAYOUTCOMMIT. Based on the layout type, the provided <lb/>value may or may not be used. The server should sanity-check the <lb/>client-provided values before they are used. For example, the server <lb/>should ensure that time does not flow backwards. The client always <lb/>has the option to set time_modify through an explicit SETATTR <lb/>operation. <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 309] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>For some layout protocols, the storage device is able to notify the <lb/>metadata server of the occurrence of an I/O; as a result, the change <lb/>and time_modify attributes may be updated at the metadata server. <lb/>For a metadata server that is capable of monitoring updates to the <lb/>change and time_modify attributes, LAYOUTCOMMIT processing is not <lb/>required to update the change attribute. In this case, the metadata <lb/>server must ensure that no further update to the data has occurred <lb/>since the last update of the attributes; file-based protocols may <lb/>have enough information to make this determination or may update the <lb/>change attribute upon each file modification. This also applies for <lb/>the time_modify attribute. If the server implementation is able to <lb/>determine that the file has not been modified since the last <lb/>time_modify update, the server need not update time_modify at <lb/>LAYOUTCOMMIT. At LAYOUTCOMMIT completion, the updated attributes <lb/>should be visible if that file was modified since the latest previous <lb/>LAYOUTCOMMIT or LAYOUTGET. <lb/>12.5.4.2. LAYOUTCOMMIT and size <lb/>The size of a file may be updated when the LAYOUTCOMMIT operation is <lb/>used by the client. One of the fields in the argument to <lb/>LAYOUTCOMMIT is loca_last_write_offset; this field indicates the <lb/>highest byte offset written but not yet committed with the <lb/>LAYOUTCOMMIT operation. The data type of loca_last_write_offset is <lb/>newoffset4 and is switched on a boolean value, no_newoffset, that <lb/>indicates if a previous write occurred or not. If no_newoffset is <lb/>FALSE, an offset is not given. If the client has a layout with <lb/>LAYOUTIOMODE4_RW iomode on the file, with a byte-range (denoted by <lb/>the values of lo_offset and lo_length) that overlaps <lb/>loca_last_write_offset, then the client MAY set no_newoffset to TRUE <lb/>and provide an offset that will update the file size. Keep in mind <lb/>that offset is not the same as length, though they are related. For <lb/>example, a loca_last_write_offset value of zero means that one byte <lb/>was written at offset zero, and so the length of the file is at least <lb/>one byte. <lb/>The metadata server may do one of the following: <lb/>1. Update the file's size using the last write offset provided by <lb/>the client as either the true file size or as a hint of the file <lb/>size. If the metadata server has a method available, any new <lb/>value for file size should be sanity-checked. For example, the <lb/>file must not be truncated if the client presents a last write <lb/>offset less than the file's current size. <lb/>2. Ignore the client-provided last write offset; the metadata server <lb/>must have sufficient knowledge from other sources to determine <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 310] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>the file's size. For example, the metadata server queries the <lb/>storage devices with the control protocol. <lb/>The method chosen to update the file's size will depend on the <lb/>storage device's and/or the control protocol's capabilities. For <lb/>example, if the storage devices are block devices with no knowledge <lb/>of file size, the metadata server must rely on the client to set the <lb/>last write offset appropriately. <lb/>The results of LAYOUTCOMMIT contain a new size value in the form of a <lb/>newsize4 union data type. If the file's size is set as a result of <lb/>LAYOUTCOMMIT, the metadata server must reply with the new size; <lb/>otherwise, the new size is not provided. If the file size is <lb/>updated, the metadata server SHOULD update the storage devices such <lb/>that the new file size is reflected when LAYOUTCOMMIT processing is <lb/>complete. For example, the client should be able to read up to the <lb/>new file size. <lb/>The client can extend the length of a file or truncate a file by <lb/>sending a SETATTR operation to the metadata server with the size <lb/>attribute specified. If the size specified is larger than the <lb/>current size of the file, the file is "zero extended", i.e., zeros <lb/>are implicitly added between the file's previous EOF and the new EOF. <lb/>(In many implementations, the zero-extended byte-range of the file <lb/>consists of unallocated holes in the file.) When the client writes <lb/>past EOF via WRITE, the SETATTR operation does not need to be used. <lb/>12.5.4.3. LAYOUTCOMMIT and layoutupdate <lb/>The LAYOUTCOMMIT argument contains a loca_layoutupdate field <lb/>(Section 18.42.1) of data type layoutupdate4 (Section 3.3.18). This <lb/>argument is a layout-type-specific structure. The structure can be <lb/>used to pass arbitrary layout-type-specific information from the <lb/>client to the metadata server at LAYOUTCOMMIT time. For example, if <lb/>using a block/volume layout, the client can indicate to the metadata <lb/>server which reserved or allocated blocks the client used or did not <lb/>use. The content of loca_layoutupdate (field lou_body) need not be <lb/>the same layout-type-specific content returned by LAYOUTGET <lb/>(Section 18.43.2) in the loc_body field of the lo_content field of <lb/>the logr_layout field. The content of loca_layoutupdate is defined <lb/>by the layout type specification and is opaque to LAYOUTCOMMIT. <lb/>12.5.5. Recalling a Layout <lb/>Since a layout protects a client's access to a file via a direct <lb/>client-storage-device path, a layout need only be recalled when it is <lb/>semantically unable to serve this function. Typically, this occurs <lb/>when the layout no longer encapsulates the true location of the file <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 311] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>over the byte-range it represents. Any operation or action, such as <lb/>server-driven restriping or load balancing, that changes the layout <lb/>will result in a recall of the layout. A layout is recalled by the <lb/>CB_LAYOUTRECALL callback operation (see Section 20.3) and returned <lb/>with LAYOUTRETURN (see Section 18.44). The CB_LAYOUTRECALL operation <lb/>may recall a layout identified by a byte-range, all layouts <lb/>associated with a file system ID (FSID), or all layouts associated <lb/>with a client ID. Section 12.5.5.2 discusses sequencing issues <lb/>surrounding the getting, returning, and recalling of layouts. <lb/>An iomode is also specified when recalling a layout. Generally, the <lb/>iomode in the recall request must match the layout being returned; <lb/>for example, a recall with an iomode of LAYOUTIOMODE4_RW should cause <lb/>the client to only return LAYOUTIOMODE4_RW layouts and not <lb/>LAYOUTIOMODE4_READ layouts. However, a special LAYOUTIOMODE4_ANY <lb/>enumeration is defined to enable recalling a layout of any iomode; in <lb/>other words, the client must return both LAYOUTIOMODE4_READ and <lb/>LAYOUTIOMODE4_RW layouts. <lb/>A REMOVE operation SHOULD cause the metadata server to recall the <lb/>layout to prevent the client from accessing a non-existent file and <lb/>to reclaim state stored on the client. Since a REMOVE may be delayed <lb/>until the last close of the file has occurred, the recall may also be <lb/>delayed until this time. After the last reference on the file has <lb/>been released and the file has been removed, the client should no <lb/>longer be able to perform I/O using the layout. In the case of a <lb/>file-based layout, the data server SHOULD return NFS4ERR_STALE in <lb/>response to any operation on the removed file. <lb/>Once a layout has been returned, the client MUST NOT send I/Os to the <lb/>storage devices for the file, byte-range, and iomode represented by <lb/>the returned layout. If a client does send an I/O to a storage <lb/>device for which it does not hold a layout, the storage device SHOULD <lb/>reject the I/O. <lb/>Although pNFS does not alter the file data caching capabilities of <lb/>clients, or their semantics, it recognizes that some clients may <lb/>perform more aggressive write-behind caching to optimize the benefits <lb/>provided by pNFS. However, write-behind caching may negatively <lb/>affect the latency in returning a layout in response to a <lb/>CB_LAYOUTRECALL; this is similar to file delegations and the impact <lb/>that file data caching has on DELEGRETURN. Client implementations <lb/>SHOULD limit the amount of unwritten data they have outstanding at <lb/>any one time in order to prevent excessively long responses to <lb/>CB_LAYOUTRECALL. Once a layout is recalled, a server MUST wait one <lb/>lease period before taking further action. As soon as a lease period <lb/>has passed, the server may choose to fence the client's access to the <lb/>storage devices if the server perceives the client has taken too long <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 312] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>to return a layout. However, just as in the case of data delegation <lb/>and DELEGRETURN, the server may choose to wait, given that the client <lb/>is showing forward progress on its way to returning the layout. This <lb/>forward progress can take the form of successful interaction with the <lb/>storage devices or of sub-portions of the layout being returned by <lb/>the client. The server can also limit exposure to these problems by <lb/>limiting the byte-ranges initially provided in the layouts and thus <lb/>the amount of outstanding modified data. <lb/>12.5.5.1. Layout Recall Callback Robustness <lb/>It has been assumed thus far that pNFS client state (layout ranges <lb/>and iomode) for a file exactly matches that of the pNFS server for <lb/>that file. This assumption leads to the implication that any <lb/>callback results in a LAYOUTRETURN or set of LAYOUTRETURNs that <lb/>exactly match the range in the callback, since both client and server <lb/>agree about the state being maintained. However, it can be useful if <lb/>this assumption does not always hold. For example: <lb/>o If conflicts that require callbacks are very rare, and a server <lb/>can use a multi-file callback to recover per-client resources <lb/>(e.g., via an FSID recall or a multi-file recall within a single <lb/>CB_COMPOUND), the result may be significantly less client-server <lb/>pNFS traffic. <lb/>o It may be useful for servers to maintain information about what <lb/>ranges are held by a client on a coarse-grained basis, leading to <lb/>the server's layout ranges being beyond those actually held by the <lb/>client. In the extreme, a server could manage conflicts on a per-<lb/>file basis, only sending whole-file callbacks even though clients <lb/>may request and be granted sub-file ranges. <lb/>o It may be useful for clients to "forget" details about what <lb/>layouts and ranges the client actually has, leading to the <lb/>server's layout ranges being beyond those that the client "thinks" <lb/>it has. As long as the client does not assume it has layouts that <lb/>are beyond what the server has granted, this is a safe practice. <lb/>When a client forgets what ranges and layouts it has, and it <lb/>receives a CB_LAYOUTRECALL operation, the client MUST follow up <lb/>with a LAYOUTRETURN for what the server recalled, or alternatively <lb/>return the NFS4ERR_NOMATCHING_LAYOUT error if it has no layout to <lb/>return in the recalled range. <lb/>o In order to avoid errors, it is vital that a client not assign <lb/>itself layout permissions beyond what the server has granted, and <lb/>that the server not forget layout permissions that have been <lb/>granted. On the other hand, if a server believes that a client <lb/>holds a layout that the client does not know about, it is useful <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 313] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>for the client to cleanly indicate completion of the requested <lb/>recall either by sending a LAYOUTRETURN operation for the entire <lb/>requested range or by returning an NFS4ERR_NOMATCHING_LAYOUT error <lb/>to the CB_LAYOUTRECALL. <lb/>Thus, in light of the above, it is useful for a server to be able to <lb/>send callbacks for layout ranges it has not granted to a client, and <lb/>for a client to return ranges it does not hold. A pNFS client MUST <lb/>always return layouts that comprise the full range specified by the <lb/>recall. Note, the full recalled layout range need not be returned as <lb/>part of a single operation, but may be returned in portions. This <lb/>allows the client to stage the flushing of dirty data and commits and <lb/>returns of layouts. Also, it indicates to the metadata server that <lb/>the client is making progress. <lb/>When a layout is returned, the client MUST NOT have any outstanding <lb/>I/O requests to the storage devices involved in the layout. <lb/>Rephrasing, the client MUST NOT return the layout while it has <lb/>outstanding I/O requests to the storage device. <lb/>Even with this requirement for the client, it is possible that I/O <lb/>requests may be presented to a storage device no longer allowed to <lb/>perform them. Since the server has no strict control as to when the <lb/>client will return the layout, the server may later decide to <lb/>unilaterally revoke the client's access to the storage devices as <lb/>provided by the layout. In choosing to revoke access, the server <lb/>must deal with the possibility of lingering I/O requests, i.e., I/O <lb/>requests that are still in flight to storage devices identified by <lb/>the revoked layout. All layout type specifications MUST define <lb/>whether unilateral layout revocation by the metadata server is <lb/>supported; if it is, the specification must also describe how <lb/>lingering writes are processed. For example, storage devices <lb/>identified by the revoked layout could be fenced off from the client <lb/>that held the layout. <lb/>In order to ensure client/server convergence with regard to layout <lb/>state, the final LAYOUTRETURN operation in a sequence of LAYOUTRETURN <lb/>operations for a particular recall MUST specify the entire range <lb/>being recalled, echoing the recalled layout type, iomode, recall/ <lb/>return type (FILE, FSID, or ALL), and byte-range, even if layouts <lb/>pertaining to partial ranges were previously returned. In addition, <lb/>if the client holds no layouts that overlap the range being recalled, <lb/>the client should return the NFS4ERR_NOMATCHING_LAYOUT error code to <lb/>CB_LAYOUTRECALL. This allows the server to update its view of the <lb/>client's layout state. <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 314] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>12.5.5.2. Sequencing of Layout Operations <lb/>As with other stateful operations, pNFS requires the correct <lb/>sequencing of layout operations. pNFS uses the "seqid" in the layout <lb/>stateid to provide the correct sequencing between regular operations <lb/>and callbacks. It is the server's responsibility to avoid <lb/>inconsistencies regarding the layouts provided and the client's <lb/>responsibility to properly serialize its layout requests and layout <lb/>returns. <lb/>12.5.5.2.1. Layout Recall and Return Sequencing <lb/>One critical issue with regard to layout operations sequencing <lb/>concerns callbacks. The protocol must defend against races between <lb/>the reply to a LAYOUTGET or LAYOUTRETURN operation and a subsequent <lb/>CB_LAYOUTRECALL. A client MUST NOT process a CB_LAYOUTRECALL that <lb/>implies one or more outstanding LAYOUTGET or LAYOUTRETURN operations <lb/>to which the client has not yet received a reply. The client detects <lb/>such a CB_LAYOUTRECALL by examining the "seqid" field of the recall's <lb/>layout stateid. If the "seqid" is not exactly one higher than what <lb/>the client currently has recorded, and the client has at least one <lb/>LAYOUTGET and/or LAYOUTRETURN operation outstanding, the client knows <lb/>the server sent the CB_LAYOUTRECALL after sending a response to an <lb/>outstanding LAYOUTGET or LAYOUTRETURN. The client MUST wait before <lb/>processing such a CB_LAYOUTRECALL until it processes all replies for <lb/>outstanding LAYOUTGET and LAYOUTRETURN operations for the <lb/>corresponding file with seqid less than the seqid given by <lb/>CB_LAYOUTRECALL (lor_stateid; see Section 20.3.) <lb/>In addition to the seqid-based mechanism, Section 2.10.6.3 describes <lb/>the sessions mechanism for allowing the client to detect callback <lb/>race conditions and delay processing such a CB_LAYOUTRECALL. The <lb/>server MAY reference conflicting operations in the CB_SEQUENCE that <lb/>precedes the CB_LAYOUTRECALL. Because the server has already sent <lb/>replies for these operations before sending the callback, the replies <lb/>may race with the CB_LAYOUTRECALL. The client MUST wait for all the <lb/>referenced calls to complete and update its view of the layout state <lb/>before processing the CB_LAYOUTRECALL. <lb/>12.5.5.2.1.1. Get/Return Sequencing <lb/>The protocol allows the client to send concurrent LAYOUTGET and <lb/>LAYOUTRETURN operations to the server. The protocol does not provide <lb/>any means for the server to process the requests in the same order in <lb/>which they were created. However, through the use of the "seqid" <lb/>field in the layout stateid, the client can determine the order in <lb/>which parallel outstanding operations were processed by the server. <lb/>Thus, when a layout retrieved by an outstanding LAYOUTGET operation <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 315] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>intersects with a layout returned by an outstanding LAYOUTRETURN on <lb/>the same file, the order in which the two conflicting operations are <lb/>processed determines the final state of the overlapping layout. The <lb/>order is determined by the "seqid" returned in each operation: the <lb/>operation with the higher seqid was executed later. <lb/>It is permissible for the client to send multiple parallel LAYOUTGET <lb/>operations for the same file or multiple parallel LAYOUTRETURN <lb/>operations for the same file or a mix of both. <lb/>It is permissible for the client to use the current stateid (see <lb/>Section 16.2.3.1.2) for LAYOUTGET operations, for example, when <lb/>compounding LAYOUTGETs or compounding OPEN and LAYOUTGETs. It is <lb/>also permissible to use the current stateid when compounding <lb/>LAYOUTRETURNs. <lb/>It is permissible for the client to use the current stateid when <lb/>combining LAYOUTRETURN and LAYOUTGET operations for the same file in <lb/>the same COMPOUND request since the server MUST process these in <lb/>order. However, if a client does send such COMPOUND requests, it <lb/>MUST NOT have more than one outstanding for the same file at the same <lb/>time, and it MUST NOT have other LAYOUTGET or LAYOUTRETURN operations <lb/>outstanding at the same time for that same file. <lb/>12.5.5.2.1.2. Client Considerations <lb/>Consider a pNFS client that has sent a LAYOUTGET, and before it <lb/>receives the reply to LAYOUTGET, it receives a CB_LAYOUTRECALL for <lb/>the same file with an overlapping range. There are two <lb/>possibilities, which the client can distinguish via the layout <lb/>stateid in the recall. <lb/>1. The server processed the LAYOUTGET before sending the recall, so <lb/>the LAYOUTGET must be waited for because it may be carrying <lb/>layout information that will need to be returned to deal with the <lb/>CB_LAYOUTRECALL. <lb/>2. The server sent the callback before receiving the LAYOUTGET. The <lb/>server will not respond to the LAYOUTGET until the <lb/>CB_LAYOUTRECALL is processed. <lb/>If these possibilities cannot be distinguished, a deadlock could <lb/>result, as the client must wait for the LAYOUTGET response before <lb/>processing the recall in the first case, but that response will not <lb/>arrive until after the recall is processed in the second case. Note <lb/>that in the first case, the "seqid" in the layout stateid of the <lb/>recall is two greater than what the client has recorded; in the <lb/>second case, the "seqid" is one greater than what the client has <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 316] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>recorded. This allows the client to disambiguate between the two <lb/>cases. The client thus knows precisely which possibility applies. <lb/>In case 1, the client knows it needs to wait for the LAYOUTGET <lb/>response before processing the recall (or the client can return <lb/>NFS4ERR_DELAY). <lb/>In case 2, the client will not wait for the LAYOUTGET response before <lb/>processing the recall because waiting would cause deadlock. <lb/>Therefore, the action at the client will only require waiting in the <lb/>case that the client has not yet seen the server's earlier responses <lb/>to the LAYOUTGET operation(s). <lb/>The recall process can be considered completed when the final <lb/>LAYOUTRETURN operation for the recalled range is completed. The <lb/>LAYOUTRETURN uses the layout stateid (with seqid) specified in <lb/>CB_LAYOUTRECALL. If the client uses multiple LAYOUTRETURNs in <lb/>processing the recall, the first LAYOUTRETURN will use the layout <lb/>stateid as specified in CB_LAYOUTRECALL. Subsequent LAYOUTRETURNs <lb/>will use the highest seqid as is the usual case. <lb/>12.5.5.2.1.3. Server Considerations <lb/>Consider a race from the metadata server's point of view. The <lb/>metadata server has sent a CB_LAYOUTRECALL and receives an <lb/>overlapping LAYOUTGET for the same file before the LAYOUTRETURN(s) <lb/>that respond to the CB_LAYOUTRECALL. There are three cases: <lb/>1. The client sent the LAYOUTGET before processing the <lb/>CB_LAYOUTRECALL. The "seqid" in the layout stateid of the <lb/>arguments of LAYOUTGET is one less than the "seqid" in <lb/>CB_LAYOUTRECALL. The server returns NFS4ERR_RECALLCONFLICT to <lb/>the client, which indicates to the client that there is a pending <lb/>recall. <lb/>2. The client sent the LAYOUTGET after processing the <lb/>CB_LAYOUTRECALL, but the LAYOUTGET arrived before the <lb/>LAYOUTRETURN and the response to CB_LAYOUTRECALL that completed <lb/>that processing. The "seqid" in the layout stateid of LAYOUTGET <lb/>is equal to or greater than that of the "seqid" in <lb/>CB_LAYOUTRECALL. The server has not received a response to the <lb/>CB_LAYOUTRECALL, so it returns NFS4ERR_RECALLCONFLICT. <lb/>3. The client sent the LAYOUTGET after processing the <lb/>CB_LAYOUTRECALL; the server received the CB_LAYOUTRECALL <lb/>response, but the LAYOUTGET arrived before the LAYOUTRETURN that <lb/>completed that processing. The "seqid" in the layout stateid of <lb/>LAYOUTGET is equal to that of the "seqid" in CB_LAYOUTRECALL. <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 317] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>The server has received a response to the CB_LAYOUTRECALL, so it <lb/>returns NFS4ERR_RETURNCONFLICT. <lb/>12.5.5.2.1.4. Wraparound and Validation of Seqid <lb/>The rules for layout stateid processing differ from other stateids in <lb/>the protocol because the "seqid" value cannot be zero and the <lb/>stateid's "seqid" value changes in a CB_LAYOUTRECALL operation. The <lb/>non-zero requirement combined with the inherent parallelism of layout <lb/>operations means that a set of LAYOUTGET and LAYOUTRETURN operations <lb/>may contain the same value for "seqid". The server uses a slightly <lb/>modified version of the modulo arithmetic as described in <lb/>Section 2.10.6.1 when incrementing the layout stateid's "seqid". The <lb/>difference is that zero is not a valid value for "seqid"; when the <lb/>value of a "seqid" is 0xFFFFFFFF, the next valid value will be <lb/>0x00000001. The modulo arithmetic is also used for the comparisons <lb/>of "seqid" values in the processing of CB_LAYOUTRECALL events as <lb/>described above in Section 12.5.5.2.1.3. <lb/>Just as the server validates the "seqid" in the event of <lb/>CB_LAYOUTRECALL usage, as described in Section 12.5.5.2.1.3, the <lb/>server also validates the "seqid" value to ensure that it is within <lb/>an appropriate range. This range represents the degree of <lb/>parallelism the server supports for layout stateids. If the client <lb/>is sending multiple layout operations to the server in parallel, by <lb/>definition, the "seqid" value in the supplied stateid will not be the <lb/>current "seqid" as held by the server. The range of parallelism <lb/>spans from the highest or current "seqid" to a "seqid" value in the <lb/>past. To assist in the discussion, the server's current "seqid" <lb/>value for a layout stateid is defined as SERVER_CURRENT_SEQID. The <lb/>lowest "seqid" value that is acceptable to the server is represented <lb/>by PAST_SEQID. And the value for the range of valid "seqid"s or <lb/>range of parallelism is VALID_SEQID_RANGE. Therefore, the following <lb/>holds: VALID_SEQID_RANGE = SERVER_CURRENT_SEQID -PAST_SEQID. In the <lb/>following, all arithmetic is the modulo arithmetic as described <lb/>above. <lb/>The server MUST support a minimum VALID_SEQID_RANGE. The minimum is <lb/>defined as: VALID_SEQID_RANGE = summation over 1..N of <lb/>(ca_maxoperations(i) -1), where N is the number of session fore <lb/>channels and ca_maxoperations(i) is the value of the ca_maxoperations <lb/>returned from CREATE_SESSION of the i'th session. The reason for "-<lb/>1" is to allow for the required SEQUENCE operation. The server MAY <lb/>support a VALID_SEQID_RANGE value larger than the minimum. The <lb/>maximum VALID_SEQID_RANGE is (2 ^ 32 -2) (accounting for zero not <lb/>being a valid "seqid" value). <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 318] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>If the server finds the "seqid" is zero, the NFS4ERR_BAD_STATEID <lb/>error is returned to the client. The server further validates the <lb/>"seqid" to ensure it is within the range of parallelism, <lb/>VALID_SEQID_RANGE. If the "seqid" value is outside of that range, <lb/>the error NFS4ERR_OLD_STATEID is returned to the client. Upon <lb/>receipt of NFS4ERR_OLD_STATEID, the client updates the stateid in the <lb/>layout request based on processing of other layout requests and re-<lb/>sends the operation to the server. <lb/>12.5.5.2.1.5. Bulk Recall and Return <lb/>pNFS supports recalling and returning all layouts that are for files <lb/>belonging to a particular fsid (LAYOUTRECALL4_FSID, <lb/>LAYOUTRETURN4_FSID) or client ID (LAYOUTRECALL4_ALL, <lb/>LAYOUTRETURN4_ALL). There are no "bulk" stateids, so detection of <lb/>races via the seqid is not possible. The server MUST NOT initiate <lb/>bulk recall while another recall is in progress, or the corresponding <lb/>LAYOUTRETURN is in progress or pending. In the event the server <lb/>sends a bulk recall while the client has a pending or in-progress <lb/>LAYOUTRETURN, CB_LAYOUTRECALL, or LAYOUTGET, the client returns <lb/>NFS4ERR_DELAY. In the event the client sends a LAYOUTGET or <lb/>LAYOUTRETURN while a bulk recall is in progress, the server returns <lb/>NFS4ERR_RECALLCONFLICT. If the client sends a LAYOUTGET or <lb/>LAYOUTRETURN after the server receives NFS4ERR_DELAY from a bulk <lb/>recall, then to ensure forward progress, the server MAY return <lb/>NFS4ERR_RECALLCONFLICT. <lb/>Once a CB_LAYOUTRECALL of LAYOUTRECALL4_ALL is sent, the server MUST <lb/>NOT allow the client to use any layout stateid except for <lb/>LAYOUTCOMMIT operations. Once the client receives a CB_LAYOUTRECALL <lb/>of LAYOUTRECALL4_ALL, it MUST NOT use any layout stateid except for <lb/>LAYOUTCOMMIT operations. Once a LAYOUTRETURN of LAYOUTRETURN4_ALL is <lb/>sent, all layout stateids granted to the client ID are freed. The <lb/>client MUST NOT use the layout stateids again. It MUST use LAYOUTGET <lb/>to obtain new layout stateids. <lb/>Once a CB_LAYOUTRECALL of LAYOUTRECALL4_FSID is sent, the server MUST <lb/>NOT allow the client to use any layout stateid that refers to a file <lb/>with the specified fsid except for LAYOUTCOMMIT operations. Once the <lb/>client receives a CB_LAYOUTRECALL of LAYOUTRECALL4_ALL, it MUST NOT <lb/>use any layout stateid that refers to a file with the specified fsid <lb/>except for LAYOUTCOMMIT operations. Once a LAYOUTRETURN of <lb/>LAYOUTRETURN4_FSID is sent, all layout stateids granted to the <lb/>referenced fsid are freed. The client MUST NOT use those freed <lb/>layout stateids for files with the referenced fsid again. <lb/>Subsequently, for any file with the referenced fsid, to use a layout, <lb/>the client MUST first send a LAYOUTGET operation in order to obtain a <lb/>new layout stateid for that file. <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 319] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>If the server has sent a bulk CB_LAYOUTRECALL and receives a <lb/>LAYOUTGET, or a LAYOUTRETURN with a stateid, the server MUST return <lb/>NFS4ERR_RECALLCONFLICT. If the server has sent a bulk <lb/>CB_LAYOUTRECALL and receives a LAYOUTRETURN with an lr_returntype <lb/>that is not equal to the lor_recalltype of the CB_LAYOUTRECALL, the <lb/>server MUST return NFS4ERR_RECALLCONFLICT. <lb/>12.5.6. Revoking Layouts <lb/>Parallel NFS permits servers to revoke layouts from clients that fail <lb/>to respond to recalls and/or fail to renew their lease in time. <lb/>Depending on the layout type, the server might revoke the layout and <lb/>might take certain actions with respect to the client's I/O to data <lb/>servers. <lb/>12.5.7. Metadata Server Write Propagation <lb/>Asynchronous writes written through the metadata server may be <lb/>propagated lazily to the storage devices. For data written <lb/>asynchronously through the metadata server, a client performing a <lb/>read at the appropriate storage device is not guaranteed to see the <lb/>newly written data until a COMMIT occurs at the metadata server. <lb/>While the write is pending, reads to the storage device may give out <lb/>either the old data, the new data, or a mixture of new and old. Upon <lb/>completion of a synchronous WRITE or COMMIT (for asynchronously <lb/>written data), the metadata server MUST ensure that storage devices <lb/>give out the new data and that the data has been written to stable <lb/>storage. If the server implements its storage in any way such that <lb/>it cannot obey these constraints, then it MUST recall the layouts to <lb/>prevent reads being done that cannot be handled correctly. Note that <lb/>the layouts MUST be recalled prior to the server responding to the <lb/>associated WRITE operations. <lb/>12.6. pNFS Mechanics <lb/>This section describes the operations flow taken by a pNFS client to <lb/>a metadata server and storage device. <lb/>When a pNFS client encounters a new FSID, it sends a GETATTR to the <lb/>NFSv4.1 server for the fs_layout_type (Section 5.12.1) attribute. If <lb/>the attribute returns at least one layout type, and the layout types <lb/>returned are among the set supported by the client, the client knows <lb/>that pNFS is a possibility for the file system. If, from the server <lb/>that returned the new FSID, the client does not have a client ID that <lb/>came from an EXCHANGE_ID result that returned <lb/>EXCHGID4_FLAG_USE_PNFS_MDS, it MUST send an EXCHANGE_ID to the server <lb/>with the EXCHGID4_FLAG_USE_PNFS_MDS bit set. If the server's <lb/>response does not have EXCHGID4_FLAG_USE_PNFS_MDS, then contrary to <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 320] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>what the fs_layout_type attribute said, the server does not support <lb/>pNFS, and the client will not be able use pNFS to that server; in <lb/>this case, the server MUST return NFS4ERR_NOTSUPP in response to any <lb/>pNFS operation. <lb/>The client then creates a session, requesting a persistent session, <lb/>so that exclusive creates can be done with single round trip via the <lb/>createmode4 of GUARDED4. If the session ends up not being <lb/>persistent, the client will use EXCLUSIVE4_1 for exclusive creates. <lb/>If a file is to be created on a pNFS-enabled file system, the client <lb/>uses the OPEN operation. With the normal set of attributes that may <lb/>be provided upon OPEN used for creation, there is an OPTIONAL <lb/>layout_hint attribute. The client's use of layout_hint allows the <lb/>client to express its preference for a layout type and its associated <lb/>layout details. The use of a createmode4 of UNCHECKED4, GUARDED4, or <lb/>EXCLUSIVE4_1 will allow the client to provide the layout_hint <lb/>attribute at create time. The client MUST NOT use EXCLUSIVE4 (see <lb/>Table 10). The client is RECOMMENDED to combine a GETATTR operation <lb/>after the OPEN within the same COMPOUND. The GETATTR may then <lb/>retrieve the layout_type attribute for the newly created file. The <lb/>client will then know what layout type the server has chosen for the <lb/>file and therefore what storage protocol the client must use. <lb/>If the client wants to open an existing file, then it also includes a <lb/>GETATTR to determine what layout type the file supports. <lb/>The GETATTR in either the file creation or plain file open case can <lb/>also include the layout_blksize and layout_alignment attributes so <lb/>that the client can determine optimal offsets and lengths for I/O on <lb/>the file. <lb/>Assuming the client supports the layout type returned by GETATTR and <lb/>it chooses to use pNFS for data access, it then sends LAYOUTGET using <lb/>the filehandle and stateid returned by OPEN, specifying the range it <lb/>wants to do I/O on. The response is a layout, which may be a subset <lb/>of the range for which the client asked. It also includes device IDs <lb/>and a description of how data is organized (or in the case of <lb/>writing, how data is to be organized) across the devices. The device <lb/>IDs and data description are encoded in a format that is specific to <lb/>the layout type, but the client is expected to understand. <lb/>When the client wants to send an I/O, it determines to which device <lb/>ID it needs to send the I/O command by examining the data description <lb/>in the layout. It then sends a GETDEVICEINFO to find the device <lb/>address(es) of the device ID. The client then sends the I/O request <lb/>to one of device ID's device addresses, using the storage protocol <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 321] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>defined for the layout type. Note that if a client has multiple I/Os <lb/>to send, these I/O requests may be done in parallel. <lb/>If the I/O was a WRITE, then at some point the client may want to use <lb/>LAYOUTCOMMIT to commit the modification time and the new size of the <lb/>file (if it believes it extended the file size) to the metadata <lb/>server and the modified data to the file system. <lb/>12.7. Recovery <lb/>Recovery is complicated by the distributed nature of the pNFS <lb/>protocol. In general, crash recovery for layouts is similar to crash <lb/>recovery for delegations in the base NFSv4.1 protocol. However, the <lb/>client's ability to perform I/O without contacting the metadata <lb/>server introduces subtleties that must be handled correctly if the <lb/>possibility of file system corruption is to be avoided. <lb/>12.7.1. Recovery from Client Restart <lb/>Client recovery for layouts is similar to client recovery for other <lb/>lock and delegation state. When a pNFS client restarts, it will lose <lb/>all information about the layouts that it previously owned. There <lb/>are two methods by which the server can reclaim these resources and <lb/>allow otherwise conflicting layouts to be provided to other clients. <lb/>The first is through the expiry of the client's lease. If the client <lb/>recovery time is longer than the lease period, the client's lease <lb/>will expire and the server will know that state may be released. For <lb/>layouts, the server may release the state immediately upon lease <lb/>expiry or it may allow the layout to persist, awaiting possible lease <lb/>revival, as long as no other layout conflicts. <lb/>The second is through the client restarting in less time than it <lb/>takes for the lease period to expire. In such a case, the client <lb/>will contact the server through the standard EXCHANGE_ID protocol. <lb/>The server will find that the client's co_ownerid matches the <lb/>co_ownerid of the previous client invocation, but that the verifier <lb/>is different. The server uses this as a signal to release all layout <lb/>state associated with the client's previous invocation. In this <lb/>scenario, the data written by the client but not covered by a <lb/>successful LAYOUTCOMMIT is in an undefined state; it may have been <lb/>written or it may now be lost. This is acceptable behavior and it is <lb/>the client's responsibility to use LAYOUTCOMMIT to achieve the <lb/>desired level of stability. <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 322] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>12.7.2. Dealing with Lease Expiration on the Client <lb/>If a client believes its lease has expired, it MUST NOT send I/O to <lb/>the storage device until it has validated its lease. The client can <lb/>send a SEQUENCE operation to the metadata server. If the SEQUENCE <lb/>operation is successful, but sr_status_flag has <lb/>SEQ4_STATUS_EXPIRED_ALL_STATE_REVOKED, <lb/>SEQ4_STATUS_EXPIRED_SOME_STATE_REVOKED, or <lb/>SEQ4_STATUS_ADMIN_STATE_REVOKED set, the client MUST NOT use <lb/>currently held layouts. The client has two choices to recover from <lb/>the lease expiration. First, for all modified but uncommitted data, <lb/>the client writes it to the metadata server using the FILE_SYNC4 flag <lb/>for the WRITEs, or WRITE and COMMIT. Second, the client re-<lb/>establishes a client ID and session with the server and obtains new <lb/>layouts and device-ID-to-device-address mappings for the modified <lb/>data ranges and then writes the data to the storage devices with the <lb/>newly obtained layouts. <lb/>If sr_status_flags from the metadata server has <lb/>SEQ4_STATUS_RESTART_RECLAIM_NEEDED set (or SEQUENCE returns <lb/>NFS4ERR_BAD_SESSION and CREATE_SESSION returns <lb/>NFS4ERR_STALE_CLIENTID), then the metadata server has restarted, and <lb/>the client SHOULD recover using the methods described in <lb/>Section 12.7.4. <lb/>If sr_status_flags from the metadata server has <lb/>SEQ4_STATUS_LEASE_MOVED set, then the client recovers by following <lb/>the procedure described in Section 11.10.9.1. After that, the client <lb/>may get an indication that the layout state was not moved with the <lb/>file system. The client recovers as in the other applicable <lb/>situations discussed in the first two paragraphs of this section. <lb/>If sr_status_flags reports no loss of state, then the lease for the <lb/>layouts that the client has are valid and renewed, and the client can <lb/>once again send I/O requests to the storage devices. <lb/>While clients SHOULD NOT send I/Os to storage devices that may extend <lb/>past the lease expiration time period, this is not always possible, <lb/>for example, an extended network partition that starts after the I/O <lb/>is sent and does not heal until the I/O request is received by the <lb/>storage device. Thus, the metadata server and/or storage devices are <lb/>responsible for protecting themselves from I/Os that are both sent <lb/>before the lease expires and arrive after the lease expires. See <lb/>Section 12.7.3. <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 323] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>12.7.3. Dealing with Loss of Layout State on the Metadata Server <lb/>This is a description of the case where all of the following are <lb/>true: <lb/>o the metadata server has not restarted <lb/>o a pNFS client's layouts have been discarded (usually because the <lb/>client's lease expired) and are invalid <lb/>o an I/O from the pNFS client arrives at the storage device <lb/>The metadata server and its storage devices MUST solve this by <lb/>fencing the client. In other words, they MUST solve this by <lb/>preventing the execution of I/O operations from the client to the <lb/>storage devices after layout state loss. The details of how fencing <lb/>is done are specific to the layout type. The solution for NFSv4.1 <lb/>file-based layouts is described in (Section 13.11), and solutions for <lb/>other layout types are in their respective external specification <lb/>documents. <lb/>12.7.4. Recovery from Metadata Server Restart <lb/>The pNFS client will discover that the metadata server has restarted <lb/>via the methods described in Section 8.4.2 and discussed in a pNFS-<lb/>specific context in Section 12.7.2, Paragraph 2. The client MUST <lb/>stop using layouts and delete the device ID to device address <lb/>mappings it previously received from the metadata server. Having <lb/>done that, if the client wrote data to the storage device without <lb/>committing the layouts via LAYOUTCOMMIT, then the client has <lb/>additional work to do in order to have the client, metadata server, <lb/>and storage device(s) all synchronized on the state of the data. <lb/>o If the client has data still modified and unwritten in the <lb/>client's memory, the client has only two choices. <lb/>1. The client can obtain a layout via LAYOUTGET after the <lb/>server's grace period and write the data to the storage <lb/>devices. <lb/>2. The client can WRITE that data through the metadata server <lb/>using the WRITE (Section 18.32) operation, and then obtain <lb/>layouts as desired. <lb/>o If the client asynchronously wrote data to the storage device, but <lb/>still has a copy of the data in its memory, then it has available <lb/>to it the recovery options listed above in the previous bullet <lb/>point. If the metadata server is also in its grace period, the <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 324] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>client has available to it the options below in the next bullet <lb/>point. <lb/>o The client does not have a copy of the data in its memory and the <lb/>metadata server is still in its grace period. The client cannot <lb/>use LAYOUTGET (within or outside the grace period) to reclaim a <lb/>layout because the contents of the response from LAYOUTGET may not <lb/>match what it had previously. The range might be different or the <lb/>client might get the same range but the content of the layout <lb/>might be different. Even if the content of the layout appears to <lb/>be the same, the device IDs may map to different device addresses, <lb/>and even if the device addresses are the same, the device <lb/>addresses could have been assigned to a different storage device. <lb/>The option of retrieving the data from the storage device and <lb/>writing it to the metadata server per the recovery scenario <lb/>described above is not available because, again, the mappings of <lb/>range to device ID, device ID to device address, and device <lb/>address to physical device are stale, and new mappings via new <lb/>LAYOUTGET do not solve the problem. <lb/>The only recovery option for this scenario is to send a <lb/>LAYOUTCOMMIT in reclaim mode, which the metadata server will <lb/>accept as long as it is in its grace period. The use of <lb/>LAYOUTCOMMIT in reclaim mode informs the metadata server that the <lb/>layout has changed. It is critical that the metadata server <lb/>receive this information before its grace period ends, and thus <lb/>before it starts allowing updates to the file system. <lb/>To send LAYOUTCOMMIT in reclaim mode, the client sets the <lb/>loca_reclaim field of the operation's arguments (Section 18.42.1) <lb/>to TRUE. During the metadata server's recovery grace period (and <lb/>only during the recovery grace period) the metadata server is <lb/>prepared to accept LAYOUTCOMMIT requests with the loca_reclaim <lb/>field set to TRUE. <lb/>When loca_reclaim is TRUE, the client is attempting to commit <lb/>changes to the layout that occurred prior to the restart of the <lb/>metadata server. The metadata server applies some consistency <lb/>checks on the loca_layoutupdate field of the arguments to <lb/>determine whether the client can commit the data written to the <lb/>storage device to the file system. The loca_layoutupdate field is <lb/>of data type layoutupdate4 and contains layout-type-specific <lb/>content (in the lou_body field of loca_layoutupdate). The layout-<lb/>type-specific information that loca_layoutupdate might have is <lb/>discussed in Section 12.5.4.3. If the metadata server's <lb/>consistency checks on loca_layoutupdate succeed, then the metadata <lb/>server MUST commit the data (as described by the loca_offset, <lb/>loca_length, and loca_layoutupdate fields of the arguments) that <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 325] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>was written to the storage device. If the metadata server's <lb/>consistency checks on loca_layoutupdate fail, the metadata server <lb/>rejects the LAYOUTCOMMIT operation and makes no changes to the <lb/>file system. However, any time LAYOUTCOMMIT with loca_reclaim <lb/>TRUE fails, the pNFS client has lost all the data in the range <lb/>defined by <loca_offset, loca_length>. A client can defend <lb/>against this risk by caching all data, whether written <lb/>synchronously or asynchronously in its memory, and by not <lb/>releasing the cached data until a successful LAYOUTCOMMIT. This <lb/>condition does not hold true for all layout types; for example, <lb/>file-based storage devices need not suffer from this limitation. <lb/>o The client does not have a copy of the data in its memory and the <lb/>metadata server is no longer in its grace period; i.e., the <lb/>metadata server returns NFS4ERR_NO_GRACE. As with the scenario in <lb/>the above bullet point, the failure of LAYOUTCOMMIT means the data <lb/>in the range <loca_offset, loca_length> lost. The defense against <lb/>the risk is the same --cache all written data on the client until <lb/>a successful LAYOUTCOMMIT. <lb/>12.7.5. Operations during Metadata Server Grace Period <lb/>Some of the recovery scenarios thus far noted that some operations <lb/>(namely, WRITE and LAYOUTGET) might be permitted during the metadata <lb/>server's grace period. The metadata server may allow these <lb/>operations during its grace period. For LAYOUTGET, the metadata <lb/>server must reliably determine that servicing such a request will not <lb/>conflict with an impending LAYOUTCOMMIT reclaim request. For WRITE, <lb/>the metadata server must reliably determine that servicing the <lb/>request will not conflict with an impending OPEN or with a LOCK where <lb/>the file has mandatory byte-range locking enabled. <lb/>As mentioned previously, for expediency, the metadata server might <lb/>reject some operations (namely, WRITE and LAYOUTGET) during its grace <lb/>period, because the simplest correct approach is to reject all non-<lb/>reclaim pNFS requests and WRITE operations by returning the <lb/>NFS4ERR_GRACE error. However, depending on the storage protocol <lb/>(which is specific to the layout type) and metadata server <lb/>implementation, the metadata server may be able to determine that a <lb/>particular request is safe. For example, a metadata server may save <lb/>provisional allocation mappings for each file to stable storage, as <lb/>well as information about potentially conflicting OPEN share modes <lb/>and mandatory byte-range locks that might have been in effect at the <lb/>time of restart, and the metadata server may use this information <lb/>during the recovery grace period to determine that a WRITE request is <lb/>safe. <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 326] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>12.7.6. Storage Device Recovery <lb/>Recovery from storage device restart is mostly dependent upon the <lb/>layout type in use. However, there are a few general techniques a <lb/>client can use if it discovers a storage device has crashed while <lb/>holding modified, uncommitted data that was asynchronously written. <lb/>First and foremost, it is important to realize that the client is the <lb/>only one that has the information necessary to recover non-committed <lb/>data since it holds the modified data and probably nothing else does. <lb/>Second, the best solution is for the client to err on the side of <lb/>caution and attempt to rewrite the modified data through another <lb/>path. <lb/>The client SHOULD immediately WRITE the data to the metadata server, <lb/>with the stable field in the WRITE4args set to FILE_SYNC4. Once it <lb/>does this, there is no need to wait for the original storage device. <lb/>12.8. Metadata and Storage Device Roles <lb/>If the same physical hardware is used to implement both a metadata <lb/>server and storage device, then the same hardware entity is to be <lb/>understood to be implementing two distinct roles and it is important <lb/>that it be clearly understood on behalf of which role the hardware is <lb/>executing at any given time. <lb/>Two sub-cases can be distinguished. <lb/>1. The storage device uses NFSv4.1 as the storage protocol, i.e., <lb/>the same physical hardware is used to implement both a metadata <lb/>and data server. See Section 13.1 for a description of how <lb/>multiple roles are handled. <lb/>2. The storage device does not use NFSv4.1 as the storage protocol, <lb/>and the same physical hardware is used to implement both a <lb/>metadata and storage device. Whether distinct network addresses <lb/>are used to access the metadata server and storage device is <lb/>immaterial. This is because it is always clear to the pNFS <lb/>client and server, from the upper-layer protocol being used <lb/>(NFSv4.1 or non-NFSv4.1), to which role the request to the common <lb/>server network address is directed. <lb/>12.9. Security Considerations for pNFS <lb/>pNFS separates file system metadata and data and provides access to <lb/>both. There are pNFS-specific operations (listed in Section 12.3) <lb/>that provide access to the metadata; all existing NFSv4.1 <lb/>conventional (non-pNFS) security mechanisms and features apply to <lb/>accessing the metadata. The combination of components in a pNFS <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 327] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>system (see Figure 1) is required to preserve the security properties <lb/>of NFSv4.1 with respect to an entity that is accessing a storage <lb/>device from a client, including security countermeasures to defend <lb/>against threats for which NFSv4.1 provides defenses in environments <lb/>where these threats are considered significant. <lb/>In some cases, the security countermeasures for connections to <lb/>storage devices may take the form of physical isolation or a <lb/>recommendation to avoid the use of pNFS in an environment. For <lb/>example, it may be impractical to provide confidentiality protection <lb/>for some storage protocols to protect against eavesdropping. In <lb/>environments where eavesdropping on such protocols is of sufficient <lb/>concern to require countermeasures, physical isolation of the <lb/>communication channel (e.g., via direct connection from client(s) to <lb/>storage device(s)) and/or a decision to forgo use of pNFS (e.g., and <lb/>fall back to conventional NFSv4.1) may be appropriate courses of <lb/>action. <lb/>Where communication with storage devices is subject to the same <lb/>threats as client-to-metadata server communication, the protocols <lb/>used for that communication need to provide security mechanisms as <lb/>strong as or no weaker than those available via RPCSEC_GSS for <lb/>NFSv4.1. Except for the storage protocol used for the <lb/>LAYOUT4_NFSV4_1_FILES layout (see Section 13), i.e., except for <lb/>NFSv4.1, it is beyond the scope of this document to specify the <lb/>security mechanisms for storage access protocols. <lb/>pNFS implementations MUST NOT remove NFSv4.1's access controls. The <lb/>combination of clients, storage devices, and the metadata server are <lb/>responsible for ensuring that all client-to-storage-device file data <lb/>access respects NFSv4.1's ACLs and file open modes. This entails <lb/>performing both of these checks on every access in the client, the <lb/>storage device, or both (as applicable; when the storage device is an <lb/>NFSv4.1 server, the storage device is ultimately responsible for <lb/>controlling access as described in Section 13.9.2). If a pNFS <lb/>configuration performs these checks only in the client, the risk of a <lb/>misbehaving client obtaining unauthorized access is an important <lb/>consideration in determining when it is appropriate to use such a <lb/>pNFS configuration. Such layout types SHOULD NOT be used when <lb/>client-only access checks do not provide sufficient assurance that <lb/>NFSv4.1 access control is being applied correctly. (This is not a <lb/>problem for the file layout type described in Section 13 because the <lb/>storage access protocol for LAYOUT4_NFSV4_1_FILES is NFSv4.1, and <lb/>thus the security model for storage device access via <lb/>LAYOUT4_NFSv4_1_FILES is the same as that of the metadata server.) <lb/>For handling of access control specific to a layout, the reader <lb/>should examine the layout specification, such as the NFSv4.1/file-<lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 328] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>based layout (Section 13) of this document, the blocks layout [44], <lb/>and objects layout [43]. <lb/>13. NFSv4.1 as a Storage Protocol in pNFS: the File Layout Type <lb/>This section describes the semantics and format of NFSv4.1 file-based <lb/>layouts for pNFS. NFSv4.1 file-based layouts use the <lb/>LAYOUT4_NFSV4_1_FILES layout type. The LAYOUT4_NFSV4_1_FILES type <lb/>defines striping data across multiple NFSv4.1 data servers. <lb/>13.1. Client ID and Session Considerations <lb/>Sessions are a REQUIRED feature of NFSv4.1, and this extends to both <lb/>the metadata server and file-based (NFSv4.1-based) data servers. <lb/>The role a server plays in pNFS is determined by the result it <lb/>returns from EXCHANGE_ID. The roles are: <lb/>o Metadata server (EXCHGID4_FLAG_USE_PNFS_MDS is set in the result <lb/>eir_flags). <lb/>o Data server (EXCHGID4_FLAG_USE_PNFS_DS). <lb/>o Non-metadata server (EXCHGID4_FLAG_USE_NON_PNFS). This is an <lb/>NFSv4.1 server that does not support operations (e.g., LAYOUTGET) <lb/>or attributes that pertain to pNFS. <lb/>The client MAY request zero or more of EXCHGID4_FLAG_USE_NON_PNFS, <lb/>EXCHGID4_FLAG_USE_PNFS_DS, or EXCHGID4_FLAG_USE_PNFS_MDS, even though <lb/>some combinations (e.g., EXCHGID4_FLAG_USE_NON_PNFS | <lb/>EXCHGID4_FLAG_USE_PNFS_MDS) are contradictory. However, the server <lb/>MUST only return the following acceptable combinations: <lb/>+---------------------------------------------------------+ <lb/>| Acceptable Results from EXCHANGE_ID <lb/>| <lb/>+---------------------------------------------------------+ <lb/>| EXCHGID4_FLAG_USE_PNFS_MDS <lb/>| <lb/>| EXCHGID4_FLAG_USE_PNFS_MDS | EXCHGID4_FLAG_USE_PNFS_DS | <lb/>| EXCHGID4_FLAG_USE_PNFS_DS <lb/>| <lb/>| EXCHGID4_FLAG_USE_NON_PNFS <lb/>| <lb/>| EXCHGID4_FLAG_USE_PNFS_DS | EXCHGID4_FLAG_USE_NON_PNFS | <lb/>+---------------------------------------------------------+ <lb/>As the above table implies, a server can have one or two roles. A <lb/>server can be both a metadata server and a data server, or it can be <lb/>both a data server and non-metadata server. In addition to returning <lb/>two roles in the EXCHANGE_ID's results, and thus serving both roles <lb/>via a common client ID, a server can serve two roles by returning a <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 329] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>unique client ID and server owner for each role in each of two <lb/>EXCHANGE_ID results, with each result indicating each role. <lb/>In the case of a server with concurrent pNFS roles that are served by <lb/>a common client ID, if the EXCHANGE_ID request from the client has <lb/>zero or a combination of the bits set in eia_flags, the server result <lb/>should set bits that represent the higher of the acceptable <lb/>combination of the server roles, with a preference to match the roles <lb/>requested by the client. Thus, if a client request has <lb/>(EXCHGID4_FLAG_USE_NON_PNFS | EXCHGID4_FLAG_USE_PNFS_MDS | <lb/>EXCHGID4_FLAG_USE_PNFS_DS) flags set, and the server is both a <lb/>metadata server and a data server, serving both the roles by a common <lb/>client ID, the server SHOULD return with <lb/>(EXCHGID4_FLAG_USE_PNFS_MDS | EXCHGID4_FLAG_USE_PNFS_DS) set. <lb/>In the case of a server that has multiple concurrent pNFS roles, each <lb/>role served by a unique client ID, if the client specifies zero or a <lb/>combination of roles in the request, the server results SHOULD return <lb/>only one of the roles from the combination specified by the client <lb/>request. If the role specified by the server result does not match <lb/>the intended use by the client, the client should send the <lb/>EXCHANGE_ID specifying just the interested pNFS role. <lb/>If a pNFS metadata client gets a layout that refers it to an NFSv4.1 <lb/>data server, it needs a client ID on that data server. If it does <lb/>not yet have a client ID from the server that had the <lb/>EXCHGID4_FLAG_USE_PNFS_DS flag set in the EXCHANGE_ID results, then <lb/>the client needs to send an EXCHANGE_ID to the data server, using the <lb/>same co_ownerid as it sent to the metadata server, with the <lb/>EXCHGID4_FLAG_USE_PNFS_DS flag set in the arguments. If the server's <lb/>EXCHANGE_ID results have EXCHGID4_FLAG_USE_PNFS_DS set, then the <lb/>client may use the client ID to create sessions that will exchange <lb/>pNFS data operations. The client ID returned by the data server has <lb/>no relationship with the client ID returned by a metadata server <lb/>unless the client IDs are equal, and the server owners and server <lb/>scopes of the data server and metadata server are equal. <lb/>In NFSv4.1, the session ID in the SEQUENCE operation implies the <lb/>client ID, which in turn might be used by the server to map the <lb/>stateid to the right client/server pair. However, when a data server <lb/>is presented with a READ or WRITE operation with a stateid, because <lb/>the stateid is associated with a client ID on a metadata server, and <lb/>because the session ID in the preceding SEQUENCE operation is tied to <lb/>the client ID of the data server, the data server has no obvious way <lb/>to determine the metadata server from the COMPOUND procedure, and <lb/>thus has no way to validate the stateid. One RECOMMENDED approach is <lb/>for pNFS servers to encode metadata server routing and/or identity <lb/>information in the data server filehandles as returned in the layout. <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 330] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>If metadata server routing and/or identity information is encoded in <lb/>data server filehandles, when the metadata server identity or <lb/>location changes, the data server filehandles it gave out will become <lb/>invalid (stale), and so the metadata server MUST first recall the <lb/>layouts. Invalidating a data server filehandle does not render the <lb/>NFS client's data cache invalid. The client's cache should map a <lb/>data server filehandle to a metadata server filehandle, and a <lb/>metadata server filehandle to cached data. <lb/>If a server is both a metadata server and a data server, the server <lb/>might need to distinguish operations on files that are directed to <lb/>the metadata server from those that are directed to the data server. <lb/>It is RECOMMENDED that the values of the filehandles returned by the <lb/>LAYOUTGET operation be different than the value of the filehandle <lb/>returned by the OPEN of the same file. <lb/>Another scenario is for the metadata server and the storage device to <lb/>be distinct from one client's point of view, and the roles reversed <lb/>from another client's point of view. For example, in the cluster <lb/>file system model, a metadata server to one client might be a data <lb/>server to another client. If NFSv4.1 is being used as the storage <lb/>protocol, then pNFS servers need to encode the values of filehandles <lb/>according to their specific roles. <lb/>13.1.1. Sessions Considerations for Data Servers <lb/>Section 2.10.11.2 states that a client has to keep its lease renewed <lb/>in order to prevent a session from being deleted by the server. If <lb/>the reply to EXCHANGE_ID has just the EXCHGID4_FLAG_USE_PNFS_DS role <lb/>set, then (as noted in Section 13.6) the client will not be able to <lb/>determine the data server's lease_time attribute because GETATTR will <lb/>not be permitted. Instead, the rule is that any time a client <lb/>receives a layout referring it to a data server that returns just the <lb/>EXCHGID4_FLAG_USE_PNFS_DS role, the client MAY assume that the <lb/>lease_time attribute from the metadata server that returned the <lb/>layout applies to the data server. Thus, the data server MUST be <lb/>aware of the values of all lease_time attributes of all metadata <lb/>servers for which it is providing I/O, and it MUST use the maximum of <lb/>all such lease_time values as the lease interval for all client IDs <lb/>and sessions established on it. <lb/>For example, if one metadata server has a lease_time attribute of 20 <lb/>seconds, and a second metadata server has a lease_time attribute of <lb/>10 seconds, then if both servers return layouts that refer to an <lb/>EXCHGID4_FLAG_USE_PNFS_DS-only data server, the data server MUST <lb/>renew a client's lease if the interval between two SEQUENCE <lb/>operations on different COMPOUND requests is less than 20 seconds. <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 331] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>13.2. File Layout Definitions <lb/>The following definitions apply to the LAYOUT4_NFSV4_1_FILES layout <lb/>type and may be applicable to other layout types. <lb/>Unit. A unit is a fixed-size quantity of data written to a data <lb/>server. <lb/>Pattern. A pattern is a method of distributing one or more equal <lb/>sized units across a set of data servers. A pattern is iterated <lb/>one or more times. <lb/>Stripe. A stripe is a set of data distributed across a set of data <lb/>servers in a pattern before that pattern repeats. <lb/>Stripe Count. A stripe count is the number of units in a pattern. <lb/>Stripe Width. A stripe width is the size of a stripe in bytes. The <lb/>stripe width = the stripe count * the size of the stripe unit. <lb/>Hereafter, this document will refer to a unit that is a written in a <lb/>pattern as a "stripe unit". <lb/>A pattern may have more stripe units than data servers. If so, some <lb/>data servers will have more than one stripe unit per stripe. A data <lb/>server that has multiple stripe units per stripe MAY store each unit <lb/>in a different data file (and depending on the implementation, will <lb/>possibly assign a unique data filehandle to each data file). <lb/>13.3. File Layout Data Types <lb/>The high level NFSv4.1 layout types are nfsv4_1_file_layouthint4, <lb/>nfsv4_1_file_layout_ds_addr4, and nfsv4_1_file_layout4. <lb/>The SETATTR operation supports a layout hint attribute <lb/>(Section 5.12.4). When the client sets a layout hint (data type <lb/>layouthint4) with a layout type of LAYOUT4_NFSV4_1_FILES (the <lb/>loh_type field), the loh_body field contains a value of data type <lb/>nfsv4_1_file_layouthint4. <lb/>const NFL4_UFLG_MASK <lb/>= 0x0000003F; <lb/>const NFL4_UFLG_DENSE <lb/>= 0x00000001; <lb/>const NFL4_UFLG_COMMIT_THRU_MDS = 0x00000002; <lb/>const NFL4_UFLG_STRIPE_UNIT_SIZE_MASK <lb/>= 0xFFFFFFC0; <lb/>typedef uint32_t nfl_util4; <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 332] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>enum filelayout_hint_care4 { <lb/>NFLH4_CARE_DENSE <lb/>= NFL4_UFLG_DENSE, <lb/>NFLH4_CARE_COMMIT_THRU_MDS <lb/>= NFL4_UFLG_COMMIT_THRU_MDS, <lb/>NFLH4_CARE_STRIPE_UNIT_SIZE <lb/>= 0x00000040, <lb/>NFLH4_CARE_STRIPE_COUNT = 0x00000080 <lb/>}; <lb/>/* Encoded in the loh_body field of data type layouthint4: */ <lb/>struct nfsv4_1_file_layouthint4 { <lb/>uint32_t <lb/>nflh_care; <lb/>nfl_util4 <lb/>nflh_util; <lb/>count4 <lb/>nflh_stripe_count; <lb/>}; <lb/>The generic layout hint structure is described in Section 3.3.19. <lb/>The client uses the layout hint in the layout_hint (Section 5.12.4) <lb/>attribute to indicate the preferred type of layout to be used for a <lb/>newly created file. The LAYOUT4_NFSV4_1_FILES layout-type-specific <lb/>content for the layout hint is composed of three fields. The first <lb/>field, nflh_care, is a set of flags indicating which values of the <lb/>hint the client cares about. If the NFLH4_CARE_DENSE flag is set, <lb/>then the client indicates in the second field, nflh_util, a <lb/>preference for how the data file is packed (Section 13.4.4), which is <lb/>controlled by the value of the expression nflh_util & NFL4_UFLG_DENSE <lb/>("&" represents the bitwise AND operator). If the <lb/>NFLH4_CARE_COMMIT_THRU_MDS flag is set, then the client indicates a <lb/>preference for whether the client should send COMMIT operations to <lb/>the metadata server or data server (Section 13.7), which is <lb/>controlled by the value of nflh_util & NFL4_UFLG_COMMIT_THRU_MDS. If <lb/>the NFLH4_CARE_STRIPE_UNIT_SIZE flag is set, the client indicates its <lb/>preferred stripe unit size, which is indicated in nflh_util & <lb/>NFL4_UFLG_STRIPE_UNIT_SIZE_MASK (thus, the stripe unit size MUST be a <lb/>multiple of 64 bytes). The minimum stripe unit size is 64 bytes. If <lb/>the NFLH4_CARE_STRIPE_COUNT flag is set, the client indicates in the <lb/>third field, nflh_stripe_count, the stripe count. The stripe count <lb/>multiplied by the stripe unit size is the stripe width. <lb/>When LAYOUTGET returns a LAYOUT4_NFSV4_1_FILES layout (indicated in <lb/>the loc_type field of the lo_content field), the loc_body field of <lb/>the lo_content field contains a value of data type <lb/>nfsv4_1_file_layout4. Among other content, nfsv4_1_file_layout4 has <lb/>a storage device ID (field nfl_deviceid) of data type deviceid4. The <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 333] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>GETDEVICEINFO operation maps a device ID to a storage device address <lb/>(type device_addr4). When GETDEVICEINFO returns a device address <lb/>with a layout type of LAYOUT4_NFSV4_1_FILES (the da_layout_type <lb/>field), the da_addr_body field contains a value of data type <lb/>nfsv4_1_file_layout_ds_addr4. <lb/>typedef netaddr4 multipath_list4<>; <lb/>/* <lb/>* Encoded in the da_addr_body field of <lb/>* data type device_addr4: <lb/>*/ <lb/>struct nfsv4_1_file_layout_ds_addr4 { <lb/>uint32_t <lb/>nflda_stripe_indices<>; <lb/>multipath_list4 nflda_multipath_ds_list<>; <lb/>}; <lb/>The nfsv4_1_file_layout_ds_addr4 data type represents the device <lb/>address. It is composed of two fields: <lb/>1. nflda_multipath_ds_list: An array of lists of data servers, where <lb/>each list can be one or more elements, and each element <lb/>represents a data server address that may serve equally as the <lb/>target of I/O operations (see Section 13.5). The length of this <lb/>array might be different than the stripe count. <lb/>2. nflda_stripe_indices: An array of indices used to index into <lb/>nflda_multipath_ds_list. The value of each element of <lb/>nflda_stripe_indices MUST be less than the number of elements in <lb/>nflda_multipath_ds_list. Each element of nflda_multipath_ds_list <lb/>SHOULD be referred to by one or more elements of <lb/>nflda_stripe_indices. The number of elements in <lb/>nflda_stripe_indices is always equal to the stripe count. <lb/>/* <lb/>* Encoded in the loc_body field of <lb/>* data type layout_content4: <lb/>*/ <lb/>struct nfsv4_1_file_layout4 { <lb/>deviceid4 <lb/>nfl_deviceid; <lb/>nfl_util4 <lb/>nfl_util; <lb/>uint32_t <lb/>nfl_first_stripe_index; <lb/>offset4 <lb/>nfl_pattern_offset; <lb/>nfs_fh4 <lb/>nfl_fh_list<>; <lb/>}; <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 334] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>The nfsv4_1_file_layout4 data type represents the layout. It is <lb/>composed of the following fields: <lb/>1. nfl_deviceid: The device ID that maps to a value of type <lb/>nfsv4_1_file_layout_ds_addr4. <lb/>2. nfl_util: Like the nflh_util field of data type <lb/>nfsv4_1_file_layouthint4, a compact representation of how the <lb/>data on a file on each data server is packed, whether the client <lb/>should send COMMIT operations to the metadata server or data <lb/>server, and the stripe unit size. If a server returns two or <lb/>more overlapping layouts, each stripe unit size in each <lb/>overlapping layout MUST be the same. <lb/>3. nfl_first_stripe_index: The index into the first element of the <lb/>nflda_stripe_indices array to use. <lb/>4. nfl_pattern_offset: This field is the logical offset into the <lb/>file where the striping pattern starts. It is required for <lb/>converting the client's logical I/O offset (e.g., the current <lb/>offset in a POSIX file descriptor before the read() or write() <lb/>system call is sent) into the stripe unit number (see <lb/>Section 13.4.1). <lb/>If dense packing is used, then nfl_pattern_offset is also needed <lb/>to convert the client's logical I/O offset to an offset on the <lb/>file on the data server corresponding to the stripe unit number <lb/>(see Section 13.4.4). <lb/>Note that nfl_pattern_offset is not always the same as lo_offset. <lb/>For example, via the LAYOUTGET operation, a client might request <lb/>a layout starting at offset 1000 of a file that has its striping <lb/>pattern start at offset zero. <lb/>5. nfl_fh_list: An array of data server filehandles for each list of <lb/>data servers in each element of the nflda_multipath_ds_list <lb/>array. The number of elements in nfl_fh_list depends on whether <lb/>sparse or dense packing is being used. <lb/>* If sparse packing is being used, the number of elements in <lb/>nfl_fh_list MUST be one of three values: <lb/>+ Zero. This means that filehandles used for each data <lb/>server are the same as the filehandle returned by the OPEN <lb/>operation from the metadata server. <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 335] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>+ One. This means that every data server uses the same <lb/>filehandle: what is specified in nfl_fh_list[0]. <lb/>+ The same number of elements in nflda_multipath_ds_list. <lb/>Thus, in this case, when sending an I/O operation to any <lb/>data server in nflda_multipath_ds_list[X], the filehandle <lb/>in nfl_fh_list[X] MUST be used. <lb/>See the discussion on sparse packing in Section 13.4.4. <lb/>* If dense packing is being used, the number of elements in <lb/>nfl_fh_list MUST be the same as the number of elements in <lb/>nflda_stripe_indices. Thus, when sending an I/O operation to <lb/>any data server in <lb/>nflda_multipath_ds_list[nflda_stripe_indices[Y]], the <lb/>filehandle in nfl_fh_list[Y] MUST be used. In addition, any <lb/>time there exists i and j, (i != j), such that the <lb/>intersection of <lb/>nflda_multipath_ds_list[nflda_stripe_indices[i]] and <lb/>nflda_multipath_ds_list[nflda_stripe_indices[j]] is not empty, <lb/>then nfl_fh_list[i] MUST NOT equal nfl_fh_list[j]. In other <lb/>words, when dense packing is being used, if a data server <lb/>appears in two or more units of a striping pattern, each <lb/>reference to the data server MUST use a different filehandle. <lb/>Indeed, if there are multiple striping patterns, as indicated <lb/>by the presence of multiple objects of data type layout4 <lb/>(either returned in one or multiple LAYOUTGET operations), and <lb/>a data server is the target of a unit of one pattern and <lb/>another unit of another pattern, then each reference to each <lb/>data server MUST use a different filehandle. <lb/>See the discussion on dense packing in Section 13.4.4. <lb/>The details on the interpretation of the layout are in Section 13.4. <lb/>13.4. Interpreting the File Layout <lb/>13.4.1. Determining the Stripe Unit Number <lb/>To find the stripe unit number that corresponds to the client's <lb/>logical file offset, the pattern offset will also be used. The i'th <lb/>stripe unit (SUi) is: <lb/>relative_offset = file_offset -nfl_pattern_offset; <lb/>SUi = floor(relative_offset / stripe_unit_size); <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 336] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>13.4.2. Interpreting the File Layout Using Sparse Packing <lb/>When sparse packing is used, the algorithm for determining the <lb/>filehandle and set of data-server network addresses to write stripe <lb/>unit i (SUi) to is: <lb/>stripe_count = number of elements in nflda_stripe_indices; <lb/>j = (SUi + nfl_first_stripe_index) % stripe_count; <lb/>idx = nflda_stripe_indices[j]; <lb/>fh_count = number of elements in nfl_fh_list; <lb/>ds_count = number of elements in nflda_multipath_ds_list; <lb/>switch (fh_count) { <lb/>case ds_count: <lb/>fh = nfl_fh_list[idx]; <lb/>break; <lb/>case 1: <lb/>fh = nfl_fh_list[0]; <lb/>break; <lb/>case 0: <lb/>fh = filehandle returned by OPEN; <lb/>break; <lb/>default: <lb/>throw a fatal exception; <lb/>break; <lb/>} <lb/>address_list = nflda_multipath_ds_list[idx]; <lb/>The client would then select a data server from address_list, and <lb/>send a READ or WRITE operation using the filehandle specified in fh. <lb/>Consider the following example: <lb/>Suppose we have a device address consisting of seven data servers, <lb/>arranged in three equivalence (Section 13.5) classes: <lb/>{ A, B, C, D }, { E }, { F, G } <lb/>where A through G are network addresses. <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 337] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>Then <lb/>nflda_multipath_ds_list<> = { A, B, C, D }, { E }, { F, G } <lb/>i.e., <lb/>nflda_multipath_ds_list[0] = { A, B, C, D } <lb/>nflda_multipath_ds_list[1] = { E } <lb/>nflda_multipath_ds_list[2] = { F, G } <lb/>Suppose the striping index array is: <lb/>nflda_stripe_indices<> = { 2, 0, 1, 0 } <lb/>Now suppose the client gets a layout that has a device ID that maps <lb/>to the above device address. The initial index contains <lb/>nfl_first_stripe_index = 2, <lb/>and the filehandle list is <lb/>nfl_fh_list = { 0x36, 0x87, 0x67 }. <lb/>If the client wants to write to SU0, the set of valid { network <lb/>address, filehandle } combinations for SUi are determined by: <lb/>nfl_first_stripe_index = 2 <lb/>So <lb/>idx = nflda_stripe_indices[(0 + 2) % 4] <lb/>= nflda_stripe_indices[2] <lb/>= 1 <lb/>So <lb/>nflda_multipath_ds_list[1] = { E } <lb/>and <lb/>nfl_fh_list[1] = { 0x87 } <lb/>The client can thus write SU0 to { 0x87, { E } }. <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 338] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>The destinations of the first 13 storage units are: <lb/>+-----+------------+--------------+ <lb/>| SUi | filehandle | data servers | <lb/>+-----+------------+--------------+ <lb/>| 0 <lb/>| 87 <lb/>| E <lb/>| <lb/>| 1 <lb/>| 36 <lb/>| A,B,C,D <lb/>| <lb/>| 2 <lb/>| 67 <lb/>| F,G <lb/>| <lb/>| 3 <lb/>| 36 <lb/>| A,B,C,D <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| 4 <lb/>| 87 <lb/>| E <lb/>| <lb/>| 5 <lb/>| 36 <lb/>| A,B,C,D <lb/>| <lb/>| 6 <lb/>| 67 <lb/>| F,G <lb/>| <lb/>| 7 <lb/>| 36 <lb/>| A,B,C,D <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| 8 <lb/>| 87 <lb/>| E <lb/>| <lb/>| 9 <lb/>| 36 <lb/>| A,B,C,D <lb/>| <lb/>| 10 | 67 <lb/>| F,G <lb/>| <lb/>| 11 | 36 <lb/>| A,B,C,D <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| 12 | 87 <lb/>| E <lb/>| <lb/>+-----+------------+--------------+ <lb/>13.4.3. Interpreting the File Layout Using Dense Packing <lb/>When dense packing is used, the algorithm for determining the <lb/>filehandle and set of data server network addresses to write stripe <lb/>unit i (SUi) to is: <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 339] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>stripe_count = number of elements in nflda_stripe_indices; <lb/>j = (SUi + nfl_first_stripe_index) % stripe_count; <lb/>idx = nflda_stripe_indices[j]; <lb/>fh_count = number of elements in nfl_fh_list; <lb/>ds_count = number of elements in nflda_multipath_ds_list; <lb/>switch (fh_count) { <lb/>case stripe_count: <lb/>fh = nfl_fh_list[j]; <lb/>break; <lb/>default: <lb/>throw a fatal exception; <lb/>break; <lb/>} <lb/>address_list = nflda_multipath_ds_list[idx]; <lb/>The client would then select a data server from address_list, and <lb/>send a READ or WRITE operation using the filehandle specified in fh. <lb/>Consider the following example (which is the same as the sparse <lb/>packing example, except for the filehandle list): <lb/>Suppose we have a device address consisting of seven data servers, <lb/>arranged in three equivalence (Section 13.5) classes: <lb/>{ A, B, C, D }, { E }, { F, G } <lb/>where A through G are network addresses. <lb/>Then <lb/>nflda_multipath_ds_list<> = { A, B, C, D }, { E }, { F, G } <lb/>i.e., <lb/>nflda_multipath_ds_list[0] = { A, B, C, D } <lb/>nflda_multipath_ds_list[1] = { E } <lb/>nflda_multipath_ds_list[2] = { F, G } <lb/>Suppose the striping index array is: <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 340] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>nflda_stripe_indices<> = { 2, 0, 1, 0 } <lb/>Now suppose the client gets a layout that has a device ID that maps <lb/>to the above device address. The initial index contains <lb/>nfl_first_stripe_index = 2, <lb/>and <lb/>nfl_fh_list = { 0x67, 0x37, 0x87, 0x36 }. <lb/>The interesting examples for dense packing are SU1 and SU3 because <lb/>each stripe unit refers to the same data server list, yet each stripe <lb/>unit MUST use a different filehandle. If the client wants to write <lb/>to SU1, the set of valid { network address, filehandle } combinations <lb/>for SUi are determined by: <lb/>nfl_first_stripe_index = 2 <lb/>So <lb/>j = (1 + 2) % 4 = 3 <lb/>idx = nflda_stripe_indices[j] <lb/>= nflda_stripe_indices[3] <lb/>= 0 <lb/>So <lb/>nflda_multipath_ds_list[0] = { A, B, C, D } <lb/>and <lb/>nfl_fh_list[3] = { 0x36 } <lb/>The client can thus write SU1 to { 0x36, { A, B, C, D } }. <lb/>For SU3, j = (3 + 2) % 4 = 1, and nflda_stripe_indices[1] = 0. Then <lb/>nflda_multipath_ds_list[0] = { A, B, C, D }, and nfl_fh_list[1] = <lb/>0x37. The client can thus write SU3 to { 0x37, { A, B, C, D } }. <lb/>The destinations of the first 13 storage units are: <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 341] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>+-----+------------+--------------+ <lb/>| SUi | filehandle | data servers | <lb/>+-----+------------+--------------+ <lb/>| 0 <lb/>| 87 <lb/>| E <lb/>| <lb/>| 1 <lb/>| 36 <lb/>| A,B,C,D <lb/>| <lb/>| 2 <lb/>| 67 <lb/>| F,G <lb/>| <lb/>| 3 <lb/>| 37 <lb/>| A,B,C,D <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| 4 <lb/>| 87 <lb/>| E <lb/>| <lb/>| 5 <lb/>| 36 <lb/>| A,B,C,D <lb/>| <lb/>| 6 <lb/>| 67 <lb/>| F,G <lb/>| <lb/>| 7 <lb/>| 37 <lb/>| A,B,C,D <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| 8 <lb/>| 87 <lb/>| E <lb/>| <lb/>| 9 <lb/>| 36 <lb/>| A,B,C,D <lb/>| <lb/>| 10 | 67 <lb/>| F,G <lb/>| <lb/>| 11 | 37 <lb/>| A,B,C,D <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| 12 | 87 <lb/>| E <lb/>| <lb/>+-----+------------+--------------+ <lb/>13.4.4. Sparse and Dense Stripe Unit Packing <lb/>The flag NFL4_UFLG_DENSE of the nfl_util4 data type (field nflh_util <lb/>of the data type nfsv4_1_file_layouthint4 and field nfl_util of data <lb/>type nfsv4_1_file_layout_ds_addr4) specifies how the data is packed <lb/>within the data file on a data server. It allows for two different <lb/>data packings: sparse and dense. The packing type determines the <lb/>calculation that will be made to map the client-visible file offset <lb/>to the offset within the data file located on the data server. <lb/>If nfl_util & NFL4_UFLG_DENSE is zero, this means that sparse packing <lb/>is being used. Hence, the logical offsets of the file as viewed by a <lb/>client sending READs and WRITEs directly to the metadata server are <lb/>the same offsets each data server uses when storing a stripe unit. <lb/>The effect then, for striping patterns consisting of at least two <lb/>stripe units, is for each data server file to be sparse or "holey". <lb/>So for example, suppose there is a pattern with three stripe units, <lb/>the stripe unit size is 4096 bytes, and there are three data servers <lb/>in the pattern. Then, the file in data server 1 will have stripe <lb/>units 0, 3, 6, 9, ... filled; data server 2's file will have stripe <lb/>units 1, 4, 7, 10, ... filled; and data server 3's file will have <lb/>stripe units 2, 5, 8, 11, ... filled. The unfilled stripe units of <lb/>each file will be holes; hence, the files in each data server are <lb/>sparse. <lb/>If sparse packing is being used and a client attempts I/O to one of <lb/>the holes, then an error MUST be returned by the data server. Using <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 342] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>the above example, if data server 3 received a READ or WRITE <lb/>operation for block 4, the data server would return <lb/>NFS4ERR_PNFS_IO_HOLE. Thus, data servers need to understand the <lb/>striping pattern in order to support sparse packing. <lb/>If nfl_util & NFL4_UFLG_DENSE is one, this means that dense packing <lb/>is being used, and the data server files have no holes. Dense <lb/>packing might be selected because the data server does not <lb/>(efficiently) support holey files or because the data server cannot <lb/>recognize read-ahead unless there are no holes. If dense packing is <lb/>indicated in the layout, the data files will be packed. Using the <lb/>same striping pattern and stripe unit size that were used for the <lb/>sparse packing example, the corresponding dense packing example would <lb/>have all stripe units of all data files filled as follows: <lb/>o Logical stripe units 0, 3, 6, ... of the file would live on stripe <lb/>units 0, 1, 2, ... of the file of data server 1. <lb/>o Logical stripe units 1, 4, 7, ... of the file would live on stripe <lb/>units 0, 1, 2, ... of the file of data server 2. <lb/>o Logical stripe units 2, 5, 8, ... of the file would live on stripe <lb/>units 0, 1, 2, ... of the file of data server 3. <lb/>Because dense packing does not leave holes on the data servers, the <lb/>pNFS client is allowed to write to any offset of any data file of any <lb/>data server in the stripe. Thus, the data servers need not know the <lb/>file's striping pattern. <lb/>The calculation to determine the byte offset within the data file for <lb/>dense data server layouts is: <lb/>stripe_width = stripe_unit_size * N; <lb/>where N = number of elements in nflda_stripe_indices. <lb/>relative_offset = file_offset -nfl_pattern_offset; <lb/>data_file_offset = floor(relative_offset / stripe_width) <lb/>* stripe_unit_size <lb/>+ relative_offset % stripe_unit_size <lb/>If dense packing is being used, and a data server appears more than <lb/>once in a striping pattern, then to distinguish one stripe unit from <lb/>another, the data server MUST use a different filehandle. Let's <lb/>suppose there are two data servers. Logical stripe units 0, 3, 6 are <lb/>served by data server 1; logical stripe units 1, 4, 7 are served by <lb/>data server 2; and logical stripe units 2, 5, 8 are also served by <lb/>data server 2. Unless data server 2 has two filehandles (each <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 343] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>referring to a different data file), then, for example, a write to <lb/>logical stripe unit 1 overwrites the write to logical stripe unit 2 <lb/>because both logical stripe units are located in the same stripe unit <lb/>(0) of data server 2. <lb/>13.5. Data Server Multipathing <lb/>The NFSv4.1 file layout supports multipathing to multiple data server <lb/>addresses. Data-server-level multipathing is used for bandwidth <lb/>scaling via trunking (Section 2.10.5) and for higher availability of <lb/>use in the case of a data-server failure. Multipathing allows the <lb/>client to switch to another data server address which may be that of <lb/>another data server that is exporting the same data stripe unit, <lb/>without having to contact the metadata server for a new layout. <lb/>To support data server multipathing, each element of the <lb/>nflda_multipath_ds_list contains an array of one more data server <lb/>network addresses. This array (data type multipath_list4) represents <lb/>a list of data servers (each identified by a network address), with <lb/>the possibility that some data servers will appear in the list <lb/>multiple times. <lb/>The client is free to use any of the network addresses as a <lb/>destination to send data server requests. If some network addresses <lb/>are less optimal paths to the data than others, then the MDS SHOULD <lb/>NOT include those network addresses in an element of <lb/>nflda_multipath_ds_list. If less optimal network addresses exist to <lb/>provide failover, the RECOMMENDED method to offer the addresses is to <lb/>provide them in a replacement device-ID-to-device-address mapping, or <lb/>a replacement device ID. When a client finds that no data server in <lb/>an element of nflda_multipath_ds_list responds, it SHOULD send a <lb/>GETDEVICEINFO to attempt to replace the existing device-ID-to-device-<lb/>address mappings. If the MDS detects that all data servers <lb/>represented by an element of nflda_multipath_ds_list are unavailable, <lb/>the MDS SHOULD send a CB_NOTIFY_DEVICEID (if the client has indicated <lb/>it wants device ID notifications for changed device IDs) to change <lb/>the device-ID-to-device-address mappings to the available data <lb/>servers. If the device ID itself will be replaced, the MDS SHOULD <lb/>recall all layouts with the device ID, and thus force the client to <lb/>get new layouts and device ID mappings via LAYOUTGET and <lb/>GETDEVICEINFO. <lb/>Generally, if two network addresses appear in an element of <lb/>nflda_multipath_ds_list, they will designate the same data server, <lb/>and the two data server addresses will support the implementation of <lb/>client ID or session trunking (the latter is RECOMMENDED) as defined <lb/>in Section 2.10.5. The two data server addresses will share the same <lb/>server owner or major ID of the server owner. It is not always <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 344] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>necessary for the two data server addresses to designate the same <lb/>server with trunking being used. For example, the data could be <lb/>read-only, and the data consist of exact replicas. <lb/>13.6. Operations Sent to NFSv4.1 Data Servers <lb/>Clients accessing data on an NFSv4.1 data server MUST send only the <lb/>NULL procedure and COMPOUND procedures whose operations are taken <lb/>only from two restricted subsets of the operations defined as valid <lb/>NFSv4.1 operations. Clients MUST use the filehandle specified by the <lb/>layout when accessing data on NFSv4.1 data servers. <lb/>The first of these operation subsets consists of management <lb/>operations. This subset consists of the BACKCHANNEL_CTL, <lb/>BIND_CONN_TO_SESSION, CREATE_SESSION, DESTROY_CLIENTID, <lb/>DESTROY_SESSION, EXCHANGE_ID, SECINFO_NO_NAME, SET_SSV, and SEQUENCE <lb/>operations. The client may use these operations in order to set up <lb/>and maintain the appropriate client IDs, sessions, and security <lb/>contexts involved in communication with the data server. Henceforth, <lb/>these will be referred to as data-server housekeeping operations. <lb/>The second subset consists of COMMIT, READ, WRITE, and PUTFH. These <lb/>operations MUST be used with a current filehandle specified by the <lb/>layout. In the case of PUTFH, the new current filehandle MUST be one <lb/>taken from the layout. Henceforth, these will be referred to as <lb/>data-server I/O operations. As described in Section 12.5.1, a client <lb/>MUST NOT send an I/O to a data server for which it does not hold a <lb/>valid layout; the data server MUST reject such an I/O. <lb/>Unless the server has a concurrent non-data-server personality --<lb/>i.e., EXCHANGE_ID results returned (EXCHGID4_FLAG_USE_PNFS_DS | <lb/>EXCHGID4_FLAG_USE_PNFS_MDS) or (EXCHGID4_FLAG_USE_PNFS_DS | <lb/>EXCHGID4_FLAG_USE_NON_PNFS) see Section 13.1 --any attempted use of <lb/>operations against a data server other than those specified in the <lb/>two subsets above MUST return NFS4ERR_NOTSUPP to the client. <lb/>When the server has concurrent data-server and non-data-server <lb/>personalities, each COMPOUND sent by the client MUST be constructed <lb/>so that it is appropriate to one of the two personalities, and it <lb/>MUST NOT contain operations directed to a mix of those personalities. <lb/>The server MUST enforce this. To understand the constraints, <lb/>operations within a COMPOUND are divided into the following three <lb/>classes: <lb/>1. An operation that is ambiguous regarding its personality <lb/>assignment. This includes all of the data-server housekeeping <lb/>operations. Additionally, if the server has assigned filehandles <lb/>so that the ones defined by the layout are the same as those used <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 345] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>by the metadata server, all operations using such filehandles are <lb/>within this class, with the following exception. The exception <lb/>is that if the operation uses a stateid that is incompatible with <lb/>a data-server personality (e.g., a special stateid or the stateid <lb/>has a non-zero "seqid" field, see Section 13.9.1), the operation <lb/>is in class 3, as described below. A COMPOUND containing <lb/>multiple class 1 operations (and operations of no other class) <lb/>MAY be sent to a server with multiple concurrent data server and <lb/>non-data-server personalities. <lb/>2. An operation that is unambiguously referable to the data-server <lb/>personality. This includes data-server I/O operations where the <lb/>filehandle is one that can only be validly directed to the data-<lb/>server personality. <lb/>3. An operation that is unambiguously referable to the non-data-<lb/>server personality. This includes all COMPOUND operations that <lb/>are neither data-server housekeeping nor data-server I/O <lb/>operations, plus data-server I/O operations where the current fh <lb/>(or the one to be made the current fh in the case of PUTFH) is <lb/>only valid on the metadata server or where a stateid is used that <lb/>is incompatible with the data server, i.e., is a special stateid <lb/>or has a non-zero seqid value. <lb/>When a COMPOUND first executes an operation from class 3 above, it <lb/>acts as a normal COMPOUND on any other server, and the data-server <lb/>personality ceases to be relevant. There are no special restrictions <lb/>on the operations in the COMPOUND to limit them to those for a data <lb/>server. When a PUTFH is done, filehandles derived from the layout <lb/>are not valid. If their format is not normally acceptable, then <lb/>NFS4ERR_BADHANDLE MUST result. Similarly, current filehandles for <lb/>other operations do not accept filehandles derived from layouts and <lb/>are not normally usable on the metadata server. Using these will <lb/>result in NFS4ERR_STALE. <lb/>When a COMPOUND first executes an operation from class 2, which would <lb/>be PUTFH where the filehandle is one from a layout, the COMPOUND <lb/>henceforth is interpreted with respect to the data-server <lb/>personality. Operations outside the two classes discussed above MUST <lb/>result in NFS4ERR_NOTSUPP. Filehandles are validated using the rules <lb/>of the data server, resulting in NFS4ERR_BADHANDLE and/or <lb/>NFS4ERR_STALE even when they would not normally do so when addressed <lb/>to the non-data-server personality. Stateids must obey the rules of <lb/>the data server in that any use of special stateids or stateids with <lb/>non-zero seqid values must result in NFS4ERR_BAD_STATEID. <lb/>Until the server first executes an operation from class 2 or class 3, <lb/>the client MUST NOT depend on the operation being executed by either <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 346] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>the data-server or the non-data-server personality. The server MUST <lb/>pick one personality consistently for a given COMPOUND, with the only <lb/>possible transition being a single one when the first operation from <lb/>class 2 or class 3 is executed. <lb/>Because of the complexity induced by assigning filehandles so they <lb/>can be used on both a data server and a metadata server, it is <lb/>RECOMMENDED that where the same server can have both personalities, <lb/>the server assign separate unique filehandles to both personalities. <lb/>This makes it unambiguous for which server a given request is <lb/>intended. <lb/>GETATTR and SETATTR MUST be directed to the metadata server. In the <lb/>case of a SETATTR of the size attribute, the control protocol is <lb/>responsible for propagating size updates/truncations to the data <lb/>servers. In the case of extending WRITEs to the data servers, the <lb/>new size must be visible on the metadata server once a LAYOUTCOMMIT <lb/>has completed (see Section 12.5.4.2). Section 13.10 describes the <lb/>mechanism by which the client is to handle data-server files that do <lb/>not reflect the metadata server's size. <lb/>13.7. COMMIT through Metadata Server <lb/>The file layout provides two alternate means of providing for the <lb/>commit of data written through data servers. The flag <lb/>NFL4_UFLG_COMMIT_THRU_MDS in the field nfl_util of the file layout <lb/>(data type nfsv4_1_file_layout4) is an indication from the metadata <lb/>server to the client of the REQUIRED way of performing COMMIT, either <lb/>by sending the COMMIT to the data server or the metadata server. <lb/>These two methods of dealing with the issue correspond to broad <lb/>styles of implementation for a pNFS server supporting the file layout <lb/>type. <lb/>o When the flag is FALSE, COMMIT operations MUST to be sent to the <lb/>data server to which the corresponding WRITE operations were sent. <lb/>This approach is sometimes useful when file striping is <lb/>implemented within the pNFS server (instead of the file system), <lb/>with the individual data servers each implementing their own file <lb/>systems. <lb/>o When the flag is TRUE, COMMIT operations MUST be sent to the <lb/>metadata server, rather than to the individual data servers. This <lb/>approach is sometimes useful when file striping is implemented <lb/>within the clustered file system that is the backend to the pNFS <lb/>server. In such an implementation, each COMMIT to each data <lb/>server might result in repeated writes of metadata blocks to the <lb/>detriment of write performance. Sending a single COMMIT to the <lb/>metadata server can be more efficient when there exists a <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 347] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>clustered file system capable of implementing such a coordinated <lb/>COMMIT. <lb/>If nfl_util & NFL4_UFLG_COMMIT_THRU_MDS is TRUE, then in order to <lb/>maintain the current NFSv4.1 commit and recovery model, the data <lb/>servers MUST return a common writeverf verifier in all WRITE <lb/>responses for a given file layout, and the metadata server's <lb/>COMMIT implementation must return the same writeverf. The value <lb/>of the writeverf verifier MUST be changed at the metadata server <lb/>or any data server that is referenced in the layout, whenever <lb/>there is a server event that can possibly lead to loss of <lb/>uncommitted data. The scope of the verifier can be for a file or <lb/>for the entire pNFS server. It might be more difficult for the <lb/>server to maintain the verifier at the file level, but the benefit <lb/>is that only events that impact a given file will require recovery <lb/>action. <lb/>Note that if the layout specified dense packing, then the offset used <lb/>to a COMMIT to the MDS may differ than that of an offset used to a <lb/>COMMIT to the data server. <lb/>The single COMMIT to the metadata server will return a verifier, and <lb/>the client should compare it to all the verifiers from the WRITEs and <lb/>fail the COMMIT if there are any mismatched verifiers. If COMMIT to <lb/>the metadata server fails, the client should re-send WRITEs for all <lb/>the modified data in the file. The client should treat modified data <lb/>with a mismatched verifier as a WRITE failure and try to recover by <lb/>resending the WRITEs to the original data server or using another <lb/>path to that data if the layout has not been recalled. <lb/>Alternatively, the client can obtain a new layout or it could rewrite <lb/>the data directly to the metadata server. If nfl_util & <lb/>NFL4_UFLG_COMMIT_THRU_MDS is FALSE, sending a COMMIT to the metadata <lb/>server might have no effect. If nfl_util & NFL4_UFLG_COMMIT_THRU_MDS <lb/>is FALSE, a COMMIT sent to the metadata server should be used only to <lb/>commit data that was written to the metadata server. See <lb/>Section 12.7.6 for recovery options. <lb/>13.8. The Layout Iomode <lb/>The layout iomode need not be used by the metadata server when <lb/>servicing NFSv4.1 file-based layouts, although in some circumstances <lb/>it may be useful. For example, if the server implementation supports <lb/>reading from read-only replicas or mirrors, it would be useful for <lb/>the server to return a layout enabling the client to do so. As such, <lb/>the client SHOULD set the iomode based on its intent to read or write <lb/>the data. The client may default to an iomode of LAYOUTIOMODE4_RW. <lb/>The iomode need not be checked by the data servers when clients <lb/>perform I/O. However, the data servers SHOULD still validate that <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 348] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>the client holds a valid layout and return an error if the client <lb/>does not. <lb/>13.9. Metadata and Data Server State Coordination <lb/>13.9.1. Global Stateid Requirements <lb/>When the client sends I/O to a data server, the stateid used MUST NOT <lb/>be a layout stateid as returned by LAYOUTGET or sent by <lb/>CB_LAYOUTRECALL. Permitted stateids are based on one of the <lb/>following: an OPEN stateid (the stateid field of data type OPEN4resok <lb/>as returned by OPEN), a delegation stateid (the stateid field of data <lb/>types open_read_delegation4 and open_write_delegation4 as returned by <lb/>OPEN or WANT_DELEGATION, or as sent by CB_PUSH_DELEG), or a stateid <lb/>returned by the LOCK or LOCKU operations. The stateid sent to the <lb/>data server MUST be sent with the seqid set to zero, indicating the <lb/>most current version of that stateid, rather than indicating a <lb/>specific non-zero seqid value. In no case is the use of special <lb/>stateid values allowed. <lb/>The stateid used for I/O MUST have the same effect and be subject to <lb/>the same validation on a data server as it would if the I/O was being <lb/>performed on the metadata server itself in the absence of pNFS. This <lb/>has the implication that stateids are globally valid on both the <lb/>metadata and data servers. This requires the metadata server to <lb/>propagate changes in LOCK and OPEN state to the data servers, so that <lb/>the data servers can validate I/O accesses. This is discussed <lb/>further in Section 13.9.2. Depending on when stateids are <lb/>propagated, the existence of a valid stateid on the data server may <lb/>act as proof of a valid layout. <lb/>Clients performing I/O operations need to select an appropriate <lb/>stateid based on the locks (including opens and delegations) held by <lb/>the client and the various types of state-owners sending the I/O <lb/>requests. The rules for doing so when referencing data servers are <lb/>somewhat different from those discussed in Section 8.2.5, which apply <lb/>when accessing metadata servers. <lb/>The following rules, applied in order of decreasing priority, govern <lb/>the selection of the appropriate stateid: <lb/>o If the client holds a delegation for the file in question, the <lb/>delegation stateid should be used. <lb/>o Otherwise, there must be an OPEN stateid for the current open-<lb/>owner, and that OPEN stateid for the open file in question is <lb/>used, unless mandatory locking prevents that. See below. <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 349] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>o If the data server had previously responded with NFS4ERR_LOCKED to <lb/>use of the OPEN stateid, then the client should use the byte-range <lb/>lock stateid whenever one exists for that open file with the <lb/>current lock-owner. <lb/>o Special stateids should never be used. If they are used, the data <lb/>server MUST reject the I/O with an NFS4ERR_BAD_STATEID error. <lb/>13.9.2. Data Server State Propagation <lb/>Since the metadata server, which handles byte-range lock and open-<lb/>mode state changes as well as ACLs, might not be co-located with the <lb/>data servers where I/O accesses are validated, the server <lb/>implementation MUST take care of propagating changes of this state to <lb/>the data servers. Once the propagation to the data servers is <lb/>complete, the full effect of those changes MUST be in effect at the <lb/>data servers. However, some state changes need not be propagated <lb/>immediately, although all changes SHOULD be propagated promptly. <lb/>These state propagations have an impact on the design of the control <lb/>protocol, even though the control protocol is outside of the scope of <lb/>this specification. Immediate propagation refers to the synchronous <lb/>propagation of state from the metadata server to the data server(s); <lb/>the propagation must be complete before returning to the client. <lb/>13.9.2.1. Lock State Propagation <lb/>If the pNFS server supports mandatory byte-range locking, any <lb/>mandatory byte-range locks on a file MUST be made effective at the <lb/>data servers before the request that establishes them returns to the <lb/>caller. The effect MUST be the same as if the mandatory byte-range <lb/>lock state were synchronously propagated to the data servers, even <lb/>though the details of the control protocol may avoid actual transfer <lb/>of the state under certain circumstances. <lb/>On the other hand, since advisory byte-range lock state is not used <lb/>for checking I/O accesses at the data servers, there is no semantic <lb/>reason for propagating advisory byte-range lock state to the data <lb/>servers. Since updates to advisory locks neither confer nor remove <lb/>privileges, these changes need not be propagated immediately, and may <lb/>not need to be propagated promptly. The updates to advisory locks <lb/>need only be propagated when the data server needs to resolve a <lb/>question about a stateid. In fact, if byte-range locking is not <lb/>mandatory (i.e., is advisory) the clients are advised to avoid using <lb/>the byte-range lock-based stateids for I/O. The stateids returned by <lb/>OPEN are sufficient and eliminate overhead for this kind of state <lb/>propagation. <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 350] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>If a client gets back an NFS4ERR_LOCKED error from a data server, <lb/>this is an indication that mandatory byte-range locking is in force. <lb/>The client recovers from this by getting a byte-range lock that <lb/>covers the affected range and re-sends the I/O with the stateid of <lb/>the byte-range lock. <lb/>13.9.2.2. Open and Deny Mode Validation <lb/>Open and deny mode validation MUST be performed against the open and <lb/>deny mode(s) held by the data servers. When access is reduced or a <lb/>deny mode made more restrictive (because of CLOSE or OPEN_DOWNGRADE), <lb/>the data server MUST prevent any I/Os that would be denied if <lb/>performed on the metadata server. When access is expanded, the data <lb/>server MUST make sure that no requests are subsequently rejected <lb/>because of open or deny issues that no longer apply, given the <lb/>previous relaxation. <lb/>13.9.2.3. File Attributes <lb/>Since the SETATTR operation has the ability to modify state that is <lb/>visible on both the metadata and data servers (e.g., the size), care <lb/>must be taken to ensure that the resultant state across the set of <lb/>data servers is consistent, especially when truncating or growing the <lb/>file. <lb/>As described earlier, the LAYOUTCOMMIT operation is used to ensure <lb/>that the metadata is synchronized with changes made to the data <lb/>servers. For the NFSv4.1-based data storage protocol, it is <lb/>necessary to re-synchronize state such as the size attribute, and the <lb/>setting of mtime/change/atime. See Section 12.5.4 for a full <lb/>description of the semantics regarding LAYOUTCOMMIT and attribute <lb/>synchronization. It should be noted that by using an NFSv4.1-based <lb/>layout type, it is possible to synchronize this state before <lb/>LAYOUTCOMMIT occurs. For example, the control protocol can be used <lb/>to query the attributes present on the data servers. <lb/>Any changes to file attributes that control authorization or access <lb/>as reflected by ACCESS calls or READs and WRITEs on the metadata <lb/>server, MUST be propagated to the data servers for enforcement on <lb/>READ and WRITE I/O calls. If the changes made on the metadata server <lb/>result in more restrictive access permissions for any user, those <lb/>changes MUST be propagated to the data servers synchronously. <lb/>The OPEN operation (Section 18.16.4) does not impose any requirement <lb/>that I/O operations on an open file have the same credentials as the <lb/>OPEN itself (unless EXCHGID4_FLAG_BIND_PRINC_STATEID is set when <lb/>EXCHANGE_ID creates the client ID), and so it requires the server's <lb/>READ and WRITE operations to perform appropriate access checking. <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 351] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>Changes to ACLs also require new access checking by READ and WRITE on <lb/>the server. The propagation of access-right changes due to changes <lb/>in ACLs may be asynchronous only if the server implementation is able <lb/>to determine that the updated ACL is not more restrictive for any <lb/>user specified in the old ACL. Due to the relative infrequency of <lb/>ACL updates, it is suggested that all changes be propagated <lb/>synchronously. <lb/>13.10. Data Server Component File Size <lb/>A potential problem exists when a component data file on a particular <lb/>data server has grown past EOF; the problem exists for both dense and <lb/>sparse layouts. Imagine the following scenario: a client creates a <lb/>new file (size == 0) and writes to byte 131072; the client then seeks <lb/>to the beginning of the file and reads byte 100. The client should <lb/>receive zeroes back as a result of the READ. However, if the <lb/>striping pattern directs the client to send the READ to a data server <lb/>other than the one that received the client's original WRITE, the <lb/>data server servicing the READ may believe that the file's size is <lb/>still 0 bytes. In that event, the data server's READ response will <lb/>contain zero bytes and an indication of EOF. The data server can <lb/>only return zeroes if it knows that the file's size has been <lb/>extended. This would require the immediate propagation of the file's <lb/>size to all data servers, which is potentially very costly. <lb/>Therefore, the client that has initiated the extension of the file's <lb/>size MUST be prepared to deal with these EOF conditions. When the <lb/>offset in the arguments to READ is less than the client's view of the <lb/>file size, if the READ response indicates EOF and/or contains fewer <lb/>bytes than requested, the client will interpret such a response as a <lb/>hole in the file, and the NFS client will substitute zeroes for the <lb/>data. <lb/>The NFSv4.1 protocol only provides close-to-open file data cache <lb/>semantics; meaning that when the file is closed, all modified data is <lb/>written to the server. When a subsequent OPEN of the file is done, <lb/>the change attribute is inspected for a difference from a cached <lb/>value for the change attribute. For the case above, this means that <lb/>a LAYOUTCOMMIT will be done at close (along with the data WRITEs) and <lb/>will update the file's size and change attribute. Access from <lb/>another client after that point will result in the appropriate size <lb/>being returned. <lb/>13.11. Layout Revocation and Fencing <lb/>As described in Section 12.7, the layout-type-specific storage <lb/>protocol is responsible for handling the effects of I/Os that started <lb/>before lease expiration and extend through lease expiration. The <lb/>LAYOUT4_NFSV4_1_FILES layout type can prevent all I/Os to data <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 352] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>servers from being executed after lease expiration (this prevention <lb/>is called "fencing"), without relying on a precise client lease timer <lb/>and without requiring data servers to maintain lease timers. The <lb/>LAYOUT4_NFSV4_1_FILES pNFS server has the flexibility to revoke <lb/>individual layouts, and thus fence I/O on a per-file basis. <lb/>In addition to lease expiration, the reasons a layout can be revoked <lb/>include: client fails to respond to a CB_LAYOUTRECALL, the metadata <lb/>server restarts, or administrative intervention. Regardless of the <lb/>reason, once a client's layout has been revoked, the pNFS server MUST <lb/>prevent the client from sending I/O for the affected file from and to <lb/>all data servers; in other words, it MUST fence the client from the <lb/>affected file on the data servers. <lb/>Fencing works as follows. As described in Section 13.1, in COMPOUND <lb/>procedure requests to the data server, the data filehandle provided <lb/>by the PUTFH operation and the stateid in the READ or WRITE operation <lb/>are used to ensure that the client has a valid layout for the I/O <lb/>being performed; if it does not, the I/O is rejected with <lb/>NFS4ERR_PNFS_NO_LAYOUT. The server can simply check the stateid and, <lb/>additionally, make the data filehandle stale if the layout specified <lb/>a data filehandle that is different from the metadata server's <lb/>filehandle for the file (see the nfl_fh_list description in <lb/>Section 13.3). <lb/>Before the metadata server takes any action to revoke layout state <lb/>given out by a previous instance, it must make sure that all layout <lb/>state from that previous instance are invalidated at the data <lb/>servers. This has the following implications. <lb/>o The metadata server must not restripe a file until it has <lb/>contacted all of the data servers to invalidate the layouts from <lb/>the previous instance. <lb/>o The metadata server must not give out mandatory locks that <lb/>conflict with layouts from the previous instance without either <lb/>doing a specific layout invalidation (as it would have to do <lb/>anyway) or doing a global data server invalidation. <lb/>13.12. Security Considerations for the File Layout Type <lb/>The NFSv4.1 file layout type MUST adhere to the security <lb/>considerations outlined in Section 12.9. NFSv4.1 data servers MUST <lb/>make all of the required access checks on each READ or WRITE I/O as <lb/>determined by the NFSv4.1 protocol. If the metadata server would <lb/>deny a READ or WRITE operation on a file due to its ACL, mode <lb/>attribute, open access mode, open deny mode, mandatory byte-range <lb/>lock state, or any other attributes and state, the data server MUST <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 353] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>also deny the READ or WRITE operation. This impacts the control <lb/>protocol and the propagation of state from the metadata server to the <lb/>data servers; see Section 13.9.2 for more details. <lb/>The methods for authentication, integrity, and privacy for data <lb/>servers based on the LAYOUT4_NFSV4_1_FILES layout type are the same <lb/>as those used by metadata servers. Metadata and data servers use ONC <lb/>RPC security flavors to authenticate, and SECINFO and SECINFO_NO_NAME <lb/>to negotiate the security mechanism and services to be used. Thus, <lb/>when using the LAYOUT4_NFSV4_1_FILES layout type, the impact on the <lb/>RPC-based security model due to pNFS (as alluded to in Sections 1.8.1 <lb/>and 1.8.2.2) is zero. <lb/>For a given file object, a metadata server MAY require different <lb/>security parameters (secinfo4 value) than the data server. For a <lb/>given file object with multiple data servers, the secinfo4 value <lb/>SHOULD be the same across all data servers. If the secinfo4 values <lb/>across a metadata server and its data servers differ for a specific <lb/>file, the mapping of the principal to the server's internal user <lb/>identifier MUST be the same in order for the access-control checks <lb/>based on ACL, mode, open and deny mode, and mandatory locking to be <lb/>consistent across on the pNFS server. <lb/>If an NFSv4.1 implementation supports pNFS and supports NFSv4.1 file <lb/>layouts, then the implementation MUST support the SECINFO_NO_NAME <lb/>operation on both the metadata and data servers. <lb/>14. Internationalization <lb/>The primary issue in which NFSv4.1 needs to deal with <lb/>internationalization, or I18N, is with respect to file names and <lb/>other strings as used within the protocol. The choice of string <lb/>representation must allow reasonable name/string access to clients <lb/>that use various languages. The UTF-8 encoding of the UCS (Universal <lb/>Multiple-Octet Coded Character Set) as defined by ISO10646 [18] <lb/>allows for this type of access and follows the policy described in <lb/>"IETF Policy on Character Sets and Languages", RFC 2277 [19]. <lb/>RFC 3454 [16], otherwise know as "stringprep", documents a framework <lb/>for using Unicode/UTF-8 in networking protocols so as "to increase <lb/>the likelihood that string input and string comparison work in ways <lb/>that make sense for typical users throughout the world". A protocol <lb/>must define a profile of stringprep "in order to fully specify the <lb/>processing options". The remainder of this section defines the <lb/>NFSv4.1 stringprep profiles. Much of the terminology used for the <lb/>remainder of this section comes from stringprep. <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 354] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>There are three UTF-8 string types defined for NFSv4.1: utf8str_cs, <lb/>utf8str_cis, and utf8str_mixed. Separate profiles are defined for <lb/>each. Each profile defines the following, as required by stringprep: <lb/>o The intended applicability of the profile. <lb/>o The character repertoire that is the input and output to <lb/>stringprep (which is Unicode 3.2 for the referenced version of <lb/>stringprep). However, NFSv4.1 implementations are not limited to <lb/>3.2. <lb/>o The mapping tables from stringprep used (as described in Section 3 <lb/>of stringprep). <lb/>o Any additional mapping tables specific to the profile. <lb/>o The Unicode normalization used, if any (as described in Section 4 <lb/>of stringprep). <lb/>o The tables from the stringprep listing of characters that are <lb/>prohibited as output (as described in Section 5 of stringprep). <lb/>o The bidirectional string testing used, if any (as described in <lb/>Section 6 of stringprep). <lb/>o Any additional characters that are prohibited as output specific <lb/>to the profile. <lb/>Stringprep discusses Unicode characters, whereas NFSv4.1 renders <lb/>UTF-8 characters. Since there is a one-to-one mapping from UTF-8 to <lb/>Unicode, when the remainder of this document refers to Unicode, the <lb/>reader should assume UTF-8. <lb/>Much of the text for the profiles comes from RFC 3491 [20]. <lb/>14.1. Stringprep Profile for the utf8str_cs Type <lb/>Every use of the utf8str_cs type definition in the NFSv4 protocol <lb/>specification follows the profile named nfs4_cs_prep. <lb/>14.1.1. Intended Applicability of the nfs4_cs_prep Profile <lb/>The utf8str_cs type is a case-sensitive string of UTF-8 characters. <lb/>Its primary use in NFSv4.1 is for naming components and pathnames. <lb/>Components and pathnames are stored on the server's file system. Two <lb/>valid distinct UTF-8 strings might be the same after processing via <lb/>the utf8str_cs profile. If the strings are two names inside a <lb/>directory, the NFSv4.1 server will need to either: <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 355] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>o disallow the creation of a second name if its post-processed form <lb/>collides with that of an existing name, or <lb/>o allow the creation of the second name, but arrange so that after <lb/>post-processing, the second name is different than the post-<lb/>processed form of the first name. <lb/>14.1.2. Character Repertoire of nfs4_cs_prep <lb/>The nfs4_cs_prep profile uses Unicode 3.2, as defined in stringprep's <lb/>Appendix A.1. However, NFSv4.1 implementations are not limited to <lb/>3.2. <lb/>14.1.3. Mapping Used by nfs4_cs_prep <lb/>The nfs4_cs_prep profile specifies mapping using the following tables <lb/>from stringprep: <lb/>Table B.1 <lb/>Table B.2 is normally not part of the nfs4_cs_prep profile as it is <lb/>primarily for dealing with case-insensitive comparisons. However, if <lb/>the NFSv4.1 file server supports the case_insensitive file system <lb/>attribute, and if case_insensitive is TRUE, the NFSv4.1 server MUST <lb/>use Table B.2 (in addition to Table B1) when processing utf8str_cs <lb/>strings, and the NFSv4.1 client MUST assume Table B.2 (in addition to <lb/>Table B.1) is being used. <lb/>If the case_preserving attribute is present and set to FALSE, then <lb/>the NFSv4.1 server MUST use Table B.2 to map case when processing <lb/>utf8str_cs strings. Whether the server maps from lower to upper case <lb/>or from upper to lower case is an implementation dependency. <lb/>14.1.4. Normalization used by nfs4_cs_prep <lb/>The nfs4_cs_prep profile does not specify a normalization form. A <lb/>later revision of this specification may specify a particular <lb/>normalization form. Therefore, the server and client can expect that <lb/>they may receive unnormalized characters within protocol requests and <lb/>responses. If the operating environment requires normalization, then <lb/>the implementation must normalize utf8str_cs strings within the <lb/>protocol before presenting the information to an application (at the <lb/>client) or local file system (at the server). <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 356] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>14.1.5. Prohibited Output for nfs4_cs_prep <lb/>The nfs4_cs_prep profile RECOMMENDS prohibiting the use of the <lb/>following tables from stringprep: <lb/>Table C.5 <lb/>Table C.6 <lb/>14.1.6. Bidirectional Output for nfs4_cs_prep <lb/>The nfs4_cs_prep profile does not specify any checking of <lb/>bidirectional strings. <lb/>14.2. Stringprep Profile for the utf8str_cis Type <lb/>Every use of the utf8str_cis type definition in the NFSv4.1 protocol <lb/>specification follows the profile named nfs4_cis_prep. <lb/>14.2.1. Intended Applicability of the nfs4_cis_prep Profile <lb/>The utf8str_cis type is a case-insensitive string of UTF-8 <lb/>characters. Its primary use in NFSv4.1 is for naming NFS servers. <lb/>14.2.2. Character Repertoire of nfs4_cis_prep <lb/>The nfs4_cis_prep profile uses Unicode 3.2, as defined in <lb/>stringprep's Appendix A.1. However, NFSv4.1 implementations are not <lb/>limited to 3.2. <lb/>14.2.3. Mapping Used by nfs4_cis_prep <lb/>The nfs4_cis_prep profile specifies mapping using the following <lb/>tables from stringprep: <lb/>Table B.1 <lb/>Table B.2 <lb/>14.2.4. Normalization Used by nfs4_cis_prep <lb/>The nfs4_cis_prep profile specifies using Unicode normalization form <lb/>KC, as described in stringprep. <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 357] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>14.2.5. Prohibited Output for nfs4_cis_prep <lb/>The nfs4_cis_prep profile specifies prohibiting using the following <lb/>tables from stringprep: <lb/>Table C.1.2 <lb/>Table C.2.2 <lb/>Table C.3 <lb/>Table C.4 <lb/>Table C.5 <lb/>Table C.6 <lb/>Table C.7 <lb/>Table C.8 <lb/>Table C.9 <lb/>14.2.6. Bidirectional Output for nfs4_cis_prep <lb/>The nfs4_cis_prep profile specifies checking bidirectional strings as <lb/>described in stringprep's Section 6. <lb/>14.3. Stringprep Profile for the utf8str_mixed Type <lb/>Every use of the utf8str_mixed type definition in the NFSv4.1 <lb/>protocol specification follows the profile named nfs4_mixed_prep. <lb/>14.3.1. Intended Applicability of the nfs4_mixed_prep Profile <lb/>The utf8str_mixed type is a string of UTF-8 characters, with a prefix <lb/>that is case sensitive, a separator equal to '@', and a suffix that <lb/>is a fully qualified domain name. Its primary use in NFSv4.1 is for <lb/>naming principals identified in an Access Control Entry. <lb/>14.3.2. Character Repertoire of nfs4_mixed_prep <lb/>The nfs4_mixed_prep profile uses Unicode 3.2, as defined in <lb/>stringprep's Appendix A.1. However, NFSv4.1 implementations are not <lb/>limited to 3.2. <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 358] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>14.3.3. Mapping Used by nfs4_cis_prep <lb/>For the prefix and the separator of a utf8str_mixed string, the <lb/>nfs4_mixed_prep profile specifies mapping using the following table <lb/>from stringprep: <lb/>Table B.1 <lb/>For the suffix of a utf8str_mixed string, the nfs4_mixed_prep profile <lb/>specifies mapping using the following tables from stringprep: <lb/>Table B.1 <lb/>Table B.2 <lb/>14.3.4. Normalization Used by nfs4_mixed_prep <lb/>The nfs4_mixed_prep profile specifies using Unicode normalization <lb/>form KC, as described in stringprep. <lb/>14.3.5. Prohibited Output for nfs4_mixed_prep <lb/>The nfs4_mixed_prep profile specifies prohibiting using the following <lb/>tables from stringprep: <lb/>Table C.1.2 <lb/>Table C.2.2 <lb/>Table C.3 <lb/>Table C.4 <lb/>Table C.5 <lb/>Table C.6 <lb/>Table C.7 <lb/>Table C.8 <lb/>Table C.9 <lb/>14.3.6. Bidirectional Output for nfs4_mixed_prep <lb/>The nfs4_mixed_prep profile specifies checking bidirectional strings <lb/>as described in stringprep's Section 6. <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 359] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>14.4. UTF-8 Capabilities <lb/>const FSCHARSET_CAP4_CONTAINS_NON_UTF8 = 0x1; <lb/>const FSCHARSET_CAP4_ALLOWS_ONLY_UTF8 <lb/>= 0x2; <lb/>typedef uint32_t <lb/>fs_charset_cap4; <lb/>Because some operating environments and file systems do not enforce <lb/>character set encodings, NFSv4.1 supports the fs_charset_cap <lb/>attribute (Section 5.8.2.11) that indicates to the client a file <lb/>system's UTF-8 capabilities. The attribute is an integer containing <lb/>a pair of flags. The first flag is FSCHARSET_CAP4_CONTAINS_NON_UTF8, <lb/>which, if set to one, tells the client that the file system contains <lb/>non-UTF-8 characters, and the server will not convert non-UTF <lb/>characters to UTF-8 if the client reads a symlink or directory, <lb/>neither will operations with component names or pathnames in the <lb/>arguments convert the strings to UTF-8. The second flag is <lb/>FSCHARSET_CAP4_ALLOWS_ONLY_UTF8, which, if set to one, indicates that <lb/>the server will accept (and generate) only UTF-8 characters on the <lb/>file system. If FSCHARSET_CAP4_ALLOWS_ONLY_UTF8 is set to one, <lb/>FSCHARSET_CAP4_CONTAINS_NON_UTF8 MUST be set to zero. <lb/>FSCHARSET_CAP4_ALLOWS_ONLY_UTF8 SHOULD always be set to one. <lb/>14.5. UTF-8 Related Errors <lb/>Where the client sends an invalid UTF-8 string, the server should <lb/>return NFS4ERR_INVAL (see Table 5). This includes cases in which <lb/>inappropriate prefixes are detected and where the count includes <lb/>trailing bytes that do not constitute a full UCS character. <lb/>Where the client-supplied string is valid UTF-8 but contains <lb/>characters that are not supported by the server as a value for that <lb/>string (e.g., names containing characters outside of Unicode plane 0 <lb/>on file systems that fail to support such characters despite their <lb/>presence in the Unicode standard), the server should return <lb/>NFS4ERR_BADCHAR. <lb/>Where a UTF-8 string is used as a file name, and the file system <lb/>(while supporting all of the characters within the name) does not <lb/>allow that particular name to be used, the server should return the <lb/>error NFS4ERR_BADNAME (Table 5). This includes situations in which <lb/>the server file system imposes a normalization constraint on name <lb/>strings, but will also include such situations as file system <lb/>prohibitions of "." and ".." as file names for certain operations, <lb/>and other such constraints. <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 360] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>15. Error Values <lb/>NFS error numbers are assigned to failed operations within a Compound <lb/>(COMPOUND or CB_COMPOUND) request. A Compound request contains a <lb/>number of NFS operations that have their results encoded in sequence <lb/>in a Compound reply. The results of successful operations will <lb/>consist of an NFS4_OK status followed by the encoded results of the <lb/>operation. If an NFS operation fails, an error status will be <lb/>entered in the reply and the Compound request will be terminated. <lb/>15.1. Error Definitions <lb/>Protocol Error Definitions <lb/>+-----------------------------------+--------+-------------------+ <lb/>| Error <lb/>| Number | Description <lb/>| <lb/>+-----------------------------------+--------+-------------------+ <lb/>| NFS4_OK <lb/>| 0 <lb/>| Section 15.1.3.1 | <lb/>| NFS4ERR_ACCESS <lb/>| 13 <lb/>| Section 15.1.6.1 | <lb/>| NFS4ERR_ATTRNOTSUPP <lb/>| 10032 | Section 15.1.15.1 | <lb/>| NFS4ERR_ADMIN_REVOKED <lb/>| 10047 | Section 15.1.5.1 | <lb/>| NFS4ERR_BACK_CHAN_BUSY <lb/>| 10057 | Section 15.1.12.1 | <lb/>| NFS4ERR_BADCHAR <lb/>| 10040 | Section 15.1.7.1 | <lb/>| NFS4ERR_BADHANDLE <lb/>| 10001 | Section 15.1.2.1 | <lb/>| NFS4ERR_BADIOMODE <lb/>| 10049 | Section 15.1.10.1 | <lb/>| NFS4ERR_BADLAYOUT <lb/>| 10050 | Section 15.1.10.2 | <lb/>| NFS4ERR_BADNAME <lb/>| 10041 | Section 15.1.7.2 | <lb/>| NFS4ERR_BADOWNER <lb/>| 10039 | Section 15.1.15.2 | <lb/>| NFS4ERR_BADSESSION <lb/>| 10052 | Section 15.1.11.1 | <lb/>| NFS4ERR_BADSLOT <lb/>| 10053 | Section 15.1.11.2 | <lb/>| NFS4ERR_BADTYPE <lb/>| 10007 | Section 15.1.4.1 | <lb/>| NFS4ERR_BADXDR <lb/>| 10036 | Section 15.1.1.1 | <lb/>| NFS4ERR_BAD_COOKIE <lb/>| 10003 | Section 15.1.1.2 | <lb/>| NFS4ERR_BAD_HIGH_SLOT <lb/>| 10077 | Section 15.1.11.3 | <lb/>| NFS4ERR_BAD_RANGE <lb/>| 10042 | Section 15.1.8.1 | <lb/>| NFS4ERR_BAD_SEQID <lb/>| 10026 | Section 15.1.16.1 | <lb/>| NFS4ERR_BAD_SESSION_DIGEST <lb/>| 10051 | Section 15.1.12.2 | <lb/>| NFS4ERR_BAD_STATEID <lb/>| 10025 | Section 15.1.5.2 | <lb/>| NFS4ERR_CB_PATH_DOWN <lb/>| 10048 | Section 15.1.11.4 | <lb/>| NFS4ERR_CLID_INUSE <lb/>| 10017 | Section 15.1.13.2 | <lb/>| NFS4ERR_CLIENTID_BUSY <lb/>| 10074 | Section 15.1.13.1 | <lb/>| NFS4ERR_COMPLETE_ALREADY <lb/>| 10054 | Section 15.1.9.1 | <lb/>| NFS4ERR_CONN_NOT_BOUND_TO_SESSION | 10055 | Section 15.1.11.6 | <lb/>| NFS4ERR_DEADLOCK <lb/>| 10045 | Section 15.1.8.2 | <lb/>| NFS4ERR_DEADSESSION <lb/>| 10078 | Section 15.1.11.5 | <lb/>| NFS4ERR_DELAY <lb/>| 10008 | Section 15.1.1.3 | <lb/>| NFS4ERR_DELEG_ALREADY_WANTED <lb/>| 10056 | Section 15.1.14.1 | <lb/>| NFS4ERR_DELEG_REVOKED <lb/>| 10087 | Section 15.1.5.3 | <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 361] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>| NFS4ERR_DENIED <lb/>| 10010 | Section 15.1.8.3 | <lb/>| NFS4ERR_DIRDELEG_UNAVAIL <lb/>| 10084 | Section 15.1.14.2 | <lb/>| NFS4ERR_DQUOT <lb/>| 69 <lb/>| Section 15.1.4.2 | <lb/>| NFS4ERR_ENCR_ALG_UNSUPP <lb/>| 10079 | Section 15.1.13.3 | <lb/>| NFS4ERR_EXIST <lb/>| 17 <lb/>| Section 15.1.4.3 | <lb/>| NFS4ERR_EXPIRED <lb/>| 10011 | Section 15.1.5.4 | <lb/>| NFS4ERR_FBIG <lb/>| 27 <lb/>| Section 15.1.4.4 | <lb/>| NFS4ERR_FHEXPIRED <lb/>| 10014 | Section 15.1.2.2 | <lb/>| NFS4ERR_FILE_OPEN <lb/>| 10046 | Section 15.1.4.5 | <lb/>| NFS4ERR_GRACE <lb/>| 10013 | Section 15.1.9.2 | <lb/>| NFS4ERR_HASH_ALG_UNSUPP <lb/>| 10072 | Section 15.1.13.4 | <lb/>| NFS4ERR_INVAL <lb/>| 22 <lb/>| Section 15.1.1.4 | <lb/>| NFS4ERR_IO <lb/>| 5 <lb/>| Section 15.1.4.6 | <lb/>| NFS4ERR_ISDIR <lb/>| 21 <lb/>| Section 15.1.2.3 | <lb/>| NFS4ERR_LAYOUTTRYLATER <lb/>| 10058 | Section 15.1.10.3 | <lb/>| NFS4ERR_LAYOUTUNAVAILABLE <lb/>| 10059 | Section 15.1.10.4 | <lb/>| NFS4ERR_LEASE_MOVED <lb/>| 10031 | Section 15.1.16.2 | <lb/>| NFS4ERR_LOCKED <lb/>| 10012 | Section 15.1.8.4 | <lb/>| NFS4ERR_LOCKS_HELD <lb/>| 10037 | Section 15.1.8.5 | <lb/>| NFS4ERR_LOCK_NOTSUPP <lb/>| 10043 | Section 15.1.8.6 | <lb/>| NFS4ERR_LOCK_RANGE <lb/>| 10028 | Section 15.1.8.7 | <lb/>| NFS4ERR_MINOR_VERS_MISMATCH <lb/>| 10021 | Section 15.1.3.2 | <lb/>| NFS4ERR_MLINK <lb/>| 31 <lb/>| Section 15.1.4.7 | <lb/>| NFS4ERR_MOVED <lb/>| 10019 | Section 15.1.2.4 | <lb/>| NFS4ERR_NAMETOOLONG <lb/>| 63 <lb/>| Section 15.1.7.3 | <lb/>| NFS4ERR_NOENT <lb/>| 2 <lb/>| Section 15.1.4.8 | <lb/>| NFS4ERR_NOFILEHANDLE <lb/>| 10020 | Section 15.1.2.5 | <lb/>| NFS4ERR_NOMATCHING_LAYOUT <lb/>| 10060 | Section 15.1.10.5 | <lb/>| NFS4ERR_NOSPC <lb/>| 28 <lb/>| Section 15.1.4.9 | <lb/>| NFS4ERR_NOTDIR <lb/>| 20 <lb/>| Section 15.1.2.6 | <lb/>| NFS4ERR_NOTEMPTY <lb/>| 66 <lb/>| Section 15.1.4.10 | <lb/>| NFS4ERR_NOTSUPP <lb/>| 10004 | Section 15.1.1.5 | <lb/>| NFS4ERR_NOT_ONLY_OP <lb/>| 10081 | Section 15.1.3.3 | <lb/>| NFS4ERR_NOT_SAME <lb/>| 10027 | Section 15.1.15.3 | <lb/>| NFS4ERR_NO_GRACE <lb/>| 10033 | Section 15.1.9.3 | <lb/>| NFS4ERR_NXIO <lb/>| 6 <lb/>| Section 15.1.16.3 | <lb/>| NFS4ERR_OLD_STATEID <lb/>| 10024 | Section 15.1.5.5 | <lb/>| NFS4ERR_OPENMODE <lb/>| 10038 | Section 15.1.8.8 | <lb/>| NFS4ERR_OP_ILLEGAL <lb/>| 10044 | Section 15.1.3.4 | <lb/>| NFS4ERR_OP_NOT_IN_SESSION <lb/>| 10071 | Section 15.1.3.5 | <lb/>| NFS4ERR_PERM <lb/>| 1 <lb/>| Section 15.1.6.2 | <lb/>| NFS4ERR_PNFS_IO_HOLE <lb/>| 10075 | Section 15.1.10.6 | <lb/>| NFS4ERR_PNFS_NO_LAYOUT <lb/>| 10080 | Section 15.1.10.7 | <lb/>| NFS4ERR_RECALLCONFLICT <lb/>| 10061 | Section 15.1.14.3 | <lb/>| NFS4ERR_RECLAIM_BAD <lb/>| 10034 | Section 15.1.9.4 | <lb/>| NFS4ERR_RECLAIM_CONFLICT <lb/>| 10035 | Section 15.1.9.5 | <lb/>| NFS4ERR_REJECT_DELEG <lb/>| 10085 | Section 15.1.14.4 | <lb/>| NFS4ERR_REP_TOO_BIG <lb/>| 10066 | Section 15.1.3.6 | <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 362] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>| NFS4ERR_REP_TOO_BIG_TO_CACHE <lb/>| 10067 | Section 15.1.3.7 | <lb/>| NFS4ERR_REQ_TOO_BIG <lb/>| 10065 | Section 15.1.3.8 | <lb/>| NFS4ERR_RESTOREFH <lb/>| 10030 | Section 15.1.16.4 | <lb/>| NFS4ERR_RETRY_UNCACHED_REP <lb/>| 10068 | Section 15.1.3.9 | <lb/>| NFS4ERR_RETURNCONFLICT <lb/>| 10086 | Section 15.1.10.8 | <lb/>| NFS4ERR_ROFS <lb/>| 30 <lb/>| Section 15.1.4.11 | <lb/>| NFS4ERR_SAME <lb/>| 10009 | Section 15.1.15.4 | <lb/>| NFS4ERR_SHARE_DENIED <lb/>| 10015 | Section 15.1.8.9 | <lb/>| NFS4ERR_SEQUENCE_POS <lb/>| 10064 | Section 15.1.3.10 | <lb/>| NFS4ERR_SEQ_FALSE_RETRY <lb/>| 10076 | Section 15.1.11.7 | <lb/>| NFS4ERR_SEQ_MISORDERED <lb/>| 10063 | Section 15.1.11.8 | <lb/>| NFS4ERR_SERVERFAULT <lb/>| 10006 | Section 15.1.1.6 | <lb/>| NFS4ERR_STALE <lb/>| 70 <lb/>| Section 15.1.2.7 | <lb/>| NFS4ERR_STALE_CLIENTID <lb/>| 10022 | Section 15.1.13.5 | <lb/>| NFS4ERR_STALE_STATEID <lb/>| 10023 | Section 15.1.16.5 | <lb/>| NFS4ERR_SYMLINK <lb/>| 10029 | Section 15.1.2.8 | <lb/>| NFS4ERR_TOOSMALL <lb/>| 10005 | Section 15.1.1.7 | <lb/>| NFS4ERR_TOO_MANY_OPS <lb/>| 10070 | Section 15.1.3.11 | <lb/>| NFS4ERR_UNKNOWN_LAYOUTTYPE <lb/>| 10062 | Section 15.1.10.9 | <lb/>| NFS4ERR_UNSAFE_COMPOUND <lb/>| 10069 | Section 15.1.3.12 | <lb/>| NFS4ERR_WRONGSEC <lb/>| 10016 | Section 15.1.6.3 | <lb/>| NFS4ERR_WRONG_CRED <lb/>| 10082 | Section 15.1.6.4 | <lb/>| NFS4ERR_WRONG_TYPE <lb/>| 10083 | Section 15.1.2.9 | <lb/>| NFS4ERR_XDEV <lb/>| 18 <lb/>| Section 15.1.4.12 | <lb/>+-----------------------------------+--------+-------------------+ <lb/>Table 5 <lb/>15.1.1. General Errors <lb/>This section deals with errors that are applicable to a broad set of <lb/>different purposes. <lb/>15.1.1.1. NFS4ERR_BADXDR (Error Code 10036) <lb/>The arguments for this operation do not match those specified in the <lb/>XDR definition. This includes situations in which the request ends <lb/>before all the arguments have been seen. Note that this error <lb/>applies when fixed enumerations (these include booleans) have a value <lb/>within the input stream that is not valid for the enum. A replier <lb/>may pre-parse all operations for a Compound procedure before doing <lb/>any operation execution and return RPC-level XDR errors in that case. <lb/>15.1.1.2. NFS4ERR_BAD_COOKIE (Error Code 10003) <lb/>Used for operations that provide a set of information indexed by some <lb/>quantity provided by the client or cookie sent by the server for an <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 363] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>earlier invocation. Where the value cannot be used for its intended <lb/>purpose, this error results. <lb/>15.1.1.3. NFS4ERR_DELAY (Error Code 10008) <lb/>For any of a number of reasons, the replier could not process this <lb/>operation in what was deemed a reasonable time. The client should <lb/>wait and then try the request with a new slot and sequence value. <lb/>Some examples of scenarios that might lead to this situation: <lb/>o A server that supports hierarchical storage receives a request to <lb/>process a file that had been migrated. <lb/>o An operation requires a delegation recall to proceed, and waiting <lb/>for this delegation recall makes processing this request in a <lb/>timely fashion impossible. <lb/>In such cases, the error NFS4ERR_DELAY allows these preparatory <lb/>operations to proceed without holding up client resources such as a <lb/>session slot. After delaying for period of time, the client can then <lb/>re-send the operation in question (but not with the same slot ID and <lb/>sequence ID; one or both MUST be different on the re-send). <lb/>Note that without the ability to return NFS4ERR_DELAY and the <lb/>client's willingness to re-send when receiving it, deadlock might <lb/>result. For example, if a recall is done, and if the delegation <lb/>return or operations preparatory to delegation return are held up by <lb/>other operations that need the delegation to be returned, session <lb/>slots might not be available. The result could be deadlock. <lb/>15.1.1.4. NFS4ERR_INVAL (Error Code 22) <lb/>The arguments for this operation are not valid for some reason, even <lb/>though they do match those specified in the XDR definition for the <lb/>request. <lb/>15.1.1.5. NFS4ERR_NOTSUPP (Error Code 10004) <lb/>Operation not supported, either because the operation is an OPTIONAL <lb/>one and is not supported by this server or because the operation MUST <lb/>NOT be implemented in the current minor version. <lb/>15.1.1.6. NFS4ERR_SERVERFAULT (Error Code 10006) <lb/>An error occurred on the server that does not map to any of the <lb/>specific legal NFSv4.1 protocol error values. The client should <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 364] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>translate this into an appropriate error. UNIX clients may choose to <lb/>translate this to EIO. <lb/>15.1.1.7. NFS4ERR_TOOSMALL (Error Code 10005) <lb/>Used where an operation returns a variable amount of data, with a <lb/>limit specified by the client. Where the data returned cannot be fit <lb/>within the limit specified by the client, this error results. <lb/>15.1.2. Filehandle Errors <lb/>These errors deal with the situation in which the current or saved <lb/>filehandle, or the filehandle passed to PUTFH intended to become the <lb/>current filehandle, is invalid in some way. This includes situations <lb/>in which the filehandle is a valid filehandle in general but is not <lb/>of the appropriate object type for the current operation. <lb/>Where the error description indicates a problem with the current or <lb/>saved filehandle, it is to be understood that filehandles are only <lb/>checked for the condition if they are implicit arguments of the <lb/>operation in question. <lb/>15.1.2.1. NFS4ERR_BADHANDLE (Error Code 10001) <lb/>Illegal NFS filehandle for the current server. The current file <lb/>handle failed internal consistency checks. Once accepted as valid <lb/>(by PUTFH), no subsequent status change can cause the filehandle to <lb/>generate this error. <lb/>15.1.2.2. NFS4ERR_FHEXPIRED (Error Code 10014) <lb/>A current or saved filehandle that is an argument to the current <lb/>operation is volatile and has expired at the server. <lb/>15.1.2.3. NFS4ERR_ISDIR (Error Code 21) <lb/>The current or saved filehandle designates a directory when the <lb/>current operation does not allow a directory to be accepted as the <lb/>target of this operation. <lb/>15.1.2.4. NFS4ERR_MOVED (Error Code 10019) <lb/>The file system that contains the current filehandle object is not <lb/>present at the server. It may have been relocated or migrated to <lb/>another server, or it may have never been present. The client may <lb/>obtain the new file system location by obtaining the "fs_locations" <lb/>or "fs_locations_info" attribute for the current filehandle. For <lb/>further discussion, refer to Section 11.3. <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 365] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>15.1.2.5. NFS4ERR_NOFILEHANDLE (Error Code 10020) <lb/>The logical current or saved filehandle value is required by the <lb/>current operation and is not set. This may be a result of a <lb/>malformed COMPOUND operation (i.e., no PUTFH or PUTROOTFH before an <lb/>operation that requires the current filehandle be set). <lb/>15.1.2.6. NFS4ERR_NOTDIR (Error Code 20) <lb/>The current (or saved) filehandle designates an object that is not a <lb/>directory for an operation in which a directory is required. <lb/>15.1.2.7. NFS4ERR_STALE (Error Code 70) <lb/>The current or saved filehandle value designating an argument to the <lb/>current operation is invalid. The file referred to by that <lb/>filehandle no longer exists or access to it has been revoked. <lb/>15.1.2.8. NFS4ERR_SYMLINK (Error Code 10029) <lb/>The current filehandle designates a symbolic link when the current <lb/>operation does not allow a symbolic link as the target. <lb/>15.1.2.9. NFS4ERR_WRONG_TYPE (Error Code 10083) <lb/>The current (or saved) filehandle designates an object that is of an <lb/>invalid type for the current operation, and there is no more specific <lb/>error (such as NFS4ERR_ISDIR or NFS4ERR_SYMLINK) that applies. Note <lb/>that in NFSv4.0, such situations generally resulted in the less-<lb/>specific error NFS4ERR_INVAL. <lb/>15.1.3. Compound Structure Errors <lb/>This section deals with errors that relate to the overall structure <lb/>of a Compound request (by which we mean to include both COMPOUND and <lb/>CB_COMPOUND), rather than to particular operations. <lb/>There are a number of basic constraints on the operations that may <lb/>appear in a Compound request. Sessions add to these basic <lb/>constraints by requiring a Sequence operation (either SEQUENCE or <lb/>CB_SEQUENCE) at the start of the Compound. <lb/>15.1.3.1. NFS_OK (Error code 0) <lb/>Indicates the operation completed successfully, in that all of the <lb/>constituent operations completed without error. <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 366] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>15.1.3.2. NFS4ERR_MINOR_VERS_MISMATCH (Error code 10021) <lb/>The minor version specified is not one that the current listener <lb/>supports. This value is returned in the overall status for the <lb/>Compound but is not associated with a specific operation since the <lb/>results will specify a result count of zero. <lb/>15.1.3.3. NFS4ERR_NOT_ONLY_OP (Error Code 10081) <lb/>Certain operations, which are allowed to be executed outside of a <lb/>session, MUST be the only operation within a Compound whenever the <lb/>Compound does not start with a Sequence operation. This error <lb/>results when that constraint is not met. <lb/>15.1.3.4. NFS4ERR_OP_ILLEGAL (Error Code 10044) <lb/>The operation code is not a valid one for the current Compound <lb/>procedure. The opcode in the result stream matched with this error <lb/>is the ILLEGAL value, although the value that appears in the request <lb/>stream may be different. Where an illegal value appears and the <lb/>replier pre-parses all operations for a Compound procedure before <lb/>doing any operation execution, an RPC-level XDR error may be <lb/>returned. <lb/>15.1.3.5. NFS4ERR_OP_NOT_IN_SESSION (Error Code 10071) <lb/>Most forward operations and all callback operations are only valid <lb/>within the context of a session, so that the Compound request in <lb/>question MUST begin with a Sequence operation. If an attempt is made <lb/>to execute these operations outside the context of session, this <lb/>error results. <lb/>15.1.3.6. NFS4ERR_REP_TOO_BIG (Error Code 10066) <lb/>The reply to a Compound would exceed the channel's negotiated maximum <lb/>response size. <lb/>15.1.3.7. NFS4ERR_REP_TOO_BIG_TO_CACHE (Error Code 10067) <lb/>The reply to a Compound would exceed the channel's negotiated maximum <lb/>size for replies cached in the reply cache when the Sequence for the <lb/>current request specifies that this request is to be cached. <lb/>15.1.3.8. NFS4ERR_REQ_TOO_BIG (Error Code 10065) <lb/>The Compound request exceeds the channel's negotiated maximum size <lb/>for requests. <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 367] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>15.1.3.9. NFS4ERR_RETRY_UNCACHED_REP (Error Code 10068) <lb/>The requester has attempted a retry of a Compound that it previously <lb/>requested not be placed in the reply cache. <lb/>15.1.3.10. NFS4ERR_SEQUENCE_POS (Error Code 10064) <lb/>A Sequence operation appeared in a position other than the first <lb/>operation of a Compound request. <lb/>15.1.3.11. NFS4ERR_TOO_MANY_OPS (Error Code 10070) <lb/>The Compound request has too many operations, exceeding the count <lb/>negotiated when the session was created. <lb/>15.1.3.12. NFS4ERR_UNSAFE_COMPOUND (Error Code 10068) <lb/>The client has sent a COMPOUND request with an unsafe mix of <lb/>operations --specifically, with a non-idempotent operation that <lb/>changes the current filehandle and that is not followed by a GETFH. <lb/>15.1.4. File System Errors <lb/>These errors describe situations that occurred in the underlying file <lb/>system implementation rather than in the protocol or any NFSv4.x <lb/>feature. <lb/>15.1.4.1. NFS4ERR_BADTYPE (Error Code 10007) <lb/>An attempt was made to create an object with an inappropriate type <lb/>specified to CREATE. This may be because the type is undefined, <lb/>because the type is not supported by the server, or because the type <lb/>is not intended to be created by CREATE (such as a regular file or <lb/>named attribute, for which OPEN is used to do the file creation). <lb/>15.1.4.2. NFS4ERR_DQUOT (Error Code 19) <lb/>Resource (quota) hard limit exceeded. The user's resource limit on <lb/>the server has been exceeded. <lb/>15.1.4.3. NFS4ERR_EXIST (Error Code 17) <lb/>A file of the specified target name (when creating, renaming, or <lb/>linking) already exists. <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 368] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>15.1.4.4. NFS4ERR_FBIG (Error Code 27) <lb/>The file is too large. The operation would have caused the file to <lb/>grow beyond the server's limit. <lb/>15.1.4.5. NFS4ERR_FILE_OPEN (Error Code 10046) <lb/>The operation is not allowed because a file involved in the operation <lb/>is currently open. Servers may, but are not required to, disallow <lb/>linking-to, removing, or renaming open files. <lb/>15.1.4.6. NFS4ERR_IO (Error Code 5) <lb/>Indicates that an I/O error occurred for which the file system was <lb/>unable to provide recovery. <lb/>15.1.4.7. NFS4ERR_MLINK (Error Code 31) <lb/>The request would have caused the server's limit for the number of <lb/>hard links a file may have to be exceeded. <lb/>15.1.4.8. NFS4ERR_NOENT (Error Code 2) <lb/>Indicates no such file or directory. The file or directory name <lb/>specified does not exist. <lb/>15.1.4.9. NFS4ERR_NOSPC (Error Code 28) <lb/>Indicates there is no space left on the device. The operation would <lb/>have caused the server's file system to exceed its limit. <lb/>15.1.4.10. NFS4ERR_NOTEMPTY (Error Code 66) <lb/>An attempt was made to remove a directory that was not empty. <lb/>15.1.4.11. NFS4ERR_ROFS (Error Code 30) <lb/>Indicates a read-only file system. A modifying operation was <lb/>attempted on a read-only file system. <lb/>15.1.4.12. NFS4ERR_XDEV (Error Code 18) <lb/>Indicates an attempt to do an operation, such as linking, that <lb/>inappropriately crosses a boundary. This may be due to such <lb/>boundaries as: <lb/>o that between file systems (where the fsids are different). <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 369] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>o that between different named attribute directories or between a <lb/>named attribute directory and an ordinary directory. <lb/>o that between byte-ranges of a file system that the file system <lb/>implementation treats as separate (for example, for space <lb/>accounting purposes), and where cross-connection between the byte-<lb/>ranges are not allowed. <lb/>15.1.5. State Management Errors <lb/>These errors indicate problems with the stateid (or one of the <lb/>stateids) passed to a given operation. This includes situations in <lb/>which the stateid is invalid as well as situations in which the <lb/>stateid is valid but designates locking state that has been revoked. <lb/>Depending on the operation, the stateid when valid may designate <lb/>opens, byte-range locks, file or directory delegations, layouts, or <lb/>device maps. <lb/>15.1.5.1. NFS4ERR_ADMIN_REVOKED (Error Code 10047) <lb/>A stateid designates locking state of any type that has been revoked <lb/>due to administrative interaction, possibly while the lease is valid. <lb/>15.1.5.2. NFS4ERR_BAD_STATEID (Error Code 10026) <lb/>A stateid does not properly designate any valid state. See Sections <lb/>8.2.4 and 8.2.3 for a discussion of how stateids are validated. <lb/>15.1.5.3. NFS4ERR_DELEG_REVOKED (Error Code 10087) <lb/>A stateid designates recallable locking state of any type (delegation <lb/>or layout) that has been revoked due to the failure of the client to <lb/>return the lock when it was recalled. <lb/>15.1.5.4. NFS4ERR_EXPIRED (Error Code 10011) <lb/>A stateid designates locking state of any type that has been revoked <lb/>due to expiration of the client's lease, either immediately upon <lb/>lease expiration, or following a later request for a conflicting <lb/>lock. <lb/>15.1.5.5. NFS4ERR_OLD_STATEID (Error Code 10024) <lb/>A stateid with a non-zero seqid value does match the current seqid <lb/>for the state designated by the user. <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 370] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>15.1.6. Security Errors <lb/>These are the various permission-related errors in NFSv4.1. <lb/>15.1.6.1. NFS4ERR_ACCESS (Error Code 13) <lb/>Indicates permission denied. The caller does not have the correct <lb/>permission to perform the requested operation. Contrast this with <lb/>NFS4ERR_PERM (Section 15.1.6.2), which restricts itself to owner or <lb/>privileged-user permission failures, and NFS4ERR_WRONG_CRED <lb/>(Section 15.1.6.4), which deals with appropriate permission to delete <lb/>or modify transient objects based on the credentials of the user that <lb/>created them. <lb/>15.1.6.2. NFS4ERR_PERM (Error Code 1) <lb/>Indicates requester is not the owner. The operation was not allowed <lb/>because the caller is neither a privileged user (root) nor the owner <lb/>of the target of the operation. <lb/>15.1.6.3. NFS4ERR_WRONGSEC (Error Code 10016) <lb/>Indicates that the security mechanism being used by the client for <lb/>the operation does not match the server's security policy. The <lb/>client should change the security mechanism being used and re-send <lb/>the operation (but not with the same slot ID and sequence ID; one or <lb/>both MUST be different on the re-send). SECINFO and SECINFO_NO_NAME <lb/>can be used to determine the appropriate mechanism. <lb/>15.1.6.4. NFS4ERR_WRONG_CRED (Error Code 10082) <lb/>An operation that manipulates state was attempted by a principal that <lb/>was not allowed to modify that piece of state. <lb/>15.1.7. Name Errors <lb/>Names in NFSv4 are UTF-8 strings. When the strings are not valid <lb/>UTF-8 or are of length zero, the error NFS4ERR_INVAL results. <lb/>Besides this, there are a number of other errors to indicate specific <lb/>problems with names. <lb/>15.1.7.1. NFS4ERR_BADCHAR (Error Code 10040) <lb/>A UTF-8 string contains a character that is not supported by the <lb/>server in the context in which it being used. <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 371] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>15.1.7.2. NFS4ERR_BADNAME (Error Code 10041) <lb/>A name string in a request consisted of valid UTF-8 characters <lb/>supported by the server, but the name is not supported by the server <lb/>as a valid name for the current operation. An example might be <lb/>creating a file or directory named ".." on a server whose file system <lb/>uses that name for links to parent directories. <lb/>15.1.7.3. NFS4ERR_NAMETOOLONG (Error Code 63) <lb/>Returned when the filename in an operation exceeds the server's <lb/>implementation limit. <lb/>15.1.8. Locking Errors <lb/>This section deals with errors related to locking, both as to share <lb/>reservations and byte-range locking. It does not deal with errors <lb/>specific to the process of reclaiming locks. Those are dealt with in <lb/>Section 15.1.9. <lb/>15.1.8.1. NFS4ERR_BAD_RANGE (Error Code 10042) <lb/>The byte-range of a LOCK, LOCKT, or LOCKU operation is not allowed by <lb/>the server. For example, this error results when a server that only <lb/>supports 32-bit ranges receives a range that cannot be handled by <lb/>that server. (See Section 18.10.3.) <lb/>15.1.8.2. NFS4ERR_DEADLOCK (Error Code 10045) <lb/>The server has been able to determine a byte-range locking deadlock <lb/>condition for a READW_LT or WRITEW_LT LOCK operation. <lb/>15.1.8.3. NFS4ERR_DENIED (Error Code 10010) <lb/>An attempt to lock a file is denied. Since this may be a temporary <lb/>condition, the client is encouraged to re-send the lock request (but <lb/>not with the same slot ID and sequence ID; one or both MUST be <lb/>different on the re-send) until the lock is accepted. See <lb/>Section 9.6 for a discussion of the re-send. <lb/>15.1.8.4. NFS4ERR_LOCKED (Error Code 10012) <lb/>A READ or WRITE operation was attempted on a file where there was a <lb/>conflict between the I/O and an existing lock: <lb/>o There is a share reservation inconsistent with the I/O being done. <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 372] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>o The range to be read or written intersects an existing mandatory <lb/>byte-range lock. <lb/>15.1.8.5. NFS4ERR_LOCKS_HELD (Error Code 10037) <lb/>An operation was prevented by the unexpected presence of locks. <lb/>15.1.8.6. NFS4ERR_LOCK_NOTSUPP (Error Code 10043) <lb/>A LOCK operation was attempted that would require the upgrade or <lb/>downgrade of a byte-range lock range already held by the owner, and <lb/>the server does not support atomic upgrade or downgrade of locks. <lb/>15.1.8.7. NFS4ERR_LOCK_RANGE (Error Code 10028) <lb/>A LOCK operation is operating on a range that overlaps in part a <lb/>currently held byte-range lock for the current lock-owner and does <lb/>not precisely match a single such byte-range lock where the server <lb/>does not support this type of request, and thus does not implement <lb/>POSIX locking semantics [21]. See Sections 18.10.4, 18.11.4, and <lb/>18.12.4 for a discussion of how this applies to LOCK, LOCKT, and <lb/>LOCKU respectively. <lb/>15.1.8.8. NFS4ERR_OPENMODE (Error Code 10038) <lb/>The client attempted a READ, WRITE, LOCK, or other operation not <lb/>sanctioned by the stateid passed (e.g., writing to a file opened for <lb/>read-only access). <lb/>15.1.8.9. NFS4ERR_SHARE_DENIED (Error Code 10015) <lb/>An attempt to OPEN a file with a share reservation has failed because <lb/>of a share conflict. <lb/>15.1.9. Reclaim Errors <lb/>These errors relate to the process of reclaiming locks after a server <lb/>restart. <lb/>15.1.9.1. NFS4ERR_COMPLETE_ALREADY (Error Code 10054) <lb/>The client previously sent a successful RECLAIM_COMPLETE operation. <lb/>An additional RECLAIM_COMPLETE operation is not necessary and results <lb/>in this error. <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 373] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>15.1.9.2. NFS4ERR_GRACE (Error Code 10013) <lb/>The server was in its recovery or grace period. The locking request <lb/>was not a reclaim request and so could not be granted during that <lb/>period. <lb/>15.1.9.3. NFS4ERR_NO_GRACE (Error Code 10033) <lb/>A reclaim of client state was attempted in circumstances in which the <lb/>server cannot guarantee that conflicting state has not been provided <lb/>to another client. This can occur because the reclaim has been done <lb/>outside of the grace period of the server, after the client has done <lb/>a RECLAIM_COMPLETE operation, or because previous operations have <lb/>created a situation in which the server is not able to determine that <lb/>a reclaim-interfering edge condition does not exist. <lb/>15.1.9.4. NFS4ERR_RECLAIM_BAD (Error Code 10034) <lb/>The server has determined that a reclaim attempted by the client is <lb/>not valid, i.e. the lock specified as being reclaimed could not <lb/>possibly have existed before the server restart. A server is not <lb/>obliged to make this determination and will typically rely on the <lb/>client to only reclaim locks that the client was granted prior to <lb/>restart. However, when a server does have reliable information to <lb/>enable it make this determination, this error indicates that the <lb/>reclaim has been rejected as invalid. This is as opposed to the <lb/>error NFS4ERR_RECLAIM_CONFLICT (see Section 15.1.9.5) where the <lb/>server can only determine that there has been an invalid reclaim, but <lb/>cannot determine which request is invalid. <lb/>15.1.9.5. NFS4ERR_RECLAIM_CONFLICT (Error Code 10035) <lb/>The reclaim attempted by the client has encountered a conflict and <lb/>cannot be satisfied. Potentially indicates a misbehaving client, <lb/>although not necessarily the one receiving the error. The <lb/>misbehavior might be on the part of the client that established the <lb/>lock with which this client conflicted. See also Section 15.1.9.4 <lb/>for the related error, NFS4ERR_RECLAIM_BAD. <lb/>15.1.10. pNFS Errors <lb/>This section deals with pNFS-related errors including those that are <lb/>associated with using NFSv4.1 to communicate with a data server. <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 374] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>15.1.10.1. NFS4ERR_BADIOMODE (Error Code 10049) <lb/>An invalid or inappropriate layout iomode was specified. For example <lb/>an inappropriate layout iomode, suppose a client's LAYOUTGET <lb/>operation specified an iomode of LAYOUTIOMODE4_RW, and the server is <lb/>neither able nor willing to let the client send write requests to <lb/>data servers; the server can reply with NFS4ERR_BADIOMODE. The <lb/>client would then send another LAYOUTGET with an iomode of <lb/>LAYOUTIOMODE4_READ. <lb/>15.1.10.2. NFS4ERR_BADLAYOUT (Error Code 10050) <lb/>The layout specified is invalid in some way. For LAYOUTCOMMIT, this <lb/>indicates that the specified layout is not held by the client or is <lb/>not of mode LAYOUTIOMODE4_RW. For LAYOUTGET, it indicates that a <lb/>layout matching the client's specification as to minimum length <lb/>cannot be granted. <lb/>15.1.10.3. NFS4ERR_LAYOUTTRYLATER (Error Code 10058) <lb/>Layouts are temporarily unavailable for the file. The client should <lb/>re-send later (but not with the same slot ID and sequence ID; one or <lb/>both MUST be different on the re-send). <lb/>15.1.10.4. NFS4ERR_LAYOUTUNAVAILABLE (Error Code 10059) <lb/>Returned when layouts are not available for the current file system <lb/>or the particular specified file. <lb/>15.1.10.5. NFS4ERR_NOMATCHING_LAYOUT (Error Code 10060) <lb/>Returned when layouts are recalled and the client has no layouts <lb/>matching the specification of the layouts being recalled. <lb/>15.1.10.6. NFS4ERR_PNFS_IO_HOLE (Error Code 10075) <lb/>The pNFS client has attempted to read from or write to an illegal <lb/>hole of a file of a data server that is using sparse packing. See <lb/>Section 13.4.4. <lb/>15.1.10.7. NFS4ERR_PNFS_NO_LAYOUT (Error Code 10080) <lb/>The pNFS client has attempted to read from or write to a file (using <lb/>a request to a data server) without holding a valid layout. This <lb/>includes the case where the client had a layout, but the iomode does <lb/>not allow a WRITE. <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 375] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>15.1.10.8. NFS4ERR_RETURNCONFLICT (Error Code 10086) <lb/>A layout is unavailable due to an attempt to perform the LAYOUTGET <lb/>before a pending LAYOUTRETURN on the file has been received. See <lb/>Section 12.5.5.2.1.3. <lb/>15.1.10.9. NFS4ERR_UNKNOWN_LAYOUTTYPE (Error Code 10062) <lb/>The client has specified a layout type that is not supported by the <lb/>server. <lb/>15.1.11. Session Use Errors <lb/>This section deals with errors encountered when using sessions, that <lb/>is, errors encountered when a request uses a Sequence (i.e., either <lb/>SEQUENCE or CB_SEQUENCE) operation. <lb/>15.1.11.1. NFS4ERR_BADSESSION (Error Code 10052) <lb/>The specified session ID is unknown to the server to which the <lb/>operation is addressed. <lb/>15.1.11.2. NFS4ERR_BADSLOT (Error Code 10053) <lb/>The requester sent a Sequence operation that attempted to use a slot <lb/>the replier does not have in its slot table. It is possible the slot <lb/>may have been retired. <lb/>15.1.11.3. NFS4ERR_BAD_HIGH_SLOT (Error Code 10077) <lb/>The highest_slot argument in a Sequence operation exceeds the <lb/>replier's enforced highest_slotid. <lb/>15.1.11.4. NFS4ERR_CB_PATH_DOWN (Error Code 10048) <lb/>There is a problem contacting the client via the callback path. The <lb/>function of this error has been mostly superseded by the use of <lb/>status flags in the reply to the SEQUENCE operation (see <lb/>Section 18.46). <lb/>15.1.11.5. NFS4ERR_DEADSESSION (Error Code 10078) <lb/>The specified session is a persistent session that is dead and does <lb/>not accept new requests or perform new operations on existing <lb/>requests (in the case in which a request was partially executed <lb/>before server restart). <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 376] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>15.1.11.6. NFS4ERR_CONN_NOT_BOUND_TO_SESSION (Error Code 10055) <lb/>A Sequence operation was sent on a connection that has not been <lb/>associated with the specified session, where the client specified <lb/>that connection association was to be enforced with SP4_MACH_CRED or <lb/>SP4_SSV state protection. <lb/>15.1.11.7. NFS4ERR_SEQ_FALSE_RETRY (Error Code 10076) <lb/>The requester sent a Sequence operation with a slot ID and sequence <lb/>ID that are in the reply cache, but the replier has detected that the <lb/>retried request is not the same as the original request. See <lb/>Section 2.10.6.1.3.1. <lb/>15.1.11.8. NFS4ERR_SEQ_MISORDERED (Error Code 10063) <lb/>The requester sent a Sequence operation with an invalid sequence ID. <lb/>15.1.12. Session Management Errors <lb/>This section deals with errors associated with requests used in <lb/>session management. <lb/>15.1.12.1. NFS4ERR_BACK_CHAN_BUSY (Error Code 10057) <lb/>An attempt was made to destroy a session when the session cannot be <lb/>destroyed because the server has callback requests outstanding. <lb/>15.1.12.2. NFS4ERR_BAD_SESSION_DIGEST (Error Code 10051) <lb/>The digest used in a SET_SSV request is not valid. <lb/>15.1.13. Client Management Errors <lb/>This section deals with errors associated with requests used to <lb/>create and manage client IDs. <lb/>15.1.13.1. NFS4ERR_CLIENTID_BUSY (Error Code 10074) <lb/>The DESTROY_CLIENTID operation has found there are sessions and/or <lb/>unexpired state associated with the client ID to be destroyed. <lb/>15.1.13.2. NFS4ERR_CLID_INUSE (Error Code 10017) <lb/>While processing an EXCHANGE_ID operation, the server was presented <lb/>with a co_ownerid field that matches an existing client with valid <lb/>leased state, but the principal sending the EXCHANGE_ID operation <lb/>differs from the principal that established the existing client. <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 377] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>This indicates a collision (most likely due to chance) between <lb/>clients. The client should recover by changing the co_ownerid and <lb/>re-sending EXCHANGE_ID (but not with the same slot ID and sequence <lb/>ID; one or both MUST be different on the re-send). <lb/>15.1.13.3. NFS4ERR_ENCR_ALG_UNSUPP (Error Code 10079) <lb/>An EXCHANGE_ID was sent that specified state protection via SSV, and <lb/>where the set of encryption algorithms presented by the client did <lb/>not include any supported by the server. <lb/>15.1.13.4. NFS4ERR_HASH_ALG_UNSUPP (Error Code 10072) <lb/>An EXCHANGE_ID was sent that specified state protection via SSV, and <lb/>where the set of hashing algorithms presented by the client did not <lb/>include any supported by the server. <lb/>15.1.13.5. NFS4ERR_STALE_CLIENTID (Error Code 10022) <lb/>A client ID not recognized by the server was passed to an operation. <lb/>Note that unlike the case of NFSv4.0, client IDs are not passed <lb/>explicitly to the server in ordinary locking operations and cannot <lb/>result in this error. Instead, when there is a server restart, it is <lb/>first manifested through an error on the associated session, and the <lb/>staleness of the client ID is detected when trying to associate a <lb/>client ID with a new session. <lb/>15.1.14. Delegation Errors <lb/>This section deals with errors associated with requesting and <lb/>returning delegations. <lb/>15.1.14.1. NFS4ERR_DELEG_ALREADY_WANTED (Error Code 10056) <lb/>The client has requested a delegation when it had already registered <lb/>that it wants that same delegation. <lb/>15.1.14.2. NFS4ERR_DIRDELEG_UNAVAIL (Error Code 10084) <lb/>This error is returned when the server is unable or unwilling to <lb/>provide a requested directory delegation. <lb/>15.1.14.3. NFS4ERR_RECALLCONFLICT (Error Code 10061) <lb/>A recallable object (i.e., a layout or delegation) is unavailable due <lb/>to a conflicting recall operation that is currently in progress for <lb/>that object. <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 378] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>15.1.14.4. NFS4ERR_REJECT_DELEG (Error Code 10085) <lb/>The callback operation invoked to deal with a new delegation has <lb/>rejected it. <lb/>15.1.15. Attribute Handling Errors <lb/>This section deals with errors specific to attribute handling within <lb/>NFSv4. <lb/>15.1.15.1. NFS4ERR_ATTRNOTSUPP (Error Code 10032) <lb/>An attribute specified is not supported by the server. This error <lb/>MUST NOT be returned by the GETATTR operation. <lb/>15.1.15.2. NFS4ERR_BADOWNER (Error Code 10039) <lb/>This error is returned when an owner or owner_group attribute value <lb/>or the who field of an ACE within an ACL attribute value cannot be <lb/>translated to a local representation. <lb/>15.1.15.3. NFS4ERR_NOT_SAME (Error Code 10027) <lb/>This error is returned by the VERIFY operation to signify that the <lb/>attributes compared were not the same as those provided in the <lb/>client's request. <lb/>15.1.15.4. NFS4ERR_SAME (Error Code 10009) <lb/>This error is returned by the NVERIFY operation to signify that the <lb/>attributes compared were the same as those provided in the client's <lb/>request. <lb/>15.1.16. Obsoleted Errors <lb/>These errors MUST NOT be generated by any NFSv4.1 operation. This <lb/>can be for a number of reasons. <lb/>o The function provided by the error has been superseded by one of <lb/>the status bits returned by the SEQUENCE operation. <lb/>o The new session structure and associated change in locking have <lb/>made the error unnecessary. <lb/>o There has been a restructuring of some errors for NFSv4.1 that <lb/>resulted in the elimination of certain errors. <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 379] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>15.1.16.1. NFS4ERR_BAD_SEQID (Error Code 10026) <lb/>The sequence number (seqid) in a locking request is neither the next <lb/>expected number or the last number processed. These seqids are <lb/>ignored in NFSv4.1. <lb/>15.1.16.2. NFS4ERR_LEASE_MOVED (Error Code 10031) <lb/>A lease being renewed is associated with a file system that has been <lb/>migrated to a new server. The error has been superseded by the <lb/>SEQ4_STATUS_LEASE_MOVED status bit (see Section 18.46). <lb/>15.1.16.3. NFS4ERR_NXIO (Error Code 5) <lb/>I/O error. No such device or address. This error is for errors <lb/>involving block and character device access, but because NFSv4.1 is <lb/>not a device-access protocol, this error is not applicable. <lb/>15.1.16.4. NFS4ERR_RESTOREFH (Error Code 10030) <lb/>The RESTOREFH operation does not have a saved filehandle (identified <lb/>by SAVEFH) to operate upon. In NFSv4.1, this error has been <lb/>superseded by NFS4ERR_NOFILEHANDLE. <lb/>15.1.16.5. NFS4ERR_STALE_STATEID (Error Code 10023) <lb/>A stateid generated by an earlier server instance was used. This <lb/>error is moot in NFSv4.1 because all operations that take a stateid <lb/>MUST be preceded by the SEQUENCE operation, and the earlier server <lb/>instance is detected by the session infrastructure that supports <lb/>SEQUENCE. <lb/>15.2. Operations and Their Valid Errors <lb/>This section contains a table that gives the valid error returns for <lb/>each protocol operation. The error code NFS4_OK (indicating no <lb/>error) is not listed but should be understood to be returnable by all <lb/>operations with two important exceptions: <lb/>o The operations that MUST NOT be implemented: OPEN_CONFIRM, <lb/>RELEASE_LOCKOWNER, RENEW, SETCLIENTID, and SETCLIENTID_CONFIRM. <lb/>o The invalid operation: ILLEGAL. <lb/>Valid Error Returns for Each Protocol Operation <lb/>+----------------------+--------------------------------------------+ <lb/>| Operation <lb/>| Errors <lb/>| <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 380] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>+----------------------+--------------------------------------------+ <lb/>| ACCESS <lb/>| NFS4ERR_ACCESS, NFS4ERR_BADXDR, <lb/>| <lb/>| <lb/>| NFS4ERR_DEADSESSION, NFS4ERR_DELAY, <lb/>| <lb/>| <lb/>| NFS4ERR_FHEXPIRED, NFS4ERR_INVAL, <lb/>| <lb/>| <lb/>| NFS4ERR_IO, NFS4ERR_MOVED, <lb/>| <lb/>| <lb/>| NFS4ERR_NOFILEHANDLE, <lb/>| <lb/>| <lb/>| NFS4ERR_OP_NOT_IN_SESSION, <lb/>| <lb/>| <lb/>| NFS4ERR_REP_TOO_BIG, <lb/>| <lb/>| <lb/>| NFS4ERR_REP_TOO_BIG_TO_CACHE, <lb/>| <lb/>| <lb/>| NFS4ERR_REQ_TOO_BIG, <lb/>| <lb/>| <lb/>| NFS4ERR_RETRY_UNCACHED_REP, <lb/>| <lb/>| <lb/>| NFS4ERR_SERVERFAULT, NFS4ERR_STALE, <lb/>| <lb/>| <lb/>| NFS4ERR_TOO_MANY_OPS <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| BACKCHANNEL_CTL <lb/>| NFS4ERR_BADXDR, NFS4ERR_DEADSESSION, <lb/>| <lb/>| <lb/>| NFS4ERR_DELAY, NFS4ERR_INVAL, <lb/>| <lb/>| <lb/>| NFS4ERR_NOENT, NFS4ERR_OP_NOT_IN_SESSION, | <lb/>| <lb/>| NFS4ERR_REP_TOO_BIG, <lb/>| <lb/>| <lb/>| NFS4ERR_REP_TOO_BIG_TO_CACHE, <lb/>| <lb/>| <lb/>| NFS4ERR_REQ_TOO_BIG, <lb/>| <lb/>| <lb/>| NFS4ERR_RETRY_UNCACHED_REP, <lb/>| <lb/>| <lb/>| NFS4ERR_TOO_MANY_OPS <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| BIND_CONN_TO_SESSION | NFS4ERR_BADSESSION, NFS4ERR_BADXDR, <lb/>| <lb/>| <lb/>| NFS4ERR_BAD_SESSION_DIGEST, <lb/>| <lb/>| <lb/>| NFS4ERR_DEADSESSION, NFS4ERR_DELAY, <lb/>| <lb/>| <lb/>| NFS4ERR_INVAL, NFS4ERR_NOT_ONLY_OP, <lb/>| <lb/>| <lb/>| NFS4ERR_REP_TOO_BIG, <lb/>| <lb/>| <lb/>| NFS4ERR_REP_TOO_BIG_TO_CACHE, <lb/>| <lb/>| <lb/>| NFS4ERR_REQ_TOO_BIG, <lb/>| <lb/>| <lb/>| NFS4ERR_RETRY_UNCACHED_REP, <lb/>| <lb/>| <lb/>| NFS4ERR_SERVERFAULT, NFS4ERR_TOO_MANY_OPS | <lb/>| <lb/>| <lb/>| <lb/>| CLOSE <lb/>| NFS4ERR_ADMIN_REVOKED, NFS4ERR_BADXDR, <lb/>| <lb/>| <lb/>| NFS4ERR_BAD_STATEID, NFS4ERR_DEADSESSION, | <lb/>| <lb/>| NFS4ERR_DELAY, NFS4ERR_EXPIRED, <lb/>| <lb/>| <lb/>| NFS4ERR_FHEXPIRED, NFS4ERR_LOCKS_HELD, <lb/>| <lb/>| <lb/>| NFS4ERR_MOVED, NFS4ERR_NOFILEHANDLE, <lb/>| <lb/>| <lb/>| NFS4ERR_OLD_STATEID, <lb/>| <lb/>| <lb/>| NFS4ERR_OP_NOT_IN_SESSION, <lb/>| <lb/>| <lb/>| NFS4ERR_REP_TOO_BIG, <lb/>| <lb/>| <lb/>| NFS4ERR_REP_TOO_BIG_TO_CACHE, <lb/>| <lb/>| <lb/>| NFS4ERR_REQ_TOO_BIG, <lb/>| <lb/>| <lb/>| NFS4ERR_RETRY_UNCACHED_REP, <lb/>| <lb/>| <lb/>| NFS4ERR_SERVERFAULT, NFS4ERR_STALE, <lb/>| <lb/>| <lb/>| NFS4ERR_TOO_MANY_OPS, NFS4ERR_WRONG_CRED <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| COMMIT <lb/>| NFS4ERR_ACCESS, NFS4ERR_BADXDR, <lb/>| <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 381] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>| <lb/>| NFS4ERR_DEADSESSION, NFS4ERR_DELAY, <lb/>| <lb/>| <lb/>| NFS4ERR_FHEXPIRED, NFS4ERR_IO, <lb/>| <lb/>| <lb/>| NFS4ERR_ISDIR, NFS4ERR_MOVED, <lb/>| <lb/>| <lb/>| NFS4ERR_NOFILEHANDLE, <lb/>| <lb/>| <lb/>| NFS4ERR_OP_NOT_IN_SESSION, <lb/>| <lb/>| <lb/>| NFS4ERR_REP_TOO_BIG, <lb/>| <lb/>| <lb/>| NFS4ERR_REP_TOO_BIG_TO_CACHE, <lb/>| <lb/>| <lb/>| NFS4ERR_REQ_TOO_BIG, <lb/>| <lb/>| <lb/>| NFS4ERR_RETRY_UNCACHED_REP, <lb/>| <lb/>| <lb/>| NFS4ERR_SERVERFAULT, NFS4ERR_STALE, <lb/>| <lb/>| <lb/>| NFS4ERR_SYMLINK, NFS4ERR_TOO_MANY_OPS, <lb/>| <lb/>| <lb/>| NFS4ERR_WRONG_TYPE <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| CREATE <lb/>| NFS4ERR_ACCESS, NFS4ERR_ATTRNOTSUPP, <lb/>| <lb/>| <lb/>| NFS4ERR_BADCHAR, NFS4ERR_BADNAME, <lb/>| <lb/>| <lb/>| NFS4ERR_BADOWNER, NFS4ERR_BADTYPE, <lb/>| <lb/>| <lb/>| NFS4ERR_BADXDR, NFS4ERR_DEADSESSION, <lb/>| <lb/>| <lb/>| NFS4ERR_DELAY, NFS4ERR_DQUOT, <lb/>| <lb/>| <lb/>| NFS4ERR_EXIST, NFS4ERR_FHEXPIRED, <lb/>| <lb/>| <lb/>| NFS4ERR_INVAL, NFS4ERR_IO, NFS4ERR_MLINK, | <lb/>| <lb/>| NFS4ERR_MOVED, NFS4ERR_NAMETOOLONG, <lb/>| <lb/>| <lb/>| NFS4ERR_NOFILEHANDLE, NFS4ERR_NOSPC, <lb/>| <lb/>| <lb/>| NFS4ERR_NOTDIR, NFS4ERR_OP_NOT_IN_SESSION, | <lb/>| <lb/>| NFS4ERR_PERM, NFS4ERR_REP_TOO_BIG, <lb/>| <lb/>| <lb/>| NFS4ERR_REP_TOO_BIG_TO_CACHE, <lb/>| <lb/>| <lb/>| NFS4ERR_REQ_TOO_BIG, <lb/>| <lb/>| <lb/>| NFS4ERR_RETRY_UNCACHED_REP, NFS4ERR_ROFS, | <lb/>| <lb/>| NFS4ERR_SERVERFAULT, NFS4ERR_STALE, <lb/>| <lb/>| <lb/>| NFS4ERR_TOO_MANY_OPS, <lb/>| <lb/>| <lb/>| NFS4ERR_UNSAFE_COMPOUND <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| CREATE_SESSION <lb/>| NFS4ERR_BADXDR, NFS4ERR_CLID_INUSE, <lb/>| <lb/>| <lb/>| NFS4ERR_DEADSESSION, NFS4ERR_DELAY, <lb/>| <lb/>| <lb/>| NFS4ERR_INVAL, NFS4ERR_NOENT, <lb/>| <lb/>| <lb/>| NFS4ERR_NOT_ONLY_OP, NFS4ERR_NOSPC, <lb/>| <lb/>| <lb/>| NFS4ERR_REP_TOO_BIG, <lb/>| <lb/>| <lb/>| NFS4ERR_REP_TOO_BIG_TO_CACHE, <lb/>| <lb/>| <lb/>| NFS4ERR_REQ_TOO_BIG, <lb/>| <lb/>| <lb/>| NFS4ERR_RETRY_UNCACHED_REP, <lb/>| <lb/>| <lb/>| NFS4ERR_SEQ_MISORDERED, <lb/>| <lb/>| <lb/>| NFS4ERR_SERVERFAULT, <lb/>| <lb/>| <lb/>| NFS4ERR_STALE_CLIENTID, NFS4ERR_TOOSMALL, | <lb/>| <lb/>| NFS4ERR_TOO_MANY_OPS, NFS4ERR_WRONG_CRED <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| DELEGPURGE <lb/>| NFS4ERR_BADXDR, NFS4ERR_DEADSESSION, <lb/>| <lb/>| <lb/>| NFS4ERR_DELAY, NFS4ERR_NOTSUPP, <lb/>| <lb/>| <lb/>| NFS4ERR_OP_NOT_IN_SESSION, <lb/>| <lb/>| <lb/>| NFS4ERR_REP_TOO_BIG, <lb/>| <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 382] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>| <lb/>| NFS4ERR_REP_TOO_BIG_TO_CACHE, <lb/>| <lb/>| <lb/>| NFS4ERR_REQ_TOO_BIG, <lb/>| <lb/>| <lb/>| NFS4ERR_RETRY_UNCACHED_REP, <lb/>| <lb/>| <lb/>| NFS4ERR_SERVERFAULT, NFS4ERR_TOO_MANY_OPS, | <lb/>| <lb/>| NFS4ERR_WRONG_CRED <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| DELEGRETURN <lb/>| NFS4ERR_ADMIN_REVOKED, NFS4ERR_BADXDR, <lb/>| <lb/>| <lb/>| NFS4ERR_BAD_STATEID, NFS4ERR_DEADSESSION, | <lb/>| <lb/>| NFS4ERR_DELAY, NFS4ERR_DELEG_REVOKED, <lb/>| <lb/>| <lb/>| NFS4ERR_EXPIRED, NFS4ERR_FHEXPIRED, <lb/>| <lb/>| <lb/>| NFS4ERR_INVAL, NFS4ERR_MOVED, <lb/>| <lb/>| <lb/>| NFS4ERR_NOFILEHANDLE, NFS4ERR_NOTSUPP, <lb/>| <lb/>| <lb/>| NFS4ERR_OLD_STATEID, <lb/>| <lb/>| <lb/>| NFS4ERR_OP_NOT_IN_SESSION, <lb/>| <lb/>| <lb/>| NFS4ERR_REP_TOO_BIG, <lb/>| <lb/>| <lb/>| NFS4ERR_REP_TOO_BIG_TO_CACHE, <lb/>| <lb/>| <lb/>| NFS4ERR_REQ_TOO_BIG, <lb/>| <lb/>| <lb/>| NFS4ERR_RETRY_UNCACHED_REP, <lb/>| <lb/>| <lb/>| NFS4ERR_SERVERFAULT, NFS4ERR_STALE, <lb/>| <lb/>| <lb/>| NFS4ERR_TOO_MANY_OPS, NFS4ERR_WRONG_CRED <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| DESTROY_CLIENTID <lb/>| NFS4ERR_BADXDR, NFS4ERR_CLIENTID_BUSY, <lb/>| <lb/>| <lb/>| NFS4ERR_DEADSESSION, NFS4ERR_DELAY, <lb/>| <lb/>| <lb/>| NFS4ERR_NOT_ONLY_OP, NFS4ERR_REP_TOO_BIG, | <lb/>| <lb/>| NFS4ERR_REP_TOO_BIG_TO_CACHE, <lb/>| <lb/>| <lb/>| NFS4ERR_REQ_TOO_BIG, <lb/>| <lb/>| <lb/>| NFS4ERR_RETRY_UNCACHED_REP, <lb/>| <lb/>| <lb/>| NFS4ERR_SERVERFAULT, <lb/>| <lb/>| <lb/>| NFS4ERR_STALE_CLIENTID, <lb/>| <lb/>| <lb/>| NFS4ERR_TOO_MANY_OPS, NFS4ERR_WRONG_CRED <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| DESTROY_SESSION <lb/>| NFS4ERR_BACK_CHAN_BUSY, <lb/>| <lb/>| <lb/>| NFS4ERR_BADSESSION, NFS4ERR_BADXDR, <lb/>| <lb/>| <lb/>| NFS4ERR_CB_PATH_DOWN, <lb/>| <lb/>| <lb/>| NFS4ERR_CONN_NOT_BOUND_TO_SESSION, <lb/>| <lb/>| <lb/>| NFS4ERR_DEADSESSION, NFS4ERR_DELAY, <lb/>| <lb/>| <lb/>| NFS4ERR_NOT_ONLY_OP, NFS4ERR_REP_TOO_BIG, | <lb/>| <lb/>| NFS4ERR_REP_TOO_BIG_TO_CACHE, <lb/>| <lb/>| <lb/>| NFS4ERR_REQ_TOO_BIG, <lb/>| <lb/>| <lb/>| NFS4ERR_RETRY_UNCACHED_REP, <lb/>| <lb/>| <lb/>| NFS4ERR_SERVERFAULT, <lb/>| <lb/>| <lb/>| NFS4ERR_STALE_CLIENTID, <lb/>| <lb/>| <lb/>| NFS4ERR_TOO_MANY_OPS, NFS4ERR_WRONG_CRED <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| EXCHANGE_ID <lb/>| NFS4ERR_BADCHAR, NFS4ERR_BADXDR, <lb/>| <lb/>| <lb/>| NFS4ERR_CLID_INUSE, NFS4ERR_DEADSESSION, <lb/>| <lb/>| <lb/>| NFS4ERR_DELAY, NFS4ERR_ENCR_ALG_UNSUPP, <lb/>| <lb/>| <lb/>| NFS4ERR_HASH_ALG_UNSUPP, NFS4ERR_INVAL, <lb/>| <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 383] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>| <lb/>| NFS4ERR_NOENT, NFS4ERR_NOT_ONLY_OP, <lb/>| <lb/>| <lb/>| NFS4ERR_NOT_SAME, NFS4ERR_REP_TOO_BIG, <lb/>| <lb/>| <lb/>| NFS4ERR_REP_TOO_BIG_TO_CACHE, <lb/>| <lb/>| <lb/>| NFS4ERR_REQ_TOO_BIG, <lb/>| <lb/>| <lb/>| NFS4ERR_RETRY_UNCACHED_REP, <lb/>| <lb/>| <lb/>| NFS4ERR_SERVERFAULT, NFS4ERR_TOO_MANY_OPS | <lb/>| <lb/>| <lb/>| <lb/>| FREE_STATEID <lb/>| NFS4ERR_BADXDR, NFS4ERR_BAD_STATEID, <lb/>| <lb/>| <lb/>| NFS4ERR_DEADSESSION, NFS4ERR_DELAY, <lb/>| <lb/>| <lb/>| NFS4ERR_LOCKS_HELD, NFS4ERR_OLD_STATEID, <lb/>| <lb/>| <lb/>| NFS4ERR_OP_NOT_IN_SESSION, <lb/>| <lb/>| <lb/>| NFS4ERR_REP_TOO_BIG, <lb/>| <lb/>| <lb/>| NFS4ERR_REP_TOO_BIG_TO_CACHE, <lb/>| <lb/>| <lb/>| NFS4ERR_REQ_TOO_BIG, <lb/>| <lb/>| <lb/>| NFS4ERR_RETRY_UNCACHED_REP, <lb/>| <lb/>| <lb/>| NFS4ERR_SERVERFAULT, NFS4ERR_TOO_MANY_OPS, | <lb/>| <lb/>| NFS4ERR_WRONG_CRED <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| GET_DIR_DELEGATION <lb/>| NFS4ERR_ACCESS, NFS4ERR_BADXDR, <lb/>| <lb/>| <lb/>| NFS4ERR_DEADSESSION, NFS4ERR_DELAY, <lb/>| <lb/>| <lb/>| NFS4ERR_DIRDELEG_UNAVAIL, <lb/>| <lb/>| <lb/>| NFS4ERR_FHEXPIRED, NFS4ERR_GRACE, <lb/>| <lb/>| <lb/>| NFS4ERR_INVAL, NFS4ERR_IO, NFS4ERR_MOVED, | <lb/>| <lb/>| NFS4ERR_NOFILEHANDLE, NFS4ERR_NOTDIR, <lb/>| <lb/>| <lb/>| NFS4ERR_NOTSUPP, <lb/>| <lb/>| <lb/>| NFS4ERR_OP_NOT_IN_SESSION, <lb/>| <lb/>| <lb/>| NFS4ERR_REP_TOO_BIG, <lb/>| <lb/>| <lb/>| NFS4ERR_REP_TOO_BIG_TO_CACHE, <lb/>| <lb/>| <lb/>| NFS4ERR_REQ_TOO_BIG, <lb/>| <lb/>| <lb/>| NFS4ERR_RETRY_UNCACHED_REP, <lb/>| <lb/>| <lb/>| NFS4ERR_SERVERFAULT, NFS4ERR_STALE, <lb/>| <lb/>| <lb/>| NFS4ERR_TOO_MANY_OPS <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| GETATTR <lb/>| NFS4ERR_ACCESS, NFS4ERR_BADXDR, <lb/>| <lb/>| <lb/>| NFS4ERR_DEADSESSION, NFS4ERR_DELAY, <lb/>| <lb/>| <lb/>| NFS4ERR_FHEXPIRED, NFS4ERR_GRACE, <lb/>| <lb/>| <lb/>| NFS4ERR_INVAL, NFS4ERR_IO, NFS4ERR_MOVED, | <lb/>| <lb/>| NFS4ERR_NOFILEHANDLE, <lb/>| <lb/>| <lb/>| NFS4ERR_OP_NOT_IN_SESSION, <lb/>| <lb/>| <lb/>| NFS4ERR_REP_TOO_BIG, <lb/>| <lb/>| <lb/>| NFS4ERR_REP_TOO_BIG_TO_CACHE, <lb/>| <lb/>| <lb/>| NFS4ERR_REQ_TOO_BIG, <lb/>| <lb/>| <lb/>| NFS4ERR_RETRY_UNCACHED_REP, <lb/>| <lb/>| <lb/>| NFS4ERR_SERVERFAULT, NFS4ERR_STALE, <lb/>| <lb/>| <lb/>| NFS4ERR_TOO_MANY_OPS, NFS4ERR_WRONG_TYPE <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| GETDEVICEINFO <lb/>| NFS4ERR_BADXDR, NFS4ERR_DEADSESSION, <lb/>| <lb/>| <lb/>| NFS4ERR_DELAY, NFS4ERR_INVAL, <lb/>| <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 384] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>| <lb/>| NFS4ERR_NOENT, NFS4ERR_NOTSUPP, <lb/>| <lb/>| <lb/>| NFS4ERR_OP_NOT_IN_SESSION, <lb/>| <lb/>| <lb/>| NFS4ERR_REP_TOO_BIG, <lb/>| <lb/>| <lb/>| NFS4ERR_REP_TOO_BIG_TO_CACHE, <lb/>| <lb/>| <lb/>| NFS4ERR_REQ_TOO_BIG, <lb/>| <lb/>| <lb/>| NFS4ERR_RETRY_UNCACHED_REP, <lb/>| <lb/>| <lb/>| NFS4ERR_SERVERFAULT, NFS4ERR_TOOSMALL, <lb/>| <lb/>| <lb/>| NFS4ERR_TOO_MANY_OPS, <lb/>| <lb/>| <lb/>| NFS4ERR_UNKNOWN_LAYOUTTYPE <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| GETDEVICELIST <lb/>| NFS4ERR_BADXDR, NFS4ERR_BAD_COOKIE, <lb/>| <lb/>| <lb/>| NFS4ERR_DEADSESSION, NFS4ERR_DELAY, <lb/>| <lb/>| <lb/>| NFS4ERR_FHEXPIRED, NFS4ERR_INVAL, <lb/>| <lb/>| <lb/>| NFS4ERR_IO, NFS4ERR_NOFILEHANDLE, <lb/>| <lb/>| <lb/>| NFS4ERR_NOTSUPP, NFS4ERR_NOT_SAME, <lb/>| <lb/>| <lb/>| NFS4ERR_OP_NOT_IN_SESSION, <lb/>| <lb/>| <lb/>| NFS4ERR_REP_TOO_BIG, <lb/>| <lb/>| <lb/>| NFS4ERR_REP_TOO_BIG_TO_CACHE, <lb/>| <lb/>| <lb/>| NFS4ERR_REQ_TOO_BIG, <lb/>| <lb/>| <lb/>| NFS4ERR_RETRY_UNCACHED_REP, <lb/>| <lb/>| <lb/>| NFS4ERR_SERVERFAULT, NFS4ERR_TOO_MANY_OPS, | <lb/>| <lb/>| NFS4ERR_UNKNOWN_LAYOUTTYPE <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| GETFH <lb/>| NFS4ERR_FHEXPIRED, NFS4ERR_MOVED, <lb/>| <lb/>| <lb/>| NFS4ERR_NOFILEHANDLE, <lb/>| <lb/>| <lb/>| NFS4ERR_OP_NOT_IN_SESSION, NFS4ERR_STALE <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| ILLEGAL <lb/>| NFS4ERR_BADXDR, NFS4ERR_OP_ILLEGAL <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| LAYOUTCOMMIT <lb/>| NFS4ERR_ACCESS, NFS4ERR_ADMIN_REVOKED, <lb/>| <lb/>| <lb/>| NFS4ERR_ATTRNOTSUPP, NFS4ERR_BADIOMODE, <lb/>| <lb/>| <lb/>| NFS4ERR_BADLAYOUT, NFS4ERR_BADXDR, <lb/>| <lb/>| <lb/>| NFS4ERR_DEADSESSION, NFS4ERR_DELAY, <lb/>| <lb/>| <lb/>| NFS4ERR_DELEG_REVOKED, NFS4ERR_EXPIRED, <lb/>| <lb/>| <lb/>| NFS4ERR_FBIG, NFS4ERR_FHEXPIRED, <lb/>| <lb/>| <lb/>| NFS4ERR_GRACE, NFS4ERR_INVAL, NFS4ERR_IO, | <lb/>| <lb/>| NFS4ERR_ISDIR NFS4ERR_MOVED, <lb/>| <lb/>| <lb/>| NFS4ERR_NOFILEHANDLE, NFS4ERR_NOTSUPP, <lb/>| <lb/>| <lb/>| NFS4ERR_NO_GRACE, <lb/>| <lb/>| <lb/>| NFS4ERR_OP_NOT_IN_SESSION, <lb/>| <lb/>| <lb/>| NFS4ERR_RECLAIM_BAD, <lb/>| <lb/>| <lb/>| NFS4ERR_RECLAIM_CONFLICT, <lb/>| <lb/>| <lb/>| NFS4ERR_REP_TOO_BIG, <lb/>| <lb/>| <lb/>| NFS4ERR_REP_TOO_BIG_TO_CACHE, <lb/>| <lb/>| <lb/>| NFS4ERR_REQ_TOO_BIG, <lb/>| <lb/>| <lb/>| NFS4ERR_RETRY_UNCACHED_REP, <lb/>| <lb/>| <lb/>| NFS4ERR_SERVERFAULT, NFS4ERR_STALE, <lb/>| <lb/>| <lb/>| NFS4ERR_SYMLINK, NFS4ERR_TOO_MANY_OPS, <lb/>| <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 385] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>| <lb/>| NFS4ERR_UNKNOWN_LAYOUTTYPE, <lb/>| <lb/>| <lb/>| NFS4ERR_WRONG_CRED <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| LAYOUTGET <lb/>| NFS4ERR_ACCESS, NFS4ERR_ADMIN_REVOKED, <lb/>| <lb/>| <lb/>| NFS4ERR_BADIOMODE, NFS4ERR_BADLAYOUT, <lb/>| <lb/>| <lb/>| NFS4ERR_BADXDR, NFS4ERR_BAD_STATEID, <lb/>| <lb/>| <lb/>| NFS4ERR_DEADSESSION, NFS4ERR_DELAY, <lb/>| <lb/>| <lb/>| NFS4ERR_DELEG_REVOKED, NFS4ERR_DQUOT, <lb/>| <lb/>| <lb/>| NFS4ERR_FHEXPIRED, NFS4ERR_GRACE, <lb/>| <lb/>| <lb/>| NFS4ERR_INVAL, NFS4ERR_IO, <lb/>| <lb/>| <lb/>| NFS4ERR_LAYOUTTRYLATER, <lb/>| <lb/>| <lb/>| NFS4ERR_LAYOUTUNAVAILABLE, NFS4ERR_LOCKED, | <lb/>| <lb/>| NFS4ERR_MOVED, NFS4ERR_NOFILEHANDLE, <lb/>| <lb/>| <lb/>| NFS4ERR_NOSPC, NFS4ERR_NOTSUPP, <lb/>| <lb/>| <lb/>| NFS4ERR_OLD_STATEID, NFS4ERR_OPENMODE, <lb/>| <lb/>| <lb/>| NFS4ERR_OP_NOT_IN_SESSION, <lb/>| <lb/>| <lb/>| NFS4ERR_RECALLCONFLICT, <lb/>| <lb/>| <lb/>| NFS4ERR_REP_TOO_BIG, <lb/>| <lb/>| <lb/>| NFS4ERR_REP_TOO_BIG_TO_CACHE, <lb/>| <lb/>| <lb/>| NFS4ERR_REQ_TOO_BIG, <lb/>| <lb/>| <lb/>| NFS4ERR_RETRY_UNCACHED_REP, <lb/>| <lb/>| <lb/>| NFS4ERR_SERVERFAULT, NFS4ERR_STALE, <lb/>| <lb/>| <lb/>| NFS4ERR_TOOSMALL, NFS4ERR_TOO_MANY_OPS, <lb/>| <lb/>| <lb/>| NFS4ERR_UNKNOWN_LAYOUTTYPE, <lb/>| <lb/>| <lb/>| NFS4ERR_WRONG_TYPE <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| LAYOUTRETURN <lb/>| NFS4ERR_ADMIN_REVOKED, NFS4ERR_BADXDR, <lb/>| <lb/>| <lb/>| NFS4ERR_BAD_STATEID, NFS4ERR_DEADSESSION, | <lb/>| <lb/>| NFS4ERR_DELAY, NFS4ERR_DELEG_REVOKED, <lb/>| <lb/>| <lb/>| NFS4ERR_EXPIRED, NFS4ERR_FHEXPIRED, <lb/>| <lb/>| <lb/>| NFS4ERR_GRACE, NFS4ERR_INVAL, <lb/>| <lb/>| <lb/>| NFS4ERR_ISDIR, NFS4ERR_MOVED, <lb/>| <lb/>| <lb/>| NFS4ERR_NOFILEHANDLE, NFS4ERR_NOTSUPP, <lb/>| <lb/>| <lb/>| NFS4ERR_NO_GRACE, NFS4ERR_OLD_STATEID, <lb/>| <lb/>| <lb/>| NFS4ERR_OP_NOT_IN_SESSION, <lb/>| <lb/>| <lb/>| NFS4ERR_REP_TOO_BIG, <lb/>| <lb/>| <lb/>| NFS4ERR_REP_TOO_BIG_TO_CACHE, <lb/>| <lb/>| <lb/>| NFS4ERR_REQ_TOO_BIG, <lb/>| <lb/>| <lb/>| NFS4ERR_RETRY_UNCACHED_REP, <lb/>| <lb/>| <lb/>| NFS4ERR_SERVERFAULT, NFS4ERR_STALE, <lb/>| <lb/>| <lb/>| NFS4ERR_TOO_MANY_OPS, <lb/>| <lb/>| <lb/>| NFS4ERR_UNKNOWN_LAYOUTTYPE, <lb/>| <lb/>| <lb/>| NFS4ERR_WRONG_CRED, NFS4ERR_WRONG_TYPE <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| LINK <lb/>| NFS4ERR_ACCESS, NFS4ERR_BADCHAR, <lb/>| <lb/>| <lb/>| NFS4ERR_BADNAME, NFS4ERR_BADXDR, <lb/>| <lb/>| <lb/>| NFS4ERR_DEADSESSION, NFS4ERR_DELAY, <lb/>| <lb/>| <lb/>| NFS4ERR_DQUOT, NFS4ERR_EXIST, <lb/>| <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 386] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>| <lb/>| NFS4ERR_FHEXPIRED, NFS4ERR_FILE_OPEN, <lb/>| <lb/>| <lb/>| NFS4ERR_GRACE, NFS4ERR_INVAL, <lb/>| <lb/>| <lb/>| NFS4ERR_ISDIR, NFS4ERR_IO, NFS4ERR_MLINK, | <lb/>| <lb/>| NFS4ERR_MOVED, NFS4ERR_NAMETOOLONG, <lb/>| <lb/>| <lb/>| NFS4ERR_NOFILEHANDLE, NFS4ERR_NOSPC, <lb/>| <lb/>| <lb/>| NFS4ERR_NOTDIR, NFS4ERR_NOTSUPP, <lb/>| <lb/>| <lb/>| NFS4ERR_OP_NOT_IN_SESSION, <lb/>| <lb/>| <lb/>| NFS4ERR_REP_TOO_BIG, <lb/>| <lb/>| <lb/>| NFS4ERR_REP_TOO_BIG_TO_CACHE, <lb/>| <lb/>| <lb/>| NFS4ERR_REQ_TOO_BIG, <lb/>| <lb/>| <lb/>| NFS4ERR_RETRY_UNCACHED_REP, NFS4ERR_ROFS, | <lb/>| <lb/>| NFS4ERR_SERVERFAULT, NFS4ERR_STALE, <lb/>| <lb/>| <lb/>| NFS4ERR_SYMLINK, NFS4ERR_TOO_MANY_OPS, <lb/>| <lb/>| <lb/>| NFS4ERR_WRONGSEC, NFS4ERR_WRONG_TYPE, <lb/>| <lb/>| <lb/>| NFS4ERR_XDEV <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| LOCK <lb/>| NFS4ERR_ACCESS, NFS4ERR_ADMIN_REVOKED, <lb/>| <lb/>| <lb/>| NFS4ERR_BADXDR, NFS4ERR_BAD_RANGE, <lb/>| <lb/>| <lb/>| NFS4ERR_BAD_STATEID, NFS4ERR_DEADLOCK, <lb/>| <lb/>| <lb/>| NFS4ERR_DEADSESSION, NFS4ERR_DELAY, <lb/>| <lb/>| <lb/>| NFS4ERR_DENIED, NFS4ERR_EXPIRED, <lb/>| <lb/>| <lb/>| NFS4ERR_FHEXPIRED, NFS4ERR_GRACE, <lb/>| <lb/>| <lb/>| NFS4ERR_INVAL, NFS4ERR_ISDIR, <lb/>| <lb/>| <lb/>| NFS4ERR_LOCK_NOTSUPP, NFS4ERR_LOCK_RANGE, | <lb/>| <lb/>| NFS4ERR_MOVED, NFS4ERR_NOFILEHANDLE, <lb/>| <lb/>| <lb/>| NFS4ERR_NO_GRACE, NFS4ERR_OLD_STATEID, <lb/>| <lb/>| <lb/>| NFS4ERR_OPENMODE, <lb/>| <lb/>| <lb/>| NFS4ERR_OP_NOT_IN_SESSION, <lb/>| <lb/>| <lb/>| NFS4ERR_RECLAIM_BAD, <lb/>| <lb/>| <lb/>| NFS4ERR_RECLAIM_CONFLICT, <lb/>| <lb/>| <lb/>| NFS4ERR_REP_TOO_BIG, <lb/>| <lb/>| <lb/>| NFS4ERR_REP_TOO_BIG_TO_CACHE, <lb/>| <lb/>| <lb/>| NFS4ERR_REQ_TOO_BIG, <lb/>| <lb/>| <lb/>| NFS4ERR_RETRY_UNCACHED_REP, NFS4ERR_ROFS, | <lb/>| <lb/>| NFS4ERR_SERVERFAULT, NFS4ERR_STALE, <lb/>| <lb/>| <lb/>| NFS4ERR_SYMLINK, NFS4ERR_TOO_MANY_OPS, <lb/>| <lb/>| <lb/>| NFS4ERR_WRONG_CRED, NFS4ERR_WRONG_TYPE <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| LOCKT <lb/>| NFS4ERR_ACCESS, NFS4ERR_BADXDR, <lb/>| <lb/>| <lb/>| NFS4ERR_BAD_RANGE, NFS4ERR_DEADSESSION, <lb/>| <lb/>| <lb/>| NFS4ERR_DELAY, NFS4ERR_DENIED, <lb/>| <lb/>| <lb/>| NFS4ERR_FHEXPIRED, NFS4ERR_GRACE, <lb/>| <lb/>| <lb/>| NFS4ERR_INVAL, NFS4ERR_ISDIR, <lb/>| <lb/>| <lb/>| NFS4ERR_LOCK_RANGE, NFS4ERR_MOVED, <lb/>| <lb/>| <lb/>| NFS4ERR_NOFILEHANDLE, <lb/>| <lb/>| <lb/>| NFS4ERR_OP_NOT_IN_SESSION, <lb/>| <lb/>| <lb/>| NFS4ERR_REP_TOO_BIG, <lb/>| <lb/>| <lb/>| NFS4ERR_REP_TOO_BIG_TO_CACHE, <lb/>| <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 387] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>| <lb/>| NFS4ERR_REQ_TOO_BIG, <lb/>| <lb/>| <lb/>| NFS4ERR_RETRY_UNCACHED_REP, NFS4ERR_ROFS, | <lb/>| <lb/>| NFS4ERR_STALE, NFS4ERR_SYMLINK, <lb/>| <lb/>| <lb/>| NFS4ERR_TOO_MANY_OPS, NFS4ERR_WRONG_CRED, | <lb/>| <lb/>| NFS4ERR_WRONG_TYPE <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| LOCKU <lb/>| NFS4ERR_ACCESS, NFS4ERR_ADMIN_REVOKED, <lb/>| <lb/>| <lb/>| NFS4ERR_BADXDR, NFS4ERR_BAD_RANGE, <lb/>| <lb/>| <lb/>| NFS4ERR_BAD_STATEID, NFS4ERR_DEADSESSION, | <lb/>| <lb/>| NFS4ERR_DELAY, NFS4ERR_EXPIRED, <lb/>| <lb/>| <lb/>| NFS4ERR_FHEXPIRED, NFS4ERR_INVAL, <lb/>| <lb/>| <lb/>| NFS4ERR_LOCK_RANGE, NFS4ERR_MOVED, <lb/>| <lb/>| <lb/>| NFS4ERR_NOFILEHANDLE, NFS4ERR_OLD_STATEID, | <lb/>| <lb/>| NFS4ERR_OP_NOT_IN_SESSION, <lb/>| <lb/>| <lb/>| NFS4ERR_REP_TOO_BIG, <lb/>| <lb/>| <lb/>| NFS4ERR_REP_TOO_BIG_TO_CACHE, <lb/>| <lb/>| <lb/>| NFS4ERR_REQ_TOO_BIG, <lb/>| <lb/>| <lb/>| NFS4ERR_RETRY_UNCACHED_REP, <lb/>| <lb/>| <lb/>| NFS4ERR_SERVERFAULT, NFS4ERR_STALE, <lb/>| <lb/>| <lb/>| NFS4ERR_TOO_MANY_OPS, NFS4ERR_WRONG_CRED <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| LOOKUP <lb/>| NFS4ERR_ACCESS, NFS4ERR_BADCHAR, <lb/>| <lb/>| <lb/>| NFS4ERR_BADNAME, NFS4ERR_BADXDR, <lb/>| <lb/>| <lb/>| NFS4ERR_DEADSESSION, NFS4ERR_DELAY, <lb/>| <lb/>| <lb/>| NFS4ERR_FHEXPIRED, NFS4ERR_INVAL, <lb/>| <lb/>| <lb/>| NFS4ERR_IO, NFS4ERR_MOVED, <lb/>| <lb/>| <lb/>| NFS4ERR_NAMETOOLONG, NFS4ERR_NOENT, <lb/>| <lb/>| <lb/>| NFS4ERR_NOFILEHANDLE, NFS4ERR_NOTDIR, <lb/>| <lb/>| <lb/>| NFS4ERR_OP_NOT_IN_SESSION, <lb/>| <lb/>| <lb/>| NFS4ERR_REP_TOO_BIG, <lb/>| <lb/>| <lb/>| NFS4ERR_REP_TOO_BIG_TO_CACHE, <lb/>| <lb/>| <lb/>| NFS4ERR_REQ_TOO_BIG, <lb/>| <lb/>| <lb/>| NFS4ERR_RETRY_UNCACHED_REP, <lb/>| <lb/>| <lb/>| NFS4ERR_SERVERFAULT, NFS4ERR_STALE, <lb/>| <lb/>| <lb/>| NFS4ERR_SYMLINK, NFS4ERR_TOO_MANY_OPS, <lb/>| <lb/>| <lb/>| NFS4ERR_WRONGSEC <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| LOOKUPP <lb/>| NFS4ERR_ACCESS, NFS4ERR_DEADSESSION, <lb/>| <lb/>| <lb/>| NFS4ERR_DELAY, NFS4ERR_FHEXPIRED, <lb/>| <lb/>| <lb/>| NFS4ERR_IO, NFS4ERR_MOVED, NFS4ERR_NOENT, | <lb/>| <lb/>| NFS4ERR_NOFILEHANDLE, NFS4ERR_NOTDIR, <lb/>| <lb/>| <lb/>| NFS4ERR_OP_NOT_IN_SESSION, <lb/>| <lb/>| <lb/>| NFS4ERR_REP_TOO_BIG, <lb/>| <lb/>| <lb/>| NFS4ERR_REP_TOO_BIG_TO_CACHE, <lb/>| <lb/>| <lb/>| NFS4ERR_REQ_TOO_BIG, <lb/>| <lb/>| <lb/>| NFS4ERR_RETRY_UNCACHED_REP, <lb/>| <lb/>| <lb/>| NFS4ERR_SERVERFAULT, NFS4ERR_STALE, <lb/>| <lb/>| <lb/>| NFS4ERR_SYMLINK, NFS4ERR_TOO_MANY_OPS, <lb/>| <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 388] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>| <lb/>| NFS4ERR_WRONGSEC <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| NVERIFY <lb/>| NFS4ERR_ACCESS, NFS4ERR_ATTRNOTSUPP, <lb/>| <lb/>| <lb/>| NFS4ERR_BADCHAR, NFS4ERR_BADXDR, <lb/>| <lb/>| <lb/>| NFS4ERR_DEADSESSION, NFS4ERR_DELAY, <lb/>| <lb/>| <lb/>| NFS4ERR_FHEXPIRED, NFS4ERR_GRACE, <lb/>| <lb/>| <lb/>| NFS4ERR_INVAL, NFS4ERR_IO, NFS4ERR_MOVED, | <lb/>| <lb/>| NFS4ERR_NOFILEHANDLE, <lb/>| <lb/>| <lb/>| NFS4ERR_OP_NOT_IN_SESSION, <lb/>| <lb/>| <lb/>| NFS4ERR_REP_TOO_BIG, <lb/>| <lb/>| <lb/>| NFS4ERR_REP_TOO_BIG_TO_CACHE, <lb/>| <lb/>| <lb/>| NFS4ERR_REQ_TOO_BIG, <lb/>| <lb/>| <lb/>| NFS4ERR_RETRY_UNCACHED_REP, NFS4ERR_SAME, | <lb/>| <lb/>| NFS4ERR_SERVERFAULT, NFS4ERR_STALE, <lb/>| <lb/>| <lb/>| NFS4ERR_TOO_MANY_OPS, <lb/>| <lb/>| <lb/>| NFS4ERR_UNKNOWN_LAYOUTTYPE, <lb/>| <lb/>| <lb/>| NFS4ERR_WRONG_TYPE <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| OPEN <lb/>| NFS4ERR_ACCESS, NFS4ERR_ADMIN_REVOKED, <lb/>| <lb/>| <lb/>| NFS4ERR_ATTRNOTSUPP, NFS4ERR_BADCHAR, <lb/>| <lb/>| <lb/>| NFS4ERR_BADNAME, NFS4ERR_BADOWNER, <lb/>| <lb/>| <lb/>| NFS4ERR_BADXDR, NFS4ERR_BAD_STATEID, <lb/>| <lb/>| <lb/>| NFS4ERR_DEADSESSION, NFS4ERR_DELAY, <lb/>| <lb/>| <lb/>| NFS4ERR_DELEG_ALREADY_WANTED, <lb/>| <lb/>| <lb/>| NFS4ERR_DELEG_REVOKED, NFS4ERR_DQUOT, <lb/>| <lb/>| <lb/>| NFS4ERR_EXIST, NFS4ERR_EXPIRED, <lb/>| <lb/>| <lb/>| NFS4ERR_FBIG, NFS4ERR_FHEXPIRED, <lb/>| <lb/>| <lb/>| NFS4ERR_GRACE, NFS4ERR_INVAL, <lb/>| <lb/>| <lb/>| NFS4ERR_ISDIR, NFS4ERR_IO, NFS4ERR_MOVED, | <lb/>| <lb/>| NFS4ERR_NAMETOOLONG, NFS4ERR_NOENT, <lb/>| <lb/>| <lb/>| NFS4ERR_NOFILEHANDLE, NFS4ERR_NOSPC, <lb/>| <lb/>| <lb/>| NFS4ERR_NOTDIR, NFS4ERR_NO_GRACE, <lb/>| <lb/>| <lb/>| NFS4ERR_OLD_STATEID, <lb/>| <lb/>| <lb/>| NFS4ERR_OP_NOT_IN_SESSION, NFS4ERR_PERM, <lb/>| <lb/>| <lb/>| NFS4ERR_RECLAIM_BAD, <lb/>| <lb/>| <lb/>| NFS4ERR_RECLAIM_CONFLICT, <lb/>| <lb/>| <lb/>| NFS4ERR_REP_TOO_BIG, <lb/>| <lb/>| <lb/>| NFS4ERR_REP_TOO_BIG_TO_CACHE, <lb/>| <lb/>| <lb/>| NFS4ERR_REQ_TOO_BIG, <lb/>| <lb/>| <lb/>| NFS4ERR_RETRY_UNCACHED_REP, NFS4ERR_ROFS, | <lb/>| <lb/>| NFS4ERR_SERVERFAULT, NFS4ERR_SHARE_DENIED, | <lb/>| <lb/>| NFS4ERR_STALE, NFS4ERR_SYMLINK, <lb/>| <lb/>| <lb/>| NFS4ERR_TOO_MANY_OPS, <lb/>| <lb/>| <lb/>| NFS4ERR_UNSAFE_COMPOUND, NFS4ERR_WRONGSEC, | <lb/>| <lb/>| NFS4ERR_WRONG_TYPE <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| OPEN_CONFIRM <lb/>| NFS4ERR_NOTSUPP <lb/>| <lb/>| <lb/>| <lb/>| <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 389] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>| OPEN_DOWNGRADE <lb/>| NFS4ERR_ADMIN_REVOKED, NFS4ERR_BADXDR, <lb/>| <lb/>| <lb/>| NFS4ERR_BAD_STATEID, NFS4ERR_DEADSESSION, | <lb/>| <lb/>| NFS4ERR_DELAY, NFS4ERR_EXPIRED, <lb/>| <lb/>| <lb/>| NFS4ERR_FHEXPIRED, NFS4ERR_INVAL, <lb/>| <lb/>| <lb/>| NFS4ERR_MOVED, NFS4ERR_NOFILEHANDLE, <lb/>| <lb/>| <lb/>| NFS4ERR_OLD_STATEID, <lb/>| <lb/>| <lb/>| NFS4ERR_OP_NOT_IN_SESSION, <lb/>| <lb/>| <lb/>| NFS4ERR_REP_TOO_BIG, <lb/>| <lb/>| <lb/>| NFS4ERR_REP_TOO_BIG_TO_CACHE, <lb/>| <lb/>| <lb/>| NFS4ERR_REQ_TOO_BIG, <lb/>| <lb/>| <lb/>| NFS4ERR_RETRY_UNCACHED_REP, NFS4ERR_ROFS, | <lb/>| <lb/>| NFS4ERR_SERVERFAULT, NFS4ERR_STALE, <lb/>| <lb/>| <lb/>| NFS4ERR_TOO_MANY_OPS, NFS4ERR_WRONG_CRED <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| OPENATTR <lb/>| NFS4ERR_ACCESS, NFS4ERR_BADXDR, <lb/>| <lb/>| <lb/>| NFS4ERR_DEADSESSION, NFS4ERR_DELAY, <lb/>| <lb/>| <lb/>| NFS4ERR_DQUOT, NFS4ERR_FHEXPIRED, <lb/>| <lb/>| <lb/>| NFS4ERR_IO, NFS4ERR_MOVED, NFS4ERR_NOENT, | <lb/>| <lb/>| NFS4ERR_NOFILEHANDLE, NFS4ERR_NOSPC, <lb/>| <lb/>| <lb/>| NFS4ERR_NOTSUPP, <lb/>| <lb/>| <lb/>| NFS4ERR_OP_NOT_IN_SESSION, <lb/>| <lb/>| <lb/>| NFS4ERR_REP_TOO_BIG, <lb/>| <lb/>| <lb/>| NFS4ERR_REP_TOO_BIG_TO_CACHE, <lb/>| <lb/>| <lb/>| NFS4ERR_REQ_TOO_BIG, <lb/>| <lb/>| <lb/>| NFS4ERR_RETRY_UNCACHED_REP, NFS4ERR_ROFS, | <lb/>| <lb/>| NFS4ERR_SERVERFAULT, NFS4ERR_STALE, <lb/>| <lb/>| <lb/>| NFS4ERR_TOO_MANY_OPS, <lb/>| <lb/>| <lb/>| NFS4ERR_UNSAFE_COMPOUND, <lb/>| <lb/>| <lb/>| NFS4ERR_WRONG_TYPE <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| PUTFH <lb/>| NFS4ERR_BADHANDLE, NFS4ERR_BADXDR, <lb/>| <lb/>| <lb/>| NFS4ERR_DEADSESSION, NFS4ERR_DELAY, <lb/>| <lb/>| <lb/>| NFS4ERR_MOVED, NFS4ERR_OP_NOT_IN_SESSION, | <lb/>| <lb/>| NFS4ERR_REP_TOO_BIG, <lb/>| <lb/>| <lb/>| NFS4ERR_REP_TOO_BIG_TO_CACHE, <lb/>| <lb/>| <lb/>| NFS4ERR_REQ_TOO_BIG, <lb/>| <lb/>| <lb/>| NFS4ERR_RETRY_UNCACHED_REP, <lb/>| <lb/>| <lb/>| NFS4ERR_SERVERFAULT, NFS4ERR_STALE, <lb/>| <lb/>| <lb/>| NFS4ERR_TOO_MANY_OPS, NFS4ERR_WRONGSEC <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| PUTPUBFH <lb/>| NFS4ERR_DEADSESSION, NFS4ERR_DELAY, <lb/>| <lb/>| <lb/>| NFS4ERR_OP_NOT_IN_SESSION, <lb/>| <lb/>| <lb/>| NFS4ERR_REP_TOO_BIG, <lb/>| <lb/>| <lb/>| NFS4ERR_REP_TOO_BIG_TO_CACHE, <lb/>| <lb/>| <lb/>| NFS4ERR_REQ_TOO_BIG, <lb/>| <lb/>| <lb/>| NFS4ERR_RETRY_UNCACHED_REP, <lb/>| <lb/>| <lb/>| NFS4ERR_SERVERFAULT, NFS4ERR_TOO_MANY_OPS, | <lb/>| <lb/>| NFS4ERR_WRONGSEC <lb/>| <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 390] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>| <lb/>| <lb/>| <lb/>| PUTROOTFH <lb/>| NFS4ERR_DEADSESSION, NFS4ERR_DELAY, <lb/>| <lb/>| <lb/>| NFS4ERR_OP_NOT_IN_SESSION, <lb/>| <lb/>| <lb/>| NFS4ERR_REP_TOO_BIG, <lb/>| <lb/>| <lb/>| NFS4ERR_REP_TOO_BIG_TO_CACHE, <lb/>| <lb/>| <lb/>| NFS4ERR_REQ_TOO_BIG, <lb/>| <lb/>| <lb/>| NFS4ERR_RETRY_UNCACHED_REP, <lb/>| <lb/>| <lb/>| NFS4ERR_SERVERFAULT, NFS4ERR_TOO_MANY_OPS, | <lb/>| <lb/>| NFS4ERR_WRONGSEC <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| READ <lb/>| NFS4ERR_ACCESS, NFS4ERR_ADMIN_REVOKED, <lb/>| <lb/>| <lb/>| NFS4ERR_BADXDR, NFS4ERR_BAD_STATEID, <lb/>| <lb/>| <lb/>| NFS4ERR_DEADSESSION, NFS4ERR_DELAY, <lb/>| <lb/>| <lb/>| NFS4ERR_DELEG_REVOKED, NFS4ERR_EXPIRED, <lb/>| <lb/>| <lb/>| NFS4ERR_FHEXPIRED, NFS4ERR_GRACE, <lb/>| <lb/>| <lb/>| NFS4ERR_INVAL, NFS4ERR_ISDIR, NFS4ERR_IO, | <lb/>| <lb/>| NFS4ERR_LOCKED, NFS4ERR_MOVED, <lb/>| <lb/>| <lb/>| NFS4ERR_NOFILEHANDLE, NFS4ERR_OLD_STATEID, | <lb/>| <lb/>| NFS4ERR_OPENMODE, <lb/>| <lb/>| <lb/>| NFS4ERR_OP_NOT_IN_SESSION, <lb/>| <lb/>| <lb/>| NFS4ERR_PNFS_IO_HOLE, <lb/>| <lb/>| <lb/>| NFS4ERR_PNFS_NO_LAYOUT, <lb/>| <lb/>| <lb/>| NFS4ERR_REP_TOO_BIG, <lb/>| <lb/>| <lb/>| NFS4ERR_REP_TOO_BIG_TO_CACHE, <lb/>| <lb/>| <lb/>| NFS4ERR_REQ_TOO_BIG, <lb/>| <lb/>| <lb/>| NFS4ERR_RETRY_UNCACHED_REP, <lb/>| <lb/>| <lb/>| NFS4ERR_SERVERFAULT, NFS4ERR_STALE, <lb/>| <lb/>| <lb/>| NFS4ERR_SYMLINK, NFS4ERR_TOO_MANY_OPS, <lb/>| <lb/>| <lb/>| NFS4ERR_WRONG_TYPE <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| READDIR <lb/>| NFS4ERR_ACCESS, NFS4ERR_BADXDR, <lb/>| <lb/>| <lb/>| NFS4ERR_BAD_COOKIE, NFS4ERR_DEADSESSION, <lb/>| <lb/>| <lb/>| NFS4ERR_DELAY, NFS4ERR_FHEXPIRED, <lb/>| <lb/>| <lb/>| NFS4ERR_INVAL, NFS4ERR_IO, NFS4ERR_MOVED, | <lb/>| <lb/>| NFS4ERR_NOFILEHANDLE, NFS4ERR_NOTDIR, <lb/>| <lb/>| <lb/>| NFS4ERR_NOT_SAME, <lb/>| <lb/>| <lb/>| NFS4ERR_OP_NOT_IN_SESSION, <lb/>| <lb/>| <lb/>| NFS4ERR_REP_TOO_BIG, <lb/>| <lb/>| <lb/>| NFS4ERR_REP_TOO_BIG_TO_CACHE, <lb/>| <lb/>| <lb/>| NFS4ERR_REQ_TOO_BIG, <lb/>| <lb/>| <lb/>| NFS4ERR_RETRY_UNCACHED_REP, <lb/>| <lb/>| <lb/>| NFS4ERR_SERVERFAULT, NFS4ERR_STALE, <lb/>| <lb/>| <lb/>| NFS4ERR_TOOSMALL, NFS4ERR_TOO_MANY_OPS <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| READLINK <lb/>| NFS4ERR_ACCESS, NFS4ERR_DEADSESSION, <lb/>| <lb/>| <lb/>| NFS4ERR_DELAY, NFS4ERR_FHEXPIRED, <lb/>| <lb/>| <lb/>| NFS4ERR_INVAL, NFS4ERR_IO, NFS4ERR_MOVED, | <lb/>| <lb/>| NFS4ERR_NOFILEHANDLE, <lb/>| <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 391] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>| <lb/>| NFS4ERR_OP_NOT_IN_SESSION, <lb/>| <lb/>| <lb/>| NFS4ERR_REP_TOO_BIG, <lb/>| <lb/>| <lb/>| NFS4ERR_REP_TOO_BIG_TO_CACHE, <lb/>| <lb/>| <lb/>| NFS4ERR_REQ_TOO_BIG, <lb/>| <lb/>| <lb/>| NFS4ERR_RETRY_UNCACHED_REP, <lb/>| <lb/>| <lb/>| NFS4ERR_SERVERFAULT, NFS4ERR_STALE, <lb/>| <lb/>| <lb/>| NFS4ERR_TOO_MANY_OPS, NFS4ERR_WRONG_TYPE <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| RECLAIM_COMPLETE <lb/>| NFS4ERR_BADXDR, NFS4ERR_COMPLETE_ALREADY, | <lb/>| <lb/>| NFS4ERR_DEADSESSION, NFS4ERR_DELAY, <lb/>| <lb/>| <lb/>| NFS4ERR_FHEXPIRED, NFS4ERR_INVAL, <lb/>| <lb/>| <lb/>| NFS4ERR_MOVED, NFS4ERR_NOFILEHANDLE, <lb/>| <lb/>| <lb/>| NFS4ERR_OP_NOT_IN_SESSION, <lb/>| <lb/>| <lb/>| NFS4ERR_REP_TOO_BIG, <lb/>| <lb/>| <lb/>| NFS4ERR_REP_TOO_BIG_TO_CACHE, <lb/>| <lb/>| <lb/>| NFS4ERR_REQ_TOO_BIG, <lb/>| <lb/>| <lb/>| NFS4ERR_RETRY_UNCACHED_REP, <lb/>| <lb/>| <lb/>| NFS4ERR_SERVERFAULT, NFS4ERR_STALE, <lb/>| <lb/>| <lb/>| NFS4ERR_TOO_MANY_OPS, NFS4ERR_WRONG_CRED, | <lb/>| <lb/>| NFS4ERR_WRONG_TYPE <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| RELEASE_LOCKOWNER <lb/>| NFS4ERR_NOTSUPP <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| REMOVE <lb/>| NFS4ERR_ACCESS, NFS4ERR_BADCHAR, <lb/>| <lb/>| <lb/>| NFS4ERR_BADNAME, NFS4ERR_BADXDR, <lb/>| <lb/>| <lb/>| NFS4ERR_DEADSESSION, NFS4ERR_DELAY, <lb/>| <lb/>| <lb/>| NFS4ERR_FHEXPIRED, NFS4ERR_FILE_OPEN, <lb/>| <lb/>| <lb/>| NFS4ERR_GRACE, NFS4ERR_INVAL, NFS4ERR_IO, | <lb/>| <lb/>| NFS4ERR_MOVED, NFS4ERR_NAMETOOLONG, <lb/>| <lb/>| <lb/>| NFS4ERR_NOENT, NFS4ERR_NOFILEHANDLE, <lb/>| <lb/>| <lb/>| NFS4ERR_NOTDIR, NFS4ERR_NOTEMPTY, <lb/>| <lb/>| <lb/>| NFS4ERR_OP_NOT_IN_SESSION, <lb/>| <lb/>| <lb/>| NFS4ERR_REP_TOO_BIG, <lb/>| <lb/>| <lb/>| NFS4ERR_REP_TOO_BIG_TO_CACHE, <lb/>| <lb/>| <lb/>| NFS4ERR_REQ_TOO_BIG, <lb/>| <lb/>| <lb/>| NFS4ERR_RETRY_UNCACHED_REP, NFS4ERR_ROFS, | <lb/>| <lb/>| NFS4ERR_SERVERFAULT, NFS4ERR_STALE, <lb/>| <lb/>| <lb/>| NFS4ERR_TOO_MANY_OPS <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| RENAME <lb/>| NFS4ERR_ACCESS, NFS4ERR_BADCHAR, <lb/>| <lb/>| <lb/>| NFS4ERR_BADNAME, NFS4ERR_BADXDR, <lb/>| <lb/>| <lb/>| NFS4ERR_DEADSESSION, NFS4ERR_DELAY, <lb/>| <lb/>| <lb/>| NFS4ERR_DQUOT, NFS4ERR_EXIST, <lb/>| <lb/>| <lb/>| NFS4ERR_FHEXPIRED, NFS4ERR_FILE_OPEN, <lb/>| <lb/>| <lb/>| NFS4ERR_GRACE, NFS4ERR_INVAL, NFS4ERR_IO, | <lb/>| <lb/>| NFS4ERR_MLINK, NFS4ERR_MOVED, <lb/>| <lb/>| <lb/>| NFS4ERR_NAMETOOLONG, NFS4ERR_NOENT, <lb/>| <lb/>| <lb/>| NFS4ERR_NOFILEHANDLE, NFS4ERR_NOSPC, <lb/>| <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 392] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>| <lb/>| NFS4ERR_NOTDIR, NFS4ERR_NOTEMPTY, <lb/>| <lb/>| <lb/>| NFS4ERR_OP_NOT_IN_SESSION, <lb/>| <lb/>| <lb/>| NFS4ERR_REP_TOO_BIG, <lb/>| <lb/>| <lb/>| NFS4ERR_REP_TOO_BIG_TO_CACHE, <lb/>| <lb/>| <lb/>| NFS4ERR_REQ_TOO_BIG, <lb/>| <lb/>| <lb/>| NFS4ERR_RETRY_UNCACHED_REP, NFS4ERR_ROFS, | <lb/>| <lb/>| NFS4ERR_SERVERFAULT, NFS4ERR_STALE, <lb/>| <lb/>| <lb/>| NFS4ERR_TOO_MANY_OPS, NFS4ERR_WRONGSEC, <lb/>| <lb/>| <lb/>| NFS4ERR_XDEV <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| RENEW <lb/>| NFS4ERR_NOTSUPP <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| RESTOREFH <lb/>| NFS4ERR_DEADSESSION, NFS4ERR_FHEXPIRED, <lb/>| <lb/>| <lb/>| NFS4ERR_MOVED, NFS4ERR_NOFILEHANDLE, <lb/>| <lb/>| <lb/>| NFS4ERR_OP_NOT_IN_SESSION, <lb/>| <lb/>| <lb/>| NFS4ERR_REP_TOO_BIG, <lb/>| <lb/>| <lb/>| NFS4ERR_REP_TOO_BIG_TO_CACHE, <lb/>| <lb/>| <lb/>| NFS4ERR_REQ_TOO_BIG, <lb/>| <lb/>| <lb/>| NFS4ERR_RETRY_UNCACHED_REP, <lb/>| <lb/>| <lb/>| NFS4ERR_SERVERFAULT, NFS4ERR_STALE, <lb/>| <lb/>| <lb/>| NFS4ERR_TOO_MANY_OPS, NFS4ERR_WRONGSEC <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| SAVEFH <lb/>| NFS4ERR_DEADSESSION, NFS4ERR_FHEXPIRED, <lb/>| <lb/>| <lb/>| NFS4ERR_MOVED, NFS4ERR_NOFILEHANDLE, <lb/>| <lb/>| <lb/>| NFS4ERR_OP_NOT_IN_SESSION, <lb/>| <lb/>| <lb/>| NFS4ERR_REP_TOO_BIG, <lb/>| <lb/>| <lb/>| NFS4ERR_REP_TOO_BIG_TO_CACHE, <lb/>| <lb/>| <lb/>| NFS4ERR_REQ_TOO_BIG, <lb/>| <lb/>| <lb/>| NFS4ERR_RETRY_UNCACHED_REP, <lb/>| <lb/>| <lb/>| NFS4ERR_SERVERFAULT, NFS4ERR_STALE, <lb/>| <lb/>| <lb/>| NFS4ERR_TOO_MANY_OPS <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| SECINFO <lb/>| NFS4ERR_ACCESS, NFS4ERR_BADCHAR, <lb/>| <lb/>| <lb/>| NFS4ERR_BADNAME, NFS4ERR_BADXDR, <lb/>| <lb/>| <lb/>| NFS4ERR_DEADSESSION, NFS4ERR_DELAY, <lb/>| <lb/>| <lb/>| NFS4ERR_FHEXPIRED, NFS4ERR_INVAL, <lb/>| <lb/>| <lb/>| NFS4ERR_MOVED, NFS4ERR_NAMETOOLONG, <lb/>| <lb/>| <lb/>| NFS4ERR_NOENT, NFS4ERR_NOFILEHANDLE, <lb/>| <lb/>| <lb/>| NFS4ERR_NOTDIR, NFS4ERR_OP_NOT_IN_SESSION, | <lb/>| <lb/>| NFS4ERR_REP_TOO_BIG, <lb/>| <lb/>| <lb/>| NFS4ERR_REP_TOO_BIG_TO_CACHE, <lb/>| <lb/>| <lb/>| NFS4ERR_REQ_TOO_BIG, <lb/>| <lb/>| <lb/>| NFS4ERR_RETRY_UNCACHED_REP, <lb/>| <lb/>| <lb/>| NFS4ERR_SERVERFAULT, NFS4ERR_STALE, <lb/>| <lb/>| <lb/>| NFS4ERR_TOO_MANY_OPS <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| SECINFO_NO_NAME <lb/>| NFS4ERR_ACCESS, NFS4ERR_BADXDR, <lb/>| <lb/>| <lb/>| NFS4ERR_DEADSESSION, NFS4ERR_DELAY, <lb/>| <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 393] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>| <lb/>| NFS4ERR_FHEXPIRED, NFS4ERR_INVAL, <lb/>| <lb/>| <lb/>| NFS4ERR_MOVED, NFS4ERR_NOENT, <lb/>| <lb/>| <lb/>| NFS4ERR_NOFILEHANDLE, NFS4ERR_NOTDIR, <lb/>| <lb/>| <lb/>| NFS4ERR_NOTSUPP, <lb/>| <lb/>| <lb/>| NFS4ERR_OP_NOT_IN_SESSION, <lb/>| <lb/>| <lb/>| NFS4ERR_REP_TOO_BIG, <lb/>| <lb/>| <lb/>| NFS4ERR_REP_TOO_BIG_TO_CACHE, <lb/>| <lb/>| <lb/>| NFS4ERR_REQ_TOO_BIG, <lb/>| <lb/>| <lb/>| NFS4ERR_RETRY_UNCACHED_REP, <lb/>| <lb/>| <lb/>| NFS4ERR_SERVERFAULT, NFS4ERR_STALE, <lb/>| <lb/>| <lb/>| NFS4ERR_TOO_MANY_OPS <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| SEQUENCE <lb/>| NFS4ERR_BADSESSION, NFS4ERR_BADSLOT, <lb/>| <lb/>| <lb/>| NFS4ERR_BADXDR, NFS4ERR_BAD_HIGH_SLOT, <lb/>| <lb/>| <lb/>| NFS4ERR_CONN_NOT_BOUND_TO_SESSION, <lb/>| <lb/>| <lb/>| NFS4ERR_DEADSESSION, NFS4ERR_DELAY, <lb/>| <lb/>| <lb/>| NFS4ERR_REP_TOO_BIG, <lb/>| <lb/>| <lb/>| NFS4ERR_REP_TOO_BIG_TO_CACHE, <lb/>| <lb/>| <lb/>| NFS4ERR_REQ_TOO_BIG, <lb/>| <lb/>| <lb/>| NFS4ERR_RETRY_UNCACHED_REP, <lb/>| <lb/>| <lb/>| NFS4ERR_SEQUENCE_POS, <lb/>| <lb/>| <lb/>| NFS4ERR_SEQ_FALSE_RETRY, <lb/>| <lb/>| <lb/>| NFS4ERR_SEQ_MISORDERED, <lb/>| <lb/>| <lb/>| NFS4ERR_TOO_MANY_OPS <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| SET_SSV <lb/>| NFS4ERR_BADXDR, <lb/>| <lb/>| <lb/>| NFS4ERR_BAD_SESSION_DIGEST, <lb/>| <lb/>| <lb/>| NFS4ERR_DEADSESSION, NFS4ERR_DELAY, <lb/>| <lb/>| <lb/>| NFS4ERR_INVAL, NFS4ERR_OP_NOT_IN_SESSION, | <lb/>| <lb/>| NFS4ERR_REP_TOO_BIG, <lb/>| <lb/>| <lb/>| NFS4ERR_REP_TOO_BIG_TO_CACHE, <lb/>| <lb/>| <lb/>| NFS4ERR_REQ_TOO_BIG, <lb/>| <lb/>| <lb/>| NFS4ERR_RETRY_UNCACHED_REP, <lb/>| <lb/>| <lb/>| NFS4ERR_TOO_MANY_OPS <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| SETATTR <lb/>| NFS4ERR_ACCESS, NFS4ERR_ADMIN_REVOKED, <lb/>| <lb/>| <lb/>| NFS4ERR_ATTRNOTSUPP, NFS4ERR_BADCHAR, <lb/>| <lb/>| <lb/>| NFS4ERR_BADOWNER, NFS4ERR_BADXDR, <lb/>| <lb/>| <lb/>| NFS4ERR_BAD_STATEID, NFS4ERR_DEADSESSION, | <lb/>| <lb/>| NFS4ERR_DELAY, NFS4ERR_DELEG_REVOKED, <lb/>| <lb/>| <lb/>| NFS4ERR_DQUOT, NFS4ERR_EXPIRED, <lb/>| <lb/>| <lb/>| NFS4ERR_FBIG, NFS4ERR_FHEXPIRED, <lb/>| <lb/>| <lb/>| NFS4ERR_GRACE, NFS4ERR_INVAL, NFS4ERR_IO, | <lb/>| <lb/>| NFS4ERR_LOCKED, NFS4ERR_MOVED, <lb/>| <lb/>| <lb/>| NFS4ERR_NOFILEHANDLE, NFS4ERR_NOSPC, <lb/>| <lb/>| <lb/>| NFS4ERR_OLD_STATEID, NFS4ERR_OPENMODE, <lb/>| <lb/>| <lb/>| NFS4ERR_OP_NOT_IN_SESSION, NFS4ERR_PERM, <lb/>| <lb/>| <lb/>| NFS4ERR_REP_TOO_BIG, <lb/>| <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 394] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>| <lb/>| NFS4ERR_REP_TOO_BIG_TO_CACHE, <lb/>| <lb/>| <lb/>| NFS4ERR_REQ_TOO_BIG, <lb/>| <lb/>| <lb/>| NFS4ERR_RETRY_UNCACHED_REP, NFS4ERR_ROFS, | <lb/>| <lb/>| NFS4ERR_SERVERFAULT, NFS4ERR_STALE, <lb/>| <lb/>| <lb/>| NFS4ERR_TOO_MANY_OPS, <lb/>| <lb/>| <lb/>| NFS4ERR_UNKNOWN_LAYOUTTYPE, <lb/>| <lb/>| <lb/>| NFS4ERR_WRONG_TYPE <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| SETCLIENTID <lb/>| NFS4ERR_NOTSUPP <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| SETCLIENTID_CONFIRM | NFS4ERR_NOTSUPP <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| TEST_STATEID <lb/>| NFS4ERR_BADXDR, NFS4ERR_DEADSESSION, <lb/>| <lb/>| <lb/>| NFS4ERR_DELAY, NFS4ERR_OP_NOT_IN_SESSION, | <lb/>| <lb/>| NFS4ERR_REP_TOO_BIG, <lb/>| <lb/>| <lb/>| NFS4ERR_REP_TOO_BIG_TO_CACHE, <lb/>| <lb/>| <lb/>| NFS4ERR_REQ_TOO_BIG, <lb/>| <lb/>| <lb/>| NFS4ERR_RETRY_UNCACHED_REP, <lb/>| <lb/>| <lb/>| NFS4ERR_SERVERFAULT, NFS4ERR_TOO_MANY_OPS | <lb/>| <lb/>| <lb/>| <lb/>| VERIFY <lb/>| NFS4ERR_ACCESS, NFS4ERR_ATTRNOTSUPP, <lb/>| <lb/>| <lb/>| NFS4ERR_BADCHAR, NFS4ERR_BADXDR, <lb/>| <lb/>| <lb/>| NFS4ERR_DEADSESSION, NFS4ERR_DELAY, <lb/>| <lb/>| <lb/>| NFS4ERR_FHEXPIRED, NFS4ERR_GRACE, <lb/>| <lb/>| <lb/>| NFS4ERR_INVAL, NFS4ERR_IO, NFS4ERR_MOVED, | <lb/>| <lb/>| NFS4ERR_NOFILEHANDLE, NFS4ERR_NOT_SAME, <lb/>| <lb/>| <lb/>| NFS4ERR_OP_NOT_IN_SESSION, <lb/>| <lb/>| <lb/>| NFS4ERR_REP_TOO_BIG, <lb/>| <lb/>| <lb/>| NFS4ERR_REP_TOO_BIG_TO_CACHE, <lb/>| <lb/>| <lb/>| NFS4ERR_REQ_TOO_BIG, <lb/>| <lb/>| <lb/>| NFS4ERR_RETRY_UNCACHED_REP, <lb/>| <lb/>| <lb/>| NFS4ERR_SERVERFAULT, NFS4ERR_STALE, <lb/>| <lb/>| <lb/>| NFS4ERR_TOO_MANY_OPS, <lb/>| <lb/>| <lb/>| NFS4ERR_UNKNOWN_LAYOUTTYPE, <lb/>| <lb/>| <lb/>| NFS4ERR_WRONG_TYPE <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| WANT_DELEGATION <lb/>| NFS4ERR_BADXDR, NFS4ERR_DEADSESSION, <lb/>| <lb/>| <lb/>| NFS4ERR_DELAY, <lb/>| <lb/>| <lb/>| NFS4ERR_DELEG_ALREADY_WANTED, <lb/>| <lb/>| <lb/>| NFS4ERR_FHEXPIRED, NFS4ERR_GRACE, <lb/>| <lb/>| <lb/>| NFS4ERR_INVAL, NFS4ERR_IO, NFS4ERR_MOVED, | <lb/>| <lb/>| NFS4ERR_NOFILEHANDLE, NFS4ERR_NOTSUPP, <lb/>| <lb/>| <lb/>| NFS4ERR_NO_GRACE, <lb/>| <lb/>| <lb/>| NFS4ERR_OP_NOT_IN_SESSION, <lb/>| <lb/>| <lb/>| NFS4ERR_RECALLCONFLICT, <lb/>| <lb/>| <lb/>| NFS4ERR_RECLAIM_BAD, <lb/>| <lb/>| <lb/>| NFS4ERR_RECLAIM_CONFLICT, <lb/>| <lb/>| <lb/>| NFS4ERR_REP_TOO_BIG, <lb/>| <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 395] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>| <lb/>| NFS4ERR_REP_TOO_BIG_TO_CACHE, <lb/>| <lb/>| <lb/>| NFS4ERR_REQ_TOO_BIG, <lb/>| <lb/>| <lb/>| NFS4ERR_RETRY_UNCACHED_REP, <lb/>| <lb/>| <lb/>| NFS4ERR_SERVERFAULT, NFS4ERR_STALE, <lb/>| <lb/>| <lb/>| NFS4ERR_TOO_MANY_OPS, NFS4ERR_WRONG_TYPE <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| WRITE <lb/>| NFS4ERR_ACCESS, NFS4ERR_ADMIN_REVOKED, <lb/>| <lb/>| <lb/>| NFS4ERR_BADXDR, NFS4ERR_BAD_STATEID, <lb/>| <lb/>| <lb/>| NFS4ERR_DEADSESSION, NFS4ERR_DELAY, <lb/>| <lb/>| <lb/>| NFS4ERR_DELEG_REVOKED, NFS4ERR_DQUOT, <lb/>| <lb/>| <lb/>| NFS4ERR_EXPIRED, NFS4ERR_FBIG, <lb/>| <lb/>| <lb/>| NFS4ERR_FHEXPIRED, NFS4ERR_GRACE, <lb/>| <lb/>| <lb/>| NFS4ERR_INVAL, NFS4ERR_IO, NFS4ERR_ISDIR, | <lb/>| <lb/>| NFS4ERR_LOCKED, NFS4ERR_MOVED, <lb/>| <lb/>| <lb/>| NFS4ERR_NOFILEHANDLE, NFS4ERR_NOSPC, <lb/>| <lb/>| <lb/>| NFS4ERR_OLD_STATEID, NFS4ERR_OPENMODE, <lb/>| <lb/>| <lb/>| NFS4ERR_OP_NOT_IN_SESSION, <lb/>| <lb/>| <lb/>| NFS4ERR_PNFS_IO_HOLE, <lb/>| <lb/>| <lb/>| NFS4ERR_PNFS_NO_LAYOUT, <lb/>| <lb/>| <lb/>| NFS4ERR_REP_TOO_BIG, <lb/>| <lb/>| <lb/>| NFS4ERR_REP_TOO_BIG_TO_CACHE, <lb/>| <lb/>| <lb/>| NFS4ERR_REQ_TOO_BIG, <lb/>| <lb/>| <lb/>| NFS4ERR_RETRY_UNCACHED_REP, NFS4ERR_ROFS, | <lb/>| <lb/>| NFS4ERR_SERVERFAULT, NFS4ERR_STALE, <lb/>| <lb/>| <lb/>| NFS4ERR_SYMLINK, NFS4ERR_TOO_MANY_OPS, <lb/>| <lb/>| <lb/>| NFS4ERR_WRONG_TYPE <lb/>| <lb/>| <lb/>| <lb/>| <lb/>+----------------------+--------------------------------------------+ <lb/>Table 6 <lb/>15.3. Callback Operations and Their Valid Errors <lb/>This section contains a table that gives the valid error returns for <lb/>each callback operation. The error code NFS4_OK (indicating no <lb/>error) is not listed but should be understood to be returnable by all <lb/>callback operations with the exception of CB_ILLEGAL. <lb/>Valid Error Returns for Each Protocol Callback Operation <lb/>+-------------------------+-----------------------------------------+ <lb/>| Callback Operation <lb/>| Errors <lb/>| <lb/>+-------------------------+-----------------------------------------+ <lb/>| CB_GETATTR <lb/>| NFS4ERR_BADHANDLE, NFS4ERR_BADXDR, <lb/>| <lb/>| <lb/>| NFS4ERR_DELAY, NFS4ERR_INVAL, <lb/>| <lb/>| <lb/>| NFS4ERR_OP_NOT_IN_SESSION, <lb/>| <lb/>| <lb/>| NFS4ERR_REP_TOO_BIG, <lb/>| <lb/>| <lb/>| NFS4ERR_REP_TOO_BIG_TO_CACHE, <lb/>| <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 396] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>| <lb/>| NFS4ERR_REQ_TOO_BIG, <lb/>| <lb/>| <lb/>| NFS4ERR_RETRY_UNCACHED_REP, <lb/>| <lb/>| <lb/>| NFS4ERR_SERVERFAULT, <lb/>| <lb/>| <lb/>| NFS4ERR_TOO_MANY_OPS, <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| CB_ILLEGAL <lb/>| NFS4ERR_BADXDR, NFS4ERR_OP_ILLEGAL <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| CB_LAYOUTRECALL <lb/>| NFS4ERR_BADHANDLE, NFS4ERR_BADIOMODE, <lb/>| <lb/>| <lb/>| NFS4ERR_BADXDR, NFS4ERR_BAD_STATEID, <lb/>| <lb/>| <lb/>| NFS4ERR_DELAY, NFS4ERR_INVAL, <lb/>| <lb/>| <lb/>| NFS4ERR_NOMATCHING_LAYOUT, <lb/>| <lb/>| <lb/>| NFS4ERR_NOTSUPP, <lb/>| <lb/>| <lb/>| NFS4ERR_OP_NOT_IN_SESSION, <lb/>| <lb/>| <lb/>| NFS4ERR_REP_TOO_BIG, <lb/>| <lb/>| <lb/>| NFS4ERR_REP_TOO_BIG_TO_CACHE, <lb/>| <lb/>| <lb/>| NFS4ERR_REQ_TOO_BIG, <lb/>| <lb/>| <lb/>| NFS4ERR_RETRY_UNCACHED_REP, <lb/>| <lb/>| <lb/>| NFS4ERR_TOO_MANY_OPS, <lb/>| <lb/>| <lb/>| NFS4ERR_UNKNOWN_LAYOUTTYPE, <lb/>| <lb/>| <lb/>| NFS4ERR_WRONG_TYPE <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| CB_NOTIFY <lb/>| NFS4ERR_BADHANDLE, NFS4ERR_BADXDR, <lb/>| <lb/>| <lb/>| NFS4ERR_BAD_STATEID, NFS4ERR_DELAY, <lb/>| <lb/>| <lb/>| NFS4ERR_INVAL, NFS4ERR_NOTSUPP, <lb/>| <lb/>| <lb/>| NFS4ERR_OP_NOT_IN_SESSION, <lb/>| <lb/>| <lb/>| NFS4ERR_REP_TOO_BIG, <lb/>| <lb/>| <lb/>| NFS4ERR_REP_TOO_BIG_TO_CACHE, <lb/>| <lb/>| <lb/>| NFS4ERR_REQ_TOO_BIG, <lb/>| <lb/>| <lb/>| NFS4ERR_RETRY_UNCACHED_REP, <lb/>| <lb/>| <lb/>| NFS4ERR_SERVERFAULT, <lb/>| <lb/>| <lb/>| NFS4ERR_TOO_MANY_OPS <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| CB_NOTIFY_DEVICEID <lb/>| NFS4ERR_BADXDR, NFS4ERR_DELAY, <lb/>| <lb/>| <lb/>| NFS4ERR_INVAL, NFS4ERR_NOTSUPP, <lb/>| <lb/>| <lb/>| NFS4ERR_OP_NOT_IN_SESSION, <lb/>| <lb/>| <lb/>| NFS4ERR_REP_TOO_BIG, <lb/>| <lb/>| <lb/>| NFS4ERR_REP_TOO_BIG_TO_CACHE, <lb/>| <lb/>| <lb/>| NFS4ERR_REQ_TOO_BIG, <lb/>| <lb/>| <lb/>| NFS4ERR_RETRY_UNCACHED_REP, <lb/>| <lb/>| <lb/>| NFS4ERR_SERVERFAULT, <lb/>| <lb/>| <lb/>| NFS4ERR_TOO_MANY_OPS <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| CB_NOTIFY_LOCK <lb/>| NFS4ERR_BADHANDLE, NFS4ERR_BADXDR, <lb/>| <lb/>| <lb/>| NFS4ERR_BAD_STATEID, NFS4ERR_DELAY, <lb/>| <lb/>| <lb/>| NFS4ERR_NOTSUPP, <lb/>| <lb/>| <lb/>| NFS4ERR_OP_NOT_IN_SESSION, <lb/>| <lb/>| <lb/>| NFS4ERR_REP_TOO_BIG, <lb/>| <lb/>| <lb/>| NFS4ERR_REP_TOO_BIG_TO_CACHE, <lb/>| <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 397] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>| <lb/>| NFS4ERR_REQ_TOO_BIG, <lb/>| <lb/>| <lb/>| NFS4ERR_RETRY_UNCACHED_REP, <lb/>| <lb/>| <lb/>| NFS4ERR_SERVERFAULT, <lb/>| <lb/>| <lb/>| NFS4ERR_TOO_MANY_OPS <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| CB_PUSH_DELEG <lb/>| NFS4ERR_BADHANDLE, NFS4ERR_BADXDR, <lb/>| <lb/>| <lb/>| NFS4ERR_DELAY, NFS4ERR_INVAL, <lb/>| <lb/>| <lb/>| NFS4ERR_NOTSUPP, <lb/>| <lb/>| <lb/>| NFS4ERR_OP_NOT_IN_SESSION, <lb/>| <lb/>| <lb/>| NFS4ERR_REJECT_DELEG, <lb/>| <lb/>| <lb/>| NFS4ERR_REP_TOO_BIG, <lb/>| <lb/>| <lb/>| NFS4ERR_REP_TOO_BIG_TO_CACHE, <lb/>| <lb/>| <lb/>| NFS4ERR_REQ_TOO_BIG, <lb/>| <lb/>| <lb/>| NFS4ERR_RETRY_UNCACHED_REP, <lb/>| <lb/>| <lb/>| NFS4ERR_SERVERFAULT, <lb/>| <lb/>| <lb/>| NFS4ERR_TOO_MANY_OPS, <lb/>| <lb/>| <lb/>| NFS4ERR_WRONG_TYPE <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| CB_RECALL <lb/>| NFS4ERR_BADHANDLE, NFS4ERR_BADXDR, <lb/>| <lb/>| <lb/>| NFS4ERR_BAD_STATEID, NFS4ERR_DELAY, <lb/>| <lb/>| <lb/>| NFS4ERR_OP_NOT_IN_SESSION, <lb/>| <lb/>| <lb/>| NFS4ERR_REP_TOO_BIG, <lb/>| <lb/>| <lb/>| NFS4ERR_REP_TOO_BIG_TO_CACHE, <lb/>| <lb/>| <lb/>| NFS4ERR_REQ_TOO_BIG, <lb/>| <lb/>| <lb/>| NFS4ERR_RETRY_UNCACHED_REP, <lb/>| <lb/>| <lb/>| NFS4ERR_SERVERFAULT, <lb/>| <lb/>| <lb/>| NFS4ERR_TOO_MANY_OPS <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| CB_RECALL_ANY <lb/>| NFS4ERR_BADXDR, NFS4ERR_DELAY, <lb/>| <lb/>| <lb/>| NFS4ERR_INVAL, <lb/>| <lb/>| <lb/>| NFS4ERR_OP_NOT_IN_SESSION, <lb/>| <lb/>| <lb/>| NFS4ERR_REP_TOO_BIG, <lb/>| <lb/>| <lb/>| NFS4ERR_REP_TOO_BIG_TO_CACHE, <lb/>| <lb/>| <lb/>| NFS4ERR_REQ_TOO_BIG, <lb/>| <lb/>| <lb/>| NFS4ERR_RETRY_UNCACHED_REP, <lb/>| <lb/>| <lb/>| NFS4ERR_TOO_MANY_OPS <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| CB_RECALLABLE_OBJ_AVAIL | NFS4ERR_BADXDR, NFS4ERR_DELAY, <lb/>| <lb/>| <lb/>| NFS4ERR_INVAL, NFS4ERR_NOTSUPP, <lb/>| <lb/>| <lb/>| NFS4ERR_OP_NOT_IN_SESSION, <lb/>| <lb/>| <lb/>| NFS4ERR_REP_TOO_BIG, <lb/>| <lb/>| <lb/>| NFS4ERR_REP_TOO_BIG_TO_CACHE, <lb/>| <lb/>| <lb/>| NFS4ERR_REQ_TOO_BIG, <lb/>| <lb/>| <lb/>| NFS4ERR_RETRY_UNCACHED_REP, <lb/>| <lb/>| <lb/>| NFS4ERR_SERVERFAULT, <lb/>| <lb/>| <lb/>| NFS4ERR_TOO_MANY_OPS <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| CB_RECALL_SLOT <lb/>| NFS4ERR_BADXDR, NFS4ERR_BAD_HIGH_SLOT, | <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 398] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>| <lb/>| NFS4ERR_DELAY, <lb/>| <lb/>| <lb/>| NFS4ERR_OP_NOT_IN_SESSION, <lb/>| <lb/>| <lb/>| NFS4ERR_REP_TOO_BIG, <lb/>| <lb/>| <lb/>| NFS4ERR_REP_TOO_BIG_TO_CACHE, <lb/>| <lb/>| <lb/>| NFS4ERR_REQ_TOO_BIG, <lb/>| <lb/>| <lb/>| NFS4ERR_RETRY_UNCACHED_REP, <lb/>| <lb/>| <lb/>| NFS4ERR_TOO_MANY_OPS <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| CB_SEQUENCE <lb/>| NFS4ERR_BADSESSION, NFS4ERR_BADSLOT, <lb/>| <lb/>| <lb/>| NFS4ERR_BADXDR, NFS4ERR_BAD_HIGH_SLOT, | <lb/>| <lb/>| NFS4ERR_CONN_NOT_BOUND_TO_SESSION, <lb/>| <lb/>| <lb/>| NFS4ERR_DELAY, NFS4ERR_REP_TOO_BIG, <lb/>| <lb/>| <lb/>| NFS4ERR_REP_TOO_BIG_TO_CACHE, <lb/>| <lb/>| <lb/>| NFS4ERR_REQ_TOO_BIG, <lb/>| <lb/>| <lb/>| NFS4ERR_RETRY_UNCACHED_REP, <lb/>| <lb/>| <lb/>| NFS4ERR_SEQUENCE_POS, <lb/>| <lb/>| <lb/>| NFS4ERR_SEQ_FALSE_RETRY, <lb/>| <lb/>| <lb/>| NFS4ERR_SEQ_MISORDERED, <lb/>| <lb/>| <lb/>| NFS4ERR_TOO_MANY_OPS <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| CB_WANTS_CANCELLED <lb/>| NFS4ERR_BADXDR, NFS4ERR_DELAY, <lb/>| <lb/>| <lb/>| NFS4ERR_NOTSUPP, <lb/>| <lb/>| <lb/>| NFS4ERR_OP_NOT_IN_SESSION, <lb/>| <lb/>| <lb/>| NFS4ERR_REP_TOO_BIG, <lb/>| <lb/>| <lb/>| NFS4ERR_REP_TOO_BIG_TO_CACHE, <lb/>| <lb/>| <lb/>| NFS4ERR_REQ_TOO_BIG, <lb/>| <lb/>| <lb/>| NFS4ERR_RETRY_UNCACHED_REP, <lb/>| <lb/>| <lb/>| NFS4ERR_SERVERFAULT, <lb/>| <lb/>| <lb/>| NFS4ERR_TOO_MANY_OPS <lb/>| <lb/>| <lb/>| <lb/>| <lb/>+-------------------------+-----------------------------------------+ <lb/>Table 7 <lb/>15.4. Errors and the Operations That Use Them <lb/>+-----------------------------------+-------------------------------+ <lb/>| Error <lb/>| Operations <lb/>| <lb/>+-----------------------------------+-------------------------------+ <lb/>| NFS4ERR_ACCESS <lb/>| ACCESS, COMMIT, CREATE, <lb/>| <lb/>| <lb/>| GETATTR, GET_DIR_DELEGATION, | <lb/>| <lb/>| LAYOUTCOMMIT, LAYOUTGET, <lb/>| <lb/>| <lb/>| LINK, LOCK, LOCKT, LOCKU, <lb/>| <lb/>| <lb/>| LOOKUP, LOOKUPP, NVERIFY, <lb/>| <lb/>| <lb/>| OPEN, OPENATTR, READ, <lb/>| <lb/>| <lb/>| READDIR, READLINK, REMOVE, <lb/>| <lb/>| <lb/>| RENAME, SECINFO, <lb/>| <lb/>| <lb/>| SECINFO_NO_NAME, SETATTR, <lb/>| <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 399] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>| <lb/>| VERIFY, WRITE <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| NFS4ERR_ADMIN_REVOKED <lb/>| CLOSE, DELEGRETURN, <lb/>| <lb/>| <lb/>| LAYOUTCOMMIT, LAYOUTGET, <lb/>| <lb/>| <lb/>| LAYOUTRETURN, LOCK, LOCKU, <lb/>| <lb/>| <lb/>| OPEN, OPEN_DOWNGRADE, READ, <lb/>| <lb/>| <lb/>| SETATTR, WRITE <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| NFS4ERR_ATTRNOTSUPP <lb/>| CREATE, LAYOUTCOMMIT, <lb/>| <lb/>| <lb/>| NVERIFY, OPEN, SETATTR, <lb/>| <lb/>| <lb/>| VERIFY <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| NFS4ERR_BACK_CHAN_BUSY <lb/>| DESTROY_SESSION <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| NFS4ERR_BADCHAR <lb/>| CREATE, EXCHANGE_ID, LINK, <lb/>| <lb/>| <lb/>| LOOKUP, NVERIFY, OPEN, <lb/>| <lb/>| <lb/>| REMOVE, RENAME, SECINFO, <lb/>| <lb/>| <lb/>| SETATTR, VERIFY <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| NFS4ERR_BADHANDLE <lb/>| CB_GETATTR, CB_LAYOUTRECALL, | <lb/>| <lb/>| CB_NOTIFY, CB_NOTIFY_LOCK, <lb/>| <lb/>| <lb/>| CB_PUSH_DELEG, CB_RECALL, <lb/>| <lb/>| <lb/>| PUTFH <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| NFS4ERR_BADIOMODE <lb/>| CB_LAYOUTRECALL, <lb/>| <lb/>| <lb/>| LAYOUTCOMMIT, LAYOUTGET <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| NFS4ERR_BADLAYOUT <lb/>| LAYOUTCOMMIT, LAYOUTGET <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| NFS4ERR_BADNAME <lb/>| CREATE, LINK, LOOKUP, OPEN, <lb/>| <lb/>| <lb/>| REMOVE, RENAME, SECINFO <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| NFS4ERR_BADOWNER <lb/>| CREATE, OPEN, SETATTR <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| NFS4ERR_BADSESSION <lb/>| BIND_CONN_TO_SESSION, <lb/>| <lb/>| <lb/>| CB_SEQUENCE, DESTROY_SESSION, | <lb/>| <lb/>| SEQUENCE <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| NFS4ERR_BADSLOT <lb/>| CB_SEQUENCE, SEQUENCE <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| NFS4ERR_BADTYPE <lb/>| CREATE <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| NFS4ERR_BADXDR <lb/>| ACCESS, BACKCHANNEL_CTL, <lb/>| <lb/>| <lb/>| BIND_CONN_TO_SESSION, <lb/>| <lb/>| <lb/>| CB_GETATTR, CB_ILLEGAL, <lb/>| <lb/>| <lb/>| CB_LAYOUTRECALL, CB_NOTIFY, <lb/>| <lb/>| <lb/>| CB_NOTIFY_DEVICEID, <lb/>| <lb/>| <lb/>| CB_NOTIFY_LOCK, <lb/>| <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 400] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>| <lb/>| CB_PUSH_DELEG, CB_RECALL, <lb/>| <lb/>| <lb/>| CB_RECALLABLE_OBJ_AVAIL, <lb/>| <lb/>| <lb/>| CB_RECALL_ANY, <lb/>| <lb/>| <lb/>| CB_RECALL_SLOT, CB_SEQUENCE, | <lb/>| <lb/>| CB_WANTS_CANCELLED, CLOSE, <lb/>| <lb/>| <lb/>| COMMIT, CREATE, <lb/>| <lb/>| <lb/>| CREATE_SESSION, DELEGPURGE, <lb/>| <lb/>| <lb/>| DELEGRETURN, <lb/>| <lb/>| <lb/>| DESTROY_CLIENTID, <lb/>| <lb/>| <lb/>| DESTROY_SESSION, EXCHANGE_ID, | <lb/>| <lb/>| FREE_STATEID, GETATTR, <lb/>| <lb/>| <lb/>| GETDEVICEINFO, GETDEVICELIST, | <lb/>| <lb/>| GET_DIR_DELEGATION, ILLEGAL, | <lb/>| <lb/>| LAYOUTCOMMIT, LAYOUTGET, <lb/>| <lb/>| <lb/>| LAYOUTRETURN, LINK, LOCK, <lb/>| <lb/>| <lb/>| LOCKT, LOCKU, LOOKUP, <lb/>| <lb/>| <lb/>| NVERIFY, OPEN, OPENATTR, <lb/>| <lb/>| <lb/>| OPEN_DOWNGRADE, PUTFH, READ, | <lb/>| <lb/>| READDIR, RECLAIM_COMPLETE, <lb/>| <lb/>| <lb/>| REMOVE, RENAME, SECINFO, <lb/>| <lb/>| <lb/>| SECINFO_NO_NAME, SEQUENCE, <lb/>| <lb/>| <lb/>| SETATTR, SET_SSV, <lb/>| <lb/>| <lb/>| TEST_STATEID, VERIFY, <lb/>| <lb/>| <lb/>| WANT_DELEGATION, WRITE <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| NFS4ERR_BAD_COOKIE <lb/>| GETDEVICELIST, READDIR <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| NFS4ERR_BAD_HIGH_SLOT <lb/>| CB_RECALL_SLOT, CB_SEQUENCE, | <lb/>| <lb/>| SEQUENCE <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| NFS4ERR_BAD_RANGE <lb/>| LOCK, LOCKT, LOCKU <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| NFS4ERR_BAD_SESSION_DIGEST <lb/>| BIND_CONN_TO_SESSION, SET_SSV | <lb/>| <lb/>| <lb/>| <lb/>| NFS4ERR_BAD_STATEID <lb/>| CB_LAYOUTRECALL, CB_NOTIFY, <lb/>| <lb/>| <lb/>| CB_NOTIFY_LOCK, CB_RECALL, <lb/>| <lb/>| <lb/>| CLOSE, DELEGRETURN, <lb/>| <lb/>| <lb/>| FREE_STATEID, LAYOUTGET, <lb/>| <lb/>| <lb/>| LAYOUTRETURN, LOCK, LOCKU, <lb/>| <lb/>| <lb/>| OPEN, OPEN_DOWNGRADE, READ, <lb/>| <lb/>| <lb/>| SETATTR, WRITE <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| NFS4ERR_CB_PATH_DOWN <lb/>| DESTROY_SESSION <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| NFS4ERR_CLID_INUSE <lb/>| CREATE_SESSION, EXCHANGE_ID <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| NFS4ERR_CLIENTID_BUSY <lb/>| DESTROY_CLIENTID <lb/>| <lb/>| <lb/>| <lb/>| <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 401] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>| NFS4ERR_COMPLETE_ALREADY <lb/>| RECLAIM_COMPLETE <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| NFS4ERR_CONN_NOT_BOUND_TO_SESSION | CB_SEQUENCE, DESTROY_SESSION, | <lb/>| <lb/>| SEQUENCE <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| NFS4ERR_DEADLOCK <lb/>| LOCK <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| NFS4ERR_DEADSESSION <lb/>| ACCESS, BACKCHANNEL_CTL, <lb/>| <lb/>| <lb/>| BIND_CONN_TO_SESSION, CLOSE, | <lb/>| <lb/>| COMMIT, CREATE, <lb/>| <lb/>| <lb/>| CREATE_SESSION, DELEGPURGE, <lb/>| <lb/>| <lb/>| DELEGRETURN, <lb/>| <lb/>| <lb/>| DESTROY_CLIENTID, <lb/>| <lb/>| <lb/>| DESTROY_SESSION, EXCHANGE_ID, | <lb/>| <lb/>| FREE_STATEID, GETATTR, <lb/>| <lb/>| <lb/>| GETDEVICEINFO, GETDEVICELIST, | <lb/>| <lb/>| GET_DIR_DELEGATION, <lb/>| <lb/>| <lb/>| LAYOUTCOMMIT, LAYOUTGET, <lb/>| <lb/>| <lb/>| LAYOUTRETURN, LINK, LOCK, <lb/>| <lb/>| <lb/>| LOCKT, LOCKU, LOOKUP, <lb/>| <lb/>| <lb/>| LOOKUPP, NVERIFY, OPEN, <lb/>| <lb/>| <lb/>| OPENATTR, OPEN_DOWNGRADE, <lb/>| <lb/>| <lb/>| PUTFH, PUTPUBFH, PUTROOTFH, <lb/>| <lb/>| <lb/>| READ, READDIR, READLINK, <lb/>| <lb/>| <lb/>| RECLAIM_COMPLETE, REMOVE, <lb/>| <lb/>| <lb/>| RENAME, RESTOREFH, SAVEFH, <lb/>| <lb/>| <lb/>| SECINFO, SECINFO_NO_NAME, <lb/>| <lb/>| <lb/>| SEQUENCE, SETATTR, SET_SSV, <lb/>| <lb/>| <lb/>| TEST_STATEID, VERIFY, <lb/>| <lb/>| <lb/>| WANT_DELEGATION, WRITE <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| NFS4ERR_DELAY <lb/>| ACCESS, BACKCHANNEL_CTL, <lb/>| <lb/>| <lb/>| BIND_CONN_TO_SESSION, <lb/>| <lb/>| <lb/>| CB_GETATTR, CB_LAYOUTRECALL, | <lb/>| <lb/>| CB_NOTIFY, <lb/>| <lb/>| <lb/>| CB_NOTIFY_DEVICEID, <lb/>| <lb/>| <lb/>| CB_NOTIFY_LOCK, <lb/>| <lb/>| <lb/>| CB_PUSH_DELEG, CB_RECALL, <lb/>| <lb/>| <lb/>| CB_RECALLABLE_OBJ_AVAIL, <lb/>| <lb/>| <lb/>| CB_RECALL_ANY, <lb/>| <lb/>| <lb/>| CB_RECALL_SLOT, CB_SEQUENCE, | <lb/>| <lb/>| CB_WANTS_CANCELLED, CLOSE, <lb/>| <lb/>| <lb/>| COMMIT, CREATE, <lb/>| <lb/>| <lb/>| CREATE_SESSION, DELEGPURGE, <lb/>| <lb/>| <lb/>| DELEGRETURN, <lb/>| <lb/>| <lb/>| DESTROY_CLIENTID, <lb/>| <lb/>| <lb/>| DESTROY_SESSION, EXCHANGE_ID, | <lb/>| <lb/>| FREE_STATEID, GETATTR, <lb/>| <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 402] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>| <lb/>| GETDEVICEINFO, GETDEVICELIST, | <lb/>| <lb/>| GET_DIR_DELEGATION, <lb/>| <lb/>| <lb/>| LAYOUTCOMMIT, LAYOUTGET, <lb/>| <lb/>| <lb/>| LAYOUTRETURN, LINK, LOCK, <lb/>| <lb/>| <lb/>| LOCKT, LOCKU, LOOKUP, <lb/>| <lb/>| <lb/>| LOOKUPP, NVERIFY, OPEN, <lb/>| <lb/>| <lb/>| OPENATTR, OPEN_DOWNGRADE, <lb/>| <lb/>| <lb/>| PUTFH, PUTPUBFH, PUTROOTFH, <lb/>| <lb/>| <lb/>| READ, READDIR, READLINK, <lb/>| <lb/>| <lb/>| RECLAIM_COMPLETE, REMOVE, <lb/>| <lb/>| <lb/>| RENAME, SECINFO, <lb/>| <lb/>| <lb/>| SECINFO_NO_NAME, SEQUENCE, <lb/>| <lb/>| <lb/>| SETATTR, SET_SSV, <lb/>| <lb/>| <lb/>| TEST_STATEID, VERIFY, <lb/>| <lb/>| <lb/>| WANT_DELEGATION, WRITE <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| NFS4ERR_DELEG_ALREADY_WANTED <lb/>| OPEN, WANT_DELEGATION <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| NFS4ERR_DELEG_REVOKED <lb/>| DELEGRETURN, LAYOUTCOMMIT, <lb/>| <lb/>| <lb/>| LAYOUTGET, LAYOUTRETURN, <lb/>| <lb/>| <lb/>| OPEN, READ, SETATTR, WRITE <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| NFS4ERR_DENIED <lb/>| LOCK, LOCKT <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| NFS4ERR_DIRDELEG_UNAVAIL <lb/>| GET_DIR_DELEGATION <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| NFS4ERR_DQUOT <lb/>| CREATE, LAYOUTGET, LINK, <lb/>| <lb/>| <lb/>| OPEN, OPENATTR, RENAME, <lb/>| <lb/>| <lb/>| SETATTR, WRITE <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| NFS4ERR_ENCR_ALG_UNSUPP <lb/>| EXCHANGE_ID <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| NFS4ERR_EXIST <lb/>| CREATE, LINK, OPEN, RENAME <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| NFS4ERR_EXPIRED <lb/>| CLOSE, DELEGRETURN, <lb/>| <lb/>| <lb/>| LAYOUTCOMMIT, LAYOUTRETURN, <lb/>| <lb/>| <lb/>| LOCK, LOCKU, OPEN, <lb/>| <lb/>| <lb/>| OPEN_DOWNGRADE, READ, <lb/>| <lb/>| <lb/>| SETATTR, WRITE <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| NFS4ERR_FBIG <lb/>| LAYOUTCOMMIT, OPEN, SETATTR, | <lb/>| <lb/>| WRITE <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| NFS4ERR_FHEXPIRED <lb/>| ACCESS, CLOSE, COMMIT, <lb/>| <lb/>| <lb/>| CREATE, DELEGRETURN, GETATTR, | <lb/>| <lb/>| GETDEVICELIST, GETFH, <lb/>| <lb/>| <lb/>| GET_DIR_DELEGATION, <lb/>| <lb/>| <lb/>| LAYOUTCOMMIT, LAYOUTGET, <lb/>| <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 403] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>| <lb/>| LAYOUTRETURN, LINK, LOCK, <lb/>| <lb/>| <lb/>| LOCKT, LOCKU, LOOKUP, <lb/>| <lb/>| <lb/>| LOOKUPP, NVERIFY, OPEN, <lb/>| <lb/>| <lb/>| OPENATTR, OPEN_DOWNGRADE, <lb/>| <lb/>| <lb/>| READ, READDIR, READLINK, <lb/>| <lb/>| <lb/>| RECLAIM_COMPLETE, REMOVE, <lb/>| <lb/>| <lb/>| RENAME, RESTOREFH, SAVEFH, <lb/>| <lb/>| <lb/>| SECINFO, SECINFO_NO_NAME, <lb/>| <lb/>| <lb/>| SETATTR, VERIFY, <lb/>| <lb/>| <lb/>| WANT_DELEGATION, WRITE <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| NFS4ERR_FILE_OPEN <lb/>| LINK, REMOVE, RENAME <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| NFS4ERR_GRACE <lb/>| GETATTR, GET_DIR_DELEGATION, | <lb/>| <lb/>| LAYOUTCOMMIT, LAYOUTGET, <lb/>| <lb/>| <lb/>| LAYOUTRETURN, LINK, LOCK, <lb/>| <lb/>| <lb/>| LOCKT, NVERIFY, OPEN, READ, <lb/>| <lb/>| <lb/>| REMOVE, RENAME, SETATTR, <lb/>| <lb/>| <lb/>| VERIFY, WANT_DELEGATION, <lb/>| <lb/>| <lb/>| WRITE <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| NFS4ERR_HASH_ALG_UNSUPP <lb/>| EXCHANGE_ID <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| NFS4ERR_INVAL <lb/>| ACCESS, BACKCHANNEL_CTL, <lb/>| <lb/>| <lb/>| BIND_CONN_TO_SESSION, <lb/>| <lb/>| <lb/>| CB_GETATTR, CB_LAYOUTRECALL, | <lb/>| <lb/>| CB_NOTIFY, <lb/>| <lb/>| <lb/>| CB_NOTIFY_DEVICEID, <lb/>| <lb/>| <lb/>| CB_PUSH_DELEG, <lb/>| <lb/>| <lb/>| CB_RECALLABLE_OBJ_AVAIL, <lb/>| <lb/>| <lb/>| CB_RECALL_ANY, CREATE, <lb/>| <lb/>| <lb/>| CREATE_SESSION, DELEGRETURN, | <lb/>| <lb/>| EXCHANGE_ID, GETATTR, <lb/>| <lb/>| <lb/>| GETDEVICEINFO, GETDEVICELIST, | <lb/>| <lb/>| GET_DIR_DELEGATION, <lb/>| <lb/>| <lb/>| LAYOUTCOMMIT, LAYOUTGET, <lb/>| <lb/>| <lb/>| LAYOUTRETURN, LINK, LOCK, <lb/>| <lb/>| <lb/>| LOCKT, LOCKU, LOOKUP, <lb/>| <lb/>| <lb/>| NVERIFY, OPEN, <lb/>| <lb/>| <lb/>| OPEN_DOWNGRADE, READ, <lb/>| <lb/>| <lb/>| READDIR, READLINK, <lb/>| <lb/>| <lb/>| RECLAIM_COMPLETE, REMOVE, <lb/>| <lb/>| <lb/>| RENAME, SECINFO, <lb/>| <lb/>| <lb/>| SECINFO_NO_NAME, SETATTR, <lb/>| <lb/>| <lb/>| SET_SSV, VERIFY, <lb/>| <lb/>| <lb/>| WANT_DELEGATION, WRITE <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| NFS4ERR_IO <lb/>| ACCESS, COMMIT, CREATE, <lb/>| <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 404] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>| <lb/>| GETATTR, GETDEVICELIST, <lb/>| <lb/>| <lb/>| GET_DIR_DELEGATION, <lb/>| <lb/>| <lb/>| LAYOUTCOMMIT, LAYOUTGET, <lb/>| <lb/>| <lb/>| LINK, LOOKUP, LOOKUPP, <lb/>| <lb/>| <lb/>| NVERIFY, OPEN, OPENATTR, <lb/>| <lb/>| <lb/>| READ, READDIR, READLINK, <lb/>| <lb/>| <lb/>| REMOVE, RENAME, SETATTR, <lb/>| <lb/>| <lb/>| VERIFY, WANT_DELEGATION, <lb/>| <lb/>| <lb/>| WRITE <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| NFS4ERR_ISDIR <lb/>| COMMIT, LAYOUTCOMMIT, <lb/>| <lb/>| <lb/>| LAYOUTRETURN, LINK, LOCK, <lb/>| <lb/>| <lb/>| LOCKT, OPEN, READ, WRITE <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| NFS4ERR_LAYOUTTRYLATER <lb/>| LAYOUTGET <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| NFS4ERR_LAYOUTUNAVAILABLE <lb/>| LAYOUTGET <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| NFS4ERR_LOCKED <lb/>| LAYOUTGET, READ, SETATTR, <lb/>| <lb/>| <lb/>| WRITE <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| NFS4ERR_LOCKS_HELD <lb/>| CLOSE, FREE_STATEID <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| NFS4ERR_LOCK_NOTSUPP <lb/>| LOCK <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| NFS4ERR_LOCK_RANGE <lb/>| LOCK, LOCKT, LOCKU <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| NFS4ERR_MLINK <lb/>| CREATE, LINK, RENAME <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| NFS4ERR_MOVED <lb/>| ACCESS, CLOSE, COMMIT, <lb/>| <lb/>| <lb/>| CREATE, DELEGRETURN, GETATTR, | <lb/>| <lb/>| GETFH, GET_DIR_DELEGATION, <lb/>| <lb/>| <lb/>| LAYOUTCOMMIT, LAYOUTGET, <lb/>| <lb/>| <lb/>| LAYOUTRETURN, LINK, LOCK, <lb/>| <lb/>| <lb/>| LOCKT, LOCKU, LOOKUP, <lb/>| <lb/>| <lb/>| LOOKUPP, NVERIFY, OPEN, <lb/>| <lb/>| <lb/>| OPENATTR, OPEN_DOWNGRADE, <lb/>| <lb/>| <lb/>| PUTFH, READ, READDIR, <lb/>| <lb/>| <lb/>| READLINK, RECLAIM_COMPLETE, <lb/>| <lb/>| <lb/>| REMOVE, RENAME, RESTOREFH, <lb/>| <lb/>| <lb/>| SAVEFH, SECINFO, <lb/>| <lb/>| <lb/>| SECINFO_NO_NAME, SETATTR, <lb/>| <lb/>| <lb/>| VERIFY, WANT_DELEGATION, <lb/>| <lb/>| <lb/>| WRITE <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| NFS4ERR_NAMETOOLONG <lb/>| CREATE, LINK, LOOKUP, OPEN, <lb/>| <lb/>| <lb/>| REMOVE, RENAME, SECINFO <lb/>| <lb/>| <lb/>| <lb/>| <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 405] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>| NFS4ERR_NOENT <lb/>| BACKCHANNEL_CTL, <lb/>| <lb/>| <lb/>| CREATE_SESSION, EXCHANGE_ID, | <lb/>| <lb/>| GETDEVICEINFO, LOOKUP, <lb/>| <lb/>| <lb/>| LOOKUPP, OPEN, OPENATTR, <lb/>| <lb/>| <lb/>| REMOVE, RENAME, SECINFO, <lb/>| <lb/>| <lb/>| SECINFO_NO_NAME <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| NFS4ERR_NOFILEHANDLE <lb/>| ACCESS, CLOSE, COMMIT, <lb/>| <lb/>| <lb/>| CREATE, DELEGRETURN, GETATTR, | <lb/>| <lb/>| GETDEVICELIST, GETFH, <lb/>| <lb/>| <lb/>| GET_DIR_DELEGATION, <lb/>| <lb/>| <lb/>| LAYOUTCOMMIT, LAYOUTGET, <lb/>| <lb/>| <lb/>| LAYOUTRETURN, LINK, LOCK, <lb/>| <lb/>| <lb/>| LOCKT, LOCKU, LOOKUP, <lb/>| <lb/>| <lb/>| LOOKUPP, NVERIFY, OPEN, <lb/>| <lb/>| <lb/>| OPENATTR, OPEN_DOWNGRADE, <lb/>| <lb/>| <lb/>| READ, READDIR, READLINK, <lb/>| <lb/>| <lb/>| RECLAIM_COMPLETE, REMOVE, <lb/>| <lb/>| <lb/>| RENAME, RESTOREFH, SAVEFH, <lb/>| <lb/>| <lb/>| SECINFO, SECINFO_NO_NAME, <lb/>| <lb/>| <lb/>| SETATTR, VERIFY, <lb/>| <lb/>| <lb/>| WANT_DELEGATION, WRITE <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| NFS4ERR_NOMATCHING_LAYOUT <lb/>| CB_LAYOUTRECALL <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| NFS4ERR_NOSPC <lb/>| CREATE, CREATE_SESSION, <lb/>| <lb/>| <lb/>| LAYOUTGET, LINK, OPEN, <lb/>| <lb/>| <lb/>| OPENATTR, RENAME, SETATTR, <lb/>| <lb/>| <lb/>| WRITE <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| NFS4ERR_NOTDIR <lb/>| CREATE, GET_DIR_DELEGATION, <lb/>| <lb/>| <lb/>| LINK, LOOKUP, LOOKUPP, OPEN, | <lb/>| <lb/>| READDIR, REMOVE, RENAME, <lb/>| <lb/>| <lb/>| SECINFO, SECINFO_NO_NAME <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| NFS4ERR_NOTEMPTY <lb/>| REMOVE, RENAME <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| NFS4ERR_NOTSUPP <lb/>| CB_LAYOUTRECALL, CB_NOTIFY, <lb/>| <lb/>| <lb/>| CB_NOTIFY_DEVICEID, <lb/>| <lb/>| <lb/>| CB_NOTIFY_LOCK, <lb/>| <lb/>| <lb/>| CB_PUSH_DELEG, <lb/>| <lb/>| <lb/>| CB_RECALLABLE_OBJ_AVAIL, <lb/>| <lb/>| <lb/>| CB_WANTS_CANCELLED, <lb/>| <lb/>| <lb/>| DELEGPURGE, DELEGRETURN, <lb/>| <lb/>| <lb/>| GETDEVICEINFO, GETDEVICELIST, | <lb/>| <lb/>| GET_DIR_DELEGATION, <lb/>| <lb/>| <lb/>| LAYOUTCOMMIT, LAYOUTGET, <lb/>| <lb/>| <lb/>| LAYOUTRETURN, LINK, OPENATTR, | <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 406] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>| <lb/>| OPEN_CONFIRM, <lb/>| <lb/>| <lb/>| RELEASE_LOCKOWNER, RENEW, <lb/>| <lb/>| <lb/>| SECINFO_NO_NAME, SETCLIENTID, | <lb/>| <lb/>| SETCLIENTID_CONFIRM, <lb/>| <lb/>| <lb/>| WANT_DELEGATION <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| NFS4ERR_NOT_ONLY_OP <lb/>| BIND_CONN_TO_SESSION, <lb/>| <lb/>| <lb/>| CREATE_SESSION, <lb/>| <lb/>| <lb/>| DESTROY_CLIENTID, <lb/>| <lb/>| <lb/>| DESTROY_SESSION, EXCHANGE_ID | <lb/>| <lb/>| <lb/>| <lb/>| NFS4ERR_NOT_SAME <lb/>| EXCHANGE_ID, GETDEVICELIST, <lb/>| <lb/>| <lb/>| READDIR, VERIFY <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| NFS4ERR_NO_GRACE <lb/>| LAYOUTCOMMIT, LAYOUTRETURN, <lb/>| <lb/>| <lb/>| LOCK, OPEN, WANT_DELEGATION <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| NFS4ERR_OLD_STATEID <lb/>| CLOSE, DELEGRETURN, <lb/>| <lb/>| <lb/>| FREE_STATEID, LAYOUTGET, <lb/>| <lb/>| <lb/>| LAYOUTRETURN, LOCK, LOCKU, <lb/>| <lb/>| <lb/>| OPEN, OPEN_DOWNGRADE, READ, <lb/>| <lb/>| <lb/>| SETATTR, WRITE <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| NFS4ERR_OPENMODE <lb/>| LAYOUTGET, LOCK, READ, <lb/>| <lb/>| <lb/>| SETATTR, WRITE <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| NFS4ERR_OP_ILLEGAL <lb/>| CB_ILLEGAL, ILLEGAL <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| NFS4ERR_OP_NOT_IN_SESSION <lb/>| ACCESS, BACKCHANNEL_CTL, <lb/>| <lb/>| <lb/>| CB_GETATTR, CB_LAYOUTRECALL, | <lb/>| <lb/>| CB_NOTIFY, <lb/>| <lb/>| <lb/>| CB_NOTIFY_DEVICEID, <lb/>| <lb/>| <lb/>| CB_NOTIFY_LOCK, <lb/>| <lb/>| <lb/>| CB_PUSH_DELEG, CB_RECALL, <lb/>| <lb/>| <lb/>| CB_RECALLABLE_OBJ_AVAIL, <lb/>| <lb/>| <lb/>| CB_RECALL_ANY, <lb/>| <lb/>| <lb/>| CB_RECALL_SLOT, <lb/>| <lb/>| <lb/>| CB_WANTS_CANCELLED, CLOSE, <lb/>| <lb/>| <lb/>| COMMIT, CREATE, DELEGPURGE, <lb/>| <lb/>| <lb/>| DELEGRETURN, FREE_STATEID, <lb/>| <lb/>| <lb/>| GETATTR, GETDEVICEINFO, <lb/>| <lb/>| <lb/>| GETDEVICELIST, GETFH, <lb/>| <lb/>| <lb/>| GET_DIR_DELEGATION, <lb/>| <lb/>| <lb/>| LAYOUTCOMMIT, LAYOUTGET, <lb/>| <lb/>| <lb/>| LAYOUTRETURN, LINK, LOCK, <lb/>| <lb/>| <lb/>| LOCKT, LOCKU, LOOKUP, <lb/>| <lb/>| <lb/>| LOOKUPP, NVERIFY, OPEN, <lb/>| <lb/>| <lb/>| OPENATTR, OPEN_DOWNGRADE, <lb/>| <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 407] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>| <lb/>| PUTFH, PUTPUBFH, PUTROOTFH, <lb/>| <lb/>| <lb/>| READ, READDIR, READLINK, <lb/>| <lb/>| <lb/>| RECLAIM_COMPLETE, REMOVE, <lb/>| <lb/>| <lb/>| RENAME, RESTOREFH, SAVEFH, <lb/>| <lb/>| <lb/>| SECINFO, SECINFO_NO_NAME, <lb/>| <lb/>| <lb/>| SETATTR, SET_SSV, <lb/>| <lb/>| <lb/>| TEST_STATEID, VERIFY, <lb/>| <lb/>| <lb/>| WANT_DELEGATION, WRITE <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| NFS4ERR_PERM <lb/>| CREATE, OPEN, SETATTR <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| NFS4ERR_PNFS_IO_HOLE <lb/>| READ, WRITE <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| NFS4ERR_PNFS_NO_LAYOUT <lb/>| READ, WRITE <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| NFS4ERR_RECALLCONFLICT <lb/>| LAYOUTGET, WANT_DELEGATION <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| NFS4ERR_RECLAIM_BAD <lb/>| LAYOUTCOMMIT, LOCK, OPEN, <lb/>| <lb/>| <lb/>| WANT_DELEGATION <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| NFS4ERR_RECLAIM_CONFLICT <lb/>| LAYOUTCOMMIT, LOCK, OPEN, <lb/>| <lb/>| <lb/>| WANT_DELEGATION <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| NFS4ERR_REJECT_DELEG <lb/>| CB_PUSH_DELEG <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| NFS4ERR_REP_TOO_BIG <lb/>| ACCESS, BACKCHANNEL_CTL, <lb/>| <lb/>| <lb/>| BIND_CONN_TO_SESSION, <lb/>| <lb/>| <lb/>| CB_GETATTR, CB_LAYOUTRECALL, | <lb/>| <lb/>| CB_NOTIFY, <lb/>| <lb/>| <lb/>| CB_NOTIFY_DEVICEID, <lb/>| <lb/>| <lb/>| CB_NOTIFY_LOCK, <lb/>| <lb/>| <lb/>| CB_PUSH_DELEG, CB_RECALL, <lb/>| <lb/>| <lb/>| CB_RECALLABLE_OBJ_AVAIL, <lb/>| <lb/>| <lb/>| CB_RECALL_ANY, <lb/>| <lb/>| <lb/>| CB_RECALL_SLOT, CB_SEQUENCE, | <lb/>| <lb/>| CB_WANTS_CANCELLED, CLOSE, <lb/>| <lb/>| <lb/>| COMMIT, CREATE, <lb/>| <lb/>| <lb/>| CREATE_SESSION, DELEGPURGE, <lb/>| <lb/>| <lb/>| DELEGRETURN, <lb/>| <lb/>| <lb/>| DESTROY_CLIENTID, <lb/>| <lb/>| <lb/>| DESTROY_SESSION, EXCHANGE_ID, | <lb/>| <lb/>| FREE_STATEID, GETATTR, <lb/>| <lb/>| <lb/>| GETDEVICEINFO, GETDEVICELIST, | <lb/>| <lb/>| GET_DIR_DELEGATION, <lb/>| <lb/>| <lb/>| LAYOUTCOMMIT, LAYOUTGET, <lb/>| <lb/>| <lb/>| LAYOUTRETURN, LINK, LOCK, <lb/>| <lb/>| <lb/>| LOCKT, LOCKU, LOOKUP, <lb/>| <lb/>| <lb/>| LOOKUPP, NVERIFY, OPEN, <lb/>| <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 408] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>| <lb/>| OPENATTR, OPEN_DOWNGRADE, <lb/>| <lb/>| <lb/>| PUTFH, PUTPUBFH, PUTROOTFH, <lb/>| <lb/>| <lb/>| READ, READDIR, READLINK, <lb/>| <lb/>| <lb/>| RECLAIM_COMPLETE, REMOVE, <lb/>| <lb/>| <lb/>| RENAME, RESTOREFH, SAVEFH, <lb/>| <lb/>| <lb/>| SECINFO, SECINFO_NO_NAME, <lb/>| <lb/>| <lb/>| SEQUENCE, SETATTR, SET_SSV, <lb/>| <lb/>| <lb/>| TEST_STATEID, VERIFY, <lb/>| <lb/>| <lb/>| WANT_DELEGATION, WRITE <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| NFS4ERR_REP_TOO_BIG_TO_CACHE <lb/>| ACCESS, BACKCHANNEL_CTL, <lb/>| <lb/>| <lb/>| BIND_CONN_TO_SESSION, <lb/>| <lb/>| <lb/>| CB_GETATTR, CB_LAYOUTRECALL, | <lb/>| <lb/>| CB_NOTIFY, <lb/>| <lb/>| <lb/>| CB_NOTIFY_DEVICEID, <lb/>| <lb/>| <lb/>| CB_NOTIFY_LOCK, <lb/>| <lb/>| <lb/>| CB_PUSH_DELEG, CB_RECALL, <lb/>| <lb/>| <lb/>| CB_RECALLABLE_OBJ_AVAIL, <lb/>| <lb/>| <lb/>| CB_RECALL_ANY, <lb/>| <lb/>| <lb/>| CB_RECALL_SLOT, CB_SEQUENCE, | <lb/>| <lb/>| CB_WANTS_CANCELLED, CLOSE, <lb/>| <lb/>| <lb/>| COMMIT, CREATE, <lb/>| <lb/>| <lb/>| CREATE_SESSION, DELEGPURGE, <lb/>| <lb/>| <lb/>| DELEGRETURN, <lb/>| <lb/>| <lb/>| DESTROY_CLIENTID, <lb/>| <lb/>| <lb/>| DESTROY_SESSION, EXCHANGE_ID, | <lb/>| <lb/>| FREE_STATEID, GETATTR, <lb/>| <lb/>| <lb/>| GETDEVICEINFO, GETDEVICELIST, | <lb/>| <lb/>| GET_DIR_DELEGATION, <lb/>| <lb/>| <lb/>| LAYOUTCOMMIT, LAYOUTGET, <lb/>| <lb/>| <lb/>| LAYOUTRETURN, LINK, LOCK, <lb/>| <lb/>| <lb/>| LOCKT, LOCKU, LOOKUP, <lb/>| <lb/>| <lb/>| LOOKUPP, NVERIFY, OPEN, <lb/>| <lb/>| <lb/>| OPENATTR, OPEN_DOWNGRADE, <lb/>| <lb/>| <lb/>| PUTFH, PUTPUBFH, PUTROOTFH, <lb/>| <lb/>| <lb/>| READ, READDIR, READLINK, <lb/>| <lb/>| <lb/>| RECLAIM_COMPLETE, REMOVE, <lb/>| <lb/>| <lb/>| RENAME, RESTOREFH, SAVEFH, <lb/>| <lb/>| <lb/>| SECINFO, SECINFO_NO_NAME, <lb/>| <lb/>| <lb/>| SEQUENCE, SETATTR, SET_SSV, <lb/>| <lb/>| <lb/>| TEST_STATEID, VERIFY, <lb/>| <lb/>| <lb/>| WANT_DELEGATION, WRITE <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| NFS4ERR_REQ_TOO_BIG <lb/>| ACCESS, BACKCHANNEL_CTL, <lb/>| <lb/>| <lb/>| BIND_CONN_TO_SESSION, <lb/>| <lb/>| <lb/>| CB_GETATTR, CB_LAYOUTRECALL, | <lb/>| <lb/>| CB_NOTIFY, <lb/>| <lb/>| <lb/>| CB_NOTIFY_DEVICEID, <lb/>| <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 409] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>| <lb/>| CB_NOTIFY_LOCK, <lb/>| <lb/>| <lb/>| CB_PUSH_DELEG, CB_RECALL, <lb/>| <lb/>| <lb/>| CB_RECALLABLE_OBJ_AVAIL, <lb/>| <lb/>| <lb/>| CB_RECALL_ANY, <lb/>| <lb/>| <lb/>| CB_RECALL_SLOT, CB_SEQUENCE, | <lb/>| <lb/>| CB_WANTS_CANCELLED, CLOSE, <lb/>| <lb/>| <lb/>| COMMIT, CREATE, <lb/>| <lb/>| <lb/>| CREATE_SESSION, DELEGPURGE, <lb/>| <lb/>| <lb/>| DELEGRETURN, <lb/>| <lb/>| <lb/>| DESTROY_CLIENTID, <lb/>| <lb/>| <lb/>| DESTROY_SESSION, EXCHANGE_ID, | <lb/>| <lb/>| FREE_STATEID, GETATTR, <lb/>| <lb/>| <lb/>| GETDEVICEINFO, GETDEVICELIST, | <lb/>| <lb/>| GET_DIR_DELEGATION, <lb/>| <lb/>| <lb/>| LAYOUTCOMMIT, LAYOUTGET, <lb/>| <lb/>| <lb/>| LAYOUTRETURN, LINK, LOCK, <lb/>| <lb/>| <lb/>| LOCKT, LOCKU, LOOKUP, <lb/>| <lb/>| <lb/>| LOOKUPP, NVERIFY, OPEN, <lb/>| <lb/>| <lb/>| OPENATTR, OPEN_DOWNGRADE, <lb/>| <lb/>| <lb/>| PUTFH, PUTPUBFH, PUTROOTFH, <lb/>| <lb/>| <lb/>| READ, READDIR, READLINK, <lb/>| <lb/>| <lb/>| RECLAIM_COMPLETE, REMOVE, <lb/>| <lb/>| <lb/>| RENAME, RESTOREFH, SAVEFH, <lb/>| <lb/>| <lb/>| SECINFO, SECINFO_NO_NAME, <lb/>| <lb/>| <lb/>| SEQUENCE, SETATTR, SET_SSV, <lb/>| <lb/>| <lb/>| TEST_STATEID, VERIFY, <lb/>| <lb/>| <lb/>| WANT_DELEGATION, WRITE <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| NFS4ERR_RETRY_UNCACHED_REP <lb/>| ACCESS, BACKCHANNEL_CTL, <lb/>| <lb/>| <lb/>| BIND_CONN_TO_SESSION, <lb/>| <lb/>| <lb/>| CB_GETATTR, CB_LAYOUTRECALL, | <lb/>| <lb/>| CB_NOTIFY, <lb/>| <lb/>| <lb/>| CB_NOTIFY_DEVICEID, <lb/>| <lb/>| <lb/>| CB_NOTIFY_LOCK, <lb/>| <lb/>| <lb/>| CB_PUSH_DELEG, CB_RECALL, <lb/>| <lb/>| <lb/>| CB_RECALLABLE_OBJ_AVAIL, <lb/>| <lb/>| <lb/>| CB_RECALL_ANY, <lb/>| <lb/>| <lb/>| CB_RECALL_SLOT, CB_SEQUENCE, | <lb/>| <lb/>| CB_WANTS_CANCELLED, CLOSE, <lb/>| <lb/>| <lb/>| COMMIT, CREATE, <lb/>| <lb/>| <lb/>| CREATE_SESSION, DELEGPURGE, <lb/>| <lb/>| <lb/>| DELEGRETURN, <lb/>| <lb/>| <lb/>| DESTROY_CLIENTID, <lb/>| <lb/>| <lb/>| DESTROY_SESSION, EXCHANGE_ID, | <lb/>| <lb/>| FREE_STATEID, GETATTR, <lb/>| <lb/>| <lb/>| GETDEVICEINFO, GETDEVICELIST, | <lb/>| <lb/>| GET_DIR_DELEGATION, <lb/>| <lb/>| <lb/>| LAYOUTCOMMIT, LAYOUTGET, <lb/>| <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 410] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>| <lb/>| LAYOUTRETURN, LINK, LOCK, <lb/>| <lb/>| <lb/>| LOCKT, LOCKU, LOOKUP, <lb/>| <lb/>| <lb/>| LOOKUPP, NVERIFY, OPEN, <lb/>| <lb/>| <lb/>| OPENATTR, OPEN_DOWNGRADE, <lb/>| <lb/>| <lb/>| PUTFH, PUTPUBFH, PUTROOTFH, <lb/>| <lb/>| <lb/>| READ, READDIR, READLINK, <lb/>| <lb/>| <lb/>| RECLAIM_COMPLETE, REMOVE, <lb/>| <lb/>| <lb/>| RENAME, RESTOREFH, SAVEFH, <lb/>| <lb/>| <lb/>| SECINFO, SECINFO_NO_NAME, <lb/>| <lb/>| <lb/>| SEQUENCE, SETATTR, SET_SSV, <lb/>| <lb/>| <lb/>| TEST_STATEID, VERIFY, <lb/>| <lb/>| <lb/>| WANT_DELEGATION, WRITE <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| NFS4ERR_ROFS <lb/>| CREATE, LINK, LOCK, LOCKT, <lb/>| <lb/>| <lb/>| OPEN, OPENATTR, <lb/>| <lb/>| <lb/>| OPEN_DOWNGRADE, REMOVE, <lb/>| <lb/>| <lb/>| RENAME, SETATTR, WRITE <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| NFS4ERR_SAME <lb/>| NVERIFY <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| NFS4ERR_SEQUENCE_POS <lb/>| CB_SEQUENCE, SEQUENCE <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| NFS4ERR_SEQ_FALSE_RETRY <lb/>| CB_SEQUENCE, SEQUENCE <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| NFS4ERR_SEQ_MISORDERED <lb/>| CB_SEQUENCE, CREATE_SESSION, | <lb/>| <lb/>| SEQUENCE <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| NFS4ERR_SERVERFAULT <lb/>| ACCESS, BIND_CONN_TO_SESSION, | <lb/>| <lb/>| CB_GETATTR, CB_NOTIFY, <lb/>| <lb/>| <lb/>| CB_NOTIFY_DEVICEID, <lb/>| <lb/>| <lb/>| CB_NOTIFY_LOCK, <lb/>| <lb/>| <lb/>| CB_PUSH_DELEG, CB_RECALL, <lb/>| <lb/>| <lb/>| CB_RECALLABLE_OBJ_AVAIL, <lb/>| <lb/>| <lb/>| CB_WANTS_CANCELLED, CLOSE, <lb/>| <lb/>| <lb/>| COMMIT, CREATE, <lb/>| <lb/>| <lb/>| CREATE_SESSION, DELEGPURGE, <lb/>| <lb/>| <lb/>| DELEGRETURN, <lb/>| <lb/>| <lb/>| DESTROY_CLIENTID, <lb/>| <lb/>| <lb/>| DESTROY_SESSION, EXCHANGE_ID, | <lb/>| <lb/>| FREE_STATEID, GETATTR, <lb/>| <lb/>| <lb/>| GETDEVICEINFO, GETDEVICELIST, | <lb/>| <lb/>| GET_DIR_DELEGATION, <lb/>| <lb/>| <lb/>| LAYOUTCOMMIT, LAYOUTGET, <lb/>| <lb/>| <lb/>| LAYOUTRETURN, LINK, LOCK, <lb/>| <lb/>| <lb/>| LOCKU, LOOKUP, LOOKUPP, <lb/>| <lb/>| <lb/>| NVERIFY, OPEN, OPENATTR, <lb/>| <lb/>| <lb/>| OPEN_DOWNGRADE, PUTFH, <lb/>| <lb/>| <lb/>| PUTPUBFH, PUTROOTFH, READ, <lb/>| <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 411] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>| <lb/>| READDIR, READLINK, <lb/>| <lb/>| <lb/>| RECLAIM_COMPLETE, REMOVE, <lb/>| <lb/>| <lb/>| RENAME, RESTOREFH, SAVEFH, <lb/>| <lb/>| <lb/>| SECINFO, SECINFO_NO_NAME, <lb/>| <lb/>| <lb/>| SETATTR, TEST_STATEID, <lb/>| <lb/>| <lb/>| VERIFY, WANT_DELEGATION, <lb/>| <lb/>| <lb/>| WRITE <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| NFS4ERR_SHARE_DENIED <lb/>| OPEN <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| NFS4ERR_STALE <lb/>| ACCESS, CLOSE, COMMIT, <lb/>| <lb/>| <lb/>| CREATE, DELEGRETURN, GETATTR, | <lb/>| <lb/>| GETFH, GET_DIR_DELEGATION, <lb/>| <lb/>| <lb/>| LAYOUTCOMMIT, LAYOUTGET, <lb/>| <lb/>| <lb/>| LAYOUTRETURN, LINK, LOCK, <lb/>| <lb/>| <lb/>| LOCKT, LOCKU, LOOKUP, <lb/>| <lb/>| <lb/>| LOOKUPP, NVERIFY, OPEN, <lb/>| <lb/>| <lb/>| OPENATTR, OPEN_DOWNGRADE, <lb/>| <lb/>| <lb/>| PUTFH, READ, READDIR, <lb/>| <lb/>| <lb/>| READLINK, RECLAIM_COMPLETE, <lb/>| <lb/>| <lb/>| REMOVE, RENAME, RESTOREFH, <lb/>| <lb/>| <lb/>| SAVEFH, SECINFO, <lb/>| <lb/>| <lb/>| SECINFO_NO_NAME, SETATTR, <lb/>| <lb/>| <lb/>| VERIFY, WANT_DELEGATION, <lb/>| <lb/>| <lb/>| WRITE <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| NFS4ERR_STALE_CLIENTID <lb/>| CREATE_SESSION, <lb/>| <lb/>| <lb/>| DESTROY_CLIENTID, <lb/>| <lb/>| <lb/>| DESTROY_SESSION <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| NFS4ERR_SYMLINK <lb/>| COMMIT, LAYOUTCOMMIT, LINK, <lb/>| <lb/>| <lb/>| LOCK, LOCKT, LOOKUP, LOOKUPP, | <lb/>| <lb/>| OPEN, READ, WRITE <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| NFS4ERR_TOOSMALL <lb/>| CREATE_SESSION, <lb/>| <lb/>| <lb/>| GETDEVICEINFO, LAYOUTGET, <lb/>| <lb/>| <lb/>| READDIR <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| NFS4ERR_TOO_MANY_OPS <lb/>| ACCESS, BACKCHANNEL_CTL, <lb/>| <lb/>| <lb/>| BIND_CONN_TO_SESSION, <lb/>| <lb/>| <lb/>| CB_GETATTR, CB_LAYOUTRECALL, | <lb/>| <lb/>| CB_NOTIFY, <lb/>| <lb/>| <lb/>| CB_NOTIFY_DEVICEID, <lb/>| <lb/>| <lb/>| CB_NOTIFY_LOCK, <lb/>| <lb/>| <lb/>| CB_PUSH_DELEG, CB_RECALL, <lb/>| <lb/>| <lb/>| CB_RECALLABLE_OBJ_AVAIL, <lb/>| <lb/>| <lb/>| CB_RECALL_ANY, <lb/>| <lb/>| <lb/>| CB_RECALL_SLOT, CB_SEQUENCE, | <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 412] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>| <lb/>| CB_WANTS_CANCELLED, CLOSE, <lb/>| <lb/>| <lb/>| COMMIT, CREATE, <lb/>| <lb/>| <lb/>| CREATE_SESSION, DELEGPURGE, <lb/>| <lb/>| <lb/>| DELEGRETURN, <lb/>| <lb/>| <lb/>| DESTROY_CLIENTID, <lb/>| <lb/>| <lb/>| DESTROY_SESSION, EXCHANGE_ID, | <lb/>| <lb/>| FREE_STATEID, GETATTR, <lb/>| <lb/>| <lb/>| GETDEVICEINFO, GETDEVICELIST, | <lb/>| <lb/>| GET_DIR_DELEGATION, <lb/>| <lb/>| <lb/>| LAYOUTCOMMIT, LAYOUTGET, <lb/>| <lb/>| <lb/>| LAYOUTRETURN, LINK, LOCK, <lb/>| <lb/>| <lb/>| LOCKT, LOCKU, LOOKUP, <lb/>| <lb/>| <lb/>| LOOKUPP, NVERIFY, OPEN, <lb/>| <lb/>| <lb/>| OPENATTR, OPEN_DOWNGRADE, <lb/>| <lb/>| <lb/>| PUTFH, PUTPUBFH, PUTROOTFH, <lb/>| <lb/>| <lb/>| READ, READDIR, READLINK, <lb/>| <lb/>| <lb/>| RECLAIM_COMPLETE, REMOVE, <lb/>| <lb/>| <lb/>| RENAME, RESTOREFH, SAVEFH, <lb/>| <lb/>| <lb/>| SECINFO, SECINFO_NO_NAME, <lb/>| <lb/>| <lb/>| SEQUENCE, SETATTR, SET_SSV, <lb/>| <lb/>| <lb/>| TEST_STATEID, VERIFY, <lb/>| <lb/>| <lb/>| WANT_DELEGATION, WRITE <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| NFS4ERR_UNKNOWN_LAYOUTTYPE <lb/>| CB_LAYOUTRECALL, <lb/>| <lb/>| <lb/>| GETDEVICEINFO, GETDEVICELIST, | <lb/>| <lb/>| LAYOUTCOMMIT, LAYOUTGET, <lb/>| <lb/>| <lb/>| LAYOUTRETURN, NVERIFY, <lb/>| <lb/>| <lb/>| SETATTR, VERIFY <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| NFS4ERR_UNSAFE_COMPOUND <lb/>| CREATE, OPEN, OPENATTR <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| NFS4ERR_WRONGSEC <lb/>| LINK, LOOKUP, LOOKUPP, OPEN, | <lb/>| <lb/>| PUTFH, PUTPUBFH, PUTROOTFH, <lb/>| <lb/>| <lb/>| RENAME, RESTOREFH <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| NFS4ERR_WRONG_CRED <lb/>| CLOSE, CREATE_SESSION, <lb/>| <lb/>| <lb/>| DELEGPURGE, DELEGRETURN, <lb/>| <lb/>| <lb/>| DESTROY_CLIENTID, <lb/>| <lb/>| <lb/>| DESTROY_SESSION, <lb/>| <lb/>| <lb/>| FREE_STATEID, LAYOUTCOMMIT, <lb/>| <lb/>| <lb/>| LAYOUTRETURN, LOCK, LOCKT, <lb/>| <lb/>| <lb/>| LOCKU, OPEN_DOWNGRADE, <lb/>| <lb/>| <lb/>| RECLAIM_COMPLETE <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| NFS4ERR_WRONG_TYPE <lb/>| CB_LAYOUTRECALL, <lb/>| <lb/>| <lb/>| CB_PUSH_DELEG, COMMIT, <lb/>| <lb/>| <lb/>| GETATTR, LAYOUTGET, <lb/>| <lb/>| <lb/>| LAYOUTRETURN, LINK, LOCK, <lb/>| <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 413] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>| <lb/>| LOCKT, NVERIFY, OPEN, <lb/>| <lb/>| <lb/>| OPENATTR, READ, READLINK, <lb/>| <lb/>| <lb/>| RECLAIM_COMPLETE, SETATTR, <lb/>| <lb/>| <lb/>| VERIFY, WANT_DELEGATION, <lb/>| <lb/>| <lb/>| WRITE <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| NFS4ERR_XDEV <lb/>| LINK, RENAME <lb/>| <lb/>| <lb/>| <lb/>| <lb/>+-----------------------------------+-------------------------------+ <lb/>Table 8 <lb/>16. NFSv4.1 Procedures <lb/>Both procedures, NULL and COMPOUND, MUST be implemented. <lb/>16.1. Procedure 0: NULL -No Operation <lb/>16.1.1. ARGUMENTS <lb/>void; <lb/>16.1.2. RESULTS <lb/>void; <lb/>16.1.3. DESCRIPTION <lb/>This is the standard NULL procedure with the standard void argument <lb/>and void response. This procedure has no functionality associated <lb/>with it. Because of this, it is sometimes used to measure the <lb/>overhead of processing a service request. Therefore, the server <lb/>SHOULD ensure that no unnecessary work is done in servicing this <lb/>procedure. <lb/>16.1.4. ERRORS <lb/>None. <lb/>16.2. Procedure 1: COMPOUND -Compound Operations <lb/>16.2.1. ARGUMENTS <lb/>enum nfs_opnum4 { <lb/>OP_ACCESS <lb/>= 3, <lb/>OP_CLOSE <lb/>= 4, <lb/>OP_COMMIT <lb/>= 5, <lb/>OP_CREATE <lb/>= 6, <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 414] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>OP_DELEGPURGE <lb/>= 7, <lb/>OP_DELEGRETURN <lb/>= 8, <lb/>OP_GETATTR <lb/>= 9, <lb/>OP_GETFH <lb/>= 10, <lb/>OP_LINK <lb/>= 11, <lb/>OP_LOCK <lb/>= 12, <lb/>OP_LOCKT <lb/>= 13, <lb/>OP_LOCKU <lb/>= 14, <lb/>OP_LOOKUP <lb/>= 15, <lb/>OP_LOOKUPP <lb/>= 16, <lb/>OP_NVERIFY <lb/>= 17, <lb/>OP_OPEN <lb/>= 18, <lb/>OP_OPENATTR <lb/>= 19, <lb/>OP_OPEN_CONFIRM <lb/>= 20, /* Mandatory not-to-implement */ <lb/>OP_OPEN_DOWNGRADE <lb/>= 21, <lb/>OP_PUTFH <lb/>= 22, <lb/>OP_PUTPUBFH <lb/>= 23, <lb/>OP_PUTROOTFH <lb/>= 24, <lb/>OP_READ <lb/>= 25, <lb/>OP_READDIR <lb/>= 26, <lb/>OP_READLINK <lb/>= 27, <lb/>OP_REMOVE <lb/>= 28, <lb/>OP_RENAME <lb/>= 29, <lb/>OP_RENEW <lb/>= 30, /* Mandatory not-to-implement */ <lb/>OP_RESTOREFH <lb/>= 31, <lb/>OP_SAVEFH <lb/>= 32, <lb/>OP_SECINFO <lb/>= 33, <lb/>OP_SETATTR <lb/>= 34, <lb/>OP_SETCLIENTID <lb/>= 35, /* Mandatory not-to-implement */ <lb/>OP_SETCLIENTID_CONFIRM = 36, /* Mandatory not-to-implement */ <lb/>OP_VERIFY <lb/>= 37, <lb/>OP_WRITE <lb/>= 38, <lb/>OP_RELEASE_LOCKOWNER <lb/>= 39, /* Mandatory not-to-implement */ <lb/>/* new operations for NFSv4.1 */ <lb/>OP_BACKCHANNEL_CTL <lb/>= 40, <lb/>OP_BIND_CONN_TO_SESSION = 41, <lb/>OP_EXCHANGE_ID <lb/>= 42, <lb/>OP_CREATE_SESSION <lb/>= 43, <lb/>OP_DESTROY_SESSION <lb/>= 44, <lb/>OP_FREE_STATEID <lb/>= 45, <lb/>OP_GET_DIR_DELEGATION = 46, <lb/>OP_GETDEVICEINFO <lb/>= 47, <lb/>OP_GETDEVICELIST <lb/>= 48, <lb/>OP_LAYOUTCOMMIT <lb/>= 49, <lb/>OP_LAYOUTGET <lb/>= 50, <lb/>OP_LAYOUTRETURN <lb/>= 51, <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 415] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>OP_SECINFO_NO_NAME <lb/>= 52, <lb/>OP_SEQUENCE <lb/>= 53, <lb/>OP_SET_SSV <lb/>= 54, <lb/>OP_TEST_STATEID <lb/>= 55, <lb/>OP_WANT_DELEGATION <lb/>= 56, <lb/>OP_DESTROY_CLIENTID <lb/>= 57, <lb/>OP_RECLAIM_COMPLETE <lb/>= 58, <lb/>OP_ILLEGAL <lb/>= 10044 <lb/>}; <lb/>union nfs_argop4 switch (nfs_opnum4 argop) { <lb/>case OP_ACCESS: <lb/>ACCESS4args opaccess; <lb/>case OP_CLOSE: <lb/>CLOSE4args opclose; <lb/>case OP_COMMIT: <lb/>COMMIT4args opcommit; <lb/>case OP_CREATE: <lb/>CREATE4args opcreate; <lb/>case OP_DELEGPURGE: <lb/>DELEGPURGE4args opdelegpurge; <lb/>case OP_DELEGRETURN: <lb/>DELEGRETURN4args opdelegreturn; <lb/>case OP_GETATTR: <lb/>GETATTR4args opgetattr; <lb/>case OP_GETFH: <lb/>void; <lb/>case OP_LINK: <lb/>LINK4args oplink; <lb/>case OP_LOCK: <lb/>LOCK4args oplock; <lb/>case OP_LOCKT: <lb/>LOCKT4args oplockt; <lb/>case OP_LOCKU: <lb/>LOCKU4args oplocku; <lb/>case OP_LOOKUP: <lb/>LOOKUP4args oplookup; <lb/>case OP_LOOKUPP: <lb/>void; <lb/>case OP_NVERIFY: <lb/>NVERIFY4args opnverify; <lb/>case OP_OPEN: <lb/>OPEN4args opopen; <lb/>case OP_OPENATTR: <lb/>OPENATTR4args opopenattr; <lb/>/* Not for NFSv4.1 */ <lb/>case OP_OPEN_CONFIRM: OPEN_CONFIRM4args opopen_confirm; <lb/>case OP_OPEN_DOWNGRADE: <lb/>OPEN_DOWNGRADE4args opopen_downgrade; <lb/>case OP_PUTFH: <lb/>PUTFH4args opputfh; <lb/>case OP_PUTPUBFH: <lb/>void; <lb/>case OP_PUTROOTFH: <lb/>void; <lb/>case OP_READ: <lb/>READ4args opread; <lb/>case OP_READDIR: <lb/>READDIR4args opreaddir; <lb/>case OP_READLINK: <lb/>void; <lb/>case OP_REMOVE: <lb/>REMOVE4args opremove; <lb/>case OP_RENAME: <lb/>RENAME4args oprename; <lb/>/* Not for NFSv4.1 */ <lb/>case OP_RENEW: <lb/>RENEW4args oprenew; <lb/>case OP_RESTOREFH: <lb/>void; <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 416] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>case OP_SAVEFH: <lb/>void; <lb/>case OP_SECINFO: <lb/>SECINFO4args opsecinfo; <lb/>case OP_SETATTR: <lb/>SETATTR4args opsetattr; <lb/>/* Not for NFSv4.1 */ <lb/>case OP_SETCLIENTID: SETCLIENTID4args opsetclientid; <lb/>/* Not for NFSv4.1 */ <lb/>case OP_SETCLIENTID_CONFIRM: SETCLIENTID_CONFIRM4args <lb/>opsetclientid_confirm; <lb/>case OP_VERIFY: <lb/>VERIFY4args opverify; <lb/>case OP_WRITE: <lb/>WRITE4args opwrite; <lb/>/* Not for NFSv4.1 */ <lb/>case OP_RELEASE_LOCKOWNER: <lb/>RELEASE_LOCKOWNER4args <lb/>oprelease_lockowner; <lb/>/* Operations new to NFSv4.1 */ <lb/>case OP_BACKCHANNEL_CTL: <lb/>BACKCHANNEL_CTL4args opbackchannel_ctl; <lb/>case OP_BIND_CONN_TO_SESSION: <lb/>BIND_CONN_TO_SESSION4args <lb/>opbind_conn_to_session; <lb/>case OP_EXCHANGE_ID: <lb/>EXCHANGE_ID4args opexchange_id; <lb/>case OP_CREATE_SESSION: <lb/>CREATE_SESSION4args opcreate_session; <lb/>case OP_DESTROY_SESSION: <lb/>DESTROY_SESSION4args opdestroy_session; <lb/>case OP_FREE_STATEID: FREE_STATEID4args opfree_stateid; <lb/>case OP_GET_DIR_DELEGATION: <lb/>GET_DIR_DELEGATION4args <lb/>opget_dir_delegation; <lb/>case OP_GETDEVICEINFO: GETDEVICEINFO4args opgetdeviceinfo; <lb/>case OP_GETDEVICELIST: GETDEVICELIST4args opgetdevicelist; <lb/>case OP_LAYOUTCOMMIT: LAYOUTCOMMIT4args oplayoutcommit; <lb/>case OP_LAYOUTGET: <lb/>LAYOUTGET4args oplayoutget; <lb/>case OP_LAYOUTRETURN: LAYOUTRETURN4args oplayoutreturn; <lb/>case OP_SECINFO_NO_NAME: <lb/>SECINFO_NO_NAME4args opsecinfo_no_name; <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 417] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>case OP_SEQUENCE: <lb/>SEQUENCE4args opsequence; <lb/>case OP_SET_SSV: <lb/>SET_SSV4args opset_ssv; <lb/>case OP_TEST_STATEID: TEST_STATEID4args optest_stateid; <lb/>case OP_WANT_DELEGATION: <lb/>WANT_DELEGATION4args opwant_delegation; <lb/>case OP_DESTROY_CLIENTID: <lb/>DESTROY_CLIENTID4args <lb/>opdestroy_clientid; <lb/>case OP_RECLAIM_COMPLETE: <lb/>RECLAIM_COMPLETE4args <lb/>opreclaim_complete; <lb/>/* Operations not new to NFSv4.1 */ <lb/>case OP_ILLEGAL: <lb/>void; <lb/>}; <lb/>struct COMPOUND4args { <lb/>utf8str_cs <lb/>tag; <lb/>uint32_t <lb/>minorversion; <lb/>nfs_argop4 <lb/>argarray<>; <lb/>}; <lb/>16.2.2. RESULTS <lb/>union nfs_resop4 switch (nfs_opnum4 resop) { <lb/>case OP_ACCESS: <lb/>ACCESS4res opaccess; <lb/>case OP_CLOSE: <lb/>CLOSE4res opclose; <lb/>case OP_COMMIT: <lb/>COMMIT4res opcommit; <lb/>case OP_CREATE: <lb/>CREATE4res opcreate; <lb/>case OP_DELEGPURGE: <lb/>DELEGPURGE4res opdelegpurge; <lb/>case OP_DELEGRETURN: <lb/>DELEGRETURN4res opdelegreturn; <lb/>case OP_GETATTR: <lb/>GETATTR4res opgetattr; <lb/>case OP_GETFH: <lb/>GETFH4res opgetfh; <lb/>case OP_LINK: <lb/>LINK4res oplink; <lb/>case OP_LOCK: <lb/>LOCK4res oplock; <lb/>case OP_LOCKT: <lb/>LOCKT4res oplockt; <lb/>case OP_LOCKU: <lb/>LOCKU4res oplocku; <lb/>case OP_LOOKUP: <lb/>LOOKUP4res oplookup; <lb/>case OP_LOOKUPP: <lb/>LOOKUPP4res oplookupp; <lb/>case OP_NVERIFY: <lb/>NVERIFY4res opnverify; <lb/>case OP_OPEN: <lb/>OPEN4res opopen; <lb/>case OP_OPENATTR: <lb/>OPENATTR4res opopenattr; <lb/>/* Not for NFSv4.1 */ <lb/>case OP_OPEN_CONFIRM: OPEN_CONFIRM4res opopen_confirm; <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 418] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>case OP_OPEN_DOWNGRADE: <lb/>OPEN_DOWNGRADE4res <lb/>opopen_downgrade; <lb/>case OP_PUTFH: <lb/>PUTFH4res opputfh; <lb/>case OP_PUTPUBFH: <lb/>PUTPUBFH4res opputpubfh; <lb/>case OP_PUTROOTFH: <lb/>PUTROOTFH4res opputrootfh; <lb/>case OP_READ: <lb/>READ4res opread; <lb/>case OP_READDIR: <lb/>READDIR4res opreaddir; <lb/>case OP_READLINK: <lb/>READLINK4res opreadlink; <lb/>case OP_REMOVE: <lb/>REMOVE4res opremove; <lb/>case OP_RENAME: <lb/>RENAME4res oprename; <lb/>/* Not for NFSv4.1 */ <lb/>case OP_RENEW: <lb/>RENEW4res oprenew; <lb/>case OP_RESTOREFH: <lb/>RESTOREFH4res oprestorefh; <lb/>case OP_SAVEFH: <lb/>SAVEFH4res opsavefh; <lb/>case OP_SECINFO: <lb/>SECINFO4res opsecinfo; <lb/>case OP_SETATTR: <lb/>SETATTR4res opsetattr; <lb/>/* Not for NFSv4.1 */ <lb/>case OP_SETCLIENTID: SETCLIENTID4res opsetclientid; <lb/>/* Not for NFSv4.1 */ <lb/>case OP_SETCLIENTID_CONFIRM: <lb/>SETCLIENTID_CONFIRM4res <lb/>opsetclientid_confirm; <lb/>case OP_VERIFY: <lb/>VERIFY4res opverify; <lb/>case OP_WRITE: <lb/>WRITE4res opwrite; <lb/>/* Not for NFSv4.1 */ <lb/>case OP_RELEASE_LOCKOWNER: <lb/>RELEASE_LOCKOWNER4res <lb/>oprelease_lockowner; <lb/>/* Operations new to NFSv4.1 */ <lb/>case OP_BACKCHANNEL_CTL: <lb/>BACKCHANNEL_CTL4res <lb/>opbackchannel_ctl; <lb/>case OP_BIND_CONN_TO_SESSION: <lb/>BIND_CONN_TO_SESSION4res <lb/>opbind_conn_to_session; <lb/>case OP_EXCHANGE_ID: <lb/>EXCHANGE_ID4res opexchange_id; <lb/>case OP_CREATE_SESSION: <lb/>CREATE_SESSION4res <lb/>opcreate_session; <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 419] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>case OP_DESTROY_SESSION: <lb/>DESTROY_SESSION4res <lb/>opdestroy_session; <lb/>case OP_FREE_STATEID: FREE_STATEID4res <lb/>opfree_stateid; <lb/>case OP_GET_DIR_DELEGATION: <lb/>GET_DIR_DELEGATION4res <lb/>opget_dir_delegation; <lb/>case OP_GETDEVICEINFO: GETDEVICEINFO4res <lb/>opgetdeviceinfo; <lb/>case OP_GETDEVICELIST: GETDEVICELIST4res <lb/>opgetdevicelist; <lb/>case OP_LAYOUTCOMMIT: LAYOUTCOMMIT4res oplayoutcommit; <lb/>case OP_LAYOUTGET: <lb/>LAYOUTGET4res oplayoutget; <lb/>case OP_LAYOUTRETURN: LAYOUTRETURN4res oplayoutreturn; <lb/>case OP_SECINFO_NO_NAME: <lb/>SECINFO_NO_NAME4res <lb/>opsecinfo_no_name; <lb/>case OP_SEQUENCE: <lb/>SEQUENCE4res opsequence; <lb/>case OP_SET_SSV: <lb/>SET_SSV4res opset_ssv; <lb/>case OP_TEST_STATEID: TEST_STATEID4res optest_stateid; <lb/>case OP_WANT_DELEGATION: <lb/>WANT_DELEGATION4res <lb/>opwant_delegation; <lb/>case OP_DESTROY_CLIENTID: <lb/>DESTROY_CLIENTID4res <lb/>opdestroy_clientid; <lb/>case OP_RECLAIM_COMPLETE: <lb/>RECLAIM_COMPLETE4res <lb/>opreclaim_complete; <lb/>/* Operations not new to NFSv4.1 */ <lb/>case OP_ILLEGAL: <lb/>ILLEGAL4res opillegal; <lb/>}; <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 420] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>struct COMPOUND4res { <lb/>nfsstat4 <lb/>status; <lb/>utf8str_cs <lb/>tag; <lb/>nfs_resop4 <lb/>resarray<>; <lb/>}; <lb/>16.2.3. DESCRIPTION <lb/>The COMPOUND procedure is used to combine one or more NFSv4 <lb/>operations into a single RPC request. The server interprets each of <lb/>the operations in turn. If an operation is executed by the server <lb/>and the status of that operation is NFS4_OK, then the next operation <lb/>in the COMPOUND procedure is executed. The server continues this <lb/>process until there are no more operations to be executed or until <lb/>one of the operations has a status value other than NFS4_OK. <lb/>In the processing of the COMPOUND procedure, the server may find that <lb/>it does not have the available resources to execute any or all of the <lb/>operations within the COMPOUND sequence. See Section 2.10.6.4 for a <lb/>more detailed discussion. <lb/>The server will generally choose between two methods of decoding the <lb/>client's request. The first would be the traditional one-pass XDR <lb/>decode. If there is an XDR decoding error in this case, the RPC XDR <lb/>decode error would be returned. The second method would be to make <lb/>an initial pass to decode the basic COMPOUND request and then to XDR <lb/>decode the individual operations; the most interesting is the decode <lb/>of attributes. In this case, the server may encounter an XDR decode <lb/>error during the second pass. If it does, the server would return <lb/>the error NFS4ERR_BADXDR to signify the decode error. <lb/>The COMPOUND arguments contain a "minorversion" field. For NFSv4.1, <lb/>the value for this field is 1. If the server receives a COMPOUND <lb/>procedure with a minorversion field value that it does not support, <lb/>the server MUST return an error of NFS4ERR_MINOR_VERS_MISMATCH and a <lb/>zero-length resultdata array. <lb/>Contained within the COMPOUND results is a "status" field. If the <lb/>results array length is non-zero, this status must be equivalent to <lb/>the status of the last operation that was executed within the <lb/>COMPOUND procedure. Therefore, if an operation incurred an error <lb/>then the "status" value will be the same error value as is being <lb/>returned for the operation that failed. <lb/>Note that operations zero and one are not defined for the COMPOUND <lb/>procedure. Operation 2 is not defined and is reserved for future <lb/>definition and use with minor versioning. If the server receives an <lb/>operation array that contains operation 2 and the minorversion field <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 421] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>has a value of zero, an error of NFS4ERR_OP_ILLEGAL, as described in <lb/>the next paragraph, is returned to the client. If an operation array <lb/>contains an operation 2 and the minorversion field is non-zero and <lb/>the server does not support the minor version, the server returns an <lb/>error of NFS4ERR_MINOR_VERS_MISMATCH. Therefore, the <lb/>NFS4ERR_MINOR_VERS_MISMATCH error takes precedence over all other <lb/>errors. <lb/>It is possible that the server receives a request that contains an <lb/>operation that is less than the first legal operation (OP_ACCESS) or <lb/>greater than the last legal operation (OP_RELEASE_LOCKOWNER). In <lb/>this case, the server's response will encode the opcode OP_ILLEGAL <lb/>rather than the illegal opcode of the request. The status field in <lb/>the ILLEGAL return results will be set to NFS4ERR_OP_ILLEGAL. The <lb/>COMPOUND procedure's return results will also be NFS4ERR_OP_ILLEGAL. <lb/>The definition of the "tag" in the request is left to the <lb/>implementor. It may be used to summarize the content of the Compound <lb/>request for the benefit of packet-sniffers and engineers debugging <lb/>implementations. However, the value of "tag" in the response SHOULD <lb/>be the same value as provided in the request. This applies to the <lb/>tag field of the CB_COMPOUND procedure as well. <lb/>16.2.3.1. Current Filehandle and Stateid <lb/>The COMPOUND procedure offers a simple environment for the execution <lb/>of the operations specified by the client. The first two relate to <lb/>the filehandle while the second two relate to the current stateid. <lb/>16.2.3.1.1. Current Filehandle <lb/>The current and saved filehandles are used throughout the protocol. <lb/>Most operations implicitly use the current filehandle as an argument, <lb/>and many set the current filehandle as part of the results. The <lb/>combination of client-specified sequences of operations and current <lb/>and saved filehandle arguments and results allows for greater <lb/>protocol flexibility. The best or easiest example of current <lb/>filehandle usage is a sequence like the following: <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 422] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>PUTFH fh1 <lb/>{fh1} <lb/>LOOKUP "compA" <lb/>{fh2} <lb/>GETATTR <lb/>{fh2} <lb/>LOOKUP "compB" <lb/>{fh3} <lb/>GETATTR <lb/>{fh3} <lb/>LOOKUP "compC" <lb/>{fh4} <lb/>GETATTR <lb/>{fh4} <lb/>GETFH <lb/>Figure 2 <lb/>In this example, the PUTFH (Section 18.19) operation explicitly sets <lb/>the current filehandle value while the result of each LOOKUP <lb/>operation sets the current filehandle value to the resultant file <lb/>system object. Also, the client is able to insert GETATTR operations <lb/>using the current filehandle as an argument. <lb/>The PUTROOTFH (Section 18.21) and PUTPUBFH (Section 18.20) operations <lb/>also set the current filehandle. The above example would replace <lb/>"PUTFH fh1" with PUTROOTFH or PUTPUBFH with no filehandle argument in <lb/>order to achieve the same effect (on the assumption that "compA" is <lb/>directly below the root of the namespace). <lb/>Along with the current filehandle, there is a saved filehandle. <lb/>While the current filehandle is set as the result of operations like <lb/>LOOKUP, the saved filehandle must be set directly with the use of the <lb/>SAVEFH operation. The SAVEFH operation copies the current filehandle <lb/>value to the saved value. The saved filehandle value is used in <lb/>combination with the current filehandle value for the LINK and RENAME <lb/>operations. The RESTOREFH operation will copy the saved filehandle <lb/>value to the current filehandle value; as a result, the saved <lb/>filehandle value may be used a sort of "scratch" area for the <lb/>client's series of operations. <lb/>16.2.3.1.2. Current Stateid <lb/>With NFSv4.1, additions of a current stateid and a saved stateid have <lb/>been made to the COMPOUND processing environment; this allows for the <lb/>passing of stateids between operations. There are no changes to the <lb/>syntax of the protocol, only changes to the semantics of a few <lb/>operations. <lb/>A "current stateid" is the stateid that is associated with the <lb/>current filehandle. The current stateid may only be changed by an <lb/>operation that modifies the current filehandle or returns a stateid. <lb/>If an operation returns a stateid, it MUST set the current stateid to <lb/>the returned value. If an operation sets the current filehandle but <lb/>does not return a stateid, the current stateid MUST be set to the <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 423] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>all-zeros special stateid, i.e., (seqid, other) = (0, 0). If an <lb/>operation uses a stateid as an argument but does not return a <lb/>stateid, the current stateid MUST NOT be changed. For example, <lb/>PUTFH, PUTROOTFH, and PUTPUBFH will change the current server state <lb/>from {ocfh, (osid)} to {cfh, (0, 0)}, while LOCK will change the <lb/>current state from {cfh, (osid} to {cfh, (nsid)}. Operations like <lb/>LOOKUP that transform a current filehandle and component name into a <lb/>new current filehandle will also change the current state to {0, 0}. <lb/>The SAVEFH and RESTOREFH operations will save and restore both the <lb/>current filehandle and the current stateid as a set. <lb/>The following example is the common case of a simple READ operation <lb/>with a normal stateid showing that the PUTFH initializes the current <lb/>stateid to (0, 0). The subsequent READ with stateid (sid1) leaves <lb/>the current stateid unchanged. <lb/>PUTFH fh1 <lb/>--> {fh1, (0, 0)} <lb/>READ (sid1), 0, 1024 <lb/>{fh1, (0, 0)} -> {fh1, (0, 0)} <lb/>Figure 3 <lb/>This next example performs an OPEN with the root filehandle and, as a <lb/>result, generates stateid (sid1). The next operation specifies the <lb/>READ with the argument stateid set such that (seqid, other) are equal <lb/>to (1, 0), but the current stateid set by the previous operation is <lb/>actually used when the operation is evaluated. This allows correct <lb/>interaction with any existing, potentially conflicting, locks. <lb/>PUTROOTFH <lb/>--> {fh1, (0, 0)} <lb/>OPEN "compA" <lb/>{fh1, (0, 0)} -> {fh2, (sid1)} <lb/>READ (1, 0), 0, 1024 <lb/>{fh2, (sid1)} -> {fh2, (sid1)} <lb/>CLOSE (1, 0) <lb/>{fh2, (sid1)} -> {fh2, (sid2)} <lb/>Figure 4 <lb/>This next example is similar to the second in how it passes the <lb/>stateid sid2 generated by the LOCK operation to the next READ <lb/>operation. This allows the client to explicitly surround a single I/ <lb/>O operation with a lock and its appropriate stateid to guarantee <lb/>correctness with other client locks. The example also shows how <lb/>SAVEFH and RESTOREFH can save and later reuse a filehandle and <lb/>stateid, passing them as the current filehandle and stateid to a READ <lb/>operation. <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 424] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>PUTFH fh1 <lb/>--> {fh1, (0, 0)} <lb/>LOCK 0, 1024, (sid1) <lb/>{fh1, (sid1)} -> {fh1, (sid2)} <lb/>READ (1, 0), 0, 1024 <lb/>{fh1, (sid2)} -> {fh1, (sid2)} <lb/>LOCKU 0, 1024, (1, 0) <lb/>{fh1, (sid2)} -> {fh1, (sid3)} <lb/>SAVEFH <lb/>{fh1, (sid3)} -> {fh1, (sid3)} <lb/>PUTFH fh2 <lb/>{fh1, (sid3)} -> {fh2, (0, 0)} <lb/>WRITE (1, 0), 0, 1024 <lb/>{fh2, (0, 0)} -> {fh2, (0, 0)} <lb/>RESTOREFH <lb/>{fh2, (0, 0)} -> {fh1, (sid3)} <lb/>READ (1, 0), 1024, 1024 <lb/>{fh1, (sid3)} -> {fh1, (sid3)} <lb/>Figure 5 <lb/>The final example shows a disallowed use of the current stateid. The <lb/>client is attempting to implicitly pass an anonymous special stateid, <lb/>(0,0), to the READ operation. The server MUST return <lb/>NFS4ERR_BAD_STATEID in the reply to the READ operation. <lb/>PUTFH fh1 <lb/>--> {fh1, (0, 0)} <lb/>READ (1, 0), 0, 1024 <lb/>{fh1, (0, 0)} -> NFS4ERR_BAD_STATEID <lb/>Figure 6 <lb/>16.2.4. ERRORS <lb/>COMPOUND will of course return every error that each operation on the <lb/>fore channel can return (see Table 6). However, if COMPOUND returns <lb/>zero operations, obviously the error returned by COMPOUND has nothing <lb/>to do with an error returned by an operation. The list of errors <lb/>COMPOUND will return if it processes zero operations include: <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 425] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>COMPOUND Error Returns <lb/>+------------------------------+------------------------------------+ <lb/>| Error <lb/>| Notes <lb/>| <lb/>+------------------------------+------------------------------------+ <lb/>| NFS4ERR_BADCHAR <lb/>| The tag argument has a character <lb/>| <lb/>| <lb/>| the replier does not support. <lb/>| <lb/>| NFS4ERR_BADXDR <lb/>| <lb/>| <lb/>| NFS4ERR_DELAY <lb/>| <lb/>| <lb/>| NFS4ERR_INVAL <lb/>| The tag argument is not in UTF-8 <lb/>| <lb/>| <lb/>| encoding. <lb/>| <lb/>| NFS4ERR_MINOR_VERS_MISMATCH | <lb/>| <lb/>| NFS4ERR_SERVERFAULT <lb/>| <lb/>| <lb/>| NFS4ERR_TOO_MANY_OPS <lb/>| <lb/>| <lb/>| NFS4ERR_REP_TOO_BIG <lb/>| <lb/>| <lb/>| NFS4ERR_REP_TOO_BIG_TO_CACHE | <lb/>| <lb/>| NFS4ERR_REQ_TOO_BIG <lb/>| <lb/>| <lb/>+------------------------------+------------------------------------+ <lb/>Table 9 <lb/>17. Operations: REQUIRED, RECOMMENDED, or OPTIONAL <lb/>The following tables summarize the operations of the NFSv4.1 protocol <lb/>and the corresponding designation of REQUIRED, RECOMMENDED, and <lb/>OPTIONAL to implement or MUST NOT implement. The designation of MUST <lb/>NOT implement is reserved for those operations that were defined in <lb/>NFSv4.0 and MUST NOT be implemented in NFSv4.1. <lb/>For the most part, the REQUIRED, RECOMMENDED, or OPTIONAL designation <lb/>for operations sent by the client is for the server implementation. <lb/>The client is generally required to implement the operations needed <lb/>for the operating environment for which it serves. For example, a <lb/>read-only NFSv4.1 client would have no need to implement the WRITE <lb/>operation and is not required to do so. <lb/>The REQUIRED or OPTIONAL designation for callback operations sent by <lb/>the server is for both the client and server. Generally, the client <lb/>has the option of creating the backchannel and sending the operations <lb/>on the fore channel that will be a catalyst for the server sending <lb/>callback operations. A partial exception is CB_RECALL_SLOT; the only <lb/>way the client can avoid supporting this operation is by not creating <lb/>a backchannel. <lb/>Since this is a summary of the operations and their designation, <lb/>there are subtleties that are not presented here. Therefore, if <lb/>there is a question of the requirements of implementation, the <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 426] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>operation descriptions themselves must be consulted along with other <lb/>relevant explanatory text within this specification. <lb/>The abbreviations used in the second and third columns of the table <lb/>are defined as follows. <lb/>REQ REQUIRED to implement <lb/>REC RECOMMEND to implement <lb/>OPT OPTIONAL to implement <lb/>MNI MUST NOT implement <lb/>For the NFSv4.1 features that are OPTIONAL, the operations that <lb/>support those features are OPTIONAL, and the server would return <lb/>NFS4ERR_NOTSUPP in response to the client's use of those operations. <lb/>If an OPTIONAL feature is supported, it is possible that a set of <lb/>operations related to the feature become REQUIRED to implement. The <lb/>third column of the table designates the feature(s) and if the <lb/>operation is REQUIRED or OPTIONAL in the presence of support for the <lb/>feature. <lb/>The OPTIONAL features identified and their abbreviations are as <lb/>follows: <lb/>pNFS Parallel NFS <lb/>FDELG File Delegations <lb/>DDELG Directory Delegations <lb/>Operations <lb/>+----------------------+------------+--------------+----------------+ <lb/>| Operation <lb/>| REQ, REC, | Feature <lb/>| Definition <lb/>| <lb/>| <lb/>| OPT, or <lb/>| (REQ, REC, <lb/>| <lb/>| <lb/>| <lb/>| MNI <lb/>| or OPT) <lb/>| <lb/>| <lb/>+----------------------+------------+--------------+----------------+ <lb/>| ACCESS <lb/>| REQ <lb/>| <lb/>| Section 18.1 <lb/>| <lb/>| BACKCHANNEL_CTL <lb/>| REQ <lb/>| <lb/>| Section 18.33 | <lb/>| BIND_CONN_TO_SESSION | REQ <lb/>| <lb/>| Section 18.34 | <lb/>| CLOSE <lb/>| REQ <lb/>| <lb/>| Section 18.2 <lb/>| <lb/>| COMMIT <lb/>| REQ <lb/>| <lb/>| Section 18.3 <lb/>| <lb/>| CREATE <lb/>| REQ <lb/>| <lb/>| Section 18.4 <lb/>| <lb/>| CREATE_SESSION <lb/>| REQ <lb/>| <lb/>| Section 18.36 | <lb/>| DELEGPURGE <lb/>| OPT <lb/>| FDELG (REQ) | Section 18.5 <lb/>| <lb/>| DELEGRETURN <lb/>| OPT <lb/>| FDELG, <lb/>| Section 18.6 <lb/>| <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 427] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>| <lb/>| <lb/>| DDELG, pNFS | <lb/>| <lb/>| <lb/>| <lb/>| (REQ) <lb/>| <lb/>| <lb/>| DESTROY_CLIENTID <lb/>| REQ <lb/>| <lb/>| Section 18.50 | <lb/>| DESTROY_SESSION <lb/>| REQ <lb/>| <lb/>| Section 18.37 | <lb/>| EXCHANGE_ID <lb/>| REQ <lb/>| <lb/>| Section 18.35 | <lb/>| FREE_STATEID <lb/>| REQ <lb/>| <lb/>| Section 18.38 | <lb/>| GETATTR <lb/>| REQ <lb/>| <lb/>| Section 18.7 <lb/>| <lb/>| GETDEVICEINFO <lb/>| OPT <lb/>| pNFS (REQ) <lb/>| Section 18.40 | <lb/>| GETDEVICELIST <lb/>| OPT <lb/>| pNFS (OPT) <lb/>| Section 18.41 | <lb/>| GETFH <lb/>| REQ <lb/>| <lb/>| Section 18.8 <lb/>| <lb/>| GET_DIR_DELEGATION <lb/>| OPT <lb/>| DDELG (REQ) | Section 18.39 | <lb/>| LAYOUTCOMMIT <lb/>| OPT <lb/>| pNFS (REQ) <lb/>| Section 18.42 | <lb/>| LAYOUTGET <lb/>| OPT <lb/>| pNFS (REQ) <lb/>| Section 18.43 | <lb/>| LAYOUTRETURN <lb/>| OPT <lb/>| pNFS (REQ) <lb/>| Section 18.44 | <lb/>| LINK <lb/>| OPT <lb/>| <lb/>| Section 18.9 <lb/>| <lb/>| LOCK <lb/>| REQ <lb/>| <lb/>| Section 18.10 | <lb/>| LOCKT <lb/>| REQ <lb/>| <lb/>| Section 18.11 | <lb/>| LOCKU <lb/>| REQ <lb/>| <lb/>| Section 18.12 | <lb/>| LOOKUP <lb/>| REQ <lb/>| <lb/>| Section 18.13 | <lb/>| LOOKUPP <lb/>| REQ <lb/>| <lb/>| Section 18.14 | <lb/>| NVERIFY <lb/>| REQ <lb/>| <lb/>| Section 18.15 | <lb/>| OPEN <lb/>| REQ <lb/>| <lb/>| Section 18.16 | <lb/>| OPENATTR <lb/>| OPT <lb/>| <lb/>| Section 18.17 | <lb/>| OPEN_CONFIRM <lb/>| MNI <lb/>| <lb/>| N/A <lb/>| <lb/>| OPEN_DOWNGRADE <lb/>| REQ <lb/>| <lb/>| Section 18.18 | <lb/>| PUTFH <lb/>| REQ <lb/>| <lb/>| Section 18.19 | <lb/>| PUTPUBFH <lb/>| REQ <lb/>| <lb/>| Section 18.20 | <lb/>| PUTROOTFH <lb/>| REQ <lb/>| <lb/>| Section 18.21 | <lb/>| READ <lb/>| REQ <lb/>| <lb/>| Section 18.22 | <lb/>| READDIR <lb/>| REQ <lb/>| <lb/>| Section 18.23 | <lb/>| READLINK <lb/>| OPT <lb/>| <lb/>| Section 18.24 | <lb/>| RECLAIM_COMPLETE <lb/>| REQ <lb/>| <lb/>| Section 18.51 | <lb/>| RELEASE_LOCKOWNER <lb/>| MNI <lb/>| <lb/>| N/A <lb/>| <lb/>| REMOVE <lb/>| REQ <lb/>| <lb/>| Section 18.25 | <lb/>| RENAME <lb/>| REQ <lb/>| <lb/>| Section 18.26 | <lb/>| RENEW <lb/>| MNI <lb/>| <lb/>| N/A <lb/>| <lb/>| RESTOREFH <lb/>| REQ <lb/>| <lb/>| Section 18.27 | <lb/>| SAVEFH <lb/>| REQ <lb/>| <lb/>| Section 18.28 | <lb/>| SECINFO <lb/>| REQ <lb/>| <lb/>| Section 18.29 | <lb/>| SECINFO_NO_NAME <lb/>| REC <lb/>| pNFS file <lb/>| Section 18.45, | <lb/>| <lb/>| <lb/>| layout (REQ) | Section 13.12 | <lb/>| SEQUENCE <lb/>| REQ <lb/>| <lb/>| Section 18.46 | <lb/>| SETATTR <lb/>| REQ <lb/>| <lb/>| Section 18.30 | <lb/>| SETCLIENTID <lb/>| MNI <lb/>| <lb/>| N/A <lb/>| <lb/>| SETCLIENTID_CONFIRM | MNI <lb/>| <lb/>| N/A <lb/>| <lb/>| SET_SSV <lb/>| REQ <lb/>| <lb/>| Section 18.47 | <lb/>| TEST_STATEID <lb/>| REQ <lb/>| <lb/>| Section 18.48 | <lb/>| VERIFY <lb/>| REQ <lb/>| <lb/>| Section 18.31 | <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 428] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>| WANT_DELEGATION <lb/>| OPT <lb/>| FDELG (OPT) | Section 18.49 | <lb/>| WRITE <lb/>| REQ <lb/>| <lb/>| Section 18.32 | <lb/>+----------------------+------------+--------------+----------------+ <lb/>Callback Operations <lb/>+-------------------------+------------+---------------+------------+ <lb/>| Operation <lb/>| REQ, REC, | Feature (REQ, | Definition | <lb/>| <lb/>| OPT, or <lb/>| REC, or OPT) | <lb/>| <lb/>| <lb/>| MNI <lb/>| <lb/>| <lb/>| <lb/>+-------------------------+------------+---------------+------------+ <lb/>| CB_GETATTR <lb/>| OPT <lb/>| FDELG (REQ) <lb/>| Section <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| 20.1 <lb/>| <lb/>| CB_LAYOUTRECALL <lb/>| OPT <lb/>| pNFS (REQ) <lb/>| Section <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| 20.3 <lb/>| <lb/>| CB_NOTIFY <lb/>| OPT <lb/>| DDELG (REQ) <lb/>| Section <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| 20.4 <lb/>| <lb/>| CB_NOTIFY_DEVICEID <lb/>| OPT <lb/>| pNFS (OPT) <lb/>| Section <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| 20.12 <lb/>| <lb/>| CB_NOTIFY_LOCK <lb/>| OPT <lb/>| <lb/>| Section <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| 20.11 <lb/>| <lb/>| CB_PUSH_DELEG <lb/>| OPT <lb/>| FDELG (OPT) <lb/>| Section <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| 20.5 <lb/>| <lb/>| CB_RECALL <lb/>| OPT <lb/>| FDELG, DDELG, | Section <lb/>| <lb/>| <lb/>| <lb/>| pNFS (REQ) <lb/>| 20.2 <lb/>| <lb/>| CB_RECALL_ANY <lb/>| OPT <lb/>| FDELG, DDELG, | Section <lb/>| <lb/>| <lb/>| <lb/>| pNFS (REQ) <lb/>| 20.6 <lb/>| <lb/>| CB_RECALL_SLOT <lb/>| REQ <lb/>| <lb/>| Section <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| 20.8 <lb/>| <lb/>| CB_RECALLABLE_OBJ_AVAIL | OPT <lb/>| DDELG, pNFS <lb/>| Section <lb/>| <lb/>| <lb/>| <lb/>| (REQ) <lb/>| 20.7 <lb/>| <lb/>| CB_SEQUENCE <lb/>| OPT <lb/>| FDELG, DDELG, | Section <lb/>| <lb/>| <lb/>| <lb/>| pNFS (REQ) <lb/>| 20.9 <lb/>| <lb/>| CB_WANTS_CANCELLED <lb/>| OPT <lb/>| FDELG, DDELG, | Section <lb/>| <lb/>| <lb/>| <lb/>| pNFS (REQ) <lb/>| 20.10 <lb/>| <lb/>+-------------------------+------------+---------------+------------+ <lb/>18. NFSv4.1 Operations <lb/>18.1. Operation 3: ACCESS -Check Access Rights <lb/>18.1.1. ARGUMENTS <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 429] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>const ACCESS4_READ <lb/>= 0x00000001; <lb/>const ACCESS4_LOOKUP <lb/>= 0x00000002; <lb/>const ACCESS4_MODIFY <lb/>= 0x00000004; <lb/>const ACCESS4_EXTEND <lb/>= 0x00000008; <lb/>const ACCESS4_DELETE <lb/>= 0x00000010; <lb/>const ACCESS4_EXECUTE <lb/>= 0x00000020; <lb/>struct ACCESS4args { <lb/>/* CURRENT_FH: object */ <lb/>uint32_t <lb/>access; <lb/>}; <lb/>18.1.2. RESULTS <lb/>struct ACCESS4resok { <lb/>uint32_t <lb/>supported; <lb/>uint32_t <lb/>access; <lb/>}; <lb/>union ACCESS4res switch (nfsstat4 status) { <lb/>case NFS4_OK: <lb/>ACCESS4resok <lb/>resok4; <lb/>default: <lb/>void; <lb/>}; <lb/>18.1.3. DESCRIPTION <lb/>ACCESS determines the access rights that a user, as identified by the <lb/>credentials in the RPC request, has with respect to the file system <lb/>object specified by the current filehandle. The client encodes the <lb/>set of access rights that are to be checked in the bit mask "access". <lb/>The server checks the permissions encoded in the bit mask. If a <lb/>status of NFS4_OK is returned, two bit masks are included in the <lb/>response. The first, "supported", represents the access rights for <lb/>which the server can verify reliably. The second, "access", <lb/>represents the access rights available to the user for the filehandle <lb/>provided. On success, the current filehandle retains its value. <lb/>Note that the reply's supported and access fields MUST NOT contain <lb/>more values than originally set in the request's access field. For <lb/>example, if the client sends an ACCESS operation with just the <lb/>ACCESS4_READ value set and the server supports this value, the server <lb/>MUST NOT set more than ACCESS4_READ in the supported field even if it <lb/>could have reliably checked other values. <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 430] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>The reply's access field MUST NOT contain more values than the <lb/>supported field. <lb/>The results of this operation are necessarily advisory in nature. A <lb/>return status of NFS4_OK and the appropriate bit set in the bit mask <lb/>do not imply that such access will be allowed to the file system <lb/>object in the future. This is because access rights can be revoked <lb/>by the server at any time. <lb/>The following access permissions may be requested: <lb/>ACCESS4_READ Read data from file or read a directory. <lb/>ACCESS4_LOOKUP Look up a name in a directory (no meaning for non-<lb/>directory objects). <lb/>ACCESS4_MODIFY Rewrite existing file data or modify existing <lb/>directory entries. <lb/>ACCESS4_EXTEND Write new data or add directory entries. <lb/>ACCESS4_DELETE Delete an existing directory entry. <lb/>ACCESS4_EXECUTE Execute a regular file (no meaning for a directory). <lb/>On success, the current filehandle retains its value. <lb/>ACCESS4_EXECUTE is a challenging semantic to implement because NFS <lb/>provides remote file access, not remote execution. This leads to the <lb/>following: <lb/>o Whether or not a regular file is executable ought to be the <lb/>responsibility of the NFS client and not the server. And yet the <lb/>ACCESS operation is specified to seemingly require a server to own <lb/>that responsibility. <lb/>o When a client executes a regular file, it has to read the file <lb/>from the server. Strictly speaking, the server should not allow <lb/>the client to read a file being executed unless the user has read <lb/>permissions on the file. Requiring explicit read permissions on <lb/>executable files in order to access them over NFS is not going to <lb/>be acceptable to some users and storage administrators. <lb/>Historically, NFS servers have allowed a user to READ a file if <lb/>the user has execute access to the file. <lb/>As a practical example, the UNIX specification [55] states that an <lb/>implementation claiming conformance to UNIX may indicate in the <lb/>access() programming interface's result that a privileged user has <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 431] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>execute rights, even if no execute permission bits are set on the <lb/>regular file's attributes. It is possible to claim conformance to <lb/>the UNIX specification and instead not indicate execute rights in <lb/>that situation, which is true for some operating environments. <lb/>Suppose the operating environments of the client and server are <lb/>implementing the access() semantics for privileged users differently, <lb/>and the ACCESS operation implementations of the client and server <lb/>follow their respective access() semantics. This can cause undesired <lb/>behavior: <lb/>o Suppose the client's access() interface returns X_OK if the user <lb/>is privileged and no execute permission bits are set on the <lb/>regular file's attribute, and the server's access() interface does <lb/>not return X_OK in that situation. Then the client will be unable <lb/>to execute files stored on the NFS server that could be executed <lb/>if stored on a non-NFS file system. <lb/>o Suppose the client's access() interface does not return X_OK if <lb/>the user is privileged, and no execute permission bits are set on <lb/>the regular file's attribute, and the server's access() interface <lb/>does return X_OK in that situation. Then: <lb/>* The client will be able to execute files stored on the NFS <lb/>server that could be executed if stored on a non-NFS file <lb/>system, unless the client's execution subsystem also checks for <lb/>execute permission bits. <lb/>* Even if the execution subsystem is checking for execute <lb/>permission bits, there are more potential issues. For example, <lb/>suppose the client is invoking access() to build a "path search <lb/>table" of all executable files in the user's "search path", <lb/>where the path is a list of directories each containing <lb/>executable files. Suppose there are two files each in separate <lb/>directories of the search path, such that files have the same <lb/>component name. In the first directory the file has no execute <lb/>permission bits set, and in the second directory the file has <lb/>execute bits set. The path search table will indicate that the <lb/>first directory has the executable file, but the execute <lb/>subsystem will fail to execute it. The command shell might <lb/>fail to try the second file in the second directory. And even <lb/>if it did, this is a potential performance issue. Clearly, the <lb/>desired outcome for the client is for the path search table to <lb/>not contain the first file. <lb/>To deal with the problems described above, the "smart client, stupid <lb/>server" principle is used. The client owns overall responsibility <lb/>for determining execute access and relies on the server to parse the <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 432] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>execution permissions within the file's mode, acl, and dacl <lb/>attributes. The rules for the client and server follow: <lb/>o If the client is sending ACCESS in order to determine if the user <lb/>can read the file, the client SHOULD set ACCESS4_READ in the <lb/>request's access field. <lb/>o If the client's operating environment only grants execution to the <lb/>user if the user has execute access according to the execute <lb/>permissions in the mode, acl, and dacl attributes, then if the <lb/>client wants to determine execute access, the client SHOULD send <lb/>an ACCESS request with ACCESS4_EXECUTE bit set in the request's <lb/>access field. <lb/>o If the client's operating environment grants execution to the user <lb/>even if the user does not have execute access according to the <lb/>execute permissions in the mode, acl, and dacl attributes, then if <lb/>the client wants to determine execute access, it SHOULD send an <lb/>ACCESS request with both the ACCESS4_EXECUTE and ACCESS4_READ bits <lb/>set in the request's access field. This way, if any read or <lb/>execute permission grants the user read or execute access (or if <lb/>the server interprets the user as privileged), as indicated by the <lb/>presence of ACCESS4_EXECUTE and/or ACCESS4_READ in the reply's <lb/>access field, the client will be able to grant the user execute <lb/>access to the file. <lb/>o If the server supports execute permission bits, or some other <lb/>method for denoting executability (e.g., the suffix of the name of <lb/>the file might indicate execute), it MUST check only execute <lb/>permissions, not read permissions, when determining whether or not <lb/>the reply will have ACCESS4_EXECUTE set in the access field. The <lb/>server MUST NOT also examine read permission bits when determining <lb/>whether or not the reply will have ACCESS4_EXECUTE set in the <lb/>access field. Even if the server's operating environment would <lb/>grant execute access to the user (e.g., the user is privileged), <lb/>the server MUST NOT reply with ACCESS4_EXECUTE set in reply's <lb/>access field unless there is at least one execute permission bit <lb/>set in the mode, acl, or dacl attributes. In the case of acl and <lb/>dacl, the "one execute permission bit" MUST be an ACE4_EXECUTE bit <lb/>set in an ALLOW ACE. <lb/>o If the server does not support execute permission bits or some <lb/>other method for denoting executability, it MUST NOT set <lb/>ACCESS4_EXECUTE in the reply's supported and access fields. If <lb/>the client set ACCESS4_EXECUTE in the ACCESS request's access <lb/>field, and ACCESS4_EXECUTE is not set in the reply's supported <lb/>field, then the client will have to send an ACCESS request with <lb/>the ACCESS4_READ bit set in the request's access field. <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 433] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>o If the server supports read permission bits, it MUST only check <lb/>for read permissions in the mode, acl, and dacl attributes when it <lb/>receives an ACCESS request with ACCESS4_READ set in the access <lb/>field. The server MUST NOT also examine execute permission bits <lb/>when determining whether the reply will have ACCESS4_READ set in <lb/>the access field or not. <lb/>Note that if the ACCESS reply has ACCESS4_READ or ACCESS_EXECUTE set, <lb/>then the user also has permissions to OPEN (Section 18.16) or READ <lb/>(Section 18.22) the file. In other words, if the client sends an <lb/>ACCESS request with the ACCESS4_READ and ACCESS_EXECUTE set in the <lb/>access field (or two separate requests, one with ACCESS4_READ set and <lb/>the other with ACCESS4_EXECUTE set), and the reply has just <lb/>ACCESS4_EXECUTE set in the access field (or just one reply has <lb/>ACCESS4_EXECUTE set), then the user has authorization to OPEN or READ <lb/>the file. <lb/>18.1.4. IMPLEMENTATION <lb/>In general, it is not sufficient for the client to attempt to deduce <lb/>access permissions by inspecting the uid, gid, and mode fields in the <lb/>file attributes or by attempting to interpret the contents of the ACL <lb/>attribute. This is because the server may perform uid or gid mapping <lb/>or enforce additional access-control restrictions. It is also <lb/>possible that the server may not be in the same ID space as the <lb/>client. In these cases (and perhaps others), the client cannot <lb/>reliably perform an access check with only current file attributes. <lb/>In the NFSv2 protocol, the only reliable way to determine whether an <lb/>operation was allowed was to try it and see if it succeeded or <lb/>failed. Using the ACCESS operation in the NFSv4.1 protocol, the <lb/>client can ask the server to indicate whether or not one or more <lb/>classes of operations are permitted. The ACCESS operation is <lb/>provided to allow clients to check before doing a series of <lb/>operations that will result in an access failure. The OPEN operation <lb/>provides a point where the server can verify access to the file <lb/>object and a method to return that information to the client. The <lb/>ACCESS operation is still useful for directory operations or for use <lb/>in the case that the UNIX interface access() is used on the client. <lb/>The information returned by the server in response to an ACCESS call <lb/>is not permanent. It was correct at the exact time that the server <lb/>performed the checks, but not necessarily afterwards. The server can <lb/>revoke access permission at any time. <lb/>The client should use the effective credentials of the user to build <lb/>the authentication information in the ACCESS request used to <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 434] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>determine access rights. It is the effective user and group <lb/>credentials that are used in subsequent READ and WRITE operations. <lb/>Many implementations do not directly support the ACCESS4_DELETE <lb/>permission. Operating systems like UNIX will ignore the <lb/>ACCESS4_DELETE bit if set on an access request on a non-directory <lb/>object. In these systems, delete permission on a file is determined <lb/>by the access permissions on the directory in which the file resides, <lb/>instead of being determined by the permissions of the file itself. <lb/>Therefore, the mask returned enumerating which access rights can be <lb/>determined will have the ACCESS4_DELETE value set to 0. This <lb/>indicates to the client that the server was unable to check that <lb/>particular access right. The ACCESS4_DELETE bit in the access mask <lb/>returned will then be ignored by the client. <lb/>18.2. Operation 4: CLOSE -Close File <lb/>18.2.1. ARGUMENTS <lb/>struct CLOSE4args { <lb/>/* CURRENT_FH: object */ <lb/>seqid4 <lb/>seqid; <lb/>stateid4 <lb/>open_stateid; <lb/>}; <lb/>18.2.2. RESULTS <lb/>union CLOSE4res switch (nfsstat4 status) { <lb/>case NFS4_OK: <lb/>stateid4 <lb/>open_stateid; <lb/>default: <lb/>void; <lb/>}; <lb/>18.2.3. DESCRIPTION <lb/>The CLOSE operation releases share reservations for the regular or <lb/>named attribute file as specified by the current filehandle. The <lb/>share reservations and other state information released at the server <lb/>as a result of this CLOSE are only those associated with the supplied <lb/>stateid. State associated with other OPENs is not affected. <lb/>If byte-range locks are held, the client SHOULD release all locks <lb/>before sending a CLOSE. The server MAY free all outstanding locks on <lb/>CLOSE, but some servers may not support the CLOSE of a file that <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 435] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>still has byte-range locks held. The server MUST return failure if <lb/>any locks would exist after the CLOSE. <lb/>The argument seqid MAY have any value, and the server MUST ignore <lb/>seqid. <lb/>On success, the current filehandle retains its value. <lb/>The server MAY require that the combination of principal, security <lb/>flavor, and, if applicable, GSS mechanism that sent the OPEN request <lb/>also be the one to CLOSE the file. This might not be possible if <lb/>credentials for the principal are no longer available. The server <lb/>MAY allow the machine credential or SSV credential (see <lb/>Section 18.35) to send CLOSE. <lb/>18.2.4. IMPLEMENTATION <lb/>Even though CLOSE returns a stateid, this stateid is not useful to <lb/>the client and should be treated as deprecated. CLOSE "shuts down" <lb/>the state associated with all OPENs for the file by a single open-<lb/>owner. As noted above, CLOSE will either release all file-locking <lb/>state or return an error. Therefore, the stateid returned by CLOSE <lb/>is not useful for operations that follow. To help find any uses of <lb/>this stateid by clients, the server SHOULD return the invalid special <lb/>stateid (the "other" value is zero and the "seqid" field is <lb/>NFS4_UINT32_MAX, see Section 8.2.3). <lb/>A CLOSE operation may make delegations grantable where they were not <lb/>previously. Servers may choose to respond immediately if there are <lb/>pending delegation want requests or may respond to the situation at a <lb/>later time. <lb/>18.3. Operation 5: COMMIT -Commit Cached Data <lb/>18.3.1. ARGUMENTS <lb/>struct COMMIT4args { <lb/>/* CURRENT_FH: file */ <lb/>offset4 <lb/>offset; <lb/>count4 <lb/>count; <lb/>}; <lb/>18.3.2. RESULTS <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 436] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>struct COMMIT4resok { <lb/>verifier4 <lb/>writeverf; <lb/>}; <lb/>union COMMIT4res switch (nfsstat4 status) { <lb/>case NFS4_OK: <lb/>COMMIT4resok <lb/>resok4; <lb/>default: <lb/>void; <lb/>}; <lb/>18.3.3. DESCRIPTION <lb/>The COMMIT operation forces or flushes uncommitted, modified data to <lb/>stable storage for the file specified by the current filehandle. The <lb/>flushed data is that which was previously written with one or more <lb/>WRITE operations that had the "committed" field of their results <lb/>field set to UNSTABLE4. <lb/>The offset specifies the position within the file where the flush is <lb/>to begin. An offset value of zero means to flush data starting at <lb/>the beginning of the file. The count specifies the number of bytes <lb/>of data to flush. If the count is zero, a flush from the offset to <lb/>the end of the file is done. <lb/>The server returns a write verifier upon successful completion of the <lb/>COMMIT. The write verifier is used by the client to determine if the <lb/>server has restarted between the initial WRITE operations and the <lb/>COMMIT. The client does this by comparing the write verifier <lb/>returned from the initial WRITE operations and the verifier returned <lb/>by the COMMIT operation. The server must vary the value of the write <lb/>verifier at each server event or instantiation that may lead to a <lb/>loss of uncommitted data. Most commonly this occurs when the server <lb/>is restarted; however, other events at the server may result in <lb/>uncommitted data loss as well. <lb/>On success, the current filehandle retains its value. <lb/>18.3.4. IMPLEMENTATION <lb/>The COMMIT operation is similar in operation and semantics to the <lb/>POSIX fsync() [22] system interface that synchronizes a file's state <lb/>with the disk (file data and metadata is flushed to disk or stable <lb/>storage). COMMIT performs the same operation for a client, flushing <lb/>any unsynchronized data and metadata on the server to the server's <lb/>disk or stable storage for the specified file. Like fsync(), it may <lb/>be that there is some modified data or no modified data to <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 437] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>synchronize. The data may have been synchronized by the server's <lb/>normal periodic buffer synchronization activity. COMMIT should <lb/>return NFS4_OK, unless there has been an unexpected error. <lb/>COMMIT differs from fsync() in that it is possible for the client to <lb/>flush a range of the file (most likely triggered by a buffer-<lb/>reclamation scheme on the client before the file has been completely <lb/>written). <lb/>The server implementation of COMMIT is reasonably simple. If the <lb/>server receives a full file COMMIT request, that is, starting at <lb/>offset zero and count zero, it should do the equivalent of applying <lb/>fsync() to the entire file. Otherwise, it should arrange to have the <lb/>modified data in the range specified by offset and count to be <lb/>flushed to stable storage. In both cases, any metadata associated <lb/>with the file must be flushed to stable storage before returning. It <lb/>is not an error for there to be nothing to flush on the server. This <lb/>means that the data and metadata that needed to be flushed have <lb/>already been flushed or lost during the last server failure. <lb/>The client implementation of COMMIT is a little more complex. There <lb/>are two reasons for wanting to commit a client buffer to stable <lb/>storage. The first is that the client wants to reuse a buffer. In <lb/>this case, the offset and count of the buffer are sent to the server <lb/>in the COMMIT request. The server then flushes any modified data <lb/>based on the offset and count, and flushes any modified metadata <lb/>associated with the file. It then returns the status of the flush <lb/>and the write verifier. The second reason for the client to generate <lb/>a COMMIT is for a full file flush, such as may be done at close. In <lb/>this case, the client would gather all of the buffers for this file <lb/>that contain uncommitted data, do the COMMIT operation with an offset <lb/>of zero and count of zero, and then free all of those buffers. Any <lb/>other dirty buffers would be sent to the server in the normal <lb/>fashion. <lb/>After a buffer is written (via the WRITE operation) by the client <lb/>with the "committed" field in the result of WRITE set to UNSTABLE4, <lb/>the buffer must be considered as modified by the client until the <lb/>buffer has either been flushed via a COMMIT operation or written via <lb/>a WRITE operation with the "committed" field in the result set to <lb/>FILE_SYNC4 or DATA_SYNC4. This is done to prevent the buffer from <lb/>being freed and reused before the data can be flushed to stable <lb/>storage on the server. <lb/>When a response is returned from either a WRITE or a COMMIT operation <lb/>and it contains a write verifier that differs from that previously <lb/>returned by the server, the client will need to retransmit all of the <lb/>buffers containing uncommitted data to the server. How this is to be <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 438] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>done is up to the implementor. If there is only one buffer of <lb/>interest, then it should be sent in a WRITE request with the <lb/>FILE_SYNC4 stable parameter. If there is more than one buffer, it <lb/>might be worthwhile retransmitting all of the buffers in WRITE <lb/>operations with the stable parameter set to UNSTABLE4 and then <lb/>retransmitting the COMMIT operation to flush all of the data on the <lb/>server to stable storage. However, if the server repeatably returns <lb/>from COMMIT a verifier that differs from that returned by WRITE, the <lb/>only way to ensure progress is to retransmit all of the buffers with <lb/>WRITE requests with the FILE_SYNC4 stable parameter. <lb/>The above description applies to page-cache-based systems as well as <lb/>buffer-cache-based systems. In the former systems, the virtual <lb/>memory system will need to be modified instead of the buffer cache. <lb/>18.4. Operation 6: CREATE -Create a Non-Regular File Object <lb/>18.4.1. ARGUMENTS <lb/>union createtype4 switch (nfs_ftype4 type) { <lb/>case NF4LNK: <lb/>linktext4 linkdata; <lb/>case NF4BLK: <lb/>case NF4CHR: <lb/>specdata4 devdata; <lb/>case NF4SOCK: <lb/>case NF4FIFO: <lb/>case NF4DIR: <lb/>void; <lb/>default: <lb/>void; /* server should return NFS4ERR_BADTYPE */ <lb/>}; <lb/>struct CREATE4args { <lb/>/* CURRENT_FH: directory for creation */ <lb/>createtype4 <lb/>objtype; <lb/>component4 <lb/>objname; <lb/>fattr4 <lb/>createattrs; <lb/>}; <lb/>18.4.2. RESULTS <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 439] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>struct CREATE4resok { <lb/>change_info4 <lb/>cinfo; <lb/>bitmap4 <lb/>attrset; <lb/>/* attributes set */ <lb/>}; <lb/>union CREATE4res switch (nfsstat4 status) { <lb/>case NFS4_OK: <lb/>/* new CURRENTFH: created object */ <lb/>CREATE4resok resok4; <lb/>default: <lb/>void; <lb/>}; <lb/>18.4.3. DESCRIPTION <lb/>The CREATE operation creates a file object other than an ordinary <lb/>file in a directory with a given name. The OPEN operation MUST be <lb/>used to create a regular file or a named attribute. <lb/>The current filehandle must be a directory: an object of type NF4DIR. <lb/>If the current filehandle is an attribute directory (type <lb/>NF4ATTRDIR), the error NFS4ERR_WRONG_TYPE is returned. If the <lb/>current file handle designates any other type of object, the error <lb/>NFS4ERR_NOTDIR results. <lb/>The objname specifies the name for the new object. The objtype <lb/>determines the type of object to be created: directory, symlink, etc. <lb/>If the object type specified is that of an ordinary file, a named <lb/>attribute, or a named attribute directory, the error NFS4ERR_BADTYPE <lb/>results. <lb/>If an object of the same name already exists in the directory, the <lb/>server will return the error NFS4ERR_EXIST. <lb/>For the directory where the new file object was created, the server <lb/>returns change_info4 information in cinfo. With the atomic field of <lb/>the change_info4 data type, the server will indicate if the before <lb/>and after change attributes were obtained atomically with respect to <lb/>the file object creation. <lb/>If the objname has a length of zero, or if objname does not obey the <lb/>UTF-8 definition, the error NFS4ERR_INVAL will be returned. <lb/>The current filehandle is replaced by that of the new object. <lb/>The createattrs specifies the initial set of attributes for the <lb/>object. The set of attributes may include any writable attribute <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 440] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>valid for the object type. When the operation is successful, the <lb/>server will return to the client an attribute mask signifying which <lb/>attributes were successfully set for the object. <lb/>If createattrs includes neither the owner attribute nor an ACL with <lb/>an ACE for the owner, and if the server's file system both supports <lb/>and requires an owner attribute (or an owner ACE), then the server <lb/>MUST derive the owner (or the owner ACE). This would typically be <lb/>from the principal indicated in the RPC credentials of the call, but <lb/>the server's operating environment or file system semantics may <lb/>dictate other methods of derivation. Similarly, if createattrs <lb/>includes neither the group attribute nor a group ACE, and if the <lb/>server's file system both supports and requires the notion of a group <lb/>attribute (or group ACE), the server MUST derive the group attribute <lb/>(or the corresponding owner ACE) for the file. This could be from <lb/>the RPC call's credentials, such as the group principal if the <lb/>credentials include it (such as with AUTH_SYS), from the group <lb/>identifier associated with the principal in the credentials (e.g., <lb/>POSIX systems have a user database [23] that has a group identifier <lb/>for every user identifier), inherited from the directory in which the <lb/>object is created, or whatever else the server's operating <lb/>environment or file system semantics dictate. This applies to the <lb/>OPEN operation too. <lb/>Conversely, it is possible that the client will specify in <lb/>createattrs an owner attribute, group attribute, or ACL that the <lb/>principal indicated the RPC call's credentials does not have <lb/>permissions to create files for. The error to be returned in this <lb/>instance is NFS4ERR_PERM. This applies to the OPEN operation too. <lb/>If the current filehandle designates a directory for which another <lb/>client holds a directory delegation, then, unless the delegation is <lb/>such that the situation can be resolved by sending a notification, <lb/>the delegation MUST be recalled, and the CREATE operation MUST NOT <lb/>proceed until the delegation is returned or revoked. Except where <lb/>this happens very quickly, one or more NFS4ERR_DELAY errors will be <lb/>returned to requests made while delegation remains outstanding. <lb/>When the current filehandle designates a directory for which one or <lb/>more directory delegations exist, then, when those delegations <lb/>request such notifications, NOTIFY4_ADD_ENTRY will be generated as a <lb/>result of this operation. <lb/>If the capability FSCHARSET_CAP4_ALLOWS_ONLY_UTF8 is set <lb/>(Section 14.4), and a symbolic link is being created, then the <lb/>content of the symbolic link MUST be in UTF-8 encoding. <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 441] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>18.4.4. IMPLEMENTATION <lb/>If the client desires to set attribute values after the create, a <lb/>SETATTR operation can be added to the COMPOUND request so that the <lb/>appropriate attributes will be set. <lb/>18.5. Operation 7: DELEGPURGE -Purge Delegations Awaiting Recovery <lb/>18.5.1. ARGUMENTS <lb/>struct DELEGPURGE4args { <lb/>clientid4 <lb/>clientid; <lb/>}; <lb/>18.5.2. RESULTS <lb/>struct DELEGPURGE4res { <lb/>nfsstat4 <lb/>status; <lb/>}; <lb/>18.5.3. DESCRIPTION <lb/>This operation purges all of the delegations awaiting recovery for a <lb/>given client. This is useful for clients that do not commit <lb/>delegation information to stable storage to indicate that conflicting <lb/>requests need not be delayed by the server awaiting recovery of <lb/>delegation information. <lb/>The client is NOT specified by the clientid field of the request. <lb/>The client SHOULD set the client field to zero, and the server MUST <lb/>ignore the clientid field. Instead, the server MUST derive the <lb/>client ID from the value of the session ID in the arguments of the <lb/>SEQUENCE operation that precedes DELEGPURGE in the COMPOUND request. <lb/>The DELEGPURGE operation should be used by clients that record <lb/>delegation information on stable storage on the client. In this <lb/>case, after the client recovers all delegations it knows of, it <lb/>should immediately send a DELEGPURGE operation. Doing so will notify <lb/>the server that no additional delegations for the client will be <lb/>recovered allowing it to free resources, and avoid delaying other <lb/>clients which make requests that conflict with the unrecovered <lb/>delegations. The set of delegations known to the server and the <lb/>client might be different. The reason for this is that after sending <lb/>a request that resulted in a delegation, the client might experience <lb/>a failure before it both received the delegation and committed the <lb/>delegation to the client's stable storage. <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 442] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>The server MAY support DELEGPURGE, but if it does not, it MUST NOT <lb/>support CLAIM_DELEGATE_PREV and MUST NOT support CLAIM_DELEG_PREV_FH. <lb/>18.6. Operation 8: DELEGRETURN -Return Delegation <lb/>18.6.1. ARGUMENTS <lb/>struct DELEGRETURN4args { <lb/>/* CURRENT_FH: delegated object */ <lb/>stateid4 <lb/>deleg_stateid; <lb/>}; <lb/>18.6.2. RESULTS <lb/>struct DELEGRETURN4res { <lb/>nfsstat4 <lb/>status; <lb/>}; <lb/>18.6.3. DESCRIPTION <lb/>The DELEGRETURN operation returns the delegation represented by the <lb/>current filehandle and stateid. <lb/>Delegations may be returned voluntarily (i.e., before the server has <lb/>recalled them) or when recalled. In either case, the client must <lb/>properly propagate state changed under the context of the delegation <lb/>to the server before returning the delegation. <lb/>The server MAY require that the principal, security flavor, and if <lb/>applicable, the GSS mechanism, combination that acquired the <lb/>delegation also be the one to send DELEGRETURN on the file. This <lb/>might not be possible if credentials for the principal are no longer <lb/>available. The server MAY allow the machine credential or SSV <lb/>credential (see Section 18.35) to send DELEGRETURN. <lb/>18.7. Operation 9: GETATTR -Get Attributes <lb/>18.7.1. ARGUMENTS <lb/>struct GETATTR4args { <lb/>/* CURRENT_FH: object */ <lb/>bitmap4 <lb/>attr_request; <lb/>}; <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 443] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>18.7.2. RESULTS <lb/>struct GETATTR4resok { <lb/>fattr4 <lb/>obj_attributes; <lb/>}; <lb/>union GETATTR4res switch (nfsstat4 status) { <lb/>case NFS4_OK: <lb/>GETATTR4resok resok4; <lb/>default: <lb/>void; <lb/>}; <lb/>18.7.3. DESCRIPTION <lb/>The GETATTR operation will obtain attributes for the file system <lb/>object specified by the current filehandle. The client sets a bit in <lb/>the bitmap argument for each attribute value that it would like the <lb/>server to return. The server returns an attribute bitmap that <lb/>indicates the attribute values that it was able to return, which will <lb/>include all attributes requested by the client that are attributes <lb/>supported by the server for the target file system. This bitmap is <lb/>followed by the attribute values ordered lowest attribute number <lb/>first. <lb/>The server MUST return a value for each attribute that the client <lb/>requests if the attribute is supported by the server for the target <lb/>file system. If the server does not support a particular attribute <lb/>on the target file system, then it MUST NOT return the attribute <lb/>value and MUST NOT set the attribute bit in the result bitmap. The <lb/>server MUST return an error if it supports an attribute on the target <lb/>but cannot obtain its value. In that case, no attribute values will <lb/>be returned. <lb/>File systems that are absent should be treated as having support for <lb/>a very small set of attributes as described in Section 11.4.1, even <lb/>if previously, when the file system was present, more attributes were <lb/>supported. <lb/>All servers MUST support the REQUIRED attributes as specified in <lb/>Section 5.6, for all file systems, with the exception of absent file <lb/>systems. <lb/>On success, the current filehandle retains its value. <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 444] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>18.7.4. IMPLEMENTATION <lb/>Suppose there is an OPEN_DELEGATE_WRITE delegation held by another <lb/>client for the file in question and size and/or change are among the <lb/>set of attributes being interrogated. The server has two choices. <lb/>First, the server can obtain the actual current value of these <lb/>attributes from the client holding the delegation by using the <lb/>CB_GETATTR callback. Second, the server, particularly when the <lb/>delegated client is unresponsive, can recall the delegation in <lb/>question. The GETATTR MUST NOT proceed until one of the following <lb/>occurs: <lb/>o The requested attribute values are returned in the response to <lb/>CB_GETATTR. <lb/>o The OPEN_DELEGATE_WRITE delegation is returned. <lb/>o The OPEN_DELEGATE_WRITE delegation is revoked. <lb/>Unless one of the above happens very quickly, one or more <lb/>NFS4ERR_DELAY errors will be returned while a delegation is <lb/>outstanding. <lb/>18.8. Operation 10: GETFH -Get Current Filehandle <lb/>18.8.1. ARGUMENTS <lb/>/* CURRENT_FH: */ <lb/>void; <lb/>18.8.2. RESULTS <lb/>struct GETFH4resok { <lb/>nfs_fh4 <lb/>object; <lb/>}; <lb/>union GETFH4res switch (nfsstat4 status) { <lb/>case NFS4_OK: <lb/>GETFH4resok <lb/>resok4; <lb/>default: <lb/>void; <lb/>}; <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 445] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>18.8.3. DESCRIPTION <lb/>This operation returns the current filehandle value. <lb/>On success, the current filehandle retains its value. <lb/>As described in Section 2.10.6.4, GETFH is REQUIRED or RECOMMENDED to <lb/>immediately follow certain operations, and servers are free to reject <lb/>such operations if the client fails to insert GETFH in the request as <lb/>REQUIRED or RECOMMENDED. Section 18.16.4.1 provides additional <lb/>justification for why GETFH MUST follow OPEN. <lb/>18.8.4. IMPLEMENTATION <lb/>Operations that change the current filehandle like LOOKUP or CREATE <lb/>do not automatically return the new filehandle as a result. For <lb/>instance, if a client needs to look up a directory entry and obtain <lb/>its filehandle, then the following request is needed. <lb/>PUTFH (directory filehandle) <lb/>LOOKUP (entry name) <lb/>GETFH <lb/>18.9. Operation 11: LINK -Create Link to a File <lb/>18.9.1. ARGUMENTS <lb/>struct LINK4args { <lb/>/* SAVED_FH: source object */ <lb/>/* CURRENT_FH: target directory */ <lb/>component4 <lb/>newname; <lb/>}; <lb/>18.9.2. RESULTS <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 446] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>struct LINK4resok { <lb/>change_info4 <lb/>cinfo; <lb/>}; <lb/>union LINK4res switch (nfsstat4 status) { <lb/>case NFS4_OK: <lb/>LINK4resok resok4; <lb/>default: <lb/>void; <lb/>}; <lb/>18.9.3. DESCRIPTION <lb/>The LINK operation creates an additional newname for the file <lb/>represented by the saved filehandle, as set by the SAVEFH operation, <lb/>in the directory represented by the current filehandle. The existing <lb/>file and the target directory must reside within the same file system <lb/>on the server. On success, the current filehandle will continue to <lb/>be the target directory. If an object exists in the target directory <lb/>with the same name as newname, the server must return NFS4ERR_EXIST. <lb/>For the target directory, the server returns change_info4 information <lb/>in cinfo. With the atomic field of the change_info4 data type, the <lb/>server will indicate if the before and after change attributes were <lb/>obtained atomically with respect to the link creation. <lb/>If the newname has a length of zero, or if newname does not obey the <lb/>UTF-8 definition, the error NFS4ERR_INVAL will be returned. <lb/>18.9.4. IMPLEMENTATION <lb/>The server MAY impose restrictions on the LINK operation such that <lb/>LINK may not be done when the file is open or when that open is done <lb/>by particular protocols, or with particular options or access modes. <lb/>When LINK is rejected because of such restrictions, the error <lb/>NFS4ERR_FILE_OPEN is returned. <lb/>If a server does implement such restrictions and those restrictions <lb/>include cases of NFSv4 opens preventing successful execution of a <lb/>link, the server needs to recall any delegations that could hide the <lb/>existence of opens relevant to that decision. The reason is that <lb/>when a client holds a delegation, the server might not have an <lb/>accurate account of the opens for that client, since the client may <lb/>execute OPENs and CLOSEs locally. The LINK operation must be delayed <lb/>only until a definitive result can be obtained. For example, suppose <lb/>there are multiple delegations and one of them establishes an open <lb/>whose presence would prevent the link. Given the server's semantics, <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 447] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>NFS4ERR_FILE_OPEN may be returned to the caller as soon as that <lb/>delegation is returned without waiting for other delegations to be <lb/>returned. Similarly, if such opens are not associated with <lb/>delegations, NFS4ERR_FILE_OPEN can be returned immediately with no <lb/>delegation recall being done. <lb/>If the current filehandle designates a directory for which another <lb/>client holds a directory delegation, then, unless the delegation is <lb/>such that the situation can be resolved by sending a notification, <lb/>the delegation MUST be recalled, and the operation cannot be <lb/>performed successfully until the delegation is returned or revoked. <lb/>Except where this happens very quickly, one or more NFS4ERR_DELAY <lb/>errors will be returned to requests made while delegation remains <lb/>outstanding. <lb/>When the current filehandle designates a directory for which one or <lb/>more directory delegations exist, then, when those delegations <lb/>request such notifications, instead of a recall, NOTIFY4_ADD_ENTRY <lb/>will be generated as a result of the LINK operation. <lb/>If the current file system supports the numlinks attribute, and other <lb/>clients have delegations to the file being linked, then those <lb/>delegations MUST be recalled and the LINK operation MUST NOT proceed <lb/>until all delegations are returned or revoked. Except where this <lb/>happens very quickly, one or more NFS4ERR_DELAY errors will be <lb/>returned to requests made while delegation remains outstanding. <lb/>Changes to any property of the "hard" linked files are reflected in <lb/>all of the linked files. When a link is made to a file, the <lb/>attributes for the file should have a value for numlinks that is one <lb/>greater than the value before the LINK operation. <lb/>The statement "file and the target directory must reside within the <lb/>same file system on the server" means that the fsid fields in the <lb/>attributes for the objects are the same. If they reside on different <lb/>file systems, the error NFS4ERR_XDEV is returned. This error may be <lb/>returned by some servers when there is an internal partitioning of a <lb/>file system that the LINK operation would violate. <lb/>On some servers, "." and ".." are illegal values for newname and the <lb/>error NFS4ERR_BADNAME will be returned if they are specified. <lb/>When the current filehandle designates a named attribute directory <lb/>and the object to be linked (the saved filehandle) is not a named <lb/>attribute for the same object, the error NFS4ERR_XDEV MUST be <lb/>returned. When the saved filehandle designates a named attribute and <lb/>the current filehandle is not the appropriate named attribute <lb/>directory, the error NFS4ERR_XDEV MUST also be returned. <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 448] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>When the current filehandle designates a named attribute directory <lb/>and the object to be linked (the saved filehandle) is a named <lb/>attribute within that directory, the server may return the error <lb/>NFS4ERR_NOTSUPP. <lb/>In the case that newname is already linked to the file represented by <lb/>the saved filehandle, the server will return NFS4ERR_EXIST. <lb/>Note that symbolic links are created with the CREATE operation. <lb/>18.10. Operation 12: LOCK -Create Lock <lb/>18.10.1. ARGUMENTS <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 449] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>/* <lb/>* For LOCK, transition from open_stateid and lock_owner <lb/>* to a lock stateid. <lb/>*/ <lb/>struct open_to_lock_owner4 { <lb/>seqid4 <lb/>open_seqid; <lb/>stateid4 <lb/>open_stateid; <lb/>seqid4 <lb/>lock_seqid; <lb/>lock_owner4 <lb/>lock_owner; <lb/>}; <lb/>/* <lb/>* For LOCK, existing lock stateid continues to request new <lb/>* file lock for the same lock_owner and open_stateid. <lb/>*/ <lb/>struct exist_lock_owner4 { <lb/>stateid4 <lb/>lock_stateid; <lb/>seqid4 <lb/>lock_seqid; <lb/>}; <lb/>union locker4 switch (bool new_lock_owner) { <lb/>case TRUE: <lb/>open_to_lock_owner4 <lb/>open_owner; <lb/>case FALSE: <lb/>exist_lock_owner4 <lb/>lock_owner; <lb/>}; <lb/>/* <lb/>* LOCK/LOCKT/LOCKU: Record lock management <lb/>*/ <lb/>struct LOCK4args { <lb/>/* CURRENT_FH: file */ <lb/>nfs_lock_type4 locktype; <lb/>bool <lb/>reclaim; <lb/>offset4 <lb/>offset; <lb/>length4 <lb/>length; <lb/>locker4 <lb/>locker; <lb/>}; <lb/>18.10.2. RESULTS <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 450] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>struct LOCK4denied { <lb/>offset4 <lb/>offset; <lb/>length4 <lb/>length; <lb/>nfs_lock_type4 locktype; <lb/>lock_owner4 <lb/>owner; <lb/>}; <lb/>struct LOCK4resok { <lb/>stateid4 <lb/>lock_stateid; <lb/>}; <lb/>union LOCK4res switch (nfsstat4 status) { <lb/>case NFS4_OK: <lb/>LOCK4resok <lb/>resok4; <lb/>case NFS4ERR_DENIED: <lb/>LOCK4denied <lb/>denied; <lb/>default: <lb/>void; <lb/>}; <lb/>18.10.3. DESCRIPTION <lb/>The LOCK operation requests a byte-range lock for the byte-range <lb/>specified by the offset and length parameters, and lock type <lb/>specified in the locktype parameter. If this is a reclaim request, <lb/>the reclaim parameter will be TRUE. <lb/>Bytes in a file may be locked even if those bytes are not currently <lb/>allocated to the file. To lock the file from a specific offset <lb/>through the end-of-file (no matter how long the file actually is) use <lb/>a length field equal to NFS4_UINT64_MAX. The server MUST return <lb/>NFS4ERR_INVAL under the following combinations of length and offset: <lb/>o Length is equal to zero. <lb/>o Length is not equal to NFS4_UINT64_MAX, and the sum of length and <lb/>offset exceeds NFS4_UINT64_MAX. <lb/>32-bit servers are servers that support locking for byte offsets that <lb/>fit within 32 bits (i.e., less than or equal to NFS4_UINT32_MAX). If <lb/>the client specifies a range that overlaps one or more bytes beyond <lb/>offset NFS4_UINT32_MAX but does not end at offset NFS4_UINT64_MAX, <lb/>then such a 32-bit server MUST return the error NFS4ERR_BAD_RANGE. <lb/>If the server returns NFS4ERR_DENIED, the owner, offset, and length <lb/>of a conflicting lock are returned. <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 451] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>The locker argument specifies the lock-owner that is associated with <lb/>the LOCK operation. The locker4 structure is a switched union that <lb/>indicates whether the client has already created byte-range locking <lb/>state associated with the current open file and lock-owner. In the <lb/>case in which it has, the argument is just a stateid representing the <lb/>set of locks associated with that open file and lock-owner, together <lb/>with a lock_seqid value that MAY be any value and MUST be ignored by <lb/>the server. In the case where no byte-range locking state has been <lb/>established, or the client does not have the stateid available, the <lb/>argument contains the stateid of the open file with which this lock <lb/>is to be associated, together with the lock-owner with which the lock <lb/>is to be associated. The open_to_lock_owner case covers the very <lb/>first lock done by a lock-owner for a given open file and offers a <lb/>method to use the established state of the open_stateid to transition <lb/>to the use of a lock stateid. <lb/>The following fields of the locker parameter MAY be set to any value <lb/>by the client and MUST be ignored by the server: <lb/>o The clientid field of the lock_owner field of the open_owner field <lb/>(locker.open_owner.lock_owner.clientid). The reason the server <lb/>MUST ignore the clientid field is that the server MUST derive the <lb/>client ID from the session ID from the SEQUENCE operation of the <lb/>COMPOUND request. <lb/>o The open_seqid and lock_seqid fields of the open_owner field <lb/>(locker.open_owner.open_seqid and locker.open_owner.lock_seqid). <lb/>o The lock_seqid field of the lock_owner field <lb/>(locker.lock_owner.lock_seqid). <lb/>Note that the client ID appearing in a LOCK4denied structure is the <lb/>actual client associated with the conflicting lock, whether this is <lb/>the client ID associated with the current session or a different one. <lb/>Thus, if the server returns NFS4ERR_DENIED, it MUST set the clientid <lb/>field of the owner field of the denied field. <lb/>If the current filehandle is not an ordinary file, an error will be <lb/>returned to the client. In the case that the current filehandle <lb/>represents an object of type NF4DIR, NFS4ERR_ISDIR is returned. If <lb/>the current filehandle designates a symbolic link, NFS4ERR_SYMLINK is <lb/>returned. In all other cases, NFS4ERR_WRONG_TYPE is returned. <lb/>On success, the current filehandle retains its value. <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 452] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>18.10.4. IMPLEMENTATION <lb/>If the server is unable to determine the exact offset and length of <lb/>the conflicting byte-range lock, the same offset and length that were <lb/>provided in the arguments should be returned in the denied results. <lb/>LOCK operations are subject to permission checks and to checks <lb/>against the access type of the associated file. However, the <lb/>specific right and modes required for various types of locks reflect <lb/>the semantics of the server-exported file system, and are not <lb/>specified by the protocol. For example, Windows 2000 allows a write <lb/>lock of a file open for read access, while a POSIX-compliant system <lb/>does not. <lb/>When the client sends a LOCK operation that corresponds to a range <lb/>that the lock-owner has locked already (with the same or different <lb/>lock type), or to a sub-range of such a range, or to a byte-range <lb/>that includes multiple locks already granted to that lock-owner, in <lb/>whole or in part, and the server does not support such locking <lb/>operations (i.e., does not support POSIX locking semantics), the <lb/>server will return the error NFS4ERR_LOCK_RANGE. In that case, the <lb/>client may return an error, or it may emulate the required <lb/>operations, using only LOCK for ranges that do not include any bytes <lb/>already locked by that lock-owner and LOCKU of locks held by that <lb/>lock-owner (specifying an exactly matching range and type). <lb/>Similarly, when the client sends a LOCK operation that amounts to <lb/>upgrading (changing from a READ_LT lock to a WRITE_LT lock) or <lb/>downgrading (changing from WRITE_LT lock to a READ_LT lock) an <lb/>existing byte-range lock, and the server does not support such a <lb/>lock, the server will return NFS4ERR_LOCK_NOTSUPP. Such operations <lb/>may not perfectly reflect the required semantics in the face of <lb/>conflicting LOCK operations from other clients. <lb/>When a client holds an OPEN_DELEGATE_WRITE delegation, the client <lb/>holding that delegation is assured that there are no opens by other <lb/>clients. Thus, there can be no conflicting LOCK operations from such <lb/>clients. Therefore, the client may be handling locking requests <lb/>locally, without doing LOCK operations on the server. If it does <lb/>that, it must be prepared to update the lock status on the server, by <lb/>sending appropriate LOCK and LOCKU operations before returning the <lb/>delegation. <lb/>When one or more clients hold OPEN_DELEGATE_READ delegations, any <lb/>LOCK operation where the server is implementing mandatory locking <lb/>semantics MUST result in the recall of all such delegations. The <lb/>LOCK operation may not be granted until all such delegations are <lb/>returned or revoked. Except where this happens very quickly, one or <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 453] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>more NFS4ERR_DELAY errors will be returned to requests made while the <lb/>delegation remains outstanding. <lb/>18.11. Operation 13: LOCKT -Test for Lock <lb/>18.11.1. ARGUMENTS <lb/>struct LOCKT4args { <lb/>/* CURRENT_FH: file */ <lb/>nfs_lock_type4 locktype; <lb/>offset4 <lb/>offset; <lb/>length4 <lb/>length; <lb/>lock_owner4 <lb/>owner; <lb/>}; <lb/>18.11.2. RESULTS <lb/>union LOCKT4res switch (nfsstat4 status) { <lb/>case NFS4ERR_DENIED: <lb/>LOCK4denied <lb/>denied; <lb/>case NFS4_OK: <lb/>void; <lb/>default: <lb/>void; <lb/>}; <lb/>18.11.3. DESCRIPTION <lb/>The LOCKT operation tests the lock as specified in the arguments. If <lb/>a conflicting lock exists, the owner, offset, length, and type of the <lb/>conflicting lock are returned. The owner field in the results <lb/>includes the client ID of the owner of the conflicting lock, whether <lb/>this is the client ID associated with the current session or a <lb/>different client ID. If no lock is held, nothing other than NFS4_OK <lb/>is returned. Lock types READ_LT and READW_LT are processed in the <lb/>same way in that a conflicting lock test is done without regard to <lb/>blocking or non-blocking. The same is true for WRITE_LT and <lb/>WRITEW_LT. <lb/>The ranges are specified as for LOCK. The NFS4ERR_INVAL and <lb/>NFS4ERR_BAD_RANGE errors are returned under the same circumstances as <lb/>for LOCK. <lb/>The clientid field of the owner MAY be set to any value by the client <lb/>and MUST be ignored by the server. The reason the server MUST ignore <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 454] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>the clientid field is that the server MUST derive the client ID from <lb/>the session ID from the SEQUENCE operation of the COMPOUND request. <lb/>If the current filehandle is not an ordinary file, an error will be <lb/>returned to the client. In the case that the current filehandle <lb/>represents an object of type NF4DIR, NFS4ERR_ISDIR is returned. If <lb/>the current filehandle designates a symbolic link, NFS4ERR_SYMLINK is <lb/>returned. In all other cases, NFS4ERR_WRONG_TYPE is returned. <lb/>On success, the current filehandle retains its value. <lb/>18.11.4. IMPLEMENTATION <lb/>If the server is unable to determine the exact offset and length of <lb/>the conflicting lock, the same offset and length that were provided <lb/>in the arguments should be returned in the denied results. <lb/>LOCKT uses a lock_owner4 rather a stateid4, as is used in LOCK to <lb/>identify the owner. This is because the client does not have to open <lb/>the file to test for the existence of a lock, so a stateid might not <lb/>be available. <lb/>As noted in Section 18.10.4, some servers may return <lb/>NFS4ERR_LOCK_RANGE to certain (otherwise non-conflicting) LOCK <lb/>operations that overlap ranges already granted to the current lock-<lb/>owner. <lb/>The LOCKT operation's test for conflicting locks SHOULD exclude locks <lb/>for the current lock-owner, and thus should return NFS4_OK in such <lb/>cases. Note that this means that a server might return NFS4_OK to a <lb/>LOCKT request even though a LOCK operation for the same range and <lb/>lock-owner would fail with NFS4ERR_LOCK_RANGE. <lb/>When a client holds an OPEN_DELEGATE_WRITE delegation, it may choose <lb/>(see Section 18.10.4) to handle LOCK requests locally. In such a <lb/>case, LOCKT requests will similarly be handled locally. <lb/>18.12. Operation 14: LOCKU -Unlock File <lb/>18.12.1. ARGUMENTS <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 455] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>struct LOCKU4args { <lb/>/* CURRENT_FH: file */ <lb/>nfs_lock_type4 locktype; <lb/>seqid4 <lb/>seqid; <lb/>stateid4 <lb/>lock_stateid; <lb/>offset4 <lb/>offset; <lb/>length4 <lb/>length; <lb/>}; <lb/>18.12.2. RESULTS <lb/>union LOCKU4res switch (nfsstat4 status) { <lb/>case <lb/>NFS4_OK: <lb/>stateid4 <lb/>lock_stateid; <lb/>default: <lb/>void; <lb/>}; <lb/>18.12.3. DESCRIPTION <lb/>The LOCKU operation unlocks the byte-range lock specified by the <lb/>parameters. The client may set the locktype field to any value that <lb/>is legal for the nfs_lock_type4 enumerated type, and the server MUST <lb/>accept any legal value for locktype. Any legal value for locktype <lb/>has no effect on the success or failure of the LOCKU operation. <lb/>The ranges are specified as for LOCK. The NFS4ERR_INVAL and <lb/>NFS4ERR_BAD_RANGE errors are returned under the same circumstances as <lb/>for LOCK. <lb/>The seqid parameter MAY be any value and the server MUST ignore it. <lb/>If the current filehandle is not an ordinary file, an error will be <lb/>returned to the client. In the case that the current filehandle <lb/>represents an object of type NF4DIR, NFS4ERR_ISDIR is returned. If <lb/>the current filehandle designates a symbolic link, NFS4ERR_SYMLINK is <lb/>returned. In all other cases, NFS4ERR_WRONG_TYPE is returned. <lb/>On success, the current filehandle retains its value. <lb/>The server MAY require that the principal, security flavor, and if <lb/>applicable, the GSS mechanism, combination that sent a LOCK operation <lb/>also be the one to send LOCKU on the file. This might not be <lb/>possible if credentials for the principal are no longer available. <lb/>The server MAY allow the machine credential or SSV credential (see <lb/>Section 18.35) to send LOCKU. <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 456] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>18.12.4. IMPLEMENTATION <lb/>If the area to be unlocked does not correspond exactly to a lock <lb/>actually held by the lock-owner, the server may return the error <lb/>NFS4ERR_LOCK_RANGE. This includes the case in which the area is not <lb/>locked, where the area is a sub-range of the area locked, where it <lb/>overlaps the area locked without matching exactly, or the area <lb/>specified includes multiple locks held by the lock-owner. In all of <lb/>these cases, allowed by POSIX locking [21] semantics, a client <lb/>receiving this error should, if it desires support for such <lb/>operations, simulate the operation using LOCKU on ranges <lb/>corresponding to locks it actually holds, possibly followed by LOCK <lb/>operations for the sub-ranges not being unlocked. <lb/>When a client holds an OPEN_DELEGATE_WRITE delegation, it may choose <lb/>(see Section 18.10.4) to handle LOCK requests locally. In such a <lb/>case, LOCKU operations will similarly be handled locally. <lb/>18.13. Operation 15: LOOKUP -Lookup Filename <lb/>18.13.1. ARGUMENTS <lb/>struct LOOKUP4args { <lb/>/* CURRENT_FH: directory */ <lb/>component4 <lb/>objname; <lb/>}; <lb/>18.13.2. RESULTS <lb/>struct LOOKUP4res { <lb/>/* New CURRENT_FH: object */ <lb/>nfsstat4 <lb/>status; <lb/>}; <lb/>18.13.3. DESCRIPTION <lb/>The LOOKUP operation looks up or finds a file system object using the <lb/>directory specified by the current filehandle. LOOKUP evaluates the <lb/>component and if the object exists, the current filehandle is <lb/>replaced with the component's filehandle. <lb/>If the component cannot be evaluated either because it does not exist <lb/>or because the client does not have permission to evaluate the <lb/>component, then an error will be returned and the current filehandle <lb/>will be unchanged. <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 457] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>If the component is a zero-length string or if any component does not <lb/>obey the UTF-8 definition, the error NFS4ERR_INVAL will be returned. <lb/>18.13.4. IMPLEMENTATION <lb/>If the client wants to achieve the effect of a multi-component look <lb/>up, it may construct a COMPOUND request such as (and obtain each <lb/>filehandle): <lb/>PUTFH (directory filehandle) <lb/>LOOKUP "pub" <lb/>GETFH <lb/>LOOKUP "foo" <lb/>GETFH <lb/>LOOKUP "bar" <lb/>GETFH <lb/>Unlike NFSv3, NFSv4.1 allows LOOKUP requests to cross mountpoints on <lb/>the server. The client can detect a mountpoint crossing by comparing <lb/>the fsid attribute of the directory with the fsid attribute of the <lb/>directory looked up. If the fsids are different, then the new <lb/>directory is a server mountpoint. UNIX clients that detect a <lb/>mountpoint crossing will need to mount the server's file system. <lb/>This needs to be done to maintain the file object identity checking <lb/>mechanisms common to UNIX clients. <lb/>Servers that limit NFS access to "shared" or "exported" file systems <lb/>should provide a pseudo file system into which the exported file <lb/>systems can be integrated, so that clients can browse the server's <lb/>namespace. The clients view of a pseudo file system will be limited <lb/>to paths that lead to exported file systems. <lb/>Note: previous versions of the protocol assigned special semantics to <lb/>the names "." and "..". NFSv4.1 assigns no special semantics to <lb/>these names. The LOOKUPP operator must be used to look up a parent <lb/>directory. <lb/>Note that this operation does not follow symbolic links. The client <lb/>is responsible for all parsing of filenames including filenames that <lb/>are modified by symbolic links encountered during the look up <lb/>process. <lb/>If the current filehandle supplied is not a directory but a symbolic <lb/>link, the error NFS4ERR_SYMLINK is returned as the error. For all <lb/>other non-directory file types, the error NFS4ERR_NOTDIR is returned. <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 458] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>18.14. Operation 16: LOOKUPP -Lookup Parent Directory <lb/>18.14.1. ARGUMENTS <lb/>/* CURRENT_FH: object */ <lb/>void; <lb/>18.14.2. RESULTS <lb/>struct LOOKUPP4res { <lb/>/* new CURRENT_FH: parent directory */ <lb/>nfsstat4 <lb/>status; <lb/>}; <lb/>18.14.3. DESCRIPTION <lb/>The current filehandle is assumed to refer to a regular directory or <lb/>a named attribute directory. LOOKUPP assigns the filehandle for its <lb/>parent directory to be the current filehandle. If there is no parent <lb/>directory, an NFS4ERR_NOENT error must be returned. Therefore, <lb/>NFS4ERR_NOENT will be returned by the server when the current <lb/>filehandle is at the root or top of the server's file tree. <lb/>As is the case with LOOKUP, LOOKUPP will also cross mountpoints. <lb/>If the current filehandle is not a directory or named attribute <lb/>directory, the error NFS4ERR_NOTDIR is returned. <lb/>If the requester's security flavor does not match that configured for <lb/>the parent directory, then the server SHOULD return NFS4ERR_WRONGSEC <lb/>(a future minor revision of NFSv4 may upgrade this to MUST) in the <lb/>LOOKUPP response. However, if the server does so, it MUST support <lb/>the SECINFO_NO_NAME operation (Section 18.45), so that the client can <lb/>gracefully determine the correct security flavor. <lb/>If the current filehandle is a named attribute directory that is <lb/>associated with a file system object via OPENATTR (i.e., not a sub-<lb/>directory of a named attribute directory), LOOKUPP SHOULD return the <lb/>filehandle of the associated file system object. <lb/>18.14.4. IMPLEMENTATION <lb/>An issue to note is upward navigation from named attribute <lb/>directories. The named attribute directories are essentially <lb/>detached from the namespace, and this property should be safely <lb/>represented in the client operating environment. LOOKUPP on a named <lb/>attribute directory may return the filehandle of the associated file, <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 459] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>and conveying this to applications might be unsafe as many <lb/>applications expect the parent of an object to always be a directory. <lb/>Therefore, the client may want to hide the parent of named attribute <lb/>directories (represented as ".." in UNIX) or represent the named <lb/>attribute directory as its own parent (as is typically done for the <lb/>file system root directory in UNIX). <lb/>18.15. Operation 17: NVERIFY -Verify Difference in Attributes <lb/>18.15.1. ARGUMENTS <lb/>struct NVERIFY4args { <lb/>/* CURRENT_FH: object */ <lb/>fattr4 <lb/>obj_attributes; <lb/>}; <lb/>18.15.2. RESULTS <lb/>struct NVERIFY4res { <lb/>nfsstat4 <lb/>status; <lb/>}; <lb/>18.15.3. DESCRIPTION <lb/>This operation is used to prefix a sequence of operations to be <lb/>performed if one or more attributes have changed on some file system <lb/>object. If all the attributes match, then the error NFS4ERR_SAME <lb/>MUST be returned. <lb/>On success, the current filehandle retains its value. <lb/>18.15.4. IMPLEMENTATION <lb/>This operation is useful as a cache validation operator. If the <lb/>object to which the attributes belong has changed, then the following <lb/>operations may obtain new data associated with that object, for <lb/>instance, to check if a file has been changed and obtain new data if <lb/>it has: <lb/>SEQUENCE <lb/>PUTFH fh <lb/>NVERIFY attrbits attrs <lb/>READ 0 32767 <lb/>Contrast this with NFSv3, which would first send a GETATTR in one <lb/>request/reply round trip, and then if attributes indicated that the <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 460] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>client's cache was stale, then send a READ in another request/reply <lb/>round trip. <lb/>In the case that a RECOMMENDED attribute is specified in the NVERIFY <lb/>operation and the server does not support that attribute for the file <lb/>system object, the error NFS4ERR_ATTRNOTSUPP is returned to the <lb/>client. <lb/>When the attribute rdattr_error or any set-only attribute (e.g., <lb/>time_modify_set) is specified, the error NFS4ERR_INVAL is returned to <lb/>the client. <lb/>18.16. Operation 18: OPEN -Open a Regular File <lb/>18.16.1. ARGUMENTS <lb/>/* <lb/>* Various definitions for OPEN <lb/>*/ <lb/>enum createmode4 { <lb/>UNCHECKED4 <lb/>= 0, <lb/>GUARDED4 <lb/>= 1, <lb/>/* Deprecated in NFSv4.1. */ <lb/>EXCLUSIVE4 <lb/>= 2, <lb/>/* <lb/>* New to NFSv4.1. If session is persistent, <lb/>* GUARDED4 MUST be used. Otherwise, use <lb/>* EXCLUSIVE4_1 instead of EXCLUSIVE4. <lb/>*/ <lb/>EXCLUSIVE4_1 <lb/>= 3 <lb/>}; <lb/>struct creatverfattr { <lb/>verifier4 <lb/>cva_verf; <lb/>fattr4 <lb/>cva_attrs; <lb/>}; <lb/>union createhow4 switch (createmode4 mode) { <lb/>case UNCHECKED4: <lb/>case GUARDED4: <lb/>fattr4 <lb/>createattrs; <lb/>case EXCLUSIVE4: <lb/>verifier4 <lb/>createverf; <lb/>case EXCLUSIVE4_1: <lb/>creatverfattr ch_createboth; <lb/>}; <lb/>enum opentype4 { <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 461] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>OPEN4_NOCREATE = 0, <lb/>OPEN4_CREATE <lb/>= 1 <lb/>}; <lb/>union openflag4 switch (opentype4 opentype) { <lb/>case OPEN4_CREATE: <lb/>createhow4 <lb/>how; <lb/>default: <lb/>void; <lb/>}; <lb/>/* Next definitions used for OPEN delegation */ <lb/>enum limit_by4 { <lb/>NFS_LIMIT_SIZE <lb/>= 1, <lb/>NFS_LIMIT_BLOCKS <lb/>= 2 <lb/>/* others as needed */ <lb/>}; <lb/>struct nfs_modified_limit4 { <lb/>uint32_t <lb/>num_blocks; <lb/>uint32_t <lb/>bytes_per_block; <lb/>}; <lb/>union nfs_space_limit4 switch (limit_by4 limitby) { <lb/>/* limit specified as file size */ <lb/>case NFS_LIMIT_SIZE: <lb/>uint64_t <lb/>filesize; <lb/>/* limit specified by number of blocks */ <lb/>case NFS_LIMIT_BLOCKS: <lb/>nfs_modified_limit4 <lb/>mod_blocks; <lb/>} ; <lb/>/* <lb/>* Share Access and Deny constants for open argument <lb/>*/ <lb/>const OPEN4_SHARE_ACCESS_READ <lb/>= 0x00000001; <lb/>const OPEN4_SHARE_ACCESS_WRITE = 0x00000002; <lb/>const OPEN4_SHARE_ACCESS_BOTH <lb/>= 0x00000003; <lb/>const OPEN4_SHARE_DENY_NONE <lb/>= 0x00000000; <lb/>const OPEN4_SHARE_DENY_READ <lb/>= 0x00000001; <lb/>const OPEN4_SHARE_DENY_WRITE <lb/>= 0x00000002; <lb/>const OPEN4_SHARE_DENY_BOTH <lb/>= 0x00000003; <lb/>/* new flags for share_access field of OPEN4args */ <lb/>const OPEN4_SHARE_ACCESS_WANT_DELEG_MASK <lb/>= 0xFF00; <lb/>const OPEN4_SHARE_ACCESS_WANT_NO_PREFERENCE <lb/>= 0x0000; <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 462] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>const OPEN4_SHARE_ACCESS_WANT_READ_DELEG <lb/>= 0x0100; <lb/>const OPEN4_SHARE_ACCESS_WANT_WRITE_DELEG <lb/>= 0x0200; <lb/>const OPEN4_SHARE_ACCESS_WANT_ANY_DELEG <lb/>= 0x0300; <lb/>const OPEN4_SHARE_ACCESS_WANT_NO_DELEG <lb/>= 0x0400; <lb/>const OPEN4_SHARE_ACCESS_WANT_CANCEL <lb/>= 0x0500; <lb/>const <lb/>OPEN4_SHARE_ACCESS_WANT_SIGNAL_DELEG_WHEN_RESRC_AVAIL <lb/>= 0x10000; <lb/>const <lb/>OPEN4_SHARE_ACCESS_WANT_PUSH_DELEG_WHEN_UNCONTENDED <lb/>= 0x20000; <lb/>enum open_delegation_type4 { <lb/>OPEN_DELEGATE_NONE <lb/>= 0, <lb/>OPEN_DELEGATE_READ <lb/>= 1, <lb/>OPEN_DELEGATE_WRITE <lb/>= 2, <lb/>OPEN_DELEGATE_NONE_EXT = 3 /* new to v4.1 */ <lb/>}; <lb/>enum open_claim_type4 { <lb/>/* <lb/>* Not a reclaim. <lb/>*/ <lb/>CLAIM_NULL <lb/>= 0, <lb/>CLAIM_PREVIOUS <lb/>= 1, <lb/>CLAIM_DELEGATE_CUR <lb/>= 2, <lb/>CLAIM_DELEGATE_PREV <lb/>= 3, <lb/>/* <lb/>* Not a reclaim. <lb/>* <lb/>* Like CLAIM_NULL, but object identified <lb/>* by the current filehandle. <lb/>*/ <lb/>CLAIM_FH <lb/>= 4, /* new to v4.1 */ <lb/>/* <lb/>* Like CLAIM_DELEGATE_CUR, but object identified <lb/>* by current filehandle. <lb/>*/ <lb/>CLAIM_DELEG_CUR_FH <lb/>= 5, /* new to v4.1 */ <lb/>/* <lb/>* Like CLAIM_DELEGATE_PREV, but object identified <lb/>* by current filehandle. <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 463] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>*/ <lb/>CLAIM_DELEG_PREV_FH <lb/>= 6 /* new to v4.1 */ <lb/>}; <lb/>struct open_claim_delegate_cur4 { <lb/>stateid4 <lb/>delegate_stateid; <lb/>component4 <lb/>file; <lb/>}; <lb/>union open_claim4 switch (open_claim_type4 claim) { <lb/>/* <lb/>* No special rights to file. <lb/>* Ordinary OPEN of the specified file. <lb/>*/ <lb/>case CLAIM_NULL: <lb/>/* CURRENT_FH: directory */ <lb/>component4 <lb/>file; <lb/>/* <lb/>* Right to the file established by an <lb/>* open previous to server reboot. File <lb/>* identified by filehandle obtained at <lb/>* that time rather than by name. <lb/>*/ <lb/>case CLAIM_PREVIOUS: <lb/>/* CURRENT_FH: file being reclaimed */ <lb/>open_delegation_type4 <lb/>delegate_type; <lb/>/* <lb/>* Right to file based on a delegation <lb/>* granted by the server. File is <lb/>* specified by name. <lb/>*/ <lb/>case CLAIM_DELEGATE_CUR: <lb/>/* CURRENT_FH: directory */ <lb/>open_claim_delegate_cur4 <lb/>delegate_cur_info; <lb/>/* <lb/>* Right to file based on a delegation <lb/>* granted to a previous boot instance <lb/>* of the client. File is specified by name. <lb/>*/ <lb/>case CLAIM_DELEGATE_PREV: <lb/>/* CURRENT_FH: directory */ <lb/>component4 <lb/>file_delegate_prev; <lb/>/* <lb/>* Like CLAIM_NULL. No special rights <lb/>* to file. Ordinary OPEN of the <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 464] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>* specified file by current filehandle. <lb/>*/ <lb/>case CLAIM_FH: /* new to v4.1 */ <lb/>/* CURRENT_FH: regular file to open */ <lb/>void; <lb/>/* <lb/>* Like CLAIM_DELEGATE_PREV. Right to file based on a <lb/>* delegation granted to a previous boot <lb/>* instance of the client. File is identified by <lb/>* by filehandle. <lb/>*/ <lb/>case CLAIM_DELEG_PREV_FH: /* new to v4.1 */ <lb/>/* CURRENT_FH: file being opened */ <lb/>void; <lb/>/* <lb/>* Like CLAIM_DELEGATE_CUR. Right to file based on <lb/>* a delegation granted by the server. <lb/>* File is identified by filehandle. <lb/>*/ <lb/>case CLAIM_DELEG_CUR_FH: /* new to v4.1 */ <lb/>/* CURRENT_FH: file being opened */ <lb/>stateid4 <lb/>oc_delegate_stateid; <lb/>}; <lb/>/* <lb/>* OPEN: Open a file, potentially receiving an OPEN delegation <lb/>*/ <lb/>struct OPEN4args { <lb/>seqid4 <lb/>seqid; <lb/>uint32_t <lb/>share_access; <lb/>uint32_t <lb/>share_deny; <lb/>open_owner4 <lb/>owner; <lb/>openflag4 <lb/>openhow; <lb/>open_claim4 <lb/>claim; <lb/>}; <lb/>18.16.2. RESULTS <lb/>struct open_read_delegation4 { <lb/>stateid4 stateid; <lb/>/* Stateid for delegation*/ <lb/>bool <lb/>recall; <lb/>/* Pre-recalled flag for <lb/>delegations obtained <lb/>by reclaim (CLAIM_PREVIOUS) */ <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 465] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>nfsace4 permissions; /* Defines users who don't <lb/>need an ACCESS call to <lb/>open for read */ <lb/>}; <lb/>struct open_write_delegation4 { <lb/>stateid4 stateid; <lb/>/* Stateid for delegation */ <lb/>bool <lb/>recall; <lb/>/* Pre-recalled flag for <lb/>delegations obtained <lb/>by reclaim <lb/>(CLAIM_PREVIOUS) */ <lb/>nfs_space_limit4 <lb/>space_limit; /* Defines condition that <lb/>the client must check to <lb/>determine whether the <lb/>file needs to be flushed <lb/>to the server on close. */ <lb/>nfsace4 <lb/>permissions; /* Defines users who don't <lb/>need an ACCESS call as <lb/>part of a delegated <lb/>open. */ <lb/>}; <lb/>enum why_no_delegation4 { /* new to v4.1 */ <lb/>WND4_NOT_WANTED <lb/>= 0, <lb/>WND4_CONTENTION <lb/>= 1, <lb/>WND4_RESOURCE <lb/>= 2, <lb/>WND4_NOT_SUPP_FTYPE <lb/>= 3, <lb/>WND4_WRITE_DELEG_NOT_SUPP_FTYPE = 4, <lb/>WND4_NOT_SUPP_UPGRADE <lb/>= 5, <lb/>WND4_NOT_SUPP_DOWNGRADE = 6, <lb/>WND4_CANCELLED <lb/>= 7, <lb/>WND4_IS_DIR <lb/>= 8 <lb/>}; <lb/>union open_none_delegation4 /* new to v4.1 */ <lb/>switch (why_no_delegation4 ond_why) { <lb/>case WND4_CONTENTION: <lb/>bool ond_server_will_push_deleg; <lb/>case WND4_RESOURCE: <lb/>bool ond_server_will_signal_avail; <lb/>default: <lb/>void; <lb/>}; <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 466] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>union open_delegation4 <lb/>switch (open_delegation_type4 delegation_type) { <lb/>case OPEN_DELEGATE_NONE: <lb/>void; <lb/>case OPEN_DELEGATE_READ: <lb/>open_read_delegation4 read; <lb/>case OPEN_DELEGATE_WRITE: <lb/>open_write_delegation4 write; <lb/>case OPEN_DELEGATE_NONE_EXT: /* new to v4.1 */ <lb/>open_none_delegation4 od_whynone; <lb/>}; <lb/>/* <lb/>* Result flags <lb/>*/ <lb/>/* Client must confirm open */ <lb/>const OPEN4_RESULT_CONFIRM <lb/>= 0x00000002; <lb/>/* Type of file locking behavior at the server */ <lb/>const OPEN4_RESULT_LOCKTYPE_POSIX = 0x00000004; <lb/>/* Server will preserve file if removed while open */ <lb/>const OPEN4_RESULT_PRESERVE_UNLINKED = 0x00000008; <lb/>/* <lb/>* Server may use CB_NOTIFY_LOCK on locks <lb/>* derived from this open <lb/>*/ <lb/>const OPEN4_RESULT_MAY_NOTIFY_LOCK = 0x00000020; <lb/>struct OPEN4resok { <lb/>stateid4 <lb/>stateid; <lb/>/* Stateid for open */ <lb/>change_info4 <lb/>cinfo; <lb/>/* Directory Change Info */ <lb/>uint32_t <lb/>rflags; <lb/>/* Result flags */ <lb/>bitmap4 <lb/>attrset; <lb/>/* attribute set for create*/ <lb/>open_delegation4 delegation; /* Info on any open <lb/>delegation */ <lb/>}; <lb/>union OPEN4res switch (nfsstat4 status) { <lb/>case NFS4_OK: <lb/>/* New CURRENT_FH: opened file */ <lb/>OPEN4resok <lb/>resok4; <lb/>default: <lb/>void; <lb/>}; <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 467] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>18.16.3. DESCRIPTION <lb/>The OPEN operation opens a regular file in a directory with the <lb/>provided name or filehandle. OPEN can also create a file if a name <lb/>is provided, and the client specifies it wants to create a file. <lb/>Specification of whether or not a file is to be created, and the <lb/>method of creation is via the openhow parameter. The openhow <lb/>parameter consists of a switched union (data type opengflag4), which <lb/>switches on the value of opentype (OPEN4_NOCREATE or OPEN4_CREATE). <lb/>If OPEN4_CREATE is specified, this leads to another switched union <lb/>(data type createhow4) that supports four cases of creation methods: <lb/>UNCHECKED4, GUARDED4, EXCLUSIVE4, or EXCLUSIVE4_1. If opentype is <lb/>OPEN4_CREATE, then the claim field of the claim field MUST be one of <lb/>CLAIM_NULL, CLAIM_DELEGATE_CUR, or CLAIM_DELEGATE_PREV, because these <lb/>claim methods include a component of a file name. <lb/>Upon success (which might entail creation of a new file), the current <lb/>filehandle is replaced by that of the created or existing object. <lb/>If the current filehandle is a named attribute directory, OPEN will <lb/>then create or open a named attribute file. Note that exclusive <lb/>create of a named attribute is not supported. If the createmode is <lb/>EXCLUSIVE4 or EXCLUSIVE4_1 and the current filehandle is a named <lb/>attribute directory, the server will return EINVAL. <lb/>UNCHECKED4 means that the file should be created if a file of that <lb/>name does not exist and encountering an existing regular file of that <lb/>name is not an error. For this type of create, createattrs specifies <lb/>the initial set of attributes for the file. The set of attributes <lb/>may include any writable attribute valid for regular files. When an <lb/>UNCHECKED4 create encounters an existing file, the attributes <lb/>specified by createattrs are not used, except that when createattrs <lb/>specifies the size attribute with a size of zero, the existing file <lb/>is truncated. <lb/>If GUARDED4 is specified, the server checks for the presence of a <lb/>duplicate object by name before performing the create. If a <lb/>duplicate exists, NFS4ERR_EXIST is returned. If the object does not <lb/>exist, the request is performed as described for UNCHECKED4. <lb/>For the UNCHECKED4 and GUARDED4 cases, where the operation is <lb/>successful, the server will return to the client an attribute mask <lb/>signifying which attributes were successfully set for the object. <lb/>EXCLUSIVE4_1 and EXCLUSIVE4 specify that the server is to follow <lb/>exclusive creation semantics, using the verifier to ensure exclusive <lb/>creation of the target. The server should check for the presence of <lb/>a duplicate object by name. If the object does not exist, the server <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 468] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>creates the object and stores the verifier with the object. If the <lb/>object does exist and the stored verifier matches the client provided <lb/>verifier, the server uses the existing object as the newly created <lb/>object. If the stored verifier does not match, then an error of <lb/>NFS4ERR_EXIST is returned. <lb/>If using EXCLUSIVE4, and if the server uses attributes to store the <lb/>exclusive create verifier, the server will signify which attributes <lb/>it used by setting the appropriate bits in the attribute mask that is <lb/>returned in the results. Unlike UNCHECKED4, GUARDED4, and <lb/>EXCLUSIVE4_1, EXCLUSIVE4 does not support the setting of attributes <lb/>at file creation, and after a successful OPEN via EXCLUSIVE4, the <lb/>client MUST send a SETATTR to set attributes to a known state. <lb/>In NFSv4.1, EXCLUSIVE4 has been deprecated in favor of EXCLUSIVE4_1. <lb/>Unlike EXCLUSIVE4, attributes may be provided in the EXCLUSIVE4_1 <lb/>case, but because the server may use attributes of the target object <lb/>to store the verifier, the set of allowable attributes may be fewer <lb/>than the set of attributes SETATTR allows. The allowable attributes <lb/>for EXCLUSIVE4_1 are indicated in the suppattr_exclcreat <lb/>(Section 5.8.1.14) attribute. If the client attempts to set in <lb/>cva_attrs an attribute that is not in suppattr_exclcreat, the server <lb/>MUST return NFS4ERR_INVAL. The response field, attrset, indicates <lb/>both which attributes the server set from cva_attrs and which <lb/>attributes the server used to store the verifier. As described in <lb/>Section 18.16.4, the client can compare cva_attrs.attrmask with <lb/>attrset to determine which attributes were used to store the <lb/>verifier. <lb/>With the addition of persistent sessions and pNFS, under some <lb/>conditions EXCLUSIVE4 MUST NOT be used by the client or supported by <lb/>the server. The following table summarizes the appropriate and <lb/>mandated exclusive create methods for implementations of NFSv4.1: <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 469] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>Required methods for exclusive create <lb/>+----------------+-----------+---------------+----------------------+ <lb/>| Persistent <lb/>| Server <lb/>| Server <lb/>| Client Allowed <lb/>| <lb/>| Reply Cache <lb/>| Supports | REQUIRED <lb/>| <lb/>| <lb/>| Enabled <lb/>| pNFS <lb/>| <lb/>| <lb/>| <lb/>+----------------+-----------+---------------+----------------------+ <lb/>| no <lb/>| no <lb/>| EXCLUSIVE4_1 | EXCLUSIVE4_1 <lb/>| <lb/>| <lb/>| <lb/>| and <lb/>| (SHOULD) or <lb/>| <lb/>| <lb/>| <lb/>| EXCLUSIVE4 <lb/>| EXCLUSIVE4 (SHOULD <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| NOT) <lb/>| <lb/>| no <lb/>| yes <lb/>| EXCLUSIVE4_1 | EXCLUSIVE4_1 <lb/>| <lb/>| yes <lb/>| no <lb/>| GUARDED4 <lb/>| GUARDED4 <lb/>| <lb/>| yes <lb/>| yes <lb/>| GUARDED4 <lb/>| GUARDED4 <lb/>| <lb/>+----------------+-----------+---------------+----------------------+ <lb/>Table 10 <lb/>If CREATE_SESSION4_FLAG_PERSIST is set in the results of <lb/>CREATE_SESSION, the reply cache is persistent (see Section 18.36). <lb/>If the EXCHGID4_FLAG_USE_PNFS_MDS flag is set in the results from <lb/>EXCHANGE_ID, the server is a pNFS server (see Section 18.35). If the <lb/>client attempts to use EXCLUSIVE4 on a persistent session, or a <lb/>session derived from an EXCHGID4_FLAG_USE_PNFS_MDS client ID, the <lb/>server MUST return NFS4ERR_INVAL. <lb/>With persistent sessions, exclusive create semantics are fully <lb/>achievable via GUARDED4, and so EXCLUSIVE4 or EXCLUSIVE4_1 MUST NOT <lb/>be used. When pNFS is being used, the layout_hint attribute might <lb/>not be supported after the file is created. Only the EXCLUSIVE4_1 <lb/>and GUARDED methods of exclusive file creation allow the atomic <lb/>setting of attributes. <lb/>For the target directory, the server returns change_info4 information <lb/>in cinfo. With the atomic field of the change_info4 data type, the <lb/>server will indicate if the before and after change attributes were <lb/>obtained atomically with respect to the link creation. <lb/>The OPEN operation provides for Windows share reservation capability <lb/>with the use of the share_access and share_deny fields of the OPEN <lb/>arguments. The client specifies at OPEN the required share_access <lb/>and share_deny modes. For clients that do not directly support <lb/>SHAREs (i.e., UNIX), the expected deny value is <lb/>OPEN4_SHARE_DENY_NONE. In the case that there is an existing SHARE <lb/>reservation that conflicts with the OPEN request, the server returns <lb/>the error NFS4ERR_SHARE_DENIED. For additional discussion of SHARE <lb/>semantics, see Section 9.7. <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 470] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>For each OPEN, the client provides a value for the owner field of the <lb/>OPEN argument. The owner field is of data type open_owner4, and <lb/>contains a field called clientid and a field called owner. The <lb/>client can set the clientid field to any value and the server MUST <lb/>ignore it. Instead, the server MUST derive the client ID from the <lb/>session ID of the SEQUENCE operation of the COMPOUND request. <lb/>The "seqid" field of the request is not used in NFSv4.1, but it MAY <lb/>be any value and the server MUST ignore it. <lb/>In the case that the client is recovering state from a server <lb/>failure, the claim field of the OPEN argument is used to signify that <lb/>the request is meant to reclaim state previously held. <lb/>The "claim" field of the OPEN argument is used to specify the file to <lb/>be opened and the state information that the client claims to <lb/>possess. There are seven claim types as follows: <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 471] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>+----------------------+--------------------------------------------+ <lb/>| open type <lb/>| description <lb/>| <lb/>+----------------------+--------------------------------------------+ <lb/>| CLAIM_NULL, CLAIM_FH | For the client, this is a new OPEN request | <lb/>| <lb/>| and there is no previous state associated | <lb/>| <lb/>| with the file for the client. With <lb/>| <lb/>| <lb/>| CLAIM_NULL, the file is identified by the | <lb/>| <lb/>| current filehandle and the specified <lb/>| <lb/>| <lb/>| component name. With CLAIM_FH (new to <lb/>| <lb/>| <lb/>| NFSv4.1), the file is identified by just <lb/>| <lb/>| <lb/>| the current filehandle. <lb/>| <lb/>| CLAIM_PREVIOUS <lb/>| The client is claiming basic OPEN state <lb/>| <lb/>| <lb/>| for a file that was held previous to a <lb/>| <lb/>| <lb/>| server restart. Generally used when a <lb/>| <lb/>| <lb/>| server is returning persistent <lb/>| <lb/>| <lb/>| filehandles; the client may not have the <lb/>| <lb/>| <lb/>| file name to reclaim the OPEN. <lb/>| <lb/>| CLAIM_DELEGATE_CUR, | The client is claiming a delegation for <lb/>| <lb/>| CLAIM_DELEG_CUR_FH <lb/>| OPEN as granted by the server. Generally, | <lb/>| <lb/>| this is done as part of recalling a <lb/>| <lb/>| <lb/>| delegation. With CLAIM_DELEGATE_CUR, the | <lb/>| <lb/>| file is identified by the current <lb/>| <lb/>| <lb/>| filehandle and the specified component <lb/>| <lb/>| <lb/>| name. With CLAIM_DELEG_CUR_FH (new to <lb/>| <lb/>| <lb/>| NFSv4.1), the file is identified by just <lb/>| <lb/>| <lb/>| the current filehandle. <lb/>| <lb/>| CLAIM_DELEGATE_PREV, | The client is claiming a delegation <lb/>| <lb/>| CLAIM_DELEG_PREV_FH | granted to a previous client instance; <lb/>| <lb/>| <lb/>| used after the client restarts. The server | <lb/>| <lb/>| MAY support CLAIM_DELEGATE_PREV and/or <lb/>| <lb/>| <lb/>| CLAIM_DELEG_PREV_FH (new to NFSv4.1). If | <lb/>| <lb/>| it does support either claim type, <lb/>| <lb/>| <lb/>| CREATE_SESSION MUST NOT remove the <lb/>| <lb/>| <lb/>| client's delegation state, and the server | <lb/>| <lb/>| MUST support the DELEGPURGE operation. <lb/>| <lb/>+----------------------+--------------------------------------------+ <lb/>For OPEN requests that reach the server during the grace period, the <lb/>server returns an error of NFS4ERR_GRACE. The following claim types <lb/>are exceptions: <lb/>o OPEN requests specifying the claim type CLAIM_PREVIOUS are devoted <lb/>to reclaiming opens after a server restart and are typically only <lb/>valid during the grace period. <lb/>o OPEN requests specifying the claim types CLAIM_DELEGATE_CUR and <lb/>CLAIM_DELEG_CUR_FH are valid both during and after the grace <lb/>period. Since the granting of the delegation that they are <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 472] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>subordinate to assures that there is no conflict with locks to be <lb/>reclaimed by other clients, the server need not return <lb/>NFS4ERR_GRACE when these are received during the grace period. <lb/>For any OPEN request, the server may return an OPEN delegation, which <lb/>allows further opens and closes to be handled locally on the client <lb/>as described in Section 10.4. Note that delegation is up to the <lb/>server to decide. The client should never assume that delegation <lb/>will or will not be granted in a particular instance. It should <lb/>always be prepared for either case. A partial exception is the <lb/>reclaim (CLAIM_PREVIOUS) case, in which a delegation type is claimed. <lb/>In this case, delegation will always be granted, although the server <lb/>may specify an immediate recall in the delegation structure. <lb/>The rflags returned by a successful OPEN allow the server to return <lb/>information governing how the open file is to be handled. <lb/>o OPEN4_RESULT_CONFIRM is deprecated and MUST NOT be returned by an <lb/>NFSv4.1 server. <lb/>o OPEN4_RESULT_LOCKTYPE_POSIX indicates that the server's byte-range <lb/>locking behavior supports the complete set of POSIX locking <lb/>techniques [21]. From this, the client can choose to manage byte-<lb/>range locking state in a way to handle a mismatch of byte-range <lb/>locking management. <lb/>o OPEN4_RESULT_PRESERVE_UNLINKED indicates that the server will <lb/>preserve the open file if the client (or any other client) removes <lb/>the file as long as it is open. Furthermore, the server promises <lb/>to preserve the file through the grace period after server <lb/>restart, thereby giving the client the opportunity to reclaim its <lb/>open. <lb/>o OPEN4_RESULT_MAY_NOTIFY_LOCK indicates that the server may attempt <lb/>CB_NOTIFY_LOCK callbacks for locks on this file. This flag is a <lb/>hint only, and may be safely ignored by the client. <lb/>If the component is of zero length, NFS4ERR_INVAL will be returned. <lb/>The component is also subject to the normal UTF-8, character support, <lb/>and name checks. See Section 14.5 for further discussion. <lb/>When an OPEN is done and the specified open-owner already has the <lb/>resulting filehandle open, the result is to "OR" together the new <lb/>share and deny status together with the existing status. In this <lb/>case, only a single CLOSE need be done, even though multiple OPENs <lb/>were completed. When such an OPEN is done, checking of share <lb/>reservations for the new OPEN proceeds normally, with no exception <lb/>for the existing OPEN held by the same open-owner. In this case, the <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 473] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>stateid returned as an "other" field that matches that of the <lb/>previous open while the "seqid" field is incremented to reflect the <lb/>change status due to the new open. <lb/>If the underlying file system at the server is only accessible in a <lb/>read-only mode and the OPEN request has specified ACCESS_WRITE or <lb/>ACCESS_BOTH, the server will return NFS4ERR_ROFS to indicate a read-<lb/>only file system. <lb/>As with the CREATE operation, the server MUST derive the owner, owner <lb/>ACE, group, or group ACE if any of the four attributes are required <lb/>and supported by the server's file system. For an OPEN with the <lb/>EXCLUSIVE4 createmode, the server has no choice, since such OPEN <lb/>calls do not include the createattrs field. Conversely, if <lb/>createattrs (UNCHECKED4 or GUARDED4) or cva_attrs (EXCLUSIVE4_1) is <lb/>specified, and includes an owner, owner_group, or ACE that the <lb/>principal in the RPC call's credentials does not have authorization <lb/>to create files for, then the server may return NFS4ERR_PERM. <lb/>In the case of an OPEN that specifies a size of zero (e.g., <lb/>truncation) and the file has named attributes, the named attributes <lb/>are left as is and are not removed. <lb/>NFSv4.1 gives more precise control to clients over acquisition of <lb/>delegations via the following new flags for the share_access field of <lb/>OPEN4args: <lb/>OPEN4_SHARE_ACCESS_WANT_READ_DELEG <lb/>OPEN4_SHARE_ACCESS_WANT_WRITE_DELEG <lb/>OPEN4_SHARE_ACCESS_WANT_ANY_DELEG <lb/>OPEN4_SHARE_ACCESS_WANT_NO_DELEG <lb/>OPEN4_SHARE_ACCESS_WANT_CANCEL <lb/>OPEN4_SHARE_ACCESS_WANT_SIGNAL_DELEG_WHEN_RESRC_AVAIL <lb/>OPEN4_SHARE_ACCESS_WANT_PUSH_DELEG_WHEN_UNCONTENDED <lb/>If (share_access & OPEN4_SHARE_ACCESS_WANT_DELEG_MASK) is not zero, <lb/>then the client will have specified one and only one of: <lb/>OPEN4_SHARE_ACCESS_WANT_READ_DELEG <lb/>OPEN4_SHARE_ACCESS_WANT_WRITE_DELEG <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 474] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>OPEN4_SHARE_ACCESS_WANT_ANY_DELEG <lb/>OPEN4_SHARE_ACCESS_WANT_NO_DELEG <lb/>OPEN4_SHARE_ACCESS_WANT_CANCEL <lb/>Otherwise, the client is neither indicating a desire nor a non-desire <lb/>for a delegation, and the server MAY or MAY not return a delegation <lb/>in the OPEN response. <lb/>If the server supports the new _WANT_ flags and the client sends one <lb/>or more of the new flags, then in the event the server does not <lb/>return a delegation, it MUST return a delegation type of <lb/>OPEN_DELEGATE_NONE_EXT. The field ond_why in the reply indicates why <lb/>no delegation was returned and will be one of: <lb/>WND4_NOT_WANTED The client specified <lb/>OPEN4_SHARE_ACCESS_WANT_NO_DELEG. <lb/>WND4_CONTENTION There is a conflicting delegation or open on the <lb/>file. <lb/>WND4_RESOURCE Resource limitations prevent the server from granting <lb/>a delegation. <lb/>WND4_NOT_SUPP_FTYPE The server does not support delegations on this <lb/>file type. <lb/>WND4_WRITE_DELEG_NOT_SUPP_FTYPE The server does not support <lb/>OPEN_DELEGATE_WRITE delegations on this file type. <lb/>WND4_NOT_SUPP_UPGRADE The server does not support atomic upgrade of <lb/>an OPEN_DELEGATE_READ delegation to an OPEN_DELEGATE_WRITE <lb/>delegation. <lb/>WND4_NOT_SUPP_DOWNGRADE The server does not support atomic downgrade <lb/>of an OPEN_DELEGATE_WRITE delegation to an OPEN_DELEGATE_READ <lb/>delegation. <lb/>WND4_CANCELED The client specified OPEN4_SHARE_ACCESS_WANT_CANCEL <lb/>and now any "want" for this file object is cancelled. <lb/>WND4_IS_DIR The specified file object is a directory, and the <lb/>operation is OPEN or WANT_DELEGATION, which do not support <lb/>delegations on directories. <lb/>OPEN4_SHARE_ACCESS_WANT_READ_DELEG, <lb/>OPEN_SHARE_ACCESS_WANT_WRITE_DELEG, or <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 475] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>OPEN_SHARE_ACCESS_WANT_ANY_DELEG mean, respectively, the client wants <lb/>an OPEN_DELEGATE_READ, OPEN_DELEGATE_WRITE, or any delegation <lb/>regardless which of OPEN4_SHARE_ACCESS_READ, <lb/>OPEN4_SHARE_ACCESS_WRITE, or OPEN4_SHARE_ACCESS_BOTH is set. If the <lb/>client has an OPEN_DELEGATE_READ delegation on a file and requests an <lb/>OPEN_DELEGATE_WRITE delegation, then the client is requesting atomic <lb/>upgrade of its OPEN_DELEGATE_READ delegation to an <lb/>OPEN_DELEGATE_WRITE delegation. If the client has an <lb/>OPEN_DELEGATE_WRITE delegation on a file and requests an <lb/>OPEN_DELEGATE_READ delegation, then the client is requesting atomic <lb/>downgrade to an OPEN_DELEGATE_READ delegation. A server MAY support <lb/>atomic upgrade or downgrade. If it does, then the returned <lb/>delegation_type of OPEN_DELEGATE_READ or OPEN_DELEGATE_WRITE that is <lb/>different from the delegation type the client currently has, <lb/>indicates successful upgrade or downgrade. If the server does not <lb/>support atomic delegation upgrade or downgrade, then ond_why will be <lb/>set to WND4_NOT_SUPP_UPGRADE or WND4_NOT_SUPP_DOWNGRADE. <lb/>OPEN4_SHARE_ACCESS_WANT_NO_DELEG means that the client wants no <lb/>delegation. <lb/>OPEN4_SHARE_ACCESS_WANT_CANCEL means that the client wants no <lb/>delegation and wants to cancel any previously registered "want" for a <lb/>delegation. <lb/>The client may set one or both of <lb/>OPEN4_SHARE_ACCESS_WANT_SIGNAL_DELEG_WHEN_RESRC_AVAIL and <lb/>OPEN4_SHARE_ACCESS_WANT_PUSH_DELEG_WHEN_UNCONTENDED. However, they <lb/>will have no effect unless one of following is set: <lb/>o OPEN4_SHARE_ACCESS_WANT_READ_DELEG <lb/>o OPEN4_SHARE_ACCESS_WANT_WRITE_DELEG <lb/>o OPEN4_SHARE_ACCESS_WANT_ANY_DELEG <lb/>If the client specifies <lb/>OPEN4_SHARE_ACCESS_WANT_SIGNAL_DELEG_WHEN_RESRC_AVAIL, then it wishes <lb/>to register a "want" for a delegation, in the event the OPEN results <lb/>do not include a delegation. If so and the server denies the <lb/>delegation due to insufficient resources, the server MAY later inform <lb/>the client, via the CB_RECALLABLE_OBJ_AVAIL operation, that the <lb/>resource limitation condition has eased. The server will tell the <lb/>client that it intends to send a future CB_RECALLABLE_OBJ_AVAIL <lb/>operation by setting delegation_type in the results to <lb/>OPEN_DELEGATE_NONE_EXT, ond_why to WND4_RESOURCE, and <lb/>ond_server_will_signal_avail set to TRUE. If <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 476] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>ond_server_will_signal_avail is set to TRUE, the server MUST later <lb/>send a CB_RECALLABLE_OBJ_AVAIL operation. <lb/>If the client specifies <lb/>OPEN4_SHARE_ACCESS_WANT_SIGNAL_DELEG_WHEN_UNCONTENDED, then it wishes <lb/>to register a "want" for a delegation, in the event the OPEN results <lb/>do not include a delegation. If so and the server denies the <lb/>delegation due to contention, the server MAY later inform the client, <lb/>via the CB_PUSH_DELEG operation, that the contention condition has <lb/>eased. The server will tell the client that it intends to send a <lb/>future CB_PUSH_DELEG operation by setting delegation_type in the <lb/>results to OPEN_DELEGATE_NONE_EXT, ond_why to WND4_CONTENTION, and <lb/>ond_server_will_push_deleg to TRUE. If ond_server_will_push_deleg is <lb/>TRUE, the server MUST later send a CB_PUSH_DELEG operation. <lb/>If the client has previously registered a want for a delegation on a <lb/>file, and then sends a request to register a want for a delegation on <lb/>the same file, the server MUST return a new error: <lb/>NFS4ERR_DELEG_ALREADY_WANTED. If the client wishes to register a <lb/>different type of delegation want for the same file, it MUST cancel <lb/>the existing delegation WANT. <lb/>18.16.4. IMPLEMENTATION <lb/>In absence of a persistent session, the client invokes exclusive <lb/>create by setting the how parameter to EXCLUSIVE4 or EXCLUSIVE4_1. <lb/>In these cases, the client provides a verifier that can reasonably be <lb/>expected to be unique. A combination of a client identifier, perhaps <lb/>the client network address, and a unique number generated by the <lb/>client, perhaps the RPC transaction identifier, may be appropriate. <lb/>If the object does not exist, the server creates the object and <lb/>stores the verifier in stable storage. For file systems that do not <lb/>provide a mechanism for the storage of arbitrary file attributes, the <lb/>server may use one or more elements of the object's metadata to store <lb/>the verifier. The verifier MUST be stored in stable storage to <lb/>prevent erroneous failure on retransmission of the request. It is <lb/>assumed that an exclusive create is being performed because exclusive <lb/>semantics are critical to the application. Because of the expected <lb/>usage, exclusive CREATE does not rely solely on the server's reply <lb/>cache for storage of the verifier. A nonpersistent reply cache does <lb/>not survive a crash and the session and reply cache may be deleted <lb/>after a network partition that exceeds the lease time, thus opening <lb/>failure windows. <lb/>An NFSv4.1 server SHOULD NOT store the verifier in any of the file's <lb/>RECOMMENDED or REQUIRED attributes. If it does, the server SHOULD <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 477] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>use time_modify_set or time_access_set to store the verifier. The <lb/>server SHOULD NOT store the verifier in the following attributes: <lb/>acl (it is desirable for access control to be established at <lb/>creation), <lb/>dacl (ditto), <lb/>mode (ditto), <lb/>owner (ditto), <lb/>owner_group (ditto), <lb/>retentevt_set (it may be desired to establish retention at <lb/>creation) <lb/>retention_hold (ditto), <lb/>retention_set (ditto), <lb/>sacl (it is desirable for auditing control to be established at <lb/>creation), <lb/>size (on some servers, size may have a limited range of values), <lb/>mode_set_masked (as with mode), <lb/>and <lb/>time_creation (a meaningful file creation should be set when the <lb/>file is created). <lb/>Another alternative for the server is to use a named attribute to <lb/>store the verifier. <lb/>Because the EXCLUSIVE4 create method does not specify initial <lb/>attributes when processing an EXCLUSIVE4 create, the server <lb/>o SHOULD set the owner of the file to that corresponding to the <lb/>credential of request's RPC header. <lb/>o SHOULD NOT leave the file's access control to anyone but the owner <lb/>of the file. <lb/>If the server cannot support exclusive create semantics, possibly <lb/>because of the requirement to commit the verifier to stable storage, <lb/>it should fail the OPEN request with the error NFS4ERR_NOTSUPP. <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 478] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>During an exclusive CREATE request, if the object already exists, the <lb/>server reconstructs the object's verifier and compares it with the <lb/>verifier in the request. If they match, the server treats the <lb/>request as a success. The request is presumed to be a duplicate of <lb/>an earlier, successful request for which the reply was lost and that <lb/>the server duplicate request cache mechanism did not detect. If the <lb/>verifiers do not match, the request is rejected with the status <lb/>NFS4ERR_EXIST. <lb/>After the client has performed a successful exclusive create, the <lb/>attrset response indicates which attributes were used to store the <lb/>verifier. If EXCLUSIVE4 was used, the attributes set in attrset were <lb/>used for the verifier. If EXCLUSIVE4_1 was used, the client <lb/>determines the attributes used for the verifier by comparing attrset <lb/>with cva_attrs.attrmask; any bits set in the former but not the <lb/>latter identify the attributes used to store the verifier. The <lb/>client MUST immediately send a SETATTR to set attributes used to <lb/>store the verifier. Until it does so, the attributes used to store <lb/>the verifier cannot be relied upon. The subsequent SETATTR MUST NOT <lb/>occur in the same COMPOUND request as the OPEN. <lb/>Unless a persistent session is used, use of the GUARDED4 attribute <lb/>does not provide exactly once semantics. In particular, if a reply <lb/>is lost and the server does not detect the retransmission of the <lb/>request, the operation can fail with NFS4ERR_EXIST, even though the <lb/>create was performed successfully. The client would use this <lb/>behavior in the case that the application has not requested an <lb/>exclusive create but has asked to have the file truncated when the <lb/>file is opened. In the case of the client timing out and <lb/>retransmitting the create request, the client can use GUARDED4 to <lb/>prevent against a sequence like create, write, create (retransmitted) <lb/>from occurring. <lb/>For SHARE reservations, the value of the expression (share_access & <lb/>~OPEN4_SHARE_ACCESS_WANT_DELEG_MASK) MUST be one of <lb/>OPEN4_SHARE_ACCESS_READ, OPEN4_SHARE_ACCESS_WRITE, or <lb/>OPEN4_SHARE_ACCESS_BOTH. If not, the server MUST return <lb/>NFS4ERR_INVAL. The value of share_deny MUST be one of <lb/>OPEN4_SHARE_DENY_NONE, OPEN4_SHARE_DENY_READ, OPEN4_SHARE_DENY_WRITE, <lb/>or OPEN4_SHARE_DENY_BOTH. If not, the server MUST return <lb/>NFS4ERR_INVAL. <lb/>Based on the share_access value (OPEN4_SHARE_ACCESS_READ, <lb/>OPEN4_SHARE_ACCESS_WRITE, or OPEN4_SHARE_ACCESS_BOTH), the client <lb/>should check that the requester has the proper access rights to <lb/>perform the specified operation. This would generally be the results <lb/>of applying the ACL access rules to the file for the current <lb/>requester. However, just as with the ACCESS operation, the client <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 479] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>should not attempt to second-guess the server's decisions, as access <lb/>rights may change and may be subject to server administrative <lb/>controls outside the ACL framework. If the requester's READ or WRITE <lb/>operation is not authorized (depending on the share_access value), <lb/>the server MUST return NFS4ERR_ACCESS. <lb/>Note that if the client ID was not created with the <lb/>EXCHGID4_FLAG_BIND_PRINC_STATEID capability set in the reply to <lb/>EXCHANGE_ID, then the server MUST NOT impose any requirement that <lb/>READs and WRITEs sent for an open file have the same credentials as <lb/>the OPEN itself, and the server is REQUIRED to perform access <lb/>checking on the READs and WRITEs themselves. Otherwise, if the reply <lb/>to EXCHANGE_ID did have EXCHGID4_FLAG_BIND_PRINC_STATEID set, then <lb/>with one exception, the credentials used in the OPEN request MUST <lb/>match those used in the READs and WRITEs, and the stateids in the <lb/>READs and WRITEs MUST match, or be derived from the stateid from the <lb/>reply to OPEN. The exception is if SP4_SSV or SP4_MACH_CRED state <lb/>protection is used, and the spo_must_allow result of EXCHANGE_ID <lb/>includes the READ and/or WRITE operations. In that case, the machine <lb/>or SSV credential will be allowed to send READ and/or WRITE. See <lb/>Section 18.35. <lb/>If the component provided to OPEN is a symbolic link, the error <lb/>NFS4ERR_SYMLINK will be returned to the client, while if it is a <lb/>directory the error NFS4ERR_ISDIR will be returned. If the component <lb/>is neither of those but not an ordinary file, the error <lb/>NFS4ERR_WRONG_TYPE is returned. If the current filehandle is not a <lb/>directory, the error NFS4ERR_NOTDIR will be returned. <lb/>The use of the OPEN4_RESULT_PRESERVE_UNLINKED result flag allows a <lb/>client to avoid the common implementation practice of renaming an <lb/>open file to ".nfs<unique value>" after it removes the file. After <lb/>the server returns OPEN4_RESULT_PRESERVE_UNLINKED, if a client sends <lb/>a REMOVE operation that would reduce the file's link count to zero, <lb/>the server SHOULD report a value of zero for the numlinks attribute <lb/>on the file. <lb/>If another client has a delegation of the file being opened that <lb/>conflicts with open being done (sometimes depending on the <lb/>share_access or share_deny value specified), the delegation(s) MUST <lb/>be recalled, and the operation cannot proceed until each such <lb/>delegation is returned or revoked. Except where this happens very <lb/>quickly, one or more NFS4ERR_DELAY errors will be returned to <lb/>requests made while delegation remains outstanding. In the case of <lb/>an OPEN_DELEGATE_WRITE delegation, any open by a different client <lb/>will conflict, while for an OPEN_DELEGATE_READ delegation, only opens <lb/>with one of the following characteristics will be considered <lb/>conflicting: <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 480] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>o The value of share_access includes the bit <lb/>OPEN4_SHARE_ACCESS_WRITE. <lb/>o The value of share_deny specifies OPEN4_SHARE_DENY_READ or <lb/>OPEN4_SHARE_DENY_BOTH. <lb/>o OPEN4_CREATE is specified together with UNCHECKED4, the size <lb/>attribute is specified as zero (for truncation), and an existing <lb/>file is truncated. <lb/>If OPEN4_CREATE is specified and the file does not exist and the <lb/>current filehandle designates a directory for which another client <lb/>holds a directory delegation, then, unless the delegation is such <lb/>that the situation can be resolved by sending a notification, the <lb/>delegation MUST be recalled, and the operation cannot proceed until <lb/>the delegation is returned or revoked. Except where this happens <lb/>very quickly, one or more NFS4ERR_DELAY errors will be returned to <lb/>requests made while delegation remains outstanding. <lb/>If OPEN4_CREATE is specified and the file does not exist and the <lb/>current filehandle designates a directory for which one or more <lb/>directory delegations exist, then, when those delegations request <lb/>such notifications, NOTIFY4_ADD_ENTRY will be generated as a result <lb/>of this operation. <lb/>18.16.4.1. Warning to Client Implementors <lb/>OPEN resembles LOOKUP in that it generates a filehandle for the <lb/>client to use. Unlike LOOKUP though, OPEN creates server state on <lb/>the filehandle. In normal circumstances, the client can only release <lb/>this state with a CLOSE operation. CLOSE uses the current filehandle <lb/>to determine which file to close. Therefore, the client MUST follow <lb/>every OPEN operation with a GETFH operation in the same COMPOUND <lb/>procedure. This will supply the client with the filehandle such that <lb/>CLOSE can be used appropriately. <lb/>Simply waiting for the lease on the file to expire is insufficient <lb/>because the server may maintain the state indefinitely as long as <lb/>another client does not attempt to make a conflicting access to the <lb/>same file. <lb/>See also Section 2.10.6.4. <lb/>18.17. Operation 19: OPENATTR -Open Named Attribute Directory <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 481] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>18.17.1. ARGUMENTS <lb/>struct OPENATTR4args { <lb/>/* CURRENT_FH: object */ <lb/>bool <lb/>createdir; <lb/>}; <lb/>18.17.2. RESULTS <lb/>struct OPENATTR4res { <lb/>/* <lb/>* If status is NFS4_OK, <lb/>* <lb/>new CURRENT_FH: named attribute <lb/>* <lb/>directory <lb/>*/ <lb/>nfsstat4 <lb/>status; <lb/>}; <lb/>18.17.3. DESCRIPTION <lb/>The OPENATTR operation is used to obtain the filehandle of the named <lb/>attribute directory associated with the current filehandle. The <lb/>result of the OPENATTR will be a filehandle to an object of type <lb/>NF4ATTRDIR. From this filehandle, READDIR and LOOKUP operations can <lb/>be used to obtain filehandles for the various named attributes <lb/>associated with the original file system object. Filehandles <lb/>returned within the named attribute directory will designate objects <lb/>of type of NF4NAMEDATTR. <lb/>The createdir argument allows the client to signify if a named <lb/>attribute directory should be created as a result of the OPENATTR <lb/>operation. Some clients may use the OPENATTR operation with a value <lb/>of FALSE for createdir to determine if any named attributes exist for <lb/>the object. If none exist, then NFS4ERR_NOENT will be returned. If <lb/>createdir has a value of TRUE and no named attribute directory <lb/>exists, one is created and its filehandle becomes the current <lb/>filehandle. On the other hand, if createdir has a value of TRUE and <lb/>the named attribute directory already exists, no error results and <lb/>the filehandle of the existing directory becomes the current <lb/>filehandle. The creation of a named attribute directory assumes that <lb/>the server has implemented named attribute support in this fashion <lb/>and is not required to do so by this definition. <lb/>If the current file handle designates an object of type NF4NAMEDATTR <lb/>(a named attribute) or NF4ATTRDIR (a named attribute directory), an <lb/>error of NFS4ERR_WRONG_TYPE is returned to the client. Named <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 482] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>attributes or a named attribute directory MUST NOT have their own <lb/>named attributes. <lb/>18.17.4. IMPLEMENTATION <lb/>If the server does not support named attributes for the current <lb/>filehandle, an error of NFS4ERR_NOTSUPP will be returned to the <lb/>client. <lb/>18.18. Operation 21: OPEN_DOWNGRADE -Reduce Open File Access <lb/>18.18.1. ARGUMENTS <lb/>struct OPEN_DOWNGRADE4args { <lb/>/* CURRENT_FH: opened file */ <lb/>stateid4 <lb/>open_stateid; <lb/>seqid4 <lb/>seqid; <lb/>uint32_t <lb/>share_access; <lb/>uint32_t <lb/>share_deny; <lb/>}; <lb/>18.18.2. RESULTS <lb/>struct OPEN_DOWNGRADE4resok { <lb/>stateid4 <lb/>open_stateid; <lb/>}; <lb/>union OPEN_DOWNGRADE4res switch(nfsstat4 status) { <lb/>case NFS4_OK: <lb/>OPEN_DOWNGRADE4resok <lb/>resok4; <lb/>default: <lb/>void; <lb/>}; <lb/>18.18.3. DESCRIPTION <lb/>This operation is used to adjust the access and deny states for a <lb/>given open. This is necessary when a given open-owner opens the same <lb/>file multiple times with different access and deny values. In this <lb/>situation, a close of one of the opens may change the appropriate <lb/>share_access and share_deny flags to remove bits associated with <lb/>opens no longer in effect. <lb/>Valid values for the expression (share_access & <lb/>~OPEN4_SHARE_ACCESS_WANT_DELEG_MASK) are OPEN4_SHARE_ACCESS_READ, <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 483] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>OPEN4_SHARE_ACCESS_WRITE, or OPEN4_SHARE_ACCESS_BOTH. If the client <lb/>specifies other values, the server MUST reply with NFS4ERR_INVAL. <lb/>Valid values for the share_deny field are OPEN4_SHARE_DENY_NONE, <lb/>OPEN4_SHARE_DENY_READ, OPEN4_SHARE_DENY_WRITE, or <lb/>OPEN4_SHARE_DENY_BOTH. If the client specifies other values, the <lb/>server MUST reply with NFS4ERR_INVAL. <lb/>After checking for valid values of share_access and share_deny, the <lb/>server replaces the current access and deny modes on the file with <lb/>share_access and share_deny subject to the following constraints: <lb/>o The bits in share_access SHOULD equal the union of the <lb/>share_access bits (not including OPEN4_SHARE_WANT_* bits) <lb/>specified for some subset of the OPENs in effect for the current <lb/>open-owner on the current file. <lb/>o The bits in share_deny SHOULD equal the union of the share_deny <lb/>bits specified for some subset of the OPENs in effect for the <lb/>current open-owner on the current file. <lb/>If the above constraints are not respected, the server SHOULD return <lb/>the error NFS4ERR_INVAL. Since share_access and share_deny bits <lb/>should be subsets of those already granted, short of a defect in the <lb/>client or server implementation, it is not possible for the <lb/>OPEN_DOWNGRADE request to be denied because of conflicting share <lb/>reservations. <lb/>The seqid argument is not used in NFSv4.1, MAY be any value, and MUST <lb/>be ignored by the server. <lb/>On success, the current filehandle retains its value. <lb/>18.18.4. IMPLEMENTATION <lb/>An OPEN_DOWNGRADE operation may make OPEN_DELEGATE_READ delegations <lb/>grantable where they were not previously. Servers may choose to <lb/>respond immediately if there are pending delegation want requests or <lb/>may respond to the situation at a later time. <lb/>18.19. Operation 22: PUTFH -Set Current Filehandle <lb/>18.19.1. ARGUMENTS <lb/>struct PUTFH4args { <lb/>nfs_fh4 <lb/>object; <lb/>}; <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 484] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>18.19.2. RESULTS <lb/>struct PUTFH4res { <lb/>/* <lb/>* If status is NFS4_OK, <lb/>* <lb/>new CURRENT_FH: argument to PUTFH <lb/>*/ <lb/>nfsstat4 <lb/>status; <lb/>}; <lb/>18.19.3. DESCRIPTION <lb/>This operation replaces the current filehandle with the filehandle <lb/>provided as an argument. It clears the current stateid. <lb/>If the security mechanism used by the requester does not meet the <lb/>requirements of the filehandle provided to this operation, the server <lb/>MUST return NFS4ERR_WRONGSEC. <lb/>See Section 16.2.3.1.1 for more details on the current filehandle. <lb/>See Section 16.2.3.1.2 for more details on the current stateid. <lb/>18.19.4. IMPLEMENTATION <lb/>This operation is used in an NFS request to set the context for file <lb/>accessing operations that follow in the same COMPOUND request. <lb/>18.20. Operation 23: PUTPUBFH -Set Public Filehandle <lb/>18.20.1. ARGUMENT <lb/>void; <lb/>18.20.2. RESULT <lb/>struct PUTPUBFH4res { <lb/>/* <lb/>* If status is NFS4_OK, <lb/>* <lb/>new CURRENT_FH: public fh <lb/>*/ <lb/>nfsstat4 <lb/>status; <lb/>}; <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 485] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>18.20.3. DESCRIPTION <lb/>This operation replaces the current filehandle with the filehandle <lb/>that represents the public filehandle of the server's namespace. <lb/>This filehandle may be different from the "root" filehandle that may <lb/>be associated with some other directory on the server. <lb/>PUTPUBFH also clears the current stateid. <lb/>The public filehandle represents the concepts embodied in RFC 2054 <lb/>[45], RFC 2055 [46], and RFC 2224 [56]. The intent for NFSv4.1 is <lb/>that the public filehandle (represented by the PUTPUBFH operation) be <lb/>used as a method of providing WebNFS server compatibility with NFSv3. <lb/>The public filehandle and the root filehandle (represented by the <lb/>PUTROOTFH operation) SHOULD be equivalent. If the public and root <lb/>filehandles are not equivalent, then the directory corresponding to <lb/>the public filehandle MUST be a descendant of the directory <lb/>corresponding to the root filehandle. <lb/>See Section 16.2.3.1.1 for more details on the current filehandle. <lb/>See Section 16.2.3.1.2 for more details on the current stateid. <lb/>18.20.4. IMPLEMENTATION <lb/>This operation is used in an NFS request to set the context for file <lb/>accessing operations that follow in the same COMPOUND request. <lb/>With the NFSv3 public filehandle, the client is able to specify <lb/>whether the pathname provided in the LOOKUP should be evaluated as <lb/>either an absolute path relative to the server's root or relative to <lb/>the public filehandle. RFC 2224 [56] contains further discussion of <lb/>the functionality. With NFSv4.1, that type of specification is not <lb/>directly available in the LOOKUP operation. The reason for this is <lb/>because the component separators needed to specify absolute vs. <lb/>relative are not allowed in NFSv4. Therefore, the client is <lb/>responsible for constructing its request such that the use of either <lb/>PUTROOTFH or PUTPUBFH signifies absolute or relative evaluation of an <lb/>NFS URL, respectively. <lb/>Note that there are warnings mentioned in RFC 2224 [56] with respect <lb/>to the use of absolute evaluation and the restrictions the server may <lb/>place on that evaluation with respect to how much of its namespace <lb/>has been made available. These same warnings apply to NFSv4.1. It <lb/>is likely, therefore, that because of server implementation details, <lb/>an NFSv3 absolute public filehandle look up may behave differently <lb/>than an NFSv4.1 absolute resolution. <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 486] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>There is a form of security negotiation as described in RFC 2755 [57] <lb/>that uses the public filehandle and an overloading of the pathname. <lb/>This method is not available with NFSv4.1 as filehandles are not <lb/>overloaded with special meaning and therefore do not provide the same <lb/>framework as NFSv3. Clients should therefore use the security <lb/>negotiation mechanisms described in Section 2.6. <lb/>18.21. Operation 24: PUTROOTFH -Set Root Filehandle <lb/>18.21.1. ARGUMENTS <lb/>void; <lb/>18.21.2. RESULTS <lb/>struct PUTROOTFH4res { <lb/>/* <lb/>* If status is NFS4_OK, <lb/>* <lb/>new CURRENT_FH: root fh <lb/>*/ <lb/>nfsstat4 <lb/>status; <lb/>}; <lb/>18.21.3. DESCRIPTION <lb/>This operation replaces the current filehandle with the filehandle <lb/>that represents the root of the server's namespace. From this <lb/>filehandle, a LOOKUP operation can locate any other filehandle on the <lb/>server. This filehandle may be different from the "public" <lb/>filehandle that may be associated with some other directory on the <lb/>server. <lb/>PUTROOTFH also clears the current stateid. <lb/>See Section 16.2.3.1.1 for more details on the current filehandle. <lb/>See Section 16.2.3.1.2 for more details on the current stateid. <lb/>18.21.4. IMPLEMENTATION <lb/>This operation is used in an NFS request to set the context for file <lb/>accessing operations that follow in the same COMPOUND request. <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 487] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>18.22. Operation 25: READ -Read from File <lb/>18.22.1. ARGUMENTS <lb/>struct READ4args { <lb/>/* CURRENT_FH: file */ <lb/>stateid4 <lb/>stateid; <lb/>offset4 <lb/>offset; <lb/>count4 <lb/>count; <lb/>}; <lb/>18.22.2. RESULTS <lb/>struct READ4resok { <lb/>bool <lb/>eof; <lb/>opaque <lb/>data<>; <lb/>}; <lb/>union READ4res switch (nfsstat4 status) { <lb/>case NFS4_OK: <lb/>READ4resok <lb/>resok4; <lb/>default: <lb/>void; <lb/>}; <lb/>18.22.3. DESCRIPTION <lb/>The READ operation reads data from the regular file identified by the <lb/>current filehandle. <lb/>The client provides an offset of where the READ is to start and a <lb/>count of how many bytes are to be read. An offset of zero means to <lb/>read data starting at the beginning of the file. If offset is <lb/>greater than or equal to the size of the file, the status NFS4_OK is <lb/>returned with a data length set to zero and eof is set to TRUE. The <lb/>READ is subject to access permissions checking. <lb/>If the client specifies a count value of zero, the READ succeeds and <lb/>returns zero bytes of data again subject to access permissions <lb/>checking. The server may choose to return fewer bytes than specified <lb/>by the client. The client needs to check for this condition and <lb/>handle the condition appropriately. <lb/>Except when special stateids are used, the stateid value for a READ <lb/>request represents a value returned from a previous byte-range lock <lb/>or share reservation request or the stateid associated with a <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 488] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>delegation. The stateid identifies the associated owners if any and <lb/>is used by the server to verify that the associated locks are still <lb/>valid (e.g., have not been revoked). <lb/>If the read ended at the end-of-file (formally, in a correctly formed <lb/>READ operation, if offset + count is equal to the size of the file), <lb/>or the READ operation extends beyond the size of the file (if offset <lb/>+ count is greater than the size of the file), eof is returned as <lb/>TRUE; otherwise, it is FALSE. A successful READ of an empty file <lb/>will always return eof as TRUE. <lb/>If the current filehandle is not an ordinary file, an error will be <lb/>returned to the client. In the case that the current filehandle <lb/>represents an object of type NF4DIR, NFS4ERR_ISDIR is returned. If <lb/>the current filehandle designates a symbolic link, NFS4ERR_SYMLINK is <lb/>returned. In all other cases, NFS4ERR_WRONG_TYPE is returned. <lb/>For a READ with a stateid value of all bits equal to zero, the server <lb/>MAY allow the READ to be serviced subject to mandatory byte-range <lb/>locks or the current share deny modes for the file. For a READ with <lb/>a stateid value of all bits equal to one, the server MAY allow READ <lb/>operations to bypass locking checks at the server. <lb/>On success, the current filehandle retains its value. <lb/>18.22.4. IMPLEMENTATION <lb/>If the server returns a "short read" (i.e., fewer data than requested <lb/>and eof is set to FALSE), the client should send another READ to get <lb/>the remaining data. A server may return less data than requested <lb/>under several circumstances. The file may have been truncated by <lb/>another client or perhaps on the server itself, changing the file <lb/>size from what the requesting client believes to be the case. This <lb/>would reduce the actual amount of data available to the client. It <lb/>is possible that the server reduce the transfer size and so return a <lb/>short read result. Server resource exhaustion may also occur in a <lb/>short read. <lb/>If mandatory byte-range locking is in effect for the file, and if the <lb/>byte-range corresponding to the data to be read from the file is <lb/>WRITE_LT locked by an owner not associated with the stateid, the <lb/>server will return the NFS4ERR_LOCKED error. The client should try <lb/>to get the appropriate READ_LT via the LOCK operation before re-<lb/>attempting the READ. When the READ completes, the client should <lb/>release the byte-range lock via LOCKU. <lb/>If another client has an OPEN_DELEGATE_WRITE delegation for the file <lb/>being read, the delegation must be recalled, and the operation cannot <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 489] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>proceed until that delegation is returned or revoked. Except where <lb/>this happens very quickly, one or more NFS4ERR_DELAY errors will be <lb/>returned to requests made while the delegation remains outstanding. <lb/>Normally, delegations will not be recalled as a result of a READ <lb/>operation since the recall will occur as a result of an earlier OPEN. <lb/>However, since it is possible for a READ to be done with a special <lb/>stateid, the server needs to check for this case even though the <lb/>client should have done an OPEN previously. <lb/>18.23. Operation 26: READDIR -Read Directory <lb/>18.23.1. ARGUMENTS <lb/>struct READDIR4args { <lb/>/* CURRENT_FH: directory */ <lb/>nfs_cookie4 <lb/>cookie; <lb/>verifier4 <lb/>cookieverf; <lb/>count4 <lb/>dircount; <lb/>count4 <lb/>maxcount; <lb/>bitmap4 <lb/>attr_request; <lb/>}; <lb/>18.23.2. RESULTS <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 490] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>struct entry4 { <lb/>nfs_cookie4 <lb/>cookie; <lb/>component4 <lb/>name; <lb/>fattr4 <lb/>attrs; <lb/>entry4 <lb/>*nextentry; <lb/>}; <lb/>struct dirlist4 { <lb/>entry4 <lb/>*entries; <lb/>bool <lb/>eof; <lb/>}; <lb/>struct READDIR4resok { <lb/>verifier4 <lb/>cookieverf; <lb/>dirlist4 <lb/>reply; <lb/>}; <lb/>union READDIR4res switch (nfsstat4 status) { <lb/>case NFS4_OK: <lb/>READDIR4resok resok4; <lb/>default: <lb/>void; <lb/>}; <lb/>18.23.3. DESCRIPTION <lb/>The READDIR operation retrieves a variable number of entries from a <lb/>file system directory and returns client-requested attributes for <lb/>each entry along with information to allow the client to request <lb/>additional directory entries in a subsequent READDIR. <lb/>The arguments contain a cookie value that represents where the <lb/>READDIR should start within the directory. A value of zero for the <lb/>cookie is used to start reading at the beginning of the directory. <lb/>For subsequent READDIR requests, the client specifies a cookie value <lb/>that is provided by the server on a previous READDIR request. <lb/>The request's cookieverf field should be set to 0 zero) when the <lb/>request's cookie field is zero (first read of the directory). On <lb/>subsequent requests, the cookieverf field must match the cookieverf <lb/>returned by the READDIR in which the cookie was acquired. If the <lb/>server determines that the cookieverf is no longer valid for the <lb/>directory, the error NFS4ERR_NOT_SAME must be returned. <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 491] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>The dircount field of the request is a hint of the maximum number of <lb/>bytes of directory information that should be returned. This value <lb/>represents the total length of the names of the directory entries and <lb/>the cookie value for these entries. This length represents the XDR <lb/>encoding of the data (names and cookies) and not the length in the <lb/>native format of the server. <lb/>The maxcount field of the request represents the maximum total size <lb/>of all of the data being returned within the READDIR4resok structure <lb/>and includes the XDR overhead. The server MAY return less data. If <lb/>the server is unable to return a single directory entry within the <lb/>maxcount limit, the error NFS4ERR_TOOSMALL MUST be returned to the <lb/>client. <lb/>Finally, the request's attr_request field represents the list of <lb/>attributes to be returned for each directory entry supplied by the <lb/>server. <lb/>A successful reply consists of a list of directory entries. Each of <lb/>these entries contains the name of the directory entry, a cookie <lb/>value for that entry, and the associated attributes as requested. <lb/>The "eof" flag has a value of TRUE if there are no more entries in <lb/>the directory. <lb/>The cookie value is only meaningful to the server and is used as a <lb/>cursor for the directory entry. As mentioned, this cookie is used by <lb/>the client for subsequent READDIR operations so that it may continue <lb/>reading a directory. The cookie is similar in concept to a READ <lb/>offset but MUST NOT be interpreted as such by the client. Ideally, <lb/>the cookie value SHOULD NOT change if the directory is modified since <lb/>the client may be caching these values. <lb/>In some cases, the server may encounter an error while obtaining the <lb/>attributes for a directory entry. Instead of returning an error for <lb/>the entire READDIR operation, the server can instead return the <lb/>attribute rdattr_error (Section 5.8.1.12). With this, the server is <lb/>able to communicate the failure to the client and not fail the entire <lb/>operation in the instance of what might be a transient failure. <lb/>Obviously, the client must request the fattr4_rdattr_error attribute <lb/>for this method to work properly. If the client does not request the <lb/>attribute, the server has no choice but to return failure for the <lb/>entire READDIR operation. <lb/>For some file system environments, the directory entries "." and ".." <lb/>have special meaning, and in other environments, they do not. If the <lb/>server supports these special entries within a directory, they SHOULD <lb/>NOT be returned to the client as part of the READDIR response. To <lb/>enable some client environments, the cookie values of zero, 1, and 2 <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 492] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>are to be considered reserved. Note that the UNIX client will use <lb/>these values when combining the server's response and local <lb/>representations to enable a fully formed UNIX directory presentation <lb/>to the application. <lb/>For READDIR arguments, cookie values of one and two SHOULD NOT be <lb/>used, and for READDIR results, cookie values of zero, one, and two <lb/>SHOULD NOT be returned. <lb/>On success, the current filehandle retains its value. <lb/>18.23.4. IMPLEMENTATION <lb/>The server's file system directory representations can differ <lb/>greatly. A client's programming interfaces may also be bound to the <lb/>local operating environment in a way that does not translate well <lb/>into the NFS protocol. Therefore, the use of the dircount and <lb/>maxcount fields are provided to enable the client to provide hints to <lb/>the server. If the client is aggressive about attribute collection <lb/>during a READDIR, the server has an idea of how to limit the encoded <lb/>response. <lb/>If dircount is zero, the server bounds the reply's size based on the <lb/>request's maxcount field. <lb/>The cookieverf may be used by the server to help manage cookie values <lb/>that may become stale. It should be a rare occurrence that a server <lb/>is unable to continue properly reading a directory with the provided <lb/>cookie/cookieverf pair. The server SHOULD make every effort to avoid <lb/>this condition since the application at the client might be unable to <lb/>properly handle this type of failure. <lb/>The use of the cookieverf will also protect the client from using <lb/>READDIR cookie values that might be stale. For example, if the file <lb/>system has been migrated, the server might or might not be able to <lb/>use the same cookie values to service READDIR as the previous server <lb/>used. With the client providing the cookieverf, the server is able <lb/>to provide the appropriate response to the client. This prevents the <lb/>case where the server accepts a cookie value but the underlying <lb/>directory has changed and the response is invalid from the client's <lb/>context of its previous READDIR. <lb/>Since some servers will not be returning "." and ".." entries as has <lb/>been done with previous versions of the NFS protocol, the client that <lb/>requires these entries be present in READDIR responses must fabricate <lb/>them. <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 493] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>18.24. Operation 27: READLINK -Read Symbolic Link <lb/>18.24.1. ARGUMENTS <lb/>/* CURRENT_FH: symlink */ <lb/>void; <lb/>18.24.2. RESULTS <lb/>struct READLINK4resok { <lb/>linktext4 <lb/>link; <lb/>}; <lb/>union READLINK4res switch (nfsstat4 status) { <lb/>case NFS4_OK: <lb/>READLINK4resok resok4; <lb/>default: <lb/>void; <lb/>}; <lb/>18.24.3. DESCRIPTION <lb/>READLINK reads the data associated with a symbolic link. Depending <lb/>on the value of the UTF-8 capability attribute (Section 14.4), the <lb/>data is encoded in UTF-8. Whether created by an NFS client or <lb/>created locally on the server, the data in a symbolic link is not <lb/>interpreted (except possibly to check for proper UTF-8 encoding) when <lb/>created, but is simply stored. <lb/>On success, the current filehandle retains its value. <lb/>18.24.4. IMPLEMENTATION <lb/>A symbolic link is nominally a pointer to another file. The data is <lb/>not necessarily interpreted by the server, just stored in the file. <lb/>It is possible for a client implementation to store a pathname that <lb/>is not meaningful to the server operating system in a symbolic link. <lb/>A READLINK operation returns the data to the client for <lb/>interpretation. If different implementations want to share access to <lb/>symbolic links, then they must agree on the interpretation of the <lb/>data in the symbolic link. <lb/>The READLINK operation is only allowed on objects of type NF4LNK. <lb/>The server should return the error NFS4ERR_WRONG_TYPE if the object <lb/>is not of type NF4LNK. <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 494] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>18.25. Operation 28: REMOVE -Remove File System Object <lb/>18.25.1. ARGUMENTS <lb/>struct REMOVE4args { <lb/>/* CURRENT_FH: directory */ <lb/>component4 <lb/>target; <lb/>}; <lb/>18.25.2. RESULTS <lb/>struct REMOVE4resok { <lb/>change_info4 <lb/>cinfo; <lb/>}; <lb/>union REMOVE4res switch (nfsstat4 status) { <lb/>case NFS4_OK: <lb/>REMOVE4resok <lb/>resok4; <lb/>default: <lb/>void; <lb/>}; <lb/>18.25.3. DESCRIPTION <lb/>The REMOVE operation removes (deletes) a directory entry named by <lb/>filename from the directory corresponding to the current filehandle. <lb/>If the entry in the directory was the last reference to the <lb/>corresponding file system object, the object may be destroyed. The <lb/>directory may be either of type NF4DIR or NF4ATTRDIR. <lb/>For the directory where the filename was removed, the server returns <lb/>change_info4 information in cinfo. With the atomic field of the <lb/>change_info4 data type, the server will indicate if the before and <lb/>after change attributes were obtained atomically with respect to the <lb/>removal. <lb/>If the target has a length of zero, or if the target does not obey <lb/>the UTF-8 definition (and the server is enforcing UTF-8 encoding; see <lb/>Section 14.4), the error NFS4ERR_INVAL will be returned. <lb/>On success, the current filehandle retains its value. <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 495] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>18.25.4. IMPLEMENTATION <lb/>NFSv3 required a different operator RMDIR for directory removal and <lb/>REMOVE for non-directory removal. This allowed clients to skip <lb/>checking the file type when being passed a non-directory delete <lb/>system call (e.g., unlink() [24] in POSIX) to remove a directory, as <lb/>well as the converse (e.g., a rmdir() on a non-directory) because <lb/>they knew the server would check the file type. NFSv4.1 REMOVE can <lb/>be used to delete any directory entry independent of its file type. <lb/>The implementor of an NFSv4.1 client's entry points from the unlink() <lb/>and rmdir() system calls should first check the file type against the <lb/>types the system call is allowed to remove before sending a REMOVE <lb/>operation. Alternatively, the implementor can produce a COMPOUND <lb/>call that includes a LOOKUP/VERIFY sequence of operations to verify <lb/>the file type before a REMOVE operation in the same COMPOUND call. <lb/>The concept of last reference is server specific. However, if the <lb/>numlinks field in the previous attributes of the object had the value <lb/>1, the client should not rely on referring to the object via a <lb/>filehandle. Likewise, the client should not rely on the resources <lb/>(disk space, directory entry, and so on) formerly associated with the <lb/>object becoming immediately available. Thus, if a client needs to be <lb/>able to continue to access a file after using REMOVE to remove it, <lb/>the client should take steps to make sure that the file will still be <lb/>accessible. While the traditional mechanism used is to RENAME the <lb/>file from its old name to a new hidden name, the NFSv4.1 OPEN <lb/>operation MAY return a result flag, OPEN4_RESULT_PRESERVE_UNLINKED, <lb/>which indicates to the client that the file will be preserved if the <lb/>file has an outstanding open (see Section 18.16). <lb/>If the server finds that the file is still open when the REMOVE <lb/>arrives: <lb/>o The server SHOULD NOT delete the file's directory entry if the <lb/>file was opened with OPEN4_SHARE_DENY_WRITE or <lb/>OPEN4_SHARE_DENY_BOTH. <lb/>o If the file was not opened with OPEN4_SHARE_DENY_WRITE or <lb/>OPEN4_SHARE_DENY_BOTH, the server SHOULD delete the file's <lb/>directory entry. However, until last CLOSE of the file, the <lb/>server MAY continue to allow access to the file via its <lb/>filehandle. <lb/>o The server MUST NOT delete the directory entry if the reply from <lb/>OPEN had the flag OPEN4_RESULT_PRESERVE_UNLINKED set. <lb/>The server MAY implement its own restrictions on removal of a file <lb/>while it is open. The server might disallow such a REMOVE (or a <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 496] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>removal that occurs as part of RENAME). The conditions that <lb/>influence the restrictions on removal of a file while it is still <lb/>open include: <lb/>o Whether certain access protocols (i.e., not just NFS) are holding <lb/>the file open. <lb/>o Whether particular options, access modes, or policies on the <lb/>server are enabled. <lb/>If a file has an outstanding OPEN and this prevents the removal of <lb/>the file's directory entry, the error NFS4ERR_FILE_OPEN is returned. <lb/>Where the determination above cannot be made definitively because <lb/>delegations are being held, they MUST be recalled to allow processing <lb/>of the REMOVE to continue. When a delegation is held, the server has <lb/>no reliable knowledge of the status of OPENs for that client, so <lb/>unless there are files opened with the particular deny modes by <lb/>clients without delegations, the determination cannot be made until <lb/>delegations are recalled, and the operation cannot proceed until each <lb/>sufficient delegation has been returned or revoked to allow the <lb/>server to make a correct determination. <lb/>In all cases in which delegations are recalled, the server is likely <lb/>to return one or more NFS4ERR_DELAY errors while delegations remain <lb/>outstanding. <lb/>If the current filehandle designates a directory for which another <lb/>client holds a directory delegation, then, unless the situation can <lb/>be resolved by sending a notification, the directory delegation MUST <lb/>be recalled, and the operation MUST NOT proceed until the delegation <lb/>is returned or revoked. Except where this happens very quickly, one <lb/>or more NFS4ERR_DELAY errors will be returned to requests made while <lb/>delegation remains outstanding. <lb/>When the current filehandle designates a directory for which one or <lb/>more directory delegations exist, then, when those delegations <lb/>request such notifications, NOTIFY4_REMOVE_ENTRY will be generated as <lb/>a result of this operation. <lb/>Note that when a remove occurs as a result of a RENAME, <lb/>NOTIFY4_REMOVE_ENTRY will only be generated if the removal happens as <lb/>a separate operation. In the case in which the removal is integrated <lb/>and atomic with RENAME, the notification of the removal is integrated <lb/>with notification for the RENAME. See the discussion of the <lb/>NOTIFY4_RENAME_ENTRY notification in Section 20.4. <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 497] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>18.26. Operation 29: RENAME -Rename Directory Entry <lb/>18.26.1. ARGUMENTS <lb/>struct RENAME4args { <lb/>/* SAVED_FH: source directory */ <lb/>component4 <lb/>oldname; <lb/>/* CURRENT_FH: target directory */ <lb/>component4 <lb/>newname; <lb/>}; <lb/>18.26.2. RESULTS <lb/>struct RENAME4resok { <lb/>change_info4 <lb/>source_cinfo; <lb/>change_info4 <lb/>target_cinfo; <lb/>}; <lb/>union RENAME4res switch (nfsstat4 status) { <lb/>case NFS4_OK: <lb/>RENAME4resok <lb/>resok4; <lb/>default: <lb/>void; <lb/>}; <lb/>18.26.3. DESCRIPTION <lb/>The RENAME operation renames the object identified by oldname in the <lb/>source directory corresponding to the saved filehandle, as set by the <lb/>SAVEFH operation, to newname in the target directory corresponding to <lb/>the current filehandle. The operation is required to be atomic to <lb/>the client. Source and target directories MUST reside on the same <lb/>file system on the server. On success, the current filehandle will <lb/>continue to be the target directory. <lb/>If the target directory already contains an entry with the name <lb/>newname, the source object MUST be compatible with the target: either <lb/>both are non-directories or both are directories and the target MUST <lb/>be empty. If compatible, the existing target is removed before the <lb/>rename occurs or, preferably, the target is removed atomically as <lb/>part of the rename. See Section 18.25.4 for client and server <lb/>actions whenever a target is removed. Note however that when the <lb/>removal is performed atomically with the rename, certain parts of the <lb/>removal described there are integrated with the rename. For example, <lb/>notification of the removal will not be via a NOTIFY4_REMOVE_ENTRY <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 498] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>but will be indicated as part of the NOTIFY4_ADD_ENTRY or <lb/>NOTIFY4_RENAME_ENTRY generated by the rename. <lb/>If the source object and the target are not compatible or if the <lb/>target is a directory but not empty, the server will return the error <lb/>NFS4ERR_EXIST. <lb/>If oldname and newname both refer to the same file (e.g., they might <lb/>be hard links of each other), then unless the file is open (see <lb/>Section 18.26.4), RENAME MUST perform no action and return NFS4_OK. <lb/>For both directories involved in the RENAME, the server returns <lb/>change_info4 information. With the atomic field of the change_info4 <lb/>data type, the server will indicate if the before and after change <lb/>attributes were obtained atomically with respect to the rename. <lb/>If oldname refers to a named attribute and the saved and current <lb/>filehandles refer to different file system objects, the server will <lb/>return NFS4ERR_XDEV just as if the saved and current filehandles <lb/>represented directories on different file systems. <lb/>If oldname or newname has a length of zero, or if oldname or newname <lb/>does not obey the UTF-8 definition, the error NFS4ERR_INVAL will be <lb/>returned. <lb/>18.26.4. IMPLEMENTATION <lb/>The server MAY impose restrictions on the RENAME operation such that <lb/>RENAME may not be done when the file being renamed is open or when <lb/>that open is done by particular protocols, or with particular options <lb/>or access modes. Similar restrictions may be applied when a file <lb/>exists with the target name and is open. When RENAME is rejected <lb/>because of such restrictions, the error NFS4ERR_FILE_OPEN is <lb/>returned. <lb/>When oldname and rename refer to the same file and that file is open <lb/>in a fashion such that RENAME would normally be rejected with <lb/>NFS4ERR_FILE_OPEN if oldname and newname were different files, then <lb/>RENAME SHOULD be rejected with NFS4ERR_FILE_OPEN. <lb/>If a server does implement such restrictions and those restrictions <lb/>include cases of NFSv4 opens preventing successful execution of a <lb/>rename, the server needs to recall any delegations that could hide <lb/>the existence of opens relevant to that decision. This is because <lb/>when a client holds a delegation, the server might not have an <lb/>accurate account of the opens for that client, since the client may <lb/>execute OPENs and CLOSEs locally. The RENAME operation need only be <lb/>delayed until a definitive result can be obtained. For example, if <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 499] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>there are multiple delegations and one of them establishes an open <lb/>whose presence would prevent the rename, given the server's <lb/>semantics, NFS4ERR_FILE_OPEN may be returned to the caller as soon as <lb/>that delegation is returned without waiting for other delegations to <lb/>be returned. Similarly, if such opens are not associated with <lb/>delegations, NFS4ERR_FILE_OPEN can be returned immediately with no <lb/>delegation recall being done. <lb/>If the current filehandle or the saved filehandle designates a <lb/>directory for which another client holds a directory delegation, <lb/>then, unless the situation can be resolved by sending a notification, <lb/>the delegation MUST be recalled, and the operation cannot proceed <lb/>until the delegation is returned or revoked. Except where this <lb/>happens very quickly, one or more NFS4ERR_DELAY errors will be <lb/>returned to requests made while delegation remains outstanding. <lb/>When the current and saved filehandles are the same and they <lb/>designate a directory for which one or more directory delegations <lb/>exist, then, when those delegations request such notifications, a <lb/>notification of type NOTIFY4_RENAME_ENTRY will be generated as a <lb/>result of this operation. When oldname and rename refer to the same <lb/>file, no notification is generated (because, as Section 18.26.3 <lb/>states, the server MUST take no action). When a file is removed <lb/>because it has the same name as the target, if that removal is done <lb/>atomically with the rename, a NOTIFY4_REMOVE_ENTRY notification will <lb/>not be generated. Instead, the deletion of the file will be reported <lb/>as part of the NOTIFY4_RENAME_ENTRY notification. <lb/>When the current and saved filehandles are not the same: <lb/>o If the current filehandle designates a directory for which one or <lb/>more directory delegations exist, then, when those delegations <lb/>request such notifications, NOTIFY4_ADD_ENTRY will be generated as <lb/>a result of this operation. When a file is removed because it has <lb/>the same name as the target, if that removal is done atomically <lb/>with the rename, a NOTIFY4_REMOVE_ENTRY notification will not be <lb/>generated. Instead, the deletion of the file will be reported as <lb/>part of the NOTIFY4_ADD_ENTRY notification. <lb/>o If the saved filehandle designates a directory for which one or <lb/>more directory delegations exist, then, when those delegations <lb/>request such notifications, NOTIFY4_REMOVE_ENTRY will be generated <lb/>as a result of this operation. <lb/>If the object being renamed has file delegations held by clients <lb/>other than the one doing the RENAME, the delegations MUST be <lb/>recalled, and the operation cannot proceed until each such delegation <lb/>is returned or revoked. Note that in the case of multiply linked <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 500] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>files, the delegation recall requirement applies even if the <lb/>delegation was obtained through a different name than the one being <lb/>renamed. In all cases in which delegations are recalled, the server <lb/>is likely to return one or more NFS4ERR_DELAY errors while the <lb/>delegation(s) remains outstanding, although it might not do that if <lb/>the delegations are returned quickly. <lb/>The RENAME operation must be atomic to the client. The statement <lb/>"source and target directories MUST reside on the same file system on <lb/>the server" means that the fsid fields in the attributes for the <lb/>directories are the same. If they reside on different file systems, <lb/>the error NFS4ERR_XDEV is returned. <lb/>Based on the value of the fh_expire_type attribute for the object, <lb/>the filehandle may or may not expire on a RENAME. However, server <lb/>implementors are strongly encouraged to attempt to keep filehandles <lb/>from expiring in this fashion. <lb/>On some servers, the file names "." and ".." are illegal as either <lb/>oldname or newname, and will result in the error NFS4ERR_BADNAME. In <lb/>addition, on many servers the case of oldname or newname being an <lb/>alias for the source directory will be checked for. Such servers <lb/>will return the error NFS4ERR_INVAL in these cases. <lb/>If either of the source or target filehandles are not directories, <lb/>the server will return NFS4ERR_NOTDIR. <lb/>18.27. Operation 31: RESTOREFH -Restore Saved Filehandle <lb/>18.27.1. ARGUMENTS <lb/>/* SAVED_FH: */ <lb/>void; <lb/>18.27.2. RESULTS <lb/>struct RESTOREFH4res { <lb/>/* <lb/>* If status is NFS4_OK, <lb/>* <lb/>new CURRENT_FH: value of saved fh <lb/>*/ <lb/>nfsstat4 <lb/>status; <lb/>}; <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 501] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>18.27.3. DESCRIPTION <lb/>The RESTOREFH operation sets the current filehandle and stateid to <lb/>the values in the saved filehandle and stateid. If there is no saved <lb/>filehandle, then the server will return the error <lb/>NFS4ERR_NOFILEHANDLE. <lb/>See Section 16.2.3.1.1 for more details on the current filehandle. <lb/>See Section 16.2.3.1.2 for more details on the current stateid. <lb/>18.27.4. IMPLEMENTATION <lb/>Operations like OPEN and LOOKUP use the current filehandle to <lb/>represent a directory and replace it with a new filehandle. Assuming <lb/>that the previous filehandle was saved with a SAVEFH operator, the <lb/>previous filehandle can be restored as the current filehandle. This <lb/>is commonly used to obtain post-operation attributes for the <lb/>directory, e.g., <lb/>PUTFH (directory filehandle) <lb/>SAVEFH <lb/>GETATTR attrbits <lb/>(pre-op dir attrs) <lb/>CREATE optbits "foo" attrs <lb/>GETATTR attrbits <lb/>(file attributes) <lb/>RESTOREFH <lb/>GETATTR attrbits <lb/>(post-op dir attrs) <lb/>18.28. Operation 32: SAVEFH -Save Current Filehandle <lb/>18.28.1. ARGUMENTS <lb/>/* CURRENT_FH: */ <lb/>void; <lb/>18.28.2. RESULTS <lb/>struct SAVEFH4res { <lb/>/* <lb/>* If status is NFS4_OK, <lb/>* <lb/>new SAVED_FH: value of current fh <lb/>*/ <lb/>nfsstat4 <lb/>status; <lb/>}; <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 502] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>18.28.3. DESCRIPTION <lb/>The SAVEFH operation saves the current filehandle and stateid. If a <lb/>previous filehandle was saved, then it is no longer accessible. The <lb/>saved filehandle can be restored as the current filehandle with the <lb/>RESTOREFH operator. <lb/>On success, the current filehandle retains its value. <lb/>See Section 16.2.3.1.1 for more details on the current filehandle. <lb/>See Section 16.2.3.1.2 for more details on the current stateid. <lb/>18.28.4. IMPLEMENTATION <lb/>18.29. Operation 33: SECINFO -Obtain Available Security <lb/>18.29.1. ARGUMENTS <lb/>struct SECINFO4args { <lb/>/* CURRENT_FH: directory */ <lb/>component4 <lb/>name; <lb/>}; <lb/>18.29.2. RESULTS <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 503] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>/* <lb/>* From RFC 2203 <lb/>*/ <lb/>enum rpc_gss_svc_t { <lb/>RPC_GSS_SVC_NONE <lb/>= 1, <lb/>RPC_GSS_SVC_INTEGRITY <lb/>= 2, <lb/>RPC_GSS_SVC_PRIVACY <lb/>= 3 <lb/>}; <lb/>struct rpcsec_gss_info { <lb/>sec_oid4 <lb/>oid; <lb/>qop4 <lb/>qop; <lb/>rpc_gss_svc_t <lb/>service; <lb/>}; <lb/>/* RPCSEC_GSS has a value of '6' -See RFC 2203 */ <lb/>union secinfo4 switch (uint32_t flavor) { <lb/>case RPCSEC_GSS: <lb/>rpcsec_gss_info <lb/>flavor_info; <lb/>default: <lb/>void; <lb/>}; <lb/>typedef secinfo4 SECINFO4resok<>; <lb/>union SECINFO4res switch (nfsstat4 status) { <lb/>case NFS4_OK: <lb/>/* CURRENTFH: consumed */ <lb/>SECINFO4resok resok4; <lb/>default: <lb/>void; <lb/>}; <lb/>18.29.3. DESCRIPTION <lb/>The SECINFO operation is used by the client to obtain a list of valid <lb/>RPC authentication flavors for a specific directory filehandle, file <lb/>name pair. SECINFO should apply the same access methodology used for <lb/>LOOKUP when evaluating the name. Therefore, if the requester does <lb/>not have the appropriate access to LOOKUP the name, then SECINFO MUST <lb/>behave the same way and return NFS4ERR_ACCESS. <lb/>The result will contain an array that represents the security <lb/>mechanisms available, with an order corresponding to the server's <lb/>preferences, the most preferred being first in the array. The client <lb/>is free to pick whatever security mechanism it both desires and <lb/>supports, or to pick in the server's preference order the first one <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 504] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>it supports. The array entries are represented by the secinfo4 <lb/>structure. The field 'flavor' will contain a value of AUTH_NONE, <lb/>AUTH_SYS (as defined in RFC 5531 [3]), or RPCSEC_GSS (as defined in <lb/>RFC 2203 [4]). The field flavor can also be any other security <lb/>flavor registered with IANA. <lb/>For the flavors AUTH_NONE and AUTH_SYS, no additional security <lb/>information is returned. The same is true of many (if not most) <lb/>other security flavors, including AUTH_DH. For a return value of <lb/>RPCSEC_GSS, a security triple is returned that contains the mechanism <lb/>object identifier (OID, as defined in RFC 2743 [7]), the quality of <lb/>protection (as defined in RFC 2743 [7]), and the service type (as <lb/>defined in RFC 2203 [4]). It is possible for SECINFO to return <lb/>multiple entries with flavor equal to RPCSEC_GSS with different <lb/>security triple values. <lb/>On success, the current filehandle is consumed (see <lb/>Section 2.6.3.1.1.8), and if the next operation after SECINFO tries <lb/>to use the current filehandle, that operation will fail with the <lb/>status NFS4ERR_NOFILEHANDLE. <lb/>If the name has a length of zero, or if the name does not obey the <lb/>UTF-8 definition (assuming UTF-8 capabilities are enabled; see <lb/>Section 14.4), the error NFS4ERR_INVAL will be returned. <lb/>See Section 2.6 for additional information on the use of SECINFO. <lb/>18.29.4. IMPLEMENTATION <lb/>The SECINFO operation is expected to be used by the NFS client when <lb/>the error value of NFS4ERR_WRONGSEC is returned from another NFS <lb/>operation. This signifies to the client that the server's security <lb/>policy is different from what the client is currently using. At this <lb/>point, the client is expected to obtain a list of possible security <lb/>flavors and choose what best suits its policies. <lb/>As mentioned, the server's security policies will determine when a <lb/>client request receives NFS4ERR_WRONGSEC. See Table 8 for a list of <lb/>operations that can return NFS4ERR_WRONGSEC. In addition, when <lb/>READDIR returns attributes, the rdattr_error (Section 5.8.1.12) can <lb/>contain NFS4ERR_WRONGSEC. Note that CREATE and REMOVE MUST NOT <lb/>return NFS4ERR_WRONGSEC. The rationale for CREATE is that unless the <lb/>target name exists, it cannot have a separate security policy from <lb/>the parent directory, and the security policy of the parent was <lb/>checked when its filehandle was injected into the COMPOUND request's <lb/>operations stream (for similar reasons, an OPEN operation that <lb/>creates the target MUST NOT return NFS4ERR_WRONGSEC). If the target <lb/>name exists, while it might have a separate security policy, that is <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 505] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>irrelevant because CREATE MUST return NFS4ERR_EXIST. The rationale <lb/>for REMOVE is that while that target might have a separate security <lb/>policy, the target is going to be removed, and so the security policy <lb/>of the parent trumps that of the object being removed. RENAME and <lb/>LINK MAY return NFS4ERR_WRONGSEC, but the NFS4ERR_WRONGSEC error <lb/>applies only to the saved filehandle (see Section 2.6.3.1.2). Any <lb/>NFS4ERR_WRONGSEC error on the current filehandle used by LINK and <lb/>RENAME MUST be returned by the PUTFH, PUTPUBFH, PUTROOTFH, or <lb/>RESTOREFH operation that injected the current filehandle. <lb/>With the exception of LINK and RENAME, the set of operations that can <lb/>return NFS4ERR_WRONGSEC represents the point at which the client can <lb/>inject a filehandle into the "current filehandle" at the server. The <lb/>filehandle is either provided by the client (PUTFH, PUTPUBFH, <lb/>PUTROOTFH), generated as a result of a name-to-filehandle translation <lb/>(LOOKUP and OPEN), or generated from the saved filehandle via <lb/>RESTOREFH. As Section 2.6.3.1.1.1 states, a put filehandle operation <lb/>followed by SAVEFH MUST NOT return NFS4ERR_WRONGSEC. Thus, the <lb/>RESTOREFH operation, under certain conditions (see <lb/>Section 2.6.3.1.1), is permitted to return NFS4ERR_WRONGSEC so that <lb/>security policies can be honored. <lb/>The READDIR operation will not directly return the NFS4ERR_WRONGSEC <lb/>error. However, if the READDIR request included a request for <lb/>attributes, it is possible that the READDIR request's security triple <lb/>did not match that of a directory entry. If this is the case and the <lb/>client has requested the rdattr_error attribute, the server will <lb/>return the NFS4ERR_WRONGSEC error in rdattr_error for the entry. <lb/>To resolve an error return of NFS4ERR_WRONGSEC, the client does the <lb/>following: <lb/>o For LOOKUP and OPEN, the client will use SECINFO with the same <lb/>current filehandle and name as provided in the original LOOKUP or <lb/>OPEN to enumerate the available security triples. <lb/>o For the rdattr_error, the client will use SECINFO with the same <lb/>current filehandle as provided in the original READDIR. The name <lb/>passed to SECINFO will be that of the directory entry (as returned <lb/>from READDIR) that had the NFS4ERR_WRONGSEC error in the <lb/>rdattr_error attribute. <lb/>o For PUTFH, PUTROOTFH, PUTPUBFH, RESTOREFH, LINK, and RENAME, the <lb/>client will use SECINFO_NO_NAME { style = <lb/>SECINFO_STYLE4_CURRENT_FH }. The client will prefix the <lb/>SECINFO_NO_NAME operation with the appropriate PUTFH, PUTPUBFH, or <lb/>PUTROOTFH operation that provides the filehandle originally <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 506] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>provided by the PUTFH, PUTPUBFH, PUTROOTFH, or RESTOREFH <lb/>operation. <lb/>NOTE: In NFSv4.0, the client was required to use SECINFO, and had <lb/>to reconstruct the parent of the original filehandle and the <lb/>component name of the original filehandle. The introduction in <lb/>NFSv4.1 of SECINFO_NO_NAME obviates the need for reconstruction. <lb/>o For LOOKUPP, the client will use SECINFO_NO_NAME { style = <lb/>SECINFO_STYLE4_PARENT } and provide the filehandle that equals the <lb/>filehandle originally provided to LOOKUPP. <lb/>See Section 21 for a discussion on the recommendations for the <lb/>security flavor used by SECINFO and SECINFO_NO_NAME. <lb/>18.30. Operation 34: SETATTR -Set Attributes <lb/>18.30.1. ARGUMENTS <lb/>struct SETATTR4args { <lb/>/* CURRENT_FH: target object */ <lb/>stateid4 <lb/>stateid; <lb/>fattr4 <lb/>obj_attributes; <lb/>}; <lb/>18.30.2. RESULTS <lb/>struct SETATTR4res { <lb/>nfsstat4 <lb/>status; <lb/>bitmap4 <lb/>attrsset; <lb/>}; <lb/>18.30.3. DESCRIPTION <lb/>The SETATTR operation changes one or more of the attributes of a file <lb/>system object. The new attributes are specified with a bitmap and <lb/>the attributes that follow the bitmap in bit order. <lb/>The stateid argument for SETATTR is used to provide byte-range <lb/>locking context that is necessary for SETATTR requests that set the <lb/>size attribute. Since setting the size attribute modifies the file's <lb/>data, it has the same locking requirements as a corresponding WRITE. <lb/>Any SETATTR that sets the size attribute is incompatible with a share <lb/>reservation that specifies OPEN4_SHARE_DENY_WRITE. The area between <lb/>the old end-of-file and the new end-of-file is considered to be <lb/>modified just as would have been the case had the area in question <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 507] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>been specified as the target of WRITE, for the purpose of checking <lb/>conflicts with byte-range locks, for those cases in which a server is <lb/>implementing mandatory byte-range locking behavior. A valid stateid <lb/>SHOULD always be specified. When the file size attribute is not set, <lb/>the special stateid consisting of all bits equal to zero MAY be <lb/>passed. <lb/>On either success or failure of the operation, the server will return <lb/>the attrsset bitmask to represent what (if any) attributes were <lb/>successfully set. The attrsset in the response is a subset of the <lb/>attrmask field of the obj_attributes field in the argument. <lb/>On success, the current filehandle retains its value. <lb/>18.30.4. IMPLEMENTATION <lb/>If the request specifies the owner attribute to be set, the server <lb/>SHOULD allow the operation to succeed if the current owner of the <lb/>object matches the value specified in the request. Some servers may <lb/>be implemented in a way as to prohibit the setting of the owner <lb/>attribute unless the requester has privilege to do so. If the server <lb/>is lenient in this one case of matching owner values, the client <lb/>implementation may be simplified in cases of creation of an object <lb/>(e.g., an exclusive create via OPEN) followed by a SETATTR. <lb/>The file size attribute is used to request changes to the size of a <lb/>file. A value of zero causes the file to be truncated, a value less <lb/>than the current size of the file causes data from new size to the <lb/>end of the file to be discarded, and a size greater than the current <lb/>size of the file causes logically zeroed data bytes to be added to <lb/>the end of the file. Servers are free to implement this using <lb/>unallocated bytes (holes) or allocated data bytes set to zero. <lb/>Clients should not make any assumptions regarding a server's <lb/>implementation of this feature, beyond that the bytes in the affected <lb/>byte-range returned by READ will be zeroed. Servers MUST support <lb/>extending the file size via SETATTR. <lb/>SETATTR is not guaranteed to be atomic. A failed SETATTR may <lb/>partially change a file's attributes, hence the reason why the reply <lb/>always includes the status and the list of attributes that were set. <lb/>If the object whose attributes are being changed has a file <lb/>delegation that is held by a client other than the one doing the <lb/>SETATTR, the delegation(s) must be recalled, and the operation cannot <lb/>proceed to actually change an attribute until each such delegation is <lb/>returned or revoked. In all cases in which delegations are recalled, <lb/>the server is likely to return one or more NFS4ERR_DELAY errors while <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 508] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>the delegation(s) remains outstanding, although it might not do that <lb/>if the delegations are returned quickly. <lb/>If the object whose attributes are being set is a directory and <lb/>another client holds a directory delegation for that directory, then <lb/>if enabled, asynchronous notifications will be generated when the set <lb/>of attributes changed has a non-null intersection with the set of <lb/>attributes for which notification is requested. Notifications of <lb/>type NOTIFY4_CHANGE_DIR_ATTRS will be sent to the appropriate <lb/>client(s), but the SETATTR is not delayed by waiting for these <lb/>notifications to be sent. <lb/>If the object whose attributes are being set is a member of the <lb/>directory for which another client holds a directory delegation, then <lb/>asynchronous notifications will be generated when the set of <lb/>attributes changed has a non-null intersection with the set of <lb/>attributes for which notification is requested. Notifications of <lb/>type NOTIFY4_CHANGE_CHILD_ATTRS will be sent to the appropriate <lb/>clients, but the SETATTR is not delayed by waiting for these <lb/>notifications to be sent. <lb/>Changing the size of a file with SETATTR indirectly changes the <lb/>time_modify and change attributes. A client must account for this as <lb/>size changes can result in data deletion. <lb/>The attributes time_access_set and time_modify_set are write-only <lb/>attributes constructed as a switched union so the client can direct <lb/>the server in setting the time values. If the switched union <lb/>specifies SET_TO_CLIENT_TIME4, the client has provided an nfstime4 to <lb/>be used for the operation. If the switch union does not specify <lb/>SET_TO_CLIENT_TIME4, the server is to use its current time for the <lb/>SETATTR operation. <lb/>If server and client times differ, programs that compare client time <lb/>to file times can break. A time synchronization protocol should be <lb/>used to limit client/server time skew. <lb/>Use of a COMPOUND containing a VERIFY operation specifying only the <lb/>change attribute, immediately followed by a SETATTR, provides a means <lb/>whereby a client may specify a request that emulates the <lb/>functionality of the SETATTR guard mechanism of NFSv3. Since the <lb/>function of the guard mechanism is to avoid changes to the file <lb/>attributes based on stale information, delays between checking of the <lb/>guard condition and the setting of the attributes have the potential <lb/>to compromise this function, as would the corresponding delay in the <lb/>NFSv4 emulation. Therefore, NFSv4.1 servers SHOULD take care to <lb/>avoid such delays, to the degree possible, when executing such a <lb/>request. <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 509] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>If the server does not support an attribute as requested by the <lb/>client, the server SHOULD return NFS4ERR_ATTRNOTSUPP. <lb/>A mask of the attributes actually set is returned by SETATTR in all <lb/>cases. That mask MUST NOT include attribute bits not requested to be <lb/>set by the client. If the attribute masks in the request and reply <lb/>are equal, the status field in the reply MUST be NFS4_OK. <lb/>18.31. Operation 37: VERIFY -Verify Same Attributes <lb/>18.31.1. ARGUMENTS <lb/>struct VERIFY4args { <lb/>/* CURRENT_FH: object */ <lb/>fattr4 <lb/>obj_attributes; <lb/>}; <lb/>18.31.2. RESULTS <lb/>struct VERIFY4res { <lb/>nfsstat4 <lb/>status; <lb/>}; <lb/>18.31.3. DESCRIPTION <lb/>The VERIFY operation is used to verify that attributes have the value <lb/>assumed by the client before proceeding with the following operations <lb/>in the COMPOUND request. If any of the attributes do not match, then <lb/>the error NFS4ERR_NOT_SAME must be returned. The current filehandle <lb/>retains its value after successful completion of the operation. <lb/>18.31.4. IMPLEMENTATION <lb/>One possible use of the VERIFY operation is the following series of <lb/>operations. With this, the client is attempting to verify that the <lb/>file being removed will match what the client expects to be removed. <lb/>This series can help prevent the unintended deletion of a file. <lb/>PUTFH (directory filehandle) <lb/>LOOKUP (file name) <lb/>VERIFY (filehandle == fh) <lb/>PUTFH (directory filehandle) <lb/>REMOVE (file name) <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 510] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>This series does not prevent a second client from removing and <lb/>creating a new file in the middle of this sequence, but it does help <lb/>avoid the unintended result. <lb/>In the case that a RECOMMENDED attribute is specified in the VERIFY <lb/>operation and the server does not support that attribute for the file <lb/>system object, the error NFS4ERR_ATTRNOTSUPP is returned to the <lb/>client. <lb/>When the attribute rdattr_error or any set-only attribute (e.g., <lb/>time_modify_set) is specified, the error NFS4ERR_INVAL is returned to <lb/>the client. <lb/>18.32. Operation 38: WRITE -Write to File <lb/>18.32.1. ARGUMENTS <lb/>enum stable_how4 { <lb/>UNSTABLE4 <lb/>= 0, <lb/>DATA_SYNC4 <lb/>= 1, <lb/>FILE_SYNC4 <lb/>= 2 <lb/>}; <lb/>struct WRITE4args { <lb/>/* CURRENT_FH: file */ <lb/>stateid4 <lb/>stateid; <lb/>offset4 <lb/>offset; <lb/>stable_how4 <lb/>stable; <lb/>opaque <lb/>data<>; <lb/>}; <lb/>18.32.2. RESULTS <lb/>struct WRITE4resok { <lb/>count4 <lb/>count; <lb/>stable_how4 <lb/>committed; <lb/>verifier4 <lb/>writeverf; <lb/>}; <lb/>union WRITE4res switch (nfsstat4 status) { <lb/>case NFS4_OK: <lb/>WRITE4resok <lb/>resok4; <lb/>default: <lb/>void; <lb/>}; <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 511] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>18.32.3. DESCRIPTION <lb/>The WRITE operation is used to write data to a regular file. The <lb/>target file is specified by the current filehandle. The offset <lb/>specifies the offset where the data should be written. An offset of <lb/>zero specifies that the write should start at the beginning of the <lb/>file. The count, as encoded as part of the opaque data parameter, <lb/>represents the number of bytes of data that are to be written. If <lb/>the count is zero, the WRITE will succeed and return a count of zero <lb/>subject to permissions checking. The server MAY write fewer bytes <lb/>than requested by the client. <lb/>The client specifies with the stable parameter the method of how the <lb/>data is to be processed by the server. If stable is FILE_SYNC4, the <lb/>server MUST commit the data written plus all file system metadata to <lb/>stable storage before returning results. This corresponds to the <lb/>NFSv2 protocol semantics. Any other behavior constitutes a protocol <lb/>violation. If stable is DATA_SYNC4, then the server MUST commit all <lb/>of the data to stable storage and enough of the metadata to retrieve <lb/>the data before returning. The server implementor is free to <lb/>implement DATA_SYNC4 in the same fashion as FILE_SYNC4, but with a <lb/>possible performance drop. If stable is UNSTABLE4, the server is <lb/>free to commit any part of the data and the metadata to stable <lb/>storage, including all or none, before returning a reply to the <lb/>client. There is no guarantee whether or when any uncommitted data <lb/>will subsequently be committed to stable storage. The only <lb/>guarantees made by the server are that it will not destroy any data <lb/>without changing the value of writeverf and that it will not commit <lb/>the data and metadata at a level less than that requested by the <lb/>client. <lb/>Except when special stateids are used, the stateid value for a WRITE <lb/>request represents a value returned from a previous byte-range LOCK <lb/>or OPEN request or the stateid associated with a delegation. The <lb/>stateid identifies the associated owners if any and is used by the <lb/>server to verify that the associated locks are still valid (e.g., <lb/>have not been revoked). <lb/>Upon successful completion, the following results are returned. The <lb/>count result is the number of bytes of data written to the file. The <lb/>server may write fewer bytes than requested. If so, the actual <lb/>number of bytes written starting at location, offset, is returned. <lb/>The server also returns an indication of the level of commitment of <lb/>the data and metadata via committed. Per Table 11, <lb/>o The server MAY commit the data at a stronger level than requested. <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 512] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>o The server MUST commit the data at a level at least as high as <lb/>that committed. <lb/>Valid combinations of the fields stable in the request and committed <lb/>in the reply. <lb/>+------------+-----------------------------------+ <lb/>| stable <lb/>| committed <lb/>| <lb/>+------------+-----------------------------------+ <lb/>| UNSTABLE4 | FILE_SYNC4, DATA_SYNC4, UNSTABLE4 | <lb/>| DATA_SYNC4 | FILE_SYNC4, DATA_SYNC4 <lb/>| <lb/>| FILE_SYNC4 | FILE_SYNC4 <lb/>| <lb/>+------------+-----------------------------------+ <lb/>Table 11 <lb/>The final portion of the result is the field writeverf. This field <lb/>is the write verifier and is a cookie that the client can use to <lb/>determine whether a server has changed instance state (e.g., server <lb/>restart) between a call to WRITE and a subsequent call to either <lb/>WRITE or COMMIT. This cookie MUST be unchanged during a single <lb/>instance of the NFSv4.1 server and MUST be unique between instances <lb/>of the NFSv4.1 server. If the cookie changes, then the client MUST <lb/>assume that any data written with an UNSTABLE4 value for committed <lb/>and an old writeverf in the reply has been lost and will need to be <lb/>recovered. <lb/>If a client writes data to the server with the stable argument set to <lb/>UNSTABLE4 and the reply yields a committed response of DATA_SYNC4 or <lb/>UNSTABLE4, the client will follow up some time in the future with a <lb/>COMMIT operation to synchronize outstanding asynchronous data and <lb/>metadata with the server's stable storage, barring client error. It <lb/>is possible that due to client crash or other error that a subsequent <lb/>COMMIT will not be received by the server. <lb/>For a WRITE with a stateid value of all bits equal to zero, the <lb/>server MAY allow the WRITE to be serviced subject to mandatory byte-<lb/>range locks or the current share deny modes for the file. For a <lb/>WRITE with a stateid value of all bits equal to 1, the server MUST <lb/>NOT allow the WRITE operation to bypass locking checks at the server <lb/>and otherwise is treated as if a stateid of all bits equal to zero <lb/>were used. <lb/>On success, the current filehandle retains its value. <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 513] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>18.32.4. IMPLEMENTATION <lb/>It is possible for the server to write fewer bytes of data than <lb/>requested by the client. In this case, the server SHOULD NOT return <lb/>an error unless no data was written at all. If the server writes <lb/>less than the number of bytes specified, the client will need to send <lb/>another WRITE to write the remaining data. <lb/>It is assumed that the act of writing data to a file will cause the <lb/>time_modified and change attributes of the file to be updated. <lb/>However, these attributes SHOULD NOT be changed unless the contents <lb/>of the file are changed. Thus, a WRITE request with count set to <lb/>zero SHOULD NOT cause the time_modified and change attributes of the <lb/>file to be updated. <lb/>Stable storage is persistent storage that survives: <lb/>1. Repeated power failures. <lb/>2. Hardware failures (of any board, power supply, etc.). <lb/>3. Repeated software crashes and restarts. <lb/>This definition does not address failure of the stable storage module <lb/>itself. <lb/>The verifier is defined to allow a client to detect different <lb/>instances of an NFSv4.1 protocol server over which cached, <lb/>uncommitted data may be lost. In the most likely case, the verifier <lb/>allows the client to detect server restarts. This information is <lb/>required so that the client can safely determine whether the server <lb/>could have lost cached data. If the server fails unexpectedly and <lb/>the client has uncommitted data from previous WRITE requests (done <lb/>with the stable argument set to UNSTABLE4 and in which the result <lb/>committed was returned as UNSTABLE4 as well), the server might not <lb/>have flushed cached data to stable storage. The burden of recovery <lb/>is on the client, and the client will need to retransmit the data to <lb/>the server. <lb/>A suggested verifier would be to use the time that the server was <lb/>last started (if restarting the server results in lost buffers). <lb/>The reply's committed field allows the client to do more effective <lb/>caching. If the server is committing all WRITE requests to stable <lb/>storage, then it SHOULD return with committed set to FILE_SYNC4, <lb/>regardless of the value of the stable field in the arguments. A <lb/>server that uses an NVRAM accelerator may choose to implement this <lb/>policy. The client can use this to increase the effectiveness of the <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 514] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>cache by discarding cached data that has already been committed on <lb/>the server. <lb/>Some implementations may return NFS4ERR_NOSPC instead of <lb/>NFS4ERR_DQUOT when a user's quota is exceeded. <lb/>In the case that the current filehandle is of type NF4DIR, the server <lb/>will return NFS4ERR_ISDIR. If the current file is a symbolic link, <lb/>the error NFS4ERR_SYMLINK will be returned. Otherwise, if the <lb/>current filehandle does not designate an ordinary file, the server <lb/>will return NFS4ERR_WRONG_TYPE. <lb/>If mandatory byte-range locking is in effect for the file, and the <lb/>corresponding byte-range of the data to be written to the file is <lb/>READ_LT or WRITE_LT locked by an owner that is not associated with <lb/>the stateid, the server MUST return NFS4ERR_LOCKED. If so, the <lb/>client MUST check if the owner corresponding to the stateid used with <lb/>the WRITE operation has a conflicting READ_LT lock that overlaps with <lb/>the byte-range that was to be written. If the stateid's owner has no <lb/>conflicting READ_LT lock, then the client SHOULD try to get the <lb/>appropriate write byte-range lock via the LOCK operation before re-<lb/>attempting the WRITE. When the WRITE completes, the client SHOULD <lb/>release the byte-range lock via LOCKU. <lb/>If the stateid's owner had a conflicting READ_LT lock, then the <lb/>client has no choice but to return an error to the application that <lb/>attempted the WRITE. The reason is that since the stateid's owner <lb/>had a READ_LT lock, either the server attempted to temporarily <lb/>effectively upgrade this READ_LT lock to a WRITE_LT lock or the <lb/>server has no upgrade capability. If the server attempted to upgrade <lb/>the READ_LT lock and failed, it is pointless for the client to re-<lb/>attempt the upgrade via the LOCK operation, because there might be <lb/>another client also trying to upgrade. If two clients are blocked <lb/>trying to upgrade the same lock, the clients deadlock. If the server <lb/>has no upgrade capability, then it is pointless to try a LOCK <lb/>operation to upgrade. <lb/>If one or more other clients have delegations for the file being <lb/>written, those delegations MUST be recalled, and the operation cannot <lb/>proceed until those delegations are returned or revoked. Except <lb/>where this happens very quickly, one or more NFS4ERR_DELAY errors <lb/>will be returned to requests made while the delegation remains <lb/>outstanding. Normally, delegations will not be recalled as a result <lb/>of a WRITE operation since the recall will occur as a result of an <lb/>earlier OPEN. However, since it is possible for a WRITE to be done <lb/>with a special stateid, the server needs to check for this case even <lb/>though the client should have done an OPEN previously. <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 515] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>18.33. Operation 40: BACKCHANNEL_CTL -Backchannel Control <lb/>18.33.1. ARGUMENT <lb/>typedef opaque gsshandle4_t<>; <lb/>struct gss_cb_handles4 { <lb/>rpc_gss_svc_t <lb/>gcbp_service; /* RFC 2203 */ <lb/>gsshandle4_t <lb/>gcbp_handle_from_server; <lb/>gsshandle4_t <lb/>gcbp_handle_from_client; <lb/>}; <lb/>union callback_sec_parms4 switch (uint32_t cb_secflavor) { <lb/>case AUTH_NONE: <lb/>void; <lb/>case AUTH_SYS: <lb/>authsys_parms <lb/>cbsp_sys_cred; /* RFC 1831 */ <lb/>case RPCSEC_GSS: <lb/>gss_cb_handles4 cbsp_gss_handles; <lb/>}; <lb/>struct BACKCHANNEL_CTL4args { <lb/>uint32_t <lb/>bca_cb_program; <lb/>callback_sec_parms4 <lb/>bca_sec_parms<>; <lb/>}; <lb/>18.33.2. RESULT <lb/>struct BACKCHANNEL_CTL4res { <lb/>nfsstat4 <lb/>bcr_status; <lb/>}; <lb/>18.33.3. DESCRIPTION <lb/>The BACKCHANNEL_CTL operation replaces the backchannel's callback <lb/>program number and adds (not replaces) RPCSEC_GSS handles for use by <lb/>the backchannel. <lb/>The arguments of the BACKCHANNEL_CTL call are a subset of the <lb/>CREATE_SESSION parameters. In the arguments of BACKCHANNEL_CTL, the <lb/>bca_cb_program field and bca_sec_parms fields correspond respectively <lb/>to the csa_cb_program and csa_sec_parms fields of the arguments of <lb/>CREATE_SESSION (Section 18.36). <lb/>BACKCHANNEL_CTL MUST appear in a COMPOUND that starts with SEQUENCE. <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 516] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>If the RPCSEC_GSS handle identified by gcbp_handle_from_server does <lb/>not exist on the server, the server MUST return NFS4ERR_NOENT. <lb/>If an RPCSEC_GSS handle is using the SSV context (see <lb/>Section 2.10.9), then because each SSV RPCSEC_GSS handle shares a <lb/>common SSV GSS context, there are security considerations specific to <lb/>this situation discussed in Section 2.10.10. <lb/>18.34. Operation 41: BIND_CONN_TO_SESSION -Associate Connection with <lb/>Session <lb/>18.34.1. ARGUMENT <lb/>enum channel_dir_from_client4 { <lb/>CDFC4_FORE <lb/>= 0x1, <lb/>CDFC4_BACK <lb/>= 0x2, <lb/>CDFC4_FORE_OR_BOTH <lb/>= 0x3, <lb/>CDFC4_BACK_OR_BOTH <lb/>= 0x7 <lb/>}; <lb/>struct BIND_CONN_TO_SESSION4args { <lb/>sessionid4 <lb/>bctsa_sessid; <lb/>channel_dir_from_client4 <lb/>bctsa_dir; <lb/>bool <lb/>bctsa_use_conn_in_rdma_mode; <lb/>}; <lb/>18.34.2. RESULT <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 517] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>enum channel_dir_from_server4 { <lb/>CDFS4_FORE <lb/>= 0x1, <lb/>CDFS4_BACK <lb/>= 0x2, <lb/>CDFS4_BOTH <lb/>= 0x3 <lb/>}; <lb/>struct BIND_CONN_TO_SESSION4resok { <lb/>sessionid4 <lb/>bctsr_sessid; <lb/>channel_dir_from_server4 <lb/>bctsr_dir; <lb/>bool <lb/>bctsr_use_conn_in_rdma_mode; <lb/>}; <lb/>union BIND_CONN_TO_SESSION4res <lb/>switch (nfsstat4 bctsr_status) { <lb/>case NFS4_OK: <lb/>BIND_CONN_TO_SESSION4resok <lb/>bctsr_resok4; <lb/>default: <lb/>void; <lb/>}; <lb/>18.34.3. DESCRIPTION <lb/>BIND_CONN_TO_SESSION is used to associate additional connections with <lb/>a session. It MUST be used on the connection being associated with <lb/>the session. It MUST be the only operation in the COMPOUND <lb/>procedure. If SP4_NONE (Section 18.35) state protection is used, any <lb/>principal, security flavor, or RPCSEC_GSS context MAY be used to <lb/>invoke the operation. If SP4_MACH_CRED is used, RPCSEC_GSS MUST be <lb/>used with the integrity or privacy services, using the principal that <lb/>created the client ID. If SP4_SSV is used, RPCSEC_GSS with the SSV <lb/>GSS mechanism (Section 2.10.9) and integrity or privacy MUST be used. <lb/>If, when the client ID was created, the client opted for SP4_NONE <lb/>state protection, the client is not required to use <lb/>BIND_CONN_TO_SESSION to associate the connection with the session, <lb/>unless the client wishes to associate the connection with the <lb/>backchannel. When SP4_NONE protection is used, simply sending a <lb/>COMPOUND request with a SEQUENCE operation is sufficient to associate <lb/>the connection with the session specified in SEQUENCE. <lb/>The field bctsa_dir indicates whether the client wants to associate <lb/>the connection with the fore channel or the backchannel or both <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 518] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>channels. The value CDFC4_FORE_OR_BOTH indicates that the client <lb/>wants to associate the connection with both the fore channel and <lb/>backchannel, but will accept the connection being associated to just <lb/>the fore channel. The value CDFC4_BACK_OR_BOTH indicates that the <lb/>client wants to associate with both the fore channel and backchannel, <lb/>but will accept the connection being associated with just the <lb/>backchannel. The server replies in bctsr_dir which channel(s) the <lb/>connection is associated with. If the client specified CDFC4_FORE, <lb/>the server MUST return CDFS4_FORE. If the client specified <lb/>CDFC4_BACK, the server MUST return CDFS4_BACK. If the client <lb/>specified CDFC4_FORE_OR_BOTH, the server MUST return CDFS4_FORE or <lb/>CDFS4_BOTH. If the client specified CDFC4_BACK_OR_BOTH, the server <lb/>MUST return CDFS4_BACK or CDFS4_BOTH. <lb/>See the CREATE_SESSION operation (Section 18.36), and the description <lb/>of the argument csa_use_conn_in_rdma_mode to understand <lb/>bctsa_use_conn_in_rdma_mode, and the description of <lb/>csr_use_conn_in_rdma_mode to understand bctsr_use_conn_in_rdma_mode. <lb/>Invoking BIND_CONN_TO_SESSION on a connection already associated with <lb/>the specified session has no effect, and the server MUST respond with <lb/>NFS4_OK, unless the client is demanding changes to the set of <lb/>channels the connection is associated with. If so, the server MUST <lb/>return NFS4ERR_INVAL. <lb/>18.34.4. IMPLEMENTATION <lb/>If a session's channel loses all connections, depending on the client <lb/>ID's state protection and type of channel, the client might need to <lb/>use BIND_CONN_TO_SESSION to associate a new connection. If the <lb/>server restarted and does not keep the reply cache in stable storage, <lb/>the server will not recognize the session ID. The client will <lb/>ultimately have to invoke EXCHANGE_ID to create a new client ID and <lb/>session. <lb/>Suppose SP4_SSV state protection is being used, and <lb/>BIND_CONN_TO_SESSION is among the operations included in the <lb/>spo_must_enforce set when the client ID was created (Section 18.35). <lb/>If so, there is an issue if SET_SSV is sent, no response is returned, <lb/>and the last connection associated with the client ID drops. The <lb/>client, per the sessions model, MUST retry the SET_SSV. But it needs <lb/>a new connection to do so, and MUST associate that connection with <lb/>the session via a BIND_CONN_TO_SESSION authenticated with the SSV GSS <lb/>mechanism. The problem is that the RPCSEC_GSS message integrity <lb/>codes use a subkey derived from the SSV as the key and the SSV may <lb/>have changed. While there are multiple recovery strategies, a <lb/>single, general strategy is described here. <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 519] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>o The client reconnects. <lb/>o The client assumes that the SET_SSV was executed, and so sends <lb/>BIND_CONN_TO_SESSION with the subkey (derived from the new SSV, <lb/>i.e., what SET_SSV would have set the SSV to) used as the key for <lb/>the RPCSEC_GSS credential message integrity codes. <lb/>o If the request succeeds, this means that the original attempted <lb/>SET_SSV did execute successfully. The client re-sends the <lb/>original SET_SSV, which the server will reply to via the reply <lb/>cache. <lb/>o If the server returns an RPC authentication error, this means that <lb/>the server's current SSV was not changed (and the SET_SSV was <lb/>likely not executed). The client then tries BIND_CONN_TO_SESSION <lb/>with the subkey derived from the old SSV as the key for the <lb/>RPCSEC_GSS message integrity codes. <lb/>o The attempted BIND_CONN_TO_SESSION with the old SSV should <lb/>succeed. If so, the client re-sends the original SET_SSV. If the <lb/>original SET_SSV was not executed, then the server executes it. <lb/>If the original SET_SSV was executed but failed, the server will <lb/>return the SET_SSV from the reply cache. <lb/>18.35. Operation 42: EXCHANGE_ID -Instantiate Client ID <lb/>The EXCHANGE_ID operation exchanges long-hand client and server <lb/>identifiers (owners), and provides access to a client ID, creating <lb/>one if necessary. This client ID becomes associated with the <lb/>connection on which the operation is done, so that it is available <lb/>when a CREATE_SESSION is done or when the connection is used to issue <lb/>a request on an existing session associated with the current client. <lb/>18.35.1. ARGUMENT <lb/>const EXCHGID4_FLAG_SUPP_MOVED_REFER <lb/>= 0x00000001; <lb/>const EXCHGID4_FLAG_SUPP_MOVED_MIGR <lb/>= 0x00000002; <lb/>const EXCHGID4_FLAG_BIND_PRINC_STATEID = 0x00000100; <lb/>const EXCHGID4_FLAG_USE_NON_PNFS <lb/>= 0x00010000; <lb/>const EXCHGID4_FLAG_USE_PNFS_MDS <lb/>= 0x00020000; <lb/>const EXCHGID4_FLAG_USE_PNFS_DS <lb/>= 0x00040000; <lb/>const EXCHGID4_FLAG_MASK_PNFS <lb/>= 0x00070000; <lb/>const EXCHGID4_FLAG_UPD_CONFIRMED_REC_A = 0x40000000; <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 520] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>const EXCHGID4_FLAG_CONFIRMED_R <lb/>= 0x80000000; <lb/>struct state_protect_ops4 { <lb/>bitmap4 spo_must_enforce; <lb/>bitmap4 spo_must_allow; <lb/>}; <lb/>struct ssv_sp_parms4 { <lb/>state_protect_ops4 <lb/>ssp_ops; <lb/>sec_oid4 <lb/>ssp_hash_algs<>; <lb/>sec_oid4 <lb/>ssp_encr_algs<>; <lb/>uint32_t <lb/>ssp_window; <lb/>uint32_t <lb/>ssp_num_gss_handles; <lb/>}; <lb/>enum state_protect_how4 { <lb/>SP4_NONE = 0, <lb/>SP4_MACH_CRED = 1, <lb/>SP4_SSV = 2 <lb/>}; <lb/>union state_protect4_a switch(state_protect_how4 spa_how) { <lb/>case SP4_NONE: <lb/>void; <lb/>case SP4_MACH_CRED: <lb/>state_protect_ops4 <lb/>spa_mach_ops; <lb/>case SP4_SSV: <lb/>ssv_sp_parms4 <lb/>spa_ssv_parms; <lb/>}; <lb/>struct EXCHANGE_ID4args { <lb/>client_owner4 <lb/>eia_clientowner; <lb/>uint32_t <lb/>eia_flags; <lb/>state_protect4_a <lb/>eia_state_protect; <lb/>nfs_impl_id4 <lb/>eia_client_impl_id<1>; <lb/>}; <lb/>18.35.2. RESULT <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 521] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>struct ssv_prot_info4 { <lb/>state_protect_ops4 <lb/>spi_ops; <lb/>uint32_t <lb/>spi_hash_alg; <lb/>uint32_t <lb/>spi_encr_alg; <lb/>uint32_t <lb/>spi_ssv_len; <lb/>uint32_t <lb/>spi_window; <lb/>gsshandle4_t <lb/>spi_handles<>; <lb/>}; <lb/>union state_protect4_r switch(state_protect_how4 spr_how) { <lb/>case SP4_NONE: <lb/>void; <lb/>case SP4_MACH_CRED: <lb/>state_protect_ops4 <lb/>spr_mach_ops; <lb/>case SP4_SSV: <lb/>ssv_prot_info4 <lb/>spr_ssv_info; <lb/>}; <lb/>struct EXCHANGE_ID4resok { <lb/>clientid4 <lb/>eir_clientid; <lb/>sequenceid4 <lb/>eir_sequenceid; <lb/>uint32_t <lb/>eir_flags; <lb/>state_protect4_r eir_state_protect; <lb/>server_owner4 <lb/>eir_server_owner; <lb/>opaque <lb/>eir_server_scope<NFS4_OPAQUE_LIMIT>; <lb/>nfs_impl_id4 <lb/>eir_server_impl_id<1>; <lb/>}; <lb/>union EXCHANGE_ID4res switch (nfsstat4 eir_status) { <lb/>case NFS4_OK: <lb/>EXCHANGE_ID4resok <lb/>eir_resok4; <lb/>default: <lb/>void; <lb/>}; <lb/>18.35.3. DESCRIPTION <lb/>The client uses the EXCHANGE_ID operation to register a particular <lb/>client_owner with the server. However, when the client_owner has <lb/>already been registered by other means (e.g. Transparent State <lb/>Migration), the client may still use EXCHANGE_ID to obtain the client <lb/>ID assigned previously. <lb/>The client ID returned from this operation will be associated with <lb/>the connection on which the EXCHANGE_ID is received and will serve as <lb/>a parent object for sessions created by the client on this connection <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 522] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>or to which the connection is bound. As a result of using those <lb/>sessions to make requests involving the creation of state, that state <lb/>will become associated with the client ID returned. <lb/>In situations in which the registration of the client_owner has not <lb/>occurred previously, the client ID must first be used, along with the <lb/>returned eir_sequenceid, in creating an associated session using <lb/>CREATE_SESSION. <lb/>If the flag EXCHGID4_FLAG_CONFIRMED_R is set in the result, <lb/>eir_flags, then it is an indication that the registration of the <lb/>client_owner has already occurred and that a further CREATE_SESSION <lb/>is not needed to confirm it. Of course, subsequent CREATE_SESSION <lb/>operations may be needed for other reasons. <lb/>The value eir_sequenceid is used to establish an initial sequence <lb/>value associate with the client ID returned. In cases in which a <lb/>CREATE_SESSION has already been done, there is no need for this <lb/>value, since sequencing of such request has already been established <lb/>and the client has no need for this value and will ignore it <lb/>EXCHANGE_ID MAY be sent in a COMPOUND procedure that starts with <lb/>SEQUENCE. However, when a client communicates with a server for the <lb/>first time, it will not have a session, so using SEQUENCE will not be <lb/>possible. If EXCHANGE_ID is sent without a preceding SEQUENCE, then <lb/>it MUST be the only operation in the COMPOUND procedure's request. <lb/>If it is not, the server MUST return NFS4ERR_NOT_ONLY_OP. <lb/>The eia_clientowner field is composed of a co_verifier field and a <lb/>co_ownerid string. As noted in s Section 2.4, the co_ownerid <lb/>describes the client, and the co_verifier is the incarnation of the <lb/>client. An EXCHANGE_ID sent with a new incarnation of the client <lb/>will lead to the server removing lock state of the old incarnation. <lb/>Whereas an EXCHANGE_ID sent with the current incarnation and <lb/>co_ownerid will result in an error or an update of the client ID's <lb/>properties, depending on the arguments to EXCHANGE_ID. <lb/>A server MUST NOT provide the same client ID to two different <lb/>incarnations of an eia_clientowner. <lb/>In addition to the client ID and sequence ID, the server returns a <lb/>server owner (eir_server_owner) and server scope (eir_server_scope). <lb/>The former field is used in connection with network trunking as <lb/>described in Section 2.10.5. The latter field is used to allow <lb/>clients to determine when client IDs sent by one server may be <lb/>recognized by another in the event of file system migration (see <lb/>Section 11.10.9 of the current document). <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 523] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>The client ID returned by EXCHANGE_ID is only unique relative to the <lb/>combination of eir_server_owner.so_major_id and eir_server_scope. <lb/>Thus, if two servers return the same client ID, the onus is on the <lb/>client to distinguish the client IDs on the basis of <lb/>eir_server_owner.so_major_id and eir_server_scope. In the event two <lb/>different servers claim matching server_owner.so_major_id and <lb/>eir_server_scope, the client can use the verification techniques <lb/>discussed in Section 2.10.5.1 to determine if the servers are <lb/>distinct. If they are distinct, then the client will need to note <lb/>the destination network addresses of the connections used with each <lb/>server and use the network address as the final discriminator. <lb/>The server, as defined by the unique identity expressed in the <lb/>so_major_id of the server owner and the server scope, needs to track <lb/>several properties of each client ID it hands out. The properties <lb/>apply to the client ID and all sessions associated with the client <lb/>ID. The properties are derived from the arguments and results of <lb/>EXCHANGE_ID. The client ID properties include: <lb/>o The capabilities expressed by the following bits, which come from <lb/>the results of EXCHANGE_ID: <lb/>* EXCHGID4_FLAG_SUPP_MOVED_REFER <lb/>* EXCHGID4_FLAG_SUPP_MOVED_MIGR <lb/>* EXCHGID4_FLAG_BIND_PRINC_STATEID <lb/>* EXCHGID4_FLAG_USE_NON_PNFS <lb/>* EXCHGID4_FLAG_USE_PNFS_MDS <lb/>* EXCHGID4_FLAG_USE_PNFS_DS <lb/>These properties may be updated by subsequent EXCHANGE_ID <lb/>operations on confirmed client IDs though the server MAY refuse to <lb/>change them. <lb/>o The state protection method used, one of SP4_NONE, SP4_MACH_CRED, <lb/>or SP4_SSV, as set by the spa_how field of the arguments to <lb/>EXCHANGE_ID. Once the client ID is confirmed, this property <lb/>cannot be updated by subsequent EXCHANGE_ID operations. <lb/>o For SP4_MACH_CRED or SP4_SSV state protection: <lb/>* The list of operations (spo_must_enforce) that MUST use the <lb/>specified state protection. This list comes from the results <lb/>of EXCHANGE_ID. <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 524] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>* The list of operations (spo_must_allow) that MAY use the <lb/>specified state protection. This list comes from the results <lb/>of EXCHANGE_ID. <lb/>Once the client ID is confirmed, these properties cannot be <lb/>updated by subsequent EXCHANGE_ID requests. <lb/>o For SP4_SSV protection: <lb/>* The OID of the hash algorithm. This property is represented by <lb/>one of the algorithms in the ssp_hash_algs field of the <lb/>EXCHANGE_ID arguments. Once the client ID is confirmed, this <lb/>property cannot be updated by subsequent EXCHANGE_ID requests. <lb/>* The OID of the encryption algorithm. This property is <lb/>represented by one of the algorithms in the ssp_encr_algs field <lb/>of the EXCHANGE_ID arguments. Once the client ID is confirmed, <lb/>this property cannot be updated by subsequent EXCHANGE_ID <lb/>requests. <lb/>* The length of the SSV. This property is represented by the <lb/>spi_ssv_len field in the EXCHANGE_ID results. Once the client <lb/>ID is confirmed, this property cannot be updated by subsequent <lb/>EXCHANGE_ID operations. <lb/>There are REQUIRED and RECOMMENDED relationships among the <lb/>length of the key of the encryption algorithm ("key length"), <lb/>the length of the output of hash algorithm ("hash length"), and <lb/>the length of the SSV ("SSV length"). <lb/>+ key length MUST be <= hash length. This is because the keys <lb/>used for the encryption algorithm are actually subkeys <lb/>derived from the SSV, and the derivation is via the hash <lb/>algorithm. The selection of an encryption algorithm with a <lb/>key length that exceeded the length of the output of the <lb/>hash algorithm would require padding, and thus weaken the <lb/>use of the encryption algorithm. <lb/>+ hash length SHOULD be <= SSV length. This is because the <lb/>SSV is a key used to derive subkeys via an HMAC, and it is <lb/>recommended that the key used as input to an HMAC be at <lb/>least as long as the length of the HMAC's hash algorithm's <lb/>output (see Section 3 of [59]). <lb/>+ key length SHOULD be <= SSV length. This is a transitive <lb/>result of the above two invariants. <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 525] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>+ key length SHOULD be >= hash length / 2. This is because <lb/>the subkey derivation is via an HMAC and it is recommended <lb/>that if the HMAC has to be truncated, it should not be <lb/>truncated to less than half the hash length (see Section 4 <lb/>of RFC2104 [59]). <lb/>* Number of concurrent versions of the SSV the client and server <lb/>will support (see Section 2.10.9). This property is <lb/>represented by spi_window in the EXCHANGE_ID results. The <lb/>property may be updated by subsequent EXCHANGE_ID operations. <lb/>o The client's implementation ID as represented by the <lb/>eia_client_impl_id field of the arguments. The property may be <lb/>updated by subsequent EXCHANGE_ID requests. <lb/>o The server's implementation ID as represented by the <lb/>eir_server_impl_id field of the reply. The property may be <lb/>updated by replies to subsequent EXCHANGE_ID requests. <lb/>The eia_flags passed as part of the arguments and the eir_flags <lb/>results allow the client and server to inform each other of their <lb/>capabilities as well as indicate how the client ID will be used. <lb/>Whether a bit is set or cleared on the arguments' flags does not <lb/>force the server to set or clear the same bit on the results' side. <lb/>Bits not defined above cannot be set in the eia_flags field. If they <lb/>are, the server MUST reject the operation with NFS4ERR_INVAL. <lb/>The EXCHGID4_FLAG_UPD_CONFIRMED_REC_A bit can only be set in <lb/>eia_flags; it is always off in eir_flags. The <lb/>EXCHGID4_FLAG_CONFIRMED_R bit can only be set in eir_flags; it is <lb/>always off in eia_flags. If the server recognizes the co_ownerid and <lb/>co_verifier as mapping to a confirmed client ID, it sets <lb/>EXCHGID4_FLAG_CONFIRMED_R in eir_flags. The <lb/>EXCHGID4_FLAG_CONFIRMED_R flag allows a client to tell if the client <lb/>ID it is trying to create already exists and is confirmed. <lb/>If EXCHGID4_FLAG_UPD_CONFIRMED_REC_A is set in eia_flags, this means <lb/>that the client is attempting to update properties of an existing <lb/>confirmed client ID (if the client wants to update properties of an <lb/>unconfirmed client ID, it MUST NOT set <lb/>EXCHGID4_FLAG_UPD_CONFIRMED_REC_A). If so, it is RECOMMENDED that <lb/>the client send the update EXCHANGE_ID operation in the same COMPOUND <lb/>as a SEQUENCE so that the EXCHANGE_ID is executed exactly once. <lb/>Whether the client can update the properties of client ID depends on <lb/>the state protection it selected when the client ID was created, and <lb/>the principal and security flavor it used when sending the <lb/>EXCHANGE_ID operation. The situations described in items 6, 7, 8, or <lb/>9 of the second numbered list of Section 18.35.4 below will apply. <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 526] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>Note that if the operation succeeds and returns a client ID that is <lb/>already confirmed, the server MUST set the EXCHGID4_FLAG_CONFIRMED_R <lb/>bit in eir_flags. <lb/>If EXCHGID4_FLAG_UPD_CONFIRMED_REC_A is not set in eia_flags, this <lb/>means that the client is trying to establish a new client ID; it is <lb/>attempting to trunk data communication to the server (See <lb/>Section 2.10.5); or it is attempting to update properties of an <lb/>unconfirmed client ID. The situations described in items 1, 2, 3, 4, <lb/>or 5 of the second numbered list of Section 18.35.4 below will apply. <lb/>Note that if the operation succeeds and returns a client ID that was <lb/>previously confirmed, the server MUST set the <lb/>EXCHGID4_FLAG_CONFIRMED_R bit in eir_flags. <lb/>When the EXCHGID4_FLAG_SUPP_MOVED_REFER flag bit is set, the client <lb/>indicates that it is capable of dealing with an NFS4ERR_MOVED error <lb/>as part of a referral sequence. When this bit is not set, it is <lb/>still legal for the server to perform a referral sequence. However, <lb/>a server may use the fact that the client is incapable of correctly <lb/>responding to a referral, by avoiding it for that particular client. <lb/>It may, for instance, act as a proxy for that particular file system, <lb/>at some cost in performance, although it is not obligated to do so. <lb/>If the server will potentially perform a referral, it MUST set <lb/>EXCHGID4_FLAG_SUPP_MOVED_REFER in eir_flags. <lb/>When the EXCHGID4_FLAG_SUPP_MOVED_MIGR is set, the client indicates <lb/>that it is capable of dealing with an NFS4ERR_MOVED error as part of <lb/>a file system migration sequence. When this bit is not set, it is <lb/>still legal for the server to indicate that a file system has moved, <lb/>when this in fact happens. However, a server may use the fact that <lb/>the client is incapable of correctly responding to a migration in its <lb/>scheduling of file systems to migrate so as to avoid migration of <lb/>file systems being actively used. It may also hide actual migrations <lb/>from clients unable to deal with them by acting as a proxy for a <lb/>migrated file system for particular clients, at some cost in <lb/>performance, although it is not obligated to do so. If the server <lb/>will potentially perform a migration, it MUST set <lb/>EXCHGID4_FLAG_SUPP_MOVED_MIGR in eir_flags. <lb/>When EXCHGID4_FLAG_BIND_PRINC_STATEID is set, the client indicates <lb/>that it wants the server to bind the stateid to the principal. This <lb/>means that when a principal creates a stateid, it has to be the one <lb/>to use the stateid. If the server will perform binding, it will <lb/>return EXCHGID4_FLAG_BIND_PRINC_STATEID. The server MAY return <lb/>EXCHGID4_FLAG_BIND_PRINC_STATEID even if the client does not request <lb/>it. If an update to the client ID changes the value of <lb/>EXCHGID4_FLAG_BIND_PRINC_STATEID's client ID property, the effect <lb/>applies only to new stateids. Existing stateids (and all stateids <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 527] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>with the same "other" field) that were created with stateid to <lb/>principal binding in force will continue to have binding in force. <lb/>Existing stateids (and all stateids with the same "other" field) that <lb/>were created with stateid to principal not in force will continue to <lb/>have binding not in force. <lb/>The EXCHGID4_FLAG_USE_NON_PNFS, EXCHGID4_FLAG_USE_PNFS_MDS, and <lb/>EXCHGID4_FLAG_USE_PNFS_DS bits are described in Section 2.10.2.2 and <lb/>convey roles the client ID is to be used for in a pNFS environment. <lb/>The server MUST set one of the acceptable combinations of these bits <lb/>(roles) in eir_flags, as specified in that section. Note that the <lb/>same client owner/server owner pair can have multiple roles. <lb/>Multiple roles can be associated with the same client ID or with <lb/>different client IDs. Thus, if a client sends EXCHANGE_ID from the <lb/>same client owner to the same server owner multiple times, but <lb/>specifies different pNFS roles each time, the server might return <lb/>different client IDs. Given that different pNFS roles might have <lb/>different client IDs, the client may ask for different properties for <lb/>each role/client ID. <lb/>The spa_how field of the eia_state_protect field specifies how the <lb/>client wants to protect its client, locking, and session states from <lb/>unauthorized changes (Section 2.10.8.3): <lb/>o SP4_NONE. The client does not request the NFSv4.1 server to <lb/>enforce state protection. The NFSv4.1 server MUST NOT enforce <lb/>state protection for the returned client ID. <lb/>o SP4_MACH_CRED. If spa_how is SP4_MACH_CRED, then the client MUST <lb/>send the EXCHANGE_ID operation with RPCSEC_GSS as the security <lb/>flavor, and with a service of RPC_GSS_SVC_INTEGRITY or <lb/>RPC_GSS_SVC_PRIVACY. If SP4_MACH_CRED is specified, then the <lb/>client wants to use an RPCSEC_GSS-based machine credential to <lb/>protect its state. The server MUST note the principal the <lb/>EXCHANGE_ID operation was sent with, and the GSS mechanism used. <lb/>These notes collectively comprise the machine credential. <lb/>After the client ID is confirmed, as long as the lease associated <lb/>with the client ID is unexpired, a subsequent EXCHANGE_ID <lb/>operation that uses the same eia_clientowner.co_owner as the first <lb/>EXCHANGE_ID MUST also use the same machine credential as the first <lb/>EXCHANGE_ID. The server returns the same client ID for the <lb/>subsequent EXCHANGE_ID as that returned from the first <lb/>EXCHANGE_ID. <lb/>o SP4_SSV. If spa_how is SP4_SSV, then the client MUST send the <lb/>EXCHANGE_ID operation with RPCSEC_GSS as the security flavor, and <lb/>with a service of RPC_GSS_SVC_INTEGRITY or RPC_GSS_SVC_PRIVACY. <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 528] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>If SP4_SSV is specified, then the client wants to use the SSV to <lb/>protect its state. The server records the credential used in the <lb/>request as the machine credential (as defined above) for the <lb/>eia_clientowner.co_owner. The CREATE_SESSION operation that <lb/>confirms the client ID MUST use the same machine credential. <lb/>When a client specifies SP4_MACH_CRED or SP4_SSV, it also provides <lb/>two lists of operations (each expressed as a bitmap). The first list <lb/>is spo_must_enforce and consists of those operations the client MUST <lb/>send (subject to the server confirming the list of operations in the <lb/>result of EXCHANGE_ID) with the machine credential (if SP4_MACH_CRED <lb/>protection is specified) or the SSV-based credential (if SP4_SSV <lb/>protection is used). The client MUST send the operations with <lb/>RPCSEC_GSS credentials that specify the RPC_GSS_SVC_INTEGRITY or <lb/>RPC_GSS_SVC_PRIVACY security service. Typically, the first list of <lb/>operations includes EXCHANGE_ID, CREATE_SESSION, DELEGPURGE, <lb/>DESTROY_SESSION, BIND_CONN_TO_SESSION, and DESTROY_CLIENTID. The <lb/>client SHOULD NOT specify in this list any operations that require a <lb/>filehandle because the server's access policies MAY conflict with the <lb/>client's choice, and thus the client would then be unable to access a <lb/>subset of the server's namespace. <lb/>Note that if SP4_SSV protection is specified, and the client <lb/>indicates that CREATE_SESSION must be protected with SP4_SSV, because <lb/>the SSV cannot exist without a confirmed client ID, the first <lb/>CREATE_SESSION MUST instead be sent using the machine credential, and <lb/>the server MUST accept the machine credential. <lb/>There is a corresponding result, also called spo_must_enforce, of the <lb/>operations for which the server will require SP4_MACH_CRED or SP4_SSV <lb/>protection. Normally, the server's result equals the client's <lb/>argument, but the result MAY be different. If the client requests <lb/>one or more operations in the set { EXCHANGE_ID, CREATE_SESSION, <lb/>DELEGPURGE, DESTROY_SESSION, BIND_CONN_TO_SESSION, DESTROY_CLIENTID <lb/>}, then the result spo_must_enforce MUST include the operations the <lb/>client requested from that set. <lb/>If spo_must_enforce in the results has BIND_CONN_TO_SESSION set, then <lb/>connection binding enforcement is enabled, and the client MUST use <lb/>the machine (if SP4_MACH_CRED protection is used) or SSV (if SP4_SSV <lb/>protection is used) credential on calls to BIND_CONN_TO_SESSION. <lb/>The second list is spo_must_allow and consists of those operations <lb/>the client wants to have the option of sending with the machine <lb/>credential or the SSV-based credential, even if the object the <lb/>operations are performed on is not owned by the machine or SSV <lb/>credential. <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 529] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>The corresponding result, also called spo_must_allow, consists of the <lb/>operations the server will allow the client to use SP4_SSV or <lb/>SP4_MACH_CRED credentials with. Normally, the server's result equals <lb/>the client's argument, but the result MAY be different. <lb/>The purpose of spo_must_allow is to allow clients to solve the <lb/>following conundrum. Suppose the client ID is confirmed with <lb/>EXCHGID4_FLAG_BIND_PRINC_STATEID, and it calls OPEN with the <lb/>RPCSEC_GSS credentials of a normal user. Now suppose the user's <lb/>credentials expire, and cannot be renewed (e.g., a Kerberos ticket <lb/>granting ticket expires, and the user has logged off and will not be <lb/>acquiring a new ticket granting ticket). The client will be unable <lb/>to send CLOSE without the user's credentials, which is to say the <lb/>client has to either leave the state on the server or re-send <lb/>EXCHANGE_ID with a new verifier to clear all state, that is, unless <lb/>the client includes CLOSE on the list of operations in spo_must_allow <lb/>and the server agrees. <lb/>The SP4_SSV protection parameters also have: <lb/>ssp_hash_algs: <lb/>This is the set of algorithms the client supports for the purpose <lb/>of computing the digests needed for the internal SSV GSS mechanism <lb/>and for the SET_SSV operation. Each algorithm is specified as an <lb/>object identifier (OID). The REQUIRED algorithms for a server are <lb/>id-sha1, id-sha224, id-sha256, id-sha384, and id-sha512 [25]. The <lb/>algorithm the server selects among the set is indicated in <lb/>spi_hash_alg, a field of spr_ssv_prot_info. The field <lb/>spi_hash_alg is an index into the array ssp_hash_algs. If the <lb/>server does not support any of the offered algorithms, it returns <lb/>NFS4ERR_HASH_ALG_UNSUPP. If ssp_hash_algs is empty, the server <lb/>MUST return NFS4ERR_INVAL. <lb/>ssp_encr_algs: <lb/>This is the set of algorithms the client supports for the purpose <lb/>of providing privacy protection for the internal SSV GSS <lb/>mechanism. Each algorithm is specified as an OID. The REQUIRED <lb/>algorithm for a server is id-aes256-CBC. The RECOMMENDED <lb/>algorithms are id-aes192-CBC and id-aes128-CBC [26]. The selected <lb/>algorithm is returned in spi_encr_alg, an index into <lb/>ssp_encr_algs. If the server does not support any of the offered <lb/>algorithms, it returns NFS4ERR_ENCR_ALG_UNSUPP. If ssp_encr_algs <lb/>is empty, the server MUST return NFS4ERR_INVAL. Note that due to <lb/>previously stated requirements and recommendations on the <lb/>relationships between key length and hash length, some <lb/>combinations of RECOMMENDED and REQUIRED encryption algorithm and <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 530] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>hash algorithm either SHOULD NOT or MUST NOT be used. Table 12 <lb/>summarizes the illegal and discouraged combinations. <lb/>ssp_window: <lb/>This is the number of SSV versions the client wants the server to <lb/>maintain (i.e., each successful call to SET_SSV produces a new <lb/>version of the SSV). If ssp_window is zero, the server MUST <lb/>return NFS4ERR_INVAL. The server responds with spi_window, which <lb/>MUST NOT exceed ssp_window and MUST be at least one. Any requests <lb/>on the backchannel or fore channel that are using a version of the <lb/>SSV that is outside the window will fail with an ONC RPC <lb/>authentication error, and the requester will have to retry them <lb/>with the same slot ID and sequence ID. <lb/>ssp_num_gss_handles: <lb/>This is the number of RPCSEC_GSS handles the server should create <lb/>that are based on the GSS SSV mechanism (see Section 2.10.9). It <lb/>is not the total number of RPCSEC_GSS handles for the client ID. <lb/>Indeed, subsequent calls to EXCHANGE_ID will add RPCSEC_GSS <lb/>handles. The server responds with a list of handles in <lb/>spi_handles. If the client asks for at least one handle and the <lb/>server cannot create it, the server MUST return an error. The <lb/>handles in spi_handles are not available for use until the client <lb/>ID is confirmed, which could be immediately if EXCHANGE_ID returns <lb/>EXCHGID4_FLAG_CONFIRMED_R, or upon successful confirmation from <lb/>CREATE_SESSION. <lb/>While a client ID can span all the connections that are connected <lb/>to a server sharing the same eir_server_owner.so_major_id, the <lb/>RPCSEC_GSS handles returned in spi_handles can only be used on <lb/>connections connected to a server that returns the same the <lb/>eir_server_owner.so_major_id and eir_server_owner.so_minor_id on <lb/>each connection. It is permissible for the client to set <lb/>ssp_num_gss_handles to zero; the client can create more handles <lb/>with another EXCHANGE_ID call. <lb/>Because each SSV RPCSEC_GSS handle shares a common SSV GSS <lb/>context, there are security considerations specific to this <lb/>situation discussed in Section 2.10.10. <lb/>The seq_window (see Section 5.2.3.1 of RFC2203 [4]) of each <lb/>RPCSEC_GSS handle in spi_handle MUST be the same as the seq_window <lb/>of the RPCSEC_GSS handle used for the credential of the RPC <lb/>request that the EXCHANGE_ID operation was sent as a part of. <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 531] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>+-------------------+----------------------+------------------------+ <lb/>| Encryption <lb/>| MUST NOT be combined | SHOULD NOT be combined | <lb/>| Algorithm <lb/>| with <lb/>| with <lb/>| <lb/>+-------------------+----------------------+------------------------+ <lb/>| id-aes128-CBC <lb/>| <lb/>| id-sha384, id-sha512 <lb/>| <lb/>| id-aes192-CBC <lb/>| id-sha1 <lb/>| id-sha512 <lb/>| <lb/>| id-aes256-CBC <lb/>| id-sha1, id-sha224 <lb/>| <lb/>| <lb/>+-------------------+----------------------+------------------------+ <lb/>Table 12 <lb/>The arguments include an array of up to one element in length called <lb/>eia_client_impl_id. If eia_client_impl_id is present, it contains <lb/>the information identifying the implementation of the client. <lb/>Similarly, the results include an array of up to one element in <lb/>length called eir_server_impl_id that identifies the implementation <lb/>of the server. Servers MUST accept a zero-length eia_client_impl_id <lb/>array, and clients MUST accept a zero-length eir_server_impl_id <lb/>array. <lb/>A possible use for implementation identifiers would be in diagnostic <lb/>software that extracts this information in an attempt to identify <lb/>interoperability problems, performance workload behaviors, or general <lb/>usage statistics. Since the intent of having access to this <lb/>information is for planning or general diagnosis only, the client and <lb/>server MUST NOT interpret this implementation identity information in <lb/>a way that affects how the implementation interacts with its peer. <lb/>The client and server are not allowed to depend on the peer's <lb/>manifesting a particular allowed behavior based on an implementation <lb/>identifier but are required to interoperate as specified elsewhere in <lb/>the protocol specification. <lb/>Because it is possible that some implementations might violate the <lb/>protocol specification and interpret the identity information, <lb/>implementations MUST provide facilities to allow the NFSv4 client and <lb/>server be configured to set the contents of the nfs_impl_id <lb/>structures sent to any specified value. <lb/>18.35.4. IMPLEMENTATION <lb/>A server's client record is a 5-tuple: <lb/>1. co_ownerid <lb/>The client identifier string, from the eia_clientowner <lb/>structure of the EXCHANGE_ID4args structure. <lb/>2. co_verifier: <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 532] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>A client-specific value used to indicate incarnations (where a <lb/>client restart represents a new incarnation), from the <lb/>eia_clientowner structure of the EXCHANGE_ID4args structure. <lb/>3. principal: <lb/>The principal that was defined in the RPC header's credential <lb/>and/or verifier at the time the client record was established. <lb/>4. client ID: <lb/>The shorthand client identifier, generated by the server and <lb/>returned via the eir_clientid field in the EXCHANGE_ID4resok <lb/>structure. <lb/>5. confirmed: <lb/>A private field on the server indicating whether or not a <lb/>client record has been confirmed. A client record is <lb/>confirmed if there has been a successful CREATE_SESSION <lb/>operation to confirm it. Otherwise, it is unconfirmed. An <lb/>unconfirmed record is established by an EXCHANGE_ID call. Any <lb/>unconfirmed record that is not confirmed within a lease period <lb/>SHOULD be removed. <lb/>The following identifiers represent special values for the fields in <lb/>the records. <lb/>ownerid_arg: <lb/>The value of the eia_clientowner.co_ownerid subfield of the <lb/>EXCHANGE_ID4args structure of the current request. <lb/>verifier_arg: <lb/>The value of the eia_clientowner.co_verifier subfield of the <lb/>EXCHANGE_ID4args structure of the current request. <lb/>old_verifier_arg: <lb/>A value of the eia_clientowner.co_verifier field of a client <lb/>record received in a previous request; this is distinct from <lb/>verifier_arg. <lb/>principal_arg: <lb/>The value of the RPCSEC_GSS principal for the current request. <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 533] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>old_principal_arg: <lb/>A value of the principal of a client record as defined by the RPC <lb/>header's credential or verifier of a previous request. This is <lb/>distinct from principal_arg. <lb/>clientid_ret: <lb/>The value of the eir_clientid field the server will return in the <lb/>EXCHANGE_ID4resok structure for the current request. <lb/>old_clientid_ret: <lb/>The value of the eir_clientid field the server returned in the <lb/>EXCHANGE_ID4resok structure for a previous request. This is <lb/>distinct from clientid_ret. <lb/>confirmed: <lb/>The client ID has been confirmed. <lb/>unconfirmed: <lb/>The client ID has not been confirmed. <lb/>Since EXCHANGE_ID is a non-idempotent operation, we must consider the <lb/>possibility that retries occur as a result of a client restart, <lb/>network partition, malfunctioning router, etc. Retries are <lb/>identified by the value of the eia_clientowner field of <lb/>EXCHANGE_ID4args, and the method for dealing with them is outlined in <lb/>the scenarios below. <lb/>The scenarios are described in terms of the client record(s) a server <lb/>has for a given co_ownerid. Note that if the client ID was created <lb/>specifying SP4_SSV state protection and EXCHANGE_ID as the one of the <lb/>operations in spo_must_allow, then the server MUST authorize <lb/>EXCHANGE_IDs with the SSV principal in addition to the principal that <lb/>created the client ID. <lb/>1. New Owner ID <lb/>If the server has no client records with <lb/>eia_clientowner.co_ownerid matching ownerid_arg, and <lb/>EXCHGID4_FLAG_UPD_CONFIRMED_REC_A is not set in the <lb/>EXCHANGE_ID, then a new shorthand client ID (let us call it <lb/>clientid_ret) is generated, and the following unconfirmed <lb/>record is added to the server's state. <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 534] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>{ ownerid_arg, verifier_arg, principal_arg, clientid_ret, <lb/>unconfirmed } <lb/>Subsequently, the server returns clientid_ret. <lb/>2. Non-Update on Existing Client ID <lb/>If the server has the following confirmed record, and the <lb/>request does not have EXCHGID4_FLAG_UPD_CONFIRMED_REC_A set, <lb/>then the request is the result of a retried request due to a <lb/>faulty router or lost connection, or the client is trying to <lb/>determine if it can perform trunking. <lb/>{ ownerid_arg, verifier_arg, principal_arg, clientid_ret, <lb/>confirmed } <lb/>Since the record has been confirmed, the client must have <lb/>received the server's reply from the initial EXCHANGE_ID <lb/>request. Since the server has a confirmed record, and since <lb/>EXCHGID4_FLAG_UPD_CONFIRMED_REC_A is not set, with the <lb/>possible exception of eir_server_owner.so_minor_id, the server <lb/>returns the same result it did when the client ID's properties <lb/>were last updated (or if never updated, the result when the <lb/>client ID was created). The confirmed record is unchanged. <lb/>3. Client Collision <lb/>If EXCHGID4_FLAG_UPD_CONFIRMED_REC_A is not set, and if the <lb/>server has the following confirmed record, then this request <lb/>is likely the result of a chance collision between the values <lb/>of the eia_clientowner.co_ownerid subfield of EXCHANGE_ID4args <lb/>for two different clients. <lb/>{ ownerid_arg, *, old_principal_arg, old_clientid_ret, <lb/>confirmed } <lb/>If there is currently no state associated with <lb/>old_clientid_ret, or if there is state but the lease has <lb/>expired, then this case is effectively equivalent to the New <lb/>Owner ID case of Paragraph 1. The confirmed record is <lb/>deleted, the old_clientid_ret and its lock state are deleted, <lb/>a new shorthand client ID is generated, and the following <lb/>unconfirmed record is added to the server's state. <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 535] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>{ ownerid_arg, verifier_arg, principal_arg, clientid_ret, <lb/>unconfirmed } <lb/>Subsequently, the server returns clientid_ret. <lb/>If old_clientid_ret has an unexpired lease with state, then no <lb/>state of old_clientid_ret is changed or deleted. The server <lb/>returns NFS4ERR_CLID_INUSE to indicate that the client should <lb/>retry with a different value for the <lb/>eia_clientowner.co_ownerid subfield of EXCHANGE_ID4args. The <lb/>client record is not changed. <lb/>4. Replacement of Unconfirmed Record <lb/>If the EXCHGID4_FLAG_UPD_CONFIRMED_REC_A flag is not set, and <lb/>the server has the following unconfirmed record, then the <lb/>client is attempting EXCHANGE_ID again on an unconfirmed <lb/>client ID, perhaps due to a retry, a client restart before <lb/>client ID confirmation (i.e., before CREATE_SESSION was <lb/>called), or some other reason. <lb/>{ ownerid_arg, *, *, old_clientid_ret, unconfirmed } <lb/>It is possible that the properties of old_clientid_ret are <lb/>different than those specified in the current EXCHANGE_ID. <lb/>Whether or not the properties are being updated, to eliminate <lb/>ambiguity, the server deletes the unconfirmed record, <lb/>generates a new client ID (clientid_ret), and establishes the <lb/>following unconfirmed record: <lb/>{ ownerid_arg, verifier_arg, principal_arg, clientid_ret, <lb/>unconfirmed } <lb/>5. Client Restart <lb/>If EXCHGID4_FLAG_UPD_CONFIRMED_REC_A is not set, and if the <lb/>server has the following confirmed client record, then this <lb/>request is likely from a previously confirmed client that has <lb/>restarted. <lb/>{ ownerid_arg, old_verifier_arg, principal_arg, <lb/>old_clientid_ret, confirmed } <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 536] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>Since the previous incarnation of the same client will no <lb/>longer be making requests, once the new client ID is confirmed <lb/>by CREATE_SESSION, byte-range locks and share reservations <lb/>should be released immediately rather than forcing the new <lb/>incarnation to wait for the lease time on the previous <lb/>incarnation to expire. Furthermore, session state should be <lb/>removed since if the client had maintained that information <lb/>across restart, this request would not have been sent. If the <lb/>server supports neither the CLAIM_DELEGATE_PREV nor <lb/>CLAIM_DELEG_PREV_FH claim types, associated delegations should <lb/>be purged as well; otherwise, delegations are retained and <lb/>recovery proceeds according to Section 10.2.1. <lb/>After processing, clientid_ret is returned to the client and <lb/>this client record is added: <lb/>{ ownerid_arg, verifier_arg, principal_arg, clientid_ret, <lb/>unconfirmed } <lb/>The previously described confirmed record continues to exist, <lb/>and thus the same ownerid_arg exists in both a confirmed and <lb/>unconfirmed state at the same time. The number of states can <lb/>collapse to one once the server receives an applicable <lb/>CREATE_SESSION or EXCHANGE_ID. <lb/>+ If the server subsequently receives a successful <lb/>CREATE_SESSION that confirms clientid_ret, then the server <lb/>atomically destroys the confirmed record and makes the <lb/>unconfirmed record confirmed as described in <lb/>Section 18.36.3. <lb/>+ If the server instead subsequently receives an EXCHANGE_ID <lb/>with the client owner equal to ownerid_arg, one strategy is <lb/>to simply delete the unconfirmed record, and process the <lb/>EXCHANGE_ID as described in the entirety of <lb/>Section 18.35.4. <lb/>6. Update <lb/>If EXCHGID4_FLAG_UPD_CONFIRMED_REC_A is set, and the server <lb/>has the following confirmed record, then this request is an <lb/>attempt at an update. <lb/>{ ownerid_arg, verifier_arg, principal_arg, clientid_ret, <lb/>confirmed } <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 537] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>Since the record has been confirmed, the client must have <lb/>received the server's reply from the initial EXCHANGE_ID <lb/>request. The server allows the update, and the client record <lb/>is left intact. <lb/>7. Update but No Confirmed Record <lb/>If EXCHGID4_FLAG_UPD_CONFIRMED_REC_A is set, and the server <lb/>has no confirmed record corresponding ownerid_arg, then the <lb/>server returns NFS4ERR_NOENT and leaves any unconfirmed record <lb/>intact. <lb/>8. Update but Wrong Verifier <lb/>If EXCHGID4_FLAG_UPD_CONFIRMED_REC_A is set, and the server <lb/>has the following confirmed record, then this request is an <lb/>illegal attempt at an update, perhaps because of a retry from <lb/>a previous client incarnation. <lb/>{ ownerid_arg, old_verifier_arg, *, clientid_ret, confirmed } <lb/>The server returns NFS4ERR_NOT_SAME and leaves the client <lb/>record intact. <lb/>9. Update but Wrong Principal <lb/>If EXCHGID4_FLAG_UPD_CONFIRMED_REC_A is set, and the server <lb/>has the following confirmed record, then this request is an <lb/>illegal attempt at an update by an unauthorized principal. <lb/>{ ownerid_arg, verifier_arg, old_principal_arg, clientid_ret, <lb/>confirmed } <lb/>The server returns NFS4ERR_PERM and leaves the client record <lb/>intact. <lb/>18.36. Operation 43: CREATE_SESSION -Create New Session and Confirm <lb/>Client ID <lb/>18.36.1. ARGUMENT <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 538] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>struct channel_attrs4 { <lb/>count4 <lb/>ca_headerpadsize; <lb/>count4 <lb/>ca_maxrequestsize; <lb/>count4 <lb/>ca_maxresponsesize; <lb/>count4 <lb/>ca_maxresponsesize_cached; <lb/>count4 <lb/>ca_maxoperations; <lb/>count4 <lb/>ca_maxrequests; <lb/>uint32_t <lb/>ca_rdma_ird<1>; <lb/>}; <lb/>const CREATE_SESSION4_FLAG_PERSIST <lb/>= 0x00000001; <lb/>const CREATE_SESSION4_FLAG_CONN_BACK_CHAN <lb/>= 0x00000002; <lb/>const CREATE_SESSION4_FLAG_CONN_RDMA <lb/>= 0x00000004; <lb/>struct CREATE_SESSION4args { <lb/>clientid4 <lb/>csa_clientid; <lb/>sequenceid4 <lb/>csa_sequence; <lb/>uint32_t <lb/>csa_flags; <lb/>channel_attrs4 <lb/>csa_fore_chan_attrs; <lb/>channel_attrs4 <lb/>csa_back_chan_attrs; <lb/>uint32_t <lb/>csa_cb_program; <lb/>callback_sec_parms4 <lb/>csa_sec_parms<>; <lb/>}; <lb/>18.36.2. RESULT <lb/>struct CREATE_SESSION4resok { <lb/>sessionid4 <lb/>csr_sessionid; <lb/>sequenceid4 <lb/>csr_sequence; <lb/>uint32_t <lb/>csr_flags; <lb/>channel_attrs4 <lb/>csr_fore_chan_attrs; <lb/>channel_attrs4 <lb/>csr_back_chan_attrs; <lb/>}; <lb/>union CREATE_SESSION4res switch (nfsstat4 csr_status) { <lb/>case NFS4_OK: <lb/>CREATE_SESSION4resok <lb/>csr_resok4; <lb/>default: <lb/>void; <lb/>}; <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 539] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>18.36.3. DESCRIPTION <lb/>This operation is used by the client to create new session objects on <lb/>the server. <lb/>CREATE_SESSION can be sent with or without a preceding SEQUENCE <lb/>operation in the same COMPOUND procedure. If CREATE_SESSION is sent <lb/>with a preceding SEQUENCE operation, any session created by <lb/>CREATE_SESSION has no direct relation to the session specified in the <lb/>SEQUENCE operation, although the two sessions might be associated <lb/>with the same client ID. If CREATE_SESSION is sent without a <lb/>preceding SEQUENCE, then it MUST be the only operation in the <lb/>COMPOUND procedure's request. If it is not, the server MUST return <lb/>NFS4ERR_NOT_ONLY_OP. <lb/>In addition to creating a session, CREATE_SESSION has the following <lb/>effects: <lb/>o The first session created with a new client ID serves to confirm <lb/>the creation of that client's state on the server. The server <lb/>returns the parameter values for the new session. <lb/>o The connection CREATE_SESSION that is sent over is associated with <lb/>the session's fore channel. <lb/>The arguments and results of CREATE_SESSION are described as follows: <lb/>csa_clientid: <lb/>This is the client ID with which the new session will be <lb/>associated. The corresponding result is csr_sessionid, the <lb/>session ID of the new session. <lb/>csa_sequence: <lb/>Each client ID serializes CREATE_SESSION via a per-client ID <lb/>sequence number (see Section 18.36.4). The corresponding result <lb/>is csr_sequence, which MUST be equal to csa_sequence. <lb/>In the next three arguments, the client offers a value that is to be <lb/>a property of the session. Except where stated otherwise, it is <lb/>RECOMMENDED that the server accept the value. If it is not <lb/>acceptable, the server MAY use a different value. Regardless, the <lb/>server MUST return the value the session will use (which will be <lb/>either what the client offered, or what the server is insisting on) <lb/>to the client. <lb/>csa_flags: <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 540] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>The csa_flags field contains a list of the following flag bits: <lb/>CREATE_SESSION4_FLAG_PERSIST: <lb/>If CREATE_SESSION4_FLAG_PERSIST is set, the client wants the <lb/>server to provide a persistent reply cache. For sessions in <lb/>which only idempotent operations will be used (e.g., a read-<lb/>only session), clients SHOULD NOT set <lb/>CREATE_SESSION4_FLAG_PERSIST. If the server does not or cannot <lb/>provide a persistent reply cache, the server MUST NOT set <lb/>CREATE_SESSION4_FLAG_PERSIST in the field csr_flags. <lb/>If the server is a pNFS metadata server, for reasons described <lb/>in Section 12.5.2 it SHOULD support <lb/>CREATE_SESSION4_FLAG_PERSIST if it supports the layout_hint <lb/>(Section 5.12.4) attribute. <lb/>CREATE_SESSION4_FLAG_CONN_BACK_CHAN: <lb/>If CREATE_SESSION4_FLAG_CONN_BACK_CHAN is set in csa_flags, the <lb/>client is requesting that the connection over which the <lb/>CREATE_SESSION operation arrived be associated with the <lb/>session's backchannel in addition to its fore channel. If the <lb/>server agrees, it sets CREATE_SESSION4_FLAG_CONN_BACK_CHAN in <lb/>the result field csr_flags. If <lb/>CREATE_SESSION4_FLAG_CONN_BACK_CHAN is not set in csa_flags, <lb/>then CREATE_SESSION4_FLAG_CONN_BACK_CHAN MUST NOT be set in <lb/>csr_flags. <lb/>CREATE_SESSION4_FLAG_CONN_RDMA: <lb/>If CREATE_SESSION4_FLAG_CONN_RDMA is set in csa_flags, and if <lb/>the connection over which the CREATE_SESSION operation arrived <lb/>is currently in non-RDMA mode but has the capability to operate <lb/>in RDMA mode, then the client is requesting that the server <lb/>"step up" to RDMA mode on the connection. If the server <lb/>agrees, it sets CREATE_SESSION4_FLAG_CONN_RDMA in the result <lb/>field csr_flags. If CREATE_SESSION4_FLAG_CONN_RDMA is not set <lb/>in csa_flags, then CREATE_SESSION4_FLAG_CONN_RDMA MUST NOT be <lb/>set in csr_flags. Note that once the server agrees to step up, <lb/>it and the client MUST exchange all future traffic on the <lb/>connection with RPC RDMA framing and not Record Marking ([31]). <lb/>csa_fore_chan_attrs, csa_fore_chan_attrs: <lb/>The csa_fore_chan_attrs and csa_back_chan_attrs fields apply to <lb/>attributes of the fore channel (which conveys requests originating <lb/>from the client to the server), and the backchannel (the channel <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 541] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>that conveys callback requests originating from the server to the <lb/>client), respectively. The results are in corresponding <lb/>structures called csr_fore_chan_attrs and csr_back_chan_attrs. <lb/>The results establish attributes for each channel, and on all <lb/>subsequent use of each channel of the session. Each structure has <lb/>the following fields: <lb/>ca_headerpadsize: <lb/>The maximum amount of padding the requester is willing to apply <lb/>to ensure that write payloads are aligned on some boundary at <lb/>the replier. For each channel, the server <lb/>+ will reply in ca_headerpadsize with its preferred value, or <lb/>zero if padding is not in use, and <lb/>+ MAY decrease this value but MUST NOT increase it. <lb/>ca_maxrequestsize: <lb/>The maximum size of a COMPOUND or CB_COMPOUND request that will <lb/>be sent. This size represents the XDR encoded size of the <lb/>request, including the RPC headers (including security flavor <lb/>credentials and verifiers) but excludes any RPC transport <lb/>framing headers. Imagine a request coming over a non-RDMA TCP/ <lb/>IP connection, and that it has a single Record Marking header <lb/>preceding it. The maximum allowable count encoded in the <lb/>header will be ca_maxrequestsize. If a requester sends a <lb/>request that exceeds ca_maxrequestsize, the error <lb/>NFS4ERR_REQ_TOO_BIG will be returned per the description in <lb/>Section 2.10.6.4. For each channel, the server MAY decrease <lb/>this value but MUST NOT increase it. <lb/>ca_maxresponsesize: <lb/>The maximum size of a COMPOUND or CB_COMPOUND reply that the <lb/>requester will accept from the replier including RPC headers <lb/>(see the ca_maxrequestsize definition). For each channel, the <lb/>server MAY decrease this value, but MUST NOT increase it. <lb/>However, if the client selects a value for ca_maxresponsesize <lb/>such that a replier on a channel could never send a response, <lb/>the server SHOULD return NFS4ERR_TOOSMALL in the CREATE_SESSION <lb/>reply. After the session is created, if a requester sends a <lb/>request for which the size of the reply would exceed this <lb/>value, the replier will return NFS4ERR_REP_TOO_BIG, per the <lb/>description in Section 2.10.6.4. <lb/>ca_maxresponsesize_cached: <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 542] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>Like ca_maxresponsesize, but the maximum size of a reply that <lb/>will be stored in the reply cache (Section 2.10.6.1). For each <lb/>channel, the server MAY decrease this value, but MUST NOT <lb/>increase it. If, in the reply to CREATE_SESSION, the value of <lb/>ca_maxresponsesize_cached of a channel is less than the value <lb/>of ca_maxresponsesize of the same channel, then this is an <lb/>indication to the requester that it needs to be selective about <lb/>which replies it directs the replier to cache; for example, <lb/>large replies from nonidempotent operations (e.g., COMPOUND <lb/>requests with a READ operation) should not be cached. The <lb/>requester decides which replies to cache via an argument to the <lb/>SEQUENCE (the sa_cachethis field, see Section 18.46) or <lb/>CB_SEQUENCE (the csa_cachethis field, see Section 20.9) <lb/>operations. After the session is created, if a requester sends <lb/>a request for which the size of the reply would exceed <lb/>ca_maxresponsesize_cached, the replier will return <lb/>NFS4ERR_REP_TOO_BIG_TO_CACHE, per the description in <lb/>Section 2.10.6.4. <lb/>ca_maxoperations: <lb/>The maximum number of operations the replier will accept in a <lb/>COMPOUND or CB_COMPOUND. For the backchannel, the server MUST <lb/>NOT change the value the client offers. For the fore channel, <lb/>the server MAY change the requested value. After the session <lb/>is created, if a requester sends a COMPOUND or CB_COMPOUND with <lb/>more operations than ca_maxoperations, the replier MUST return <lb/>NFS4ERR_TOO_MANY_OPS. <lb/>ca_maxrequests: <lb/>The maximum number of concurrent COMPOUND or CB_COMPOUND <lb/>requests the requester will send on the session. Subsequent <lb/>requests will each be assigned a slot identifier by the <lb/>requester within the range zero to ca_maxrequests -1 <lb/>inclusive. For the backchannel, the server MUST NOT change the <lb/>value the client offers. For the fore channel, the server MAY <lb/>change the requested value. <lb/>ca_rdma_ird: <lb/>This array has a maximum of one element. If this array has one <lb/>element, then the element contains the inbound RDMA read queue <lb/>depth (IRD). For each channel, the server MAY decrease this <lb/>value, but MUST NOT increase it. <lb/>csa_cb_program <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 543] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>This is the ONC RPC program number the server MUST use in any <lb/>callbacks sent through the backchannel to the client. The server <lb/>MUST specify an ONC RPC program number equal to csa_cb_program and <lb/>an ONC RPC version number equal to 4 in callbacks sent to the <lb/>client. If a CB_COMPOUND is sent to the client, the server MUST <lb/>use a minor version number of 1. There is no corresponding <lb/>result. <lb/>csa_sec_parms <lb/>The field csa_sec_parms is an array of acceptable security <lb/>credentials the server can use on the session's backchannel. <lb/>Three security flavors are supported: AUTH_NONE, AUTH_SYS, and <lb/>RPCSEC_GSS. If AUTH_NONE is specified for a credential, then this <lb/>says the client is authorizing the server to use AUTH_NONE on all <lb/>callbacks for the session. If AUTH_SYS is specified, then the <lb/>client is authorizing the server to use AUTH_SYS on all callbacks, <lb/>using the credential specified cbsp_sys_cred. If RPCSEC_GSS is <lb/>specified, then the server is allowed to use the RPCSEC_GSS <lb/>context specified in cbsp_gss_parms as the RPCSEC_GSS context in <lb/>the credential of the RPC header of callbacks to the client. <lb/>There is no corresponding result. <lb/>The RPCSEC_GSS context for the backchannel is specified via a pair <lb/>of values of data type gsshandle4_t. The data type gsshandle4_t <lb/>represents an RPCSEC_GSS handle, and is precisely the same as the <lb/>data type of the "handle" field of the rpc_gss_init_res data type <lb/>defined in Section 5.2.3.1, "Context Creation Response -<lb/>Successful Acceptance", of [4]. <lb/>The first RPCSEC_GSS handle, gcbp_handle_from_server, is the fore <lb/>handle the server returned to the client (either in the handle <lb/>field of data type rpc_gss_init_res or as one of the elements of <lb/>the spi_handles field returned in the reply to EXCHANGE_ID) when <lb/>the RPCSEC_GSS context was created on the server. The second <lb/>handle, gcbp_handle_from_client, is the back handle to which the <lb/>client will map the RPCSEC_GSS context. The server can <lb/>immediately use the value of gcbp_handle_from_client in the <lb/>RPCSEC_GSS credential in callback RPCs. That is, the value in <lb/>gcbp_handle_from_client can be used as the value of the field <lb/>"handle" in data type rpc_gss_cred_t (see Section 5, "Elements of <lb/>the RPCSEC_GSS Security Protocol", of [4]) in callback RPCs. The <lb/>server MUST use the RPCSEC_GSS security service specified in <lb/>gcbp_service, i.e., it MUST set the "service" field of the <lb/>rpc_gss_cred_t data type in RPCSEC_GSS credential to the value of <lb/>gcbp_service (see Section 5.3.1, "RPC Request Header", of [4]). <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 544] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>If the RPCSEC_GSS handle identified by gcbp_handle_from_server <lb/>does not exist on the server, the server will return <lb/>NFS4ERR_NOENT. <lb/>Within each element of csa_sec_parms, the fore and back RPCSEC_GSS <lb/>contexts MUST share the same GSS context and MUST have the same <lb/>seq_window (see Section 5.2.3.1 of RFC2203 [4]). The fore and <lb/>back RPCSEC_GSS context state are independent of each other as far <lb/>as the RPCSEC_GSS sequence number (see the seq_num field in the <lb/>rpc_gss_cred_t data type of Sections 5 and 5.3.1 of [4]). <lb/>If an RPCSEC_GSS handle is using the SSV context (see <lb/>Section 2.10.9), then because each SSV RPCSEC_GSS handle shares a <lb/>common SSV GSS context, there are security considerations specific <lb/>to this situation discussed in Section 2.10.10. <lb/>Once the session is created, the first SEQUENCE or CB_SEQUENCE <lb/>received on a slot MUST have a sequence ID equal to 1; if not, the <lb/>replier MUST return NFS4ERR_SEQ_MISORDERED. <lb/>18.36.4. IMPLEMENTATION <lb/>To describe a possible implementation, the same notation for client <lb/>records introduced in the description of EXCHANGE_ID is used with the <lb/>following addition: <lb/>clientid_arg: The value of the csa_clientid field of the <lb/>CREATE_SESSION4args structure of the current request. <lb/>Since CREATE_SESSION is a non-idempotent operation, we need to <lb/>consider the possibility that retries may occur as a result of a <lb/>client restart, network partition, malfunctioning router, etc. For <lb/>each client ID created by EXCHANGE_ID, the server maintains a <lb/>separate reply cache (called the CREATE_SESSION reply cache) similar <lb/>to the session reply cache used for SEQUENCE operations, with two <lb/>distinctions. <lb/>o First, this is a reply cache just for detecting and processing <lb/>CREATE_SESSION requests for a given client ID. <lb/>o Second, the size of the client ID reply cache is of one slot (and <lb/>as a result, the CREATE_SESSION request does not carry a slot <lb/>number). This means that at most one CREATE_SESSION request for a <lb/>given client ID can be outstanding. <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 545] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>As previously stated, CREATE_SESSION can be sent with or without a <lb/>preceding SEQUENCE operation. Even if a SEQUENCE precedes <lb/>CREATE_SESSION, the server MUST maintain the CREATE_SESSION reply <lb/>cache, which is separate from the reply cache for the session <lb/>associated with a SEQUENCE. If CREATE_SESSION was originally sent by <lb/>itself, the client MAY send a retry of the CREATE_SESSION operation <lb/>within a COMPOUND preceded by a SEQUENCE. If CREATE_SESSION was <lb/>originally sent in a COMPOUND that started with a SEQUENCE, then the <lb/>client SHOULD send a retry in a COMPOUND that starts with a SEQUENCE <lb/>that has the same session ID as the SEQUENCE of the original request. <lb/>However, the client MAY send a retry in a COMPOUND that either has no <lb/>preceding SEQUENCE, or has a preceding SEQUENCE that refers to a <lb/>different session than the original CREATE_SESSION. This might be <lb/>necessary if the client sends a CREATE_SESSION in a COMPOUND preceded <lb/>by a SEQUENCE with session ID X, and session X no longer exists. <lb/>Regardless, any retry of CREATE_SESSION, with or without a preceding <lb/>SEQUENCE, MUST use the same value of csa_sequence as the original. <lb/>After the client received a reply to an EXCHANGE_ID operation that <lb/>contains a new, unconfirmed client ID, the server expects the client <lb/>to follow with a CREATE_SESSION operation to confirm the client ID. <lb/>The server expects value of csa_sequenceid in the arguments to that <lb/>CREATE_SESSION to be to equal the value of the field eir_sequenceid <lb/>that was returned in results of the EXCHANGE_ID that returned the <lb/>unconfirmed client ID. Before the server replies to that EXCHANGE_ID <lb/>operation, it initializes the client ID slot to be equal to <lb/>eir_sequenceid -1 (accounting for underflow), and records a <lb/>contrived CREATE_SESSION result with a "cached" result of <lb/>NFS4ERR_SEQ_MISORDERED. With the client ID slot thus initialized, <lb/>the processing of the CREATE_SESSION operation is divided into four <lb/>phases: <lb/>1. Client record look up. The server looks up the client ID in its <lb/>client record table. If the server contains no records with <lb/>client ID equal to clientid_arg, then most likely the client's <lb/>state has been purged during a period of inactivity, possibly due <lb/>to a loss of connectivity. NFS4ERR_STALE_CLIENTID is returned, <lb/>and no changes are made to any client records on the server. <lb/>Otherwise, the server goes to phase 2. <lb/>2. Sequence ID processing. If csa_sequenceid is equal to the <lb/>sequence ID in the client ID's slot, then this is a replay of the <lb/>previous CREATE_SESSION request, and the server returns the <lb/>cached result. If csa_sequenceid is not equal to the sequence ID <lb/>in the slot, and is more than one greater (accounting for <lb/>wraparound), then the server returns the error <lb/>NFS4ERR_SEQ_MISORDERED, and does not change the slot. If <lb/>csa_sequenceid is equal to the slot's sequence ID + 1 (accounting <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 546] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>for wraparound), then the slot's sequence ID is set to <lb/>csa_sequenceid, and the CREATE_SESSION processing goes to the <lb/>next phase. A subsequent new CREATE_SESSION call over the same <lb/>client ID MUST use a csa_sequenceid that is one greater than the <lb/>sequence ID in the slot. <lb/>3. Client ID confirmation. If this would be the first session for <lb/>the client ID, the CREATE_SESSION operation serves to confirm the <lb/>client ID. Otherwise, the client ID confirmation phase is <lb/>skipped and only the session creation phase occurs. Any case in <lb/>which there is more than one record with identical values for <lb/>client ID represents a server implementation error. Operation in <lb/>the potential valid cases is summarized as follows. <lb/>* Successful Confirmation <lb/>If the server has the following unconfirmed record, then <lb/>this is the expected confirmation of an unconfirmed record. <lb/>{ ownerid, verifier, principal_arg, clientid_arg, <lb/>unconfirmed } <lb/>As noted in Section 18.35.4, the server might also have the <lb/>following confirmed record. <lb/>{ ownerid, old_verifier, principal_arg, old_clientid, <lb/>confirmed } <lb/>The server schedules the replacement of both records with: <lb/>{ ownerid, verifier, principal_arg, clientid_arg, confirmed <lb/>} <lb/>The processing of CREATE_SESSION continues on to session <lb/>creation. Once the session is successfully created, the <lb/>scheduled client record replacement is committed. If the <lb/>session is not successfully created, then no changes are <lb/>made to any client records on the server. <lb/>* Unsuccessful Confirmation <lb/>If the server has the following record, then the client has <lb/>changed principals after the previous EXCHANGE_ID request, <lb/>or there has been a chance collision between shorthand <lb/>client identifiers. <lb/>{ *, *, old_principal_arg, clientid_arg, * } <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 547] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>Neither of these cases is permissible. Processing stops <lb/>and NFS4ERR_CLID_INUSE is returned to the client. No <lb/>changes are made to any client records on the server. <lb/>4. Session creation. The server confirmed the client ID, either in <lb/>this CREATE_SESSION operation, or a previous CREATE_SESSION <lb/>operation. The server examines the remaining fields of the <lb/>arguments. <lb/>The server creates the session by recording the parameter values <lb/>used (including whether the CREATE_SESSION4_FLAG_PERSIST flag is <lb/>set and has been accepted by the server) and allocating space for <lb/>the session reply cache (if there is not enough space, the server <lb/>returns NFS4ERR_NOSPC). For each slot in the reply cache, the <lb/>server sets the sequence ID to zero, and records an entry <lb/>containing a COMPOUND reply with zero operations and the error <lb/>NFS4ERR_SEQ_MISORDERED. This way, if the first SEQUENCE request <lb/>sent has a sequence ID equal to zero, the server can simply <lb/>return what is in the reply cache: NFS4ERR_SEQ_MISORDERED. The <lb/>client initializes its reply cache for receiving callbacks in the <lb/>same way, and similarly, the first CB_SEQUENCE operation on a <lb/>slot after session creation MUST have a sequence ID of one. <lb/>If the session state is created successfully, the server <lb/>associates the session with the client ID provided by the client. <lb/>When a request that had CREATE_SESSION4_FLAG_CONN_RDMA set needs <lb/>to be retried, the retry MUST be done on a new connection that is <lb/>in non-RDMA mode. If properties of the new connection are <lb/>different enough that the arguments to CREATE_SESSION need to <lb/>change, then a non-retry MUST be sent. The server will <lb/>eventually dispose of any session that was created on the <lb/>original connection. <lb/>On the backchannel, the client and server might wish to have many <lb/>slots, in some cases perhaps more that the fore channel, in order to <lb/>deal with the situations where the network link has high latency and <lb/>is the primary bottleneck for response to recalls. If so, and if the <lb/>client provides too few slots to the backchannel, the server might <lb/>limit the number of recallable objects it gives to the client. <lb/>Implementing RPCSEC_GSS callback support requires changes to both the <lb/>client and server implementations of RPCSEC_GSS. One possible set of <lb/>changes includes: <lb/>o Adding a data structure that wraps the GSS-API context with a <lb/>reference count. <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 548] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>o New functions to increment and decrement the reference count. If <lb/>the reference count is decremented to zero, the wrapper data <lb/>structure and the GSS-API context it refers to would be freed. <lb/>o Change RPCSEC_GSS to create the wrapper data structure upon <lb/>receiving GSS-API context from gss_accept_sec_context() and <lb/>gss_init_sec_context(). The reference count would be initialized <lb/>to 1. <lb/>o Adding a function to map an existing RPCSEC_GSS handle to a <lb/>pointer to the wrapper data structure. The reference count would <lb/>be incremented. <lb/>o Adding a function to create a new RPCSEC_GSS handle from a pointer <lb/>to the wrapper data structure. The reference count would be <lb/>incremented. <lb/>o Replacing calls from RPCSEC_GSS that free GSS-API contexts, with <lb/>calls to decrement the reference count on the wrapper data <lb/>structure. <lb/>18.37. Operation 44: DESTROY_SESSION -Destroy a Session <lb/>18.37.1. ARGUMENT <lb/>struct DESTROY_SESSION4args { <lb/>sessionid4 <lb/>dsa_sessionid; <lb/>}; <lb/>18.37.2. RESULT <lb/>struct DESTROY_SESSION4res { <lb/>nfsstat4 <lb/>dsr_status; <lb/>}; <lb/>18.37.3. DESCRIPTION <lb/>The DESTROY_SESSION operation closes the session and discards the <lb/>session's reply cache, if any. Any remaining connections associated <lb/>with the session are immediately disassociated. If the connection <lb/>has no remaining associated sessions, the connection MAY be closed by <lb/>the server. Locks, delegations, layouts, wants, and the lease, which <lb/>are all tied to the client ID, are not affected by DESTROY_SESSION. <lb/>DESTROY_SESSION MUST be invoked on a connection that is associated <lb/>with the session being destroyed. In addition, if SP4_MACH_CRED <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 549] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>state protection was specified when the client ID was created, the <lb/>RPCSEC_GSS principal that created the session MUST be the one that <lb/>destroys the session, using RPCSEC_GSS privacy or integrity. If <lb/>SP4_SSV state protection was specified when the client ID was <lb/>created, RPCSEC_GSS using the SSV mechanism (Section 2.10.9) MUST be <lb/>used, with integrity or privacy. <lb/>If the COMPOUND request starts with SEQUENCE, and if the sessionids <lb/>specified in SEQUENCE and DESTROY_SESSION are the same, then <lb/>o DESTROY_SESSION MUST be the final operation in the COMPOUND <lb/>request. <lb/>o It is advisable to avoid placing DESTROY_SESSION in a COMPOUND <lb/>request with other state-modifying operations, because the <lb/>DESTROY_SESSION will destroy the reply cache. <lb/>o Because the session and its reply cache are destroyed, a client <lb/>that retries the request may receive an error in reply to the <lb/>retry, even though the original request was successful. <lb/>If the COMPOUND request starts with SEQUENCE, and if the sessionids <lb/>specified in SEQUENCE and DESTROY_SESSION are different, then <lb/>DESTROY_SESSION can appear in any position of the COMPOUND request <lb/>(except for the first position). The two sessionids can belong to <lb/>different client IDs. <lb/>If the COMPOUND request does not start with SEQUENCE, and if <lb/>DESTROY_SESSION is not the sole operation, then server MUST return <lb/>NFS4ERR_NOT_ONLY_OP. <lb/>If there is a backchannel on the session and the server has <lb/>outstanding CB_COMPOUND operations for the session which have not <lb/>been replied to, then the server MAY refuse to destroy the session <lb/>and return an error. If so, then in the event the backchannel is <lb/>down, the server SHOULD return NFS4ERR_CB_PATH_DOWN to inform the <lb/>client that the backchannel needs to be repaired before the server <lb/>will allow the session to be destroyed. Otherwise, the error <lb/>CB_BACK_CHAN_BUSY SHOULD be returned to indicate that there are <lb/>CB_COMPOUNDs that need to be replied to. The client SHOULD reply to <lb/>all outstanding CB_COMPOUNDs before re-sending DESTROY_SESSION. <lb/>18.38. Operation 45: FREE_STATEID -Free Stateid with No Locks <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 550] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>18.38.1. ARGUMENT <lb/>struct FREE_STATEID4args { <lb/>stateid4 <lb/>fsa_stateid; <lb/>}; <lb/>18.38.2. RESULT <lb/>struct FREE_STATEID4res { <lb/>nfsstat4 <lb/>fsr_status; <lb/>}; <lb/>18.38.3. DESCRIPTION <lb/>The FREE_STATEID operation is used to free a stateid that no longer <lb/>has any associated locks (including opens, byte-range locks, <lb/>delegations, and layouts). This may be because of client LOCKU <lb/>operations or because of server revocation. If there are valid locks <lb/>(of any kind) associated with the stateid in question, the error <lb/>NFS4ERR_LOCKS_HELD will be returned, and the associated stateid will <lb/>not be freed. <lb/>When a stateid is freed that had been associated with revoked locks, <lb/>by sending the FREE_STATEID operation, the client acknowledges the <lb/>loss of those locks. This allows the server, once all such revoked <lb/>state is acknowledged, to allow that client again to reclaim locks, <lb/>without encountering the edge conditions discussed in Section 8.4.2. <lb/>Once a successful FREE_STATEID is done for a given stateid, any <lb/>subsequent use of that stateid will result in an NFS4ERR_BAD_STATEID <lb/>error. <lb/>18.39. Operation 46: GET_DIR_DELEGATION -Get a Directory Delegation <lb/>18.39.1. ARGUMENT <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 551] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>typedef nfstime4 attr_notice4; <lb/>struct GET_DIR_DELEGATION4args { <lb/>/* CURRENT_FH: delegated directory */ <lb/>bool <lb/>gdda_signal_deleg_avail; <lb/>bitmap4 <lb/>gdda_notification_types; <lb/>attr_notice4 <lb/>gdda_child_attr_delay; <lb/>attr_notice4 <lb/>gdda_dir_attr_delay; <lb/>bitmap4 <lb/>gdda_child_attributes; <lb/>bitmap4 <lb/>gdda_dir_attributes; <lb/>}; <lb/>18.39.2. RESULT <lb/>struct GET_DIR_DELEGATION4resok { <lb/>verifier4 <lb/>gddr_cookieverf; <lb/>/* Stateid for get_dir_delegation */ <lb/>stateid4 <lb/>gddr_stateid; <lb/>/* Which notifications can the server support */ <lb/>bitmap4 <lb/>gddr_notification; <lb/>bitmap4 <lb/>gddr_child_attributes; <lb/>bitmap4 <lb/>gddr_dir_attributes; <lb/>}; <lb/>enum gddrnf4_status { <lb/>GDD4_OK <lb/>= 0, <lb/>GDD4_UNAVAIL <lb/>= 1 <lb/>}; <lb/>union GET_DIR_DELEGATION4res_non_fatal <lb/>switch (gddrnf4_status gddrnf_status) { <lb/>case GDD4_OK: <lb/>GET_DIR_DELEGATION4resok <lb/>gddrnf_resok4; <lb/>case GDD4_UNAVAIL: <lb/>bool <lb/>gddrnf_will_signal_deleg_avail; <lb/>}; <lb/>union GET_DIR_DELEGATION4res <lb/>switch (nfsstat4 gddr_status) { <lb/>case NFS4_OK: <lb/>GET_DIR_DELEGATION4res_non_fatal <lb/>gddr_res_non_fatal4; <lb/>default: <lb/>void; <lb/>}; <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 552] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>18.39.3. DESCRIPTION <lb/>The GET_DIR_DELEGATION operation is used by a client to request a <lb/>directory delegation. The directory is represented by the current <lb/>filehandle. The client also specifies whether it wants the server to <lb/>notify it when the directory changes in certain ways by setting one <lb/>or more bits in a bitmap. The server may refuse to grant the <lb/>delegation. In that case, the server will return <lb/>NFS4ERR_DIRDELEG_UNAVAIL. If the server decides to hand out the <lb/>delegation, it will return a cookie verifier for that directory. If <lb/>the cookie verifier changes when the client is holding the <lb/>delegation, the delegation will be recalled unless the client has <lb/>asked for notification for this event. <lb/>The server will also return a directory delegation stateid, <lb/>gddr_stateid, as a result of the GET_DIR_DELEGATION operation. This <lb/>stateid will appear in callback messages related to the delegation, <lb/>such as notifications and delegation recalls. The client will use <lb/>this stateid to return the delegation voluntarily or upon recall. A <lb/>delegation is returned by calling the DELEGRETURN operation. <lb/>The server might not be able to support notifications of certain <lb/>events. If the client asks for such notifications, the server MUST <lb/>inform the client of its inability to do so as part of the <lb/>GET_DIR_DELEGATION reply by not setting the appropriate bits in the <lb/>supported notifications bitmask, gddr_notification, contained in the <lb/>reply. The server MUST NOT add bits to gddr_notification that the <lb/>client did not request. <lb/>The GET_DIR_DELEGATION operation can be used for both normal and <lb/>named attribute directories. <lb/>If client sets gdda_signal_deleg_avail to TRUE, then it is <lb/>registering with the client a "want" for a directory delegation. If <lb/>the delegation is not available, and the server supports and will <lb/>honor the "want", the results will have <lb/>gddrnf_will_signal_deleg_avail set to TRUE and no error will be <lb/>indicated on return. If so, the client should expect a future <lb/>CB_RECALLABLE_OBJ_AVAIL operation to indicate that a directory <lb/>delegation is available. If the server does not wish to honor the <lb/>"want" or is not able to do so, it returns the error <lb/>NFS4ERR_DIRDELEG_UNAVAIL. If the delegation is immediately <lb/>available, the server SHOULD return it with the response to the <lb/>operation, rather than via a callback. <lb/>When a client makes a request for a directory delegation while it <lb/>already holds a directory delegation for that directory (including <lb/>the case where it has been recalled but not yet returned by the <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 553] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>client or revoked by the server), the server MUST reply with the <lb/>value of gddr_status set to NFS4_OK, the value of gddrnf_status set <lb/>to GDD4_UNAVAIL, and the value of gddrnf_will_signal_deleg_avail set <lb/>to FALSE. The delegation the client held before the request remains <lb/>intact, and its state is unchanged. The current stateid is not <lb/>changed (see Section 16.2.3.1.2 for a description of the current <lb/>stateid). <lb/>18.39.4. IMPLEMENTATION <lb/>Directory delegations provide the benefit of improving cache <lb/>consistency of namespace information. This is done through <lb/>synchronous callbacks. A server must support synchronous callbacks <lb/>in order to support directory delegations. In addition to that, <lb/>asynchronous notifications provide a way to reduce network traffic as <lb/>well as improve client performance in certain conditions. <lb/>Notifications are specified in terms of potential changes to the <lb/>directory. A client can ask to be notified of events by setting one <lb/>or more bits in gdda_notification_types. The client can ask for <lb/>notifications on addition of entries to a directory (by setting the <lb/>NOTIFY4_ADD_ENTRY in gdda_notification_types), notifications on entry <lb/>removal (NOTIFY4_REMOVE_ENTRY), renames (NOTIFY4_RENAME_ENTRY), <lb/>directory attribute changes (NOTIFY4_CHANGE_DIR_ATTRIBUTES), and <lb/>cookie verifier changes (NOTIFY4_CHANGE_COOKIE_VERIFIER) by setting <lb/>one or more corresponding bits in the gdda_notification_types field. <lb/>The client can also ask for notifications of changes to attributes of <lb/>directory entries (NOTIFY4_CHANGE_CHILD_ATTRIBUTES) in order to keep <lb/>its attribute cache up to date. However, any changes made to child <lb/>attributes do not cause the delegation to be recalled. If a client <lb/>is interested in directory entry caching or negative name caching, it <lb/>can set the gdda_notification_types appropriately to its particular <lb/>need and the server will notify it of all changes that would <lb/>otherwise invalidate its name cache. The kind of notification a <lb/>client asks for may depend on the directory size, its rate of change, <lb/>and the applications being used to access that directory. The <lb/>enumeration of the conditions under which a client might ask for a <lb/>notification is out of the scope of this specification. <lb/>For attribute notifications, the client will set bits in the <lb/>gdda_dir_attributes bitmap to indicate which attributes it wants to <lb/>be notified of. If the server does not support notifications for <lb/>changes to a certain attribute, it SHOULD NOT set that attribute in <lb/>the supported attribute bitmap specified in the reply <lb/>(gddr_dir_attributes). The client will also set in the <lb/>gdda_child_attributes bitmap the attributes of directory entries it <lb/>wants to be notified of, and the server will indicate in <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 554] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>gddr_child_attributes which attributes of directory entries it will <lb/>notify the client of. <lb/>The client will also let the server know if it wants to get the <lb/>notification as soon as the attribute change occurs or after a <lb/>certain delay by setting a delay factor; gdda_child_attr_delay is for <lb/>attribute changes to directory entries and gdda_dir_attr_delay is for <lb/>attribute changes to the directory. If this delay factor is set to <lb/>zero, that indicates to the server that the client wants to be <lb/>notified of any attribute changes as soon as they occur. If the <lb/>delay factor is set to N seconds, the server will make a best-effort <lb/>guarantee that attribute updates are synchronized within N seconds. <lb/>If the client asks for a delay factor that the server does not <lb/>support or that may cause significant resource consumption on the <lb/>server by causing the server to send a lot of notifications, the <lb/>server should not commit to sending out notifications for attributes <lb/>and therefore must not set the appropriate bit in the <lb/>gddr_child_attributes and gddr_dir_attributes bitmaps in the <lb/>response. <lb/>The client MUST use a security tuple (Section 2.6.1) that the <lb/>directory or its applicable ancestor (Section 2.6) is exported with. <lb/>If not, the server MUST return NFS4ERR_WRONGSEC to the operation that <lb/>both precedes GET_DIR_DELEGATION and sets the current filehandle (see <lb/>Section 2.6.3.1). <lb/>The directory delegation covers all the entries in the directory <lb/>except the parent entry. That means if a directory and its parent <lb/>both hold directory delegations, any changes to the parent will not <lb/>cause a notification to be sent for the child even though the child's <lb/>parent entry points to the parent directory. <lb/>18.40. Operation 47: GETDEVICEINFO -Get Device Information <lb/>18.40.1. ARGUMENT <lb/>struct GETDEVICEINFO4args { <lb/>deviceid4 <lb/>gdia_device_id; <lb/>layouttype4 <lb/>gdia_layout_type; <lb/>count4 <lb/>gdia_maxcount; <lb/>bitmap4 <lb/>gdia_notify_types; <lb/>}; <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 555] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>18.40.2. RESULT <lb/>struct GETDEVICEINFO4resok { <lb/>device_addr4 <lb/>gdir_device_addr; <lb/>bitmap4 <lb/>gdir_notification; <lb/>}; <lb/>union GETDEVICEINFO4res switch (nfsstat4 gdir_status) { <lb/>case NFS4_OK: <lb/>GETDEVICEINFO4resok <lb/>gdir_resok4; <lb/>case NFS4ERR_TOOSMALL: <lb/>count4 <lb/>gdir_mincount; <lb/>default: <lb/>void; <lb/>}; <lb/>18.40.3. DESCRIPTION <lb/>The GETDEVICEINFO operation returns pNFS storage device address <lb/>information for the specified device ID. The client identifies the <lb/>device information to be returned by providing the gdia_device_id and <lb/>gdia_layout_type that uniquely identify the device. The client <lb/>provides gdia_maxcount to limit the number of bytes for the result. <lb/>This maximum size represents all of the data being returned within <lb/>the GETDEVICEINFO4resok structure and includes the XDR overhead. The <lb/>server may return less data. If the server is unable to return any <lb/>information within the gdia_maxcount limit, the error <lb/>NFS4ERR_TOOSMALL will be returned. However, if gdia_maxcount is <lb/>zero, NFS4ERR_TOOSMALL MUST NOT be returned. <lb/>The da_layout_type field of the gdir_device_addr returned by the <lb/>server MUST be equal to the gdia_layout_type specified by the client. <lb/>If it is not equal, the client SHOULD ignore the response as invalid <lb/>and behave as if the server returned an error, even if the client <lb/>does have support for the layout type returned. <lb/>The client also provides a notification bitmap, gdia_notify_types, <lb/>for the device ID mapping notification for which it is interested in <lb/>receiving; the server must support device ID notifications for the <lb/>notification request to have affect. The notification mask is <lb/>composed in the same manner as the bitmap for file attributes <lb/>(Section 3.3.7). The numbers of bit positions are listed in the <lb/>notify_device_type4 enumeration type (Section 20.12). Only two <lb/>enumerated values of notify_device_type4 currently apply to <lb/>GETDEVICEINFO: NOTIFY_DEVICEID4_CHANGE and NOTIFY_DEVICEID4_DELETE <lb/>(see Section 20.12). <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 556] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>The notification bitmap applies only to the specified device ID. If <lb/>a client sends a GETDEVICEINFO operation on a deviceID multiple <lb/>times, the last notification bitmap is used by the server for <lb/>subsequent notifications. If the bitmap is zero or empty, then the <lb/>device ID's notifications are turned off. <lb/>If the client wants to just update or turn off notifications, it MAY <lb/>send a GETDEVICEINFO operation with gdia_maxcount set to zero. In <lb/>that event, if the device ID is valid, the reply's da_addr_body field <lb/>of the gdir_device_addr field will be of zero length. <lb/>If an unknown device ID is given in gdia_device_id, the server <lb/>returns NFS4ERR_NOENT. Otherwise, the device address information is <lb/>returned in gdir_device_addr. Finally, if the server supports <lb/>notifications for device ID mappings, the gdir_notification result <lb/>will contain a bitmap of which notifications it will actually send to <lb/>the client (via CB_NOTIFY_DEVICEID, see Section 20.12). <lb/>If NFS4ERR_TOOSMALL is returned, the results also contain <lb/>gdir_mincount. The value of gdir_mincount represents the minimum <lb/>size necessary to obtain the device information. <lb/>18.40.4. IMPLEMENTATION <lb/>Aside from updating or turning off notifications, another use case <lb/>for gdia_maxcount being set to zero is to validate a device ID. <lb/>The client SHOULD request a notification for changes or deletion of a <lb/>device ID to device address mapping so that the server can allow the <lb/>client gracefully use a new mapping, without having pending I/O fail <lb/>abruptly, or force layouts using the device ID to be recalled or <lb/>revoked. <lb/>It is possible that GETDEVICEINFO (and GETDEVICELIST) will race with <lb/>CB_NOTIFY_DEVICEID, i.e., CB_NOTIFY_DEVICEID arrives before the <lb/>client gets and processes the response to GETDEVICEINFO or <lb/>GETDEVICELIST. The analysis of the race leverages the fact that the <lb/>server MUST NOT delete a device ID that is referred to by a layout <lb/>the client has. <lb/>o CB_NOTIFY_DEVICEID deletes a device ID. If the client believes it <lb/>has layouts that refer to the device ID, then it is possible that <lb/>layouts referring to the deleted device ID have been revoked. The <lb/>client should send a TEST_STATEID request using the stateid for <lb/>each layout that might have been revoked. If TEST_STATEID <lb/>indicates that any layouts have been revoked, the client must <lb/>recover from layout revocation as described in Section 12.5.6. If <lb/>TEST_STATEID indicates that at least one layout has not been <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 557] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>revoked, the client should send a GETDEVICEINFO operation on the <lb/>supposedly deleted device ID to verify that the device ID has been <lb/>deleted. <lb/>If GETDEVICEINFO indicates that the device ID does not exist, then <lb/>the client assumes the server is faulty and recovers by sending an <lb/>EXCHANGE_ID operation. If GETDEVICEINFO indicates that the device <lb/>ID does exist, then while the server is faulty for sending an <lb/>erroneous device ID deletion notification, the degree to which it <lb/>is faulty does not require the client to create a new client ID. <lb/>If the client does not have layouts that refer to the device ID, <lb/>no harm is done. The client should mark the device ID as deleted, <lb/>and when GETDEVICEINFO or GETDEVICELIST results are received that <lb/>indicate that the device ID has been in fact deleted, the device <lb/>ID should be removed from the client's cache. <lb/>o CB_NOTIFY_DEVICEID indicates that a device ID's device addressing <lb/>mappings have changed. The client should assume that the results <lb/>from the in-progress GETDEVICEINFO will be stale for the device ID <lb/>once received, and so it should send another GETDEVICEINFO on the <lb/>device ID. <lb/>18.41. Operation 48: GETDEVICELIST -Get All Device Mappings for a File <lb/>System <lb/>18.41.1. ARGUMENT <lb/>struct GETDEVICELIST4args { <lb/>/* CURRENT_FH: object belonging to the file system */ <lb/>layouttype4 <lb/>gdla_layout_type; <lb/>/* number of deviceIDs to return */ <lb/>count4 <lb/>gdla_maxdevices; <lb/>nfs_cookie4 <lb/>gdla_cookie; <lb/>verifier4 <lb/>gdla_cookieverf; <lb/>}; <lb/>18.41.2. RESULT <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 558] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>struct GETDEVICELIST4resok { <lb/>nfs_cookie4 <lb/>gdlr_cookie; <lb/>verifier4 <lb/>gdlr_cookieverf; <lb/>deviceid4 <lb/>gdlr_deviceid_list<>; <lb/>bool <lb/>gdlr_eof; <lb/>}; <lb/>union GETDEVICELIST4res switch (nfsstat4 gdlr_status) { <lb/>case NFS4_OK: <lb/>GETDEVICELIST4resok <lb/>gdlr_resok4; <lb/>default: <lb/>void; <lb/>}; <lb/>18.41.3. DESCRIPTION <lb/>This operation is used by the client to enumerate all of the device <lb/>IDs that a server's file system uses. <lb/>The client provides a current filehandle of a file object that <lb/>belongs to the file system (i.e., all file objects sharing the same <lb/>fsid as that of the current filehandle) and the layout type in <lb/>gdia_layout_type. Since this operation might require multiple calls <lb/>to enumerate all the device IDs (and is thus similar to the READDIR <lb/>(Section 18.23) operation), the client also provides gdia_cookie and <lb/>gdia_cookieverf to specify the current cursor position in the list. <lb/>When the client wants to read from the beginning of the file system's <lb/>device mappings, it sets gdla_cookie to zero. The field <lb/>gdla_cookieverf MUST be ignored by the server when gdla_cookie is <lb/>zero. The client provides gdla_maxdevices to limit the number of <lb/>device IDs in the result. If gdla_maxdevices is zero, the server <lb/>MUST return NFS4ERR_INVAL. The server MAY return fewer device IDs. <lb/>The successful response to the operation will contain the cookie, <lb/>gdlr_cookie, and the cookie verifier, gdlr_cookieverf, to be used on <lb/>the subsequent GETDEVICELIST. A gdlr_eof value of TRUE signifies <lb/>that there are no remaining entries in the server's device list. <lb/>Each element of gdlr_deviceid_list contains a device ID. <lb/>18.41.4. IMPLEMENTATION <lb/>An example of the use of this operation is for pNFS clients and <lb/>servers that use LAYOUT4_BLOCK_VOLUME layouts. In these environments <lb/>it may be helpful for a client to determine device accessibility upon <lb/>first file system access. <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 559] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>18.42. Operation 49: LAYOUTCOMMIT -Commit Writes Made Using a Layout <lb/>18.42.1. ARGUMENT <lb/>union newtime4 switch (bool nt_timechanged) { <lb/>case TRUE: <lb/>nfstime4 <lb/>nt_time; <lb/>case FALSE: <lb/>void; <lb/>}; <lb/>union newoffset4 switch (bool no_newoffset) { <lb/>case TRUE: <lb/>offset4 <lb/>no_offset; <lb/>case FALSE: <lb/>void; <lb/>}; <lb/>struct LAYOUTCOMMIT4args { <lb/>/* CURRENT_FH: file */ <lb/>offset4 <lb/>loca_offset; <lb/>length4 <lb/>loca_length; <lb/>bool <lb/>loca_reclaim; <lb/>stateid4 <lb/>loca_stateid; <lb/>newoffset4 <lb/>loca_last_write_offset; <lb/>newtime4 <lb/>loca_time_modify; <lb/>layoutupdate4 <lb/>loca_layoutupdate; <lb/>}; <lb/>18.42.2. RESULT <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 560] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>union newsize4 switch (bool ns_sizechanged) { <lb/>case TRUE: <lb/>length4 <lb/>ns_size; <lb/>case FALSE: <lb/>void; <lb/>}; <lb/>struct LAYOUTCOMMIT4resok { <lb/>newsize4 <lb/>locr_newsize; <lb/>}; <lb/>union LAYOUTCOMMIT4res switch (nfsstat4 locr_status) { <lb/>case NFS4_OK: <lb/>LAYOUTCOMMIT4resok <lb/>locr_resok4; <lb/>default: <lb/>void; <lb/>}; <lb/>18.42.3. DESCRIPTION <lb/>The LAYOUTCOMMIT operation commits changes in the layout represented <lb/>by the current filehandle, client ID (derived from the session ID in <lb/>the preceding SEQUENCE operation), byte-range, and stateid. Since <lb/>layouts are sub-dividable, a smaller portion of a layout, retrieved <lb/>via LAYOUTGET, can be committed. The byte-range being committed is <lb/>specified through the byte-range (loca_offset and loca_length). This <lb/>byte-range MUST overlap with one or more existing layouts previously <lb/>granted via LAYOUTGET (Section 18.43), each with an iomode of <lb/>LAYOUTIOMODE4_RW. In the case where the iomode of any held layout <lb/>segment is not LAYOUTIOMODE4_RW, the server should return the error <lb/>NFS4ERR_BAD_IOMODE. For the case where the client does not hold <lb/>matching layout segment(s) for the defined byte-range, the server <lb/>should return the error NFS4ERR_BAD_LAYOUT. <lb/>The LAYOUTCOMMIT operation indicates that the client has completed <lb/>writes using a layout obtained by a previous LAYOUTGET. The client <lb/>may have only written a subset of the data range it previously <lb/>requested. LAYOUTCOMMIT allows it to commit or discard provisionally <lb/>allocated space and to update the server with a new end-of-file. The <lb/>layout referenced by LAYOUTCOMMIT is still valid after the operation <lb/>completes and can be continued to be referenced by the client ID, <lb/>filehandle, byte-range, layout type, and stateid. <lb/>If the loca_reclaim field is set to TRUE, this indicates that the <lb/>client is attempting to commit changes to a layout after the restart <lb/>of the metadata server during the metadata server's recovery grace <lb/>period (see Section 12.7.4). This type of request may be necessary <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 561] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>when the client has uncommitted writes to provisionally allocated <lb/>byte-ranges of a file that were sent to the storage devices before <lb/>the restart of the metadata server. In this case, the layout <lb/>provided by the client MUST be a subset of a writable layout that the <lb/>client held immediately before the restart of the metadata server. <lb/>The value of the field loca_stateid MUST be a value that the metadata <lb/>server returned before it restarted. The metadata server is free to <lb/>accept or reject this request based on its own internal metadata <lb/>consistency checks. If the metadata server finds that the layout <lb/>provided by the client does not pass its consistency checks, it MUST <lb/>reject the request with the status NFS4ERR_RECLAIM_BAD. The <lb/>successful completion of the LAYOUTCOMMIT request with loca_reclaim <lb/>set to TRUE does NOT provide the client with a layout for the file. <lb/>It simply commits the changes to the layout specified in the <lb/>loca_layoutupdate field. To obtain a layout for the file, the client <lb/>must send a LAYOUTGET request to the server after the server's grace <lb/>period has expired. If the metadata server receives a LAYOUTCOMMIT <lb/>request with loca_reclaim set to TRUE when the metadata server is not <lb/>in its recovery grace period, it MUST reject the request with the <lb/>status NFS4ERR_NO_GRACE. <lb/>Setting the loca_reclaim field to TRUE is required if and only if the <lb/>committed layout was acquired before the metadata server restart. If <lb/>the client is committing a layout that was acquired during the <lb/>metadata server's grace period, it MUST set the "reclaim" field to <lb/>FALSE. <lb/>The loca_stateid is a layout stateid value as returned by previously <lb/>successful layout operations (see Section 12.5.3). <lb/>The loca_last_write_offset field specifies the offset of the last <lb/>byte written by the client previous to the LAYOUTCOMMIT. Note that <lb/>this value is never equal to the file's size (at most it is one byte <lb/>less than the file's size) and MUST be less than or equal to <lb/>NFS4_MAXFILEOFF. Also, loca_last_write_offset MUST overlap the range <lb/>described by loca_offset and loca_length. The metadata server may <lb/>use this information to determine whether the file's size needs to be <lb/>updated. If the metadata server updates the file's size as the <lb/>result of the LAYOUTCOMMIT operation, it must return the new size <lb/>(locr_newsize.ns_size) as part of the results. <lb/>The loca_time_modify field allows the client to suggest a <lb/>modification time it would like the metadata server to set. The <lb/>metadata server may use the suggestion or it may use the time of the <lb/>LAYOUTCOMMIT operation to set the modification time. If the metadata <lb/>server uses the client-provided modification time, it should ensure <lb/>that time does not flow backwards. If the client wants to force the <lb/>metadata server to set an exact time, the client should use a SETATTR <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 562] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>operation in a COMPOUND right after LAYOUTCOMMIT. See Section 12.5.4 <lb/>for more details. If the client desires the resultant modification <lb/>time, it should construct the COMPOUND so that a GETATTR follows the <lb/>LAYOUTCOMMIT. <lb/>The loca_layoutupdate argument to LAYOUTCOMMIT provides a mechanism <lb/>for a client to provide layout-specific updates to the metadata <lb/>server. For example, the layout update can describe what byte-ranges <lb/>of the original layout have been used and what byte-ranges can be <lb/>deallocated. There is no NFSv4.1 file layout-specific layoutupdate4 <lb/>structure. <lb/>The layout information is more verbose for block devices than for <lb/>objects and files because the latter two hide the details of block <lb/>allocation behind their storage protocols. At the minimum, the <lb/>client needs to communicate changes to the end-of-file location back <lb/>to the server, and, if desired, its view of the file's modification <lb/>time. For block/volume layouts, it needs to specify precisely which <lb/>blocks have been used. <lb/>If the layout identified in the arguments does not exist, the error <lb/>NFS4ERR_BADLAYOUT is returned. The layout being committed may also <lb/>be rejected if it does not correspond to an existing layout with an <lb/>iomode of LAYOUTIOMODE4_RW. <lb/>On success, the current filehandle retains its value and the current <lb/>stateid retains its value. <lb/>18.42.4. IMPLEMENTATION <lb/>The client MAY also use LAYOUTCOMMIT with the loca_reclaim field set <lb/>to TRUE to convey hints to modified file attributes or to report <lb/>layout-type specific information such as I/O errors for object-based <lb/>storage layouts, as normally done during normal operation. Doing so <lb/>may help the metadata server to recover files more efficiently after <lb/>restart. For example, some file system implementations may require <lb/>expansive recovery of file system objects if the metadata server does <lb/>not get a positive indication from all clients holding a <lb/>LAYOUTIOMODE4_RW layout that they have successfully completed all <lb/>their writes. Sending a LAYOUTCOMMIT (if required) and then <lb/>following with LAYOUTRETURN can provide such an indication and allow <lb/>for graceful and efficient recovery. <lb/>If loca_reclaim is TRUE, the metadata server is free to either <lb/>examine or ignore the value in the field loca_stateid. The metadata <lb/>server implementation might or might not encode in its layout stateid <lb/>information that allows the metadate server to perform a consistency <lb/>check on the LAYOUTCOMMIT request. <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 563] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>18.43. Operation 50: LAYOUTGET -Get Layout Information <lb/>18.43.1. ARGUMENT <lb/>struct LAYOUTGET4args { <lb/>/* CURRENT_FH: file */ <lb/>bool <lb/>loga_signal_layout_avail; <lb/>layouttype4 <lb/>loga_layout_type; <lb/>layoutiomode4 <lb/>loga_iomode; <lb/>offset4 <lb/>loga_offset; <lb/>length4 <lb/>loga_length; <lb/>length4 <lb/>loga_minlength; <lb/>stateid4 <lb/>loga_stateid; <lb/>count4 <lb/>loga_maxcount; <lb/>}; <lb/>18.43.2. RESULT <lb/>struct LAYOUTGET4resok { <lb/>bool <lb/>logr_return_on_close; <lb/>stateid4 <lb/>logr_stateid; <lb/>layout4 <lb/>logr_layout<>; <lb/>}; <lb/>union LAYOUTGET4res switch (nfsstat4 logr_status) { <lb/>case NFS4_OK: <lb/>LAYOUTGET4resok <lb/>logr_resok4; <lb/>case NFS4ERR_LAYOUTTRYLATER: <lb/>bool <lb/>logr_will_signal_layout_avail; <lb/>default: <lb/>void; <lb/>}; <lb/>18.43.3. DESCRIPTION <lb/>The LAYOUTGET operation requests a layout from the metadata server <lb/>for reading or writing the file given by the filehandle at the byte-<lb/>range specified by offset and length. Layouts are identified by the <lb/>client ID (derived from the session ID in the preceding SEQUENCE <lb/>operation), current filehandle, layout type (loga_layout_type), and <lb/>the layout stateid (loga_stateid). The use of the loga_iomode field <lb/>depends upon the layout type, but should reflect the client's data <lb/>access intent. <lb/>If the metadata server is in a grace period, and does not persist <lb/>layouts and device ID to device address mappings, then it MUST return <lb/>NFS4ERR_GRACE (see Section 8.4.2.1). <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 564] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>The LAYOUTGET operation returns layout information for the specified <lb/>byte-range: a layout. The client actually specifies two ranges, both <lb/>starting at the offset in the loga_offset field. The first range is <lb/>between loga_offset and loga_offset + loga_length -1 inclusive. <lb/>This range indicates the desired range the client wants the layout to <lb/>cover. The second range is between loga_offset and loga_offset + <lb/>loga_minlength -1 inclusive. This range indicates the required <lb/>range the client needs the layout to cover. Thus, loga_minlength <lb/>MUST be less than or equal to loga_length. <lb/>When a length field is set to NFS4_UINT64_MAX, this indicates a <lb/>desire (when loga_length is NFS4_UINT64_MAX) or requirement (when <lb/>loga_minlength is NFS4_UINT64_MAX) to get a layout from loga_offset <lb/>through the end-of-file, regardless of the file's length. <lb/>The following rules govern the relationships among, and the minima <lb/>of, loga_length, loga_minlength, and loga_offset. <lb/>o If loga_length is less than loga_minlength, the metadata server <lb/>MUST return NFS4ERR_INVAL. <lb/>o If loga_minlength is zero, this is an indication to the metadata <lb/>server that the client desires any layout at offset loga_offset or <lb/>less that the metadata server has "readily available". Readily is <lb/>subjective, and depends on the layout type and the pNFS server <lb/>implementation. For example, some metadata servers might have to <lb/>pre-allocate stable storage when they receive a request for a <lb/>range of a file that goes beyond the file's current length. If <lb/>loga_minlength is zero and loga_length is greater than zero, this <lb/>tells the metadata server what range of the layout the client <lb/>would prefer to have. If loga_length and loga_minlength are both <lb/>zero, then the client is indicating that it desires a layout of <lb/>any length with the ending offset of the range no less than the <lb/>value specified loga_offset, and the starting offset at or below <lb/>loga_offset. If the metadata server does not have a layout that <lb/>is readily available, then it MUST return NFS4ERR_LAYOUTTRYLATER. <lb/>o If the sum of loga_offset and loga_minlength exceeds <lb/>NFS4_UINT64_MAX, and loga_minlength is not NFS4_UINT64_MAX, the <lb/>error NFS4ERR_INVAL MUST result. <lb/>o If the sum of loga_offset and loga_length exceeds NFS4_UINT64_MAX, <lb/>and loga_length is not NFS4_UINT64_MAX, the error NFS4ERR_INVAL <lb/>MUST result. <lb/>After the metadata server has performed the above checks on <lb/>loga_offset, loga_minlength, and loga_offset, the metadata server <lb/>MUST return a layout according to the rules in Table 13. <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 565] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>Acceptable layouts based on loga_minlength. Note: u64m = <lb/>NFS4_UINT64_MAX; a_off = loga_offset; a_minlen = loga_minlength. <lb/>+-----------+-----------+----------+----------+---------------------+ <lb/>| Layout <lb/>| Layout <lb/>| Layout <lb/>| Layout <lb/>| Layout length of <lb/>| <lb/>| iomode of | a_minlen | iomode <lb/>| offset <lb/>| reply <lb/>| <lb/>| request <lb/>| of <lb/>| of reply | of reply | <lb/>| <lb/>| <lb/>| request <lb/>| <lb/>| <lb/>| <lb/>| <lb/>+-----------+-----------+----------+----------+---------------------+ <lb/>| _READ <lb/>| u64m <lb/>| MAY be <lb/>| MUST be | MUST be >= file <lb/>| <lb/>| <lb/>| <lb/>| _READ <lb/>| <= a_off | length -layout <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| offset <lb/>| <lb/>| _READ <lb/>| u64m <lb/>| MAY be <lb/>| MUST be | MUST be u64m <lb/>| <lb/>| <lb/>| <lb/>| _RW <lb/>| <= a_off | <lb/>| <lb/>| _READ <lb/>| > 0 and < | MAY be <lb/>| MUST be | MUST be >= MIN(file | <lb/>| <lb/>| u64m <lb/>| _READ <lb/>| <= a_off | length, a_minlen + | <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| a_off) -layout <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| offset <lb/>| <lb/>| _READ <lb/>| > 0 and < | MAY be <lb/>| MUST be | MUST be >= a_off -| <lb/>| <lb/>| u64m <lb/>| _RW <lb/>| <= a_off | layout offset + <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| a_minlen <lb/>| <lb/>| _READ <lb/>| 0 <lb/>| MAY be <lb/>| MUST be | MUST be > 0 <lb/>| <lb/>| <lb/>| <lb/>| _READ <lb/>| <= a_off | <lb/>| <lb/>| _READ <lb/>| 0 <lb/>| MAY be <lb/>| MUST be | MUST be > 0 <lb/>| <lb/>| <lb/>| <lb/>| _RW <lb/>| <= a_off | <lb/>| <lb/>| _RW <lb/>| u64m <lb/>| MUST be | MUST be | MUST be u64m <lb/>| <lb/>| <lb/>| <lb/>| _RW <lb/>| <= a_off | <lb/>| <lb/>| _RW <lb/>| > 0 and < | MUST be | MUST be | MUST be >= a_off -| <lb/>| <lb/>| u64m <lb/>| _RW <lb/>| <= a_off | layout offset + <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| a_minlen <lb/>| <lb/>| _RW <lb/>| 0 <lb/>| MUST be | MUST be | MUST be > 0 <lb/>| <lb/>| <lb/>| <lb/>| _RW <lb/>| <= a_off | <lb/>| <lb/>+-----------+-----------+----------+----------+---------------------+ <lb/>Table 13 <lb/>If loga_minlength is not zero and the metadata server cannot return a <lb/>layout according to the rules in Table 13, then the metadata server <lb/>MUST return the error NFS4ERR_BADLAYOUT. If loga_minlength is zero <lb/>and the metadata server cannot or will not return a layout according <lb/>to the rules in Table 13, then the metadata server MUST return the <lb/>error NFS4ERR_LAYOUTTRYLATER. Assuming that loga_length is greater <lb/>than loga_minlength or equal to zero, the metadata server SHOULD <lb/>return a layout according to the rules in Table 14. <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 566] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>Desired layouts based on loga_length. The rules of Table 13 MUST be <lb/>applied first. Note: u64m = NFS4_UINT64_MAX; a_off = loga_offset; <lb/>a_len = loga_length. <lb/>+------------+------------+-----------+-----------+-----------------+ <lb/>| Layout <lb/>| Layout <lb/>| Layout <lb/>| Layout <lb/>| Layout length <lb/>| <lb/>| iomode of | a_len of <lb/>| iomode of | offset of | of reply <lb/>| <lb/>| request <lb/>| request <lb/>| reply <lb/>| reply <lb/>| <lb/>| <lb/>+------------+------------+-----------+-----------+-----------------+ <lb/>| _READ <lb/>| u64m <lb/>| MAY be <lb/>| MUST be <lb/>| SHOULD be u64m | <lb/>| <lb/>| <lb/>| _READ <lb/>| <= a_off | <lb/>| <lb/>| _READ <lb/>| u64m <lb/>| MAY be <lb/>| MUST be <lb/>| SHOULD be u64m | <lb/>| <lb/>| <lb/>| _RW <lb/>| <= a_off | <lb/>| <lb/>| _READ <lb/>| > 0 and < | MAY be <lb/>| MUST be <lb/>| SHOULD be >= <lb/>| <lb/>| <lb/>| u64m <lb/>| _READ <lb/>| <= a_off | a_off -layout | <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| offset + a_len | <lb/>| _READ <lb/>| > 0 and < | MAY be <lb/>| MUST be <lb/>| SHOULD be >= <lb/>| <lb/>| <lb/>| u64m <lb/>| _RW <lb/>| <= a_off | a_off -layout | <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| offset + a_len | <lb/>| _READ <lb/>| 0 <lb/>| MAY be <lb/>| MUST be <lb/>| SHOULD be > <lb/>| <lb/>| <lb/>| <lb/>| _READ <lb/>| <= a_off | a_off -layout | <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| offset <lb/>| <lb/>| _READ <lb/>| 0 <lb/>| MAY be <lb/>| MUST be <lb/>| SHOULD be > <lb/>| <lb/>| <lb/>| <lb/>| _READ <lb/>| <= a_off | a_off -layout | <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| offset <lb/>| <lb/>| _RW <lb/>| u64m <lb/>| MUST be <lb/>| MUST be <lb/>| SHOULD be u64m | <lb/>| <lb/>| <lb/>| _RW <lb/>| <= a_off | <lb/>| <lb/>| _RW <lb/>| > 0 and < | MUST be <lb/>| MUST be <lb/>| SHOULD be >= <lb/>| <lb/>| <lb/>| u64m <lb/>| _RW <lb/>| <= a_off | a_off -layout | <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| offset + a_len | <lb/>| _RW <lb/>| 0 <lb/>| MUST be <lb/>| MUST be <lb/>| SHOULD be > <lb/>| <lb/>| <lb/>| <lb/>| _RW <lb/>| <= a_off | a_off -layout | <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| offset <lb/>| <lb/>+------------+------------+-----------+-----------+-----------------+ <lb/>Table 14 <lb/>The loga_stateid field specifies a valid stateid. If a layout is not <lb/>currently held by the client, the loga_stateid field represents a <lb/>stateid reflecting the correspondingly valid open, byte-range lock, <lb/>or delegation stateid. Once a layout is held on the file by the <lb/>client, the loga_stateid field MUST be a stateid as returned from a <lb/>previous LAYOUTGET or LAYOUTRETURN operation or provided by a <lb/>CB_LAYOUTRECALL operation (see Section 12.5.3). <lb/>The loga_maxcount field specifies the maximum layout size (in bytes) <lb/>that the client can handle. If the size of the layout structure <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 567] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>exceeds the size specified by maxcount, the metadata server will <lb/>return the NFS4ERR_TOOSMALL error. <lb/>The returned layout is expressed as an array, logr_layout, with each <lb/>element of type layout4. If a file has a single striping pattern, <lb/>then logr_layout SHOULD contain just one entry. Otherwise, if the <lb/>requested range overlaps more than one striping pattern, logr_layout <lb/>will contain the required number of entries. The elements of <lb/>logr_layout MUST be sorted in ascending order of the value of the <lb/>lo_offset field of each element. There MUST be no gaps or overlaps <lb/>in the range between two successive elements of logr_layout. The <lb/>lo_iomode field in each element of logr_layout MUST be the same. <lb/>Table 13 and Table 14 both refer to a returned layout iomode, offset, <lb/>and length. Because the returned layout is encoded in the <lb/>logr_layout array, more description is required. <lb/>iomode <lb/>The value of the returned layout iomode listed in Table 13 and <lb/>Table 14 is equal to the value of the lo_iomode field in each <lb/>element of logr_layout. As shown in Table 13 and Table 14, the <lb/>metadata server MAY return a layout with an lo_iomode different <lb/>from the requested iomode (field loga_iomode of the request). If <lb/>it does so, it MUST ensure that the lo_iomode is more permissive <lb/>than the loga_iomode requested. For example, this behavior allows <lb/>an implementation to upgrade LAYOUTIOMODE4_READ requests to <lb/>LAYOUTIOMODE4_RW requests at its discretion, within the limits of <lb/>the layout type specific protocol. A lo_iomode of either <lb/>LAYOUTIOMODE4_READ or LAYOUTIOMODE4_RW MUST be returned. <lb/>offset <lb/>The value of the returned layout offset listed in Table 13 and <lb/>Table 14 is always equal to the lo_offset field of the first <lb/>element logr_layout. <lb/>length <lb/>When setting the value of the returned layout length, the <lb/>situation is complicated by the possibility that the special <lb/>layout length value NFS4_UINT64_MAX is involved. For a <lb/>logr_layout array of N elements, the lo_length field in the first <lb/>N-1 elements MUST NOT be NFS4_UINT64_MAX. The lo_length field of <lb/>the last element of logr_layout can be NFS4_UINT64_MAX under some <lb/>conditions as described in the following list. <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 568] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>* If an applicable rule of Table 13 states that the metadata <lb/>server MUST return a layout of length NFS4_UINT64_MAX, then the <lb/>lo_length field of the last element of logr_layout MUST be <lb/>NFS4_UINT64_MAX. <lb/>* If an applicable rule of Table 13 states that the metadata <lb/>server MUST NOT return a layout of length NFS4_UINT64_MAX, then <lb/>the lo_length field of the last element of logr_layout MUST NOT <lb/>be NFS4_UINT64_MAX. <lb/>* If an applicable rule of Table 14 states that the metadata <lb/>server SHOULD return a layout of length NFS4_UINT64_MAX, then <lb/>the lo_length field of the last element of logr_layout SHOULD <lb/>be NFS4_UINT64_MAX. <lb/>* When the value of the returned layout length of Table 13 and <lb/>Table 14 is not NFS4_UINT64_MAX, then the returned layout <lb/>length is equal to the sum of the lo_length fields of each <lb/>element of logr_layout. <lb/>The logr_return_on_close result field is a directive to return the <lb/>layout before closing the file. When the metadata server sets this <lb/>return value to TRUE, it MUST be prepared to recall the layout in the <lb/>case in which the client fails to return the layout before close. <lb/>For the metadata server that knows a layout must be returned before a <lb/>close of the file, this return value can be used to communicate the <lb/>desired behavior to the client and thus remove one extra step from <lb/>the client's and metadata server's interaction. <lb/>The logr_stateid stateid is returned to the client for use in <lb/>subsequent layout related operations. See Sections 8.2, 12.5.3, and <lb/>12.5.5.2 for a further discussion and requirements. <lb/>The format of the returned layout (lo_content) is specific to the <lb/>layout type. The value of the layout type (lo_content.loc_type) for <lb/>each of the elements of the array of layouts returned by the metadata <lb/>server (logr_layout) MUST be equal to the loga_layout_type specified <lb/>by the client. If it is not equal, the client SHOULD ignore the <lb/>response as invalid and behave as if the metadata server returned an <lb/>error, even if the client does have support for the layout type <lb/>returned. <lb/>If neither the requested file nor its containing file system support <lb/>layouts, the metadata server MUST return NFS4ERR_LAYOUTUNAVAILABLE. <lb/>If the layout type is not supported, the metadata server MUST return <lb/>NFS4ERR_UNKNOWN_LAYOUTTYPE. If layouts are supported but no layout <lb/>matches the client provided layout identification, the metadata <lb/>server MUST return NFS4ERR_BADLAYOUT. If an invalid loga_iomode is <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 569] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>specified, or a loga_iomode of LAYOUTIOMODE4_ANY is specified, the <lb/>metadata server MUST return NFS4ERR_BADIOMODE. <lb/>If the layout for the file is unavailable due to transient <lb/>conditions, e.g., file sharing prohibits layouts, the metadata server <lb/>MUST return NFS4ERR_LAYOUTTRYLATER. <lb/>If the layout request is rejected due to an overlapping layout <lb/>recall, the metadata server MUST return NFS4ERR_RECALLCONFLICT. See <lb/>Section 12.5.5.2 for details. <lb/>If the layout conflicts with a mandatory byte-range lock held on the <lb/>file, and if the storage devices have no method of enforcing <lb/>mandatory locks, other than through the restriction of layouts, the <lb/>metadata server SHOULD return NFS4ERR_LOCKED. <lb/>If client sets loga_signal_layout_avail to TRUE, then it is <lb/>registering with the client a "want" for a layout in the event the <lb/>layout cannot be obtained due to resource exhaustion. If the <lb/>metadata server supports and will honor the "want", the results will <lb/>have logr_will_signal_layout_avail set to TRUE. If so, the client <lb/>should expect a CB_RECALLABLE_OBJ_AVAIL operation to indicate that a <lb/>layout is available. <lb/>On success, the current filehandle retains its value and the current <lb/>stateid is updated to match the value as returned in the results. <lb/>18.43.4. IMPLEMENTATION <lb/>Typically, LAYOUTGET will be called as part of a COMPOUND request <lb/>after an OPEN operation and results in the client having location <lb/>information for the file. This requires that loga_stateid be set to <lb/>the special stateid that tells the metadata server to use the current <lb/>stateid, which is set by OPEN (see Section 16.2.3.1.2). A client may <lb/>also hold a layout across multiple OPENs. The client specifies a <lb/>layout type that limits what kind of layout the metadata server will <lb/>return. This prevents metadata servers from granting layouts that <lb/>are unusable by the client. <lb/>As indicated by Table 13 and Table 14, the specification of LAYOUTGET <lb/>allows a pNFS client and server considerable flexibility. A pNFS <lb/>client can take several strategies for sending LAYOUTGET. Some <lb/>examples are as follows. <lb/>o If LAYOUTGET is preceded by OPEN in the same COMPOUND request and <lb/>the OPEN requests OPEN4_SHARE_ACCESS_READ access, the client might <lb/>opt to request a _READ layout with loga_offset set to zero, <lb/>loga_minlength set to zero, and loga_length set to <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 570] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>NFS4_UINT64_MAX. If the file has space allocated to it, that <lb/>space is striped over one or more storage devices, and there is <lb/>either no conflicting layout or the concept of a conflicting <lb/>layout does not apply to the pNFS server's layout type or <lb/>implementation, then the metadata server might return a layout <lb/>with a starting offset of zero, and a length equal to the length <lb/>of the file, if not NFS4_UINT64_MAX. If the length of the file is <lb/>not a multiple of the pNFS server's stripe width (see Section 13.2 <lb/>for a formal definition), the metadata server might round up the <lb/>returned layout's length. <lb/>o If LAYOUTGET is preceded by OPEN in the same COMPOUND request, and <lb/>the OPEN requests OPEN4_SHARE_ACCESS_WRITE access and does not <lb/>truncate the file, the client might opt to request a _RW layout <lb/>with loga_offset set to zero, loga_minlength set to zero, and <lb/>loga_length set to the file's current length (if known), or <lb/>NFS4_UINT64_MAX. As with the previous case, under some conditions <lb/>the metadata server might return a layout that covers the entire <lb/>length of the file or beyond. <lb/>o This strategy is as above, but the OPEN truncates the file. In <lb/>this case, the client might anticipate it will be writing to the <lb/>file from offset zero, and so loga_offset and loga_minlength are <lb/>set to zero, and loga_length is set to the value of <lb/>threshold4_write_iosize. The metadata server might return a <lb/>layout from offset zero with a length at least as long as <lb/>threshold4_write_iosize. <lb/>o A process on the client invokes a request to read from offset <lb/>10000 for length 50000. The client is using buffered I/O, and has <lb/>buffer sizes of 4096 bytes. The client intends to map the request <lb/>of the process into a series of READ requests starting at offset <lb/>8192. The end offset needs to be higher than 10000 + 50000 = <lb/>60000, and the next offset that is a multiple of 4096 is 61440. <lb/>The difference between 61440 and that starting offset of the <lb/>layout is 53248 (which is the product of 4096 and 15). The value <lb/>of threshold4_read_iosize is less than 53248, so the client sends <lb/>a LAYOUTGET request with loga_offset set to 8192, loga_minlength <lb/>set to 53248, and loga_length set to the file's length (if known) <lb/>minus 8192 or NFS4_UINT64_MAX (if the file's length is not known). <lb/>Since this LAYOUTGET request exceeds the metadata server's <lb/>threshold, it grants the layout, possibly with an initial offset <lb/>of zero, with an end offset of at least 8192 + 53248 -1 = 61439, <lb/>but preferably a layout with an offset aligned on the stripe width <lb/>and a length that is a multiple of the stripe width. <lb/>o This strategy is as above, but the client is not using buffered I/ <lb/>O, and instead all internal I/O requests are sent directly to the <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 571] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>server. The LAYOUTGET request has loga_offset equal to 10000 and <lb/>loga_minlength set to 50000. The value of loga_length is set to <lb/>the length of the file. The metadata server is free to return a <lb/>layout that fully overlaps the requested range, with a starting <lb/>offset and length aligned on the stripe width. <lb/>o Again, a process on the client invokes a request to read from <lb/>offset 10000 for length 50000 (i.e. a range with a starting offset <lb/>of 10000 and an ending offset of 69999), and buffered I/O is in <lb/>use. The client is expecting that the server might not be able to <lb/>return the layout for the full I/O range. The client intends to <lb/>map the request of the process into a series of thirteen READ <lb/>requests starting at offset 8192, each with length 4096, with a <lb/>total length of 53248 (which equals 13 * 4096), which fully <lb/>contains the range that client's process wants to read. Because <lb/>the value of threshold4_read_iosize is equal to 4096, it is <lb/>practical and reasonable for the client to use several LAYOUTGET <lb/>operations to complete the series of READs. The client sends a <lb/>LAYOUTGET request with loga_offset set to 8192, loga_minlength set <lb/>to 4096, and loga_length set to 53248 or higher. The server will <lb/>grant a layout possibly with an initial offset of zero, with an <lb/>end offset of at least 8192 + 4096 -1 = 12287, but preferably a <lb/>layout with an offset aligned on the stripe width and a length <lb/>that is a multiple of the stripe width. This will allow the <lb/>client to make forward progress, possibly sending more LAYOUTGET <lb/>operations for the remainder of the range. <lb/>o An NFS client detects a sequential read pattern, and so sends a <lb/>LAYOUTGET operation that goes well beyond any current or pending <lb/>read requests to the server. The server might likewise detect <lb/>this pattern, and grant the LAYOUTGET request. Once the client <lb/>reads from an offset of the file that represents 50% of the way <lb/>through the range of the last layout it received, in order to <lb/>avoid stalling I/O that would wait for a layout, the client sends <lb/>more operations from an offset of the file that represents 50% of <lb/>the way through the last layout it received. The client continues <lb/>to request layouts with byte-ranges that are well in advance of <lb/>the byte-ranges of recent and/or read requests of processes <lb/>running on the client. <lb/>o This strategy is as above, but the client fails to detect the <lb/>pattern, but the server does. The next time the metadata server <lb/>gets a LAYOUTGET, it returns a layout with a length that is well <lb/>beyond loga_minlength. <lb/>o A client is using buffered I/O, and has a long queue of write-<lb/>behinds to process and also detects a sequential write pattern. <lb/>It sends a LAYOUTGET for a layout that spans the range of the <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 572] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>queued write-behinds and well beyond, including ranges beyond the <lb/>filer's current length. The client continues to send LAYOUTGET <lb/>operations once the write-behind queue reaches 50% of the maximum <lb/>queue length. <lb/>Once the client has obtained a layout referring to a particular <lb/>device ID, the metadata server MUST NOT delete the device ID until <lb/>the layout is returned or revoked. <lb/>CB_NOTIFY_DEVICEID can race with LAYOUTGET. One race scenario is <lb/>that LAYOUTGET returns a device ID for which the client does not have <lb/>device address mappings, and the metadata server sends a <lb/>CB_NOTIFY_DEVICEID to add the device ID to the client's awareness and <lb/>meanwhile the client sends GETDEVICEINFO on the device ID. This <lb/>scenario is discussed in Section 18.40.4. Another scenario is that <lb/>the CB_NOTIFY_DEVICEID is processed by the client before it processes <lb/>the results from LAYOUTGET. The client will send a GETDEVICEINFO on <lb/>the device ID. If the results from GETDEVICEINFO are received before <lb/>the client gets results from LAYOUTGET, then there is no longer a <lb/>race. If the results from LAYOUTGET are received before the results <lb/>from GETDEVICEINFO, the client can either wait for results of <lb/>GETDEVICEINFO or send another one to get possibly more up-to-date <lb/>device address mappings for the device ID. <lb/>18.44. Operation 51: LAYOUTRETURN -Release Layout Information <lb/>18.44.1. ARGUMENT <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 573] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>/* Constants used for LAYOUTRETURN and CB_LAYOUTRECALL */ <lb/>const LAYOUT4_RET_REC_FILE <lb/>= 1; <lb/>const LAYOUT4_RET_REC_FSID <lb/>= 2; <lb/>const LAYOUT4_RET_REC_ALL <lb/>= 3; <lb/>enum layoutreturn_type4 { <lb/>LAYOUTRETURN4_FILE = LAYOUT4_RET_REC_FILE, <lb/>LAYOUTRETURN4_FSID = LAYOUT4_RET_REC_FSID, <lb/>LAYOUTRETURN4_ALL = LAYOUT4_RET_REC_ALL <lb/>}; <lb/>struct layoutreturn_file4 { <lb/>offset4 <lb/>lrf_offset; <lb/>length4 <lb/>lrf_length; <lb/>stateid4 <lb/>lrf_stateid; <lb/>/* layouttype4 specific data */ <lb/>opaque <lb/>lrf_body<>; <lb/>}; <lb/>union layoutreturn4 switch(layoutreturn_type4 lr_returntype) { <lb/>case LAYOUTRETURN4_FILE: <lb/>layoutreturn_file4 <lb/>lr_layout; <lb/>default: <lb/>void; <lb/>}; <lb/>struct LAYOUTRETURN4args { <lb/>/* CURRENT_FH: file */ <lb/>bool <lb/>lora_reclaim; <lb/>layouttype4 <lb/>lora_layout_type; <lb/>layoutiomode4 <lb/>lora_iomode; <lb/>layoutreturn4 <lb/>lora_layoutreturn; <lb/>}; <lb/>18.44.2. RESULT <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 574] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>union layoutreturn_stateid switch (bool lrs_present) { <lb/>case TRUE: <lb/>stateid4 <lb/>lrs_stateid; <lb/>case FALSE: <lb/>void; <lb/>}; <lb/>union LAYOUTRETURN4res switch (nfsstat4 lorr_status) { <lb/>case NFS4_OK: <lb/>layoutreturn_stateid <lb/>lorr_stateid; <lb/>default: <lb/>void; <lb/>}; <lb/>18.44.3. DESCRIPTION <lb/>This operation returns from the client to the server one or more <lb/>layouts represented by the client ID (derived from the session ID in <lb/>the preceding SEQUENCE operation), lora_layout_type, and lora_iomode. <lb/>When lr_returntype is LAYOUTRETURN4_FILE, the returned layout is <lb/>further identified by the current filehandle, lrf_offset, lrf_length, <lb/>and lrf_stateid. If the lrf_length field is NFS4_UINT64_MAX, all <lb/>bytes of the layout, starting at lrf_offset, are returned. When <lb/>lr_returntype is LAYOUTRETURN4_FSID, the current filehandle is used <lb/>to identify the file system and all layouts matching the client ID, <lb/>the fsid of the file system, lora_layout_type, and lora_iomode are <lb/>returned. When lr_returntype is LAYOUTRETURN4_ALL, all layouts <lb/>matching the client ID, lora_layout_type, and lora_iomode are <lb/>returned and the current filehandle is not used. After this call, <lb/>the client MUST NOT use the returned layout(s) and the associated <lb/>storage protocol to access the file data. <lb/>If the set of layouts designated in the case of LAYOUTRETURN4_FSID or <lb/>LAYOUTRETURN4_ALL is empty, then no error results. In the case of <lb/>LAYOUTRETURN4_FILE, the byte-range specified is returned even if it <lb/>is a subdivision of a layout previously obtained with LAYOUTGET, a <lb/>combination of multiple layouts previously obtained with LAYOUTGET, <lb/>or a combination including some layouts previously obtained with <lb/>LAYOUTGET, and one or more subdivisions of such layouts. When the <lb/>byte-range does not designate any bytes for which a layout is held <lb/>for the specified file, client ID, layout type and mode, no error <lb/>results. See Section 12.5.5.2.1.5 for considerations with "bulk" <lb/>return of layouts. <lb/>The layout being returned may be a subset or superset of a layout <lb/>specified by CB_LAYOUTRECALL. However, if it is a subset, the recall <lb/>is not complete until the full recalled scope has been returned. <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 575] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>Recalled scope refers to the byte-range in the case of <lb/>LAYOUTRETURN4_FILE, the use of LAYOUTRETURN4_FSID, or the use of <lb/>LAYOUTRETURN4_ALL. There must be a LAYOUTRETURN with a matching <lb/>scope to complete the return even if all current layout ranges have <lb/>been previously individually returned. <lb/>For all lr_returntype values, an iomode of LAYOUTIOMODE4_ANY <lb/>specifies that all layouts that match the other arguments to <lb/>LAYOUTRETURN (i.e., client ID, lora_layout_type, and one of current <lb/>filehandle and range; fsid derived from current filehandle; or <lb/>LAYOUTRETURN4_ALL) are being returned. <lb/>In the case that lr_returntype is LAYOUTRETURN4_FILE, the lrf_stateid <lb/>provided by the client is a layout stateid as returned from previous <lb/>layout operations. Note that the "seqid" field of lrf_stateid MUST <lb/>NOT be zero. See Sections 8.2, 12.5.3, and 12.5.5.2 for a further <lb/>discussion and requirements. <lb/>Return of a layout or all layouts does not invalidate the mapping of <lb/>storage device ID to a storage device address. The mapping remains <lb/>in effect until specifically changed or deleted via device ID <lb/>notification callbacks. Of course if there are no remaining layouts <lb/>that refer to a previously used device ID, the server is free to <lb/>delete a device ID without a notification callback, which will be the <lb/>case when notifications are not in effect. <lb/>If the lora_reclaim field is set to TRUE, the client is attempting to <lb/>return a layout that was acquired before the restart of the metadata <lb/>server during the metadata server's grace period. When returning <lb/>layouts that were acquired during the metadata server's grace period, <lb/>the client MUST set the lora_reclaim field to FALSE. The <lb/>lora_reclaim field MUST be set to FALSE also when lr_layoutreturn is <lb/>LAYOUTRETURN4_FSID or LAYOUTRETURN4_ALL. See LAYOUTCOMMIT <lb/>(Section 18.42) for more details. <lb/>Layouts may be returned when recalled or voluntarily (i.e., before <lb/>the server has recalled them). In either case, the client must <lb/>properly propagate state changed under the context of the layout to <lb/>the storage device(s) or to the metadata server before returning the <lb/>layout. <lb/>If the client returns the layout in response to a CB_LAYOUTRECALL <lb/>where the lor_recalltype field of the clora_recall field was <lb/>LAYOUTRECALL4_FILE, the client should use the lor_stateid value from <lb/>CB_LAYOUTRECALL as the value for lrf_stateid. Otherwise, it should <lb/>use logr_stateid (from a previous LAYOUTGET result) or lorr_stateid <lb/>(from a previous LAYRETURN result). This is done to indicate the <lb/>point in time (in terms of layout stateid transitions) when the <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 576] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>recall was sent. The client uses the precise lora_recallstateid <lb/>value and MUST NOT set the stateid's seqid to zero; otherwise, <lb/>NFS4ERR_BAD_STATEID MUST be returned. NFS4ERR_OLD_STATEID can be <lb/>returned if the client is using an old seqid, and the server knows <lb/>the client should not be using the old seqid. For example, the <lb/>client uses the seqid on slot 1 of the session, receives the response <lb/>with the new seqid, and uses the slot to send another request with <lb/>the old seqid. <lb/>If a client fails to return a layout in a timely manner, then the <lb/>metadata server SHOULD use its control protocol with the storage <lb/>devices to fence the client from accessing the data referenced by the <lb/>layout. See Section 12.5.5 for more details. <lb/>If the LAYOUTRETURN request sets the lora_reclaim field to TRUE after <lb/>the metadata server's grace period, NFS4ERR_NO_GRACE is returned. <lb/>If the LAYOUTRETURN request sets the lora_reclaim field to TRUE and <lb/>lr_returntype is set to LAYOUTRETURN4_FSID or LAYOUTRETURN4_ALL, <lb/>NFS4ERR_INVAL is returned. <lb/>If the client sets the lr_returntype field to LAYOUTRETURN4_FILE, <lb/>then the lrs_stateid field will represent the layout stateid as <lb/>updated for this operation's processing; the current stateid will <lb/>also be updated to match the returned value. If the last byte of any <lb/>layout for the current file, client ID, and layout type is being <lb/>returned and there are no remaining pending CB_LAYOUTRECALL <lb/>operations for which a LAYOUTRETURN operation must be done, <lb/>lrs_present MUST be FALSE, and no stateid will be returned. In <lb/>addition, the COMPOUND request's current stateid will be set to the <lb/>all-zeroes special stateid (see Section 16.2.3.1.2). The server MUST <lb/>reject with NFS4ERR_BAD_STATEID any further use of the current <lb/>stateid in that COMPOUND until the current stateid is re-established <lb/>by a later stateid-returning operation. <lb/>On success, the current filehandle retains its value. <lb/>If the EXCHGID4_FLAG_BIND_PRINC_STATEID capability is set on the <lb/>client ID (see Section 18.35), the server will require that the <lb/>principal, security flavor, and if applicable, the GSS mechanism, <lb/>combination that acquired the layout also be the one to send <lb/>LAYOUTRETURN. This might not be possible if credentials for the <lb/>principal are no longer available. The server will allow the machine <lb/>credential or SSV credential (see Section 18.35) to send LAYOUTRETURN <lb/>if LAYOUTRETURN's operation code was set in the spo_must_allow result <lb/>of EXCHANGE_ID. <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 577] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>18.44.4. IMPLEMENTATION <lb/>The final LAYOUTRETURN operation in response to a CB_LAYOUTRECALL <lb/>callback MUST be serialized with any outstanding, intersecting <lb/>LAYOUTRETURN operations. Note that it is possible that while a <lb/>client is returning the layout for some recalled range, the server <lb/>may recall a superset of that range (e.g., LAYOUTRECALL4_ALL); the <lb/>final return operation for the latter must block until the former <lb/>layout recall is done. <lb/>Returning all layouts in a file system using LAYOUTRETURN4_FSID is <lb/>typically done in response to a CB_LAYOUTRECALL for that file system <lb/>as the final return operation. Similarly, LAYOUTRETURN4_ALL is used <lb/>in response to a recall callback for all layouts. It is possible <lb/>that the client already returned some outstanding layouts via <lb/>individual LAYOUTRETURN calls and the call for LAYOUTRETURN4_FSID or <lb/>LAYOUTRETURN4_ALL marks the end of the LAYOUTRETURN sequence. See <lb/>Section 12.5.5.1 for more details. <lb/>Once the client has returned all layouts referring to a particular <lb/>device ID, the server MAY delete the device ID. <lb/>18.45. Operation 52: SECINFO_NO_NAME -Get Security on Unnamed Object <lb/>18.45.1. ARGUMENT <lb/>enum secinfo_style4 { <lb/>SECINFO_STYLE4_CURRENT_FH <lb/>= 0, <lb/>SECINFO_STYLE4_PARENT <lb/>= 1 <lb/>}; <lb/>/* CURRENT_FH: object or child directory */ <lb/>typedef secinfo_style4 SECINFO_NO_NAME4args; <lb/>18.45.2. RESULT <lb/>/* CURRENTFH: consumed if status is NFS4_OK */ <lb/>typedef SECINFO4res SECINFO_NO_NAME4res; <lb/>18.45.3. DESCRIPTION <lb/>Like the SECINFO operation, SECINFO_NO_NAME is used by the client to <lb/>obtain a list of valid RPC authentication flavors for a specific file <lb/>object. Unlike SECINFO, SECINFO_NO_NAME only works with objects that <lb/>are accessed by filehandle. <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 578] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>There are two styles of SECINFO_NO_NAME, as determined by the value <lb/>of the secinfo_style4 enumeration. If SECINFO_STYLE4_CURRENT_FH is <lb/>passed, then SECINFO_NO_NAME is querying for the required security <lb/>for the current filehandle. If SECINFO_STYLE4_PARENT is passed, then <lb/>SECINFO_NO_NAME is querying for the required security of the current <lb/>filehandle's parent. If the style selected is SECINFO_STYLE4_PARENT, <lb/>then SECINFO should apply the same access methodology used for <lb/>LOOKUPP when evaluating the traversal to the parent directory. <lb/>Therefore, if the requester does not have the appropriate access to <lb/>LOOKUPP the parent, then SECINFO_NO_NAME must behave the same way and <lb/>return NFS4ERR_ACCESS. <lb/>If PUTFH, PUTPUBFH, PUTROOTFH, or RESTOREFH returns NFS4ERR_WRONGSEC, <lb/>then the client resolves the situation by sending a COMPOUND request <lb/>that consists of PUTFH, PUTPUBFH, or PUTROOTFH immediately followed <lb/>by SECINFO_NO_NAME, style SECINFO_STYLE4_CURRENT_FH. See Section 2.6 <lb/>for instructions on dealing with NFS4ERR_WRONGSEC error returns from <lb/>PUTFH, PUTROOTFH, PUTPUBFH, or RESTOREFH. <lb/>If SECINFO_STYLE4_PARENT is specified and there is no parent <lb/>directory, SECINFO_NO_NAME MUST return NFS4ERR_NOENT. <lb/>On success, the current filehandle is consumed (see <lb/>Section 2.6.3.1.1.8), and if the next operation after SECINFO_NO_NAME <lb/>tries to use the current filehandle, that operation will fail with <lb/>the status NFS4ERR_NOFILEHANDLE. <lb/>Everything else about SECINFO_NO_NAME is the same as SECINFO. See <lb/>the discussion on SECINFO (Section 18.29.3). <lb/>18.45.4. IMPLEMENTATION <lb/>See the discussion on SECINFO (Section 18.29.4). <lb/>18.46. Operation 53: SEQUENCE -Supply Per-Procedure Sequencing and <lb/>Control <lb/>18.46.1. ARGUMENT <lb/>struct SEQUENCE4args { <lb/>sessionid4 <lb/>sa_sessionid; <lb/>sequenceid4 <lb/>sa_sequenceid; <lb/>slotid4 <lb/>sa_slotid; <lb/>slotid4 <lb/>sa_highest_slotid; <lb/>bool <lb/>sa_cachethis; <lb/>}; <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 579] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>18.46.2. RESULT <lb/>const SEQ4_STATUS_CB_PATH_DOWN <lb/>= 0x00000001; <lb/>const SEQ4_STATUS_CB_GSS_CONTEXTS_EXPIRING <lb/>= 0x00000002; <lb/>const SEQ4_STATUS_CB_GSS_CONTEXTS_EXPIRED <lb/>= 0x00000004; <lb/>const SEQ4_STATUS_EXPIRED_ALL_STATE_REVOKED <lb/>= 0x00000008; <lb/>const SEQ4_STATUS_EXPIRED_SOME_STATE_REVOKED <lb/>= 0x00000010; <lb/>const SEQ4_STATUS_ADMIN_STATE_REVOKED <lb/>= 0x00000020; <lb/>const SEQ4_STATUS_RECALLABLE_STATE_REVOKED <lb/>= 0x00000040; <lb/>const SEQ4_STATUS_LEASE_MOVED <lb/>= 0x00000080; <lb/>const SEQ4_STATUS_RESTART_RECLAIM_NEEDED <lb/>= 0x00000100; <lb/>const SEQ4_STATUS_CB_PATH_DOWN_SESSION <lb/>= 0x00000200; <lb/>const SEQ4_STATUS_BACKCHANNEL_FAULT <lb/>= 0x00000400; <lb/>const SEQ4_STATUS_DEVID_CHANGED <lb/>= 0x00000800; <lb/>const SEQ4_STATUS_DEVID_DELETED <lb/>= 0x00001000; <lb/>struct SEQUENCE4resok { <lb/>sessionid4 <lb/>sr_sessionid; <lb/>sequenceid4 <lb/>sr_sequenceid; <lb/>slotid4 <lb/>sr_slotid; <lb/>slotid4 <lb/>sr_highest_slotid; <lb/>slotid4 <lb/>sr_target_highest_slotid; <lb/>uint32_t <lb/>sr_status_flags; <lb/>}; <lb/>union SEQUENCE4res switch (nfsstat4 sr_status) { <lb/>case NFS4_OK: <lb/>SEQUENCE4resok sr_resok4; <lb/>default: <lb/>void; <lb/>}; <lb/>18.46.3. DESCRIPTION <lb/>The SEQUENCE operation is used by the server to implement session <lb/>request control and the reply cache semantics. <lb/>SEQUENCE MUST appear as the first operation of any COMPOUND in which <lb/>it appears. The error NFS4ERR_SEQUENCE_POS will be returned when it <lb/>is found in any position in a COMPOUND beyond the first. Operations <lb/>other than SEQUENCE, BIND_CONN_TO_SESSION, EXCHANGE_ID, <lb/>CREATE_SESSION, and DESTROY_SESSION, MUST NOT appear as the first <lb/>operation in a COMPOUND. Such operations MUST yield the error <lb/>NFS4ERR_OP_NOT_IN_SESSION if they do appear at the start of a <lb/>COMPOUND. <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 580] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>If SEQUENCE is received on a connection not associated with the <lb/>session via CREATE_SESSION or BIND_CONN_TO_SESSION, and connection <lb/>association enforcement is enabled (see Section 18.35), then the <lb/>server returns NFS4ERR_CONN_NOT_BOUND_TO_SESSION. <lb/>The sa_sessionid argument identifies the session to which this <lb/>request applies. The sr_sessionid result MUST equal sa_sessionid. <lb/>The sa_slotid argument is the index in the reply cache for the <lb/>request. The sa_sequenceid field is the sequence number of the <lb/>request for the reply cache entry (slot). The sr_slotid result MUST <lb/>equal sa_slotid. The sr_sequenceid result MUST equal sa_sequenceid. <lb/>The sa_highest_slotid argument is the highest slot ID for which the <lb/>client has a request outstanding; it could be equal to sa_slotid. <lb/>The server returns two "highest_slotid" values: sr_highest_slotid and <lb/>sr_target_highest_slotid. The former is the highest slot ID the <lb/>server will accept in future SEQUENCE operation, and SHOULD NOT be <lb/>less than the value of sa_highest_slotid (but see Section 2.10.6.1 <lb/>for an exception). The latter is the highest slot ID the server <lb/>would prefer the client use on a future SEQUENCE operation. <lb/>If sa_cachethis is TRUE, then the client is requesting that the <lb/>server cache the entire reply in the server's reply cache; therefore, <lb/>the server MUST cache the reply (see Section 2.10.6.1.3). The server <lb/>MAY cache the reply if sa_cachethis is FALSE. If the server does not <lb/>cache the entire reply, it MUST still record that it executed the <lb/>request at the specified slot and sequence ID. <lb/>The response to the SEQUENCE operation contains a word of status <lb/>flags (sr_status_flags) that can provide to the client information <lb/>related to the status of the client's lock state and communications <lb/>paths. Note that any status bits relating to lock state MAY be reset <lb/>when lock state is lost due to a server restart (even if the session <lb/>is persistent across restarts; session persistence does not imply <lb/>lock state persistence) or the establishment of a new client <lb/>instance. <lb/>SEQ4_STATUS_CB_PATH_DOWN <lb/>When set, indicates that the client has no operational backchannel <lb/>path for any session associated with the client ID, making it <lb/>necessary for the client to re-establish one. This bit remains <lb/>set on all SEQUENCE responses on all sessions associated with the <lb/>client ID until at least one backchannel is available on any <lb/>session associated with the client ID. If the client fails to re-<lb/>establish a backchannel for the client ID, it is subject to having <lb/>recallable state revoked. <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 581] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>SEQ4_STATUS_CB_PATH_DOWN_SESSION <lb/>When set, indicates that the session has no operational <lb/>backchannel. There are two reasons why <lb/>SEQ4_STATUS_CB_PATH_DOWN_SESSION may be set and not <lb/>SEQ4_STATUS_CB_PATH_DOWN. First is that a callback operation that <lb/>applies specifically to the session (e.g., CB_RECALL_SLOT, see <lb/>Section 20.8) needs to be sent. Second is that the server did <lb/>send a callback operation, but the connection was lost before the <lb/>reply. The server cannot be sure whether or not the client <lb/>received the callback operation, and so, per rules on request <lb/>retry, the server MUST retry the callback operation over the same <lb/>session. The SEQ4_STATUS_CB_PATH_DOWN_SESSION bit is the <lb/>indication to the client that it needs to associate a connection <lb/>to the session's backchannel. This bit remains set on all <lb/>SEQUENCE responses of the session until a connection is associated <lb/>with the session's a backchannel. If the client fails to re-<lb/>establish a backchannel for the session, it is subject to having <lb/>recallable state revoked. <lb/>SEQ4_STATUS_CB_GSS_CONTEXTS_EXPIRING <lb/>When set, indicates that all GSS contexts or RPCSEC_GSS handles <lb/>assigned to the session's backchannel will expire within a period <lb/>equal to the lease time. This bit remains set on all SEQUENCE <lb/>replies until at least one of the following are true: <lb/>* All SSV RPCSEC_GSS handles on the session's backchannel have <lb/>been destroyed and all non-SSV GSS contexts have expired. <lb/>* At least one more SSV RPCSEC_GSS handle has been added to the <lb/>backchannel. <lb/>* The expiration time of at least one non-SSV GSS context of an <lb/>RPCSEC_GSS handle is beyond the lease period from the current <lb/>time (relative to the time of when a SEQUENCE response was <lb/>sent) <lb/>SEQ4_STATUS_CB_GSS_CONTEXTS_EXPIRED <lb/>When set, indicates all non-SSV GSS contexts and all SSV <lb/>RPCSEC_GSS handles assigned to the session's backchannel have <lb/>expired or have been destroyed. This bit remains set on all <lb/>SEQUENCE replies until at least one non-expired non-SSV GSS <lb/>context for the session's backchannel has been established or at <lb/>least one SSV RPCSEC_GSS handle has been assigned to the <lb/>backchannel. <lb/>SEQ4_STATUS_EXPIRED_ALL_STATE_REVOKED <lb/>When set, indicates that the lease has expired and as a result the <lb/>server released all of the client's locking state. This status <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 582] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>bit remains set on all SEQUENCE replies until the loss of all such <lb/>locks has been acknowledged by use of FREE_STATEID (see <lb/>Section 18.38), or by establishing a new client instance by <lb/>destroying all sessions (via DESTROY_SESSION), the client ID (via <lb/>DESTROY_CLIENTID), and then invoking EXCHANGE_ID and <lb/>CREATE_SESSION to establish a new client ID. <lb/>SEQ4_STATUS_EXPIRED_SOME_STATE_REVOKED <lb/>When set, indicates that some subset of the client's locks have <lb/>been revoked due to expiration of the lease period followed by <lb/>another client's conflicting LOCK operation. This status bit <lb/>remains set on all SEQUENCE replies until the loss of all such <lb/>locks has been acknowledged by use of FREE_STATEID. <lb/>SEQ4_STATUS_ADMIN_STATE_REVOKED <lb/>When set, indicates that one or more locks have been revoked <lb/>without expiration of the lease period, due to administrative <lb/>action. This status bit remains set on all SEQUENCE replies until <lb/>the loss of all such locks has been acknowledged by use of <lb/>FREE_STATEID. <lb/>SEQ4_STATUS_RECALLABLE_STATE_REVOKED <lb/>When set, indicates that one or more recallable objects have been <lb/>revoked without expiration of the lease period, due to the <lb/>client's failure to return them when recalled, which may be a <lb/>consequence of there being no working backchannel and the client <lb/>failing to re-establish a backchannel per the <lb/>SEQ4_STATUS_CB_PATH_DOWN, SEQ4_STATUS_CB_PATH_DOWN_SESSION, or <lb/>SEQ4_STATUS_CB_GSS_CONTEXTS_EXPIRED status flags. This status bit <lb/>remains set on all SEQUENCE replies until the loss of all such <lb/>locks has been acknowledged by use of FREE_STATEID. <lb/>SEQ4_STATUS_LEASE_MOVED <lb/>When set, indicates that responsibility for lease renewal has been <lb/>transferred to one or more new servers. This condition will <lb/>continue until the client receives an NFS4ERR_MOVED error and the <lb/>server receives the subsequent GETATTR for the fs_locations or <lb/>fs_locations_info attribute for an access to each file system for <lb/>which a lease has been moved to a new server. See <lb/>Section 11.10.9.1. <lb/>SEQ4_STATUS_RESTART_RECLAIM_NEEDED <lb/>When set, indicates that due to server restart, the client must <lb/>reclaim locking state. Until the client sends a global <lb/>RECLAIM_COMPLETE (Section 18.51), every SEQUENCE operation will <lb/>return SEQ4_STATUS_RESTART_RECLAIM_NEEDED. <lb/>SEQ4_STATUS_BACKCHANNEL_FAULT <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 583] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>The server has encountered an unrecoverable fault with the <lb/>backchannel (e.g., it has lost track of the sequence ID for a slot <lb/>in the backchannel). The client MUST stop sending more requests <lb/>on the session's fore channel, wait for all outstanding requests <lb/>to complete on the fore and back channel, and then destroy the <lb/>session. <lb/>SEQ4_STATUS_DEVID_CHANGED <lb/>The client is using device ID notifications and the server has <lb/>changed a device ID mapping held by the client. This flag will <lb/>stay present until the client has obtained the new mapping with <lb/>GETDEVICEINFO. <lb/>SEQ4_STATUS_DEVID_DELETED <lb/>The client is using device ID notifications and the server has <lb/>deleted a device ID mapping held by the client. This flag will <lb/>stay in effect until the client sends a GETDEVICEINFO on the <lb/>device ID with a null value in the argument gdia_notify_types. <lb/>The value of the sa_sequenceid argument relative to the cached <lb/>sequence ID on the slot falls into one of three cases. <lb/>o If the difference between sa_sequenceid and the server's cached <lb/>sequence ID at the slot ID is two (2) or more, or if sa_sequenceid <lb/>is less than the cached sequence ID (accounting for wraparound of <lb/>the unsigned sequence ID value), then the server MUST return <lb/>NFS4ERR_SEQ_MISORDERED. <lb/>o If sa_sequenceid and the cached sequence ID are the same, this is <lb/>a retry, and the server replies with what is recorded in the reply <lb/>cache. The lease is possibly renewed as described below. <lb/>o If sa_sequenceid is one greater (accounting for wraparound) than <lb/>the cached sequence ID, then this is a new request, and the slot's <lb/>sequence ID is incremented. The operations subsequent to <lb/>SEQUENCE, if any, are processed. If there are no other <lb/>operations, the only other effects are to cache the SEQUENCE reply <lb/>in the slot, maintain the session's activity, and possibly renew <lb/>the lease. <lb/>If the client reuses a slot ID and sequence ID for a completely <lb/>different request, the server MAY treat the request as if it is a <lb/>retry of what it has already executed. The server MAY however detect <lb/>the client's illegal reuse and return NFS4ERR_SEQ_FALSE_RETRY. <lb/>If SEQUENCE returns an error, then the state of the slot (sequence <lb/>ID, cached reply) MUST NOT change, and the associated lease MUST NOT <lb/>be renewed. <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 584] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>If SEQUENCE returns NFS4_OK, then the associated lease MUST be <lb/>renewed (see Section 8.3), except if <lb/>SEQ4_STATUS_EXPIRED_ALL_STATE_REVOKED is returned in sr_status_flags. <lb/>18.46.4. IMPLEMENTATION <lb/>The server MUST maintain a mapping of session ID to client ID in <lb/>order to validate any operations that follow SEQUENCE that take a <lb/>stateid as an argument and/or result. <lb/>If the client establishes a persistent session, then a SEQUENCE <lb/>received after a server restart might encounter requests performed <lb/>and recorded in a persistent reply cache before the server restart. <lb/>In this case, SEQUENCE will be processed successfully, while requests <lb/>that were not previously performed and recorded are rejected with <lb/>NFS4ERR_DEADSESSION. <lb/>Depending on which of the operations within the COMPOUND were <lb/>successfully performed before the server restart, these operations <lb/>will also have replies sent from the server reply cache. Note that <lb/>when these operations establish locking state, it is locking state <lb/>that applies to the previous server instance and to the previous <lb/>client ID, even though the server restart, which logically happened <lb/>after these operations, eliminated that state. In the case of a <lb/>partially executed COMPOUND, processing may reach an operation not <lb/>processed during the earlier server instance, making this operation a <lb/>new one and not performable on the existing session. In this case, <lb/>NFS4ERR_DEADSESSION will be returned from that operation. <lb/>18.47. Operation 54: SET_SSV -Update SSV for a Client ID <lb/>18.47.1. ARGUMENT <lb/>struct ssa_digest_input4 { <lb/>SEQUENCE4args sdi_seqargs; <lb/>}; <lb/>struct SET_SSV4args { <lb/>opaque <lb/>ssa_ssv<>; <lb/>opaque <lb/>ssa_digest<>; <lb/>}; <lb/>18.47.2. RESULT <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 585] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>struct ssr_digest_input4 { <lb/>SEQUENCE4res sdi_seqres; <lb/>}; <lb/>struct SET_SSV4resok { <lb/>opaque <lb/>ssr_digest<>; <lb/>}; <lb/>union SET_SSV4res switch (nfsstat4 ssr_status) { <lb/>case NFS4_OK: <lb/>SET_SSV4resok <lb/>ssr_resok4; <lb/>default: <lb/>void; <lb/>}; <lb/>18.47.3. DESCRIPTION <lb/>This operation is used to update the SSV for a client ID. Before <lb/>SET_SSV is called the first time on a client ID, the SSV is zero. <lb/>The SSV is the key used for the SSV GSS mechanism (Section 2.10.9) <lb/>SET_SSV MUST be preceded by a SEQUENCE operation in the same <lb/>COMPOUND. It MUST NOT be used if the client did not opt for SP4_SSV <lb/>state protection when the client ID was created (see Section 18.35); <lb/>the server returns NFS4ERR_INVAL in that case. <lb/>The field ssa_digest is computed as the output of the HMAC (RFC 2104 <lb/>[59]) using the subkey derived from the SSV4_SUBKEY_MIC_I2T and <lb/>current SSV as the key (see Section 2.10.9 for a description of <lb/>subkeys), and an XDR encoded value of data type ssa_digest_input4. <lb/>The field sdi_seqargs is equal to the arguments of the SEQUENCE <lb/>operation for the COMPOUND procedure that SET_SSV is within. <lb/>The argument ssa_ssv is XORed with the current SSV to produce the new <lb/>SSV. The argument ssa_ssv SHOULD be generated randomly. <lb/>In the response, ssr_digest is the output of the HMAC using the <lb/>subkey derived from SSV4_SUBKEY_MIC_T2I and new SSV as the key, and <lb/>an XDR encoded value of data type ssr_digest_input4. The field <lb/>sdi_seqres is equal to the results of the SEQUENCE operation for the <lb/>COMPOUND procedure that SET_SSV is within. <lb/>As noted in Section 18.35, the client and server can maintain <lb/>multiple concurrent versions of the SSV. The client and server each <lb/>MUST maintain an internal SSV version number, which is set to one the <lb/>first time SET_SSV executes on the server and the client receives the <lb/>first SET_SSV reply. Each subsequent SET_SSV increases the internal <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 586] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>SSV version number by one. The value of this version number <lb/>corresponds to the smpt_ssv_seq, smt_ssv_seq, sspt_ssv_seq, and <lb/>ssct_ssv_seq fields of the SSV GSS mechanism tokens (see <lb/>Section 2.10.9). <lb/>18.47.4. IMPLEMENTATION <lb/>When the server receives ssa_digest, it MUST verify the digest by <lb/>computing the digest the same way the client did and comparing it <lb/>with ssa_digest. If the server gets a different result, this is an <lb/>error, NFS4ERR_BAD_SESSION_DIGEST. This error might be the result of <lb/>another SET_SSV from the same client ID changing the SSV. If so, the <lb/>client recovers by sending a SET_SSV operation again with a <lb/>recomputed digest based on the subkey of the new SSV. If the <lb/>transport connection is dropped after the SET_SSV request is sent, <lb/>but before the SET_SSV reply is received, then there are special <lb/>considerations for recovery if the client has no more connections <lb/>associated with sessions associated with the client ID of the SSV. <lb/>See Section 18.34.4. <lb/>Clients SHOULD NOT send an ssa_ssv that is equal to a previous <lb/>ssa_ssv, nor equal to a previous or current SSV (including an ssa_ssv <lb/>equal to zero since the SSV is initialized to zero when the client ID <lb/>is created). <lb/>Clients SHOULD send SET_SSV with RPCSEC_GSS privacy. Servers MUST <lb/>support RPCSEC_GSS with privacy for any COMPOUND that has { SEQUENCE, <lb/>SET_SSV }. <lb/>A client SHOULD NOT send SET_SSV with the SSV GSS mechanism's <lb/>credential because the purpose of SET_SSV is to seed the SSV from <lb/>non-SSV credentials. Instead, SET_SSV SHOULD be sent with the <lb/>credential of a user that is accessing the client ID for the first <lb/>time (Section 2.10.8.3). However, if the client does send SET_SSV <lb/>with SSV credentials, the digest protecting the arguments uses the <lb/>value of the SSV before ssa_ssv is XORed in, and the digest <lb/>protecting the results uses the value of the SSV after the ssa_ssv is <lb/>XORed in. <lb/>18.48. Operation 55: TEST_STATEID -Test Stateids for Validity <lb/>18.48.1. ARGUMENT <lb/>struct TEST_STATEID4args { <lb/>stateid4 <lb/>ts_stateids<>; <lb/>}; <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 587] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>18.48.2. RESULT <lb/>struct TEST_STATEID4resok { <lb/>nfsstat4 <lb/>tsr_status_codes<>; <lb/>}; <lb/>union TEST_STATEID4res switch (nfsstat4 tsr_status) { <lb/>case NFS4_OK: <lb/>TEST_STATEID4resok tsr_resok4; <lb/>default: <lb/>void; <lb/>}; <lb/>18.48.3. DESCRIPTION <lb/>The TEST_STATEID operation is used to check the validity of a set of <lb/>stateids. It can be used at any time, but the client should <lb/>definitely use it when it receives an indication that one or more of <lb/>its stateids have been invalidated due to lock revocation. This <lb/>occurs when the SEQUENCE operation returns with one of the following <lb/>sr_status_flags set: <lb/>o SEQ4_STATUS_EXPIRED_SOME_STATE_REVOKED <lb/>o SEQ4_STATUS_EXPIRED_ADMIN_STATE_REVOKED <lb/>o SEQ4_STATUS_EXPIRED_RECALLABLE_STATE_REVOKED <lb/>The client can use TEST_STATEID one or more times to test the <lb/>validity of its stateids. Each use of TEST_STATEID allows a large <lb/>set of such stateids to be tested and avoids problems with earlier <lb/>stateids in a COMPOUND request from interfering with the checking of <lb/>subsequent stateids, as would happen if individual stateids were <lb/>tested by a series of corresponding by operations in a COMPOUND <lb/>request. <lb/>For each stateid, the server returns the status code that would be <lb/>returned if that stateid were to be used in normal operation. <lb/>Returning such a status indication is not an error and does not cause <lb/>COMPOUND processing to terminate. Checks for the validity of the <lb/>stateid proceed as they would for normal operations with a number of <lb/>exceptions: <lb/>o There is no check for the type of stateid object, as would be the <lb/>case for normal use of a stateid. <lb/>o There is no reference to the current filehandle. <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 588] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>o Special stateids are always considered invalid (they result in the <lb/>error code NFS4ERR_BAD_STATEID). <lb/>All stateids are interpreted as being associated with the client for <lb/>the current session. Any possible association with a previous <lb/>instance of the client (as stale stateids) is not considered. <lb/>The valid status values in the returned status_code array are <lb/>NFS4ERR_OK, NFS4ERR_BAD_STATEID, NFS4ERR_OLD_STATEID, <lb/>NFS4ERR_EXPIRED, NFS4ERR_ADMIN_REVOKED, and NFS4ERR_DELEG_REVOKED. <lb/>18.48.4. IMPLEMENTATION <lb/>See Sections 8.2.2 and 8.2.4 for a discussion of stateid structure, <lb/>lifetime, and validation. <lb/>18.49. Operation 56: WANT_DELEGATION -Request Delegation <lb/>18.49.1. ARGUMENT <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 589] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>union deleg_claim4 switch (open_claim_type4 dc_claim) { <lb/>/* <lb/>* No special rights to object. Ordinary delegation <lb/>* request of the specified object. Object identified <lb/>* by filehandle. <lb/>*/ <lb/>case CLAIM_FH: /* new to v4.1 */ <lb/>/* CURRENT_FH: object being delegated */ <lb/>void; <lb/>/* <lb/>* Right to file based on a delegation granted <lb/>* to a previous boot instance of the client. <lb/>* File is specified by filehandle. <lb/>*/ <lb/>case CLAIM_DELEG_PREV_FH: /* new to v4.1 */ <lb/>/* CURRENT_FH: object being delegated */ <lb/>void; <lb/>/* <lb/>* Right to the file established by an open previous <lb/>* to server reboot. File identified by filehandle. <lb/>* Used during server reclaim grace period. <lb/>*/ <lb/>case CLAIM_PREVIOUS: <lb/>/* CURRENT_FH: object being reclaimed */ <lb/>open_delegation_type4 <lb/>dc_delegate_type; <lb/>}; <lb/>struct WANT_DELEGATION4args { <lb/>uint32_t <lb/>wda_want; <lb/>deleg_claim4 <lb/>wda_claim; <lb/>}; <lb/>18.49.2. RESULT <lb/>union WANT_DELEGATION4res switch (nfsstat4 wdr_status) { <lb/>case NFS4_OK: <lb/>open_delegation4 wdr_resok4; <lb/>default: <lb/>void; <lb/>}; <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 590] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>18.49.3. DESCRIPTION <lb/>Where this description mandates the return of a specific error code <lb/>for a specific condition, and where multiple conditions apply, the <lb/>server MAY return any of the mandated error codes. <lb/>This operation allows a client to: <lb/>o Get a delegation on all types of files except directories. <lb/>o Register a "want" for a delegation for the specified file object, <lb/>and be notified via a callback when the delegation is available. <lb/>The server MAY support notifications of availability via <lb/>callbacks. If the server does not support registration of wants, <lb/>it MUST NOT return an error to indicate that, and instead MUST <lb/>return with ond_why set to WND4_CONTENTION or WND4_RESOURCE and <lb/>ond_server_will_push_deleg or ond_server_will_signal_avail set to <lb/>FALSE. When the server indicates that it will notify the client <lb/>by means of a callback, it will either provide the delegation <lb/>using a CB_PUSH_DELEG operation or cancel its promise by sending a <lb/>CB_WANTS_CANCELLED operation. <lb/>o Cancel a want for a delegation. <lb/>The client SHOULD NOT set OPEN4_SHARE_ACCESS_READ and SHOULD NOT set <lb/>OPEN4_SHARE_ACCESS_WRITE in wda_want. If it does, the server MUST <lb/>ignore them. <lb/>The meanings of the following flags in wda_want are the same as they <lb/>are in OPEN, except as noted below. <lb/>o OPEN4_SHARE_ACCESS_WANT_READ_DELEG <lb/>o OPEN4_SHARE_ACCESS_WANT_WRITE_DELEG <lb/>o OPEN4_SHARE_ACCESS_WANT_ANY_DELEG <lb/>o OPEN4_SHARE_ACCESS_WANT_NO_DELEG. Unlike the OPEN operation, this <lb/>flag SHOULD NOT be set by the client in the arguments to <lb/>WANT_DELEGATION, and MUST be ignored by the server. <lb/>o OPEN4_SHARE_ACCESS_WANT_CANCEL <lb/>o OPEN4_SHARE_ACCESS_WANT_SIGNAL_DELEG_WHEN_RESRC_AVAIL <lb/>o OPEN4_SHARE_ACCESS_WANT_PUSH_DELEG_WHEN_UNCONTENDED <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 591] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>The handling of the above flags in WANT_DELEGATION is the same as in <lb/>OPEN. Information about the delegation and/or the promises the <lb/>server is making regarding future callbacks are the same as those <lb/>described in the open_delegation4 structure. <lb/>The successful results of WANT_DELEGATION are of data type <lb/>open_delegation4, which is the same data type as the "delegation" <lb/>field in the results of the OPEN operation (see Section 18.16.3). <lb/>The server constructs wdr_resok4 the same way it constructs OPEN's <lb/>"delegation" with one difference: WANT_DELEGATION MUST NOT return a <lb/>delegation type of OPEN_DELEGATE_NONE. <lb/>If ((wda_want & OPEN4_SHARE_ACCESS_WANT_DELEG_MASK) & <lb/>~OPEN4_SHARE_ACCESS_WANT_NO_DELEG) is zero, then the client is <lb/>indicating no explicit desire or non-desire for a delegation and the <lb/>server MUST return NFS4ERR_INVAL. <lb/>The client uses the OPEN4_SHARE_ACCESS_WANT_CANCEL flag in the <lb/>WANT_DELEGATION operation to cancel a previously requested want for a <lb/>delegation. Note that if the server is in the process of sending the <lb/>delegation (via CB_PUSH_DELEG) at the time the client sends a <lb/>cancellation of the want, the delegation might still be pushed to the <lb/>client. <lb/>If WANT_DELEGATION fails to return a delegation, and the server <lb/>returns NFS4_OK, the server MUST set the delegation type to <lb/>OPEN4_DELEGATE_NONE_EXT, and set od_whynone, as described in <lb/>Section 18.16. Write delegations are not available for file types <lb/>that are not writable. This includes file objects of types NF4BLK, <lb/>NF4CHR, NF4LNK, NF4SOCK, and NF4FIFO. If the client requests <lb/>OPEN4_SHARE_ACCESS_WANT_WRITE_DELEG without <lb/>OPEN4_SHARE_ACCESS_WANT_READ_DELEG on an object with one of the <lb/>aforementioned file types, the server must set <lb/>wdr_resok4.od_whynone.ond_why to WND4_WRITE_DELEG_NOT_SUPP_FTYPE. <lb/>18.49.4. IMPLEMENTATION <lb/>A request for a conflicting delegation is not normally intended to <lb/>trigger the recall of the existing delegation. Servers may choose to <lb/>treat some clients as having higher priority such that their wants <lb/>will trigger recall of an existing delegation, although that is <lb/>expected to be an unusual situation. <lb/>Servers will generally recall delegations assigned by WANT_DELEGATION <lb/>on the same basis as those assigned by OPEN. CB_RECALL will <lb/>generally be done only when other clients perform operations <lb/>inconsistent with the delegation. The normal response to aging of <lb/>delegations is to use CB_RECALL_ANY, in order to give the client the <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 592] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>opportunity to keep the delegations most useful from its point of <lb/>view. <lb/>18.50. Operation 57: DESTROY_CLIENTID -Destroy a Client ID <lb/>18.50.1. ARGUMENT <lb/>struct DESTROY_CLIENTID4args { <lb/>clientid4 <lb/>dca_clientid; <lb/>}; <lb/>18.50.2. RESULT <lb/>struct DESTROY_CLIENTID4res { <lb/>nfsstat4 <lb/>dcr_status; <lb/>}; <lb/>18.50.3. DESCRIPTION <lb/>The DESTROY_CLIENTID operation destroys the client ID. If there are <lb/>sessions (both idle and non-idle), opens, locks, delegations, <lb/>layouts, and/or wants (Section 18.49) associated with the unexpired <lb/>lease of the client ID, the server MUST return NFS4ERR_CLIENTID_BUSY. <lb/>DESTROY_CLIENTID MAY be preceded with a SEQUENCE operation as long as <lb/>the client ID derived from the session ID of SEQUENCE is not the same <lb/>as the client ID to be destroyed. If the client IDs are the same, <lb/>then the server MUST return NFS4ERR_CLIENTID_BUSY. <lb/>If DESTROY_CLIENTID is not prefixed by SEQUENCE, it MUST be the only <lb/>operation in the COMPOUND request (otherwise, the server MUST return <lb/>NFS4ERR_NOT_ONLY_OP). If the operation is sent without a SEQUENCE <lb/>preceding it, a client that retransmits the request may receive an <lb/>error in response, because the original request might have been <lb/>successfully executed. <lb/>18.50.4. IMPLEMENTATION <lb/>DESTROY_CLIENTID allows a server to immediately reclaim the resources <lb/>consumed by an unused client ID, and also to forget that it ever <lb/>generated the client ID. By forgetting that it ever generated the <lb/>client ID, the server can safely reuse the client ID on a future <lb/>EXCHANGE_ID operation. <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 593] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>18.51. Operation 58: RECLAIM_COMPLETE -Indicates Reclaims Finished <lb/>18.51.1. ARGUMENT <lb/><CODE BEGINS> <lb/>struct RECLAIM_COMPLETE4args { <lb/>/* <lb/>* If rca_one_fs TRUE, <lb/>* <lb/>* <lb/>CURRENT_FH: object in <lb/>* <lb/>file system reclaim is <lb/>* <lb/>complete for. <lb/>*/ <lb/>bool <lb/>rca_one_fs; <lb/>}; <lb/><CODE ENDS> <lb/>18.51.2. RESULTS <lb/><CODE BEGINS> <lb/>struct RECLAIM_COMPLETE4res { <lb/>nfsstat4 <lb/>rcr_status; <lb/>}; <lb/><CODE ENDS> <lb/>18.51.3. DESCRIPTION <lb/>A RECLAIM_COMPLETE operation is used to indicate that the client has <lb/>reclaimed all of the locking state that it will recover using <lb/>reclaim, when it is recovering state due to either a server restart <lb/>or the migration of a file system to another server. There are two <lb/>types of RECLAIM_COMPLETE operations: <lb/>o When rca_one_fs is FALSE, a global RECLAIM_COMPLETE is being done. <lb/>This indicates that recovery of all locks that the client held on <lb/>the previous server instance has been completed. The current <lb/>filehandle need not be set in this case. <lb/>o When rca_one_fs is TRUE, a file system-specific RECLAIM_COMPLETE <lb/>is being done. This indicates that recovery of locks for a single <lb/>fs (the one designated by the current filehandle) due to the <lb/>migration of the file system has been completed. Presence of a <lb/>current filehandle is required when rca_one_fs is set to TRUE. <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 594] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>When the current filehandle designates a filehandle in a file <lb/>system not in the process of migration, the operation returns <lb/>NFS4_OK and is otherwise ignored. <lb/>Once a RECLAIM_COMPLETE is done, there can be no further reclaim <lb/>operations for locks whose scope is defined as having completed <lb/>recovery. Once the client sends RECLAIM_COMPLETE, the server will <lb/>not allow the client to do subsequent reclaims of locking state for <lb/>that scope and, if these are attempted, will return NFS4ERR_NO_GRACE. <lb/>Whenever a client establishes a new client ID and before it does the <lb/>first non-reclaim operation that obtains a lock, it MUST send a <lb/>RECLAIM_COMPLETE with rca_one_fs set to FALSE, even if there are no <lb/>locks to reclaim. If non-reclaim locking operations are done before <lb/>the RECLAIM_COMPLETE, an NFS4ERR_GRACE error will be returned. <lb/>Similarly, when the client accesses a migrated file system on a new <lb/>server, before it sends the first non-reclaim operation that obtains <lb/>a lock on this new server, it MUST send a RECLAIM_COMPLETE with <lb/>rca_one_fs set to TRUE and current filehandle within that file <lb/>system, even if there are no locks to reclaim. If non-reclaim <lb/>locking operations are done on that file system before the <lb/>RECLAIM_COMPLETE, an NFS4ERR_GRACE error will be returned. <lb/>It should be noted that there are situations in which a client needs <lb/>to issue both forms of RECLAIM_COMPLETE. An example is an instance <lb/>of file system migration in which the file system is migrated to a <lb/>server for which the client has no clientid. As a result, the client <lb/>needs to obtain a clientid from the server (incurring the <lb/>responsibility to do RECLAIM_COMPLETE with rca_one_fs set to FALSE) <lb/>as well as RECLAIM_COMPLETE with rca_one_fs set to TRUE to complete <lb/>the per-fs grace period associated with the file system migration. <lb/>These two may be done in any order as long as all necessary lock <lb/>reclaims have been done before issuing either of them. <lb/>Any locks not reclaimed at the point at which RECLAIM_COMPLETE is <lb/>done become non-reclaimable. The client MUST NOT attempt to reclaim <lb/>them, either during the current server instance or in any subsequent <lb/>server instance, or on another server to which responsibility for <lb/>that file system is transferred. If the client were to do so, it <lb/>would be violating the protocol by representing itself as owning <lb/>locks that it does not own, and so has no right to reclaim. See <lb/>Section 8.4.3 of [60] for a discussion of edge conditions related to <lb/>lock reclaim. <lb/>By sending a RECLAIM_COMPLETE, the client indicates readiness to <lb/>proceed to do normal non-reclaim locking operations. The client <lb/>should be aware that such operations may temporarily result in <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 595] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>NFS4ERR_GRACE errors until the server is ready to terminate its grace <lb/>period. <lb/>18.51.4. IMPLEMENTATION <lb/>Servers will typically use the information as to when reclaim <lb/>activity is complete to reduce the length of the grace period. When <lb/>the server maintains in persistent storage a list of clients that <lb/>might have had locks, it is able to use the fact that all such <lb/>clients have done a RECLAIM_COMPLETE to terminate the grace period <lb/>and begin normal operations (i.e., grant requests for new locks) <lb/>sooner than it might otherwise. <lb/>Latency can be minimized by doing a RECLAIM_COMPLETE as part of the <lb/>COMPOUND request in which the last lock-reclaiming operation is done. <lb/>When there are no reclaims to be done, RECLAIM_COMPLETE should be <lb/>done immediately in order to allow the grace period to end as soon as <lb/>possible. <lb/>RECLAIM_COMPLETE should only be done once for each server instance or <lb/>occasion of the transition of a file system. If it is done a second <lb/>time, the error NFS4ERR_COMPLETE_ALREADY will result. Note that <lb/>because of the session feature's retry protection, retries of <lb/>COMPOUND requests containing RECLAIM_COMPLETE operation will not <lb/>result in this error. <lb/>When a RECLAIM_COMPLETE is sent, the client effectively acknowledges <lb/>any locks not yet reclaimed as lost. This allows the server to re-<lb/>enable the client to recover locks if the occurrence of edge <lb/>conditions, as described in Section 8.4.3, had caused the server to <lb/>disable the client's ability to recover locks. <lb/>Because previous descriptions of RECLAIM_COMPLETE were not <lb/>sufficiently explicit about the circumstances in which use of <lb/>RECLAIM_COMPLETE with rca_one_fs set to TRUE was appropriate, there <lb/>have been cases which it has been misused by clients, and cases in <lb/>which servers have, in various ways, not responded to such misuse as <lb/>described above. While clients SHOULD NOT misuse this feature and <lb/>servers SHOULD respond to such misuse as described above, <lb/>implementers need to be aware of the following considerations as they <lb/>make necessary tradeoffs between interoperability with existing <lb/>implementations and proper support for facilities to allow lock <lb/>recovery in the event of file system migration. <lb/>o When servers have no support for becoming the destination server <lb/>of a file system subject to migration, there is no possibility of <lb/>a per-fs RECLAIM_COMPLETE being done legitimately and occurrences <lb/>of it SHOULD be ignored. However, the negative consequences of <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 596] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>accepting such mistaken use are quite limited as long as the <lb/>client does not issue it before all necessary reclaims are done. <lb/>o When a server might become the destination for a file system being <lb/>migrated, inappropriate use of per-fs RECLAIM_COMPLETE is more <lb/>concerning. In the case in which the file system designated is <lb/>not within a per-fs grace period, the per-fs RECLAIM_COMPLETE <lb/>SHOULD be ignored, with the negative consequences of accepting it <lb/>being limited, as in the case in which migration is not supported. <lb/>However, if the server encounters a file system undergoing <lb/>migration, the operation cannot be accepted as if it were a global <lb/>RECLAIM_COMPLETE without invalidating its intended use. <lb/>18.52. Operation 10044: ILLEGAL -Illegal Operation <lb/>18.52.1. ARGUMENTS <lb/>void; <lb/>18.52.2. RESULTS <lb/>struct ILLEGAL4res { <lb/>nfsstat4 <lb/>status; <lb/>}; <lb/>18.52.3. DESCRIPTION <lb/>This operation is a placeholder for encoding a result to handle the <lb/>case of the client sending an operation code within COMPOUND that is <lb/>not supported. See the COMPOUND procedure description for more <lb/>details. <lb/>The status field of ILLEGAL4res MUST be set to NFS4ERR_OP_ILLEGAL. <lb/>18.52.4. IMPLEMENTATION <lb/>A client will probably not send an operation with code OP_ILLEGAL but <lb/>if it does, the response will be ILLEGAL4res just as it would be with <lb/>any other invalid operation code. Note that if the server gets an <lb/>illegal operation code that is not OP_ILLEGAL, and if the server <lb/>checks for legal operation codes during the XDR decode phase, then <lb/>the ILLEGAL4res would not be returned. <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 597] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>19. NFSv4.1 Callback Procedures <lb/>The procedures used for callbacks are defined in the following <lb/>sections. In the interest of clarity, the terms "client" and <lb/>"server" refer to NFS clients and servers, despite the fact that for <lb/>an individual callback RPC, the sense of these terms would be <lb/>precisely the opposite. <lb/>Both procedures, CB_NULL and CB_COMPOUND, MUST be implemented. <lb/>19.1. Procedure 0: CB_NULL -No Operation <lb/>19.1.1. ARGUMENTS <lb/>void; <lb/>19.1.2. RESULTS <lb/>void; <lb/>19.1.3. DESCRIPTION <lb/>CB_NULL is the standard ONC RPC NULL procedure, with the standard <lb/>void argument and void response. Even though there is no direct <lb/>functionality associated with this procedure, the server will use <lb/>CB_NULL to confirm the existence of a path for RPCs from the server <lb/>to client. <lb/>19.1.4. ERRORS <lb/>None. <lb/>19.2. Procedure 1: CB_COMPOUND -Compound Operations <lb/>19.2.1. ARGUMENTS <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 598] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>enum nfs_cb_opnum4 { <lb/>OP_CB_GETATTR <lb/>= 3, <lb/>OP_CB_RECALL <lb/>= 4, <lb/>/* Callback operations new to NFSv4.1 */ <lb/>OP_CB_LAYOUTRECALL <lb/>= 5, <lb/>OP_CB_NOTIFY <lb/>= 6, <lb/>OP_CB_PUSH_DELEG <lb/>= 7, <lb/>OP_CB_RECALL_ANY <lb/>= 8, <lb/>OP_CB_RECALLABLE_OBJ_AVAIL = 9, <lb/>OP_CB_RECALL_SLOT <lb/>= 10, <lb/>OP_CB_SEQUENCE <lb/>= 11, <lb/>OP_CB_WANTS_CANCELLED <lb/>= 12, <lb/>OP_CB_NOTIFY_LOCK <lb/>= 13, <lb/>OP_CB_NOTIFY_DEVICEID <lb/>= 14, <lb/>OP_CB_ILLEGAL <lb/>= 10044 <lb/>}; <lb/>union nfs_cb_argop4 switch (unsigned argop) { <lb/>case OP_CB_GETATTR: <lb/>CB_GETATTR4args <lb/>opcbgetattr; <lb/>case OP_CB_RECALL: <lb/>CB_RECALL4args <lb/>opcbrecall; <lb/>case OP_CB_LAYOUTRECALL: <lb/>CB_LAYOUTRECALL4args <lb/>opcblayoutrecall; <lb/>case OP_CB_NOTIFY: <lb/>CB_NOTIFY4args <lb/>opcbnotify; <lb/>case OP_CB_PUSH_DELEG: <lb/>CB_PUSH_DELEG4args <lb/>opcbpush_deleg; <lb/>case OP_CB_RECALL_ANY: <lb/>CB_RECALL_ANY4args <lb/>opcbrecall_any; <lb/>case OP_CB_RECALLABLE_OBJ_AVAIL: <lb/>CB_RECALLABLE_OBJ_AVAIL4args opcbrecallable_obj_avail; <lb/>case OP_CB_RECALL_SLOT: <lb/>CB_RECALL_SLOT4args <lb/>opcbrecall_slot; <lb/>case OP_CB_SEQUENCE: <lb/>CB_SEQUENCE4args <lb/>opcbsequence; <lb/>case OP_CB_WANTS_CANCELLED: <lb/>CB_WANTS_CANCELLED4args <lb/>opcbwants_cancelled; <lb/>case OP_CB_NOTIFY_LOCK: <lb/>CB_NOTIFY_LOCK4args <lb/>opcbnotify_lock; <lb/>case OP_CB_NOTIFY_DEVICEID: <lb/>CB_NOTIFY_DEVICEID4args <lb/>opcbnotify_deviceid; <lb/>case OP_CB_ILLEGAL: <lb/>void; <lb/>}; <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 599] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>struct CB_COMPOUND4args { <lb/>utf8str_cs <lb/>tag; <lb/>uint32_t <lb/>minorversion; <lb/>uint32_t <lb/>callback_ident; <lb/>nfs_cb_argop4 <lb/>argarray<>; <lb/>}; <lb/>19.2.2. RESULTS <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 600] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>union nfs_cb_resop4 switch (unsigned resop) { <lb/>case OP_CB_GETATTR: <lb/>CB_GETATTR4res opcbgetattr; <lb/>case OP_CB_RECALL: <lb/>CB_RECALL4res <lb/>opcbrecall; <lb/>/* new NFSv4.1 operations */ <lb/>case OP_CB_LAYOUTRECALL: <lb/>CB_LAYOUTRECALL4res <lb/>opcblayoutrecall; <lb/>case OP_CB_NOTIFY: <lb/>CB_NOTIFY4res <lb/>opcbnotify; <lb/>case OP_CB_PUSH_DELEG: CB_PUSH_DELEG4res <lb/>opcbpush_deleg; <lb/>case OP_CB_RECALL_ANY: CB_RECALL_ANY4res <lb/>opcbrecall_any; <lb/>case OP_CB_RECALLABLE_OBJ_AVAIL: <lb/>CB_RECALLABLE_OBJ_AVAIL4res <lb/>opcbrecallable_obj_avail; <lb/>case OP_CB_RECALL_SLOT: <lb/>CB_RECALL_SLOT4res <lb/>opcbrecall_slot; <lb/>case OP_CB_SEQUENCE: <lb/>CB_SEQUENCE4res opcbsequence; <lb/>case OP_CB_WANTS_CANCELLED: <lb/>CB_WANTS_CANCELLED4res <lb/>opcbwants_cancelled; <lb/>case OP_CB_NOTIFY_LOCK: <lb/>CB_NOTIFY_LOCK4res <lb/>opcbnotify_lock; <lb/>case OP_CB_NOTIFY_DEVICEID: <lb/>CB_NOTIFY_DEVICEID4res <lb/>opcbnotify_deviceid; <lb/>/* Not new operation */ <lb/>case OP_CB_ILLEGAL: <lb/>CB_ILLEGAL4res opcbillegal; <lb/>}; <lb/>struct CB_COMPOUND4res { <lb/>nfsstat4 status; <lb/>utf8str_cs <lb/>tag; <lb/>nfs_cb_resop4 <lb/>resarray<>; <lb/>}; <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 601] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>19.2.3. DESCRIPTION <lb/>The CB_COMPOUND procedure is used to combine one or more of the <lb/>callback procedures into a single RPC request. The main callback RPC <lb/>program has two main procedures: CB_NULL and CB_COMPOUND. All other <lb/>operations use the CB_COMPOUND procedure as a wrapper. <lb/>During the processing of the CB_COMPOUND procedure, the client may <lb/>find that it does not have the available resources to execute any or <lb/>all of the operations within the CB_COMPOUND sequence. Refer to <lb/>Section 2.10.6.4 for details. <lb/>The minorversion field of the arguments MUST be the same as the <lb/>minorversion of the COMPOUND procedure used to create the client ID <lb/>and session. For NFSv4.1, minorversion MUST be set to 1. <lb/>Contained within the CB_COMPOUND results is a "status" field. This <lb/>status MUST be equal to the status of the last operation that was <lb/>executed within the CB_COMPOUND procedure. Therefore, if an <lb/>operation incurred an error, then the "status" value will be the same <lb/>error value as is being returned for the operation that failed. <lb/>The "tag" field is handled the same way as that of the COMPOUND <lb/>procedure (see Section 16.2.3). <lb/>Illegal operation codes are handled in the same way as they are <lb/>handled for the COMPOUND procedure. <lb/>19.2.4. IMPLEMENTATION <lb/>The CB_COMPOUND procedure is used to combine individual operations <lb/>into a single RPC request. The client interprets each of the <lb/>operations in turn. If an operation is executed by the client and <lb/>the status of that operation is NFS4_OK, then the next operation in <lb/>the CB_COMPOUND procedure is executed. The client continues this <lb/>process until there are no more operations to be executed or one of <lb/>the operations has a status value other than NFS4_OK. <lb/>19.2.5. ERRORS <lb/>CB_COMPOUND will of course return every error that each operation on <lb/>the backchannel can return (see Table 7). However, if CB_COMPOUND <lb/>returns zero operations, obviously the error returned by COMPOUND has <lb/>nothing to do with an error returned by an operation. The list of <lb/>errors CB_COMPOUND will return if it processes zero operations <lb/>includes: <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 602] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>CB_COMPOUND error returns <lb/>+------------------------------+------------------------------------+ <lb/>| Error <lb/>| Notes <lb/>| <lb/>+------------------------------+------------------------------------+ <lb/>| NFS4ERR_BADCHAR <lb/>| The tag argument has a character <lb/>| <lb/>| <lb/>| the replier does not support. <lb/>| <lb/>| NFS4ERR_BADXDR <lb/>| <lb/>| <lb/>| NFS4ERR_DELAY <lb/>| <lb/>| <lb/>| NFS4ERR_INVAL <lb/>| The tag argument is not in UTF-8 <lb/>| <lb/>| <lb/>| encoding. <lb/>| <lb/>| NFS4ERR_MINOR_VERS_MISMATCH | <lb/>| <lb/>| NFS4ERR_SERVERFAULT <lb/>| <lb/>| <lb/>| NFS4ERR_TOO_MANY_OPS <lb/>| <lb/>| <lb/>| NFS4ERR_REP_TOO_BIG <lb/>| <lb/>| <lb/>| NFS4ERR_REP_TOO_BIG_TO_CACHE | <lb/>| <lb/>| NFS4ERR_REQ_TOO_BIG <lb/>| <lb/>| <lb/>+------------------------------+------------------------------------+ <lb/>Table 15 <lb/>20. NFSv4.1 Callback Operations <lb/>20.1. Operation 3: CB_GETATTR -Get Attributes <lb/>20.1.1. ARGUMENT <lb/>struct CB_GETATTR4args { <lb/>nfs_fh4 fh; <lb/>bitmap4 attr_request; <lb/>}; <lb/>20.1.2. RESULT <lb/>struct CB_GETATTR4resok { <lb/>fattr4 obj_attributes; <lb/>}; <lb/>union CB_GETATTR4res switch (nfsstat4 status) { <lb/>case NFS4_OK: <lb/>CB_GETATTR4resok <lb/>resok4; <lb/>default: <lb/>void; <lb/>}; <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 603] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>20.1.3. DESCRIPTION <lb/>The CB_GETATTR operation is used by the server to obtain the current <lb/>modified state of a file that has been OPEN_DELEGATE_WRITE delegated. <lb/>The size and change attributes are the only ones guaranteed to be <lb/>serviced by the client. See Section 10.4.3 for a full description of <lb/>how the client and server are to interact with the use of CB_GETATTR. <lb/>If the filehandle specified is not one for which the client holds an <lb/>OPEN_DELEGATE_WRITE delegation, an NFS4ERR_BADHANDLE error is <lb/>returned. <lb/>20.1.4. IMPLEMENTATION <lb/>The client returns attrmask bits and the associated attribute values <lb/>only for the change attribute, and attributes that it may change <lb/>(time_modify, and size). <lb/>20.2. Operation 4: CB_RECALL -Recall a Delegation <lb/>20.2.1. ARGUMENT <lb/>struct CB_RECALL4args { <lb/>stateid4 <lb/>stateid; <lb/>bool <lb/>truncate; <lb/>nfs_fh4 <lb/>fh; <lb/>}; <lb/>20.2.2. RESULT <lb/>struct CB_RECALL4res { <lb/>nfsstat4 <lb/>status; <lb/>}; <lb/>20.2.3. DESCRIPTION <lb/>The CB_RECALL operation is used to begin the process of recalling a <lb/>delegation and returning it to the server. <lb/>The truncate flag is used to optimize recall for a file object that <lb/>is a regular file and is about to be truncated to zero. When it is <lb/>TRUE, the client is freed of the obligation to propagate modified <lb/>data for the file to the server, since this data is irrelevant. <lb/>If the handle specified is not one for which the client holds a <lb/>delegation, an NFS4ERR_BADHANDLE error is returned. <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 604] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>If the stateid specified is not one corresponding to an OPEN <lb/>delegation for the file specified by the filehandle, an <lb/>NFS4ERR_BAD_STATEID is returned. <lb/>20.2.4. IMPLEMENTATION <lb/>The client SHOULD reply to the callback immediately. Replying does <lb/>not complete the recall except when the value of the reply's status <lb/>field is neither NFS4ERR_DELAY nor NFS4_OK. The recall is not <lb/>complete until the delegation is returned using a DELEGRETURN <lb/>operation. <lb/>20.3. Operation 5: CB_LAYOUTRECALL -Recall Layout from Client <lb/>20.3.1. ARGUMENT <lb/>/* <lb/>* NFSv4.1 callback arguments and results <lb/>*/ <lb/>enum layoutrecall_type4 { <lb/>LAYOUTRECALL4_FILE = LAYOUT4_RET_REC_FILE, <lb/>LAYOUTRECALL4_FSID = LAYOUT4_RET_REC_FSID, <lb/>LAYOUTRECALL4_ALL = LAYOUT4_RET_REC_ALL <lb/>}; <lb/>struct layoutrecall_file4 { <lb/>nfs_fh4 <lb/>lor_fh; <lb/>offset4 <lb/>lor_offset; <lb/>length4 <lb/>lor_length; <lb/>stateid4 <lb/>lor_stateid; <lb/>}; <lb/>union layoutrecall4 switch(layoutrecall_type4 lor_recalltype) { <lb/>case LAYOUTRECALL4_FILE: <lb/>layoutrecall_file4 lor_layout; <lb/>case LAYOUTRECALL4_FSID: <lb/>fsid4 <lb/>lor_fsid; <lb/>case LAYOUTRECALL4_ALL: <lb/>void; <lb/>}; <lb/>struct CB_LAYOUTRECALL4args { <lb/>layouttype4 <lb/>clora_type; <lb/>layoutiomode4 <lb/>clora_iomode; <lb/>bool <lb/>clora_changed; <lb/>layoutrecall4 <lb/>clora_recall; <lb/>}; <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 605] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>20.3.2. RESULT <lb/>struct CB_LAYOUTRECALL4res { <lb/>nfsstat4 <lb/>clorr_status; <lb/>}; <lb/>20.3.3. DESCRIPTION <lb/>The CB_LAYOUTRECALL operation is used by the server to recall layouts <lb/>from the client; as a result, the client will begin the process of <lb/>returning layouts via LAYOUTRETURN. The CB_LAYOUTRECALL operation <lb/>specifies one of three forms of recall processing with the value of <lb/>layoutrecall_type4. The recall is for one of the following: a <lb/>specific layout of a specific file (LAYOUTRECALL4_FILE), an entire <lb/>file system ID (LAYOUTRECALL4_FSID), or all file systems <lb/>(LAYOUTRECALL4_ALL). <lb/>The behavior of the operation varies based on the value of the <lb/>layoutrecall_type4. The value and behaviors are: <lb/>LAYOUTRECALL4_FILE <lb/>For a layout to match the recall request, the values of the <lb/>following fields must match those of the layout: clora_type, <lb/>clora_iomode, lor_fh, and the byte-range specified by lor_offset <lb/>and lor_length. The clora_iomode field may have a special value <lb/>of LAYOUTIOMODE4_ANY. The special value LAYOUTIOMODE4_ANY will <lb/>match any iomode originally returned in a layout; therefore, it <lb/>acts as a wild card. The other special value used is for <lb/>lor_length. If lor_length has a value of NFS4_UINT64_MAX, the <lb/>lor_length field means the maximum possible file size. If a <lb/>matching layout is found, it MUST be returned using the <lb/>LAYOUTRETURN operation (see Section 18.44). An example of the <lb/>field's special value use is if clora_iomode is LAYOUTIOMODE4_ANY, <lb/>lor_offset is zero, and lor_length is NFS4_UINT64_MAX, then the <lb/>entire layout is to be returned. <lb/>The NFS4ERR_NOMATCHING_LAYOUT error is only returned when the <lb/>client does not hold layouts for the file or if the client does <lb/>not have any overlapping layouts for the specification in the <lb/>layout recall. <lb/>LAYOUTRECALL4_FSID and LAYOUTRECALL4_ALL <lb/>If LAYOUTRECALL4_FSID is specified, the fsid specifies the file <lb/>system for which any outstanding layouts MUST be returned. If <lb/>LAYOUTRECALL4_ALL is specified, all outstanding layouts MUST be <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 606] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>returned. In addition, LAYOUTRECALL4_FSID and LAYOUTRECALL4_ALL <lb/>specify that all the storage device ID to storage device address <lb/>mappings in the affected file system(s) are also recalled. The <lb/>respective LAYOUTRETURN with either LAYOUTRETURN4_FSID or <lb/>LAYOUTRETURN4_ALL acknowledges to the server that the client <lb/>invalidated the said device mappings. See Section 12.5.5.2.1.5 <lb/>for considerations with "bulk" recall of layouts. <lb/>The NFS4ERR_NOMATCHING_LAYOUT error is only returned when the <lb/>client does not hold layouts and does not have valid deviceid <lb/>mappings. <lb/>In processing the layout recall request, the client also varies its <lb/>behavior based on the value of the clora_changed field. This field <lb/>is used by the server to provide additional context for the reason <lb/>why the layout is being recalled. A FALSE value for clora_changed <lb/>indicates that no change in the layout is expected and the client may <lb/>write modified data to the storage devices involved; this must be <lb/>done prior to returning the layout via LAYOUTRETURN. A TRUE value <lb/>for clora_changed indicates that the server is changing the layout. <lb/>Examples of layout changes and reasons for a TRUE indication are the <lb/>following: the metadata server is restriping the file or a permanent <lb/>error has occurred on a storage device and the metadata server would <lb/>like to provide a new layout for the file. Therefore, a <lb/>clora_changed value of TRUE indicates some level of change for the <lb/>layout and the client SHOULD NOT write and commit modified data to <lb/>the storage devices. In this case, the client writes and commits <lb/>data through the metadata server. <lb/>See Section 12.5.3 for a description of how the lor_stateid field in <lb/>the arguments is to be constructed. Note that the "seqid" field of <lb/>lor_stateid MUST NOT be zero. See Sections 8.2, 12.5.3, and 12.5.5.2 <lb/>for a further discussion and requirements. <lb/>20.3.4. IMPLEMENTATION <lb/>The client's processing for CB_LAYOUTRECALL is similar to CB_RECALL <lb/>(recall of file delegations) in that the client responds to the <lb/>request before actually returning layouts via the LAYOUTRETURN <lb/>operation. While the client responds to the CB_LAYOUTRECALL <lb/>immediately, the operation is not considered complete (i.e., <lb/>considered pending) until all affected layouts are returned to the <lb/>server via the LAYOUTRETURN operation. <lb/>Before returning the layout to the server via LAYOUTRETURN, the <lb/>client should wait for the response from in-process or in-flight <lb/>READ, WRITE, or COMMIT operations that use the recalled layout. <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 607] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>If the client is holding modified data that is affected by a recalled <lb/>layout, the client has various options for writing the data to the <lb/>server. As always, the client may write the data through the <lb/>metadata server. In fact, the client may not have a choice other <lb/>than writing to the metadata server when the clora_changed argument <lb/>is TRUE and a new layout is unavailable from the server. However, <lb/>the client may be able to write the modified data to the storage <lb/>device if the clora_changed argument is FALSE; this needs to be done <lb/>before returning the layout via LAYOUTRETURN. If the client were to <lb/>obtain a new layout covering the modified data's byte-range, then <lb/>writing to the storage devices is an available alternative. Note <lb/>that before obtaining a new layout, the client must first return the <lb/>original layout. <lb/>In the case of modified data being written while the layout is held, <lb/>the client must use LAYOUTCOMMIT operations at the appropriate time; <lb/>as required LAYOUTCOMMIT must be done before the LAYOUTRETURN. If a <lb/>large amount of modified data is outstanding, the client may send <lb/>LAYOUTRETURNs for portions of the recalled layout; this allows the <lb/>server to monitor the client's progress and adherence to the original <lb/>recall request. However, the last LAYOUTRETURN in a sequence of <lb/>returns MUST specify the full range being recalled (see <lb/>Section 12.5.5.1 for details). <lb/>If a server needs to delete a device ID and there are layouts <lb/>referring to the device ID, CB_LAYOUTRECALL MUST be invoked to cause <lb/>the client to return all layouts referring to the device ID before <lb/>the server can delete the device ID. If the client does not return <lb/>the affected layouts, the server MAY revoke the layouts. <lb/></body> + + <listBibl>20.4. Operation 6: CB_NOTIFY -Notify Client of Directory Changes <lb/>20.4.1. ARGUMENT <lb/>/* <lb/>* Directory notification types. <lb/>*/ <lb/>enum notify_type4 { <lb/>NOTIFY4_CHANGE_CHILD_ATTRS = 0, <lb/>NOTIFY4_CHANGE_DIR_ATTRS = 1, <lb/>NOTIFY4_REMOVE_ENTRY = 2, <lb/>NOTIFY4_ADD_ENTRY = 3, <lb/>NOTIFY4_RENAME_ENTRY = 4, <lb/>NOTIFY4_CHANGE_COOKIE_VERIFIER = 5 <lb/>}; <lb/>/* Changed entry information. */ <lb/>struct notify_entry4 { <lb/></listBibl> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 608] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>component4 <lb/>ne_file; <lb/>fattr4 <lb/>ne_attrs; <lb/>}; <lb/>/* Previous entry information */ <lb/>struct prev_entry4 { <lb/>notify_entry4 <lb/>pe_prev_entry; <lb/>/* what READDIR returned for this entry */ <lb/>nfs_cookie4 <lb/>pe_prev_entry_cookie; <lb/>}; <lb/>struct notify_remove4 { <lb/>notify_entry4 <lb/>nrm_old_entry; <lb/>nfs_cookie4 <lb/>nrm_old_entry_cookie; <lb/>}; <lb/>struct notify_add4 { <lb/>/* <lb/>* Information on object <lb/>* possibly renamed over. <lb/>*/ <lb/>notify_remove4 <lb/>nad_old_entry<1>; <lb/>notify_entry4 <lb/>nad_new_entry; <lb/>/* what READDIR would have returned for this entry */ <lb/>nfs_cookie4 <lb/>nad_new_entry_cookie<1>; <lb/>prev_entry4 <lb/>nad_prev_entry<1>; <lb/>bool <lb/>nad_last_entry; <lb/>}; <lb/>struct notify_attr4 { <lb/>notify_entry4 <lb/>na_changed_entry; <lb/>}; <lb/>struct notify_rename4 { <lb/>notify_remove4 nrn_old_entry; <lb/>notify_add4 <lb/>nrn_new_entry; <lb/>}; <lb/>struct notify_verifier4 { <lb/>verifier4 <lb/>nv_old_cookieverf; <lb/>verifier4 <lb/>nv_new_cookieverf; <lb/>}; <lb/>/* <lb/>* Objects of type notify_<>4 and <lb/>* notify_device_<>4 are encoded in this. <lb/>*/ <lb/>typedef opaque notifylist4<>; <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 609] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>struct notify4 { <lb/>/* composed from notify_type4 or notify_deviceid_type4 */ <lb/>bitmap4 <lb/>notify_mask; <lb/>notifylist4 <lb/>notify_vals; <lb/>}; <lb/>struct CB_NOTIFY4args { <lb/>stateid4 <lb/>cna_stateid; <lb/>nfs_fh4 <lb/>cna_fh; <lb/>notify4 <lb/>cna_changes<>; <lb/>}; <lb/>20.4.2. RESULT <lb/>struct CB_NOTIFY4res { <lb/>nfsstat4 <lb/>cnr_status; <lb/>}; <lb/>20.4.3. DESCRIPTION <lb/>The CB_NOTIFY operation is used by the server to send notifications <lb/>to clients about changes to delegated directories. The registration <lb/>of notifications for the directories occurs when the delegation is <lb/>established using GET_DIR_DELEGATION. These notifications are sent <lb/>over the backchannel. The notification is sent once the original <lb/>request has been processed on the server. The server will send an <lb/>array of notifications for changes that might have occurred in the <lb/>directory. The notifications are sent as list of pairs of bitmaps <lb/>and values. See Section 3.3.7 for a description of how NFSv4.1 <lb/>bitmaps work. <lb/>If the server has more notifications than can fit in the CB_COMPOUND <lb/>request, it SHOULD send a sequence of serial CB_COMPOUND requests so <lb/>that the client's view of the directory does not become confused. <lb/>For example, if the server indicates that a file named "foo" is added <lb/>and that the file "foo" is removed, the order in which the client <lb/>receives these notifications needs to be the same as the order in <lb/>which the corresponding operations occurred on the server. <lb/>If the client holding the delegation makes any changes in the <lb/>directory that cause files or sub-directories to be added or removed, <lb/>the server will notify that client of the resulting change(s). If <lb/>the client holding the delegation is making attribute or cookie <lb/>verifier changes only, the server does not need to send notifications <lb/>to that client. The server will send the following information for <lb/>each operation: <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 610] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>NOTIFY4_ADD_ENTRY <lb/>The server will send information about the new directory entry <lb/>being created along with the cookie for that entry. The entry <lb/>information (data type notify_add4) includes the component name of <lb/>the entry and attributes. The server will send this type of entry <lb/>when a file is actually being created, when an entry is being <lb/>added to a directory as a result of a rename across directories <lb/>(see below), and when a hard link is being created to an existing <lb/>file. If this entry is added to the end of the directory, the <lb/>server will set the nad_last_entry flag to TRUE. If the file is <lb/>added such that there is at least one entry before it, the server <lb/>will also return the previous entry information (nad_prev_entry, a <lb/>variable-length array of up to one element. If the array is of <lb/>zero length, there is no previous entry), along with its cookie. <lb/>This is to help clients find the right location in their file name <lb/>caches and directory caches where this entry should be cached. If <lb/>the new entry's cookie is available, it will be in the <lb/>nad_new_entry_cookie (another variable-length array of up to one <lb/>element) field. If the addition of the entry causes another entry <lb/>to be deleted (which can only happen in the rename case) <lb/>atomically with the addition, then information on this entry is <lb/>reported in nad_old_entry. <lb/>NOTIFY4_REMOVE_ENTRY <lb/>The server will send information about the directory entry being <lb/>deleted. The server will also send the cookie value for the <lb/>deleted entry so that clients can get to the cached information <lb/>for this entry. <lb/>NOTIFY4_RENAME_ENTRY <lb/>The server will send information about both the old entry and the <lb/>new entry. This includes the name and attributes for each entry. <lb/>In addition, if the rename causes the deletion of an entry (i.e., <lb/>the case of a file renamed over), then this is reported in <lb/>nrn_new_new_entry.nad_old_entry. This notification is only sent <lb/>if both entries are in the same directory. If the rename is <lb/>across directories, the server will send a remove notification to <lb/>one directory and an add notification to the other directory, <lb/>assuming both have a directory delegation. <lb/>NOTIFY4_CHANGE_CHILD_ATTRS/NOTIFY4_CHANGE_DIR_ATTRS <lb/>The client will use the attribute mask to inform the server of <lb/>attributes for which it wants to receive notifications. This <lb/>change notification can be requested for changes to the attributes <lb/>of the directory as well as changes to any file's attributes in <lb/>the directory by using two separate attribute masks. The client <lb/>cannot ask for change attribute notification for a specific file. <lb/>One attribute mask covers all the files in the directory. Upon <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 611] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>any attribute change, the server will send back the values of <lb/>changed attributes. Notifications might not make sense for some <lb/>file system-wide attributes, and it is up to the server to decide <lb/>which subset it wants to support. The client can negotiate the <lb/>frequency of attribute notifications by letting the server know <lb/>how often it wants to be notified of an attribute change. The <lb/>server will return supported notification frequencies or an <lb/>indication that no notification is permitted for directory or <lb/>child attributes by setting the dir_notif_delay and <lb/>dir_entry_notif_delay attributes, respectively. <lb/>NOTIFY4_CHANGE_COOKIE_VERIFIER <lb/>If the cookie verifier changes while a client is holding a <lb/>delegation, the server will notify the client so that it can <lb/>invalidate its cookies and re-send a READDIR to get the new set of <lb/>cookies. <lb/>20.5. Operation 7: CB_PUSH_DELEG -Offer Previously Requested <lb/>Delegation to Client <lb/>20.5.1. ARGUMENT <lb/>struct CB_PUSH_DELEG4args { <lb/>nfs_fh4 <lb/>cpda_fh; <lb/>open_delegation4 cpda_delegation; <lb/>}; <lb/>20.5.2. RESULT <lb/>struct CB_PUSH_DELEG4res { <lb/>nfsstat4 cpdr_status; <lb/>}; <lb/>20.5.3. DESCRIPTION <lb/>CB_PUSH_DELEG is used by the server both to signal to the client that <lb/>the delegation it wants (previously indicated via a want established <lb/>from an OPEN or WANT_DELEGATION operation) is available and to <lb/>simultaneously offer the delegation to the client. The client has <lb/>the choice of accepting the delegation by returning NFS4_OK to the <lb/>server, delaying the decision to accept the offered delegation by <lb/>returning NFS4ERR_DELAY, or permanently rejecting the offer of the <lb/>delegation by returning NFS4ERR_REJECT_DELEG. When a delegation is <lb/>rejected in this fashion, the want previously established is <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 612] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>permanently deleted and the delegation is subject to acquisition by <lb/>another client. <lb/>20.5.4. IMPLEMENTATION <lb/>If the client does return NFS4ERR_DELAY and there is a conflicting <lb/>delegation request, the server MAY process it at the expense of the <lb/>client that returned NFS4ERR_DELAY. The client's want will not be <lb/>cancelled, but MAY be processed behind other delegation requests or <lb/>registered wants. <lb/>When a client returns a status other than NFS4_OK, NFS4ERR_DELAY, or <lb/>NFS4ERR_REJECT_DELAY, the want remains pending, although servers may <lb/>decide to cancel the want by sending a CB_WANTS_CANCELLED. <lb/>20.6. Operation 8: CB_RECALL_ANY -Keep Any N Recallable Objects <lb/>20.6.1. ARGUMENT <lb/>const RCA4_TYPE_MASK_RDATA_DLG <lb/>= 0; <lb/>const RCA4_TYPE_MASK_WDATA_DLG <lb/>= 1; <lb/>const RCA4_TYPE_MASK_DIR_DLG <lb/>= 2; <lb/>const RCA4_TYPE_MASK_FILE_LAYOUT <lb/>= 3; <lb/>const RCA4_TYPE_MASK_BLK_LAYOUT <lb/>= 4; <lb/>const RCA4_TYPE_MASK_OBJ_LAYOUT_MIN <lb/>= 8; <lb/>const RCA4_TYPE_MASK_OBJ_LAYOUT_MAX <lb/>= 9; <lb/>const RCA4_TYPE_MASK_OTHER_LAYOUT_MIN <lb/>= 12; <lb/>const RCA4_TYPE_MASK_OTHER_LAYOUT_MAX <lb/>= 15; <lb/>struct CB_RECALL_ANY4args <lb/>{ <lb/>uint32_t <lb/>craa_objects_to_keep; <lb/>bitmap4 <lb/>craa_type_mask; <lb/>}; <lb/>20.6.2. RESULT <lb/>struct CB_RECALL_ANY4res { <lb/>nfsstat4 <lb/>crar_status; <lb/>}; <lb/>20.6.3. DESCRIPTION <lb/>The server may decide that it cannot hold all of the state for <lb/>recallable objects, such as delegations and layouts, without running <lb/>out of resources. In such a case, while not optimal, the server is <lb/>free to recall individual objects to reduce the load. <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 613] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>Because the general purpose of such recallable objects as delegations <lb/>is to eliminate client interaction with the server, the server cannot <lb/>interpret lack of recent use as indicating that the object is no <lb/>longer useful. The absence of visible use is consistent with a <lb/>delegation keeping potential operations from being sent to the <lb/>server. In the case of layouts, while it is true that the usefulness <lb/>of a layout is indicated by the use of the layout when storage <lb/>devices receive I/O requests, because there is no mandate that a <lb/>storage device indicate to the metadata server any past or present <lb/>use of a layout, the metadata server is not likely to know which <lb/>layouts are good candidates to recall in response to low resources. <lb/>In order to implement an effective reclaim scheme for such objects, <lb/>the server's knowledge of available resources must be used to <lb/>determine when objects must be recalled with the clients selecting <lb/>the actual objects to be returned. <lb/>Server implementations may differ in their resource allocation <lb/>requirements. For example, one server may share resources among all <lb/>classes of recallable objects, whereas another may use separate <lb/>resource pools for layouts and for delegations, or further separate <lb/>resources by types of delegations. <lb/>When a given resource pool is over-utilized, the server can send a <lb/>CB_RECALL_ANY to clients holding recallable objects of the types <lb/>involved, allowing it to keep a certain number of such objects and <lb/>return any excess. A mask specifies which types of objects are to be <lb/>limited. The client chooses, based on its own knowledge of current <lb/>usefulness, which of the objects in that class should be returned. <lb/>A number of bits are defined. For some of these, ranges are defined <lb/>and it is up to the definition of the storage protocol to specify how <lb/>these are to be used. There are ranges reserved for object-based <lb/>storage protocols and for other experimental storage protocols. An <lb/>RFC defining such a storage protocol needs to specify how particular <lb/>bits within its range are to be used. For example, it may specify a <lb/>mapping between attributes of the layout (read vs. write, size of <lb/>area) and the bit to be used, or it may define a field in the layout <lb/>where the associated bit position is made available by the server to <lb/>the client. <lb/>RCA4_TYPE_MASK_RDATA_DLG <lb/>The client is to return OPEN_DELEGATE_READ delegations on non-<lb/>directory file objects. <lb/>RCA4_TYPE_MASK_WDATA_DLG <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 614] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>The client is to return OPEN_DELEGATE_WRITE delegations on regular <lb/>file objects. <lb/>RCA4_TYPE_MASK_DIR_DLG <lb/>The client is to return directory delegations. <lb/>RCA4_TYPE_MASK_FILE_LAYOUT <lb/>The client is to return layouts of type LAYOUT4_NFSV4_1_FILES. <lb/>RCA4_TYPE_MASK_BLK_LAYOUT <lb/>See [44] for a description. <lb/>RCA4_TYPE_MASK_OBJ_LAYOUT_MIN to RCA4_TYPE_MASK_OBJ_LAYOUT_MAX <lb/>See [43] for a description. <lb/>RCA4_TYPE_MASK_OTHER_LAYOUT_MIN to RCA4_TYPE_MASK_OTHER_LAYOUT_MAX <lb/>This range is reserved for telling the client to recall layouts of <lb/>experimental or site-specific layout types (see Section 3.3.13). <lb/>When a bit is set in the type mask that corresponds to an undefined <lb/>type of recallable object, NFS4ERR_INVAL MUST be returned. When a <lb/>bit is set that corresponds to a defined type of object but the <lb/>client does not support an object of the type, NFS4ERR_INVAL MUST NOT <lb/>be returned. Future minor versions of NFSv4 may expand the set of <lb/>valid type mask bits. <lb/>CB_RECALL_ANY specifies a count of objects that the client may keep <lb/>as opposed to a count that the client must return. This is to avoid <lb/>a potential race between a CB_RECALL_ANY that had a count of objects <lb/>to free with a set of client-originated operations to return layouts <lb/>or delegations. As a result of the race, the client and server would <lb/>have differing ideas as to how many objects to return. Hence, the <lb/>client could mistakenly free too many. <lb/>If resource demands prompt it, the server may send another <lb/>CB_RECALL_ANY with a lower count, even if it has not yet received an <lb/>acknowledgment from the client for a previous CB_RECALL_ANY with the <lb/>same type mask. Although the possibility exists that these will be <lb/>received by the client in an order different from the order in which <lb/>they were sent, any such permutation of the callback stream is <lb/>harmless. It is the job of the client to bring down the size of the <lb/>recallable object set in line with each CB_RECALL_ANY received, and <lb/>until that obligation is met, it cannot be cancelled or modified by <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 615] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>any subsequent CB_RECALL_ANY for the same type mask. Thus, if the <lb/>server sends two CB_RECALL_ANYs, the effect will be the same as if <lb/>the lower count was sent, whatever the order of recall receipt. Note <lb/>that this means that a server may not cancel the effect of a <lb/>CB_RECALL_ANY by sending another recall with a higher count. When a <lb/>CB_RECALL_ANY is received and the count is already within the limit <lb/>set or is above a limit that the client is working to get down to, <lb/>that callback has no effect. <lb/>Servers are generally free to deny recallable objects when <lb/>insufficient resources are available. Note that the effect of such a <lb/>policy is implicitly to give precedence to existing objects relative <lb/>to requested ones, with the result that resources might not be <lb/>optimally used. To prevent this, servers are well advised to make <lb/>the point at which they start sending CB_RECALL_ANY callbacks <lb/>somewhat below that at which they cease to give out new delegations <lb/>and layouts. This allows the client to purge its less-used objects <lb/>whenever appropriate and so continue to have its subsequent requests <lb/>given new resources freed up by object returns. <lb/>20.6.4. IMPLEMENTATION <lb/>The client can choose to return any type of object specified by the <lb/>mask. If a server wishes to limit the use of objects of a specific <lb/>type, it should only specify that type in the mask it sends. Should <lb/>the client fail to return requested objects, it is up to the server <lb/>to handle this situation, typically by sending specific recalls <lb/>(i.e., sending CB_RECALL operations) to properly limit resource <lb/>usage. The server should give the client enough time to return <lb/>objects before proceeding to specific recalls. This time should not <lb/>be less than the lease period. <lb/>20.7. Operation 9: CB_RECALLABLE_OBJ_AVAIL -Signal Resources for <lb/>Recallable Objects <lb/>20.7.1. ARGUMENT <lb/>typedef CB_RECALL_ANY4args CB_RECALLABLE_OBJ_AVAIL4args; <lb/>20.7.2. RESULT <lb/>struct CB_RECALLABLE_OBJ_AVAIL4res { <lb/>nfsstat4 <lb/>croa_status; <lb/>}; <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 616] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>20.7.3. DESCRIPTION <lb/>CB_RECALLABLE_OBJ_AVAIL is used by the server to signal the client <lb/>that the server has resources to grant recallable objects that might <lb/>previously have been denied by OPEN, WANT_DELEGATION, GET_DIR_DELEG, <lb/>or LAYOUTGET. <lb/>The argument craa_objects_to_keep means the total number of <lb/>recallable objects of the types indicated in the argument type_mask <lb/>that the server believes it can allow the client to have, including <lb/>the number of such objects the client already has. A client that <lb/>tries to acquire more recallable objects than the server informs it <lb/>can have runs the risk of having objects recalled. <lb/>The server is not obligated to reserve the difference between the <lb/>number of the objects the client currently has and the value of <lb/>craa_objects_to_keep, nor does delaying the reply to <lb/>CB_RECALLABLE_OBJ_AVAIL prevent the server from using the resources <lb/>of the recallable objects for another purpose. Indeed, if a client <lb/>responds slowly to CB_RECALLABLE_OBJ_AVAIL, the server might <lb/>interpret the client as having reduced capability to manage <lb/>recallable objects, and so cancel or reduce any reservation it is <lb/>maintaining on behalf of the client. Thus, if the client desires to <lb/>acquire more recallable objects, it needs to reply quickly to <lb/>CB_RECALLABLE_OBJ_AVAIL, and then send the appropriate operations to <lb/>acquire recallable objects. <lb/>20.8. Operation 10: CB_RECALL_SLOT -Change Flow Control Limits <lb/>20.8.1. ARGUMENT <lb/>struct CB_RECALL_SLOT4args { <lb/>slotid4 <lb/>rsa_target_highest_slotid; <lb/>}; <lb/>20.8.2. RESULT <lb/>struct CB_RECALL_SLOT4res { <lb/>nfsstat4 <lb/>rsr_status; <lb/>}; <lb/>20.8.3. DESCRIPTION <lb/>The CB_RECALL_SLOT operation requests the client to return session <lb/>slots, and if applicable, transport credits (e.g., RDMA credits for <lb/>connections associated with the operations channel) of the session's <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 617] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>fore channel. CB_RECALL_SLOT specifies rsa_target_highest_slotid, <lb/>the value of the target highest slot ID the server wants for the <lb/>session. The client MUST then progress toward reducing the session's <lb/>highest slot ID to the target value. <lb/>If the session has only non-RDMA connections associated with its <lb/>operations channel, then the client need only wait for all <lb/>outstanding requests with a slot ID > rsa_target_highest_slotid to <lb/>complete, then send a single COMPOUND consisting of a single SEQUENCE <lb/>operation, with the sa_highestslot field set to <lb/>rsa_target_highest_slotid. If there are RDMA-based connections <lb/>associated with operation channel, then the client needs to also send <lb/>enough zero-length "RDMA Send" messages to take the total RDMA credit <lb/>count to rsa_target_highest_slotid + 1 or below. <lb/>20.8.4. IMPLEMENTATION <lb/>If the client fails to reduce highest slot it has on the fore channel <lb/>to what the server requests, the server can force the issue by <lb/>asserting flow control on the receive side of all connections bound <lb/>to the fore channel, and then finish servicing all outstanding <lb/>requests that are in slots greater than rsa_target_highest_slotid. <lb/>Once that is done, the server can then open the flow control, and any <lb/>time the client sends a new request on a slot greater than <lb/>rsa_target_highest_slotid, the server can return NFS4ERR_BADSLOT. <lb/>20.9. Operation 11: CB_SEQUENCE -Supply Backchannel Sequencing and <lb/>Control <lb/>20.9.1. ARGUMENT <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 618] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>struct referring_call4 { <lb/>sequenceid4 <lb/>rc_sequenceid; <lb/>slotid4 <lb/>rc_slotid; <lb/>}; <lb/>struct referring_call_list4 { <lb/>sessionid4 <lb/>rcl_sessionid; <lb/>referring_call4 rcl_referring_calls<>; <lb/>}; <lb/>struct CB_SEQUENCE4args { <lb/>sessionid4 <lb/>csa_sessionid; <lb/>sequenceid4 <lb/>csa_sequenceid; <lb/>slotid4 <lb/>csa_slotid; <lb/>slotid4 <lb/>csa_highest_slotid; <lb/>bool <lb/>csa_cachethis; <lb/>referring_call_list4 csa_referring_call_lists<>; <lb/>}; <lb/>20.9.2. RESULT <lb/>struct CB_SEQUENCE4resok { <lb/>sessionid4 <lb/>csr_sessionid; <lb/>sequenceid4 <lb/>csr_sequenceid; <lb/>slotid4 <lb/>csr_slotid; <lb/>slotid4 <lb/>csr_highest_slotid; <lb/>slotid4 <lb/>csr_target_highest_slotid; <lb/>}; <lb/>union CB_SEQUENCE4res switch (nfsstat4 csr_status) { <lb/>case NFS4_OK: <lb/>CB_SEQUENCE4resok <lb/>csr_resok4; <lb/>default: <lb/>void; <lb/>}; <lb/>20.9.3. DESCRIPTION <lb/>The CB_SEQUENCE operation is used to manage operational accounting <lb/>for the backchannel of the session on which a request is sent. The <lb/>contents include the session ID to which this request belongs, the <lb/>slot ID and sequence ID used by the server to implement session <lb/>request control and exactly once semantics, and exchanged slot ID <lb/>maxima that are used to adjust the size of the reply cache. In each <lb/>CB_COMPOUND request, CB_SEQUENCE MUST appear once and MUST be the <lb/>first operation. The error NFS4ERR_SEQUENCE_POS MUST be returned <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 619] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>when CB_SEQUENCE is found in any position in a CB_COMPOUND beyond the <lb/>first. If any other operation is in the first position of <lb/>CB_COMPOUND, NFS4ERR_OP_NOT_IN_SESSION MUST be returned. <lb/>See Section 18.46.3 for a description of how slots are processed. <lb/>If csa_cachethis is TRUE, then the server is requesting that the <lb/>client cache the reply in the callback reply cache. The client MUST <lb/>cache the reply (see Section 2.10.6.1.3). <lb/>The csa_referring_call_lists array is the list of COMPOUND requests, <lb/>identified by session ID, slot ID, and sequence ID. These are <lb/>requests that the client previously sent to the server. These <lb/>previous requests created state that some operation(s) in the same <lb/>CB_COMPOUND as the csa_referring_call_lists are identifying. A <lb/>session ID is included because leased state is tied to a client ID, <lb/>and a client ID can have multiple sessions. See Section 2.10.6.3. <lb/>The value of the csa_sequenceid argument relative to the cached <lb/>sequence ID on the slot falls into one of three cases. <lb/>o If the difference between csa_sequenceid and the client's cached <lb/>sequence ID at the slot ID is two (2) or more, or if <lb/>csa_sequenceid is less than the cached sequence ID (accounting for <lb/>wraparound of the unsigned sequence ID value), then the client <lb/>MUST return NFS4ERR_SEQ_MISORDERED. <lb/>o If csa_sequenceid and the cached sequence ID are the same, this is <lb/>a retry, and the client returns the CB_COMPOUND request's cached <lb/>reply. <lb/>o If csa_sequenceid is one greater (accounting for wraparound) than <lb/>the cached sequence ID, then this is a new request, and the slot's <lb/>sequence ID is incremented. The operations subsequent to <lb/>CB_SEQUENCE, if any, are processed. If there are no other <lb/>operations, the only other effects are to cache the CB_SEQUENCE <lb/>reply in the slot, maintain the session's activity, and when the <lb/>server receives the CB_SEQUENCE reply, renew the lease of state <lb/>related to the client ID. <lb/>If the server reuses a slot ID and sequence ID for a completely <lb/>different request, the client MAY treat the request as if it is a <lb/>retry of what it has already executed. The client MAY however detect <lb/>the server's illegal reuse and return NFS4ERR_SEQ_FALSE_RETRY. <lb/>If CB_SEQUENCE returns an error, then the state of the slot (sequence <lb/>ID, cached reply) MUST NOT change. See Section 2.10.6.1.3 for the <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 620] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>conditions when the error NFS4ERR_RETRY_UNCACHED_REP might be <lb/>returned. <lb/>The client returns two "highest_slotid" values: csr_highest_slotid <lb/>and csr_target_highest_slotid. The former is the highest slot ID the <lb/>client will accept in a future CB_SEQUENCE operation, and SHOULD NOT <lb/>be less than the value of csa_highest_slotid (but see <lb/>Section 2.10.6.1 for an exception). The latter is the highest slot <lb/>ID the client would prefer the server use on a future CB_SEQUENCE <lb/>operation. <lb/>20.10. Operation 12: CB_WANTS_CANCELLED -Cancel Pending Delegation <lb/>Wants <lb/>20.10.1. ARGUMENT <lb/>struct CB_WANTS_CANCELLED4args { <lb/>bool cwca_contended_wants_cancelled; <lb/>bool cwca_resourced_wants_cancelled; <lb/>}; <lb/>20.10.2. RESULT <lb/>struct CB_WANTS_CANCELLED4res { <lb/>nfsstat4 <lb/>cwcr_status; <lb/>}; <lb/>20.10.3. DESCRIPTION <lb/>The CB_WANTS_CANCELLED operation is used to notify the client that <lb/>some or all of the wants it registered for recallable delegations and <lb/>layouts have been cancelled. <lb/>If cwca_contended_wants_cancelled is TRUE, this indicates that the <lb/>server will not be pushing to the client any delegations that become <lb/>available after contention passes. <lb/>If cwca_resourced_wants_cancelled is TRUE, this indicates that the <lb/>server will not notify the client when there are resources on the <lb/>server to grant delegations or layouts. <lb/>After receiving a CB_WANTS_CANCELLED operation, the client is free to <lb/>attempt to acquire the delegations or layouts it was waiting for, and <lb/>possibly re-register wants. <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 621] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>20.10.4. IMPLEMENTATION <lb/>When a client has an OPEN, WANT_DELEGATION, or GET_DIR_DELEGATION <lb/>request outstanding, when a CB_WANTS_CANCELLED is sent, the server <lb/>may need to make clear to the client whether a promise to signal <lb/>delegation availability happened before the CB_WANTS_CANCELLED and is <lb/>thus covered by it, or after the CB_WANTS_CANCELLED in which case it <lb/>was not covered by it. The server can make this distinction by <lb/>putting the appropriate requests into the list of referring calls in <lb/>the associated CB_SEQUENCE. <lb/>20.11. Operation 13: CB_NOTIFY_LOCK -Notify Client of Possible Lock <lb/>Availability <lb/>20.11.1. ARGUMENT <lb/>struct CB_NOTIFY_LOCK4args { <lb/>nfs_fh4 <lb/>cnla_fh; <lb/>lock_owner4 cnla_lock_owner; <lb/>}; <lb/>20.11.2. RESULT <lb/>struct CB_NOTIFY_LOCK4res { <lb/>nfsstat4 <lb/>cnlr_status; <lb/>}; <lb/>20.11.3. DESCRIPTION <lb/>The server can use this operation to indicate that a byte-range lock <lb/>for the given file and lock-owner, previously requested by the client <lb/>via an unsuccessful LOCK operation, might be available. <lb/>This callback is meant to be used by servers to help reduce the <lb/>latency of blocking locks in the case where they recognize that a <lb/>client that has been polling for a blocking byte-range lock may now <lb/>be able to acquire the lock. If the server supports this callback <lb/>for a given file, it MUST set the OPEN4_RESULT_MAY_NOTIFY_LOCK flag <lb/>when responding to successful opens for that file. This does not <lb/>commit the server to the use of CB_NOTIFY_LOCK, but the client may <lb/>use this as a hint to decide how frequently to poll for locks derived <lb/>from that open. <lb/>If an OPEN operation results in an upgrade, in which the stateid <lb/>returned has an "other" value matching that of a stateid already <lb/>allocated, with a new "seqid" indicating a change in the lock being <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 622] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>represented, then the value of the OPEN4_RESULT_MAY_NOTIFY_LOCK flag <lb/>when responding to that new OPEN controls handling from that point <lb/>going forward. When parallel OPENs are done on the same file and <lb/>open-owner, the ordering of the "seqid" fields of the returned <lb/>stateids (subject to wraparound) are to be used to select the <lb/>controlling value of the OPEN4_RESULT_MAY_NOTIFY_LOCK flag. <lb/>20.11.4. IMPLEMENTATION <lb/>The server MUST NOT grant the byte-range lock to the client unless <lb/>and until it receives a LOCK operation from the client. Similarly, <lb/>the client receiving this callback cannot assume that it now has the <lb/>lock or that a subsequent LOCK operation for the lock will be <lb/>successful. <lb/>The server is not required to implement this callback, and even if it <lb/>does, it is not required to use it in any particular case. <lb/>Therefore, the client must still rely on polling for blocking locks, <lb/>as described in Section 9.6. <lb/>Similarly, the client is not required to implement this callback, and <lb/>even it does, is still free to ignore it. Therefore, the server MUST <lb/>NOT assume that the client will act based on the callback. <lb/>20.12. Operation 14: CB_NOTIFY_DEVICEID -Notify Client of Device ID <lb/>Changes <lb/>20.12.1. ARGUMENT <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 623] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>/* <lb/>* Device notification types. <lb/>*/ <lb/>enum notify_deviceid_type4 { <lb/>NOTIFY_DEVICEID4_CHANGE = 1, <lb/>NOTIFY_DEVICEID4_DELETE = 2 <lb/>}; <lb/>/* For NOTIFY4_DEVICEID4_DELETE */ <lb/>struct notify_deviceid_delete4 { <lb/>layouttype4 <lb/>ndd_layouttype; <lb/>deviceid4 <lb/>ndd_deviceid; <lb/>}; <lb/>/* For NOTIFY4_DEVICEID4_CHANGE */ <lb/>struct notify_deviceid_change4 { <lb/>layouttype4 <lb/>ndc_layouttype; <lb/>deviceid4 <lb/>ndc_deviceid; <lb/>bool <lb/>ndc_immediate; <lb/>}; <lb/>struct CB_NOTIFY_DEVICEID4args { <lb/>notify4 cnda_changes<>; <lb/>}; <lb/>20.12.2. RESULT <lb/>struct CB_NOTIFY_DEVICEID4res { <lb/>nfsstat4 <lb/>cndr_status; <lb/>}; <lb/>20.12.3. DESCRIPTION <lb/>The CB_NOTIFY_DEVICEID operation is used by the server to send <lb/>notifications to clients about changes to pNFS device IDs. The <lb/>registration of device ID notifications is optional and is done via <lb/>GETDEVICEINFO. These notifications are sent over the backchannel <lb/>once the original request has been processed on the server. The <lb/>server will send an array of notifications, cnda_changes, as a list <lb/>of pairs of bitmaps and values. See Section 3.3.7 for a description <lb/>of how NFSv4.1 bitmaps work. <lb/>As with CB_NOTIFY (Section 20.4.3), it is possible the server has <lb/>more notifications than can fit in a CB_COMPOUND, thus requiring <lb/>multiple CB_COMPOUNDs. Unlike CB_NOTIFY, serialization is not an <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 624] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>issue because unlike directory entries, device IDs cannot be re-used <lb/>after being deleted (Section 12.2.10). <lb/>All device ID notifications contain a device ID and a layout type. <lb/>The layout type is necessary because two different layout types can <lb/>share the same device ID, and the common device ID can have <lb/>completely different mappings for each layout type. <lb/>The server will send the following notifications: <lb/>NOTIFY_DEVICEID4_CHANGE <lb/>A previously provided device-ID-to-device-address mapping has <lb/>changed and the client uses GETDEVICEINFO to obtain the updated <lb/>mapping. The notification is encoded in a value of data type <lb/>notify_deviceid_change4. This data type also contains a boolean <lb/>field, ndc_immediate, which if TRUE indicates that the change will <lb/>be enforced immediately, and so the client might not be able to <lb/>complete any pending I/O to the device ID. If ndc_immediate is <lb/>FALSE, then for an indefinite time, the client can complete <lb/>pending I/O. After pending I/O is complete, the client SHOULD get <lb/>the new device-ID-to-device-address mappings before sending new I/ <lb/>O requests to the storage devices addressed by the device ID. <lb/>NOTIFY4_DEVICEID_DELETE <lb/>Deletes a device ID from the mappings. This notification MUST NOT <lb/>be sent if the client has a layout that refers to the device ID. <lb/>In other words, if the server is sending a delete device ID <lb/>notification, one of the following is true for layouts associated <lb/>with the layout type: <lb/>* The client never had a layout referring to that device ID. <lb/>* The client has returned all layouts referring to that device <lb/>ID. <lb/>* The server has revoked all layouts referring to that device ID. <lb/>The notification is encoded in a value of data type <lb/>notify_deviceid_delete4. After a server deletes a device ID, it <lb/>MUST NOT reuse that device ID for the same layout type until the <lb/>client ID is deleted. <lb/>20.13. Operation 10044: CB_ILLEGAL -Illegal Callback Operation <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 625] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>20.13.1. ARGUMENT <lb/>void; <lb/>20.13.2. RESULT <lb/>/* <lb/>* CB_ILLEGAL: Response for illegal operation numbers <lb/>*/ <lb/>struct CB_ILLEGAL4res { <lb/>nfsstat4 <lb/>status; <lb/>}; <lb/>20.13.3. DESCRIPTION <lb/>This operation is a placeholder for encoding a result to handle the <lb/>case of the server sending an operation code within CB_COMPOUND that <lb/>is not defined in the NFSv4.1 specification. See Section 19.2.3 for <lb/>more details. <lb/>The status field of CB_ILLEGAL4res MUST be set to NFS4ERR_OP_ILLEGAL. <lb/>20.13.4. IMPLEMENTATION <lb/>A server will probably not send an operation with code OP_CB_ILLEGAL, <lb/>but if it does, the response will be CB_ILLEGAL4res just as it would <lb/>be with any other invalid operation code. Note that if the client <lb/>gets an illegal operation code that is not OP_ILLEGAL, and if the <lb/>client checks for legal operation codes during the XDR decode phase, <lb/>then an instance of data type CB_ILLEGAL4res will not be returned. <lb/>21. Security Considerations <lb/>Historically, the authentication model of NFS was based on the entire <lb/>machine being the NFS client, with the NFS server trusting the NFS <lb/>client to authenticate the end-user. The NFS server in turn shared <lb/>its files only to specific clients, as identified by the client's <lb/>source network address. Given this model, the AUTH_SYS RPC security <lb/>flavor simply identified the end-user using the client to the NFS <lb/>server. When processing NFS responses, the client ensured that the <lb/>responses came from the same network address and port number to which <lb/>the request was sent. While such a model is easy to implement and <lb/>simple to deploy and use, it is unsafe. Thus, NFSv4.1 <lb/>implementations are REQUIRED to support a security model that uses <lb/>end-to-end authentication, where an end-user on a client mutually <lb/>authenticates (via cryptographic schemes that do not expose passwords <lb/>or keys in the clear on the network) to a principal on an NFS server. <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 626] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>Consideration is also given to the integrity and privacy of NFS <lb/>requests and responses. The issues of end-to-end mutual <lb/>authentication, integrity, and privacy are discussed in <lb/>Section 2.2.1.1.1. There are specific considerations when using <lb/>Kerberos V5 as described in Section 2.2.1.1.1.2.1.1. <lb/>Note that being REQUIRED to implement does not mean REQUIRED to use; <lb/>AUTH_SYS can be used by NFSv4.1 clients and servers. However, <lb/>AUTH_SYS is merely an OPTIONAL security flavor in NFSv4.1, and so <lb/>interoperability via AUTH_SYS is not assured. <lb/>For reasons of reduced administration overhead, better performance, <lb/>and/or reduction of CPU utilization, users of NFSv4.1 implementations <lb/>might decline to use security mechanisms that enable integrity <lb/>protection on each remote procedure call and response. The use of <lb/>mechanisms without integrity leaves the user vulnerable to a man-in-<lb/>the-middle of the NFS client and server that modifies the RPC request <lb/>and/or the response. While implementations are free to provide the <lb/>option to use weaker security mechanisms, there are three operations <lb/>in particular that warrant the implementation overriding user <lb/>choices. <lb/>o The first two such operations are SECINFO and SECINFO_NO_NAME. It <lb/>is RECOMMENDED that the client send both operations such that they <lb/>are protected with a security flavor that has integrity <lb/>protection, such as RPCSEC_GSS with either the <lb/>rpc_gss_svc_integrity or rpc_gss_svc_privacy service. Without <lb/>integrity protection encapsulating SECINFO and SECINFO_NO_NAME and <lb/>their results, a man-in-the-middle could modify results such that <lb/>the client might select a weaker algorithm in the set allowed by <lb/>the server, making the client and/or server vulnerable to further <lb/>attacks. <lb/>o The third operation that SHOULD use integrity protection is any <lb/>GETATTR for the fs_locations and fs_locations_info attributes, in <lb/>order to mitigate the severity of a man-in-the-middle attack. The <lb/>attack has two steps. First the attacker modifies the unprotected <lb/>results of some operation to return NFS4ERR_MOVED. Second, when <lb/>the client follows up with a GETATTR for the fs_locations or <lb/>fs_locations_info attributes, the attacker modifies the results to <lb/>cause the client to migrate its traffic to a server controlled by <lb/>the attacker. With integrity protection, this attack is <lb/>mitigated. <lb/>Relative to previous NFS versions, NFSv4.1 has additional security <lb/>considerations for pNFS (see Sections 12.9 and 13.12), locking and <lb/>session state (see Section 2.10.8.3), and state recovery during grace <lb/>period (see Section 8.4.2.1.1). With respect to locking and session <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 627] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>state, if SP4_SSV state protection is being used, Section 2.10.10 has <lb/>specific security considerations for the NFSv4.1 client and server. <lb/>The use of the multi-server bamespace features described in <lb/>Section 11 raises the possibility that requests to determine the set <lb/>of network addresses corresponding to a given server might be <lb/>interfered with or have their responses modified in flight. In light <lb/>of this possibility, the following considerations should be taken <lb/>note of: <lb/>o When DNS is used to convert server names to addresses and DNSSEC <lb/>[29] is not available, the validity of the network addresses <lb/>returned cannot be relied upon. However, when the client uses <lb/>RPCSEC_GSS to access the designated server, it is possible for <lb/>mutual authentication to discover invalid server addresses <lb/>provided, as long as the RPCSEC_GSS implementation used does not <lb/>use insecure DNS queries to canonicalize the hostname components <lb/>of the service principal names, as explained in [28]. <lb/>o The fetching of attributes containing file system location <lb/>information SHOULD be performed using RPCSEC_GSS with integrity <lb/>protection. It is important to note here that a client making a <lb/>request of this sort without using RPCSEC_GSS including integrity <lb/>protection needs be aware of the negative consequences of doing <lb/>so, which can lead to invalid host names or network addresses <lb/>being returned. These include cases in which the client is <lb/>directed a server under the control of an attacker, who might get <lb/>access to data written or provide incorrect values for data read. <lb/>In light of this, the client needs to recognize that using such <lb/>returned location information to access an NFSv4 server without <lb/>use of RPCSEC_GSS (i.e. by using AUTH_SYS) poses dangers as it <lb/>can result in the client interacting with such an attacker-<lb/>controlled server, without any authentication facilities to verify <lb/>the server's identity. <lb/>o Despite the fact that it is a requirement that "implementations" <lb/>provide "support" for use of RPCSEC_GSS, it cannot be assumed that <lb/>use of RPCSEC_GSS is always available between any particular <lb/>client-server pair. <lb/>o When a client has the network addresses of a server but not the <lb/>associated host names, that would interfere with its ability to <lb/>use RPCSEC_GSS. <lb/>In light of the above, a server SHOULD present file system location <lb/>entries that correspond to file systems on other servers using a host <lb/>name. This would allow the client to interrogate the fs_locations on <lb/>the destination server to obtain trunking information (as well as <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 628] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>replica information) using RPCSEC_GSS with integrity, validating the <lb/>name provided while assuring that the response has not been modified <lb/>in flight. <lb/>When RPCSEC_GSS is not available on a server, the client needs to be <lb/>aware of the fact that the location entries are subject to <lb/>modification in flight and so cannot be relied upon. In the case of <lb/>a client being directed to another server after NFS4ERR_MOVED, this <lb/>could vitiate the authentication provided by the use of RPCSEC_GSS on <lb/>the destination. Even when RPCSEC_GSS authentication is available on <lb/>the destination, the server might validly represent itself as the <lb/>server to which the client was erroneously directed. Without a way <lb/>to decide whether the server is a valid one, the client can only <lb/>determine, using RPCSEC_GSS, that the server corresponds to the name <lb/>provided, with no basis for trusting that server. As a result, the <lb/>client SHOULD NOT use such unverified location entries as a basis for <lb/>migration, even though RPCSEC_GSS might be available on the <lb/>destination. <lb/>When a file system location attribute is fetched upon connecting with <lb/>an NFS server, it SHOULD, as stated above, be done using RPCSEC_GSS <lb/>with integrity protection. When this not possible, it is generally <lb/>best for the client to ignore trunking and replica information or <lb/>simply not fetch the location information for these purposes. <lb/>When location information cannot be verified, it can be subjected to <lb/>additional filtering to prevent the client from being inappropriately <lb/>directed. For example, if a range of network addresses can be <lb/>determined that assure that the servers and clients using AUTH_SYS <lb/>are subject to the appropriate set of constraints (e.g. physical <lb/>network isolation, administrative controls on the operating systems <lb/>used), then network addresses in the appropriate range can be used <lb/>with others discarded or restricted in their use of AUTH_SYS. <lb/>To summarize considerations regarding the use of RPCSEC_GSS in <lb/>fetching location information, we need to consider the following <lb/>possibilities for requests to interrogate location information, with <lb/>interrogation approaches on the referring and destination servers <lb/>arrived at separately: <lb/>o The use of RPCSEC_GSS with integrity protection is RECOMMENDED in <lb/>all cases, since the absence of integrity protection exposes the <lb/>client to the possibility of the results being modified in <lb/>transit. <lb/>o The use of requests issued without RPCSEC_GSS (i.e. using AUTH_SYS <lb/>which has no provision to avoid modification of data in flight), <lb/>while undesirable and a potential security exposure, may not be <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 629] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>avoidable in all cases. Where the use of the returned information <lb/>cannot be avoided, it is made subject to filtering as described <lb/>above to eliminate the possibility that the client would treat an <lb/>invalid address as if it were a NFSv4 server. The specifics will <lb/>vary depending on the degree of network isolation and whether the <lb/>request is to the referring or destination servers. <lb/>22. IANA Considerations <lb/>This section uses terms that are defined in [58]. <lb/>22.1. IANA Actions Neeeded <lb/>This update does not require any actions by IANA. <lb/>Previous actions by IANA related to NFSv4.1 are listed in the <lb/>remaining subsections of Section 22. <lb/>22.2. Named Attribute Definitions <lb/>IANA created a registry called the "NFSv4 Named Attribute Definitions <lb/>Registry". <lb/>The NFSv4.1 protocol supports the association of a file with zero or <lb/>more named attributes. The namespace identifiers for these <lb/>attributes are defined as string names. The protocol does not define <lb/>the specific assignment of the namespace for these file attributes. <lb/>The IANA registry promotes interoperability where common interests <lb/>exist. While application developers are allowed to define and use <lb/>attributes as needed, they are encouraged to register the attributes <lb/>with IANA. <lb/>Such registered named attributes are presumed to apply to all minor <lb/>versions of NFSv4, including those defined subsequently to the <lb/>registration. If the named attribute is intended to be limited to <lb/>specific minor versions, this will be clearly stated in the <lb/>registry's assignment. <lb/>All assignments to the registry are made on a First Come First Served <lb/>basis, per Section 4.1 of [58]. The policy for each assignment is <lb/>Specification Required, per Section 4.1 of [58]. <lb/>Under the NFSv4.1 specification, the name of a named attribute can in <lb/>theory be up to 2^32 -1 bytes in length, but in practice NFSv4.1 <lb/>clients and servers will be unable to handle a string that long. <lb/>IANA should reject any assignment request with a named attribute that <lb/>exceeds 128 UTF-8 characters. To give the IESG the flexibility to <lb/>set up bases of assignment of Experimental Use and Standards Action, <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 630] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>the prefixes of "EXPE" and "STDS" are Reserved. The named attribute <lb/>with a zero-length name is Reserved. <lb/>The prefix "PRIV" is designated for Private Use. A site that wants <lb/>to make use of unregistered named attributes without risk of <lb/>conflicting with an assignment in IANA's registry should use the <lb/>prefix "PRIV" in all of its named attributes. <lb/>Because some NFSv4.1 clients and servers have case-insensitive <lb/>semantics, the fifteen additional lower case and mixed case <lb/>permutations of each of "EXPE", "PRIV", and "STDS" are Reserved <lb/>(e.g., "expe", "expE", "exPe", etc. are Reserved). Similarly, IANA <lb/>must not allow two assignments that would conflict if both named <lb/>attributes were converted to a common case. <lb/>The registry of named attributes is a list of assignments, each <lb/>containing three fields for each assignment. <lb/>1. A US-ASCII string name that is the actual name of the attribute. <lb/>This name must be unique. This string name can be 1 to 128 UTF-8 <lb/>characters long. <lb/>2. A reference to the specification of the named attribute. The <lb/>reference can consume up to 256 bytes (or more if IANA permits). <lb/>3. The point of contact of the registrant. The point of contact can <lb/>consume up to 256 bytes (or more if IANA permits). <lb/>22.2.1. Initial Registry <lb/>There is no initial registry. <lb/>22.2.2. Updating Registrations <lb/>The registrant is always permitted to update the point of contact <lb/>field. Any other change will require Expert Review or IESG Approval. <lb/>22.3. Device ID Notifications <lb/>IANA created a registry called the "NFSv4 Device ID Notifications <lb/>Registry". <lb/>The potential exists for new notification types to be added to the <lb/>CB_NOTIFY_DEVICEID operation (see Section 20.12). This can be done <lb/>via changes to the operations that register notifications, or by <lb/>adding new operations to NFSv4. This requires a new minor version of <lb/>NFSv4, and requires a Standards Track document from the IETF. <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 631] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>Another way to add a notification is to specify a new layout type <lb/>(see Section 22.5). <lb/>Hence, all assignments to the registry are made on a Standards Action <lb/>basis per Section 4.1 of [58], with Expert Review required. <lb/>The registry is a list of assignments, each containing five fields <lb/>per assignment. <lb/>1. The name of the notification type. This name must have the <lb/>prefix "NOTIFY_DEVICEID4_". This name must be unique. <lb/>2. The value of the notification. IANA will assign this number, and <lb/>the request from the registrant will use TBD1 instead of an <lb/>actual value. IANA MUST use a whole number that can be no higher <lb/>than 2^32-1, and should be the next available value. The value <lb/>assigned must be unique. A Designated Expert must be used to <lb/>ensure that when the name of the notification type and its value <lb/>are added to the NFSv4.1 notify_deviceid_type4 enumerated data <lb/>type in the NFSv4.1 XDR description ([10]), the result continues <lb/>to be a valid XDR description. <lb/>3. The Standards Track RFC(s) that describe the notification. If <lb/>the RFC(s) have not yet been published, the registrant will use <lb/>RFCTBD2, RFCTBD3, etc. instead of an actual RFC number. <lb/>4. How the RFC introduces the notification. This is indicated by a <lb/>single US-ASCII value. If the value is N, it means a minor <lb/>revision to the NFSv4 protocol. If the value is L, it means a <lb/>new pNFS layout type. Other values can be used with IESG <lb/>Approval. <lb/>5. The minor versions of NFSv4 that are allowed to use the <lb/>notification. While these are numeric values, IANA will not <lb/>allocate and assign them; the author of the relevant RFCs with <lb/>IESG Approval assigns these numbers. Each time there is a new <lb/>minor version of NFSv4 approved, a Designated Expert should <lb/>review the registry to make recommended updates as needed. <lb/>22.3.1. Initial Registry <lb/>The initial registry is in Table 16. Note that the next available <lb/>value is zero. <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 632] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>+-------------------------+-------+---------+-----+----------------+ <lb/>| Notification Name <lb/>| Value | RFC <lb/>| How | Minor Versions | <lb/>+-------------------------+-------+---------+-----+----------------+ <lb/>| NOTIFY_DEVICEID4_CHANGE | 1 <lb/>| RFC5661 | N <lb/>| 1 <lb/>| <lb/>| NOTIFY_DEVICEID4_DELETE | 2 <lb/>| RFC5661 | N <lb/>| 1 <lb/>| <lb/>+-------------------------+-------+---------+-----+----------------+ <lb/>Table 16: Initial Device ID Notification Assignments <lb/>22.3.2. Updating Registrations <lb/>The update of a registration will require IESG Approval on the advice <lb/>of a Designated Expert. <lb/>22.4. Object Recall Types <lb/>IANA created a registry called the "NFSv4 Recallable Object Types <lb/>Registry". <lb/>The potential exists for new object types to be added to the <lb/>CB_RECALL_ANY operation (see Section 20.6). This can be done via <lb/>changes to the operations that add recallable types, or by adding new <lb/>operations to NFSv4. This requires a new minor version of NFSv4, and <lb/>requires a Standards Track document from IETF. Another way to add a <lb/>new recallable object is to specify a new layout type (see <lb/>Section 22.5). <lb/>All assignments to the registry are made on a Standards Action basis <lb/>per Section 4.1 of [58], with Expert Review required. <lb/>Recallable object types are 32-bit unsigned numbers. There are no <lb/>Reserved values. Values in the range 12 through 15, inclusive, are <lb/>designated for Private Use. <lb/>The registry is a list of assignments, each containing five fields <lb/>per assignment. <lb/>1. The name of the recallable object type. This name must have the <lb/>prefix "RCA4_TYPE_MASK_". The name must be unique. <lb/>2. The value of the recallable object type. IANA will assign this <lb/>number, and the request from the registrant will use TBD1 instead <lb/>of an actual value. IANA MUST use a whole number that can be no <lb/>higher than 2^32-1, and should be the next available value. The <lb/>value must be unique. A Designated Expert must be used to ensure <lb/>that when the name of the recallable type and its value are added <lb/>to the NFSv4 XDR description [10], the result continues to be a <lb/>valid XDR description. <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 633] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>3. The Standards Track RFC(s) that describe the recallable object <lb/>type. If the RFC(s) have not yet been published, the registrant <lb/>will use RFCTBD2, RFCTBD3, etc. instead of an actual RFC number. <lb/>4. How the RFC introduces the recallable object type. This is <lb/>indicated by a single US-ASCII value. If the value is N, it <lb/>means a minor revision to the NFSv4 protocol. If the value is L, <lb/>it means a new pNFS layout type. Other values can be used with <lb/>IESG Approval. <lb/>5. The minor versions of NFSv4 that are allowed to use the <lb/>recallable object type. While these are numeric values, IANA <lb/>will not allocate and assign them; the author of the relevant <lb/>RFCs with IESG Approval assigns these numbers. Each time there <lb/>is a new minor version of NFSv4 approved, a Designated Expert <lb/>should review the registry to make recommended updates as needed. <lb/>22.4.1. Initial Registry <lb/>The initial registry is in Table 17. Note that the next available <lb/>value is five. <lb/>+-------------------------------+-------+--------+-----+------------+ <lb/>| Recallable Object Type Name <lb/>| Value | RFC <lb/>| How | Minor <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| Versions <lb/>| <lb/>+-------------------------------+-------+--------+-----+------------+ <lb/>| RCA4_TYPE_MASK_RDATA_DLG <lb/>| 0 <lb/>| RFC <lb/>| N <lb/>| 1 <lb/>| <lb/>| <lb/>| <lb/>| 5661 <lb/>| <lb/>| <lb/>| <lb/>| RCA4_TYPE_MASK_WDATA_DLG <lb/>| 1 <lb/>| RFC <lb/>| N <lb/>| 1 <lb/>| <lb/>| <lb/>| <lb/>| 5661 <lb/>| <lb/>| <lb/>| <lb/>| RCA4_TYPE_MASK_DIR_DLG <lb/>| 2 <lb/>| RFC <lb/>| N <lb/>| 1 <lb/>| <lb/>| <lb/>| <lb/>| 5661 <lb/>| <lb/>| <lb/>| <lb/>| RCA4_TYPE_MASK_FILE_LAYOUT <lb/>| 3 <lb/>| RFC <lb/>| N <lb/>| 1 <lb/>| <lb/>| <lb/>| <lb/>| 5661 <lb/>| <lb/>| <lb/>| <lb/>| RCA4_TYPE_MASK_BLK_LAYOUT <lb/>| 4 <lb/>| RFC <lb/>| L <lb/>| 1 <lb/>| <lb/>| <lb/>| <lb/>| 5661 <lb/>| <lb/>| <lb/>| <lb/>| RCA4_TYPE_MASK_OBJ_LAYOUT_MIN | 8 <lb/>| RFC <lb/>| L <lb/>| 1 <lb/>| <lb/>| <lb/>| <lb/>| 5661 <lb/>| <lb/>| <lb/>| <lb/>| RCA4_TYPE_MASK_OBJ_LAYOUT_MAX | 9 <lb/>| RFC <lb/>| L <lb/>| 1 <lb/>| <lb/>| <lb/>| <lb/>| 5661 <lb/>| <lb/>| <lb/>| <lb/>+-------------------------------+-------+--------+-----+------------+ <lb/>Table 17: Initial Recallable Object Type Assignments <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 634] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>22.4.2. Updating Registrations <lb/>The update of a registration will require IESG Approval on the advice <lb/>of a Designated Expert. <lb/>22.5. Layout Types <lb/>IANA created a registry called the "pNFS Layout Types Registry". <lb/>All assignments to the registry are made on a Standards Action basis, <lb/>with Expert Review required. <lb/>Layout types are 32-bit numbers. The value zero is Reserved. Values <lb/>in the range 0x80000000 to 0xFFFFFFFF inclusive are designated for <lb/>Private Use. IANA will assign numbers from the range 0x00000001 to <lb/>0x7FFFFFFF inclusive. <lb/>The registry is a list of assignments, each containing five fields. <lb/>1. The name of the layout type. This name must have the prefix <lb/>"LAYOUT4_". The name must be unique. <lb/>2. The value of the layout type. IANA will assign this number, and <lb/>the request from the registrant will use TBD1 instead of an <lb/>actual value. The value assigned must be unique. A Designated <lb/>Expert must be used to ensure that when the name of the layout <lb/>type and its value are added to the NFSv4.1 layouttype4 <lb/>enumerated data type in the NFSv4.1 XDR description ([10]), the <lb/>result continues to be a valid XDR description. <lb/>3. The Standards Track RFC(s) that describe the notification. If <lb/>the RFC(s) have not yet been published, the registrant will use <lb/>RFCTBD2, RFCTBD3, etc. instead of an actual RFC number. <lb/>Collectively, the RFC(s) must adhere to the guidelines listed in <lb/>Section 22.5.3. <lb/>4. How the RFC introduces the layout type. This is indicated by a <lb/>single US-ASCII value. If the value is N, it means a minor <lb/>revision to the NFSv4 protocol. If the value is L, it means a <lb/>new pNFS layout type. Other values can be used with IESG <lb/>Approval. <lb/>5. The minor versions of NFSv4 that are allowed to use the <lb/>notification. While these are numeric values, IANA will not <lb/>allocate and assign them; the author of the relevant RFCs with <lb/>IESG Approval assigns these numbers. Each time there is a new <lb/>minor version of NFSv4 approved, a Designated Expert should <lb/>review the registry to make recommended updates as needed. <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 635] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>22.5.1. Initial Registry <lb/>The initial registry is in Table 18. <lb/>+-----------------------+-------+----------+-----+----------------+ <lb/>| Layout Type Name <lb/>| Value | RFC <lb/>| How | Minor Versions | <lb/>+-----------------------+-------+----------+-----+----------------+ <lb/>| LAYOUT4_NFSV4_1_FILES | 0x1 <lb/>| RFC 5661 | N <lb/>| 1 <lb/>| <lb/>| LAYOUT4_OSD2_OBJECTS | 0x2 <lb/>| RFC 5664 | L <lb/>| 1 <lb/>| <lb/>| LAYOUT4_BLOCK_VOLUME | 0x3 <lb/>| RFC 5663 | L <lb/>| 1 <lb/>| <lb/>+-----------------------+-------+----------+-----+----------------+ <lb/>Table 18: Initial Layout Type Assignments <lb/>22.5.2. Updating Registrations <lb/>The update of a registration will require IESG Approval on the advice <lb/>of a Designated Expert. <lb/>22.5.3. Guidelines for Writing Layout Type Specifications <lb/>The author of a new pNFS layout specification must follow these steps <lb/>to obtain acceptance of the layout type as a Standards Track RFC: <lb/>1. The author devises the new layout specification. <lb/>2. The new layout type specification MUST, at a minimum: <lb/>* Define the contents of the layout-type-specific fields of the <lb/>following data types: <lb/>+ the da_addr_body field of the device_addr4 data type; <lb/>+ the loh_body field of the layouthint4 data type; <lb/>+ the loc_body field of layout_content4 data type (which in <lb/>turn is the lo_content field of the layout4 data type); <lb/>+ the lou_body field of the layoutupdate4 data type; <lb/>* Describe or define the storage access protocol used to access <lb/>the storage devices. <lb/>* Describe whether revocation of layouts is supported. <lb/>* At a minimum, describe the methods of recovery from: <lb/>1. Failure and restart for client, server, storage device. <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 636] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>2. Lease expiration from perspective of the active client, <lb/>server, storage device. <lb/>3. Loss of layout state resulting in fencing of client access <lb/>to storage devices (for an example, see Section 12.7.3). <lb/>* Include an IANA considerations section, which will in turn <lb/>include: <lb/>+ A request to IANA for a new layout type per Section 22.5. <lb/>+ A list of requests to IANA for any new recallable object <lb/>types for CB_RECALL_ANY; each entry is to be presented in <lb/>the form described in Section 22.4. <lb/>+ A list of requests to IANA for any new notification values <lb/>for CB_NOTIFY_DEVICEID; each entry is to be presented in <lb/>the form described in Section 22.3. <lb/>* Include a security considerations section. This section MUST <lb/>explain how the NFSv4.1 authentication, authorization, and <lb/>access-control models are preserved. That is, if a metadata <lb/>server would restrict a READ or WRITE operation, how would <lb/>pNFS via the layout similarly restrict a corresponding input <lb/>or output operation? <lb/>3. The author documents the new layout specification as an Internet-<lb/>Draft. <lb/>4. The author submits the Internet-Draft for review through the IETF <lb/>standards process as defined in "The Internet Standards Process--<lb/>Revision 3" (BCP 9). The new layout specification will be <lb/>submitted for eventual publication as a Standards Track RFC. <lb/>5. The layout specification progresses through the IETF standards <lb/>process. <lb/>22.6. Path Variable Definitions <lb/>This section deals with the IANA considerations associated with the <lb/>variable substitution feature for location names as described in <lb/>Section 11.16.3. As described there, variables subject to <lb/>substitution consist of a domain name and a specific name within that <lb/>domain, with the two separated by a colon. There are two sets of <lb/>IANA considerations here: <lb/>1. The list of variable names. <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 637] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>2. For each variable name, the list of possible values. <lb/>Thus, there will be one registry for the list of variable names, and <lb/>possibly one registry for listing the values of each variable name. <lb/>22.6.1. Path Variables Registry <lb/>IANA created a registry called the "NFSv4 Path Variables Registry". <lb/>22.6.1.1. Path Variable Values <lb/>Variable names are of the form "${", followed by a domain name, <lb/>followed by a colon (":"), followed by a domain-specific portion of <lb/>the variable name, followed by "}". When the domain name is <lb/>"ietf.org", all variables names must be registered with IANA on a <lb/>Standards Action basis, with Expert Review required. Path variables <lb/>with registered domain names neither part of nor equal to ietf.org <lb/>are assigned on a Hierarchical Allocation basis (delegating to the <lb/>domain owner) and thus of no concern to IANA, unless the domain owner <lb/>chooses to register a variable name from his domain. If the domain <lb/>owner chooses to do so, IANA will do so on a First Come First Serve <lb/>basis. To accommodate registrants who do not have their own domain, <lb/>IANA will accept requests to register variables with the prefix <lb/>"${FCFS.ietf.org:" on a First Come First Served basis. Assignments <lb/>on a First Come First Basis do not require Expert Review, unless the <lb/>registrant also wants IANA to establish a registry for the values of <lb/>the registered variable. <lb/>The registry is a list of assignments, each containing three fields. <lb/>1. The name of the variable. The name of this variable must start <lb/>with a "${" followed by a registered domain name, followed by <lb/>":", or it must start with "${FCFS.ietf.org". The name must be <lb/>no more than 64 UTF-8 characters long. The name must be unique. <lb/>2. For assignments made on Standards Action basis, the Standards <lb/>Track RFC(s) that describe the variable. If the RFC(s) have not <lb/>yet been published, the registrant will use RFCTBD1, RFCTBD2, <lb/>etc. instead of an actual RFC number. Note that the RFCs do not <lb/>have to be a part of an NFS minor version. For assignments made <lb/>on a First Come First Serve basis, an explanation (consuming no <lb/>more than 1024 bytes, or more if IANA permits) of the purpose of <lb/>the variable. A reference to the explanation can be substituted. <lb/>3. The point of contact, including an email address. The point of <lb/>contact can consume up to 256 bytes (or more if IANA permits). <lb/>For assignments made on a Standards Action basis, the point of <lb/>contact is always IESG. <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 638] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>22.6.1.1.1. Initial Registry <lb/>The initial registry is in Table 19. <lb/>+------------------------+----------+------------------+ <lb/>| Variable Name <lb/>| RFC <lb/>| Point of Contact | <lb/>+------------------------+----------+------------------+ <lb/>| ${ietf.org:CPU_ARCH} <lb/>| RFC 5661 | IESG <lb/>| <lb/>| ${ietf.org:OS_TYPE} <lb/>| RFC 5661 | IESG <lb/>| <lb/>| ${ietf.org:OS_VERSION} | RFC 5661 | IESG <lb/>| <lb/>+------------------------+----------+------------------+ <lb/>Table 19: Initial List of Path Variables <lb/>IANA has created registries for the values of the variable names <lb/>${ietf.org:CPU_ARCH} and ${ietf.org:OS_TYPE}. See Sections 22.6.2 and <lb/>22.6.3. <lb/>For the values of the variable ${ietf.org:OS_VERSION}, no registry is <lb/>needed as the specifics of the values of the variable will vary with <lb/>the value of ${ietf.org:OS_TYPE}. Thus, values for <lb/>${ietf.org:OS_VERSION} are on a Hierarchical Allocation basis and are <lb/>of no concern to IANA. <lb/>22.6.1.1.2. Updating Registrations <lb/>The update of an assignment made on a Standards Action basis will <lb/>require IESG Approval on the advice of a Designated Expert. <lb/>The registrant can always update the point of contact of an <lb/>assignment made on a First Come First Serve basis. Any other update <lb/>will require Expert Review. <lb/>22.6.2. Values for the ${ietf.org:CPU_ARCH} Variable <lb/>IANA created a registry called the "NFSv4 ${ietf.org:CPU_ARCH} Value <lb/>Registry". <lb/>Assignments to the registry are made on a First Come First Serve <lb/>basis. The zero-length value of ${ietf.org:CPU_ARCH} is Reserved. <lb/>Values with a prefix of "PRIV" are designated for Private Use. <lb/>The registry is a list of assignments, each containing three fields. <lb/>1. A value of the ${ietf.org:CPU_ARCH} variable. The value must be <lb/>1 to 32 UTF-8 characters long. The value must be unique. <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 639] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <body>2. An explanation (consuming no more than 1024 bytes, or more if <lb/>IANA permits) of what CPU architecture the value denotes. A <lb/>reference to the explanation can be substituted. <lb/>3. The point of contact, including an email address. The point of <lb/>contact can consume up to 256 bytes (or more if IANA permits). <lb/>22.6.2.1. Initial Registry <lb/>There is no initial registry. <lb/>22.6.2.2. Updating Registrations <lb/>The registrant is free to update the assignment, i.e., change the <lb/>explanation and/or point-of-contact fields. <lb/>22.6.3. Values for the ${ietf.org:OS_TYPE} Variable <lb/>IANA created a registry called the "NFSv4 ${ietf.org:OS_TYPE} Value <lb/>Registry". <lb/>Assignments to the registry are made on a First Come First Serve <lb/>basis. The zero-length value of ${ietf.org:OS_TYPE} is Reserved. <lb/>Values with a prefix of "PRIV" are designated for Private Use. <lb/>The registry is a list of assignments, each containing three fields. <lb/>1. A value of the ${ietf.org:OS_TYPE} variable. The value must be 1 <lb/>to 32 UTF-8 characters long. The value must be unique. <lb/>2. An explanation (consuming no more than 1024 bytes, or more if <lb/>IANA permits) of what CPU architecture the value denotes. A <lb/>reference to the explanation can be substituted. <lb/>3. The point of contact, including an email address. The point of <lb/>contact can consume up to 256 bytes (or more if IANA permits). <lb/>22.6.3.1. Initial Registry <lb/>There is no initial registry. <lb/>22.6.3.2. Updating Registrations <lb/>The registrant is free to update the assignment, i.e., change the <lb/>explanation and/or point of contact fields. <lb/></body> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 640] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <listBibl>23. References <lb/>23.1. Normative References <lb/>[1] <lb/>Bradner, S., "Key words for use in RFCs to Indicate <lb/>Requirement Levels", BCP 14, RFC 2119, March 1997. <lb/>[2] <lb/>Eisler, M., Ed., "XDR: External Data Representation <lb/>Standard", STD 67, RFC 4506, May 2006. <lb/>[3] <lb/>Thurlow, R., "RPC: Remote Procedure Call Protocol <lb/>Specification Version 2", RFC 5531, May 2009. <lb/>[4] <lb/>Eisler, M., Chiu, A., and L. Ling, "RPCSEC_GSS Protocol <lb/>Specification", RFC 2203, September 1997. <lb/>[5] <lb/>Zhu, L., Jaganathan, K., and S. Hartman, "The Kerberos <lb/>Version 5 Generic Security Service Application Program <lb/>Interface (GSS-API) Mechanism Version 2", RFC 4121, July <lb/>2005. <lb/>[6] <lb/>The Open Group, "Section 3.191 of Chapter 3 of Base <lb/>Definitions of The Open Group Base Specifications Issue 6 <lb/>IEEE Std 1003.1, 2004 Edition, HTML Version <lb/>(www.opengroup.org), ISBN 1931624232", 2004. <lb/>[7] <lb/>Linn, J., "Generic Security Service Application Program <lb/>Interface Version 2, Update 1", RFC 2743, January 2000. <lb/>[8] <lb/>Recio, R., Metzler, B., Culley, P., Hilland, J., and D. <lb/>Garcia, "A Remote Direct Memory Access Protocol <lb/>Specification", RFC 5040, October 2007. <lb/>[9] <lb/>Eisler, M., "RPCSEC_GSS Version 2", RFC 5403, February <lb/>2009. <lb/>[10] <lb/>Shepler, S., Ed., Eisler, M., Ed., and D. Noveck, Ed., <lb/>"Network File System (NFS) Version 4 Minor Version 1 <lb/>External Data Representation Standard (XDR) Description", <lb/>RFC 5662, January 2010. <lb/>[11] <lb/>The Open Group, "Section 3.372 of Chapter 3 of Base <lb/>Definitions of The Open Group Base Specifications Issue 6 <lb/>IEEE Std 1003.1, 2004 Edition, HTML Version <lb/>(www.opengroup.org), ISBN 1931624232", 2004. <lb/></listBibl> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 641] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <listBibl>[12] <lb/>Eisler, M., "IANA Considerations for Remote Procedure Call <lb/>(RPC) Network Identifiers and Universal Address Formats", <lb/>RFC 5665, January 2010. <lb/>[13] <lb/>The Open Group, "Section 'read()' of System Interfaces of <lb/>The Open Group Base Specifications Issue 6 IEEE Std <lb/>1003.1, 2004 Edition, HTML Version (www.opengroup.org), <lb/>ISBN 1931624232", 2004. <lb/>[14] <lb/>The Open Group, "Section 'readdir()' of System Interfaces <lb/>of The Open Group Base Specifications Issue 6 IEEE Std <lb/>1003.1, 2004 Edition, HTML Version (www.opengroup.org), <lb/>ISBN 1931624232", 2004. <lb/>[15] <lb/>The Open Group, "Section 'write()' of System Interfaces of <lb/>The Open Group Base Specifications Issue 6 IEEE Std <lb/>1003.1, 2004 Edition, HTML Version (www.opengroup.org), <lb/>ISBN 1931624232", 2004. <lb/>[16] <lb/>Hoffman, P. and M. Blanchet, "Preparation of <lb/>Internationalized Strings ("stringprep")", RFC 3454, <lb/>December 2002. <lb/>[17] <lb/>The Open Group, "Section 'chmod()' of System Interfaces of <lb/>The Open Group Base Specifications Issue 6 IEEE Std <lb/>1003.1, 2004 Edition, HTML Version (www.opengroup.org), <lb/>ISBN 1931624232", 2004. <lb/>[18] <lb/>International Organization for Standardization, <lb/>"Information Technology -Universal Multiple-octet coded <lb/>Character Set (UCS) -Part 1: Architecture and Basic <lb/>Multilingual Plane", ISO Standard 10646-1, May 1993. <lb/>[19] <lb/>Alvestrand, H., "IETF Policy on Character Sets and <lb/>Languages", BCP 18, RFC 2277, January 1998. <lb/>[20] <lb/>Hoffman, P. and M. Blanchet, "Nameprep: A Stringprep <lb/>Profile for Internationalized Domain Names (IDN)", <lb/>RFC 3491, March 2003. <lb/>[21] <lb/>The Open Group, "Section 'fcntl()' of System Interfaces of <lb/>The Open Group Base Specifications Issue 6 IEEE Std <lb/>1003.1, 2004 Edition, HTML Version (www.opengroup.org), <lb/>ISBN 1931624232", 2004. <lb/></listBibl> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 642] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <listBibl>[22] <lb/>The Open Group, "Section 'fsync()' of System Interfaces of <lb/>The Open Group Base Specifications Issue 6 IEEE Std <lb/>1003.1, 2004 Edition, HTML Version (www.opengroup.org), <lb/>ISBN 1931624232", 2004. <lb/>[23] <lb/>The Open Group, "Section 'getpwnam()' of System Interfaces <lb/>of The Open Group Base Specifications Issue 6 IEEE Std <lb/>1003.1, 2004 Edition, HTML Version (www.opengroup.org), <lb/>ISBN 1931624232", 2004. <lb/>[24] <lb/>The Open Group, "Section 'unlink()' of System Interfaces <lb/>of The Open Group Base Specifications Issue 6 IEEE Std <lb/>1003.1, 2004 Edition, HTML Version (www.opengroup.org), <lb/>ISBN 1931624232", 2004. <lb/>[25] <lb/>Schaad, J., Kaliski, B., and R. Housley, "Additional <lb/>Algorithms and Identifiers for RSA Cryptography for use in <lb/>the Internet X.509 Public Key Infrastructure Certificate <lb/>and Certificate Revocation List (CRL) Profile", RFC 4055, <lb/>June 2005. <lb/>[26] <lb/>National Institute of Standards and Technology, <lb/>"Cryptographic Algorithm Object Registration", URL <lb/>http://csrc.nist.gov/groups/ST/crypto_apps_infra/csor/ <lb/>algorithms.html, November 2007. <lb/>[27] <lb/>Adamson, A. and N. Williams, "Remote Procedure Call (RPC) <lb/>Security Version 3", RFC 7861, DOI 10.17487/RFC7861, <lb/>November 2016, <https://www.rfc-editor.org/info/rfc7861>. <lb/>[28] <lb/>Neuman, C., Yu, T., Hartman, S., and K. Raeburn, "The <lb/>Kerberos Network Authentication Service (V5)", RFC 4120, <lb/>DOI 10.17487/RFC4120, July 2005, <lb/><https://www.rfc-editor.org/info/rfc4120>. <lb/>[29] <lb/>Arends, R., Austein, R., Larson, M., Massey, D., and S. <lb/>Rose, "DNS Security Introduction and Requirements", <lb/>RFC 4033, DOI 10.17487/RFC4033, March 2005, <lb/><https://www.rfc-editor.org/info/rfc4033>. <lb/>[30] <lb/>Adamson, A. and N. Williams, "Requirements for NFSv4 <lb/>Multi-Domain Namespace Deployment", RFC 8000, <lb/>DOI 10.17487/RFC8000, November 2016, <lb/><https://www.rfc-editor.org/info/rfc8000>. <lb/></listBibl> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 643] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <listBibl>[31] <lb/>Lever, C., Ed., Simpson, W., and T. Talpey, "Remote Direct <lb/>Memory Access Transport for Remote Procedure Call Version <lb/>1", RFC 8166, DOI 10.17487/RFC8166, June 2017, <lb/><https://www.rfc-editor.org/info/rfc8166>. <lb/>[32] <lb/>Lever, C., "Network File System (NFS) Upper-Layer Binding <lb/>to RPC-over-RDMA Version 1", RFC 8267, <lb/>DOI 10.17487/RFC8267, October 2017, <lb/><https://www.rfc-editor.org/info/rfc8267>. <lb/>23.2. Informative References <lb/>[33] <lb/>Shepler, S., Callaghan, B., Robinson, D., Thurlow, R., <lb/>Beame, C., Eisler, M., and D. Noveck, "Network File System <lb/>(NFS) version 4 Protocol", RFC 3530, April 2003. <lb/>[34] <lb/>Callaghan, B., Pawlowski, B., and P. Staubach, "NFS <lb/>Version 3 Protocol Specification", RFC 1813, June 1995. <lb/>[35] <lb/>Eisler, M., "LIPKEY -A Low Infrastructure Public Key <lb/>Mechanism Using SPKM", RFC 2847, June 2000. <lb/>[36] <lb/>Eisler, M., "NFS Version 2 and Version 3 Security Issues <lb/>and the NFS Protocol's Use of RPCSEC_GSS and Kerberos V5", <lb/>RFC 2623, June 1999. <lb/>[37] <lb/>Juszczak, C., "Improving the Performance and Correctness <lb/>of an NFS Server", USENIX Conference Proceedings , June <lb/>1990. <lb/>[38] <lb/>Reynolds, J., Ed., "Assigned Numbers: RFC 1700 is Replaced <lb/>by an On-line Database", RFC 3232, January 2002. <lb/>[39] <lb/>Srinivasan, R., "Binding Protocols for ONC RPC Version 2", <lb/>RFC 1833, August 1995. <lb/>[40] <lb/>Werme, R., "RPC XID Issues", USENIX Conference <lb/>Proceedings , February 1996. <lb/>[41] <lb/>Nowicki, B., "NFS: Network File System Protocol <lb/>specification", RFC 1094, March 1989. <lb/>[42] <lb/>Bhide, A., Elnozahy, E., and S. Morgan, "A Highly <lb/>Available Network Server", USENIX Conference Proceedings , <lb/>January 1991. <lb/>[43] <lb/>Halevy, B., Welch, B., and J. Zelenka, "Object-Based <lb/>Parallel NFS (pNFS) Operations", RFC 5664, January 2010. <lb/></listBibl> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 644] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <listBibl>[44] <lb/>Black, D., Glasgow, J., and S. Fridella, "Parallel NFS <lb/>(pNFS) Block/Volume Layout", RFC 5663, January 2010. <lb/>[45] <lb/>Callaghan, B., "WebNFS Client Specification", RFC 2054, <lb/>October 1996. <lb/>[46] <lb/>Callaghan, B., "WebNFS Server Specification", RFC 2055, <lb/>October 1996. <lb/>[47] <lb/>IESG, "IESG Processing of RFC Errata for the IETF Stream", <lb/>July 2008. <lb/>[48] <lb/>Shepler, S., "NFS Version 4 Design Considerations", <lb/>RFC 2624, June 1999. <lb/>[49] <lb/>The Open Group, "Protocols for Interworking: XNFS, Version <lb/>3W, ISBN 1-85912-184-5", February 1998. <lb/>[50] <lb/>Floyd, S. and V. Jacobson, "The Synchronization of <lb/>Periodic Routing Messages", IEEE/ACM Transactions on <lb/>Networking 2(2), pp. 122-136, April 1994. <lb/>[51] <lb/>Satran, J., Meth, K., Sapuntzakis, C., Chadalapaka, M., <lb/>and E. Zeidner, "Internet Small Computer Systems Interface <lb/>(iSCSI)", RFC 3720, April 2004. <lb/>[52] <lb/>Snively, R., "Fibre Channel Protocol for SCSI, 2nd Version <lb/>(FCP-2)", ANSI/INCITS 350-2003, Oct 2003. <lb/>[53] <lb/>Weber, R., "Object-Based Storage Device Commands (OSD)", <lb/>ANSI/INCITS 400-2004, July 2004, <lb/><http://www.t10.org/ftp/t10/drafts/osd/osd-r10.pdf>. <lb/>[54] <lb/>Carns, P., Ligon III, W., Ross, R., and R. Thakur, "PVFS: <lb/>A Parallel File System for Linux Clusters.", Proceedings <lb/>of the 4th Annual Linux Showcase and Conference , 2000. <lb/>[55] <lb/>The Open Group, "The Open Group Base Specifications Issue <lb/>6, IEEE Std 1003.1, 2004 Edition", 2004. <lb/>[56] <lb/>Callaghan, B., "NFS URL Scheme", RFC 2224, October 1997. <lb/>[57] <lb/>Chiu, A., Eisler, M., and B. Callaghan, "Security <lb/>Negotiation for WebNFS", RFC 2755, January 2000. <lb/>[58] <lb/>Narten, T. and H. Alvestrand, "Guidelines for Writing an <lb/>IANA Considerations Section in RFCs", BCP 26, RFC 5226, <lb/>May 2008. <lb/></listBibl> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 645] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <listBibl>[59] <lb/>Krawczyk, H., Bellare, M., and R. Canetti, "HMAC: Keyed-<lb/>Hashing for Message Authentication", RFC 2104, February <lb/>1997. <lb/>[60] <lb/>Shepler, S., Ed., Eisler, M., Ed., and D. Noveck, Ed., <lb/>"Network File System (NFS) Version 4 Minor Version 1 <lb/>Protocol", RFC 5661, DOI 10.17487/RFC5661, January 2010, <lb/><https://www.rfc-editor.org/info/rfc5661>. <lb/>[61] <lb/>Noveck, D., "Rules for NFSv4 Extensions and Minor <lb/>Versions", RFC 8178, DOI 10.17487/RFC8178, July 2017, <lb/><https://www.rfc-editor.org/info/rfc8178>. <lb/>[62] <lb/>Haynes, T., Ed. and D. Noveck, Ed., "Network File System <lb/>(NFS) Version 4 Protocol", RFC 7530, DOI 10.17487/RFC7530, <lb/>March 2015, <https://www.rfc-editor.org/info/rfc7530>. <lb/>[63] <lb/>Noveck, D., Ed., Shivam, P., Lever, C., and B. Baker, <lb/>"NFSv4.0 Migration: Specification Update", RFC 7931, <lb/>DOI 10.17487/RFC7931, July 2016, <lb/><https://www.rfc-editor.org/info/rfc7931>. <lb/>[64] <lb/>Haynes, T., "Requirements for Parallel NFS (pNFS) Layout <lb/>Types", RFC 8434, DOI 10.17487/RFC8434, August 2018, <lb/><https://www.rfc-editor.org/info/rfc8434>. <lb/>[65] <lb/>Farrell, S. and H. Tschofenig, "Pervasive Monitoring Is an <lb/>Attack", BCP 188, RFC 7258, DOI 10.17487/RFC7258, May <lb/>2014, <https://www.rfc-editor.org/info/rfc7258>. <lb/>[66] <lb/>Rescorla, E. and B. Korver, "Guidelines for Writing RFC <lb/>Text on Security Considerations", BCP 72, RFC 3552, <lb/>DOI 10.17487/RFC3552, July 2003, <lb/><https://www.rfc-editor.org/info/rfc3552>. <lb/></listBibl> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 646] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <div type="annex">Appendix A. Need for this Update <lb/>This document includes an explanation of how clients and servers are <lb/>to determine the particular network access paths to be used to access <lb/>a file system. This includes describing how changes to the specific <lb/>replica to be used or to the set of addresses to be used to access it <lb/>are to be dealt with, and how transfers of responsibility that need <lb/>to be made can be dealt with transparently. This includes cases in <lb/>which there is a shift between one replica and another and those in <lb/>which different network access paths are used to access the same <lb/>replica. <lb/>As a result of the following problems in RFC5661 [60], it is <lb/>necessary to provide the specific updates which are made by this <lb/>document. These updates are described in Appendix B <lb/>o RFC5661 [60], while it dealt with situations in which various <lb/>forms of clustering allowed co-ordination of the state assigned by <lb/>co-operating servers to be used, made no provisions for <lb/>Transparent State Migration. Within NFSv4.0, Transparent <lb/>Migration was first explained cearly in RFC7530 [62] and corrected <lb/>and clarified by RFC7931 [63]. No correesponding explanation for <lb/>NFSv4.1 had been provided. <lb/>o Although NFSv4.1 was defined with a clear definition of how <lb/>trunking detection was to be done, there was no clear <lb/>specification of how trunking discovery was to be done, despite <lb/>the fact that the specification clearly indicated that this <lb/>information could be made available via the file system location <lb/>attributes. <lb/>o Because the existence of multiple network access paths to the same <lb/>file system was dealt with as if there were multiple replicas, <lb/>issues relating to transitions between replicas could never be <lb/>clearly distinguished from trunking-related transitions between <lb/>the addresses used to access a particular file system instance. <lb/>As a result, in situations in which both migration and trunking <lb/>configuration changes were involved, neither of these could be <lb/>clearly dealt with and the relationship between these two features <lb/>was not seriously addressed. <lb/>o Because use of two network access paths to the same file system <lb/>instance (i.e. trunking) was often treated as if two replicas were <lb/>involved, it was considered that two replicas were being used <lb/>simultaneously. As a result, the treatment of replicas being used <lb/>simultaneously in RFC5661 [60] was not clear as it covered the two <lb/>distinct cases of a single file system instance being accessed by <lb/>two different network access paths and two replicas being accessed <lb/></div> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 647] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <div type="annex">simultaneously, with the limitations of the latter case not being <lb/>clearly laid out. <lb/>The majority of the consequences of these issues are dealt with by <lb/>presenting in Section 11 a replacement for Section 11 within RFC5661 <lb/>[60]. This replacement modifies existing sub-sections within that <lb/>section and adds new ones, as described in Appendix B.1. Also, some <lb/>existing sections are deleted. These changes were made in order to: <lb/>o Reorganize the description so that the case of two network access <lb/>paths to the same file system instance needs to be distinguished <lb/>clearly from the case of two different replicas since, in the <lb/>former case, locking state is shared and there also can be sharing <lb/>of session state. <lb/>o Provide a clear statement regarding the desirability of <lb/>transparent transfer of state between replicas together with a <lb/>recommendation that either that or a single-fs grace period be <lb/>provided. <lb/>o Specifically delineate how such transfers are to be dealt with by <lb/>the client, taking into account the differences from the treatment <lb/>in [63] made necessary by the major protocol changes made in <lb/>NFSv4.1. <lb/>o Provide discussion of the relationship between transparent state <lb/>transfer and Parallel NFS (pNFS). <lb/>o Provide clarification of the fs_locations_info attribute in order <lb/>to specify which portions of the information provided apply to a <lb/>specific network access path and which to the replica which that <lb/>path is used to access. <lb/>In addition, there are also updates to other sections of RFC5661 <lb/>[60], where the consequences of the incorrect assumptions underlying <lb/>the current treatment of multi-server namespace issues also needed to <lb/>be corrected. These are to be dealt with as described in Sections <lb/>B.2 through B.4. <lb/>o A revised introductory section regarding multi-server namespace <lb/>facilities is provided. <lb/>o A more realistic treatment of server scope is provided, which <lb/>reflects the more limited co-ordination of locking state adopted <lb/>by servers actually sharing a common server scope. <lb/>o Some confusing text regarding changes in server_owner has been <lb/>clarified. <lb/></div> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 648] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <div type="annex">o The description of some existing errors has been modified to more <lb/>clearly explain certain errors situations to reflect the existence <lb/>of trunking and the possible use of fs-specific grace periods. <lb/>For details, see Appendix B.3. <lb/>o New descriptions of certain existing operations are provided, <lb/>either because the existing treatment did not account for <lb/>situations that would arise in dealing with transparent state <lb/>migration, or because some types of reclaim issues were not <lb/>adequately dealt with in the context of fs-specific grace periods. <lb/>For details, see Appendix B.3. <lb/></div> + + + <div type="annex">Appendix B. Changes in this Update <lb/>B.1. Revisions Made to Section 11 of [RFC5661] <lb/>A number of areas needed to be revised or extended, in many case <lb/>replacing existing sub-sections within section 11 of RFC5661 [60]: <lb/>o New introductory material, including a terminology section, <lb/>replaces the existing material in RFC5661 [60] ranging from the <lb/>start of the existing Section 11 up to and including the existing <lb/>Section 11.1. The new material starts at the beginning of <lb/>Section 11 and continues through 11.2 below. <lb/>o A significant reorganization of the material in the existing <lb/>Sections 11.4 and 11.5 (of RFC5661 [60]) is necessary. The <lb/>reasons for the reorganization of these sections into a single <lb/>section with multiple subsections are discussed in Appendix B.1.1 <lb/>below. This replacement appears as Section 11.5 below. <lb/>New material relating to the handling of the file system location <lb/>attributes is contained in Sections 11.5.1 and 11.5.7 below. <lb/>o A new section describing requirements for user and group handling <lb/>within a multi-server namespace has been added as Section 11.6 <lb/>o A major replacement for the existing Section 11.7 of RFC5661 [60] <lb/>entitled "Effecting File System Transitions", will appear as <lb/>Sections 11.8 through 11.13. The reasons for the reorganization <lb/>of this section into multiple sections are discussed in <lb/>Appendix B.1.2. <lb/>o A replacement for the existing Section 11.10 of RFC5661 [60] <lb/>entitled "The Attribute fs_locations_info", will appear as <lb/>Section 11.16, with Appendix B.1.3 describing the differences <lb/>between the new section and the treatment within [60]. A revised <lb/>treatment is necessary because the existing treatment did not make <lb/></div> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 649] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <div type="annex">clear how the added attribute information relates to the case of <lb/>trunked paths to the same replica. These issues were not <lb/>addressed in RFC5661 [60] where the concepts of a replica and a <lb/>network path used to access a replica were not clearly <lb/>distinguished. <lb/>B.1.1. Re-organization of Sections 11.4 and 11.5 of [RFC5661] <lb/>Previously, issues related to the fact that multiple location entries <lb/>directed the client to the same file system instance were dealt with <lb/>in a separate Section 11.5 of RFC5661 [60]. Because of the new <lb/>treatment of trunking, these issues now belong within Section 11.5 <lb/>below. <lb/>In this new section, trunking is dealt with in Section 11.5.2 <lb/>together with the other uses of file system location information <lb/>described in Sections Section 11.5.3 through 11.5.6. <lb/>As a result, Section 11.5 which will replace Section 11.4 of RFC5661 <lb/>[60] is substantially different than the section it replaces in that <lb/>some existing sections will be replaced by corresponding sections <lb/>below while, at the same time, new sections will be added, resulting <lb/>in a replacement containing some renumbered sections, as follows: <lb/>o The material in Section 11.5, exclusive of subsections, replaces <lb/>the material in Section 11.4 of RFC5661 [60] exclusive of <lb/>subsections. <lb/>o Section 11.5.1 is a new first subsection of the overall section. <lb/>o Section 11.5.2 is a new second subsection of the overall section. <lb/>o Each of the Sections 11.5.4, 11.5.5, and 11.5.6 replaces (in <lb/>order) one of the corresponding Sections 11.4.1, 11.4.2, and <lb/>11.4.3 of RFC5661 [60]. 11.4.4, and 11.4.5. <lb/>o Section 11.5.7 is a new final subsection of the overall section. <lb/>B.1.2. Re-organization of Material Dealing with File System Transitions <lb/>The material relating to file system transition, previously contained <lb/>in Section 11.7 of RFC5661 [60] has been reorganized and augmented as <lb/>described below: <lb/>o Because there can be a shift of the network access paths used to <lb/>access a file system instance without any shift between replicas, <lb/>a new Section 11.8 distinguishes between those cases in which <lb/></div> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 650] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <div type="annex">there is a shift between distinct replicas and those involving a <lb/>shift in network access paths with no shift between replicas. <lb/>As a result, a new Section 11.9 deals with network address <lb/>transitions while the bulk of the former Section 11.7 (in RFC5661 <lb/>[60]) is extensively modified as reflected in Section 11.10 which <lb/>is now limited to cases in which there is a shift between two <lb/>different sets of replicas. <lb/>o The additional Section 11.11 discusses the case in which a shift <lb/>to a different replica is made and state is transferred to allow <lb/>the client the ability to have continued access to its accumulated <lb/>locking state on the new server. <lb/>o The additional Section 11.12 discusses the client's response to <lb/>access transitions and how it determines whether migration has <lb/>occurred, and how it gets access to any transferred locking and <lb/>session state. <lb/>o The additional Section 11.13 discusses the responsibilities of the <lb/>source and destination servers when transferring locking and <lb/>session state. <lb/>This re-organization has caused a renumbering of the sections within <lb/>Section 11 of [60] as described below: <lb/>o The new Sections 11.8 and 11.9 have resulted in existing sections <lb/>wit these numbers to be renumbered. <lb/>o Section 11.7 of [60] will be substantially modified and appear as <lb/>Section 11.10. The necessary modifications reflect the fact that <lb/>this section will only deal with transitions between replicas <lb/>while transitions between network addresses are dealt with in <lb/>other sections. Details of the reorganization are described later <lb/>in this section. <lb/>o The additional Sections 11.11, 11.12, and 11.13 have been added. <lb/>o Consequently, Sections 11.8, 11.9, 11.10, and 11.11 in [60] now <lb/>appear as Sections 11.13, 11.14, 11.15, and 11.16, respectively. <lb/>As part of this general re-organization, Section 11.7 of RFC5661 [60] <lb/>will be modified as described below: <lb/>o Sections 11.7 and 11.7.1 of RFC5661 [60] are to be replaced by <lb/>Sections 11.10 and 11.10.1, respectively. <lb/></div> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 651] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <div type="annex">o Section 11.7.2 (and included subsections) of RFC5661 [60] are to <lb/>be deleted. <lb/>o Sections 11.7.3, 11.7.4. 11.7.5, 11.7.5.1, and 11.7.6 of RFC5661 <lb/>[60] are to be replaced by Sections 11.10.2, 11.10.3, 11.10.4, <lb/>11.10.4.1, and 11.10.5 respectively in this document. <lb/>o Section 11.7.7 of RFC5661 [60] is to be replaced by <lb/>Section 11.10.9 This sub-section has been moved to the end of the <lb/>section dealing with file system transitions. <lb/>o Sections 11.7.8, 11.7.9. and 11.7.10 of RFC5661 [60] are to be <lb/>replaced by Sections 11.10.6, 11.10.7, and 11.10.8 respectively in <lb/>this document. <lb/>B.1.3. Updates to treatment of fs_locations_info <lb/>Various elements of the fs_locations_info attribute contain <lb/>information that applies to either a specific file system replica or <lb/>to a network path or set of network paths used to access such a <lb/>replica. The existing treatment of fs_locations info (in <lb/>Section 11.10 of RFC5661 [60]) does not clearly distinguish these <lb/>cases, in part because the document did not clearly distinguish <lb/>replicas from the paths used to access them. <lb/>In addition, special clarification needed to be provided with regard <lb/>to the following fields: <lb/>o With regard to the handling of FSLI4GF_GOING, it needs to be made <lb/>clear that this only applies to the unavailability of a replica <lb/>rather than to a path to access a replica. <lb/>o In describing the appropriate value for a server to use for <lb/>fli_valid_for, it needs to be made clear that there is no need for <lb/>the client to frequently fetch the fs_locations_info value to be <lb/>prepared for shifts in trunking patterns. <lb/>o Clarification of the rules for extensions to the fls_info needs to <lb/>be provided. The existing treatment reflects the extension model <lb/>in effect at the time RFC5661 [60] was written, and needed to be <lb/>updated in accordance with the extension model described in <lb/>RFC8178 [61]. <lb/>B.2. Revisions Made to Operations in [RFC5661] <lb/>Revised descriptions were needed to address issues that arose in <lb/>effecting necessary changes to multi-server namespace features. <lb/></div> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 652] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <div type="annex">o The existing treatment of EXCHANGE_ID (in Section 18.35 of RFC5661 <lb/>[60]) assumes that client IDs cannot be created/ confirmed other <lb/>than by the EXCHANGE_ID and CREATE_SESSION operations. Also, the <lb/>necessary use of EXCHANGE_ID in recovery from migration and <lb/>related situations is not addressed clearly. A revised treatment <lb/>of EXCHANGE_ID is necessary and it appears in Section 18.35 while <lb/>the specific differences between it and the treatment within [60] <lb/>are explained in Appendix B.2.1 below. <lb/>o The existing treatment of RECLAIM_COMPLETE in section 18.51 of <lb/>RFC5661 [60]) is not sufficiently clear about the purpose and use <lb/>of the rca_one_fs and how the server is to deal with inappropriate <lb/>values of this argument. Because the resulting confusion raises <lb/>interoperability issues, a new treatment of RECLAIM_COMPLETE is <lb/>necessary and it appears in Section 18.51 below while the specific <lb/>differences between it and the treatment within RFC5661 [60] are <lb/>discussed in Appendix B.2.2 below. In addition, the definitions <lb/>of the reclaim-related errors receive an updated treatment in <lb/>Section 15.1.9 to reflect the fact that there are multiple <lb/>contexts for lock reclaim operations. <lb/>B.2.1. Revision to Treatment of EXCHANGE_ID <lb/>There are a number of issues in the original treatment of EXCHANGE_ID <lb/>(in RFC5661 [60]) that cause problems for Transparent State Migration <lb/>and for the transfer of access between different network access paths <lb/>to the same file system instance. <lb/>These issues arise from the fact that this treatment was written, <lb/>o Assuming that a client ID can only become known to a server by <lb/>having been created by executing an EXCHANGE_ID, with confirmation <lb/>of the ID only possible by execution of a CREATE_SESSION. <lb/>o Considering the interactions between a client and a server only <lb/>occurring on a single network address <lb/>As these assumptions have become invalid in the context of <lb/>Transparent State Migration and active use of trunking, the treatment <lb/>has been modified in several respects. <lb/>o It had been assumed that an EXCHANGED_ID executed when the server <lb/>is already aware of a given client instance must be either <lb/>updating associated parameters (e.g. with respect to callbacks) or <lb/>a lingering retransmission to deal with a previously lost reply. <lb/>As result, any slot sequence returned by that operation would be <lb/>of no use. The existing treatment goes so far as to say that it <lb/>"MUST NOT" be used, although this usage is not in accord with [1]. <lb/></div> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 653] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <div type="annex">This created a difficulty when an EXCHANGE_ID is done after <lb/>Transparent State Migration since that slot sequence would need to <lb/>be used in a subsequent CREATE_SESSION. <lb/>In the updated treatment, CREATE_SESSION is a way that client IDs <lb/>are confirmed but it is understood that other ways are possible. <lb/>The slot sequence can be used as needed and cases in which it <lb/>would be of no use are appropriately noted. <lb/>o It was assumed that the only functions of EXCHANGE_ID were to <lb/>inform the server of the client, create the client ID, and <lb/>communicate it to the client. When multiple simultaneous <lb/>connections are involved, as often happens when trunking, that <lb/>treatment was inadequate in that it ignored the role of <lb/>EXCHANGE_ID in associating the client ID with the connection on <lb/>which it was done, so that it could be used by a subsequent <lb/>CREATE_SESSSION, whose parameters do not include an explicit <lb/>client ID. <lb/>The new treatment explicitly discusses the role of EXCHANGE_ID in <lb/>associating the client ID with the connection so it can be used by <lb/>CREATE_SESSION and in associating a connection with an existing <lb/>session. <lb/>The new treatment can be found in Section 18.35 below. It is <lb/>intended to supersede the treatment in Section 18.35 of RFC5661 [60]. <lb/>Publishing a complete replacement for Section 18.35 allows the <lb/>corrected definition to be read as a whole, in place of the one in <lb/>RFC5661 [60]. <lb/>B.2.2. Revision to Treatment of RECLAIM_COMPLETE <lb/>The following changes were made to the treatment of RECLAIM_COMPLETE <lb/>in RFC5661 [60] to arrive at the treatment in Section 18.51. <lb/>o In a number of places the text is made more explicit about the <lb/>purpose of rca_one_fs and its connection to file system migration. <lb/>o There is a discussion of situations in which particular forms of <lb/>RECLAIM_COMPLETE would need to be done. <lb/>o There is a discussion of interoperability issues that result from <lb/>implementations that may have arisen due to the lack of clarity of <lb/>the previous treatment of RECLAIM_COMPLETE. <lb/></div> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 654] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <div type="annex">B.3. Revisions Made to Error Definitions in [RFC5661] <lb/>The new handling of various situations required revisions of some <lb/>existing error definition: <lb/>o Because of the need to appropriately address trunking-related <lb/>issues, some uses of the term "replica" in RFC5661 [60] have <lb/>become problematic since a shift in network access paths was <lb/>considered to be a shift to a different replica. As a result, the <lb/>existing definition of NFS4ERR_MOVED (in Section 15.1.2.4 of <lb/>RFC5661 [60]) needs to be updated to reflect the different <lb/>handling of unavailability of a particular fs via a specific <lb/>network address. <lb/>Since such a situation is no longer considered to constitute <lb/>unavailability of a file system instance, the description needs to <lb/>change even though the set of circumstances in which it is to be <lb/>returned remain the same. The new paragraph explicitly recognizes <lb/>that a different network address might be used, while the previous <lb/>description, misleadingly, treated this as a shift between two <lb/>replicas while only a single file system instance might be <lb/>involved. The updated description appears in Section 15.1.2.4 <lb/>below. <lb/>o Because of the need to accommodate use of fs-specific grace <lb/>periods, it is necessary to clarify some of the error definitions <lb/>of reclaim-related errors in Section 15 of RFC5661 [60], so the <lb/>text applies properly to reclaims for all types of grace periods. <lb/>The updated descriptions appear within Section 15.1.9 below. <lb/>B.4. Other Revisions Made to [RFC5661] <lb/>Beside the major reworking of Section 11 and the associated revisions <lb/>to existing operations and errors, there are a number of related <lb/>changes that are necessary: <lb/>o The summary that appeared in Section 1.7.3.3 of RFC5661 [60] was <lb/>revised to reflect the changes made in the revised Section 11 <lb/>above. The updated summary appears as Section 1.8.3.3 above. <lb/>o The discussion of server scope which appeared in Section 2.10.4 of <lb/>RFC5661 [60] needed to be replaced, since the previous text <lb/>appears to require a level of inter-server co-ordination <lb/>incompatible with its basic function of avoiding the need for a <lb/>globally uniform means of assigning server_owner values. A <lb/>revised treatment appears in Section 2.10.4. <lb/></div> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 655] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <div type="annex">o The discussion of trunking which appeared in Section 2.10.5 of <lb/>RFC5661 [60] needed to be revised, to more clearly explain the <lb/>multiple types of trunking supporting and how the client can be <lb/>made aware of the existing trunking configuration. In addition <lb/>the last paragraph (exclusive of sub-sections) of that section, <lb/>dealing with server_owner changes, is literally true, it has been <lb/>a source of confusion. Since the existing paragraph can be read <lb/>as suggesting that such changes be dealt with non-disruptively, <lb/>the issue needs to be clarified in the revised section, which <lb/>appears in Section 2.10.5 <lb/></div> + + <div type="annex">Appendix C. Security Issues that Need to be Addressed <lb/>The following issues in the treatment of security within the NFSv4.1 <lb/>specification need to be addressed: <lb/>o The Security Considerations Section of RFC5661 [60] is not written <lb/>in accord with RFC3552 [66] (also BCP72). Of particular concern <lb/>is the fact that the section does not contain a threat analysis. <lb/>o Initial analysis of the existing security issues with NFSv4.1 has <lb/>made it likely that a revised Security Considerations Section for <lb/>the existing protocol (one containing a threat analysis) would be <lb/>likely to conclude that NFSv4.1 does not meet the goal of secure <lb/>use on the internet. <lb/>The Security Considerations Section of this document (in Section 21) <lb/>has not been thoroughly revised to correct the difficulties mentioned <lb/>above. Instead, it has been modified to take proper account of <lb/>issues related to the multi-server namespace features discussed in <lb/>Section 11, leaving the incomplete discussion and security weaknesses <lb/>pretty much as they were. <lb/>The following major security issues need to be addressed in a <lb/>satisfactory fashion before an updated Security Considerations <lb/>section can be published as part of a bis document for NFSv4.1: <lb/>o The continued use of AUTH_SYS and the security exposures it <lb/>creates needs to be addressed. Addressing this issue must not be <lb/>limited to the questions of whether the designation of this as <lb/>OPTIONAL was justified and whether it should be changed. <lb/>In any event, it may not be possible, at this point, to correct <lb/>the security problems created by continued use of AUTH_SYS simply <lb/>by revising this designation. <lb/></div> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 656] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <div type="annex">o The lack of attention within the protocol to the possibility of <lb/>pervasive monitoring attacks such as those described in RFC7258 <lb/>[65] (also BCP188). <lb/>In that connection, the use of CREATE_SESSION without privacy <lb/>protection needs to be addressed as it exposes the session ID to <lb/>view by an attacker. This is worrisome as this is precisely the <lb/>type of protocol artifact alluded to in RFC7258, which can enable <lb/>further mischief on the part of the attacker as it enables denial-<lb/>of-service attacks which can be executed effectively with only a <lb/>single, normally low-value, credential, even when RPCSEC_GSS <lb/>authentication is in use. <lb/>o The lack of effective use of privacy and integrity, even where the <lb/>infrastructure to support use of RPCSEC_GSS in present, needs to <lb/>be addressed. <lb/>In light of the security exposures that this situation creates, it <lb/>is not enough to define a protocol that could, with the provision <lb/>of sufficient resources, address the problem. Instead, what is <lb/>needed is a way to provide the necessary security, with very <lb/>limited performance costs and without requiring security <lb/>infrastructure that experience has shown is difficult for many <lb/>clients and servers to provide. <lb/>In trying to provide a major security upgrade for a deployed protocol <lb/>such as NFSv4.1, the working group, and the internet community is <lb/>likely to find itself dealing with a number of considerations such as <lb/>the following: <lb/>o The need to accommodate existing deployments of existing protocols <lb/>as specified previously in existing Proposed Standards. <lb/>o The difficulty of effecting changes to existing interoperating <lb/>implementations. <lb/>o The difficulty of making changes to NFSv4 protocols other than <lb/>those in the form of OPTIONAL extensions. <lb/>o The tendency of those responsible for existing NFSv4 deployments <lb/>to ignore security flaws in the context of local area networks <lb/>under the mistaken impression that network isolation provides, in <lb/>and of itself, isolation from all potential attackers. <lb/>Given that the difficulties mentioned above apply to minor version <lb/>zero as well, it may make sense to deal with these security issues in <lb/>a common document applying to all NFSv4 minor versions. If that <lb/>approach is taken the, Security Considertions section of an eventual <lb/></div> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 657] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <div type="annex">NFv4.1 bis document would reference that common document and the <lb/>defining RFCs for other minor versions might do so as well. <lb/></div> + + <div type="acknowledgement">Appendix D. Acknowledgments <lb/>D.1. Acknowledgments for this Update <lb/>The authors wish to acknowledge the important role of Andy Adamson of <lb/>Netapp in clarifying the need for trunking discovery functionality, <lb/>and exploring the role of the file system location attributes in <lb/>providing the necessary support. <lb/>The authors wish to thank Tom Haynes of Hammerspace for drawing our <lb/>attention to the fact that internationalization and security might <lb/>best be handled in documents dealing with such protocol issues as <lb/>they apply to all NFSv4 minor versions. <lb/>The authors also wish to acknowledge the work of Xuan Qi of Oracle <lb/>with NFSv4.1 client and server prototypes of transparent state <lb/>migration functionality. <lb/>The authors wish to thank others that brought attention to important <lb/>issues. The comments of Trond Myklebust of Primary Data related to <lb/>trunking helped to clarify the role of DNS in trunking discovery. <lb/>Rick Macklem's comments brought attention to problems in the handling <lb/>of the per-fs version of RECLAIM_COMPLETE. <lb/>The authors wish to thank Olga Kornievskaia of Netapp for her helpful <lb/>review comments. <lb/>D.2. Acknowledgments for RFC5661 <lb/>The initial text for the SECINFO extensions were edited by Mike <lb/>Eisler with contributions from Peng Dai, Sergey Klyushin, and Carl <lb/>Burnett. <lb/>The initial text for the SESSIONS extensions were edited by Tom <lb/>Talpey, Spencer Shepler, Jon Bauman with contributions from Charles <lb/>Antonelli, Brent Callaghan, Mike Eisler, John Howard, Chet Juszczak, <lb/>Trond Myklebust, Dave Noveck, John Scott, Mike Stolarchuk, and Mark <lb/>Wittle. <lb/>Initial text relating to multi-server namespace features, including <lb/>the concept of referrals, were contributed by Dave Noveck, Carl <lb/>Burnett, and Charles Fan with contributions from Ted Anderson, Neil <lb/>Brown, and Jon Haswell. <lb/></div> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 658] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <div type="annex">The initial text for the Directory Delegations support were <lb/>contributed by Saadia Khan with input from Dave Noveck, Mike Eisler, <lb/>Carl Burnett, Ted Anderson, and Tom Talpey. <lb/>The initial text for the ACL explanations were contributed by Sam <lb/>Falkner and Lisa Week. <lb/>The pNFS work was inspired by the NASD and OSD work done by Garth <lb/>Gibson. Gary Grider has also been a champion of high-performance <lb/>parallel I/O. Garth Gibson and Peter Corbett started the pNFS effort <lb/>with a problem statement document for the IETF that formed the basis <lb/>for the pNFS work in NFSv4.1. <lb/>The initial text for the parallel NFS support was edited by Brent <lb/>Welch and Garth Goodson. Additional authors for those documents were <lb/>Benny Halevy, David Black, and Andy Adamson. Additional input came <lb/>from the informal group that contributed to the construction of the <lb/>initial pNFS drafts; specific acknowledgment goes to Gary Grider, <lb/>Peter Corbett, Dave Noveck, Peter Honeyman, and Stephen Fridella. <lb/>Fredric Isaman found several errors in draft versions of the ONC RPC <lb/>XDR description of the NFSv4.1 protocol. <lb/>Audrey Van Belleghem provided, in numerous ways, essential co-<lb/>ordination and management of the process of editing the specification <lb/>documents. <lb/>Richard Jernigan gave feedback on the file layout's striping pattern <lb/>design. <lb/>Several formal inspection teams were formed to review various areas <lb/>of the protocol. All the inspections found significant errors and <lb/> room for improvement. NFSv4.1's inspection teams were: <lb/>o ACLs, with the following inspectors: Sam Falkner, Bruce Fields, <lb/>Rahul Iyer, Saadia Khan, Dave Noveck, Lisa Week, Mario Wurzl, and <lb/>Alan Yoder. <lb/>o Sessions, with the following inspectors: William Brown, Tom <lb/>Doeppner, Robert Gordon, Benny Halevy, Fredric Isaman, Rick <lb/>Macklem, Trond Myklebust, Dave Noveck, Karen Rochford, John Scott, <lb/>and Peter Shah. <lb/>o Initial pNFS inspection, with the following inspectors: Andy <lb/>Adamson, David Black, Mike Eisler, Marc Eshel, Sam Falkner, Garth <lb/>Goodson, Benny Halevy, Rahul Iyer, Trond Myklebust, Spencer <lb/>Shepler, and Lisa Week. <lb/></div> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 659] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + <div type="annex">o Global namespace, with the following inspectors: Mike Eisler, Dan <lb/>Ellard, Craig Everhart, Fredric Isaman, Trond Myklebust, Dave <lb/>Noveck, Theresa Raj, Spencer Shepler, Renu Tewari, and Robert <lb/>Thurlow. <lb/>o NFSv4.1 file layout type, with the following inspectors: Andy <lb/>Adamson, Marc Eshel, Sam Falkner, Garth Goodson, Rahul Iyer, Trond <lb/>Myklebust, and Lisa Week. <lb/>o NFSv4.1 locking and directory delegations, with the following <lb/>inspectors: Mike Eisler, Pranoop Erasani, Robert Gordon, Saadia <lb/>Khan, Eric Kustarz, Dave Noveck, Spencer Shepler, and Amy Weaver. <lb/>o EXCHANGE_ID and DESTROY_CLIENTID, with the following inspectors: <lb/>Mike Eisler, Pranoop Erasani, Robert Gordon, Benny Halevy, Fredric <lb/>Isaman, Saadia Khan, Ricardo Labiaga, Rick Macklem, Trond <lb/>Myklebust, Spencer Shepler, and Brent Welch. <lb/>o Final pNFS inspection, with the following inspectors: Andy <lb/>Adamson, Mike Eisler, Mark Eshel, Sam Falkner, Jason Glasgow, <lb/>Garth Goodson, Robert Gordon, Benny Halevy, Dean Hildebrand, Rahul <lb/>Iyer, Suchit Kaura, Trond Myklebust, Anatoly Pinchuk, Spencer <lb/>Shepler, Renu Tewari, Lisa Week, and Brent Welch. <lb/>A review team worked together to generate the tables of assignments <lb/>of error sets to operations and make sure that each such assignment <lb/>had two or more people validating it. Participating in the process <lb/>were Andy Adamson, Mike Eisler, Sam Falkner, Garth Goodson, Robert <lb/>Gordon, Trond Myklebust, Dave Noveck, Spencer Shepler, Tom Talpey, <lb/>Amy Weaver, and Lisa Week. <lb/>Jari Arkko, David Black, Scott Bradner, Lisa Dusseault, Lars Eggert, <lb/>Chris Newman, and Tim Polk provided valuable review and guidance. <lb/>Olga Kornievskaia found several errors in the SSV specification. <lb/>Ricardo Labiaga found several places where the use of RPCSEC_GSS was <lb/>underspecified. <lb/>Those who provided miscellaneous comments include: Andy Adamson, <lb/>Sunil Bhargo, Alex Burlyga, Pranoop Erasani, Bruce Fields, Vadim <lb/>Finkelstein, Jason Goldschmidt, Vijay K. Gurbani, Sergey Klyushin, <lb/>Ricardo Labiaga, James Lentini, Anshul Madan, Daniel Muntz, Daniel <lb/>Picken, Archana Ramani, Jim Rees, Mahesh Siddheshwar, Tom Talpey, and <lb/>Peter Varga. <lb/></div> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 660] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>NFSv4.1 with Namespace Update <lb/>August 2019 <lb/></note> + + Author's Address <lb/> + + <front>David Noveck (editor) <lb/>NetApp <lb/>1601 Trapelo Road, Suite 16 <lb/>Waltham, MA 02451 <lb/>USA <lb/>Phone: +1-781-768-5347 <lb/>EMail: dnoveck@netapp.com <lb/>Charles Lever <lb/>Oracle Corporation <lb/>1015 Granger Avenue <lb/>Ann Arbor, MI 48104 <lb/>United States of America <lb/>Phone: +1 248 614 5091 <lb/>EMail: chuck.lever@oracle.com <lb/></front> + + <note place="footnote">Noveck & Lever <lb/>Expires February 5, 2020 <lb/></note> + + <page>[Page 661] </page> + + + </text> +</tei> diff --git a/grobid-trainer/resources/dataset/segmentation/sdo/ietf/corpus/tei/XP015134635.training.segmentation.tei.xml b/grobid-trainer/resources/dataset/segmentation/sdo/ietf/corpus/tei/XP015134635.training.segmentation.tei.xml new file mode 100644 index 0000000000..d98cf7b8f0 --- /dev/null +++ b/grobid-trainer/resources/dataset/segmentation/sdo/ietf/corpus/tei/XP015134635.training.segmentation.tei.xml @@ -0,0 +1,227 @@ +<?xml version="1.0" ?> +<tei xml:space="preserve"> + <teiHeader> + <fileDesc xml:id="0"/> + </teiHeader> + <text xml:lang="en"> + <front>server date 20190806; downloaded by EPO on 20190807 <lb/>Network Working Group <lb/>U. Carion <lb/>Internet-Draft <lb/>August 05, 2019 <lb/>Intended status: Informational <lb/>Expires: February 6, 2020 <lb/>JSON Schema Language <lb/>draft-ucarion-json-schema-language-00 <lb/>Abstract <lb/>JSON Schema Language (JSL) is a portable method for describing the <lb/>format of JavaScript Object Notation (JSON) data and the errors <lb/>associated with ill-formed data. JSL is designed to enable code <lb/>generation from schemas. <lb/>Status of This Memo <lb/>This Internet-Draft is submitted in full conformance with the <lb/>provisions of BCP 78 and BCP 79. <lb/>Internet-Drafts are working documents of the Internet Engineering <lb/>Task Force (IETF). Note that other groups may also distribute <lb/>working documents as Internet-Drafts. The list of current Internet-<lb/>Drafts is at https://datatracker.ietf.org/drafts/current/. <lb/>Internet-Drafts are draft documents valid for a maximum of six months <lb/>and may be updated, replaced, or obsoleted by other documents at any <lb/>time. It is inappropriate to use Internet-Drafts as reference <lb/>material or to cite them other than as "work in progress." <lb/>This Internet-Draft will expire on February 6, 2020. <lb/>Copyright Notice <lb/>Copyright (c) 2019 IETF Trust and the persons identified as the <lb/>document authors. All rights reserved. <lb/>This document is subject to BCP 78 and the IETF Trust's Legal <lb/>Provisions Relating to IETF Documents <lb/>(https://trustee.ietf.org/license-info) in effect on the date of <lb/>publication of this document. Please review these documents <lb/>carefully, as they describe your rights and restrictions with respect <lb/>to this document. Code Components extracted from this document must <lb/>include Simplified BSD License text as described in Section 4.e of <lb/>the Trust Legal Provisions and are provided without warranty as <lb/>described in the Simplified BSD License. <lb/></front> + + <note place="footnote">Carion <lb/>Expires February 6, 2020 <lb/></note> + + <page>[Page 1] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>JSON Schema Language <lb/>August 2019 <lb/></note> + + <div type="toc">Table of Contents <lb/>1. Introduction . . . . . . . . . . . . . . . . . . . . . . . . <lb/>2 <lb/>1.1. Terminology . . . . . . . . . . . . . . . . . . . . . . . <lb/>3 <lb/>2. Syntax . . . . . . . . . . . . . . . . . . . . . . . . . . . <lb/>3 <lb/>3. Semantics . . . . . . . . . . . . . . . . . . . . . . . . . . <lb/>9 <lb/>3.1. Strict instance semantics . . . . . . . . . . . . . . . . <lb/>9 <lb/>3.2. Errors . . . . . . . . . . . . . . . . . . . . . . . . . 10 <lb/>3.3. Forms . . . . . . . . . . . . . . . . . . . . . . . . . . 10 <lb/>3.3.1. Empty . . . . . . . . . . . . . . . . . . . . . . . . 11 <lb/>3.3.2. Ref . . . . . . . . . . . . . . . . . . . . . . . . . 11 <lb/>3.3.3. Type . . . . . . . . . . . . . . . . . . . . . . . . 12 <lb/>3.3.4. Enum . . . . . . . . . . . . . . . . . . . . . . . . 15 <lb/>3.3.5. Elements . . . . . . . . . . . . . . . . . . . . . . 15 <lb/>3.3.6. Properties . . . . . . . . . . . . . . . . . . . . . 16 <lb/>3.3.7. Values . . . . . . . . . . . . . . . . . . . . . . . 18 <lb/>3.3.8. Discriminator . . . . . . . . . . . . . . . . . . . . 19 <lb/>4. IANA Considerations . . . . . . . . . . . . . . . . . . . . . 22 <lb/>5. Security Considerations . . . . . . . . . . . . . . . . . . . 23 <lb/>6. Normative References . . . . . . . . . . . . . . . . . . . . 23 <lb/>Appendix A. Comparison with CDDL . . . . . . . . . . . . . . . . 23 <lb/>Acknowledgments . . . . . . . . . . . . . . . . . . . . . . . . . 26 <lb/>Author's Address . . . . . . . . . . . . . . . . . . . . . . . . 26 <lb/></div> + + <body>1. Introduction <lb/>This document describes a schema language for JSON [RFC8259] called <lb/>JSON Schema Language (JSL). <lb/>The goals of JSL are to: <lb/>o Provide an unambiguous description of the overall structure of a <lb/>JSON document. <lb/>o Be able to describe common JSON datatypes and structures. <lb/>o Provide a single format that is readable and editable by both <lb/>humans and machines, and which can be embedded within other JSON <lb/>documents. <lb/>o Enable code generation from schemas. <lb/>o Provide a standardized format for errors when data does not <lb/>conform with a schema. <lb/>JSL is intentionally designed as a rather minimal schema language. <lb/>For example, JSL is homoiconic (it both describes, and is written in, <lb/>JSON) yet is incapable of describing in detail its own structure. By <lb/></body> + + <note place="footnote">Carion <lb/>Expires February 6, 2020 <lb/></note> + + <page>[Page 2] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>JSON Schema Language <lb/>August 2019 <lb/></note> + + <body>keeping the expressiveness of the schema language minimal, JSL makes <lb/>code generation and standardized errors easier to implement. <lb/>It is expected that for many use-cases, a schema language of JSL's <lb/>expressiveness is sufficient. Where a more expressive language is <lb/>required, alternatives exist in CDDL ([RFC8610], Concise Data <lb/>Definition Language) and others. <lb/>This document has the following structure: <lb/>The syntax of JSL is defined in Section 2. Section 3 describes the <lb/>semantics of JSL; this includes determining whether some data <lb/>satisfies a schema and what errors should be produced when the data <lb/>is unsatisfactory. Appendix A presents various JSL schemas and their <lb/>CDDL equivalents. <lb/>1.1. Terminology <lb/>The key words "MUST", "MUST NOT", "REQUIRED", "SHALL", "SHALL NOT", <lb/>"SHOULD", "SHOULD NOT", "RECOMMENDED", "NOT RECOMMENDED", "MAY", and <lb/>"OPTIONAL" in this document are to be interpreted as described in <lb/>BCP 14 [RFC2119] [RFC8174] when, and only when, they appear in all <lb/>capitals, as shown here. These words may also appear in this <lb/>document in lower case as plain English words, absent their normative <lb/>meanings. <lb/>The term "JSON Pointer", when it appears in this document, is to be <lb/>understood as it is defined in [RFC6901]. <lb/>The terms "object", "member", "array", "number", "name", and "string" <lb/>in this document are to be interpreted as described in [RFC8259]. <lb/>The term "instance", when it appears in this document, refers to a <lb/>JSON value being validated against a JSL schema. <lb/>2. Syntax <lb/>This section describes when a JSON document is a correct JSL schema. <lb/>JSL schemas may recursively contain other schemas. In this document, <lb/>a "root schema" is one which is not contained within another schema, <lb/>i.e. it is "top level". <lb/>A correct JSL schema MUST match the "schema" CDDL rule described in <lb/>this section. A JSL schema is a JSON object taking on an appropriate <lb/>form. It may optionally contain definitions (a mapping from names to <lb/>schemas) and additional data. <lb/></body> + + <note place="footnote">Carion <lb/>Expires February 6, 2020 <lb/></note> + + <page>[Page 3] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>JSON Schema Language <lb/>August 2019 <lb/></note> + + <body>schema = { <lb/>form, <lb/>? definitions: { * tstr => schema } <lb/>} <lb/>Figure 1: CDDL Definition of a Schema <lb/>This is not a correct JSL schema, as its "definitions" object <lb/>contains a number, which is not a schema: <lb/>{ "definitions": { "foo": 3 }} <lb/>JSL schemas can take on one of eight forms. These forms are defined <lb/>so as to be mutually exclusive; a schema cannot satisfy multiple <lb/>forms at once. <lb/>form = empty / <lb/>ref / <lb/>type / <lb/>enum / <lb/>elements / <lb/>properties / <lb/>values / <lb/>discriminator <lb/>Figure 2: CDDL Definition of the Schema Forms <lb/>The first form, "empty", is trivial. It is meant for matching any <lb/>instance: <lb/>empty = {} <lb/>Figure 3: CDDL Definition of the Empty Form <lb/>Thus, this is a correct schema: <lb/>{} <lb/>The second form, "ref", is for when a schema is meant to be defined <lb/>in terms of something in "definitions": <lb/>ref = { ref: tstr } <lb/>Figure 4: CDDL Definition of the Ref Form <lb/>For a schema to be correct, the "ref" value must refer to one of the <lb/>definitions found at the root level of the schema it appears in. <lb/>More formally, for a schema _S_ of the "ref" form: <lb/></body> + + <note place="footnote">Carion <lb/>Expires February 6, 2020 <lb/></note> + + <page>[Page 4] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>JSON Schema Language <lb/>August 2019 <lb/></note> + + <body>o Let _B_ be the root schema containing the schema, or the schema <lb/>itself if it is a root schema. <lb/>o Let _R_ be the value of the member of _S_ with the name "ref". <lb/>If the schema is correct, then _B_ must have a member _D_ with the <lb/>name "definitions", and _D_ must contain a member whose name equals <lb/>_R_. <lb/>Here is a correct example of "ref" being used to avoid re-defining <lb/>the same thing twice: <lb/>{ <lb/>"definitions": { <lb/>"coordinates": { <lb/>"properties": { <lb/>"lat": { "type": "number" }, <lb/>"lng": { "type": "number" } <lb/>} <lb/>} <lb/>}, <lb/>"properties": { <lb/>"user_location": { "ref": "coordinates" }, <lb/>"server_location": { "ref": "coordinates" } <lb/>} <lb/>} <lb/>However, this schema is incorrect, as it refers to a definition that <lb/>doesn't exist: <lb/>{ <lb/>"definitions": { "foo": { "type": "number" }}, <lb/>"ref": "bar" <lb/>} <lb/>This schema is incorrect as well, as it refers to a definition that <lb/>doesn't exist at the root level. The non-root definition is <lb/>immaterial: <lb/>{ <lb/>"definitions": { "foo": { "type": "number" }}, <lb/>"elements": { <lb/>"definitions": { "bar": { "type": "number" }}, <lb/>"ref": "bar" <lb/>} <lb/>} <lb/></body> + + <note place="footnote">Carion <lb/>Expires February 6, 2020 <lb/></note> + + <page>[Page 5] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>JSON Schema Language <lb/>August 2019 <lb/></note> + + <body>The third form, "type", constrains instances to have a particular <lb/>primitive type. The precise meaning of each of the primitive types <lb/>is described in Section 3. <lb/>type = { type: "boolean" / num-type / "string" / "timestamp" } <lb/>num-type = "number" / "float32" / "float64" / <lb/>"int8" / "uint8" / "int16" / "uint16" / "int32" / "uint32" <lb/>Figure 5: CDDL Definition of the Type Form <lb/>For example, this schema constrains instances to be strings that are <lb/>correct [RFC3339] timestamps: <lb/>{ "type": "timestamp" } <lb/>The fourth form, "enum", describes instances whose value must be one <lb/>of a finite, predetermined set of values: <lb/>enum = { enum: [+ tstr] } <lb/>Figure 6: CDDL Definition of the Enum Form <lb/>The values within "[+ tstr]" MUST NOT contain duplicates. Thus, the <lb/>following is a correct schema: <lb/>{ "enum": ["IN_PROGRESS", "DONE", "CANCELED"] } <lb/>But this is not a correct schema, as "B" is duplicated: <lb/>{ "enum": ["A", "B", "B"] } <lb/>The fifth form, "elements", describes instances that must be arrays. <lb/>A further sub-schema describes the elements of the array. <lb/>elements = { elements: schema } <lb/>Figure 7: CDDL Definition of the Elements Form <lb/>Here is a schema describing an array of [RFC3339] timestamps: <lb/>{ "elements": { "type": "timestamp" }} <lb/>The sixth form, "properties", describes JSON objects being used as a <lb/>"struct". A schema of this form specifies the names of required and <lb/>optional properties, as well as the schemas each of those properties <lb/>must satisfy: <lb/></body> + + <note place="footnote">Carion <lb/>Expires February 6, 2020 <lb/></note> + + <page>[Page 6] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>JSON Schema Language <lb/>August 2019 <lb/></note> + + <body>; One of properties or optionalProperties may be omitted, <lb/>; but not both. <lb/>properties = with-properties / with-optional-properties <lb/>with-properties = { <lb/>properties: * tstr => schema, <lb/>? optionalProperties * tstr => schema <lb/>} <lb/>with-optional-properties = { <lb/>? properties: * tstr => schema, <lb/>optionalProperties: * tstr => schema <lb/>} <lb/>Figure 8: CDDL Definition of the Properties Form <lb/>If a schema has both a member named "properties" (with value _P_) and <lb/>another member named "optionalProperties" (with value _O_), then _O_ <lb/>and _P_ MUST NOT have any member names in common. This is to prevent <lb/>ambiguity as to whether a property is optional or required. <lb/>Thus, this is not a correct schema, as "confusing" appears in both <lb/>"properties" and "optionalProperties": <lb/>{ <lb/>"properties": { "confusing": {} }, <lb/>"optionalProperties": { "confusing": {} } <lb/>} <lb/>Here is a correct schema, describing a paginated list of users: <lb/>{ <lb/>"properties": { <lb/>"users": { <lb/>"elements": { <lb/>"properties": { <lb/>"id": { "type": "string" }, <lb/>"name": { "type": "string" }, <lb/>"create_time": { "type": "timestamp" } <lb/>}, <lb/>"optionalProperties": { <lb/>"delete_time": { "type": "timestamp" } <lb/>} <lb/>} <lb/>}, <lb/>"next_page_token": { "type": "string" } <lb/>} <lb/>} <lb/></body> + + <note place="footnote">Carion <lb/>Expires February 6, 2020 <lb/></note> + + <page>[Page 7] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>JSON Schema Language <lb/>August 2019 <lb/></note> + + <body>The seventh form, "values", describes JSON objects being used as an <lb/>associative array. A schema of this form specifies the form all <lb/>member values must satisfy, but places no constraints on the member <lb/>names: <lb/>values = { values: * tstr => schema } <lb/>Figure 9: CDDL Definition of the Values Form <lb/>Thus, this is a correct schema, describing a mapping from strings to <lb/>numbers: <lb/>{ "values": { "type": "number" }} <lb/>Finally, the eighth form, "discriminator", describes JSON objects <lb/>being used as a discriminated union. A schema of this form specifies <lb/>the "tag" (or "discriminator") of the union, as well as a mapping <lb/>from tag values to the appropriate schema to use. <lb/>; Note well: the values of mapping are of the properties form. <lb/>discriminator = { tag: tstr, mapping: * tstr => properties } <lb/>Figure 10: CDDL Definition of the Discriminator Form <lb/>To prevent ambiguous or unsatisfiable contstraints on the "tag" of a <lb/>discriminator, an additional constraint on schemas of the <lb/>discriminator form exists. For schemas of the discriminator form: <lb/>o Let _D_ be the schema member with the name "discriminator". <lb/>o Let _T_ be the member of _D_ with the name "tag". <lb/>o Let _M_ be the member of _D_ with the name "mapping". <lb/>If the schema is correct, then all member values _S_ of _M_ will be <lb/>schemas of the "properties" form. For each member _P_ of _S_ whose <lb/>name equals "properties" or "optionalProperties", _P_'s value, which <lb/>must be an object, MUST NOT contain any members whose name equals <lb/>_T_'s value. <lb/>Thus, this is an incorrect schema, as "event_type" is both the value <lb/>of "tag" and a member name in one of the "mapping" member <lb/>"properties": <lb/></body> + + <note place="footnote">Carion <lb/>Expires February 6, 2020 <lb/></note> + + <page>[Page 8] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>JSON Schema Language <lb/>August 2019 <lb/></note> + + <body>{ <lb/>"tag": "event_type", <lb/>"mapping": { <lb/>"is_event_type_a_string_or_a_number?": { <lb/>"properties": { "event_type": { "type": "number" }} <lb/>} <lb/>} <lb/>} <lb/>However, this is a correct schema, describing a pattern of data <lb/>common in JSON-based messaging systems: <lb/>{ <lb/>"tag": "event_type", <lb/>"mapping": { <lb/>"account_deleted": { <lb/>"properties": { <lb/>"account_id": { "type": "string" } <lb/>} <lb/>}, <lb/>"account_payment_plan_changed": { <lb/>"properties": { <lb/>"account_id": { "type": "string" }, <lb/>"payment_plan": { "enum": ["FREE", "PAID"] } <lb/>}, <lb/>"optionalProperties": { <lb/>"upgraded_by": { "type": "string" } <lb/>} <lb/>} <lb/>} <lb/>} <lb/>3. Semantics <lb/>This section describes when an instance is valid against a correct <lb/>JSL schema, and the standardized errors to produce when an instance <lb/>is invalid. <lb/>3.1. Strict instance semantics <lb/>Users will have different desired behavior with respect to <lb/>"unspcecified" members in an instance. For example: <lb/>{ "properties": { "a": { "type": "string" }}} <lb/>Some users may expect that {"a": "foo", "b": "bar"} satisfies the <lb/>above schema. Others may disagree. JSL addresses this point of <lb/></body> + + <note place="footnote">Carion <lb/>Expires February 6, 2020 <lb/></note> + + <page>[Page 9] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>JSON Schema Language <lb/>August 2019 <lb/></note> + + <body>contention by leaving it to implementations whether to accept such <lb/>"unspecified" members, or whether to reject them. <lb/>Rejecting "unspecified" members is called "strict instance <lb/>semantics". Whether to use strict instance semantics is not <lb/>specified within a schema -it is considered out-of-band information. <lb/>Implementations MAY allow users to choose whether to use strict <lb/>instance semantics. Implementations SHOULD document whether they use <lb/>strict instance semantics by default. <lb/>See Section 3.3.6 for how strict instance semantics affects schema <lb/>evaluation. <lb/>3.2. Errors <lb/>To facilitate consistent validation error handling, this document <lb/>specifies a standard error format. Implementations SHOULD support <lb/>producing errors in this standard form. <lb/>The standard error format is a JSON array. The order of the elements <lb/>of this array is not specified. The elements of this array are JSON <lb/>objects with two members: <lb/>o A member with the name "instancePath", whose value is a JSON <lb/>string encoding a JSON Pointer. This JSON Pointer will point to <lb/>the part of the instance that was rejected. <lb/>o A member with the name "schemaPath", whose value is a JSON string <lb/>encoding a JSON Pointer. This JSON Pointer will point to the part <lb/>of the schema that rejected the instance. <lb/>The values for "instancePath" and "schemaPath" depend on the form of <lb/>the schema, and are described in detail in Section 3.3. <lb/>3.3. Forms <lb/>This section describes, for each of the eight JSL schema forms, the <lb/>rules dictating whether an instance is accepted, as well as the <lb/>standardized errors to produce when an instance is invalid. <lb/>The forms a correct schema may take on are formally described in <lb/>Section 2. <lb/></body> + + <note place="footnote">Carion <lb/>Expires February 6, 2020 <lb/></note> + + <page>[Page 10] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>JSON Schema Language <lb/>August 2019 <lb/></note> + + <body>3.3.1. Empty <lb/>The empty form is meant to describe instances whose values are <lb/>unknown, unpredictable, or otherwise unconstrained by the schema. <lb/>If a schema is of the empty form, then it accepts all instances. A <lb/>schema of the empty form will never produce any errors. <lb/>3.3.2. Ref <lb/>The ref form is for when a schema is meant to be defined in terms of <lb/>something in the "definitions" of the root schema. The ref form <lb/>enables schemas to be less repetitive, and also enables describing <lb/>recursive structures. <lb/>If a schema is of the ref form, then: <lb/>o Let _B_ be the root schema containing the schema, or the schema <lb/>itself if it is a root schema. <lb/>o Let _D_ be the member of _B_ with the name "definitions". By <lb/>Section 2, _D_ exists. <lb/>o Let _R_ be the value of the schema member with the name "ref". <lb/>o Let _S_ be the value of the member of _D_ whose name equals _R_. <lb/>By Section 2, _S_ exists, and is a schema. <lb/>The schema accepts the instance if and only if _S_ accepts the <lb/>instance. Otherwise, the standard errors to return in this case are <lb/>the union of the errors from evaluating _S_ against the instance. <lb/>For example, the schema: <lb/>{ <lb/>"definitions": { "a": { "type": "number" }}, <lb/>"ref": "a" <lb/>} <lb/>Accepts 123 but not false. The standard errors to produce when <lb/>evaluting false against this schema are: <lb/>[{ "instancePath": "", "schemaPath": "/definitions/a/type" }] <lb/>Note that the ref form is defined to only look up definitions at the <lb/>root level. Thus, with the schema: <lb/></body> + + <note place="footnote">Carion <lb/>Expires February 6, 2020 <lb/></note> + + <page>[Page 11] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>JSON Schema Language <lb/>August 2019 <lb/></note> + + <body>{ <lb/>"definitions": { "a": { "type": "number" }}, <lb/>"elements": { <lb/>"definitions": { "a": { "type": "boolean" }}, <lb/>"ref": "foo" <lb/>} <lb/>} <lb/>The instance 123 is accepted, and false is rejected. The standard <lb/>errors to produce when evaluating false against this schema are: <lb/>[{ "instancePath": "", "schemaPath": "/definitions/a/type" }] <lb/>Though non-root definitions are not syntactically disallowed in <lb/>correct schemas, they are entirely immaterial to evaluating <lb/>references. <lb/>3.3.3. Type <lb/>The type form is meant to describe instances whose value is a <lb/>boolean, number, string, or timestamp ([RFC3339]). <lb/>If a schema is of the type form, then let _T_ be the value of the <lb/>member with the name "type". The following table describes whether <lb/>the instance is accepted, as a function of _T_'s value: <lb/></body> + + <note place="footnote">Carion <lb/>Expires February 6, 2020 <lb/></note> + + <page>[Page 12] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>JSON Schema Language <lb/>August 2019 <lb/></note> + + <body>+-------------------+----------------------------------------------+ <lb/>| If _T_ equals ... | then the instance is accepted if it is ... <lb/>| <lb/>+-------------------+----------------------------------------------+ <lb/>| boolean <lb/>| equal to "true" or "false" <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| number <lb/>| a JSON number <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| float32 <lb/>| a JSON number <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| float64 <lb/>| a JSON number <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| int8 <lb/>| See Table 2 <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| uint8 <lb/>| See Table 2 <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| int16 <lb/>| See Table 2 <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| uint16 <lb/>| See Table 2 <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| int32 <lb/>| See Table 2 <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| uint32 <lb/>| See Table 2 <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| string <lb/>| a JSON string <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| timestamp <lb/>| a JSON string encoding a [RFC3339] timestamp | <lb/>+-------------------+----------------------------------------------+ <lb/>Table 1: Accepted Values for Type <lb/>"float32" and "float64" are distinguished from "number" in their <lb/>intent. "float32" indicates data intended to be processed as an IEEE <lb/>754 single-precision float, whereas "float64" indicates data intended <lb/>to be processed as an IEEE 754 double-precision float. "number" <lb/>indicates no specific intent. Tools which generate code from JSL <lb/>schemas will likely produce different code for "float32", "float64", <lb/>and "number". <lb/>If _T_ starts with "int" or "uint", then the instance is accepted if <lb/>and only if it is a JSON number encoding a value with zero fractional <lb/>part. Depending on the value of _T_, this encoded number must <lb/>additionally fall within a particular range: <lb/></body> + + <note place="footnote">Carion <lb/>Expires February 6, 2020 <lb/></note> + + <page>[Page 13] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>JSON Schema Language <lb/>August 2019 <lb/></note> + + <body>+--------+---------------------------+---------------------------+ <lb/>| _T_ <lb/>| Minimum Value (Inclusive) | Maximum Value (Inclusive) | <lb/>+--------+---------------------------+---------------------------+ <lb/>| int8 <lb/>| -128 <lb/>| 127 <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| uint8 | 0 <lb/>| 255 <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| int16 | -32,768 <lb/>| 32,767 <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| uint16 | 0 <lb/>| 65,535 <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| int32 | -2,147,483,648 <lb/>| 2,147,483,647 <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| uint32 | 0 <lb/>| 4,294,967,295 <lb/>| <lb/>+--------+---------------------------+---------------------------+ <lb/>Table 2: Ranges for Integer Types <lb/>Note that 10, 10.0, and 1.0e1 encode values with zero fractional <lb/>part. 10.5 encodes a number with a non-zero fractional part. Thus <lb/>{"type": "int8"} accepts 10, 10.0, and 1.0e1, but not 10.5. <lb/>If the instance is not accepted, then the standard error for this <lb/>case shall have an "instancePath" pointing to the instance, and a <lb/>"schemaPath" pointing to the schema member with the name "type". <lb/>For example: <lb/>o The schema {"type": "boolean"} accepts false, but rejects 127. <lb/>o The schema {"type": "number"} accepts 10.5, 127 and 128, but <lb/>rejects false. <lb/>o The schema {"type": "int8"} accepts 127, but rejects 10.5, 128 and <lb/>false. <lb/>o The schema {"type": "string"} accepts "1985-04-12T23:20:50.52Z" <lb/>and "foo", but rejects 127. <lb/>o The schema {"type": "timestamp"} accepts <lb/>"1985-04-12T23:20:50.52Z", but rejects "foo" and 127. <lb/>In all of the rejected examples just given, the standard error to <lb/>produce is: <lb/>[{ "instancePath": "", "schemaPath": "/type" }] <lb/></body> + + <note place="footnote">Carion <lb/>Expires February 6, 2020 <lb/></note> + + <page>[Page 14] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>JSON Schema Language <lb/>August 2019 <lb/></note> + + <body>3.3.4. Enum <lb/>The enum form is meant to describe instances whose value must be one <lb/>of a finite, predetermined set of string values. <lb/>If a schema is of the enum form, then let _E_ be the value of the <lb/>schema member with the name "enum". The instance is accepted if and <lb/>only if it is equal to one of the elements of _E_. <lb/>If the instance is not accepted, then the standard error for this <lb/>case shall have an "instancePath" pointing to the instance, and a <lb/>"schemaPath" pointing to the schema member with the name "enum". <lb/>For example, the schema: <lb/>{ "enum": ["PENDING", "DONE", "CANCELED"] } <lb/>Accepts "PENDING", "DONE", and "CANCELED", but it rejects both 123 <lb/>and "UNKNOWN" with the standard errors: <lb/>[{ "instancePath": "", "schemaPath": "/enum" }] <lb/>3.3.5. Elements <lb/>The elements form is meant to describe instances that must be arrays. <lb/>A further sub-schema describes the elements of the array. <lb/>If a schema is of the elements form, then let _S_ be the value of the <lb/>schema member with the name "elements". The instance is accepted if <lb/>and only if all of the following are true: <lb/>o The instance is an array. Otherwise, the standard error for this <lb/>case shall have an "instancePath" pointing to the instance, and a <lb/>"schemaPath" pointing to the schema member with the name <lb/>"elements". <lb/>o If the instance is an array, then every element of the instance <lb/>must be accepted by _S_. Otherwise, the standard errors for this <lb/>case are the union of all the errors arising from evaluating _S_ <lb/>against elements of the instance. <lb/>For example, if we have the schema: <lb/>{ <lb/>"elements": { <lb/>"type": "number" <lb/>} <lb/>} <lb/></body> + + <note place="footnote">Carion <lb/>Expires February 6, 2020 <lb/></note> + + <page>[Page 15] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>JSON Schema Language <lb/>August 2019 <lb/></note> + + <body>Then the instances [] and [1, 2, 3] are accepted. If instead we <lb/>evaluate false against that schema, the standard errors are: <lb/>[{ "instancePath": "", "schemaPath": "/elements" }] <lb/>Finally, if we evaluate the instance: <lb/>[1, 2, "foo", 3, "bar"] <lb/>The standard errors are: <lb/>[ <lb/>{ "instancePath": "/2", "schemaPath": "/elements/type" }, <lb/>{ "instancePath": "/4", "schemaPath": "/elements/type" } <lb/>] <lb/>3.3.6. Properties <lb/>The properties form is meant to describe JSON objects being used as a <lb/>"struct". <lb/>If a schema is of the properties form, then the instance is accepted <lb/>if and only if all of the following are true: <lb/>o The instance is an object. <lb/>Otherwise, the standard error for this case shall have an <lb/>"instancePath" pointing to the instance, and a "schemaPath" <lb/>pointing to the schema member with the name "properties" if such a <lb/>schema member exists; if such a member doesn't exist, "schemaPath" <lb/>shall point to the schema member with the name <lb/>"optionalProperties". <lb/>o If the instance is an object and the schema has a member named <lb/>"properties", then let _P_ be the value of the schema member named <lb/>"properties". _P_, by Section 2, must be an object. For every <lb/>member name in _P_, a member of the same name in the instance must <lb/>exist. <lb/>Otherwise, the standard error for this case shall have an <lb/>"instancePath" pointing to the instance, and a "schemaPath" <lb/>pointing to the member of _P_ failing the requirement just <lb/>described. <lb/>o If the instance is an object, then let _P_ be the value of the <lb/>schema member named "properties" (if it exists), and _O_ be the <lb/>value of the schema member named "optionalProperties" (if it <lb/>exists). <lb/></body> + + <note place="footnote">Carion <lb/>Expires February 6, 2020 <lb/></note> + + <page>[Page 16] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>JSON Schema Language <lb/>August 2019 <lb/></note> + + <body>For every member _I_ of the instance, find a member with the same <lb/>name as _I_'s in _P_ or _O_. By Section 2, it is not possible for <lb/>both _P_ and _O_ to have such a member. If the "discriminator tag <lb/>exemption" is in effect on _I_ (see Section 3.3.8), then ignore <lb/>_I_. Otherwise: <lb/>* If no such member in _P_ or _O_ exists and validation is using <lb/>strict instance semantics, then the instance is rejected. <lb/>The standard error for this case has an "instancePath" pointing <lb/>_I_, and a "schemaPath" pointing to the schema. <lb/>* If such a member in _P_ or _O_ does exist, then call this <lb/>member _S_. If _S_ rejects _I_'s value, then the instance is <lb/>rejected. <lb/>The standard error for this case is the union of the errors <lb/>from evaluating _S_ against _I_'s value. <lb/>An instance may have multiple errors arising from the second and <lb/>third bullet in the above. In this case, the standard errors are the <lb/>union of the errors. <lb/>For example, if we have the schema: <lb/>{ <lb/>"properties": { <lb/>"a": { "type": "string" }, <lb/>"b": { "type": "string" } <lb/>}, <lb/>"optionalProperties": { <lb/>"c": { "type": "string" }, <lb/>"d": { "type": "string" } <lb/>} <lb/>} <lb/>Then each of the following instances (one on each line) are accepted: <lb/>{ "a": "foo", "b": "bar" } <lb/>{ "a": "foo", "b": "bar", "c": "baz" } <lb/>{ "a": "foo", "b": "bar", "c": "baz", "d": "quux" } <lb/>{ "a": "foo", "b": "bar", "d": "quux" } <lb/>If we evaluate the instance 123 against this schema, then the <lb/>standard errors are: <lb/>[{ "instancePath": "", "schemaPath": "/properties" }] <lb/></body> + + <note place="footnote">Carion <lb/>Expires February 6, 2020 <lb/></note> + + <page>[Page 17] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>JSON Schema Language <lb/>August 2019 <lb/></note> + + <body>If instead we evalute the instance: <lb/>{ "b": 3, "c": 3, "e": 3 } <lb/>The standard errors, using strict instance semantics, are: <lb/>[ <lb/>{ "instancePath": "", <lb/>"schemaPath": "/properties/a" }, <lb/>{ "instancePath": "/b", <lb/>"schemaPath": "/properties/b/type" }, <lb/>{ "instancePath": "/c", <lb/>"schemaPath": "/optionalProperties/c/type" }, <lb/>{ "instancePath": "/e", <lb/>"schemaPath": "" } <lb/>] <lb/>If we the same instance were evaluated, but without strict instance <lb/>semantics, the final element of the above array of errors would not <lb/>be present. <lb/>3.3.7. Values <lb/>The elements form is meant to describe instances that are JSON <lb/>objects being used as an associative array. <lb/>If a schema is of the values form, then let _S_ be the value of the <lb/>schema member with the name "values". The instance is accepted if <lb/>and only if all of the following are true: <lb/>o The instance is an object. Otherwise, the standard error for this <lb/>case shall have an "instancePath" pointing to the instance, and a <lb/>"schemaPath" pointing to the schema member with the name "values". <lb/>o If the instance is an object, then every member value of the <lb/>instance must be accepted by _S_. Otherwise, the standard errors <lb/>for this case are the union of all the errors arising from <lb/>evaluating _S_ against member values of the instance. <lb/>For example, if we have the schema: <lb/>{ <lb/>"values": { <lb/>"type": "number" <lb/>} <lb/>} <lb/></body> + + <note place="footnote">Carion <lb/>Expires February 6, 2020 <lb/></note> + + <page>[Page 18] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>JSON Schema Language <lb/>August 2019 <lb/></note> + + <body>Then the instances {} and {"a": 1, "b": 2} are accepted. If instead <lb/>we evaluate false against that schema, the standard errors are: <lb/>[{ "instancePath": "", "schemaPath": "/values" }] <lb/>Finally, if we evaluate the instance: <lb/>{ "a": 1, "b": 2, "c": "foo", "d": 3, "e": "bar" } <lb/>The standard errors are: <lb/>[ <lb/>{ "instancePath": "/c", "schemaPath": "/values/type" }, <lb/>{ "instancePath": "/e", "schemaPath": "/values/type" } <lb/>] <lb/>3.3.8. Discriminator <lb/>The discriminator form is meant to describe JSON objects being used <lb/>in a fashion similar to a discriminated union construct in C-like <lb/>languages. When a schema is of the "discriminator" form, it <lb/>validates: <lb/>o That the instance is an object, <lb/>o That the instance has a particular "tag" property, <lb/>o That this "tag" property's value is a string within a set of valid <lb/>values, and <lb/>o That the instance satisfies another schema, where this other <lb/>schema is chosen based on the value of the "tag" property. <lb/>The behavior of the discriminator form is more complex than the other <lb/>keywords. Readers familiar with CDDL may find the final example in <lb/>Appendix A helpful in understanding its behavior. What follows in <lb/>this section is a description of the discriminator form's behavior, <lb/>as well as some examples. <lb/>If a schema is of the "discriminator" form, then: <lb/>o Let _D_ be the schema member with the name "discriminator". <lb/>o Let _T_ be the member of _D_ with the name "tag". <lb/>o Let _M_ be the member of _D_ with the name "mapping". <lb/></body> + + <note place="footnote">Carion <lb/>Expires February 6, 2020 <lb/></note> + + <page>[Page 19] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>JSON Schema Language <lb/>August 2019 <lb/></note> + + <body>o Let _I_ be the instance member whose name equals _T_'s value. _I_ <lb/>may, for some rejected instances, not exist. <lb/>o Let _S_ be the member of _M_ whose name equals _I_'s value. _S_ <lb/>may, for some rejected instances, not exist. <lb/>The instance is accepted if and only if: <lb/>o The instance is an object. <lb/>Otherwise, the standard error for this case shall have an <lb/>"instancePath" pointing to the instance, and a "schemaPath" <lb/>pointing to _D_. <lb/>o If the instance is a JSON object, then _I_ must exist. <lb/>Otherwise, the standard error for this case shall have an <lb/>"instancePath" pointing to the instance, and a "schemaPath" <lb/>pointing to _T_. <lb/>o If the instance is a JSON object and _I_ exists, _I_'s value must <lb/>be a string. <lb/>Otherwise, the standard error for this case shall have an <lb/>"instancePath" pointing to _I_, and a "schemaPath" pointing to <lb/>_T_. <lb/>o If the instance is a JSON object and _I_ exists and has a string <lb/>value, then _S_ must exist. <lb/>Otherwise, the standard error for this case shall have an <lb/>"instancePath" pointing to _I_, and a "schemaPath" pointing to <lb/>_M_. <lb/>o If the instance is a JSON object, _I_ exists, and _S_ exists, then <lb/>the instance must satisfy _S_'s value. By Section 2, _S_'s value <lb/>must have the properties form. Apply the "discriminator tag <lb/>exemption" afforded in Section 3.3.6 to _I_ when evaluating <lb/>whether the instance satisfies _S_'s value. <lb/>Otherwise, the standard errors for this case shall be standard <lb/>errors from evaluating _S_'s value against the instance, with the <lb/>"discriminator tag exemption" applied to _I_. <lb/>Each of the list items above are defined to be mutually exclusive. <lb/>For the same instance and schema, only one of the list items above <lb/>will apply. <lb/></body> + + <note place="footnote">Carion <lb/>Expires February 6, 2020 <lb/></note> + + <page>[Page 20] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>JSON Schema Language <lb/>August 2019 <lb/></note> + + <body>To illustrate the discriminator form, if we have the schema: <lb/>{ <lb/>"discriminator": { <lb/>"tag": "version", <lb/>"mapping": { <lb/>"v1": { <lb/>"properties": { <lb/>"a": { "type": "number" } <lb/>} <lb/>}, <lb/>"v2": { <lb/>"properties": { <lb/>"a": { "type": "string" } <lb/>} <lb/>} <lb/>} <lb/>} <lb/>} <lb/>Then if we evaluate the instance: <lb/>"example" <lb/>Against this schema, the standard errors are: <lb/>[{ "instancePath": "", "schemaPath": "/discriminator" }] <lb/>(This is the case of the instance not being an object.) <lb/>If we instead evaluate the instance: <lb/>{} <lb/>Then the standard errors are: <lb/>[{ "instancePath": "", "schemaPath": "/discriminator/tag" }] <lb/>(This is the case of _I_ not existing.) <lb/>If we instead evaluate the instance: <lb/>{ "version": 1 } <lb/>Then the standard errors are: <lb/>[{ "instancePath": "/version", "schemaPath": "/discriminator/tag" }] <lb/></body> + + <note place="footnote">Carion <lb/>Expires February 6, 2020 <lb/></note> + + <page>[Page 21] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>JSON Schema Language <lb/>August 2019 <lb/></note> + + <body>(This is the case of _I_ existing, but having a string value.) <lb/>If we instead evaluate the instance: <lb/>{ "version": "v3" } <lb/>Then the standard errors are: <lb/>[ <lb/>{ "instancePath": "/version", <lb/>"schemaPath": "/discriminator/mapping" } <lb/>] <lb/>(This is the case of _I_ existing and having a string value, but _S_ <lb/>not existing.) <lb/>If the instance evaluated were: <lb/>{ "version": "v2", "a": 3 } <lb/>Then the standard errors are: <lb/>[ <lb/>{ <lb/>"instancePath": "/a", <lb/>"schemaPath": "/discriminator/mapping/v2/properties/a/type" <lb/>} <lb/>] <lb/>(This is the case of _I_ and _S_ existing, but the instance not <lb/>satisfying _S_'s value.) <lb/>Finally, if instead the instance were: <lb/>{ "version": "v2", "a": "foo" } <lb/>Then the instance satisfies the schema. No standard errors are <lb/>returned. This would be the case even if evaluation were using <lb/>strict instance semantics, as the "discriminator tag exemption" would <lb/>ensure that "version" is not treated as an unexpected property when <lb/>evaluating the instance against _S_'s value. <lb/>4. IANA Considerations <lb/>No IANA considerations. <lb/></body> + + <note place="footnote">Carion <lb/>Expires February 6, 2020 <lb/></note> + + <page>[Page 22] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>JSON Schema Language <lb/>August 2019 <lb/></note> + + <body>5. Security Considerations <lb/>Implementations of JSON Schema Language will necessarily be <lb/>manipulating JSON data. Therefore, the security considerations of <lb/>[RFC8259] are all relevant here. <lb/>Implementations which evaluate user-inputted schemas SHOULD implement <lb/>mechanisms to detect, and abort, circular references which might <lb/>cause a naive implementation to go into an infinite loop. Without <lb/>such mechanisms, implementations may be vulnerable to denial-of-<lb/>service attacks. <lb/></body> + + <listBibl>6. Normative References <lb/>[RFC2119] Bradner, S., "Key words for use in RFCs to Indicate <lb/>Requirement Levels", BCP 14, RFC 2119, <lb/>DOI 10.17487/RFC2119, March 1997, <lb/><https://www.rfc-editor.org/info/rfc2119>. <lb/>[RFC3339] Klyne, G. and C. Newman, "Date and Time on the Internet: <lb/>Timestamps", RFC 3339, DOI 10.17487/RFC3339, July 2002, <lb/><https://www.rfc-editor.org/info/rfc3339>. <lb/>[RFC6901] Bryan, P., Ed., Zyp, K., and M. Nottingham, Ed., <lb/>"JavaScript Object Notation (JSON) Pointer", RFC 6901, <lb/>DOI 10.17487/RFC6901, April 2013, <lb/><https://www.rfc-editor.org/info/rfc6901>. <lb/>[RFC8174] Leiba, B., "Ambiguity of Uppercase vs Lowercase in RFC <lb/>2119 Key Words", BCP 14, RFC 8174, DOI 10.17487/RFC8174, <lb/>May 2017, <https://www.rfc-editor.org/info/rfc8174>. <lb/>[RFC8259] Bray, T., Ed., "The JavaScript Object Notation (JSON) Data <lb/>Interchange Format", STD 90, RFC 8259, <lb/>DOI 10.17487/RFC8259, December 2017, <lb/><https://www.rfc-editor.org/info/rfc8259>. <lb/>[RFC8610] Birkholz, H., Vigano, C., and C. Bormann, "Concise Data <lb/>Definition Language (CDDL): A Notational Convention to <lb/>Express Concise Binary Object Representation (CBOR) and <lb/>JSON Data Structures", RFC 8610, DOI 10.17487/RFC8610, <lb/>June 2019, <https://www.rfc-editor.org/info/rfc8610>. <lb/></listBibl> + + <div type="annex">Appendix A. Comparison with CDDL <lb/>This appendix is informative. <lb/></div> + + <note place="footnote">Carion <lb/>Expires February 6, 2020 <lb/></note> + + <page>[Page 23] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>JSON Schema Language <lb/>August 2019 <lb/></note> + + <div type="annex">To aid the reader familiar with CDDL, this section illustrates how <lb/>JSL works by presenting JSL schemas and CDDL schemas which accept and <lb/>reject the same instances. <lb/>The JSL schema {} accepts the same instances as the CDDL rule: <lb/>root = any <lb/>The JSL schema: <lb/>{ <lb/>"definitions": { <lb/>"a": { "elements": { "ref": "b" }}, <lb/>"b": { "type": "number" } <lb/>}, <lb/>"elements": { <lb/>"ref": "a" <lb/>} <lb/>} <lb/>Corresponds to the CDDL schema: <lb/>root = [* a] <lb/>a = [* b] <lb/>b = number <lb/>The JSL schema: <lb/>{ "enum": ["PENDING", "DONE", "CANCELED"]} <lb/>Accepts the same instances as the CDDL rule: <lb/>root = "PENDING" / "DONE" / "CANCELED" <lb/>The JSL schema {"type": "boolean"} corresponds to the CDDL rule: <lb/>root = bool <lb/>The JSL schema {"type": "number"} corresponds to the CDDL rule: <lb/>root = number <lb/>The JSL schema {"type": "string"} corresponds to the CDDL rule: <lb/>root = tstr <lb/>The JSL schema {"type": "timestamp"} corresponds to the CDDL rule: <lb/></div> + + <note place="footnote">Carion <lb/>Expires February 6, 2020 <lb/></note> + + <page>[Page 24] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>JSON Schema Language <lb/>August 2019 <lb/></note> + + <div type="annex">root = tdate <lb/>The JSL schema: <lb/>{ "elements": { "type": "number" }} <lb/>Corresponds to the CDDL rule: <lb/>root = [* number] <lb/>The JSL schema: <lb/>{ <lb/>"properties": { <lb/>"a": { "type": "boolean" }, <lb/>"b": { "type": "number" } <lb/>}, <lb/>"optionalProperties": { <lb/>"c": { "type": "string" }, <lb/>"d": { "type": "timestamp" } <lb/>} <lb/>} <lb/>Corresponds to the CDDL rule: <lb/>root = { a: bool, b: number, ? c: tstr, ? d: tdate } <lb/>The JSL schema: <lb/>{ "values": { "type": "number" }} <lb/>Corresponds to the CDDL rule: <lb/>root = { * tstr => number } <lb/>Finally, the JSL schema: <lb/></div> + + <note place="footnote">Carion <lb/>Expires February 6, 2020 <lb/></note> + + <page>[Page 25] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>JSON Schema Language <lb/>August 2019 <lb/></note> + + <div type="annex">{ <lb/>"discriminator": { <lb/>"tag": "a", <lb/>"mapping": { <lb/>"foo": { <lb/>"properties": { <lb/>"b": { "type": "number" } <lb/>} <lb/>}, <lb/>"bar": { <lb/>"properties": { <lb/>"b": { "type": "string" } <lb/>} <lb/>} <lb/>} <lb/>} <lb/>} <lb/>Corresponds to the CDDL rule: <lb/>root = { a: "foo", b: number } / { a: "bar", b: tstr } <lb/></div> + + <div type="acknowledgement">Acknowledgments <lb/>Thanks to Gary Court, Francis Galiegue, Kris Zyp, Geraint Luff, Jason <lb/>Desrosiers, Daniel Perrett, Erik Wilde, Ben Hutton, Evgeny <lb/>Poberezkin, Brad Bowman, Gowry Sankar, Donald Pipowitch, Dave Finlay, <lb/>Denis Laxalde, Henry Andrews, and Austin Wright for their work on the <lb/>initial drafts of JSON Schema, which inspired JSON Schema Language. <lb/>Thanks to Tim Bray, Carsten Bormann, and James Manger for their help <lb/>on JSON Schema Language. <lb/></div> + + Author's Address <lb/> + + <front>Ulysse Carion<lb/> Email: ulyssecarion@gmail.com<lb/></front> + + <note place="footnote">Carion <lb/>Expires February 6, 2020 <lb/></note> + + <page>[Page 26] </page> + + + </text> +</tei> diff --git a/grobid-trainer/resources/dataset/segmentation/sdo/ietf/corpus/tei/XP015134658.training.segmentation.tei.xml b/grobid-trainer/resources/dataset/segmentation/sdo/ietf/corpus/tei/XP015134658.training.segmentation.tei.xml new file mode 100644 index 0000000000..88526055ca --- /dev/null +++ b/grobid-trainer/resources/dataset/segmentation/sdo/ietf/corpus/tei/XP015134658.training.segmentation.tei.xml @@ -0,0 +1,59 @@ +<?xml version="1.0" ?> +<tei xml:space="preserve"> + <teiHeader> + <fileDesc xml:id="0"/> + </teiHeader> + <text xml:lang="en"> + <front>server date 20190808; downloaded by EPO on 20190809 <lb/>Network Work group <lb/>N. Nainar <lb/>Internet-Draft <lb/>C. Pignataro <lb/>Updates: 8287 (if approved) <lb/>Cisco Systems, Inc. <lb/>Intended status: Standards Track <lb/>F. Iqbal <lb/>Expires: February 9, 2020 <lb/>Individual <lb/>A. Vainshtein <lb/>ECI Telecom <lb/>August 8, 2019 <lb/>RFC8287 Sub-TLV Length Clarification <lb/>draft-ietf-mpls-rfc8287-len-clarification-03 <lb/>Abstract <lb/>RFC8287 defines the extensions to MPLS LSP Ping and Traceroute for <lb/>Segment Routing IGP-Prefix and IGP-Adjacency Segment Identifier <lb/>(SIDs) with an MPLS data plane. RFC8287 proposes 3 Target FEC Stack <lb/>Sub-TLVs. While the standard defines the format and procedure to <lb/>handle those Sub-TLVs, it does not sufficiently clarify how the <lb/>length of the Segment ID Sub-TLVs should be computed to include in <lb/>the Length field of the Sub-TLVs which may result in interoperability <lb/>issues. <lb/>This document updates RFC8287 by clarifying the length of each <lb/>Segment ID Sub-TLVs defined in RFC8287. <lb/>Status of This Memo <lb/>This Internet-Draft is submitted in full conformance with the <lb/>provisions of BCP 78 and BCP 79. <lb/>Internet-Drafts are working documents of the Internet Engineering <lb/>Task Force (IETF). Note that other groups may also distribute <lb/>working documents as Internet-Drafts. The list of current Internet-<lb/>Drafts is at https://datatracker.ietf.org/drafts/current/. <lb/>Internet-Drafts are draft documents valid for a maximum of six months <lb/>and may be updated, replaced, or obsoleted by other documents at any <lb/>time. It is inappropriate to use Internet-Drafts as reference <lb/>material or to cite them other than as "work in progress." <lb/>This Internet-Draft will expire on February 9, 2020. <lb/> Nainar, et al. <lb/>Expires February 9, 2020 <lb/> [Page 1] <lb/> Internet-Draft <lb/>RFC8287 Sub-TLV Length Clarification <lb/>August 2019 <lb/> Copyright Notice <lb/>Copyright (c) 2019 IETF Trust and the persons identified as the <lb/>document authors. All rights reserved. <lb/>This document is subject to BCP 78 and the IETF Trust's Legal <lb/>Provisions Relating to IETF Documents <lb/>(https://trustee.ietf.org/license-info) in effect on the date of <lb/>publication of this document. Please review these documents <lb/>carefully, as they describe your rights and restrictions with respect <lb/>to this document. Code Components extracted from this document must <lb/>include Simplified BSD License text as described in Section 4.e of <lb/>the Trust Legal Provisions and are provided without warranty as <lb/>described in the Simplified BSD License. <lb/></front> + + <div type="toc">Table of Contents <lb/>1. Introduction . . . . . . . . . . . . . . . . . . . . . . . . <lb/>2 <lb/>2. Terminology . . . . . . . . . . . . . . . . . . . . . . . . . <lb/>3 <lb/>3. Requirements notation . . . . . . . . . . . . . . . . . . . . <lb/>3 <lb/>4. Length field clarification for Segment ID Sub-TLVs . . . . . <lb/>3 <lb/>4.1. IPv4 IGP-Prefix Segment ID Sub-TLV . . . . . . . . . . . <lb/>3 <lb/>4.2. IPv6 IGP-Prefix Segment ID Sub-TLV . . . . . . . . . . . <lb/>3 <lb/>4.3. IGP-Adjacency Segment ID Sub-TLV . . . . . . . . . . . . <lb/>4 <lb/>5. IANA Considerations . . . . . . . . . . . . . . . . . . . . . <lb/>5 <lb/>6. Security Considerations . . . . . . . . . . . . . . . . . . . <lb/>5 <lb/>7. Contributors . . . . . . . . . . . . . . . . . . . . . . . . <lb/>5 <lb/>8. Acknowledgement . . . . . . . . . . . . . . . . . . . . . . . <lb/>5 <lb/>9. Normative References . . . . . . . . . . . . . . . . . . . . <lb/>5 <lb/>Authors' Addresses . . . . . . . . . . . . . . . . . . . . . . . <lb/>6 <lb/></div> + + <body>1. Introduction <lb/>[RFC8287] defines the extensions to MPLS LSP Ping and Traceroute for <lb/>Segment Routing IGP-Prefix and IGP-Adjacency Segment Identifier <lb/>(SIDs) with an MPLS data plane. [RFC8287] proposes 3 Target FEC <lb/>Stack Sub-TLVs. While the standard defines the format and procedure <lb/>to handle those Sub-TLVs, it does not sufficiently clarify how the <lb/>length of the Segment ID Sub-TLVs should be computed to include in <lb/>the Length field of the Sub-TLVs which may result in interoperability <lb/>issues. <lb/>This document updates [RFC8287] by clarifying the length of each <lb/>Segment ID Sub-TLVs defined in [RFC8287]. <lb/></body> + + <note place="footnote">Nainar, et al. <lb/>Expires February 9, 2020 <lb/></note> + + <page>[Page 2] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>RFC8287 Sub-TLV Length Clarification <lb/>August 2019 <lb/></note> + + <body>2. Terminology <lb/>This document uses the terminologies defined in [RFC8402], [RFC8029], <lb/>[RFC8287] and so the readers are expected to be familiar with the <lb/>same. <lb/>3. Requirements notation <lb/>The key words "MUST", "MUST NOT", "REQUIRED", "SHALL", "SHALL NOT", <lb/>"SHOULD", "SHOULD NOT", "RECOMMENDED", "MAY", and "OPTIONAL" in this <lb/>document are to be interpreted as described in [RFC2119] [RFC8174] <lb/>when, and only when, they appear in all capitals, as shown here. <lb/>4. Length field clarification for Segment ID Sub-TLVs <lb/>Section 5 of [RFC8287] defines 3 different Segment ID Sub-TLVs that <lb/>will be included in Target FEC Stack TLV defined in [RFC8029]. The <lb/>length of each Sub-TLVs MUST be calculated as defined in this <lb/>section. <lb/>The TLVs representation defined in section 5.1, 5.2 and 5.3 of <lb/>[RFC8287] are updated to clarify the length calculation as shown in <lb/>section 4.1, 4.2 and 4.3 respectively. The updated TLV <lb/>representation contain explicitly defined length. <lb/>4.1. IPv4 IGP-Prefix Segment ID Sub-TLV <lb/>The Sub-TLV length for IPv4 IGP-Prefix Segment ID MUST be set to 8 as <lb/>shown in the below TLV format: <lb/>0 <lb/>1 <lb/>2 <lb/>3 <lb/>0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 <lb/>+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ <lb/>|Type = 34 (IPv4 IGP-Prefix SID)| <lb/>Length = 8 <lb/>| <lb/>+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ <lb/>| <lb/>IPv4 prefix <lb/>| <lb/>+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ <lb/>|Prefix Length | <lb/>Protocol <lb/>| <lb/>Reserved <lb/>| <lb/>+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ <lb/>4.2. IPv6 IGP-Prefix Segment ID Sub-TLV <lb/>The Sub-TLV length for IPv6 IGP-Prefix Segment ID MUST be set to 20 <lb/>as shown in the below TLV format: <lb/></body> + + <note place="footnote">Nainar, et al. <lb/>Expires February 9, 2020 <lb/></note> + + <page>[Page 3] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>RFC8287 Sub-TLV Length Clarification <lb/>August 2019 <lb/></note> + + <body>0 <lb/>1 <lb/>2 <lb/>3 <lb/>0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 <lb/>+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ <lb/>|Type = 35 (IPv6 IGP-Prefix SID)| <lb/>Length = 20 <lb/>| <lb/>+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| <lb/>IPv6 Prefix <lb/>| <lb/>| <lb/>| <lb/>+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ <lb/>|Prefix Length | <lb/>Protocol <lb/>| <lb/>Reserved <lb/>| <lb/>+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ <lb/>4.3. IGP-Adjacency Segment ID Sub-TLV <lb/>The Sub-TLV length for IGP-Adjacency Segment ID varies depending on <lb/>the Adjacency Type and Protocol. In any of the allowed combination <lb/>of Adjacency Type and Protocol, the sub-TLV length MUST be calculated <lb/>by including 2 octets of Reserved field. Table 1 below list the <lb/>length for different combinations of Adj.Type and Protocol. <lb/>+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ <lb/>| Protocol <lb/>| <lb/>Length for Adj.Type <lb/>| <lb/>+ <lb/>+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ <lb/>| <lb/>| Parallel | <lb/>IPv4 <lb/>| <lb/>IPv6 <lb/>| Unnumbered| <lb/>+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ <lb/>| <lb/>OSPF <lb/>| <lb/>20 <lb/>| <lb/>20 <lb/>| <lb/>44 <lb/>| <lb/>20 <lb/>| <lb/>+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ <lb/>| <lb/>ISIS <lb/>| <lb/>24 <lb/>| <lb/>24 <lb/>| <lb/>48 <lb/>| <lb/>24 <lb/>| <lb/>+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ <lb/>| <lb/>Any <lb/>| <lb/>20 <lb/>| <lb/>20 <lb/>| <lb/>44 <lb/>| <lb/>20 <lb/>| <lb/>+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ <lb/>Table 1. IGP-Adjacency SID Length Comparison <lb/>For example, when the Adj. Type is set to Parallel Adjacency and the <lb/>Protocol is set to 0, the Sub-TLV will be as below: <lb/></body> + + <note place="footnote">Nainar, et al. <lb/>Expires February 9, 2020 <lb/></note> + + <page>[Page 4] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>RFC8287 Sub-TLV Length Clarification <lb/>August 2019 <lb/></note> + + <body>0 <lb/>1 <lb/>2 <lb/>3 <lb/>0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 <lb/>+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ <lb/>|Type = 36 (IGP-Adjacency SID) | <lb/>Length = 20 <lb/>| <lb/>+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ <lb/>| Adj. Type = 1 | Protocol = 0 | <lb/>Reserved <lb/>| <lb/>+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ <lb/>| <lb/>Local Interface ID (4 octets) <lb/>| <lb/>+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ <lb/>| <lb/>Remote Interface ID (4 octets) <lb/>| <lb/>+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ <lb/>| <lb/>Advertising Node Identifier (4 octets) <lb/>| <lb/>+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ <lb/>| <lb/>Receiving Node Identifier (4 octets) <lb/>| <lb/>+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ <lb/>5. IANA Considerations <lb/>This document does not introduce any IANA consideration. <lb/>6. Security Considerations <lb/>This document updates [RFC8287] and does not introduce any additional <lb/>security considerations. <lb/>7. Contributors <lb/>The below individuals contributed to this document: <lb/>Zafar Ali, Cisco Systems, Inc. <lb/></body> + + <div type="acknowledgement">8. Acknowledgement <lb/>The authors would like to thank Michael Gorokhovsky and Manohar <lb/>Doppalapudi for investigating the interop issue during EANTC test. <lb/></div> + + <listBibl>9. Normative References <lb/>[RFC2119] Bradner, S., "Key words for use in RFCs to Indicate <lb/>Requirement Levels", BCP 14, RFC 2119, <lb/>DOI 10.17487/RFC2119, March 1997, <lb/><https://www.rfc-editor.org/info/rfc2119>. <lb/>[RFC8029] Kompella, K., Swallow, G., Pignataro, C., Ed., Kumar, N., <lb/>Aldrin, S., and M. Chen, "Detecting Multiprotocol Label <lb/>Switched (MPLS) Data-Plane Failures", RFC 8029, <lb/>DOI 10.17487/RFC8029, March 2017, <lb/><https://www.rfc-editor.org/info/rfc8029>. <lb/></listBibl> + + <note place="footnote">Nainar, et al. <lb/>Expires February 9, 2020 <lb/></note> + + <page>[Page 5] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>RFC8287 Sub-TLV Length Clarification <lb/>August 2019 <lb/></note> + + <listBibl>[RFC8174] Leiba, B., "Ambiguity of Uppercase vs Lowercase in RFC <lb/>2119 Key Words", BCP 14, RFC 8174, DOI 10.17487/RFC8174, <lb/>May 2017, <https://www.rfc-editor.org/info/rfc8174>. <lb/>[RFC8287] Kumar, N., Ed., Pignataro, C., Ed., Swallow, G., Akiya, <lb/>N., Kini, S., and M. Chen, "Label Switched Path (LSP) <lb/>Ping/Traceroute for Segment Routing (SR) IGP-Prefix and <lb/>IGP-Adjacency Segment Identifiers (SIDs) with MPLS Data <lb/>Planes", RFC 8287, DOI 10.17487/RFC8287, December 2017, <lb/><https://www.rfc-editor.org/info/rfc8287>. <lb/>[RFC8402] Filsfils, C., Ed., Previdi, S., Ed., Ginsberg, L., <lb/>Decraene, B., Litkowski, S., and R. Shakir, "Segment <lb/>Routing Architecture", RFC 8402, DOI 10.17487/RFC8402, <lb/>July 2018, <https://www.rfc-editor.org/info/rfc8402>. <lb/></listBibl> + + Author's Address <lb/> + + <front>Nagendra Kumar Nainar <lb/>Cisco Systems, Inc. <lb/>7200-12 Kit Creek Road <lb/>Research Triangle Park, NC 27709 <lb/>US <lb/>Email: naikumar@cisco.com <lb/>Carlos Pignataro <lb/>Cisco Systems, Inc. <lb/>7200-11 Kit Creek Road <lb/>Research Triangle Park, NC 27709 <lb/>US <lb/>Email: cpignata@cisco.com <lb/>Faisal Iqbal <lb/>Individual <lb/>Canada <lb/>Email: faisal.iqbal@msn.com <lb/>Alexander Vainshtein <lb/>ECI Telecom <lb/>Israel <lb/>Email: vainshtein.alex@gmail.com <lb/></front> + + <note place="footnote">Nainar, et al. <lb/>Expires February 9, 2020 <lb/></note> + + <page>[Page 6] </page> + + + </text> +</tei> diff --git a/grobid-trainer/resources/dataset/segmentation/sdo/ietf/corpus/tei/XP015134870.training.segmentation.tei.xml b/grobid-trainer/resources/dataset/segmentation/sdo/ietf/corpus/tei/XP015134870.training.segmentation.tei.xml new file mode 100644 index 0000000000..5166cb24ca --- /dev/null +++ b/grobid-trainer/resources/dataset/segmentation/sdo/ietf/corpus/tei/XP015134870.training.segmentation.tei.xml @@ -0,0 +1,577 @@ +<?xml version="1.0" ?> +<tei xml:space="preserve"> + <teiHeader> + <fileDesc xml:id="0"/> + </teiHeader> + <text xml:lang="en"> + <front>server date 20190827; downloaded by EPO on 20190829 <lb/>6TiSCH <lb/>P. Thubert, Ed. <lb/>Internet-Draft <lb/>Cisco Systems <lb/>Intended status: Informational <lb/>August 27, 2019 <lb/>Expires: February 28, 2020 <lb/>An Architecture for IPv6 over the TSCH mode of IEEE 802.15.4 <lb/>draft-ietf-6tisch-architecture-26 <lb/>Abstract <lb/>This document describes a network architecture that provides low-<lb/>latency, low-jitter and high-reliability packet delivery. It <lb/>combines a high-speed powered backbone and subnetworks using IEEE <lb/>802.15.4 time-slotted channel hopping (TSCH) to meet the requirements <lb/>of LowPower wireless deterministic applications. <lb/>Status of This Memo <lb/>This Internet-Draft is submitted in full conformance with the <lb/>provisions of BCP 78 and BCP 79. <lb/>Internet-Drafts are working documents of the Internet Engineering <lb/>Task Force (IETF). Note that other groups may also distribute <lb/>working documents as Internet-Drafts. The list of current Internet-<lb/>Drafts is at https://datatracker.ietf.org/drafts/current/. <lb/>Internet-Drafts are draft documents valid for a maximum of six months <lb/>and may be updated, replaced, or obsoleted by other documents at any <lb/>time. It is inappropriate to use Internet-Drafts as reference <lb/>material or to cite them other than as "work in progress." <lb/>This Internet-Draft will expire on February 28, 2020. <lb/>Copyright Notice <lb/>Copyright (c) 2019 IETF Trust and the persons identified as the <lb/>document authors. All rights reserved. <lb/>This document is subject to BCP 78 and the IETF Trust's Legal <lb/>Provisions Relating to IETF Documents <lb/>(https://trustee.ietf.org/license-info) in effect on the date of <lb/>publication of this document. Please review these documents <lb/>carefully, as they describe your rights and restrictions with respect <lb/>to this document. Code Components extracted from this document must <lb/>include Simplified BSD License text as described in Section 4.e of <lb/>the Trust Legal Provisions and are provided without warranty as <lb/>described in the Simplified BSD License. <lb/></front> + + <note place="footnote">Thubert <lb/>Expires February 28, 2020 <lb/></note> + + <page>[Page 1] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>6tisch-architecture <lb/>August 2019 <lb/></note> + + <div type="toc">Table of Contents <lb/>1. Introduction . . . . . . . . . . . . . . . . . . . . . . . . <lb/>3 <lb/>2. Terminology . . . . . . . . . . . . . . . . . . . . . . . . . <lb/>5 <lb/>2.1. New Terms . . . . . . . . . . . . . . . . . . . . . . . . <lb/>5 <lb/>2.2. Abbreviations . . . . . . . . . . . . . . . . . . . . . . 10 <lb/>2.3. Related Documents . . . . . . . . . . . . . . . . . . . . 11 <lb/>3. High Level Architecture . . . . . . . . . . . . . . . . . . . 12 <lb/>3.1. A Non-Broadcast Multi-Access Radio Mesh Network . . . . . 12 <lb/>3.2. A Multi-Link Subnet Model . . . . . . . . . . . . . . . . 14 <lb/>3.3. TSCH: A Deterministic MAC Layer . . . . . . . . . . . . . 16 <lb/>3.4. Scheduling TSCH . . . . . . . . . . . . . . . . . . . . . 17 <lb/>3.5. Distributed vs. Centralized Routing . . . . . . . . . . . 18 <lb/>3.6. Forwarding Over TSCH . . . . . . . . . . . . . . . . . . 19 <lb/>3.7. 6TiSCH Stack . . . . . . . . . . . . . . . . . . . . . . 20 <lb/>3.8. Communication Paradigms and Interaction Models . . . . . 22 <lb/>4. Architecture Components . . . . . . . . . . . . . . . . . . . 23 <lb/>4.1. 6LoWPAN (and RPL) . . . . . . . . . . . . . . . . . . . . 23 <lb/>4.1.1. RPL-Unaware Leaves and 6LoWPAN ND . . . . . . . . . . 23 <lb/>4.1.2. 6LBR and RPL Root . . . . . . . . . . . . . . . . . . 23 <lb/>4.2. Network Access and Addressing . . . . . . . . . . . . . . 24 <lb/>4.2.1. Join Process . . . . . . . . . . . . . . . . . . . . 24 <lb/>4.2.2. Registration . . . . . . . . . . . . . . . . . . . . 26 <lb/>4.3. TSCH and 6top . . . . . . . . . . . . . . . . . . . . . . 28 <lb/>4.3.1. 6top . . . . . . . . . . . . . . . . . . . . . . . . 28 <lb/>4.3.2. Scheduling Functions and the 6top protocol . . . . . 29 <lb/>4.3.3. 6top and RPL Objective Function operations . . . . . 31 <lb/>4.3.4. Network Synchronization . . . . . . . . . . . . . . . 31 <lb/>4.3.5. Slotframes and CDU matrix . . . . . . . . . . . . . . 33 <lb/>4.3.6. Distributing the reservation of cells . . . . . . . . 34 <lb/>4.4. Schedule Management Mechanisms . . . . . . . . . . . . . 35 <lb/>4.4.1. Static Scheduling . . . . . . . . . . . . . . . . . . 35 <lb/>4.4.2. Neighbor-to-neighbor Scheduling . . . . . . . . . . . 36 <lb/>4.4.3. Remote Monitoring and Schedule Management . . . . . . 36 <lb/>4.4.4. Hop-by-hop Scheduling . . . . . . . . . . . . . . . . 39 <lb/>4.5. On Tracks . . . . . . . . . . . . . . . . . . . . . . . . 39 <lb/>4.5.1. General Behavior of Tracks . . . . . . . . . . . . . 40 <lb/>4.5.2. Serial Track . . . . . . . . . . . . . . . . . . . . 40 <lb/>4.5.3. Complex Track with Replication and Elimination . . . 41 <lb/>4.5.4. DetNet End-to-end Path . . . . . . . . . . . . . . . 41 <lb/>4.5.5. Cell Reuse . . . . . . . . . . . . . . . . . . . . . 42 <lb/>4.6. Forwarding Models . . . . . . . . . . . . . . . . . . . . 43 <lb/>4.6.1. Track Forwarding . . . . . . . . . . . . . . . . . . 43 <lb/>4.6.2. IPv6 Forwarding . . . . . . . . . . . . . . . . . . . 46 <lb/>4.6.3. Fragment Forwarding . . . . . . . . . . . . . . . . . 46 <lb/>4.7. Advanced 6TiSCH Routing . . . . . . . . . . . . . . . . . 48 <lb/>4.7.1. Packet Marking and Handling . . . . . . . . . . . . . 48 <lb/>4.7.2. Replication, Retries and Elimination . . . . . . . . 49 <lb/></div> + + <note place="footnote">Thubert <lb/>Expires February 28, 2020 <lb/></note> + + <page>[Page 2] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>6tisch-architecture <lb/>August 2019 <lb/></note> + + <div type="toc">5. IANA Considerations . . . . . . . . . . . . . . . . . . . . . 51 <lb/>6. Security Considerations . . . . . . . . . . . . . . . . . . . 51 <lb/>6.1. Availability of Remote Services . . . . . . . . . . . . . 51 <lb/>6.2. Selective Jamming . . . . . . . . . . . . . . . . . . . . 52 <lb/>6.3. MAC-Layer Security . . . . . . . . . . . . . . . . . . . 52 <lb/>6.4. Time Synchronization . . . . . . . . . . . . . . . . . . 53 <lb/>6.5. Validating ASN . . . . . . . . . . . . . . . . . . . . . 54 <lb/>6.6. Network Keying and Rekeying . . . . . . . . . . . . . . . 54 <lb/>7. Acknowledgments . . . . . . . . . . . . . . . . . . . . . . . 56 <lb/>7.1. Contributors . . . . . . . . . . . . . . . . . . . . . . 56 <lb/>7.2. Special Thanks . . . . . . . . . . . . . . . . . . . . . 57 <lb/>7.3. And Do not Forget . . . . . . . . . . . . . . . . . . . . 57 <lb/>8. References . . . . . . . . . . . . . . . . . . . . . . . . . 58 <lb/>8.1. Normative References . . . . . . . . . . . . . . . . . . 58 <lb/>8.2. Informative References . . . . . . . . . . . . . . . . . 62 <lb/>Appendix A. Related Work In Progress . . . . . . . . . . . . . . 67 <lb/>A.1. Unchartered IETF work items . . . . . . . . . . . . . . . 68 <lb/>A.1.1. 6TiSCH Zerotouch security . . . . . . . . . . . . . . 68 <lb/>A.1.2. 6TiSCH Track Setup . . . . . . . . . . . . . . . . . 68 <lb/>A.1.3. Using BIER in a 6TiSCH Network . . . . . . . . . . . 69 <lb/>A.2. External (non-IETF) work items . . . . . . . . . . . . . 69 <lb/>Author's Address . . . . . . . . . . . . . . . . . . . . . . . . 70 <lb/></div> + + <body>1. Introduction <lb/>Wireless Networks enable a wide variety of devices of any size to get <lb/>interconnected, often at a very low marginal cost per device, at any <lb/>range, and in circumstances where wiring may be impractical, for <lb/>instance on fast-moving or rotating devices. <lb/>On the other hand, Deterministic Networking maximizes the packet <lb/>delivery ratio within a bounded latency so as to enable mission-<lb/>critical machine-to-machine (M2M) operations. Applications that need <lb/>such networks are presented in [I-D.ietf-detnet-use-cases] and <lb/>[I-D.bernardos-raw-use-cases], which presents a number of additional <lb/>use cases for Reliable and Available Wireless networks. The <lb/>considered applications include Professional Media, Industrial <lb/>Automation Control Systems (IACS), building automation, in-vehicle <lb/>command and control, commercial automation and asset tracking with <lb/>mobile scenarios, as well as gaming, drones and edge robotic control, <lb/>and home automation applications. <lb/>The Timeslotted Channel Hopping (TSCH) [RFC7554] mode of the IEEE <lb/>Std. 802.15.4 [IEEE802154] Medium Access Control (MAC) was introduced <lb/>with the IEEE Std. 802.15.4e [IEEE802154e] amendment and is now <lb/>retrofitted in the main standard. For all practical purposes, this <lb/>document is expected to be insensitive to the revisions of that <lb/>standard, which is thus referenced without a date. TSCH is both a <lb/></body> + + <note place="footnote">Thubert <lb/>Expires February 28, 2020 <lb/></note> + + <page>[Page 3] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>6tisch-architecture <lb/>August 2019 <lb/></note> + + <body>Time-Division Multiplexing and a Frequency-Division Multiplexing <lb/>technique whereby a different channel can be used for each <lb/>transmission, and that allows to schedule transmissions for <lb/>deterministic operations, and applies to the slower and most energy <lb/>constrained wireless use cases. <lb/>The scheduled operation provides for a more reliable experience which <lb/>can be used to monitor and manage resources, e.g., energy and water, <lb/>in a more efficient fashion. <lb/>Proven Deterministic Networking standards for use in Process Control, <lb/>including ISA100.11a [ISA100.11a] and WirelessHART [WirelessHART], <lb/>have demonstrated the capabilities of the IEEE Std. 802.15.4 TSCH MAC <lb/>for high reliability against interference, low-power consumption on <lb/>well-known flows, and its applicability for Traffic Engineering (TE) <lb/>from a central controller. <lb/>To enable the convergence of Information Technology (IT) and <lb/>Operational Technology (OT) in Low-Power Lossy Networks (LLNs), the <lb/>6TiSCH Architecture supports an IETF suite of protocols over the IEEE <lb/>Std. 802.15.4 TSCH MAC to provide IP connectivity for energy and <lb/>otherwise constrained wireless devices. <lb/>The 6TiSCH Architecture relies on IPv6 [RFC8200] and the use of <lb/>routing to provide large scaling capabilities. The addition of a <lb/>high-speed federating backbone adds yet another degree of scalability <lb/>to the design. The backbone is typically a Layer-2 transit Link such <lb/>as an Ethernet bridged network, but it can also be a more complex <lb/>routed structure. <lb/>The 6TiSCH Architecture introduces an IPv6 Multi-Link subnet model <lb/>that is composed of a federating backbone and a number of IEEE Std. <lb/>802.15.4 TSCH low-power wireless networks federated and synchronized <lb/>by Backbone Routers. If the backbone is a Layer-2 transit Link then <lb/>the Backbone Routers can operate as an IPv6 Neighbor Discovery (IPv6 <lb/>ND) [RFC4861] proxy. <lb/>The 6TiSCH Architecture leverages 6LoWPAN [RFC4944] to adapt IPv6 to <lb/>the constrained media and RPL [RFC6550] for the distributed routing <lb/>operations. <lb/>Centralized routing refers to a model where routes are computed and <lb/>resources are allocated from a central controller. This is <lb/>particularly helpful to schedule deterministic multihop <lb/>transmissions. In contrast, Distributed Routing refers to a model <lb/>that relies on concurrent peer to peer protocol exchanges for TSCH <lb/>resource allocation and routing operations. <lb/></body> + + <note place="footnote">Thubert <lb/>Expires February 28, 2020 <lb/></note> + + <page>[Page 4] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>6tisch-architecture <lb/>August 2019 <lb/></note> + + <body>The architecture defines mechanisms to establish and maintain routing <lb/>and scheduling in a centralized, distributed, or mixed fashion, for <lb/>use in multiple OT environments. It is applicable in particular to <lb/>highly scalable solutions such as used in Advanced Metering <lb/>Infrastructure [AMI] solutions that leverage distributed routing to <lb/>enable multipath forwarding over large LLN meshes. <lb/>2. Terminology <lb/>2.1. New Terms <lb/>The draft does not reuse terms from the IEEE Std. 802.15.4 <lb/>[IEEE802154] standard such as "path" or "link" which bear a meaning <lb/>that is quite different from classical IETF parlance. <lb/>This document adds the following terms: <lb/>6TiSCH (IPv6 over the TSCH mode of IEEE 802.15.4): 6TiSCH defines an <lb/>adaptation sublayer for IPv6 over TSCH called 6top, a set <lb/>of protocols for setting up a TSCH schedule in <lb/>distributed approach, and a security solution. 6TiSCH may <lb/>be extended in the future for other MAC/PHY pairs <lb/>providing a service similar to TSCH. <lb/>6top (6TiSCH Operation Sublayer): The next higher layer of the IEEE <lb/>Std. 802.15.4 TSCH MAC layer. 6top provides the <lb/>abstraction of an IP link over a TSCH MAC, schedules <lb/>packets over TSCH cells, and exposes a management <lb/>interface to schedule TSCH cells. <lb/>6P (6top Protocol): The protocol defined in [RFC8480]. 6P enables <lb/>Layer-2 peers to allocate, move or deallocate cells in <lb/>their respective schedules to communicate. 6P operates <lb/>at the 6top layer. <lb/>6P Transaction: A 2-way or 3-way sequence of 6P messages used by <lb/>Layer-2 peers to modify their communication schedule. <lb/>ASN (Absolute Slot Number): Defined in [IEEE802154], the ASN is the <lb/>total number of timeslots that have elapsed since the <lb/>Epoch Time when the TSCH network started. Incremented by <lb/>one at each timeslot. It is wide enough to not roll over <lb/>in practice. <lb/>bundle: <lb/>A group of equivalent scheduled cells, i.e., cells <lb/>identified by different [slotOffset, channelOffset], <lb/>which are scheduled for a same purpose, with the same <lb/>neighbor, with the same flags, and the same slotframe. <lb/></body> + + <note place="footnote">Thubert <lb/>Expires February 28, 2020 <lb/></note> + + <page>[Page 5] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>6tisch-architecture <lb/>August 2019 <lb/></note> + + <body>The size of the bundle refers to the number of cells it <lb/>contains. For a given slotframe length, the size of the <lb/>bundle translates directly into bandwidth. A bundle is a <lb/>local abstraction that represents a half-duplex link for <lb/>either sending or receiving, with bandwidth that amounts <lb/>to the sum of the cells in the bundle. <lb/>Layer-2 vs. Layer-3 bundle: Bundles are associated for either <lb/>Layer-2 (switching) or Layer-3 (routing) forwarding <lb/>operations. A pair of Layer-3 bundles (one for each <lb/>direction) maps to an IP Link with a neighbor, whereas a <lb/>set of Layer-2 bundles (of an "arbitrary" cardinality and <lb/>direction) corresponds to the relation of one or more <lb/>incoming bundle(s) from the previous-hop neighbor(s) with <lb/>one or more outgoing bundle(s) to the next-hop <lb/>neighbor(s) along a Track as part of the switching role, <lb/>which may include replication and elimination. <lb/>CCA (Clear Channel Assessment): A mechanism defined in [IEEE802154] <lb/>whereby nodes listen to the channel before sending to <lb/>detect ongoing transmissions from other parties. Because <lb/>the network is synchronized, CCA cannot be used to detect <lb/>colliding transmissions within the same network, but it <lb/>can be used to detect other radio networks in vicinity. <lb/>cell: <lb/>A unit of transmission resource in the CDU matrix, a cell <lb/>is identified by a slotOffset and a channelOffset. A <lb/>cell can be scheduled or unscheduled. <lb/>Channel Distribution/Usage (CDU) matrix: : A matrix of cells (i,j) <lb/>representing the spectrum (channel) distribution among <lb/>the different nodes in the 6TiSCH network. The CDU <lb/>matrix has width in timeslots, equal to the period of the <lb/>network scheduling operation, and height equal to the <lb/>number of available channels. Every cell (i,j) in the <lb/>CDU, identified by (slotOffset, channelOffset), belongs <lb/>to a specific chunk. <lb/>channelOffset: Identifies a row in the TSCH schedule. The number of <lb/>channelOffset values is bounded by the number of <lb/>available frequencies. The channelOffset translates into <lb/>a frequency with a function that depends on the absolute <lb/>time when the communication takes place, resulting in a <lb/>channel hopping operation. <lb/>chunk: <lb/>A well-known list of cells, distributed in time and <lb/>frequency, within a CDU matrix. A chunk represents a <lb/>portion of a CDU matrix. The partition of the CDU matrix <lb/></body> + + <note place="footnote">Thubert <lb/>Expires February 28, 2020 <lb/></note> + + <page>[Page 6] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>6tisch-architecture <lb/>August 2019 <lb/></note> + + <body>in chunks is globally known by all the nodes in the <lb/>network to support the appropriation process, which is a <lb/>negotiation between nodes within an interference domain. <lb/>A node that manages to appropriate a chunk gets to decide <lb/>which transmissions will occur over the cells in the <lb/>chunk within its interference domain, i.e., a parent node <lb/>will decide when the cells within the appropriated chunk <lb/>are used and by which node, among its children. <lb/>CoJP (Constrained Join Protocol): The Constrained Join Protocol <lb/>(CoJP) enables a pledge to securely join a 6TiSCH network <lb/>and obtain network parameters over a secure channel. <lb/>Minimal Security Framework for 6TiSCH <lb/>[I-D.ietf-6tisch-minimal-security] defines the minimal <lb/>CoJP setup with pre-shared keys defined. In that mode, <lb/>CoJP can operate with a single round trip exchange. <lb/>dedicated cell: A cell that is reserved for a given node to transmit <lb/>to a specific neighbor. <lb/>deterministic network: The generic concept of deterministic network <lb/>is defined in [I-D.ietf-detnet-architecture]. When <lb/>applied to 6TiSCH, it refers to the reservation of Tracks <lb/>which guarantees an end-to-end latency and optimizes the <lb/>Packet Delivery Ratio (PDR) for well-characterized flows. <lb/>distributed cell reservation: A reservation of a cell done by one or <lb/>more in-network entities. <lb/>distributed Track reservation: A reservation of a Track done by one <lb/>or more in-network entities. <lb/>EB (Enhanced Beacon): A special frame defined in [IEEE802154] used <lb/>by a node, including the JP, to announce the presence of <lb/>the network. It contains enough information for a pledge <lb/>to synchronize to the network. <lb/>hard cell: A scheduled cell which the 6top sublayer may not <lb/>relocate. <lb/>hopping sequence: Ordered sequence of frequencies, identified by a <lb/>Hopping_Sequence_ID, used for channel hopping when <lb/>translating the channelOffset value into a frequency. <lb/>IE (Information Element): Type-Length-Value containers placed at the <lb/>end of the MAC header, used to pass data between layers <lb/>or devices. Some IE identifiers are managed by the IEEE <lb/>[IEEE802154]. Some IE identifiers are managed by the <lb/></body> + + <note place="footnote">Thubert <lb/>Expires February 28, 2020 <lb/></note> + + <page>[Page 7] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>6tisch-architecture <lb/>August 2019 <lb/></note> + + <body>IETF [RFC8137], and <lb/>[I-D.ietf-6tisch-enrollment-enhanced-beacon] uses one <lb/>subtype to support the selection of the Join Proxy. <lb/>join process: The overall process that includes the discovery of the <lb/>network by pledge(s) and the execution of the join <lb/>protocol. <lb/>join protocol: The protocol that allows the pledge to join the <lb/>network. The join protocol encompasses authentication, <lb/>authorization and parameter distribution. The join <lb/>protocol is executed between the pledge and the JRC. <lb/>joined node: The new device, after having completed the join <lb/>process, often just called a node. <lb/>JP (Join Proxy): Node already part of the 6TiSCH network that serves <lb/>as a relay to provide connectivity between the pledge and <lb/>the JRC. The JP announces the presence of the network by <lb/>regularly sending EB frames. <lb/>JRC (Join Registrar/Coordinator): Central entity responsible for the <lb/>authentication, authorization and configuration of the <lb/>pledge. <lb/>link: <lb/>A communication facility or medium over which nodes can <lb/>communicate at the Link-Layer, the layer immediately <lb/>below IP. In 6TiSCH, the concept is implemented as a <lb/>collection of Layer-3 bundles. Note: the IETF parlance <lb/>for the term "Link" is adopted, as opposed to the IEEE <lb/>Std. 802.15.4 terminology. <lb/>Operational Technology: OT refers to technology used in automation, <lb/>for instance in industrial control networks. The <lb/>convergence of IT and OT is the main object of the <lb/>Industrial Internet of Things (IIOT). <lb/>pledge: <lb/>A new device that attempts to join a 6TiSCH network. <lb/>(to) relocate a cell: The action operated by the 6top sublayer of <lb/>changing the slotOffset and/or channelOffset of a soft <lb/>cell. <lb/>(to) schedule a cell: The action of turning an unscheduled cell into <lb/>a scheduled cell. <lb/>scheduled cell: A cell which is assigned a neighbor MAC address <lb/>(broadcast address is also possible), and one or more of <lb/></body> + + <note place="footnote">Thubert <lb/>Expires February 28, 2020 <lb/></note> + + <page>[Page 8] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>6tisch-architecture <lb/>August 2019 <lb/></note> + + <body>the following flags: TX, RX, Shared and Timekeeping. A <lb/>scheduled cell can be used by the IEEE Std. 802.15.4 TSCH <lb/>implementation to communicate. A scheduled cell can <lb/>either be a hard or a soft cell. <lb/>SF (6top Scheduling Function): The cell management entity that adds <lb/>or deletes cells dynamically based on application <lb/>networking requirements. The cell negotiation with a <lb/>neighbor is done using 6P. <lb/>SFID (6top Scheduling Function Identifier): A 4-bit field <lb/>identifying an SF. <lb/>shared cell: A cell marked with both the "TX" and "shared" flags. <lb/>This cell can be used by more than one transmitter node. <lb/>A back-off algorithm is used to resolve contention. <lb/>slotframe: A collection of timeslots repeating in time, analogous to <lb/>a superframe in that it defines periods of communication <lb/>opportunities. It is characterized by a slotframe_ID, <lb/>and a slotframe_size. Multiple slotframes can coexist in <lb/>a node's schedule, i.e., a node can have multiple <lb/>activities scheduled in different slotframes, based on <lb/>the priority of its packets/traffic flows. The timeslots <lb/>in the Slotframe are indexed by the SlotOffset; the first <lb/>timeslot is at SlotOffset 0. <lb/>slotOffset: A column in the TSCH schedule, i.e., the number of <lb/>timeslots since the beginning of the current iteration of <lb/>the slotframe. <lb/>soft cell: A scheduled cell which the 6top sublayer can relocate. <lb/>time source neighbor: A neighbor that a node uses as its time <lb/>reference, and to which it needs to keep its clock <lb/>synchronized. <lb/>timeslot: <lb/>A basic communication unit in TSCH which allows a <lb/>transmitter node to send a frame to a receiver neighbor, <lb/>and that receiver neighbor to optionally send back an <lb/>acknowledgment. <lb/>Track: <lb/>A Track is a Directed Acyclic Graph (DAG) that is used as <lb/>a complex multi-hop path to the destination(s) of the <lb/>path. In the case of unicast traffic, the Track is a <lb/>Destination Oriented DAG (DODAG) where the Root of the <lb/>DODAG is the destination of the unicast traffic. A Track <lb/>enables replication, elimination and reordering functions <lb/></body> + + <note place="footnote">Thubert <lb/>Expires February 28, 2020 <lb/></note> + + <page>[Page 9] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>6tisch-architecture <lb/>August 2019 <lb/></note> + + <body>on the way (more on those functions in the Deterministic <lb/>Networking Architecture [I-D.ietf-detnet-architecture]). <lb/>A Track reservation locks physical resources such as <lb/>cells and buffers in every node along the DODAG. A Track <lb/>is associated with a owner that can be for instance the <lb/>destination of the Track. <lb/>TrackID: <lb/>A TrackID is either globally unique, or locally unique to <lb/>the Track owner, in which case the identification of the <lb/>owner must be provided together with the TrackID to <lb/>provide a full reference to the Track. If the Track <lb/>owner is the destination of the Track then the <lb/>destination IP address of packets along the Track can be <lb/>used as identification of the owner and a local <lb/>InstanceID [RFC6550] can be used as TrackID. In that <lb/>case, a RPL Packet Information [RFC6550] in an IPv6 <lb/>packet can unambiguously identify the Track and can be <lb/>expressed in a compressed form using [RFC8138]. <lb/>TSCH: <lb/>A medium access mode of the IEEE Std. 802.15.4 <lb/>[IEEE802154] standard which uses time synchronization to <lb/>achieve ultra-low-power operation, and channel hopping to <lb/>enable high reliability. <lb/>TSCH Schedule: A matrix of cells, each cell indexed by a slotOffset <lb/>and a channelOffset. The TSCH schedule contains all the <lb/>scheduled cells from all slotframes and is sufficient to <lb/>qualify the communication in the TSCH network. The <lb/>number of channelOffset values (the "height" of the <lb/>matrix) is equal to the number of available frequencies. <lb/>Unscheduled Cell: A cell which is not used by the IEEE Std. 802.15.4 <lb/>TSCH implementation. <lb/>2.2. Abbreviations <lb/>This document uses the following abbreviations: <lb/>6BBR: 6LoWPAN Backbone Router (router with a proxy ND function) <lb/>6LBR: 6LoWPAN Border Router (authoritative on DAD) <lb/>6LN: 6LoWPAN Node <lb/>6LR: 6LoWPAN Router (relay to the registration process) <lb/>6CIO: Capability Indication Option <lb/></body> + + <note place="footnote">Thubert <lb/>Expires February 28, 2020 <lb/></note> + + <page>[Page 10] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>6tisch-architecture <lb/>August 2019 <lb/></note> + + <body>(E)ARO: (Extended) Address Registration Option <lb/>(E)DAR: (Extended) Duplicate Address Request <lb/>(E)DAC: (Extended) Duplicate Address Confirmation <lb/>DAD: Duplicate Address Detection <lb/>DODAG: Destination-Oriented Directed Acyclic Graph <lb/>LLN: Low-Power and Lossy Network (a typical IoT network) <lb/>NA: <lb/>Neighbor Advertisement <lb/>NCE: Neighbor Cache Entry <lb/>ND: <lb/>Neighbor Discovery <lb/>NDP: Neighbor Discovery Protocol <lb/>PCE: Path Computation Element <lb/>NME: Network Management Entity <lb/>ROVR: Registration Ownership Verifier (pronounced rover) <lb/>RPL: IPv6 Routing Protocol for LLNs (pronounced ripple) <lb/>RA: <lb/>Router Advertisement <lb/>RS: <lb/>Router Solicitation <lb/>TSCH: timeslotted Channel Hopping <lb/>TID: Transaction ID (a sequence counter in the EARO) <lb/>2.3. Related Documents <lb/>The draft also conforms to the terms and models described in <lb/>[RFC3444] and [RFC5889] and uses the vocabulary and the concepts <lb/>defined in [RFC4291] for the IPv6 Architecture and refers [RFC4080] <lb/>for reservation <lb/>The draft uses domain-specific terminology defined or referenced in: <lb/>6LoWPAN ND "Neighbor Discovery Optimization for Low-power and <lb/>Lossy Networks" [RFC6775] and "Registration Extensions for 6LoWPAN <lb/>Neighbor Discovery" [RFC8505], <lb/></body> + + <note place="footnote">Thubert <lb/>Expires February 28, 2020 <lb/></note> + + <page>[Page 11] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>6tisch-architecture <lb/>August 2019 <lb/></note> + + <body>"Terms Used in Routing for Low-Power and Lossy Networks (LLNs)" <lb/>[RFC7102], <lb/>and RPL "Objective Function Zero for the Routing Protocol for Low-<lb/>Power and Lossy Networks (RPL)" [RFC6552], and "RPL: IPv6 Routing <lb/>Protocol for Low-Power and Lossy Networks" [RFC6550]. <lb/>Other terms in use in LLNs are found in "Terminology for Constrained-<lb/>Node Networks" [RFC7228]. <lb/>Readers are expected to be familiar with all the terms and concepts <lb/>that are discussed in <lb/>o "Neighbor Discovery for IP version 6" [RFC4861], and "IPv6 <lb/>Stateless Address Autoconfiguration" [RFC4862]. <lb/>In addition, readers would benefit from reading: <lb/>o "Problem Statement and Requirements for IPv6 over Low-Power <lb/>Wireless Personal Area Network (6LoWPAN) Routing" [RFC6606], <lb/>o "Multi-Link Subnet Issues" [RFC4903], and <lb/>o "IPv6 over Low-Power Wireless Personal Area Networks (6LoWPANs): <lb/>Overview, Assumptions, Problem Statement, and Goals" [RFC4919] <lb/>prior to this specification for a clear understanding of the art in <lb/>ND-proxying and binding. <lb/>3. High Level Architecture <lb/>3.1. A Non-Broadcast Multi-Access Radio Mesh Network <lb/>A 6TiSCH network is an IPv6 [RFC8200] subnet which, in its basic <lb/>configuration illustrated in Figure 1, is a single Low-Power Lossy <lb/>Network (LLN) operating over a synchronized TSCH-based mesh. <lb/></body> + + <note place="footnote">Thubert <lb/>Expires February 28, 2020 <lb/></note> + + <page>[Page 12] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>6tisch-architecture <lb/>August 2019 <lb/></note> + + <body>---+--------............ ------------<lb/>| <lb/>External Network <lb/>| <lb/>| <lb/>+-----+ <lb/>+-----+ <lb/>| NME | <lb/>| <lb/>| LLN Border <lb/>| PCE | <lb/>| <lb/>| router (6LBR) <lb/>+-----+ <lb/>+-----+ <lb/>o <lb/> o <lb/>o <lb/>o <lb/>o <lb/>o <lb/>o <lb/>o <lb/>o <lb/>o 6LoWPAN + RPL o <lb/>o <lb/>o <lb/>o <lb/>o <lb/>o <lb/> Figure 1: Basic Configuration of a 6TiSCH Network <lb/>Inside a 6TiSCH LLN, nodes rely on 6LoWPAN Header Compression <lb/>(6LoWPAN HC) [RFC6282] to encode IPv6 packets. From the perspective <lb/>of the network layer, a single LLN interface (typically an IEEE Std. <lb/>802.15.4-compliant radio) may be seen as a collection of Links with <lb/>different capabilities for unicast or multicast services. <lb/>6TiSCH nodes join a mesh network by attaching to nodes that are <lb/>already members of the mesh (see Section 4.2.1). The security <lb/>aspects of the join process are further detailed in Section 6. In a <lb/>mesh network, 6TiSCH nodes are not necessarily reachable from one <lb/>another at Layer-2 and an LLN may span over multiple links. <lb/>This forms a homogeneous non-broadcast multi-access (NBMA) subnet, <lb/>which is beyond the scope of IPv6 Neighbor Discovery (IPv6 ND) <lb/>[RFC4861][RFC4862]. 6LoWPAN Neighbor Discovery (6LoWPAN ND) <lb/>[RFC6775][RFC8505] specifies extensions to IPv6 ND that enable ND <lb/>operations in this type of subnet that can be protected against <lb/>address theft and impersonation with [I-D.ietf-6lo-ap-nd]. <lb/>Once it has joined the 6TiSCH network, a node acquires IPv6 Addresses <lb/>and register them using 6LoWPAN ND. This guarantees that the <lb/>addresses are unique and protects the address ownership over the <lb/>subnet, more in Section 4.2.2. <lb/>Within the NBMA subnet, RPL [RFC6550] enables routing in the so-<lb/>called Route Over fashion, either in storing (stateful) or non-<lb/>storing (stateless, with routing headers) mode. From there, some <lb/>nodes can act as routers for 6LoWPAN ND and RPL operations, as <lb/>detailed in Section 4.1. <lb/>With TSCH, devices are time-synchronized at the MAC level. The use <lb/>of a particular RPL Instance for time synchronization is discussed in <lb/>Section 4.3.4. With this mechanism, the time synchronization starts <lb/>at the RPL Root and follows the RPL loopless routing topology. <lb/></body> + + <note place="footnote">Thubert <lb/>Expires February 28, 2020 <lb/></note> + + <page>[Page 13] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>6tisch-architecture <lb/>August 2019 <lb/></note> + + <body>RPL forms Destination Oriented Directed Acyclic Graphs (DODAGs) <lb/>within Instances of the protocol, each Instance being associated with <lb/>an Objective Function (OF) to form a routing topology. A particular <lb/>6TiSCH node, the LLN Border Router (6LBR), acts as RPL Root, 6LoWPAN <lb/>HC terminator, and Border Router for the LLN to the outside. The <lb/>6LBR is usually powered. More on RPL Instances can be found in <lb/>section 3.1 of RPL [RFC6550], in particular "3.1.2. RPL Identifiers" <lb/>and "3.1.3. Instances, DODAGs, and DODAG Versions". RPL adds <lb/>artifacts in the data packets that are compressed with a 6LoWPAN <lb/>addition 6LoRH [RFC8138]. <lb/>Additional routing and scheduling protocols may be deployed to <lb/>establish on-demand Peer-to-Peer routes with particular <lb/>characteristics inside the 6TiSCH network. This may be achieved in a <lb/>centralized fashion by a Path Computation Element (PCE) [PCE] that <lb/>programs both the routes and the schedules inside the 6TiSCH nodes, <lb/>or by in a distributed fashion using a reactive routing protocol and <lb/>a Hop-by-Hop scheduling protocol. <lb/>This architecture expects that a 6LoWPAN node can connect as a leaf <lb/>to a RPL network, where the leaf support is the minimal functionality <lb/>to connect as a host to a RPL network without the need to participate <lb/>to the full routing protocol. The architecture also expects that a <lb/>6LoWPAN node that is not aware at all of the RPL protocol may also <lb/>connect as described in [I-D.ietf-roll-unaware-leaves]. <lb/>3.2. A Multi-Link Subnet Model <lb/>An extended configuration of the subnet comprises multiple LLNs as <lb/>illustrated in Figure 2. In the extended configuration, a Routing <lb/>Registrar [RFC8505] may be connected to the node that acts as RPL <lb/>Root and / or 6LoWPAN 6LBR and provides connectivity to the larger <lb/>campus / factory plant network over a high-speed backbone or a back-<lb/>haul link. The Routing registrar may perform IPv6 ND proxy <lb/>operations, or redistribute the registration in a routing protocol <lb/>such as OSPF [RFC5340] or BGP [RFC2545], or inject a route in a <lb/>mobility protocol such as MIPv6 [RFC6275], NEMO [RFC3963], or LISP <lb/>[RFC6830]. <lb/>Multiple LLNs can be interconnected and possibly synchronized over a <lb/>backbone, which can be wired or wireless. The backbone can operate <lb/>with IPv6 ND [RFC4861][RFC4862] procedures or an hybrid of IPv6 ND <lb/>and 6LoWPAN ND [RFC6775][RFC8505][I-D.ietf-6lo-ap-nd]. <lb/></body> + + <note place="footnote">Thubert <lb/>Expires February 28, 2020 <lb/></note> + + <page>[Page 14] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>6tisch-architecture <lb/>August 2019 <lb/></note> + + <body>| <lb/>+-----+ <lb/>+-----+ <lb/>+-----+ <lb/>(default) | <lb/>| <lb/>(Optional) | <lb/>| <lb/>| <lb/>| IPv6 <lb/>Router | <lb/>| <lb/>6LBR | <lb/>| <lb/>| <lb/>| Node <lb/>+-----+ <lb/>+-----+ <lb/>+-----+ <lb/>| Backbone side <lb/>| <lb/>| <lb/>--------+---+--------------------+-+---------------+------+---<lb/>| <lb/>| <lb/>| <lb/>+-----------+ <lb/>+-----------+ <lb/>+-----------+ <lb/>| Routing <lb/>| <lb/>| Routing <lb/>| <lb/>| Routing <lb/>| <lb/>| Registrar | <lb/>| Registrar | <lb/>| Registrar | <lb/>+-----------+ <lb/>+-----------+ <lb/>+-----------+ <lb/> o <lb/>Wireless side <lb/>o o <lb/>o o <lb/>o o <lb/>o o <lb/>o o <lb/>o o o <lb/>o o o o o <lb/>o <lb/>6TiSCH <lb/>o <lb/>6TiSCH <lb/>o o <lb/>o o 6TiSCH o <lb/>o <lb/>o LLN <lb/>o o <lb/>o o LLN <lb/>o <lb/>o <lb/>LLN <lb/>o <lb/>o <lb/>o o o o <lb/>o o o o o <lb/>o o <lb/>o <lb/>o <lb/>Figure 2: Extended Configuration of a 6TiSCH Network <lb/>A Routing Registrar that performs proxy IPv6 ND operations over the <lb/>backbone on behalf of the 6TiSCH nodes is called a Backbone Router <lb/>(6BBR) [I-D.ietf-6lo-backbone-router]. The 6BBRs are placed along <lb/>the wireless edge of a Backbone, and federate multiple wireless links <lb/>to form a single MultiLink Subnet. The 6BBRs synchronize with one <lb/>another over the backbone, so as to ensure that the multiple LLNs <lb/>that form the IPv6 subnet stay tightly synchronized. <lb/>The use of multicast can also be reduced on the backbone with a <lb/>registrar that would contribute to Duplicate Address Detection as <lb/>well as Address Lookup using only unicast request/response exchanges. <lb/>[I-D.thubert-6man-unicast-lookup] is a proposed method that presents <lb/>an example of how to this could be achieved with an extension of <lb/>[RFC8505], using an optional 6LBR as a SubNet-level registrar, as <lb/>illustrated in Figure 2. <lb/>As detailed in Section 4.1 the 6LBR that serves the LLN and the Root <lb/>of the RPL network need to share information about the devices that <lb/>are learned through either 6LoWPAN ND or RPL but not both. The <lb/>preferred way of achieving this is to collocate/combine them. The <lb/>combined RPL Root and 6LBR may be collocated with the 6BBR, or <lb/>directly attached to the 6BBR. In the latter case, it leverages the <lb/>extended registration process defined in [RFC8505] to proxy the <lb/>6LoWPAN ND registration to the 6BBR on behalf of the LLN nodes, so <lb/>that the 6BBR may in turn perform proxy classical ND operations over <lb/>the backbone. <lb/></body> + + <note place="footnote">Thubert <lb/>Expires February 28, 2020 <lb/></note> + + <page>[Page 15] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>6tisch-architecture <lb/>August 2019 <lb/></note> + + <body>The DetNet Architecture [I-D.ietf-detnet-architecture] studies <lb/>Layer-3 aspects of Deterministic Networks, and covers networks that <lb/>span multiple Layer-2 domains. If the Backbone is Deterministic <lb/>(such as defined by the Time Sensitive Networking WG at IEEE), then <lb/>the Backbone Router ensures that the end-to-end deterministic <lb/>behavior is maintained between the LLN and the backbone. <lb/>3.3. TSCH: A Deterministic MAC Layer <lb/>Though at a different time scale (several orders of magnitude), both <lb/>IEEE Std. 802.1TSN and IEEE Std. 802.15.4 TSCH standards provide <lb/>Deterministic capabilities to the point that a packet that pertains <lb/>to a certain flow may traverse a network from node to node following <lb/>a precise schedule, as a train that enters and then leaves <lb/>intermediate stations at precise times along its path. <lb/>With TSCH, time is formatted into timeslots, and individual <lb/>communication cells are allocated to unicast or broadcast <lb/>communication at the MAC level. The time-slotted operation reduces <lb/>collisions, saves energy, and enables to more closely engineer the <lb/>network for deterministic properties. The channel hopping aspect is <lb/>a simple and efficient technique to combat multipath fading and co-<lb/>channel interference. <lb/>6TiSCH builds on the IEEE Std. 802.15.4 TSCH MAC and inherits its <lb/>advanced capabilities to enable them in multiple environments where <lb/>they can be leveraged to improve automated operations. The 6TiSCH <lb/>Architecture also inherits the capability to perform a centralized <lb/>route computation to achieve deterministic properties, though it <lb/>relies on the IETF DetNet Architecture <lb/>[I-D.ietf-detnet-architecture], and IETF components such as the PCE <lb/>[PCE], for the protocol aspects. <lb/>On top of this inheritance, 6TiSCH adds capabilities for distributed <lb/>routing and scheduling operations based on the RPL routing protocol <lb/>and capabilities to negotiate schedule adjustments between peers. <lb/>These distributed routing and scheduling operations simplify the <lb/>deployment of TSCH networks and enable wireless solutions in a larger <lb/>variety of use cases from operational technology in general. <lb/>Examples of such use-cases in industrial environments include plant <lb/>setup and decommissioning, as well as monitoring of lots of lesser <lb/>importance measurements such as corrosion and events and mobile <lb/>workers accessing local devices. <lb/></body> + + <note place="footnote">Thubert <lb/>Expires February 28, 2020 <lb/></note> + + <page>[Page 16] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>6tisch-architecture <lb/>August 2019 <lb/></note> + + <body>3.4. Scheduling TSCH <lb/>A scheduling operation attributes cells in a Time-Division-<lb/>Multiplexing (TDM) / Frequency-Division Multiplexing (FDM) matrix <lb/>called the Channel distribution/usage (CDU) to either individual <lb/>transmissions or as multi-access shared resources. The CDU matrix <lb/>can be formatted in chunks that can be allocated exclusively to <lb/>particular nodes to enable distributed scheduling without collision. <lb/>More in Section 4.3.5. <lb/>From the standpoint of a 6TiSCH node (at the MAC layer), its schedule <lb/>is the collection of the timeslots at which it must wake up for <lb/>transmission, and the channels to which it should either send or <lb/>listen at those times. The schedule is expressed as one or more <lb/>slotframes that repeat over and over. Slotframes may collide and <lb/>require a device to wake up at a same time, in which case the <lb/>slotframe with the highest priority is actionable. <lb/>The 6top sublayer (see Section 4.3 for more) hides the complexity of <lb/>the schedule from the upper layers. The Link abstraction that IP <lb/>traffic utilizes is composed of a pair of Layer-3 cell bundles, one <lb/>to receive and one to transmit. Some of the cells may be shared, in <lb/>which case the 6top sublayer must perform some arbitration. <lb/>Scheduling enables multiple communications at a same time in a same <lb/>interference domain using different channels; but a node equipped <lb/>with a single radio can only either transmit or receive on one <lb/>channel at any point of time. Scheduled cells that fulfil the same <lb/>role, e.g., receive IP packets from a peer, are grouped in bundles. <lb/>The 6TiSCH architecture identifies four ways a schedule can be <lb/>managed and CDU cells can be allocated: Static Scheduling, Neighbor-<lb/>to-Neighbor Scheduling, Centralized (or Remote) Monitoring and <lb/>Schedule Management, and Hop-by-hop Scheduling. <lb/>Static Scheduling: This refers to the minimal 6TiSCH operation <lb/>whereby a static schedule is configured for the whole network for <lb/>use in a Slotted ALOHA [S-ALOHA] fashion. The static schedule is <lb/>distributed through the native methods in the TSCH MAC layer and <lb/>does not preclude other scheduling operations to co-exist on a <lb/>same 6TiSCH network. A static schedule is necessary for basic <lb/>operations such as the join process and for interoperability <lb/>during the network formation, which is specified as part of the <lb/>Minimal 6TiSCH Configuration [RFC8180]. <lb/>Neighbor-to-Neighbor Scheduling: This refers to the dynamic <lb/>adaptation of the bandwidth of the Links that are used for IPv6 <lb/>traffic between adjacent peers. Scheduling Functions such as the <lb/></body> + + <note place="footnote">Thubert <lb/>Expires February 28, 2020 <lb/></note> + + <page>[Page 17] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>6tisch-architecture <lb/>August 2019 <lb/></note> + + <body>"6TiSCH Minimal Scheduling Function (MSF)" [I-D.ietf-6tisch-msf] <lb/>influence the operation of the MAC layer to add, update and remove <lb/>cells in its own, and its peer's schedules using 6P [RFC8480], for <lb/>the negotiation of the MAC resources. <lb/>Centralized (or Remote) Monitoring and Schedule Management: This <lb/>refers to the central computation of a schedule and the capability <lb/>to forward a frame based on the cell of arrival. In that case, <lb/>the related portion of the device schedule as well as other device <lb/>resources are managed by an abstract Network Management Entity <lb/>(NME), which may cooperate with the PCE to minimize the <lb/>interaction with and the load on the constrained device. This <lb/>model is the TSCH adaption of the "DetNet Architecture" <lb/>[I-D.ietf-detnet-architecture], and it enables Traffic Engineering <lb/>with deterministic properties. <lb/>Hop-by-hop Scheduling: This refers to the possibility to reserves <lb/>cells along a path for a particular flow using a distributed <lb/>mechanism. <lb/>It is not expected that all use cases will require all those <lb/>mechanisms. Static Scheduling with minimal configuration one is the <lb/>only one that is expected in all implementations, since it provides a <lb/>simple and solid basis for convergecast routing and time <lb/>distribution. <lb/>A deeper dive in those mechanisms can be found in Section 4.4. <lb/>3.5. Distributed vs. Centralized Routing <lb/>6TiSCH enables a mixed model of centralized routes and distributed <lb/>routes. Centralized routes can for example be computed by an entity <lb/>such as a PCE. 6TiSCH leverages the RPL [RFC6550] routing protocol <lb/>for interoperable distributed routing operations. <lb/>Both methods may inject routes in the Routing Tables of the 6TiSCH <lb/>routers. In either case, each route is associated with a 6TiSCH <lb/>topology that can be a RPL Instance topology or a Track. The 6TiSCH <lb/>topology is indexed by a RPLInstanceID, in a format that reuses the <lb/>RPLInstanceID as defined in RPL. <lb/>RPL [RFC6550] is applicable to Static Scheduling and Neighbor-to-<lb/>Neighbor Scheduling. The architecture also supports a centralized <lb/>routing model for Remote Monitoring and Schedule Management. It is <lb/>expected that a routing protocol that is more optimized for point-to-<lb/>point routing than RPL [RFC6550], such as the Asymmetric AODV-P2P-RPL <lb/>in Low-Power and Lossy Networks" [I-D.ietf-roll-aodv-rpl] AODV-RPL), <lb/>which derives from the Ad Hoc On-demand Distance Vector Routing <lb/></body> + + <note place="footnote">Thubert <lb/>Expires February 28, 2020 <lb/></note> + + <page>[Page 18] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>6tisch-architecture <lb/>August 2019 <lb/></note> + + <body>(AODV) [I-D.ietf-manet-aodvv2] will be selected for Hop-by-hop <lb/>Scheduling. <lb/>Both RPL and PCE rely on shared sources such as policies to define <lb/>Global and Local RPLInstanceIDs that can be used by either method. <lb/>It is possible for centralized and distributed routing to share a <lb/>same topology. Generally they will operate in different slotframes, <lb/>and centralized routes will be used for scheduled traffic and will <lb/>have precedence over distributed routes in case of conflict between <lb/>the slotframes. <lb/>3.6. Forwarding Over TSCH <lb/>The 6TiSCH architecture supports three different forwarding models. <lb/>One is the classical IPv6 Forwarding, where the node selects a <lb/>feasible successor at Layer-3 on a per packet basis and based on its <lb/>routing table. The second derives from Generic MPLS (G-MPLS) for so-<lb/>called Track Forwarding, whereby a frame received at a particular <lb/>timeslot can be switched into another timeslot at Layer-2 without <lb/>regard to the upper layer protocol. The third model is the 6LoWPAN <lb/>Fragment Forwarding, which allows to forward individual 6loWPAN <lb/>fragments along a route that is setup by the first fragment. <lb/>In more details: <lb/>IPv6 Forwarding: This is the classical IP forwarding model, with a <lb/>Routing Information Based (RIB) that is installed by the RPL <lb/>routing protocol and used to select a feasible successor per <lb/>packet. The packet is placed on an outgoing Link, that the 6top <lb/>layer maps into a (Layer-3) bundle of cells, and scheduled for <lb/>transmission based on QoS parameters. Besides RPL, this model <lb/>also applies to any routing protocol which may be operated in the <lb/>6TiSCH network, and corresponds to all the distributed scheduling <lb/>models, Static, Neighbor-to-Neighbor and Hop-by-Hop Scheduling. <lb/>G-MPLS Track Forwarding: This model corresponds to the Remote <lb/>Monitoring and Schedule Management. In this model, a central <lb/>controller (hosting a PCE) computes and installs the schedules in <lb/>the devices per flow. The incoming (Layer-2) bundle of cells from <lb/>the previous node along the path determines the outgoing (Layer-2) <lb/>bundle towards the next hop for that flow as determined by the <lb/>PCE. The programmed sequence for bundles is called a Track and <lb/>can assume DAG shapes that are more complex than a simple direct <lb/>sequence of nodes. <lb/>6LoWPAN Fragment Forwarding: This is a hybrid model that derives <lb/>from IPv6 forwarding for the case where packets must be fragmented <lb/>at the 6LoWPAN sublayer. The first fragment is forwarded like any <lb/></body> + + <note place="footnote">Thubert <lb/>Expires February 28, 2020 <lb/></note> + + <page>[Page 19] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>6tisch-architecture <lb/>August 2019 <lb/></note> + + <body>IPv6 packet and leaves a state in the intermediate hops to enable <lb/>forwarding of the next fragments that do not have a IP header <lb/>without the need to recompose the packet at every hop. <lb/>A deeper dive on these operations can be found in Section 4.6. <lb/>The following table summarizes how the forwarding models apply to the <lb/>various routing and scheduling possibilities: <lb/>+-------------------+------------+----------------------------------+ <lb/>| Forwarding Model | Routing <lb/>| <lb/>Scheduling <lb/>| <lb/>+===================+============+==================================+ <lb/>| <lb/>| <lb/>| <lb/>Static (Minimal Configuration) | <lb/>+ classical IPv6 <lb/>+ <lb/>RPL <lb/>+----------------------------------+ <lb/>| <lb/>/ <lb/>| <lb/>| <lb/>Neighbor-to-Neighbor (SF+6P) <lb/>| <lb/>+ 6LoWPAN Fragment +------------+----------------------------------+ <lb/>| <lb/>| Reactive | <lb/>Hop-by-Hop (AODV-RPL) <lb/>| <lb/>+-------------------+------------+----------------------------------+ <lb/>|G-MPLS Track Fwding| <lb/>PCE <lb/>|Remote Monitoring and Schedule Mgt| <lb/>+-------------------+------------+----------------------------------+ <lb/>3.7. 6TiSCH Stack <lb/>The IETF proposes multiple techniques for implementing functions <lb/>related to routing, transport or security. <lb/>The 6TiSCH architecture limits the possible variations of the stack <lb/>and recommends a number of base elements for LLN applications to <lb/>control the complexity of possible deployments and device <lb/>interactions, and to limit the size of the resulting object code. In <lb/>particular, UDP [RFC0768], IPv6 [RFC8200] and the Constrained <lb/>Application Protocol [RFC7252] (CoAP) are used as the transport / <lb/>binding of choice for applications and management as opposed to TCP <lb/>and HTTP. <lb/>The resulting protocol stack is represented in Figure 4: <lb/></body> + + <note place="footnote">Thubert <lb/>Expires February 28, 2020 <lb/></note> + + <page>[Page 20] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>6tisch-architecture <lb/>August 2019 <lb/></note> + + <body>+--------+--------+ <lb/>| Applis | CoJP | <lb/>+--------+--------+--------------+-----+ <lb/>| CoAP / OSCORE <lb/>| 6LoWPAN ND | RPL | <lb/>+-----------------+--------------+-----+ <lb/>| <lb/>UDP <lb/>| <lb/>ICMPv6 <lb/>| <lb/>+-----------------+--------------------+ <lb/>| <lb/>IPv6 <lb/>| <lb/>+--------------------------------------+----------------------+ <lb/>| <lb/>6LoWPAN HC <lb/>/ <lb/>6LoRH HC <lb/>| Scheduling Functions | <lb/>+--------------------------------------+----------------------+ <lb/>| <lb/>6top inc. 6top protocol <lb/>| <lb/>+-------------------------------------------------------------+ <lb/>| <lb/>IEEE Std. 802.15.4 TSCH <lb/>| <lb/>+-------------------------------------------------------------+ <lb/>Figure 4: 6TiSCH Protocol Stack <lb/>RPL is the routing protocol of choice for LLNs. So far, there was no <lb/>identified need to define a 6TiSCH specific Objective Function. The <lb/>Minimal 6TiSCH Configuration [RFC8180] describes the operation of RPL <lb/>over a static schedule used in a Slotted ALOHA fashion [S-ALOHA], <lb/>whereby all active slots may be used for emission or reception of <lb/>both unicast and multicast frames. <lb/>The 6LoWPAN Header Compression [RFC6282] is used to compress the IPv6 <lb/>and UDP headers, whereas the 6LoWPAN Routing Header (6LoRH) [RFC8138] <lb/>is used to compress the RPL artifacts in the IPv6 data packets, <lb/>including the RPL Packet Information (RPI), the IP-in-IP <lb/>encapsulation to/from the RPL Root, and the Source Route Header (SRH) <lb/>in non-storing mode. "When to use RFC 6553, 6554 and IPv6-in-IPv6" <lb/>[I-D.ietf-roll-useofrplinfo] provides the details on when headers or <lb/>encapsulation are needed. <lb/>The Object Security for Constrained RESTful Environments (OSCORE) <lb/>[I-D.ietf-core-object-security], is leveraged by the Constrained Join <lb/>Protocol (CoJP) and is expected to be the primary protocol for the <lb/>protection of the application payload as well. The application <lb/>payload may also be protected by the Datagram Transport Layer <lb/>Security (DTLS) [RFC6347] sitting either under CoAP or over CoAP so <lb/>it can traverse proxies. <lb/>The 6TiSCH Operation sublayer (6top) is a sublayer of a Logical Link <lb/>Control (LLC) that provides the abstraction of an IP link over a TSCH <lb/>MAC and schedules packets over TSCH cells, as further discussed in <lb/>the next sections, providing in particular dynamic cell allocation <lb/>with the 6top Protocol (6P) [RFC8480]. <lb/></body> + + <note place="footnote">Thubert <lb/>Expires February 28, 2020 <lb/></note> + + <page>[Page 21] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>6tisch-architecture <lb/>August 2019 <lb/></note> + + <body>The reference stack presented in this document was implemented and <lb/>interop-tested by a conjunction of opensource, IETF and ETSI efforts. <lb/>One goal is to help other bodies to adopt the stack as a whole, <lb/>making the effort to move to an IPv6-based IoT stack easier. <lb/>For a particular environment, some of the choices that are made in <lb/>this architecture may not be relevant. For instance, RPL is not <lb/>required for star topologies and mesh-under Layer-2 routed networks, <lb/>and the 6LoWPAN compression may not be sufficient for ultra-<lb/>constrained cases such as some Low-Power Wide Area (LPWA) networks. <lb/>In such cases, it is perfectly doable to adopt a subset of the <lb/>selection that is presented hereafter and then select alternate <lb/>components to complete the solution wherever needed. <lb/>3.8. Communication Paradigms and Interaction Models <lb/>Section 2.1 provides the terms of Communication Paradigms and <lb/>Interaction Models, in relation with "On the Difference between <lb/>Information Models and Data Models" [RFC3444]. A Communication <lb/>Paradigm would be an abstract view of a protocol exchange, and would <lb/>come with an Information Model for the information that is being <lb/>exchanged. In contrast, an Interaction Model would be more refined <lb/>and could point to standard operation such as a Representational <lb/>state transfer (REST) "GET" operation and would match a Data Model <lb/>for the data that is provided over the protocol exchange. <lb/>Section 2.1.3 of [I-D.ietf-roll-rpl-industrial-applicability] and <lb/>next sections discuss application-layer paradigms, such as Source-<lb/>sink (SS) that is a Multipeer to Multipeer (MP2MP) model primarily <lb/>used for alarms and alerts, Publish-subscribe (PS, or pub/sub) that <lb/>is typically used for sensor data, as well as Peer-to-peer (P2P) and <lb/>Peer-to-multipeer (P2MP) communications. <lb/>Additional considerations on Duocast -one sender, two receivers for <lb/>redundancy -and its N-cast generalization are also provided. Those <lb/>paradigms are frequently used in industrial automation, which is a <lb/>major use case for IEEE Std. 802.15.4 TSCH wireless networks with <lb/>[ISA100.11a] and [WirelessHART], that provides a wireless access to <lb/>[HART] applications and devices. <lb/>This document focuses on Communication Paradigms and Interaction <lb/>Models for packet forwarding and TSCH resources (cells) management. <lb/>Management mechanisms for the TSCH schedule at Link-Layer (one-hop), <lb/>Network-layer (multihop along a Track), and Application-layer (remote <lb/>control) are discussed in Section 4.4. Link-Layer frame forwarding <lb/>interactions are discussed in Section 4.6, and Network-layer Packet <lb/>routing is addressed in Section 4.7. <lb/></body> + + <note place="footnote">Thubert <lb/>Expires February 28, 2020 <lb/></note> + + <page>[Page 22] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>6tisch-architecture <lb/>August 2019 <lb/></note> + + <body>4. Architecture Components <lb/>4.1. 6LoWPAN (and RPL) <lb/>A RPL DODAG is formed of a Root, a collection of routers, and leaves <lb/>that are hosts. Hosts are nodes which do not forward packets that <lb/>they did not generate. RPL-aware leaves will participate to RPL to <lb/>advertise their own addresses, whereas RPL-unaware leaves depend on a <lb/>connected RPL router to do so. RPL interacts with 6LoWPAN ND at <lb/>multiple levels, in particular at the Root and in the RPL-unaware <lb/>leaves. <lb/>4.1.1. RPL-Unaware Leaves and 6LoWPAN ND <lb/>RPL needs a set of information to advertise a leaf node through a <lb/>Destination Advertisement Object (DAO) message and establish <lb/>reachability. <lb/>"Routing for RPL Leaves" [I-D.ietf-roll-unaware-leaves] details the <lb/>basic interaction of 6LoWPAN ND and RPL and enables a plain 6LN that <lb/>supports [RFC8505] to obtain return connectivity via the RPL network <lb/>as an RPL-unaware leaf. The leaf indicates that it requires <lb/>reachability services for the Registered Address from a Routing <lb/>Registrar by setting a 'R' flag in the Extended Address Registration <lb/>Option [RFC8505], and it provides a TID that maps to a sequence <lb/>number in section 7 of RPL [RFC6550]. <lb/>[I-D.ietf-roll-unaware-leaves] also enables the leaf to signal the <lb/>RPL InstanceID that it wants to participate to using the Opaque field <lb/>of the EARO. On the backbone, the InstanceID is expected to be <lb/>mapped to an overlay that matches the RPL Instance, e.g., a Virtual <lb/>LAN (VLAN) or a virtual routing and forwarding (VRF) instance. <lb/>Though at the time of this writing the above specification enables a <lb/>model where the separation is possible, this architecture recommends <lb/>to collocate the functions of 6LBR and RPL Root. <lb/>4.1.2. 6LBR and RPL Root <lb/>With the 6LowPAN ND [RFC6775], information on the 6LBR is <lb/>disseminated via an Authoritative Border Router Option (ABRO) in RA <lb/>messages. [RFC8505] extends [RFC6775] to enable a registration for <lb/>routing and proxy ND. The capability to support [RFC8505] is <lb/>indicated in the 6LoWPAN Capability Indication Option (6CIO). The <lb/>discovery and liveliness of the RPL Root are obtained through RPL <lb/>[RFC6550] itself. <lb/></body> + + <note place="footnote">Thubert <lb/>Expires February 28, 2020 <lb/></note> + + <page>[Page 23] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>6tisch-architecture <lb/>August 2019 <lb/></note> + + <body>When 6LoWPAN ND is coupled with RPL, the 6LBR and RPL Root <lb/>functionalities are co-located in order that the address of the 6LBR <lb/>be indicated by RPL DIO messages and to associate the unique ID from <lb/>the EDAR/EDAC [RFC8505] exchange with the state that is maintained by <lb/>RPL. <lb/>Section 7 of [I-D.ietf-roll-unaware-leaves] specifies how the DAO <lb/>messages are used to reconfirm the registration, thus eliminating a <lb/>duplication of functionality between DAO and EDAR/EDAC messages, as <lb/>illustrated in Figure 7. [I-D.ietf-roll-unaware-leaves] also <lb/>provides the protocol elements that are needed when the 6LBR and RPL <lb/>Root functionalities are not co-located. <lb/>Even though the Root of the RPL network is integrated with the 6LBR, <lb/>it is logically separated from the Backbone Router (6BBR) that is <lb/>used to connect the 6TiSCH LLN to the backbone. This way, the Root <lb/>has all information from 6LoWPAN ND and RPL about the LLN devices <lb/>attached to it. <lb/>This architecture also expects that the Root of the RPL network <lb/>(proxy-)registers the 6TiSCH nodes on their behalf to the 6BBR, for <lb/>whatever operation the 6BBR performs on the backbone, such as ND <lb/>proxy, or redistribution in a routing protocol. This relies on an <lb/>extension of the 6LoWPAN ND registration described in <lb/>[I-D.ietf-6lo-backbone-router]. <lb/>This model supports the movement of a 6TiSCH device across the Multi-<lb/>Link Subnet, and allows the proxy registration of 6TiSCH nodes deep <lb/>into the 6TiSCH LLN by the 6LBR / RPL Root. This is why in [RFC8505] <lb/>the Registered Address is signaled in the Target Address field of the <lb/>NS message as opposed to the IPv6 Source Address, which, in the case <lb/>of a proxy registration, is that of the 6LBR / RPL Root itself. <lb/>4.2. Network Access and Addressing <lb/>4.2.1. Join Process <lb/>A new device, called the pledge, undergoes the join protocol to <lb/>become a node in a 6TiSCH network. This usually occurs only once <lb/>when the device is first powered on. The pledge communicates with <lb/>the Join Registrar/Coordinator (JRC) of the network through a Join <lb/>Proxy (JP), a radio neighbor of the pledge. <lb/>The JP is discovered though MAC layer beacons. When multiple JPs <lb/>from possibly multiple networks are visible, trial and error till an <lb/>acceptable position in the right network is obtained becomes <lb/>ineffficient. [I-D.ietf-6tisch-enrollment-enhanced-beacon] adds a <lb/>new subtype in the Information Element that was delegated to the IETF <lb/></body> + + <note place="footnote">Thubert <lb/>Expires February 28, 2020 <lb/></note> + + <page>[Page 24] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>6tisch-architecture <lb/>August 2019 <lb/></note> + + <body>[RFC8137] and provides visibility on the network that can be joined <lb/>and the willingness by the JP and the Root to be used by the pledge. <lb/>The join protocol provides the following functionality: <lb/>o Mutual authentication <lb/>o Authorization <lb/>o Parameter distribution to the pledge over a secure channel <lb/>Minimal Security Framework for 6TiSCH <lb/>[I-D.ietf-6tisch-minimal-security] defines the minimal mechanisms <lb/>required for this join process to occur in a secure manner. The <lb/>specification defines the Constrained Join Protocol (CoJP) that is <lb/>used to distribute the parameters to the pledge over a secure session <lb/>established through OSCORE [I-D.ietf-core-object-security], and a <lb/>secure configuration of the network stack. In the minimal setting <lb/>with pre-shared keys (PSKs), CoJP allows the pledge to join after a <lb/>single round-trip exchange with the JRC. The provisioning of the PSK <lb/>to the pledge and the JRC needs to be done out of band, through a <lb/>'one-touch' bootstrapping process, which effectively enrolls the <lb/>pledge into the domain managed by the JRC. <lb/>In certain use cases, the 'one touch' bootstrapping is not feasible <lb/>due to the operational constraints and the enrollment of the pledge <lb/>into the domain needs to occur in-band. This is handled through a <lb/>'zero-touch' extension of the Minimal Security Framework for 6TiSCH. <lb/>Zero touch [I-D.ietf-6tisch-dtsecurity-zerotouch-join] extension <lb/>leverages the 'Bootstrapping Remote Secure Key Infrastructures <lb/>(BRSKI)' [[I-D.ietf-anima-bootstrapping-keyinfra] work to establish a <lb/>shared secret between a pledge and the JRC without necessarily having <lb/>them belong to a common (security) domain at join time. This happens <lb/>through inter-domain communication occurring between the JRC of the <lb/>network and the domain of the pledge, represented by a fourth entity, <lb/>Manufacturer Authorized Signing Authority (MASA). Once the zero-<lb/>touch exchange completes, the CoJP exchange defined in <lb/>[I-D.ietf-6tisch-minimal-security] is carried over the secure session <lb/>established between the pledge and the JRC. <lb/>Figure 5 depicts the join process and where a Link-Local Address <lb/>(LLA) is used, versus a Global Unicast Address (GUA). <lb/></body> + + <note place="footnote">Thubert <lb/>Expires February 28, 2020 <lb/></note> + + <page>[Page 25] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>6tisch-architecture <lb/>August 2019 <lb/></note> + + <body>6LoWPAN Node <lb/>6LR <lb/>6LBR <lb/>Join Registrar <lb/>MASA <lb/>(pledge) <lb/>(Join Proxy) <lb/>(Root) <lb/>/Coordinator (JRC) <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| 6LoWPAN ND <lb/>|6LoWPAN ND+RPL | IPv6 network |IPv6 network | <lb/>| <lb/>LLN link <lb/>|Route-Over mesh|(the Internet)|(the Internet)| <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| <lb/>Layer-2 <lb/>| <lb/>| <lb/>| <lb/>| <lb/>|enhanced beacon| <lb/>| <lb/>| <lb/>| <lb/>|<--------------| <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| <lb/>NS (EARO) | <lb/>| <lb/>| <lb/>| <lb/>| (for the LLA) | <lb/>| <lb/>| <lb/>| <lb/>|-------------->| <lb/>| <lb/>| <lb/>| <lb/>| <lb/>NA (EARO) | <lb/>| <lb/>| <lb/>| <lb/>|<--------------| <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| (Zero-touch | <lb/>| <lb/>| <lb/>| <lb/>| <lb/>handshake) | <lb/>(Zero-touch handshake) <lb/>| (Zero-touch | <lb/>| <lb/>using LLA <lb/>| <lb/>using GUA <lb/>| handshake) | <lb/>|<------------->|<---------------------------->|<------------>| <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| CoJP Join Req | <lb/>| <lb/>| <lb/>| \ <lb/>| using LLA <lb/>| <lb/>| <lb/>| <lb/>| | <lb/>|-------------->| <lb/>| <lb/>| <lb/>| | <lb/>| <lb/>| <lb/>CoJP Join Request <lb/>| <lb/>| | <lb/>| <lb/>| <lb/>using GUA <lb/>| <lb/>| | <lb/>| <lb/>|----------------------------->| <lb/>| | C <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| | o <lb/>| <lb/>| <lb/>CoJP Join Response <lb/>| <lb/>| | J <lb/>| <lb/>| <lb/>using GUA <lb/>| <lb/>| | P <lb/>| <lb/>|<-----------------------------| <lb/>| | <lb/>|CoJP Join Resp | <lb/>| <lb/>| <lb/>| | <lb/>| using LLA <lb/>| <lb/>| <lb/>| <lb/>| | <lb/>|<--------------| <lb/>| <lb/>| <lb/>| / <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| <lb/>Figure 5: Join process in a Multi-Link Subnet. Parentheses () denote <lb/>optional exchanges. <lb/>4.2.2. Registration <lb/>Once the pledge successfully completes the CoJP protocol and becomes <lb/>a network node, it obtains the network prefix from neighboring <lb/>routers and registers its IPv6 addresses. As detailed in <lb/>Section 4.1, the combined 6LoWPAN ND 6LBR and Root of the RPL network <lb/>learn information such as the device Unique ID (from 6LoWPAN ND) and <lb/>the updated Sequence Number (from RPL), and perform 6LoWPAN ND proxy <lb/>registration to the 6BBR of behalf of the LLN nodes. <lb/></body> + + <note place="footnote">Thubert <lb/>Expires February 28, 2020 <lb/></note> + + <page>[Page 26] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>6tisch-architecture <lb/>August 2019 <lb/></note> + + <body>Figure 6 illustrates the initial IPv6 signaling that enables a 6LN to <lb/>form a global address and register it to a 6LBR using 6LoWPAN ND <lb/>[RFC8505], is then carried over RPL to the RPL Root, and then to the <lb/>6BBR. This flow happens just once when the address is created and <lb/>first registered. <lb/>6LoWPAN Node <lb/>6LR <lb/>6LBR <lb/>6BBR <lb/>(RPL leaf) <lb/>(router) <lb/>(Root) <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| 6LoWPAN ND <lb/>|6LoWPAN ND+RPL | 6LoWPAN ND <lb/>| IPv6 ND <lb/>| <lb/>LLN link <lb/>|Route-Over mesh|Ethernet/serial| Backbone <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| RS (mcast) <lb/>| <lb/>| <lb/>| <lb/>|-------------->| <lb/>| <lb/>| <lb/>|-----------> <lb/>| <lb/>| <lb/>| <lb/>|------------------> <lb/>| <lb/>| <lb/>| RA (unicast) | <lb/>| <lb/>| <lb/>|<--------------| <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| NS(EARO) <lb/>| <lb/>| <lb/>| <lb/>|-------------->| <lb/>| <lb/>| <lb/>| 6LoWPAN ND <lb/>| Extended DAR | <lb/>| <lb/>| <lb/>|-------------->| <lb/>| <lb/>| <lb/>| <lb/>| NS(EARO) <lb/>| <lb/>| <lb/>| <lb/>|-------------->| <lb/>| <lb/>| <lb/>| <lb/>| NS-DAD <lb/>| <lb/>| <lb/>| <lb/>|------> <lb/>| <lb/>| <lb/>| <lb/>| (EARO) <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| NA(EARO) <lb/>|<timeout> <lb/>| <lb/>| <lb/>|<--------------| <lb/>| <lb/>| Extended DAC | <lb/>| <lb/>| <lb/>|<--------------| <lb/>| <lb/>| NA(EARO) <lb/>| <lb/>| <lb/>| <lb/>|<--------------| <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| <lb/>Figure 6: Initial Registration Flow over Multi-Link Subnet <lb/>Figure 7 illustrates the repeating IPv6 signaling that enables a 6LN <lb/>to keep a global address alive and registered to its 6LBR using <lb/>6LoWPAN ND to the 6LR, RPL to the RPL Root, and then 6LoWPAN ND again <lb/>to the 6BBR, which avoids repeating the Extended DAR/DAC flow across <lb/>the network when RPL can suffice as a keep-alive mechanism. <lb/></body> + + <note place="footnote">Thubert <lb/>Expires February 28, 2020 <lb/></note> + + <page>[Page 27] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>6tisch-architecture <lb/>August 2019 <lb/></note> + + <body>6LoWPAN Node <lb/>6LR <lb/>6LBR <lb/>6BBR <lb/>(RPL leaf) <lb/>(router) <lb/>(Root) <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| 6LoWPAN ND <lb/>|6LoWPAN ND+RPL | 6LoWPAN ND <lb/>| IPv6 ND <lb/>| <lb/>LLN link <lb/>|Route-Over mesh| ant IPv6 link | Backbone <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| NS(EARO) <lb/>| <lb/>| <lb/>| <lb/>|-------------->| <lb/>| <lb/>| <lb/>| NA(EARO) <lb/>| <lb/>| <lb/>| <lb/>|<--------------| <lb/>| <lb/>| <lb/>| <lb/>| DAO <lb/>| <lb/>| <lb/>| <lb/>|-------------->| <lb/>| <lb/>| <lb/>| DAO-ACK <lb/>| <lb/>| <lb/>| <lb/>|<--------------| <lb/>| <lb/>| <lb/>| <lb/>| NS(EARO) <lb/>| <lb/>| <lb/>| <lb/>|-------------->| <lb/>| <lb/>| <lb/>| NA(EARO) <lb/>| <lb/>| <lb/>| <lb/>|<--------------| <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| <lb/>Figure 7: Next Registration Flow over Multi-Link Subnet <lb/>As the network builds up, a node should start as a leaf to join the <lb/>RPL network, and may later turn into both a RPL-capable router and a <lb/>6LR, so as to accept leaf nodes to recursively join the network. <lb/>4.3. TSCH and 6top <lb/>4.3.1. 6top <lb/>6TiSCH expects a high degree of scalability together with a <lb/>distributed routing functionality based on RPL. To achieve this <lb/>goal, the spectrum must be allocated in a way that allows for spatial <lb/>reuse between zones that will not interfere with one another. In a <lb/>large and spatially distributed network, a 6TiSCH node is often in a <lb/>good position to determine usage of the spectrum in its vicinity. <lb/>With 6TiSCH, the abstraction of an IPv6 link is implemented as a pair <lb/>of bundles of cells, one in each direction. IP Links are only <lb/>enabled between RPL parents and children. The 6TiSCH operation is <lb/>optimal when the size of a bundle is such that both the energy wasted <lb/>in idle listening and the packet drops due to congestion loss are <lb/>minimized, while packets are forwarded within an acceptable latency. <lb/></body> + + <note place="footnote">Thubert <lb/>Expires February 28, 2020 <lb/></note> + + <page>[Page 28] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>6tisch-architecture <lb/>August 2019 <lb/></note> + + <body>Use cases for distributed routing are often associated with a <lb/>statistical distribution of best-effort traffic with variable needs <lb/>for bandwidth on each individual link. The 6TiSCH operation can <lb/>remain optimal if RPL parents can adjust dynamically, and with enough <lb/>reactivity to match the variations of best-effort traffic, the amount <lb/>of bandwidth that is used to communicate between themselves and their <lb/>children, in both directions. In turn, the agility to fulfill the <lb/>needs for additional cells improves when the number of interactions <lb/>with other devices and the protocol latencies are minimized. <lb/>6top is a logical link control sitting between the IP layer and the <lb/>TSCH MAC layer, which provides the link abstraction that is required <lb/>for IP operations. The 6top protocol, 6P, which is specified in <lb/>[RFC8480], is one of the services provided by 6top. In particular, <lb/>the 6top services are available over a management API that enables an <lb/>external management entity to schedule cells and slotframes, and <lb/>allows the addition of complementary functionality, for instance a <lb/>Scheduling Function that manages a dynamic schedule management based <lb/>on observed resource usage as discussed in Section 4.4.2. For this <lb/>purpose, the 6TiSCH architecture differentiates "soft" cells and <lb/>"hard" cells. <lb/>4.3.1.1. Hard Cells <lb/>"Hard" cells are cells that are owned and managed by a separate <lb/>scheduling entity (e.g., a PCE) that specifies the slotOffset/ <lb/>channelOffset of the cells to be added/moved/deleted, in which case <lb/>6top can only act as instructed, and may not move hard cells in the <lb/>TSCH schedule on its own. <lb/>4.3.1.2. Soft Cells <lb/>In contrast, "soft" cells are cells that 6top can manage locally. <lb/>6top contains a monitoring process which monitors the performance of <lb/>cells, and can add, remove soft cells in the TSCH schedule to adapt <lb/>to the traffic needs, or move one when it performs poorly. To <lb/>reserve a soft cell, the higher layer does not indicate the exact <lb/>slotOffset/channelOffset of the cell to add, but rather the resulting <lb/>bandwidth and QoS requirements. When the monitoring process triggers <lb/>a cell reallocation, the two neighbor devices communicating over this <lb/>cell negotiate its new position in the TSCH schedule. <lb/>4.3.2. Scheduling Functions and the 6top protocol <lb/>In the case of soft cells, the cell management entity that controls <lb/>the dynamic attribution of cells to adapt to the dynamics of variable <lb/>rate flows is called a Scheduling Function (SF). <lb/></body> + + <note place="footnote">Thubert <lb/>Expires February 28, 2020 <lb/></note> + + <page>[Page 29] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>6tisch-architecture <lb/>August 2019 <lb/></note> + + <body>There may be multiple SFs with more or less aggressive reaction to <lb/>the dynamics of the network. <lb/>An SF may be seen as divided between an upper bandwidth adaptation <lb/>logic that is not aware of the particular technology that is used to <lb/>obtain and release bandwidth, and an underlying service that maps <lb/>those needs in the actual technology, which means mapping the <lb/>bandwidth onto cells in the case of TSCH using the 6top protocol as <lb/>illustrated in Figure 8. <lb/>+------------------------+ <lb/>+------------------------+ <lb/>| Scheduling Function <lb/>| <lb/>| Scheduling Function <lb/>| <lb/>| Bandwidth adaptation | <lb/>| Bandwidth adaptation | <lb/>+------------------------+ <lb/>+------------------------+ <lb/>| Scheduling Function <lb/>| <lb/>| Scheduling Function <lb/>| <lb/>| TSCH mapping to cells | <lb/>| TSCH mapping to cells | <lb/>+------------------------+ <lb/>+------------------------+ <lb/>| 6top cells negotiation | <-6P -> | 6top cells negotiation | <lb/>+------------------------+ <lb/>+------------------------+ <lb/>Device A <lb/>Device B <lb/>Figure 8: SF/6P stack in 6top <lb/>The SF relies on 6top services that implement the 6top Protocol (6P) <lb/>[RFC8480] to negotiate the precise cells that will be allocated or <lb/>freed based on the schedule of the peer. It may be for instance that <lb/>a peer wants to use a particular time slot that is free in its <lb/>schedule, but that timeslot is already in use by the other peer for a <lb/>communication with a third party on a different cell. 6P enables the <lb/>peers to find an agreement in a transactional manner that ensures the <lb/>final consistency of the nodes state. <lb/>MSF [I-D.ietf-6tisch-msf] is one of the possible scheduling <lb/>functions. MSF uses the rendez-vous slot from [RFC8180] for network <lb/>discovery, neighbor discovery, and any other broadcast. <lb/>For basic unicast communication with any neighbor, each node uses a <lb/>receive cell at a well-known slotOffset/channelOffset, derived from a <lb/>hash of their own MAC address. Nodes can reach any neighbor by <lb/>installing a transmit (shared) cell with slotOffset/channelOffset <lb/>derived from the neighbor's MAC address. <lb/>For child-parent links, MSF continuously monitors the load to/from <lb/>parents and children. It then uses 6P to install/remove unicast <lb/>cells whenever the current schedule appears to be under-/over-<lb/>provisioned. <lb/></body> + + <note place="footnote">Thubert <lb/>Expires February 28, 2020 <lb/></note> + + <page>[Page 30] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>6tisch-architecture <lb/>August 2019 <lb/></note> + + <body>4.3.3. 6top and RPL Objective Function operations <lb/>An implementation of a RPL [RFC6550] Objective Function (OF), such as <lb/>the RPL Objective Function Zero (OF0) [RFC6552] that is used in the <lb/>Minimal 6TiSCH Configuration [RFC8180] to support RPL over a static <lb/>schedule, may leverage, for its internal computation, the information <lb/>maintained by 6top. <lb/>An OF may require metrics about reachability, such as the Expected <lb/>Transmission Count (ETX) metric [RFC6551]. 6top creates and <lb/>maintains an abstract neighbor table, and this state may be leveraged <lb/>to feed an OF and/or store OF information as well. A neighbor table <lb/>entry may contain a set of statistics with respect to that specific <lb/>neighbor. <lb/>The neighbor information may include the time when the last packet <lb/>has been received from that neighbor, a set of cell quality metrics, <lb/>e.g., received signal strength indication (RSSI) or link quality <lb/>indicator (LQI), the number of packets sent to the neighbor or the <lb/>number of packets received from it. This information can be made <lb/>available through 6top management APIs and used for instance to <lb/>compute a Rank Increment that will determine the selection of the <lb/>preferred parent. <lb/>6top provides statistics about the underlying layer so the OF can be <lb/>tuned to the nature of the TSCH MAC layer. 6top also enables the RPL <lb/>OF to influence the MAC behavior, for instance by configuring the <lb/>periodicity of IEEE Std. 802.15.4 Extended Beacons (EBs). By <lb/>augmenting the EB periodicity, it is possible to change the network <lb/>dynamics so as to improve the support of devices that may change <lb/>their point of attachment in the 6TiSCH network. <lb/>Some RPL control messages, such as the DODAG Information Object (DIO) <lb/>are ICMPv6 messages that are broadcast to all neighbor nodes. With <lb/>6TiSCH, the broadcast channel requirement is addressed by 6top by <lb/>configuring TSCH to provide a broadcast channel, as opposed to, for <lb/>instance, piggybacking the DIO messages in Layer-2 Enhanced Beacons <lb/>(EBs), which would produce undue timer coupling among layers, packet <lb/>size issues and could conflict with the policy of production networks <lb/>where EBs are mostly eliminated to conserve energy. <lb/>4.3.4. Network Synchronization <lb/>Nodes in a TSCH network must be time synchronized. A node keeps <lb/>synchronized to its time source neighbor through a combination of <lb/>frame-based and acknowledgment-based synchronization. To maximize <lb/>battery life and network throughput, it is advisable that RPL ICMP <lb/>discovery and maintenance traffic (governed by the trickle timer) be <lb/></body> + + <note place="footnote">Thubert <lb/>Expires February 28, 2020 <lb/></note> + + <page>[Page 31] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>6tisch-architecture <lb/>August 2019 <lb/></note> + + <body>somehow coordinated with the transmission of time synchronization <lb/>packets (especially with enhanced beacons). <lb/>This could be achieved through an interaction of the 6top sublayer <lb/>and the RPL objective Function, or could be controlled by a <lb/>management entity. <lb/>Time distribution requires a loop-free structure. Nodes taken in a <lb/>synchronization loop will rapidly desynchronize from the network and <lb/>become isolated. 6TiSCH uses a RPL DAG with a dedicated global <lb/>Instance for the purpose of time synchronization. That Instance is <lb/>referred to as the Time Synchronization Global Instance (TSGI). The <lb/>TSGI can be operated in either of the 3 modes that are detailed in <lb/>section 3.1.3 of RPL [RFC6550], "Instances, DODAGs, and DODAG <lb/>Versions". Multiple uncoordinated DODAGs with independent Roots may <lb/>be used if all the Roots share a common time source such as the <lb/>Global Positioning System (GPS). <lb/>In the absence of a common time source, the TSGI should form a single <lb/>DODAG with a virtual Root. A backbone network is then used to <lb/>synchronize and coordinate RPL operations between the backbone <lb/>routers that act as sinks for the LLN. Optionally, RPL's periodic <lb/>operations may be used to transport the network synchronization. <lb/>This may mean that 6top would need to trigger (override) the trickle <lb/>timer if no other traffic has occurred for such a time that nodes may <lb/>get out of synchronization. <lb/>A node that has not joined the TSGI advertises a MAC level Join <lb/>Priority of 0xFF to notify its neighbors that is not capable of <lb/>serving as time parent. A node that has joined the TSGI advertises a <lb/>MAC level Join Priority set to its DAGRank() in that Instance, where <lb/>DAGRank() is the operation specified in section 3.5.1 of [RFC6550], <lb/>"Rank Comparison". <lb/>The provisioning of a RPL Root is out of scope for both RPL and this <lb/>Architecture, whereas RPL enables to propagate configuration <lb/>information down the DODAG. This applies to the TSGI as well; a Root <lb/>is configured or obtains by unspecified means the knowledge of the <lb/>RPLInstanceID for the TSGI. The Root advertises its DagRank in the <lb/>TSGI, that must be less than 0xFF, as its Join Priority in its IEEE <lb/>Std. 802.15.4 Extended Beacons (EB). <lb/>A node that reads a Join Priority of less than 0xFF should join the <lb/>neighbor with the lesser Join Priority and use it as time parent. If <lb/>the node is configured to serve as time parent, then the node should <lb/>join the TSGI, obtain a Rank in that Instance and start advertising <lb/>its own DagRank in the TSGI as its Join Priority in its EBs. <lb/></body> + + <note place="footnote">Thubert <lb/>Expires February 28, 2020 <lb/></note> + + <page>[Page 32] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>6tisch-architecture <lb/>August 2019 <lb/></note> + + <body>4.3.5. Slotframes and CDU matrix <lb/>6TiSCH enables IPv6 best effort (stochastic) transmissions over a MAC <lb/>layer that is also capable of scheduled (deterministic) <lb/>transmissions. A window of time is defined around the scheduled <lb/>transmission where the medium must, as much as practically feasible, <lb/>be free of contending energy to ensure that the medium is free of <lb/>contending packets when time comes for a scheduled transmission. One <lb/>simple way to obtain such a window is to format time and frequencies <lb/>in cells of transmission of equal duration. This is the method that <lb/>is adopted in IEEE Std. 802.15.4 TSCH as well as the Long Term <lb/>Evolution (LTE) of cellular networks. <lb/>The 6TiSCH architecture defines a global concept that is called a <lb/>Channel Distribution and Usage (CDU) matrix to describe that <lb/>formatting of time and frequencies, <lb/>A CDU matrix is defined centrally as part of the network definition. <lb/>It is a matrix of cells with a height equal to the number of <lb/>available channels (indexed by ChannelOffsets) and a width (in <lb/>timeslots) that is the period of the network scheduling operation <lb/>(indexed by slotOffsets) for that CDU matrix. There are different <lb/>models for scheduling the usage of the cells, which place the <lb/>responsibility of avoiding collisions either on a central controller <lb/>or on the devices themselves, at an extra cost in terms of energy to <lb/>scan for free cells (more in Section 4.4). <lb/>The size of a cell is a timeslot duration, and values of 10 to 15 <lb/>milliseconds are typical in 802.15.4 TSCH to accommodate for the <lb/>transmission of a frame and an ack, including the security validation <lb/>on the receive side which may take up to a few milliseconds on some <lb/>device architecture. <lb/>A CDU matrix iterates over and over with a well-known channel <lb/>rotation called the hopping sequence. In a given network, there <lb/>might be multiple CDU matrices that operate with different width, so <lb/>they have different durations and represent different periodic <lb/>operations. It is recommended that all CDU matrices in a 6TiSCH <lb/>domain operate with the same cell duration and are aligned, so as to <lb/>reduce the chances of interferences from the Slotted ALOHA <lb/>operations. The knowledge of the CDU matrices is shared between all <lb/>the nodes and used in particular to define slotframes. <lb/>A slotframe is a MAC-level abstraction that is common to all nodes <lb/>and contains a series of timeslots of equal length and precedence. <lb/>It is characterized by a slotframe_ID, and a slotframe_size. A <lb/>slotframe aligns to a CDU matrix for its parameters, such as number <lb/>and duration of timeslots. <lb/></body> + + <note place="footnote">Thubert <lb/>Expires February 28, 2020 <lb/></note> + + <page>[Page 33] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>6tisch-architecture <lb/>August 2019 <lb/></note> + + <body>Multiple slotframes can coexist in a node schedule, i.e., a node can <lb/>have multiple activities scheduled in different slotframes. A <lb/>slotframe is associated with a priority that may be related to the <lb/>precedence of different 6TiSCH topologies. The slotframes may be <lb/>aligned to different CDU matrices and thus have different width. <lb/>There is typically one slotframe for scheduled traffic that has the <lb/>highest precedence and one or more slotframe(s) for RPL traffic. The <lb/>timeslots in the slotframe are indexed by the SlotOffset; the first <lb/>cell is at SlotOffset 0. <lb/>When a packet is received from a higher layer for transmission, 6top <lb/>inserts that packet in the outgoing queue which matches the packet <lb/>best (Differentiated Services [RFC2474] can therefore be used). At <lb/>each scheduled transmit slot, 6top looks for the frame in all the <lb/>outgoing queues that best matches the cells. If a frame is found, it <lb/>is given to the TSCH MAC for transmission. <lb/>4.3.6. Distributing the reservation of cells <lb/>The 6TiSCH architecture introduces the concept of chunks <lb/>(Section 2.1) to distribute the allocation of the spectrum for a <lb/>whole group of cells at a time. The CDU matrix is formatted into a <lb/>set of chunks, possibly as illustrated in Figure 9, each of the <lb/>chunks identified uniquely by a chunk-ID. The knowledge of this <lb/>formatting is shared between all the nodes in a 6TiSCH network. It <lb/>could be conveyed during the join process, or codified into a profile <lb/>document, or obtained using some other mechanism. This is as opposed <lb/>to static scheduling that refers to the pre-programmed mechanism that <lb/>is specified in [RFC8180] and pre-exists to the distribution of the <lb/>chunk formatting. <lb/>+-----+-----+-----+-----+-----+-----+-----+ <lb/>+-----+ <lb/>chan.Off. 0 |chnkA|chnkP|chnk7|chnkO|chnk2|chnkK|chnk1| ... |chnkZ| <lb/>+-----+-----+-----+-----+-----+-----+-----+ <lb/>+-----+ <lb/>chan.Off. 1 |chnkB|chnkQ|chnkA|chnkP|chnk3|chnkL|chnk2| ... |chnk1| <lb/>+-----+-----+-----+-----+-----+-----+-----+ <lb/>+-----+ <lb/>... <lb/>+-----+-----+-----+-----+-----+-----+-----+ <lb/>+-----+ <lb/>chan.Off. 15 |chnkO|chnk6|chnkN|chnk1|chnkJ|chnkZ|chnkI| ... |chnkG| <lb/>+-----+-----+-----+-----+-----+-----+-----+ <lb/>+-----+ <lb/>0 <lb/>1 <lb/>2 <lb/>3 <lb/>4 <lb/>5 <lb/>6 <lb/>M <lb/>Figure 9: CDU matrix Partitioning in Chunks <lb/>The 6TiSCH Architecture envisions a protocol that enables chunk <lb/>ownership appropriation whereby a RPL parent discovers a chunk that <lb/></body> + + <note place="footnote">Thubert <lb/>Expires February 28, 2020 <lb/></note> + + <page>[Page 34] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>6tisch-architecture <lb/>August 2019 <lb/></note> + + <body>is not used in its interference domain, claims the chunk, and then <lb/>defends it in case another RPL parent would attempt to appropriate it <lb/>while it is in use. The chunk is the basic unit of ownership that is <lb/>used in that process. <lb/>As a result of the process of chunk ownership appropriation, the RPL <lb/>parent has exclusive authority to decide which cell in the <lb/>appropriated chunk can be used by which node in its interference <lb/>domain. In other words, it is implicitly delegated the right to <lb/>manage the portion of the CDU matrix that is represented by the <lb/>chunk. <lb/>Initially, those cells are added to the heap of free cells, then <lb/>dynamically placed into existing bundles, in new bundles, or <lb/>allocated opportunistically for one transmission. <lb/>Note that a PCE is expected to have precedence in the allocation, so <lb/>that a RPL parent would only be able to obtain portions that are not <lb/>in-use by the PCE. <lb/>4.4. Schedule Management Mechanisms <lb/>6TiSCH uses 4 paradigms to manage the TSCH schedule of the LLN nodes: <lb/>Static Scheduling, neighbor-to-neighbor Scheduling, remote monitoring <lb/>and scheduling management, and Hop-by-hop scheduling. Multiple <lb/>mechanisms are defined that implement the associated Interaction <lb/>Models, and can be combined and used in the same LLN. Which <lb/>mechanism(s) to use depends on application requirements. <lb/>4.4.1. Static Scheduling <lb/>In the simplest instantiation of a 6TiSCH network, a common fixed <lb/>schedule may be shared by all nodes in the network. Cells are <lb/>shared, and nodes contend for slot access in a slotted ALOHA manner. <lb/>A static TSCH schedule can be used to bootstrap a network, as an <lb/>initial phase during implementation, or as a fall-back mechanism in <lb/>case of network malfunction. This schedule is pre-established, for <lb/>instance decided by a network administrator based on operational <lb/>needs. It can be pre-configured into the nodes, or, more commonly, <lb/>learned by a node when joining the network using standard IEEE Std. <lb/>802.15.4 Information Elements (IE). Regardless, the schedule remains <lb/>unchanged after the node has joined a network. RPL is used on the <lb/>resulting network. This "minimal" scheduling mechanism that <lb/>implements this paradigm is detailed in [RFC8180]. <lb/></body> + + <note place="footnote">Thubert <lb/>Expires February 28, 2020 <lb/></note> + + <page>[Page 35] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>6tisch-architecture <lb/>August 2019 <lb/></note> + + <body>4.4.2. Neighbor-to-neighbor Scheduling <lb/>In the simplest instantiation of a 6TiSCH network described in <lb/>Section 4.4.1, nodes may expect a packet at any cell in the schedule <lb/>and will waste energy idle listening. In a more complex <lb/>instantiation of a 6TiSCH network, a matching portion of the schedule <lb/>is established between peers to reflect the observed amount of <lb/>transmissions between those nodes. The aggregation of the cells <lb/>between a node and a peer forms a bundle that the 6top layer uses to <lb/>implement the abstraction of a link for IP. The bandwidth on that <lb/>link is proportional to the number of cells in the bundle. <lb/>If the size of a bundle is configured to fit an average amount of <lb/>bandwidth, peak traffic is dropped. If the size is configured to <lb/>allow for peak emissions, energy is be wasted idle listening. <lb/>As discussed in more details in Section 4.3, the 6top Protocol <lb/>[RFC8480] specifies the exchanges between neighbor nodes to reserve <lb/>soft cells to transmit to one another, possibly under the control of <lb/>a Scheduling Function (SF). Because this reservation is done without <lb/>global knowledge of the schedule of other nodes in the LLN, <lb/>scheduling collisions are possible. <lb/>And as discussed in Section 4.3.2, an optional Scheduling Function <lb/>(SF) is used to monitor bandwidth usage and perform requests for <lb/>dynamic allocation by the 6top sublayer. The SF component is not <lb/>part of the 6top sublayer. It may be collocated on the same device <lb/>or may be partially or fully offloaded to an external system. The <lb/>"6TiSCH Minimal Scheduling Function (MSF)" [I-D.ietf-6tisch-msf] <lb/>provides a simple scheduling function that can be used by default by <lb/>devices that support dynamic scheduling of soft cells. <lb/>Monitoring and relocation is done in the 6top layer. For the upper <lb/>layer, the connection between two neighbor nodes appears as a number <lb/>of cells. Depending on traffic requirements, the upper layer can <lb/>request 6top to add or delete a number of cells scheduled to a <lb/>particular neighbor, without being responsible for choosing the exact <lb/>slotOffset/channelOffset of those cells. <lb/>4.4.3. Remote Monitoring and Schedule Management <lb/>Remote monitoring and Schedule Management refers to a DetNet/SDN <lb/>model whereby an NME and a scheduling entity, associated with a PCE, <lb/>reside in a central controller and interact with the 6top layer to <lb/>control IPv6 Links and Tracks (Section 4.5) in a 6TiSCH network. The <lb/>composite centralized controller can assign physical resources (e.g., <lb/>buffers and hard cells) to a particular Track to optimize the <lb/>reliability within a bounded latency for a well-specified flow. <lb/></body> + + <note place="footnote">Thubert <lb/>Expires February 28, 2020 <lb/></note> + + <page>[Page 36] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>6tisch-architecture <lb/>August 2019 <lb/></note> + + <body>The work at the 6TiSCH WG focused on non-deterministic traffic and <lb/>did not provide the generic data model that is necessary for the <lb/>controller to monitor and manage resources of the 6top sublayer. <lb/>This is deferred to future work, see Appendix A.1.2. <lb/>With respect to Centralized routing and scheduling, it is envisioned <lb/>that the related component of the 6TiSCH Architecture would be an <lb/>extension of the Deterministic Networking Architecture <lb/>[I-D.ietf-detnet-architecture], which studies Layer-3 aspects of <lb/>Deterministic Networks, and covers networks that span multiple <lb/>Layer-2 domains. <lb/>The DetNet architecture is a form of Software Defined Networking <lb/>(SDN) Architecture and is composed of three planes, a (User) <lb/>Application Plane, a Controller Plane (where the PCE operates), and a <lb/>Network Plane which can represent a 6TiSCH LLN. <lb/>Software-Defined Networking (SDN): Layers and Architecture <lb/>Terminology [RFC7426] proposes a generic representation of the SDN <lb/>architecture that is reproduced in Figure 10. <lb/></body> + + <note place="footnote">Thubert <lb/>Expires February 28, 2020 <lb/></note> + + <page>[Page 37] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>6tisch-architecture <lb/>August 2019 <lb/></note> + + <body>o--------------------------------o <lb/>| <lb/>| <lb/>| +-------------+ <lb/>+----------+ | <lb/>| | Application | <lb/>| Service | | <lb/>| +-------------+ <lb/>+----------+ | <lb/>| <lb/>Application Plane <lb/>| <lb/>o---------------Y----------------o <lb/>| <lb/>*-----------------------------Y---------------------------------* <lb/>| <lb/>Network Services Abstraction Layer (NSAL) <lb/>| <lb/>*------Y------------------------------------------------Y-------* <lb/>| <lb/>| <lb/>| <lb/>Service Interface <lb/>| <lb/>| <lb/>| <lb/>o------Y------------------o <lb/>o---------------------Y------o <lb/>| <lb/>| <lb/>Control Plane | <lb/>| Management Plane <lb/>| <lb/>| <lb/>| +----Y----+ <lb/>+-----+ <lb/>| <lb/>| +-----+ <lb/>+----Y----+ | <lb/>| | Service | <lb/>| App | <lb/>| <lb/>| | App | <lb/>| Service | | <lb/>| +----Y----+ <lb/>+--Y--+ <lb/>| <lb/>| +--Y--+ <lb/>+----Y----+ | <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| *----Y-----------Y----* | <lb/>| *---Y---------------Y----* | <lb/>| | Control Abstraction | | <lb/>| | Management Abstraction | | <lb/>| | <lb/>Layer (CAL) <lb/>| | <lb/>| | <lb/>Layer (MAL) <lb/>| | <lb/>| *----------Y----------* | <lb/>| *----------Y-------------* | <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| <lb/>o------------|------------o <lb/>o------------|---------------o <lb/>| <lb/>| <lb/>| CP <lb/>| MP <lb/>| Southbound <lb/>| Southbound <lb/>| Interface <lb/>| Interface <lb/>| <lb/>| <lb/>*------------Y---------------------------------Y----------------* <lb/>| <lb/>Device and resource Abstraction Layer (DAL) <lb/>| <lb/>*------------Y---------------------------------Y----------------* <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| <lb/>o-------Y----------o <lb/>+-----+ <lb/>o--------Y----------o <lb/>| <lb/>| <lb/>| Forwarding Plane | <lb/>| App | <lb/>| Operational Plane | <lb/>| <lb/>| <lb/>o------------------o <lb/>+-----+ <lb/>o-------------------o <lb/>| <lb/>| <lb/>Network Device <lb/>| <lb/>+---------------------------------------------------------------+ <lb/>Figure 10: SDN Layers and Architecture Terminology per RFC 7426 <lb/>The PCE establishes end-to-end Tracks of hard cells, which are <lb/>described in more details in Section 4.6.1. <lb/></body> + + <note place="footnote">Thubert <lb/>Expires February 28, 2020 <lb/></note> + + <page>[Page 38] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>6tisch-architecture <lb/>August 2019 <lb/></note> + + <body>The DetNet work is expected to enable end to end Deterministic Path <lb/>across heterogeneous network. This can be for instance a 6TiSCH LLN <lb/>and an Ethernet Backbone. <lb/>This model fits the 6TiSCH extended configuration, whereby a 6BBR <lb/>federates multiple 6TiSCH LLN in a single subnet over a backbone that <lb/>can be, for instance, Ethernet or Wi-Fi. In that model, 6TiSCH 6BBRs <lb/>synchronize with one another over the backbone, so as to ensure that <lb/>the multiple LLNs that form the IPv6 subnet stay tightly <lb/>synchronized. <lb/>If the Backbone is Deterministic, then the Backbone Router ensures <lb/>that the end-to-end deterministic behavior is maintained between the <lb/>LLN and the backbone. It is the responsibility of the PCE to compute <lb/>a deterministic path and to end across the TSCH network and an IEEE <lb/>Std. 802.1 TSN Ethernet backbone, and that of DetNet to enable end-<lb/>to-end deterministic forwarding. <lb/>4.4.4. Hop-by-hop Scheduling <lb/>A node can reserve a Track (Section 4.5) to one or more <lb/>destination(s) that are multiple hops away by installing soft cells <lb/>at each intermediate node. This forms a Track of soft cells. A <lb/>Track Scheduling Function above the 6top sublayer of each node on the <lb/>Track is needed to monitor these soft cells and trigger relocation <lb/>when needed. <lb/>This hop-by-hop reservation mechanism is expected to be similar in <lb/>essence to [RFC3209] and/or [RFC4080]/[RFC5974]. The protocol for a <lb/>node to trigger hop-by-hop scheduling is not yet defined. <lb/>4.5. On Tracks <lb/>The architecture introduces the concept of a Track, which is a <lb/>directed path from a source 6TiSCH node to one or more destination <lb/>6TiSCH node(s) across a 6TiSCH LLN. <lb/>A Track is the 6TiSCH instantiation of the concept of a Deterministic <lb/>Path as described in [I-D.ietf-detnet-architecture]. Constrained <lb/>resources such as memory buffers are reserved for that Track in <lb/>intermediate 6TiSCH nodes to avoid loss related to limited capacity. <lb/>A 6TiSCH node along a Track not only knows which bundles of cells it <lb/>should use to receive packets from a previous hop, but also knows <lb/>which bundle(s) it should use to send packets to its next hop along <lb/>the Track. <lb/></body> + + <note place="footnote">Thubert <lb/>Expires February 28, 2020 <lb/></note> + + <page>[Page 39] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>6tisch-architecture <lb/>August 2019 <lb/></note> + + <body>4.5.1. General Behavior of Tracks <lb/>A Track is associated with Layer-2 bundles of cells with related <lb/>schedules and logical relationships and that ensure that a packet <lb/>that is injected in a Track will progress in due time all the way to <lb/>destination. <lb/>Multiple cells may be scheduled in a Track for the transmission of a <lb/>single packet, in which case the normal operation of IEEE Std. <lb/>802.15.4 Automatic Repeat-reQuest (ARQ) can take place; the <lb/>acknowledgment may be omitted in some cases, for instance if there is <lb/>no scheduled cell for a possible retry. <lb/>There are several benefits for using a Track to forward a packet from <lb/>a source node to the destination node. <lb/>1. Track forwarding, as further described in Section 4.6.1, is a <lb/>Layer-2 forwarding scheme, which introduces less process delay <lb/>and overhead than Layer-3 forwarding scheme. Therefore, LLN <lb/>Devices can save more energy and resource, which is critical for <lb/>resource constrained devices. <lb/>2. Since channel resources, i.e., bundles of cells, have been <lb/>reserved for communications between 6TiSCH nodes of each hop on <lb/>the Track, the throughput and the maximum latency of the traffic <lb/>along a Track are guaranteed and the jitter is maintained small. <lb/>3. By knowing the scheduled time slots of incoming bundle(s) and <lb/>outgoing bundle(s), 6TiSCH nodes on a Track could save more <lb/>energy by staying in sleep state during in-active slots. <lb/>4. Tracks are protected from interfering with one another if a cell <lb/>is scheduled to belong to at most one Track, and congestion loss <lb/>is avoided if at most one packet can be presented to the MAC to <lb/>use that cell. Tracks enhance the reliability of transmissions <lb/>and thus further improve the energy consumption in LLN Devices by <lb/>reducing the chances of retransmission. <lb/>4.5.2. Serial Track <lb/>A Serial (or simple) Track is the 6TiSCH version of a circuit; a <lb/>bundle of cells that are programmed to receive (RX-cells) is uniquely <lb/>paired to a bundle of cells that are set to transmit (TX-cells), <lb/>representing a Layer-2 forwarding state which can be used regardless <lb/>of the network layer protocol. A Serial Track is thus formed end-to-<lb/>end as a succession of paired bundles, a receive bundle from the <lb/>previous hop and a transmit bundle to the next hop along the Track. <lb/></body> + + <note place="footnote">Thubert <lb/>Expires February 28, 2020 <lb/></note> + + <page>[Page 40] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>6tisch-architecture <lb/>August 2019 <lb/></note> + + <body>For a given iteration of the device schedule, the effective channel <lb/>of the cell is obtained by following in a loop a well-known hopping <lb/>sequence that started at Epoch time at the channelOffset of the cell, <lb/>which results in a rotation of the frequency that used for <lb/>transmission. The bundles may be computed so as to accommodate both <lb/>variable rates and retransmissions, so they might not be fully used <lb/>in the iteration of the schedule. <lb/>4.5.3. Complex Track with Replication and Elimination <lb/>The art of Deterministic Networks already include Packet Replication <lb/>and Elimination techniques. Example standards include the Parallel <lb/>Redundancy Protocol (PRP) and the High-availability Seamless <lb/>Redundancy (HSR) [IEC62439]. Similarly, and as opposed to a Serial <lb/>Track that is a sequence of nodes and links, a Complex Track is <lb/>shaped as a directed acyclic graph towards one or more destination(s) <lb/>to support multi-path forwarding and route around failures. <lb/>A Complex Track may branch off over non congruent branches for the <lb/>purpose of multicasting, and/or redundancy, in which case it <lb/>reconverges later down the path. This enables the Packet <lb/>Replication, Elimination and Ordering Functions (PREOF) defined by <lb/>Detnet. Packet ARQ, Replication, Elimination and Overhearing (PAREO) <lb/>adds radio-specific capabilities of Layer-2 ARQ and promiscuous <lb/>listening to redundant transmissions to compensate for the lossiness <lb/>of the medium and meet industrial expectations of a Reliable and <lb/>Available Wireless (RAW) network. Combining PAREO and PREOF, a Track <lb/>may extend beyond the 6TiSCH network in a larger DetNet network. <lb/>In the art of TSCH, a path does not necessarily support PRE but it is <lb/>almost systematically multi-path. This means that a Track is <lb/>scheduled so as to ensure that each hop has at least two forwarding <lb/>solutions, and the forwarding decision is to try the preferred one <lb/>and use the other in case of Layer-2 transmission failure as detected <lb/>by ARQ. Similarly, at each 6TiSCH hop along the Track, the PCE may <lb/>schedule more than one timeslot for a packet, so as to support <lb/>Layer-2 retries (ARQ). It is also possible that the field device <lb/>only uses the second branch if sending over the first branch fails. <lb/>4.5.4. DetNet End-to-end Path <lb/>Ultimately, DetNet [I-D.ietf-detnet-architecture] should enable to <lb/>extend a Track beyond the 6TiSCH LLN as illustrated in Figure 11. In <lb/>that example, a Track that is laid out from a field device in a <lb/>6TiSCH network to an IoT gateway that is located on an 802.1 Time-<lb/>Sensitive Networking (TSN) backbone. A 6TiSCH-Aware DetNet Service <lb/>Layer handles the Packet Replication, Elimination, and Ordering <lb/>Functions over the DODAG that forms a Track. <lb/></body> + + <note place="footnote">Thubert <lb/>Expires February 28, 2020 <lb/></note> + + <page>[Page 41] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>6tisch-architecture <lb/>August 2019 <lb/></note> + + <body>The Replication function in the 6TiSCH Node sends a copy of each <lb/>packet over two different branches, and the PCE schedules each hop of <lb/>both branches so that the two copies arrive in due time at the <lb/>gateway. In case of a loss on one branch, hopefully the other copy <lb/>of the packet still makes it in due time. If two copies make it to <lb/>the IoT gateway, the Elimination function in the gateway ignores the <lb/>extra packet and presents only one copy to upper layers. <lb/>+-=-=-+ <lb/>| IoT | <lb/>| G/W | <lb/>+-=-=-+ <lb/>^ <=== Elimination <lb/>Track branch <lb/>| | <lb/>+-=-=-=-+ +-=-=-=-=+ Subnet Backbone <lb/>| <lb/>| <lb/>+-=|-=+ <lb/>+-=|-=+ <lb/>| | | Backbone <lb/>| | | Backbone <lb/>o <lb/>| | | router <lb/>| | | router <lb/>+-=/-=+ <lb/>+-=|-=+ <lb/>o <lb/>/ <lb/>o <lb/> o-=-o-=-=/ <lb/>o <lb/>o <lb/>o-=-o-=/ <lb/>o <lb/>o <lb/>o o <lb/>o <lb/>o <lb/>\ / <lb/>o <lb/>o <lb/>LLN <lb/>o <lb/>o <lb/>v <=== Replication <lb/>o <lb/> Figure 11: Example End-to-End DetNet Track <lb/>4.5.5. Cell Reuse <lb/>The 6TiSCH architecture provides means to avoid waste of cells as <lb/>well as overflows in the transmit bundle of a Track, as follows: <lb/>A TX-cell that is not needed for the current iteration may be reused <lb/>opportunistically on a per-hop basis for routed packets. When all of <lb/>the frame that were received for a given Track are effectively <lb/>transmitted, any available TX-cell for that Track can be reused for <lb/>upper layer traffic for which the next-hop router matches the next <lb/>hop along the Track. In that case, the cell that is being used is <lb/>effectively a TX-cell from the Track, but the short address for the <lb/>destination is that of the next-hop router. <lb/>It results in a frame that is received in a RX-cell of a Track with a <lb/>destination MAC address set to this node as opposed to the broadcast <lb/>MAC address must be extracted from the Track and delivered to the <lb/>upper layer. Note that a frame with an unrecognized destination MAC <lb/>address is dropped at the lower MAC layer and thus is not received at <lb/>the 6top sublayer. <lb/></body> + + <note place="footnote">Thubert <lb/>Expires February 28, 2020 <lb/></note> + + <page>[Page 42] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>6tisch-architecture <lb/>August 2019 <lb/></note> + + <body>On the other hand, it might happen that there are not enough TX-cells <lb/>in the transmit bundle to accommodate the Track traffic, for instance <lb/>if more retransmissions are needed than provisioned. In that case, <lb/>and if the frame transports an IPv6 packet, then it can be placed for <lb/>transmission in the bundle that is used for Layer-3 traffic towards <lb/>the next hop along the Track. The MAC address should be set to the <lb/>next-hop MAC address to avoid confusion. <lb/>It results in a frame that is received over a Layer-3 bundle may be <lb/>in fact associated to a Track. In a classical IP link such as an <lb/>Ethernet, off-Track traffic is typically in excess over reservation <lb/>to be routed along the non-reserved path based on its QoS setting. <lb/>But with 6TiSCH, since the use of the Layer-3 bundle may be due to <lb/>transmission failures, it makes sense for the receiver to recognize a <lb/>frame that should be re-Tracked, and to place it back on the <lb/>appropriate bundle if possible. . A frame is re-Tracked by <lb/>scheduling it for transmission over the transmit bundle associated to <lb/>the Track, with the destination MAC address set to broadcast. <lb/>4.6. Forwarding Models <lb/>By forwarding, this document means the per-packet operation that <lb/>allows to deliver a packet to a next hop or an upper layer in this <lb/>node. Forwarding is based on pre-existing state that was installed <lb/>as a result of a routing computation Section 4.7. 6TiSCH supports <lb/>three different forwarding model:(G-MPLS) Track Forwarding, <lb/>(classical) IPv6 Forwarding and (6LoWPAN) Fragment Forwarding. <lb/>4.6.1. Track Forwarding <lb/>Forwarding along a Track can be seen as a Generalized Multi-protocol <lb/>Label Switching (G-MPLS) operation in that the information used to <lb/>switch a frame is not an explicit label, but rather related to other <lb/>properties of the way the packet was received, a particular cell in <lb/>the case of 6TiSCH. As a result, as long as the TSCH MAC (and <lb/>Layer-2 security) accepts a frame, that frame can be switched <lb/>regardless of the protocol, whether this is an IPv6 packet, a 6LoWPAN <lb/>fragment, or a frame from an alternate protocol such as WirelessHART <lb/>or ISA100.11a. <lb/>A data frame that is forwarded along a Track normally has a <lb/>destination MAC address that is set to broadcast -or a multicast <lb/>address depending on MAC support. This way, the MAC layer in the <lb/>intermediate nodes accepts the incoming frame and 6top switches it <lb/>without incurring a change in the MAC header. In the case of IEEE <lb/>Std. 802.15.4, this means effectively broadcast, so that along the <lb/>Track the short address for the destination of the frame is set to <lb/>0xFFFF. <lb/></body> + + <note place="footnote">Thubert <lb/>Expires February 28, 2020 <lb/></note> + + <page>[Page 43] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>6tisch-architecture <lb/>August 2019 <lb/></note> + + <body>There are 2 modes for a Track, native mode and tunnel mode. <lb/>4.6.1.1. Native Mode <lb/>In native mode, the Protocol Data Unit (PDU) is associated with flow-<lb/>dependent meta-data that refers uniquely to the Track, so the 6top <lb/>sublayer can place the frame in the appropriate cell without <lb/>ambiguity. In the case of IPv6 traffic, this flow identification may <lb/>be done using a 6-tuple as discussed in [I-D.ietf-detnet-ip]. In <lb/>particular, implementations of this document should support <lb/>identification of DetNet flows based on the IPv6 Flow Label field. <lb/>The flow identification may also be done using a dedicated RPL <lb/>Instance (see section 3.1.3 of [RFC6550]), signaled in a RPL Packet <lb/>Information (more in section 11.2.2.1 of [RFC6550]). The flow <lb/>identification is validated at egress before restoring the <lb/>destination MAC address (DMAC) and punting to the upper layer. <lb/>Figure 12 illustrates the Track Forwarding operation which happens at <lb/>the 6top sublayer, below IP. <lb/>| Packet flowing across the network ^ <lb/>+--------------+ <lb/>| <lb/>| <lb/>| <lb/>IPv6 <lb/>| <lb/>| <lb/>| <lb/>+--------------+ <lb/>| <lb/>| <lb/>| 6LoWPAN HC | <lb/>| <lb/>| <lb/>+--------------+ ingress <lb/>egress <lb/>| <lb/>6top <lb/>| <lb/>sets <lb/>+----+ <lb/>+----+ <lb/>restores <lb/>+--------------+ DMAC to <lb/>| <lb/>| <lb/>| <lb/>| <lb/>DMAC to <lb/>| <lb/>TSCH MAC <lb/>| <lb/>brdcst <lb/>| <lb/>| <lb/>| <lb/>| <lb/>dest <lb/>+--------------+ <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| <lb/>LLN PHY <lb/>| <lb/>+-------+ <lb/>+--...-----+ <lb/>+-------+ <lb/>+--------------+ <lb/>Ingress <lb/>Relay <lb/>Relay <lb/>Egress <lb/>Stack Layer <lb/>Node <lb/>Node <lb/>Node <lb/>Node <lb/>Figure 12: Track Forwarding, Native Mode <lb/>4.6.1.2. Tunnel Mode <lb/>In tunnel mode, the frames originate from an arbitrary protocol over <lb/>a compatible MAC that may or may not be synchronized with the 6TiSCH <lb/>network. An example of this would be a router with a dual radio that <lb/>is capable of receiving and sending WirelessHART or ISA100.11a frames <lb/>with the second radio, by presenting itself as an access Point or a <lb/>Backbone Router, respectively. In that mode, some entity (e.g., PCE) <lb/>can coordinate with a WirelessHART Network Manager or an ISA100.11a <lb/>System Manager to specify the flows that are transported. <lb/></body> + + <note place="footnote">Thubert <lb/>Expires February 28, 2020 <lb/></note> + + <page>[Page 44] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>6tisch-architecture <lb/>August 2019 <lb/></note> + + <body>+--------------+ <lb/>| <lb/>IPv6 <lb/>| <lb/>+--------------+ <lb/>| 6LoWPAN HC | <lb/>+--------------+ <lb/>set <lb/>restore <lb/>| <lb/>6top <lb/>| <lb/>+DMAC+ <lb/>+DMAC+ <lb/>+--------------+ <lb/>to|brdcst <lb/>to|nexthop <lb/>| <lb/>TSCH MAC <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| <lb/>+--------------+ <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| <lb/>LLN PHY <lb/>| <lb/>+-------+ <lb/>+--...-----+ <lb/>+-------+ <lb/>+--------------+ <lb/>| <lb/>ingress <lb/>egress <lb/>| <lb/>| <lb/>| <lb/>+--------------+ <lb/>| <lb/>| <lb/>| <lb/>LLN PHY <lb/>| <lb/>| <lb/>| <lb/>+--------------+ <lb/>| Packet flowing across the network | <lb/>| <lb/>TSCH MAC <lb/>| <lb/>| <lb/>| <lb/>+--------------+ <lb/>| DMAC = <lb/>| DMAC = <lb/>|ISA100/WiHART | <lb/>| nexthop <lb/>v nexthop <lb/>+--------------+ <lb/>Source <lb/>Ingress <lb/>Egress <lb/>Destination <lb/>Stack Layer <lb/>Node <lb/>Node <lb/>Node <lb/>Node <lb/>Figure 13: Track Forwarding, Tunnel Mode <lb/>In that case, the flow information that identifies the Track at the <lb/>ingress 6TiSCH router is derived from the RX-cell. The DMAC is set <lb/>to this node but the flow information indicates that the frame must <lb/>be tunneled over a particular Track so the frame is not passed to the <lb/>upper layer. Instead, the DMAC is forced to broadcast and the frame <lb/>is passed to the 6top sublayer for switching. <lb/>At the egress 6TiSCH router, the reverse operation occurs. Based on <lb/>tunneling information of the Track, which may for instance indicate <lb/>that the tunneled datagram is an IP packet, the datagram is passed to <lb/>the appropriate Link-Layer with the destination MAC restored. <lb/>4.6.1.3. Tunneling Information <lb/>Tunneling information coming with the Track configuration provides <lb/>the destination MAC address of the egress endpoint as well as the <lb/>tunnel mode and specific data depending on the mode, for instance a <lb/>service access point for frame delivery at egress. <lb/>If the tunnel egress point does not have a MAC address that matches <lb/>the configuration, the Track installation fails. <lb/></body> + + <note place="footnote">Thubert <lb/>Expires February 28, 2020 <lb/></note> + + <page>[Page 45] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>6tisch-architecture <lb/>August 2019 <lb/></note> + + <body>If the Layer-3 destination address belongs to the tunnel termination, <lb/>then it is possible that the IPv6 address of the destination is <lb/>compressed at the 6LoWPAN sublayer based on the MAC address. <lb/>Restoring the wrong MAC address at the egress would then also result <lb/>in the wrong IP address in the packet after decompression. For that <lb/>reason, a packet can be injected in a Track only if the destination <lb/>MAC address is effectively that of the tunnel egress point. It is <lb/>thus mandatory for the ingress router to validate that the MAC <lb/>address that was used at the 6LoWPAN sublayer for compression matches <lb/>that of the tunnel egress point before it overwrites it to broadcast. <lb/>The 6top sublayer at the tunnel egress point reverts that operation <lb/>to the MAC address obtained from the tunnel information. <lb/>4.6.2. IPv6 Forwarding <lb/>As the packets are routed at Layer-3, traditional QoS and Active <lb/>Queue Management (AQM) operations are expected to prioritize flows. <lb/>| Packet flowing across the network ^ <lb/>+--------------+ <lb/>| <lb/>| <lb/>| <lb/>IPv6 <lb/>| <lb/>| <lb/>+-QoS+ <lb/>+-QoS+ <lb/>| <lb/>+--------------+ <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| 6LoWPAN HC | <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| <lb/>+--------------+ <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| <lb/>6top <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| <lb/>+--------------+ <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| <lb/>TSCH MAC <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| <lb/>+--------------+ <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| <lb/>LLN PHY <lb/>| <lb/>+-------+ <lb/>+--...-----+ <lb/>+-------+ <lb/>+--------------+ <lb/>Source <lb/>Ingress <lb/>Egress <lb/>Destination <lb/>Stack Layer <lb/>Node <lb/>Router <lb/>Router <lb/>Node <lb/>Figure 14: IP Forwarding <lb/>4.6.3. Fragment Forwarding <lb/>Considering that per section 4 of [RFC4944] 6LoWPAN packets can be as <lb/>large as 1280 bytes (the IPv6 minimum MTU), and that the non-storing <lb/>mode of RPL implies Source Routing that requires space for routing <lb/>headers, and that a IEEE Std. 802.15.4 frame with security may carry <lb/>in the order of 80 bytes of effective payload, an IPv6 packet might <lb/>be fragmented into more than 16 fragments at the 6LoWPAN sublayer. <lb/></body> + + <note place="footnote">Thubert <lb/>Expires February 28, 2020 <lb/></note> + + <page>[Page 46] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>6tisch-architecture <lb/>August 2019 <lb/></note> + + <body>This level of fragmentation is much higher than that traditionally <lb/>experienced over the Internet with IPv4 fragments, where <lb/>fragmentation is already known as harmful. <lb/>In the case to a multihop route within a 6TiSCH network, Hop-by-Hop <lb/>recomposition occurs at each hop to reform the packet and route it. <lb/>This creates additional latency and forces intermediate nodes to <lb/>store a portion of a packet for an undetermined time, thus impacting <lb/>critical resources such as memory and battery. <lb/>[I-D.ietf-6lo-minimal-fragment] describes a framework for forwarding <lb/>fragments end-to-end across a 6TiSCH route-over mesh. Within that <lb/>framework, [I-D.ietf-lwig-6lowpan-virtual-reassembly] details a <lb/>virtual reassembly buffer mechanism whereby the datagram tag in the <lb/>6LoWPAN Fragment is used as a label for switching at the 6LoWPAN <lb/>sublayer. <lb/>Building on this technique, [I-D.ietf-6lo-fragment-recovery] <lb/>introduces a new format for 6LoWPAN fragments that enables the <lb/>selective recovery of individual fragments, and allows for a degree <lb/>of flow control based on an Explicit Congestion Notification. <lb/>| Packet flowing across the network ^ <lb/>+--------------+ <lb/>| <lb/>| <lb/>| <lb/>IPv6 <lb/>| <lb/>| <lb/>+----+ <lb/>+----+ <lb/>| <lb/>+--------------+ <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| 6LoWPAN HC | <lb/>| <lb/>learn <lb/>learn <lb/>| <lb/>+--------------+ <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| <lb/>6top <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| <lb/>+--------------+ <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| <lb/>TSCH MAC <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| <lb/>+--------------+ <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| <lb/>LLN PHY <lb/>| <lb/>+-------+ <lb/>+--...-----+ <lb/>+-------+ <lb/>+--------------+ <lb/>Source <lb/>Ingress <lb/>Egress <lb/>Destination <lb/>Stack Layer <lb/>Node <lb/>Router <lb/>Router <lb/>Node <lb/>Figure 15: Forwarding First Fragment <lb/>In that model, the first fragment is routed based on the IPv6 header <lb/>that is present in that fragment. The 6LoWPAN sublayer learns the <lb/>next hop selection, generates a new datagram tag for transmission to <lb/>the next hop, and stores that information indexed by the incoming MAC <lb/>address and datagram tag. The next fragments are then switched based <lb/>on that stored state. <lb/></body> + + <note place="footnote">Thubert <lb/>Expires February 28, 2020 <lb/></note> + + <page>[Page 47] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>6tisch-architecture <lb/>August 2019 <lb/></note> + + <body>| Packet flowing across the network ^ <lb/>+--------------+ <lb/>| <lb/>| <lb/>| <lb/>IPv6 <lb/>| <lb/>| <lb/>| <lb/>+--------------+ <lb/>| <lb/>| <lb/>| 6LoWPAN HC | <lb/>| <lb/>replay <lb/>replay <lb/>| <lb/>+--------------+ <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| <lb/>6top <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| <lb/>+--------------+ <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| <lb/>TSCH MAC <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| <lb/>+--------------+ <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| <lb/>LLN PHY <lb/>| <lb/>+-------+ <lb/>+--...-----+ <lb/>+-------+ <lb/>+--------------+ <lb/>Source <lb/>Ingress <lb/>Egress <lb/>Destination <lb/>Stack Layer <lb/>Node <lb/>Router <lb/>Router <lb/>Node <lb/>Figure 16: Forwarding Next Fragment <lb/>A bitmap and an ECN echo in the end-to-end acknowledgment enable the <lb/>source to resend the missing fragments selectively. The first <lb/>fragment may be resent to carve a new path in case of a path failure. <lb/>The ECN echo set indicates that the number of outstanding fragments <lb/>should be reduced. <lb/>4.7. Advanced 6TiSCH Routing <lb/>4.7.1. Packet Marking and Handling <lb/>All packets inside a 6TiSCH domain must carry the RPLInstanceID that <lb/>identifies the 6TiSCH topology that is to be used for routing and <lb/>forwarding that packet. The location of that information must be the <lb/>same for all packets forwarded inside the domain. <lb/>For packets that are routed by a PCE along a Track, the tuple formed <lb/>by the IPv6 source address and a local RPLInstanceID in the packet <lb/>identify uniquely the Track and associated transmit bundle. <lb/>For packets that are routed by RPL, that information is the <lb/>RPLInstanceID which is carried in the RPL Packet Information (RPI), <lb/>as discussed in section 11.2 of [RFC6550], "Loop Avoidance and <lb/>Detection". The RPI is transported by a RPL option in the IPv6 Hop-<lb/>By-Hop Header [RFC6553]. <lb/>A compression mechanism for the RPL packet artifacts that integrates <lb/>the compression of IP-in-IP encapsulation and the Routing Header type <lb/>3 [RFC6554] with that of the RPI in a 6LoWPAN dispatch/header type is <lb/>specified in [RFC8025] and [RFC8138]. <lb/></body> + + <note place="footnote">Thubert <lb/>Expires February 28, 2020 <lb/></note> + + <page>[Page 48] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>6tisch-architecture <lb/>August 2019 <lb/></note> + + <body>Either way, the method and format used for encoding the RPLInstanceID <lb/>is generalized to all 6TiSCH topological Instances, which include <lb/>both RPL Instances and Tracks. <lb/>4.7.2. Replication, Retries and Elimination <lb/>6TiSCH supports the PREOF operations of elimination and reordering of <lb/>packets along a complex Track, but has no requirement about whether a <lb/>sequence number is tagged in the packet for that purpose. With <lb/>6TiSCH, the schedule can tell when multiple receive timeslots <lb/>correspond to copies of a same packet, in which case the receiver may <lb/>avoid listening to the extra copies once it had received one instance <lb/>of the packet. <lb/>The semantics of the configuration will enable correlated timeslots <lb/>to be grouped for transmit (and respectively receive) with a 'OR' <lb/>relations, and then a 'AND' relation would be configurable between <lb/>groups. The semantics is that if the transmit (and respectively <lb/>receive) operation succeeded in one timeslot in a 'OR' group, then <lb/>all the other timeslots in the group are ignored. Now, if there are <lb/>at least two groups, the 'AND' relation between the groups indicates <lb/>that one operation must succeed in each of the groups. <lb/>On the transmit side, timeslots provisioned for retries along a same <lb/>branch of a Track are placed a same 'OR' group. The 'OR' relation <lb/>indicates that if a transmission is acknowledged, then <lb/>retransmissions of that packet should not be attempted for remaining <lb/>timeslots in that group. There are as many 'OR' groups as there are <lb/>branches of the Track departing from this node. Different 'OR' <lb/>groups are programmed for the purpose of replication, each group <lb/>corresponding to one branch of the Track. The 'AND' relation between <lb/>the groups indicates that transmission over any of branches must be <lb/>attempted regardless of whether a transmission succeeded in another <lb/>branch. It is also possible to place cells to different next-hop <lb/>routers in a same 'OR' group. This allows to route along multi-path <lb/>Tracks, trying one next-hop and then another only if sending to the <lb/>first fails. <lb/>On the receive side, all timeslots are programmed in a same 'OR' <lb/>group. Retries of a same copy as well as converging branches for <lb/>elimination are converged, meaning that the first successful <lb/>reception is enough and that all the other timeslots can be ignored. <lb/>A 'AND' group denotes different packets that must all be received and <lb/>transmitted over the associated transmit groups within their <lb/>respected 'AND' or 'OR' rules. <lb/></body> + + <note place="footnote">Thubert <lb/>Expires February 28, 2020 <lb/></note> + + <page>[Page 49] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>6tisch-architecture <lb/>August 2019 <lb/></note> + + <body>As an example say that we have a simple network as represented in <lb/>Figure 17, and we want to enable PREOF between an ingress node I and <lb/>an egress node E. <lb/>+-+ <lb/>+-+ <lb/>--|A| ------|C| --<lb/>/ <lb/>+-+ <lb/>+-+ <lb/>\ <lb/>/ <lb/>\ <lb/>+-+ <lb/>+-+ <lb/>|I| <lb/>|E| <lb/>+-+ <lb/>+-+ <lb/>\ <lb/>/ <lb/>\ <lb/>+-+ <lb/>+-+ <lb/>/ <lb/>--|B| -------|D| --<lb/>+-+ <lb/>+-+ <lb/>Figure 17: Scheduling PREOF on a Simple Network <lb/>The assumption for this particular problem is that a 6TiSCH node has <lb/>a single radio, so it cannot perform 2 receive and/or transmit <lb/>operations at the same time, even on 2 different channels. <lb/>Say we have 6 possible channels, and at least 10 timeslots per <lb/>slotframe. Figure 18 shows a possible schedule whereby each <lb/>transmission is retried 2 or 3 times, and redundant copies are <lb/>forwarded in parallel via A and C on the one hand, and B and D on the <lb/>other, providing time diversity, spatial diversity though different <lb/>physical paths, and frequency diversity. <lb/>slotOffset <lb/>0 <lb/>1 <lb/>2 <lb/>3 <lb/>4 <lb/>5 <lb/>6 <lb/>7 <lb/>9 <lb/>+----+----+----+----+----+----+----+----+----+ <lb/>channelOffset 0 | <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| <lb/>|B->D| <lb/>| <lb/>| ... <lb/>+----+----+----+----+----+----+----+----+----+ <lb/>channelOffset 1 | <lb/>|I->A| <lb/>|A->C|B->D| <lb/>| <lb/>| <lb/>| <lb/>| ... <lb/>+----+----+----+----+----+----+----+----+----+ <lb/>channelOffset 2 |I->A| <lb/>| <lb/>|I->B| <lb/>|C->E| <lb/>|D->E| <lb/>| ... <lb/>+----+----+----+----+----+----+----+----+----+ <lb/>channelOffset 3 | <lb/>| <lb/>| <lb/>| <lb/>|A->C| <lb/>| <lb/>| <lb/>| <lb/>| ... <lb/>+----+----+----+----+----+----+----+----+----+ <lb/>channelOffset 4 | <lb/>| <lb/>|I->B| <lb/>| <lb/>|B->D| <lb/>| <lb/>|D->E| ... <lb/>+----+----+----+----+----+----+----+----+----+ <lb/>channelOffset 5 | <lb/>| <lb/>|A->C| <lb/>| <lb/>| <lb/>|C->E| <lb/>| <lb/>| ... <lb/>+----+----+----+----+----+----+----+----+----+ <lb/>Figure 18: Example Global Schedule <lb/></body> + + <note place="footnote">Thubert <lb/>Expires February 28, 2020 <lb/></note> + + <page>[Page 50] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>6tisch-architecture <lb/>August 2019 <lb/></note> + + <body>This translates in a different slotframe for every node that provides <lb/>the waking and sleeping times, and the channelOffset to be used when <lb/>awake. Figure 19 shows the corresponding slotframe for node A. <lb/>slotOffset <lb/>0 <lb/>1 <lb/>2 <lb/>3 <lb/>4 <lb/>5 <lb/>6 <lb/>7 <lb/>9 <lb/>+----+----+----+----+----+----+----+----+----+ <lb/>operation <lb/>|rcv |rcv |xmit|xmit|xmit|none|none|none|none| ... <lb/>+----+----+----+----+----+----+----+----+----+ <lb/>channelOffset <lb/>| 2 | 1 | 5 | 1 | 3 |N/A |N/A |N/A |N/A | ... <lb/>+----+----+----+----+----+----+----+----+----+ <lb/>Figure 19: Example Slotframe for Node A <lb/>The logical relationship between the timeslots is given by the <lb/>following table: <lb/>+------+---------------------+------------------------+ <lb/>| Node | <lb/>rcv slotOffset <lb/>| <lb/>xmit slotOffset <lb/>| <lb/>+------+---------------------+------------------------+ <lb/>| I <lb/>| <lb/>N/A <lb/>| (0 OR 1) AND (2 OR 3) | <lb/>| A <lb/>| <lb/>(0 OR 1) <lb/>| <lb/>(2 OR 3 OR 4) <lb/>| <lb/>| B <lb/>| <lb/>(2 OR 3) <lb/>| <lb/>(4 OR 5 OR 6) <lb/>| <lb/>| C <lb/>| <lb/>(2 OR 3 OR 4) <lb/>| <lb/>(5 OR 6) <lb/>| <lb/>| D <lb/>| <lb/>(4 OR 5 OR 6) <lb/>| <lb/>(7 OR 8) <lb/>| <lb/>| E <lb/>| (5 OR 6 OR 7 OR 8) | <lb/>N/A <lb/>| <lb/>+------+---------------------+------------------------+ <lb/>5. IANA Considerations <lb/>This document does not require IANA action. <lb/>6. Security Considerations <lb/>The "Minimal Security Framework for 6TiSCH" <lb/>[I-D.ietf-6tisch-minimal-security] was optimized for Low-Power and <lb/>TSCH operations. The reader is encouraged to review the Security <lb/>Considerations section of that document, which discusses 6TiSCH <lb/>security issues in more details. <lb/>6.1. Availability of Remote Services <lb/>The operation of 6TiSCH Tracks inherits its high level operation from <lb/>DetNet and is subject to the observations in section 5 of <lb/>[I-D.ietf-detnet-architecture]. The installation and the maintenance <lb/></body> + + <note place="footnote">Thubert <lb/>Expires February 28, 2020 <lb/></note> + + <page>[Page 51] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>6tisch-architecture <lb/>August 2019 <lb/></note> + + <body>of the 6TiSCH Tracks depends on the availability of a controller with <lb/>a PCE to compute and push them in the network. When that <lb/>connectivity is lost, existing Tracks may continue to operate until <lb/>the end of their lifetime, but cannot be removed or updated, and new <lb/>Tracks cannot be installed. <lb/>In a LLN, the communication with a remote PCE may be slow and <lb/>unreactive to rapid changes in the condition of the wireless <lb/>communication. An attacker may introduce extra delay by selectively <lb/>jamming some packets or some flows. The expectation is that the <lb/>6TiSCH Tracks enable enough redundancy to maintain the critical <lb/>traffic in operation while new routes are calculated and programmed <lb/>into the network. <lb/>As with DetNet in general, the communication with the PCE must be <lb/>secured and should be protected against DoS attacks, including delay <lb/>injection and blackholing attacks, and secured as discussed in the <lb/>security considerations defined for Abstraction and Control of <lb/>Traffic Engineered Networks (ACTN) in Section 9 of [RFC8453], which <lb/>applies equally to DetNet and 6TiSCH. In a similar manner, the <lb/>communication with the JRC must be secured and should be protected <lb/>against DoS attacks when possible. <lb/>6.2. Selective Jamming <lb/>The Hopping Sequence of a TSCH network is well-known, meaning that if <lb/>a rogue manages to identify a cell of a particular flow, then it may <lb/>to selectively jam that cell, without impacting any other traffic. <lb/>This attack can be performed at the PHY layer without any knowledge <lb/>of the Layer-2 keys, and is very hard to detect and diagnose because <lb/>only one flow is impacted. <lb/>[I-D.tiloca-6tisch-robust-scheduling] proposes a method to obfuscate <lb/>the hopping sequence and make it harder to perpetrate that particular <lb/>attack. <lb/>6.3. MAC-Layer Security <lb/>This architecture operates on IEEE Std. 802.15.4 and expects the <lb/>Link-Layer security to be enabled at all times between connected <lb/>devices, except for the very first step of the device join process, <lb/>where a joining device may need some initial, unsecured exchanges so <lb/>as to obtain its initial key material. In a typical deployment, all <lb/>joined nodes use the same keys and rekeying needs to be global. <lb/>The 6TISCH Architecture relies on the join process to deny <lb/>authorization of invalid nodes and preserve the integrity of the <lb/>network keys. A rogue that managed to access the network can perform <lb/></body> + + <note place="footnote">Thubert <lb/>Expires February 28, 2020 <lb/></note> + + <page>[Page 52] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>6tisch-architecture <lb/>August 2019 <lb/></note> + + <body>a large variety of attacks from DoS to injecting forged packets and <lb/>routing information. "Zero-trust" properties would be highly <lb/>desirable but are mostly not available at the time of this writing. <lb/>[I-D.ietf-6lo-ap-nd] is a notable exception that protects the <lb/>ownership of IPv6 addresses and prevents a rogue node with L2 access <lb/>from stealing and injecting traffic on behalf of a legitimate node. <lb/>6.4. Time Synchronization <lb/>Time Synchronization in TSCH induces another event horizon whereby a <lb/>node will only communicate with another node if they are synchronized <lb/>within a guard time. The pledge discovers the synchronization of the <lb/>network based on the time of reception of the beacon. If an attacker <lb/>synchronizes a pledge outside of the guard time of the legitimate <lb/>nodes then the pledge will never see a legitimate beacon and may not <lb/>discover the attack. <lb/>As discussed in [I-D.ietf-detnet-architecture], measures must be <lb/>taken to protect the time synchronization, and for 6TiSCH this <lb/>includes ensuring that the Absolute Slot Number (ASN), which is the <lb/>node's sense of time, is not compromised. Once installed and as long <lb/>as the node is synchronized to the network, ASN is implicit in the <lb/>transmissions. <lb/>IEEE Std. 802.15.4 [IEEE802154] specifies that in a TSCH network, the <lb/>nonce that is used for the computation of the Message Integrity Code <lb/>(MIC) to secure Link-Layer frames is composed of the address of the <lb/>source of the frame and of the ASN. The standard assumes that the <lb/>ASN is distributed securely by other means. The ASN is not passed <lb/>explicitly in the data frames and does not constitute a complete <lb/>anti-replay protection. It results that upper layer protocols must <lb/>provide a way to detect duplicates and cope with them. <lb/>If the receiver and the sender have a different sense of ASN, the MIC <lb/>will not validate and the frame will be dropped. In that sense, TSCH <lb/>induces an event horizon whereby only nodes that have a common sense <lb/>of ASN can talk to one another in an authenticated manner. With <lb/>6TiSCH, the pledge discovers a tentative ASN in beacons from nodes <lb/>that have already joined the network. But even if the beacon can be <lb/>authenticated, the ASN cannot be trusted as it could be a replay by <lb/>an attacker and thus could announce an ASN that represents a time in <lb/>the past. If the pledge uses an ASN that is learned from a replayed <lb/>beacon for an encrypted transmission, a nonce-reuse attack becomes <lb/>possible and the network keys may be compromised. <lb/></body> + + <note place="footnote">Thubert <lb/>Expires February 28, 2020 <lb/></note> + + <page>[Page 53] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>6tisch-architecture <lb/>August 2019 <lb/></note> + + <body>6.5. Validating ASN <lb/>After obtaining the tentative ASN, a pledge that wishes to join the <lb/>6TiSCH network must use a join protocol to obtain its security keys. <lb/>The join protocol used in 6TiSCH is the Constrained Join Protocol <lb/>(CoJP). In the minimal setting defined in <lb/>[I-D.ietf-6tisch-minimal-security], the authentication requires a <lb/>pre-shared key, based on which a secure session is derived. The CoJP <lb/>exchange may also be preceded with a zero-touch handshake <lb/>[I-D.ietf-6tisch-dtsecurity-zerotouch-join] in order to enable pledge <lb/>joining based on certificates and/or inter-domain communication. <lb/>As detailed in Section 4.2.1, a Join Proxy (JP) helps the pledge for <lb/>the join procedure by relaying the link-scope Join Request over the <lb/>IP network to a Join Registrar/Coordinator (JRC) that can <lb/>authenticate the pledge and validate that it is attached to the <lb/>appropriate network. As a result of the CoJP exchange, the pledge is <lb/>in possession of a Link-Layer material including keys and a short <lb/>address, and if the ASN is known to be correct, all traffic can now <lb/>be secured using CCM* [CCMstar] at the Link-Layer. <lb/>The authentication steps must be such that they cannot be replayed by <lb/>an attacker, and they must not depend on the tentative ASN being <lb/>valid. During the authentication, the keying material that the <lb/>pledge obtains from the JRC does not provide protection against <lb/>spoofed ASN. Once the pledge has obtained the keys to use in the <lb/>network, it may still need to verify the ASN. If the nonce used in <lb/>the Layer-2 security derives from the extended (MAC-64) address, then <lb/>replaying the ASN alone cannot enable a nonce-reuse attack unless the <lb/>same node is lost its state with a previous ASN. But if the nonce <lb/>derives from the short address (e.g., assigned by the JRC) then the <lb/>JRC must ensure that it never assigns short addresses that were <lb/>already given to this or other nodes with the same keys. In other <lb/>words, the network must be rekeyed before the JRC runs out of short <lb/>addresses. <lb/>6.6. Network Keying and Rekeying <lb/>Section 4.2.1 provides an overview of the CoJP process described in <lb/>[I-D.ietf-6tisch-minimal-security] by which an LLN can be assembled <lb/>in the field, having been provisioned in a lab. <lb/>[I-D.ietf-6tisch-dtsecurity-zerotouch-join] is future work that <lb/>preceeds and then leverages the CoJP protocol using the <lb/>[I-D.ietf-anima-constrained-voucher] constrained profile of <lb/>[I-D.ietf-anima-bootstrapping-keyinfra] (BRSKI). This later work <lb/>requires a yet-to-be standardized Lighweight Authenticated Key <lb/>Exchange protocol. <lb/></body> + + <note place="footnote">Thubert <lb/>Expires February 28, 2020 <lb/></note> + + <page>[Page 54] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>6tisch-architecture <lb/>August 2019 <lb/></note> + + <body>The CoJP protocol results in distribution of a network-wide key that <lb/>is to be used with [IEEE802154] security. The details of use are <lb/>described in [I-D.ietf-6tisch-minimal-security] sections 9.2 and <lb/>9.3.2. <lb/>The BRSKI mechanism may lead the use of the CoJP protocol, in which <lb/>case it also results in distribution of a network-wide key. <lb/>Alternatively the BRSKI mechanism may be followed by use of <lb/>[I-D.ietf-ace-coap-est] to enroll certificates for each device. In <lb/>that case, the certificates may be used with an [IEEE802154] key <lb/>agreement protocol. The description of this mechanism, while <lb/>conceptually straight forward still has significant standardization <lb/>hurdles to pass. <lb/>[I-D.ietf-6tisch-minimal-security] section 9.2 describes a mechanism <lb/>to change (rekey) the network. There are a number of reasons to <lb/>initiate a network rekey: to remove unwanted (corrupt/malicious) <lb/>nodes, to recover unused 2-byte short addresses, due to limits in <lb/>encryption algorithms. For all of the mechanisms that distribute a <lb/>network-wide key, rekeying is also needed on a periodic basis. In <lb/>more details: <lb/>o The mechanism described in [I-D.ietf-6tisch-minimal-security] <lb/>section 9.2 requires advance communication between the JRC and <lb/>every one of the nodes before the key change. Given that many <lb/>nodes may be sleepy, this operation may take a significant amount <lb/>of time, and may consume a significant portion of the available <lb/>bandwidth. As such, network-wide rekeys in order to exclude nodes <lb/>that have become malicious will not be particularly quick. If a <lb/>rekey is already in progress, but the unwanted node has not yet <lb/>been updated, then it is possible to to just continue the <lb/>operation. If the unwanted node has already received the update, <lb/>then the rekey operation will need to be restarted. <lb/>o The cryptographic mechanisms used by [IEEE802154] include the <lb/>2-byte short address in the calculation of the context. If the <lb/>2-byte short address is reassigned to another node while the same <lb/>network-wide keys are in operation, it is possible that this could <lb/>result in disclosure of the network-wide key due to reused of the <lb/>nonce. A network that gains and loses nodes on a regular basis is <lb/>likely to reach the 65536 limit of the 2-byte (16-bit) short <lb/>addresses, even if the network has only a few thousand nodes. <lb/>Network planners should consider the need to rekey the network on <lb/>a periodic basis in order to recover 2-byte addresses. The rekey <lb/>can update the short addresses for active nodes if desired, but <lb/>there is actually no need to do this as long as the key has been <lb/>changed. <lb/></body> + + <note place="footnote">Thubert <lb/>Expires February 28, 2020 <lb/></note> + + <page>[Page 55] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>6tisch-architecture <lb/>August 2019 <lb/></note> + + <body>o Many cipher algorithms have some suggested limits on how many <lb/>bytes should be encrypted with that algorithm before a new key is <lb/>used. These numbers are typically in the many to hundreds of <lb/>gigabytes of data. On very fast backbone networks this becomes an <lb/>important concern. On LLNs with typical data rates in the <lb/>kilobits/second, this concern is significantly less. However, the <lb/>LLN may be expected to operate for decades at a time, and <lb/>operators are advised to plan for the need to rekey. <lb/>Except for urgent rekeys caused by malicious nodes, the rekey <lb/>operation described in [I-D.ietf-6tisch-minimal-security] can be done <lb/>as a background task and can be done incrementally. It is a make-<lb/>before-break mechanism. The switch over to the new key is not <lb/>signaled by time, but rather by observation that the new key is in <lb/>use. As such, the update can take as long as needed, or occur in as <lb/>short a time as practical. <lb/></body> + + <div type="acknowledgement">7. Acknowledgments <lb/>7.1. Contributors <lb/>The co-authors of this document are listed below: <lb/>Thomas Watteyne for his contribution to the whole design, in <lb/>particular on TSCH and security, and to the open source <lb/>community with openWSN that he created. <lb/>Xavier Vilajosana who lead the design of the minimal support with <lb/>RPL and contributed deeply to the 6top design and the G-MPLS <lb/>operation of Track switching; <lb/>Kris Pister for creating TSCH and his continuing guidance through <lb/>the elaboration of this design; <lb/>Malisa Vucinic for the work on the one-touch join process and his <lb/>contribution to the Security Design Team; <lb/>Michael Richardson for his leadership role in the Security Design <lb/>Team and his contribution throughout this document; <lb/>Tero Kivinen for his contribution to the security work in general <lb/>and the security section in particular. <lb/>Maria Rita Palattella for managing the Terminology document merged <lb/>into this through the work of 6TiSCH; <lb/></div> + + <note place="footnote">Thubert <lb/>Expires February 28, 2020 <lb/></note> + + <page>[Page 56] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>6tisch-architecture <lb/>August 2019 <lb/></note> + + <div type="acknowledgement">Simon Duquennoy for his contribution to the open source community <lb/>with the 6TiSCH implementaton of contiki, and for his <lb/>contribution to MSF and autonomous unicast cells. <lb/>Qin Wang who lead the design of the 6top sublayer and contributed <lb/>related text that was moved and/or adapted in this document; <lb/>Rene Struik for the security section and his contribution to the <lb/>Security Design Team; <lb/>Robert Assimiti for his breakthrough work on RPL over TSCH and <lb/>initial text and guidance; <lb/>7.2. Special Thanks <lb/>Special thanks to Jonathan Simon, Giuseppe Piro, Subir Das and <lb/>Yoshihiro Ohba for their deep contribution to the initial security <lb/>work, to Yasuyuki Tanaka for his work on implementation and <lb/>simulation that tremendously helped build a robust system, to Diego <lb/>Dujovne for starting and leading the SF0 effort and to Tengfei Chang <lb/>for evolving it in the MSF. <lb/>Special thanks also to Pat Kinney, Charlie Perkins and Bob Heile for <lb/>their support in maintaining the connection active and the design in <lb/>line with work happening at IEEE 802.15. <lb/>Special thanks to Ted Lemon who was the INT Area A-D while this <lb/>document was initiated for his great support and help throughout, and <lb/>to Suresh Krishnan who took over with that kind efficiency of his <lb/>till publication. <lb/>Also special thanks to Ralph Droms who performed the first INT Area <lb/>Directorate review, that was very deep and thorough and radically <lb/>changed the orientations of this document, and then to Eliot Lear and <lb/>Carlos Pignataro who help finalize this document in preparation to <lb/>the IESG reviews, and to Gorry Fairhurst, David Mandelberg, Qin Wu, <lb/>Francis Dupont, Eric Vyncke, Mirja Kuhlewind, Roman Danyliw, Benjamin <lb/>Kaduk and Andrew Malis, who contributed to the final shaping of this <lb/>document through the IESG review procedure. <lb/>7.3. And Do not Forget <lb/>This document is the result of multiple interactions, in particular <lb/>during the 6TiSCH (bi)Weekly Interim call, relayed through the 6TiSCH <lb/>mailing list at the IETF, over the course of more than 5 years. <lb/>The authors wish to thank in arbitrary order: Alaeddine Weslati, <lb/>Chonggang Wang, Georgios Exarchakos, Zhuo Chen, Georgios <lb/></div> + + <note place="footnote">Thubert <lb/>Expires February 28, 2020 <lb/></note> + + <page>[Page 57] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>6tisch-architecture <lb/>August 2019 <lb/></note> + + <div type="acknowledgement">Papadopoulos, Eric Levy-Abegnoli, Alfredo Grieco, Bert Greevenbosch, <lb/>Cedric Adjih, Deji Chen, Martin Turon, Dominique Barthel, Elvis <lb/>Vogli, Geraldine Texier, Guillaume Gaillard, Herman Storey, Kazushi <lb/>Muraoka, Ken Bannister, Kuor Hsin Chang, Laurent Toutain, Maik <lb/>Seewald, Michael Behringer, Nancy Cam Winget, Nicola Accettura, <lb/>Nicolas Montavont, Oleg Hahm, Patrick Wetterwald, Paul Duffy, Peter <lb/>van der Stock, Rahul Sen, Pieter de Mil, Pouria Zand, Rouhollah <lb/>Nabati, Rafa Marin-Lopez, Raghuram Sudhaakar, Sedat Gormus, Shitanshu <lb/>Shah, Steve Simlo, Tina Tsou, Tom Phinney, Xavier Lagrange, Ines <lb/>Robles and Samita Chakrabarti for their participation and various <lb/>contributions. <lb/></div> + + <listBibl>8. References <lb/>8.1. Normative References <lb/>[I-D.ietf-6lo-ap-nd] <lb/>Thubert, P., Sarikaya, B., Sethi, M., and R. Struik, <lb/>"Address Protected Neighbor Discovery for Low-power and <lb/>Lossy Networks", draft-ietf-6lo-ap-nd-12 (work in <lb/>progress), April 2019. <lb/>[I-D.ietf-6lo-backbone-router] <lb/>Thubert, P., Perkins, C., and E. Levy-Abegnoli, "IPv6 <lb/>Backbone Router", draft-ietf-6lo-backbone-router-11 (work <lb/>in progress), February 2019. <lb/>[I-D.ietf-6lo-fragment-recovery] <lb/>Thubert, P., "6LoWPAN Selective Fragment Recovery", draft-<lb/>ietf-6lo-fragment-recovery-05 (work in progress), July <lb/>2019. <lb/>[I-D.ietf-6lo-minimal-fragment] <lb/>Watteyne, T., Bormann, C., and P. Thubert, "6LoWPAN <lb/>Fragment Forwarding", draft-ietf-6lo-minimal-fragment-03 <lb/>(work in progress), July 2019. <lb/>[I-D.ietf-6tisch-enrollment-enhanced-beacon] <lb/>Dujovne, D. and M. Richardson, "IEEE802.15.4 Informational <lb/>Element encapsulation of 6tisch Join and Enrollment <lb/>Information", draft-ietf-6tisch-enrollment-enhanced-<lb/>beacon-02 (work in progress), March 2019. <lb/>[I-D.ietf-6tisch-minimal-security] <lb/>Vucinic, M., Simon, J., Pister, K., and M. Richardson, <lb/>"Minimal Security Framework for 6TiSCH", draft-ietf-<lb/>6tisch-minimal-security-12 (work in progress), July 2019. <lb/></listBibl> + + <note place="footnote">Thubert <lb/>Expires February 28, 2020 <lb/></note> + + <page>[Page 58] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>6tisch-architecture <lb/>August 2019 <lb/></note> + + <listBibl>[I-D.ietf-6tisch-msf] <lb/>Chang, T., Vucinic, M., Vilajosana, X., Duquennoy, S., and <lb/>D. Dujovne, "6TiSCH Minimal Scheduling Function (MSF)", <lb/>draft-ietf-6tisch-msf-06 (work in progress), August 2019. <lb/>[I-D.ietf-detnet-architecture] <lb/>Finn, N., Thubert, P., Varga, B., and J. Farkas, <lb/>"Deterministic Networking Architecture", draft-ietf-<lb/>detnet-architecture-13 (work in progress), May 2019. <lb/>[I-D.ietf-roll-unaware-leaves] <lb/>Thubert, P., "Routing for RPL Leaves", draft-ietf-roll-<lb/>unaware-leaves-02 (work in progress), July 2019. <lb/>[I-D.ietf-roll-useofrplinfo] <lb/>Robles, I., Richardson, M., and P. Thubert, "Using RPL <lb/>Option Type, Routing Header for Source Routes and IPv6-in-<lb/>IPv6 encapsulation in the RPL Data Plane", draft-ietf-<lb/>roll-useofrplinfo-31 (work in progress), August 2019. <lb/>[RFC0768] Postel, J., "User Datagram Protocol", STD 6, RFC 768, <lb/>DOI 10.17487/RFC0768, August 1980, <lb/><https://www.rfc-editor.org/info/rfc768>. <lb/>[RFC4861] Narten, T., Nordmark, E., Simpson, W., and H. Soliman, <lb/>"Neighbor Discovery for IP version 6 (IPv6)", RFC 4861, <lb/>DOI 10.17487/RFC4861, September 2007, <lb/><https://www.rfc-editor.org/info/rfc4861>. <lb/>[RFC4862] Thomson, S., Narten, T., and T. Jinmei, "IPv6 Stateless <lb/>Address Autoconfiguration", RFC 4862, <lb/>DOI 10.17487/RFC4862, September 2007, <lb/><https://www.rfc-editor.org/info/rfc4862>. <lb/>[RFC4944] Montenegro, G., Kushalnagar, N., Hui, J., and D. Culler, <lb/>"Transmission of IPv6 Packets over IEEE 802.15.4 <lb/>Networks", RFC 4944, DOI 10.17487/RFC4944, September 2007, <lb/><https://www.rfc-editor.org/info/rfc4944>. <lb/>[RFC5889] Baccelli, E., Ed. and M. Townsley, Ed., "IP Addressing <lb/>Model in Ad Hoc Networks", RFC 5889, DOI 10.17487/RFC5889, <lb/>September 2010, <https://www.rfc-editor.org/info/rfc5889>. <lb/>[RFC6282] Hui, J., Ed. and P. Thubert, "Compression Format for IPv6 <lb/>Datagrams over IEEE 802.15.4-Based Networks", RFC 6282, <lb/>DOI 10.17487/RFC6282, September 2011, <lb/><https://www.rfc-editor.org/info/rfc6282>. <lb/></listBibl> + + <note place="footnote">Thubert <lb/>Expires February 28, 2020 <lb/></note> + + <page>[Page 59] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>6tisch-architecture <lb/>August 2019 <lb/></note> + + <listBibl>[RFC6550] Winter, T., Ed., Thubert, P., Ed., Brandt, A., Hui, J., <lb/>Kelsey, R., Levis, P., Pister, K., Struik, R., Vasseur, <lb/>JP., and R. Alexander, "RPL: IPv6 Routing Protocol for <lb/>Low-Power and Lossy Networks", RFC 6550, <lb/>DOI 10.17487/RFC6550, March 2012, <lb/><https://www.rfc-editor.org/info/rfc6550>. <lb/>[RFC6551] Vasseur, JP., Ed., Kim, M., Ed., Pister, K., Dejean, N., <lb/>and D. Barthel, "Routing Metrics Used for Path Calculation <lb/>in Low-Power and Lossy Networks", RFC 6551, <lb/>DOI 10.17487/RFC6551, March 2012, <lb/><https://www.rfc-editor.org/info/rfc6551>. <lb/>[RFC6552] Thubert, P., Ed., "Objective Function Zero for the Routing <lb/>Protocol for Low-Power and Lossy Networks (RPL)", <lb/>RFC 6552, DOI 10.17487/RFC6552, March 2012, <lb/><https://www.rfc-editor.org/info/rfc6552>. <lb/>[RFC6553] Hui, J. and JP. Vasseur, "The Routing Protocol for Low-<lb/>Power and Lossy Networks (RPL) Option for Carrying RPL <lb/>Information in Data-Plane Datagrams", RFC 6553, <lb/>DOI 10.17487/RFC6553, March 2012, <lb/><https://www.rfc-editor.org/info/rfc6553>. <lb/>[RFC6554] Hui, J., Vasseur, JP., Culler, D., and V. Manral, "An IPv6 <lb/>Routing Header for Source Routes with the Routing Protocol <lb/>for Low-Power and Lossy Networks (RPL)", RFC 6554, <lb/>DOI 10.17487/RFC6554, March 2012, <lb/><https://www.rfc-editor.org/info/rfc6554>. <lb/>[RFC6775] Shelby, Z., Ed., Chakrabarti, S., Nordmark, E., and C. <lb/>Bormann, "Neighbor Discovery Optimization for IPv6 over <lb/>Low-Power Wireless Personal Area Networks (6LoWPANs)", <lb/>RFC 6775, DOI 10.17487/RFC6775, November 2012, <lb/><https://www.rfc-editor.org/info/rfc6775>. <lb/>[RFC7102] Vasseur, JP., "Terms Used in Routing for Low-Power and <lb/>Lossy Networks", RFC 7102, DOI 10.17487/RFC7102, January <lb/>2014, <https://www.rfc-editor.org/info/rfc7102>. <lb/>[RFC7228] Bormann, C., Ersue, M., and A. Keranen, "Terminology for <lb/>Constrained-Node Networks", RFC 7228, <lb/>DOI 10.17487/RFC7228, May 2014, <lb/><https://www.rfc-editor.org/info/rfc7228>. <lb/></listBibl> + + <note place="footnote">Thubert <lb/>Expires February 28, 2020 <lb/></note> + + <page>[Page 60] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>6tisch-architecture <lb/>August 2019 <lb/></note> + + <listBibl>[RFC7252] Shelby, Z., Hartke, K., and C. Bormann, "The Constrained <lb/>Application Protocol (CoAP)", RFC 7252, <lb/>DOI 10.17487/RFC7252, June 2014, <lb/><https://www.rfc-editor.org/info/rfc7252>. <lb/>[RFC7554] Watteyne, T., Ed., Palattella, M., and L. Grieco, "Using <lb/>IEEE 802.15.4e Time-Slotted Channel Hopping (TSCH) in the <lb/>Internet of Things (IoT): Problem Statement", RFC 7554, <lb/>DOI 10.17487/RFC7554, May 2015, <lb/><https://www.rfc-editor.org/info/rfc7554>. <lb/>[RFC8025] Thubert, P., Ed. and R. Cragie, "IPv6 over Low-Power <lb/>Wireless Personal Area Network (6LoWPAN) Paging Dispatch", <lb/>RFC 8025, DOI 10.17487/RFC8025, November 2016, <lb/><https://www.rfc-editor.org/info/rfc8025>. <lb/>[RFC8137] Kivinen, T. and P. Kinney, "IEEE 802.15.4 Information <lb/>Element for the IETF", RFC 8137, DOI 10.17487/RFC8137, May <lb/>2017, <https://www.rfc-editor.org/info/rfc8137>. <lb/>[RFC8138] Thubert, P., Ed., Bormann, C., Toutain, L., and R. Cragie, <lb/>"IPv6 over Low-Power Wireless Personal Area Network <lb/>(6LoWPAN) Routing Header", RFC 8138, DOI 10.17487/RFC8138, <lb/>April 2017, <https://www.rfc-editor.org/info/rfc8138>. <lb/>[RFC8180] Vilajosana, X., Ed., Pister, K., and T. Watteyne, "Minimal <lb/>IPv6 over the TSCH Mode of IEEE 802.15.4e (6TiSCH) <lb/>Configuration", BCP 210, RFC 8180, DOI 10.17487/RFC8180, <lb/>May 2017, <https://www.rfc-editor.org/info/rfc8180>. <lb/>[RFC8200] Deering, S. and R. Hinden, "Internet Protocol, Version 6 <lb/>(IPv6) Specification", STD 86, RFC 8200, <lb/>DOI 10.17487/RFC8200, July 2017, <lb/><https://www.rfc-editor.org/info/rfc8200>. <lb/>[RFC8453] Ceccarelli, D., Ed. and Y. Lee, Ed., "Framework for <lb/>Abstraction and Control of TE Networks (ACTN)", RFC 8453, <lb/>DOI 10.17487/RFC8453, August 2018, <lb/><https://www.rfc-editor.org/info/rfc8453>. <lb/>[RFC8480] Wang, Q., Ed., Vilajosana, X., and T. Watteyne, "6TiSCH <lb/>Operation Sublayer (6top) Protocol (6P)", RFC 8480, <lb/>DOI 10.17487/RFC8480, November 2018, <lb/><https://www.rfc-editor.org/info/rfc8480>. <lb/></listBibl> + + <note place="footnote">Thubert <lb/>Expires February 28, 2020 <lb/></note> + + <page>[Page 61] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>6tisch-architecture <lb/>August 2019 <lb/></note> + + <listBibl>[RFC8505] Thubert, P., Ed., Nordmark, E., Chakrabarti, S., and C. <lb/>Perkins, "Registration Extensions for IPv6 over Low-Power <lb/>Wireless Personal Area Network (6LoWPAN) Neighbor <lb/>Discovery", RFC 8505, DOI 10.17487/RFC8505, November 2018, <lb/><https://www.rfc-editor.org/info/rfc8505>. <lb/>8.2. Informative References <lb/>[AMI] <lb/>US Department of Energy, "Advanced Metering Infrastructure <lb/>and Customer Systems", 2006, <lb/><https://www.energy.gov/sites/prod/files/2016/12/f34/ <lb/>AMI%20Summary%20Report_09-26-16.pdf>. <lb/>[ANIMA] <lb/>IETF, "Autonomic Networking Integrated Model and <lb/>Approach", <lb/><https://dataTracker.ietf.org/doc/charter-ietf-anima/>. <lb/>[CCAMP] <lb/>IETF, "Common Control and Measurement Plane", <lb/><https://dataTracker.ietf.org/doc/charter-ietf-ccamp/>. <lb/>[CCMstar] Struik, R., "Formal Specification of the CCM* Mode of <lb/>Operation", September 2004, <www.ieee802.org/15/ <lb/>pub/2004/15-04-0537-00-004b-formal-specification-ccm-star-<lb/>mode-operation.doc>. <lb/>[HART] <lb/>www.hartcomm.org, "Highway Addressable remote Transducer, <lb/>a group of specifications for industrial process and <lb/>control devices administered by the HART Foundation". <lb/>[I-D.bernardos-raw-use-cases] <lb/>Papadopoulos, G., Thubert, P., Theoleyre, F., and C. <lb/>Bernardos, "RAW use cases", draft-bernardos-raw-use-<lb/>cases-00 (work in progress), July 2019. <lb/>[I-D.ietf-6tisch-dtsecurity-zerotouch-join] <lb/>Richardson, M., "6tisch Zero-Touch Secure Join protocol", <lb/>draft-ietf-6tisch-dtsecurity-zerotouch-join-04 (work in <lb/>progress), July 2019. <lb/>[I-D.ietf-ace-coap-est] <lb/>Stok, P., Kampanakis, P., Richardson, M., and S. Raza, <lb/>"EST over secure CoAP (EST-coaps)", draft-ietf-ace-coap-<lb/>est-12 (work in progress), June 2019. <lb/></listBibl> + + <note place="footnote">Thubert <lb/>Expires February 28, 2020 <lb/></note> + + <page>[Page 62] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>6tisch-architecture <lb/>August 2019 <lb/></note> + + <listBibl>[I-D.ietf-anima-bootstrapping-keyinfra] <lb/>Pritikin, M., Richardson, M., Eckert, T., Behringer, M., <lb/>and K. Watsen, "Bootstrapping Remote Secure Key <lb/>Infrastructures (BRSKI)", draft-ietf-anima-bootstrapping-<lb/>keyinfra-26 (work in progress), August 2019. <lb/>[I-D.ietf-anima-constrained-voucher] <lb/>Richardson, M., Stok, P., and P. Kampanakis, "Constrained <lb/>Voucher Artifacts for Bootstrapping Protocols", draft-<lb/>ietf-anima-constrained-voucher-05 (work in progress), July <lb/>2019. <lb/>[I-D.ietf-core-object-security] <lb/>Selander, G., Mattsson, J., Palombini, F., and L. Seitz, <lb/>"Object Security for Constrained RESTful Environments <lb/>(OSCORE)", draft-ietf-core-object-security-16 (work in <lb/>progress), March 2019. <lb/>[I-D.ietf-detnet-ip] <lb/>Varga, B., Farkas, J., Berger, L., Fedyk, D., Malis, A., <lb/>Bryant, S., and J. Korhonen, "DetNet Data Plane: IP", <lb/>draft-ietf-detnet-ip-01 (work in progress), July 2019. <lb/>[I-D.ietf-detnet-use-cases] <lb/>Grossman, E., "Deterministic Networking Use Cases", draft-<lb/>ietf-detnet-use-cases-20 (work in progress), December <lb/>2018. <lb/>[I-D.ietf-lwig-6lowpan-virtual-reassembly] <lb/>Bormann, C. and T. Watteyne, "Virtual reassembly buffers <lb/>in 6LoWPAN", draft-ietf-lwig-6lowpan-virtual-reassembly-01 <lb/>(work in progress), March 2019. <lb/>[I-D.ietf-manet-aodvv2] <lb/>Perkins, C., Ratliff, S., Dowdell, J., Steenbrink, L., and <lb/>V. Mercieca, "Ad Hoc On-demand Distance Vector Version 2 <lb/>(AODVv2) Routing", draft-ietf-manet-aodvv2-16 (work in <lb/>progress), May 2016. <lb/>[I-D.ietf-roll-aodv-rpl] <lb/>Anamalamudi, S., Zhang, M., Perkins, C., Anand, S., and B. <lb/>Liu, "Asymmetric AODV-P2P-RPL in Low-Power and Lossy <lb/>Networks (LLNs)", draft-ietf-roll-aodv-rpl-07 (work in <lb/>progress), April 2019. <lb/></listBibl> + + <note place="footnote">Thubert <lb/>Expires February 28, 2020 <lb/></note> + + <page>[Page 63] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>6tisch-architecture <lb/>August 2019 <lb/></note> + + <listBibl>[I-D.ietf-roll-dao-projection] <lb/>Thubert, P., Jadhav, R., Gillmore, M., and J. Pylakutty, <lb/>"Root initiated routing state in RPL", draft-ietf-roll-<lb/>dao-projection-06 (work in progress), May 2019. <lb/>[I-D.ietf-roll-rpl-industrial-applicability] <lb/>Phinney, T., Thubert, P., and R. Assimiti, "RPL <lb/>applicability in industrial networks", draft-ietf-roll-<lb/>rpl-industrial-applicability-02 (work in progress), <lb/>October 2013. <lb/>[I-D.rahul-roll-mop-ext] <lb/>Jadhav, R. and P. Thubert, "RPL Mode of Operation <lb/>extension", draft-rahul-roll-mop-ext-01 (work in <lb/>progress), June 2019. <lb/>[I-D.selander-ace-cose-ecdhe] <lb/>Selander, G., Mattsson, J., and F. Palombini, "Ephemeral <lb/>Diffie-Hellman Over COSE (EDHOC)", draft-selander-ace-<lb/>cose-ecdhe-13 (work in progress), March 2019. <lb/>[I-D.thubert-6lo-bier-dispatch] <lb/>Thubert, P., Brodard, Z., Jiang, H., and G. Texier, "A <lb/>6loRH for BitStrings", draft-thubert-6lo-bier-dispatch-06 <lb/>(work in progress), January 2019. <lb/>[I-D.thubert-6man-unicast-lookup] <lb/>Thubert, P. and E. Levy-Abegnoli, "IPv6 Neighbor Discovery <lb/>Unicast Lookup", draft-thubert-6man-unicast-lookup-00 <lb/>(work in progress), July 2019. <lb/>[I-D.thubert-bier-replication-elimination] <lb/>Thubert, P., Eckert, T., Brodard, Z., and H. Jiang, "BIER-<lb/>TE extensions for Packet Replication and Elimination <lb/>Function (PREF) and OAM", draft-thubert-bier-replication-<lb/>elimination-03 (work in progress), March 2018. <lb/>[I-D.thubert-raw-technologies] <lb/>Thubert, P., Cavalcanti, D., Vilajosana, X., and C. <lb/>Schmitt, "Reliable and Available Wireless Technologies", <lb/>draft-thubert-raw-technologies-03 (work in progress), July <lb/>2019. <lb/>[I-D.thubert-roll-bier] <lb/>Thubert, P., "RPL-BIER", draft-thubert-roll-bier-02 (work <lb/>in progress), July 2018. <lb/></listBibl> + + <note place="footnote">Thubert <lb/>Expires February 28, 2020 <lb/></note> + + <page>[Page 64] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>6tisch-architecture <lb/>August 2019 <lb/></note> + + <listBibl>[I-D.tiloca-6tisch-robust-scheduling] <lb/>Tiloca, M., Duquennoy, S., and G. Dini, "Robust Scheduling <lb/>against Selective Jamming in 6TiSCH Networks", draft-<lb/>tiloca-6tisch-robust-scheduling-02 (work in progress), <lb/>June 2019. <lb/>[IEC62439] <lb/>IEC, "Industrial communication networks -High <lb/>availability automation networks -Part 3: Parallel <lb/>Redundancy Protocol (PRP) and High-availability Seamless <lb/>Redundancy (HSR) -IEC62439-3", 2012, <lb/><https://webstore.iec.ch/publication/7018>. <lb/>[IEEE802154] <lb/>IEEE standard for Information Technology, "IEEE Std. <lb/>802.15.4, Part. 15.4: Wireless Medium Access Control (MAC) <lb/>and Physical Layer (PHY) Specifications for Low-Rate <lb/>Wireless Personal Area Networks". <lb/>[IEEE802154e] <lb/>IEEE standard for Information Technology, "IEEE standard <lb/>for Information Technology, IEEE Std. 802.15.4, Part. <lb/>15.4: Wireless Medium Access Control (MAC) and Physical <lb/>Layer (PHY) Specifications for Low-Rate Wireless Personal <lb/>Area Networks, June 2011 as amended by IEEE Std. <lb/>802.15.4e, Part. 15.4: Low-Rate Wireless Personal Area <lb/>Networks (LR-WPANs) Amendment 1: MAC sublayer", April <lb/>2012. <lb/>[ISA100] <lb/>ISA/ANSI, "ISA100, Wireless Systems for Automation", <lb/><https://www.isa.org/isa100/>. <lb/>[ISA100.11a] <lb/>ISA/ANSI, "Wireless Systems for Industrial Automation: <lb/>Process Control and Related Applications -ISA100.11a-2011 <lb/>-IEC 62734", 2011, <http://www.isa.org/Community/ <lb/>SP100WirelessSystemsforAutomation>. <lb/>[PCE] <lb/>IETF, "Path Computation Element", <lb/><https://dataTracker.ietf.org/doc/charter-ietf-pce/>. <lb/>[RFC2474] Nichols, K., Blake, S., Baker, F., and D. Black, <lb/>"Definition of the Differentiated Services Field (DS <lb/>Field) in the IPv4 and IPv6 Headers", RFC 2474, <lb/>DOI 10.17487/RFC2474, December 1998, <lb/><https://www.rfc-editor.org/info/rfc2474>. <lb/></listBibl> + + <note place="footnote">Thubert <lb/>Expires February 28, 2020 <lb/></note> + + <page>[Page 65] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>6tisch-architecture <lb/>August 2019 <lb/></note> + + <listBibl>[RFC2545] Marques, P. and F. Dupont, "Use of BGP-4 Multiprotocol <lb/>Extensions for IPv6 Inter-Domain Routing", RFC 2545, <lb/>DOI 10.17487/RFC2545, March 1999, <lb/><https://www.rfc-editor.org/info/rfc2545>. <lb/>[RFC3209] Awduche, D., Berger, L., Gan, D., Li, T., Srinivasan, V., <lb/>and G. Swallow, "RSVP-TE: Extensions to RSVP for LSP <lb/>Tunnels", RFC 3209, DOI 10.17487/RFC3209, December 2001, <lb/><https://www.rfc-editor.org/info/rfc3209>. <lb/>[RFC3444] Pras, A. and J. Schoenwaelder, "On the Difference between <lb/>Information Models and Data Models", RFC 3444, <lb/>DOI 10.17487/RFC3444, January 2003, <lb/><https://www.rfc-editor.org/info/rfc3444>. <lb/>[RFC3963] Devarapalli, V., Wakikawa, R., Petrescu, A., and P. <lb/>Thubert, "Network Mobility (NEMO) Basic Support Protocol", <lb/>RFC 3963, DOI 10.17487/RFC3963, January 2005, <lb/><https://www.rfc-editor.org/info/rfc3963>. <lb/>[RFC4080] Hancock, R., Karagiannis, G., Loughney, J., and S. Van den <lb/>Bosch, "Next Steps in Signaling (NSIS): Framework", <lb/>RFC 4080, DOI 10.17487/RFC4080, June 2005, <lb/><https://www.rfc-editor.org/info/rfc4080>. <lb/>[RFC4291] Hinden, R. and S. Deering, "IP Version 6 Addressing <lb/>Architecture", RFC 4291, DOI 10.17487/RFC4291, February <lb/>2006, <https://www.rfc-editor.org/info/rfc4291>. <lb/>[RFC4903] Thaler, D., "Multi-Link Subnet Issues", RFC 4903, <lb/>DOI 10.17487/RFC4903, June 2007, <lb/><https://www.rfc-editor.org/info/rfc4903>. <lb/>[RFC4919] Kushalnagar, N., Montenegro, G., and C. Schumacher, "IPv6 <lb/>over Low-Power Wireless Personal Area Networks (6LoWPANs): <lb/>Overview, Assumptions, Problem Statement, and Goals", <lb/>RFC 4919, DOI 10.17487/RFC4919, August 2007, <lb/><https://www.rfc-editor.org/info/rfc4919>. <lb/>[RFC5340] Coltun, R., Ferguson, D., Moy, J., and A. Lindem, "OSPF <lb/>for IPv6", RFC 5340, DOI 10.17487/RFC5340, July 2008, <lb/><https://www.rfc-editor.org/info/rfc5340>. <lb/>[RFC5974] Manner, J., Karagiannis, G., and A. McDonald, "NSIS <lb/>Signaling Layer Protocol (NSLP) for Quality-of-Service <lb/>Signaling", RFC 5974, DOI 10.17487/RFC5974, October 2010, <lb/><https://www.rfc-editor.org/info/rfc5974>. <lb/></listBibl> + + <note place="footnote">Thubert <lb/>Expires February 28, 2020 <lb/></note> + + <page>[Page 66] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>6tisch-architecture <lb/>August 2019 <lb/></note> + + <listBibl>[RFC6275] Perkins, C., Ed., Johnson, D., and J. Arkko, "Mobility <lb/>Support in IPv6", RFC 6275, DOI 10.17487/RFC6275, July <lb/>2011, <https://www.rfc-editor.org/info/rfc6275>. <lb/>[RFC6347] Rescorla, E. and N. Modadugu, "Datagram Transport Layer <lb/>Security Version 1.2", RFC 6347, DOI 10.17487/RFC6347, <lb/>January 2012, <https://www.rfc-editor.org/info/rfc6347>. <lb/>[RFC6606] Kim, E., Kaspar, D., Gomez, C., and C. Bormann, "Problem <lb/>Statement and Requirements for IPv6 over Low-Power <lb/>Wireless Personal Area Network (6LoWPAN) Routing", <lb/>RFC 6606, DOI 10.17487/RFC6606, May 2012, <lb/><https://www.rfc-editor.org/info/rfc6606>. <lb/>[RFC6830] Farinacci, D., Fuller, V., Meyer, D., and D. Lewis, "The <lb/>Locator/ID Separation Protocol (LISP)", RFC 6830, <lb/>DOI 10.17487/RFC6830, January 2013, <lb/><https://www.rfc-editor.org/info/rfc6830>. <lb/>[RFC7426] Haleplidis, E., Ed., Pentikousis, K., Ed., Denazis, S., <lb/>Hadi Salim, J., Meyer, D., and O. Koufopavlou, "Software-<lb/>Defined Networking (SDN): Layers and Architecture <lb/>Terminology", RFC 7426, DOI 10.17487/RFC7426, January <lb/>2015, <https://www.rfc-editor.org/info/rfc7426>. <lb/>[S-ALOHA] Roberts, L. G., "ALOHA Packet System With and Without <lb/>Slots and Capture", doi 10.1145/1024916.1024920, April <lb/>1975, <https://dl.acm.org/citation.cfm?id=1024920>. <lb/>[TEAS] <lb/>IETF, "Traffic Engineering Architecture and Signaling", <lb/><https://dataTracker.ietf.org/doc/charter-ietf-teas/>. <lb/>[WirelessHART] <lb/>www.hartcomm.org, "Industrial Communication Networks -<lb/>Wireless Communication Network and Communication Profiles <lb/>-WirelessHART -IEC 62591", 2010. <lb/></listBibl> + + <div type="annex">Appendix A. Related Work In Progress <lb/>This document has been incremented as the work progressed following <lb/>the evolution of the WG charter and the availability of dependent <lb/>work. The intent was to publish when the WG concludes on the covered <lb/>items. At the time of publishing the following specification are <lb/>still in progress and may affect the evolution of the stack in a <lb/>6TiSCH-aware node. <lb/></div> + + <note place="footnote">Thubert <lb/>Expires February 28, 2020 <lb/></note> + + <page>[Page 67] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>6tisch-architecture <lb/>August 2019 <lb/></note> + + <div type="annex">A.1. Unchartered IETF work items <lb/>A.1.1. 6TiSCH Zerotouch security <lb/>The security model and in particular the zerotouch join process <lb/>[I-D.ietf-6tisch-dtsecurity-zerotouch-join] depends on the ANIMA <lb/>[ANIMA] Bootstrapping Remote Secure Key Infrastructures (BRSKI) <lb/>[I-D.ietf-anima-bootstrapping-keyinfra] to enable zero-touch security <lb/>provisionning; for highly constrained nodes, a minimal model based on <lb/>pre-shared keys (PSK) is also available. As written to this day, it <lb/>also depends on a number of documents in progress as CORE, and on <lb/>"Ephemeral Diffie-Hellman Over COSE (EDHOC)" <lb/>[I-D.selander-ace-cose-ecdhe], which is being considered for adoption <lb/>at the LAKE WG. <lb/>A.1.2. 6TiSCH Track Setup <lb/>ROLL is now standardizing a reactive routing protocol based on RPL <lb/>[I-D.ietf-roll-aodv-rpl] The need of a reactive routing protocol to <lb/>establish on-demand constraint-optimized routes and a reservation <lb/>protocol to establish Layer-3 Tracks is being discussed at 6TiSCH but <lb/>not chartered for. <lb/>At the time of this writing, the formation of a new working group <lb/>called RAW for Reliable and Available Wireless networking is being <lb/>considered. The work on centralized Track computation is deferred to <lb/>a subsequent work, not necessarily at 6TiSCH. A Predictable and <lb/>Available Wireless (PAW) bar-BoF took place. RAW may form as a WG <lb/>and develop a generic specification for Track operations that would <lb/>cover 6TiSCH requirements as expressed in this architecture, more in <lb/>[I-D.thubert-raw-technologies]. In a large LLN, it is not feasible <lb/>to update the routes from a central controller that resides far over <lb/>the constrained network at the speed at which the quality of the <lb/>wireless links varies. RAW would focus on forwarding behaviors to <lb/>react quickly and locally to the changes in the wireless links. <lb/>ROLL is also standardizing an extension to RPL to setup centrally-<lb/>computed routes [I-D.ietf-roll-dao-projection] <lb/>The 6TiSCH Architecture should thus inherit from the DetNet <lb/>[I-D.ietf-detnet-architecture] architecture and thus depends on it. <lb/>The Path Computation Element (PCE) should be a core component of that <lb/>architecture. An extension to RPL or to TEAS [TEAS] will be required <lb/>to expose the 6TiSCH node capabilities and the network peers to the <lb/>PCE, possibly in combination with [I-D.rahul-roll-mop-ext]. A <lb/>protocol such as a lightweight PCEP or an adaptation of CCAMP [CCAMP] <lb/>G-MPLS formats and procedures could be used in combination to <lb/></div> + + <note place="footnote">Thubert <lb/>Expires February 28, 2020 <lb/></note> + + <page>[Page 68] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>6tisch-architecture <lb/>August 2019 <lb/></note> + + <div type="annex">[I-D.ietf-roll-dao-projection] to install the Tracks, as computed by <lb/>the PCE, to the 6TiSCH nodes. <lb/>A.1.3. Using BIER in a 6TiSCH Network <lb/>ROLL is actively working on Bit Index Explicit Replication (BIER) as <lb/>a method to compress both the dataplane packets and the routing <lb/>tables in storing mode [I-D.thubert-roll-bier]. <lb/>BIER could also be used in the context of the DetNet service layer. <lb/>BIER-TE-based OAM, Replication and Elimination <lb/>[I-D.thubert-bier-replication-elimination] leverages BIER Traffic <lb/>Engineering (TE) to control in the data plane the DetNet Replication <lb/>and Elimination activities, and to provide traceability on links <lb/>where replication and loss happen, in a manner that is abstract to <lb/>the forwarding information. <lb/>a 6loRH for BitStrings [I-D.thubert-6lo-bier-dispatch] proposes a <lb/>6LoWPAN compression for the BIER Bitstring based on 6LoWPAN Routing <lb/>Header [RFC8138]. <lb/>A.2. External (non-IETF) work items <lb/>The current charter positions 6TiSCH on IEEE Std. 802.15.4 only. <lb/>Though most of the design should be portable on other link types, <lb/>6TiSCH has a strong dependency on IEEE Std. 802.15.4 and its <lb/>evolution. The impact of changes to TSCH on this Architecture should <lb/>be minimal to non-existent, but deeper work such as 6top and security <lb/>may be impacted. A 6TiSCH Interest Group at the IEEE maintains the <lb/>synchronization and helps foster work at the IEEE should 6TiSCH <lb/>demand it. <lb/>Work is being proposed at IEEE (802.15.12 PAR) for an LLC that would <lb/>logically include the 6top sublayer. The interaction with the 6top <lb/>sublayer and the Scheduling Functions described in this document are <lb/>yet to be defined. <lb/>ISA100 [ISA100] Common Network Management (CNM) is another external <lb/>work of interest for 6TiSCH. The group, referred to as ISA100.20, <lb/>defines a Common Network Management framework that should enable the <lb/>management of resources that are controlled by heterogeneous <lb/>protocols such as ISA100.11a [ISA100.11a], WirelessHART <lb/>[WirelessHART], and 6TiSCH. Interestingly, the establishment of <lb/>6TiSCH Deterministic paths, called Tracks, are also in scope, and <lb/>ISA100.20 is working on requirements for DetNet. <lb/></div> + + <note place="footnote">Thubert <lb/>Expires February 28, 2020 <lb/></note> + + <page>[Page 69] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>6tisch-architecture <lb/>August 2019 <lb/></note> + + Author's Address <lb/> + + <front>Pascal Thubert (editor) <lb/>Cisco Systems, Inc <lb/>Building D <lb/>45 Allee des Ormes -BP1200 <lb/>MOUGINS -Sophia Antipolis 06254 <lb/>FRANCE <lb/>Phone: +33 497 23 26 34 <lb/>Email: pthubert@cisco.com <lb/></front> + + <note place="footnote">Thubert <lb/>Expires February 28, 2020 <lb/></note> + + <page>[Page 70] </page> + + + </text> +</tei> diff --git a/grobid-trainer/resources/dataset/segmentation/sdo/ietf/corpus/tei/XP015134903.training.segmentation.tei.xml b/grobid-trainer/resources/dataset/segmentation/sdo/ietf/corpus/tei/XP015134903.training.segmentation.tei.xml new file mode 100644 index 0000000000..399592758d --- /dev/null +++ b/grobid-trainer/resources/dataset/segmentation/sdo/ietf/corpus/tei/XP015134903.training.segmentation.tei.xml @@ -0,0 +1,163 @@ +<?xml version="1.0" ?> +<tei xml:space="preserve"> + <teiHeader> + <fileDesc xml:id="0"/> + </teiHeader> + <text xml:lang="en"> + <front>server date 20190829; downloaded by EPO on 20190830 <lb/>Open Authentication Protocol <lb/>T. Lodderstedt, Ed. <lb/>Internet-Draft <lb/>yes.com AG <lb/>Intended status: Standards Track <lb/>V. Dzhuvinov <lb/>Expires: March 1, 2020 <lb/>Connect2id Ltd. <lb/>Aug 29, 2019 <lb/>JWT Response for OAuth Token Introspection <lb/>draft-ietf-oauth-jwt-introspection-response-07 <lb/>Abstract <lb/>This draft proposes an additional JSON Web Token (JWT) based response <lb/>for OAuth 2.0 Token Introspection. <lb/>Status of This Memo <lb/>This Internet-Draft is submitted in full conformance with the <lb/>provisions of BCP 78 and BCP 79. <lb/>Internet-Drafts are working documents of the Internet Engineering <lb/>Task Force (IETF). Note that other groups may also distribute <lb/>working documents as Internet-Drafts. The list of current Internet-<lb/>Drafts is at https://datatracker.ietf.org/drafts/current/. <lb/>Internet-Drafts are draft documents valid for a maximum of six months <lb/>and may be updated, replaced, or obsoleted by other documents at any <lb/>time. It is inappropriate to use Internet-Drafts as reference <lb/>material or to cite them other than as "work in progress." <lb/>This Internet-Draft will expire on March 1, 2020. <lb/>Copyright Notice <lb/>Copyright (c) 2019 IETF Trust and the persons identified as the <lb/>document authors. All rights reserved. <lb/>This document is subject to BCP 78 and the IETF Trust's Legal <lb/>Provisions Relating to IETF Documents <lb/>(https://trustee.ietf.org/license-info) in effect on the date of <lb/>publication of this document. Please review these documents <lb/>carefully, as they describe your rights and restrictions with respect <lb/>to this document. Code Components extracted from this document must <lb/>include Simplified BSD License text as described in Section 4.e of <lb/>the Trust Legal Provisions and are provided without warranty as <lb/>described in the Simplified BSD License. <lb/></front> + + <note place="footnote">Lodderstedt & Dzhuvinov <lb/>Expires March 1, 2020 <lb/></note> + + <page>[Page 1] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>JWT Response <lb/>Aug 2019 <lb/></note> + + <div type="toc">Table of Contents <lb/>1. Introduction . . . . . . . . . . . . . . . . . . . . . . . . <lb/>2 <lb/>1.1. Requirements Notation and Conventions . . . . . . . . . . <lb/>3 <lb/>2. Requesting a JWT Response . . . . . . . . . . . . . . . . . . <lb/>3 <lb/>3. JWT Response . . . . . . . . . . . . . . . . . . . . . . . . <lb/>3 <lb/>4. Client Metadata . . . . . . . . . . . . . . . . . . . . . . . <lb/>5 <lb/>5. Authorization Server Metadata . . . . . . . . . . . . . . . . <lb/>5 <lb/>6. Security Considerations . . . . . . . . . . . . . . . . . . . <lb/>6 <lb/>6.1. Cross-JWT Confusion . . . . . . . . . . . . . . . . . . . <lb/>6 <lb/>6.2. Token Data Leakage . . . . . . . . . . . . . . . . . . . <lb/>7 <lb/>6.3. Keeping Token Data Confidential from OAuth Clients . . . <lb/>7 <lb/>6.4. Logging and Audit of Introspection Activity . . . . . . . <lb/>7 <lb/>6.5. Data Minimization . . . . . . . . . . . . . . . . . . . . <lb/>7 <lb/>7. Acknowledgements . . . . . . . . . . . . . . . . . . . . . . <lb/>7 <lb/>8. IANA Considerations . . . . . . . . . . . . . . . . . . . . . <lb/>8 <lb/>8.1. OAuth Dynamic Client Registration Metadata Registration . <lb/>8 <lb/>8.1.1. Registry Contents . . . . . . . . . . . . . . . . . . <lb/>8 <lb/>8.2. OAuth Authorization Server Metadata Registration . . . . <lb/>8 <lb/>8.2.1. Registry Contents . . . . . . . . . . . . . . . . . . <lb/>8 <lb/>8.3. OAuth Token Introspection Response . . . . . . . . . . . <lb/>9 <lb/>8.3.1. Registry Contents . . . . . . . . . . . . . . . . . . <lb/>9 <lb/>9. References . . . . . . . . . . . . . . . . . . . . . . . . . 14 <lb/>9.1. Normative References . . . . . . . . . . . . . . . . . . 14 <lb/>9.2. Informative References . . . . . . . . . . . . . . . . . 16 <lb/>Appendix A. Document History . . . . . . . . . . . . . . . . . . 16 <lb/>Authors' Addresses . . . . . . . . . . . . . . . . . . . . . . . 18 <lb/></div> + + <body>1. Introduction <lb/>OAuth 2.0 Token Introspection [RFC7662] specifies a method for a <lb/>protected resource to query an OAuth 2.0 authorization server to <lb/>determine the state of an access token and obtain data associated <lb/>with the access token. This allows deployments to implement <lb/>identifier-based access tokens in an interoperable way. <lb/>The introspection response, as specified in OAuth 2.0 Token <lb/>Introspection [RFC7662], is a plain JSON object. However, there are <lb/>use cases where the resource server requires stronger assurance that <lb/>the authorization server issued the access token, including cases <lb/>where the authorization server assumes liability for the token's <lb/>content. An example is a resource server using verified person data <lb/>to create certificates, which in turn are used to create qualified <lb/>electronic signatures. <lb/>In such use cases it may be useful or even required to return a <lb/>signed JWT as the introspection response. This specification extends <lb/></body> + + <note place="footnote">Lodderstedt & Dzhuvinov <lb/>Expires March 1, 2020 <lb/></note> + + <page>[Page 2] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>JWT Response <lb/>Aug 2019 <lb/></note> + + <body>the token introspection endpoint with the capability to return <lb/>responses as JWTs. <lb/>1.1. Requirements Notation and Conventions <lb/>The key words "MUST", "MUST NOT", "REQUIRED", "SHALL", "SHALL NOT", <lb/>"SHOULD", "SHOULD NOT", "RECOMMENDED", "NOT RECOMMENDED", "MAY", and <lb/>"OPTIONAL" in this document are to be interpreted as described in BCP <lb/>14 [RFC2119] [RFC8174] when, and only when, they appear in all <lb/>capitals, as shown here. <lb/>2. Requesting a JWT Response <lb/>A resource server requests to receive a JWT introspection response by <lb/>including an Accept header with content type "application/jwt" in the <lb/>introspection request. <lb/>The following is a non-normative example request: <lb/>POST /introspect HTTP/1.1 <lb/>Host: server.example.com <lb/>Accept: application/jwt <lb/>Content-Type: application/x-www-form-urlencoded <lb/>token=2YotnFZFEjr1zCsicMWpAA <lb/>3. JWT Response <lb/>The introspection endpoint responds with a JWT, setting the Content-<lb/>Type header to "application/jwt". <lb/>This JWT MUST contain the claims "iss" and "aud" in order to prevent <lb/>misuse of the JWT as ID or access token (see Section 6.1). <lb/>This JWT MAY furthermore contain all claims defined in the "OAuth <lb/>Token Introspection Response" registry established by [RFC7662]. <lb/>The following is a non-normative example response (with line breaks <lb/>for display purposes only): <lb/></body> + + <note place="footnote">Lodderstedt & Dzhuvinov <lb/>Expires March 1, 2020 <lb/></note> + + <page>[Page 3] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>JWT Response <lb/>Aug 2019 <lb/></note> + + <body>HTTP/1.1 200 OK <lb/>Content-Type: application/jwt <lb/>eyJraWQiOiIxIiwiYWxnIjoiUlMyNTYifQ.eyJzdWIiOiJaNU8zdXBQQzg4UXJBa <lb/>ngwMGRpcyIsImF1ZCI6Imh0dHBzOlwvXC9wcm90ZWN0ZWQuZXhhbXBsZS5uZXRcL <lb/>3Jlc291cmNlIiwiZXh0ZW5zaW9uX2ZpZWxkIjoidHdlbnR5LXNldmVuIiwic2Nvc <lb/>GUiOiJyZWFkIHdyaXRlIGRvbHBoaW4iLCJpc3MiOiJodHRwczpcL1wvc2VydmVyL <lb/>mV4YW1wbGUuY29tXC8iLCJhY3RpdmUiOnRydWUsImV4cCI6MTQxOTM1NjIzOCwia <lb/>WF0IjoxNDE5MzUwMjM4LCJjbGllbnRfaWQiOiJsMjM4ajMyM2RzLTIzaWo0Iiwid <lb/>XNlcm5hbWUiOiJqZG9lIn0.HEQHf05vqVvWVnWuEjbzUnPz6JDQVR69QkxgzBNq5 <lb/>kk-sK54ieg1STazXGsdFAT8nUhiiV1f_Z4HOKNnBs8TLKaFXokhA0MqNBOYI--2u <lb/>nVHDqI_RPmC3p0NmP02Xmv4hzxFmTmpgjSy3vpKQDihOjhwNBh7G81JNaJqjJQTR <lb/>v_1dHUPJotQjMK3k8_5FyiO2p64Y2VyxyQn1VWVlgOHlJwhj6BaGHk4Qf5F8DHQZ <lb/>1WCPg2p_-hwfINfXh1_buSjxyDRF4oe9pKy6ZB3ejh9qIMm-WrwltuU1uWMXxN6e <lb/>S6tUtpKo8UCHBwLWCHmJN7KU6ZojmaISspdS23lELAlyw <lb/>The example response contains the following JSON document: <lb/>{ <lb/>"sub": "Z5O3upPC88QrAjx00dis", <lb/>"aud": "https://protected.example.net/resource", <lb/>"scope": "read write dolphin", <lb/>"iss": "https://server.example.com/", <lb/>"active": true, <lb/>"exp": 1419356238, <lb/>"iat": 1419350238, <lb/>"client_id": "l238j323ds-23ij4", <lb/>"given_name": "John", <lb/>"family_name":"Doe", <lb/>"birthdate":"1982-02-01" <lb/>} <lb/>Depending on the specific resource server policy the JWT is either <lb/>signed, or signed and encrypted. If the JWT is signed and encrypted <lb/>it MUST be a Nested JWT, as defined in JWT [RFC7519]. <lb/>Note: If the resource server policy requires a signed and encrypted <lb/>response and the authorization server receives an unauthenticated <lb/>request containing an Accept header with content type other than <lb/>"application/jwt", it MUST refuse to serve the request and return an <lb/>HTTP status code 400. This is done to prevent downgrading attacks to <lb/>obtain token data intended for release to legitimate recipients only <lb/>(see Section 6.2). <lb/></body> + + <note place="footnote">Lodderstedt & Dzhuvinov <lb/>Expires March 1, 2020 <lb/></note> + + <page>[Page 4] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>JWT Response <lb/>Aug 2019 <lb/></note> + + <body>4. Client Metadata <lb/>The authorization server determines what algorithm to employ to <lb/>secure the JWT for a particular introspection response. This <lb/>decision can be based on registered metadata parameters for the <lb/>resource server, supplied via dynamic client registration with the <lb/>resource server posing as the client, as defined by this draft. <lb/>The parameter names follow the pattern established by OpenID Connect <lb/>Dynamic Client Registration [OpenID.Registration] for configuring <lb/>signing and encryption algorithms for JWT responses at the UserInfo <lb/>endpoint. <lb/>The following client metadata parameters are introduced by this <lb/>specification: <lb/>introspection_signed_response_alg OPTIONAL. JWS [RFC7515] algorithm <lb/>("alg" value) as defined in JWA [RFC7518] for signing <lb/>introspection responses. If this is specified, the response <lb/>will be signed using JWS and the configured algorithm. The <lb/>default, if omitted, is "RS256". <lb/>introspection_encrypted_response_alg OPTIONAL. JWE [RFC7516] <lb/>algorithm ("alg" value) as defined in JWA [RFC7518] for <lb/>encrypting introspection responses. If this is specified, <lb/>the response will be encrypted using JWE and the configured <lb/>algorithm. The default, if omitted, is that no encryption is <lb/>performed. If both signing and encryption are requested, the <lb/>response will be signed then encrypted, with the result being <lb/>a Nested JWT, as defined in JWT [RFC7519]. <lb/>introspection_encrypted_response_enc OPTIONAL. JWE [RFC7516] <lb/>algorithm ("enc" value) as defined in JWA [RFC7518] for <lb/>authenticated encryption of introspection responses. The <lb/>default, if omitted, is "A128CBC-HS256". Note: This <lb/>parameter MUST NOT be specified without setting <lb/>"introspection_encrypted_response_alg". <lb/>Resource servers may register their public encryption keys using the <lb/>"jwks_uri" or "jwks" metadata parameters. <lb/>5. Authorization Server Metadata <lb/>Authorization servers SHOULD publish the supported algorithms for <lb/>signing and encrypting the JWT of an introspection response by <lb/>utilizing OAuth 2.0 Authorization Server Metadata [RFC8414] <lb/>parameters. <lb/></body> + + <note place="footnote">Lodderstedt & Dzhuvinov <lb/>Expires March 1, 2020 <lb/></note> + + <page>[Page 5] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>JWT Response <lb/>Aug 2019 <lb/></note> + + <body>The following parameters are introduced by this specification: <lb/>introspection_signing_alg_values_supported OPTIONAL. JSON array <lb/>containing a list of the JWS [RFC7515] signing algorithms <lb/>("alg" values) as defined in JWA [RFC7518] supported by the <lb/>introspection endpoint to sign the response. <lb/>introspection_encryption_alg_values_supported OPTIONAL. JSON array <lb/>containing a list of the JWE [RFC7516] encryption algorithms <lb/>("alg" values) as defined in JWA [RFC7518] supported by the <lb/>introspection endpoint to encrypt the response. <lb/>introspection_encryption_enc_values_supported OPTIONAL. JSON array <lb/>containing a list of the JWE [RFC7516] encryption algorithms <lb/>("enc" values) as defined in JWA [RFC7518] supported by the <lb/>introspection endpoint to encrypt the response. <lb/>6. Security Considerations <lb/>6.1. Cross-JWT Confusion <lb/>JWT introspection responses and OpenID Connect ID Tokens are <lb/>syntactically similar. An attacker could therefore attempt to <lb/>impersonate an end-user at a OpenID Connect relying party by passing <lb/>the JWT as an ID token. <lb/>Such an attack can be prevented like any other token substitution <lb/>attack. The authorization server MUST include the claims "iss" and <lb/>"aud" in each JWT introspection response, with the "iss" value set to <lb/>the authorization server's issuer URL and the "aud" value set to the <lb/>resource server's identifier. This allows a correctly implemented <lb/>OpenID Connect relying party to detect substitution by checking the <lb/>"iss" and "aud" claims as described in Section 3.1.3.7. of <lb/>[OpenID.Core]. Relying parties SHOULD also use and check the "nonce" <lb/>parameter and claim to prevent token and code replay. <lb/>Resource servers utilizing JWTs to represent self-contained access <lb/>tokens could be susceptible to replay attacks. Resource servers <lb/>should therefore apply proper counter measures against replay as <lb/>described in [I-D.ietf-oauth-security-topics], section 2.2. <lb/>JWT Confusion and other attacks involving JWTs are discussed in <lb/>[I-D.ietf-oauth-jwt-bcp]. <lb/></body> + + <note place="footnote">Lodderstedt & Dzhuvinov <lb/>Expires March 1, 2020 <lb/></note> + + <page>[Page 6] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>JWT Response <lb/>Aug 2019 <lb/></note> + + <body>6.2. Token Data Leakage <lb/>The authorization server MUST use Transport Layer Security (TLS) 1.2 <lb/>(or higher) per [RFC7525] in order to prevent token data leakage. <lb/>To prevent introspection of leaked tokens and to present an <lb/>additional security layer against token guessing attacks the <lb/>authorization server may require all requests to the token <lb/>introspection endpoint to be authenticated. As an alternative or as <lb/>an addition to the authentication, the intended recipients may be set <lb/>up for encrypted responses. <lb/>In the latter case, confidentiality is ensured by the fact that only <lb/>the legitimate recipient is able to decrypt the response. An <lb/>attacker could try to circumvent this measure by requesting a plain <lb/>JSON response, using an Accept header with the content type set to, <lb/>for example, "application/json" instead of "application/jwt". To <lb/>prevent this attack the authorization server MUST NOT serve requests <lb/>with content type other than "application/jwt" if the resource server <lb/>is set up to receive encrypted responses (see also Section 3). <lb/>6.3. Keeping Token Data Confidential from OAuth Clients <lb/>Authorization servers with a policy that requires token data to be <lb/>kept confidential from OAuth clients must require all requests to the <lb/>token introspection endpoint to be authenticated. As an alternative <lb/>or as an addition to the authentication, the intended recipients may <lb/>be set up for encrypted responses. <lb/>6.4. Logging and Audit of Introspection Activity <lb/>Authorization servers with a policy that requires token introspection <lb/>activity to be logged and audited must require all requests to the <lb/>token introspection endpoint to be authenticated. <lb/>6.5. Data Minimization <lb/>The authorisation server determines the token data a resource server <lb/>is allowed to see based on the resource server's client_id and <lb/>suitable token data, e.g. the scope value. <lb/></body> + + <div type="acknowledgement">7. Acknowledgements <lb/>We would like to thank Petteri Stenius, Neil Madden, Filip Skokan, <lb/>and Tony Nadalin for their valuable feedback. <lb/></div> + + <note place="footnote">Lodderstedt & Dzhuvinov <lb/>Expires March 1, 2020 <lb/></note> + + <page>[Page 7] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>JWT Response <lb/>Aug 2019 <lb/></note> + + <body>8. IANA Considerations <lb/>8.1. OAuth Dynamic Client Registration Metadata Registration <lb/>This specification requests registration of the following client <lb/>metadata definitions in the IANA "OAuth Dynamic Client Registration <lb/>Metadata" registry [IANA.OAuth.Parameters] established by [RFC7591]: <lb/>8.1.1. Registry Contents <lb/>o Client Metadata Name: "introspection_signed_response_alg" <lb/>o Client Metadata Description: String value indicating the client's <lb/>desired introspection response signing algorithm. <lb/>o Change Controller: IESG <lb/>o Specification Document(s): Section 4 of [[ this specification ]] <lb/>o Client Metadata Name: "introspection_encrypted_response_alg" <lb/>o Client Metadata Description: String value specifying the desired <lb/>introspection response encryption algorithm (alg value). <lb/>o Change Controller: IESG <lb/>o Specification Document(s): Section 4 of [[ this specification ]] <lb/>o Client Metadata Name: "introspection_encrypted_response_enc" <lb/>o Client Metadata Description: String value specifying the desired <lb/>introspection response encryption algorithm (enc value). <lb/>o Change Controller: IESG <lb/>o Specification Document(s): Section 4 of [[ this specification ]] <lb/>8.2. OAuth Authorization Server Metadata Registration <lb/>This specification requests registration of the following values in <lb/>the IANA "OAuth Authorization Server Metadata" registry <lb/>[IANA.OAuth.Parameters] established by [RFC8414]. <lb/>8.2.1. Registry Contents <lb/>o Metadata Name: "introspection_signing_alg_values_supported" <lb/></body> + + <note place="footnote">Lodderstedt & Dzhuvinov <lb/>Expires March 1, 2020 <lb/></note> + + <page>[Page 8] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>JWT Response <lb/>Aug 2019 <lb/></note> + + <body>o Metadata Description: JSON array containing a list of algorithms <lb/>supported by the authorization server for introspection response <lb/>signing. <lb/>o Change Controller: IESG <lb/>o Specification Document(s): Section 5 of [[ this specification ]] <lb/>o Metadata Name: "introspection_encryption_alg_values_supported" <lb/>o Metadata Description: JSON array containing a list of algorithms <lb/>supported by the authorization server for introspection response <lb/>encryption (alg value). <lb/>o Change Controller: IESG <lb/>o Specification Document(s): Section 5 of [[ this specification ]] <lb/>o Metadata Name: "introspection_encryption_enc_values_supported" <lb/>o Metadata Description: JSON array containing a list of algorithms <lb/>supported by the authorization server for introspection response <lb/>encryption (enc value). <lb/>o Change Controller: IESG <lb/>o Specification Document(s): Section 5 of [[ this specification ]] <lb/>8.3. OAuth Token Introspection Response <lb/>This specification requests registration of the following claim <lb/>values as defined in [OpenID.Core], Section 5.1, in the IANA "OAuth <lb/>Token Introspection Response" registry. [IANA.OAuth.Parameters] <lb/>established by [RFC7662]. <lb/>8.3.1. Registry Contents <lb/>o Name: "name" <lb/>o Description: End-User's full name in displayable form including <lb/>all name parts, possibly including titles and suffixes, ordered <lb/>according to the End-User's locale and preferences. <lb/>o Change Controller: IESG <lb/>o Specification Document(s):[OpenID.Core], Section 5.1 <lb/>o Name: "given_name" <lb/></body> + + <note place="footnote">Lodderstedt & Dzhuvinov <lb/>Expires March 1, 2020 <lb/></note> + + <page>[Page 9] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>JWT Response <lb/>Aug 2019 <lb/></note> + + <body>o Description: Given name(s) or first name(s) of the End-User. Note <lb/>that in some cultures, people can have multiple given names; all <lb/>can be present, with the names being separated by space <lb/>characters. <lb/>o Change Controller: IESG <lb/>o Specification Document(s):[OpenID.Core], Section 5.1 <lb/>o Name: "family_name" <lb/>o Description: Surname(s) or last name(s) of the End-User. Note <lb/>that in some cultures, people can have multiple family names or no <lb/>family name; all can be present, with the names being separated by <lb/>space characters. <lb/>o Change Controller: IESG <lb/>o Specification Document(s):[OpenID.Core], Section 5.1 <lb/>o Name: "middle_name" <lb/>o Description: Middle name(s) of the End-User. Note that in some <lb/>cultures, people can have multiple middle names; all can be <lb/>present, with the names being separated by space characters. Also <lb/>note that in some cultures, middle names are not used. <lb/>o Change Controller: IESG <lb/>o Specification Document(s):[OpenID.Core], Section 5.1 <lb/>o Name: "nickname" <lb/>o Description: Casual name of the End-User that may or may not be <lb/>the same as the given_name. For instance, a nickname value of <lb/>Mike might be returned alongside a given_name value of Michael. <lb/>o Change Controller: IESG <lb/>o Specification Document(s):[OpenID.Core], Section 5.1 <lb/>o Name: "preferred_username" <lb/>o Description: Shorthand name by which the End-User wishes to be <lb/>referred to at the RP, such as janedoe or j.doe. This value MAY <lb/>be any valid JSON string including special characters such as @, <lb/>/, or whitespace. <lb/></body> + + <note place="footnote">Lodderstedt & Dzhuvinov <lb/>Expires March 1, 2020 <lb/></note> + + <page>[Page 10] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>JWT Response <lb/>Aug 2019 <lb/></note> + + <body>o Change Controller: IESG <lb/>o Specification Document(s):[OpenID.Core], Section 5.1 <lb/>o Name: "profile" <lb/>o Description:URL of the End-User's profile page. The contents of <lb/>this Web page SHOULD be about the End-User. <lb/>o Change Controller: IESG <lb/>o Specification Document(s):[OpenID.Core], Section 5.1 <lb/>o Name: "picture" <lb/>o Description: URL of the End-User's profile picture. This URL MUST <lb/>refer to an image file (for example, a PNG, JPEG, or GIF image <lb/>file), rather than to a Web page containing an image. Note that <lb/>this URL SHOULD specifically reference a profile photo of the End-<lb/>User suitable for displaying when describing the End-User, rather <lb/>than an arbitrary photo taken by the End-User. <lb/>o Change Controller: IESG <lb/>o Specification Document(s):[OpenID.Core], Section 5.1 <lb/>o Name: "website" <lb/>o Description: URL of the End-User's Web page or blog. This Web <lb/>page SHOULD contain information published by the End-User or an <lb/>organization that the End-User is affiliated with. <lb/>o Change Controller: IESG <lb/>o Specification Document(s):[OpenID.Core], Section 5.1 <lb/>o Name: "email" <lb/>o Description: End-User's preferred e-mail address. Its value MUST <lb/>conform to the [RFC5322] "addr-spec" syntax. <lb/>o Change Controller: IESG <lb/>o Specification Document(s):[OpenID.Core], Section 5.1 <lb/>o Name: "email_verified" <lb/></body> + + <note place="footnote">Lodderstedt & Dzhuvinov <lb/>Expires March 1, 2020 <lb/></note> + + <page>[Page 11] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>JWT Response <lb/>Aug 2019 <lb/></note> + + <body>o Description: True if the End-User's e-mail address has been <lb/>verified; otherwise false. When this Claim Value is true, this <lb/>means that the OP took affirmative steps to ensure that this <lb/>e-mail address was controlled by the End-User at the time the <lb/>verification was performed. The means by which an e-mail address <lb/>is verified is context-specific, and dependent upon the trust <lb/>framework or contractual agreements within which the parties are <lb/>operating. <lb/>o Change Controller: IESG <lb/>o Specification Document(s):[OpenID.Core], Section 5.1 <lb/> o Name: "gender" <lb/>o Description:End-User's gender. Values defined by this <lb/>specification are female and male. Other values MAY be used when <lb/>neither of the defined values are applicable. <lb/>o Change Controller: IESG <lb/>o Specification Document(s):[OpenID.Core], Section 5.1 <lb/>o Name: "birthdate" <lb/>o Description:Time the End-User's information was last updated. Its <lb/>value is a JSON number representing the number of seconds from <lb/>1970-01-01T0:0:0Z as measured in UTC until the date/time. <lb/>o Change Controller: IESG <lb/>o Specification Document(s):[OpenID.Core], Section 5.1 <lb/>o Name: "zoneinfo" <lb/>o Description: String from zoneinfo [zoneinfo] time zone database <lb/>representing the End-User's time zone. For example, Europe/Paris <lb/>or America/Los_Angeles. <lb/>o Change Controller: IESG <lb/>o Specification Document(s):[OpenID.Core], Section 5.1 <lb/>o Name: "locale" <lb/>o Description: End-User's locale, represented as a BCP47 [RFC5646] <lb/>language tag. This is typically an ISO 639-1 Alpha-2 [ISO639-1] <lb/>language code in lowercase and an ISO 3166-1 Alpha-2 [ISO3166-1] <lb/></body> + + <note place="footnote">Lodderstedt & Dzhuvinov <lb/>Expires March 1, 2020 <lb/></note> + + <page>[Page 12] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>JWT Response <lb/>Aug 2019 <lb/></note> + + <body>country code in uppercase, separated by a dash. For example, en-<lb/>US or fr-CA. As a compatibility note, some implementations have <lb/>used an underscore as the separator rather than a dash, for <lb/>example, en_US; Relying Parties MAY choose to accept this locale <lb/>syntax as well. <lb/>o Change Controller: IESG <lb/>o Specification Document(s):[OpenID.Core], Section 5.1 <lb/>o Name: "phone_number" <lb/>o Description: End-User's preferred telephone number. [E.164] is <lb/>RECOMMENDED as the format of this Claim, for example, +1 (425) <lb/>555-1212 or +56 (2) 687 2400. If the phone number contains an <lb/>extension, it is RECOMMENDED that the extension be represented <lb/>using the [RFC3966] extension syntax, for example, +1 (604) <lb/>555-1234;ext=5678. <lb/>o Change Controller: IESG <lb/>o Specification Document(s):[OpenID.Core], Section 5.1 <lb/>o Name: "phone_number_verified" <lb/>o Description: True if the End-User's phone number has been <lb/>verified; otherwise false. When this Claim Value is true, this <lb/>means that the OP took affirmative steps to ensure that this phone <lb/>number was controlled by the End-User at the time the verification <lb/>was performed. The means by which a phone number is verified is <lb/>context-specific, and dependent upon the trust framework or <lb/>contractual agreements within which the parties are operating. <lb/>When true, the phone_number Claim MUST be in [E.164] format and <lb/>any extensions MUST be represented in [RFC3966] format. <lb/>o Change Controller: IESG <lb/>o Specification Document(s):[OpenID.Core], Section 5.1 <lb/>o Name: "address" <lb/>o Description: End-User's preferred postal address. The value of <lb/>the address member is a JSON [RFC8259] structure containing some <lb/>or all of the members defined in [OpenID.Core], Section 5.1.1. <lb/>o Change Controller: IESG <lb/>o Specification Document(s):[OpenID.Core], Section 5.1 <lb/></body> + + <note place="footnote">Lodderstedt & Dzhuvinov <lb/>Expires March 1, 2020 <lb/></note> + + <page>[Page 13] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>JWT Response <lb/>Aug 2019 <lb/></note> + + <body>o Name: "updated_at" <lb/>o Description: Time the End-User's information was last updated. <lb/>Its value is a JSON number representing the number of seconds from <lb/>1970-01-01T0:0:0Z as measured in UTC until the date/time. <lb/>o Change Controller: IESG <lb/>o Specification Document(s):[OpenID.Core], Section 5.1 <lb/></body> + + <listBibl>9. References <lb/>9.1. Normative References <lb/>[E.164] <lb/>Standardization, I. O. F., "E.164: The international <lb/>public telecommunication numbering plan", 2010, <lb/><https://www.itu.int/rec/T-REC-E.164-201011-I/en>. <lb/>[I-D.ietf-oauth-jwt-bcp] <lb/>Sheffer, Y., Hardt, D., and M. Jones, "JSON Web Token Best <lb/>Current Practices", draft-ietf-oauth-jwt-bcp-06 (work in <lb/>progress), June 2019. <lb/>[I-D.ietf-oauth-security-topics] <lb/>Lodderstedt, T., Bradley, J., Labunets, A., and D. Fett, <lb/>"OAuth 2.0 Security Best Current Practice", draft-ietf-<lb/>oauth-security-topics-13 (work in progress), July 2019. <lb/>[ISO3166-1] <lb/>Standardization, I. O. F., "ISO 3166-1:1997. Codes for the <lb/>representation of names of countries and their <lb/>subdivisions --Part 1: Country codes", 2013, <lb/><https://www.iso.org/standard/63545.html>. <lb/>[ISO639-1] <lb/>Standardization, I. O. F., "ISO 639-1:2002 Codes for the <lb/>representation of names of languages --part 1: Alpha-2 <lb/>Code", 2002, <https://www.iso.org/standard/22109.html>. <lb/>[OpenID.Core] <lb/>Sakimura, N., Bradley, J., Jones, M., Medeiros, B. D., and <lb/>C. Mortimore, "OpenID Connect Core 1.0 incorporating <lb/>errata set 1", Nov 2014, <lb/><http://openid.net/specs/openid-connect-core-1_0.html>. <lb/></listBibl> + + <note place="footnote">Lodderstedt & Dzhuvinov <lb/>Expires March 1, 2020 <lb/></note> + + <page>[Page 14] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>JWT Response <lb/>Aug 2019 <lb/></note> + + <listBibl>[OpenID.Registration] <lb/>Sakimura, N., Bradley, J., and M. Jones, "OpenID Connect <lb/>Dynamic Client Registration 1.0 incorporating errata set <lb/>1", Nov 2014, <https://openid.net/specs/ <lb/>openid-connect-registration-1_0.html>. <lb/>[RFC2119] Bradner, S., "Key words for use in RFCs to Indicate <lb/>Requirement Levels", BCP 14, RFC 2119, <lb/>DOI 10.17487/RFC2119, March 1997, <lb/><https://www.rfc-editor.org/info/rfc2119>. <lb/>[RFC3966] Schulzrinne, H., "The tel URI for Telephone Numbers", <lb/>RFC 3966, DOI 10.17487/RFC3966, December 2004, <lb/><https://www.rfc-editor.org/info/rfc3966>. <lb/>[RFC5322] Resnick, P., Ed., "Internet Message Format", RFC 5322, <lb/>DOI 10.17487/RFC5322, October 2008, <lb/><https://www.rfc-editor.org/info/rfc5322>. <lb/>[RFC7515] Jones, M., Bradley, J., and N. Sakimura, "JSON Web <lb/>Signature (JWS)", RFC 7515, DOI 10.17487/RFC7515, May <lb/>2015, <https://www.rfc-editor.org/info/rfc7515>. <lb/>[RFC7516] Jones, M. and J. Hildebrand, "JSON Web Encryption (JWE)", <lb/>RFC 7516, DOI 10.17487/RFC7516, May 2015, <lb/><https://www.rfc-editor.org/info/rfc7516>. <lb/>[RFC7518] Jones, M., "JSON Web Algorithms (JWA)", RFC 7518, <lb/>DOI 10.17487/RFC7518, May 2015, <lb/><https://www.rfc-editor.org/info/rfc7518>. <lb/>[RFC7519] Jones, M., Bradley, J., and N. Sakimura, "JSON Web Token <lb/>(JWT)", RFC 7519, DOI 10.17487/RFC7519, May 2015, <lb/><https://www.rfc-editor.org/info/rfc7519>. <lb/>[RFC7525] Sheffer, Y., Holz, R., and P. Saint-Andre, <lb/>"Recommendations for Secure Use of Transport Layer <lb/>Security (TLS) and Datagram Transport Layer Security <lb/>(DTLS)", BCP 195, RFC 7525, DOI 10.17487/RFC7525, May <lb/>2015, <https://www.rfc-editor.org/info/rfc7525>. <lb/>[RFC7591] Richer, J., Ed., Jones, M., Bradley, J., Machulak, M., and <lb/>P. Hunt, "OAuth 2.0 Dynamic Client Registration Protocol", <lb/>RFC 7591, DOI 10.17487/RFC7591, July 2015, <lb/><https://www.rfc-editor.org/info/rfc7591>. <lb/></listBibl> + + <note place="footnote">Lodderstedt & Dzhuvinov <lb/>Expires March 1, 2020 <lb/></note> + + <page>[Page 15] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>JWT Response <lb/>Aug 2019 <lb/></note> + + <listBibl>[RFC7662] Richer, J., Ed., "OAuth 2.0 Token Introspection", <lb/>RFC 7662, DOI 10.17487/RFC7662, October 2015, <lb/><https://www.rfc-editor.org/info/rfc7662>. <lb/>[RFC8174] Leiba, B., "Ambiguity of Uppercase vs Lowercase in RFC <lb/>2119 Key Words", BCP 14, RFC 8174, DOI 10.17487/RFC8174, <lb/>May 2017, <https://www.rfc-editor.org/info/rfc8174>. <lb/>[RFC8259] Bray, T., Ed., "The JavaScript Object Notation (JSON) Data <lb/>Interchange Format", STD 90, RFC 8259, <lb/>DOI 10.17487/RFC8259, December 2017, <lb/><https://www.rfc-editor.org/info/rfc8259>. <lb/>[RFC8414] Jones, M., Sakimura, N., and J. Bradley, "OAuth 2.0 <lb/>Authorization Server Metadata", RFC 8414, <lb/>DOI 10.17487/RFC8414, June 2018, <lb/><https://www.rfc-editor.org/info/rfc8414>. <lb/>9.2. Informative References <lb/>[IANA.OAuth.Parameters] <lb/>IANA, "OAuth Parameters", <lb/><http://www.iana.org/assignments/oauth-parameters>. <lb/></listBibl> + + <div type="annex">Appendix A. Document History <lb/>[[ To be removed from the final specification ]] <lb/>-07 <lb/>o fixed wrong description of "locale" <lb/>o added references for ISO and ITU specifications <lb/>-06 <lb/>o replaced reference to RFC 7159 with reference to RFC 8259 <lb/>-05 <lb/>o improved wording for TLS requirement <lb/>o added RFC 2119 boilerplate <lb/>o fixed and updated some references <lb/>-04 <lb/></div> + + <note place="footnote">Lodderstedt & Dzhuvinov <lb/>Expires March 1, 2020 <lb/></note> + + <page>[Page 16] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>JWT Response <lb/>Aug 2019 <lb/></note> + + <div type="annex">o reworked definition of parameters in section 4 <lb/>o added text on data minimization to security considerations section <lb/>o added statement regarding TLS to security considerations section <lb/>-03 <lb/>o added registration for OpenID Connect Standard Claims to OAuth <lb/>Token Introspection Response registry <lb/>-02 <lb/>o updated references <lb/>-01 <lb/>o adapted wording to preclude any accept header except "application/ <lb/>jwt" if encrypted responses are required <lb/>o use registered alg value RS256 for default signing algorithm <lb/>o added text on claims in the token introspection response <lb/>-00 <lb/>o initial version of the WG draft <lb/>o defined default signing algorithm <lb/>o changed behavior in case resource server is set up for encryption <lb/>o Added text on token data leakage prevention to the security <lb/>considerations <lb/>o moved Security Considerations section forward <lb/>WG draft <lb/>-01 <lb/>o fixed typos in client meta data field names <lb/>o added OAuth Server Metadata parameters to publish algorithms <lb/>supported for signing and encrypting the introspection response <lb/>o added registration of new parameters for OAuth Server Metadata and <lb/>Client Registration <lb/></div> + + <note place="footnote">Lodderstedt & Dzhuvinov <lb/>Expires March 1, 2020 <lb/></note> + + <page>[Page 17] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>JWT Response <lb/>Aug 2019 <lb/></note> + + <div type="annex">o added explicit request for JWT introspection response <lb/>o made iss and aud claims mandatory in introspection response <lb/>o Stylistic and clarifying edits, updates references <lb/>-00 <lb/>o initial version <lb/></div> + + Authors' Addresses <lb/> + + <front>Torsten Lodderstedt (editor) <lb/>yes.com AG <lb/>Email: torsten@lodderstedt.net <lb/>Vladimir Dzhuvinov <lb/>Connect2id Ltd. <lb/>Email: vladimir@connect2id.com <lb/></front> + + <note place="footnote">Lodderstedt & Dzhuvinov <lb/>Expires March 1, 2020 <lb/></note> + + <page>[Page 18] </page> + + + </text> +</tei> diff --git a/grobid-trainer/resources/dataset/segmentation/sdo/ietf/corpus/tei/XP015135052.training.segmentation.tei.xml b/grobid-trainer/resources/dataset/segmentation/sdo/ietf/corpus/tei/XP015135052.training.segmentation.tei.xml new file mode 100644 index 0000000000..77ead36400 --- /dev/null +++ b/grobid-trainer/resources/dataset/segmentation/sdo/ietf/corpus/tei/XP015135052.training.segmentation.tei.xml @@ -0,0 +1,73 @@ +<?xml version="1.0" ?> +<tei xml:space="preserve"> + <teiHeader> + <fileDesc xml:id="0"/> + </teiHeader> + <text xml:lang="en"> + <front>server date 20190910; downloaded by EPO on 20190911 <lb/>Network Working Group <lb/>T. Dreibholz <lb/>Internet-Draft <lb/>SimulaMet <lb/>Intended status: Experimental <lb/>X. Zhou <lb/>Expires: March 13, 2020 <lb/>Hainan University <lb/>September 10, 2019 <lb/>Takeover Suggestion Flag for the ENRP Handle Update Message <lb/>draft-dreibholz-rserpool-enrp-takeover-22 <lb/>Abstract <lb/>This document describes the Takeover Suggestion Flag for the <lb/>ENRP_HANDLE_UPDATE message of the ENRP protocol. <lb/>Status of This Memo <lb/>This Internet-Draft is submitted in full conformance with the <lb/>provisions of BCP 78 and BCP 79. <lb/>Internet-Drafts are working documents of the Internet Engineering <lb/>Task Force (IETF). Note that other groups may also distribute <lb/>working documents as Internet-Drafts. The list of current Internet-<lb/>Drafts is at https://datatracker.ietf.org/drafts/current/. <lb/>Internet-Drafts are draft documents valid for a maximum of six months <lb/>and may be updated, replaced, or obsoleted by other documents at any <lb/>time. It is inappropriate to use Internet-Drafts as reference <lb/>material or to cite them other than as "work in progress." <lb/>This Internet-Draft will expire on March 13, 2020. <lb/>Copyright Notice <lb/>Copyright (c) 2019 IETF Trust and the persons identified as the <lb/>document authors. All rights reserved. <lb/>This document is subject to BCP 78 and the IETF Trust's Legal <lb/>Provisions Relating to IETF Documents <lb/>(https://trustee.ietf.org/license-info) in effect on the date of <lb/>publication of this document. Please review these documents <lb/>carefully, as they describe your rights and restrictions with respect <lb/>to this document. Code Components extracted from this document must <lb/>include Simplified BSD License text as described in Section 4.e of <lb/>the Trust Legal Provisions and are provided without warranty as <lb/>described in the Simplified BSD License. <lb/></front> + + <note place="footnote">Dreibholz & Zhou <lb/>Expires March 13, 2020 <lb/></note> + + <page>[Page 1] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>Takeover Suggestion Flag <lb/>September 2019 <lb/></note> + + <div type="toc">Table of Contents <lb/>1. Introduction . . . . . . . . . . . . . . . . . . . . . . . . <lb/>2 <lb/>1.1. Scope . . . . . . . . . . . . . . . . . . . . . . . . . . <lb/>2 <lb/>1.2. Terminology . . . . . . . . . . . . . . . . . . . . . . . <lb/>3 <lb/>1.3. Conventions . . . . . . . . . . . . . . . . . . . . . . . <lb/>3 <lb/>2. Takeover Suggestion Flag . . . . . . . . . . . . . . . . . . <lb/>3 <lb/>2.1. Definition . . . . . . . . . . . . . . . . . . . . . . . <lb/>3 <lb/>3. Reference Implementation . . . . . . . . . . . . . . . . . . <lb/>4 <lb/>4. Testbed Platform . . . . . . . . . . . . . . . . . . . . . . <lb/>4 <lb/>5. Security Considerations . . . . . . . . . . . . . . . . . . . <lb/>4 <lb/>6. IANA Considerations . . . . . . . . . . . . . . . . . . . . . <lb/>4 <lb/>7. References . . . . . . . . . . . . . . . . . . . . . . . . . <lb/>4 <lb/>7.1. Normative References . . . . . . . . . . . . . . . . . . <lb/>4 <lb/>7.2. Informative References . . . . . . . . . . . . . . . . . <lb/>5 <lb/>Authors' Addresses . . . . . . . . . . . . . . . . . . . . . . . <lb/>6 <lb/></div> + + <body>1. Introduction <lb/>Reliable Server Pooling as described in [RFC5351] defines protocols <lb/>for providing highly available services. The management component <lb/>used for pool administration is denoted as ENRP Server or Pool <lb/>Registrar (PR). Since a single ENRP server constitutes a single <lb/>point of failure, there must be multiple ENRP servers. Servers, <lb/>denoted as Pool Elements (PE), use an arbitrary ENRP server for <lb/>registration into the pool. The chosen ENRP server becomes the Home <lb/>ENRP Server, also denoted as Home PR (PR-H), of the PE. It is <lb/>responsible for making the PE identity known to the other ENRP <lb/>servers (by using ENRP_HANDLE_UPDATE messages) and also to monitor <lb/>the PE health (by using keep-alive messages). <lb/>As shown in [AINA2009], the following scenario leads to unbalanced <lb/>ENRP server workload: consider a set of multiple ENRP servers with <lb/>one subset being unreliable (for example, their network connection <lb/>has problems) and some reliable ENRP servers. After a while, the <lb/>reliable ENRP server will get the home ENRP server role for almost <lb/>all of the PEs, which results in high workload for this ENRP server. <lb/>Since the home ENRP server role is more computation-intensive (as <lb/>shown by [IJHIT2008]), this leads to highly unbalanced workload for <lb/>large RSerPool setups. This unbalanced workload remains, even when <lb/>the unreliable ENRP servers become reliable again (for example, when <lb/>the network problems have been solved). <lb/>1.1. Scope <lb/>The Takeover Suggestion Flag defined in this draft defines a flag for <lb/>the ENRP_HANDLE_UPDATE message. If the flag is set, the receiving <lb/></body> + + <note place="footnote">Dreibholz & Zhou <lb/>Expires March 13, 2020 <lb/></note> + + <page>[Page 2] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>Takeover Suggestion Flag <lb/>September 2019 <lb/></note> + + <body>ENRP server is suggested to take over the PE specified in the <lb/>ENRP_HANDLE_UPDATE message. <lb/>1.2. Terminology <lb/>The terms are commonly identified in related work and can be found in <lb/>the RSerPool Overview document RFC 5351 [RFC5351]. <lb/>1.3. Conventions <lb/>The key words "MUST", "MUST NOT", "REQUIRED", "SHALL", "SHALL NOT", <lb/>"SHOULD", "SHOULD NOT", "RECOMMENDED", "NOT RECOMMENDED", "MAY", and <lb/>"OPTIONAL" in this document are to be interpreted as described in BCP <lb/>14 [RFC2119] [RFC8174] when, and only when, they appear in all <lb/>capitals, as shown here. <lb/>2. Takeover Suggestion Flag <lb/>2.1. Definition <lb/>In this subsection, only the differences to the ENRP_HANDLE_UPDATE <lb/>message defined in [RFC5353] are explained. The following figure <lb/>shows the ENRP_HANDLE_UPDATE message: <lb/>0 <lb/>1 <lb/>2 <lb/>3 <lb/>0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 <lb/>+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ <lb/>| <lb/>Type = 0x04 |0|0|0|0|0|0|0|T| <lb/>Message Length <lb/>| <lb/>+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ <lb/>| <lb/>Sending Server's ID <lb/>| <lb/>+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ <lb/>| <lb/>Receiving Server's ID <lb/>| <lb/>+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ <lb/>| <lb/>Update Action <lb/>| <lb/>(reserved) <lb/>| <lb/>+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ <lb/>: <lb/>Pool Handle Parameter <lb/>: <lb/>+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ <lb/>: <lb/>Pool Element Parameter <lb/>: <lb/>+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ <lb/>T flag: 1 bit (boolean) <lb/>If set, the receiving ENRP server is suggested to take over the PE <lb/>specified by the Pool Handle and Pool Element Parameters. It is <lb/>RECOMMENDED for the receiving ENRP server to perform this takeover if <lb/>it has the resources to do so. <lb/></body> + + <note place="footnote">Dreibholz & Zhou <lb/>Expires March 13, 2020 <lb/></note> + + <page>[Page 3] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>Takeover Suggestion Flag <lb/>September 2019 <lb/></note> + + <body>3. Reference Implementation <lb/>The RSerPool reference implementation RSPLIB can be found at <lb/>[RSerPool-Website]. It supports the functionalities defined by <lb/>[RFC5351], [RFC5352], [RFC5353], [RFC5354] and [RFC5356] as well as <lb/>the options [I-D.dreibholz-rserpool-asap-hropt], <lb/>[I-D.dreibholz-rserpool-delay] and of course the option defined by <lb/>this document. An introduction to this implementation is provided in <lb/>[Dre2006]. <lb/>4. Testbed Platform <lb/>A large-scale and realistic Internet testbed platform with support <lb/>for the multi-homing feature of the underlying SCTP protocol is <lb/>NorNet. A description of NorNet is provided in [PAMS2013-NorNet], <lb/>some further information can be found on the project website <lb/>[NorNet-Website]. <lb/>5. Security Considerations <lb/>Security considerations for RSerPool systems are described by <lb/>[RFC5355]. <lb/>6. IANA Considerations <lb/>This document does not require additional IANA actions beyond those <lb/>already identified in the ENRP and ASAP protocol specifications. <lb/></body> + + <listBibl>7. References <lb/>7.1. Normative References <lb/>[I-D.dreibholz-rserpool-asap-hropt] <lb/>Dreibholz, T., "Handle Resolution Option for ASAP", draft-<lb/>dreibholz-rserpool-asap-hropt-24 (work in progress), March <lb/>2019. <lb/>[I-D.dreibholz-rserpool-delay] <lb/>Dreibholz, T. and X. Zhou, "Definition of a Delay <lb/>Measurement Infrastructure and Delay-Sensitive Least-Used <lb/>Policy for Reliable Server Pooling", draft-dreibholz-<lb/>rserpool-delay-23 (work in progress), March 2019. <lb/>[RFC2119] Bradner, S., "Key words for use in RFCs to Indicate <lb/>Requirement Levels", BCP 14, RFC 2119, <lb/>DOI 10.17487/RFC2119, March 1997, <lb/><https://www.rfc-editor.org/info/rfc2119>. <lb/></listBibl> + + <note place="footnote">Dreibholz & Zhou <lb/>Expires March 13, 2020 <lb/></note> + + <page>[Page 4] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>Takeover Suggestion Flag <lb/>September 2019 <lb/></note> + + <listBibl>[RFC5351] Lei, P., Ong, L., Tuexen, M., and T. Dreibholz, "An <lb/>Overview of Reliable Server Pooling Protocols", RFC 5351, <lb/>DOI 10.17487/RFC5351, September 2008, <lb/><https://www.rfc-editor.org/info/rfc5351>. <lb/>[RFC5352] Stewart, R., Xie, Q., Stillman, M., and M. Tuexen, <lb/>"Aggregate Server Access Protocol (ASAP)", RFC 5352, <lb/>DOI 10.17487/RFC5352, September 2008, <lb/><https://www.rfc-editor.org/info/rfc5352>. <lb/>[RFC5353] Xie, Q., Stewart, R., Stillman, M., Tuexen, M., and A. <lb/>Silverton, "Endpoint Handlespace Redundancy Protocol <lb/>(ENRP)", RFC 5353, DOI 10.17487/RFC5353, September 2008, <lb/><https://www.rfc-editor.org/info/rfc5353>. <lb/>[RFC5354] Stewart, R., Xie, Q., Stillman, M., and M. Tuexen, <lb/>"Aggregate Server Access Protocol (ASAP) and Endpoint <lb/>Handlespace Redundancy Protocol (ENRP) Parameters", <lb/>RFC 5354, DOI 10.17487/RFC5354, September 2008, <lb/><https://www.rfc-editor.org/info/rfc5354>. <lb/></listBibl> + + <listBibl>[RFC5355] Stillman, M., Ed., Gopal, R., Guttman, E., Sengodan, S., <lb/>and M. Holdrege, "Threats Introduced by Reliable Server <lb/>Pooling (RSerPool) and Requirements for Security in <lb/>Response to Threats", RFC 5355, DOI 10.17487/RFC5355, <lb/>September 2008, <https://www.rfc-editor.org/info/rfc5355>. <lb/>[RFC5356] Dreibholz, T. and M. Tuexen, "Reliable Server Pooling <lb/>Policies", RFC 5356, DOI 10.17487/RFC5356, September 2008, <lb/><https://www.rfc-editor.org/info/rfc5356>. <lb/>[RFC8174] Leiba, B., "Ambiguity of Uppercase vs Lowercase in RFC <lb/>2119 Key Words", BCP 14, RFC 8174, DOI 10.17487/RFC8174, <lb/>May 2017, <https://www.rfc-editor.org/info/rfc8174>. <lb/>7.2. Informative References <lb/>[AINA2009] <lb/>Zhou, X., Dreibholz, T., Fa, F., Du, W., and E. Rathgeb, <lb/>"Evaluation and Optimization of the Registrar Redundancy <lb/>Handling in Reliable Server Pooling Systems", Proceedings <lb/>of the IEEE 23rd International Conference on Advanced <lb/>Information Networking and Applications (AINA) Pages <lb/>256-262, ISBN 978-0-7695-3638-5, DOI 10.1109/AINA.2009.25, <lb/>May 2009, <https://www.wiwi.uni-<lb/>due.de/fileadmin/fileupload/I-<lb/>TDR/ReliableServer/Publications/AINA2009.pdf>. <lb/></listBibl> + + <note place="footnote">Dreibholz & Zhou <lb/>Expires March 13, 2020 <lb/></note> + + <page>[Page 5] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>Takeover Suggestion Flag <lb/>September 2019 <lb/></note> + + <listBibl>[Dre2006] Dreibholz, T., "Reliable Server Pooling -Evaluation, <lb/>Optimization and Extension of a Novel IETF Architecture", <lb/>March 2007, <https://duepublico.uni-duisburg-<lb/>essen.de/servlets/DerivateServlet/Derivate-16326/ <lb/>Dre2006_final.pdf>. <lb/>[IJHIT2008] <lb/>Dreibholz, T. and E. Rathgeb, "An Evaluation of the Pool <lb/>Maintenance Overhead in Reliable Server Pooling Systems", <lb/>SERSC International Journal on Hybrid Information <lb/>Technology (IJHIT) Number 2, Volume 1, Pages 17-32, <lb/>ISSN 1738-9968, April 2008, <https://www.wiwi.uni-<lb/>due.de/fileadmin/fileupload/I-<lb/>TDR/ReliableServer/Publications/IJHIT2008.pdf>. <lb/>[NorNet-Website] <lb/>Dreibholz, T., "NorNet -A Real-World, Large-Scale Multi-<lb/>Homing Testbed", Online: https://www.nntb.no/, 2019, <lb/><https://www.nntb.no/>. <lb/>[PAMS2013-NorNet] <lb/>Dreibholz, T. and E. Gran, "Design and Implementation of <lb/>the NorNet Core Research Testbed for Multi-Homed Systems", <lb/>Proceedings of the 3nd International Workshop on Protocols <lb/>and Applications with Multi-Homing Support (PAMS) Pages <lb/>1094-1100, ISBN 978-0-7695-4952-1, <lb/>DOI 10.1109/WAINA.2013.71, March 2013, <lb/><https://www.simula.no/file/ <lb/>threfereedinproceedingsreference2012-12-207643198512pdf/ <lb/>download>. <lb/>[RSerPool-Website] <lb/>Dreibholz, T., "Thomas Dreibholz's RSerPool Page", <lb/>Online: https://www.uni-due.de/~be0001/rserpool/, 2019, <lb/><https://www.uni-due.de/~be0001/rserpool/>. <lb/></listBibl> + + Authors' Addresses <lb/> + + <front>Thomas Dreibholz <lb/>Simula Metropolitan Centre for Digital Engineering <lb/>Pilestredet 52 <lb/>0167 Oslo, Oslo <lb/>Norway <lb/>Phone: +47-6782-8200 <lb/>Fax: <lb/>+47-6782-8201 <lb/>Email: dreibh@simula.no <lb/>URI: <lb/>https://www.simula.no/people/dreibh <lb/></front> + + <note place="footnote">Dreibholz & Zhou <lb/>Expires March 13, 2020 <lb/></note> + + <page>[Page 6] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>Takeover Suggestion Flag <lb/>September 2019 <lb/></note> + + <front>Xing Zhou <lb/>Hainan University, College of Information Science and Technology <lb/>Renmin Avenue 58 <lb/>570228 Haikou, Hainan <lb/>China <lb/>Phone: +86-898-66279141 <lb/>Email: zhouxing@hainu.edu.cn <lb/>URI: <lb/>http://www.hainu.edu.cn/stm/xinxi/2011330/10409758.shtml <lb/></front> + + <note place="footnote">Dreibholz & Zhou <lb/>Expires March 13, 2020 <lb/></note> + + <page>[Page 7] </page> + + + </text> +</tei> diff --git a/grobid-trainer/resources/dataset/segmentation/sdo/ietf/corpus/tei/XP015135115.training.segmentation.tei.xml b/grobid-trainer/resources/dataset/segmentation/sdo/ietf/corpus/tei/XP015135115.training.segmentation.tei.xml new file mode 100644 index 0000000000..0f1c9abcd0 --- /dev/null +++ b/grobid-trainer/resources/dataset/segmentation/sdo/ietf/corpus/tei/XP015135115.training.segmentation.tei.xml @@ -0,0 +1,599 @@ +<?xml version="1.0" ?> +<tei xml:space="preserve"> + <teiHeader> + <fileDesc xml:id="0"/> + </teiHeader> + <text xml:lang="en"> + <front>server date 20190912; downloaded by EPO on 20190913 <lb/>CCAMP Working Group <lb/>I. Busi <lb/>Internet Draft <lb/>Huawei <lb/>Intended status: Informational <lb/>D. King <lb/>Old Dog Consulting <lb/>H. Zheng <lb/>Huawei <lb/>Y. Xu <lb/>CAICT <lb/>Expires: March 2020 <lb/>September 12, 2019 <lb/>Transport Northbound Interface Applicability Statement <lb/>draft-ietf-ccamp-transport-nbi-app-statement-06 <lb/>Status of this Memo <lb/>This Internet-Draft is submitted in full conformance with the <lb/>provisions of BCP 78 and BCP 79. <lb/>Internet-Drafts are working documents of the Internet Engineering <lb/>Task Force (IETF), its areas, and its working groups. Note that <lb/>other groups may also distribute working documents as Internet-<lb/>Drafts. <lb/>Internet-Drafts are draft documents valid for a maximum of six <lb/>months and may be updated, replaced, or obsoleted by other documents <lb/>at any time. It is inappropriate to use Internet-Drafts as <lb/>reference material or to cite them other than as "work in progress." <lb/>The list of current Internet-Drafts can be accessed at <lb/>http://www.ietf.org/ietf/1id-abstracts.txt <lb/>The list of Internet-Draft Shadow Directories can be accessed at <lb/>http://www.ietf.org/shadow.html <lb/>This Internet-Draft will expire on March 12, 2020. <lb/>Busi, King, et al. <lb/>Expires March, 2020 <lb/>[Page 1] <lb/>Internet-Draft Transport NBI Applicability-Statement <lb/>September 2019 <lb/>Copyright Notice <lb/>Copyright (c) 2019 IETF Trust and the persons identified as the <lb/>document authors. All rights reserved. <lb/>This document is subject to BCP 78 and the IETF Trust's Legal <lb/>Provisions Relating to IETF Documents <lb/>(http://trustee.ietf.org/license-info) in effect on the date of <lb/>publication of this document. Please review these documents <lb/>carefully, as they describe your rights and restrictions with <lb/>respect to this document. Code Components extracted from this <lb/>document must include Simplified BSD License text as described in <lb/>Section 4.e of the Trust Legal Provisions and are provided without <lb/>warranty as described in the Simplified BSD License. <lb/>Abstract <lb/>Transport network domains, including Optical Transport Network (OTN) <lb/>and Wavelength Division Multiplexing (WDM) networks, are typically <lb/>deployed based on a single vendor or technology platforms. They are <lb/>often managed using proprietary interfaces to dedicated Element <lb/>Management Systems (EMS), Network Management Systems (NMS) and <lb/>increasingly Software Defined Network (SDN) controllers. <lb/>A well-defined open interface to each domain management system or <lb/>controller is required for network operators to facilitate control <lb/>automation and orchestrate end-to-end services across multi-domain <lb/>networks. These functions may be enabled using standardized data <lb/>models (e.g. YANG), and appropriate protocol (e.g., RESTCONF). <lb/>This document analyses the applicability of the YANG models being <lb/>defined by the IETF (Traffic Engineering Architecture and Signaling <lb/>(TEAS) and Common Control and Measurement Plane (CCAMP) WGs in <lb/>particular) to support OTN single and multi-domain scenarios. <lb/></front> + + <div type="toc">Table of Contents <lb/>1. Introduction...................................................4 <lb/>1.1. The scope of this document................................4 <lb/>1.2. Assumptions...............................................5 <lb/>2. Terminology....................................................6 <lb/>3. Conventions used in this document..............................7 <lb/>3.1. Topology and traffic flow processing......................7 <lb/>3.2. JSON code.................................................8 <lb/></div> + + <note place="footnote">Busi, King, et al. <lb/>Expires March, 2020 <lb/></note> + + <page>[Page 2] <lb/></page> + + <note place="headnote">Internet-Draft Transport NBI Applicability-Statement <lb/>September 2019 <lb/></note> + + <div type="toc">4. Scenarios Description..........................................9 <lb/>4.1. Reference Network.........................................9 <lb/>4.2. Topology Abstractions....................................13 <lb/>4.3. Service Configuration....................................15 <lb/>4.3.1. ODU Transit.........................................16 <lb/>4.3.2. EPL over ODU........................................17 <lb/>4.3.3. Other OTN Clients Services..........................18 <lb/>4.3.4. EVPL over ODU.......................................19 <lb/>4.4. Multi-function Access Links..............................20 <lb/>4.5. Protection and Restoration Configuration.................21 <lb/>4.5.1. Linear Protection (end-to-end)......................21 <lb/>4.5.2. Segmented Protection................................23 <lb/>4.6. Notification.............................................23 <lb/>4.7. Path Computation with Constraint.........................24 <lb/>5. YANG Model Analysis...........................................24 <lb/>5.1. YANG Models for Topology Abstraction.....................25 <lb/>5.1.1. Domain 1 Black Topology Abstraction.................26 <lb/>5.1.2. Domain 2 Black Topology Abstraction.................30 <lb/>5.1.3. Domain 3 White Topology Abstraction.................31 <lb/>5.1.4. Multi-domain Topology Merging.......................31 <lb/>5.2. YANG Models for Service Configuration....................33 <lb/>5.2.1. ODU Transit Service.................................36 <lb/>5.2.1.1. Single Domain Example..........................38 <lb/>5.2.2. EPL over ODU Service................................38 <lb/>5.2.2.1. Single Domain Example..........................40 <lb/>5.2.3. Other OTN Client Services...........................41 <lb/>5.2.3.1. Single Domain Example..........................42 <lb/>5.2.4. EVPL over ODU Service...............................42 <lb/>5.3. YANG Models for Protection Configuration.................44 <lb/>5.3.1. Linear Protection (end-to-end)......................44 <lb/>5.4. Notifications............................................44 <lb/>5.5. Path Computation with Constraints........................44 <lb/>6. Security Considerations.......................................44 <lb/>7. IANA Considerations...........................................45 <lb/>8. References....................................................45 <lb/>8.1. Normative References.....................................45 <lb/>8.2. Informative References...................................46 <lb/>9. Acknowledgments...............................................47 <lb/>Appendix A. <lb/>Validating a JSON fragment against a YANG Model...49 <lb/>A.1. Manipulation of JSON fragments..........................49 <lb/>A.2. Comments in JSON fragments..............................50 <lb/>A.3. Validation of JSON fragments: DSDL-based approach.......50 <lb/>A.4. Validation of JSON fragments: why not using a XSD-based <lb/>approach......................................................51 <lb/></div> + + <note place="footnote">Busi, King, et al. <lb/>Expires March, 2020 <lb/></note> + + <page>[Page 3] <lb/></page> + + <note place="headnote">Internet-Draft Transport NBI Applicability-Statement <lb/>September 2019 <lb/></note> + + <div type="toc">Appendix B. <lb/> Detailed JSON Examples............................52 <lb/>B.1. JSON Examples for Topology Abstractions.................52 <lb/>B.1.1. <lb/>JSON Code: mpi1-otn-topology.json.................52 <lb/>B.2. JSON Examples for Service Configuration.................68 <lb/>B.2.1. <lb/>JSON Code: mpi1-odu2-service-config.json..........68 <lb/>B.2.2. <lb/>JSON Code: mpi1-odu2-tunnel-config.json...........72 <lb/>B.2.3. <lb/>JSON Code: mpi1-epl-service-config.json...........72 <lb/></div> + + <body>1. Introduction <lb/>Transport of packet services are critical for a wide-range of <lb/>applications and services, including data center and LAN <lb/>interconnects, Internet service backhauling mobile backhaul and <lb/>enterprise Carrier Ethernet services. These services are typically <lb/>setup using stovepipe NMS and EMS platforms, often requiring <lb/>propriety management platforms and legacy management interfaces. A <lb/>clear goal of operators is to automate the setup of transport <lb/>services across multiple transport technology domains. <lb/>A common open interface (API) to each domain controller and or <lb/>management system is pre-requisite for network operators to control <lb/>multi-vendor and multi-domain networks and also enable service <lb/>provisioning coordination/automation. This can be achieved by using <lb/>standardized YANG models, used together with an appropriate protocol <lb/>(e.g., RESTCONF [RFC8040]). <lb/>This document analyses the applicability of the YANG models being <lb/>defined by IETF (Traffic Engineering Architecture and Signaling <lb/>(TEAS) and Common Control and Measurement Plane (CCAMP) WGs in <lb/>particular) to support Optical Transport Networks (OTN) single and <lb/>multi-domain scenarios. <lb/>1.1. The scope of this document <lb/>This document assumes a reference architecture, including <lb/>interfaces, based on the Abstraction and Control of Traffic-<lb/>Engineered Networks (ACTN), defined in [RFC8453]. <lb/>The focus of this document is on the MPI (interface between the <lb/>Multi Domain Service Coordinator (MDSC) and a Physical Network <lb/>Controller (PNC), controlling a transport network domain). <lb/></body> + + <note place="footnote">Busi, King, et al. <lb/>Expires March, 2020 <lb/></note> + + <page>[Page 4] <lb/></page> + + <note place="headnote">Internet-Draft Transport NBI Applicability-Statement <lb/>September 2019 <lb/></note> + + <body>It is worth noting that the same MPI analyzed in this document could <lb/> be used between hierarchical MDSC controllers, as shown in Figure 4 <lb/>of [RFC8453]. <lb/>Detailed analysis of the CMI (interface between the Customer Network <lb/>Controller (CNC) and the MDSC) as well as of the interface between <lb/>service and network orchestrators are outside the scope of this <lb/>document. However, some considerations and assumptions about the <lb/>information are described when needed. <lb/>The relationship between the current IETF YANG models and the type <lb/>of ACTN interfaces can be found in [ACTN-YANG]. Therefore, it <lb/>considers the TE Topology YANG model defined in [TE-TOPO], with the <lb/>OTN Topology augmentation defined in [OTN-TOPO] and the TE Tunnel <lb/>YANG model defined in [TE-TUNNEL], with the OTN Tunnel augmentation <lb/>defined in [OTN-TUNNEL]. It also considers the Ethernet Client <lb/>Topology augmentation defined in [CLIENT-TOPO] as well as the Client <lb/>Signal YANG models defined in [CLIENT-SIGNAL] for both Transparent <lb/>and Ethernet clients. <lb/>The ONF Technical Recommendations for Functional Requirements for <lb/>the transport API in [ONF TR-527] and the ONF transport API multi-<lb/>domain examples in [ONF GitHub] have been considered as input for <lb/>defining the reference scenarios analyzed in this document. <lb/>1.2. Assumptions <lb/>This document is making the following assumptions: <lb/>1. The MDSC can request, at the MPI, a PNC to setup a Transit Tunnel <lb/>Segment using the TE Tunnel YANG model: in this case, since the <lb/>endpoints of the E2E Tunnel are outside the domain controlled by <lb/>that PNC, the MDSC would not specify any source or destination TE <lb/>Tunnel Termination Point (TTP), i.e., it would leave empty the <lb/>source, destination, src-tp-id and dst-tp-id attributes of the TE <lb/>tunnel instance, and it would use the explicit-route-object (ERO) <lb/>or route-object-include-exclude list to specify the ingress and <lb/>egress links for each path of the Transit Tunnel Segment. <lb/>2. Each PNC provides to the MDSC, at the MPI, the list of available <lb/>timeslots on the inter-domain links using the TE Topology YANG <lb/>model and OTN Topology augmentation. The TE Topology YANG model <lb/>in [TE-TOPO] is being updated to report the label set <lb/>information. <lb/></body> + + <note place="footnote">Busi, King, et al. <lb/>Expires March, 2020 <lb/></note> + + <page>[Page 5] <lb/></page> + + <note place="headnote">Internet-Draft Transport NBI Applicability-Statement <lb/>September 2019 <lb/></note> + + <body>See section 1.7 of [TE-TUTORIAL] for more details. <lb/> This document has made the following assumptions: <lb/>1. The topology information for the Ethernet Client access links is <lb/>modelled using the YANG model defined in [CLIENT-TOPO]; <lb/>2. The topology information for the OTN and Transparent Client <lb/>access links is modelled using the YANG model defined in [OTN-<lb/>TOPO]; <lb/>3. The mapping information for Ethernet and Transparent Client <lb/>signals are modelled using the YANG model defined in [CLIENT-<lb/>SIGNAL]. <lb/>Finally, the Network Elements (NEs) described in the scenarios used <lb/>in the document are using ODU switching. It is assumed that the ODU <lb/>links are pre-configured and using mechanisms such as WDM <lb/>wavelength, which are outside the scope of this document. <lb/>2. Terminology <lb/>Domain: A domain as defined by [RFC4655] is "any collection of <lb/>network elements within a common sphere of address management or <lb/>path computation responsibility". Specifically, within this <lb/>document we mean a part of an operator's network that is under <lb/>common management (i.e., under shared operational management using <lb/>the same instances of a tool and the same policies). Network <lb/>elements will often be grouped into domains based on technology <lb/>types, vendor profiles, and geographic proximity. <lb/>E-LINE: Ethernet Line <lb/>EPL: Ethernet Private Line <lb/>EVPL: Ethernet Virtual Private Line <lb/>OTN: Optical Transport Network <lb/>Service: A service in the context of this document can be considered <lb/>as some form of connectivity between customer sites across the <lb/>network operator's network [RFC8309]. <lb/></body> + + <note place="footnote">Busi, King, et al. <lb/>Expires March, 2020 <lb/></note> + + <page>[Page 6] <lb/></page> + + <note place="headnote">Internet-Draft Transport NBI Applicability-Statement <lb/>September 2019 <lb/></note> + + <body>Service Model: As described in [RFC8309] it describes a service and <lb/> the parameters of the service in a portable way that can be used <lb/>uniformly and independent of the equipment and operating <lb/>environment. <lb/>UNI: User Network Interface <lb/>MDSC: Multi-Domain Service Coordinator <lb/>CNC: Customer Network Controller <lb/>PNC: Provisioning Network Controller <lb/>3. Conventions used in this document <lb/>3.1. Topology and traffic flow processing <lb/>The traffic flow between different nodes is specified as an ordered <lb/>list of nodes, separated with commas, indicating within the brackets <lb/>the processing within each node: <lb/><node> [<processing>]{, <node> [<processing>]} <lb/>The order represents the order of traffic flow being forwarded <lb/>through the network. <lb/>The processing can be just switching at a given layer <lb/>"[(switching)]" or also having an adaptation of a client layer into <lb/>a server layer "[(client) -> server]" or [client -> (server)], <lb/>depending on whether the node is switching in the client or in the <lb/>server layer. <lb/>For example, the following traffic flow: <lb/>R1 [(PKT) -> ODU2], S3 [(ODU2)], S5 [(ODU2)], S6 [(ODU2)], <lb/>R3 [ODU2 -> (PKT)] <lb/>Node R1 is switching at the packet (PKT) layer and mapping packets <lb/>into an ODU2 before transmission to node S3. Nodes S3, S5 and S6 are <lb/>switching at the ODU2 layer: S3 sends the ODU2 traffic to S5 which <lb/>then sends it to S6 which finally sends to R3. Node R3 terminates <lb/>the ODU2 from S6 before switching at the packet (PKT) layer. <lb/></body> + + <note place="footnote">Busi, King, et al. <lb/>Expires March, 2020 <lb/></note> + + <page>[Page 7] <lb/></page> + + <note place="headnote">Internet-Draft Transport NBI Applicability-Statement <lb/>September 2019 <lb/></note> + + <body>The paths of working and protection transport entities are specified <lb/>as an ordered list of nodes, separated with commas: <lb/><node> {, <node>} <lb/>The order represents the order of traffic flow being forwarded <lb/>through the network in the forward direction. In the case of <lb/>bidirectional paths, the forward and backward directions are <lb/>selected arbitrarily, but the convention is consistent between <lb/>working/protection path pairs, as well as across multiple domains. <lb/>3.2. JSON code <lb/>This document provides some detailed JSON code examples to describe <lb/>how the YANG models being developed by the IETF (TEAS and CCAMP WG <lb/>in particular) may be used. The scenario examples are provided using <lb/>JSON to facilitate readability. <lb/>Different objects need to have an identifier. The convention used to <lb/>create mnemonic identifiers is to use the object name (e.g., S3 for <lb/>node S3), followed by its type (e.g., NODE), separated by an "-", <lb/>followed by "-ID". For example, the mnemonic identifier for node S3 <lb/>would be S3-NODE-ID. <lb/>The JSON language does not support the insertion of comments that <lb/>have been instead found to be useful when writing the examples. This <lb/>document will insert comments into the JSON code as JSON name/value <lb/>pair with the JSON name string starting with the "//" characters. <lb/>For example, when describing the example of a TE Topology instance <lb/>representing the ODU Abstract Topology exposed by the Transport PNC, <lb/>the following comment has been added to the JSON code: <lb/>"// comment": "ODU Abstract Topology @ MPI", <lb/>The JSON code examples provided in this document have been validated <lb/>against the YANG models following the validation process described <lb/>in Appendix A, which would not consider the comments. <lb/>In order to have successful validation of the examples, some <lb/>numbering scheme has been defined to assign identifiers to the <lb/>different entities which would pass the syntax checks. In that case, <lb/>to simplify the reading, another JSON name/value pair formatted as a <lb/>comment and using the mnemonic identifiers is also provided. For <lb/>example, the identifier of node S3 (S3-NODE-ID) has been assumed to <lb/></body> + + <note place="footnote">Busi, King, et al. <lb/>Expires March, 2020 <lb/></note> + + <page>[Page 8] <lb/></page> + + <note place="headnote">Internet-Draft Transport NBI Applicability-Statement <lb/>September 2019 <lb/></note> + + <body>be "10.0.0.3" and would be shown in the JSON code example using the <lb/>two JSON name/value pair: <lb/>"// te-node-id": "S3-NODE-ID", <lb/>"te-node-id": "10.0.0.3", <lb/>The first JSON name/value pair will be automatically removed in the <lb/>first step of the validation process while the second JSON <lb/>name/value pair will be validated against the YANG model <lb/>definitions. <lb/>4. Scenarios Description <lb/>4.1. Reference Network <lb/>The physical topology of the reference network is shown in Figure 1. <lb/>It represents an OTN network composed of three transport network <lb/>domains which provide transport connectivity services to an IP <lb/>customer network through eight access links: <lb/></body> + + <note place="footnote">Busi, King, et al. <lb/>Expires March, 2020 <lb/></note> + + <page>[Page 9] <lb/></page> + + <note place="headnote">Internet-Draft Transport NBI Applicability-Statement <lb/>September 2019</note> + + <body> <lb/>........................ <lb/>......... <lb/>: <lb/>: <lb/>: <lb/>: <lb/>Network domain 1 <lb/>: <lb/>............. <lb/>Customer: <lb/>: <lb/>: <lb/>: <lb/>: <lb/>domain : <lb/>: <lb/>S1 -------+ <lb/>: <lb/>: Network : <lb/>: <lb/>: <lb/>/ <lb/>\ <lb/>: <lb/>: domain 3 : <lb/>.......... <lb/>R1 -------S3 -----S4 <lb/>\ <lb/>: <lb/>: <lb/>: <lb/>: <lb/>: <lb/>: <lb/>\ <lb/>\ <lb/>S2 --------+ <lb/>: <lb/>:Customer <lb/>: <lb/>: <lb/>\ <lb/>\ <lb/>| : <lb/>: <lb/>\ <lb/>: <lb/>: domain <lb/>: <lb/>: <lb/>S5 <lb/>\ <lb/>| : <lb/>: <lb/>\ <lb/>: <lb/>: <lb/>R2 ------+ <lb/>/ \ <lb/>\ | : <lb/>: <lb/>S31 ---------R5 <lb/>: <lb/>: \ / <lb/>\ <lb/>\ | : <lb/>: <lb/>/ <lb/>\ <lb/>: <lb/>: <lb/>R3 -------S6 ----S7 ----S8 ------S32 <lb/>S33 ------R6 <lb/>: <lb/>: / <lb/>| <lb/>| <lb/>: <lb/>: / \ <lb/>/ <lb/>: <lb/>:....... <lb/>R4 ------+ <lb/>| <lb/>| <lb/>: <lb/>:/ <lb/>S34 <lb/>: <lb/>: <lb/>: <lb/>:..........|.......|...: <lb/>/ <lb/>/ <lb/>: <lb/>: <lb/>........: <lb/>| <lb/>| <lb/>/:.../.......: <lb/>: <lb/>| <lb/>| <lb/>/ <lb/>/ <lb/>: <lb/>...........|.......|..../..../... <lb/>: <lb/>: <lb/>| <lb/>| <lb/>/ <lb/>/ <lb/>: <lb/>.............. <lb/>: Network | <lb/>| / <lb/>/ <lb/>: <lb/>: <lb/>: domain 2 | <lb/>| / <lb/>/ <lb/>: <lb/>:Customer <lb/>: <lb/>S11 ----S12 <lb/>/ <lb/>: <lb/>: domain <lb/>: <lb/>/ <lb/>| \ / <lb/>: <lb/>: <lb/>: <lb/>S13 <lb/>S14 <lb/>| S15 -------------R7 <lb/>: <lb/>| \ <lb/>/ <lb/>\ | <lb/>\ <lb/>: <lb/>: <lb/>: <lb/>| <lb/>S16 <lb/>\ | <lb/>\ <lb/>: <lb/>: <lb/>: <lb/>| / <lb/>S17 --S18 ---------R8 <lb/>: <lb/>| / <lb/>\ <lb/>/ <lb/>: <lb/>: <lb/>: <lb/>S19 ----S20 ----S21 ------------R9 <lb/>: <lb/>: <lb/>: <lb/>:...............................: <lb/>:............. <lb/>Figure 1 -Reference network <lb/>This document assumes that all the transport network switching nodes <lb/>Si are capable of switching in the electrical domain (ODU switching) <lb/>and that all the Si-Sj OTN links within the transport network <lb/>(intra-domain or inter-domain) are 100G links while the access Ri-Sj <lb/>links are 10G links. <lb/>It is also assumed that, within the transport network, the <lb/>physical/optical interconnections supporting the Si-Sj OTN links (up <lb/>to the OTU4 trail), are pre-configured using mechanisms which are <lb/></body> + + <note place="footnote">Busi, King, et al. <lb/>Expires March, 2020 <lb/></note> + + <page>[Page 10] <lb/></page> + + <note place="headnote">Internet-Draft Transport NBI Applicability-Statement <lb/>September 2019 <lb/></note> + + <body>outside the scope of this document and are not exposed at the MPIs <lb/> to the MDSC. <lb/>Different technologies can be used on the access links (e.g., <lb/>Ethernet, STM-N and OTU). Section 4.3 provides more details about <lb/>the different assumptions on the access links for different services <lb/>types and section 4.4 describes the control of access links which <lb/>can support different technology configuration (e.g., STM-64, 10GE <lb/>or OTU2) depending on the type of service being configured (multi-<lb/>function access links). <lb/>The transport domain control architecture, shown in Figure 2, <lb/>follows the ACTN architecture and framework document [RFC8453], and <lb/>functional components: <lb/></body> + + <note place="footnote">Busi, King, et al. <lb/>Expires March, 2020 <lb/></note> + + <page>[Page 11] <lb/></page> + + <note place="headnote">Internet-Draft Transport NBI Applicability-Statement <lb/>September 2019 <lb/></note> + + <body>--------------<lb/>| <lb/>| <lb/>| <lb/>CNC <lb/>| <lb/>| <lb/>| <lb/>--------------<lb/>| <lb/>....................|....................... CMI <lb/>| <lb/>----------------<lb/>| <lb/>| <lb/>| <lb/>MDSC <lb/>| <lb/>| <lb/>| <lb/>----------------<lb/>/ <lb/>| <lb/>\ <lb/>/ <lb/>| <lb/>\ <lb/>............../.....|......\................ MPIs <lb/>/ <lb/>| <lb/>\ <lb/>/ <lb/>----------<lb/>\ <lb/>/ <lb/>| <lb/>PNC2 <lb/>| <lb/>\ <lb/>/ <lb/>----------<lb/>\ <lb/>----------<lb/>| <lb/>\ <lb/>| <lb/>PNC1 <lb/>| <lb/>-----<lb/>\ <lb/>----------<lb/>( <lb/>) <lb/>----------<lb/>| <lb/>( <lb/>) <lb/>| <lb/>PNC3 <lb/>| <lb/>-----<lb/>( Network ) <lb/>----------<lb/>( <lb/>) <lb/>( Domain 2 ) <lb/>| <lb/>( <lb/>) <lb/>( <lb/>) <lb/>-----<lb/>( Network ) <lb/>( <lb/>) <lb/>( <lb/>) <lb/>( Domain 1 ) <lb/>-----<lb/>( <lb/>) <lb/>( <lb/>) <lb/>( Network ) <lb/>( <lb/>) <lb/>( Domain 3 ) <lb/>-----<lb/>( <lb/>) <lb/>( <lb/>) <lb/>-----<lb/>Figure 2 -Controlling Hierarchies <lb/>The ACTN framework facilitates the detachment of the network and <lb/>service control from the underlying technology. It helps the <lb/>customer define the network as desired by business needs. Therefore, <lb/>care must be taken to keep a minimal level of dependency on the CMI <lb/>(or no dependency at all) with respect to the network domain <lb/>technologies. The MPI instead requires some specialization according <lb/>to the domain technology. <lb/></body> + + <note place="footnote">Busi, King, et al. <lb/>Expires March, 2020 <lb/></note> + + <page>[Page 12] <lb/></page> + + <note place="headnote">Internet-Draft Transport NBI Applicability-Statement <lb/>September 2019 <lb/></note> + + <body>The control interfaces within the scope of this document are the <lb/>three MPIs shown in Figure 2. <lb/>It is worth noting that the split of functionality at the MPI in the <lb/>ACTN architecture between the MDSC and the PNCs is <lb/>equivalent/analogous to the split of functionality which is assumed <lb/>for the ONF T-API interface when used between a multi-domain <lb/>controller and domain controllers, as described in the ONF T-API <lb/>multi-domain use cases [ONF TR-527], as well as at the MEF PRESTO <lb/>interface between the Service Orchestration Functionality (SOF) and <lb/>the Infrastructure Control and Management (ICM) in the MEF LSO <lb/>Architecture [MEF 55]. <lb/>This document does not make any assumption about the control <lb/>architecture of the customer IP network: in line with [RFC8453], the <lb/>CNC is just a functional component within the customer control <lb/>architecture which is capable of requesting, at the CMI, transport <lb/>connectivity between IP routers, when needed. <lb/>The CNC can request transport connectivity services between IP <lb/>routers which can be attached to different transport domains (e.g., <lb/>between R1 and R8 in Figure 1) or to the same transport domain <lb/>(e.g., between R1 and R3 in Figure 1). Since the CNC is not aware of <lb/>the transport network controlling hierarchy, the mechanisms used by <lb/>the CNC to request, at the CMI, transport connectivity services are <lb/>independent on whether the service request is single-domain or <lb/>multi-domain. <lb/>It is assumed that the CMI allows the CNC to provide all the <lb/>information that is required by the MDSC to understand the <lb/>connectivity service request and to decide the network <lb/>configurations to be requested, at the MPIs, to its underlying PNCs <lb/>to support the requested connectivity service. <lb/>When a single-domain service is requested by the CNC at the CMI <lb/>(e.g., between R1 and R3 in Figure 1), the MDSC can follow the same <lb/>procedures, described above for the multi-domain service, and decide <lb/>the network configuration to request only at the MPI of the PNC <lb/>controlling that domain (e.g., MPI1 of PNC1 in Figure 2). <lb/>4.2. Topology Abstractions <lb/>Abstraction provides a selective method for representing <lb/>connectivity information within a domain. There are multiple methods <lb/></body> + + <note place="footnote">Busi, King, et al. <lb/>Expires March, 2020 <lb/></note> + + <page>[Page 13] <lb/></page> + + <note place="headnote">Internet-Draft Transport NBI Applicability-Statement <lb/>September 2019 <lb/></note> + + <body>to abstract a network topology. This document assumes the <lb/> abstraction method defined in [RFC7926]: <lb/>"Abstraction is the process of applying the policy to the <lb/>available TE information within a domain, to produce selective <lb/>information that represents the potential ability to connect <lb/>across the domain. Thus, abstraction does not necessarily offer <lb/>all possible connectivity options, but presents a general view of <lb/>potential connectivity according to the policies that determine <lb/>how the domain's administrator wants to allow the domain resources <lb/>to be used." <lb/>[RFC8453] Provides the context of topology abstraction in the ACTN <lb/>architecture and discusses a few alternatives for the abstraction <lb/>methods for both packet and optical networks. This is an important <lb/>consideration since the choice of the abstraction method impacts <lb/>protocol design and the information it carries. According to <lb/>[RFC8453], there are three types of topology: <lb/>o White topology: This is a case where the PNC provides the actual <lb/>network topology to the MDSC without any hiding or filtering. In <lb/>this case, the MDSC has the full knowledge of the underlying <lb/>network topology; <lb/>o Black topology: The entire domain network is abstracted as a <lb/>single virtual node with the access/egress links without <lb/>disclosing any node internal connectivity information; <lb/>o Grey topology: This abstraction level is between black topology <lb/>and white topology from a granularity point of view. This is an <lb/>abstraction of TE tunnels for all pairs of border nodes. We may <lb/>further differentiate from a perspective of how to abstract <lb/>internal TE resources between the pairs of border nodes: <lb/>-Grey topology type A: border nodes with TE links between them <lb/>in a full mesh fashion; <lb/>-Grey topology type B: border nodes with some internal <lb/>abstracted nodes and abstracted links. <lb/>Each PNC should provide the MDSC with a network topology <lb/>abstractions hiding the internal details of the physical domain <lb/>network topology controlled by the PNC and this abstraction is <lb/>independent of the abstractions provided by other PNCs. Therefore it <lb/></body> + + <note place="footnote">Busi, King, et al. <lb/>Expires March, 2020 <lb/></note> + + <page>[Page 14] <lb/></page> + + <note place="headnote">Internet-Draft Transport NBI Applicability-Statement <lb/>September 2019 <lb/></note> + + <body>is possible that different PNCs provide different types of topology <lb/> abstractions and each MPI operates on the abstract topology <lb/>regardless of, and independently from, the type of abstraction <lb/>provided by the PNC. <lb/>To analyze how the MDSC can operate on abstract topologies <lb/>independently from the topology abstraction provided by each PNC <lb/>and, therefore, that different PNCs can provide different topology <lb/>abstractions, that the following examples are assumed: <lb/>o PNC1 and PNC2 provide black topology abstractions which expose at <lb/>MPI1, and MPI2 respectively, a single virtual node (representing <lb/>the whole network domain 1, and domain 2 respectively). <lb/>o PNC3 provides a white topology abstraction which exposes at MPI3 <lb/>all the physical nodes and links within network domain 3. <lb/>The MDSC should be capable of stitching together the abstracted <lb/>topologies provided by each PNC to build its own view of the <lb/>multi-domain network topology. The process may require suitable <lb/>oversight, including administrative configuration and trust models, <lb/>a method of how to achieve this is out of scope for this document. <lb/>The MDSC can also provide topology abstraction of its own view of <lb/>the multi-domain network topology at its CMIs depending on the <lb/>customers' needs: it can provide different types of topology <lb/>abstractions at different CMIs. Analyzing the topology abstractions <lb/>provided by the MDSC to its CMIs is outside the scope of this <lb/>document. <lb/>4.3. Service Configuration <lb/>In the following scenarios, it is assumed that the CNC is capable of <lb/>requesting service connectivity from the MDSC to support IP routers <lb/>connectivity. <lb/>The type of services could depend on the type of physical links <lb/>(e.g. OTN link, ETH link or SDH link) between the routers and <lb/>transport network. <lb/>The control of different adaptations inside IP routers, Ri (PKT -> <lb/>foo) and Rj (foo -> PKT), are assumed to be performed by means that <lb/>are not under the control of, and not visible to, the MDSC nor to <lb/></body> + + <note place="footnote">Busi, King, et al. <lb/>Expires March, 2020 <lb/></note> + + <page>[Page 15] <lb/></page> + + <note place="headnote">Internet-Draft Transport NBI Applicability-Statement <lb/>September 2019 <lb/></note> + + <body>the PNCs. Therefore, these mechanisms are outside the scope of this <lb/>document. <lb/>4.3.1. ODU Transit <lb/>The physical links interconnecting the IP routers and the transport <lb/>network can be 10G OTN links. <lb/>In this case, it is assumed that the physical/optical <lb/>interconnections below the ODU layer (up to the OTU2 trail) are <lb/>pre-configured using mechanisms which are outside the scope of this <lb/>document and not exposed at the MPIs between the PNCs and the MDSC. <lb/>For simplicity of the description, it is also assumed that these <lb/>interfaces are not channelized (i.e., they can only support one <lb/>ODU2). <lb/>To setup a 10Gb IP link between R1 and R8, an ODU2 end-to-end <lb/>connection needs to be created, passing through transport nodes S3, <lb/>S1, S2, S31, S33, S34, S15 and S18 which belong to different PNC <lb/>domains (multi-domain service request): <lb/>R1 [(PKT) -> ODU2], S3 [(ODU2]), S1 [(ODU2]), S2 [(ODU2]), <lb/>S31 [(ODU2)], S33 [(ODU2)], S34 [(ODU2)], <lb/>S15 [(ODU2)], S18 [(ODU2)], R8 [ODU2 -> (PKT)] <lb/>The MDSC understands that it needs to establish an ODU2 transit <lb/>service between the access links on S3 and S18, which belong to <lb/>different PNC domains (multi-domain service request). It also <lb/>decides the network configurations to request, at the MPIs, to its <lb/>underlying PNCs, to coordinate the setup of a multi-domain ODU2 <lb/>segment connection between the access links on S3 and S18. <lb/>To setup of a 10Gb IP link between R1 and R3, an ODU2 end-to-end <lb/>connection needs to be created, passing through transport nodes S3, <lb/>S5 and S6 which belong to the same PNC domain (single-domain service <lb/>request): <lb/>R1 [(PKT) -> ODU2], S3 [(ODU2)], S5 [(ODU2)], S6 [(ODU2)], <lb/>R3 [ODU2 -> (PKT)] <lb/>As described in section 4.1, the mechanisms used by the CNC at the <lb/>CMI are independent on whether the service request is single-domain <lb/>service or multi-domain. <lb/></body> + + <note place="footnote">Busi, King, et al. <lb/>Expires March, 2020 <lb/></note> + + <page>[Page 16] <lb/></page> + + <note place="headnote">Internet-Draft Transport NBI Applicability-Statement <lb/>September 2019 <lb/></note> + + <body>The MDSC can understand that it needs to setup an ODU2 transit <lb/> service between the access links on S3 and S6, which belong to the <lb/>same PNC domain (single-domain service request) and it decides the <lb/>proper network configuration to request PNC1. <lb/>4.3.2. EPL over ODU <lb/>The physical links interconnecting the IP routers and the transport <lb/>network can be 10G Ethernet physical links (10GE). <lb/>In this case, it is assumed that the Ethernet physical interfaces <lb/>(up to the MAC layer) are pre-configured using mechanisms which are <lb/>outside the scope of this document and not exposed at the MPIs <lb/>between the PNCs and the MDSC. <lb/>To setup a 10Gb IP link between R1 and R8, an EPL service needs to <lb/>be created, supported by an ODU2 end-to-end connection, between <lb/>transport nodes S3 and S18, passing through transport nodes S1, S2, <lb/>S31, S33, S34 and S15, which belong to different PNC domains (multi-<lb/>domain service request): <lb/>R1 [(PKT) -> ETH], S3 [ETH -> (ODU2)], S1 [(ODU2)], <lb/>S2 [(ODU2)], S31 [(ODU2)), S33 [(ODU2)], S34 [(ODU2)], <lb/>S15 [(ODU2)], S18 [(ODU2) -> ETH], R8 [ETH -> (PKT)] <lb/>The MDSC understands that it needs to setup an EPL service between <lb/>the access links on S3 and S18, which belong to different PNC <lb/>domains (multi-domain service request). It also decides the network <lb/>configurations to request, at the MPIs, to its underlying PNCs, to <lb/>coordinate the setup of an end-to-end ODU2 connection between the <lb/>nodes S3 and S8, including the configuration of the adaptation <lb/>functions inside these edge nodes, such as S3 [ETH -> (ODU2)] and <lb/>S18 [(ODU2) -> ETH]. <lb/>To setup a 10Gb IP link between R1 and R2, an EPL service needs to <lb/>be created, supported by an ODU2 end-to-end connection between <lb/>transport nodes S3 and S6, passing through the transport node S5, <lb/>which belong to the same PNC domain (single-domain service request): <lb/>R1 [(PKT) -> ETH], S3 [ETH -> (PKT)] S5 [(ODU2)], <lb/>S6 [(ODU2) -> ETH], R2 [ETH -> (PKT)] <lb/></body> + + <note place="footnote">Busi, King, et al. <lb/>Expires March, 2020 <lb/></note> + + <page>[Page 17] <lb/></page> + + <note place="headnote">Internet-Draft Transport NBI Applicability-Statement <lb/>September 2019 <lb/></note> + + <body>As described in section 4.1, the mechanisms used by the CNC at the <lb/>CMI are independent on whether the service request is single-domain <lb/>service or multi-domain. <lb/>Based on the assumption above, in this case, the MDSC can understand <lb/>that it needs to setup an EPL service between the access links on S3 <lb/>and S6, which belong to the same PNC domain (single-domain service <lb/>request) and it decides the proper network configuration to request <lb/>PNC1. <lb/>4.3.3. Other OTN Clients Services <lb/>[ITU-T G.709] defines mappings of different Transparent Client <lb/>layers into ODU. Most of them are used to provide Private Line <lb/>services over an OTN transport network supporting a variety of types <lb/>of physical access links (e.g., Ethernet, SDH STM-N, Fibre Channel, <lb/>InfiniBand, etc.) interconnecting the IP routers and the transport <lb/>network. <lb/>In order to setup a 10Gb IP link between R1 and R8 using, with for <lb/>example SDH physical links between the IP routers and the transport <lb/>network, an STM-64 Private Line service needs to be created, <lb/>supported by an ODU2 end-to-end connection, between transport nodes <lb/>S3 and S18, passing through transport nodes S1, S2, S31, S33, S34 <lb/>and S15, which belong to different PNC domains (multi-domain service <lb/>request): <lb/>R1 [(PKT) -> STM-64], S3 [STM-64 -> (ODU2)], S1 [(ODU2)], <lb/>S2 [(ODU2)], S31 [(ODU2)], S33 [(ODU2)], S34[(ODU2)], <lb/>S15 [(ODU2)], S18 [(ODU2) -> STM-64], R8 [STM-64 -> (PKT)] <lb/>As already described (section 4.1) CNC provides the essential <lb/>information to permit the MDSC to understand which type of service <lb/>is needed, in this case, an STM-64 Private Line service between the <lb/>access links on S3 and S8, and it also decides the network <lb/>configurations, including the configuration of the adaptation <lb/>functions inside these edge nodes, such as S3 [STM-64 -> (ODU2)] and <lb/>S18 [(ODU2) -> STM-64]. <lb/>To setup a 10Gb IP link between R1 and R3), an STM-64 Private Line <lb/>service needs to be created between R1 and R3 (single-domain service <lb/>request): <lb/></body> + + <note place="footnote">Busi, King, et al. <lb/>Expires March, 2020 <lb/></note> + + <page>[Page 18] <lb/></page> + + <note place="headnote">Internet-Draft Transport NBI Applicability-Statement <lb/>September 2019 <lb/></note> + + <body>R1 [(PKT) -> STM-64], S3[STM-64 -> (ODU2)], S5 [(ODU2)], <lb/>S6 [(ODU2) -> STM-64], R3[STM-64 -> (PKT)] <lb/>As described in section 4.1, the mechanisms used by the CNC at the <lb/>CMI are independent on whether the service request is single-domain <lb/>service or multi-domain. <lb/>Based on the assumption above, in this case, the MDSC can understand <lb/>that it needs to setup an STM-64 Private Line service between the <lb/>access links on S3 and S6, which belong to the same PNC domain <lb/>(single-domain service request) and it decides the proper network <lb/>configuration to request PNC1. <lb/>4.3.4. EVPL over ODU <lb/>When the physical links interconnecting the IP routers and the <lb/>transport network are Ethernet physical links, it is also possible <lb/>that different Ethernet services (e.g., EVPL) can share the same <lb/>physical access link using different VLANs. <lb/>As described in section 4.3.2, it is assumed that the Ethernet <lb/>physical interfaces (up to the MAC layer) are pre-configured. <lb/>To setup two 1Gb IP links between R1 to R2 and between R1 and R8, <lb/>two EVPL services need to be created, supported by two ODU0 end-to-<lb/>end connections: <lb/>R1 [(PKT) -> VLAN], S3 [VLAN -> (ODU0)], S5 [(ODU0)], <lb/>S6 [(ODU0) -> VLAN], R2 [VLAN -> (PKT)] <lb/>R1 [(PKT) -> VLAN], S3[VLAN -> (ODU0)], S1 [(ODU0)], <lb/>S2 [(ODU0)], S31 [(ODU0)], S33 [(ODU0)], S34 [(ODU0)], <lb/>S15 [(ODU0)], S18 [(ODU0) -> VLAN], R8[VLAN -> (PKT)] <lb/>It is worth noting that the fist EVPL service is required between <lb/>access links which belong to the same PNC domain (single-domain <lb/>service request) while the second EVPL service is required between <lb/>access links which belong to different PNC domains (multi-domain <lb/>service request). <lb/>Since the two EVPL services are sharing the same Ethernet physical <lb/>link between R1 and S3, different VLAN IDs are associated with <lb/>different EVPL services: for example, VLAN IDs 10 and 20 <lb/>respectively. <lb/></body> + + <note place="footnote">Busi, King, et al. <lb/>Expires March, 2020 <lb/></note> + + <page>[Page 19] <lb/></page> + + <note place="headnote">Internet-Draft Transport NBI Applicability-Statement <lb/>September 2019 <lb/></note> + + <body>Based on the assumptions described in section 4.3.2, the CNC <lb/>requests at the CMI the MDSC to setup these EVPL services and the <lb/>MDSC understands the network configurations to request to the <lb/>underlying PNCs, as described in section 4.3.2. <lb/>4.4. Multi-function Access Links <lb/>Some physical links interconnecting the IP routers and the transport <lb/>network can be configured in different modes, e.g., as OTU2 trail or <lb/>STM-64 or 10GE physical links. <lb/>This configuration can be done a-priori by means which are outside <lb/>the scope of this document. In this case, these links will appear at <lb/>the MPI as links supporting only one mode (depending on the a-priori <lb/>configuration) and will be controlled at the MPI as discussed in <lb/>section 4.3: for example, a 10G multi-function access link can be <lb/>pre-configured as an OTU2 trail (section 4.3.1), a 10GE physical <lb/>link (section 4.3.2) or an STM-64 physical link (section 4.3.3). <lb/>It is also possible not to configure these links a-priori and let <lb/>the MDSC (or, in case of a single-domain service request, the PNC) <lb/>decide how to configure these links, based on the service <lb/>configuration. <lb/>For example, if the physical link between R1 and S3 is a <lb/>multi-functional access link while the physical links between R4 and <lb/>S6 and between R8 and S18 are STM-64 and 10GE physical links <lb/>respectively, it is possible to configure either an STM-64 Private <lb/>Line service between R1 and R4 or an EPL service between R1 and R8. <lb/>The traffic flow between R1 and R4 can be summarized as: <lb/>R1 [(PKT) -> STM-64], S3 [STM-64 -> (ODU2)], S5 [(ODU2)], <lb/>S6 [(ODU2) -> STM-64], R4 [STM-64 -> (PKT)] <lb/>The traffic flow between R1 and R8 can be summarized as: <lb/>R1 [(PKT) -> ETH], S3 [ETH -> (ODU2)], S1 [(ODU2)], <lb/>S2 [(ODU2)], S31 [(ODU2)), S33 [(ODU2)], S34 [(ODU2)], <lb/>S15 [(ODU2)], S18 [(ODU2) -> ETH], R8 [ETH -> (PKT)] <lb/>The CNC is capable to request at the CMI the setup either an STM-64 <lb/>Private Line service, between R1 and R4, or an EPL service, between <lb/>R1 and R8. <lb/></body> + + <note place="footnote">Busi, King, et al. <lb/>Expires March, 2020 <lb/></note> + + <page>[Page 20] <lb/></page> + + <note place="headnote">Internet-Draft Transport NBI Applicability-Statement <lb/>September 2019 <lb/></note> + + <body>The MDSC, based on the service being request, decides the network <lb/>configurations to request, at the MPIs, to its underlying PNCs, to <lb/>coordinate the setup of an end-to-end ODU2 connection, either <lb/>between nodes S3 and S6, or between nodes S3 and S18, including the <lb/>configuration of the adaptation functions on these edge nodes, and <lb/>in particular whether the multi-function access link between R1 and <lb/>S3 should operate as an STM-64 or as a 10GE physical link. <lb/>4.5. Protection and Restoration Configuration <lb/>Protection switching provides a pre-allocated survivability <lb/>mechanism, typically provided via linear protection methods and <lb/>would be configured to operate as 1+1 unidirectional (the most <lb/>common OTN protection method), 1+1 bidirectional or 1:n <lb/>bidirectional. This ensures fast and simple service survivability. <lb/>Restoration methods would provide the capability to reroute and <lb/>restore connectivity traffic around network faults, without the <lb/>network penalty imposed with dedicated 1+1 protection schemes. <lb/>This section describes only services which are protected with linear <lb/>protection. The description of services using dynamic restoration is <lb/>outside the scope of this document. <lb/>The MDSC needs to be capable of deciding the network configuration <lb/>to request different PNCs to coordinate the protection switching <lb/>configuration to support protected connectivity services described <lb/>in section 4.3. <lb/>Since in these service examples, switching within the transport <lb/>network domain is performed only in the OTN ODU layer. It may also <lb/>be assumed that protection switching within the transport network <lb/>domain is provided at the OTN ODU layer. <lb/>4.5.1. Linear Protection (end-to-end) <lb/>In order to protect the connectivity services described in section <lb/>4.3 from failures within the OTN multi-domain transport network, the <lb/>MDSC can decide to request its underlying PNCs to configure ODU2 <lb/>linear protection between the access nodes (e.g., nodes S3 and S18 <lb/>for the services setup between R1 and R8). <lb/></body> + + <note place="footnote">Busi, King, et al. <lb/>Expires March, 2020 <lb/></note> + + <page>[Page 21] <lb/></page> + + <note place="headnote">Internet-Draft Transport NBI Applicability-Statement <lb/>September 2019 <lb/></note> + + <body>It is assumed that the OTN linear protection is configured to with <lb/>1+1 unidirectional protection switching type, as defined in [ITU-T <lb/>G.808.1] and [ITU-T G.873.1], as well as in [RFC4427]. <lb/>In these scenarios, a working transport entity and a protection <lb/>transport entity, as defined in [ITU-T G.808.1], (or a working LSP <lb/>and a protection LSP, as defined in [RFC4427]) should be configured <lb/>in the data plane. <lb/>Two cases can be considered: <lb/>o In one case, the working and protection transport entities pass <lb/>through the same PNC domains: <lb/>Working transport entity: <lb/>S3, S1, S2, <lb/>S31, S33, S34, <lb/>S15, S18 <lb/>Protection transport entity: S3, S4, S8, <lb/>S32, <lb/>S12, S17, S18 <lb/>o In another case, the working and protection transport entities <lb/>can pass through different PNC domains: <lb/>Working transport entity: <lb/>S3, S5, S7, <lb/>S11, S12, S17, S18 <lb/>Protection transport entity: S3, S1, S2, <lb/>S31, S33, S34, <lb/>S15, S18 <lb/>The PNCs should be capable to report to the MDSC which is the active <lb/>transport entity, as defined in [ITU-T G.808.1], in the data plane. <lb/>Given the fast dynamic of protection switching operations in the <lb/>data plane (50ms recovery time), this reporting is not expected to <lb/>be in real-time. <lb/>It is also worth noting that with unidirectional protection <lb/>switching, e.g., 1+1 unidirectional protection switching, the active <lb/>transport entity may be different in the two directions. <lb/></body> + + <note place="footnote">Busi, King, et al. <lb/>Expires March, 2020 <lb/></note> + + <page>[Page 22] <lb/></page> + + <note place="headnote">Internet-Draft Transport NBI Applicability-Statement <lb/>September 2019 <lb/></note> + + <body>4.5.2. Segmented Protection <lb/>To protect the connectivity services defined in section 4.3 from <lb/>failures within the OTN multi-domain transport network, the MDSC can <lb/>decide to request its underlying PNCs to configure ODU2 linear <lb/>protection between the edge nodes of each domain. <lb/>For example, MDSC can request PNC1 to configure linear protection <lb/>between its edge nodes S3 and S2: <lb/>Working transport entity: <lb/>S3, S1, S2 <lb/>Protection transport entity: S3, S4, S8, S2 <lb/>MDSC can also request PNC2 to configure linear protection between <lb/>its edge nodes S15 and S18: <lb/>Working transport entity: <lb/>S15, S18 <lb/>Protection transport entity: S15, S12, S17, S18 <lb/>MDSC can also request PNC3 to configure linear protection between <lb/>its edge nodes S31 and S34: <lb/>Working transport entity: <lb/>S31, S33, S34 <lb/>Protection transport entity: S31, S32, S34 <lb/>4.6. Notification <lb/>To realize the topology update, service update and restoration <lb/>function, following notification type should be supported: <lb/>1. Object create <lb/>2. Object delete <lb/>3. Object state change <lb/>4. Alarm <lb/>There are three types of topology abstraction type defined in <lb/>section 4.2, the notification should also be abstracted. The PNC and <lb/>MDSC should coordinate together to determine the notification <lb/></body> + + <note place="footnote">Busi, King, et al. <lb/>Expires March, 2020 <lb/></note> + + <page>[Page 23] <lb/></page> + + <note place="headnote">Internet-Draft Transport NBI Applicability-Statement <lb/>September 2019 <lb/></note> + + <body>policy, such as when an intra-domain alarm occurred, the PNC may not <lb/>report the alarm but the service state change notification to the <lb/>MDSC. <lb/>4.7. Path Computation with Constraint <lb/>It is possible to define constraints to be taken into account during <lb/>path computation procedures (e.g., IRO/XRO). <lb/>For example, the CNC can request, at the CMI, an ODU transit <lb/>service, as described in section 4.3.1, between R1 and R8 with the <lb/>constraint to pass through the link from S2 to S31 (IRO), such that <lb/>a qualified path could be: <lb/>R1 [(PKT) -> ODU2], S3 [(ODU2]), S1 [(ODU2]), S2 [(ODU2]), <lb/>S31 [(ODU2)], S33 [(ODU2)], S34 [(ODU2)], <lb/>S15 [(ODU2)], S18 [(ODU2)], R8 [ODU2 -> (PKT)] <lb/>If the CNC instead requested to pass through the link from S8 to <lb/>S12, then the above path would not be qualified, while the following <lb/>would be: <lb/>R1 [(PKT) -> ODU2], S3[(ODU2]), S1 [(ODU2]), S2[(ODU2]), <lb/>S8 [(ODU2]), S12[(ODU2]), S15 [(ODU2]), S18[(ODU2]), R8 [ODU2 -> <lb/>(PKT)] <lb/>The mechanisms used by the CNC to provide path constraints at the <lb/>CMI are outside the scope of this document. It is assumed that the <lb/>MDSC can understand these constraints and take them into account in <lb/>its path computation procedures (which would decide at least which <lb/>domains and inter-domain links) and in the path constraints to <lb/>provide to its underlying PNCs, to be taken into account in the path <lb/>computation procedures implemented by the PNCs (with a more detailed <lb/>view of topology). <lb/>5. YANG Model Analysis <lb/>This section analyses how the IETF YANG models can be used at the <lb/>MPIs, between the MDSC and the PNCs, to support the scenarios <lb/>described in section 4. <lb/>The YANG models described in [ACTN-YANG] are assumed to be used at <lb/>the MPI. <lb/></body> + + <note place="footnote">Busi, King, et al. <lb/>Expires March, 2020 <lb/></note> + + <page>[Page 24] <lb/></page> + + <note place="headnote">Internet-Draft Transport NBI Applicability-Statement <lb/>September 2019 <lb/></note> + + <body>Section 5.1 describes the different topology abstractions provided <lb/>to the MDSC by each PNC via its own MPI. <lb/>Section 5.2 describes how the MDSC can request different PNCs, via <lb/>their own MPIs, the network configuration needed to setup the <lb/>different services described in section 4.3. <lb/>Section 5.3 describes how the protection scenarios can be deployed, <lb/>including end-to-end protection and segment protection, for both <lb/>intra-domain and inter-domain scenario. <lb/>5.1. YANG Models for Topology Abstraction <lb/>Each PNC reports its respective OTN abstract topology to the MDSC, <lb/>as described in section 4.2, using the Topology YANG models, defined <lb/>in [RFC8345], with the TE Topology YANG augmentations, provided in <lb/>[TE-TOPO], and the OTN technology-specific YANG augmentations, <lb/>defined in [OTN-TOPO]. <lb/>The [OTN-TOPO] model allows reporting within the OTN abstract <lb/>topology also the access links which are capable of supporting the <lb/>transparent client layers, defined in section 4.3.3 and in <lb/>[CLIENT-SIGNAL]. These links can also be multi-function access links <lb/>that can be configured as a transparent client physical links (e.g., <lb/>STM-64 physical link) as an OTUk trail. <lb/>In order to support the EPL and EVPL services, described in sections <lb/>4.3.2 and 4.3.4, the access links, which are capable to be <lb/>configured as Ethernet physical links, are reported by each PNC <lb/>within its respective Ethernet abstract topology, using the Topology <lb/>YANG models, defined in [RFC8345], with the TE Topology YANG <lb/>augmentations, defined in [TE-TOPO], and the Ethernet client <lb/>technology-specific YANG augmentations, defined in [CLIENT-TOPO]. <lb/>These links can also be multi-function access links that can be <lb/>configured as an Ethernet physical link or as an OTUk trail and/or <lb/>as transparent client physical links (e.g., STM-64 physical link). <lb/>In this case, these physical access links are represented in both <lb/>the OTN and Ethernet abstract topologies. <lb/>It is worth noting that in the network scenarios analyzed in this <lb/>document (where switching is performed only in the ODU layer), the <lb/>Ethernet abstract topologies reported by the PNCs describes only the <lb/>Ethernet client access links: no Ethernet TE switching capabilities <lb/>are reported in these Ethernet abstract topologies. <lb/></body> + + <note place="footnote">Busi, King, et al. <lb/>Expires March, 2020 <lb/></note> + + <page>[Page 25] <lb/></page> + + <note place="headnote">Internet-Draft Transport NBI Applicability-Statement <lb/>September 2019 <lb/></note> + + <body>5.1.1. Domain 1 Black Topology Abstraction <lb/>PNC1 provides the required black topology abstraction, as described <lb/>in section 4.2. It exposes at MPI1 to the MDSC, two TE Topology <lb/>instances with only one TE node each. <lb/>The first TE Topology instance reports the domain 1 OTN abstract <lb/>topology view (MPI1 OTN Topology), using the OTN technology-specific <lb/>augmentations [OTN-TOPO], with only one abstract TE node (i.e., AN1) <lb/>and only inter-domain and access abstract TE links (which represent <lb/>the inter-domain physical links and the access physical links which <lb/>can support ODU and/or transparent client layers), as shown in <lb/>Figure 3 below. <lb/>................................... <lb/>: <lb/>: <lb/>: <lb/>+-----------------+ <lb/>: <lb/>: <lb/>| <lb/>| <lb/>: <lb/>(R1)----------| <lb/>|----------(S31) <lb/>: AN1-1 | <lb/>| AN1-7 : <lb/>: <lb/>| <lb/>| <lb/>: <lb/>(R3)----------| <lb/>| <lb/>: <lb/>: AN1-2 | <lb/>AN1 <lb/>| <lb/>: <lb/>: <lb/>| <lb/>| <lb/>: <lb/>(R4)----------| <lb/>|----------(S32) <lb/>: AN1-3 | <lb/>| AN1-6 : <lb/>: <lb/>| <lb/>| <lb/>: <lb/>: <lb/>+-----------------+ <lb/>: <lb/>: <lb/>| <lb/>| <lb/>: <lb/>: <lb/>AN1-4 | <lb/>| AN1-5 <lb/>: <lb/>:..........|..........|...........: <lb/>| <lb/>| <lb/>(S11) <lb/>(S12) <lb/>Figure 3 -OTN Abstract Topology exposed at MPI1 (MPI1 OTN Topology) <lb/>The second TE Topology instance reports the domain 1 Ethernet <lb/>abstract topology view (MPI1 ETH Topology), using the Ethernet <lb/>technology-specific augmentations [CLIENT-TOPO], with only one <lb/>abstract TE node (i.e., AN1) and only access abstract TE links <lb/>(which represent the access physical links which can support <lb/>Ethernet client layers), as shown in Figure 4 below. <lb/></body> + + <note place="footnote">Busi, King, et al. <lb/>Expires March, 2020 <lb/></note> + + <page>[Page 26] <lb/></page> + + <note place="headnote">Internet-Draft Transport NBI Applicability-Statement <lb/>September 2019 <lb/></note> + + <body>................................... <lb/>: <lb/>: <lb/>: <lb/>+-----------------+ <lb/>: <lb/>: <lb/>| <lb/>| <lb/>: <lb/>(R1)----------| <lb/>| <lb/>: <lb/>: AN1-1 | <lb/>| <lb/>: <lb/>: <lb/>| <lb/>| <lb/>: <lb/>(R2)----------| <lb/>| <lb/>: <lb/>: AN1-8 | <lb/>AN1 <lb/>| <lb/>: <lb/>: <lb/>| <lb/>| <lb/>: <lb/>: <lb/>| <lb/>| <lb/>: <lb/>: <lb/>| <lb/>| <lb/>: <lb/>: <lb/>| <lb/>| <lb/>: <lb/>: <lb/>+-----------------+ <lb/>: <lb/>: <lb/>: <lb/>:.................................: <lb/>Figure 4 -ETH Abstract Topology exposed at MPI1 (MPI1 ETH Topology) <lb/>As described in section 4.1, it is assumed that the OTU4 trails on <lb/>the inter-domain physical links (e.g., the link between S2 and S31) <lb/>are pre-configured and exposed as external TE Links, within the MPI1 <lb/>OTN topology (e.g., the external TE Link terminating on AN1-7 TE <lb/>Link Termination Point (LTP) abstracting the OTU4 trail between S2 <lb/>and S31). <lb/>In order to analyze the service scenarios of sections 4.3 and 4.4: <lb/>o the access link between S3 and R1 is assumed to be a <lb/>multi-function access link, which can be configured as an OTU2 <lb/>trail or as an STM-64 or a 10GE physical link; <lb/>o the access link between S6 and R2 is assumed to be pre-configured <lb/>as a 10GE physical link, up to the MAC layer; <lb/>o the access link between S6 and R3 is assumed to be a <lb/>multi-function access link which can be configured as an OTU2 <lb/>trail or as an STM-64 physical link; <lb/>o the access link connected to router R4 is assumed to be <lb/>pre-configured as an STM-64 physical link. <lb/></body> + + <note place="footnote">Busi, King, et al. <lb/>Expires March, 2020 <lb/></note> + + <page>[Page 27] <lb/></page> + + <note place="headnote">Internet-Draft Transport NBI Applicability-Statement <lb/>September 2019 <lb/></note> + + <body>Therefore PNC1 exports at MPI1 the following external TE Links, <lb/>within the MPI1 OTN topology: <lb/>o two abstract TE Links, terminating on LTP AN1-1 and AN1-2 <lb/>respectively, abstracting the physical access link between S3 and <lb/>R1 and the access link between S6 and R3 respectively, reporting <lb/>that they can support STM-64 client signals as well as ODU2 <lb/>connections; <lb/>o one abstract TE Link, terminating on LTP AN1-3, abstracting the <lb/>physical access link between S6 and R4, reporting that it can <lb/>support STM-64 client signals but no ODU2 connections. <lb/>The information about the 10GE access link between S6 and R2 as well <lb/>as the fact that the access link between S3 and R1 can also be <lb/>configured as a 10GE link cannot be exposed by PNC1 within the MPI1 <lb/>OTN topology. <lb/>Therefore, PNC1 exports at MPI1, within the MPI1 ETH topology, two <lb/>abstract TE Links, terminating on LTP AN1-1 and AN1-8 respectively, <lb/>abstracting the physical access link between S3 and R1 and the <lb/>access link between S6 and R2 respectively, reporting that they can <lb/>support Ethernet client signal with port-based and VLAN-based <lb/>classifications. The PNC1 native topology would represent the <lb/>physical network topology of the domain controlled by the PNC, as <lb/>shown in Figure 5. <lb/></body> + + <note place="footnote">Busi, King, et al. <lb/>Expires March, 2020 <lb/></note> + + <page>[Page 28] <lb/></page> + + <note place="headnote">Internet-Draft Transport NBI Applicability-Statement <lb/>September 2019 <lb/></note> + + <body>.................................. <lb/>: <lb/>: <lb/>: <lb/>Physical Topology @ PNC1 <lb/>: <lb/>: <lb/>: <lb/>: <lb/>+----+ <lb/>+----+ <lb/>: <lb/>: <lb/>| <lb/>|S1-1 <lb/>| <lb/>|S2-3: <lb/>: <lb/>| S1 |--------| S2 |-------(S31) <lb/>: <lb/>+----+ <lb/>S2-1+----+ <lb/>: <lb/>: <lb/>S1-2/ <lb/>|S2-2 : <lb/>: <lb/>S3-4/ <lb/>| <lb/>: <lb/>: <lb/>+----+ <lb/>+----+ <lb/>| <lb/>: <lb/>: <lb/>| <lb/>|3 1| <lb/>| <lb/>| <lb/>: <lb/>(R1)-------| S3 |---| S4 | <lb/>| <lb/>: <lb/>:S3-1+----+ <lb/>+----+ <lb/>| <lb/>: <lb/>: <lb/>S3-2 \ <lb/>\S4-2 <lb/>| <lb/>: <lb/>: <lb/>\S5-1 <lb/>\ <lb/>| <lb/>: <lb/>: <lb/>+----+ <lb/>\ <lb/>| <lb/>: <lb/>: <lb/>| <lb/>| <lb/>\S8-2| <lb/>: <lb/>: <lb/>| S5 | <lb/>\ <lb/>| <lb/>: <lb/>: <lb/>+----+ <lb/>\ |S8-1 : <lb/>(R2)--------2/ <lb/>\3 <lb/>\ | <lb/>: <lb/>:S6-1 \ /5 <lb/>\1 <lb/>\| <lb/>: <lb/>: <lb/>+----+ <lb/>+----+ <lb/>+----+ <lb/>: <lb/>: <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| <lb/>|S8-5: <lb/>(R3)-------| S6 |---| S7 |---| S8 |-------(S32) <lb/>:S6-2+----+4 2+----+4 3+----+ <lb/>: <lb/>: <lb/>/ <lb/>| <lb/>| <lb/>: <lb/>(R3)--------<lb/>S7-3 | <lb/>| S8-4 : <lb/>:S6-3 <lb/>| <lb/>| <lb/>: <lb/>:...............|........|.......: <lb/>| <lb/>| <lb/>(S11) <lb/>(S12) <lb/>Figure 5 -Physical Topology controlled by PNC1 <lb/>The PNC1 native topology is not exposed and therefore it under PNC <lb/>responsibility to abstract the whole domain physical topology as a <lb/>single TE node and to maintain a mapping between the LTPs exposed at <lb/>MPI abstract topologies and the associated physical interfaces <lb/>controlled by the PNC: <lb/></body> + + <note place="footnote">Busi, King, et al. <lb/>Expires March, 2020 <lb/></note> + + <page>[Page 29] <lb/></page> + + <note place="headnote">Internet-Draft Transport NBI Applicability-Statement <lb/>September 2019 <lb/></note> + + <body>Physical Interface <lb/>OTN Topology LTP <lb/>ETH Topology LTP <lb/>(Figure 5) <lb/>(Figure 3) <lb/>(Figure 4) <lb/>S2-3 <lb/>AN1-7 <lb/>S3-1 <lb/>AN1-1 <lb/>AN1-1 <lb/>S6-1 <lb/>AN1-8 <lb/>S6-2 <lb/>AN1-2 <lb/>S6-3 <lb/>AN1-3 <lb/>S7-3 <lb/>AN1-4 <lb/>S8-4 <lb/>AN1-5 <lb/>S8-5 <lb/>AN1-6 <lb/> Appendix B.1.1 provides the detailed JSON code example ("mpi1-otn-<lb/>topology.json") describing how the MPI1 ODU Topology is reported by <lb/>the PNC1, using the [RFC8345], [TE-TOPO] and [OTN-TOPO] YANG models, <lb/>at MPI1. <lb/>It is worth noting that this JSON code example does not provide all <lb/>the attributes defined in the relevant YANG models, including: <lb/>o YANG attributes which are outside the scope of this document are <lb/>not shown; <lb/>o The attributes describing the set of label values that are <lb/>available at the inter-domain links (label-restriction container) <lb/>are also not shown to simplify the JSON code example; <lb/>o The comments describing the rationale for not including some <lb/>attributes in this JSON code example even if in the scope of this <lb/>document are identified with the prefix "// __COMMENT" and <lb/>included only in the first object instance (e.g., in the Access <lb/>Link from the AN1-1 description or in the AN1-1 LTP description). <lb/>5.1.2. Domain 2 Black Topology Abstraction <lb/>PNC2 provides the required black topology abstraction, as described <lb/>in section 4.2, to expose to the MDSC, at MPI2, two TE Topology <lb/>instances with only one TE node each: <lb/>o the first instance reports the domain 2 OTN abstract topology <lb/>view (MPI2 OTN Topology), with only one abstract node (i.e., AN2) <lb/>and only inter-domain and access abstract TE links (which <lb/>represent the inter-domain physical links and the access physical <lb/>links which can support ODU and/or transparent client layers); <lb/></body> + + <note place="footnote">Busi, King, et al. <lb/>Expires March, 2020 <lb/></note> + + <page>[Page 30] <lb/></page> + + <note place="headnote">Internet-Draft Transport NBI Applicability-Statement <lb/>September 2019 <lb/></note> + + <body>o the instance reports the domain 2 Ethernet abstract topology view <lb/> (MPI2 ETH Topology), with only one abstract TE node (i.e., AN2) <lb/>and only access abstract TE links (which represent the access <lb/>physical links which can support Ethernet client layers). <lb/>5.1.3. Domain 3 White Topology Abstraction <lb/>PNC3 provides the required white topology abstraction, as described <lb/>in section 4.2, to expose to the MDSC, at MPI3, two TE Topology <lb/>instances with multiple TE nodes, one for each physical node: <lb/>o the first instance reports the domain 3 OTN topology view (MPI3 <lb/>OTN Topology), with four TE nodes, which represent the four <lb/>physical nodes (i.e. S31, S32, S33 and S34), and abstract TE <lb/>links, which represent the inter-domain and internal physical <lb/>links; <lb/>o the second instance reports the domain 3 Ethernet abstract <lb/>topology view (MPI3 ETH Topology), with only two TE nodes, which <lb/>represent the two edge physical nodes (i.e., S31 and S33) and <lb/>only the two access TE links which represent the access physical <lb/>links. <lb/>5.1.4. Multi-domain Topology Merging <lb/>As assumed at the beginning of this section, MDSC does not have any <lb/>knowledge of the topologies of each domain until each PNC reports <lb/>its own abstract topologies, so the MDSC needs to merge together <lb/>these abstract topologies, provided by different PNCs, to build its <lb/>own topology view of the multi-domain network (MDSC multi-domain <lb/>native topology), as described in section 4.3 of [TE-TOPO]. <lb/>Given the topologies reported from multiple PNCs, the MDSC need to <lb/>merge them into its multi-domain native topology. The topology of <lb/>each domain may be in an abstracted shape (refer to section 5.2 of <lb/>[RFC8453] for a different level of abstraction), while the inter-<lb/>domain link information must be complete and fully configured by the <lb/>MDSC. <lb/>The inter-domain link information is reported to the MDSC by the two <lb/>PNCs, controlling the two ends of the inter-domain link. <lb/>The MDSC needs to understand how to merge together these inter-<lb/>domain links. <lb/></body> + + <note place="footnote">Busi, King, et al. <lb/>Expires March, 2020 <lb/></note> + + <page>[Page 31] <lb/></page> + + <note place="headnote">Internet-Draft Transport NBI Applicability-Statement <lb/>September 2019 <lb/></note> + + <body>One possibility is to use the plug-id information, defined in [TE-<lb/> TOPO]: two inter-domain TE links, within two different MPI abstract <lb/>topologies, terminating on two LTPs reporting the same plug-id value <lb/>can be merged as a single intra-domain link, within any MDSC native <lb/>topology. <lb/>The value of the reported plug-id information can be either assigned <lb/>by a central network authority, and configured within the two PNC <lb/>domains. Alternatively, it may be discovered using an automatic <lb/>discovery mechanisms (e.g., LMP-based, as defined in [RFC6898]). <lb/>In case the plug-id values are assigned by a central authority, it <lb/>is under the central authority responsibility to assign unique <lb/>values. <lb/>In case the plug-id values are automatically discovered, the <lb/>information discovered by the automatic discovery mechanisms needs <lb/>to be encoded as a bit string within the plug-id value. This <lb/>encoding is implementation specific, but the encoding rules need to <lb/>be consistent across all the PNCs. <lb/>In case of co-existence within the same network of multiple sources <lb/>for the plug-id (e.g., central authority and automatic discovery or <lb/>even different automatic discovery mechanisms), it is needed that <lb/>the plug-id namespace is partitioned to avoid that different sources <lb/>assign the same plug-id value to different inter-domain links. Also, <lb/>the encoding of the plug-id namespace within the plug-id value is <lb/>implementation specific and will need to be consistent across all <lb/>the PNCs. <lb/>This document assumes that the plug-id is assigned by a central <lb/>authority, with the first octet set to 0x00 to represent the central <lb/>authority namespace. The configuration method used, within each PNC <lb/>domain, are outside the scope of this document. <lb/>Based on the plug-id values, the MDSC can merge together the <lb/>abstract topologies exposed by the underlying PNCs, as described in <lb/>sections 5.1.1, 5.1.2 and 5.1.3 above, into its multi-domain native <lb/>TE topology as shown in Figure 6. <lb/></body> + + <note place="footnote">Busi, King, et al. <lb/>Expires March, 2020 <lb/></note> + + <page>[Page 32] <lb/></page> + + <note place="headnote">Internet-Draft Transport NBI Applicability-Statement <lb/>September 2019 <lb/></note> + + <body>........................ <lb/> : <lb/>: <lb/>: <lb/>Network domain 1 <lb/>: <lb/>............. <lb/>: <lb/>Black Topology <lb/>: <lb/>: <lb/>: <lb/>: <lb/>Abstraction <lb/>: <lb/>: Network : <lb/>: AN1-1 <lb/>: <lb/>: domain 3 : <lb/>(R1)------------+ <lb/>: <lb/>: (White) : <lb/>: <lb/>\ <lb/>+--------------+ <lb/>: <lb/>(R2)-----------+ + / <lb/>: <lb/>: <lb/>\ <lb/>: <lb/>: <lb/>\| / <lb/>: <lb/>: <lb/>\ <lb/>: <lb/>(R3)-----------AN1 --+ <lb/>: <lb/>: <lb/>S31 -----(R5) <lb/>: <lb/>/|\ <lb/>\ <lb/>: <lb/>: <lb/>/ <lb/>\ <lb/>: <lb/>: <lb/>(R4)-----------+ | \ <lb/>+---------S32 <lb/>S33 --(R6) <lb/>: <lb/>| \ <lb/>: <lb/>:/ \ <lb/>/ <lb/>: <lb/>: <lb/>| <lb/>+---+ <lb/>: <lb/>/ <lb/>S34 <lb/>: <lb/>:..........|.......|...: /: <lb/>/ <lb/>: <lb/>| <lb/>| <lb/>/ :../........: <lb/>| <lb/>| <lb/>/ <lb/>/ <lb/>...........|.......|.../..../.... <lb/>: <lb/>| <lb/>| / <lb/>/ <lb/>: <lb/>: Network | <lb/>+ / <lb/>/ <lb/>: <lb/>: domain 2 | <lb/>/ / <lb/>/ <lb/>: <lb/>: <lb/>| <lb/>/ / <lb/>/ <lb/>: <lb/>: <lb/>| <lb/>+ / +--+ <lb/>: <lb/>: <lb/>| <lb/>|/ / <lb/>: <lb/>: Black <lb/>+---AN2 ---------------(R7) <lb/>: Topology <lb/>| | <lb/>AN2-1 <lb/>: <lb/>: Abstraction <lb/>| +----------------(R8) <lb/>: <lb/>| <lb/>: <lb/>: <lb/>+------------------(R9) <lb/>: <lb/>: <lb/>:...............................: <lb/>Figure 6 -Multi-domain Abstract Topology controlled by an MDSC <lb/>5.2. YANG Models for Service Configuration <lb/>The service configuration procedure is assumed to be initiated (step <lb/>1 in Figure 7) at the CMI from CNC to MDSC. Analysis of the CMI <lb/>models is (e.g., L1CSM, L2SM, VN) is outside the scope of this <lb/>document. <lb/></body> + + <note place="footnote">Busi, King, et al. <lb/>Expires March, 2020 <lb/></note> + + <page>[Page 33] <lb/></page> + + <note place="headnote">Internet-Draft Transport NBI Applicability-Statement <lb/>September 2019 <lb/></note> + + <body>As described in section 4.3, it is assumed that the CMI YANG models <lb/> provide all the information that allows the MDSC to understand that <lb/>it needs to coordinate the setup of a multi-domain ODU data plane <lb/>connection (which can be either an end-to-end connection or a <lb/>segment connection) and, when needed, also the configuration of the <lb/>adaptation functions in the edge nodes belonging to different <lb/>domains. <lb/>| <lb/>| {1} <lb/>V <lb/>----------------<lb/>| <lb/>{2} | <lb/>| {3} MDSC <lb/>| <lb/>| <lb/>| <lb/>----------------<lb/>^ <lb/>^ <lb/>^ <lb/>{3.1} | <lb/>| <lb/>| <lb/>+---------+ <lb/>|{3.2} | <lb/>| <lb/>| <lb/>+----------+ <lb/>| <lb/>V <lb/>| <lb/>| <lb/>----------<lb/>|{3.3} <lb/>| <lb/>| <lb/>PNC2 <lb/>| <lb/>| <lb/>| <lb/>----------<lb/>| <lb/>| <lb/>^ <lb/>| <lb/>V <lb/>| {4.2} <lb/>| <lb/>----------<lb/>V <lb/>| <lb/>| <lb/>PNC1 <lb/>| <lb/>-----<lb/>V <lb/>----------<lb/>(Network) <lb/>----------<lb/>^ <lb/>( Domain 2) <lb/>| <lb/>PNC3 <lb/>| <lb/>| {4.1} <lb/>( <lb/>_) <lb/>----------<lb/>V <lb/>( <lb/>) <lb/>^ <lb/>-----<lb/>C==========D <lb/>| {4.3} <lb/>(Network) <lb/>/ ( <lb/>) \ <lb/>V <lb/>( Domain 1) / <lb/>-----<lb/>\ <lb/>-----<lb/>( <lb/>)/ <lb/>\ <lb/>(Network) <lb/>A===========B <lb/>\ ( Domain 3) <lb/>/ ( <lb/>) <lb/>\( <lb/>) <lb/>AP-1 <lb/>( <lb/>) <lb/>X===========Z <lb/>-----<lb/>( <lb/>) \ <lb/>( <lb/>) <lb/>AP-2 <lb/>-----<lb/>Figure 7 -Multi-domain Service Setup <lb/></body> + + <note place="footnote">Busi, King, et al. <lb/>Expires March, 2020 <lb/></note> + + <page>[Page 34] <lb/></page> + + <note place="headnote">Internet-Draft Transport NBI Applicability-Statement <lb/>September 2019 <lb/></note> + + <body>As an example, the objective in this section is to configure a <lb/> transport service between R1 and R8, such as one of the services <lb/>described in section 4.3. The inter-domain path is assumed to be R1 <lb/><-> S3 <-> S1 <-> S2 <-> S31 <-> S33 <-> S34 <->S15 <-> S18 <-> R8 <lb/>(see the physical topology in Figure 1). <lb/>According to the different client signal types, different <lb/>adaptations can be required to be configured at the edge nodes <lb/>(i.e., S3 and S18). <lb/>After receiving such request, MDSC determines the domain sequence, <lb/>i.e., domain 1 <-> domain 3 <-> domain 2, with corresponding PNCs <lb/>and the inter-domain links (step 2 in Figure 7). <lb/>As described in [PATH-COMPUTE], the domain sequence can be <lb/>determined by running the MDSC own path computation on the MDSC <lb/>native topology, defined in section 5.1.4, if and only if the MDSC <lb/>has enough topology information. Otherwise, the MDSC can send path <lb/>computation requests to the different PNCs (steps 2.1, 2.2 and 2.3 <lb/>in Figure 7) and use this information to determine the optimal path <lb/>on its internal topology and therefore the domain sequence. <lb/>The MDSC will then decompose the tunnel request into a few tunnel <lb/>segments via tunnel models (both technology agnostic TE tunnel model <lb/>and OTN tunnel model), and request different PNCs to setup each <lb/>intra-domain tunnel segment (steps 3, 3.1, 3.2 and 3.3 in Figure 7). <lb/>The MDSC will take care of the configuration of both the intra-<lb/>domain tunnel segment and inter-domain tunnel via corresponding MPI <lb/>(via TE tunnel model and OTN tunnel model) through all the PNCs <lb/>controlling the domains selected during path computation. More <lb/>specifically, for the inter-domain tunnel hand-off, taking into <lb/>account that the inter-domain links are all OTN links, the list of <lb/>timeslots and the TPN value assigned to that ODUk connection at the <lb/>inter-domain link needs to be configured by the MDSC. <lb/>In any case, the access link configuration is done only on the PNCs <lb/>that control the access links (e.g., PNC-1 and PNC-3) and not on the <lb/>PNCs of transit domain(s) (e.g., PNC-2). An access link will be <lb/>configured by MDSC after the OTN tunnel is set up. <lb/>Access configuration will vary and will be dependent on each type of <lb/>service. Further discussion and examples are provided in the <lb/>following sub-sections. <lb/></body> + + <note place="footnote">Busi, King, et al. <lb/>Expires March, 2020 <lb/></note> + + <page>[Page 35] <lb/></page> + + <note place="headnote">Internet-Draft Transport NBI Applicability-Statement <lb/>September 2019 <lb/></note> + + <body>5.2.1. ODU Transit Service <lb/> In this scenario, described in section 4.3.1, the physical access <lb/>links are configured as 10G OTN links and, as described in section <lb/>5.1, reported by each PNC as TE Links within the OTN abstract <lb/>topologies they expose to the MDSC. <lb/>To setup this IP link, between R1 and R8, the CNC requests, at the <lb/>CMI, the MDSC to setup an ODU transit service. <lb/>From its native topology, shown in Figure 6, the MDSC understands, <lb/>by means which are outside the scope of this document, that R1 is <lb/>attached to the access link terminating on AN1-1 LTP in the MPI1 OTN <lb/>Abstract Topology (Figure 3), exposed by PNC1, and that R8 is <lb/>attached to the access link terminating on AN2-1 LTP in the MPI2 <lb/>Abstract Topology, exposed by PNC2. <lb/>MDSC then performs multi-domain path computation (step 2 in Figure <lb/>7) and requests PNC1, PNC2 and PNC3, at MPI1, MPI2 and MPI3 <lb/>respectively, to setup ODU2 (Transit Segment) Tunnels within the OTN <lb/>Abstract Topologies they expose (MPI1 OTN Abstract Topology, MPI2 <lb/>OTN Abstract Topology and MPI3 OTN Abstract Topology, respectively). <lb/>MDSC requests, at MPI1, PNC1 to setup an ODU2 (Transit Segment) <lb/>Tunnel with one primary path between AN-1 and AN1-7 LTPs, within the <lb/>MPI1 OTN Abstract Topology (Figure 4), using the TE Tunnel YANG <lb/>model, defined in [TE-TUNNEL], with the OTN technology-specific <lb/>augmentations, defined in [OTN-TUNNEL]: <lb/>o Source and Destination TTPs are not specified (since it is a <lb/>Transit Tunnel) <lb/>o Ingress and egress points are indicated in the route-object-<lb/>include-exclude list of the explicit-route-objects of the primary <lb/>path: <lb/>o The first element references the access link terminating on <lb/>AN1-1 LTP <lb/>o The last two element reference respectively the inter-domain <lb/>link terminating on AN1-7 LTP and the data plane resources <lb/>(i.e., the list of timeslots and the TPN) used by the ODU2 <lb/>connection over that link. <lb/></body> + + <note place="footnote">Busi, King, et al. <lb/>Expires March, 2020 <lb/></note> + + <page>[Page 36] <lb/></page> + + <note place="headnote">Internet-Draft Transport NBI Applicability-Statement <lb/>September 2019 <lb/></note> + + <body>The configuration of the timeslots used by the ODU2 connection on <lb/> the internal links within a PNC domain (i.e., on the internal links <lb/>within domain1) is outside the scope of this document since it is a <lb/>matter of the PNC domain internal implementation. <lb/>However, the configuration of the timeslots used by the ODU2 <lb/>connection at the transport network domain boundaries (e.g., on the <lb/>inter-domain links) needs to take into account the timeslots <lb/>available on physical nodes belonging to different PNC domains <lb/>(e.g., on node S2 within PNC1 domain and on node S31 within PNC3 <lb/>domain). <lb/>The MDSC, when coordinating the setup of a multi-domain ODU <lb/>connection, also configures the data plane resources (i.e., the list <lb/>of timeslots and the TPN) to be used on the inter-domain links. The <lb/>MDSC can know the timeslots which are available on the physical OTN <lb/>nodes terminating the inter-domain links (e.g., S2 and S31) from the <lb/>OTN Topology information exposed, at the MPIs, by the PNCs <lb/>controlling the OTN physical nodes (e.g., PNC1 and PNC3 controlling <lb/>the physical nodes S2 and S31 respectively). <lb/>Appendix B.2.1 provides the detailed JSON code ("mpi1-odu2-service-<lb/>config.json") describing how the setup of this ODU2 (Transit <lb/>Segment) Tunnel can be requested by the MDSC, using the [TE-TUNNEL] <lb/>and [OTN-TUNNEL] YANG models at MPI1. <lb/>PNC1 knows, as described in the mapping table in Section 5.1.1, that <lb/>AN-1 and AN1-7 LTPs within the MPI1 OTN Abstract Topology it exposes <lb/>at MPI1 correspond to the S3-1 and S2-3 LTPs, respectively, within <lb/>its native topology. Therefore it performs path computation, for an <lb/>ODU2 connection between these LTPs within its native topology, and <lb/>sets up the ODU2 cross-connections within the physical nodes S3, S1 <lb/>and S2, as shown in section 4.3.1. <lb/>Since the R1-S3 access link is a multi-function access link, PNC1 <lb/>also configures the OTU2 trail before setting up the ODU2 <lb/>cross-connection in node S3. <lb/>As part of the OUD2 cross-connection configuration in node S2, PNC1 <lb/>configures the data plane resources (i.e., the list of timeslots and <lb/>the TPN), to be used by this ODU2 connection on the S2-S31 <lb/>inter-domain link, as requested by the MDSC. <lb/></body> + + <note place="footnote">Busi, King, et al. <lb/>Expires March, 2020 <lb/></note> + + <page>[Page 37] <lb/></page> + + <note place="headnote">Internet-Draft Transport NBI Applicability-Statement <lb/>September 2019 <lb/></note> + + <body>Following similar requests from MDSC to setup ODU2 (Transit Segment) <lb/> Tunnels within the OTN Abstract Topologies they expose, PNC2 then <lb/>sets up ODU2 cross-connections on nodes S31 and S33 while PNC3 sets <lb/>up ODU2 cross-connections on nodes S15 and S18, as shown in section <lb/>4.3.1. PNC2 also configures the OTU2 trail on the S18-R8 <lb/>multi-function access link. <lb/>5.2.1.1. Single Domain Example <lb/>To setup an ODU2 end-to-end connection, supporting an IP link, <lb/>between R1 and R3, the CNC requests, at the CMI, the MDSC to setup <lb/>an ODU transit service. <lb/>Following the procedures described in section 5.2.1, MDSC requests <lb/>only PCN1 to setup the ODU2 (Transit Segment) Tunnel between the <lb/>access links terminating on AN-1 and AN1-2 LTPs within the MPI1 <lb/>Abstract Topology and PNC1 sets up ODU2 cross-connections on nodes <lb/>S3, S5 and S6, as shown in section 4.3.1. PNC1 also configures the <lb/>OTU2 trails on the R1-S3 and R3-S6 multi-function access links. <lb/>5.2.2. EPL over ODU Service <lb/>In this scenario, described in section 4.3.2, the access links are <lb/>configured as 10GE Links and, as described in section 5.1, reported <lb/>by each PNC as TE Links within the ETH abstract topologies they <lb/>expose to the MDSC. <lb/>To setup this IP link, between R1 and R8, the CNC requests, at the <lb/>CMI, the MDSC to setup an EPL service. <lb/>From its native topology, shown in Figure 6, the MDSC understands, <lb/>by means which are outside the scope of this document, that R1 is <lb/>attached to the access link terminating on AN1-1 LTP in the MPI1 ETH <lb/>Abstract Topology, exposed by PNC1, and that R8 is attached to the <lb/>access link terminating on AN2-1 LTP in the MPI2 ETH Abstract <lb/>Topology, exposed by PNC2. <lb/>The MDSC also understands that it needs to coordinate the setup of a <lb/>multi-domain ODU2 Tunnel between the TTPs, abstracting nodes S3 and <lb/>S18 within the OTN Abstract Topologies exposed by PNC1 and PNC2, <lb/>respectively. <lb/>MDSC then performs multi-domain path computation (step 2 in Figure <lb/>7) and then requests: <lb/></body> + + <note place="footnote">Busi, King, et al. <lb/>Expires March, 2020 <lb/></note> + + <page>[Page 38] <lb/></page> + + <note place="headnote">Internet-Draft Transport NBI Applicability-Statement <lb/>September 2019 <lb/></note> + + <body>o PNC1, at MPI1, to setup an ODU2 (Head Segment) Tunnel within the <lb/> MPI1 OTN Abstract Topology; <lb/>o PNC1, at MPI1, to steer the Ethernet client traffic from/to AN1-1 <lb/>LTP, within the MPI1 ETH Abstract Topology, thought that ODU2 <lb/>(Head Segment) Tunnel; <lb/>o PNC3, at MPI3, to setup an ODU2 (Transit Segment) Tunnel within <lb/>the MPI3 OTN Abstract Topology; <lb/>o PNC2, at MPI2, to setup ODU2 (Tail Segment) Tunnel within the <lb/>MPI2 OTN Abstract Topology; <lb/>o PNC2, at MPI2, to steer the Ethernet client traffic to/from AN2-1 <lb/>LTP, within the MPI2 ETH Abstract Topology, through that ODU2 <lb/>(Tail Segment) Tunnel. <lb/>MDSC requests, at MPI1, PNC1 to setup an ODU2 (Head Segment) Tunnel <lb/>with one primary path between the source TTP and AN1-7 LTP, within <lb/>the MPI1 OTN Abstract Topology (Figure 4), using the TE Tunnel YANG <lb/>model, defined in [TE-TUNNEL], with the OTN technology-specific <lb/>augmentations, defined in [OTN-TUNNEL]: <lb/>o Only the Source TTP is specified (since it is a Head Segment <lb/>Tunnel): therefore the Destination TTP is not specified <lb/>o The egress point in indicated in the route-object-include-exclude <lb/>list of the explicit-route-objects of the primary path: <lb/>o The last two element reference respectively the inter-domain <lb/>link terminating on AN1-7 LTP and the data plane resources <lb/>(i.e., the list of timeslots and the TPN) used by the ODU2 <lb/>connection over that link. <lb/>Appendix B.2.2 provides the detailed JSON code ("mpi1-odu2-tunnel-<lb/>config.json") describing how the setup of this ODU2 (Head Segment) <lb/>Tunnel can be requested by the MDSC, using the [TE-TUNNEL] and [OTN-<lb/>TUNNEL] YANG models at MPI1. <lb/>MDSC requests, at MPI1, PNC1 to steer the Ethernet client traffic <lb/>from/to AN1-2 LTP, within the MPI1 ETH Abstract Topology (Figure 4), <lb/>thought the MPI1 ODU2 (Head Segment) Tunnel, using the Ethernet <lb/>Client YANG model, defined in [CLIENT-SIGNAL]. <lb/></body> + + <note place="footnote">Busi, King, et al. <lb/>Expires March, 2020 <lb/></note> + + <page>[Page 39] <lb/></page> + + <note place="headnote">Internet-Draft Transport NBI Applicability-Statement <lb/>September 2019 <lb/></note> + + <body>Appendix B.2.3 provides the detailed JSON code ("mpi1-epl-service-<lb/>config.json") describing how the setup of this EPL service using the <lb/>ODU2 Tunnel can be requested by the MDSC, using the [CLIENT-SIGNAL] <lb/>YANG model at MPI1. <lb/>PNC1 knows, as described in the table in section 5.1.1, that the <lb/>tunnel source TTP and AN1-7 LTP, within the MPI1 OTN Abstract <lb/>Topology it exposes at MPI1, correspond to node S3 and S2-3 LTP, <lb/>respectively, within its native topology. Therefore it performs path <lb/>computation, for an ODU2 connection between node S3 and S2-3 LTP <lb/>within its native topology, and sets up the ODU2 cross-connections <lb/>within the physical nodes S3, S1 and S2, as shown in section 4.3.2. <lb/>As part of the OUD2 cross-connection configuration in node S2, PNC1 <lb/>configures the data plane resources (i.e., the list of timeslots and <lb/>the TPN), to be used by this ODU2 connection on the S2-S31 <lb/>inter-domain link, as requested by the MDSC. <lb/>After the configuration of the ODU2 cross-connection in node S3, <lb/>PNC1 also configures the [ETH -> (ODU)] and [(ODU2) -> ETH] <lb/>adaptation functions, within node S3, as shown in section 4.3.2. <lb/>Since the R1-S3 access link is a multi-function access link, PNC1 <lb/>also configures the 10GE link before this step. <lb/>Following similar requests from MDSC to setup ODU2 (Segment) Tunnels <lb/>within the OTN Abstract Topologies they expose as well as the <lb/>steering of the Ethernet client traffic, PNC3 then sets up ODU2 <lb/>cross-connections on nodes S31 and S33 while PNC2 sets up ODU2 <lb/>cross-connections on nodes S15 and S18 as well as the [ETH -> <lb/>(ODU2)] and [(ODU2) -> ETH] adaptation functions in node S18, as <lb/>shown in section 4.3.2. PNC2 also configures the 10GE link on the <lb/>S18-R8 multi-function access link. <lb/>5.2.2.1. Single Domain Example <lb/>To setup this IP link, between R1 and R2, the CNC requests, at the <lb/>CMI, the MDSC to setup an EPL service. <lb/>Following the procedures described in section 5.2.2, the MDSC <lb/>requests PCN1 to: <lb/></body> + + <note place="footnote">Busi, King, et al. <lb/>Expires March, 2020 <lb/></note> + + <page>[Page 40] <lb/></page> + + <note place="headnote">Internet-Draft Transport NBI Applicability-Statement <lb/>September 2019 <lb/></note> + + <body>o setup an ODU2 (end-to-end) Tunnel between the TTPs, abstracting <lb/> nodes S3 and S6 within MPI1 OTN Abstract Topology exposed by PNC1 <lb/>at MPI1; <lb/>o steer the Ethernet client traffic between the AN1-1 and AN1-8 <lb/>LTPs, exposed by PNC1 within MPI1 ETH Abstract Topology, through <lb/>that ODU2 (end-to-end) Tunnel. <lb/>Then PNC1 sets up ODU2 cross-connections on nodes S3, S5 and S6 as <lb/>well as the [ETH -> (ODU)] and [(ODU2) -> ETH] adaptation functions <lb/>in nodes S3 and S6, as shown in section 4.3.2. PNC1 also configures <lb/>the 10GE link on the R1-S3 multi-function access link (the R2-S6 <lb/>access link has been pre-configured as a 10GE link). <lb/>5.2.3. Other OTN Client Services <lb/>In this scenario, described in section 4.3.3, the access links are <lb/>configured as STM-64 links and, as described in section 5.1, <lb/>reported by each PNC as TE Links within the OTN Abstract Topologies <lb/>they expose to the MDSC. <lb/>The CNC requests, at the CMI, MDSC to setup an STM-64 Private Line <lb/>service between R1 and R8. <lb/>Following similar procedures as described in section 5.2.2, MDSC <lb/>understands that: <lb/>o R1 is attached to the access link terminating on AN1-1 LTP in the <lb/>MPI1 OTN Abstract Topology, exposed by PNC1, and that R8 is <lb/>attached to the access link terminating on AN2-1 LTP in the MPI2 <lb/>OTN Abstract Topology, exposed by PNC2; <lb/>o it needs to coordinate the setup of a multi-domain ODU2 Tunnel <lb/>between the TTPs, abstracting nodes S3 and S18 within the OTN <lb/>Abstract Topologies exposed by PNC1 and PNC2, respectively. <lb/>The MDSC then performs multi-domain path computation (step 2 in <lb/>Figure 7) and then requests: <lb/>o PNC1, at MPI1, to setup an ODU2 (Head Segment) Tunnel within the <lb/>MPI1 OTN Abstract Topology; <lb/></body> + + <note place="footnote">Busi, King, et al. <lb/>Expires March, 2020 <lb/></note> + + <page>[Page 41] <lb/></page> + + <note place="headnote">Internet-Draft Transport NBI Applicability-Statement <lb/>September 2019 <lb/></note> + + <body>o PNC1, at MPI1, to steer the STM-64 transparent client traffic <lb/> from/to AN1-1 LTP, within the MPI1 OTN Abstract Topology, thought <lb/>that ODU2 (Head Segment) Tunnel; <lb/>o PNC3, at MPI3, to setup an ODU2 (Transit Segment) Tunnel within <lb/>the MPI3 OTN Abstract Topology; <lb/>o PNC2, at MPI2, to setup ODU2 (Tail Segment) Tunnel within the <lb/>MPI2 OTN Abstract Topology; <lb/>o PNC2, at MPI2, to steer the STM-64 transparent client traffic <lb/>to/from AN2-1 LTP, within the MPI2 ETH Abstract Topology, through <lb/>that ODU2 (Tail Segment) Tunnel. <lb/>PNC1, PNC2 and PNC3 then sets up the ODU2 cross-connections within <lb/>the physical nodes S3, S1, S2, S31, S33, S15 and S18 as well as the <lb/>[STM-64 -> (ODU)] and [(ODU2) -> STM-64] adaptation functions in <lb/>nodes S3 and S18, as shown in section 4.3.3. PNC1 and PNC2 also <lb/>configure the STM-64 links on the R1-S3 and R8-S18 multi-function <lb/>access links, respectively. <lb/>5.2.3.1. Single Domain Example <lb/>To setup this IP link, between R1 and R3, the CNC requests, at the <lb/>CMI, the MDSC to setup an STM-64 Private Line service. <lb/>The MDSC and PNC1 follows similar procedures as described in section <lb/>5.2.2.1 to set up ODU2 cross-connections on nodes S3, S5 and S6 as <lb/>well as the [STM-64 -> (ODU)] and [(ODU2) -> STM-64] adaptation <lb/>functions in nodes S3 and S6, as shown in section 4.3.3. PNC1 also <lb/>configures the STM-64 links on the R1-S3 and R3-S6 multi-function <lb/>access links. <lb/>5.2.4. EVPL over ODU Service <lb/>In this scenario, described in section 4.3.4, the access links are <lb/>configured as 10GE links, as described in section 5.2.2 above. <lb/>The CNC requests, at the CMI, the MDSC to setup two EVPL services: <lb/>one between R1 and R2, and another between R1 and R8. <lb/>Following similar procedures as described in section 5.2.2 and <lb/>5.2.2.1, MDSC understands that: <lb/></body> + + <note place="footnote">Busi, King, et al. <lb/>Expires March, 2020 <lb/></note> + + <page>[Page 42] <lb/></page> + + <note place="headnote">Internet-Draft Transport NBI Applicability-Statement <lb/>September 2019 <lb/></note> + + <body>o R1 and R2 are attached to the access links terminating <lb/> respectively on AN1-1 and AN1-8 LTPs in the MPI1 ETH Abstract <lb/>Topology, exposed by PNC1, and that R8 is attached to the access <lb/>link terminating on AN2-1 LTP in the MPI2 ETH Abstract Topology, <lb/>exposed by PNC2; <lb/>o to setup the first (single-domain) EVPL service, between R1 and <lb/>R2, it needs to coordinate the setup of a single-domain ODU0 <lb/>Tunnel between the TTPs, abstracting nodes S3 and S6 within the <lb/>OTN Abstract Topology exposed by PNC1; <lb/>o to setup the second (multi-domain) EPVL service, between R1 and <lb/>R8, it needs to coordinate the setup of a multi-domain ODU0 <lb/>Tunnel between the TTPs, abstracting nodes S3 and S18 within the <lb/>OTN Abstract Topologies exposed by PNC1 and PNC2, respectively. <lb/>To setup the first (single-domain) EVPL service between R1 and R2, <lb/>the MDSC and PNC1 follows similar procedures as described in section <lb/>5.2.2.1 to set up ODU0 cross-connections on nodes S3, S5 and S6 as <lb/>well as the [VLAN -> (ODU0)] and [(ODU0) -> VLAN] adaptation <lb/>functions, in nodes S3 and S6, as shown in section 4.3.4. PNC1 also <lb/>configures the 10GE link on the R1-S3 multi-function access link. <lb/>As part of the [VLAN -> (ODU0)] and [(ODU0) -> VLAN] adaptation <lb/>functions configurations in nodes S2 and S6, PNC1 configures also <lb/>the classification rules required to associated only the Ethernet <lb/>client traffic received with VLAN ID 10 on the R1-S3 and R2-S6 <lb/>access links with this EVPL service. The MDSC provides this <lb/>information to PNC1 using the [CLIENT-SIGNAL] model. <lb/>To setup the second (multi-domain) EVPL service between R1 and R8, <lb/>the MDSC, PNC1, PNC2 and PNC3 follows similar procedures as <lb/>described in section 5.2.2 to setup the ODU0 cross-connections <lb/>within the physical nodes S3, S1, S2, S31, S33, S15 and S18 as well <lb/>as the [VLAN -> (ODU0)] and [(ODU0) -> VLAN] adaptation functions in <lb/>nodes S3 and S18, as shown in section 4.3.4. PNC2 also configures <lb/>the 10GE link on the R8-S18 multi-function access link (the R1-S3 <lb/>10GE link has been already configured when the first EVPL service <lb/>has been setup). <lb/>As part of the [VLAN -> (ODU0)] and [(ODU0) -> VLAN] adaptation <lb/>functions configurations in nodes S3 and S18, PNC1 and, <lb/>respectively, PNC2 configure also the classification rules required <lb/>to associated only the Ethernet client traffic received with VLAN ID <lb/></body> + + <note place="footnote">Busi, King, et al. <lb/>Expires March, 2020 <lb/></note> + + <page>[Page 43] <lb/></page> + + <note place="headnote">Internet-Draft Transport NBI Applicability-Statement <lb/>September 2019 <lb/></note> + + <body>20 on the R1-S3 and R8-S18 access links with this EVPL service. The <lb/>MDSC provides this information to PNC1 and PNC2 using the <lb/>[CLIENT-SIGNAL] model. <lb/>5.3. YANG Models for Protection Configuration <lb/>5.3.1. Linear Protection (end-to-end) <lb/>To be discussed in future versions of this document. <lb/>5.4. Notifications <lb/>Further detailed analysis is outside the scope of this document <lb/>5.5. Path Computation with Constraints <lb/>The path computation constraints that can be supported at the MPI <lb/>using the IETF YANG models defined in [TE-TUNNEL] and [PATH-<lb/>COMPUTE]. <lb/>When there is a technology specific network (e.g., OTN), the <lb/>corresponding technology (e.g., OTN) model should also be used to <lb/>specify the tunnel information on MPI, with the constraint included <lb/>in TE Tunnel model. <lb/>Further detailed analysis is outside the scope of this document <lb/>6. Security Considerations <lb/>This document analyses the applicability of the YANG models being <lb/>defined by the IETF to support OTN single and multi-domain <lb/>scenarios. <lb/>Inherently OTN networks ensure privacy and security via hard <lb/>partitioning of traffic onto dedicated circuits. The separation of <lb/>network traffic makes it difficult to intercept data transferred <lb/>between nodes over OTN-channelized links. <lb/>In OTN the (General Communication Channel) GCC is used for OAM <lb/>functions such as performance monitoring, fault detection, and <lb/>signaling. The GCC control channel should be secured using a <lb/>suitable mechanism. <lb/></body> + + <note place="footnote">Busi, King, et al. <lb/>Expires March, 2020 <lb/></note> + + <page>[Page 44] <lb/></page> + + <note place="headnote">Internet-Draft Transport NBI Applicability-Statement <lb/>September 2019 <lb/></note> + + <body>There are no additional or new security considerations introduced by <lb/> this document. <lb/>7. IANA Considerations <lb/>This document requires no IANA actions. <lb/></body> + + <listBibl>8. References <lb/>8.1. Normative References <lb/>[RFC4427] Mannie, E., Papadimitriou, D., "Recovery (Protection and <lb/>Restoration) Terminology for Generalized Multi-Protocol <lb/>Label Switching (GMPLS)", RFC 4427, March 2006. <lb/>[RFC4655] Farrel, A. et al., "A Path Computation Element (PCE)-Based <lb/>Architecture", RFC4655, August 2006. <lb/>[RFC7926] Farrel, A. et al., "Problem Statement and Architecture for <lb/>Information Exchange between Interconnected Traffic-<lb/>Engineered Networks", BCP 206, RFC 7926, July 2016. <lb/>[RFC8345] Clemm, A.,Medved, J. et al., "A Yang Data Model for <lb/>Network Topologies", RFC8345, March 2018. <lb/>[RFC8453] Ceccarelli, D., Lee, Y. et al., "Framework for Abstraction <lb/>and Control of TE Networks (ACTN)", RFC8453, August 2018. <lb/>[ITU-T G.709] ITU-T Recommendation G.709 (06/16), "Interfaces for <lb/>the optical transport network", June 2016. <lb/>[ITU-T G.808.1] ITU-T Recommendation G.808.1 (05/14), "Generic <lb/>protection switching -Linear trail and subnetwork <lb/>protection", May 2014. <lb/>[ITU-T G.873.1] ITU-T Recommendation G.873.1 (05/14), "Optical <lb/>transport network (OTN): Linear protection", May 2014. <lb/>[TE-TOPO] Liu, X. et al., "YANG Data Model for TE Topologies", <lb/>draft-ietf-teas-yang-te-topo, work in progress. <lb/>[OTN-TOPO] Zheng, H. et al., "A YANG Data Model for Optical <lb/>Transport Network Topology", draft-ietf-ccamp-otn-topo-<lb/>yang, work in progress. <lb/></listBibl> + + <note place="footnote">Busi, King, et al. <lb/>Expires March, 2020 <lb/></note> + + <page>[Page 45] <lb/></page> + + <note place="headnote">Internet-Draft Transport NBI Applicability-Statement <lb/>September 2019 <lb/></note> + + <listBibl>[CLIENT-TOPO] Zheng, H. et al., "A YANG Data Model for Client-layer <lb/> Topology", draft-zheng-ccamp-client-topo-yang, work in <lb/>progress. <lb/>[TE-TUNNEL] Saad, T. et al., "A YANG Data Model for Traffic <lb/>Engineering Tunnels and Interfaces", draft-ietf-teas-yang-<lb/>te, work in progress. <lb/>[PATH-COMPUTE] Busi, I., Belotti, S. et al, "Yang model for <lb/>requesting Path Computation", draft-ietf-teas-yang-path-<lb/>computation, work in progress. <lb/>[OTN-TUNNEL] <lb/>Zheng, H. et al., "OTN Tunnel YANG Model", draft-<lb/>ietf-ccamp-otn-tunnel-model, work in progress. <lb/>[CLIENT-SIGNAL] <lb/>Zheng, H. et al., "A YANG Data Model for Optical <lb/>Transport Network Client Signals", draft-zheng-ccamp-otn-<lb/>client-signal-yang, work in progress. <lb/>8.2. Informative References <lb/>[RFC5151] Farrel, A. et al., "Inter-Domain MPLS and GMPLS Traffic <lb/>Engineering --Resource Reservation Protocol-Traffic <lb/>Engineering (RSVP-TE) Extensions", RFC 5151, February <lb/>2008. <lb/>[RFC6898] Li, D. et al., "Link Management Protocol Behavior <lb/>Negotiation and Configuration Modifications", RFC 6898, <lb/>March 2013. <lb/>[RFC8040] Bierman, A. et al., "RESTCONF Protocol", RFC 8040, January <lb/>2017. <lb/>[RFC8309] Wu, Q. et al., "Service Models Explained", RFC 8309, <lb/>January 2018. <lb/>[ACTN-YANG] Zhang, X. et al., "Applicability of YANG models for <lb/>Abstraction and Control of Traffic Engineered Networks", <lb/>draft-zhang-teas-actn-yang, work in progress. <lb/>[RFC-FOLD] Watsen, K. et al., "Handling Long Lines in Artwork in <lb/>Internet-Drafts and RFCs", draft-ietf-netmod-artwork-<lb/>folding, work in progress <lb/></listBibl> + + <note place="footnote">Busi, King, et al. <lb/>Expires March, 2020 <lb/></note> + + <page>[Page 46] <lb/></page> + + <note place="headnote">Internet-Draft Transport NBI Applicability-Statement <lb/>September 2019 <lb/></note> + + <listBibl>[TE-TUTORIAL] Bryskin, I. et al., "TE Topology and Tunnel Modeling <lb/> for Transport Networks", draft-ietf-teas-te-topo-and-<lb/>tunnel-modeling, work in progress <lb/>[ONF TR-527] ONF Technical Recommendation TR-527, "Functional <lb/>Requirements for Transport API", June 2016. <lb/>[ONF GitHub] ONF Open Transport (SNOWMASS), <lb/><https://github.com/OpenNetworkingFoundation/Snowmass-<lb/>ONFOpenTransport> <lb/>[MEF 55] Metro Ethernet Forum, "Lifecycle Service Orchestration <lb/>(LSO): Reference Architecture and Framework", Technical <lb/>Specification MEF 55, March 2016, <lb/><https://www.mef.net/Assets/Technical_Specifications/PDF/M <lb/>EF_55.pdf> <lb/></listBibl> + + <div type="acknowledgement">9. Acknowledgments <lb/>The authors would like to thank all members of the Transport NBI <lb/>Design Team involved in the definition of use cases, gap analysis <lb/>and guidelines for using the IETF YANG models at the Northbound <lb/>Interface (NBI) of a Transport SDN Controller. <lb/>The authors would like to thank Xian Zhang, Anurag Sharma, Sergio <lb/>Belotti, Tara Cummings, Michael Scharf, Karthik Sethuraman, Oscar <lb/>Gonzalez de Dios, Hans Bjursrom and Italo Busi for having initiated <lb/>the work on gap analysis for transport NBI and having provided <lb/>foundations work for the development of this document. <lb/>The authors would like to thank the authors of the TE Topology and <lb/>Tunnel YANG models [TE-TOPO] and [TE-TUNNEL], in particular, Igor <lb/>Bryskin, Vishnu Pavan Beeram, Tarek Saad and Xufeng Liu, for their <lb/>support in addressing any gap identified during the analysis work. <lb/>The authors would like to thank Henry Yu and Aihua Guo for their <lb/>input and review of the URIs structures used within the JSON code <lb/>examples. <lb/>This work was supported in part by the European Commission funded <lb/>H2020-ICT-2016-2 METRO-HAUL project (G.A. 761727). <lb/>This document was prepared using 2-Word-v2.0.template.dot. <lb/></div> + + <note place="footnote">Busi, King, et al. <lb/>Expires March, 2020 <lb/></note> + + <page>[Page 47] <lb/></page> + + <note place="headnote">Internet-Draft Transport NBI Applicability-Statement <lb/>September 2019 <lb/></note> + + <note place="footnote">Busi, King, et al. <lb/>Expires March, 2020 <lb/></note> + + <page>[Page 48] <lb/></page> + + <note place="headnote">Internet-Draft Transport NBI Applicability-Statement <lb/>September 2019 <lb/></note> + + <div type="annex">Appendix A. Validating a JSON fragment against a YANG Model <lb/> The objective is to have a tool that allows validating whether a <lb/>piece of JSON code embedded in an Internet-Draft is compliant with a <lb/>YANG model without using a client/server. <lb/>A.1. Manipulation of JSON fragments <lb/>This section describes the various ways JSON fragments are used in <lb/>the I-D processing and how to manage them. <lb/>Let's call "folded-JSON" the JSON embedded in the I-D: it fits the <lb/>72 chars width and it is acceptable for it to be invalid JSON. <lb/>We then define "unfolded-JSON" a valid JSON fragment having the same <lb/>contents of the "folded-JSON " without folding, i.e. limits on the <lb/>text width. The folding/unfolding operation may be done according to <lb/>[RFC-FOLD]. The "unfolded-JSON" can be edited by the authors using <lb/>JSON editors with the advantages of syntax validation and pretty-<lb/>printing. <lb/>Both the "folded" and the "unfolded" JSON fragments can include <lb/>comments having descriptive fields and directives we'll describe <lb/>later to facilitate the reader and enable some automatic processing. <lb/>The presence of comments in the "unfolded-JSON" fragment makes it an <lb/>invalid JSON encoding of YANG data. Therefore we call "naked JSON" <lb/>the JSON where the comments have been stripped out: not only it is <lb/>valid JSON but it is a valid JSON encoding of YANG data. <lb/>The following schema resumes these definitions: <lb/>unfold_it --> <lb/>stripper --> <lb/>Folded-JSON <lb/>Unfolded-JSON <lb/>Naked JSON <lb/><--fold_it <lb/><--author edits <lb/><=72-chars? <lb/>MUST <lb/>MAY <lb/>MAY <lb/>valid JSON? <lb/>MAY <lb/>MUST <lb/>MUST <lb/>JSON-encoding <lb/>MAY <lb/>MAY <lb/>MUST <lb/></div> + + <note place="footnote">Busi, King, et al. <lb/>Expires March, 2020 <lb/></note> + + <page>[Page 49] <lb/></page> + + <note place="headnote">Internet-Draft Transport NBI Applicability-Statement <lb/>September 2019 <lb/></note> + + <div type="annex">of YANG data <lb/>Our validation toolchain has been designed to take a JSON in any of <lb/>the three formats and validate it automatically against a set of <lb/>relevant YANG modules using available open-source tools. It can be <lb/>found at: https://github.com/GianmarcoBruno/json-yang/ <lb/>A.2. Comments in JSON fragments <lb/>We found useful to introduce two kinds of comments, both defined as <lb/>key-value pairs where the key starts with "//": <lb/>-free-form descriptive comments, e.g."// COMMENT" : "refine this" <lb/>to describe properties of JSON fragments. <lb/>-machine-usable directives e.g. "// __REFERENCES__DRAFTS__" : { <lb/>"ietf-routing-types@2017-12-04": "rfc8294",} which can be used to <lb/>automatically download from the network the relevant I-Ds or RFCs <lb/>and extract from them the YANG models of interest. This is <lb/>particularly useful to keep consistency when the drafting work is <lb/>rapidly evolving. <lb/>A.3. Validation of JSON fragments: DSDL-based approach <lb/>The idea is to generate a JSON driver file (JTOX) from YANG, then <lb/>use it to translate JSON to XML and validate it against the DSDL <lb/>schemas, as shown in Figure 8. <lb/>Useful link: https://github.com/mbj4668/pyang/wiki/XmlJson <lb/>(2) <lb/>YANG-module ---> DSDL-schemas (RNG,SCH,DSRL) <lb/>| <lb/>| <lb/>| (1) <lb/>| <lb/>| <lb/>| <lb/>Config/state JTOX-file <lb/>| (4) <lb/>\ <lb/>| <lb/>| <lb/>\ <lb/>| <lb/>| <lb/>\ <lb/>V <lb/>V <lb/>JSON-file------------> XML-file ----------------> Output <lb/>(3) <lb/>Figure 8 -DSDL-based approach for JSON code validation <lb/></div> + + <note place="footnote">Busi, King, et al. <lb/>Expires March, 2020 <lb/></note> + + <page>[Page 50] <lb/></page> + + <note place="headnote">Internet-Draft Transport NBI Applicability-Statement <lb/>September 2019 <lb/></note> + + <div type="annex">In order to allow the use of comments following the convention <lb/> defined in section 3, without impacting the validation process, <lb/>these comments will be automatically removed from the JSON-file that <lb/>will be validate. <lb/>A.4. Validation of JSON fragments: why not using a XSD-based approach <lb/>This approach has been analyzed and discarded because no longer <lb/>supported by pyang. <lb/>The idea is to convert YANG to XSD, JSON to XML and validate it <lb/>against the XSD, as shown in Figure 9: <lb/>(1) <lb/>YANG-module ---> XSD-schema -\ <lb/>(3) <lb/>+--> Validation <lb/>JSON-file------> XML-file ----/ <lb/>(2) <lb/>Figure 9 -XSD-based approach for JSON code validation <lb/>The pyang support for the XSD output format was deprecated in 1.5 <lb/>and removed in 1.7.1. However pyang 1.7.1 is necessary to work with <lb/>YANG 1.1 so the process shown in Figure 9 will stop just at step <lb/>(1). <lb/></div> + + <note place="footnote">Busi, King, et al. <lb/>Expires March, 2020 <lb/></note> + + <page>[Page 51] <lb/></page> + + <note place="headnote">Internet-Draft Transport NBI Applicability-Statement <lb/>September 2019 <lb/></note> + + <div type="annex">Appendix B. Detailed JSON Examples <lb/> The JSON code examples provided in this appendix have been validated <lb/>using the tools in Appendix A and folded using the tool in [RFC-<lb/>FOLD]. <lb/>B.1. JSON Examples for Topology Abstractions <lb/>B.1.1. <lb/>JSON Code: mpi1-otn-topology.json <lb/>This is the JSON code reporting the OTN Topology @ MPI: <lb/></div> + + <note place="footnote">Busi, King, et al. <lb/>Expires March, 2020 <lb/></note> + + <page>[Page 52] <lb/></page> + + <note place="headnote">Internet-Draft Transport NBI Applicability-Statement <lb/>September 2019 <lb/></note> + + <div type="annex">========== NOTE: '\\' line wrapping per BCP XX (RFC XXXX) =========== <lb/> { <lb/>"// __TITLE__": "ODU Black Topology @ MPI1", <lb/>"// __LAST_UPDATE__": "October 18, 2018", <lb/>"// __MISSING_ATTRIBUTES__": true, <lb/>"// __REFERENCE_DRAFTS__": { <lb/>"ietf-routing-types@2017-12-04": "rfc8294", <lb/>"ietf-otn-types@2017-10-30": "draft-ietf-ccamp-otn-tunnel-model-\ <lb/>\01", <lb/>"ietf-network@2018-02-26": "rfc8345", <lb/>"ietf-network-topology@2018-02-26": "rfc8345", <lb/>"ietf-te-types@2018-06-12": "draft-ietf-teas-yang-te-15", <lb/>"ietf-te-topology@2018-06-15": "draft-ietf-teas-yang-te-topo-18", <lb/>"ietf-otn-topology@2017-10-30": "draft-ietf-ccamp-otn-topo-yang-\ <lb/>\02" <lb/>}, <lb/>"// __RESTCONF_OPERATION__": { <lb/>"operation": "GET", <lb/>"url": "http://{{PNC1-ADDR}}/restconf/data/ietf-network:networks" <lb/>}, <lb/>"ietf-network:networks": { <lb/>"network": [ <lb/>{ <lb/>"network-id": "providerId/201/clientId/300/topologyId/otn-bl\ <lb/>\ack-topology", <lb/>"network-types": { <lb/>"ietf-te-topology:te-topology": { <lb/>"ietf-otn-topology:otn-topology": {} <lb/>} <lb/>}, <lb/>"ietf-te-topology:provider-id": 201, <lb/>"ietf-te-topology:client-id": 300, <lb/>"ietf-te-topology:te-topology-id": "otn-black-topology", <lb/>"// ietf-te-topology:te": "presence container requires: prov\ <lb/>\ider, client and te-topology-id", <lb/>"ietf-te-topology:te": { <lb/>"name": "OTN Black Topology @ MPI1" <lb/>}, <lb/>"// ietf-network:node": "Access LTPs to be reviewed in a fut\ <lb/>\ure update", <lb/>"ietf-network:node": [ <lb/>{ <lb/>"// __NODE__:__DESCRIPTION__": { <lb/></div> + + <note place="footnote">Busi, King, et al. <lb/>Expires March, 2020 <lb/></note> + + <page>[Page 53] <lb/></page> + + <note place="headnote">Internet-Draft Transport NBI Applicability-Statement <lb/>September 2019 <lb/></note> + + <div type="annex">"name": "AN1", <lb/>"identifier": "10.0.0.1", <lb/>"type": "Abstract Node", <lb/>"physical node(s)": "whole network domain 1" <lb/>}, <lb/>"node-id": "10.0.0.1", <lb/>"ietf-te-topology:te-node-id": "10.0.0.1", <lb/>"ietf-te-topology:te": { <lb/>"te-node-attributes": { <lb/>"name": "AN11", <lb/>"admin-status": "up", <lb/>"// __DISCUSS__ is-abstract": "To be discussed with \ <lb/>\TE Topology authors", <lb/>"// __DISCUSS__ underlay-topology": "To be discussed\ <lb/>\ with TE Topology authors" <lb/>}, <lb/>"oper-status": "up", <lb/>"// __DISCUSS__ tunnel-termination-point": [] <lb/>}, <lb/>"ietf-network-topology:termination-point": [ <lb/>{ <lb/>"// __DESCRIPTION__:__LTP__": { <lb/>"name": "AN1-1 LTP", <lb/>"link type(s)": "OTU-2", <lb/>"physical node": "S3", <lb/>"unnumberd/ifIndex": 1, <lb/>"port type": "tributary port", <lb/>"connected to": "R1" <lb/>}, <lb/>"tp-id": "1", <lb/>"ietf-te-topology:te-tp-id": 1, <lb/>"ietf-te-topology:te": { <lb/>"name": "AN1-1 LTP", <lb/>"admin-status": "up", <lb/>"// __DISCUSS__ interface-switching-capability": "\ <lb/>\See Link attributes (teNodeId/10.0.0.1/teLinkId/1)", <lb/>"// __DISCUSS__ inter-domain-plug-id": "Access Lin\ <lb/>\k", <lb/>"// __COMMENT__ inter-layer-lock-id": "Empty: OTN \ <lb/>\Links are pre-configured", <lb/>"oper-status": "up", <lb/>"// __DISCUSS__ ietf-otn-topology:supported-payloa\ <lb/>\d-types": "List of ODU clients?", <lb/>"// __DISCUSS__ ietf-otn-topology:client-facing": \ <lb/></div> + + <note place="footnote">Busi, King, et al. <lb/>Expires March, 2020 <lb/></note> + + <page>[Page 54] <lb/></page> + + <note place="headnote">Internet-Draft Transport NBI Applicability-Statement <lb/>September 2019 <lb/></note> + + <div type="annex">\true <lb/>} <lb/>}, <lb/>{ <lb/>"// __DESCRIPTION__:__LTP__": { <lb/>"name": "AN1-2 LTP", <lb/>"link type(s)": "OTU-4", <lb/>"physical node": "S2", <lb/>"unnumberd/ifIndex": 1, <lb/>"port type": "inter-domain port", <lb/>"connected to": "S31" <lb/>}, <lb/>"tp-id": "2", <lb/>"ietf-te-topology:te-tp-id": 2, <lb/>"ietf-te-topology:te": { <lb/>"name": "AN1-2 LTP", <lb/>"admin-status": "up", <lb/>"// __DISCUSS__ interface-switching-capability": "\ <lb/>\See Link attributes (teNodeId/10.0.0.1/teLinkId/2)", <lb/>"// __DISCUSS__ inter-domain-plug-id": "Inter-doma\ <lb/>\in Link", <lb/>"oper-status": "up", <lb/>"// __DISCUSS__ ietf-otn-topology:supported-payloa\ <lb/>\d-types": "Empty? (inter-domain OTN link)", <lb/>"// __DEFAULT__ ietf-otn-topology:client-facing": \ <lb/>\false <lb/>} <lb/>}, <lb/>{ <lb/>"// __DESCRIPTION__:__LTP__": { <lb/>"name": "AN1-3 LTP", <lb/>"link type(s)": "OTU-2", <lb/>"physical node": "S6", <lb/>"unnumberd/ifIndex": 1, <lb/>"port type": "tributary port", <lb/>"connected to": "R2" <lb/>}, <lb/>"tp-id": "3", <lb/>"ietf-te-topology:te-tp-id": 3, <lb/>"ietf-te-topology:te": { <lb/>"name": "AN1-3 LTP", <lb/>"admin-status": "up", <lb/>"// __DISCUSS__ interface-switching-capability": "\ <lb/>\See Link attributes (teNodeId/10.0.0.1/teLinkId/3)", <lb/></div> + + <note place="footnote">Busi, King, et al. <lb/>Expires March, 2020 <lb/></note> + + <page>[Page 55] <lb/></page> + + <note place="headnote">Internet-Draft Transport NBI Applicability-Statement <lb/>September 2019 <lb/></note> + + <div type="annex">"// __DISCUSS__ inter-domain-plug-id": "Access Lin\ <lb/>\k", <lb/>"oper-status": "up", <lb/>"// __DISCUSS__ ietf-otn-topology:supported-payloa\ <lb/>\d-types": "List of ODU clients?", <lb/>"// __DISCUSS__ ietf-otn-topology:client-facing": \ <lb/>\true <lb/>} <lb/>}, <lb/>{ <lb/>"// __DESCRIPTION__:__LTP__": { <lb/>"name": "AN1-4 LTP", <lb/>"link type(s)": "OTU-4", <lb/>"physical node": "S8", <lb/>"unnumberd/ifIndex": 1, <lb/>"port type": "inter-domain port", <lb/>"connected to": "S32" <lb/>}, <lb/>"tp-id": "4", <lb/>"ietf-te-topology:te-tp-id": 4, <lb/>"ietf-te-topology:te": { <lb/>"name": "AN1-4 LTP", <lb/>"admin-status": "up", <lb/>"// __DISCUSS__ interface-switching-capability": "\ <lb/>\See Link attributes (teNodeId/10.0.0.1/teLinkId/4)", <lb/>"// __DISCUSS__ inter-domain-plug-id": "Inter-doma\ <lb/>\in Link", <lb/>"oper-status": "up", <lb/>"// __DISCUSS__ ietf-otn-topology:supported-payloa\ <lb/>\d-types": "Empty? (inter-domain OTN link)", <lb/>"// __DEFAULT__ ietf-otn-topology:client-facing": \ <lb/>\false <lb/>} <lb/>}, <lb/>{ <lb/>"// __DESCRIPTION__:__LTP__": { <lb/>"name": "AN1-5 LTP", <lb/>"link type(s)": "OTU-4", <lb/>"physical node": "S8", <lb/>"unnumberd/ifIndex": 5, <lb/>"port type": "inter-domain port", <lb/>"connected to": "S12" <lb/>}, <lb/>"tp-id": "5", <lb/></div> + + <note place="footnote">Busi, King, et al. <lb/>Expires March, 2020 <lb/></note> + + <page>[Page 56] <lb/></page> + + <note place="headnote">Internet-Draft Transport NBI Applicability-Statement <lb/>September 2019 <lb/></note> + + <div type="annex">"ietf-te-topology:te-tp-id": 5, <lb/>"ietf-te-topology:te": { <lb/>"name": "AN1-5 LTP", <lb/>"admin-status": "up", <lb/>"// __DISCUSS__ interface-switching-capability": "\ <lb/>\See Link attributes (teNodeId/10.0.0.1/teLinkId/5)", <lb/>"// __DISCUSS__ inter-domain-plug-id": "Inter-doma\ <lb/>\in Link", <lb/>"oper-status": "up", <lb/>"// __DISCUSS__ ietf-otn-topology:supported-payloa\ <lb/>\d-types": "Empty? (inter-domain OTN link)", <lb/>"// __DEFAULT__ ietf-otn-topology:client-facing": \ <lb/>\false <lb/>} <lb/>}, <lb/>{ <lb/>"// __DESCRIPTION__:__LTP__": { <lb/>"name": "AN1-6 LTP", <lb/>"link type(s)": "OTU-4", <lb/>"physical node": "S7", <lb/>"unnumberd/ifIndex": 4, <lb/>"port type": "inter-domain port", <lb/>"connected to": "S11" <lb/>}, <lb/>"tp-id": "6", <lb/>"ietf-te-topology:te-tp-id": 6, <lb/>"ietf-te-topology:te": { <lb/>"name": "AN1-6 LTP", <lb/>"admin-status": "up", <lb/>"// __DISCUSS__ interface-switching-capability": "\ <lb/>\See Link attributes (teNodeId/10.0.0.1/teLinkId/6)", <lb/>"// __DISCUSS__ inter-domain-plug-id": "Inter-doma\ <lb/>\in Link", <lb/>"oper-status": "up", <lb/>"// __DISCUSS__ ietf-otn-topology:supported-payloa\ <lb/>\d-types": "Empty? (inter-domain OTN link)", <lb/>"// __DEFAULT__ ietf-otn-topology:client-facing": \ <lb/>\false <lb/>} <lb/>}, <lb/>{ <lb/>"// __DESCRIPTION__:__LTP__": { <lb/>"name": "AN1-7 LTP", <lb/>"link type(s)": "OTU-2", <lb/></div> + + <note place="footnote">Busi, King, et al. <lb/>Expires March, 2020 <lb/></note> + + <page>[Page 57] <lb/></page> + + <note place="headnote">Internet-Draft Transport NBI Applicability-Statement <lb/>September 2019 <lb/></note> + + <div type="annex">"physical node": "S6", <lb/>"unnumberd/ifIndex": 2, <lb/>"port type": "tributary port", <lb/>"connected to": "R3" <lb/>}, <lb/>"tp-id": "7", <lb/>"ietf-te-topology:te-tp-id": 7, <lb/>"ietf-te-topology:te": { <lb/>"name": "AN1-7 LTP", <lb/>"admin-status": "up", <lb/>"// __DISCUSS__ interface-switching-capability": "\ <lb/>\See Link attributes (teNodeId/10.0.0.1/teLinkId/7)", <lb/>"// __DISCUSS__ inter-domain-plug-id": "Access Lin\ <lb/>\k", <lb/>"oper-status": "up", <lb/>"// __DISCUSS__ ietf-otn-topology:supported-payloa\ <lb/>\d-types": "List of ODU clients?", <lb/>"// __DISCUSS__ ietf-otn-topology:client-facing": \ <lb/>\true <lb/>} <lb/>} <lb/>] <lb/>} <lb/>], <lb/>"// ietf-network-topology:link": "Access links to be reviewe\ <lb/>\d in a future update", <lb/>"ietf-network-topology:link": [ <lb/>{ <lb/>"// __DESCRIPTION__:__LINK__": { <lb/>"name": "Access Link from AN1-1", <lb/>"type": "access link", <lb/>"physical link": "Link from S3-1 to R1" <lb/>}, <lb/>"link-id": "teNodeId/10.0.0.1/teLinkId/1", <lb/>"ietf-te-topology:te": { <lb/>"te-link-attributes": { <lb/>"name": "Access Link from AN1-1", <lb/>"// __DISCUSS__ access-type": "Can we assume point-t\ <lb/>\o-point as the default value?", <lb/>"access-type": "point-to-point", <lb/>"// __COMMENT__ external-domain": "Empty: the plug-i\ <lb/>\d is used instead of this container", <lb/>"// __DISCUSS__ is-abstract": "To be discussed with \ <lb/>\TE Topology authors", <lb/></div> + + <note place="footnote">Busi, King, et al. <lb/>Expires March, 2020 <lb/></note> + + <page>[Page 58] <lb/></page> + + <note place="headnote">Internet-Draft Transport NBI Applicability-Statement <lb/>September 2019 <lb/></note> + + <div type="annex">"// __DISCUSS__ underlay": "To be discussed with TE \ <lb/>\Topology authors", <lb/>"admin-status": "up", <lb/>"interface-switching-capability": [ <lb/>{ <lb/>"switching-capability": "ietf-te-types:switching\ <lb/>\-otn", <lb/>"encoding": "ietf-te-types:lsp-encoding-oduk", <lb/>"max-lsp-bandwidth": [ <lb/>{ <lb/>"priority": 0, <lb/>"// __DISCUSS__ te-bandwidth": "ODU2" <lb/>} <lb/>] <lb/>} <lb/>], <lb/>"// __COMMENT__ label-restrictions": "Not described \ <lb/>\in this JSON example", <lb/>"// __DISCUSS__ link-protection-type": "Can we assum\ <lb/>\e unprotected as the default value?", <lb/>"link-protection-type": "unprotected", <lb/>"max-link-bandwidth": { <lb/>"// __DISCUSS__ te-bandwidth": "1xODU2" <lb/>}, <lb/>"max-resv-link-bandwidth": { <lb/>"// __DISCUSS__ te-bandwidth": "1xODU2" <lb/>}, <lb/>"unreserved-bandwidth": [ <lb/>{ <lb/>"priority": 0, <lb/>"// __DISCUSS__ te-bandwidth": "1xODU2" <lb/>} <lb/>] <lb/>}, <lb/>"oper-status": "up", <lb/>"// __EMPTY__ is-transitional": "It is not a transitio\ <lb/>\nal link", <lb/>"// __DISCUSS__ underlay ": "To be discussed with TE T\ <lb/>\opology authors" <lb/>}, <lb/>"source": { <lb/>"source-node": "10.0.0.1", <lb/>"source-tp": 1 <lb/>}, <lb/></div> + + <note place="footnote">Busi, King, et al. <lb/>Expires March, 2020 <lb/></note> + + <page>[Page 59] <lb/></page> + + <note place="headnote">Internet-Draft Transport NBI Applicability-Statement <lb/>September 2019 <lb/></note> + + <div type="annex">"// __EMPTY__ destination": "access link" <lb/> }, <lb/>{ <lb/>"// __DESCRIPTION__:__LINK__": { <lb/>"name": "Inter-domain Link from AN1-2", <lb/>"type": "inter-domain link", <lb/>"physical link": "Link from S2-1 to S31" <lb/>}, <lb/>"link-id": "teNodeId/10.0.0.1/teLinkId/2", <lb/>"ietf-te-topology:te": { <lb/>"te-link-attributes": { <lb/>"name": "Inter-domain Link from AN1-2", <lb/>"// __DISCUSS__ access-type": "Can we assume point-t\ <lb/>\o-point as the default value?", <lb/>"access-type": "point-to-point", <lb/>"// __DISCUSS__ is-abstract": "To be discussed with \ <lb/>\TE Topology authors", <lb/>"// __DISCUSS__ underlay": "To be discussed with TE \ <lb/>\Topology authors", <lb/>"admin-status": "up", <lb/>"interface-switching-capability": [ <lb/>{ <lb/>"switching-capability": "ietf-te-types:switching\ <lb/>\-otn", <lb/>"encoding": "ietf-te-types:lsp-encoding-oduk", <lb/>"max-lsp-bandwidth": [ <lb/>{ <lb/>"priority": 0, <lb/>"// __DISCUSS__ te-bandwidth": "ODU4" <lb/>} <lb/>], <lb/>"// __DISCUSS__ label-restrictions": "To be adde\ <lb/>\d?" <lb/>} <lb/>], <lb/>"// __DISCUSS__ link-protection-type": "Can we assum\ <lb/>\e unprotected as the default value?", <lb/>"link-protection-type": "unprotected", <lb/>"max-link-bandwidth": { <lb/>"// __DISCUSS__ te-bandwidth": "1xODU4, ..." <lb/>}, <lb/>"max-resv-link-bandwidth": { <lb/>"// __DISCUSS__ te-bandwidth": "1xODU4, ..." <lb/>}, <lb/></div> + + <note place="footnote">Busi, King, et al. <lb/>Expires March, 2020 <lb/></note> + + <page>[Page 60] <lb/></page> + + <note place="headnote">Internet-Draft Transport NBI Applicability-Statement <lb/>September 2019 <lb/></note> + + <div type="annex">"unreserved-bandwidth": [ <lb/> { <lb/>"priority": 0, <lb/>"// __DISCUSS__ te-bandwidth": "1xODU4, ..." <lb/>} <lb/>] <lb/>}, <lb/>"oper-status": "up", <lb/>"// __EMPTY__ is-transitional": "It is not a transitio\ <lb/>\nal link", <lb/>"// __DISCUSS__ underlay ": "To be discussed with TE T\ <lb/>\opology authors" <lb/>}, <lb/>"source": { <lb/>"source-node": "10.0.0.1", <lb/>"source-tp": 2 <lb/>}, <lb/>"// __EMPTY__ destination": "inter-domain link" <lb/>}, <lb/>{ <lb/>"// __DESCRIPTION__:__LINK__": { <lb/>"name": "Access Link from AN1-3", <lb/>"type": "access link", <lb/>"physical link": "Link from S6-1 to R2" <lb/>}, <lb/>"link-id": "teNodeId/10.0.0.1/teLinkId/3", <lb/>"ietf-te-topology:te": { <lb/>"te-link-attributes": { <lb/>"name": "Access Link from AN1-3", <lb/>"// __DISCUSS__ access-type": "Can we assume point-t\ <lb/>\o-point as the default value?", <lb/>"access-type": "point-to-point", <lb/>"// __DISCUSS__ is-abstract": "To be discussed with \ <lb/>\TE Topology authors", <lb/>"// __DISCUSS__ underlay": "To be discussed with TE \ <lb/>\Topology authors", <lb/>"admin-status": "up", <lb/>"interface-switching-capability": [ <lb/>{ <lb/>"switching-capability": "ietf-te-types:switching\ <lb/>\-otn", <lb/>"encoding": "ietf-te-types:lsp-encoding-oduk", <lb/>"max-lsp-bandwidth": [ <lb/>{ <lb/></div> + + <note place="footnote">Busi, King, et al. <lb/>Expires March, 2020 <lb/></note> + + <page>[Page 61] <lb/></page> + + <note place="headnote">Internet-Draft Transport NBI Applicability-Statement <lb/>September 2019 <lb/></note> + + <div type="annex">"priority": 0, <lb/> "// __DISCUSS__ te-bandwidth": "ODU2" <lb/>} <lb/>], <lb/>"// __DISCUSS__ label-restrictions": "To be adde\ <lb/>\d?" <lb/>} <lb/>], <lb/>"// __DISCUSS__ link-protection-type": "Can we assum\ <lb/>\e unprotected as the default value?", <lb/>"link-protection-type": "unprotected", <lb/>"max-link-bandwidth": { <lb/>"// __DISCUSS__ te-bandwidth": "1xODU2" <lb/>}, <lb/>"unreserved-bandwidth": [ <lb/>{ <lb/>"priority": 0, <lb/>"// __DISCUSS__ te-bandwidth": "1xODU2" <lb/>} <lb/>], <lb/>"max-resv-link-bandwidth": { <lb/>"// __DISCUSS__ te-bandwidth": "1xODU2" <lb/>} <lb/>}, <lb/>"oper-status": "up", <lb/>"// __EMPTY__ is-transitional": "It is not a transitio\ <lb/>\nal link", <lb/>"// __DISCUSS__ underlay ": "To be discussed with TE T\ <lb/>\opology authors" <lb/>}, <lb/>"source": { <lb/>"source-node": "10.0.0.1", <lb/>"source-tp": 3 <lb/>}, <lb/>"// __EMPTY__ destination": "access link" <lb/>}, <lb/>{ <lb/>"// __DESCRIPTION__:__LINK__": { <lb/>"name": "Inter-domain Link from AN1-4", <lb/>"type": "inter-domain link", <lb/>"physical link": "Link from S8-1 to S32" <lb/>}, <lb/>"link-id": "teNodeId/10.0.0.1/teLinkId/4", <lb/>"ietf-te-topology:te": { <lb/></div> + + <note place="footnote">Busi, King, et al. <lb/>Expires March, 2020 <lb/></note> + + <page>[Page 62] <lb/></page> + + <note place="headnote">Internet-Draft Transport NBI Applicability-Statement <lb/>September 2019 <lb/></note> + + <div type="annex">"te-link-attributes": { <lb/> "name": "Inter-domain Link from AN1-4", <lb/>"// __DISCUSS__ access-type": "Can we assume point-t\ <lb/>\o-point as the default value?", <lb/>"access-type": "point-to-point", <lb/>"// __DISCUSS__ is-abstract": "To be discussed with \ <lb/>\TE Topology authors", <lb/>"// __DISCUSS__ underlay": "To be discussed with TE \ <lb/>\Topology authors", <lb/>"admin-status": "up", <lb/>"interface-switching-capability": [ <lb/>{ <lb/>"switching-capability": "ietf-te-types:switching\ <lb/>\-otn", <lb/>"encoding": "ietf-te-types:lsp-encoding-oduk", <lb/>"max-lsp-bandwidth": [ <lb/>{ <lb/>"priority": 0, <lb/>"// __DISCUSS__ te-bandwidth": "ODU4" <lb/>} <lb/>], <lb/>"// __DISCUSS__ label-restrictions": "To be adde\ <lb/>\d?" <lb/>} <lb/>], <lb/>"// __DISCUSS__ link-protection-type": "Can we assum\ <lb/>\e unprotected as the default value?", <lb/>"link-protection-type": "unprotected", <lb/>"max-link-bandwidth": { <lb/>"// __DISCUSS__ te-bandwidth": "1xODU4, ..." <lb/>}, <lb/>"unreserved-bandwidth": [ <lb/>{ <lb/>"priority": 0, <lb/>"// __DISCUSS__ te-bandwidth": "1xODU4, ..." <lb/>} <lb/>], <lb/>"max-resv-link-bandwidth": { <lb/>"// __DISCUSS__ te-bandwidth": "1xODU4, ..." <lb/>} <lb/>}, <lb/>"oper-status": "up", <lb/>"// __EMPTY__ is-transitional": "It is not a transitio\ <lb/>\nal link", <lb/></div> + + <note place="footnote">Busi, King, et al. <lb/>Expires March, 2020 <lb/></note> + + <page>[Page 63] <lb/></page> + + <note place="headnote">Internet-Draft Transport NBI Applicability-Statement <lb/>September 2019 <lb/></note> + + <div type="annex">"// __DISCUSS__ underlay ": "To be discussed with TE T\ <lb/> \opology authors" <lb/>}, <lb/>"source": { <lb/>"source-node": "10.0.0.1", <lb/>"source-tp": 4 <lb/>}, <lb/>"// __EMPTY__ destination": "inter-domain link" <lb/>}, <lb/>{ <lb/>"// __DESCRIPTION__:__LINK__": { <lb/>"name": "Inter-domain Link from AN1-5", <lb/>"type": "inter-domain link", <lb/>"physical link": "Link from S8-5 to S12" <lb/>}, <lb/>"link-id": "teNodeId/10.0.0.1/teLinkId/5", <lb/>"ietf-te-topology:te": { <lb/>"te-link-attributes": { <lb/>"name": "Inter-domain Link from AN1-5", <lb/>"// __DISCUSS__ access-type": "Can we assume point-t\ <lb/>\o-point as the default value?", <lb/>"access-type": "point-to-point", <lb/>"// __DISCUSS__ is-abstract": "To be discussed with \ <lb/>\TE Topology authors", <lb/>"// __DISCUSS__ underlay": "To be discussed with TE \ <lb/>\Topology authors", <lb/>"admin-status": "up", <lb/>"interface-switching-capability": [ <lb/>{ <lb/>"switching-capability": "ietf-te-types:switching\ <lb/>\-otn", <lb/>"encoding": "ietf-te-types:lsp-encoding-oduk", <lb/>"max-lsp-bandwidth": [ <lb/>{ <lb/>"priority": 0, <lb/>"// __DISCUSS__ te-bandwidth": "ODU4" <lb/>} <lb/>], <lb/>"// __DISCUSS__ label-restrictions": "To be adde\ <lb/>\d?" <lb/>} <lb/>], <lb/>"// __DISCUSS__ link-protection-type": "Can we assum\ <lb/>\e unprotected as the default value?", <lb/></div> + + <note place="footnote">Busi, King, et al. <lb/>Expires March, 2020 <lb/></note> + + <page>[Page 64] <lb/></page> + + <note place="headnote">Internet-Draft Transport NBI Applicability-Statement <lb/>September 2019 <lb/></note> + + <div type="annex">"link-protection-type": "unprotected", <lb/> "max-link-bandwidth": { <lb/>"// __DISCUSS__ te-bandwidth": "1xODU4, ..." <lb/>}, <lb/>"max-resv-link-bandwidth": { <lb/>"// __DISCUSS__ te-bandwidth": "1xODU4, ..." <lb/>}, <lb/>"unreserved-bandwidth": [ <lb/>{ <lb/>"priority": 0, <lb/>"// __DISCUSS__ te-bandwidth": "1xODU4, ..." <lb/>} <lb/>] <lb/>}, <lb/>"oper-status": "up", <lb/>"// __EMPTY__ is-transitional": "It is not a transitio\ <lb/>\nal link", <lb/>"// __DISCUSS__ underlay ": "To be discussed with TE T\ <lb/>\opology authors" <lb/>}, <lb/>"source": { <lb/>"source-node": "10.0.0.1", <lb/>"source-tp": 5 <lb/>}, <lb/>"// __EMPTY__ destination": "inter-domain link" <lb/>}, <lb/>{ <lb/>"// __DESCRIPTION__:__LINK__": { <lb/>"name": "Inter-domain Link from AN1-6", <lb/>"type": "inter-domain link", <lb/>"physical link": "Link from S7-4 to S11" <lb/>}, <lb/>"link-id": "teNodeId/10.0.0.1/teLinkId/6", <lb/>"ietf-te-topology:te": { <lb/>"te-link-attributes": { <lb/>"name": "Inter-domain Link from AN1-6", <lb/>"// __DISCUSS__ access-type": "Can we assume point-t\ <lb/>\o-point as the default value?", <lb/>"access-type": "point-to-point", <lb/>"// __DISCUSS__ is-abstract": "To be discussed with \ <lb/>\TE Topology authors", <lb/>"// __DISCUSS__ underlay": "To be discussed with TE \ <lb/>\Topology authors", <lb/>"admin-status": "up", <lb/></div> + + <note place="footnote">Busi, King, et al. <lb/>Expires March, 2020 <lb/></note> + + <page>[Page 65] <lb/></page> + + <note place="headnote">Internet-Draft Transport NBI Applicability-Statement <lb/>September 2019 <lb/></note> + + <div type="annex">"interface-switching-capability": [ <lb/> { <lb/>"switching-capability": "ietf-te-types:switching\ <lb/>\-otn", <lb/>"encoding": "ietf-te-types:lsp-encoding-oduk", <lb/>"max-lsp-bandwidth": [ <lb/>{ <lb/>"priority": 0, <lb/>"// __DISCUSS__ te-bandwidth": "ODU4" <lb/>} <lb/>], <lb/>"// __DISCUSS__ label-restrictions": "To be adde\ <lb/>\d?" <lb/>} <lb/>], <lb/>"// __DISCUSS__ link-protection-type": "Can we assum\ <lb/>\e unprotected as the default value?", <lb/>"link-protection-type": "unprotected", <lb/>"max-link-bandwidth": { <lb/>"// __DISCUSS__ te-bandwidth": "1xODU4, ..." <lb/>}, <lb/>"max-resv-link-bandwidth": { <lb/>"// __DISCUSS__ te-bandwidth": "1xODU4, ..." <lb/>}, <lb/>"unreserved-bandwidth": [ <lb/>{ <lb/>"priority": 0, <lb/>"// __DISCUSS__ te-bandwidth": "1xODU4, ..." <lb/>} <lb/>] <lb/>}, <lb/>"oper-status": "up", <lb/>"// __EMPTY__ is-transitional": "It is not a transitio\ <lb/>\nal link", <lb/>"// __DISCUSS__ underlay ": "To be discussed with TE T\ <lb/>\opology authors" <lb/>}, <lb/>"source": { <lb/>"source-node": "10.0.0.1", <lb/>"source-tp": 6 <lb/>}, <lb/>"// __EMPTY__ destination": "inter-domain link" <lb/>}, <lb/>{ <lb/></div> + + <note place="footnote">Busi, King, et al. <lb/>Expires March, 2020 <lb/></note> + + <page>[Page 66] <lb/></page> + + <note place="headnote">Internet-Draft Transport NBI Applicability-Statement <lb/>September 2019 <lb/></note> + + <div type="annex">"// __DESCRIPTION__:__LINK__": { <lb/> "name": "Access Link from AN1-7", <lb/>"type": "access link", <lb/>"physical link": "Link from S6-2 to R3" <lb/>}, <lb/>"link-id": "teNodeId/10.0.0.1teLinkId/7", <lb/>"ietf-te-topology:te": { <lb/>"te-link-attributes": { <lb/>"name": "Access Link from AN1-7", <lb/>"// __DISCUSS__ access-type": "Can we assume point-t\ <lb/>\o-point as the default value?", <lb/>"access-type": "point-to-point", <lb/>"// __DISCUSS__ is-abstract": "To be discussed with \ <lb/>\TE Topology authors", <lb/>"// __DISCUSS__ underlay": "To be discussed with TE \ <lb/>\Topology authors", <lb/>"admin-status": "up", <lb/>"interface-switching-capability": [ <lb/>{ <lb/>"switching-capability": "ietf-te-types:switching\ <lb/>\-otn", <lb/>"encoding": "ietf-te-types:lsp-encoding-oduk", <lb/>"max-lsp-bandwidth": [ <lb/>{ <lb/>"priority": 0, <lb/>"// __DISCUSS__ te-bandwidth": "ODU2" <lb/>} <lb/>], <lb/>"// __DISCUSS__ label-restrictions": "To be adde\ <lb/>\d?" <lb/>} <lb/>], <lb/>"// __DISCUSS__ link-protection-type": "Can we assum\ <lb/>\e unprotected as the default value?", <lb/>"link-protection-type": "unprotected", <lb/>"max-link-bandwidth": { <lb/>"// __DISCUSS__ te-bandwidth": "1xODU2" <lb/>}, <lb/>"max-resv-link-bandwidth": { <lb/>"// __DISCUSS__ te-bandwidth": "1xODU2" <lb/>}, <lb/>"unreserved-bandwidth": [ <lb/>{ <lb/>"priority": 0, <lb/></div> + + <note place="footnote">Busi, King, et al. <lb/>Expires March, 2020 <lb/></note> + + <page>[Page 67] <lb/></page> + + <note place="headnote">Internet-Draft Transport NBI Applicability-Statement <lb/>September 2019 <lb/></note> + + <div type="annex">"// __DISCUSS__ te-bandwidth": "1xODU2" <lb/>} <lb/>] <lb/>}, <lb/>"oper-status": "up", <lb/>"// __EMPTY__ is-transitional": "It is not a transitio\ <lb/>\nal link", <lb/>"// __DISCUSS__ underlay ": "To be discussed with TE T\ <lb/>\opology authors" <lb/>}, <lb/>"source": { <lb/>"source-node": "10.0.0.1", <lb/>"source-tp": 7 <lb/>}, <lb/>"// __EMPTY__ destination": "access link" <lb/>} <lb/>] <lb/>} <lb/>] <lb/>} <lb/>} <lb/>B.2. JSON Examples for Service Configuration <lb/>B.2.1. <lb/>JSON Code: mpi1-odu2-service-config.json <lb/>This is the JSON code reporting the ODU2 transit service <lb/>configuration @ MPI: <lb/></div> + + <note place="footnote">Busi, King, et al. <lb/>Expires March, 2020 <lb/></note> + + <page>[Page 68] <lb/></page> + + <note place="headnote">Internet-Draft Transport NBI Applicability-Statement <lb/>September 2019 <lb/></note> + + <div type="annex">========== NOTE: '\\' line wrapping per BCP XX (RFC XXXX) =========== <lb/> { <lb/>"// __TITLE__": "ODU2 Service Configuration @ MPI1", <lb/>"// __LAST_UPDATE__": "October 22, 2018", <lb/>"// __MISSING_ATTRIBUTES__": true, <lb/>"// __REFERENCE_DRAFTS__": { <lb/>"ietf-routing-types@2017-12-04": "rfc8294", <lb/>"ietf-otn-types@2018-06-07": "draft-ietf-ccamp-otn-tunnel-model-\ <lb/>\02", <lb/>"ietf-te-types@2018-07-01": "draft-ietf-teas-yang-te-16", <lb/>"ietf-te@2018-07-01": "draft-ietf-teas-yang-te-16", <lb/>"ietf-otn-tunnel@2018-06-07": "draft-ietf-ccamp-otn-tunnel-model\ <lb/>\-02" <lb/>}, <lb/>"// __RESTCONF_OPERATION__": { <lb/>"operation": "PUT", <lb/>"url": "http://{{PNC1-ADDR}}/restconf/data/ietf-te:te" <lb/>}, <lb/>"ietf-te:te": { <lb/>"tunnels": { <lb/>"tunnel": [ <lb/>{ <lb/>"name": "mpi1-odu2-service", <lb/>"// identifier": "ODU2-SERVICE-TUNNEL-ID @ MPI1", <lb/>"identifier": 1, <lb/>"description": "ODU2 Service implemented by ODU2 OTN Tunne\ <lb/>\l Segment @ MPI1", <lb/>"// encoding and switching-type": "ODU", <lb/>"encoding": "ietf-te-types:lsp-encoding-oduk ", <lb/>"switching-type": "ietf-te-types:switching-otn", <lb/>"// source": "None: transit tunnel segment", <lb/>"// destination": "None: transit tunnel segment", <lb/>"// src-tp-id": "None: transit tunnel segment", <lb/>"// dst-tp-id": "None: transit tunnel segment", <lb/>"// ietf-otn-tunnel:src-client-signal": "None: ODU transit\ <lb/>\ tunnel segment", <lb/>"// ietf-otn-tunnel:dst-client-signal": "None: ODU transit\ <lb/>\ tunnel segment", <lb/>"bidirectional": true, <lb/>"// protection": "No protection", <lb/>"// __ DEFAULT __ protection": { <lb/>"// __ DEFAULT __ enable": false <lb/>}, <lb/></div> + + <note place="footnote">Busi, King, et al. <lb/>Expires March, 2020 <lb/></note> + + <page>[Page 69] <lb/></page> + + <note place="headnote">Internet-Draft Transport NBI Applicability-Statement <lb/>September 2019 <lb/></note> + + <div type="annex">"// restoration": "No restoration", <lb/> "// __ DEFAULT __ restoration": { <lb/>"// __ DEFAULT __ enable": false <lb/>}, <lb/>"// te-topology-identifier": "ODU Black Topology @ MPI1", <lb/>"te-topology-identifier": { <lb/>"provider-id": 201, <lb/>"client-id": 300, <lb/>"topology-id": "otn-black-topology" <lb/>}, <lb/>"te-bandwidth": { <lb/>"ietf-otn-tunnel:odu-type": "ietf-otn-types:prot-ODU2" <lb/>}, <lb/>"// hierarchical-link": "None: transit tunnel segment", <lb/>"p2p-primary-paths": { <lb/>"p2p-primary-path": [ <lb/>{ <lb/>"name": "mpi1-odu2-service-primary-path", <lb/>"path-scope": "ietf-te-types:path-scope-segment", <lb/>"// te-bandwidth": "None: only the tunnel bandwidth \ <lb/>\needs to be specified in transport applications", <lb/>"explicit-route-objects": { <lb/>"route-object-include-exclude": [ <lb/>{ <lb/>"// comment": "Tunnel hand-off OTU2 ingress in\ <lb/>\terface (S3-1)", <lb/>"index": 1, <lb/>"explicit-route-usage": "ietf-te-types:route-i\ <lb/>\nclude-ero", <lb/>"num-unnum-hop": { <lb/>"// node-id": "AN1 Node", <lb/>"node-id": "10.0.0.1", <lb/>"// link-tp-id": "AN1-1 LTP", <lb/>"link-tp-id": 1, <lb/>"hop-type": "STRICT", <lb/>"direction": "INCOMING" <lb/>} <lb/>}, <lb/>{ <lb/>"// comment": "Tunnel hand-off ODU2 ingress la\ <lb/>\bel (ODU2 over OTU2) at S3-1", <lb/>"index": 2, <lb/>"explicit-route-usage": "ietf-te-types:route-i\ <lb/>\nclude-ero", <lb/></div> + + <note place="footnote">Busi, King, et al. <lb/>Expires March, 2020 <lb/></note> + + <page>[Page 70] <lb/></page> + + <note place="headnote">Internet-Draft Transport NBI Applicability-Statement <lb/>September 20199 <lb/></note> + + <div type="annex">"label-hop": { <lb/>"te-label": { <lb/>"// __ DISCUSS __ odu-label": "How are HO-\ <lb/>\ODU (ODUk over OTUk) label represented?", <lb/>"// __ DISCUSS __ direction": "Check with \ <lb/>\TE Tunnel authors", <lb/>"direction": "FORWARD " <lb/>} <lb/>} <lb/>}, <lb/>{ <lb/>"// comment": "Tunnel hand-off OTU4 egress int\ <lb/>\erface (S2-1)", <lb/>"index": 3, <lb/>"explicit-route-usage": "ietf-te-types:route-i\ <lb/>\nclude-ero", <lb/>"num-unnum-hop": { <lb/>"// node-id": "AN1 Node", <lb/>"node-id": "10.0.0.1", <lb/>"// link-tp-id": "AN1-2 LTP", <lb/>"link-tp-id": 1, <lb/>"hop-type": "STRICT", <lb/>"direction": "OUTGOING" <lb/>} <lb/>}, <lb/>{ <lb/>"// comment": "Tunnel hand-off ODU2 egress lab\ <lb/>\el (ODU2 over OTU4) at S2-1", <lb/>"index": 4, <lb/>"explicit-route-usage": "ietf-te-types:route-i\ <lb/>\nclude-ero", <lb/>"label-hop": { <lb/>"te-label": { <lb/>"ietf-otn-tunnel:tpn": 1, <lb/>"ietf-otn-tunnel:tsg": "ietf-otn-types:tsg\ <lb/>\-1.25G", <lb/>"ietf-otn-tunnel:ts-list": "1-8", <lb/>"// __ DISCUSS __ direction": "Check with \ <lb/>\TE Tunnel authors", <lb/>"direction": "FORWARD " <lb/>} <lb/> } <lb/>} <lb/>] <lb/></div> + + <note place="footnote">Busi, King, et al. <lb/>Expires March, 2020 <lb/></note> + + <page>[Page 71] <lb/></page> + + <note place="headnote">Internet-Draft Transport NBI Applicability-Statement <lb/>September 2019 <lb/>} <lb/></note> + + <div type="annex">} <lb/>] <lb/>} <lb/>} <lb/>] <lb/>} <lb/>} <lb/>} <lb/>B.2.2. <lb/>JSON Code: mpi1-odu2-tunnel-config.json <lb/>The JSON code for this use case will be added in a future version of <lb/>this document <lb/>An incomplete version is located on GitHub at: <lb/>https://github.com/danielkinguk/transport-nbi <lb/>B.2.3. <lb/>JSON Code: mpi1-epl-service-config.json <lb/>The JSON code for this use case will be added in a future version of <lb/>this document <lb/>An incomplete version is located on GitHub at: <lb/>https://github.com/danielkinguk/transport-nbi <lb/></div> + + <note place="footnote">Busi, King, et al. <lb/>Expires March, 2020 <lb/></note> + + <page>[Page 72] <lb/></page> + + <note place="headnote">Internet-Draft Transport NBI Applicability-Statement <lb/>September 2019 <lb/></note> + + Author's Address <lb/> + + <front>Italo Busi (Editor) <lb/>Huawei <lb/>Email: italo.busi@huawei.com <lb/>Daniel King (Editor) <lb/>Old Dog Consulting <lb/>Email: daniel@olddog.co.uk <lb/>Haomian Zheng (Editor) <lb/>Huawei <lb/>Email: zhenghaomian@huawei.com <lb/>Yunbin Xu (Editor) <lb/>CAICT <lb/>Email: xuyunbin@ritt.cn <lb/>Yang Zhao <lb/>China Mobile <lb/>Email: zhaoyangyjy@chinamobile.com <lb/>Sergio Belotti <lb/>Nokia <lb/>Email: sergio.belotti@nokia.com <lb/>Gianmarco Bruno <lb/>Ericsson <lb/>Email: gianmarco.bruno@ericsson.com <lb/></front> + + <note place="footnote">Busi, King, et al. <lb/>Expires March, 2020 <lb/></note> + + <page>[Page 73] <lb/></page> + + <note place="headnote">Internet-Draft Transport NBI Applicability-Statement <lb/>September 2019 <lb/></note> + + <front>Young Lee <lb/> Sung Kyun Kwan University <lb/>Email: younglee.tx@gmail.com <lb/>Victor Lopez <lb/>Telefonica <lb/>Email: victor.lopezalvarez@telefonica.com <lb/>Carlo Perocchio <lb/>Ericsson <lb/>Email: carlo.perocchio@ericsson.com <lb/>Ricard Vilalta <lb/>CTTC <lb/>Email: ricard.vilalta@cttc.es <lb/>Michael Scharf <lb/>Hochschule Esslingen -University of Applied Sciences <lb/>Email: michael.scharf@hs-esslingen.de <lb/></front> + + <note place="footnote">Busi, King, et al. <lb/>Expires March, 2020 <lb/></note> + + <page>[Page 74] </page> + + + </text> +</tei> diff --git a/grobid-trainer/resources/dataset/segmentation/sdo/ietf/corpus/tei/draft-ietf-bfcpbis-rfc4583bis-27.segmentation.tei.xml b/grobid-trainer/resources/dataset/segmentation/sdo/ietf/corpus/tei/draft-ietf-bfcpbis-rfc4583bis-27.segmentation.tei.xml new file mode 100644 index 0000000000..b6b167d9c1 --- /dev/null +++ b/grobid-trainer/resources/dataset/segmentation/sdo/ietf/corpus/tei/draft-ietf-bfcpbis-rfc4583bis-27.segmentation.tei.xml @@ -0,0 +1,403 @@ +<?xml version="1.0" ?> +<tei xml:space="preserve"> + <teiHeader> + <fileDesc xml:id="0"/> + </teiHeader> + <text xml:lang="en"> + <front>BFCPbis Working Group <lb/> G. Camarillo <lb/>Internet-Draft <lb/>Ericsson <lb/>Obsoletes: 4583 (if approved) <lb/>T. Kristensen <lb/>Intended status: Standards Track <lb/>Cisco <lb/>Expires: June 11, 2019 <lb/>C. Holmberg <lb/>Ericsson <lb/>December 8, 2018 <lb/>Session Description Protocol (SDP) Format for Binary Floor Control <lb/>Protocol (BFCP) Streams <lb/>draft-ietf-bfcpbis-rfc4583bis-27 <lb/>Abstract <lb/>This document defines the Session Description Protocol (SDP) offer/ <lb/>answer procedures for negotiating and establishing Binary Floor <lb/>Control Protocol (BFCP) streams. <lb/>This document obsoletes RFC 4583. Changes from RFC 4583 are <lb/>summarized in Section 14. <lb/>Status of This Memo <lb/>This Internet-Draft is submitted in full conformance with the <lb/>provisions of BCP 78 and BCP 79. <lb/>Internet-Drafts are working documents of the Internet Engineering <lb/>Task Force (IETF). Note that other groups may also distribute <lb/>working documents as Internet-Drafts. The list of current Internet-<lb/>Drafts is at http://datatracker.ietf.org/drafts/current/. <lb/>Internet-Drafts are draft documents valid for a maximum of six months <lb/>and may be updated, replaced, or obsoleted by other documents at any <lb/>time. It is inappropriate to use Internet-Drafts as reference <lb/>material or to cite them other than as "work in progress." <lb/>This Internet-Draft will expire on June 11, 2019. <lb/>Copyright Notice <lb/>Copyright (c) 2018 IETF Trust and the persons identified as the <lb/>document authors. All rights reserved. <lb/>This document is subject to BCP 78 and the IETF Trust's Legal <lb/>Provisions Relating to IETF Documents <lb/>(http://trustee.ietf.org/license-info) in effect on the date of <lb/>publication of this document. Please review these documents <lb/>Camarillo, et al. <lb/>Expires June 11, 2019 <lb/>[Page 1] <lb/>Internet-Draft <lb/>BFCP <lb/>December 2018 <lb/>carefully, as they describe your rights and restrictions with respect <lb/>to this document. Code Components extracted from this document must <lb/>include Simplified BSD License text as described in Section 4.e of <lb/>the Trust Legal Provisions and are provided without warranty as <lb/>described in the Simplified BSD License. <lb/></front> + + <div type="toc">Table of Contents <lb/>1. Introduction . . . . . . . . . . . . . . . . . . . . . . . . <lb/>3 <lb/>2. Conventions . . . . . . . . . . . . . . . . . . . . . . . . . <lb/>3 <lb/>3. Floor Control Roles . . . . . . . . . . . . . . . . . . . . . <lb/>4 <lb/>4. Fields in the 'm' Line . . . . . . . . . . . . . . . . . . . <lb/>4 <lb/>5. SDP Attributes . . . . . . . . . . . . . . . . . . . . . . . <lb/>5 <lb/>5.1. SDP 'floorctrl' Attribute . . . . . . . . . . . . . . . . <lb/>5 <lb/>5.2. SDP 'confid' Attribute . . . . . . . . . . . . . . . . . <lb/>7 <lb/>5.3. SDP 'userid' Attribute . . . . . . . . . . . . . . . . . <lb/>8 <lb/>5.4. SDP 'floorid' Attribute . . . . . . . . . . . . . . . . . <lb/>9 <lb/>5.5. SDP 'bfcpver' Attribute . . . . . . . . . . . . . . . . . 10 <lb/>6. Multiplexing Considerations . . . . . . . . . . . . . . . . . 11 <lb/>7. BFCP Connection Management . . . . . . . . . . . . . . . . . 12 <lb/>7.1. TCP Connection Management . . . . . . . . . . . . . . . . 12 <lb/>8. TLS/DTLS Considerations . . . . . . . . . . . . . . . . . . . 13 <lb/>9. ICE Considerations . . . . . . . . . . . . . . . . . . . . . 13 <lb/>10. SDP Offer/Answer Procedures . . . . . . . . . . . . . . . . . 14 <lb/>10.1. Generating the Initial SDP Offer . . . . . . . . . . . . 15 <lb/>10.2. Generating the SDP Answer . . . . . . . . . . . . . . . 15 <lb/>10.3. Offerer Processing of the SDP Answer . . . . . . . . . . 16 <lb/>10.4. Modifying the Session . . . . . . . . . . . . . . . . . 17 <lb/>11. Examples . . . . . . . . . . . . . . . . . . . . . . . . . . 17 <lb/>12. Security Considerations . . . . . . . . . . . . . . . . . . . 19 <lb/>13. IANA Considerations . . . . . . . . . . . . . . . . . . . . . 20 <lb/>13.1. Registration of SDP 'proto' Values . . . . . . . . . . . 20 <lb/>13.2. Registration of the SDP 'floorctrl' Attribute . . . . . 20 <lb/>13.3. Registration of the SDP 'confid' Attribute . . . . . . . 20 <lb/>13.4. Registration of the SDP 'userid' Attribute . . . . . . . 20 <lb/>13.5. Registration of the SDP 'floorid' Attribute . . . . . . 21 <lb/>13.6. Registration of the SDP 'bfcpver' Attribute . . . . . . 21 <lb/>14. Changes from RFC 4583 . . . . . . . . . . . . . . . . . . . . 21 <lb/>15. Acknowledgements . . . . . . . . . . . . . . . . . . . . . . 22 <lb/>16. References . . . . . . . . . . . . . . . . . . . . . . . . . 22 <lb/>16.1. Normative References . . . . . . . . . . . . . . . . . . 22 <lb/>16.2. Informational References . . . . . . . . . . . . . . . . 24 <lb/>Authors' Addresses . . . . . . . . . . . . . . . . . . . . . . . 24 <lb/> + </div> + + <note place="footnote"> + Camarillo, et al. <lb/> + + Expires June 11, 2019 <lb/> + </note> + + <page> + [Page 2] <lb/> + </page> + + <note place="headnote"> + Internet-Draft <lb/>BFCP <lb/>December 2018 <lb/> + </note> + + <body> + 1. Introduction <lb/>As discussed in the BFCP (Binary Floor Control Protocol) <lb/>specification [I-D.ietf-bfcpbis-rfc4582bis], a given BFCP client <lb/>needs a set of data in order to establish a BFCP connection to a <lb/>floor control server. This data includes the transport address of <lb/>the server, the conference identifier, and the user identifier. <lb/>One way for clients to obtain this information is to use an SDP <lb/>offer/answer [RFC3264] exchange. This document specifies how to <lb/>encode this information in the SDP session descriptions that are part <lb/>of such an offer/answer exchange. <lb/>User agents typically use the offer/answer model to establish a <lb/>number of media streams of different types. Following this model, a <lb/>BFCP connection is described as any other media stream by using an <lb/>SDP 'm' line, possibly followed by a number of SDP lines that also <lb/>apply to the BFCP connection. <lb/>Section 4 defines how the field values in 'm' line representing a <lb/>BFCP connection are set. <lb/>Section 5 defines SDP attributes that are used when negotiating a <lb/>BFCP connection. <lb/>Section 6 defines multiplexing considerations for a BFCP connection. <lb/>Section 7 defines procedures for managing a BFCP connection. <lb/>Section 8 defines TLS and DTLS considerations when negotiating a BFCP <lb/>connection. <lb/>Section 9 defines the Interactive Connectivity Establishment (ICE) <lb/>[RFC8445] considerations when negotiating a BFCP connection. <lb/>Section 10 defines the SDP offer/answer procedures for negotiating a <lb/>BFCP connection. <lb/>2. Conventions <lb/>The key words "MUST", "MUST NOT", "REQUIRED", "SHALL", "SHALL NOT", <lb/>"SHOULD", "SHOULD NOT", "RECOMMENDED", "NOT RECOMMENDED", "MAY", and <lb/>"OPTIONAL" in this document are to be interpreted as described in BCP <lb/>14 [RFC2119] [RFC8174] when, and only when, they appear in all <lb/>capitals, as shown here. <lb/> + + <note place="footnote"> + Camarillo, et al. <lb/> + + Expires June 11, 2019 <lb/> + </note> + + <page> + [Page 3] <lb/> + </page> + + <note place="headnote"> + Internet-Draft <lb/>BFCP <lb/>December 2018 <lb/> + </note> + + 3. Floor Control Roles <lb/>When two endpoints establish a BFCP stream, they need to determine <lb/>which of them acts as a floor control client and which acts as a <lb/>floor control server. <lb/>Once the roles have been determined, the roles will apply to all <lb/>BFCP-controlled streams associated with the BFCP stream. <lb/>4. Fields in the 'm' Line <lb/>According to the SDP specification [RFC4566], the 'm' line format is <lb/>the following: <lb/>m=<media> <port> <proto> <fmt> ... <lb/>This section describes how to generate an 'm' line of an SDP Media <lb/>Description ('m' section) describing a BFCP stream. <lb/>The media field MUST have a value of "application". <lb/>The port field is set depending on the value of the proto field, as <lb/>explained below. A port field value of zero has the standard SDP <lb/>meaning (i.e., rejection of the media stream) regardless of the proto <lb/>field. <lb/>When TCP is used as the transport, the port field is set following <lb/>the rules in [RFC4145]. Depending on the value of the 'setup' <lb/>attribute (discussed in Section 7.1), the port field contains the <lb/>port to which the remote endpoint will direct BFCP messages, or in <lb/>the case where the endpoint will initiate the connection towards <lb/>the remote endpoint, should be set to a value of 9. <lb/>When UDP is used as the transport, the port field contains the <lb/>port to which the remote endpoint will direct BFCP messages <lb/>regardless of the value of the 'setup' attribute. <lb/>This document defines five values for the proto field: TCP/BFCP, <lb/>TCP/DTLS/BFCP, TCP/TLS/BFCP, UDP/BFCP, and UDP/TLS/BFCP. <lb/>The proto value are used as described below: <lb/>'TCP/BFCP' is used for TCP transport of BFCP without TLS <lb/>encryption, and is backward compatible with RFC 4583 compliant <lb/>endpoints. <lb/> + + <note place="footnote"> + Camarillo, et al. <lb/> + + Expires June 11, 2019 <lb/> + </note> + + <page> + [Page 4] <lb/> + </page> + + <note place="headnote"> + Internet-Draft <lb/>BFCP <lb/>December 2018 <lb/> + </note> + + 'TCP/TLS/BFCP' is used for TCP transport of BFCP with TLS <lb/>encryption, and is backward compatible with RFC 4583 compliant <lb/>endpoints that support TLS. <lb/>'UDP/BFCP' is used for UDP transport of BFCP without DTLS <lb/>encryption [RFC6347]. <lb/>'UDP/TLS/BFCP' is used for UDP transport of BFCP with DTLS <lb/>encryption. This is one of the options when ICE is used <lb/>(Section 9). It can also be used without ICE when backward <lb/>compatibility with RFC 4583 compliant endpoints is not required. <lb/>'TCP/DTLS/BFCP' is used for TCP transport of BFCP with DTLS <lb/>encryption, running on top of TCP using the framing method defined <lb/>in [RFC4571], with DTLS packets being sent and received instead of <lb/>RTP/RTCP packets using the shim defined in RFC 4571 such that the <lb/>length field defined in RFC 4571 precedes each DTLS message. This <lb/>is one of the options when ICE is used (Section 9). It can also <lb/>be used without ICE when backward compatibility with RFC 4583 <lb/>compliant endpoints is not required. <lb/>The fmt (format) list is not applicable to BFCP. The fmt list of 'm' <lb/>lines in the case of any proto field value related to BFCP MUST <lb/>contain a single "*" character. If the the fmt list contains any <lb/>other value it MUST be ignored. <lb/>The following is an example of an 'm' line for a BFCP connection: <lb/>m=application 50000 TCP/TLS/BFCP * <lb/>5. SDP Attributes <lb/>5.1. SDP 'floorctrl' Attribute <lb/>This section defines the SDP 'floorctrl' media-level attribute. The <lb/>attribute is used to determine the floor control roles (client and <lb/>server) for the endpoints associated with the BFCP stream. <lb/> + + <note place="footnote"> + Camarillo, et al. <lb/> + + Expires June 11, 2019 <lb/> + </note> + + <page> + [Page 5] <lb/> + </page> + + <note place="headnote"> + Internet-Draft <lb/>BFCP <lb/>December 2018 <lb/> + </note> + + Attribute Name: floorctrl <lb/>Attribute Value: floor-control <lb/>Usage Level: media <lb/>Charset Dependent: No <lb/>Mux Category: TBD <lb/>The Augmented BNF syntax [RFC5234] for the attribute is: <lb/>floor-control = role *(SP role) <lb/>role = "c-only" / "s-only" / "c-s" <lb/>An endpoint includes the attribute to indicate the role(s) it would <lb/>be willing to perform for the BFCP-controlled media streams: <lb/>c-only: The endpoint is willing to act as floor control client. <lb/>s-only: The endpoint is willing to act as floor control server only. <lb/>When inserted in an offer, the offerer MAY indicate multiple <lb/>attribute values ("c-only" and "s-only"). When inserted in an <lb/>answer, the answerer MUST indicate only one attribute value: "c-only" <lb/>or "s-only". The answerer indicates the role taken by the answerer. <lb/>The offerer will then take the opposite role. <lb/>In [RFC4583], there was a third attribute specified, "c-s", which <lb/>meant that an endpoint was willing to act as both floor control <lb/>client and floor control server at the same time for the BFCP stream, <lb/>taking different roles for different BFCP-controlled media streams. <lb/>The feature was underspecified and implemented in different ways, in <lb/>particular many implementations interpreted "c-s" to mean that the <lb/>endpoint is willing to act as either client or server (equivalent to <lb/>"c-only s-only"). An implementation compliant to this specification <lb/>MUST NOT include the "c-s" floorctl attribute value in an offer or in <lb/>an answer, but MUST accept the attribute value in an offer and <lb/>process it as equivalent to "c-only s-only" (or "s-only c-only"). <lb/>Also, as an implementation compliant to this specification is only <lb/>allowed to include one role, either 'c-only' or 's-conly', in an <lb/>answer, each endpoint will only take one role, and as a result the <lb/>endpoint will take the same role for each BFCP-controlled media <lb/>stream associated with the BFCP stream. <lb/>Table 1 shows the roles that the answerer is allowed to take, based <lb/>on what roles the offerer has indicated that it is willing to take. <lb/> + + <note place="footnote"> + Camarillo, et al. <lb/> + + Expires June 11, 2019 <lb/> + </note> + + <page> + [Page 6] <lb/> + </page> + + <note place="headnote"> + Internet-Draft <lb/>BFCP <lb/>December 2018 <lb/> + </note> + + +---------+----------+ <lb/>| Offerer | Answerer | <lb/>+---------+----------+ <lb/>| c-only | s-only | <lb/>| s-only | c-only | <lb/>| <lb/>c-s <lb/>| c-only | <lb/>| <lb/>c-s <lb/>| s-only | <lb/>+---------+----------+ <lb/>Table 1: Roles <lb/>Endpoints compliant with [RFC4583] might not include the 'floorctrl' <lb/>attribute in offers and answerer. If the 'floorctrl' attribute is <lb/>not present, in order to be interoperable with such endpoints, the <lb/>offerer will act as floor control client and the answerer will act as <lb/>floor control server. <lb/>The SDP Offer/Answer procedures for the 'floorctrl' attribute are <lb/>defined in Section 10. <lb/>The following is an example of a 'floorctrl' attribute in an offer: <lb/>a=floorctrl:c-only s-only <lb/>5.2. SDP 'confid' Attribute <lb/>This section defines the SDP 'confid' media-level attribute. The <lb/>attribute is used by a floor control server to convey the conference <lb/>ID value to the floor control client, using decimal integer <lb/>representation. <lb/> + + <note place="footnote"> + Camarillo, et al. <lb/> + + Expires June 11, 2019 <lb/> + </note> + + <page> + [Page 7] <lb/> + </page> + + <note place="headnote"> + Internet-Draft <lb/>BFCP <lb/>December 2018 <lb/> + </note> + + Attribute Name: confid <lb/>Attribute Value: conference-id <lb/>Usage Level: media <lb/>Charset Dependent: No <lb/>Mux Category: TBD <lb/>The Augmented BNF syntax [RFC5234] for the attribute is: <lb/>conference-id = 1*DIGIT <lb/>DIGIT = <DIGIT defined in [RFC5234]> <lb/>The maximum value of the attribute is determined by the <lb/>COMMON-HEADER format [I-D.ietf-bfcpbis-rfc4582bis]. <lb/>The SDP Offer/Answer procedures for the 'confid' attribute are <lb/>defined in Section 10. <lb/>5.3. SDP 'userid' Attribute <lb/>This section defines the SDP userid' media-level attribute. The <lb/>attribute is used by a floor control server to convey the user ID <lb/>value to the floor control client, using decimal integer <lb/>representation. <lb/> + + <note place="footnote"> + Camarillo, et al. <lb/> + + Expires June 11, 2019 <lb/> + </note> + + <page> + [Page 8] <lb/> + </page> + + <note place="headnote"> + Internet-Draft <lb/>BFCP <lb/>December 2018 <lb/> + </note> + + + Attribute Name: userid <lb/>Attribute Value: user-id <lb/>Usage Level: media <lb/>Charset Dependent: No <lb/>Mux Category: TBD <lb/>The Augmented BNF syntax [RFC5234] for the attribute is: <lb/>user-id = 1*DIGIT <lb/>DIGIT = <DIGIT defined in [RFC5234]> <lb/>The maximum value of the attribute is determined by the <lb/>COMMON-HEADER format [I-D.ietf-bfcpbis-rfc4582bis]. <lb/>The SDP Offer/Answer procedures for the 'userid' attribute are <lb/>defined in Section 10. <lb/>5.4. SDP 'floorid' Attribute <lb/>This section defines the SDP 'floorid' media-level attribute. The <lb/>attribute conveys a floor identifier, using decimal integer <lb/>representation, and optionally pointers to one or more BFCP-<lb/>controlled media streams. <lb/> + + <note place="footnote"> + Camarillo, et al. <lb/> + + Expires June 11, 2019 <lb/> + </note> + + <page> + [Page 9] <lb/> + </page> + + <note place="headnote"> + Internet-Draft <lb/>BFCP <lb/>December 2018 <lb/> + </note> + + Attribute Name: floorid <lb/>Attribute Value: floor-id <lb/>Usage Level: media <lb/>Charset Dependent: No <lb/>Mux Category: TBD <lb/>The Augmented BNF syntax [RFC5234] for the attribute is: <lb/>floor-id = 1*DIGIT SP "mstrm:" token *(SP token) <lb/>DIGIT = <DIGIT defined in [RFC5234]> <lb/>token = <token defined in [RFC4566]> <lb/>The maximum value of the attribute is determined by the <lb/>FLOOR-ID format [I-D.ietf-bfcpbis-rfc4582bis]. <lb/>The floor identifier value is the integer representation of the Floor <lb/>ID to be used in BFCP. Each media stream pointer value is associated <lb/>with an SDP 'label' attribute [RFC4574] of a media stream. <lb/>The SDP Offer/Answer procedures for the 'floorid' attribute are <lb/>defined in Section 10. <lb/>Note: In [RFC4583] 'm-stream' was erroneously used in Section 11. <lb/>Although the example was non-normative, it is implemented by some <lb/>vendors and occurs in cases where the endpoint is willing to act <lb/>as a server. Therefore, it is RECOMMENDED to support parsing and <lb/>interpreting 'm-stream' the same way as 'mstrm' when receiving. <lb/>5.5. SDP 'bfcpver' Attribute <lb/>This section defines the SDP 'bfcpver' media-level attribute. The <lb/>attribute is used to negotiate the BFCP version, using decimal <lb/>integer representation. <lb/>The Augmented BNF syntax [RFC5234] for the attributes is: <lb/> + + <note place="footnote"> + Camarillo, et al. <lb/> + + Expires June 11, 2019 <lb/> + </note> + + <page> + [Page 10] <lb/> + </page> + + <note place="headnote"> + Internet-Draft <lb/>BFCP <lb/>December 2018 <lb/> + </note> + + Attribute Name: bfcpver <lb/>Attribute Value: bfcp-version <lb/>Usage Level: media <lb/>Charset Dependent: No <lb/>Mux Category: TBD <lb/>The Augmented BNF syntax [RFC5234] for the attribute is: <lb/>bfcp-version = version *(SP version) <lb/>version <lb/>= 1*DIGIT <lb/>DIGIT = <DIGIT defined in [RFC5234]> <lb/>The maximum value of the attribute is determined by the <lb/>COMMON-HEADER format [I-D.ietf-bfcpbis-rfc4582bis]. <lb/>An endpoint uses the 'bfcpver' attribute to convey the version(s) of <lb/>BFCP supported by the endpoint, using integer values. For a given <lb/>version, the attribute value representing the version MUST match the <lb/>"Version" field that would be presented in the BFCP COMMON-HEADER <lb/>[I-D.ietf-bfcpbis-rfc4582bis]. The BFCP version that will eventually <lb/>be used will be conveyed with a BFCP-level Hello/HelloAck. <lb/>Endpoints compliant with [RFC4583] might not always include the <lb/>'bfcpver' attribute in offers and answers. The attribute value, if <lb/>present, MUST be in accordance with the definition of the Version <lb/>field in [I-D.ietf-bfcpbis-rfc4582bis]. If the attribute is not <lb/>present, endpoints MUST assume a default value in accordance with <lb/>[I-D.ietf-bfcpbis-rfc4582bis]: when used over a reliable transport <lb/>the default attribute value is "1", and when used over an unreliable <lb/>transport the default attribute value is "2". The value is inferred <lb/>from the transport specified in the 'm' line (Section 4) of the 'm' <lb/>section associated with the stream. <lb/>The SDP Offer/Answer procedures for the 'bfcpver' attribute are <lb/>defined in Section 10. <lb/>6. Multiplexing Considerations <lb/>[I-D.ietf-mmusic-sdp-bundle-negotiation] defines how multiplexing of <lb/>multiple media streams can be negotiated. This specification does <lb/>not define how BFCP streams can be multiplexed with other media <lb/>streams. Therefore, a BFCP stream MUST NOT be associated with a <lb/> + + <note place="footnote"> + Camarillo, et al. <lb/> + + Expires June 11, 2019 <lb/> + </note> + + <page> + [Page 11] <lb/> + </page> + + <note place="headnote"> + Internet-Draft <lb/>BFCP <lb/>December 2018 <lb/> + </note> + + BUNDLE group [I-D.ietf-mmusic-sdp-bundle-negotiation]. Note that <lb/>BFCP-controlled media streams might be multiplexed with other media <lb/>streams. <lb/>[I-D.ietf-mmusic-sdp-mux-attributes] defines the mux categories for <lb/>the SDP attributes defined in this specification, except for the <lb/>'bfcpver' attribute. Table 2 defines the mux category for the <lb/>'bfcpver' attribute: <lb/>+---------+-------------------------------------+-------+-----------+ <lb/>| Name <lb/>| Notes <lb/>| Level | Mux <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| Category | <lb/>+---------+-------------------------------------+-------+-----------+ <lb/>| bfcpver | Needs further analysis in a <lb/>| M <lb/>| TBD <lb/>| <lb/>| <lb/>| separate specification <lb/>| <lb/>| <lb/>| <lb/>+---------+-------------------------------------+-------+-----------+ <lb/>Table 2: Multiplexing Attribute Analysis <lb/>7. BFCP Connection Management <lb/>BFCP streams can use TCP or UDP as the underlying transport. <lb/>Endpoints exchanging BFCP messages over UDP send the BFCP messages <lb/>towards the peer using the connection address and port provided in <lb/>the SDP 'c' and 'm' lines. TCP connection management is more <lb/>complicated and is described in the following Section. <lb/>Note: When using Interactive Connectivity Establishment (ICE) <lb/>[RFC8445], TCP/DTLS/BFCP, or UDP/TLS/BFCP, the straight-forward <lb/>procedures for connection management as UDP/BFCP described above <lb/>apply. TCP/TLS/BFCP follows the same procedures as TCP/BFCP and <lb/>is described below. <lb/>7.1. TCP Connection Management <lb/>The management of the TCP connection used to transport BFCP messages <lb/>is performed using the SDP 'setup' and 'connection' attributes <lb/>[RFC4145]. The 'setup' attribute indicates which of the endpoints <lb/>initiates the TCP connection. The 'connection' attribute handles TCP <lb/>connection re-establishment. <lb/>The BFCP specification [I-D.ietf-bfcpbis-rfc4582bis] describes a <lb/>number of situations when the TCP connection between a floor control <lb/>client and the floor control server needs to be re-established. <lb/>However, that specification does not describe the re-establishment <lb/>process because this process depends on how the connection was <lb/>established in the first place. Endpoints using the offer/answer <lb/>mechanism follow the following rules. <lb/> + + <note place="footnote"> + Camarillo, et al. <lb/> + + Expires June 11, 2019 <lb/> + </note> + + <page> + [Page 12] <lb/> + </page> + + <note place="headnote"> + Internet-Draft <lb/>BFCP <lb/>December 2018 <lb/> + </note> + + When the existing TCP connection is closed and re-established <lb/>following the rules in [I-D.ietf-bfcpbis-rfc4582bis], the floor <lb/>control client MUST send an offer towards the floor control server in <lb/>order to re-establish the connection. If a TCP connection cannot <lb/>deliver a BFCP message and times out, the endpoint that attempted to <lb/>send the message (i.e., the one that detected the TCP timeout) MUST <lb/>send an offer in order to re-establish the TCP connection. <lb/>Endpoints that use the offer/answer mechanism to negotiate TCP <lb/>connections MUST support the 'setup' and 'connection' attributes. <lb/>8. TLS/DTLS Considerations <lb/>When DTLS is used with UDP, the generic procedures defined in <lb/>Section 5 of [I-D.ietf-mmusic-dtls-sdp] MUST be followed. <lb/>When TLS is used with TCP, once the underlying connection is <lb/>established, the answerer always acts as the TLS server. If the TCP <lb/>connection is lost, the active endpoint [RFC4583] is responsible for <lb/>re-establishing the TCP connection. Unless a new TLS connection is <lb/>negotiated, subsequent SDP offers and answers will not impact the <lb/>previously negotiated TLS roles. <lb/>Note: For TLS, it was decided to keep the original procedures in <lb/>[RFC4583] to determine which endpoint acts as the TLS server in <lb/>order to retain backwards compatibility. <lb/>9. ICE Considerations <lb/>Generic SDP offer/answer procedures for Interactive Connectivity <lb/>Establishment (ICE) are defined in [I-D.ietf-mmusic-ice-sip-sdp]. <lb/>When BFCP is used with UDP based ICE candidates [RFC8445] then the <lb/>procedures for UDP/TLS/BFCP are used. <lb/>When BFCP is used with TCP based ICE candidates [RFC6544] then the <lb/>procedures for TCP/DTLS/BFCP are used. <lb/>Based on the procedures defined in [I-D.ietf-mmusic-dtls-sdp], <lb/>endpoints treat all ICE candidate pairs associated with a BFCP stream <lb/>on top of a DTLS association as part of the same DTLS association. <lb/>Thus, there will only be one BFCP handshake and one DTLS handshake <lb/>even if there are multiple valid candidate pairs, and if BFCP media <lb/>is shifted between candidate pairs (including switching between UDP <lb/>to TCP candidate pairs) prior to nomination. If new candidates are <lb/>added, they will also be part of the same DTLS association. <lb/> + + <note place="footnote"> + Camarillo, et al. <lb/> + + Expires June 11, 2019 <lb/> + </note> + + <page> + [Page 13] <lb/> + </page> + + <note place="headnote"> + Internet-Draft <lb/>BFCP <lb/>December 2018 <lb/> + </note> + + In order to maximize the likelihood of interoperability between the <lb/>endpoints, all ICE enabled BFCP-over-DTLS endpoints SHOULD implement <lb/>support for UDP/TLS/BFCP. <lb/>When an SDP offer or answer conveys multiple ICE candidates for a <lb/>BFCP stream, UDP based candidates SHOULD be included and the default <lb/>candidate SHOULD be chosen from one of those UDP candidates. If UDP <lb/>transport is used for the default candidate, then the 'm' line proto <lb/>value MUST be 'UDP/TLS/BFCP'. If TCP transport is used for the <lb/>default candidate, the 'm' line proto value MUST be 'TCP/DTLS/BFCP'. <lb/>Note: Usage of ICE with protocols other than UDP/TLS/BFCP and <lb/>TCP/DTLS/BFCP is outside of scope for this specification. <lb/>10. SDP Offer/Answer Procedures <lb/>This section defines the SDP offer/answer [RFC3264] procedures for <lb/>negotiating and establishing a BFCP stream. Generic procedures for <lb/>DTLS are defined in [I-D.ietf-mmusic-dtls-sdp]. Generic procedures <lb/>for TLS are defined in [RFC8122]. <lb/>This section only defines the BFCP-specific procedures. Unless <lb/>explicitly stated otherwise, the procedures apply to an 'm' section <lb/>describing a BFCP stream. If an offer or answer contains multiple <lb/>'m' sections describing BFCP streams, the procedures are applied <lb/>independently to each stream. <lb/>Within this document, 'initial offer' refers to the first offer, <lb/>within an SDP session (e.g. a SIP dialog when the Session Initiation <lb/>Protocol (SIP) [RFC3261] is used to carry SDP) in which the offerer <lb/>indicates that it wants to negotiate the establishment of a BFCP <lb/>stream. <lb/>If the 'm' line 'proto' value is 'TCP/TLS/BFCP', 'TCP/DTLS/BFCP' or <lb/>'UDP/TLS/BFCP', the offerer and answerer follow the generic <lb/>procedures defined in [RFC8122]. <lb/>If the 'm' line proto value is 'TCP/BFCP', 'TCP/TLS/BFCP', 'TCP/DTLS/ <lb/>TCP' or 'UDP/TLS/BFCP', the offerer and answerer use the SDP 'setup' <lb/>attribute according to the procedures in [RFC4145]. <lb/>If the 'm' line proto value is 'TCP/BFCP', 'TCP/TLS/BFCP' or <lb/>'TCP/DTLS/BFCP', the offerer and anwerer use the SDP 'connection' <lb/>attribute according to the procedures in [RFC4145]. <lb/>Note: The use of source-specific SDP parameters [RFC5576] is not <lb/>defined for BFCP streams. <lb/> + + <note place="footnote"> + Camarillo, et al. <lb/> + + Expires June 11, 2019 <lb/> + </note> + + <page> + [Page 14] <lb/> + </page> + + <note place="headnote"> + Internet-Draft <lb/>BFCP <lb/>December 2018 <lb/> + </note> + + + 10.1. Generating the Initial SDP Offer <lb/>When the offerer creates an initial offer, the offerer MUST include <lb/>an SDP 'floorctrl' attribute (Section 5.1) and an SDP 'bfcpver' <lb/>attribute (Section 5.5) in the 'm' section. <lb/>In addition, if the offerer includes an SDP 'floorctrl' attribute <lb/>with 's-only' or 'c-s' attribute values in the offer, the offerer: <lb/>o MUST include an SDP 'confid' attribute (Section 5.2) in the 'm' <lb/>section; and <lb/>o MUST include an SDP 'userid' attribute (Section 5.3) in the 'm' <lb/>section; and <lb/>o MUST include an SDP 'floorid' attribute (Section 5.4) in the 'm' <lb/>section; and <lb/>o MUST include an SDP 'label' attribute ([RFC4574]) with the 'm' <lb/>section of each BFCP-controlled media stream. <lb/>Note: If the offerer includes an SDP 'floorctrl' attribute with a <lb/>'c-s' attribute value, or both a 'c-only' and a 's-only' attribute <lb/>value in the offer, the attribute values above will only be used <lb/>if it is determined (Section 5.1) that the offerer will act as <lb/>floor control server. <lb/>10.2. Generating the SDP Answer <lb/>When the answerer receives an offer that contains an 'm' section <lb/>describing a BFCP stream, the answerer MUST check whether it supports <lb/>one or more of the BFCP versions supported by the offerer <lb/>(Section 5.5). If the answerer does not support any of the BFCP <lb/>versions, it MUST NOT accept the 'm' section. Otherwise, if the <lb/>answerer accepts the 'm' section, it: <lb/>o MUST insert a corresponding 'm' section in the answer, with an <lb/>identical 'm' line proto value [RFC3264]; and <lb/>o MUST include a 'bfcpver' attribute in the 'm' section. The <lb/>versions indicated by the answer MUST be the same or a subset of <lb/>the versions indicated by the offerer in the corresponding offer; <lb/>and <lb/>o MUST, if the offer contained an SDP 'floorctrl' attribute, include <lb/>a 'floorctrl' attribute in the 'm' section. <lb/> + + <note place="footnote"> + Camarillo, et al. <lb/> + + Expires June 11, 2019 <lb/> + </note> + + <page> + [Page 15] <lb/> + </page> + + <note place="headnote"> + Internet-Draft <lb/>BFCP <lb/>December 2018 <lb/> + </note> + + In addition, if the answerer includes an SDP 'floorctrl' attribute <lb/>with an 's-only' attribute value in the answer, the answerer: <lb/>o MUST include an SDP 'confid' attribute in the 'm' section; and <lb/>o MUST include an SDP 'userid' attribute in the 'm' section; and <lb/>o MUST include an SDP 'floorid' attribute in the 'm' section; and <lb/>o MUST include an SDP 'label' attribute in the 'm' section of each <lb/>BFCP-controlled media stream. <lb/>Note: An offerer compliant with [RFC4583] might not include <lb/>'floorctrl' and 'bfcpver' attributes in offers, in which cases the <lb/>default values apply. <lb/>Once the answerer has sent the answer, the answerer: <lb/>o MUST, if the answerer is the active endpoint, and if a TCP <lb/>connection associated with the 'm' section is to be established <lb/>(or re-established), initiate the establishing of the TCP <lb/>connection; and <lb/>o MUST, if the answerer is the active endpoint, and if an TLS/DTLS <lb/>connection associated with the 'm' section is to be established <lb/>(or re-established), initiate the establishing of the TLS/DTLS <lb/>connection (by sending a ClientHello message). <lb/>If the answerer does not accept the 'm' section in the offer, it MUST <lb/>assign a zero port value to the 'm' line of the corresponding 'm' <lb/>section in the answer. In addition, the answerer MUST NOT establish <lb/>a TCP connection or a TLS/DTLS connection associated with the 'm' <lb/>section. <lb/>10.3. Offerer Processing of the SDP Answer <lb/>When the offerer receives an answer that contains an 'm' section with <lb/>a non-zero port value, describing a BFCP stream, the offerer: <lb/>o MUST, if the offerer is the active endpoint, and if a TCP <lb/>connection associated with the 'm' section is to be established <lb/>(or re-established), initiate the establishing of the TCP <lb/>connection; and <lb/>o MUST, if the offerer is the active endpoint, and if an TLS/DTLS <lb/>connection associated with the 'm' section is to be established <lb/>(or re-established), initiate the establishing of the TLS/DTLS <lb/>connection (by sending a ClientHello message). <lb/> + + <note place="footnote"> + Camarillo, et al. <lb/> + + Expires June 11, 2019 <lb/> + </note> + + <page> + [Page 16] <lb/> + </page> + + <note place="headnote"> + Internet-Draft <lb/>BFCP <lb/>December 2018 <lb/> + </note> + + Note: An answerer compliant with [RFC4583] might not include <lb/>'floorctrl' and 'bfcpver' attributes in answers, in which cases the <lb/>default values apply. <lb/>If the 'm' line in the answer contains a zero port value, or if the <lb/>offerer for some other reason does not accept the answer (e.g., if <lb/>the answerer only indicates support of BFCP versions not supported by <lb/>the offerer), the offerer MUST NOT establish a TCP connection or a <lb/>TLS/DTLS connection associated with the 'm' section. <lb/>10.4. Modifying the Session <lb/>When an offerer sends an updated offer, in order to modify a <lb/>previously established BFCP stream, it follows the procedures in <lb/>Section 10.1, with the following exceptions: <lb/>o If the BFCP stream is carried on top of TCP, and if the offerer <lb/>does not want to re-establish an existing TCP connection, the <lb/>offerer MUST include an SDP 'connection' attribute with a value of <lb/>"existing", in the 'm' section; and <lb/>o If the offerer wants to disable a previously established BFCP <lb/>stream, it MUST assign a zero port value to the 'm' line <lb/>associated with the BFCP connection, following the procedures in <lb/>[RFC3264]. <lb/>11. Examples <lb/>For the purpose of brevity, the main portion of the session <lb/>description is omitted in the examples, which only show 'm' sections <lb/>and their 'm' lines and attributes. <lb/>The following is an example of an offer sent by a conference server <lb/>to a client. <lb/> + + <note place="footnote"> + Camarillo, et al. <lb/> + + Expires June 11, 2019 <lb/> + </note> + + <page> + [Page 17] <lb/> + </page> + + <note place="headnote"> + Internet-Draft <lb/>BFCP <lb/>December 2018 <lb/> + </note> + + m=application 50000 TCP/TLS/BFCP * <lb/>a=setup:actpass <lb/>a=connection:new <lb/>a=fingerprint:sha-256 \ <lb/>19:E2:1C:3B:4B:9F:81:E6:B8:5C:F4:A5:A8:D8:73:04: \ <lb/>BB:05:2F:70:9F:04:A9:0E:05:E9:26:33:E8:70:88:A2 <lb/>a=floorctrl:c-only s-only <lb/>a=confid:4321 <lb/>a=userid:1234 <lb/>a=floorid:1 mstrm:10 <lb/>a=floorid:2 mstrm:11 <lb/>a=bfcpver:1 2 <lb/>m=audio 50002 RTP/AVP 0 <lb/>a=label:10 <lb/>m=video 50004 RTP/AVP 31 <lb/>a=label:11 <lb/>Note that due to RFC formatting conventions, this document splits SDP <lb/>across lines whose content would exceed 72 characters. A backslash <lb/>character marks where this line folding has taken place. This <lb/>backslash and its trailing CRLF and whitespace would not appear in <lb/>actual SDP content. <lb/>The following is the answer returned by the client. <lb/>m=application 9 TCP/TLS/BFCP * <lb/>a=setup:active <lb/>a=connection:new <lb/>a=fingerprint:sha-256 \ <lb/>6B:8B:F0:65:5F:78:E2:51:3B:AC:6F:F3:3F:46:1B:35: \ <lb/>DC:B8:5F:64:1A:24:C2:43:F0:A1:58:D0:A1:2C:19:08 <lb/>a=floorctrl:c-only <lb/>a=bfcpver:1 <lb/>m=audio 55000 RTP/AVP 0 <lb/>m=video 55002 RTP/AVP 31 <lb/>A similar example using unreliable transport and DTLS is shown below, <lb/>where the offer is sent from a client. <lb/> + + <note place="footnote"> + Camarillo, et al. <lb/> + + Expires June 11, 2019 <lb/> + </note> + + <page> + [Page 18] <lb/> + </page> + + <note place="headnote"> + Internet-Draft <lb/>BFCP <lb/>December 2018 <lb/> + </note> + + m=application 50000 UDP/TLS/BFCP * <lb/>a=setup:actpass <lb/>a=dtls-id:abc3dl <lb/>a=fingerprint:sha-256 \ <lb/>19:E2:1C:3B:4B:9F:81:E6:B8:5C:F4:A5:A8:D8:73:04: \ <lb/>BB:05:2F:70:9F:04:A9:0E:05:E9:26:33:E8:70:88:A2 <lb/>a=floorctrl:c-only s-only <lb/>a=confid:4321 <lb/>a=userid:1234 <lb/>a=floorid:1 mstrm:10 <lb/>a=floorid:2 mstrm:11 <lb/>a=bfcpver:1 2 <lb/>m=audio 50002 RTP/AVP 0 <lb/>a=label:10 <lb/>m=video 50004 RTP/AVP 31 <lb/>a=label:11 <lb/>The following is the answer returned by the server. <lb/>m=application 55000 UDP/TLS/BFCP * <lb/>a=setup:active <lb/>a=dtls-id:abc3dl <lb/>a=fingerprint:sha-256 \ <lb/>6B:8B:F0:65:5F:78:E2:51:3B:AC:6F:F3:3F:46:1B:35: \ <lb/>DC:B8:5F:64:1A:24:C2:43:F0:A1:58:D0:A1:2C:19:08 <lb/>a=floorctrl:s-only <lb/>a=confid:4321 <lb/>a=userid:1234 <lb/>a=floorid:1 mstrm:10 <lb/>a=floorid:2 mstrm:11 <lb/>a=bfcpver:2 <lb/>m=audio 55002 RTP/AVP 0 <lb/>m=video 55004 RTP/AVP 31 <lb/>12. Security Considerations <lb/>The BFCP [I-D.ietf-bfcpbis-rfc4582bis], SDP [RFC4566], and offer/ <lb/>answer [RFC3264] specifications discuss security issues related to <lb/>BFCP, SDP, and offer/answer, respectively. In addition, [RFC4145] <lb/>and [RFC8122] discuss security issues related to the establishment of <lb/>TCP and TLS connections using an offer/answer model. Furthermore, <lb/>when using DTLS over UDP, the generic offer/answer considerations <lb/>defined in [I-D.ietf-mmusic-dtls-sdp] MUST be followed. <lb/>The usage of certain proto values in the SDP offer/answer negotiation <lb/>will result in a BFCP stream that is not protected by TLS or DTLS. <lb/>Operators will need to provide integrity protection and <lb/>confidentiality protection of the BFCP stream using other means. <lb/> + + <note place="footnote"> + Camarillo, et al. <lb/> + + Expires June 11, 2019 <lb/> + </note> + + <page> + [Page 19] <lb/> + </page> + + <note place="headnote"> + Internet-Draft <lb/>BFCP <lb/>December 2018 <lb/> + </note> + + The generic security considerations associated with SDP attributes <lb/>are defined in [RFC3264]. While the attributes defined in this <lb/>specification do not reveal information about the content of <lb/>individual BFCP controlled media streams, they do reveal which media <lb/>streams will be BFCP controlled. <lb/>13. IANA Considerations <lb/>[Editorial note: The changes in Section 13.1 instruct the IANA to <lb/>register the three new values TCP/DTLS/BFCP, UDP/BFCP and UDP/TLS/ <lb/>BFCP for the SDP 'proto' field. The new section Section 5.5 <lb/>registers a new SDP "bfcpver" attribute. The rest is unchanged <lb/>from [RFC4582].] <lb/>13.1. Registration of SDP 'proto' Values <lb/>The IANA is requested to register the following values for the SDP <lb/>'proto' field under the Session Description Protocol (SDP) Parameters <lb/>registry: <lb/>+---------------+------------+ <lb/>| Value <lb/>| Reference | <lb/>+---------------+------------+ <lb/>| TCP/BFCP <lb/>| [RFC XXXX] | <lb/>| TCP/DTLS/BFCP | [RFC XXXX] | <lb/>| TCP/TLS/BFCP | [RFC XXXX] | <lb/>| UDP/BFCP <lb/>| [RFC XXXX] | <lb/>| UDP/TLS/BFCP | [RFC XXXX] | <lb/>+---------------+------------+ <lb/>Table 3: Values for the SDP 'proto' field <lb/>13.2. Registration of the SDP 'floorctrl' Attribute <lb/>This document defines the SDP attribute,'floorctrl'. The details of <lb/>the attribute are defined in Section 5.1. <lb/>13.3. Registration of the SDP 'confid' Attribute <lb/>This document defines the SDP attribute,'confid'. The details of the <lb/>attribute are defined in Section 5.2. <lb/>13.4. Registration of the SDP 'userid' Attribute <lb/>This document defines the SDP attribute,'userid'. The details of the <lb/>attribute are defined in Section 5.3. <lb/> + + <note place="footnote"> + Camarillo, et al. <lb/> + + Expires June 11, 2019 <lb/> + </note> + + <page> + [Page 20] <lb/> + </page> + + <note place="headnote"> + Internet-Draft <lb/>BFCP <lb/>December 2018 <lb/> + </note> + + 13.5. Registration of the SDP 'floorid' Attribute <lb/>This document defines the SDP attribute,'floorid'. The details of <lb/>the attribute are defined in Section 5.4. <lb/>13.6. Registration of the SDP 'bfcpver' Attribute <lb/>This document defines the SDP attribute,'bfcpver'. The details of <lb/>the attribute are defined in Section 5.5. <lb/>14. Changes from RFC 4583 <lb/>Following is the list of technical changes and other fixes from <lb/>[RFC4583]. <lb/>Main purpose of this work was to add signaling support necessary to <lb/>support BFCP over unreliable transport, as described in <lb/>[I-D.ietf-bfcpbis-rfc4582bis], resulting in the following changes: <lb/>1. Fields in the 'm' line (Section 4): <lb/>The section is re-written to remove reference to the exclusivity <lb/>of TCP as a transport for BFCP streams. The proto field values <lb/>TCP/DTLS/BFCP, UDP/BFCP and UDP/TLS/BFCP added. <lb/>2. Security Considerations (Section 12): <lb/>For the DTLS over UDP case, mention existing considerations and <lb/>requirements for the offer/answer exchange in <lb/>[I-D.ietf-mmusic-dtls-sdp]. <lb/>3. Registration of SDP 'proto' Values (Section 13.1): <lb/>Register the three new values TCP/DTLS/BFCP, UDP/BFCP and <lb/>UDP/TLS/BFCP in the SDP parameters registry. <lb/>4. BFCP Version Negotiation (Section 5.5): <lb/>A new 'bfcpver' SDP media-level attribute is added in order to <lb/>signal supported version number. <lb/>In addition to the changes associated with support of BFCP over <lb/>unreliable transport, the possibility for an endpoint to act as both <lb/>floor control client and floor control server at the same time has <lb/>been removed. An endpoint will now take the same role for all BFCP-<lb/>controlled streams associated with the BFCP stream. <lb/>Clarification and bug fixes: <lb/>1. Errata ID: 712 (Section 3 and Section 10): <lb/> + + <note place="footnote"> + Camarillo, et al. <lb/> + + Expires June 11, 2019 <lb/> + </note> + + <page> + [Page 21] <lb/> + </page> + + <note place="headnote"> + Internet-Draft <lb/>BFCP <lb/>December 2018 <lb/> + </note> + + Language clarification. Don't use terms like an SDP attribute is <lb/>"used in an 'm' line", instead make clear that the attribute is a <lb/>media-level attribute. <lb/>2. Fix typo in example (Section 11): <lb/>Do not use 'm-stream' in the SDP example, use the correct 'mstrm' <lb/>as specified in Section 11. Recommend interpreting 'm-stream' if <lb/>it is received, since it is present in some implementations. <lb/>3. Assorted clarifications (Across the document): <lb/>Language clarifications as a result of reviews. Also, the <lb/>normative language where tightened where appropriate, i.e. <lb/>changed from SHOULD strength to MUST in a number of places. <lb/> + </body> + + <div type="acknowledgement">15. Acknowledgements <lb/>Joerg Ott, Keith Drage, Alan Johnston, Eric Rescorla, Roni Even, and <lb/>Oscar Novo provided useful ideas for the original [RFC4583]. The <lb/>authors also acknowledge contributions to the revision of BFCP for <lb/>use over an unreliable transport from Geir Arne Sandbakken, Charles <lb/>Eckel, Alan Ford, Eoin McLeod and Mark Thompson. Useful and <lb/>important final reviews were done by Ali C. Begen, Mary Barnes and <lb/>Charles Eckel. In the final stages, Roman Shpount made a <lb/>considerable effort in adding proper ICE support and considerations. <lb/> + </div> + + <listBibl>16. References <lb/>16.1. Normative References <lb/>[I-D.ietf-bfcpbis-rfc4582bis] <lb/>Camarillo, G., Drage, K., Kristensen, T., Ott, J., and C. <lb/>Eckel, "The Binary Floor Control Protocol (BFCP)", draft-<lb/>ietf-bfcpbis-rfc4582bis-16 (work in progress), November <lb/>2015. <lb/>[I-D.ietf-mmusic-dtls-sdp] <lb/>Holmberg, C. and R. Shpount, "Session Description Protocol <lb/>(SDP) Offer/Answer Considerations for Datagram Transport <lb/>Layer Security (DTLS) and Transport Layer Security (TLS)", <lb/>draft-ietf-mmusic-dtls-sdp-32 (work in progress), October <lb/>2017. <lb/>[I-D.ietf-mmusic-ice-sip-sdp] <lb/>Petit-Huguenin, M., Nandakumar, S., and A. Keranen, <lb/>"Session Description Protocol (SDP) Offer/Answer <lb/>procedures for Interactive Connectivity Establishment <lb/>(ICE)", draft-ietf-mmusic-ice-sip-sdp-24 (work in <lb/>progress), November 2018. <lb/> + </listBibl> + + <note place="footnote"> + Camarillo, et al. <lb/>Expires June 11, 2019 <lb/> + </note> + + <page>[Page 22] <lb/></page> + + <note place="headnote"> + Internet-Draft <lb/>BFCP <lb/>December 2018 <lb/> + </note> + + <listBibl>[I-D.ietf-mmusic-sdp-mux-attributes] <lb/>Nandakumar, S., "A Framework for SDP Attributes when <lb/>Multiplexing", draft-ietf-mmusic-sdp-mux-attributes-17 <lb/>(work in progress), February 2018. <lb/>[RFC2119] Bradner, S., "Key words for use in RFCs to Indicate <lb/>Requirement Levels", BCP 14, RFC 2119, <lb/>DOI 10.17487/RFC2119, March 1997, <https://www.rfc-<lb/>editor.org/info/rfc2119>. <lb/>[RFC3261] Rosenberg, J., Schulzrinne, H., Camarillo, G., Johnston, <lb/>A., Peterson, J., Sparks, R., Handley, M., and E. <lb/>Schooler, "SIP: Session Initiation Protocol", RFC 3261, <lb/>DOI 10.17487/RFC3261, June 2002, <https://www.rfc-<lb/>editor.org/info/rfc3261>. <lb/>[RFC3264] Rosenberg, J. and H. Schulzrinne, "An Offer/Answer Model <lb/>with Session Description Protocol (SDP)", RFC 3264, <lb/>DOI 10.17487/RFC3264, June 2002, <https://www.rfc-<lb/>editor.org/info/rfc3264>. <lb/>[RFC4145] Yon, D. and G. Camarillo, "TCP-Based Media Transport in <lb/>the Session Description Protocol (SDP)", RFC 4145, <lb/>DOI 10.17487/RFC4145, September 2005, <https://www.rfc-<lb/>editor.org/info/rfc4145>. <lb/>[RFC4566] Handley, M., Jacobson, V., and C. Perkins, "SDP: Session <lb/>Description Protocol", RFC 4566, DOI 10.17487/RFC4566, <lb/>July 2006, <https://www.rfc-editor.org/info/rfc4566>. <lb/>[RFC4571] Lazzaro, J., "Framing Real-time Transport Protocol (RTP) <lb/>and RTP Control Protocol (RTCP) Packets over Connection-<lb/>Oriented Transport", RFC 4571, DOI 10.17487/RFC4571, July <lb/>2006, <https://www.rfc-editor.org/info/rfc4571>. <lb/>[RFC4574] Levin, O. and G. Camarillo, "The Session Description <lb/>Protocol (SDP) Label Attribute", RFC 4574, <lb/>DOI 10.17487/RFC4574, August 2006, <https://www.rfc-<lb/>editor.org/info/rfc4574>. <lb/>[RFC4582] Camarillo, G., Ott, J., and K. Drage, "The Binary Floor <lb/>Control Protocol (BFCP)", RFC 4582, DOI 10.17487/RFC4582, <lb/>November 2006, <https://www.rfc-editor.org/info/rfc4582>. <lb/>[RFC4583] Camarillo, G., "Session Description Protocol (SDP) Format <lb/>for Binary Floor Control Protocol (BFCP) Streams", <lb/>RFC 4583, DOI 10.17487/RFC4583, November 2006, <lb/><https://www.rfc-editor.org/info/rfc4583>. <lb/> + </listBibl> + + <note place="footnote"> + Camarillo, et al. <lb/> + + Expires June 11, 2019 <lb/> + </note> + + <page> + [Page 23] <lb/> + </page> + + <note place="headnote"> + Internet-Draft <lb/>BFCP <lb/>December 2018 <lb/> + </note> + + <listBibl>[RFC5234] Crocker, D., Ed. and P. Overell, "Augmented BNF for Syntax <lb/>Specifications: ABNF", STD 68, RFC 5234, <lb/>DOI 10.17487/RFC5234, January 2008, <https://www.rfc-<lb/>editor.org/info/rfc5234>. <lb/>[RFC6347] Rescorla, E. and N. Modadugu, "Datagram Transport Layer <lb/>Security Version 1.2", RFC 6347, DOI 10.17487/RFC6347, <lb/>January 2012, <https://www.rfc-editor.org/info/rfc6347>. <lb/>[RFC6544] Rosenberg, J., Keranen, A., Lowekamp, B., and A. Roach, <lb/>"TCP Candidates with Interactive Connectivity <lb/>Establishment (ICE)", RFC 6544, DOI 10.17487/RFC6544, <lb/>March 2012, <https://www.rfc-editor.org/info/rfc6544>. <lb/>[RFC8122] Lennox, J. and C. Holmberg, "Connection-Oriented Media <lb/>Transport over the Transport Layer Security (TLS) Protocol <lb/>in the Session Description Protocol (SDP)", RFC 8122, <lb/>DOI 10.17487/RFC8122, March 2017, <https://www.rfc-<lb/>editor.org/info/rfc8122>. <lb/>[RFC8174] Leiba, B., "Ambiguity of Uppercase vs Lowercase in RFC <lb/>2119 Key Words", BCP 14, RFC 8174, DOI 10.17487/RFC8174, <lb/>May 2017, <https://www.rfc-editor.org/info/rfc8174>. <lb/>[RFC8445] Keranen, A., Holmberg, C., and J. Rosenberg, "Interactive <lb/>Connectivity Establishment (ICE): A Protocol for Network <lb/>Address Translator (NAT) Traversal", RFC 8445, <lb/>DOI 10.17487/RFC8445, July 2018, <https://www.rfc-<lb/>editor.org/info/rfc8445>. <lb/>16.2. Informational References <lb/>[I-D.ietf-mmusic-sdp-bundle-negotiation] <lb/>Holmberg, C., Alvestrand, H., and C. Jennings, <lb/>"Negotiating Media Multiplexing Using the Session <lb/>Description Protocol (SDP)", draft-ietf-mmusic-sdp-bundle-<lb/>negotiation-53 (work in progress), September 2018. <lb/>[RFC5576] Lennox, J., Ott, J., and T. Schierl, "Source-Specific <lb/>Media Attributes in the Session Description Protocol <lb/>(SDP)", RFC 5576, DOI 10.17487/RFC5576, June 2009, <lb/><https://www.rfc-editor.org/info/rfc5576>. <lb/> + </listBibl> + + Authors' Addresses <lb/> + + <note place="footnote"> + Camarillo, et al. <lb/> + + Expires June 11, 2019 <lb/> + </note> + + <page> + [Page 24] <lb/> + </page> + + <note place="headnote"> + Internet-Draft <lb/>BFCP <lb/>December 2018 <lb/> + </note> + + <front>Gonzalo Camarillo <lb/>Ericsson <lb/>Hirsalantie 11 <lb/>FI-02420 Jorvas <lb/>Finland <lb/>Email: Gonzalo.Camarillo@ericsson.com <lb/>Tom Kristensen <lb/>Cisco <lb/>Philip Pedersens vei 1 <lb/>NO-1366 Lysaker <lb/>Norway <lb/>Email: tomkrist@cisco.com, tomkri@ifi.uio.no <lb/>Christer Holmberg <lb/>Ericsson <lb/>Hirsalantie 11 <lb/>Jorvas 02420 <lb/>Finland <lb/>Email: christer.holmberg@ericsson.com <lb/> + </front> + + <note place="footnote"> + Camarillo, et al. <lb/> + + Expires June 11, 2019 <lb/> + </note> + + <page> + [Page 25] <lb/> + </page> + + + </text> +</tei> diff --git a/grobid-trainer/resources/dataset/segmentation/sdo/ietf/corpus/tei/draft-ietf-mpls-rmr-12.segmentation.tei.xml b/grobid-trainer/resources/dataset/segmentation/sdo/ietf/corpus/tei/draft-ietf-mpls-rmr-12.segmentation.tei.xml new file mode 100644 index 0000000000..851b877e6a --- /dev/null +++ b/grobid-trainer/resources/dataset/segmentation/sdo/ietf/corpus/tei/draft-ietf-mpls-rmr-12.segmentation.tei.xml @@ -0,0 +1,171 @@ +<?xml version="1.0" ?> +<tei xml:space="preserve"> + <teiHeader> + <fileDesc xml:id="0"/> + </teiHeader> + <text xml:lang="en"> + <front> + MPLS WG <lb/>K. Kompella <lb/>Internet-Draft <lb/>Juniper Networks, Inc. <lb/>Intended status: Standards Track <lb/>L. Contreras <lb/>Expires: April 25, 2020 <lb/>Telefonica <lb/>October 23, 2019 <lb/>Resilient MPLS Rings <lb/>draft-ietf-mpls-rmr-12 <lb/>Abstract <lb/>This document describes the use of the MPLS control and data planes <lb/>on ring topologies. It describes the special nature of rings, and <lb/>proceeds to show how MPLS can be effectively used in such topologies. <lb/>It describes how MPLS rings are configured, auto-discovered and <lb/>signaled, as well as how the data plane works. Companion documents <lb/>describe the details of discovery and signaling for specific <lb/>protocols. <lb/>Requirements Language <lb/>The key words "MUST", "MUST NOT", "REQUIRED", "SHALL", "SHALL NOT", <lb/>"SHOULD", "SHOULD NOT", "RECOMMENDED", "MAY", and "OPTIONAL" in this <lb/>document are to be interpreted as described in [RFC2119]. <lb/>Status of This Memo <lb/>This Internet-Draft is submitted in full conformance with the <lb/>provisions of BCP 78 and BCP 79. <lb/>Internet-Drafts are working documents of the Internet Engineering <lb/>Task Force (IETF). Note that other groups may also distribute <lb/>working documents as Internet-Drafts. The list of current Internet-<lb/>Drafts is at https://datatracker.ietf.org/drafts/current/. <lb/>Internet-Drafts are draft documents valid for a maximum of six months <lb/>and may be updated, replaced, or obsoleted by other documents at any <lb/>time. It is inappropriate to use Internet-Drafts as reference <lb/>material or to cite them other than as "work in progress." <lb/>This Internet-Draft will expire on April 25, 2020. <lb/>Copyright Notice <lb/>Copyright (c) 2019 IETF Trust and the persons identified as the <lb/>document authors. All rights reserved. <lb/>Kompella & Contreras <lb/>Expires April 25, 2020 <lb/>[Page 1] <lb/>Internet-Draft <lb/>Resilient MPLS Rings <lb/>October 2019 <lb/>This document is subject to BCP 78 and the IETF Trust's Legal <lb/>Provisions Relating to IETF Documents <lb/>(https://trustee.ietf.org/license-info) in effect on the date of <lb/>publication of this document. Please review these documents <lb/>carefully, as they describe your rights and restrictions with respect <lb/>to this document. Code Components extracted from this document must <lb/>include Simplified BSD License text as described in Section 4.e of <lb/>the Trust Legal Provisions and are provided without warranty as <lb/>described in the Simplified BSD License. <lb/> + </front> + + <div type="toc"> + Table of Contents <lb/>1. Introduction . . . . . . . . . . . . . . . . . . . . . . . . <lb/>2 <lb/>1.1. Definitions . . . . . . . . . . . . . . . . . . . . . . . <lb/>3 <lb/>2. Motivation . . . . . . . . . . . . . . . . . . . . . . . . . <lb/>5 <lb/>3. Theory of Operation . . . . . . . . . . . . . . . . . . . . . <lb/>5 <lb/>3.1. Provisioning . . . . . . . . . . . . . . . . . . . . . . <lb/>5 <lb/>3.2. Ring Nodes . . . . . . . . . . . . . . . . . . . . . . . <lb/>6 <lb/>3.3. Ring Links and Directions . . . . . . . . . . . . . . . . <lb/>6 <lb/>3.3.1. Express Links . . . . . . . . . . . . . . . . . . . . <lb/>6 <lb/>3.4. Ring LSPs . . . . . . . . . . . . . . . . . . . . . . . . <lb/>7 <lb/>3.5. Installing Primary LFIB Entries . . . . . . . . . . . . . <lb/>7 <lb/>3.6. Protection . . . . . . . . . . . . . . . . . . . . . . . <lb/>7 <lb/>3.7. Installing FRR LFIB Entries . . . . . . . . . . . . . . . <lb/>8 <lb/>4. Autodiscovery . . . . . . . . . . . . . . . . . . . . . . . . <lb/>9 <lb/>4.1. Overview . . . . . . . . . . . . . . . . . . . . . . . . <lb/>9 <lb/>4.2. Ring Announcement Phase . . . . . . . . . . . . . . . . . 10 <lb/>4.3. Mastership Phase . . . . . . . . . . . . . . . . . . . . 11 <lb/>4.4. Ring Identification Phase . . . . . . . . . . . . . . . . 11 <lb/>4.5. Ring Changes . . . . . . . . . . . . . . . . . . . . . . 12 <lb/>5. Ring OAM . . . . . . . . . . . . . . . . . . . . . . . . . . 13 <lb/>6. Advanced Topics . . . . . . . . . . . . . . . . . . . . . . . 13 <lb/>6.1. Half-rings . . . . . . . . . . . . . . . . . . . . . . . 13 <lb/>6.2. Hub Node Resilience . . . . . . . . . . . . . . . . . . . 13 <lb/>7. Security Considerations . . . . . . . . . . . . . . . . . . . 14 <lb/>8. Acknowledgments . . . . . . . . . . . . . . . . . . . . . . . 14 <lb/>9. IANA Considerations . . . . . . . . . . . . . . . . . . . . . 14 <lb/>10. References . . . . . . . . . . . . . . . . . . . . . . . . . 14 <lb/>10.1. Normative References . . . . . . . . . . . . . . . . . . 14 <lb/>10.2. Informative References . . . . . . . . . . . . . . . . . 14 <lb/>Authors' Addresses . . . . . . . . . . . . . . . . . . . . . . . 15 <lb/> + </div> + + <body> + 1. Introduction <lb/>Rings are a very common topology in transport networks. A ring is <lb/>the simplest topology offering link and node resilience. Rings are <lb/>nearly ubiquitous in access and aggregation networks. As MPLS <lb/>increases its presence in such networks, and takes on a greater role <lb/></body> + + <note place="footnote">Kompella & Contreras <lb/>Expires April 25, 2020 <lb/></note> + + <page>[Page 2] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>Resilient MPLS Rings <lb/>October 2019 <lb/></note> + + <body> + in transport, it is imperative that MPLS handles rings well; this is <lb/>not the case today. <lb/>This document describes the special nature of rings, and the special <lb/>needs of MPLS on rings. It then shows how these needs can be met in <lb/>several ways, some of which involve extensions to protocols such as <lb/>IS-IS [RFC5305], OSPF[RFC3630], RSVP-TE [RFC3209] and LDP [RFC5036]. <lb/>RMR LSPs can also be signaled with SPRING [RFC8402]; that will be <lb/>described in a future document. <lb/>The intent of this document is to handle rings that "occur <lb/>naturally". Many access and aggregation networks in metros have <lb/>their start as a simple ring. They may then grow into more complex <lb/>topologies, for example, by adding parallel links to the ring, or by <lb/>adding "express" links. The goal here is to discover these rings <lb/>(with some guidance), and run MPLS over them efficiently. The intent <lb/>is not to construct rings in a mesh network, and use those for <lb/>protection. <lb/>1.1. Definitions <lb/>A (directed) graph G = (V, E) consists of a set of vertices (or <lb/>nodes) V and a set of edges (or links) E. An edge is an ordered pair <lb/>of nodes (a, b), where a and b are in V. (In this document, the <lb/>terms node and link will be used instead of vertex and edge.) <lb/>A ring is a subgraph of G. A ring consists of a subset of n nodes <lb/>{R_i, 0 <= i < n} of V. The directed edges {(R_i, R_i+1) and (R_i+1, <lb/>R_i), 0 <= i < n-1} must be a subset of E (note that index arithmetic <lb/>is done modulo n). We define the direction from node R_i to R_i+1 as <lb/>"clockwise" (CW) and the reverse direction as "anticlockwise" (AC). <lb/>As there may be several rings in a graph, we number each ring with a <lb/>distinct ring ID RID. <lb/>R0 . . . R1 <lb/>. <lb/>. <lb/>R7 <lb/>R2 <lb/>Anti-<lb/>| . <lb/>Ring <lb/>. | <lb/>Clockwise | . <lb/>. | Clockwise <lb/>v . <lb/>RID = 17 <lb/>. v <lb/>R6 <lb/>R3 <lb/>. <lb/>. <lb/>R5 . . . R4 <lb/>Figure 1: Ring with 8 nodes <lb/>The following terminology is used for ring LSPs: <lb/> + </body> + + <note place="footnote">Kompella & Contreras <lb/>Expires April 25, 2020 <lb/></note> + + <page>[Page 3] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>Resilient MPLS Rings <lb/>October 2019 <lb/></note> + + <body> + Ring ID (RID): A non-negative number. When the RID identifies a <lb/>ring, it must be positive and unique in some scope of a Service <lb/>Provider's network. An RID of zero, when assigned to a node, <lb/>indicates that the node must behave in "promiscuous mode" (see <lb/>Section 3.2). A node may belong to multiple rings. <lb/>Ring node: A member of a ring. Note that a device may belong to <lb/>several rings. <lb/>Node index: A logical numbering of nodes in a ring, from zero up to <lb/>one less than the ring size. Used purely for exposition in this <lb/>document. <lb/>Ring master: The ring master initiates the ring identification <lb/>process. Mastership is indicated in the IGP by a two-bit field. <lb/>Ring neighbors: Nodes whose indices differ by one (modulo ring <lb/>size). <lb/>Ring links: Links that connect ring neighbors. <lb/>Express links: Links that connect non-neighboring ring nodes. <lb/>Ring direction: A two-bit field in the IGP indicating the direction <lb/>of a link. The choices are: <lb/>UN: 00 undefined link <lb/>CW: 01 clockwise ring link <lb/>AC: 10 anticlockwise ring link <lb/>EX: 11 express link <lb/>Ring Identification: The process of discovering ring nodes, ring <lb/>links, link directions, and express links. <lb/>The following notation is used for ring LSPs: <lb/>R_k: A ring node with index k. R_k has AC neighbor R_(k-1) and CW <lb/>neighbor R_(k+1). <lb/>RL_k: A (unicast) Ring LSP anchored on node R_k. <lb/>CL_jk: A label allocated by R_j for RL_k in the CW direction. <lb/>AL_jk: A label allocated by R_j for RL_k in the AC direction. <lb/> + </body> + + <note place="footnote">Kompella & Contreras <lb/>Expires April 25, 2020 <lb/></note> + + <page>[Page 4] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>Resilient MPLS Rings <lb/>October 2019 <lb/></note> + + <body> + 2. Motivation <lb/>A ring is the simplest topology that offers resilience. This is <lb/>perhaps the main reason to lay out fiber in a ring. Thus, effective <lb/>mechanisms for fast failover on rings are needed. Furthermore, there <lb/>are large numbers of rings. Thus, configuration of rings needs to be <lb/>as simple as possible. Finally, bandwidth management on access rings <lb/>is very important, as bandwidth is generally quite constrained here. <lb/>The goals of this document are to present mechanisms for improved <lb/>MPLS-based resilience in ring networks (using ideas that are <lb/>reminiscent of Bidirectional Line Switched Rings), for automatic <lb/>bring-up of LSPs, better bandwidth management and for auto-hierarchy. <lb/>These goals can be achieved using extensions to existing IGP and MPLS <lb/>signaling protocols, using central provisioning, or in other ways. <lb/>3. Theory of Operation <lb/>Say a ring has ring ID RID. The ring is provisioned by choosing one <lb/>or more ring masters for the ring and assigning them the RID. Other <lb/>nodes in the ring may also be assigned this RID, or may be configured <lb/>as "promiscuous". Ring discovery then kicks in. When each ring node <lb/>knows its CW and AC ring neighbors and its ring links, and all <lb/>express links have been identified, ring identification is complete. <lb/>Once ring identification is complete, each node signals one or more <lb/>ring LSPs RL_i. RL_i, anchored on node R_i, consists of two counter-<lb/>rotating unicast LSPs that start and end at R_i. A ring LSP is <lb/>"multipoint": any node R_j can use RL_i to send traffic to R_i; this <lb/>can be in either the CW or AC directions, or both (i.e., load <lb/>balanced). Both of these counter-rotating LSPs are "active"; the <lb/>choice of direction to send traffic to R_i is determined by policy at <lb/>the node where traffic is injected into the ring. The default policy <lb/>is to send traffic along the shortest path. Bidirectional <lb/>connectivity between nodes R_i and R_j is achieved by using two <lb/>different ring LSPs: R_i uses RL_j to reach R_j, and R_j uses RL_i to <lb/>reach R_i. <lb/>3.1. Provisioning <lb/>The goal here is to provision rings with the absolute minimum <lb/>configuration. The exposition below aims to achieve that using auto-<lb/>discovery via a link-state IGP (see Section 4). Of course, auto-<lb/>discovery can be overriden by configuration. For example, a link <lb/>that would otherwise be classified by auto-discovery as a ring link <lb/>might be configured not to be used for ring LSPs. <lb/> + </body> + + <note place="footnote">Kompella & Contreras <lb/>Expires April 25, 2020 <lb/></note> + + <page>[Page 5] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>Resilient MPLS Rings <lb/>October 2019 <lb/></note> + + <body> + 3.2. Ring Nodes <lb/>Ring nodes have a loopback address, and run a link-state IGP and an <lb/>MPLS signaling protocol. To provision a node as a ring node for ring <lb/>RID, the node is simply assigned that RID. A node may be part of <lb/>several rings, and thus may be assigned several ring IDs. <lb/>To simplify ring provisioning even further, a node N may be made <lb/>"promiscuous" by being assigned an RID of 0. A promiscuous node <lb/>listens to RIDs in its IGP neighbors' link-state updates. For every <lb/>non-zero RID N hears from a neighbor, N joins the corresponding ring <lb/>by taking on that RID. In many situations, the use of promiscuous <lb/>mode means that only one or two nodes in a ring needs to be <lb/>provisioned; everything else is auto-discovered. <lb/>A ring node indicates in its IGP updates the ring LSP signaling <lb/>protocols it supports. This can be LDP and/or RSVP-TE. Ideally, <lb/>each node should support both. <lb/>3.3. Ring Links and Directions <lb/>Ring links must be MPLS-capable. They are by default unnumbered, <lb/>point-to-point (from the IGP point of view) and "auto-bundled". The <lb/>"auto-bundled" attribute means that parallel links between ring <lb/>neighbors are considered as a single link, without the need for <lb/>explicit configuration for bundling (such as a Link Aggregation <lb/>Group). Note that each component may be advertised separately in the <lb/>IGP; however, signaling messages and labels across one component link <lb/>apply to all components. Parallel links between a pair of ring nodes <lb/>is often the result of having multiple lambdas or fibers between <lb/>those nodes. RMR is primarily intended for operation at the packet <lb/>layer; however, parallel links at the lambda or fiber layer may <lb/>result in parallel links at the packet layer. <lb/>A ring link is not provisioned as belonging to the ring; it is <lb/>discovered to belong to ring RID if both its adjacent nodes belong to <lb/>RID. A ring link's direction (CW or AC) is also discovered; this <lb/>process is initiated by the ring's ring master. Note that the above <lb/>two attributes can be overridden by provisioning if needed; it is <lb/>then up to the provisioning system to maintain consistency across the <lb/>ring. <lb/>3.3.1. Express Links <lb/>Express links are discovered once ring nodes, ring links and <lb/>directions have been established. As defined earlier, express links <lb/>are links joining non-neighboring ring nodes; often, this may be the <lb/>result of optically bypassing ring nodes. <lb/> + </body> + + <note place="footnote">Kompella & Contreras <lb/>Expires April 25, 2020 <lb/></note> + + <page>[Page 6] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>Resilient MPLS Rings <lb/>October 2019 <lb/></note> + + <body> + 3.4. Ring LSPs <lb/>Ring LSPs are not provisioned. Once a ring node R_i knows its RID, <lb/>its ring links and directions, it kicks off ring LSP signaling <lb/>automatically. R_i allocates CW and AC labels for each ring LSP <lb/>RL_k. R_i also initiates the creation of RL_i. As the signaling <lb/>propagates around the ring, CW and AC labels are exchanged. When R_i <lb/>receives CW and AC labels for RL_k from its ring neighbors, primary <lb/>and fast reroute (FRR) paths for RL_k are installed at R_i. <lb/>For RSVP-TE LSPs, bandwidths may be signaled in both directions. <lb/>However, these are not provisioned either; rather, one does "reverse <lb/>call admission control". When a service needs to use an LSP, the <lb/>ring node where the traffic enters the ring attempts to increase the <lb/>bandwidth on the LSP to the egress. If successful, the service is <lb/>admitted to the ring. <lb/>3.5. Installing Primary LFIB Entries <lb/>In setting up RL_k, a node R_j sends out two labels: CL_jk to R_j-1 <lb/>and AL_jk to R_j+1. R_j also receives two labels: CL_j+1,k from <lb/>R_j+1, and AL_j-1,k from R_j-1. R_j can now set up the forwarding <lb/>entries for RL_k. In the CW direction, R_j swaps incoming label <lb/>CL_jk with CL_j+1,k with next hop R_j+1; these allow R_j to act as <lb/>LSR for RL_k. R_j also installs an LFIB entry to push CL_j+1,k with <lb/>next hop R_j+1 to act as ingress for RL_k. Similarly, in the AC <lb/>direction, R_j swaps incoming label AL_jk with AL_j-1,k with next hop <lb/>R_j-1 (as LSR), and an entry to push AL_j-1,k with next hop R_j-1 (as <lb/>ingress). <lb/>Clearly, R_k does not act as ingress for its own LSPs. However, R_k <lb/>can send OAM messages, for example, an MPLS ping or traceroute <lb/>([I-D.ietf-mpls-rfc4379bis]), using labels CL_k,k+1 and AL_k-1,k, to <lb/>test the entire ring LSP anchored at R_k in both directions. <lb/>Furthermore, if these LSPs use Ultimate Hop Popping, then R_k <lb/>installs LFIB entries to pop CL_k,k for packets received from R_k-1 <lb/>and to pop AL_k,k for packets received from R_k+1. <lb/>3.6. Protection <lb/>In this scheme, there are no protection LSPs as such --no node or <lb/>link bypass LSPs, no standby LSPs, no detours, and no LFA-type <lb/>protection. Protection is via the "other" direction around the ring, <lb/>which is why ring LSPs are in counter-rotating pairs. Protection <lb/>works in the same way for link, node and ring LSP failures. <lb/>If a node R_j detects a failure from R_j+1 --either all links to <lb/>R_j+1 fail, or R_j+1 itself fails, R_j switches traffic on all CW <lb/> + </body> + + <note place="footnote">Kompella & Contreras <lb/>Expires April 25, 2020 <lb/></note> + + <page>[Page 7] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>Resilient MPLS Rings <lb/>October 2019 <lb/></note> + + <body> + ring LSPs to the AC direction using the FRR LFIB entries. If the <lb/>failure is specific to a single ring LSP, R_j switches traffic just <lb/>for that LSP. In either case, this switchover can be very fast, as <lb/>the FRR LFIB entries can be preprogrammed. Fast detection and fast <lb/>switchover lead to minimal traffic loss. <lb/>R_j then sends an indication to R_j-1 that the CW direction is not <lb/>working, so that R_j-1 can similarly switch traffic to the AC <lb/>direction. For RSVP-TE, this indication can be a PathErr or a <lb/>Notify; other signaling protocols have similar indications. These <lb/>indications propagate AC until each traffic source on the ring AC of <lb/>the failure uses the AC direction. Thus, within a short period, <lb/>traffic will be flowing in the optimal path, given that there is a <lb/>failure on the ring. This contrasts with (say) bypass protection, <lb/>where until the ingress recomputes a new path, traffic will be <lb/>suboptimal. <lb/>Note that the failure of a node or a link will not necessarily affect <lb/>all ring LSPs. Thus, it is important to identify the affected LSPs <lb/>(and switch them), but to leave the rest alone. <lb/>One point to note is that when a ring node, say R_j, fails, RL_j is <lb/>clearly unusable. However, the above protection scheme will cause a <lb/>traffic loop: R_j-1 detects a failure CW, and protects by sending CW <lb/>traffic on RL_j back all the way to R_j+1, which in turn sends <lb/>traffic to R_j-1, etc. There are three proposals to avoid this: <lb/>1. Each ring node acting as ingress sends traffic with a TTL of at <lb/>most 2*n, where n is the number of nodes in the ring. <lb/>2. A ring node sends protected traffic (i.e., traffic switched from <lb/>CW to AC or vice versa) with TTL just large enough to reach the <lb/>egress. <lb/>3. A ring node sends protected traffic with a special purpose label <lb/>below the ring LSP label. A protecting node first checks for the <lb/>presence of this label; if present, it means that the traffic is <lb/>looping and MUST be dropped. <lb/>It is recommended that (2) be implemented. The other methods are <lb/>optional. <lb/>3.7. Installing FRR LFIB Entries <lb/>At the same time that R_j sets up its primary CW and AC LFIB entries, <lb/>it can also set up the protection forwarding entries for RL_k. In <lb/>the CW direction, R_j sets up an FRR LFIB entry to swap incoming <lb/>label CL_jk with AL_j-1,k with next hop R_j-1. In the AC direction, <lb/> + </body> + + <note place="footnote">Kompella & Contreras <lb/>Expires April 25, 2020 <lb/></note> + + <page>[Page 8] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>Resilient MPLS Rings <lb/>October 2019 <lb/></note> + + <body> + R_j sets up an FRR LFIB entry to swap incoming label AL_jk with <lb/>CL_j+1,k with next hop R_j+1. Again, R_k does not install FRR LFIB <lb/>entries in this manner. <lb/>Say R1 receives label L42 from R2 to reach R4 in the clockwise <lb/>direction, and receives label L40 from R0 to reach R4 in the anti-<lb/>clockwise direction. Say R1 also receives label L52 from R2 to reach <lb/>R5 in the clockwise direction, and receives label L50 from R0 to <lb/>reach R5 in the anti-clockwise direction. R1 makes the following <lb/>LFIB entries: <lb/>+------+--------+-----------+--------+-----------+ <lb/>| Dest | CW/NH | CW FRR/NH | AC/NH | AC FRR/NH | <lb/>+------+--------+-----------+--------+-----------+ <lb/>| ... | <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| R4 <lb/>| L42/R2 | <lb/>L40/R0 | L40/R0 | <lb/>L42/R2 | <lb/>| R5 <lb/>| L52/R2 | <lb/>L50/R0 | L50/R0 | <lb/>L52/R2 | <lb/>| ... | <lb/>| <lb/>| <lb/>| <lb/>| <lb/>+------+--------+-----------+--------+-----------+ <lb/>R1's LFIB <lb/>4. Autodiscovery <lb/>4.1. Overview <lb/>Auto-discovery proceeds in three phases. The first phase is the <lb/>announcement phase. The second phase is the mastership phase. The <lb/>third phase is the ring identification phase. <lb/>S1 <lb/>/ <lb/>\ <lb/>| <lb/>R0 . . . R1 <lb/>R0 has MV = 11 <lb/>| . <lb/>\ <lb/>. <lb/>R1 has MV = 10 <lb/>R7 <lb/>\________ R2 <lb/>All other nodes have MV = 00 <lb/>Anti-<lb/>| . <lb/>. | <lb/>clockwise | . <lb/>Ring <lb/>. | Clockwise <lb/>v . <lb/>RID = 17 <lb/>. v <lb/>R6 <lb/>R3 <lb/>. <lb/>. <lb/>R5 . . . R4 <lb/>\ <lb/>/ <lb/>\ <lb/>/ <lb/>An <lb/>Figure 2: Ring with non-ring nodes and links <lb/> + </body> + + <note place="footnote">Kompella & Contreras <lb/>Expires April 25, 2020 <lb/></note> + + <page>[Page 9] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>Resilient MPLS Rings <lb/>October 2019 <lb/></note> + + <body> + The format of an RMR Node Type-Length-Value (TLV) is given below. It <lb/>consists of information pertaining to the node and optionally, sub-<lb/>TLVs. A Neighbor sub-TLV contains information pertaining to the <lb/>node's neighbors. Other sub-TLVs may be defined in the future. <lb/>Details of the format specific to IS-IS and OSPF will be given in the <lb/>corresponding IGP documents. <lb/>[RMR Node Type][RMR Node Length][RID][Node Flags][sub-TLVs] <lb/>Ring Node TLV Format <lb/>[RMR Nbr Type][RMR Nbr Length][Nbr Address][Nbr Flags] <lb/>Ring Neighbor Sub-TLV Format <lb/>0 <lb/>1 <lb/>0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 <lb/>+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ <lb/>|MV | SS | SO | MBZ <lb/>|SU |M| <lb/>+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ <lb/>MV: Mastership Value <lb/>SS: Supported Signaling Protocols <lb/>(100 = RSVP-TE; 010 = LDP; 001 = SPRING) <lb/>MBZ: Must be zero <lb/>SO: Supported OAM Protocols (100 = BFD; 010 = CFM; 001 = EFM) <lb/>SU: Signaling Protocol to Use (00 = none; 01 = LDP; 10 = RSVP-TE) <lb/>M : Elected Master (0 = no, 1 = yes) <lb/>Flags for a Ring Node TLV <lb/>0 <lb/>1 <lb/>0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 <lb/>+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ <lb/>|RD |OAM| <lb/>MBZ <lb/>| <lb/>+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ <lb/>RD: Ring Direction <lb/>OAM: OAM Protocol to use (00 = none; 01 = BFD; 10 = CFM; 11 = EFM) <lb/>MBZ: Must be zero <lb/>Flags for a Ring Neighbor TLV <lb/>4.2. Ring Announcement Phase <lb/>Each node participating in an MPLS ring is assigned an RID; in the <lb/>example, RID = 17. A node is also provisioned with a mastership <lb/>value. Each node advertises a ring node TLV for each ring it is <lb/>participating in, along with the associated flags. It then starts <lb/> + </body> + + <note place="footnote">Kompella & Contreras <lb/>Expires April 25, 2020 <lb/></note> + + <page>[Page 10] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>Resilient MPLS Rings <lb/>October 2019 <lb/></note> + + <body> + timer T1; this timer is to allow each node time to hear from all <lb/>other nodes in the ring. <lb/>A node in promiscuous mode doesn't advertise any ring node TLVs. <lb/>However, when it hears a ring node TLV from an IGP neighbor, it joins <lb/>that ring, and sends its own ring node TLV with that RID. <lb/>The announcement phase allows a ring node to discover other ring <lb/>nodes in the same ring so that a ring master can be elected. <lb/>4.3. Mastership Phase <lb/>When timer T1 fires, a node enters the mastership phase. In this <lb/>phase, each ring node N starts timer T2 and checks if it is master. <lb/>If it is the node with the lowest loopback address of all nodes with <lb/>the highest mastership values, N declares itself master by <lb/>readvertising its ring node TLV with the M bit set. <lb/>When timer T2 fires, each node examines the ring node TLVs from all <lb/>other nodes in the ring to identify the ring master. There should be <lb/>exactly one; if not, each node restarts timer T2 and tries again. <lb/>Barring software bugs or malicious code, the principal reason for <lb/>multiple nodes for setting their M bit is late-arriving ring <lb/>announcements. Say nodes N1 and N2 have the highest mastership <lb/>values, and N1 has the lowest loopback address, while N2 has the <lb/>second lowest loopback address. If N1 makes its ring announcement <lb/>just as N2's T1 timer fires, both N1 and N2 will think they are the <lb/>master (since N2 will not have heard N1's announcment in time). <lb/>However, in the next round, N2 will realize that N1 is indeed the <lb/>master. In the worst case, the mastership phase will occur as many <lb/>times as there are nodes in the ring. <lb/>4.4. Ring Identification Phase <lb/>R0 . . . R1 <lb/><------3. Anti-clockwise neighbor <lb/>. <lb/>. <lb/>R7 <lb/>R2 <---0. Ring Master <lb/>. <lb/>Ring <lb/>/ . <lb/>. <lb/>/ . <lb/>1. Maximal ring includes R3 <lb/>. <lb/>/ <lb/>. <lb/>R6 <lb/>/ <lb/>R3 <---2. Clockwise neighbor <lb/>. <lb/>/ . <lb/>R5 . . . R4 <lb/><------4. R4 is express neighbor <lb/>Figure 3: Ring Identification <lb/> + </body> + + <note place="footnote">Kompella & Contreras <lb/>Expires April 25, 2020 <lb/></note> + + <page>[Page 11] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>Resilient MPLS Rings <lb/>October 2019 <lb/></note> + + <body> + When there is exactly one ring master M (here, R2), M enters the Ring <lb/>Identification Phase. M indicates that it has successfully completed <lb/>this phase by advertising ring link TLVs. This is the trigger for <lb/>M's CW neighbor to enter the Ring Identification Phase. This phase <lb/>passes CW until all ring nodes have completed ring identification. <lb/>In the Ring Identification Phase, a node X that has two or more IGP <lb/>neighbors that belong to the ring picks one of them to be its CW ring <lb/>neighbor. If X is the ring master, it also picks a node as its AC <lb/>ring neighbor. If there are exactly two such nodes, this step is <lb/>trivial. If not, X computes a ring that includes all nodes that have <lb/>completed the Ring Identification Phase (as seen by their ring link <lb/>TLVs) and further contains the maximal number of nodes that belong to <lb/>the ring. Based on that, X picks a CW neighbor and inserts ring link <lb/>TLVs with ring direction CW for each link to its CW neighbor; X also <lb/>inserts a ring link TLV with direction AC for each link to its AC <lb/>neighbor. Then, X determines its express links. These are links <lb/>connected to ring nodes that are not ring neighbors. X advertises <lb/>ring link TLVs for express links by setting the link direction to <lb/>"express link". <lb/>Here, R2 has R1 as its neighbor on one side; it has two choices, R3 <lb/>and R4 on the other. It picks R3 to get a maximal ring (Step 1). It <lb/>then picks R3 as its CW neighbor (Step 2) and R1 as its AC neighbor <lb/>(Step 3). Finally, it declares the link to R4 as an express link. <lb/>4.5. Ring Changes <lb/>The main changes to a ring are: <lb/>ring link addition; <lb/>ring link deletion; <lb/>ring node addition; and <lb/>ring node deletion. <lb/>The main goal of handling ring changes is (as much as possible) not <lb/>to perturb existing ring operation. Thus, if the ring master hasn't <lb/>changed, all of the above changes should be local to the point of <lb/>change. Link adds just update the IGP; signaling should take <lb/>advantage of the new capacity as soon as it learns. Link deletions <lb/>in the case of parallel links also show up as a change in capacity <lb/>(until the last link in the bundle is removed.) <lb/>The removal of the last ring link between two nodes, or the removal <lb/>of a ring node is an event that triggers protection switching. In a <lb/> + </body> + + <note place="footnote">Kompella & Contreras <lb/>Expires April 25, 2020 <lb/></note> + + <page>[Page 12] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>Resilient MPLS Rings <lb/>October 2019 <lb/></note> + + <body> + simple ring, the result is a broken ring. However, if a ring has <lb/>express links, then it may be able to converge to a smaller ring with <lb/>protection. <lb/>The addition of a new ring node can also be handled incrementally. <lb/>5. Ring OAM <lb/>Each ring node should advertise in its ring node TLV the OAM <lb/>protocols it supports. Each ring node is expected to run a link-<lb/>level OAM over each ring link. This should be an OAM protocol that <lb/>both neighbors agree on. The default hello time is 3.3 millisecond. <lb/>Each ring node also sends OAM messages over each direction of its <lb/>ring LSP. This is a multi-hop OAM to check LSP liveness; typically, <lb/>BFD would be used for this. The node chooses the hello interval; the <lb/>default is once a second. <lb/>6. Advanced Topics <lb/>6.1. Half-rings <lb/>In some cases, a ring H may be incomplete, either because H is <lb/>permanently missing a link (not just because of a failure), or <lb/>because the link required to complete H is in a different IGP area. <lb/>Either way, the ring discovery algorithm will fail. We call such a <lb/>ring a "half-ring". Half-rings are sufficiently common that finding <lb/>a way to deal with them effectively is a useful problem to solve. <lb/>This topic will not be addressed in this document; that task is left <lb/>for a future document. <lb/>6.2. Hub Node Resilience <lb/>Let's call the node(s) that connect a ring to the rest of the network <lb/>"hub node(s)" (usually, there are a pair of hub nodes.) Suppose a <lb/>ring has two hub nodes H1 and H2. Suppose further that a non-hub <lb/>ring node X wants to send traffic to some node Z outside the ring. <lb/>This could be done, say, by having targeted LDP (T-LDP) sessions from <lb/>H1 and H2 to X advertising LDP reachability to Z via H1 (H2); there <lb/>would be a two-label stack from X to reach Z. Say that to reach Z, X <lb/>prefers H1; thus, traffic from X to Z will first go to H1 via a ring <lb/>LSP, then to Z via LDP. <lb/>If H1 fails, traffic from X to Z will drop until the T-LDP session <lb/>from H1 to Z fails, the IGP reconverges, and H2's label to Z is <lb/>chosen. Thereafter, traffic will go from X to H2 via a ring LSP, <lb/>then to Z via LDP. However, this convergence could take a long time. <lb/>Since this is a very common and important situation, it is again a <lb/> + </body> + + <note place="footnote">Kompella & Contreras <lb/>Expires April 25, 2020 <lb/></note> + + <page>[Page 13] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>Resilient MPLS Rings <lb/>October 2019 <lb/></note> + + <body> + useful problem to solve. However, this topic too will not be <lb/>addressed in this document; that task is left for a future document. <lb/>7. Security Considerations <lb/>This document proposes extensions to IS-IS, OSPF, LDP and RSVP-TE, <lb/>all of which have mechanisms to secure them. The extensions proposed <lb/>do not represent per se a compromise to network security when the <lb/>control plane is secured, since any manipulation of the content of <lb/>the messages or even the control plane misinterpretation of the <lb/>semantics are avoided. <lb/> + </body> + + <div type="acknowledgement"> + 8. Acknowledgments <lb/>Many thanks to Pierre Bichon whose exemplar of self-organizing <lb/>networks and whose urging for ever simpler provisioning led to the <lb/>notion of promiscuous nodes. <lb/> + </div> + + <div type="annex"> + 9. IANA Considerations <lb/>There are no requests as yet to IANA for this document. <lb/> + </div> + + <listBibl> + 10. References <lb/> 10.1. Normative References <lb/>[RFC2119] Bradner, S., "Key words for use in RFCs to Indicate <lb/>Requirement Levels", BCP 14, RFC 2119, <lb/>DOI 10.17487/RFC2119, March 1997, <lb/><https://www.rfc-editor.org/info/rfc2119>. <lb/>10.2. Informative References <lb/>[I-D.ietf-mpls-rfc4379bis] <lb/>Kompella, K., Swallow, G., Pignataro, C., Kumar, N., <lb/>Aldrin, S., and M. Chen, "Detecting Multi-Protocol Label <lb/>Switched (MPLS) Data Plane Failures", draft-ietf-mpls-<lb/>rfc4379bis-09 (work in progress), October 2016. <lb/>[RFC3209] Awduche, D., Berger, L., Gan, D., Li, T., Srinivasan, V., <lb/>and G. Swallow, "RSVP-TE: Extensions to RSVP for LSP <lb/>Tunnels", RFC 3209, DOI 10.17487/RFC3209, December 2001, <lb/><https://www.rfc-editor.org/info/rfc3209>. <lb/>[RFC3630] Katz, D., Kompella, K., and D. Yeung, "Traffic Engineering <lb/>(TE) Extensions to OSPF Version 2", RFC 3630, <lb/>DOI 10.17487/RFC3630, September 2003, <lb/><https://www.rfc-editor.org/info/rfc3630>. <lb/> + </listBibl> + + <note place="footnote">Kompella & Contreras <lb/>Expires April 25, 2020 <lb/></note> + + <page>[Page 14] <lb/></page> + + <note place="headnote">Internet-Draft <lb/>Resilient MPLS Rings <lb/>October 2019 <lb/></note> + + <listBibl> + [RFC5036] Andersson, L., Ed., Minei, I., Ed., and B. Thomas, Ed., <lb/>"LDP Specification", RFC 5036, DOI 10.17487/RFC5036, <lb/>October 2007, <https://www.rfc-editor.org/info/rfc5036>. <lb/>[RFC5305] Li, T. and H. Smit, "IS-IS Extensions for Traffic <lb/>Engineering", RFC 5305, DOI 10.17487/RFC5305, October <lb/>2008, <https://www.rfc-editor.org/info/rfc5305>. <lb/>[RFC8402] Filsfils, C., Ed., Previdi, S., Ed., Ginsberg, L., <lb/>Decraene, B., Litkowski, S., and R. Shakir, "Segment <lb/>Routing Architecture", RFC 8402, DOI 10.17487/RFC8402, <lb/>July 2018, <https://www.rfc-editor.org/info/rfc8402>. <lb/> + </listBibl> + + Authors' Addresses <lb/> + + <front> + Kireeti Kompella <lb/>Juniper Networks, Inc. <lb/>1133 Innovation Way <lb/>Sunnyvale, CA 94089 <lb/>USA <lb/>Email: kireeti.kompella@gmail.com <lb/>Luis M. Contreras <lb/>Telefonica <lb/>Ronda de la Comunicacion <lb/>Sur-3 building, 3rd floor <lb/>Madrid 28050 <lb/>Spain <lb/>Email: luismiguel.contrerasmurillo@telefonica.com <lb/>URI: <lb/>http://people.tid.es/LuisM.Contreras/ <lb/> + </front> + + <note place="footnote">Kompella & Contreras <lb/>Expires April 25, 2020 <lb/></note> + + <page>[Page 15] </page> + + </text> +</tei> diff --git a/grobid-trainer/resources/dataset/segmentation/sdo/ietf/corpus/tei/ietf-rfc7654.txt.segmentation.tei.xml b/grobid-trainer/resources/dataset/segmentation/sdo/ietf/corpus/tei/ietf-rfc7654.txt.segmentation.tei.xml new file mode 100644 index 0000000000..22077fc516 --- /dev/null +++ b/grobid-trainer/resources/dataset/segmentation/sdo/ietf/corpus/tei/ietf-rfc7654.txt.segmentation.tei.xml @@ -0,0 +1,174 @@ +<?xml version="1.0" ?> +<tei xml:space="preserve"> + <teiHeader> + <fileDesc xml:id="0"/> + </teiHeader> + <text xml:lang="en"> + <front> + Internet Engineering Task Force (IETF) <lb/>S. Banks <lb/>Request for Comments: 7654 <lb/>VSS Monitoring <lb/>Category: Informational <lb/>F. Calabria <lb/>ISSN: 2070-1721 <lb/>Cisco Systems <lb/>G. Czirjak <lb/>R. Machat <lb/>Juniper Networks <lb/>October 2015 <lb/>Benchmarking Methodology for In-Service Software Upgrade (ISSU) <lb/>Abstract <lb/>Modern forwarding devices attempt to minimize any control-and data-<lb/>plane disruptions while performing planned software changes by <lb/>implementing a technique commonly known as In-Service Software <lb/>Upgrade (ISSU). This document specifies a set of common <lb/>methodologies and procedures designed to characterize the overall <lb/>behavior of a Device Under Test (DUT), subject to an ISSU event. <lb/>Status of This Memo <lb/>This document is not an Internet Standards Track specification; it is <lb/>published for informational purposes. <lb/>This document is a product of the Internet Engineering Task Force <lb/>(IETF). It represents the consensus of the IETF community. It has <lb/>received public review and has been approved for publication by the <lb/>Internet Engineering Steering Group (IESG). Not all documents <lb/>approved by the IESG are a candidate for any level of Internet <lb/>Standard; see Section 2 of RFC 5741. <lb/>Information about the current status of this document, any errata, <lb/>and how to provide feedback on it may be obtained at <lb/>http://www.rfc-editor.org/info/rfc7654. <lb/>Banks, et al. <lb/>Informational <lb/>[Page 1] <lb/>RFC 7654 <lb/>Benchmarking Software Upgrade <lb/>October 2015 <lb/>Copyright Notice <lb/>Copyright (c) 2015 IETF Trust and the persons identified as the <lb/>document authors. All rights reserved. <lb/>This document is subject to BCP 78 and the IETF Trust's Legal <lb/>Provisions Relating to IETF Documents <lb/>(http://trustee.ietf.org/license-info) in effect on the date of <lb/>publication of this document. Please review these documents <lb/>carefully, as they describe your rights and restrictions with respect <lb/>to this document. Code Components extracted from this document must <lb/>include Simplified BSD License text as described in Section 4.e of <lb/>the Trust Legal Provisions and are provided without warranty as <lb/>described in the Simplified BSD License. <lb/> + </front> + + <div type="toc"> + Table of Contents <lb/>1. Introduction ....................................................3 <lb/>2. Conventions Used in This Document ...............................4 <lb/>3. Generic ISSU Process, Phased Approach ...........................4 <lb/>3.1. Software Download ..........................................5 <lb/>3.2. Software Staging ...........................................6 <lb/>3.3. Upgrade Run ................................................6 <lb/>3.4. Upgrade Acceptance .........................................7 <lb/>4. Test Methodology ................................................7 <lb/>4.1. Test Topology ..............................................7 <lb/>4.2. Load Model .................................................8 <lb/>5. ISSU Test Methodology ...........................................9 <lb/>5.1. Pre-ISSU Recommended Verifications .........................9 <lb/>5.2. Software Staging ...........................................9 <lb/>5.3. Upgrade Run ...............................................10 <lb/>5.4. Post-ISSU Verification ....................................11 <lb/>5.5. ISSU under Negative Stimuli ...............................12 <lb/>6. ISSU Abort and Rollback ........................................12 <lb/>7. Final Report: Data Presentation and Analysis ...................13 <lb/>7.1. Data Collection Considerations ............................14 <lb/>8. Security Considerations ........................................15 <lb/>9. References .....................................................15 <lb/>9.1. Normative References ......................................15 <lb/>9.2. Informative References ....................................16 <lb/>Acknowledgments ...................................................16 <lb/>Authors' Addresses ................................................16 <lb/> + </div> + + <note place="footnote">Banks, et al. <lb/>Informational <lb/></note> + + <page>[Page 2] <lb/></page> + + <note place="headnote">RFC 7654 <lb/> Benchmarking Software Upgrade <lb/> October 2015 <lb/></note> + + <body> + 1. Introduction <lb/>As required by most Service Provider (SP) network operators, ISSU <lb/>functionality has been implemented by modern forwarding devices to <lb/>upgrade or downgrade from one software version to another with a goal <lb/>of eliminating the downtime of the router and/or the outage of <lb/>service. However, it is noted that while most operators desire <lb/>complete elimination of downtime, minimization of downtime and <lb/>service degradation is often the expectation. <lb/>The ISSU operation may apply in terms of an atomic version change of <lb/>the entire system software or it may be applied in a more modular <lb/>sense, such as for a patch or maintenance upgrade. The procedure <lb/>described herein may be used to verify either approach, as may be <lb/>supported by the vendor hardware and software. <lb/>In support of this document, the desired behavior for an ISSU <lb/>operation can be summarized as follows: <lb/>-The software is successfully migrated from one version to a <lb/>successive version or vice versa. <lb/>-There are no control-plane interruptions throughout the process. <lb/>That is, the upgrade/downgrade could be accomplished while the <lb/>device remains "in service". It is noted, however, that most <lb/>service providers will still undertake such actions in a <lb/>maintenance window (even in redundant environments) to minimize <lb/>any risk. <lb/>-Interruptions to the forwarding plane are minimal to none. <lb/>-The total time to accomplish the upgrade is minimized, again to <lb/>reduce potential network outage exposure (e.g., an external <lb/>failure event might impact the network as it operates with reduced <lb/>redundancy). <lb/>This document provides a set of procedures to characterize a given <lb/>forwarding device's ISSU behavior quantitatively, from the <lb/>perspective of meeting the above expectations. <lb/>Different hardware configurations may be expected to be benchmarked, <lb/>but a typical configuration for a forwarding device that supports <lb/>ISSU consists of at least one pair of Routing Processors (RPs) that <lb/>operate in a redundant fashion, and single or multiple forwarding <lb/>engines (line cards) that may or may not be redundant, as well as <lb/>fabric cards or other components as applicable. This does not <lb/>preclude the possibility that a device in question can perform ISSU <lb/>functions through the operation of independent process components, <lb/> + </body> + + <note place="footnote">Banks, et al. <lb/>Informational <lb/></note> + + <page>[Page 3] <lb/></page> + + <note place="headnote">RFC 7654 <lb/> Benchmarking Software Upgrade <lb/> October 2015 <lb/></note> + + <body> + which may be upgraded without impact to the overall operation of the <lb/>device. As an example, perhaps the software module involved in SNMP <lb/>functions can be upgraded without impacting other operations. <lb/>The concept of a multi-chassis deployment may also be characterized <lb/>by the current set of proposed methodologies, but the implementation-<lb/>specific details (i.e., process placement and others) are beyond the <lb/>scope of the current document. <lb/>Since most modern forwarding devices, where ISSU would be applicable, <lb/>do consist of redundant RPs and hardware-separated control-plane and <lb/>data-plane functionality, this document will focus on methodologies <lb/>that would be directly applicable to those platforms. It is <lb/>anticipated that the concepts and approaches described herein may be <lb/>readily extended to accommodate other device architectures as well. <lb/>2. Conventions Used in This Document <lb/>The key words "MUST", "MUST NOT", "REQUIRED", "SHALL", "SHALL NOT", <lb/>"SHOULD", "SHOULD NOT", "RECOMMENDED", "MAY", and "OPTIONAL" in this <lb/>document are to be interpreted as described in RFC 2119 [RFC2119]. <lb/>In this document, these words will appear with that interpretation <lb/>only when in ALL CAPS. Lowercase uses of these words are not to be <lb/>interpreted as carrying the significance of RFC 2119. <lb/>3. Generic ISSU Process, Phased Approach <lb/>ISSU may be viewed as the behavior of a device when exposed to a <lb/>planned change in its software functionality. This may mean changes <lb/>to the core operating system, separate processes or daemons, or even <lb/>firmware logic in programmable hardware devices (e.g., Complex <lb/>Programmable Logic Device (CPLD) or Field-Programmable Gate Array <lb/>(FPGA)). The goal of an ISSU implementation is to permit such <lb/>actions with minimal or no disruption to the primary operation of the <lb/>device in question. <lb/>ISSU may be user initiated through direct interaction with the device <lb/>or activated through some automated process on a management system or <lb/>even on the device itself. For the purposes of this document, we <lb/>will focus on the model where the ISSU action is initiated by direct <lb/>user intervention. <lb/>The ISSU process can be viewed as a series of different phases or <lb/>activities, as defined below. For each of these phases, the test <lb/>operator must record the outcome as well as any relevant observations <lb/>(defined further in the present document). Note that, a given vendor <lb/>implementation may or may not permit the abortion of the in-progress <lb/> + </body> + + <note place="footnote">Banks, et al. <lb/>Informational <lb/></note> + + <page>[Page 4] <lb/></page> + + <note place="headnote">RFC 7654 <lb/> Benchmarking Software Upgrade <lb/> October 2015 <lb/></note> + + <body> + ISSU at particular stages. There may also be certain restrictions as <lb/>to ISSU availability given certain functional configurations (for <lb/>example, ISSU in the presence of Bidirectional Failure Detection <lb/>(BFD) [RFC5880] may not be supported). It is incumbent upon the test <lb/>operator to ensure that the DUT is appropriately configured to <lb/>provide the appropriate test environment. As with any properly <lb/>orchestrated test effort, the test plan document should reflect these <lb/>and other relevant details and should be written with close attention <lb/>to the expected production operating environment. The combined <lb/>analysis of the results of each phase will characterize the overall <lb/>ISSU process with the main goal of being able to identify and <lb/>quantify any disruption in service (from the data-and control-plane <lb/>perspective) allowing operators to plan their maintenance activities <lb/>with greater precision. <lb/>3.1. Software Download <lb/>In this first phase, the requested software package may be downloaded <lb/>to the router and is typically stored onto a device. The downloading <lb/>of software may be performed automatically by the device as part of <lb/>the upgrade process, or it may be initiated separately. Such <lb/>separation allows an administrator to download the new code inside or <lb/>outside of a maintenance window; it is anticipated that downloading <lb/>new code and saving it to disk on the router will not impact <lb/>operations. In the case where the software can be downloaded outside <lb/>of the actual upgrade process, the administrator should do so; <lb/>downloading software can skew timing results based on factors that <lb/>are often not comparative in nature. Internal compatibility <lb/>verification may be performed by the software running on the DUT, to <lb/>verify the checksum of the files downloaded as well as any other <lb/>pertinent checks. Depending upon vendor implementation, these <lb/>mechanisms may include 1) verifying that the downloaded module(s) <lb/>meet a set of identified prerequisites such as (but not limited to) <lb/>hardware or firmware compatibility or minimum software requirements <lb/>or even 2) ensuring that device is "authorized" to run the target <lb/>software. <lb/>Where such mechanisms are made available by the product, they should <lb/>be verified, by the tester, with the goal of avoiding operational <lb/>issues in production. Verification should include both positive <lb/>verification (ensuring that an ISSU action should be permitted) as <lb/>well as negative tests (creation of scenarios where the verification <lb/>mechanisms would report exceptions). <lb/> + </body> + + <note place="footnote">Banks, et al. <lb/>Informational <lb/></note> + + <page>[Page 5] <lb/></page> + + <note place="headnote">RFC 7654 <lb/> Benchmarking Software Upgrade <lb/> October 2015 <lb/></note> + + <body> + 3.2. Software Staging <lb/>In this second phase, the requested software package is loaded in the <lb/>pertinent components of a given forwarding device (typically the RP <lb/>in standby state). Internal compatibility verification may be <lb/>performed by the software running on the DUT, as part of the upgrade <lb/>process itself, to verify the checksum of the files downloaded as <lb/>well as any other pertinent checks. Depending upon vendor <lb/>implementation, these mechanisms may include verification that the <lb/>downloaded module(s) meet a set of identified prerequisites such as <lb/>hardware or firmware compatibility or minimum software requirements. <lb/>Where such mechanisms are made available by the product, they should <lb/>be verified, by the tester (again with the goal of avoiding <lb/>operational issues in production). In this case, the execution of <lb/>these checks is within the scope of the upgrade time and should be <lb/>included in the testing results. Once the new software is downloaded <lb/>to the pertinent components of the DUT, the upgrade begins, and the <lb/>DUT begins to prepare itself for upgrade. Depending on the vendor <lb/>implementation, it is expected that redundant hardware pieces within <lb/>the DUT are upgraded, including the backup or secondary RP. <lb/>3.3. Upgrade Run <lb/>In this phase, a switchover of RPs may take place, where one RP is <lb/>now upgraded with the new version of software. More importantly, the <lb/>"Upgrade Run" phase is where the internal changes made to information <lb/>and state (stored on the router, on disk, and in memory) are either <lb/>migrated to the "new" version of code, or transformed/rebuilt to meet <lb/>the standards of the new version of code, and pushed onto the <lb/>appropriate pieces of hardware. It is within this phase that any <lb/>outage(s) on the control or forwarding plane may be expected to be <lb/>observed. This is the critical phase of the ISSU, where the control <lb/>plane should not be impacted and any interruptions to the forwarding <lb/>plane should be minimal to none. <lb/>If any control-or data-plane interruptions are observed within this <lb/>stage, they should be recorded as part of the results document. <lb/>For some implementations, the two stages, as described in Section 3.2 <lb/>and above, may be concatenated into one monolithic operation. In <lb/>that case, the calculation of the respective ISSU time intervals may <lb/>need to be adapted accordingly. <lb/> + </body> + + <note place="footnote">Banks, et al. <lb/>Informational <lb/></note> + + <page>[Page 6] <lb/></page> + + <note place="headnote">RFC 7654 <lb/> Benchmarking Software Upgrade <lb/> October 2015 <lb/></note> + + <body> + 3.4. Upgrade Acceptance <lb/>In this phase, the new version of software must be running in all the <lb/>physical nodes of the logical forwarding device (RPs and line cards <lb/>as applicable). At this point, configuration control is returned to <lb/>the operator, and normal device operation, i.e., outside of ISSU-<lb/>oriented operation, is resumed. <lb/>4. Test Methodology <lb/>As stated by [RFC6815], the Test Topology Setup must be part of an <lb/>Isolated Test Environment (ITE). <lb/>The reporting of results must take into account the repeatability <lb/>considerations from Section 4 of [RFC2544]. It is RECOMMENDED to <lb/>perform multiple trials and report average results. The results are <lb/>reported in a simple statement including the measured frame loss and <lb/>ISSU impact times. <lb/>4.1. Test Topology <lb/>The hardware configuration of the DUT (Device Under Test) should be <lb/>identical to the one expected to be or currently deployed in <lb/>production in order for the benchmark to have relevance. This would <lb/>include the number of RPs, hardware version, memory, and initial <lb/>software release, any common chassis components, such as fabric <lb/>hardware in the case of a fabric-switching platform, and the specific <lb/>line cards (version, memory, interfaces type, rate, etc.). <lb/>For the control and data plane, differing configuration approaches <lb/>may be utilized. The recommended approach relies on "mimicking" the <lb/>existing production data-and control-plane information, in order to <lb/>emulate all the necessary Layer 1 through Layer 3 communications and, <lb/>if appropriate, the upper-layer characteristics of the network, as <lb/>well as end-to-end traffic/communication pairs. In other words, <lb/>design a representative load model of the production environment and <lb/>deploy a collapsed topology utilizing test tools and/or external <lb/>devices, where the DUT will be tested. Note that, the negative <lb/>impact of ISSU operations is likely to impact scaled, dynamic <lb/>topologies to a greater extent than simpler, static environments. As <lb/>such, this methodology (based upon production configuration) is <lb/>advised for most test scenarios. <lb/>The second, more simplistic approach is to deploy an ITE in which <lb/>endpoints are "directly" connected to the DUT. In this manner, <lb/>control-plane information is kept to a minimum (only connected <lb/>interfaces), and only a basic data-plane of sources and destinations <lb/>is applied. If this methodology is selected, care must be taken to <lb/> + </body> + + <note place="footnote">Banks, et al. <lb/>Informational <lb/></note> + + <page>[Page 7] <lb/></page> + + <note place="headnote">RFC 7654 <lb/> Benchmarking Software Upgrade <lb/> October 2015 <lb/></note> + + <body> + understand that the systemic behavior of the ITE may not be identical <lb/>to that experienced by a device in a production network role. That <lb/>is, control-plane validation may be minimal to none with this <lb/>methodology. Consequently, if this approach is chosen, comparison <lb/>with at least one production configuration is recommended in order to <lb/>understand the direct relevance and limitations of the test exercise. <lb/>4.2. Load Model <lb/>In consideration of the defined test topology, a load model must be <lb/>developed to exercise the DUT while the ISSU event is introduced. <lb/>This applied load should be defined in such a manner as to provide a <lb/>granular, repeatable verification of the ISSU impact on transit <lb/>traffic. Sufficient traffic load (rate) should be applied to permit <lb/>timing extrapolations at a minimum granularity of 100 milliseconds, <lb/>e.g., 100 Mbps for a 10 Gbps interface. The use of steady traffic <lb/>streams rather than bursty loads is preferred to simplify analysis. <lb/>The traffic should be patterned to provide a broad range of source <lb/>and destination pairs, which resolve to a variety of FIB (Forwarding <lb/>Information Base) prefix lengths. If the production network <lb/>environment includes multicast traffic or VPNs (L2, L3, or IPsec), it <lb/>is critical to include these in the model. <lb/>For mixed protocol environments (e.g., IPv4 and IPv6), frames should <lb/>be distributed between the different protocols. The distribution <lb/>should approximate the network conditions of deployment. In all <lb/>cases, the details of the mixed protocol distribution must be <lb/>included in the reporting. <lb/>The feature, protocol timing, and other relevant configurations <lb/>should be matched to the expected production environment. Deviations <lb/>from the production templates may be deemed necessary by the test <lb/>operator (for example, certain features may not support ISSU or the <lb/>test bed may not be able to accommodate such). However, the impact <lb/>of any such divergence should be clearly understood, and the <lb/>differences must be recorded in the results documentation. It is <lb/>recommended that a Network Management System (NMS) be deployed, <lb/>preferably similar to that utilized in production. This will allow <lb/>for monitoring of the DUT while it is being tested, both in terms of <lb/>supporting the impact analysis on system resources as well as <lb/>detecting interference with non-transit (management) traffic as a <lb/>result of the ISSU operation. It is suggested that the actual test <lb/>exercise be managed utilizing direct console access to the DUT, if at <lb/>all possible, to avoid the possibility that a network interruption <lb/>impairs execution of the test exercise. <lb/> + </body> + + <note place="footnote">Banks, et al. <lb/>Informational <lb/></note> + + <page>[Page 8] <lb/></page> + + <note place="headnote">RFC 7654 <lb/> Benchmarking Software Upgrade <lb/> October 2015 <lb/></note> + + <body> + All in all, the load model should attempt to simulate the production <lb/>network environment to the greatest extent possible in order to <lb/>maximize the applicability of the results generated. <lb/>5. ISSU Test Methodology <lb/>As previously described, for the purposes of this test document, the <lb/>ISSU process is divided into three main phases. The following <lb/>methodology assumes that a suitable test topology has been <lb/>constructed per Section 4. A description of the methodology to be <lb/>applied for each of the above phases follows. <lb/>5.1. Pre-ISSU Recommended Verifications <lb/>The steps of this phase are as follows. <lb/>1. Verify that enough hardware and software resources are available <lb/>to complete the Load operation (e.g., enough disk space). <lb/>2. Verify that the redundancy states between RPs and other nodes are <lb/>as expected (e.g., redundancy on, RPs synchronized). <lb/>3. Verify that the device, if running protocols capable of NSR (Non-<lb/>Stop Routing), is in a "ready" state; that is, that the sync <lb/>between RPs is complete and the system is ready for failover, if <lb/>necessary. <lb/>4. Gather a configuration snapshot of the device and all of its <lb/>applicable components. <lb/>5. Verify that the node is operating in a "steady" state (that is, <lb/>no critical or maintenance function is being currently <lb/>performed). <lb/>6. Note any other operational characteristics that the tester may <lb/>deem applicable to the specific implementation deployed. <lb/>5.2. Software Staging <lb/>The steps of this phase are as follows. <lb/>1. Establish all relevant protocol adjacencies and stabilize routing <lb/>within the test topology. In particular, ensure that the scaled <lb/>levels of the dynamic protocols are dimensioned as specified by <lb/>the test topology plan. <lb/> + </body> + + <note place="footnote">Banks, et al. <lb/>Informational <lb/></note> + + <page>[Page 9] <lb/></page> + + <note place="headnote">RFC 7654 <lb/> Benchmarking Software Upgrade <lb/> October 2015 <lb/></note> + + <body> + 2. Clear, relevant logs and interface counters to simplify analysis. <lb/>If possible, set logging timestamps to a highly granular mode. <lb/>If the topology includes management systems, ensure that the <lb/>appropriate polling levels have been applied, sessions have been <lb/>established, and the responses are per expectation. <lb/>3. Apply the traffic loads as specified in the load model previously <lb/>developed for this exercise. <lb/>4. Document an operational baseline for the test bed with relevant <lb/>data supporting the above steps (include all relevant load <lb/>characteristics of interest in the topology, e.g., routing load, <lb/>traffic volumes, memory and CPU utilization). <lb/>5. Note the start time (T0) and begin the code change process <lb/>utilizing the appropriate mechanisms as expected to be used in <lb/>production (e.g., active download with TFTP, FTP, SCP, etc., or <lb/>direct install from local or external storage facility). In <lb/>order to ensure that ISSU process timings are not skewed by the <lb/>lack of a network-wide synchronization source, the use of a <lb/>network NTP source is encouraged. <lb/>6. Take note of any logging information and command-line interface <lb/>(CLI) prompts as needed. (This detail will be vendor specific.) <lb/>Respond to any DUT prompts in a timely manner. <lb/>7. Monitor the DUT for the reload of the secondary RP to the new <lb/>software level. Once the secondary has stabilized on the new <lb/>code, note the completion time. The duration of these steps will <lb/>be recorded as "T1". <lb/>8. Review system logs for any anomalies, check that relevant dynamic <lb/>protocols have remained stable, and note traffic loss if any. <lb/>Verify that deployed management systems have not identified any <lb/>unexpected behavior. <lb/>5.3. Upgrade Run <lb/>The following assumes that the software load step and upgrade step <lb/>are discretely controllable. If not, maintain the aforementioned <lb/>timer and monitor for completion of the ISSU as described below. <lb/>1. Note the start time and initiate the actual upgrade procedure. <lb/>2. Monitor the operation of the secondary route processor while it <lb/>initializes with the new software and assumes mastership of the <lb/>DUT. At this point, pay particular attention to any indications <lb/>of control-plane disruption, traffic impact, or other anomalous <lb/> + </body> + + <note place="footnote">Banks, et al. <lb/>Informational <lb/></note> + + <page>[Page 10] <lb/></page> + + <note place="headnote">RFC 7654 <lb/> Benchmarking Software Upgrade <lb/> October 2015 <lb/></note> + + <body> + behavior. Once the DUT has converged upon the new code and <lb/>returned to normal operation, note the completion time and log <lb/>the duration of this step as "T2". <lb/>3. Review the syslog data in the DUT and neighboring devices for any <lb/>behavior that would be disruptive in a production environment <lb/>(line card reloads, control-plane flaps, etc.). Examine the <lb/>traffic generators for any indication of traffic loss over this <lb/>interval. If the Test Set reported any traffic loss, note the <lb/>number of frames lost as "TPL_frames", where TPL stands for <lb/>"Total Packet Loss". If the Test Set also provides outage <lb/>duration, note this as "TPL_time". (Alternatively, TPL_time may <lb/>be calculated as (TPL / Offered Load) * 1000. The units for <lb/>Offered Load are packets per second; the units for TPL_time are <lb/>milliseconds.) <lb/>4. Verify the DUT status observations as per any NMS managing the <lb/>DUT and its neighboring devices. Document the observed CPU and <lb/>memory statistics both during and after the ISSU upgrade event, <lb/>and ensure that memory and CPU have returned to an expected <lb/>(previously baselined) level. <lb/>5.4. Post-ISSU Verification <lb/>The following describes a set of post-ISSU verification tasks that <lb/>are not directly part of the ISSU process, but are recommended for <lb/>execution in order to validate a successful upgrade. <lb/>1. Configuration delta analysis <lb/>Examine the post-ISSU configurations to determine if any changes <lb/>have occurred either through process error or due to differences <lb/>in the implementation of the upgraded code. <lb/>2. Exhaustive control-plane analysis <lb/>Review the details of the Routing Information Base (RIB) and FIB <lb/>to assess whether any unexpected changes have been introduced in <lb/>the forwarding paths. <lb/>3. Verify that both RPs are up and that the redundancy mechanism for <lb/>the control plane is enabled and fully synchronized. <lb/>4. Verify that no control-plane (protocol) events or flaps were <lb/>detected. <lb/>5. Verify that no L1 and or L2 interface flaps were observed. <lb/> + </body> + + <note place="footnote">Banks, et al. <lb/>Informational <lb/></note> + + <page>[Page 11] <lb/></page> + + <note place="headnote">RFC 7654 <lb/> Benchmarking Software Upgrade <lb/> October 2015 <lb/></note> + + <body> + 6. Document the hitless operation or presence of an outage based <lb/>upon the counter values provided by the Test Set. <lb/>5.5. ISSU under Negative Stimuli <lb/>As an OPTIONAL Test Case, the operator may want to perform an ISSU <lb/>test while the DUT is under stress by introducing route churn to any <lb/>or all of the involved phases of the ISSU process. <lb/>One approach relies on the operator to gather statistical information <lb/>from the production environment and determine a specific number of <lb/>routes to flap every 'fixed' or 'variable' interval. Alternatively, <lb/>the operator may wish to simply preselect a fixed number of prefixes <lb/>to flap. As an example, an operator may decide to flap 1% of all the <lb/>BGP routes every minute and restore them 1 minute afterwards. The <lb/>tester may wish to apply this negative stimulus throughout the entire <lb/>ISSU process or, most importantly, during the run phase. It is <lb/>important to ensure that these routes, which are introduced solely <lb/>for stress proposes, must not overlap the ones (per the load model) <lb/>specifically leveraged to calculate the TPL_time (recorded outage). <lb/>Furthermore, there should not be 'operator-induced' control-plane <lb/>protocol adjacency flaps for the duration of the test process as it <lb/>may adversely affect the characterization of the entire test <lb/>exercise. For example, triggering IGP adjacency events may force <lb/>recomputation of underlying routing tables with attendant impact to <lb/>the perceived ISSU timings. While not recommended, if such trigger <lb/>events are desired by the test operator, care should be taken to <lb/>avoid the introduction of unexpected anomalies within the test <lb/>harness. <lb/>6. ISSU Abort and Rollback <lb/>Where a vendor provides such support, the ISSU process could be <lb/>aborted for any reason by the operator. However, the end results and <lb/>behavior may depend on the specific phase where the process was <lb/>aborted. While this is implementation dependent, as a general <lb/>recommendation, if the process is aborted during the "Software <lb/>Download" or "Software Staging" phases, no impact to service or <lb/>device functionality should be observed. In contrast, if the process <lb/>is aborted during the "Upgrade Run" or "Upgrade Accept" phases, the <lb/>system may reload and revert back to the previous software release, <lb/>and, as such, this operation may be service affecting. Where vendor <lb/>support is available, the abort/rollback functionality should be <lb/>verified, and the impact, if any, quantified generally following the <lb/>procedures provided above. <lb/> + </body> + + <note place="footnote">Banks, et al. <lb/>Informational <lb/></note> + + <page>[Page 12] <lb/></page> + + <note place="headnote">RFC 7654 <lb/> Benchmarking Software Upgrade <lb/> October 2015 <lb/></note> + + <body> + 7. Final Report: Data Presentation and Analysis <lb/>All ISSU impact results are summarized in a simple statement <lb/>describing the "ISSU Disruption Impact" including the measured frame <lb/>loss and impact time, where impact time is defined as the time frame <lb/>determined per the TPL_time reported outage. These are considered to <lb/>be the primary data points of interest. <lb/>However, the entire ISSU operational impact should also be considered <lb/>in support of planning for maintenance, and, as such, additional <lb/>reporting points are included. <lb/>Software download / secondary update <lb/>T1 <lb/>Upgrade/Run <lb/>T2 <lb/>ISSU Traffic Disruption (Frame Loss) <lb/>TPL_frames <lb/>ISSU Traffic Impact Time (milliseconds) <lb/>TPL_time <lb/>ISSU Housekeeping Interval <lb/>T3 <lb/>(Time for both RPs up on new code and fully synced -Redundancy <lb/>restored) <lb/>Total ISSU Maintenance Window <lb/>T4 (sum of T1+T2+T3) <lb/>The results reporting must provide the following information: <lb/>-DUT hardware and software detail <lb/>-Test Topology definition and diagram (especially as related to the <lb/>ISSU operation) <lb/>-Load Model description including protocol mixes and any divergence <lb/>from the production environment <lb/>-Time Results as per above <lb/>-Anomalies Observed during ISSU <lb/>-Anomalies Observed in post-ISSU analysis <lb/> + </body> + + <note place="footnote">Banks, et al. <lb/>Informational <lb/></note> + + <page>[Page 13] <lb/></page> + + <note place="headnote">RFC 7654 <lb/> Benchmarking Software Upgrade <lb/> October 2015 <lb/></note> + + <body> + It is RECOMMENDED that the following parameters be reported as <lb/>outlined below: <lb/>Parameter <lb/>Units or Examples <lb/>---------------------------------------------------------------<lb/>Traffic Load <lb/>Frames per second and bits per second <lb/>Disruption (average) <lb/>Frames <lb/>Impact Time (average) <lb/>Milliseconds <lb/>Number of trials <lb/>Integer count <lb/>Protocols <lb/>IPv4, IPv6, MPLS, etc. <lb/>Frame Size <lb/>Octets <lb/>Port Media <lb/>Ethernet, Gigabit Ethernet (GbE), <lb/>Packet over SONET (POS), etc. <lb/>Port Speed <lb/>10 Gbps, 1 Gbps, 100 Mbps, etc. <lb/>Interface Encaps <lb/>Ethernet, Ethernet VLAN, PPP, <lb/>High-Level Data Link Control (HDLC), etc. <lb/>Number of Prefixes <lb/>Integer count <lb/> flapped (ON Interval) <lb/>(Optional) # of prefixes / Time (min.) <lb/>flapped (OFF Interval) <lb/>(Optional) # of prefixes / Time (min.) <lb/>Document any configuration deltas that are observed after the ISSU <lb/>upgrade has taken effect. Note differences that are driven by <lb/>changes in the patch or release level, as well as items that are <lb/>aberrant changes due to software faults. In either of these cases, <lb/>any unexpected behavioral changes should be analyzed and a <lb/>determination made as to the impact of the change (be it functional <lb/>variances or operational impacts to existing scripts or management <lb/>mechanisms). <lb/>7.1. Data Collection Considerations <lb/>When a DUT is undergoing an ISSU operation, it's worth noting that <lb/>the DUT's data collection and reporting of data, such as counters, <lb/>interface statistics, log messages, etc., may not be accurate. As <lb/>such, one should not rely on the DUT's data collection methods, but <lb/>rather, should use the test tools and equipment to collect data used <lb/> + </body> + + <note place="footnote">Banks, et al. <lb/>Informational <lb/></note> + + <page>[Page 14] <lb/></page> + + <note place="headnote">RFC 7654 <lb/> Benchmarking Software Upgrade <lb/> October 2015 <lb/></note> + + <body> + for reporting in Section 7. Care and consideration should be paid in <lb/>testing or adding new test cases, such that the desired data can be <lb/>collected from the test tools themselves, or other external <lb/>equipment, outside of the DUT itself. <lb/>8. Security Considerations <lb/>All BMWG memos are limited to testing in a laboratory Isolated Test <lb/>Environment (ITE), thus avoiding accidental interruption to <lb/>production networks due to test activities. <lb/>All benchmarking activities are limited to technology <lb/>characterization using controlled stimuli in a laboratory environment <lb/>with dedicated address space and the other constraints [RFC2544]. <lb/>The benchmarking network topology will be an independent test setup <lb/>and MUST NOT be connected to devices that may forward the test <lb/>traffic into a production network or misroute traffic to the test <lb/>management network. <lb/>Further, benchmarking is performed on a "black-box" basis, relying <lb/>solely on measurements observable external to the Device Under Test / <lb/>System Under Test (DUT/SUT). <lb/>Special capabilities should not exist in the DUT/SUT specifically for <lb/>benchmarking purposes. Any implications for network security arising <lb/>from the DUT/SUT should be identical in the lab and in production <lb/>networks. <lb/> + </body> + + <listBibl> + 9. References <lb/>9.1. Normative References <lb/>[RFC2119] Bradner, S., "Key words for use in RFCs to Indicate <lb/>Requirement Levels", BCP 14, RFC 2119, <lb/>DOI 10.17487/RFC2119, March 1997, <lb/><http://www.rfc-editor.org/info/rfc2119>. <lb/>[RFC2544] Bradner, S. and J. McQuaid, "Benchmarking Methodology for <lb/>Network Interconnect Devices", RFC 2544, <lb/>DOI 10.17487/RFC2544, March 1999, <lb/><http://www.rfc-editor.org/info/rfc2544>. <lb/> + </listBibl> + + <note place="footnote">Banks, et al. <lb/>Informational <lb/></note> + + <page>[Page 15] <lb/></page> + + <note place="headnote">RFC 7654 <lb/> Benchmarking Software Upgrade <lb/> October 2015 <lb/></note> + + <listBibl> + 9.2. Informative References <lb/>[RFC5880] Katz, D. and D. Ward, "Bidirectional Forwarding Detection <lb/>(BFD)", RFC 5880, DOI 10.17487/RFC5880, June 2010, <lb/><http://www.rfc-editor.org/info/rfc5880>. <lb/>[RFC6815] Bradner, S., Dubray, K., McQuaid, J., and A. Morton, <lb/>"Applicability Statement for RFC 2544: Use on Production <lb/>Networks Considered Harmful", RFC 6815, <lb/>DOI 10.17487/RFC6815, November 2012, <lb/><http://www.rfc-editor.org/info/rfc6815>. <lb/> + </listBibl> + + <div type="acknowledgement"> + Acknowledgments <lb/>The authors wish to thank Vibin Thomas for his valued review and <lb/>feedback. <lb/> + </div> + + Authors' Addresses <lb/> + + <front> + Sarah Banks <lb/>VSS Monitoring <lb/>Email: sbanks@encrypted.net <lb/>Fernando Calabria <lb/>Cisco Systems <lb/>Email: fcalabri@cisco.com <lb/>Gery Czirjak <lb/>Juniper Networks <lb/>Email: gczirjak@juniper.net <lb/>Ramdas Machat <lb/>Juniper Networks <lb/>Email: rmachat@juniper.net <lb/> + </front> + + <note place="footnote">Banks, et al. <lb/>Informational <lb/></note> + + <page>[Page 16] <lb/></page> + + </text> +</tei> diff --git a/grobid-trainer/resources/dataset/segmentation/sdo/ietf/crfpp-templates/segmentation.template b/grobid-trainer/resources/dataset/segmentation/sdo/ietf/crfpp-templates/segmentation.template new file mode 100755 index 0000000000..d439285d52 --- /dev/null +++ b/grobid-trainer/resources/dataset/segmentation/sdo/ietf/crfpp-templates/segmentation.template @@ -0,0 +1,207 @@ +# Token (0) +U00:%x[-4,0] +U01:%x[-3,0] +U02:%x[-2,0] +U03:%x[-1,0] +U04:%x[0,0] +U05:%x[1,0] +U06:%x[2,0] +U07:%x[3,0] +U08:%x[4,0] +U08:%x[5,0] +#U09:%x[-1,0]/%x[0,0] +#U0A:%x[0,0]/%x[1,0] +#U0B:%x[1,0]/%x[2,0] +#U0C:%x[-2,0]/%x[-1,0] +#U0D:%x[0,0]/%x[-1,25] + +# second token (1) +U00:%x[-4,1] +U01:%x[-3,1] +U02:%x[-2,1] +U03:%x[-1,1] +U04:%x[0,1] +U05:%x[1,1] +U06:%x[2,1] +U07:%x[3,1] +U08:%x[4,1] +#U09:%x[-1,1]/%x[0,1] +#U0A:%x[0,1]/%x[1,1] +#U0B:%x[1,1]/%x[2,1] +#U0C:%x[-2,1]/%x[-1,1] +#U0D:%x[0,1]/%x[-1,25] + +# Lowercase first token (2) +U10:%x[-2,2] +U11:%x[-1,2] +U12:%x[0,2] +U13:%x[1,2] +U14:%x[2,2] + +# Prefix 1-4 characters (3-6) +U20:%x[0,3] +U21:%x[0,4] +U22:%x[0,5] +U23:%x[0,6] + +# Suffix 1-4 characters (6-9) +#U30:%x[0,6] +#U31:%x[0,7] +#U32:%x[0,8] +#U33:%x[0,9] + +# Block info (7) +U40:%x[-1,7] +U41:%x[0,7] +U42:%x[1,7] + +# Line info (7) +#U50:%x[-1,7] +#U51:%x[0,7] +#U52:%x[1,7] + +# page info (8) +U60:%x[-1,8] +U61:%x[0,8] +U62:%x[1,8] + +# Font info (9-10) +U70:%x[-1,9] +U71:%x[0,9] +U72:%x[1,9] + +U80:%x[-1,10] +U81:%x[0,10] +U82:%x[1,10] + +# Bold info (11) +U90:%x[-1,11] +U91:%x[0,11] +U92:%x[1,11] + +# Italic info (12) +UA0:%x[-1,12] +UA1:%x[0,12] +UA2:%x[1,12] + +# Capitalization (13) +UB0:%x[0,13] +UB1:%x[1,13] +UB2:%x[-1,13] +#UB3:%x[0,13]/%x[1,13] +#UB4:%x[-1,13]/%x[0,13] + +# Digits (14) +UC0:%x[0,14] +UC1:%x[-1,14] +UC2:%x[1,14] +#UC3:%x[0,14]/%x[1,14] +#UC4:%x[-1,14]/%x[0,14] + +# Char (15) +UD0:%x[0,15] +UD1:%x[-1,15] +UD2:%x[1,15] + +# Dict info (16-22) +UE0:%x[0,16] +UE1:%x[0,17] +UE2:%x[0,18] +UE3:%x[0,19] +UE4:%x[0,20] +UE5:%x[0,21] +UE6:%x[0,22] + +UEI:%x[1,16] +UEJ:%x[1,17] +UEK:%x[1,18] +UEL:%x[1,19] +UEM:%x[1,20] +UEN:%x[1,21] +UEO:%x[1,22] + +# Punctuation (21) +#UF0:%x[0,21] +#UF1:%x[-1,21] +#UF2:%x[-2,21] +#UF3:%x[1,21] +#UF4:%x[2,21] + +# relative document position (23) +UG0:%x[-1,23] +UG1:%x[0,23] +UG2:%x[1,23] + +# relative page position coordinate (24) +UH0:%x[-1,24] +UH1:%x[0,24] +UH2:%x[1,24] + +# relative page position characters (24) +#UH0:%x[-1,24] +#UH1:%x[0,24] +#UH2:%x[1,24] + +# punctuation profile (25) +UI0:%x[-1,25] +UI1:%x[0,25] +UI2:%x[1,25] + +# number of punctuation charcaters in the line (26) +UI0:%x[-1,26] +UI1:%x[0,26] +UI2:%x[1,26] + +# (scaled) line length (27) +UI0:%x[-1,27] +UI1:%x[0,27] +UI2:%x[1,27] + +# bitmap connected to the current block (28) +UG0:%x[-2,28] +UG1:%x[-1,28] +UG2:%x[0,28] +UG3:%x[1,28] +UG4:%x[2,28] +UG5:%x[3,28] + +# vector graphic connected to the current block (29) +UG0:%x[-2,29] +UG1:%x[-1,29] +UG2:%x[0,29] +UG3:%x[1,29] +UG4:%x[2,29] +UG5:%x[3,29] + +# pattern repeated on several pages +UH0:%x[-2,30] +UH1:%x[-1,30] +UH2:%x[0,30] +UH3:%x[1,30] +UH4:%x[2,30] +UH5:%x[3,30] + +# if we have a repeated pattern, indicate the first +UI1:%x[-1,31] +UI2:%x[0,31] +UI3:%x[1,31] + +# if the block is in the page main area (1) +UJ1:%x[-2,32] +UJ1:%x[-1,32] +UJ2:%x[0,32] +UJ3:%x[1,32] +UJ3:%x[1,32] + +# discretize space with previous block (1) +#UK1:%x[-1,33] +#UK2:%x[0,33] +#UK3:%x[1,33] + +# character density of the previous block, discretised (1) +#UL1:%x[-1,34] +#UL2:%x[0,34] +#UL3:%x[1,34] + +# Output +B diff --git a/grobid-trainer/resources/dataset/segmentation/sdo/ietf/evaluation/raw/draft-ietf-bfcpbis-rfc4583bis-27.segmentation b/grobid-trainer/resources/dataset/segmentation/sdo/ietf/evaluation/raw/draft-ietf-bfcpbis-rfc4583bis-27.segmentation new file mode 100644 index 0000000000..654365aef9 --- /dev/null +++ b/grobid-trainer/resources/dataset/segmentation/sdo/ietf/evaluation/raw/draft-ietf-bfcpbis-rfc4583bis-27.segmentation @@ -0,0 +1,986 @@ +BFCPbis Working bfcpbis B BF BFC BFCP BLOCKSTART PAGESTART NEWFONT HIGHERFONT 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 no 0 10 0 0 0 0 1 +G. Camarillo g. G G. G. G. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 . 1 3 0 0 0 0 1 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 - 1 4 0 0 1 1 1 +Ericsson Ericsson ericsson E Er Eri Eric BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 no 0 2 0 0 0 0 1 +Obsoletes: 4583 obsoletes: O Ob Obs Obso BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 :() 3 9 0 0 0 0 1 +T. Kristensen t. T T. T. T. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 . 1 4 0 0 0 0 1 +Intended status: intended I In Int Inte BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 : 1 10 0 0 0 0 1 +Cisco Cisco cisco C Ci Cis Cisc BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 1 0 0 0 0 0 0 0 0 no 0 1 0 0 0 0 1 +Expires: June expires: E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 :, 2 6 0 0 0 0 1 +C. Holmberg c. C C. C. C. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 . 1 3 0 0 0 0 1 +Ericsson Ericsson ericsson E Er Eri Eric BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 no 0 2 0 0 0 0 1 +December 8, december D De Dec Dece BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 0 0 , 1 5 0 0 0 0 1 +Session Description session S Se Ses Sess BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 1 () 2 10 0 0 0 0 1 +Protocol (BFCP) protocol P Pr Pro Prot BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 1 () 2 3 0 0 0 0 1 +draft-ietf-bfcpbis-rfc4583bis-27 draft-ietf-bfcpbis-rfc4583bis-27 draft-ietf-bfcpbis-rfc4583bis-27 d dr dra draf BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 1 ---- 4 4 0 0 0 0 1 +Abstract Abstract abstract A Ab Abs Abst BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 2 no 0 10 0 0 0 0 1 +This document this T Th Thi This BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 2 ()/ 3 10 0 0 0 0 1 +answer procedures answer a an ans answ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 2 no 0 9 0 0 0 0 1 +Control Protocol control C Co Con Cont BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 2 (). 3 4 0 0 0 0 1 +This document this T Th Thi This BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 3 . 1 10 0 0 0 0 1 +summarized in summarized s su sum summ BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 3 . 1 4 0 0 0 0 1 +Status of status S St Sta Stat BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 4 no 0 10 0 0 0 0 1 +This Internet-Draft this T Th Thi This BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 4 - 1 10 0 0 0 0 1 +provisions of provisions p pr pro prov BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 4 . 1 5 0 0 0 0 1 +Internet-Drafts are internet-drafts I In Int Inte BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 4 - 1 9 0 0 0 0 1 +Task Force task T Ta Tas Task BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 4 (). 3 9 0 0 0 0 1 +working documents working w wo wor work BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 4 -.- 3 10 0 0 0 0 1 +Drafts is drafts D Dr Dra Draf BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 4 ://..///. 9 8 0 0 0 0 1 +Internet-Drafts are internet-drafts I In Int Inte BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 6 - 1 10 0 0 0 0 1 +and may and a an and and BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 6 ,, 2 9 0 0 0 0 1 +time. It time. t ti tim time BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 6 .- 2 8 0 0 0 0 1 +material or material m ma mat mate BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 6 "." 3 8 0 0 0 0 1 +This Internet-Draft this T Th Thi This BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 8 -,. 3 10 0 0 0 0 1 +Copyright Notice copyright C Co Cop Copy BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 8 no 0 10 0 0 0 0 1 +Copyright (c) copyright C Co Cop Copy BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 9 () 2 10 0 0 0 0 1 +document authors. document d do doc docu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 9 .. 2 6 0 0 0 0 1 +This document this T Th Thi This BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 9 ' 1 9 0 0 0 0 1 +Provisions Relating provisions P Pr Pro Prov BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 9 no 0 5 0 0 0 0 1 +(http://trustee.ietf.org/license-info) in (http://trustee.ietf.org/license-info) ( (h (ht (htt BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 1 0 9 (://../-) 9 10 0 0 0 0 1 +publication of publication p pu pub publ BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 9 . 1 9 0 0 0 0 1 +Camarillo, et camarillo, C Ca Cam Cama BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 11 ,. 2 8 0 0 1 1 1 +Expires June expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 11 , 1 10 0 0 0 0 1 +[Page 1] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 0 11 [] 2 4 0 0 0 0 1 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 - 1 10 0 0 1 0 1 +BFCP BFCP bfcp B BF BFC BFCP BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 no 0 3 0 0 0 0 1 +December 2018 december D De Dec Dece BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 0 0 no 0 10 0 0 0 0 1 +carefully, as carefully, c ca car care BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 , 1 10 0 0 0 0 1 +to this to t to to to BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 . 1 9 0 0 0 0 1 +include Simplified include i in inc incl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 . 1 9 0 0 0 0 1 +the Trust the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 no 0 9 0 0 0 0 1 +described in described d de des desc BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 0 0 . 1 5 0 0 0 0 1 +Table of table T Ta Tab Tabl BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 0 0 no 0 10 0 0 0 0 1 +1. Introduction 1. 1 1. 1. 1. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ......................... 25 9 0 0 0 0 1 +3 3 3 3 3 3 3 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 0 0 no 0 0 0 0 0 0 1 +2. Conventions 2. 2 2. 2. 2. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 .......................... 26 9 0 0 0 0 1 +3 3 3 3 3 3 3 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 0 0 no 0 0 0 0 0 0 1 +3. Floor 3. 3 3. 3. 3. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ...................... 22 9 0 0 0 0 1 +4 4 4 4 4 4 4 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 0 0 no 0 0 0 0 0 0 1 +4. Fields 4. 4 4. 4. 4. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 .''................... 22 9 0 0 0 0 1 +4 4 4 4 4 4 4 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 0 0 no 0 0 0 0 0 0 1 +5. SDP 5. 5 5. 5. 5. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ........................ 24 9 0 0 0 0 1 +5 5 5 5 5 5 5 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 0 0 no 0 0 0 0 0 0 1 +5.1. SDP 5.1. 5 5. 5.1 5.1. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ..''................ 20 9 0 0 0 0 1 +5 5 5 5 5 5 5 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 0 0 no 0 0 0 0 0 0 1 +5.2. SDP 5.2. 5 5. 5.2 5.2. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ..''................. 21 8 0 0 0 0 1 +7 7 7 7 7 7 7 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 0 0 no 0 0 0 0 0 0 1 +5.3. SDP 5.3. 5 5. 5.3 5.3. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ..''................. 21 8 0 0 0 0 1 +8 8 8 8 8 8 8 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 0 0 no 0 0 0 0 0 0 1 +5.4. SDP 5.4. 5 5. 5.4 5.4. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ..''................. 21 9 0 0 0 0 1 +9 9 9 9 9 9 9 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS ALLDIGIT 1 0 0 0 0 0 0 0 0 0 no 0 0 0 0 0 0 1 +5.5. SDP 5.5. 5 5. 5.5 5.5. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ..''................. 21 9 0 0 0 0 1 +6. Multiplexing 6. 6 6. 6. 6. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 .................. 18 9 0 0 0 0 1 +7. BFCP 7. 7 7. 7. 7. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 .................. 18 9 0 0 0 0 1 +7.1. TCP 7.1. 7 7. 7.1 7.1. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 .................. 18 9 0 0 0 0 1 +8. TLS/DTLS 8. 8 8. 8. 8. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ./................... 21 9 0 0 0 0 1 +9. ICE 9. 9 9. 9. 9. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ...................... 22 9 0 0 0 0 1 +10. SDP 10. 1 10 10. 10. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ./................. 19 10 0 0 0 0 1 +10.1. Generating 10.1. 1 10 10. 10.1 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 .............. 14 9 0 0 0 0 1 +10.2. Generating 10.2. 1 10 10. 10.2 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ................. 17 9 0 0 0 0 1 +10.3. Offerer 10.3. 1 10 10. 10.3 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ............ 12 9 0 0 0 0 1 +10.4. Modifying 10.4. 1 10 10. 10.4 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ................... 19 9 0 0 0 0 1 +11. Examples 11. 1 11 11. 11. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ........................... 27 9 0 0 0 0 1 +12. Security 12. 1 12 12. 12. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 .................... 20 10 0 0 0 0 1 +13. IANA 13. 1 13 13. 13. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ...................... 22 10 0 0 0 0 1 +13.1. Registration 13.1. 1 13 13. 13.1 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ..''........... 15 9 0 0 0 0 1 +13.2. Registration 13.2. 1 13 13. 13.2 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ..''..... 9 9 0 0 0 0 1 +13.3. Registration 13.3. 1 13 13. 13.3 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ..''....... 11 9 0 0 0 0 1 +13.4. Registration 13.4. 1 13 13. 13.4 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ..''....... 11 9 0 0 0 0 1 +13.5. Registration 13.5. 1 13 13. 13.5 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ..''...... 10 9 0 0 0 0 1 +13.6. Registration 13.6. 1 13 13. 13.6 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ..''...... 10 9 0 0 0 0 1 +14. Changes 14. 1 14 14. 14. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ..................... 21 10 0 0 0 0 1 +15. Acknowledgements 15. 1 15 15. 15. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 ....................... 23 9 0 0 0 0 1 +16. References 16. 1 16 16. 16. BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 .......................... 26 9 0 0 0 0 1 +16.1. Normative 16.1. 1 16 16. 16.1 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 .................... 20 9 0 0 0 0 1 +16.2. Informational 16.2. 1 16 16. 16.2 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 0 0 .................. 18 9 0 0 0 0 1 +Authors' Addresses authors' A Au Aut Auth BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 0 0 '....................... 24 9 0 0 0 0 1 +Camarillo, et camarillo, C Ca Cam Cama BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 1 11 ,. 2 8 0 0 1 0 0 +Expires June expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 11 , 1 10 0 0 0 0 0 +[Page 2] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 1 0 - 1 10 0 0 1 0 1 +BFCP BFCP bfcp B BF BFC BFCP BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 1 0 no 0 3 0 0 0 0 1 +December 2018 december D De Dec Dece BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 1 0 no 0 10 0 0 0 0 1 +1. Introduction 1. 1 1. 1. 1. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 0 . 1 10 0 0 0 0 1 +As discussed as A As As As BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 0 () 2 8 0 0 0 0 1 +specification [I-D.ietf-bfcpbis-rfc4582bis], specification s sp spe spec BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 0 [-.--], 7 9 0 0 0 0 1 +needs a needs n ne nee need BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 0 no 0 9 0 0 0 0 1 +floor control floor f fl flo floo BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 0 . 1 10 0 0 0 0 1 +the server, the t th the the BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 0 ,,. 3 9 0 0 0 0 1 +One way one O On One One BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 2 no 0 9 0 0 0 0 1 +offer/answer [RFC3264] offer/answer o of off offe BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 1 2 /[]. 4 9 0 0 0 0 1 +encode this encode e en enc enco BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 2 no 0 10 0 0 0 0 1 +of such of o of of of BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 2 /. 2 4 0 0 0 0 1 +User agents user U Us Use User BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 1 3 / 1 9 0 0 0 0 1 +number of number n nu num numb BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 3 ., 2 10 0 0 0 0 1 +BFCP connection bfcp B BF BFC BFCP BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 1 3 no 0 9 0 0 0 0 1 +SDP 'm' sdp S SD SDP SDP BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 1 3 '', 3 9 0 0 0 0 1 +apply to apply a ap app appl BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 3 . 1 4 0 0 0 0 1 +Section 4 section S Se Sec Sect BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 5 '' 2 10 0 0 0 0 1 +BFCP connection bfcp B BF BFC BFCP BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 1 5 . 1 3 0 0 0 0 1 +Section 5 section S Se Sec Sect BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 6 no 0 10 0 0 0 0 1 +BFCP connection. bfcp B BF BFC BFCP BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 1 6 . 1 2 0 0 0 0 1 +Section 6 section S Se Sec Sect BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 6 . 1 10 0 0 0 0 1 +Section 7 section S Se Sec Sect BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 7 . 1 10 0 0 0 0 1 +Section 8 section S Se Sec Sect BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 7 no 0 10 0 0 0 0 1 +connection. connection. connection. c co con conn BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 7 . 1 1 0 0 0 0 1 +Section 9 section S Se Sec Sect BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 8 () 2 10 0 0 0 0 1 +[RFC8445] considerations [rfc8445] [ [R [RF [RFC BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 8 []. 3 9 0 0 0 0 1 +Section 10 section S Se Sec Sect BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 8 / 1 10 0 0 0 0 1 +BFCP connection. bfcp B BF BFC BFCP BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 1 8 . 1 2 0 0 0 0 1 +2. Conventions 2. 2 2. 2. 2. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 1 9 . 1 10 0 0 0 0 1 +The key the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 1 9 "","","","","", 15 9 0 0 0 0 1 +"SHOULD", "SHOULD "should", " "S "SH "SHO BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 1 9 "","","","","", 15 9 0 0 0 0 1 +"OPTIONAL" in "optional" " "O "OP "OPT BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 1 9 "" 2 10 0 0 0 0 1 +14 [RFC2119] 14 1 14 14 14 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS ALLDIGIT 0 0 0 0 0 0 0 0 1 9 [][],, 6 9 0 0 0 0 1 +capitals, as capitals, c ca cap capi BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 1 9 ,. 2 3 0 0 0 0 1 +Camarillo, et camarillo, C Ca Cam Cama BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 2 11 ,. 2 8 0 0 1 0 0 +Expires June expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 11 , 1 10 0 0 0 0 0 +[Page 3] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 2 0 - 1 10 0 0 1 0 1 +BFCP BFCP bfcp B BF BFC BFCP BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 2 0 no 0 3 0 0 0 0 1 +December 2018 december D De Dec Dece BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 2 0 no 0 10 0 0 0 0 1 +3. Floor 3. 3 3. 3. 3. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 0 . 1 10 0 0 0 0 1 +When two when W Wh Whe When BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 0 , 1 10 0 0 0 0 1 +which of which w wh whi whic BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 0 no 0 9 0 0 0 0 1 +floor control floor f fl flo floo BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 0 . 1 3 0 0 0 0 1 +Once the once O On Onc Once BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 1 , 1 10 0 0 0 0 1 +BFCP-controlled streams bfcp-controlled B BF BFC BFCP BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 2 1 -. 2 8 0 0 0 0 1 +4. Fields 4. 4 4. 4. 4. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 2 .'' 3 10 0 0 0 0 1 +According to according A Ac Acc Acco BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 2 [],'' 5 10 0 0 0 0 1 +the following: the t th the the BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 2 : 1 2 0 0 0 0 1 +m=<media> <port> m=<media> m m= m=< m=<m BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 3 ... 3 10 0 0 0 0 1 +This section this T Th Thi This BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 3 '' 2 10 0 0 0 0 1 +Description ('m' description D De Des Desc BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 3 (''). 5 7 0 0 0 0 1 +The media the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 4 "". 3 10 0 0 0 0 1 +The port the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 4 , 1 9 0 0 0 0 1 +explained below. explained e ex exp expl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 4 . 1 9 0 0 0 0 1 +meaning (i.e., meaning m me mea mean BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 4 (..,) 5 10 0 0 0 0 1 +field. field. field. f fi fie fiel BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 4 . 1 1 0 0 0 0 1 +When TCP when W Wh Whe When BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 5 , 1 10 0 0 0 0 1 +the rules the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 5 [].'' 5 9 0 0 0 0 1 +attribute (discussed attribute a at att attr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 5 (.), 4 9 0 0 0 0 1 +port to port p po por port BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 5 , 1 10 0 0 0 0 1 +the case the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 5 no 0 9 0 0 0 0 1 +the remote the t th the the BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 5 ,. 2 7 0 0 0 0 1 +When UDP when W Wh Whe When BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 8 , 1 10 0 0 0 0 1 +port to port p po por port BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 8 no 0 9 0 0 0 0 1 +regardless of regardless r re reg rega BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 8 ''. 3 7 0 0 0 0 1 +This document this T Th Thi This BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 9 :/, 3 10 0 0 0 0 1 +TCP/DTLS/BFCP, TCP/TLS/BFCP, tcp/dtls/bfcp, T TC TCP TCP/ BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 2 9 //,//,/,//. 11 8 0 0 0 0 1 +The proto the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 10 : 1 10 0 0 0 0 1 +'TCP/BFCP' is 'tcp/bfcp' ' 'T 'TC 'TCP BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 2 10 '/' 3 9 0 0 0 0 1 +encryption, and encryption, e en enc encr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 10 , 1 10 0 0 0 0 1 +endpoints. endpoints. endpoints. e en end endp BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 10 . 1 1 0 0 0 0 1 +Camarillo, et camarillo, C Ca Cam Cama BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 2 11 ,. 2 8 0 0 1 0 0 +Expires June expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 11 , 1 10 0 0 0 0 0 +[Page 4] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 2 0 - 1 10 0 0 1 0 1 +BFCP BFCP bfcp B BF BFC BFCP BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 2 0 no 0 3 0 0 0 0 1 +December 2018 december D De Dec Dece BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 2 0 no 0 10 0 0 0 0 1 +'TCP/TLS/BFCP' is 'tcp/tls/bfcp' ' 'T 'TC 'TCP BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 2 0 '//' 4 9 0 0 0 0 1 +encryption, and encryption, e en enc encr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 0 , 1 10 0 0 0 0 1 +endpoints that endpoints e en end endp BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 0 . 1 4 0 0 0 0 1 +'UDP/BFCP' is 'udp/bfcp' ' 'U 'UD 'UDP BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 2 1 '/' 3 10 0 0 0 0 1 +encryption [RFC6347]. encryption e en enc encr BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 1 []. 3 3 0 0 0 0 1 +'UDP/TLS/BFCP' is 'udp/tls/bfcp' ' 'U 'UD 'UDP BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 2 1 '//' 4 9 0 0 0 0 1 +encryption. This encryption. e en enc encr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 1 . 1 8 0 0 0 0 1 +(Section 9). (section ( (S (Se (Sec BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 1 (). 3 9 0 0 0 0 1 +compatibility with compatibility c co com comp BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 1 . 1 10 0 0 0 0 1 +'TCP/DTLS/BFCP' is 'tcp/dtls/bfcp' ' 'T 'TC 'TCP BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 2 3 '//' 4 8 0 0 0 0 1 +encryption, running encryption, e en enc encr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 3 , 1 10 0 0 0 0 1 +in [RFC4571], in i in in in BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 2 3 [], 3 10 0 0 0 0 1 +RTP/RTCP packets rtp/rtcp R RT RTP RTP/ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 2 3 / 1 9 0 0 0 0 1 +length field length l le len leng BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 3 . 1 9 0 0 0 0 1 +is one is i is is is BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 3 (). 3 9 0 0 0 0 1 +be used be b be be be BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 3 no 0 9 0 0 0 0 1 +compliant endpoints compliant c co com comp BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 3 . 1 5 0 0 0 0 1 +The fmt the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 7 ().'' 5 10 0 0 0 0 1 +lines in lines l li lin line BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 7 no 0 9 0 0 0 0 1 +contain a contain c co con cont BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 7 "*". 4 9 0 0 0 0 1 +other value other o ot oth othe BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 7 . 1 4 0 0 0 0 1 +The following the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 9 '': 3 10 0 0 0 0 1 +m=application 50000 m=application m m= m=a m=ap BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 9 //* 3 10 0 0 0 0 1 +5. SDP 5. 5 5. 5. 5. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 9 . 1 10 0 0 0 0 1 +5.1. SDP 5.1. 5 5. 5.1 5.1. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 2 9 ..'' 4 10 0 0 0 0 1 +This section this T Th Thi This BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 2 10 ''-. 4 10 0 0 0 0 1 +attribute is attribute a at att attr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 2 10 ( 1 9 0 0 0 0 1 +server) for server) s se ser serv BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 2 10 ). 2 8 0 0 0 0 1 +Camarillo, et camarillo, C Ca Cam Cama BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 3 11 ,. 2 8 0 0 1 0 0 +Expires June expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 11 , 1 10 0 0 0 0 0 +[Page 5] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 3 0 - 1 10 0 0 1 0 1 +BFCP BFCP bfcp B BF BFC BFCP BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 3 0 no 0 3 0 0 0 0 1 +December 2018 december D De Dec Dece BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 3 0 no 0 10 0 0 0 0 1 +Attribute Name: attribute A At Att Attr BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 0 : 1 10 0 0 0 0 1 +Attribute Value: attribute A At Att Attr BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 0 :- 2 10 0 0 0 0 1 +Usage Level: usage U Us Usa Usag BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 0 : 1 10 0 0 0 0 1 +Charset Dependent: charset C Ch Cha Char BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 3 0 : 1 10 0 0 0 0 1 +Mux Category: mux M Mu Mux Mux BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 3 0 : 1 10 0 0 0 0 1 +The Augmented the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 0 []: 3 10 0 0 0 0 1 +floor-control = floor-control f fl flo floo BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 1 -*() 4 9 0 0 0 0 1 +role = role r ro rol role BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 1 "-"/"-"/"-" 11 10 0 0 0 0 1 +An endpoint an A An An An BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 3 1 () 2 10 0 0 0 0 1 +be willing be b be be be BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 1 -: 2 8 0 0 0 0 1 +c-only: The c-only: c c- c-o c-on BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 2 -:. 3 10 0 0 0 0 1 +s-only: The s-only: s s- s-o s-on BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 2 -:. 3 10 0 0 0 0 1 +When inserted when W Wh Whe When BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 3 , 1 8 0 0 0 0 1 +attribute values attribute a at att attr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 3 ("-""-"). 9 8 0 0 0 0 1 +answer, the answer, a an ans answ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 3 ,:"-" 5 10 0 0 0 0 1 +or "s-only". or o or or or BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 3 "-".. 5 9 0 0 0 0 1 +The offerer the T Th The The BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 3 . 1 6 0 0 0 0 1 +In [RFC4583], in I In In In BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 3 5 [],,"-", 8 9 0 0 0 0 1 +meant that meant m me mea mean BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 5 no 0 9 0 0 0 0 1 +client and client c cl cli clie BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 5 , 1 10 0 0 0 0 1 +taking different taking t ta tak taki BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 5 -. 2 9 0 0 0 0 1 +The feature the T Th The The BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 5 , 1 9 0 0 0 0 1 +particular many particular p pa par part BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 5 "-" 3 9 0 0 0 0 1 +endpoint is endpoint e en end endp BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 5 ( 1 9 0 0 0 0 1 +"c-only s-only"). "c-only " "c "c- "c-o BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 5 "--"). 6 9 0 0 0 0 1 +MUST NOT must M MU MUS MUST BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 3 5 "-" 3 10 0 0 0 0 1 +an answer, an a an an an BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 3 5 , 1 9 0 0 0 0 1 +process it process p pr pro proc BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 5 "--"("--"). 11 9 0 0 0 0 1 +Also, as also, A Al Als Also BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 5 , 1 9 0 0 0 0 1 +allowed to allowed a al all allo BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 5 ,'-''-', 8 9 0 0 0 0 1 +answer, each answer, a an ans answ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 5 ,, 2 9 0 0 0 0 1 +endpoint will endpoint e en end endp BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 5 - 1 9 0 0 0 0 1 +stream associated stream s st str stre BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 5 . 1 5 0 0 0 0 1 +Table 1 table T Ta Tab Tabl BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 10 , 1 10 0 0 0 0 1 +on what on o on on on BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 10 . 1 10 0 0 0 0 1 +Camarillo, et camarillo, C Ca Cam Cama BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 3 11 ,. 2 8 0 0 1 0 0 +Expires June expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 11 , 1 10 0 0 0 0 0 +[Page 6] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 3 0 - 1 10 0 0 1 0 1 +BFCP BFCP bfcp B BF BFC BFCP BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 3 0 no 0 3 0 0 0 0 1 +December 2018 december D De Dec Dece BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 3 0 no 0 10 0 0 0 0 1 ++---------+----------+ +---------+----------+ +---------+----------+ + +- +-- +--- BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 3 0 ------------------- 19 10 0 0 0 0 1 +| Offerer | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 3 0 no 0 10 0 0 0 0 1 ++---------+----------+ +---------+----------+ +---------+----------+ + +- +-- +--- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 3 0 ------------------- 19 10 0 0 0 0 1 +| c-only | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 3 0 -- 2 8 0 0 0 0 1 +| s-only | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 3 0 -- 2 8 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 3 0 no 0 0 0 0 0 0 1 +c-s c-s c-s c c- c-s c-s BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 0 - 1 1 0 0 0 0 1 +| c-only | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 3 0 - 1 4 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 3 0 no 0 0 0 0 0 0 1 +c-s c-s c-s c c- c-s c-s BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 0 - 1 1 0 0 0 0 1 +| s-only | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 3 0 - 1 4 0 0 0 0 1 ++---------+----------+ +---------+----------+ +---------+----------+ + +- +-- +--- BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 3 0 ------------------- 19 10 0 0 0 0 1 +Table 1: table T Ta Tab Tabl BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 4 : 1 10 0 0 0 0 1 +Endpoints compliant endpoints E En End Endp BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 3 4 []'' 4 9 0 0 0 0 1 +attribute in attribute a at att attr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 4 .'' 3 9 0 0 0 0 1 +not present, not n no not not BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 4 ,, 2 9 0 0 0 0 1 +offerer will offerer o of off offe BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 4 no 0 10 0 0 0 0 1 +floor control floor f fl flo floo BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 4 . 1 3 0 0 0 0 1 +The SDP the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 7 /'' 3 10 0 0 0 0 1 +defined in defined d de def defi BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 7 . 1 3 0 0 0 0 1 +The following the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 7 '': 3 10 0 0 0 0 1 +a=floorctrl:c-only s-only a=floorctrl:c-only a a= a=f a=fl BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 8 :-- 3 10 0 0 0 0 1 +5.2. SDP 5.2. 5 5. 5.2 5.2. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 3 9 ..'' 4 10 0 0 0 0 1 +This section this T Th Thi This BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 9 ''-. 4 9 0 0 0 0 1 +attribute is attribute a at att attr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 9 no 0 10 0 0 0 0 1 +ID value id I ID ID ID BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 0 1 0 0 0 0 0 0 3 9 , 1 8 0 0 0 0 1 +representation. representation. representation. r re rep repr BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 3 9 . 1 2 0 0 0 0 1 +Camarillo, et camarillo, C Ca Cam Cama BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 3 11 ,. 2 8 0 0 1 0 0 +Expires June expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 11 , 1 10 0 0 0 0 0 +[Page 7] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 3 0 - 1 10 0 0 1 0 1 +BFCP BFCP bfcp B BF BFC BFCP BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 3 0 no 0 3 0 0 0 0 1 +December 2018 december D De Dec Dece BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 3 0 no 0 10 0 0 0 0 1 +Attribute Name: attribute A At Att Attr BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 0 : 1 10 0 0 0 0 1 +Attribute Value: attribute A At Att Attr BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 0 :- 2 10 0 0 0 0 1 +Usage Level: usage U Us Usa Usag BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 1 : 1 10 0 0 0 0 1 +Charset Dependent: charset C Ch Cha Char BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 3 1 : 1 10 0 0 0 0 1 +Mux Category: mux M Mu Mux Mux BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 3 2 : 1 10 0 0 0 0 1 +The Augmented the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 2 []: 3 10 0 0 0 0 1 +conference-id = conference-id c co con conf BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 3 3 -* 2 10 0 0 0 0 1 +DIGIT = digit D DI DIG DIGI BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 3 3 [] 2 10 0 0 0 0 1 +The maximum the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 3 4 no 0 10 0 0 0 0 1 +COMMON-HEADER format common-header C CO COM COMM BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 3 4 -[-.--]. 8 9 0 0 0 0 1 +The SDP the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 6 /'' 3 10 0 0 0 0 1 +defined in defined d de def defi BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 6 . 1 3 0 0 0 0 1 +5.3. SDP 5.3. 5 5. 5.3 5.3. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 4 7 ..'' 4 10 0 0 0 0 1 +This section this T Th Thi This BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 8 '-. 3 9 0 0 0 0 1 +attribute is attribute a at att attr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 8 no 0 10 0 0 0 0 1 +value to value v va val valu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 8 , 1 8 0 0 0 0 1 +representation. representation. representation. r re rep repr BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 8 . 1 2 0 0 0 0 1 +Camarillo, et camarillo, C Ca Cam Cama BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 4 10 ,. 2 8 0 0 1 0 0 +Expires June expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 10 , 1 10 0 0 0 0 0 +[Page 8] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 10 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 4 0 - 1 10 0 0 1 0 1 +BFCP BFCP bfcp B BF BFC BFCP BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 4 0 no 0 3 0 0 0 0 1 +December 2018 december D De Dec Dece BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 4 0 no 0 10 0 0 0 0 1 +Attribute Name: attribute A At Att Attr BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 0 : 1 10 0 0 0 0 1 +Attribute Value: attribute A At Att Attr BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 0 :- 2 10 0 0 0 0 1 +Usage Level: usage U Us Usa Usag BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 1 : 1 10 0 0 0 0 1 +Charset Dependent: charset C Ch Cha Char BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 4 1 : 1 10 0 0 0 0 1 +Mux Category: mux M Mu Mux Mux BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 4 2 : 1 10 0 0 0 0 1 +The Augmented the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 2 []: 3 10 0 0 0 0 1 +user-id = user-id u us use user BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 3 -* 2 10 0 0 0 0 1 +DIGIT = digit D DI DIG DIGI BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 4 3 [] 2 10 0 0 0 0 1 +The maximum the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 4 no 0 10 0 0 0 0 1 +COMMON-HEADER format common-header C CO COM COMM BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 4 4 -[-.--]. 8 9 0 0 0 0 1 +The SDP the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 6 /'' 3 10 0 0 0 0 1 +defined in defined d de def defi BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 6 . 1 3 0 0 0 0 1 +5.4. SDP 5.4. 5 5. 5.4 5.4. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 4 7 ..'' 4 10 0 0 0 0 1 +This section this T Th Thi This BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 8 ''-. 4 10 0 0 0 0 1 +attribute conveys attribute a at att attr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 8 , 1 9 0 0 0 0 1 +representation, and representation, r re rep repr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 8 ,- 2 9 0 0 0 0 1 +controlled media controlled c co con cont BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 8 . 1 3 0 0 0 0 1 +Camarillo, et camarillo, C Ca Cam Cama BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 4 10 ,. 2 8 0 0 1 0 0 +Expires June expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 10 , 1 10 0 0 0 0 0 +[Page 9] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 10 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 4 0 - 1 10 0 0 1 0 1 +BFCP BFCP bfcp B BF BFC BFCP BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 4 0 no 0 3 0 0 0 0 1 +December 2018 december D De Dec Dece BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 4 0 no 0 10 0 0 0 0 1 +Attribute Name: attribute A At Att Attr BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 0 : 1 10 0 0 0 0 1 +Attribute Value: attribute A At Att Attr BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 0 :- 2 10 0 0 0 0 1 +Usage Level: usage U Us Usa Usag BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 0 : 1 10 0 0 0 0 1 +Charset Dependent: charset C Ch Cha Char BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 4 0 : 1 10 0 0 0 0 1 +Mux Category: mux M Mu Mux Mux BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 4 1 : 1 10 0 0 0 0 1 +The Augmented the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 1 []: 3 10 0 0 0 0 1 +floor-id = floor-id f fl flo floo BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 1 -*":"*() 8 10 0 0 0 0 1 +DIGIT = digit D DI DIG DIGI BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 4 2 [] 2 10 0 0 0 0 1 +token = token t to tok toke BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 2 [] 2 10 0 0 0 0 1 +The maximum the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 3 no 0 10 0 0 0 0 1 +FLOOR-ID format floor-id F FL FLO FLOO BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 4 3 -[-.--]. 8 8 0 0 0 0 1 +The floor the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 4 no 0 10 0 0 0 0 1 +ID to id I ID ID ID BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 0 1 0 0 0 0 0 0 4 4 . 1 9 0 0 0 0 1 +with an with w wi wit with BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 4 ''[]. 5 8 0 0 0 0 1 +The SDP the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 5 /'' 3 10 0 0 0 0 1 +defined in defined d de def defi BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 5 . 1 3 0 0 0 0 1 +Note: In note: N No Not Note BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 6 :[]'-'. 7 10 0 0 0 0 1 +Although the although A Al Alt Alth BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 6 -, 2 10 0 0 0 0 1 +vendors and vendors v ve ven vend BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 6 no 0 9 0 0 0 0 1 +as a as a as as as BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 6 ., 2 9 0 0 0 0 1 +interpreting 'm-stream' interpreting i in int inte BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 6 '-'''. 6 9 0 0 0 0 1 +5.5. SDP 5.5. 5 5. 5.5 5.5. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 4 9 ..'' 4 10 0 0 0 0 1 +This section this T Th Thi This BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 9 ''-. 4 10 0 0 0 0 1 +attribute is attribute a at att attr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 9 , 1 9 0 0 0 0 1 +integer representation. integer i in int inte BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 9 . 1 3 0 0 0 0 1 +The Augmented the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 10 []: 3 10 0 0 0 0 1 +Camarillo, et camarillo, C Ca Cam Cama BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 4 11 ,. 2 8 0 0 1 0 0 +Expires June expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 11 , 1 10 0 0 0 0 0 +[Page 10] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 4 0 - 1 10 0 0 1 0 1 +BFCP BFCP bfcp B BF BFC BFCP BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 4 0 no 0 3 0 0 0 0 1 +December 2018 december D De Dec Dece BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 4 0 no 0 10 0 0 0 0 1 +Attribute Name: attribute A At Att Attr BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 0 : 1 10 0 0 0 0 1 +Attribute Value: attribute A At Att Attr BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 0 :- 2 10 0 0 0 0 1 +Usage Level: usage U Us Usa Usag BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 0 : 1 10 0 0 0 0 1 +Charset Dependent: charset C Ch Cha Char BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 4 0 : 1 10 0 0 0 0 1 +Mux Category: mux M Mu Mux Mux BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 4 0 : 1 10 0 0 0 0 1 +The Augmented the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 1 []: 3 10 0 0 0 0 1 +bfcp-version = bfcp-version b bf bfc bfcp BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 1 -*() 4 10 0 0 0 0 1 +version version version v ve ver vers BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 1 no 0 2 0 0 0 0 1 += 1*DIGIT = = = = = BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 4 1 * 1 2 0 0 0 0 1 +DIGIT = digit D DI DIG DIGI BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 4 1 [] 2 10 0 0 0 0 1 +The maximum the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 4 2 no 0 10 0 0 0 0 1 +COMMON-HEADER format common-header C CO COM COMM BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 4 2 -[-.--]. 8 9 0 0 0 0 1 +An endpoint an A An An An BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 4 2 ''() 4 10 0 0 0 0 1 +BFCP supported bfcp B BF BFC BFCP BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 4 2 ,. 2 9 0 0 0 0 1 +version, the version, v ve ver vers BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 2 , 1 10 0 0 0 0 1 +"Version" field "version" " "V "Ve "Ver BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 2 ""- 3 9 0 0 0 0 1 +[I-D.ietf-bfcpbis-rfc4582bis]. The [i-d.ietf-bfcpbis-rfc4582bis]. [ [I [I- [I-D BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 4 2 [-.--]. 7 10 0 0 0 0 1 +be used be b be be be BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 2 -/. 3 8 0 0 0 0 1 +Endpoints compliant endpoints E En End Endp BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 4 5 [] 2 9 0 0 0 0 1 +'bfcpver' attribute 'bfcpver' ' 'b 'bf 'bfc BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 4 5 ''., 4 9 0 0 0 0 1 +present, MUST present, p pr pre pres BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 5 , 1 9 0 0 0 0 1 +field in field f fi fie fiel BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 4 5 [-.--]. 7 9 0 0 0 0 1 +present, endpoints present, p pr pre pres BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 5 , 1 9 0 0 0 0 1 +[I-D.ietf-bfcpbis-rfc4582bis]: when [i-d.ietf-bfcpbis-rfc4582bis]: [ [I [I- [I-D BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 4 5 [-.--]: 7 9 0 0 0 0 1 +the default the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 5 "", 3 10 0 0 0 0 1 +transport the transport t tr tra tran BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 5 "". 3 9 0 0 0 0 1 +from the from f fr fro from BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 5 ''()'' 6 9 0 0 0 0 1 +section associated section s se sec sect BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 4 5 . 1 5 0 0 0 0 1 +The SDP the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 9 /'' 3 10 0 0 0 0 1 +defined in defined d de def defi BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 9 . 1 3 0 0 0 0 1 +6. Multiplexing 6. 6 6. 6. 6. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 9 . 1 10 0 0 0 0 1 +[I-D.ietf-mmusic-sdp-bundle-negotiation] defines [i-d.ietf-mmusic-sdp-bundle-negotiation] [ [I [I- [I-D BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 10 [-.----] 8 10 0 0 0 0 1 +multiple media multiple m mu mul mult BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 10 . 1 9 0 0 0 0 1 +not define not n no not not BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 10 no 0 9 0 0 0 0 1 +streams. Therefore, streams. s st str stre BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 10 ., 2 9 0 0 0 0 1 +Camarillo, et camarillo, C Ca Cam Cama BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 5 11 ,. 2 8 0 0 1 0 0 +Expires June expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 11 , 1 10 0 0 0 0 0 +[Page 11] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 5 0 - 1 10 0 0 1 0 1 +BFCP BFCP bfcp B BF BFC BFCP BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 5 0 no 0 3 0 0 0 0 1 +December 2018 december D De Dec Dece BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 5 0 no 0 10 0 0 0 0 1 +BUNDLE group bundle B BU BUN BUND BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 0 0 1 0 0 0 0 0 5 0 [-.----]. 9 9 0 0 0 0 1 +BFCP-controlled media bfcp-controlled B BF BFC BFCP BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 5 0 - 1 10 0 0 0 0 1 +streams. streams. streams. s st str stre BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 0 . 1 1 0 0 0 0 1 +[I-D.ietf-mmusic-sdp-mux-attributes] defines [i-d.ietf-mmusic-sdp-mux-attributes] [ [I [I- [I-D BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 0 [-.----] 8 10 0 0 0 0 1 +the SDP the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 0 , 1 9 0 0 0 0 1 +'bfcpver' attribute. 'bfcpver' ' 'b 'bf 'bfc BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 0 ''. 3 9 0 0 0 0 1 +'bfcpver' attribute: 'bfcpver' ' 'b 'bf 'bfc BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 0 '': 3 3 0 0 0 0 1 ++---------+-------------------------------------+-------+-----------+ +---------+-------------------------------------+-------+-----------+ +---------+-------------------------------------+-------+-----------+ + +- +-- +--- BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 5 1 ---------------------------------------------------------------- 64 10 0 0 0 0 1 +| Name | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 1 no 0 1 0 0 0 0 1 +| Notes | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 1 no 0 1 0 0 0 0 1 +| Level | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 1 no 0 2 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 1 no 0 0 0 0 0 0 1 +| Category | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 1 no 0 1 0 0 0 0 1 ++---------+-------------------------------------+-------+-----------+ +---------+-------------------------------------+-------+-----------+ +---------+-------------------------------------+-------+-----------+ + +- +-- +--- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 5 1 ---------------------------------------------------------------- 64 10 0 0 0 0 1 +| bfcpver | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 1 no 0 5 0 0 0 0 1 +| M | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 1 no 0 0 0 0 0 0 1 +| TBD | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 1 no 0 0 0 0 0 0 1 +| separate | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 1 no 0 3 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 1 no 0 0 0 0 0 0 1 +| | | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 5 1 no 0 0 0 0 0 0 1 ++---------+-------------------------------------+-------+-----------+ +---------+-------------------------------------+-------+-----------+ +---------+-------------------------------------+-------+-----------+ + +- +-- +--- BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 5 1 ---------------------------------------------------------------- 64 10 0 0 0 0 1 +Table 2: table T Ta Tab Tabl BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 5 : 1 10 0 0 0 0 1 +7. BFCP 7. 7 7. 7. 7. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 5 . 1 10 0 0 0 0 1 +BFCP streams bfcp B BF BFC BFCP BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 5 5 . 1 9 0 0 0 0 1 +Endpoints exchanging endpoints E En End Endp BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 5 5 no 0 10 0 0 0 0 1 +towards the towards t to tow towa BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 5 no 0 10 0 0 0 0 1 +the SDP the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 5 ''''. 5 9 0 0 0 0 1 +complicated and complicated c co com comp BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 5 . 1 8 0 0 0 0 1 +Note: When note: N No Not Note BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 7 :() 3 9 0 0 0 0 1 +[RFC8445], TCP/DTLS/BFCP, [rfc8445], [ [R [RF [RFC BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 7 [],//,//,- 10 9 0 0 0 0 1 +procedures for procedures p pr pro proc BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 7 / 1 10 0 0 0 0 1 +apply. TCP/TLS/BFCP apply. a ap app appl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 7 ./// 4 9 0 0 0 0 1 +is described is i is is is BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 7 . 1 3 0 0 0 0 1 +7.1. TCP 7.1. 7 7. 7.1 7.1. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 8 .. 2 10 0 0 0 0 1 +The management the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 8 no 0 10 0 0 0 0 1 +is performed is i is is is BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 8 '''' 4 9 0 0 0 0 1 +[RFC4145]. The [rfc4145]. [ [R [RF [RFC BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 8 [].'' 5 9 0 0 0 0 1 +initiates the initiates i in ini init BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 8 .'' 3 10 0 0 0 0 1 +connection re-establishment. connection c co con conn BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 8 -. 2 4 0 0 0 0 1 +The BFCP the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 9 [-.--] 6 9 0 0 0 0 1 +number of number n nu num numb BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 9 no 0 10 0 0 0 0 1 +client and client c cl cli clie BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 9 -. 2 9 0 0 0 0 1 +However, that however, H Ho How Howe BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 9 ,- 2 9 0 0 0 0 1 +process because process p pr pro proc BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 9 no 0 9 0 0 0 0 1 +established in established e es est esta BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 9 ./ 2 9 0 0 0 0 1 +mechanism follow mechanism m me mec mech BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 9 . 1 5 0 0 0 0 1 +Camarillo, et camarillo, C Ca Cam Cama BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 5 11 ,. 2 8 0 0 1 0 0 +Expires June expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 11 , 1 10 0 0 0 0 0 +[Page 12] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 5 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 5 0 - 1 10 0 0 1 0 1 +BFCP BFCP bfcp B BF BFC BFCP BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 5 0 no 0 3 0 0 0 0 1 +December 2018 december D De Dec Dece BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 5 0 no 0 10 0 0 0 0 1 +When the when W Wh Whe When BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 0 - 1 8 0 0 0 0 1 +following the following f fo fol foll BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 0 [-.--], 7 9 0 0 0 0 1 +control client control c co con cont BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 0 no 0 10 0 0 0 0 1 +order to order o or ord orde BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 0 -. 2 9 0 0 0 0 1 +deliver a deliver d de del deli BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 0 , 1 9 0 0 0 0 1 +send the send s se sen send BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 0 (..,) 5 9 0 0 0 0 1 +send an send s se sen send BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 0 -. 2 8 0 0 0 0 1 +Endpoints that endpoints E En End Endp BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 5 2 / 1 9 0 0 0 0 1 +connections MUST connections c co con conn BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 5 2 ''''. 5 10 0 0 0 0 1 +8. TLS/DTLS 8. 8 8. 8. 8. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 5 3 ./ 2 10 0 0 0 0 1 +When DTLS when W Wh Whe When BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 3 , 1 10 0 0 0 0 1 +Section 5 section S Se Sec Sect BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 5 3 [-.---]. 8 9 0 0 0 0 1 +When TLS when W Wh Whe When BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 4 , 1 8 0 0 0 0 1 +established, the established, e es est esta BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 4 ,. 2 9 0 0 0 0 1 +connection is connection c co con conn BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 4 ,[] 3 10 0 0 0 0 1 +re-establishing the re-establishing r re re- re-e BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 4 -. 2 9 0 0 0 0 1 +negotiated, subsequent negotiated, n ne neg nego BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 4 , 1 9 0 0 0 0 1 +previously negotiated previously p pr pre prev BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 4 . 1 4 0 0 0 0 1 +Note: For note: N No Not Note BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 5 :, 2 10 0 0 0 0 1 +[RFC4583] to [rfc4583] [ [R [RF [RFC BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 5 [] 2 9 0 0 0 0 1 +order to order o or ord orde BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 5 . 1 6 0 0 0 0 1 +9. ICE 9. 9 9. 9. 9. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 6 . 1 10 0 0 0 0 1 +Generic SDP generic G Ge Gen Gene BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 6 / 1 9 0 0 0 0 1 +Establishment (ICE) establishment E Es Est Esta BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 6 ()[-.----]. 11 10 0 0 0 0 1 +When BFCP when W Wh Whe When BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 7 [] 2 10 0 0 0 0 1 +procedures for procedures p pr pro proc BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 7 //. 3 5 0 0 0 0 1 +When BFCP when W Wh Whe When BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 8 [] 2 10 0 0 0 0 1 +procedures for procedures p pr pro proc BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 8 //. 3 5 0 0 0 0 1 +Based on based B Ba Bas Base BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 8 [-.---], 8 9 0 0 0 0 1 +endpoints treat endpoints e en end endp BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 8 no 0 10 0 0 0 0 1 +on top on o on on on BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 8 . 1 9 0 0 0 0 1 +Thus, there thus, T Th Thu Thus BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 8 , 1 9 0 0 0 0 1 +even if even e ev eve even BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 8 , 1 9 0 0 0 0 1 +is shifted is i is is is BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 8 ( 1 9 0 0 0 0 1 +to TCP to t to to to BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 8 ). 2 9 0 0 0 0 1 +added, they added, a ad add adde BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 8 ,. 2 8 0 0 0 0 1 +Camarillo, et camarillo, C Ca Cam Cama BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 6 11 ,. 2 8 0 0 1 0 0 +Expires June expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 11 , 1 10 0 0 0 0 0 +[Page 13] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 6 0 - 1 10 0 0 1 0 1 +BFCP BFCP bfcp B BF BFC BFCP BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 6 0 no 0 3 0 0 0 0 1 +December 2018 december D De Dec Dece BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 6 0 no 0 10 0 0 0 0 1 +In order in I In In In BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 6 0 no 0 9 0 0 0 0 1 +endpoints, all endpoints, e en end endp BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 0 ,-- 3 10 0 0 0 0 1 +support for support s su sup supp BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 6 0 //. 3 3 0 0 0 0 1 +When an when W Wh Whe When BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 0 no 0 9 0 0 0 0 1 +BFCP stream, bfcp B BF BFC BFCP BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 6 0 , 1 10 0 0 0 0 1 +candidate SHOULD candidate c ca can cand BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 0 . 1 9 0 0 0 0 1 +transport is transport t tr tra tran BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 0 ,'' 3 10 0 0 0 0 1 +value MUST value v va val valu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 0 '//'. 5 9 0 0 0 0 1 +default candidate, default d de def defa BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 0 ,'''//'. 8 10 0 0 0 0 1 +Note: Usage note: N No Not Note BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 3 :// 3 10 0 0 0 0 1 +TCP/DTLS/BFCP is tcp/dtls/bfcp T TC TCP TCP/ BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 6 3 //. 3 9 0 0 0 0 1 +10. SDP 10. 1 10 10. 10. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 3 ./ 2 10 0 0 0 0 1 +This section this T Th Thi This BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 3 /[] 3 10 0 0 0 0 1 +negotiating and negotiating n ne neg nego BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 3 . 1 10 0 0 0 0 1 +DTLS are dtls D DT DTL DTLS BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 6 3 [-.---]. 8 10 0 0 0 0 1 +for TLS for f fo for for BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 3 []. 3 5 0 0 0 0 1 +This section this T Th Thi This BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 5 -. 2 9 0 0 0 0 1 +explicitly stated explicitly e ex exp expl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 5 ,'' 3 10 0 0 0 0 1 +describing a describing d de des desc BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 5 . 1 9 0 0 0 0 1 +'m' sections 'm' ' 'm 'm' 'm' BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 5 '', 3 9 0 0 0 0 1 +independently to independently i in ind inde BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 5 . 1 4 0 0 0 0 1 +Within this within W Wi Wit With BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 6 ,'', 4 9 0 0 0 0 1 +within an within w wi wit with BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 6 (.. 3 10 0 0 0 0 1 +Protocol (SIP) protocol P Pr Pro Prot BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 6 ()[]) 5 9 0 0 0 0 1 +indicates that indicates i in ind indi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 6 no 0 9 0 0 0 0 1 +stream. stream. stream. s st str stre BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 6 . 1 1 0 0 0 0 1 +If the if I If If If BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 7 '''''//','//' 13 10 0 0 0 0 1 +'UDP/TLS/BFCP', the 'udp/tls/bfcp', ' 'U 'UD 'UDP BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 6 7 '//', 5 8 0 0 0 0 1 +procedures defined procedures p pr pro proc BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 7 []. 3 4 0 0 0 0 1 +If the if I If If If BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 8 '''/','//','// 14 10 0 0 0 0 1 +TCP' or tcp' T TC TCP TCP' BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 6 8 ''//','' 8 9 0 0 0 0 1 +attribute according attribute a at att attr BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 8 []. 3 7 0 0 0 0 1 +If the if I If If If BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 10 '''/','//' 10 9 0 0 0 0 1 +'TCP/DTLS/BFCP', the 'tcp/dtls/bfcp', ' 'T 'TC 'TCP BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 6 10 '//','' 7 10 0 0 0 0 1 +attribute according attribute a at att attr BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 10 []. 3 7 0 0 0 0 1 +Note: The note: N No Not Note BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 11 :-[] 4 10 0 0 0 0 1 +defined for defined d de def defi BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 6 11 . 1 4 0 0 0 0 1 +Camarillo, et camarillo, C Ca Cam Cama BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 6 11 ,. 2 8 0 0 1 0 0 +Expires June expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 6 11 , 1 10 0 0 0 0 0 +[Page 14] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 6 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 6 0 - 1 10 0 0 1 0 1 +BFCP BFCP bfcp B BF BFC BFCP BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 6 0 no 0 3 0 0 0 0 1 +December 2018 december D De Dec Dece BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 6 0 no 0 10 0 0 0 0 1 +10.1. Generating 10.1. 1 10 10. 10.1 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 6 0 .. 2 10 0 0 0 0 1 +When the when W Wh Whe When BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 0 , 1 10 0 0 0 0 1 +an SDP an a an an an BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 7 0 ''(.)'' 7 9 0 0 0 0 1 +attribute (Section attribute a at att attr BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 0 (.)''. 6 6 0 0 0 0 1 +In addition, in I In In In BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 7 1 ,'' 3 9 0 0 0 0 1 +with 's-only' with w wi wit with BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 1 '-''-',: 8 10 0 0 0 0 1 +o MUST o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 7 2 ''(.)'' 7 10 0 0 0 0 1 +section; and section; s se sec sect BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 2 ; 1 1 0 0 0 0 1 +o MUST o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 7 2 ''(.)'' 7 10 0 0 0 0 1 +section; and section; s se sec sect BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 2 ; 1 1 0 0 0 0 1 +o MUST o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 7 3 ''(.)'' 7 10 0 0 0 0 1 +section; and section; s se sec sect BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 3 ; 1 1 0 0 0 0 1 +o MUST o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 7 4 ''([])'' 8 10 0 0 0 0 1 +section of section s se sec sect BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 4 -. 2 7 0 0 0 0 1 +Note: If note: N No Not Note BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 4 :'' 3 9 0 0 0 0 1 +'c-s' attribute 'c-s' ' 'c 'c- 'c-s BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 7 4 '-','-''-' 10 10 0 0 0 0 1 +value in value v va val valu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 4 , 1 9 0 0 0 0 1 +if it if i if if if BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 4 (.) 3 9 0 0 0 0 1 +floor control floor f fl flo floo BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 4 . 1 3 0 0 0 0 1 +10.2. Generating 10.2. 1 10 10. 10.2 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 6 .. 2 10 0 0 0 0 1 +When the when W Wh Whe When BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 6 '' 2 9 0 0 0 0 1 +describing a describing d de des desc BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 6 , 1 10 0 0 0 0 1 +one or one o on one one BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 6 no 0 8 0 0 0 0 1 +(Section 5.5). (section ( (S (Se (Sec BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 7 6 (.). 4 9 0 0 0 0 1 +versions, it versions, v ve ver vers BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 6 ,''., 5 9 0 0 0 0 1 +answerer accepts answerer a an ans answ BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 7 6 '',: 4 5 0 0 0 0 1 +o MUST o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 7 9 '', 3 10 0 0 0 0 1 +identical 'm' identical i id ide iden BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 9 ''[]; 5 7 0 0 0 0 1 +o MUST o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 7 9 ''''. 5 9 0 0 0 0 1 +versions indicated versions v ve ver vers BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 9 no 0 9 0 0 0 0 1 +the versions the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 9 ; 1 10 0 0 0 0 1 +and and and a an and and BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 9 no 0 0 0 0 0 0 1 +o MUST, o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 7 10 ,'', 4 10 0 0 0 0 1 +a 'floorctrl' a a a a a BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 1 0 1 0 0 0 0 0 7 10 ''''. 5 6 0 0 0 0 1 +Camarillo, et camarillo, C Ca Cam Cama BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 7 11 ,. 2 8 0 0 1 0 0 +Expires June expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 11 , 1 10 0 0 0 0 0 +[Page 15] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 7 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 7 0 - 1 10 0 0 1 0 1 +BFCP BFCP bfcp B BF BFC BFCP BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 7 0 no 0 3 0 0 0 0 1 +December 2018 december D De Dec Dece BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 7 0 no 0 10 0 0 0 0 1 +In addition, in I In In In BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 7 0 ,'' 3 10 0 0 0 0 1 +with an with w wi wit with BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 0 '-',: 5 9 0 0 0 0 1 +o MUST o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 7 0 ''''; 5 10 0 0 0 0 1 +o MUST o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 7 1 ''''; 5 10 0 0 0 0 1 +o MUST o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 7 1 ''''; 5 10 0 0 0 0 1 +o MUST o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 7 2 '''' 4 10 0 0 0 0 1 +BFCP-controlled media bfcp-controlled B BF BFC BFCP BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 7 2 -. 2 4 0 0 0 0 1 +Note: An note: N No Not Note BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 2 :[] 3 8 0 0 0 0 1 +'floorctrl' and 'floorctrl' ' 'f 'fl 'flo BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 7 2 '''', 5 10 0 0 0 0 1 +default values default d de def defa BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 2 . 1 3 0 0 0 0 1 +Once the once O On Onc Once BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 3 ,: 2 10 0 0 0 0 1 +o MUST, o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 7 3 ,, 2 9 0 0 0 0 1 +connection associated connection c co con conn BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 3 '' 2 10 0 0 0 0 1 +(or re-established), (or ( (o (or (or BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 7 3 (-), 4 9 0 0 0 0 1 +connection; and connection; c co con conn BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 3 ; 1 2 0 0 0 0 1 +o MUST, o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 7 5 ,,/ 3 10 0 0 0 0 1 +connection associated connection c co con conn BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 5 '' 2 9 0 0 0 0 1 +(or re-established), (or ( (o (or (or BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 7 5 (-),/ 5 9 0 0 0 0 1 +connection (by connection c co con conn BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 5 (). 3 7 0 0 0 0 1 +If the if I If If If BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 6 '', 3 10 0 0 0 0 1 +assign a assign a as ass assi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 6 '''' 4 9 0 0 0 0 1 +section in section s se sec sect BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 6 ., 2 9 0 0 0 0 1 +a TCP a a a a a BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 1 0 1 0 0 0 0 0 7 6 /'' 3 9 0 0 0 0 1 +section. section. section. s se sec sect BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 6 . 1 1 0 0 0 0 1 +10.3. Offerer 10.3. 1 10 10. 10.3 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 7 8 .. 2 10 0 0 0 0 1 +When the when W Wh Whe When BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 7 8 '' 2 10 0 0 0 0 1 +a non-zero a a a a a BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 1 0 1 0 0 0 0 0 7 8 -,,: 4 8 0 0 0 0 1 +o MUST, o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 7 9 ,, 2 9 0 0 0 0 1 +connection associated connection c co con conn BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 9 '' 2 10 0 0 0 0 1 +(or re-established), (or ( (o (or (or BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 7 9 (-), 4 9 0 0 0 0 1 +connection; and connection; c co con conn BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 7 9 ; 1 2 0 0 0 0 1 +o MUST, o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 8 10 ,,/ 3 10 0 0 0 0 1 +connection associated connection c co con conn BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 10 '' 2 9 0 0 0 0 1 +(or re-established), (or ( (o (or (or BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 10 (-),/ 5 9 0 0 0 0 1 +connection (by connection c co con conn BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 10 (). 3 7 0 0 0 0 1 +Camarillo, et camarillo, C Ca Cam Cama BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 8 11 ,. 2 8 0 0 1 0 0 +Expires June expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 11 , 1 10 0 0 0 0 0 +[Page 16] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 8 0 - 1 10 0 0 1 0 1 +BFCP BFCP bfcp B BF BFC BFCP BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 0 no 0 3 0 0 0 0 1 +December 2018 december D De Dec Dece BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 8 0 no 0 10 0 0 0 0 1 +Note: An note: N No Not Note BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 0 :[] 3 8 0 0 0 0 1 +'floorctrl' and 'floorctrl' ' 'f 'fl 'flo BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 0 '''', 5 10 0 0 0 0 1 +default values default d de def defa BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 0 . 1 3 0 0 0 0 1 +If the if I If If If BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 1 '', 3 9 0 0 0 0 1 +offerer for offerer o of off offe BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 1 (.., 4 9 0 0 0 0 1 +the answerer the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 1 no 0 10 0 0 0 0 1 +the offerer), the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 1 ), 2 9 0 0 0 0 1 +TLS/DTLS connection tls/dtls T TL TLS TLS/ BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 1 /''. 4 7 0 0 0 0 1 +10.4. Modifying 10.4. 1 10 10. 10.4 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 4 .. 2 10 0 0 0 0 1 +When an when W Wh Whe When BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 4 , 1 9 0 0 0 0 1 +previously established previously p pr pre prev BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 4 , 1 10 0 0 0 0 1 +Section 10.1, section S Se Sec Sect BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 4 .,: 3 6 0 0 0 0 1 +o If o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 8 5 , 1 9 0 0 0 0 1 +does not does d do doe does BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 5 -, 2 9 0 0 0 0 1 +offerer MUST offerer o of off offe BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 5 '' 2 10 0 0 0 0 1 +"existing", in "existing", " "e "ex "exi BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 5 "",''; 6 5 0 0 0 0 1 +o If o o o o o BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 1 0 0 0 0 0 0 0 8 7 no 0 9 0 0 0 0 1 +stream, it stream, s st str stre BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 7 ,'' 3 8 0 0 0 0 1 +associated with associated a as ass asso BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 7 , 1 10 0 0 0 0 1 +[RFC3264]. [RFC3264]. [rfc3264]. [ [R [RF [RFC BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 7 []. 3 1 0 0 0 0 1 +11. Examples 11. 1 11 11. 11. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 9 . 1 10 0 0 0 0 1 +For the for F Fo For For BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 9 , 1 8 0 0 0 0 1 +description is description d de des desc BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 9 ,'' 3 10 0 0 0 0 1 +and their and a an and and BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 9 ''. 3 5 0 0 0 0 1 +The following the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 10 no 0 10 0 0 0 0 1 +to a to t to to to BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 10 . 1 1 0 0 0 0 1 +Camarillo, et camarillo, C Ca Cam Cama BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 8 11 ,. 2 8 0 0 1 0 0 +Expires June expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 11 , 1 10 0 0 0 0 0 +[Page 17] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 8 0 - 1 10 0 0 1 0 1 +BFCP BFCP bfcp B BF BFC BFCP BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 0 no 0 3 0 0 0 0 1 +December 2018 december D De Dec Dece BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 8 0 no 0 10 0 0 0 0 1 +m=application 50000 m=application m m= m=a m=ap BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 0 //* 3 6 0 0 0 0 1 +a=setup:actpass a=setup:actpass a=setup:actpass a a= a=s a=se BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 0 : 1 3 0 0 0 0 1 +a=connection:new a=connection:new a=connection:new a a= a=c a=co BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 0 : 1 3 0 0 0 0 1 +a=fingerprint:sha-256 \ a=fingerprint:sha-256 a a= a=f a=fi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 0 :- 2 4 0 0 0 0 1 +19:E2:1C:3B:4B:9F:81:E6:B8:5C:F4:A5:A8:D8:73:04: \ 19:e2:1c:3b:4b:9f:81:e6:b8:5c:f4:a5:a8:d8:73:04: 1 19 19: 19:E BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 0 :::::::::::::::: 16 10 0 0 0 0 1 +BB:05:2F:70:9F:04:A9:0E:05:E9:26:33:E8:70:88:A2 BB:05:2F:70:9F:04:A9:0E:05:E9:26:33:E8:70:88:A2 bb:05:2f:70:9f:04:a9:0e:05:e9:26:33:e8:70:88:a2 B BB BB: BB:0 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 0 ::::::::::::::: 15 9 0 0 0 0 1 +a=floorctrl:c-only s-only a=floorctrl:c-only a a= a=f a=fl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 0 :-- 3 5 0 0 0 0 1 +a=confid:4321 a=confid:4321 a=confid:4321 a a= a=c a=co BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 0 : 1 2 0 0 0 0 1 +a=userid:1234 a=userid:1234 a=userid:1234 a a= a=u a=us BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS CONTAINSDIGITS 0 0 0 0 1 0 0 0 8 0 : 1 2 0 0 0 0 1 +a=floorid:1 mstrm:10 a=floorid:1 a a= a=f a=fl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 0 :: 2 4 0 0 0 0 1 +a=floorid:2 mstrm:11 a=floorid:2 a a= a=f a=fl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 0 :: 2 4 0 0 0 0 1 +a=bfcpver:1 2 a=bfcpver:1 a a= a=b a=bf BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 0 : 1 2 0 0 0 0 1 +m=audio 50002 m=audio m m= m=a m=au BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 0 / 1 4 0 0 0 0 1 +a=label:10 a=label:10 a=label:10 a a= a=l a=la BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 0 : 1 2 0 0 0 0 1 +m=video 50004 m=video m m= m=v m=vi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 0 / 1 4 0 0 0 0 1 +a=label:11 a=label:11 a=label:11 a a= a=l a=la BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 0 : 1 2 0 0 0 0 1 +Note that note N No Not Note BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 4 , 1 10 0 0 0 0 1 +across lines across a ac acr acro BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 4 . 1 9 0 0 0 0 1 +character marks character c ch cha char BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 4 . 1 8 0 0 0 0 1 +backslash and backslash b ba bac back BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 4 no 0 9 0 0 0 0 1 +actual SDP actual a ac act actu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 4 . 1 2 0 0 0 0 1 +The following the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 6 . 1 10 0 0 0 0 1 +m=application 9 m=application m m= m=a m=ap BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 7 //* 3 6 0 0 0 0 1 +a=setup:active a=setup:active a=setup:active a a= a=s a=se BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 7 : 1 2 0 0 0 0 1 +a=connection:new a=connection:new a=connection:new a a= a=c a=co BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 7 : 1 3 0 0 0 0 1 +a=fingerprint:sha-256 \ a=fingerprint:sha-256 a a= a=f a=fi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 7 :- 2 4 0 0 0 0 1 +6B:8B:F0:65:5F:78:E2:51:3B:AC:6F:F3:3F:46:1B:35: \ 6b:8b:f0:65:5f:78:e2:51:3b:ac:6f:f3:3f:46:1b:35: 6 6B 6B: 6B:8 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 7 :::::::::::::::: 16 10 0 0 0 0 1 +DC:B8:5F:64:1A:24:C2:43:F0:A1:58:D0:A1:2C:19:08 DC:B8:5F:64:1A:24:C2:43:F0:A1:58:D0:A1:2C:19:08 dc:b8:5f:64:1a:24:c2:43:f0:a1:58:d0:a1:2c:19:08 D DC DC: DC:B BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 7 ::::::::::::::: 15 9 0 0 0 0 1 +a=floorctrl:c-only a=floorctrl:c-only a=floorctrl:c-only a a= a=f a=fl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 7 :- 2 3 0 0 0 0 1 +a=bfcpver:1 a=bfcpver:1 a=bfcpver:1 a a= a=b a=bf BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 7 : 1 2 0 0 0 0 1 +m=audio 55000 m=audio m m= m=a m=au BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 7 / 1 4 0 0 0 0 1 +m=video 55002 m=video m m= m=v m=vi BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 7 / 1 4 0 0 0 0 1 +A similar a A A A A BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 1 0 1 0 0 0 0 0 8 10 , 1 10 0 0 0 0 1 +where the where w wh whe wher BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 8 10 . 1 5 0 0 0 0 1 +Camarillo, et camarillo, C Ca Cam Cama BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 8 11 ,. 2 8 0 0 1 0 0 +Expires June expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 11 , 1 10 0 0 0 0 0 +[Page 18] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 8 0 - 1 10 0 0 1 0 1 +BFCP BFCP bfcp B BF BFC BFCP BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 8 0 no 0 3 0 0 0 0 1 +December 2018 december D De Dec Dece BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 8 0 no 0 10 0 0 0 0 1 +m=application 50000 m=application m m= m=a m=ap BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 0 //* 3 6 0 0 0 0 1 +a=setup:actpass a=setup:actpass a=setup:actpass a a= a=s a=se BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 0 : 1 3 0 0 0 0 1 +a=dtls-id:abc3dl a=dtls-id:abc3dl a=dtls-id:abc3dl a a= a=d a=dt BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 0 -: 2 3 0 0 0 0 1 +a=fingerprint:sha-256 \ a=fingerprint:sha-256 a a= a=f a=fi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 0 :- 2 4 0 0 0 0 1 +19:E2:1C:3B:4B:9F:81:E6:B8:5C:F4:A5:A8:D8:73:04: \ 19:e2:1c:3b:4b:9f:81:e6:b8:5c:f4:a5:a8:d8:73:04: 1 19 19: 19:E BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 0 :::::::::::::::: 16 10 0 0 0 0 1 +BB:05:2F:70:9F:04:A9:0E:05:E9:26:33:E8:70:88:A2 BB:05:2F:70:9F:04:A9:0E:05:E9:26:33:E8:70:88:A2 bb:05:2f:70:9f:04:a9:0e:05:e9:26:33:e8:70:88:a2 B BB BB: BB:0 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 0 ::::::::::::::: 15 9 0 0 0 0 1 +a=floorctrl:c-only s-only a=floorctrl:c-only a a= a=f a=fl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 0 :-- 3 5 0 0 0 0 1 +a=confid:4321 a=confid:4321 a=confid:4321 a a= a=c a=co BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 0 : 1 2 0 0 0 0 1 +a=userid:1234 a=userid:1234 a=userid:1234 a a= a=u a=us BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS CONTAINSDIGITS 0 0 0 0 1 0 0 0 8 0 : 1 2 0 0 0 0 1 +a=floorid:1 mstrm:10 a=floorid:1 a a= a=f a=fl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 0 :: 2 4 0 0 0 0 1 +a=floorid:2 mstrm:11 a=floorid:2 a a= a=f a=fl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 0 :: 2 4 0 0 0 0 1 +a=bfcpver:1 2 a=bfcpver:1 a a= a=b a=bf BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 0 : 1 2 0 0 0 0 1 +m=audio 50002 m=audio m m= m=a m=au BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 0 / 1 4 0 0 0 0 1 +a=label:10 a=label:10 a=label:10 a a= a=l a=la BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 0 : 1 2 0 0 0 0 1 +m=video 50004 m=video m m= m=v m=vi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 0 / 1 4 0 0 0 0 1 +a=label:11 a=label:11 a=label:11 a a= a=l a=la BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 0 : 1 2 0 0 0 0 1 +The following the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 8 3 . 1 10 0 0 0 0 1 +m=application 55000 m=application m m= m=a m=ap BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 3 //* 3 6 0 0 0 0 1 +a=setup:active a=setup:active a=setup:active a a= a=s a=se BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 3 : 1 2 0 0 0 0 1 +a=dtls-id:abc3dl a=dtls-id:abc3dl a=dtls-id:abc3dl a a= a=d a=dt BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 3 -: 2 3 0 0 0 0 1 +a=fingerprint:sha-256 \ a=fingerprint:sha-256 a a= a=f a=fi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 3 :- 2 4 0 0 0 0 1 +6B:8B:F0:65:5F:78:E2:51:3B:AC:6F:F3:3F:46:1B:35: \ 6b:8b:f0:65:5f:78:e2:51:3b:ac:6f:f3:3f:46:1b:35: 6 6B 6B: 6B:8 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 3 :::::::::::::::: 16 10 0 0 0 0 1 +DC:B8:5F:64:1A:24:C2:43:F0:A1:58:D0:A1:2C:19:08 DC:B8:5F:64:1A:24:C2:43:F0:A1:58:D0:A1:2C:19:08 dc:b8:5f:64:1a:24:c2:43:f0:a1:58:d0:a1:2c:19:08 D DC DC: DC:B BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 3 ::::::::::::::: 15 9 0 0 0 0 1 +a=floorctrl:s-only a=floorctrl:s-only a=floorctrl:s-only a a= a=f a=fl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 3 :- 2 3 0 0 0 0 1 +a=confid:4321 a=confid:4321 a=confid:4321 a a= a=c a=co BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 3 : 1 2 0 0 0 0 1 +a=userid:1234 a=userid:1234 a=userid:1234 a a= a=u a=us BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS CONTAINSDIGITS 0 0 0 0 1 0 0 0 8 3 : 1 2 0 0 0 0 1 +a=floorid:1 mstrm:10 a=floorid:1 a a= a=f a=fl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 3 :: 2 4 0 0 0 0 1 +a=floorid:2 mstrm:11 a=floorid:2 a a= a=f a=fl BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 3 :: 2 4 0 0 0 0 1 +a=bfcpver:2 a=bfcpver:2 a=bfcpver:2 a a= a=b a=bf BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 8 3 : 1 2 0 0 0 0 1 +m=audio 55002 m=audio m m= m=a m=au BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 3 / 1 4 0 0 0 0 1 +m=video 55004 m=video m m= m=v m=vi BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 8 3 / 1 4 0 0 0 0 1 +12. Security 12. 1 12 12. 12. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 6 . 1 10 0 0 0 0 1 +The BFCP the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 6 [-.--],[],/ 11 9 0 0 0 0 1 +answer [RFC3264] answer a an ans answ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 6 [] 2 9 0 0 0 0 1 +BFCP, SDP, bfcp, B BF BFC BFCP BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 6 ,,/,.,[] 8 9 0 0 0 0 1 +and [RFC8122] and a an and and BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 6 [] 2 10 0 0 0 0 1 +TCP and tcp T TC TCP TCP BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 6 /., 3 9 0 0 0 0 1 +when using when w wh whe when BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 6 ,/ 2 9 0 0 0 0 1 +defined in defined d de def defi BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 6 [-.---]. 8 8 0 0 0 0 1 +The usage the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 9 / 1 10 0 0 0 0 1 +will result will w wi wil will BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 9 9 . 1 9 0 0 0 0 1 +Operators will operators O Op Ope Oper BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 9 9 no 0 8 0 0 0 0 1 +confidentiality protection confidentiality c co con conf BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 9 . 1 9 0 0 0 0 1 +Camarillo, et camarillo, C Ca Cam Cama BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 9 11 ,. 2 8 0 0 1 0 0 +Expires June expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 11 , 1 10 0 0 0 0 0 +[Page 19] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 9 0 - 1 10 0 0 1 0 1 +BFCP BFCP bfcp B BF BFC BFCP BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 0 no 0 3 0 0 0 0 1 +December 2018 december D De Dec Dece BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 9 0 no 0 10 0 0 0 0 1 +The generic the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 0 no 0 9 0 0 0 0 1 +are defined are a ar are are BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 0 []. 3 9 0 0 0 0 1 +specification do specification s sp spe spec BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 0 no 0 8 0 0 0 0 1 +individual BFCP individual i in ind indi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 0 , 1 10 0 0 0 0 1 +streams will streams s st str stre BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 0 . 1 4 0 0 0 0 1 +13. IANA 13. 1 13 13. 13. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 1 . 1 10 0 0 0 0 1 +[Editorial note: [editorial [ [E [Ed [Edi BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 1 [:. 3 9 0 0 0 0 1 +register the register r re reg regi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 9 1 //,/// 6 10 0 0 0 0 1 +BFCP for bfcp B BF BFC BFCP BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 1 ''.. 4 8 0 0 0 0 1 +registers a registers r re reg regi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 1 "". 3 9 0 0 0 0 1 +from [RFC4582].] from f fr fro from BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 1 [].] 4 2 0 0 0 0 1 +13.1. Registration 13.1. 1 13 13. 13.1 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 3 ..'' 4 10 0 0 0 0 1 +The IANA the T Th The The BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 4 no 0 9 0 0 0 0 1 +'proto' field 'proto' ' 'p 'pr 'pro BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 4 ''() 4 10 0 0 0 0 1 +registry: registry: registry: r re reg regi BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 4 : 1 1 0 0 0 0 1 ++---------------+------------+ +---------------+------------+ +---------------+------------+ + +- +-- +--- BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 4 --------------------------- 27 10 0 0 0 0 1 +| Value | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 4 no 0 2 0 0 0 0 1 +| Reference | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 4 no 0 4 0 0 0 0 1 ++---------------+------------+ +---------------+------------+ +---------------+------------+ + +- +-- +--- BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 4 --------------------------- 27 10 0 0 0 0 1 +| TCP/BFCP | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 4 / 1 3 0 0 0 0 1 +| [RFC | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 4 [] 2 4 0 0 0 0 1 +| TCP/DTLS/BFCP | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 4 //[] 4 10 0 0 0 0 1 +| TCP/TLS/BFCP | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 4 //[] 4 9 0 0 0 0 1 +| UDP/BFCP | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 4 / 1 3 0 0 0 0 1 +| [RFC | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 4 [] 2 4 0 0 0 0 1 +| UDP/TLS/BFCP | | | | | BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 1 0 0 0 0 0 0 0 9 4 //[] 4 9 0 0 0 0 1 ++---------------+------------+ +---------------+------------+ +---------------+------------+ + +- +-- +--- BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 4 --------------------------- 27 10 0 0 0 0 1 +Table 3: table T Ta Tab Tabl BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 8 :'' 3 10 0 0 0 0 1 +13.2. Registration 13.2. 1 13 13. 13.2 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 8 ..'' 4 10 0 0 0 0 1 +This document this T Th Thi This BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 8 ,''. 4 10 0 0 0 0 1 +the attribute the t th the the BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 8 .. 2 6 0 0 0 0 1 +13.3. Registration 13.3. 1 13 13. 13.3 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 9 ..'' 4 10 0 0 0 0 1 +This document this T Th Thi This BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 9 ,''. 4 10 0 0 0 0 1 +attribute are attribute a at att attr BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 9 .. 2 5 0 0 0 0 1 +13.4. Registration 13.4. 1 13 13. 13.4 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 10 ..'' 4 10 0 0 0 0 1 +This document this T Th Thi This BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 10 ,''. 4 10 0 0 0 0 1 +attribute are attribute a at att attr BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 10 .. 2 5 0 0 0 0 1 +Camarillo, et camarillo, C Ca Cam Cama BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 9 11 ,. 2 8 0 0 1 0 0 +Expires June expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 11 , 1 10 0 0 0 0 0 +[Page 20] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 9 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 9 0 - 1 10 0 0 1 0 1 +BFCP BFCP bfcp B BF BFC BFCP BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 0 no 0 3 0 0 0 0 1 +December 2018 december D De Dec Dece BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 9 0 no 0 10 0 0 0 0 1 +13.5. Registration 13.5. 1 13 13. 13.5 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 0 ..'' 4 10 0 0 0 0 1 +This document this T Th Thi This BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 0 ,''. 4 10 0 0 0 0 1 +the attribute the t th the the BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 0 .. 2 6 0 0 0 0 1 +13.6. Registration 13.6. 1 13 13. 13.6 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 1 ..'' 4 10 0 0 0 0 1 +This document this T Th Thi This BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 1 ,''. 4 10 0 0 0 0 1 +the attribute the t th the the BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 1 .. 2 6 0 0 0 0 1 +14. Changes 14. 1 14 14. 14. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 2 . 1 10 0 0 0 0 1 +Following is following F Fo Fol Foll BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 2 no 0 10 0 0 0 0 1 +[RFC4583]. [RFC4583]. [rfc4583]. [ [R [RF [RFC BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 2 []. 3 1 0 0 0 0 1 +Main purpose main M Ma Mai Main BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 9 3 no 0 10 0 0 0 0 1 +support BFCP support s su sup supp BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 9 3 , 1 8 0 0 0 0 1 +[I-D.ietf-bfcpbis-rfc4582bis], resulting [i-d.ietf-bfcpbis-rfc4582bis], [ [I [I- [I-D BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 3 [-.--],: 8 9 0 0 0 0 1 +1. Fields 1. 1 1. 1. 1. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 9 4 .''(): 6 6 0 0 0 0 1 +The section the T Th The The BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 9 4 - 1 10 0 0 0 0 1 +of TCP of o of of of BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 9 4 . 1 9 0 0 0 0 1 +TCP/DTLS/BFCP, UDP/BFCP tcp/dtls/bfcp, T TC TCP TCP/ BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 9 4 //,///. 7 7 0 0 0 0 1 +2. Security 2. 2 2. 2. 2. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 5 .(): 4 6 0 0 0 0 1 +For the for F Fo For For BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 5 , 1 10 0 0 0 0 1 +requirements for requirements r re req requ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 5 / 1 7 0 0 0 0 1 +[I-D.ietf-mmusic-dtls-sdp]. [I-D.ietf-mmusic-dtls-sdp]. [i-d.ietf-mmusic-dtls-sdp]. [ [I [I- [I-D BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 5 [-.---]. 8 4 0 0 0 0 1 +3. Registration 3. 3 3. 3. 3. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 6 .''(.): 7 9 0 0 0 0 1 +Register the register R Re Reg Regi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 10 6 //,/ 4 10 0 0 0 0 1 +UDP/TLS/BFCP in udp/tls/bfcp U UD UDP UDP/ BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 6 //. 3 7 0 0 0 0 1 +4. BFCP 4. 4 4. 4. 4. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 8 .(.): 5 6 0 0 0 0 1 +A new a A A A A BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 1 0 1 0 0 0 0 0 10 8 ''- 3 10 0 0 0 0 1 +signal supported signal s si sig sign BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 8 . 1 5 0 0 0 0 1 +In addition in I In In In BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 10 9 no 0 9 0 0 0 0 1 +unreliable transport, unreliable u un unr unre BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 9 , 1 10 0 0 0 0 1 +floor control floor f fl flo floo BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 9 no 0 9 0 0 0 0 1 +been removed. been b be bee been BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 9 .- 2 9 0 0 0 0 1 +controlled streams controlled c co con cont BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 9 . 1 7 0 0 0 0 1 +Clarification and clarification C Cl Cla Clar BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 10 : 1 10 0 0 0 0 1 +1. Errata 1. 1 1. 1. 1. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 11 .:(): 5 10 0 0 0 0 1 +Camarillo, et camarillo, C Ca Cam Cama BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 10 11 ,. 2 8 0 0 1 0 0 +Expires June expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 11 , 1 10 0 0 0 0 0 +[Page 21] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 10 0 - 1 10 0 0 1 0 1 +BFCP BFCP bfcp B BF BFC BFCP BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 0 no 0 3 0 0 0 0 1 +December 2018 december D De Dec Dece BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 10 0 no 0 10 0 0 0 0 1 +Language clarification. language L La Lan Lang BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 0 .' 2 9 0 0 0 0 1 +"used in "used " "u "us "use BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 0 "''", 5 10 0 0 0 0 1 +media-level attribute. media-level m me med medi BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 0 -. 2 3 0 0 0 0 1 +2. Fix 2. 2 2. 2. 2. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 1 .(): 4 5 0 0 0 0 1 +Do not do D Do Do Do BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 1 '-','' 6 10 0 0 0 0 1 +as specified as a as as as BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 1 .'-' 4 9 0 0 0 0 1 +it is it i it it it BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 1 ,. 2 9 0 0 0 0 1 +3. Assorted 3. 3 3. 3. 3. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 2 .(): 4 8 0 0 0 0 1 +Language clarifications language L La Lan Lang BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 2 ., 2 9 0 0 0 0 1 +normative language normative n no nor norm BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 2 ,.. 3 9 0 0 0 0 1 +changed from changed c ch cha chan BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 2 . 1 10 0 0 0 0 1 +15. Acknowledgements 15. 1 15 15. 15. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 3 . 1 10 0 0 0 0 1 +Joerg Ott, joerg J Jo Joe Joer BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 10 3 ,,,,, 5 10 0 0 0 0 1 +Oscar Novo oscar O Os Osc Osca BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 1 0 0 0 0 0 0 10 3 []. 3 9 0 0 0 0 1 +authors also authors a au aut auth BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 3 no 0 9 0 0 0 0 1 +use over use u us use use BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 3 , 1 9 0 0 0 0 1 +Eckel, Alan eckel, E Ec Eck Ecke BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 10 3 ,,. 3 8 0 0 0 0 1 +important final important i im imp impo BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 3 ., 2 9 0 0 0 0 1 +Charles Eckel. charles C Ch Cha Char BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 1 0 0 0 0 0 0 10 3 ., 2 8 0 0 0 0 1 +considerable effort considerable c co con cons BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 3 . 1 10 0 0 0 0 1 +16. References 16. 1 16 16. 16. BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 6 . 1 10 0 0 0 0 1 +16.1. Normative 16.1. 1 16 16. 16.1 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 6 .. 2 10 0 0 0 0 1 +[I-D.ietf-bfcpbis-rfc4582bis] [I-D.ietf-bfcpbis-rfc4582bis] [i-d.ietf-bfcpbis-rfc4582bis] [ [I [I- [I-D BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 7 [-.--] 6 5 0 0 0 0 1 +Camarillo, G., camarillo, C Ca Cam Cama BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 10 7 ,.,,.,,.,,.,. 13 10 0 0 0 0 1 +Eckel, "The eckel, E Ec Eck Ecke BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 10 7 ,"()",- 7 9 0 0 0 0 1 +ietf-bfcpbis-rfc4582bis-16 (work ietf-bfcpbis-rfc4582bis-16 i ie iet ietf BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 7 ---(), 6 9 0 0 0 0 1 +2015. 2015. 2015. 2 20 201 2015 BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 1 0 0 0 10 7 . 1 1 0 0 0 0 1 +[I-D.ietf-mmusic-dtls-sdp] [I-D.ietf-mmusic-dtls-sdp] [i-d.ietf-mmusic-dtls-sdp] [ [I [I- [I-D BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 8 [-.---] 7 4 0 0 0 0 1 +Holmberg, C. holmberg, H Ho Hol Holm BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 10 8 ,..," 5 10 0 0 0 0 1 +(SDP) Offer/Answer (sdp) ( (S (SD (SDP BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 8 ()/ 3 9 0 0 0 0 1 +Layer Security layer L La Lay Laye BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 8 ()()", 6 10 0 0 0 0 1 +draft-ietf-mmusic-dtls-sdp-32 (work draft-ietf-mmusic-dtls-sdp-32 d dr dra draf BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 8 -----(), 8 9 0 0 0 0 1 +2017. 2017. 2017. 2 20 201 2017 BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 1 0 0 0 10 8 . 1 1 0 0 0 0 1 +[I-D.ietf-mmusic-ice-sip-sdp] [I-D.ietf-mmusic-ice-sip-sdp] [i-d.ietf-mmusic-ice-sip-sdp] [ [I [I- [I-D BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 10 [-.----] 8 5 0 0 0 0 1 +Petit-Huguenin, M., petit-huguenin, P Pe Pet Peti BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 10 10 -,.,,.,., 9 9 0 0 0 0 1 +"Session Description "session " "S "Se "Ses BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 10 "()/ 4 9 0 0 0 0 1 +procedures for procedures p pr pro proc BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 10 no 0 10 0 0 0 0 1 +(ICE)", draft-ietf-mmusic-ice-sip-sdp-24 (ice)", ( (I (IC (ICE BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 10 ()",------( 11 9 0 0 0 0 1 +progress), November progress), p pr pro prog BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 10 ),. 3 4 0 0 0 0 1 +Camarillo, et camarillo, C Ca Cam Cama BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 10 11 ,. 2 8 0 0 1 0 0 +Expires June expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 11 , 1 10 0 0 0 0 0 +[Page 22] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 10 0 - 1 10 0 0 1 0 1 +BFCP BFCP bfcp B BF BFC BFCP BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 0 no 0 3 0 0 0 0 1 +December 2018 december D De Dec Dece BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 10 0 no 0 10 0 0 0 0 1 +[I-D.ietf-mmusic-sdp-mux-attributes] [I-D.ietf-mmusic-sdp-mux-attributes] [i-d.ietf-mmusic-sdp-mux-attributes] [ [I [I- [I-D BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 0 [-.----] 8 6 0 0 0 0 1 +Nandakumar, S., nandakumar, N Na Nan Nand BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 10 0 ,.," 4 9 0 0 0 0 1 +Multiplexing", draft-ietf-mmusic-sdp-mux-attributes-17 multiplexing", M Mu Mul Mult BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 10 0 ",------ 8 10 0 0 0 0 1 +(work in (work ( (w (wo (wor BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 10 0 (),. 4 6 0 0 0 0 1 +[RFC2119] Bradner, [rfc2119] [ [R [RF [RFC BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 1 0 0 0 10 1 [],.," 6 10 0 0 0 0 1 +Requirement Levels", requirement R Re Req Requ BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 10 1 ",,, 4 6 0 0 0 0 1 +DOI 10.17487/RFC2119, doi D DO DOI DOI BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 0 1 0 0 0 0 0 0 10 1 ./,,://.- 9 8 0 0 0 0 1 +editor.org/info/rfc2119>. editor.org/info/rfc2119>. editor.org/info/rfc2119>. e ed edi edit BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS CONTAINSDIGITS 0 0 0 0 1 0 0 0 10 1 .//. 4 4 0 0 0 0 1 +[RFC3261] Rosenberg, [rfc3261] [ [R [RF [RFC BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 2 [],.,,.,,.,, 12 10 0 0 0 0 1 +A., Peterson, a., A A. A., A., BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 10 2 .,,.,,.,,.,. 12 7 0 0 0 0 1 +Schooler, "SIP: schooler, S Sc Sch Scho BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 10 2 ,":",, 6 8 0 0 0 0 1 +DOI 10.17487/RFC3261, doi D DO DOI DOI BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 0 1 0 0 0 0 0 0 10 2 ./,,://.- 9 7 0 0 0 0 1 +editor.org/info/rfc3261>. editor.org/info/rfc3261>. editor.org/info/rfc3261>. e ed edi edit BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 2 .//. 4 3 0 0 0 0 1 +[RFC3264] Rosenberg, [rfc3264] [ [R [RF [RFC BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 3 [],..,"/ 8 10 0 0 0 0 1 +with Session with w wi wit with BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 10 3 ()",, 5 7 0 0 0 0 1 +DOI 10.17487/RFC3264, doi D DO DOI DOI BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 0 1 0 0 0 0 0 0 10 3 ./,,://.- 9 7 0 0 0 0 1 +editor.org/info/rfc3264>. editor.org/info/rfc3264>. editor.org/info/rfc3264>. e ed edi edit BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 10 3 .//. 4 3 0 0 0 0 1 +[RFC4145] Yon, [rfc4145] [ [R [RF [RFC BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 4 [],..,"- 8 10 0 0 0 0 1 +the Session the t th the the BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 4 ()",, 5 7 0 0 0 0 1 +DOI 10.17487/RFC4145, doi D DO DOI DOI BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 0 1 0 0 0 0 0 0 11 4 ./,,://.- 9 8 0 0 0 0 1 +editor.org/info/rfc4145>. editor.org/info/rfc4145>. editor.org/info/rfc4145>. e ed edi edit BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 4 .//. 4 3 0 0 0 0 1 +[RFC4566] Handley, [rfc4566] [ [R [RF [RFC BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 6 [],.,,.,.,": 12 10 0 0 0 0 1 +Description Protocol", description D De Des Desc BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 6 ",,./, 6 8 0 0 0 0 1 +July 2006, july J Ju Jul July BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 11 6 ,://.-.//. 10 8 0 0 0 0 1 +[RFC4571] Lazzaro, [rfc4571] [ [R [RF [RFC BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 7 [],.,"-() 9 10 0 0 0 0 1 +and RTP and a an and and BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 7 ()- 3 8 0 0 0 0 1 +Oriented Transport", oriented O Or Ori Orie BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 7 ",,./, 6 8 0 0 0 0 1 +2006, <https://www.rfc-editor.org/info/rfc4571>. 2006, 2 20 200 2006 BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 1 0 0 0 11 7 ,://.-.//. 10 7 0 0 0 0 1 +[RFC4574] Levin, [rfc4574] [ [R [RF [RFC BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 8 [],..," 7 10 0 0 0 0 1 +Protocol (SDP) protocol P Pr Pro Prot BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 8 ()",, 5 6 0 0 0 0 1 +DOI 10.17487/RFC4574, doi D DO DOI DOI BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 0 1 0 0 0 0 0 0 11 8 ./,,://.- 9 8 0 0 0 0 1 +editor.org/info/rfc4574>. editor.org/info/rfc4574>. editor.org/info/rfc4574>. e ed edi edit BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 8 .//. 4 4 0 0 0 0 1 +[RFC4582] Camarillo, [rfc4582] [ [R [RF [RFC BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 9 [],.,,.,.," 11 10 0 0 0 0 1 +Control Protocol control C Co Con Cont BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 9 ()",,./, 8 8 0 0 0 0 1 +November 2006, november N No Nov Nove BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 11 9 ,://.-.//. 10 8 0 0 0 0 1 +[RFC4583] Camarillo, [rfc4583] [ [R [RF [RFC BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 10 [],.,"() 8 10 0 0 0 0 1 +for Binary for f fo for for BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 1 0 0 0 0 0 11 10 ()", 4 7 0 0 0 0 1 +RFC 4583, rfc R RF RFC RFC BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 11 10 ,./,, 5 6 0 0 0 0 1 +<https://www.rfc-editor.org/info/rfc4583>. <https://www.rfc-editor.org/info/rfc4583>. <https://www.rfc-editor.org/info/rfc4583>. < <h <ht <htt BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 1 11 10 ://.-.//. 9 6 0 0 0 0 1 +Camarillo, et camarillo, C Ca Cam Cama BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 11 ,. 2 8 0 0 1 0 0 +Expires June expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 11 , 1 10 0 0 0 0 0 +[Page 23] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 0 - 1 10 0 0 1 0 1 +BFCP BFCP bfcp B BF BFC BFCP BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 11 0 no 0 3 0 0 0 0 1 +December 2018 december D De Dec Dece BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 11 0 no 0 10 0 0 0 0 1 +[RFC5234] Crocker, [rfc5234] [ [R [RF [RFC BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 0 [],.,..," 9 10 0 0 0 0 1 +Specifications: ABNF", specifications: S Sp Spe Spec BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 0 :",,, 5 5 0 0 0 0 1 +DOI 10.17487/RFC5234, doi D DO DOI DOI BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 0 1 0 0 0 0 0 0 11 0 ./,,://.- 9 7 0 0 0 0 1 +editor.org/info/rfc5234>. editor.org/info/rfc5234>. editor.org/info/rfc5234>. e ed edi edit BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 0 .//. 4 3 0 0 0 0 1 +[RFC6347] Rescorla, [rfc6347] [ [R [RF [RFC BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 1 [],..," 7 10 0 0 0 0 1 +Security Version security S Se Sec Secu BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 1 1 0 0 0 0 0 11 1 .",,./, 7 8 0 0 0 0 1 +January 2012, january J Ja Jan Janu BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 1 0 0 0 1 0 0 11 1 ,://.-.//. 10 8 0 0 0 0 1 +[RFC6544] Rosenberg, [rfc6544] [ [R [RF [RFC BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 2 [],.,,.,,.,., 13 10 0 0 0 0 1 +"TCP Candidates "tcp " "T "TC "TCP BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 11 2 " 1 6 0 0 0 0 1 +Establishment (ICE)", establishment E Es Est Esta BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 2 ()",,./, 8 8 0 0 0 0 1 +March 2012, march M Ma Mar Marc BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 11 2 ,://.-.//. 10 8 0 0 0 0 1 +[RFC8122] Lennox, [rfc8122] [ [R [RF [RFC BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 4 [],..,"- 8 10 0 0 0 0 1 +Transport over transport T Tr Tra Tran BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 4 () 2 9 0 0 0 0 1 +in the in i in in in BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 1 1 0 0 0 0 0 11 4 ()",, 5 8 0 0 0 0 1 +DOI 10.17487/RFC8122, doi D DO DOI DOI BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 0 1 0 0 0 0 0 0 11 4 ./,,://.- 9 7 0 0 0 0 1 +editor.org/info/rfc8122>. editor.org/info/rfc8122>. editor.org/info/rfc8122>. e ed edi edit BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 4 .//. 4 4 0 0 0 0 1 +[RFC8174] Leiba, [rfc8174] [ [R [RF [RFC BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 5 [],.," 6 10 0 0 0 0 1 +2119 Key 2119 2 21 211 2119 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS ALLDIGIT 0 0 0 0 1 0 0 0 11 5 ",,,./, 7 8 0 0 0 0 1 +May 2017, may M Ma May May BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 1 1 0 0 1 0 0 11 5 ,://.-.//. 10 8 0 0 0 0 1 +[RFC8445] Keranen, [rfc8445] [ [R [RF [RFC BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 6 [],.,,.,.," 11 10 0 0 0 0 1 +Connectivity Establishment connectivity C Co Con Conn BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 6 (): 3 8 0 0 0 0 1 +Address Translator address A Ad Add Addr BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 6 ()",, 5 6 0 0 0 0 1 +DOI 10.17487/RFC8445, doi D DO DOI DOI BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 0 1 0 0 0 0 0 0 11 6 ./,,://.- 9 7 0 0 0 0 1 +editor.org/info/rfc8445>. editor.org/info/rfc8445>. editor.org/info/rfc8445>. e ed edi edit BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 6 .//. 4 3 0 0 0 0 1 +16.2. Informational 16.2. 1 16 16. 16.2 BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 8 .. 2 10 0 0 0 0 1 +[I-D.ietf-mmusic-sdp-bundle-negotiation] [I-D.ietf-mmusic-sdp-bundle-negotiation] [i-d.ietf-mmusic-sdp-bundle-negotiation] [ [I [I- [I-D BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 8 [-.----] 8 7 0 0 0 0 1 +Holmberg, C., holmberg, H Ho Hol Holm BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 8 ,.,,.,., 8 8 0 0 0 0 1 +"Negotiating Media "negotiating " "N "Ne "Neg BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 8 " 1 8 0 0 0 0 1 +Description Protocol description D De Des Desc BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 8 ()",----- 9 10 0 0 0 0 1 +negotiation-53 (work negotiation-53 n ne neg nego BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 8 -(),. 5 8 0 0 0 0 1 +[RFC5576] Lennox, [rfc5576] [ [R [RF [RFC BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 0 0 0 0 11 10 [],.,,.,.,"- 12 10 0 0 0 0 1 +Media Attributes media M Me Med Medi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 10 no 0 8 0 0 0 0 1 +(SDP)", RFC (sdp)", ( (S (SD (SDP BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 11 10 ()",,./,, 9 7 0 0 0 0 1 +<https://www.rfc-editor.org/info/rfc5576>. <https://www.rfc-editor.org/info/rfc5576>. <https://www.rfc-editor.org/info/rfc5576>. < <h <ht <htt BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS CONTAINSDIGITS 0 0 0 0 0 0 0 1 11 10 ://.-.//. 9 6 0 0 0 0 1 +Authors' Addresses authors' A Au Aut Auth BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 11 ' 1 10 0 0 0 0 1 +Camarillo, et camarillo, C Ca Cam Cama BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 11 ,. 2 8 0 0 1 0 0 +Expires June expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 11 , 1 10 0 0 0 0 0 +[Page 24] [page [ [P [Pa [Pag BLOCKEND PAGEEND SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 11 [] 2 4 0 0 0 0 0 +Internet-Draft Internet-Draft internet-draft I In Int Inte BLOCKSTART PAGESTART SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 0 - 1 10 0 0 1 0 1 +BFCP BFCP bfcp B BF BFC BFCP BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP NODIGIT 0 0 0 0 0 0 0 0 11 0 no 0 3 0 0 0 0 1 +December 2018 december D De Dec Dece BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 1 0 0 11 0 no 0 10 0 0 0 0 1 +Gonzalo Camarillo gonzalo G Go Gon Gonz BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 1 0 0 0 0 0 0 11 1 no 0 10 0 0 0 0 1 +Ericsson Ericsson ericsson E Er Eri Eric BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 1 no 0 5 0 0 0 0 1 +Hirsalantie 11 hirsalantie H Hi Hir Hirs BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 1 no 0 8 0 0 0 0 1 +FI-02420 Jorvas fi-02420 F FI FI- FI-0 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 1 0 0 0 11 1 - 1 8 0 0 0 0 1 +Finland Finland finland F Fi Fin Finl BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 1 no 0 4 0 0 0 0 1 +Email: Gonzalo.Camarillo@ericsson.com email: E Em Ema Emai BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 3 :.. 3 10 0 0 0 0 1 +Tom Kristensen tom T To Tom Tom BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 1 0 0 0 0 0 0 11 3 no 0 6 0 0 0 0 1 +Cisco Cisco cisco C Ci Cis Cisc BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 1 0 0 0 0 0 0 11 3 no 0 2 0 0 0 0 1 +Philip Pedersens philip P Ph Phi Phil BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 1 0 0 0 0 0 0 11 3 no 0 10 0 0 0 0 1 +NO-1366 Lysaker no-1366 N NO NO- NO-1 BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 ALLCAP CONTAINSDIGITS 0 0 0 0 1 0 0 0 11 3 - 1 6 0 0 0 0 1 +Norway Norway norway N No Nor Norw BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 3 no 0 3 0 0 0 0 1 +Email: tomkrist@cisco.com, email: E Em Ema Emai BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 6 :.,.. 5 10 0 0 0 0 1 +Christer Holmberg christer C Ch Chr Chri BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 7 no 0 10 0 0 0 0 1 +Ericsson Ericsson ericsson E Er Eri Eric BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 7 no 0 5 0 0 0 0 1 +Hirsalantie 11 hirsalantie H Hi Hir Hirs BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 7 no 0 8 0 0 0 0 1 +Jorvas 02420 jorvas J Jo Jor Jorv BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 7 no 0 7 0 0 0 0 1 +Finland Finland finland F Fi Fin Finl BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 7 no 0 4 0 0 0 0 1 +Email: christer.holmberg@ericsson.com email: E Em Ema Emai BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 9 :.. 3 10 0 0 0 0 1 +Camarillo, et camarillo, C Ca Cam Cama BLOCKSTART PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 0 0 0 0 0 0 11 9 ,. 2 8 0 0 1 0 0 +Expires June expires E Ex Exp Expi BLOCKIN PAGEIN SAMEFONT SAMEFONTSIZE 0 0 INITCAP NODIGIT 0 0 1 0 0 0 0 0 11 9 , 1 10 0 0 0 0 0 +[Page 25] [page [ [P [Pa [Pag BLOCKEND PAGEIN SAMEFONT SAMEFONTSIZE 0 0 NOCAPS NODIGIT 0 0 0 0 0 0 0 0 11 9 [] 2 4 0 0 0 0 0 + diff --git a/grobid-trainer/resources/dataset/segmentation/sdo/ietf/evaluation/tei/draft-ietf-bfcpbis-rfc4583bis-27.segmentation.tei.xml b/grobid-trainer/resources/dataset/segmentation/sdo/ietf/evaluation/tei/draft-ietf-bfcpbis-rfc4583bis-27.segmentation.tei.xml new file mode 100644 index 0000000000..de780e02d8 --- /dev/null +++ b/grobid-trainer/resources/dataset/segmentation/sdo/ietf/evaluation/tei/draft-ietf-bfcpbis-rfc4583bis-27.segmentation.tei.xml @@ -0,0 +1,403 @@ +<?xml version="1.0" ?> +<tei xml:space="preserve"> + <teiHeader> + <fileDesc xml:id="0"/> + </teiHeader> + <text xml:lang="en"> + <front>BFCPbis Working Group <lb/> G. Camarillo <lb/>Internet-Draft <lb/>Ericsson <lb/>Obsoletes: 4583 (if approved) <lb/>T. Kristensen <lb/>Intended status: Standards Track <lb/>Cisco <lb/>Expires: June 11, 2019 <lb/>C. Holmberg <lb/>Ericsson <lb/>December 8, 2018 <lb/>Session Description Protocol (SDP) Format for Binary Floor Control <lb/>Protocol (BFCP) Streams <lb/>draft-ietf-bfcpbis-rfc4583bis-27 <lb/>Abstract <lb/>This document defines the Session Description Protocol (SDP) offer/ <lb/>answer procedures for negotiating and establishing Binary Floor <lb/>Control Protocol (BFCP) streams. <lb/>This document obsoletes RFC 4583. Changes from RFC 4583 are <lb/>summarized in Section 14. <lb/>Status of This Memo <lb/>This Internet-Draft is submitted in full conformance with the <lb/>provisions of BCP 78 and BCP 79. <lb/>Internet-Drafts are working documents of the Internet Engineering <lb/>Task Force (IETF). Note that other groups may also distribute <lb/>working documents as Internet-Drafts. The list of current Internet-<lb/>Drafts is at http://datatracker.ietf.org/drafts/current/. <lb/>Internet-Drafts are draft documents valid for a maximum of six months <lb/>and may be updated, replaced, or obsoleted by other documents at any <lb/>time. It is inappropriate to use Internet-Drafts as reference <lb/>material or to cite them other than as "work in progress." <lb/>This Internet-Draft will expire on June 11, 2019. <lb/>Copyright Notice <lb/>Copyright (c) 2018 IETF Trust and the persons identified as the <lb/>document authors. All rights reserved. <lb/>This document is subject to BCP 78 and the IETF Trust's Legal <lb/>Provisions Relating to IETF Documents <lb/>(http://trustee.ietf.org/license-info) in effect on the date of <lb/>publication of this document. Please review these documents <lb/>Camarillo, et al. <lb/>Expires June 11, 2019 <lb/>[Page 1] <lb/>Internet-Draft <lb/>BFCP <lb/>December 2018 <lb/>carefully, as they describe your rights and restrictions with respect <lb/>to this document. Code Components extracted from this document must <lb/>include Simplified BSD License text as described in Section 4.e of <lb/>the Trust Legal Provisions and are provided without warranty as <lb/>described in the Simplified BSD License. <lb/></front> + + <div type="toc">Table of Contents <lb/>1. Introduction . . . . . . . . . . . . . . . . . . . . . . . . <lb/>3 <lb/>2. Conventions . . . . . . . . . . . . . . . . . . . . . . . . . <lb/>3 <lb/>3. Floor Control Roles . . . . . . . . . . . . . . . . . . . . . <lb/>4 <lb/>4. Fields in the 'm' Line . . . . . . . . . . . . . . . . . . . <lb/>4 <lb/>5. SDP Attributes . . . . . . . . . . . . . . . . . . . . . . . <lb/>5 <lb/>5.1. SDP 'floorctrl' Attribute . . . . . . . . . . . . . . . . <lb/>5 <lb/>5.2. SDP 'confid' Attribute . . . . . . . . . . . . . . . . . <lb/>7 <lb/>5.3. SDP 'userid' Attribute . . . . . . . . . . . . . . . . . <lb/>8 <lb/>5.4. SDP 'floorid' Attribute . . . . . . . . . . . . . . . . . <lb/>9 <lb/>5.5. SDP 'bfcpver' Attribute . . . . . . . . . . . . . . . . . 10 <lb/>6. Multiplexing Considerations . . . . . . . . . . . . . . . . . 11 <lb/>7. BFCP Connection Management . . . . . . . . . . . . . . . . . 12 <lb/>7.1. TCP Connection Management . . . . . . . . . . . . . . . . 12 <lb/>8. TLS/DTLS Considerations . . . . . . . . . . . . . . . . . . . 13 <lb/>9. ICE Considerations . . . . . . . . . . . . . . . . . . . . . 13 <lb/>10. SDP Offer/Answer Procedures . . . . . . . . . . . . . . . . . 14 <lb/>10.1. Generating the Initial SDP Offer . . . . . . . . . . . . 15 <lb/>10.2. Generating the SDP Answer . . . . . . . . . . . . . . . 15 <lb/>10.3. Offerer Processing of the SDP Answer . . . . . . . . . . 16 <lb/>10.4. Modifying the Session . . . . . . . . . . . . . . . . . 17 <lb/>11. Examples . . . . . . . . . . . . . . . . . . . . . . . . . . 17 <lb/>12. Security Considerations . . . . . . . . . . . . . . . . . . . 19 <lb/>13. IANA Considerations . . . . . . . . . . . . . . . . . . . . . 20 <lb/>13.1. Registration of SDP 'proto' Values . . . . . . . . . . . 20 <lb/>13.2. Registration of the SDP 'floorctrl' Attribute . . . . . 20 <lb/>13.3. Registration of the SDP 'confid' Attribute . . . . . . . 20 <lb/>13.4. Registration of the SDP 'userid' Attribute . . . . . . . 20 <lb/>13.5. Registration of the SDP 'floorid' Attribute . . . . . . 21 <lb/>13.6. Registration of the SDP 'bfcpver' Attribute . . . . . . 21 <lb/>14. Changes from RFC 4583 . . . . . . . . . . . . . . . . . . . . 21 <lb/>15. Acknowledgements . . . . . . . . . . . . . . . . . . . . . . 22 <lb/>16. References . . . . . . . . . . . . . . . . . . . . . . . . . 22 <lb/>16.1. Normative References . . . . . . . . . . . . . . . . . . 22 <lb/>16.2. Informational References . . . . . . . . . . . . . . . . 24 <lb/>Authors' Addresses . . . . . . . . . . . . . . . . . . . . . . . 24 <lb/> + </div> + + <note place="footnote"> + Camarillo, et al. <lb/> + + Expires June 11, 2019 <lb/> + </note> + + <page> + [Page 2] <lb/> + </page> + + <note place="headnote"> + Internet-Draft <lb/>BFCP <lb/>December 2018 <lb/> + </note> + + <body> + 1. Introduction <lb/>As discussed in the BFCP (Binary Floor Control Protocol) <lb/>specification [I-D.ietf-bfcpbis-rfc4582bis], a given BFCP client <lb/>needs a set of data in order to establish a BFCP connection to a <lb/>floor control server. This data includes the transport address of <lb/>the server, the conference identifier, and the user identifier. <lb/>One way for clients to obtain this information is to use an SDP <lb/>offer/answer [RFC3264] exchange. This document specifies how to <lb/>encode this information in the SDP session descriptions that are part <lb/>of such an offer/answer exchange. <lb/>User agents typically use the offer/answer model to establish a <lb/>number of media streams of different types. Following this model, a <lb/>BFCP connection is described as any other media stream by using an <lb/>SDP 'm' line, possibly followed by a number of SDP lines that also <lb/>apply to the BFCP connection. <lb/>Section 4 defines how the field values in 'm' line representing a <lb/>BFCP connection are set. <lb/>Section 5 defines SDP attributes that are used when negotiating a <lb/>BFCP connection. <lb/>Section 6 defines multiplexing considerations for a BFCP connection. <lb/>Section 7 defines procedures for managing a BFCP connection. <lb/>Section 8 defines TLS and DTLS considerations when negotiating a BFCP <lb/>connection. <lb/>Section 9 defines the Interactive Connectivity Establishment (ICE) <lb/>[RFC8445] considerations when negotiating a BFCP connection. <lb/>Section 10 defines the SDP offer/answer procedures for negotiating a <lb/>BFCP connection. <lb/>2. Conventions <lb/>The key words "MUST", "MUST NOT", "REQUIRED", "SHALL", "SHALL NOT", <lb/>"SHOULD", "SHOULD NOT", "RECOMMENDED", "NOT RECOMMENDED", "MAY", and <lb/>"OPTIONAL" in this document are to be interpreted as described in BCP <lb/>14 [RFC2119] [RFC8174] when, and only when, they appear in all <lb/>capitals, as shown here. <lb/> + + <note place="footnote"> + Camarillo, et al. <lb/> + + Expires June 11, 2019 <lb/> + </note> + + <page> + [Page 3] <lb/> + </page> + + <note place="headnote"> + Internet-Draft <lb/>BFCP <lb/>December 2018 <lb/> + </note> + + 3. Floor Control Roles <lb/>When two endpoints establish a BFCP stream, they need to determine <lb/>which of them acts as a floor control client and which acts as a <lb/>floor control server. <lb/>Once the roles have been determined, the roles will apply to all <lb/>BFCP-controlled streams associated with the BFCP stream. <lb/>4. Fields in the 'm' Line <lb/>According to the SDP specification [RFC4566], the 'm' line format is <lb/>the following: <lb/>m=<media> <port> <proto> <fmt> ... <lb/>This section describes how to generate an 'm' line of an SDP Media <lb/>Description ('m' section) describing a BFCP stream. <lb/>The media field MUST have a value of "application". <lb/>The port field is set depending on the value of the proto field, as <lb/>explained below. A port field value of zero has the standard SDP <lb/>meaning (i.e., rejection of the media stream) regardless of the proto <lb/>field. <lb/>When TCP is used as the transport, the port field is set following <lb/>the rules in [RFC4145]. Depending on the value of the 'setup' <lb/>attribute (discussed in Section 7.1), the port field contains the <lb/>port to which the remote endpoint will direct BFCP messages, or in <lb/>the case where the endpoint will initiate the connection towards <lb/>the remote endpoint, should be set to a value of 9. <lb/>When UDP is used as the transport, the port field contains the <lb/>port to which the remote endpoint will direct BFCP messages <lb/>regardless of the value of the 'setup' attribute. <lb/>This document defines five values for the proto field: TCP/BFCP, <lb/>TCP/DTLS/BFCP, TCP/TLS/BFCP, UDP/BFCP, and UDP/TLS/BFCP. <lb/>The proto value are used as described below: <lb/>'TCP/BFCP' is used for TCP transport of BFCP without TLS <lb/>encryption, and is backward compatible with RFC 4583 compliant <lb/>endpoints. <lb/> + + <note place="footnote"> + Camarillo, et al. <lb/> + + Expires June 11, 2019 <lb/> + </note> + + <page> + [Page 4] <lb/> + </page> + + <note place="headnote"> + Internet-Draft <lb/>BFCP <lb/>December 2018 <lb/> + </note> + + 'TCP/TLS/BFCP' is used for TCP transport of BFCP with TLS <lb/>encryption, and is backward compatible with RFC 4583 compliant <lb/>endpoints that support TLS. <lb/>'UDP/BFCP' is used for UDP transport of BFCP without DTLS <lb/>encryption [RFC6347]. <lb/>'UDP/TLS/BFCP' is used for UDP transport of BFCP with DTLS <lb/>encryption. This is one of the options when ICE is used <lb/>(Section 9). It can also be used without ICE when backward <lb/>compatibility with RFC 4583 compliant endpoints is not required. <lb/>'TCP/DTLS/BFCP' is used for TCP transport of BFCP with DTLS <lb/>encryption, running on top of TCP using the framing method defined <lb/>in [RFC4571], with DTLS packets being sent and received instead of <lb/>RTP/RTCP packets using the shim defined in RFC 4571 such that the <lb/>length field defined in RFC 4571 precedes each DTLS message. This <lb/>is one of the options when ICE is used (Section 9). It can also <lb/>be used without ICE when backward compatibility with RFC 4583 <lb/>compliant endpoints is not required. <lb/>The fmt (format) list is not applicable to BFCP. The fmt list of 'm' <lb/>lines in the case of any proto field value related to BFCP MUST <lb/>contain a single "*" character. If the the fmt list contains any <lb/>other value it MUST be ignored. <lb/>The following is an example of an 'm' line for a BFCP connection: <lb/>m=application 50000 TCP/TLS/BFCP * <lb/>5. SDP Attributes <lb/>5.1. SDP 'floorctrl' Attribute <lb/>This section defines the SDP 'floorctrl' media-level attribute. The <lb/>attribute is used to determine the floor control roles (client and <lb/>server) for the endpoints associated with the BFCP stream. <lb/> + + <note place="footnote"> + Camarillo, et al. <lb/> + + Expires June 11, 2019 <lb/> + </note> + + <page> + [Page 5] <lb/> + </page> + + <note place="headnote"> + Internet-Draft <lb/>BFCP <lb/>December 2018 <lb/> + </note> + + Attribute Name: floorctrl <lb/>Attribute Value: floor-control <lb/>Usage Level: media <lb/>Charset Dependent: No <lb/>Mux Category: TBD <lb/>The Augmented BNF syntax [RFC5234] for the attribute is: <lb/>floor-control = role *(SP role) <lb/>role = "c-only" / "s-only" / "c-s" <lb/>An endpoint includes the attribute to indicate the role(s) it would <lb/>be willing to perform for the BFCP-controlled media streams: <lb/>c-only: The endpoint is willing to act as floor control client. <lb/>s-only: The endpoint is willing to act as floor control server only. <lb/>When inserted in an offer, the offerer MAY indicate multiple <lb/>attribute values ("c-only" and "s-only"). When inserted in an <lb/>answer, the answerer MUST indicate only one attribute value: "c-only" <lb/>or "s-only". The answerer indicates the role taken by the answerer. <lb/>The offerer will then take the opposite role. <lb/>In [RFC4583], there was a third attribute specified, "c-s", which <lb/>meant that an endpoint was willing to act as both floor control <lb/>client and floor control server at the same time for the BFCP stream, <lb/>taking different roles for different BFCP-controlled media streams. <lb/>The feature was underspecified and implemented in different ways, in <lb/>particular many implementations interpreted "c-s" to mean that the <lb/>endpoint is willing to act as either client or server (equivalent to <lb/>"c-only s-only"). An implementation compliant to this specification <lb/>MUST NOT include the "c-s" floorctl attribute value in an offer or in <lb/>an answer, but MUST accept the attribute value in an offer and <lb/>process it as equivalent to "c-only s-only" (or "s-only c-only"). <lb/>Also, as an implementation compliant to this specification is only <lb/>allowed to include one role, either 'c-only' or 's-conly', in an <lb/>answer, each endpoint will only take one role, and as a result the <lb/>endpoint will take the same role for each BFCP-controlled media <lb/>stream associated with the BFCP stream. <lb/>Table 1 shows the roles that the answerer is allowed to take, based <lb/>on what roles the offerer has indicated that it is willing to take. <lb/> + + <note place="footnote"> + Camarillo, et al. <lb/> + + Expires June 11, 2019 <lb/> + </note> + + <page> + [Page 6] <lb/> + </page> + + <note place="headnote"> + Internet-Draft <lb/>BFCP <lb/>December 2018 <lb/> + </note> + + +---------+----------+ <lb/>| Offerer | Answerer | <lb/>+---------+----------+ <lb/>| c-only | s-only | <lb/>| s-only | c-only | <lb/>| <lb/>c-s <lb/>| c-only | <lb/>| <lb/>c-s <lb/>| s-only | <lb/>+---------+----------+ <lb/>Table 1: Roles <lb/>Endpoints compliant with [RFC4583] might not include the 'floorctrl' <lb/>attribute in offers and answerer. If the 'floorctrl' attribute is <lb/>not present, in order to be interoperable with such endpoints, the <lb/>offerer will act as floor control client and the answerer will act as <lb/>floor control server. <lb/>The SDP Offer/Answer procedures for the 'floorctrl' attribute are <lb/>defined in Section 10. <lb/>The following is an example of a 'floorctrl' attribute in an offer: <lb/>a=floorctrl:c-only s-only <lb/>5.2. SDP 'confid' Attribute <lb/>This section defines the SDP 'confid' media-level attribute. The <lb/>attribute is used by a floor control server to convey the conference <lb/>ID value to the floor control client, using decimal integer <lb/>representation. <lb/> + + <note place="footnote"> + Camarillo, et al. <lb/> + + Expires June 11, 2019 <lb/> + </note> + + <page> + [Page 7] <lb/> + </page> + + <note place="headnote"> + Internet-Draft <lb/>BFCP <lb/>December 2018 <lb/> + </note> + + Attribute Name: confid <lb/>Attribute Value: conference-id <lb/>Usage Level: media <lb/>Charset Dependent: No <lb/>Mux Category: TBD <lb/>The Augmented BNF syntax [RFC5234] for the attribute is: <lb/>conference-id = 1*DIGIT <lb/>DIGIT = <DIGIT defined in [RFC5234]> <lb/>The maximum value of the attribute is determined by the <lb/>COMMON-HEADER format [I-D.ietf-bfcpbis-rfc4582bis]. <lb/>The SDP Offer/Answer procedures for the 'confid' attribute are <lb/>defined in Section 10. <lb/>5.3. SDP 'userid' Attribute <lb/>This section defines the SDP userid' media-level attribute. The <lb/>attribute is used by a floor control server to convey the user ID <lb/>value to the floor control client, using decimal integer <lb/>representation. <lb/> + + <note place="footnote"> + Camarillo, et al. <lb/> + + Expires June 11, 2019 <lb/> + </note> + + <page> + [Page 8] <lb/> + </page> + + <note place="headnote"> + Internet-Draft <lb/>BFCP <lb/>December 2018 <lb/> + </note> + + + Attribute Name: userid <lb/>Attribute Value: user-id <lb/>Usage Level: media <lb/>Charset Dependent: No <lb/>Mux Category: TBD <lb/>The Augmented BNF syntax [RFC5234] for the attribute is: <lb/>user-id = 1*DIGIT <lb/>DIGIT = <DIGIT defined in [RFC5234]> <lb/>The maximum value of the attribute is determined by the <lb/>COMMON-HEADER format [I-D.ietf-bfcpbis-rfc4582bis]. <lb/>The SDP Offer/Answer procedures for the 'userid' attribute are <lb/>defined in Section 10. <lb/>5.4. SDP 'floorid' Attribute <lb/>This section defines the SDP 'floorid' media-level attribute. The <lb/>attribute conveys a floor identifier, using decimal integer <lb/>representation, and optionally pointers to one or more BFCP-<lb/>controlled media streams. <lb/> + + <note place="footnote"> + Camarillo, et al. <lb/> + + Expires June 11, 2019 <lb/> + </note> + + <page> + [Page 9] <lb/> + </page> + + <note place="headnote"> + Internet-Draft <lb/>BFCP <lb/>December 2018 <lb/> + </note> + + Attribute Name: floorid <lb/>Attribute Value: floor-id <lb/>Usage Level: media <lb/>Charset Dependent: No <lb/>Mux Category: TBD <lb/>The Augmented BNF syntax [RFC5234] for the attribute is: <lb/>floor-id = 1*DIGIT SP "mstrm:" token *(SP token) <lb/>DIGIT = <DIGIT defined in [RFC5234]> <lb/>token = <token defined in [RFC4566]> <lb/>The maximum value of the attribute is determined by the <lb/>FLOOR-ID format [I-D.ietf-bfcpbis-rfc4582bis]. <lb/>The floor identifier value is the integer representation of the Floor <lb/>ID to be used in BFCP. Each media stream pointer value is associated <lb/>with an SDP 'label' attribute [RFC4574] of a media stream. <lb/>The SDP Offer/Answer procedures for the 'floorid' attribute are <lb/>defined in Section 10. <lb/>Note: In [RFC4583] 'm-stream' was erroneously used in Section 11. <lb/>Although the example was non-normative, it is implemented by some <lb/>vendors and occurs in cases where the endpoint is willing to act <lb/>as a server. Therefore, it is RECOMMENDED to support parsing and <lb/>interpreting 'm-stream' the same way as 'mstrm' when receiving. <lb/>5.5. SDP 'bfcpver' Attribute <lb/>This section defines the SDP 'bfcpver' media-level attribute. The <lb/>attribute is used to negotiate the BFCP version, using decimal <lb/>integer representation. <lb/>The Augmented BNF syntax [RFC5234] for the attributes is: <lb/> + + <note place="footnote"> + Camarillo, et al. <lb/> + + Expires June 11, 2019 <lb/> + </note> + + <page> + [Page 10] <lb/> + </page> + + <note place="headnote"> + Internet-Draft <lb/>BFCP <lb/>December 2018 <lb/> + </note> + + Attribute Name: bfcpver <lb/>Attribute Value: bfcp-version <lb/>Usage Level: media <lb/>Charset Dependent: No <lb/>Mux Category: TBD <lb/>The Augmented BNF syntax [RFC5234] for the attribute is: <lb/>bfcp-version = version *(SP version) <lb/>version <lb/>= 1*DIGIT <lb/>DIGIT = <DIGIT defined in [RFC5234]> <lb/>The maximum value of the attribute is determined by the <lb/>COMMON-HEADER format [I-D.ietf-bfcpbis-rfc4582bis]. <lb/>An endpoint uses the 'bfcpver' attribute to convey the version(s) of <lb/>BFCP supported by the endpoint, using integer values. For a given <lb/>version, the attribute value representing the version MUST match the <lb/>"Version" field that would be presented in the BFCP COMMON-HEADER <lb/>[I-D.ietf-bfcpbis-rfc4582bis]. The BFCP version that will eventually <lb/>be used will be conveyed with a BFCP-level Hello/HelloAck. <lb/>Endpoints compliant with [RFC4583] might not always include the <lb/>'bfcpver' attribute in offers and answers. The attribute value, if <lb/>present, MUST be in accordance with the definition of the Version <lb/>field in [I-D.ietf-bfcpbis-rfc4582bis]. If the attribute is not <lb/>present, endpoints MUST assume a default value in accordance with <lb/>[I-D.ietf-bfcpbis-rfc4582bis]: when used over a reliable transport <lb/>the default attribute value is "1", and when used over an unreliable <lb/>transport the default attribute value is "2". The value is inferred <lb/>from the transport specified in the 'm' line (Section 4) of the 'm' <lb/>section associated with the stream. <lb/>The SDP Offer/Answer procedures for the 'bfcpver' attribute are <lb/>defined in Section 10. <lb/>6. Multiplexing Considerations <lb/>[I-D.ietf-mmusic-sdp-bundle-negotiation] defines how multiplexing of <lb/>multiple media streams can be negotiated. This specification does <lb/>not define how BFCP streams can be multiplexed with other media <lb/>streams. Therefore, a BFCP stream MUST NOT be associated with a <lb/> + + <note place="footnote"> + Camarillo, et al. <lb/> + + Expires June 11, 2019 <lb/> + </note> + + <page> + [Page 11] <lb/> + </page> + + <note place="headnote"> + Internet-Draft <lb/>BFCP <lb/>December 2018 <lb/> + </note> + + BUNDLE group [I-D.ietf-mmusic-sdp-bundle-negotiation]. Note that <lb/>BFCP-controlled media streams might be multiplexed with other media <lb/>streams. <lb/>[I-D.ietf-mmusic-sdp-mux-attributes] defines the mux categories for <lb/>the SDP attributes defined in this specification, except for the <lb/>'bfcpver' attribute. Table 2 defines the mux category for the <lb/>'bfcpver' attribute: <lb/>+---------+-------------------------------------+-------+-----------+ <lb/>| Name <lb/>| Notes <lb/>| Level | Mux <lb/>| <lb/>| <lb/>| <lb/>| <lb/>| Category | <lb/>+---------+-------------------------------------+-------+-----------+ <lb/>| bfcpver | Needs further analysis in a <lb/>| M <lb/>| TBD <lb/>| <lb/>| <lb/>| separate specification <lb/>| <lb/>| <lb/>| <lb/>+---------+-------------------------------------+-------+-----------+ <lb/>Table 2: Multiplexing Attribute Analysis <lb/>7. BFCP Connection Management <lb/>BFCP streams can use TCP or UDP as the underlying transport. <lb/>Endpoints exchanging BFCP messages over UDP send the BFCP messages <lb/>towards the peer using the connection address and port provided in <lb/>the SDP 'c' and 'm' lines. TCP connection management is more <lb/>complicated and is described in the following Section. <lb/>Note: When using Interactive Connectivity Establishment (ICE) <lb/>[RFC8445], TCP/DTLS/BFCP, or UDP/TLS/BFCP, the straight-forward <lb/>procedures for connection management as UDP/BFCP described above <lb/>apply. TCP/TLS/BFCP follows the same procedures as TCP/BFCP and <lb/>is described below. <lb/>7.1. TCP Connection Management <lb/>The management of the TCP connection used to transport BFCP messages <lb/>is performed using the SDP 'setup' and 'connection' attributes <lb/>[RFC4145]. The 'setup' attribute indicates which of the endpoints <lb/>initiates the TCP connection. The 'connection' attribute handles TCP <lb/>connection re-establishment. <lb/>The BFCP specification [I-D.ietf-bfcpbis-rfc4582bis] describes a <lb/>number of situations when the TCP connection between a floor control <lb/>client and the floor control server needs to be re-established. <lb/>However, that specification does not describe the re-establishment <lb/>process because this process depends on how the connection was <lb/>established in the first place. Endpoints using the offer/answer <lb/>mechanism follow the following rules. <lb/> + + <note place="footnote"> + Camarillo, et al. <lb/> + + Expires June 11, 2019 <lb/> + </note> + + <page> + [Page 12] <lb/> + </page> + + <note place="headnote"> + Internet-Draft <lb/>BFCP <lb/>December 2018 <lb/> + </note> + + When the existing TCP connection is closed and re-established <lb/>following the rules in [I-D.ietf-bfcpbis-rfc4582bis], the floor <lb/>control client MUST send an offer towards the floor control server in <lb/>order to re-establish the connection. If a TCP connection cannot <lb/>deliver a BFCP message and times out, the endpoint that attempted to <lb/>send the message (i.e., the one that detected the TCP timeout) MUST <lb/>send an offer in order to re-establish the TCP connection. <lb/>Endpoints that use the offer/answer mechanism to negotiate TCP <lb/>connections MUST support the 'setup' and 'connection' attributes. <lb/>8. TLS/DTLS Considerations <lb/>When DTLS is used with UDP, the generic procedures defined in <lb/>Section 5 of [I-D.ietf-mmusic-dtls-sdp] MUST be followed. <lb/>When TLS is used with TCP, once the underlying connection is <lb/>established, the answerer always acts as the TLS server. If the TCP <lb/>connection is lost, the active endpoint [RFC4583] is responsible for <lb/>re-establishing the TCP connection. Unless a new TLS connection is <lb/>negotiated, subsequent SDP offers and answers will not impact the <lb/>previously negotiated TLS roles. <lb/>Note: For TLS, it was decided to keep the original procedures in <lb/>[RFC4583] to determine which endpoint acts as the TLS server in <lb/>order to retain backwards compatibility. <lb/>9. ICE Considerations <lb/>Generic SDP offer/answer procedures for Interactive Connectivity <lb/>Establishment (ICE) are defined in [I-D.ietf-mmusic-ice-sip-sdp]. <lb/>When BFCP is used with UDP based ICE candidates [RFC8445] then the <lb/>procedures for UDP/TLS/BFCP are used. <lb/>When BFCP is used with TCP based ICE candidates [RFC6544] then the <lb/>procedures for TCP/DTLS/BFCP are used. <lb/>Based on the procedures defined in [I-D.ietf-mmusic-dtls-sdp], <lb/>endpoints treat all ICE candidate pairs associated with a BFCP stream <lb/>on top of a DTLS association as part of the same DTLS association. <lb/>Thus, there will only be one BFCP handshake and one DTLS handshake <lb/>even if there are multiple valid candidate pairs, and if BFCP media <lb/>is shifted between candidate pairs (including switching between UDP <lb/>to TCP candidate pairs) prior to nomination. If new candidates are <lb/>added, they will also be part of the same DTLS association. <lb/> + + <note place="footnote"> + Camarillo, et al. <lb/> + + Expires June 11, 2019 <lb/> + </note> + + <page> + [Page 13] <lb/> + </page> + + <note place="headnote"> + Internet-Draft <lb/>BFCP <lb/>December 2018 <lb/> + </note> + + In order to maximize the likelihood of interoperability between the <lb/>endpoints, all ICE enabled BFCP-over-DTLS endpoints SHOULD implement <lb/>support for UDP/TLS/BFCP. <lb/>When an SDP offer or answer conveys multiple ICE candidates for a <lb/>BFCP stream, UDP based candidates SHOULD be included and the default <lb/>candidate SHOULD be chosen from one of those UDP candidates. If UDP <lb/>transport is used for the default candidate, then the 'm' line proto <lb/>value MUST be 'UDP/TLS/BFCP'. If TCP transport is used for the <lb/>default candidate, the 'm' line proto value MUST be 'TCP/DTLS/BFCP'. <lb/>Note: Usage of ICE with protocols other than UDP/TLS/BFCP and <lb/>TCP/DTLS/BFCP is outside of scope for this specification. <lb/>10. SDP Offer/Answer Procedures <lb/>This section defines the SDP offer/answer [RFC3264] procedures for <lb/>negotiating and establishing a BFCP stream. Generic procedures for <lb/>DTLS are defined in [I-D.ietf-mmusic-dtls-sdp]. Generic procedures <lb/>for TLS are defined in [RFC8122]. <lb/>This section only defines the BFCP-specific procedures. Unless <lb/>explicitly stated otherwise, the procedures apply to an 'm' section <lb/>describing a BFCP stream. If an offer or answer contains multiple <lb/>'m' sections describing BFCP streams, the procedures are applied <lb/>independently to each stream. <lb/>Within this document, 'initial offer' refers to the first offer, <lb/>within an SDP session (e.g. a SIP dialog when the Session Initiation <lb/>Protocol (SIP) [RFC3261] is used to carry SDP) in which the offerer <lb/>indicates that it wants to negotiate the establishment of a BFCP <lb/>stream. <lb/>If the 'm' line 'proto' value is 'TCP/TLS/BFCP', 'TCP/DTLS/BFCP' or <lb/>'UDP/TLS/BFCP', the offerer and answerer follow the generic <lb/>procedures defined in [RFC8122]. <lb/>If the 'm' line proto value is 'TCP/BFCP', 'TCP/TLS/BFCP', 'TCP/DTLS/ <lb/>TCP' or 'UDP/TLS/BFCP', the offerer and answerer use the SDP 'setup' <lb/>attribute according to the procedures in [RFC4145]. <lb/>If the 'm' line proto value is 'TCP/BFCP', 'TCP/TLS/BFCP' or <lb/>'TCP/DTLS/BFCP', the offerer and anwerer use the SDP 'connection' <lb/>attribute according to the procedures in [RFC4145]. <lb/>Note: The use of source-specific SDP parameters [RFC5576] is not <lb/>defined for BFCP streams. <lb/> + + <note place="footnote"> + Camarillo, et al. <lb/> + + Expires June 11, 2019 <lb/> + </note> + + <page> + [Page 14] <lb/> + </page> + + <note place="headnote"> + Internet-Draft <lb/>BFCP <lb/>December 2018 <lb/> + </note> + + + 10.1. Generating the Initial SDP Offer <lb/>When the offerer creates an initial offer, the offerer MUST include <lb/>an SDP 'floorctrl' attribute (Section 5.1) and an SDP 'bfcpver' <lb/>attribute (Section 5.5) in the 'm' section. <lb/>In addition, if the offerer includes an SDP 'floorctrl' attribute <lb/>with 's-only' or 'c-s' attribute values in the offer, the offerer: <lb/>o MUST include an SDP 'confid' attribute (Section 5.2) in the 'm' <lb/>section; and <lb/>o MUST include an SDP 'userid' attribute (Section 5.3) in the 'm' <lb/>section; and <lb/>o MUST include an SDP 'floorid' attribute (Section 5.4) in the 'm' <lb/>section; and <lb/>o MUST include an SDP 'label' attribute ([RFC4574]) with the 'm' <lb/>section of each BFCP-controlled media stream. <lb/>Note: If the offerer includes an SDP 'floorctrl' attribute with a <lb/>'c-s' attribute value, or both a 'c-only' and a 's-only' attribute <lb/>value in the offer, the attribute values above will only be used <lb/>if it is determined (Section 5.1) that the offerer will act as <lb/>floor control server. <lb/>10.2. Generating the SDP Answer <lb/>When the answerer receives an offer that contains an 'm' section <lb/>describing a BFCP stream, the answerer MUST check whether it supports <lb/>one or more of the BFCP versions supported by the offerer <lb/>(Section 5.5). If the answerer does not support any of the BFCP <lb/>versions, it MUST NOT accept the 'm' section. Otherwise, if the <lb/>answerer accepts the 'm' section, it: <lb/>o MUST insert a corresponding 'm' section in the answer, with an <lb/>identical 'm' line proto value [RFC3264]; and <lb/>o MUST include a 'bfcpver' attribute in the 'm' section. The <lb/>versions indicated by the answer MUST be the same or a subset of <lb/>the versions indicated by the offerer in the corresponding offer; <lb/>and <lb/>o MUST, if the offer contained an SDP 'floorctrl' attribute, include <lb/>a 'floorctrl' attribute in the 'm' section. <lb/> + + <note place="footnote"> + Camarillo, et al. <lb/> + + Expires June 11, 2019 <lb/> + </note> + + <page> + [Page 15] <lb/> + </page> + + <note place="headnote"> + Internet-Draft <lb/>BFCP <lb/>December 2018 <lb/> + </note> + + In addition, if the answerer includes an SDP 'floorctrl' attribute <lb/>with an 's-only' attribute value in the answer, the answerer: <lb/>o MUST include an SDP 'confid' attribute in the 'm' section; and <lb/>o MUST include an SDP 'userid' attribute in the 'm' section; and <lb/>o MUST include an SDP 'floorid' attribute in the 'm' section; and <lb/>o MUST include an SDP 'label' attribute in the 'm' section of each <lb/>BFCP-controlled media stream. <lb/>Note: An offerer compliant with [RFC4583] might not include <lb/>'floorctrl' and 'bfcpver' attributes in offers, in which cases the <lb/>default values apply. <lb/>Once the answerer has sent the answer, the answerer: <lb/>o MUST, if the answerer is the active endpoint, and if a TCP <lb/>connection associated with the 'm' section is to be established <lb/>(or re-established), initiate the establishing of the TCP <lb/>connection; and <lb/>o MUST, if the answerer is the active endpoint, and if an TLS/DTLS <lb/>connection associated with the 'm' section is to be established <lb/>(or re-established), initiate the establishing of the TLS/DTLS <lb/>connection (by sending a ClientHello message). <lb/>If the answerer does not accept the 'm' section in the offer, it MUST <lb/>assign a zero port value to the 'm' line of the corresponding 'm' <lb/>section in the answer. In addition, the answerer MUST NOT establish <lb/>a TCP connection or a TLS/DTLS connection associated with the 'm' <lb/>section. <lb/>10.3. Offerer Processing of the SDP Answer <lb/>When the offerer receives an answer that contains an 'm' section with <lb/>a non-zero port value, describing a BFCP stream, the offerer: <lb/>o MUST, if the offerer is the active endpoint, and if a TCP <lb/>connection associated with the 'm' section is to be established <lb/>(or re-established), initiate the establishing of the TCP <lb/>connection; and <lb/>o MUST, if the offerer is the active endpoint, and if an TLS/DTLS <lb/>connection associated with the 'm' section is to be established <lb/>(or re-established), initiate the establishing of the TLS/DTLS <lb/>connection (by sending a ClientHello message). <lb/> + + <note place="footnote"> + Camarillo, et al. <lb/> + + Expires June 11, 2019 <lb/> + </note> + + <page> + [Page 16] <lb/> + </page> + + <note place="headnote"> + Internet-Draft <lb/>BFCP <lb/>December 2018 <lb/> + </note> + + Note: An answerer compliant with [RFC4583] might not include <lb/>'floorctrl' and 'bfcpver' attributes in answers, in which cases the <lb/>default values apply. <lb/>If the 'm' line in the answer contains a zero port value, or if the <lb/>offerer for some other reason does not accept the answer (e.g., if <lb/>the answerer only indicates support of BFCP versions not supported by <lb/>the offerer), the offerer MUST NOT establish a TCP connection or a <lb/>TLS/DTLS connection associated with the 'm' section. <lb/>10.4. Modifying the Session <lb/>When an offerer sends an updated offer, in order to modify a <lb/>previously established BFCP stream, it follows the procedures in <lb/>Section 10.1, with the following exceptions: <lb/>o If the BFCP stream is carried on top of TCP, and if the offerer <lb/>does not want to re-establish an existing TCP connection, the <lb/>offerer MUST include an SDP 'connection' attribute with a value of <lb/>"existing", in the 'm' section; and <lb/>o If the offerer wants to disable a previously established BFCP <lb/>stream, it MUST assign a zero port value to the 'm' line <lb/>associated with the BFCP connection, following the procedures in <lb/>[RFC3264]. <lb/>11. Examples <lb/>For the purpose of brevity, the main portion of the session <lb/>description is omitted in the examples, which only show 'm' sections <lb/>and their 'm' lines and attributes. <lb/>The following is an example of an offer sent by a conference server <lb/>to a client. <lb/> + + <note place="footnote"> + Camarillo, et al. <lb/> + + Expires June 11, 2019 <lb/> + </note> + + <page> + [Page 17] <lb/> + </page> + + <note place="headnote"> + Internet-Draft <lb/>BFCP <lb/>December 2018 <lb/> + </note> + + m=application 50000 TCP/TLS/BFCP * <lb/>a=setup:actpass <lb/>a=connection:new <lb/>a=fingerprint:sha-256 \ <lb/>19:E2:1C:3B:4B:9F:81:E6:B8:5C:F4:A5:A8:D8:73:04: \ <lb/>BB:05:2F:70:9F:04:A9:0E:05:E9:26:33:E8:70:88:A2 <lb/>a=floorctrl:c-only s-only <lb/>a=confid:4321 <lb/>a=userid:1234 <lb/>a=floorid:1 mstrm:10 <lb/>a=floorid:2 mstrm:11 <lb/>a=bfcpver:1 2 <lb/>m=audio 50002 RTP/AVP 0 <lb/>a=label:10 <lb/>m=video 50004 RTP/AVP 31 <lb/>a=label:11 <lb/>Note that due to RFC formatting conventions, this document splits SDP <lb/>across lines whose content would exceed 72 characters. A backslash <lb/>character marks where this line folding has taken place. This <lb/>backslash and its trailing CRLF and whitespace would not appear in <lb/>actual SDP content. <lb/>The following is the answer returned by the client. <lb/>m=application 9 TCP/TLS/BFCP * <lb/>a=setup:active <lb/>a=connection:new <lb/>a=fingerprint:sha-256 \ <lb/>6B:8B:F0:65:5F:78:E2:51:3B:AC:6F:F3:3F:46:1B:35: \ <lb/>DC:B8:5F:64:1A:24:C2:43:F0:A1:58:D0:A1:2C:19:08 <lb/>a=floorctrl:c-only <lb/>a=bfcpver:1 <lb/>m=audio 55000 RTP/AVP 0 <lb/>m=video 55002 RTP/AVP 31 <lb/>A similar example using unreliable transport and DTLS is shown below, <lb/>where the offer is sent from a client. <lb/> + + <note place="footnote"> + Camarillo, et al. <lb/> + + Expires June 11, 2019 <lb/> + </note> + + <page> + [Page 18] <lb/> + </page> + + <note place="headnote"> + Internet-Draft <lb/>BFCP <lb/>December 2018 <lb/> + </note> + + m=application 50000 UDP/TLS/BFCP * <lb/>a=setup:actpass <lb/>a=dtls-id:abc3dl <lb/>a=fingerprint:sha-256 \ <lb/>19:E2:1C:3B:4B:9F:81:E6:B8:5C:F4:A5:A8:D8:73:04: \ <lb/>BB:05:2F:70:9F:04:A9:0E:05:E9:26:33:E8:70:88:A2 <lb/>a=floorctrl:c-only s-only <lb/>a=confid:4321 <lb/>a=userid:1234 <lb/>a=floorid:1 mstrm:10 <lb/>a=floorid:2 mstrm:11 <lb/>a=bfcpver:1 2 <lb/>m=audio 50002 RTP/AVP 0 <lb/>a=label:10 <lb/>m=video 50004 RTP/AVP 31 <lb/>a=label:11 <lb/>The following is the answer returned by the server. <lb/>m=application 55000 UDP/TLS/BFCP * <lb/>a=setup:active <lb/>a=dtls-id:abc3dl <lb/>a=fingerprint:sha-256 \ <lb/>6B:8B:F0:65:5F:78:E2:51:3B:AC:6F:F3:3F:46:1B:35: \ <lb/>DC:B8:5F:64:1A:24:C2:43:F0:A1:58:D0:A1:2C:19:08 <lb/>a=floorctrl:s-only <lb/>a=confid:4321 <lb/>a=userid:1234 <lb/>a=floorid:1 mstrm:10 <lb/>a=floorid:2 mstrm:11 <lb/>a=bfcpver:2 <lb/>m=audio 55002 RTP/AVP 0 <lb/>m=video 55004 RTP/AVP 31 <lb/>12. Security Considerations <lb/>The BFCP [I-D.ietf-bfcpbis-rfc4582bis], SDP [RFC4566], and offer/ <lb/>answer [RFC3264] specifications discuss security issues related to <lb/>BFCP, SDP, and offer/answer, respectively. In addition, [RFC4145] <lb/>and [RFC8122] discuss security issues related to the establishment of <lb/>TCP and TLS connections using an offer/answer model. Furthermore, <lb/>when using DTLS over UDP, the generic offer/answer considerations <lb/>defined in [I-D.ietf-mmusic-dtls-sdp] MUST be followed. <lb/>The usage of certain proto values in the SDP offer/answer negotiation <lb/>will result in a BFCP stream that is not protected by TLS or DTLS. <lb/>Operators will need to provide integrity protection and <lb/>confidentiality protection of the BFCP stream using other means. <lb/> + + <note place="footnote"> + Camarillo, et al. <lb/> + + Expires June 11, 2019 <lb/> + </note> + + <page> + [Page 19] <lb/> + </page> + + <note place="headnote"> + Internet-Draft <lb/>BFCP <lb/>December 2018 <lb/> + </note> + + The generic security considerations associated with SDP attributes <lb/>are defined in [RFC3264]. While the attributes defined in this <lb/>specification do not reveal information about the content of <lb/>individual BFCP controlled media streams, they do reveal which media <lb/>streams will be BFCP controlled. <lb/>13. IANA Considerations <lb/>[Editorial note: The changes in Section 13.1 instruct the IANA to <lb/>register the three new values TCP/DTLS/BFCP, UDP/BFCP and UDP/TLS/ <lb/>BFCP for the SDP 'proto' field. The new section Section 5.5 <lb/>registers a new SDP "bfcpver" attribute. The rest is unchanged <lb/>from [RFC4582].] <lb/>13.1. Registration of SDP 'proto' Values <lb/>The IANA is requested to register the following values for the SDP <lb/>'proto' field under the Session Description Protocol (SDP) Parameters <lb/>registry: <lb/>+---------------+------------+ <lb/>| Value <lb/>| Reference | <lb/>+---------------+------------+ <lb/>| TCP/BFCP <lb/>| [RFC XXXX] | <lb/>| TCP/DTLS/BFCP | [RFC XXXX] | <lb/>| TCP/TLS/BFCP | [RFC XXXX] | <lb/>| UDP/BFCP <lb/>| [RFC XXXX] | <lb/>| UDP/TLS/BFCP | [RFC XXXX] | <lb/>+---------------+------------+ <lb/>Table 3: Values for the SDP 'proto' field <lb/>13.2. Registration of the SDP 'floorctrl' Attribute <lb/>This document defines the SDP attribute,'floorctrl'. The details of <lb/>the attribute are defined in Section 5.1. <lb/>13.3. Registration of the SDP 'confid' Attribute <lb/>This document defines the SDP attribute,'confid'. The details of the <lb/>attribute are defined in Section 5.2. <lb/>13.4. Registration of the SDP 'userid' Attribute <lb/>This document defines the SDP attribute,'userid'. The details of the <lb/>attribute are defined in Section 5.3. <lb/> + + <note place="footnote"> + Camarillo, et al. <lb/> + + Expires June 11, 2019 <lb/> + </note> + + <page> + [Page 20] <lb/> + </page> + + <note place="headnote"> + Internet-Draft <lb/>BFCP <lb/>December 2018 <lb/> + </note> + + 13.5. Registration of the SDP 'floorid' Attribute <lb/>This document defines the SDP attribute,'floorid'. The details of <lb/>the attribute are defined in Section 5.4. <lb/>13.6. Registration of the SDP 'bfcpver' Attribute <lb/>This document defines the SDP attribute,'bfcpver'. The details of <lb/>the attribute are defined in Section 5.5. <lb/>14. Changes from RFC 4583 <lb/>Following is the list of technical changes and other fixes from <lb/>[RFC4583]. <lb/>Main purpose of this work was to add signaling support necessary to <lb/>support BFCP over unreliable transport, as described in <lb/>[I-D.ietf-bfcpbis-rfc4582bis], resulting in the following changes: <lb/>1. Fields in the 'm' line (Section 4): <lb/>The section is re-written to remove reference to the exclusivity <lb/>of TCP as a transport for BFCP streams. The proto field values <lb/>TCP/DTLS/BFCP, UDP/BFCP and UDP/TLS/BFCP added. <lb/>2. Security Considerations (Section 12): <lb/>For the DTLS over UDP case, mention existing considerations and <lb/>requirements for the offer/answer exchange in <lb/>[I-D.ietf-mmusic-dtls-sdp]. <lb/>3. Registration of SDP 'proto' Values (Section 13.1): <lb/>Register the three new values TCP/DTLS/BFCP, UDP/BFCP and <lb/>UDP/TLS/BFCP in the SDP parameters registry. <lb/>4. BFCP Version Negotiation (Section 5.5): <lb/>A new 'bfcpver' SDP media-level attribute is added in order to <lb/>signal supported version number. <lb/>In addition to the changes associated with support of BFCP over <lb/>unreliable transport, the possibility for an endpoint to act as both <lb/>floor control client and floor control server at the same time has <lb/>been removed. An endpoint will now take the same role for all BFCP-<lb/>controlled streams associated with the BFCP stream. <lb/>Clarification and bug fixes: <lb/>1. Errata ID: 712 (Section 3 and Section 10): <lb/> + + <note place="footnote"> + Camarillo, et al. <lb/> + + Expires June 11, 2019 <lb/> + </note> + + <page> + [Page 21] <lb/> + </page> + + <note place="headnote"> + Internet-Draft <lb/>BFCP <lb/>December 2018 <lb/> + </note> + + Language clarification. Don't use terms like an SDP attribute is <lb/>"used in an 'm' line", instead make clear that the attribute is a <lb/>media-level attribute. <lb/>2. Fix typo in example (Section 11): <lb/>Do not use 'm-stream' in the SDP example, use the correct 'mstrm' <lb/>as specified in Section 11. Recommend interpreting 'm-stream' if <lb/>it is received, since it is present in some implementations. <lb/>3. Assorted clarifications (Across the document): <lb/>Language clarifications as a result of reviews. Also, the <lb/>normative language where tightened where appropriate, i.e. <lb/>changed from SHOULD strength to MUST in a number of places. <lb/> + </body> + + <div type="acknowledgement">15. Acknowledgements <lb/>Joerg Ott, Keith Drage, Alan Johnston, Eric Rescorla, Roni Even, and <lb/>Oscar Novo provided useful ideas for the original [RFC4583]. The <lb/>authors also acknowledge contributions to the revision of BFCP for <lb/>use over an unreliable transport from Geir Arne Sandbakken, Charles <lb/>Eckel, Alan Ford, Eoin McLeod and Mark Thompson. Useful and <lb/>important final reviews were done by Ali C. Begen, Mary Barnes and <lb/>Charles Eckel. In the final stages, Roman Shpount made a <lb/>considerable effort in adding proper ICE support and considerations. <lb/> + </div> + + <listBibl>16. References <lb/>16.1. Normative References <lb/>[I-D.ietf-bfcpbis-rfc4582bis] <lb/>Camarillo, G., Drage, K., Kristensen, T., Ott, J., and C. <lb/>Eckel, "The Binary Floor Control Protocol (BFCP)", draft-<lb/>ietf-bfcpbis-rfc4582bis-16 (work in progress), November <lb/>2015. <lb/>[I-D.ietf-mmusic-dtls-sdp] <lb/>Holmberg, C. and R. Shpount, "Session Description Protocol <lb/>(SDP) Offer/Answer Considerations for Datagram Transport <lb/>Layer Security (DTLS) and Transport Layer Security (TLS)", <lb/>draft-ietf-mmusic-dtls-sdp-32 (work in progress), October <lb/>2017. <lb/>[I-D.ietf-mmusic-ice-sip-sdp] <lb/>Petit-Huguenin, M., Nandakumar, S., and A. Keranen, <lb/>"Session Description Protocol (SDP) Offer/Answer <lb/>procedures for Interactive Connectivity Establishment <lb/>(ICE)", draft-ietf-mmusic-ice-sip-sdp-24 (work in <lb/>progress), November 2018. <lb/> + </listBibl> + + <note place="footnote"> + Camarillo, et al. <lb/>Expires June 11, 2019 <lb/> + </note> + + <page>[Page 22] <lb/></page> + + <note place="headnote"> + Internet-Draft <lb/>BFCP <lb/>December 2018 <lb/> + </note> + + <listBibl>[I-D.ietf-mmusic-sdp-mux-attributes] <lb/>Nandakumar, S., "A Framework for SDP Attributes when <lb/>Multiplexing", draft-ietf-mmusic-sdp-mux-attributes-17 <lb/>(work in progress), February 2018. <lb/>[RFC2119] Bradner, S., "Key words for use in RFCs to Indicate <lb/>Requirement Levels", BCP 14, RFC 2119, <lb/>DOI 10.17487/RFC2119, March 1997, <https://www.rfc-<lb/>editor.org/info/rfc2119>. <lb/>[RFC3261] Rosenberg, J., Schulzrinne, H., Camarillo, G., Johnston, <lb/>A., Peterson, J., Sparks, R., Handley, M., and E. <lb/>Schooler, "SIP: Session Initiation Protocol", RFC 3261, <lb/>DOI 10.17487/RFC3261, June 2002, <https://www.rfc-<lb/>editor.org/info/rfc3261>. <lb/>[RFC3264] Rosenberg, J. and H. Schulzrinne, "An Offer/Answer Model <lb/>with Session Description Protocol (SDP)", RFC 3264, <lb/>DOI 10.17487/RFC3264, June 2002, <https://www.rfc-<lb/>editor.org/info/rfc3264>. <lb/>[RFC4145] Yon, D. and G. Camarillo, "TCP-Based Media Transport in <lb/>the Session Description Protocol (SDP)", RFC 4145, <lb/>DOI 10.17487/RFC4145, September 2005, <https://www.rfc-<lb/>editor.org/info/rfc4145>. <lb/>[RFC4566] Handley, M., Jacobson, V., and C. Perkins, "SDP: Session <lb/>Description Protocol", RFC 4566, DOI 10.17487/RFC4566, <lb/>July 2006, <https://www.rfc-editor.org/info/rfc4566>. <lb/>[RFC4571] Lazzaro, J., "Framing Real-time Transport Protocol (RTP) <lb/>and RTP Control Protocol (RTCP) Packets over Connection-<lb/>Oriented Transport", RFC 4571, DOI 10.17487/RFC4571, July <lb/>2006, <https://www.rfc-editor.org/info/rfc4571>. <lb/>[RFC4574] Levin, O. and G. Camarillo, "The Session Description <lb/>Protocol (SDP) Label Attribute", RFC 4574, <lb/>DOI 10.17487/RFC4574, August 2006, <https://www.rfc-<lb/>editor.org/info/rfc4574>. <lb/>[RFC4582] Camarillo, G., Ott, J., and K. Drage, "The Binary Floor <lb/>Control Protocol (BFCP)", RFC 4582, DOI 10.17487/RFC4582, <lb/>November 2006, <https://www.rfc-editor.org/info/rfc4582>. <lb/>[RFC4583] Camarillo, G., "Session Description Protocol (SDP) Format <lb/>for Binary Floor Control Protocol (BFCP) Streams", <lb/>RFC 4583, DOI 10.17487/RFC4583, November 2006, <lb/><https://www.rfc-editor.org/info/rfc4583>. <lb/> + </listBibl> + + <note place="footnote"> + Camarillo, et al. <lb/> + + Expires June 11, 2019 <lb/> + </note> + + <page> + [Page 23] <lb/> + </page> + + <note place="headnote"> + Internet-Draft <lb/>BFCP <lb/>December 2018 <lb/> + </note> + + <listBibl>[RFC5234] Crocker, D., Ed. and P. Overell, "Augmented BNF for Syntax <lb/>Specifications: ABNF", STD 68, RFC 5234, <lb/>DOI 10.17487/RFC5234, January 2008, <https://www.rfc-<lb/>editor.org/info/rfc5234>. <lb/>[RFC6347] Rescorla, E. and N. Modadugu, "Datagram Transport Layer <lb/>Security Version 1.2", RFC 6347, DOI 10.17487/RFC6347, <lb/>January 2012, <https://www.rfc-editor.org/info/rfc6347>. <lb/>[RFC6544] Rosenberg, J., Keranen, A., Lowekamp, B., and A. Roach, <lb/>"TCP Candidates with Interactive Connectivity <lb/>Establishment (ICE)", RFC 6544, DOI 10.17487/RFC6544, <lb/>March 2012, <https://www.rfc-editor.org/info/rfc6544>. <lb/>[RFC8122] Lennox, J. and C. Holmberg, "Connection-Oriented Media <lb/>Transport over the Transport Layer Security (TLS) Protocol <lb/>in the Session Description Protocol (SDP)", RFC 8122, <lb/>DOI 10.17487/RFC8122, March 2017, <https://www.rfc-<lb/>editor.org/info/rfc8122>. <lb/>[RFC8174] Leiba, B., "Ambiguity of Uppercase vs Lowercase in RFC <lb/>2119 Key Words", BCP 14, RFC 8174, DOI 10.17487/RFC8174, <lb/>May 2017, <https://www.rfc-editor.org/info/rfc8174>. <lb/>[RFC8445] Keranen, A., Holmberg, C., and J. Rosenberg, "Interactive <lb/>Connectivity Establishment (ICE): A Protocol for Network <lb/>Address Translator (NAT) Traversal", RFC 8445, <lb/>DOI 10.17487/RFC8445, July 2018, <https://www.rfc-<lb/>editor.org/info/rfc8445>. <lb/>16.2. Informational References <lb/>[I-D.ietf-mmusic-sdp-bundle-negotiation] <lb/>Holmberg, C., Alvestrand, H., and C. Jennings, <lb/>"Negotiating Media Multiplexing Using the Session <lb/>Description Protocol (SDP)", draft-ietf-mmusic-sdp-bundle-<lb/>negotiation-53 (work in progress), September 2018. <lb/>[RFC5576] Lennox, J., Ott, J., and T. Schierl, "Source-Specific <lb/>Media Attributes in the Session Description Protocol <lb/>(SDP)", RFC 5576, DOI 10.17487/RFC5576, June 2009, <lb/><https://www.rfc-editor.org/info/rfc5576>. <lb/> + </listBibl> + + Authors' Addresses <lb/> + + <note place="footnote"> + Camarillo, et al. <lb/> + + Expires June 11, 2019 <lb/> + </note> + + <page> + [Page 24] <lb/> + </page> + + <note place="headnote"> + Internet-Draft <lb/>BFCP <lb/>December 2018 <lb/> + </note> + + <front>Gonzalo Camarillo <lb/>Ericsson <lb/>Hirsalantie 11 <lb/>FI-02420 Jorvas <lb/>Finland <lb/>Email: Gonzalo.Camarillo@ericsson.com <lb/>Tom Kristensen <lb/>Cisco <lb/>Philip Pedersens vei 1 <lb/>NO-1366 Lysaker <lb/>Norway <lb/>Email: tomkrist@cisco.com, tomkri@ifi.uio.no <lb/>Christer Holmberg <lb/>Ericsson <lb/>Hirsalantie 11 <lb/>Jorvas 02420 <lb/>Finland <lb/>Email: christer.holmberg@ericsson.com <lb/> + </front> + + <note place="footnote"> + Camarillo, et al. <lb/> + + Expires June 11, 2019 <lb/> + </note> + + <page> + [Page 25] <lb/> + </page> + + + </text> +</tei> diff --git a/grobid-trainer/src/main/java/org/grobid/trainer/HeaderTrainer.java b/grobid-trainer/src/main/java/org/grobid/trainer/HeaderTrainer.java index 8c29f9b49e..8001c92763 100755 --- a/grobid-trainer/src/main/java/org/grobid/trainer/HeaderTrainer.java +++ b/grobid-trainer/src/main/java/org/grobid/trainer/HeaderTrainer.java @@ -5,6 +5,7 @@ import org.grobid.core.utilities.GrobidProperties; import org.grobid.core.utilities.UnicodeUtil; import org.grobid.trainer.sax.TEIHeaderSaxParser; +import org.grobid.core.GrobidModels.Flavor; import javax.xml.parsers.SAXParser; import javax.xml.parsers.SAXParserFactory; @@ -18,6 +19,9 @@ public HeaderTrainer() { super(GrobidModels.HEADER); } + public HeaderTrainer(Flavor flavor) { + super(GrobidModels.getModelFlavor(GrobidModels.HEADER, flavor)); + } @Override public int createCRFPPData(File corpusPath, File trainingOutputPath) { @@ -295,9 +299,28 @@ public boolean accept(File dir, String name) { * @throws Exception */ public static void main(String[] args) throws Exception { - GrobidProperties.getInstance(); - AbstractTrainer.runTraining(new HeaderTrainer()); - System.out.println(AbstractTrainer.runEvaluation(new HeaderTrainer())); + // if we have a parameter, it gives the flavor refinement to consider + Flavor theFlavor = null; + if (args.length > 0) { + String flavor = args[0]; + if (flavor.toLowerCase().equals("light")) { + theFlavor = Flavor.LIGHT; + } else if (flavor.toLowerCase().equals("ietf")) { + theFlavor = Flavor.IETF; + } else { + System.out.println("Warning, the flavor is not recognized, must one one of [3gpp,ietf], defaulting training to no collection..."); + } + } + + GrobidProperties.getInstance(); + if (theFlavor == null) { + AbstractTrainer.runTraining(new HeaderTrainer()); + System.out.println(AbstractTrainer.runEvaluation(new HeaderTrainer())); + } else { + AbstractTrainer.runTraining(new HeaderTrainer(theFlavor)); + System.out.println(AbstractTrainer.runEvaluation(new HeaderTrainer(theFlavor))); + } + System.exit(0); } } \ No newline at end of file diff --git a/grobid-trainer/src/main/java/org/grobid/trainer/SegmentationTrainer.java b/grobid-trainer/src/main/java/org/grobid/trainer/SegmentationTrainer.java index 48c27bd66f..db7b0a0d65 100644 --- a/grobid-trainer/src/main/java/org/grobid/trainer/SegmentationTrainer.java +++ b/grobid-trainer/src/main/java/org/grobid/trainer/SegmentationTrainer.java @@ -5,6 +5,7 @@ import org.grobid.core.utilities.GrobidProperties; import org.grobid.core.utilities.UnicodeUtil; import org.grobid.trainer.sax.TEISegmentationSaxParser; +import org.grobid.core.GrobidModels.Flavor; import javax.xml.parsers.SAXParser; import javax.xml.parsers.SAXParserFactory; @@ -21,6 +22,11 @@ public SegmentationTrainer() { super(GrobidModels.SEGMENTATION); } + public SegmentationTrainer(Flavor flavor) { + super(GrobidModels.getModelFlavor(GrobidModels.SEGMENTATION, flavor)); + } + + @Override public int createCRFPPData(File corpusPath, File outputFile) { return addFeaturesSegmentation(corpusPath.getAbsolutePath() + "/tei", @@ -338,9 +344,27 @@ public boolean accept(File dir, String name) { * @throws Exception */ public static void main(String[] args) throws Exception { + // if we have a parameter, it gives the flavor refinement to consider + Flavor theFlavor = null; + if (args.length > 0) { + String flavor = args[0]; + if (flavor.toLowerCase().equals("light")) { + theFlavor = Flavor.LIGHT; + } else if (flavor.toLowerCase().equals("ietf")) { + theFlavor = Flavor.IETF; + } else { + System.out.println("Warning, the flavor is not recognized, must one one of [3gpp,ietf], defaulting training to no collection..."); + } + } + GrobidProperties.getInstance(); - AbstractTrainer.runTraining(new SegmentationTrainer()); - System.out.println(AbstractTrainer.runEvaluation(new SegmentationTrainer())); + if (theFlavor == null) { + AbstractTrainer.runTraining(new SegmentationTrainer()); + System.out.println(AbstractTrainer.runEvaluation(new SegmentationTrainer())); + } else { + AbstractTrainer.runTraining(new SegmentationTrainer(theFlavor)); + System.out.println(AbstractTrainer.runEvaluation(new SegmentationTrainer(theFlavor))); + } System.exit(0); } } \ No newline at end of file diff --git a/grobid-trainer/src/main/java/org/grobid/trainer/TrainerFactory.java b/grobid-trainer/src/main/java/org/grobid/trainer/TrainerFactory.java index 12717ede62..64ca925425 100644 --- a/grobid-trainer/src/main/java/org/grobid/trainer/TrainerFactory.java +++ b/grobid-trainer/src/main/java/org/grobid/trainer/TrainerFactory.java @@ -6,6 +6,11 @@ public class TrainerFactory { public static GenericTrainer getTrainer(GrobidModel model) { + + System.out.println(model.getModelName()); + System.out.println(model.getModelPath()); + System.out.println(GrobidProperties.getGrobidEngine(model)); + switch (GrobidProperties.getGrobidEngine(model)) { case CRFPP: return new CRFPPGenericTrainer(); diff --git a/grobid-trainer/src/main/java/org/grobid/trainer/TrainerRunner.java b/grobid-trainer/src/main/java/org/grobid/trainer/TrainerRunner.java index 39fef963f2..bc77715ce0 100755 --- a/grobid-trainer/src/main/java/org/grobid/trainer/TrainerRunner.java +++ b/grobid-trainer/src/main/java/org/grobid/trainer/TrainerRunner.java @@ -2,6 +2,7 @@ import org.apache.commons.lang3.StringUtils; import org.grobid.core.utilities.GrobidProperties; +import org.grobid.core.GrobidModels.Flavor; import java.io.File; import java.nio.file.Files; @@ -16,7 +17,9 @@ */ public class TrainerRunner { - private static final List<String> models = Arrays.asList("affiliation", "chemical", "date", "citation", "ebook", "fulltext", "header", "name-citation", "name-header", "patent", "segmentation"); + private static final List<String> models = Arrays.asList("affiliation", "chemical", "date", "citation", + "ebook", "fulltext", "header", "header-ietf", "name-citation", "name-header", "patent", "segmentation", + "segmentation-ietf"); private static final List<String> options = Arrays.asList("0 - train", "1 - evaluate", "2 - split, train and evaluate", "3 - n-fold evaluation"); private enum RunType { @@ -120,6 +123,8 @@ public static void main(String[] args) { trainer = new FulltextTrainer(); } else if (model.equals("header")) { trainer = new HeaderTrainer(); + } else if (model.equals("header-ietf")) { + trainer = new HeaderTrainer(Flavor.IETF); } else if (model.equals("name-citation")) { trainer = new NameCitationTrainer(); } else if (model.equals("name-header")) { @@ -128,6 +133,8 @@ public static void main(String[] args) { trainer = new PatentParserTrainer(); } else if (model.equals("segmentation")) { trainer = new SegmentationTrainer(); + } else if (model.equals("segmentation-ietf")) { + trainer = new SegmentationTrainer(Flavor.IETF); } else if (model.equals("reference-segmenter")) { trainer = new ReferenceSegmenterTrainer(); } else if (model.equals("figure")) {